servers;
+ public int selected = -1;
+
+ public Network() {
+ servers = new Array<>();
+ }
+
+ public static class Server {
+ public String desc;
+ public String hostname;
+ public int port;
+
+ // empty constructor needed for de-serialization
+ public Server() {
+ this(null, "127.0.0.1", 7666);
+ }
+
+ public Server(String hostname, int port) {
+ this(null, hostname, port);
+ }
+
+ public Server(String desc, String hostname, int port) {
+ this.desc = desc;
+ this.hostname = hostname;
+ this.port = port;
+ }
+
+ @Override
+ public String toString() {
+ String prefix = "";
+ if (this.desc != null)
+ prefix = this.desc + " ";
+
+ return prefix + this.hostname + ":" + this.port;
+ }
+ }
+ }
+}
diff --git a/client/src/game/PixelPerfectViewport.java b/client/src/game/PixelPerfectViewport.java
new file mode 100644
index 00000000..03f4ff52
--- /dev/null
+++ b/client/src/game/PixelPerfectViewport.java
@@ -0,0 +1,121 @@
+package game;
+
+import com.badlogic.gdx.graphics.Camera;
+import com.badlogic.gdx.graphics.OrthographicCamera;
+import com.badlogic.gdx.utils.Scaling;
+import com.badlogic.gdx.utils.viewport.Viewport;
+
+import static com.badlogic.gdx.utils.Scaling.fill;
+import static com.badlogic.gdx.utils.Scaling.fit;
+
+
+/**
+ * A viewport that scales the world using {@link Scaling}, but limits the scaling to integer multiples or simple halving
+ * if the zoom would be 0x. Handy for keeping a pixelated look on high-DPI screens. The {@code conversionX} and {@code conversionY}
+ * configurations correspond to the scaling difference from a screen pixel to a world unit.
+ *
+ * {@link Scaling#fit} keeps the aspect ratio by scaling the world up to fit the screen, adding black bars (letterboxing) for the
+ * remaining space.
+ *
+ * {@link Scaling#fill} keeps the aspect ratio by scaling the world up to take the whole screen (some of the world may be off
+ * screen, potentially in both directions regardless of whether fill, fillX, or fillY is used).
+ *
+ * {@link Scaling#stretch} (NOT RECOMMENDED) does not keep the aspect ratio, the world is scaled to take the whole screen. It is not pixel perfect.
+ *
+ * {@link Scaling#none} keeps the aspect ratio by using a fixed size world (the world may not fill the screen or some of the world
+ * may be off screen).
+ *
+ * @author Daniel Holderbaum
+ * @author Nathan Sweet
+ * @author Tommy Ettinger
+ */
+public class PixelPerfectViewport extends Viewport {
+
+ private Scaling scaling;
+ private int conversionX, conversionY;
+ private float currentScale = 1;
+ /**
+ * Creates a new viewport using a new {@link OrthographicCamera}.
+ */
+ public PixelPerfectViewport(Scaling scaling, float worldWidth, float worldHeight, int conversionX, int conversionY) {
+ this(scaling, worldWidth, worldHeight, conversionX, conversionY, new OrthographicCamera());
+ }
+ public PixelPerfectViewport(Scaling scaling, float worldWidth, float worldHeight, int conversion) {
+ this(scaling, worldWidth, worldHeight, conversion, conversion, new OrthographicCamera());
+ }
+
+ public PixelPerfectViewport(Scaling scaling, float worldWidth, float worldHeight, int conversionX, int conversionY, Camera camera) {
+ this.scaling = scaling;
+ this.conversionX = conversionX;
+ this.conversionY = conversionY;
+ setWorldSize(worldWidth, worldHeight);
+ setCamera(camera);
+ }
+
+ @Override
+ public void update(int screenWidth, int screenHeight, boolean centerCamera) {
+ //Vector2 scaled = scaling.apply(getWorldWidth(), getWorldHeight(), screenWidth, screenHeight);
+ float worldWidth = getWorldWidth(), worldHeight = getWorldHeight();
+
+ int viewportWidth = 0;
+ int viewportHeight = 0;
+
+ if (fit.equals(scaling)) {
+ float screenRatio = screenHeight / (float) screenWidth;
+ float worldRatio = worldHeight / worldWidth;
+ float scale = (int) (screenRatio > worldRatio ? screenWidth / (worldWidth * conversionX) : screenHeight / (worldHeight * conversionY));
+ if (scale < 1) scale = 0.5f;
+ viewportWidth = Math.round(worldWidth * scale);
+ viewportHeight = Math.round(worldHeight * scale);
+ this.currentScale = 1f / scale;
+ } else if (fill.equals(scaling)) {
+ float screenRatio = screenHeight / (float) screenWidth;
+ float worldRatio = worldHeight / worldWidth;
+ float scale = (int) Math.ceil(screenRatio < worldRatio ? screenWidth / (worldWidth * conversionX) : screenHeight / (worldHeight * conversionY));
+ if (scale < 1) scale = 0.5f;
+ viewportWidth = Math.round(worldWidth * scale);
+ viewportHeight = Math.round(worldHeight * scale);
+ this.currentScale = 1f / scale;
+ } else if (Scaling.fillX.equals(scaling)) {
+ float scale = (int) Math.ceil(screenWidth / (worldWidth * conversionX));
+ if (scale < 1) scale = 0.5f;
+ viewportWidth = Math.round(worldWidth * scale);
+ viewportHeight = Math.round(worldHeight * scale);
+ this.currentScale = 1f / scale;
+ } else if (Scaling.fillY.equals(scaling)) {
+ float scale = (int) Math.ceil(screenHeight / (worldHeight * conversionY));
+ if (scale < 1) scale = 0.5f;
+ viewportWidth = Math.round(worldWidth * scale);
+ viewportHeight = Math.round(worldHeight * scale);
+ this.currentScale = 1f / scale;
+ } else if (Scaling.stretch.equals(scaling)) {
+ viewportWidth = screenWidth;
+ viewportHeight = screenHeight;
+ } else if (Scaling.stretchX.equals(scaling)) {
+ viewportWidth = screenWidth;
+ viewportHeight = (int) worldHeight;
+ } else if (Scaling.stretchY.equals(scaling)) {
+ viewportWidth = (int) worldWidth;
+ viewportHeight = screenHeight;
+ } else {
+ viewportWidth = (int) worldWidth;
+ viewportHeight = (int) worldHeight;
+ }
+ // Center.
+ setScreenBounds((screenWidth - viewportWidth * conversionX) / 2, (screenHeight - viewportHeight * conversionY) / 2, viewportWidth * conversionX, viewportHeight * conversionX);
+
+ apply(centerCamera);
+ }
+
+ public Scaling getScaling() {
+ return scaling;
+ }
+
+ public void setScaling(Scaling scaling) {
+ this.scaling = scaling;
+ }
+
+ public float getCurrentScale() {
+ return currentScale;
+ }
+}
\ No newline at end of file
diff --git a/client/src/game/WorldConstructor.java b/client/src/game/WorldConstructor.java
index e8376a90..95adee23 100644
--- a/client/src/game/WorldConstructor.java
+++ b/client/src/game/WorldConstructor.java
@@ -1,7 +1,6 @@
package game;
import com.artemis.*;
-import com.artemis.managers.TagManager;
import com.artemis.managers.UuidEntityManager;
import game.handlers.DefaultAOAssetManager;
import game.screens.ScreenEnum;
@@ -22,7 +21,10 @@
import game.systems.physics.MovementProcessorSystem;
import game.systems.physics.MovementSystem;
import game.systems.physics.PlayerInputSystem;
-import game.systems.render.BatchRenderingSystem;
+import game.systems.render.BatchBeginSystem;
+import game.systems.render.BatchEndSystem;
+import game.systems.render.BatchSystem;
+import game.systems.render.chars.PrerenderCharCache;
import game.systems.render.world.*;
import game.systems.resources.*;
import game.systems.screen.MouseSystem;
@@ -56,11 +58,15 @@ public class WorldConstructor {
private static final int DECORATION_PRIORITY = 3;
private static final int UI = 0;
- private static WorldConfiguration getWorldConfiguration(ClientConfiguration clientConfiguration, ScreenManager screenManager, DefaultAOAssetManager assetManager) {
+ private static WorldConfiguration getWorldConfiguration(
+ Config config,
+ ScreenManager screenManager,
+ DefaultAOAssetManager assetManager,
+ MusicSystem musicSystem
+ ) {
return new WorldConfigurationBuilder()
// Sistemas de uso global (no necesitan prioridad porque son pasivos)
- .with(clientConfiguration,
- screenManager)
+ .with(screenManager)
// register all screens
.with(Arrays.stream(ScreenEnum.values())
@@ -106,7 +112,6 @@ private static WorldConfiguration getWorldConfiguration(ClientConfiguration clie
new DescriptorsSystem(),
new MessageSystem(),
new MapSystem(),
- new MusicSystem(),
new ObjectSystem(),
new ParticlesSystem(),
new SoundsSystem(),
@@ -119,6 +124,9 @@ private static WorldConfiguration getWorldConfiguration(ClientConfiguration clie
// Rendering
.with(PRE_ENTITY_RENDER_PRIORITY,
+ new BatchSystem(),
+ new BatchBeginSystem(),
+ new PrerenderCharCache(),
new ClearScreenSystem(),
new MapGroundRenderingSystem(),
new ObjectRenderingSystem(),
@@ -127,7 +135,8 @@ private static WorldConfiguration getWorldConfiguration(ClientConfiguration clie
.with(ENTITY_RENDER_PRIORITY,
new EffectRenderingSystem(),
- new CharacterRenderingSystem(),
+ new CharacterRenderSystem(),
+ new MapMiddleLayerRenderingSystem(),
new WorldRenderingSystem())
.with(POST_ENTITY_RENDER_PRIORITY,
@@ -138,7 +147,7 @@ private static WorldConfiguration getWorldConfiguration(ClientConfiguration clie
.with(DECORATION_PRIORITY,
new StateRenderingSystem(),
new CharacterStatesRenderingSystem(),
- new BatchRenderingSystem())
+ new BatchEndSystem())
// UI
.with(UI,
@@ -155,19 +164,25 @@ private static WorldConfiguration getWorldConfiguration(ClientConfiguration clie
// Otros sistemas
.with(new MapManager(),
- new TagManager(),
new UuidEntityManager())
-
+// @todo Habilitar información de perfileo en UI
+// .with(new ProfilerSystem())
.build()
- .register(assetManager);
+ .register(config)
+ .register(assetManager)
+ .register(musicSystem);
}
/**
* Construye el Artemis World, inicializa e inyecta sistemas.
* Este método es bloqueante.
*/
- public static World create(ClientConfiguration clientConfiguration,
- ScreenManager screenManager, DefaultAOAssetManager assetManager) {
- return new World(getWorldConfiguration(clientConfiguration, screenManager, assetManager));
+ public static World create(
+ Config config,
+ ScreenManager screenManager,
+ DefaultAOAssetManager assetManager,
+ MusicSystem musicSystem
+ ) {
+ return new World(getWorldConfiguration(config, screenManager, assetManager, musicSystem));
}
}
diff --git a/client/src/game/handlers/AOAssetManager.java b/client/src/game/handlers/AOAssetManager.java
index 42777eca..cbfd1782 100644
--- a/client/src/game/handlers/AOAssetManager.java
+++ b/client/src/game/handlers/AOAssetManager.java
@@ -8,6 +8,7 @@
import com.badlogic.gdx.graphics.g2d.BitmapFont;
import com.badlogic.gdx.graphics.g2d.ParticleEffect;
import com.badlogic.gdx.graphics.g2d.TextureAtlas;
+import com.badlogic.gdx.graphics.g2d.TextureRegion;
import com.badlogic.gdx.scenes.scene2d.ui.Skin;
import model.descriptors.*;
import model.textures.AOAnimation;
diff --git a/client/src/game/handlers/DefaultAOAssetManager.java b/client/src/game/handlers/DefaultAOAssetManager.java
index a43e9c96..98bf0df0 100644
--- a/client/src/game/handlers/DefaultAOAssetManager.java
+++ b/client/src/game/handlers/DefaultAOAssetManager.java
@@ -15,7 +15,7 @@
import com.badlogic.gdx.graphics.g2d.TextureAtlas;
import com.badlogic.gdx.utils.I18NBundle;
import com.esotericsoftware.minlog.Log;
-import game.ClientConfiguration;
+import game.Config;
import game.loaders.*;
import game.loaders.ObjectsLoader.ObjectParameter;
import game.utils.Resources;
@@ -76,10 +76,11 @@ public class DefaultAOAssetManager extends AssetManager implements AOAssetManage
private Map helmets;
private Map weapons;
private Map bodies;
+ private TextureAtlas textureAtlas;
- private DefaultAOAssetManager(ClientConfiguration clientConfiguration) {
+ private DefaultAOAssetManager(Config config) {
this.languagesFile = SharedResources.LANGUAGES_FOLDER + "messages";
- this.languagesLocale = clientConfiguration.getInitConfig().getLanguage().split("_");
+ this.languagesLocale = config.getInitConfig().getLanguage().split("_");
setLoader(Sequencer.class, new MidiLoader());
setLoader(ANIMATION_CLASS, ANIMATIONS + JSON_EXTENSION, new AnimationLoader());
setLoader(IMAGE_CLASS, IMAGES + JSON_EXTENSION, new ImageLoader());
@@ -96,7 +97,7 @@ private DefaultAOAssetManager(ClientConfiguration clientConfiguration) {
public static DefaultAOAssetManager getInstance() {
if (instance == null) {
synchronized (lock) {
- if (instance == null) instance = new DefaultAOAssetManager(ClientConfiguration.createConfig());
+ if (instance == null) instance = new DefaultAOAssetManager(Config.getDefault());
}
}
return instance;
@@ -113,6 +114,11 @@ public void load() {
loadSkins();
loadFonts();
loadMessages();
+ loadAtlas();
+ }
+
+ private void loadAtlas() {
+ load(Resources.GAME_ATLAS_PATH + "images.atlas", TextureAtlas.class);
}
@Override
@@ -342,7 +348,7 @@ private void loadTexture(String fileName) {
TextureParameter param = new TextureParameter();
param.minFilter = TextureFilter.Linear;
param.magFilter = TextureFilter.Linear;
- param.genMipMaps = true;
+ param.genMipMaps = false;
param.wrapU = Texture.TextureWrap.Repeat;
param.wrapV = Texture.TextureWrap.Repeat;
load(fileName, Texture.class, param);
diff --git a/client/src/game/loaders/ImageLoader.java b/client/src/game/loaders/ImageLoader.java
index 725b418d..b4ce2225 100644
--- a/client/src/game/loaders/ImageLoader.java
+++ b/client/src/game/loaders/ImageLoader.java
@@ -43,9 +43,9 @@ public void loadAsync(AssetManager manager, String fileName, FileHandle file, De
@Override
public ArrayList loadSync(AssetManager manager, String fileName, FileHandle file, DescriptorParameter parameter) {
- ArrayList syncronizedDescriptors = this.descriptors;
+ ArrayList synchronizedDescriptors = this.descriptors;
this.descriptors = null;
- return syncronizedDescriptors;
+ return synchronizedDescriptors;
}
@Override
diff --git a/client/src/game/screens/AbstractScreen.java b/client/src/game/screens/AbstractScreen.java
index d3029091..b09ce614 100644
--- a/client/src/game/screens/AbstractScreen.java
+++ b/client/src/game/screens/AbstractScreen.java
@@ -14,7 +14,7 @@
import net.mostlyoriginal.api.system.core.PassiveSystem;
public abstract class AbstractScreen extends PassiveSystem implements Screen {
- private static final Skin SKIN = Skins.COMODORE_SKIN;
+ private static final Skin SKIN = Skins.CURRENT.get();
private static final Texture BACKGROUND_TEXTURE = new Texture(Gdx.files.internal(Resources.GAME_IMAGES_PATH + "background.jpg"));
private static final SpriteDrawable BACKGROUND = new SpriteDrawable(new Sprite(BACKGROUND_TEXTURE));
@@ -72,7 +72,7 @@ public void render(float delta) {
@Override
public void resize(int width, int height) {
- getStage().getViewport().update(width, height);
+// getStage().getViewport().update(width, height);
}
@Override
diff --git a/client/src/game/screens/CharacterScreen.java b/client/src/game/screens/CharacterScreen.java
index 4baa2a8e..7922aa31 100755
--- a/client/src/game/screens/CharacterScreen.java
+++ b/client/src/game/screens/CharacterScreen.java
@@ -111,14 +111,14 @@ private static class Chooser extends Window {
private ObjectSystem objectSystem;
Chooser() {
- super("Choose", Skins.COMODORE_SKIN, "black");
+ super("Choose", Skins.CURRENT.get(), "black");
stage = new Stage();
createUI();
Gdx.input.setInputProcessor(stage);
}
private void createUI() {
- Table table = new Table(Skins.COMODORE_SKIN);
+ Table table = new Table(Skins.CURRENT.get());
table.setFillParent(true);
table.right();
for (Part part : Part.values()) {
diff --git a/client/src/game/screens/CharacterSelectionScreen.java b/client/src/game/screens/CharacterSelectionScreen.java
index 70be9552..bd32a446 100644
--- a/client/src/game/screens/CharacterSelectionScreen.java
+++ b/client/src/game/screens/CharacterSelectionScreen.java
@@ -227,7 +227,7 @@ private void createUsersTable() {
for (int i = 0; i < 6; i++) {
Table newSlot = new Table();
- newSlot.setBackground(getSkin().getDrawable("menu-frame"));
+ newSlot.setBackground(WidgetFactory.createDrawable(WidgetFactory.Drawables.SLOT.name));
Table imageTable = new Table();
Image pjImage = WidgetFactory.createImage(noHero);
imageTable.add(pjImage);
diff --git a/client/src/game/screens/LoadingScreen.java b/client/src/game/screens/LoadingScreen.java
index c729f6b3..958eb4fa 100644
--- a/client/src/game/screens/LoadingScreen.java
+++ b/client/src/game/screens/LoadingScreen.java
@@ -11,6 +11,9 @@
import com.badlogic.gdx.scenes.scene2d.ui.Skin;
import com.badlogic.gdx.scenes.scene2d.ui.Table;
import com.badlogic.gdx.scenes.scene2d.utils.SpriteDrawable;
+import com.badlogic.gdx.utils.PerformanceCounter;
+import com.badlogic.gdx.utils.TimeUtils;
+import com.esotericsoftware.minlog.Log;
import game.handlers.DefaultAOAssetManager;
import game.ui.WidgetFactory;
import game.utils.Resources;
@@ -23,7 +26,7 @@
@Wire
public class LoadingScreen extends ScreenAdapter {
- private static final Skin SKIN = Skins.COMODORE_SKIN;
+ private static final Skin SKIN = Skins.CURRENT.get();
private static final Texture BACKGROUND_TEXTURE = new Texture(Gdx.files.internal(Resources.GAME_IMAGES_PATH + "background.jpg"));
private static final SpriteDrawable BACKGROUND = new SpriteDrawable(new Sprite(BACKGROUND_TEXTURE));
private final Stage stage;
@@ -36,6 +39,8 @@ public class LoadingScreen extends ScreenAdapter {
private boolean loaded;
private boolean textureLoading;
private Consumer onFinished;
+ private final static float nano2seconds = 1f / 1000000000.0f;
+ private float start;
public LoadingScreen(DefaultAOAssetManager assetManager) {
this.assetManager = assetManager;
@@ -64,6 +69,7 @@ protected void createUI() {
progress = WidgetFactory.createLoadingProgressBar();
table.add(progress).expandX();
mainTable.add(table).expand();
+ start = TimeUtils.nanoTime();
assetManager.load();
}
@@ -76,6 +82,7 @@ public void render(float delta) {
// TODO
} else {
+ Log.info("Loading time " + (TimeUtils.nanoTime() - start) * nano2seconds + "s");
loaded = true;
onFinished.accept(assetManager);
}
diff --git a/client/src/game/screens/LoginScreen.java b/client/src/game/screens/LoginScreen.java
index 8edbdd22..be776859 100644
--- a/client/src/game/screens/LoginScreen.java
+++ b/client/src/game/screens/LoginScreen.java
@@ -9,13 +9,19 @@
import com.badlogic.gdx.scenes.scene2d.Actor;
import com.badlogic.gdx.scenes.scene2d.ui.*;
import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener;
+import com.badlogic.gdx.utils.Align;
+import com.badlogic.gdx.utils.Array;
import com.badlogic.gdx.utils.Timer;
-import game.ClientConfiguration;
+import game.Config;
+import game.Config.Network.Server;
import game.handlers.DefaultAOAssetManager;
import game.systems.network.ClientSystem;
import game.systems.resources.MusicSystem;
import game.systems.resources.SoundsSystem;
+import game.ui.ExtendedDialog;
import game.ui.WidgetFactory;
+import game.ui.WidgetFactory.Drawables;
+import game.utils.Resources;
import shared.network.account.AccountLoginRequest;
import shared.util.Messages;
@@ -23,22 +29,21 @@
public class LoginScreen extends AbstractScreen {
private final Preferences preferences = Gdx.app.getPreferences("Finisterra");
- @Wire
- private DefaultAOAssetManager assetManager;
- private ClientConfiguration clientConfiguration;
+ @Wire private DefaultAOAssetManager assetManager;
+ @Wire private MusicSystem musicSystem;
+ @Wire private Config config;
private ClientSystem clientSystem;
private ScreenManager screenManager;
- private MusicSystem musicSystem;
private SoundsSystem soundsSystem;
private TextField emailField;
private TextField passwordField;
- private CheckBox rememberMe; //@todo implementar remember me
+ private CheckBox rememberMe;
private CheckBox seePassword;
private CheckBox disableMusic;
private CheckBox disableSound;
private TextButton loginButton;
- private List serverList;
- ;
+ private List serverList;
+ private boolean isDialogShowed = false;
public LoginScreen() {
}
@@ -46,25 +51,33 @@ public LoginScreen() {
@Override
protected void keyPressed(int keyCode) {
if (keyCode == Input.Keys.ESCAPE) {
- Gdx.app.exit();
+ // arregla bug en el que se sigen generando dialog si se apreta multiple veces ESCAPE
+ if (!isDialogShowed) {
+ isDialogShowed = true;
+ ExtendedDialog dialog = new ExtendedDialog( "Cerrar juego", getSkin() );
+ dialog.text( "¿Está seguro que desea cerrar el juego?" );
+ dialog.button( "Aceptar", Gdx.app::exit );
+ dialog.button( "Cancelar", () -> {isDialogShowed = false;});
+ dialog.show( getStage() );
+ }
}
-// if (keyCode == Input.Keys.ENTER && this.canConnect) {
-// this.canConnect = false;
-// connectThenLogin();
-// Gdx.app.exit();
-// }
}
@Override
protected void createUI() {
- ClientConfiguration.Account account = clientConfiguration.getAccount();
+ Config.Account account = config.account;
/* Tabla de login */
- Window loginWindow = WidgetFactory.createWindow(); //@todo window es una ventana arrastrable
+ Window loginWindow = WidgetFactory.createWindow();
+ loginWindow.getTitleLabel().setAlignment( Align.center );
+ loginWindow.getTitleLabel().setText( "Login Windows" );
Label emailLabel = WidgetFactory.createLabel("Email: ");
- emailField = WidgetFactory.createTextField(account.getEmail());
+ //tamaño de las fuentes (nota soy chicaton :P )
+ emailLabel.getStyle().font = getSkin().getFont( "big" );
+ emailField = WidgetFactory.createTextField(account.email);
Label passwordLabel = WidgetFactory.createLabel("Password");
- passwordField = WidgetFactory.createTextField(account.getPassword());
+ passwordLabel.getStyle().font = getSkin().getFont( "big" );
+ passwordField = WidgetFactory.createTextField(account.password);
passwordField.setPasswordCharacter('*');
passwordField.setPasswordMode(true);
rememberMe = WidgetFactory.createCheckBox("Remember me");
@@ -105,11 +118,96 @@ public void changed(ChangeEvent event, Actor actor) {
loginWindow.add(seePassword).padLeft(-10).padTop(30);
loginWindow.add(newAccountButton).padTop(30).row();
- /* Tabla de servidores */
- Table connectionTable = new Table((getSkin()));
+ /* Tabla de servidores
+ * reemplazado por windows
+ * */
+ Window connectionTable = WidgetFactory.createWindow();
+ // agrege un titulo a la lista de servidores
+ connectionTable.getTitleLabel().setText( "Server List" );
+ connectionTable.getTitleLabel().setAlignment( Align.center );
serverList = WidgetFactory.createList();
- serverList.setItems(clientConfiguration.getNetwork().getServers());
- connectionTable.add(serverList).width(400).height(300); //@todo Nota: setear el size acá es redundante, pero si no se hace no se ve bien la lista. Ver (*) más abajo.
+ serverList.setAlignment( Align.center );
+ serverList.setItems(config.network.servers);
+ if (config.network.selected >= 0 && config.network.selected < config.network.servers.size) {
+ serverList.setSelectedIndex(config.network.selected);
+ }
+ serverList.getStyle().font = getSkin().getFont( "big" );
+ // panel desplasable
+ // las barra de desplasamiento aparece cuando la lista sobrepasa el tamaño
+ ScrollPane scrollPane = WidgetFactory.createScrollPane(serverList,false,true,false,true);
+ // transparencia para igualar la ventana de login
+ connectionTable.getColor().a = 0.8f;
+ // Nota: setear el size acá es redundante, pero si no se hace no se ve bien la lista. Ver (*) más abajo.
+ connectionTable.add(scrollPane).colspan(2).width(350).height(250);
+ connectionTable.row();
+
+ TextButton addServerButton = WidgetFactory.createTextButton("Añadir servidor");
+ addServerButton.addListener(new ChangeListener() {
+ @Override
+ public void changed(ChangeEvent event, Actor actor) {
+ ExtendedDialog dialog = new ExtendedDialog("Añadir servidor", getSkin());
+ TextField serverNameField = WidgetFactory.createTextField("Server Name");
+ serverNameField.setMaxLength( 20 );
+ TextField ipField = WidgetFactory.createTextField("127.0.0.1");
+ TextField portField = WidgetFactory.createTextField("7666");
+ dialog.getContentTable().add(WidgetFactory.createLabel("SERVER NAME: "));
+ dialog.getContentTable().add(serverNameField).row();
+ dialog.getContentTable().add(WidgetFactory.createLabel("IP: "));
+ dialog.getContentTable().add(ipField).row();
+ dialog.getContentTable().add(WidgetFactory.createLabel("PORT: "));
+ dialog.getContentTable().add(portField).row();
+ dialog.button("Aceptar", () -> {
+ String name = serverNameField.getText();
+ String ip = ipField.getText();
+ int port;
+ try {
+ port = Integer.parseInt(portField.getText());
+ } catch (NumberFormatException ignored) {
+ return;
+ }
+ // chequeo servidor esta en la lista
+ String newSever = name + " " + ip + ":" + port;
+ Array servers = config.network.servers;
+ boolean serverExist = false;
+
+ for (int i = 0; i < servers.size; i++) {
+ if (servers.get(i).toString().equals(newSever)){
+ serverExist = true;
+ break;
+ }
+ }
+ /*
+ * si esta en la lista lanza cuadro de error si no agrega el servidor
+ * todo guardar la lista de servidores
+ */
+ if (serverExist){
+ ExtendedDialog dialog1 = new ExtendedDialog("Error", getSkin());
+ dialog1.getTitleLabel().setAlignment( Align.center );
+ dialog1.text("El servidor ya esta en la lista\n" +
+ "The sever is already in the list");
+ dialog1.button("ok");
+ dialog1.show(getStage());
+ }
+ else {
+ config.network.servers.add( new Server( name, ip, port ) );
+ serverList.setItems(config.network.servers);
+ }
+ });
+ dialog.button( "Cancel" );
+ dialog.show(getStage());
+ }
+ });
+ connectionTable.add(addServerButton);
+
+ TextButton deleteServerButton = WidgetFactory.createTextButton("Eliminar servidor");
+ deleteServerButton.addListener(new ChangeListener() {
+ @Override
+ public void changed(ChangeEvent event, Actor actor) {
+ config.network.servers.removeValue(serverList.getSelected(), true);
+ serverList.setItems(config.network.servers);
+ }
+ });
+ connectionTable.add(deleteServerButton);
/* Botones para desactivar el sonido y la musica*/
@@ -117,22 +215,24 @@ public void changed(ChangeEvent event, Actor actor) {
disableMusic = new CheckBox("Desabilitar Musica", getSkin());
if (preferences.getBoolean("MusicOff")) {
disableMusic.setChecked(true);
- musicSystem.stopMusic();
- musicSystem.setDisableMusic(true);
+ musicSystem.setDisabled(true);
}
disableMusic.addListener(new ChangeListener() {
@Override
public void changed(ChangeEvent event, Actor actor) {
- musicSystem.setDisableMusic(!musicSystem.isDisableMusic());
+ musicSystem.setDisabled(!musicSystem.isDisabled());
preferences.putBoolean("MusicOff", disableMusic.isChecked());
preferences.flush();
+ }
+ });
- if (!musicSystem.isDisableMusic()) {
- musicSystem.playMusic(101, true);
- } else {
- musicSystem.stopMusic();
- }
+ Slider musicVolumeBar = new Slider(0.0f, 1.0f, 0.1f, false, getSkin());
+ musicVolumeBar.setValue(musicSystem.getVolume());
+ musicVolumeBar.addListener(new ChangeListener() {
+ @Override
+ public void changed(ChangeEvent event, Actor actor) {
+ musicSystem.setVolume(musicVolumeBar.getValue());
}
});
@@ -140,39 +240,55 @@ public void changed(ChangeEvent event, Actor actor) {
disableSound = new CheckBox("Desabilitar sonido", getSkin());
if (preferences.getBoolean("SoundOff")) {
disableSound.setChecked(true);
- soundsSystem.setDisableSounds(true);
+ soundsSystem.setDisabled(true);
}
disableSound.addListener(new ChangeListener() {
@Override
public void changed(ChangeEvent event, Actor actor) {
preferences.putBoolean("SoundOff", disableSound.isChecked());
preferences.flush();
- soundsSystem.setDisableSounds(!soundsSystem.isDisableSounds());
+ soundsSystem.setDisabled(!soundsSystem.isDisabled());
+ }
+ });
+
+ Slider soundVolumeBar = new Slider(0.0f, 1.0f, 0.1f, false, getSkin());
+ soundVolumeBar.setValue(soundsSystem.getVolume());
+ soundVolumeBar.addListener(new ChangeListener() {
+ @Override
+ public void changed(ChangeEvent event, Actor actor) {
+ soundsSystem.setVolume(musicVolumeBar.getValue());
}
});
/* Agrega la imagen del logo */
- Cell logoCell = getMainTable().add(WidgetFactory.createImage(new Texture(Gdx.files.local("data/ui/images/logo-big.png")))).center();
+ Cell logoCell = getMainTable().add(WidgetFactory.createImage(new Texture(Gdx.files.local("data/ui/images/logo-big.png"))))
+ .pad(20).center();
logoCell.row();
/* Tabla botones */
Window buttonsTable = WidgetFactory.createWindow();
+ // transparencia para igualar la ventana de loggin
+ buttonsTable.getColor().a = 0.8f;;
buttonsTable.setMovable(false);
- buttonsTable.background(getSkin().getDrawable("menu-frame"));
+ buttonsTable.background(WidgetFactory.createDrawable(Drawables.SLOT.name));
buttonsTable.getTitleLabel().setColor(Color.GOLD);
buttonsTable.getTitleLabel().setAlignment(2);
- buttonsTable.setHeight(100);
- buttonsTable.add(disableMusic).width(500).pad(10);
- buttonsTable.add(disableSound).width(400).pad(10);
+ buttonsTable.setHeight(110);
+ buttonsTable.add(disableMusic).width(500).pad(5);
+ buttonsTable.add(disableSound).width(400).pad(5);
+ buttonsTable.row();
+ buttonsTable.add(musicVolumeBar);
+ buttonsTable.add(soundVolumeBar);
/* Tabla para loguin y servers */
Table login_server = new Table();
- login_server.add(loginWindow).width(500).height(300).padLeft(10).padRight(10).padTop(10);
- login_server.add(connectionTable).width(400).height(300).padLeft(10).padRight(10).padTop(10); //(*) Seteando acá el size, recursivamente tendrÃa que resizear list.
+ login_server.add(loginWindow).width(500).height(400).padLeft(10).padRight(10).padTop(10);
+ //(*) Seteando acá el size, recursivamente tendrÃa que resizear list.
+ login_server.add(connectionTable).width(400).height(400).padLeft(10).padRight(10).padTop(10);
/* Tabla principal */
getMainTable().add(login_server).row();
- getMainTable().add(buttonsTable).height(100).width(920).pad(3);
+ getMainTable().add(buttonsTable).height(150).width(920).pad(3);
getStage().setKeyboardFocus(emailField);
}
@@ -199,14 +315,17 @@ public void run() {
String email = emailField.getText();
String password = passwordField.getText();
- clientConfiguration.getAccount().setEmail(email);
- clientConfiguration.getAccount().setPassword(password);
- // clientConfiguration.save(); TODO this is breaking all
+ config.account.email = email;
+ config.account.password = password;
+ config.fileSave(Resources.CLIENT_CONFIG);
- ClientConfiguration.Network.Server server = serverList.getSelected();
+ Config.Network.Server server = serverList.getSelected();
if (server == null) return;
- String ip = server.getHostname();
- int port = server.getPort();
+
+ config.network.selected = config.network.servers.indexOf(server, false);
+
+ String ip = server.hostname;
+ int port = server.port;
// Si podemos conectarnos, mandamos la peticion para loguearnos a la cuenta.
if (clientSystem.connect(ip, port)) {
diff --git a/client/src/game/screens/ScreenManager.java b/client/src/game/screens/ScreenManager.java
index 180a16f1..3919a5f5 100644
--- a/client/src/game/screens/ScreenManager.java
+++ b/client/src/game/screens/ScreenManager.java
@@ -17,9 +17,7 @@ public class ScreenManager extends PassiveSystem {
private final AOGame game;
private final List> listeners;
- private MusicSystem musicSystem;
- @Wire
- private DefaultAOAssetManager assetManager;
+ @Wire private DefaultAOAssetManager assetManager;
public ScreenManager(AOGame game) {
this.game = game;
diff --git a/client/src/game/screens/SignUpScreen.java b/client/src/game/screens/SignUpScreen.java
index 3d1dc97b..466728c9 100644
--- a/client/src/game/screens/SignUpScreen.java
+++ b/client/src/game/screens/SignUpScreen.java
@@ -5,7 +5,7 @@
import com.badlogic.gdx.scenes.scene2d.ui.*;
import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener;
import com.badlogic.gdx.utils.Timer;
-import game.ClientConfiguration;
+import game.Config;
import game.handlers.DefaultAOAssetManager;
import game.systems.network.ClientSystem;
import game.ui.WidgetFactory;
@@ -15,9 +15,8 @@
@Wire
public class SignUpScreen extends AbstractScreen {
- @Wire
- private DefaultAOAssetManager assetManager;
- private ClientConfiguration clientConfiguration;
+ @Wire private DefaultAOAssetManager assetManager;
+ @Wire private Config config;
private ClientSystem clientSystem;
private ScreenManager screenManager;
@@ -25,12 +24,12 @@ public class SignUpScreen extends AbstractScreen {
private TextField passwordField1, passwordField2;
private TextField emailField;
private TextButton registerButton;
- private List serverList;
+ private List serverList;
@Override
protected void createUI() {
/* Tabla de sign up */
- Window signUpTable = WidgetFactory.createWindow(); //@todo window es una ventana arrastrable
+ Window signUpTable = WidgetFactory.createWindow();
Label usernameLabel = WidgetFactory.createLabel("Username: ");
usernameField = WidgetFactory.createTextField("");
Label emailLabel = WidgetFactory.createLabel("Email:");
@@ -70,7 +69,10 @@ public void changed(ChangeEvent event, Actor actor) {
/* Tabla de servidores */
Table serverTable = new Table((getSkin()));
serverList = WidgetFactory.createList();
- serverList.setItems(clientConfiguration.getNetwork().getServers());
+ serverList.setItems(config.network.servers);
+ if (config.network.selected >= 0 && config.network.selected < config.network.servers.size) {
+ serverList.setSelectedIndex(config.network.selected);
+ }
serverTable.add(serverList).width(400).height(300); //@todo Nota: setear el size acá es redundante, pero si no se hace no se ve bien la lista. Ver (*) más abajo.
/* Tabla principal */
@@ -115,10 +117,13 @@ public void run() {
}
// Conectar el ClientSystem
- ClientConfiguration.Network.Server server = serverList.getSelected();
+ Config.Network.Server server = serverList.getSelected();
if (server == null) return;
- String ip = server.getHostname();
- int port = server.getPort();
+
+ config.network.selected = config.network.servers.indexOf(server, false);
+
+ String ip = server.hostname;
+ int port = server.port;
// Si podemos conectarnos, mandamos la peticion para crear a la cuenta.
if (clientSystem.connect(ip, port)) {
diff --git a/client/src/game/systems/actions/PlayerActionSystem.java b/client/src/game/systems/actions/PlayerActionSystem.java
index 948c91c4..778c516e 100644
--- a/client/src/game/systems/actions/PlayerActionSystem.java
+++ b/client/src/game/systems/actions/PlayerActionSystem.java
@@ -7,6 +7,7 @@
import game.systems.network.ClientSystem;
import game.systems.network.TimeSync;
import game.systems.resources.MessageSystem;
+import game.systems.ui.UserInterfaceSystem;
import game.systems.ui.action_bar.systems.InventorySystem;
import game.systems.ui.action_bar.systems.SpellSystem;
import game.systems.ui.console.ConsoleSystem;
@@ -17,9 +18,11 @@
import shared.network.combat.AttackRequest;
import shared.network.combat.SpellCastRequest;
import shared.network.interaction.MeditateRequest;
+import shared.network.interaction.TeleportRequest;
import shared.network.inventory.ItemActionRequest;
import shared.network.inventory.ItemActionRequest.ItemAction;
import shared.systems.IntervalSystem;
+import shared.util.EntityUpdateBuilder;
import shared.util.Messages;
@Wire
@@ -35,6 +38,8 @@ public class PlayerActionSystem extends PassiveSystem {
private MessageSystem messageSystem;
private InventorySystem inventorySystem;
+ private UserInterfaceSystem userInterfaceSystem;
+
public void meditate() {
if (playerSystem.get().healthMin() > 0) {
clientSystem.send(new MeditateRequest());
@@ -66,7 +71,6 @@ public void castSpell(Spell spell, WorldPos pos) {
long rtt = timeSyncSystem.getRtt();
long timeOffset = timeSyncSystem.getTimeOffset();
clientSystem.send(new SpellCastRequest(spell, pos, rtt + timeOffset));
- spellSystem.clearCast();
player.attackIntervalValue(Intervals.MAGIC_ATTACK_INTERVAL);
} else {
consoleSystem.getConsole().addWarning(messageSystem.getMessage(Messages.CANT_MAGIC_THAT_FAST));
@@ -86,7 +90,6 @@ public void rangedAttack(WorldPos targetPos) {
long rtt = timeSyncSystem.getRtt();
long timeOffset = timeSyncSystem.getTimeOffset();
clientSystem.send(new AttackRequest(AttackType.RANGED, targetPos, rtt + timeOffset));
- spellSystem.clearShot();
playerSystem.get().attackIntervalValue(Intervals.ATTACK_INTERVAL);
} else {
consoleSystem.getConsole().addWarning(messageSystem.getMessage(Messages.CANT_ATTACK_THAT_FAST));
@@ -95,4 +98,9 @@ public void rangedAttack(WorldPos targetPos) {
consoleSystem.getConsole().addWarning(messageSystem.getMessage(Messages.DEAD_CANT));
}
}
+
+ public void teleport(){
+ WorldPos mouseWorldPos = userInterfaceSystem.getMouseWorldPos();
+ clientSystem.send(new TeleportRequest(mouseWorldPos.getMap(), mouseWorldPos.getX(), mouseWorldPos.getY()));
+ }
}
diff --git a/client/src/game/systems/anim/MovementAnimationSystem.java b/client/src/game/systems/anim/MovementAnimationSystem.java
index fecf1d51..28902118 100644
--- a/client/src/game/systems/anim/MovementAnimationSystem.java
+++ b/client/src/game/systems/anim/MovementAnimationSystem.java
@@ -31,50 +31,17 @@ public MovementAnimationSystem() {
@Override
protected void removed(int entityId) {
super.removed(entityId);
- // reset animation time
E entity = E(entityId);
- final Heading heading = entity.getHeading();
- if (!entity.movementHasMovements()) {
- updateAnimationTime(entity, heading, true);
- }
+ entity.removeCharAnimation();
}
@Override
protected void process(int entityId) {
E entity = E(entityId);
- final Heading heading = entity.getHeading();
- updateAnimationTime(entity, heading, false);
- }
-
- private void updateAnimationTime(E entity, Heading heading, boolean reset) {
- Optional velocity = Optional.empty();
if (entity.hasAOPhysics() && entity.hasCharacter()) {
- velocity = Optional.of(entity.getAOPhysics().velocity);
- }
- if (entity.hasBody()) {
- final Body body = entity.getBody();
- BundledAnimation animation = animationsSystem.getBodyAnimation(body, heading.current);
- if (animation != null) {
- velocity.ifPresent(v -> animation.setFrameDuration(v / Tile.TILE_PIXEL_WIDTH));
- animation.setAnimationTime(!reset ? animation.getAnimationTime() + world.getDelta() : 0);
- }
- }
- if (entity.hasWeapon()) {
- final Weapon weapon = entity.getWeapon();
- BundledAnimation animation = animationsSystem.getWeaponAnimation(weapon, heading.current);
- if (animation != null) {
- velocity.ifPresent(v -> animation.setFrameDuration(v / Tile.TILE_PIXEL_WIDTH));
- animation.setAnimationTime(!reset ? animation.getAnimationTime() + world.getDelta() : 0);
- }
- }
- if (entity.hasShield()) {
- final Shield weapon = entity.getShield();
- BundledAnimation animation = animationsSystem.getShieldAnimation(weapon, heading.current);
- if (animation != null) {
- velocity.ifPresent(v -> animation.setFrameDuration(v / Tile.TILE_PIXEL_WIDTH));
- animation.setAnimationTime(!reset ? animation.getAnimationTime() + world.getDelta() : 0);
- }
+ entity.charAnimationDuration(0.5f);
}
+ entity.charAnimationAdd(world.getDelta());
}
}
diff --git a/client/src/game/systems/camera/CameraFocusSystem.java b/client/src/game/systems/camera/CameraFocusSystem.java
index 815d43ac..85d514c4 100644
--- a/client/src/game/systems/camera/CameraFocusSystem.java
+++ b/client/src/game/systems/camera/CameraFocusSystem.java
@@ -8,13 +8,17 @@
import component.camera.AOCamera;
import component.camera.Focused;
import component.position.WorldPos;
+import game.systems.ui.UserInterfaceSystem;
import game.utils.Pos2D;
+import shared.model.map.Tile;
import static com.artemis.E.E;
@Wire
public class CameraFocusSystem extends IteratingSystem {
+ private UserInterfaceSystem userInterfaceSystem;
+
public CameraFocusSystem() {
super(Aspect.all(Focused.class, WorldPos.class));
}
diff --git a/client/src/game/systems/camera/CameraMovementSystem.java b/client/src/game/systems/camera/CameraMovementSystem.java
index 91a47686..424e845e 100644
--- a/client/src/game/systems/camera/CameraMovementSystem.java
+++ b/client/src/game/systems/camera/CameraMovementSystem.java
@@ -6,7 +6,7 @@
import com.badlogic.gdx.graphics.OrthographicCamera;
import component.camera.AOCamera;
import component.position.WorldPosOffsets;
-import game.systems.render.BatchRenderingSystem;
+import game.systems.render.BatchSystem;
import shared.model.map.Tile;
import static com.artemis.E.E;
@@ -15,7 +15,7 @@
public class CameraMovementSystem extends IteratingSystem {
private CameraSystem cameraSystem;
- private BatchRenderingSystem batchRenderingSystem;
+ private BatchSystem batchSystem;
/**
* Creates a new CameraMovementSystem.
@@ -35,7 +35,7 @@ protected void process(int cameraEntity) {
camera.position.y -= Tile.TILE_PIXEL_HEIGHT;
camera.update();
- batchRenderingSystem.getBatch().setProjectionMatrix(camera.combined);
+ batchSystem.getBatch().setProjectionMatrix(camera.combined);
}
}
diff --git a/client/src/game/systems/camera/CameraSystem.java b/client/src/game/systems/camera/CameraSystem.java
index d77ca21c..2336cc94 100644
--- a/client/src/game/systems/camera/CameraSystem.java
+++ b/client/src/game/systems/camera/CameraSystem.java
@@ -6,7 +6,8 @@
import com.badlogic.gdx.graphics.OrthographicCamera;
import com.badlogic.gdx.math.Interpolation;
import com.badlogic.gdx.math.MathUtils;
-import shared.model.map.Tile;
+import com.badlogic.gdx.utils.Scaling;
+import com.badlogic.gdx.utils.viewport.*;
import static com.artemis.E.E;
@@ -14,13 +15,14 @@
public class CameraSystem extends BaseSystem {
public static final float CAMERA_MIN_ZOOM = 1f;
- public static final float CAMERA_MAX_ZOOM = 1.3f;
+ public static final float CAMERA_MAX_ZOOM = 1f;
public static final float ZOOM_TIME = 0.5f;
private final float minZoom;
private final float maxZoom;
public OrthographicCamera camera;
private float desiredZoom;
private float timeToCameraZoomTarget, cameraZoomOrigin, cameraZoomDuration;
+ private Viewport viewport;
public CameraSystem() {
this(CAMERA_MIN_ZOOM, CAMERA_MAX_ZOOM);
@@ -29,14 +31,13 @@ public CameraSystem() {
public CameraSystem(float minZoom, float maxZoom) {
this(minZoom, maxZoom, Gdx.graphics.getWidth(), Gdx.graphics.getHeight());
}
-
- private CameraSystem(float minZoom, float maxZoom, float width, float height) {
+ // design hecho publico para poder dar el tamaño correcto
+ public CameraSystem(float minZoom, float maxZoom, float width, float height) {
this.maxZoom = maxZoom;
this.minZoom = minZoom;
- this.desiredZoom = minZoom;
- float zoomFactorInverter = 1f / minZoom;
- setupViewport(width * zoomFactorInverter,
- height * zoomFactorInverter);
+ this.desiredZoom = maxZoom;
+ setupViewport(width, height);
+ camera.zoom = desiredZoom;
}
private void setupViewport(float width, float height) {
@@ -44,13 +45,23 @@ private void setupViewport(float width, float height) {
}
private void createGameCamera(float width, float height) {
- camera = new OrthographicCamera(Tile.TILE_PIXEL_WIDTH * 24, Tile.TILE_PIXEL_WIDTH * 24 * (height / width));
- camera.setToOrtho(true, Tile.TILE_PIXEL_WIDTH * 24, Tile.TILE_PIXEL_WIDTH * 24 * (height / width));
+ camera = new OrthographicCamera();
+ float newWidth = width - 260;
+ viewport = new ScalingViewport(Scaling.none, newWidth, height, camera);
+ viewport.setScreenBounds(0, 0, (int) newWidth, (int) height);
+ viewport.apply(true);
+ camera.setToOrtho(true, newWidth, height);
camera.update();
}
@Override
protected void processSystem() {
+ final int width = Gdx.graphics.getWidth() - 260;
+ final int height = Gdx.graphics.getHeight();
+ Gdx.gl.glViewport(0, 0, width, height);
+ viewport.apply(true);
+ camera.setToOrtho(true, width, height);
+ camera.update();
if (timeToCameraZoomTarget >= 0) {
timeToCameraZoomTarget -= getWorld().getDelta();
float progress = timeToCameraZoomTarget < 0 ? 1 : 1f - timeToCameraZoomTarget / cameraZoomDuration;
@@ -62,6 +73,9 @@ public void zoom(float inout, float duration) {
cameraZoomOrigin = camera.zoom;
desiredZoom += inout * 0.025f;
desiredZoom = MathUtils.clamp(desiredZoom, minZoom, maxZoom);
+
+ //design center es mejor gradual como esta arriba
+// desiredZoom = inout < 0 ? minZoom : maxZoom;
timeToCameraZoomTarget = cameraZoomDuration = duration;
}
@@ -72,4 +86,5 @@ protected void initialize() {
.aOCamera()
.worldPosOffsets();
}
+
}
diff --git a/client/src/game/systems/input/InputSystem.java b/client/src/game/systems/input/InputSystem.java
index fd473b2f..5a8aa72a 100644
--- a/client/src/game/systems/input/InputSystem.java
+++ b/client/src/game/systems/input/InputSystem.java
@@ -6,6 +6,7 @@
import game.screens.ScreenManager;
import game.systems.actions.PlayerActionSystem;
import game.systems.camera.CameraSystem;
+import game.systems.map.MapManager;
import game.systems.network.ClientSystem;
import game.systems.resources.MusicSystem;
import game.systems.screen.MouseSystem;
@@ -23,6 +24,8 @@ public class InputSystem extends PassiveSystem implements InputProcessor {
public static boolean alternativeKeys = false;
+ @Wire private MusicSystem musicSystem;
+
private PlayerActionSystem playerActionSystem;
private CameraSystem cameraSystem;
private ScreenSystem screenSystem;
@@ -32,22 +35,32 @@ public class InputSystem extends PassiveSystem implements InputProcessor {
private InventorySystem inventorySystem;
private SpellSystem spellSystem;
private ActionBarSystem actionBarSystem;
- private MusicSystem musicSystem;
private DialogSystem dialogSystem;
private MouseSystem mouseSystem;
+ private boolean shiftLeftPressed = false;
+
@Override
public boolean keyDown(int keycode) {
+ doActionsOnKeyDown(keycode);
return false;
}
+ private void doActionsOnKeyDown(int keycode) {
+ switch(keycode) {
+ case Input.Keys.SHIFT_LEFT:
+ shiftLeftPressed = true;
+ break;
+ }
+ }
+
@Override
public boolean keyUp(int keycode) {
if (alternativeKeys) {
doAlternativeActions(keycode);
} else {
- doActions(keycode);
+ doActionsOnKeyUp(keycode);
}
switch (keycode) {
case AlternativeKeys.TALK:
@@ -71,13 +84,23 @@ public boolean keyTyped(char character) {
@Override
public boolean touchDown(int screenX, int screenY, int pointer, int button) {
+ doActionOnTouchDown(screenX, screenY, pointer, button);
return false;
}
+ private void doActionOnTouchDown(int screenX, int screenY, int pointer, int button) {
+ if(shiftLeftPressed){
+ playerActionSystem.teleport();
+ }
+ }
+
@Override
public boolean touchUp(int screenX, int screenY, int pointer, int button) {
- mouseSystem.onClick();
- return true;
+ if (button == Input.Buttons.LEFT) {
+ mouseSystem.onClick();
+ return true;
+ }
+ return false;
}
@Override
@@ -96,7 +119,7 @@ public boolean scrolled(float amountX, float amountY) {
return true;
}
- private void doActions(int keycode) {
+ private void doActionsOnKeyUp(int keycode) {
switch (keycode) {
case AOKeys.INVENTORY:
actionBarSystem.showInventory();
@@ -129,6 +152,9 @@ private void doActions(int keycode) {
case Input.Keys.F2:
screenSystem.takeScreenshot();
break;
+ case Input.Keys.F4:
+ MapManager.layer4Disable = !MapManager.layer4Disable;
+ break;
case Input.Keys.F11:
screenSystem.toggleFullscreen();
break;
@@ -141,6 +167,9 @@ private void doActions(int keycode) {
case Input.Keys.NUM_9:
musicSystem.volumeUp();
break;
+ case Input.Keys.SHIFT_LEFT:
+ shiftLeftPressed = false;
+ break;
}
}
@@ -174,6 +203,9 @@ private void doAlternativeActions(int keycode) {
case Input.Keys.F2:
screenSystem.takeScreenshot();
break;
+ case Input.Keys.F4:
+ MapManager.layer4Disable = !MapManager.layer4Disable;
+ break;
case Input.Keys.F11:
screenSystem.toggleFullscreen();
break;
diff --git a/client/src/game/systems/map/MapManager.java b/client/src/game/systems/map/MapManager.java
index ceb087b4..35e9b271 100644
--- a/client/src/game/systems/map/MapManager.java
+++ b/client/src/game/systems/map/MapManager.java
@@ -2,7 +2,7 @@
import com.artemis.BaseSystem;
import com.badlogic.gdx.graphics.g2d.TextureRegion;
-import game.systems.render.BatchRenderingSystem;
+import game.systems.render.BatchSystem;
import game.systems.resources.AnimationsSystem;
import model.textures.AOTexture;
import model.textures.BundledAnimation;
@@ -17,9 +17,11 @@
public class MapManager extends BaseSystem {
public static final List LOWER_LAYERS = Arrays.asList(0, 1);
+ public static final List MIDDLE_LAYERS = Collections.singletonList(2);
public static final List UPPER_LAYERS = Collections.singletonList(3);
+ public static boolean layer4Disable = false;
private AnimationsSystem animationsSystem;
- private BatchRenderingSystem batchRenderingSystem;
+ private BatchSystem batchSystem;
public void drawLayer(Map map, int layer) {
drawLayer(map, 0, layer, false, false, false);
@@ -49,6 +51,9 @@ private void drawLayer(Map map, float delta, int layer, boolean drawExit, boolea
// draw exit
doTileDraw(delta, x, y, 3);
}
+ if (drawExit && tile.getTrigger() > 0 ){
+ doTileDraw(delta, x, y, 23652);
+ }
}
}
}
@@ -98,7 +103,7 @@ private void doTileDraw(int y, int x, TextureRegion tileRegion) {
final float tileOffsetX = mapPosX + (Tile.TILE_PIXEL_WIDTH - tileRegion.getRegionWidth()) / 2;
final float tileOffsetY = mapPosY - tileRegion.getRegionHeight() + Tile.TILE_PIXEL_HEIGHT;
- batchRenderingSystem.addTask(batch1 -> batch1.draw(tileRegion, tileOffsetX, tileOffsetY));
+ batchSystem.getBatch().draw(tileRegion, tileOffsetX, tileOffsetY);
}
}
diff --git a/client/src/game/systems/physics/MovementSystem.java b/client/src/game/systems/physics/MovementSystem.java
index 360fe89b..1ca04cab 100644
--- a/client/src/game/systems/physics/MovementSystem.java
+++ b/client/src/game/systems/physics/MovementSystem.java
@@ -60,7 +60,7 @@ protected void process(int entity) {
private boolean movePlayer(@NotNull E player) {
Destination destination = player.movementCurrent();
float velocity = player.getAOPhysics().getVelocity();
- float delta = world.getDelta() * velocity / Tile.TILE_PIXEL_HEIGHT;
+ float delta = world.getDelta() * velocity / Tile.TILE_PIXEL_WIDTH;
AOPhysics.Movement movementDir = AOPhysics.Movement.values()[destination.dir];
WorldPosOffsets offsets = player.getWorldPosOffsets();
switch (movementDir) {
diff --git a/client/src/game/systems/profiling/ProfilerSystem.java b/client/src/game/systems/profiling/ProfilerSystem.java
new file mode 100644
index 00000000..1709a6a9
--- /dev/null
+++ b/client/src/game/systems/profiling/ProfilerSystem.java
@@ -0,0 +1,33 @@
+package game.systems.profiling;
+
+import com.artemis.BaseSystem;
+import com.badlogic.gdx.Gdx;
+import com.badlogic.gdx.graphics.profiling.GLProfiler;
+import com.esotericsoftware.minlog.Log;
+
+public class ProfilerSystem extends BaseSystem {
+
+ private final GLProfiler profiler;
+
+ public ProfilerSystem() {
+ profiler = new GLProfiler(Gdx.graphics);
+ profiler.enable();
+ }
+
+ @Override
+ protected void processSystem() {
+ printDetails();
+ profiler.reset();
+ }
+
+ private void printDetails() {
+ Log.info("Profiling info: ");
+ Log.info(" Calls: " + profiler.getCalls());
+ Log.info(" Draw Calls: " + profiler.getDrawCalls());
+ Log.info(" Texture Bindings: " + profiler.getTextureBindings());
+ Log.info(" Shader Switches: " + profiler.getShaderSwitches());
+ Log.info(" Vertex Count: " + profiler.getVertexCount().value);
+ Log.info("----------------");
+ }
+
+}
diff --git a/client/src/game/systems/render/BatchBeginSystem.java b/client/src/game/systems/render/BatchBeginSystem.java
new file mode 100644
index 00000000..7c5cbcf3
--- /dev/null
+++ b/client/src/game/systems/render/BatchBeginSystem.java
@@ -0,0 +1,15 @@
+package game.systems.render;
+
+import com.artemis.BaseSystem;
+import com.artemis.annotations.Wire;
+
+@Wire
+public class BatchBeginSystem extends BaseSystem {
+
+ private BatchSystem batchSystem;
+
+ @Override
+ protected void processSystem() {
+ batchSystem.getBatch().begin();
+ }
+}
diff --git a/client/src/game/systems/render/BatchEndSystem.java b/client/src/game/systems/render/BatchEndSystem.java
new file mode 100644
index 00000000..d0d7b078
--- /dev/null
+++ b/client/src/game/systems/render/BatchEndSystem.java
@@ -0,0 +1,15 @@
+package game.systems.render;
+
+import com.artemis.BaseSystem;
+import com.artemis.annotations.Wire;
+
+@Wire
+public class BatchEndSystem extends BaseSystem {
+
+ private BatchSystem batchSystem;
+
+ @Override
+ protected void processSystem() {
+ batchSystem.getBatch().end();
+ }
+}
diff --git a/client/src/game/systems/render/BatchRenderingSystem.java b/client/src/game/systems/render/BatchRenderingSystem.java
deleted file mode 100644
index 51ade0bf..00000000
--- a/client/src/game/systems/render/BatchRenderingSystem.java
+++ /dev/null
@@ -1,109 +0,0 @@
-package game.systems.render;
-
-import com.artemis.Aspect;
-import com.artemis.BaseSystem;
-import com.artemis.E;
-import com.artemis.annotations.Wire;
-import com.badlogic.gdx.Gdx;
-import com.badlogic.gdx.graphics.GL20;
-import com.badlogic.gdx.graphics.GL30;
-import com.badlogic.gdx.graphics.Pixmap;
-import com.badlogic.gdx.graphics.Texture;
-import com.badlogic.gdx.graphics.g2d.Batch;
-import com.badlogic.gdx.graphics.g2d.SpriteBatch;
-import com.badlogic.gdx.graphics.glutils.FrameBuffer;
-import com.esotericsoftware.minlog.Log;
-import component.camera.Focused;
-import component.position.WorldPos;
-import game.utils.Pos2D;
-import game.utils.Resources;
-import shared.model.map.Tile;
-
-import java.util.Deque;
-import java.util.Iterator;
-import java.util.concurrent.ConcurrentLinkedDeque;
-
-import static game.utils.Resources.GAME_SHADERS_LIGHT;
-
-@Wire
-public class BatchRenderingSystem extends BaseSystem {
-
- private final Texture light;
- private final float width;
- private final float height;
- private final Batch batch;
- private final Deque tasks = new ConcurrentLinkedDeque<>();
- private FrameBuffer lightBuffer;
-
- public BatchRenderingSystem() {
- this.batch = new SpriteBatch();
- this.light = new Texture(Gdx.files.internal(Resources.GAME_SHADERS_PATH + GAME_SHADERS_LIGHT));
- width = Tile.TILE_PIXEL_WIDTH * 32f;
- height = Tile.TILE_PIXEL_WIDTH * 32f;
- resize(width, height);
- }
-
- public void resize(float width, float height) {
- // Faked light system (alpha blending)
- // if lightBuffer was created before, dispose, we recreate a new one
- if (lightBuffer != null) {
- lightBuffer.dispose();
- }
- lightBuffer = new FrameBuffer(Pixmap.Format.RGBA8888, (int) width, (int) height, false);
- lightBuffer.getColorBufferTexture().setFilter(Texture.TextureFilter.Nearest, Texture.TextureFilter.Nearest);
- }
-
- @Override
- protected void processSystem() {
- drawAll();
- Iterator iterator = E.withAspect(Aspect.all(Focused.class, WorldPos.class)).iterator();
- if (iterator.hasNext()) {
- E player = iterator.next();
- Pos2D playerPosition = Pos2D.get(player).toScreen();
- renderLight(playerPosition);
- }
- }
-
- private void renderLight(Pos2D playerPosition) {
- float tx = playerPosition.x + Tile.TILE_PIXEL_WIDTH / 2;
- float ty = playerPosition.y;
- int lightWidth = (int) Tile.TILE_PIXEL_WIDTH * 30;
- int lightHeight = (int) Tile.TILE_PIXEL_HEIGHT * 28;
-
- lightBuffer.begin();
- Gdx.gl.glEnable(GL20.GL_BLEND);
-
- Gdx.gl.glClearColor(0.2f, 0.2f, 0.2f, 1);
- Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT);
-
- getBatch().begin();
- getBatch().setColor(0.8f, 0.8f, 0.8f, 1f);
- getBatch().enableBlending();
- getBatch().setBlendFunction(GL20.GL_ZERO, GL20.GL_ONE_MINUS_SRC_ALPHA);
- getBatch().draw(light, tx - (lightWidth >> 1), ty - (lightHeight >> 1), lightWidth, lightHeight);
- getBatch().end();
- lightBuffer.end();
-
- getBatch().begin();
- getBatch().draw(lightBuffer.getColorBufferTexture(), tx - width / 2, ty - height / 2, width, height);
- getBatch().end();
- }
-
- private void drawAll() {
- batch.setBlendFunction(GL20.GL_SRC_ALPHA, GL20.GL_ONE_MINUS_SRC_ALPHA);
- batch.begin();
- while (tasks.peek() != null) {
- tasks.poll().run(batch);
- }
- batch.end();
- }
-
- public void addTask(BatchTask task) {
- tasks.offer(task);
- }
-
- public Batch getBatch() {
- return batch;
- }
-}
-
diff --git a/client/src/game/systems/render/BatchSystem.java b/client/src/game/systems/render/BatchSystem.java
new file mode 100644
index 00000000..3b44adfc
--- /dev/null
+++ b/client/src/game/systems/render/BatchSystem.java
@@ -0,0 +1,20 @@
+package game.systems.render;
+
+import com.artemis.annotations.Wire;
+import com.badlogic.gdx.graphics.g2d.SpriteBatch;
+import net.mostlyoriginal.api.system.core.PassiveSystem;
+
+@Wire
+public class BatchSystem extends PassiveSystem {
+
+ private SpriteBatch spriteBatch;
+
+ public BatchSystem() {
+ spriteBatch = new SpriteBatch(4096);
+
+ }
+
+ public SpriteBatch getBatch() {
+ return spriteBatch;
+ }
+}
diff --git a/client/src/game/systems/render/BatchTask.java b/client/src/game/systems/render/BatchTask.java
deleted file mode 100644
index 5daa09b1..00000000
--- a/client/src/game/systems/render/BatchTask.java
+++ /dev/null
@@ -1,7 +0,0 @@
-package game.systems.render;
-
-import com.badlogic.gdx.graphics.g2d.Batch;
-
-public interface BatchTask {
- void run(Batch batch);
-}
diff --git a/client/src/game/systems/render/chars/PrerenderCharCache.java b/client/src/game/systems/render/chars/PrerenderCharCache.java
new file mode 100644
index 00000000..5316f0da
--- /dev/null
+++ b/client/src/game/systems/render/chars/PrerenderCharCache.java
@@ -0,0 +1,246 @@
+package game.systems.render.chars;
+
+import com.artemis.annotations.Wire;
+import com.badlogic.gdx.graphics.Pixmap;
+import com.badlogic.gdx.graphics.Texture;
+import com.badlogic.gdx.graphics.TextureData;
+import com.badlogic.gdx.graphics.g2d.PixmapPacker;
+import com.badlogic.gdx.graphics.g2d.SpriteBatch;
+import com.badlogic.gdx.graphics.g2d.TextureAtlas;
+import com.badlogic.gdx.graphics.g2d.TextureRegion;
+import com.esotericsoftware.minlog.Log;
+import com.google.common.cache.CacheBuilder;
+import com.google.common.cache.CacheLoader;
+import com.google.common.cache.LoadingCache;
+import component.entity.character.render.CharRenderInfo;
+import component.entity.character.states.Heading;
+import game.handlers.DefaultAOAssetManager;
+import game.systems.resources.DescriptorsSystem;
+import game.systems.resources.ObjectSystem;
+import game.utils.Colors;
+import game.utils.Pixmaps;
+import model.descriptors.*;
+import model.textures.AOAnimation;
+import model.textures.AOImage;
+import model.textures.AOTexture;
+import net.mostlyoriginal.api.system.core.PassiveSystem;
+import shared.model.map.Tile;
+import shared.objects.types.HelmetObj;
+import shared.objects.types.ShieldObj;
+import shared.objects.types.WeaponObj;
+
+import java.time.Duration;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.concurrent.ExecutionException;
+import java.util.function.BiFunction;
+
+import static component.entity.character.render.CharRenderInfo.NONE;
+
+@Wire
+public class PrerenderCharCache extends PassiveSystem {
+
+ @Wire
+ private DefaultAOAssetManager assetManager;
+ private ObjectSystem objectSystem;
+ private DescriptorsSystem descriptorsSystem;
+
+ LoadingCache prerenderChars =
+ CacheBuilder.newBuilder().expireAfterAccess(Duration.ofMinutes(5)).removalListener((notification) -> ((CharFrames) notification.getValue()).dispose()).build(CacheLoader.from(info -> new CharFrames(info, this::drawPixmap)));
+
+
+ public TextureRegion get(CharRenderInfo info, int frame) {
+ try {
+ return prerenderChars.get(info).getFrame(frame);
+ } catch (ExecutionException e) {
+ e.printStackTrace();
+ }
+ return null;
+ }
+
+ private Pixmap drawPixmap(CharRenderInfo info, int i) {
+ int heading = info.getHeading();
+ int headOffsetY = info.getHead() == NONE ? 0 : descriptorsSystem.getBody(info.getBody()).headOffsetY;
+ int headOffsetX = 0;
+ int extraPixel;
+ if (heading == Heading.HEADING_SOUTH || heading == Heading.HEADING_NORTH) {
+ extraPixel = i == 2 || i == 4 ? 1 : i == 1 || i == 3 ? -1 : 0;
+ if (heading == Heading.HEADING_SOUTH) {
+ extraPixel *= -1;
+ }
+ headOffsetY += extraPixel;
+ } else {
+ extraPixel = i == 1 || i == 4 || i == 2 ? 1 : 0;
+ if (heading == Heading.HEADING_EAST) {
+ headOffsetX = 1;
+ headOffsetX += extraPixel;
+ } else {
+ headOffsetX = -1;
+ headOffsetX -= extraPixel;
+ }
+ }
+
+ Pixmap frame = new Pixmap((int) Tile.TILE_PIXEL_WIDTH, 64, Pixmap.Format.RGBA8888);
+ switch (heading) {
+ case Heading.HEADING_NORTH:
+ drawWeapon(frame, info.getWeapon(), heading, i);
+ drawShield(frame, info.getShield(), heading, i);
+ drawBody(frame, info.getBody(), heading, i, extraPixel);
+ drawHead(frame, info.getHead(), heading, i, headOffsetY, headOffsetX);
+ drawHelmet(frame, info.getHelmet(), heading, i, headOffsetY);
+ break;
+
+ case Heading.HEADING_SOUTH:
+ drawBody(frame, info.getBody(), heading, i, extraPixel);
+ drawHead(frame, info.getHead(), heading, i, headOffsetY, headOffsetX);
+ drawHelmet(frame, info.getHelmet(), heading, i, headOffsetY);
+ drawWeapon(frame, info.getWeapon(), heading, i);
+ drawShield(frame, info.getShield(), heading, i);
+ break;
+
+ case Heading.HEADING_EAST:
+ drawShield(frame, info.getShield(), heading, i);
+ drawBody(frame, info.getBody(), heading, i, extraPixel);
+ drawHead(frame, info.getHead(), heading, i, headOffsetY, headOffsetX);
+ drawHelmet(frame, info.getHelmet(), heading, i, headOffsetY);
+ drawWeapon(frame, info.getWeapon(), heading, i);
+ break;
+
+ case Heading.HEADING_WEST:
+ drawWeapon(frame, info.getWeapon(), heading, i);
+ drawBody(frame, info.getBody(), heading, i, extraPixel);
+ drawHead(frame, info.getHead(), heading, i, headOffsetY, headOffsetX);
+ drawHelmet(frame, info.getHelmet(), heading, i, headOffsetY);
+ drawShield(frame, info.getShield(), heading, i);
+ break;
+ }
+ return frame;
+ }
+
+ private void drawWeapon(Pixmap frame, int id, int heading, int i) {
+ if (id == NONE) return;
+ objectSystem.getObject(id).map(WeaponObj.class::cast).ifPresent(weaponObj -> {
+ WeaponDescriptor weapon = descriptorsSystem.getWeapon(weaponObj.getAnimationId());
+ int animationId = weapon.getIndexs()[heading];
+ AOAnimation animation = assetManager.getAnimation(animationId);
+
+ if (animation.getFrames().length <= i) return;
+ int frameId = animation.getFrames()[i];
+ AOTexture texture = createTexture(frameId);
+
+ drawTextureInFrame(frame, texture.getTexture(), 0, 0);
+ });
+ }
+
+ private void drawBody(Pixmap frame, int id, int heading, int i, int extraPixel) {
+ if (id == NONE) return;
+ BodyDescriptor body = descriptorsSystem.getBody(id);
+ int bodyIndex = body.getIndexs()[heading];
+ AOAnimation animation = assetManager.getAnimation(bodyIndex);
+
+ if (animation.getFrames().length <= i) return;
+ int frameId = animation.getFrames()[i];
+ AOTexture texture = createTexture(frameId);
+ drawTextureInFrame(frame, texture.getTexture(), 0, Math.max(extraPixel, 0));
+ }
+
+ private void drawHead(Pixmap frame, int id, int heading, int i, int headOffset, int extraPixel) {
+ if (id == NONE) return;
+ HeadDescriptor descriptor = descriptorsSystem.getHead(id);
+ int headId = descriptor.getIndexs()[heading];
+ AOTexture texture = createTexture(headId);
+
+ drawTextureInFrame(frame, texture.getTexture(), extraPixel, headOffset);
+ }
+
+ private void drawHelmet(Pixmap frame, int id, int heading, int i, int headOffset) {
+ if (id == NONE) return;
+ objectSystem.getObject(id).map(HelmetObj.class::cast).ifPresent(helmetObj -> {
+ HelmetDescriptor helmet = descriptorsSystem.getHelmet(helmetObj.getAnimationId());
+ int helmetId = helmet.getIndexs()[heading];
+ AOTexture texture = createTexture(helmetId);
+
+ drawTextureInFrame(frame, texture.getTexture(), 0, 45);
+ });
+ }
+
+ private void drawShield(Pixmap frame, int id, int heading, int i) {
+ if (id == NONE) return;
+ objectSystem.getObject(id).map(ShieldObj.class::cast).ifPresent(shieldObj -> {
+ ShieldDescriptor shield = descriptorsSystem.getShield(shieldObj.getAnimationId());
+ int animationId = shield.getIndexs()[heading];
+ AOAnimation animation = assetManager.getAnimation(animationId);
+
+ if (animation.getFrames().length <= i) return;
+ int frameId = animation.getFrames()[i];
+ AOTexture texture = createTexture(frameId);
+
+ drawTextureInFrame(frame, texture.getTexture(), 0, 0);
+ });
+ }
+
+ private void drawTextureInFrame(Pixmap frame, TextureRegion textureRegion, int x, int y) {
+ if (textureRegion == null) return;
+ TextureData textureData = textureRegion.getTexture().getTextureData();
+ if (!textureData.isPrepared()) {
+ textureData.prepare();
+ }
+
+ frame.drawPixmap(
+ textureData.consumePixmap(), // The other Pixmap
+ (frame.getWidth() - textureRegion.getRegionWidth()) / 2 + x, // The target x-coordinate (top left corner)
+ frame.getHeight() - textureRegion.getRegionHeight() + y, // The target y-coordinate (top left corner)
+ textureRegion.getRegionX(), // The source x-coordinate (top left corner)
+ textureRegion.getRegionY(), // The source y-coordinate (top left corner)
+ textureRegion.getRegionWidth(), // The width of the area from the other Pixmap in pixels
+ textureRegion.getRegionHeight() // The height of the area from the other Pixmap in pixels
+ );
+ }
+
+ private AOTexture createTexture(int id) {
+ AOImage image = assetManager.getImage(id);
+ if (image == null) {
+ Log.debug("Fail to create AO Image: " + id);
+ return null;
+ }
+ return new AOTexture(image, assetManager.getTexture(image.getFileNum()), false);
+ }
+
+ public static class CharFrames {
+ private final TextureAtlas incrementalTextureAtlas;
+ private final PixmapPacker pixmapPacker;
+ private final CharRenderInfo info;
+ private final BiFunction drawPixmap;
+ private final Map textureRegionMap;
+
+ public CharFrames(CharRenderInfo info, BiFunction drawPixmap) {
+ this.info = info;
+ this.drawPixmap = drawPixmap;
+ pixmapPacker = new PixmapPacker(512, 512, Pixmap.Format.RGBA8888, 1, false);
+ incrementalTextureAtlas = pixmapPacker.generateTextureAtlas(Texture.TextureFilter.Linear, Texture.TextureFilter.Linear, false);
+ textureRegionMap = new HashMap<>();
+ }
+
+ public TextureRegion getFrame(int i) {
+ return textureRegionMap.computeIfAbsent(getName(i), s -> addFrame(s, i));
+ }
+
+ private TextureRegion addFrame(String s, int i) {
+ pixmapPacker.pack(s, drawPixmap.apply(info, i));
+ pixmapPacker.updateTextureAtlas(incrementalTextureAtlas, Texture.TextureFilter.Linear, Texture.TextureFilter.Linear, false);
+ final TextureAtlas.AtlasRegion region = incrementalTextureAtlas.findRegion(s);
+ region.flip(false, true);
+ return region;
+ }
+
+ private String getName(int i) {
+ return String.format("%d-%d-%d-%d-%d-%d-%d", info.getBody(), info.getHead(), info.getHeading(),
+ info.getHelmet(), info.getShield(), info.getWeapon(), i);
+ }
+
+ private void dispose() {
+ incrementalTextureAtlas.dispose();
+ }
+ }
+
+}
\ No newline at end of file
diff --git a/client/src/game/systems/render/world/CharacterRenderSystem.java b/client/src/game/systems/render/world/CharacterRenderSystem.java
new file mode 100644
index 00000000..5593dd8e
--- /dev/null
+++ b/client/src/game/systems/render/world/CharacterRenderSystem.java
@@ -0,0 +1,116 @@
+package game.systems.render.world;
+
+import com.artemis.Aspect;
+import com.artemis.E;
+import com.artemis.Entity;
+import com.artemis.annotations.Wire;
+import com.badlogic.gdx.Gdx;
+import com.badlogic.gdx.graphics.Texture;
+import com.badlogic.gdx.graphics.g2d.TextureRegion;
+import com.badlogic.gdx.graphics.glutils.ShaderProgram;
+import com.badlogic.gdx.math.Interpolation;
+import com.badlogic.gdx.math.MathUtils;
+import com.badlogic.gdx.math.Vector2;
+import com.badlogic.gdx.math.Vector3;
+import com.badlogic.gdx.utils.GdxRuntimeException;
+import component.entity.character.parts.Body;
+import component.entity.character.render.CharRenderInfo;
+import component.entity.character.states.Heading;
+import component.position.WorldPos;
+import game.systems.render.BatchSystem;
+import game.systems.render.chars.PrerenderCharCache;
+import game.utils.Pos2D;
+import game.utils.Resources;
+import model.textures.BundledAnimation;
+
+import java.util.Comparator;
+import java.util.Optional;
+
+import static com.artemis.E.E;
+import static component.entity.character.render.CharRenderInfo.NONE;
+import static game.systems.render.world.CharacterRenderingSystem.CharacterDrawer.createDrawer;
+
+/**
+ * Clase para el renderizado de personajes
+ */
+@Wire(injectInherited = true)
+public class CharacterRenderSystem extends RenderingSystem {
+
+ private static final Aspect.Builder CHAR_ASPECT = Aspect.all(WorldPos.class, Body.class, Heading.class);
+ private PrerenderCharCache cache;
+ private BatchSystem batchSystem;
+ private static TextureRegion shadow;
+ public ShaderProgram shaderOutline;
+
+ public CharacterRenderSystem() {
+ super(CHAR_ASPECT);
+ }
+
+ private static float getMovementOffset(BundledAnimation bodyAnimation) {
+ float animationTime = bodyAnimation.getAnimationTime();
+ float interpolationTime = bodyAnimation.getAnimation().getAnimationDuration() / 2;
+ return Interpolation.circle.apply(Math.min(1f, animationTime < interpolationTime ? animationTime / interpolationTime : interpolationTime / animationTime));
+ }
+
+ @Override
+ protected void initialize() {
+ shadow = new TextureRegion(new Texture(Resources.GAME_IMAGES_PATH + "shadow.png"));
+ loadShader();
+ }
+
+ public void loadShader() {
+ String vertexShader;
+ String fragmentShader;
+ vertexShader = Gdx.files.internal(Resources.GAME_SHADERS_PATH + "outlineVertexShader.glsl").readString();
+ fragmentShader = Gdx.files.internal(Resources.GAME_SHADERS_PATH + "outlineFragShader.glsl").readString();
+ shaderOutline = new ShaderProgram(vertexShader, fragmentShader);
+ if (!shaderOutline.isCompiled()) throw new GdxRuntimeException("Couldn't compile shader: " + shaderOutline.getLog());
+ }
+ @Override
+ protected void process(E player) {
+ CharRenderInfo charRenderInfo = player.charRenderInfo().getCharRenderInfo();
+ charRenderInfo.setHead(player.hasHead() ? player.headIndex() : NONE);
+ charRenderInfo.setWeapon(player.hasWeapon() ? player.weaponIndex() : NONE);
+ charRenderInfo.setBody(player.hasBody() ? player.bodyIndex() : NONE);
+ charRenderInfo.setShield(player.hasShield() ? player.shieldIndex() : NONE);
+ charRenderInfo.setHelmet(player.hasHelmet() ? player.helmetIndex() : NONE);
+ charRenderInfo.setHeading(player.headingCurrent());
+ }
+
+ public Aspect.Builder getAspect() {
+ return CHAR_ASPECT;
+ }
+
+ public void drawPlayer(E player, Optional forcedPos) {
+ WorldPos pos = forcedPos.orElse(player.getWorldPos());
+ Pos2D currentPos = Pos2D.get(pos, player.getWorldPosOffsets());
+ Pos2D screenPos = currentPos.toScreen();
+ int frame = player.hasCharAnimation() ? getFrame(player) : 0;
+ TextureRegion textureRegion = cache.get(player.getCharRenderInfo(), frame);
+ // outline shader
+ batchSystem.getBatch().draw(textureRegion, screenPos.x, screenPos.y - textureRegion.getRegionHeight());
+ }
+
+ private int getFrame(E player) {
+ int frameCount;
+ switch (player.headingCurrent()) {
+ case Heading.HEADING_SOUTH | Heading.HEADING_NORTH:
+ frameCount = 6;
+ break;
+ default:
+ frameCount = 5;
+ break;
+ }
+ float duration = player.charAnimationDuration();
+ float frameDuration = duration / frameCount;
+ float animationTime = player.charAnimationTime();
+ return MathUtils.clamp((int) (animationTime / frameDuration), 0, frameCount - 1);
+ }
+
+ @Override
+ protected Comparator super Entity> getComparator() {
+ return (entity1, entity2) -> E(entity2).getWorldPos().y - E(entity1).getWorldPos().y;
+ }
+
+
+}
diff --git a/client/src/game/systems/render/world/CharacterRenderingSystem.java b/client/src/game/systems/render/world/CharacterRenderingSystem.java
index 558c0fbf..cc434852 100644
--- a/client/src/game/systems/render/world/CharacterRenderingSystem.java
+++ b/client/src/game/systems/render/world/CharacterRenderingSystem.java
@@ -5,6 +5,8 @@
import com.artemis.Entity;
import com.artemis.annotations.Wire;
import com.badlogic.gdx.graphics.Color;
+import com.badlogic.gdx.graphics.Texture;
+import com.badlogic.gdx.graphics.g2d.SpriteBatch;
import com.badlogic.gdx.graphics.g2d.TextureRegion;
import com.badlogic.gdx.math.Interpolation;
import component.entity.character.equipment.Helmet;
@@ -14,11 +16,11 @@
import component.entity.character.parts.Head;
import component.entity.character.states.Heading;
import component.position.WorldPos;
-import game.systems.render.BatchRenderingSystem;
-import game.systems.render.BatchTask;
+import game.systems.render.BatchSystem;
import game.systems.resources.AnimationsSystem;
import game.systems.resources.DescriptorsSystem;
import game.utils.Pos2D;
+import game.utils.Resources;
import model.descriptors.BodyDescriptor;
import model.textures.AOTexture;
import model.textures.BundledAnimation;
@@ -39,7 +41,8 @@ public class CharacterRenderingSystem extends RenderingSystem {
private static final Aspect.Builder CHAR_ASPECT = Aspect.all(WorldPos.class, Body.class, Heading.class);
private DescriptorsSystem descriptorsSystem;
private AnimationsSystem animationsSystem;
- private BatchRenderingSystem batchRenderingSystem;
+ private BatchSystem batchSystem;
+ private static TextureRegion shadow;
public CharacterRenderingSystem() {
super(CHAR_ASPECT);
@@ -51,6 +54,11 @@ private static float getMovementOffset(BundledAnimation bodyAnimation) {
return Interpolation.circle.apply(Math.min(1f, animationTime < interpolationTime ? animationTime / interpolationTime : interpolationTime / animationTime));
}
+ @Override
+ protected void initialize() {
+ shadow = new TextureRegion(new Texture(Resources.GAME_IMAGES_PATH + "shadow.png"));
+ }
+
@Override
protected void process(E player) {
}
@@ -63,7 +71,7 @@ public void drawPlayer(E player, Optional forcedPos) {
WorldPos pos = forcedPos.orElse(player.getWorldPos());
Pos2D currentPos = Pos2D.get(pos, player.getWorldPosOffsets());
Pos2D screenPos = currentPos.toScreen();
- createDrawer(batchRenderingSystem, player, screenPos, descriptorsSystem, animationsSystem).draw();
+ createDrawer(batchSystem, player, screenPos, descriptorsSystem, animationsSystem).draw();
}
@Override
@@ -78,7 +86,7 @@ public static class CharacterDrawer {
private final Pos2D screenPos;
private final DescriptorsSystem descriptorsSystem;
private final AnimationsSystem animationsSystem;
- private BatchRenderingSystem batchRenderingSystem;
+ private BatchSystem batchSystem;
private boolean shouldFlip;
private float headOffsetY;
// body
@@ -88,8 +96,8 @@ public static class CharacterDrawer {
private BundledAnimation bodyAnimation;
private float idle;
- private CharacterDrawer(BatchRenderingSystem batchRenderingSystem, E player, Pos2D screenPos, DescriptorsSystem descriptorsSystem, AnimationsSystem animationsSystem) {
- this.batchRenderingSystem = batchRenderingSystem;
+ private CharacterDrawer(BatchSystem batchSystem, E player, Pos2D screenPos, DescriptorsSystem descriptorsSystem, AnimationsSystem animationsSystem) {
+ this.batchSystem = batchSystem;
this.player = player;
this.heading = player.getHeading();
this.screenPos = screenPos;
@@ -100,11 +108,11 @@ private CharacterDrawer(BatchRenderingSystem batchRenderingSystem, E player, Pos
calculateOffsets();
}
- public static CharacterDrawer createDrawer(BatchRenderingSystem batchRenderingSystem, E player, Pos2D screenPos, DescriptorsSystem descriptorsSystem, AnimationsSystem animationsSystem) {
+ public static CharacterDrawer createDrawer(BatchSystem batchRenderingSystem, E player, Pos2D screenPos, DescriptorsSystem descriptorsSystem, AnimationsSystem animationsSystem) {
return new CharacterDrawer(batchRenderingSystem, player, screenPos, descriptorsSystem, animationsSystem);
}
- public static CharacterDrawer createDrawer(BatchRenderingSystem batchRenderingSystem, E player, Pos2D screenPos, DescriptorsSystem descriptorsSystem, AnimationsSystem animationsSystem, boolean shouldFlip) {
+ public static CharacterDrawer createDrawer(BatchSystem batchRenderingSystem, E player, Pos2D screenPos, DescriptorsSystem descriptorsSystem, AnimationsSystem animationsSystem, boolean shouldFlip) {
CharacterDrawer characterDrawer = new CharacterDrawer(batchRenderingSystem, player, screenPos, descriptorsSystem, animationsSystem);
characterDrawer.shouldFlip = shouldFlip;
return characterDrawer;
@@ -115,6 +123,7 @@ public static CharacterDrawer createDrawer(BatchRenderingSystem batchRenderingSy
*/
public void draw() {
int current = player.getHeading().current;
+ if (!player.hasNPC()) drawShadow();
switch (current) { //¿A que direccion esta mirando?
case Heading.HEADING_NORTH: //Norte
drawWeapon();
@@ -147,6 +156,10 @@ public void draw() {
}
}
+ private void drawShadow() {
+ drawTexture(shadow, screenPos.x + ((Tile.TILE_PIXEL_WIDTH - shadow.getRegionWidth()) / 2), screenPos.y - shadow.getRegionHeight(), 0, 0, 0.8f);
+ }
+
/**
* Calcula la posicion del personaje en la pantalla
*/
@@ -175,31 +188,31 @@ void drawBody() {
float width = bodyRegion.getRegionWidth() - idle / 2;
float height = bodyRegion.getRegionHeight() - idle * FACTOR;
- batchRenderingSystem.addTask((batch) ->
- {
- if (animate()) {
- TextureRegion previousBodyRegion = bodyAnimation.getPreviousGraphic();
- if (previousBodyRegion != null) {
- if (previousBodyRegion.isFlipY() && shouldFlip) {
- previousBodyRegion.flip(false, true);
- }
- Color color = batch.getColor();
- float previusTransparency = color.a;
- color.a = bodyAnimation.getPreviousFrameTransparency();
- batch.setColor(color);
- batch.draw(previousBodyRegion, x, y, width, height);
- color.a = previusTransparency;
- batch.setColor(color);
- }
- }
- if (bodyRegion != null) {
- if (bodyRegion.isFlipY() && shouldFlip) {
- bodyRegion.flip(false, true);
- }
- batch.draw(bodyRegion, x, y, width, height);
- }
+ final SpriteBatch batch = batchSystem.getBatch();
+
+ if (animate()) {
+ TextureRegion previousBodyRegion = bodyAnimation.getPreviousGraphic();
+ if (previousBodyRegion != null) {
+ if (previousBodyRegion.isFlipY() && shouldFlip) {
+ previousBodyRegion.flip(false, true);
}
- );
+ Color color = batch.getColor();
+ float previusTransparency = color.a;
+ color.a = bodyAnimation.getPreviousFrameTransparency();
+ batch.setColor(color);
+ batch.draw(previousBodyRegion, x, y, width, height);
+ color.a = previusTransparency;
+ batch.setColor(color);
+ }
+ }
+ if (bodyRegion != null) {
+ if (bodyRegion.isFlipY() && shouldFlip) {
+ bodyRegion.flip(false, true);
+ }
+ batch.draw(bodyRegion, x, y, width, height);
+ }
+
+
}
/**
@@ -232,7 +245,7 @@ void drawHelmet() {
if (texture != null) {
float offsetX = 4.0f * SCALE;
float offsetY = headOffsetY - (shouldFlip ? -1 : 1) * 4 * SCALE;
- drawTexture(texture.getTexture(), this.bodyPixelOffsetX, this.bodyPixelOffsetY, offsetX, offsetY);
+ drawTexture(texture.getTexture(), this.bodyPixelOffsetX, this.bodyPixelOffsetY, offsetX, offsetY + (idle / 2));
}
}
}
@@ -295,17 +308,16 @@ private void drawTexture(TextureRegion region, float x, float y, float offsetX,
}
float x1 = x + offsetX;
float y1 = y + offsetY * (shouldFlip ? -1 : 1);
- BatchTask drawTexture = (batch) ->
- {
- Color color = batch.getColor();
- float previusTransparency = color.a;
- color.a = transparency;
- batch.setColor(color);
- batch.draw(region, x1, y1);
- color.a = previusTransparency;
- batch.setColor(color);
- };
- batchRenderingSystem.addTask(drawTexture);
+ final SpriteBatch batch = batchSystem.getBatch();
+
+ Color color = batch.getColor();
+ float previusTransparency = color.a;
+ color.a = transparency;
+ batch.setColor(color);
+ batch.draw(region, x1, y1);
+ color.a = previusTransparency;
+ batch.setColor(color);
+
}
}
}
diff --git a/client/src/game/systems/render/world/CombatRenderingSystem.java b/client/src/game/systems/render/world/CombatRenderingSystem.java
index 3aad1722..fec0b99c 100644
--- a/client/src/game/systems/render/world/CombatRenderingSystem.java
+++ b/client/src/game/systems/render/world/CombatRenderingSystem.java
@@ -14,7 +14,7 @@
import component.entity.character.parts.Body;
import component.entity.world.CombatMessage;
import component.position.WorldPos;
-import game.systems.render.BatchRenderingSystem;
+import game.systems.render.BatchSystem;
import game.systems.resources.DescriptorsSystem;
import game.ui.WidgetFactory;
import game.utils.Pos2D;
@@ -29,14 +29,14 @@ public class CombatRenderingSystem extends RenderingSystem {
public static final float VELOCITY = 1f;
private DescriptorsSystem descriptorsSystem;
- private BatchRenderingSystem batchRenderingSystem;
+ private BatchSystem batchSystem;
private LoadingCache messages = CacheBuilder
.newBuilder()
.expireAfterAccess(5, TimeUnit.MINUTES)
.build(new CacheLoader() {
@Override
public Table load(@NotNull CombatMessage message) {
- Table table = new Table(Skins.COMODORE_SKIN);
+ Table table = new Table(Skins.CURRENT.get());
table.setRound(false);
Label label = WidgetFactory.createCombatLabel(message);
message.originalScale = message.kind == CombatMessage.Kind.STAB ? 1.3f : 1f;
@@ -86,7 +86,7 @@ protected void process(E player) {
final float fontY = playerPos.y + combatMessage.offset + bodyOffset - 60 * SCALE
+ label.getHeight();
label.setPosition(fontX, fontY);
- batchRenderingSystem.addTask((batch -> label.draw(batch, 1)));
+ label.draw(batchSystem.getBatch(), 1);
} else {
messages.invalidate(player.getCombatMessage());
player.removeCombatMessage();
diff --git a/client/src/game/systems/render/world/DialogRenderingSystem.java b/client/src/game/systems/render/world/DialogRenderingSystem.java
index c6fdb331..3759b249 100644
--- a/client/src/game/systems/render/world/DialogRenderingSystem.java
+++ b/client/src/game/systems/render/world/DialogRenderingSystem.java
@@ -15,7 +15,7 @@
import component.entity.world.Dialog;
import component.entity.world.Dialog.Kind;
import component.position.WorldPos;
-import game.systems.render.BatchRenderingSystem;
+import game.systems.render.BatchSystem;
import game.systems.resources.DescriptorsSystem;
import game.ui.WidgetFactory;
import game.utils.Colors;
@@ -40,7 +40,7 @@ public class DialogRenderingSystem extends RenderingSystem {
.build(new CacheLoader() {
@Override
public Table load(@NotNull Dialog dialog) {
- Table table = new Table(Skins.COMODORE_SKIN);
+ Table table = new Table(Skins.CURRENT.get());
table.setRound(false);
String text = dialog.text;
Label label = dialog.kind == Kind.MAGIC_WORDS ? WidgetFactory.createFlippedLabel(text) : WidgetFactory.createTalkLabel(text);
@@ -54,7 +54,7 @@ public Table load(@NotNull Dialog dialog) {
}
});
private DescriptorsSystem descriptorsSystem;
- private BatchRenderingSystem batchRenderingSystem;
+ private BatchSystem batchSystem;
public DialogRenderingSystem() {
super(Aspect.all(Dialog.class, Body.class, WorldPos.class));
@@ -95,7 +95,7 @@ private void drawBubble(E player, Pos2D playerPos, Dialog dialog) {
if (dialog.time < ALPHA_TIME) {
dialog.alpha = dialog.time / ALPHA_TIME;
}
- batchRenderingSystem.addTask(batch -> label.draw(batch, dialog.alpha));
+ label.draw(batchSystem.getBatch(), dialog.alpha);
child.getStyle().fontColor = color;
}
}
diff --git a/client/src/game/systems/render/world/EffectRenderingSystem.java b/client/src/game/systems/render/world/EffectRenderingSystem.java
index fccdc081..78389933 100755
--- a/client/src/game/systems/render/world/EffectRenderingSystem.java
+++ b/client/src/game/systems/render/world/EffectRenderingSystem.java
@@ -6,12 +6,13 @@
import com.artemis.annotations.Wire;
import com.badlogic.gdx.graphics.GL20;
import com.badlogic.gdx.graphics.g2d.ParticleEffect;
+import com.badlogic.gdx.graphics.g2d.SpriteBatch;
import com.badlogic.gdx.graphics.g2d.TextureRegion;
import component.entity.character.parts.Body;
import component.graphic.Effect;
import component.position.WorldPos;
import component.position.WorldPosOffsets;
-import game.systems.render.BatchRenderingSystem;
+import game.systems.render.BatchSystem;
import game.systems.resources.AnimationsSystem;
import game.systems.resources.DescriptorsSystem;
import game.systems.resources.ParticlesSystem;
@@ -37,7 +38,7 @@ public class EffectRenderingSystem extends FluidIteratingSystem {
private NetworkedEntitySystem networkedEntitySystem;
private DescriptorsSystem descriptorsSystem;
private AnimationsSystem animationsSystem;
- private BatchRenderingSystem batchRenderingSystem;
+ private BatchSystem batchSystem;
private int srcFunc;
private int dstFunc;
@@ -80,20 +81,17 @@ protected void removed(int entityId) {
// TODO refactor doBegin and doEnd to avoid calling multiple times
private void doBegin() {
- batchRenderingSystem.addTask((batch) -> {
- srcFunc = batch.getBlendSrcFunc();
- dstFunc = batch.getBlendDstFunc();
- batch.setBlendFunction(GL20.GL_SRC_ALPHA, GL20.GL_DST_ALPHA);
- }
- );
+ final SpriteBatch batch = batchSystem.getBatch();
+
+ srcFunc = batch.getBlendSrcFunc();
+ dstFunc = batch.getBlendDstFunc();
+ batch.setBlendFunction(GL20.GL_SRC_ALPHA, GL20.GL_DST_ALPHA);
}
private void doEnd() {
- batchRenderingSystem.addTask((batch) -> {
- batch.setBlendFunction(srcFunc, dstFunc);
- }
- );
+ final SpriteBatch batch = batchSystem.getBatch();
+ batch.setBlendFunction(srcFunc, dstFunc);
}
void drawEffect(E e, Optional forcePos) {
@@ -120,23 +118,20 @@ private void drawEffect(E e, WorldPos pos, WorldPosOffsets offsets) {
int effectId = effect.effectId;
FXDescriptor fxDescriptor = descriptorsSystem.getFX(effectId);
TextureRegion graphic = anim.getGraphic();
- batchRenderingSystem.addTask((batch) ->
- {
- float x = screenPos.x + (Tile.TILE_PIXEL_WIDTH - graphic.getRegionWidth()) / 2 + fxDescriptor.getOffsetX();
- float y = screenPos.y - graphic.getRegionHeight() + 20 + fxDescriptor.getOffsetY();
- batch.draw(graphic, x, y);
- }
- );
+ final SpriteBatch batch = batchSystem.getBatch();
+
+ float x = screenPos.x + (Tile.TILE_PIXEL_WIDTH - graphic.getRegionWidth()) / 2 + fxDescriptor.getOffsetX();
+ float y = screenPos.y - graphic.getRegionHeight() + 20 + fxDescriptor.getOffsetY();
+ batch.draw(graphic, x, y);
}
break;
case PARTICLE:
if (particleEffects.containsKey(entityId)) {
ParticleEffect particleEffect = particleEffects.get(entityId);
particleEffect.setPosition(screenPos.x + Tile.TILE_PIXEL_WIDTH / 2, screenPos.y);
- batchRenderingSystem.addTask((batch) -> {
- particleEffect.draw(batch, world.getDelta());
- }
- );
+ final SpriteBatch batch = batchSystem.getBatch();
+
+ particleEffect.draw(batch, world.getDelta());
}
break;
}
diff --git a/client/src/game/systems/render/world/LightRenderingSystem.java b/client/src/game/systems/render/world/LightRenderingSystem.java
index b4676ae2..f1d12e65 100644
--- a/client/src/game/systems/render/world/LightRenderingSystem.java
+++ b/client/src/game/systems/render/world/LightRenderingSystem.java
@@ -8,9 +8,10 @@
import com.badlogic.gdx.graphics.GL20;
import com.badlogic.gdx.graphics.Pixmap;
import com.badlogic.gdx.graphics.Texture;
+import com.badlogic.gdx.graphics.g2d.SpriteBatch;
import com.badlogic.gdx.graphics.glutils.FrameBuffer;
import component.camera.Focused;
-import game.systems.render.BatchRenderingSystem;
+import game.systems.render.BatchSystem;
import game.utils.Pos2D;
import game.utils.Resources;
import shared.model.map.Tile;
@@ -28,7 +29,7 @@ public class LightRenderingSystem extends RenderingSystem {
private int blendDstFunc;
private int blendSrcFunc;
- private BatchRenderingSystem batchRenderingSystem;
+ private BatchSystem batchSystem;
public LightRenderingSystem() {
super(Aspect.all(Focused.class));
@@ -46,21 +47,19 @@ protected void initialize() {
@Override
protected void doBegin() {
- batchRenderingSystem.addTask((batch) -> {
- prevColor = batch.getColor();
- blendDstFunc = batch.getBlendDstFunc();
- blendSrcFunc = batch.getBlendSrcFunc();
- }
- );
+ final SpriteBatch batch = batchSystem.getBatch();
+
+ prevColor = batch.getColor();
+ blendDstFunc = batch.getBlendDstFunc();
+ blendSrcFunc = batch.getBlendSrcFunc();
+
}
@Override
protected void doEnd() {
- batchRenderingSystem.addTask((batch) -> {
- batch.setColor(prevColor);
- batch.setBlendFunction(blendSrcFunc, blendDstFunc);
- }
- );
+ final SpriteBatch batch = batchSystem.getBatch();
+ batch.setColor(prevColor);
+ batch.setBlendFunction(blendSrcFunc, blendDstFunc);
}
@Override
@@ -76,8 +75,8 @@ private void renderLight(Pos2D pos) {
float ty = playerPosition.y;
float x = tx - width / 2;
float y = ty - height / 2;
-
- batchRenderingSystem.addTask((batch -> batch.draw(lightBuffer.getColorBufferTexture(), x, y, width, height)));
+ final SpriteBatch batch = batchSystem.getBatch();
+ batch.draw(lightBuffer.getColorBufferTexture(), x, y, width, height);
}
public void resize(float width, float height) {
@@ -96,17 +95,18 @@ private void prepareBuffer() {
Gdx.gl.glClearColor(0f, 0f, 0f, 1);
Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT);
- Color color = batchRenderingSystem.getBatch().getColor();
+ final SpriteBatch batch = batchSystem.getBatch();
+ Color color = batch.getColor();
- batchRenderingSystem.getBatch().setColor(0.8f, 0.8f, 0.8f, 1f);
+ batch.setColor(0.8f, 0.8f, 0.8f, 1f);
int lightWidth = (int) Tile.TILE_PIXEL_WIDTH * 30;
int lightHeight = (int) Tile.TILE_PIXEL_HEIGHT * 28;
- batchRenderingSystem.getBatch().begin();
- batchRenderingSystem.getBatch().enableBlending();
- batchRenderingSystem.getBatch().setBlendFunction(GL20.GL_ZERO, GL20.GL_ONE_MINUS_SRC_ALPHA);
- batchRenderingSystem.getBatch().draw(light, 0, 0, lightWidth, lightHeight);
- batchRenderingSystem.getBatch().end();
- batchRenderingSystem.getBatch().setColor(color);
+ batch.begin();
+ batch.enableBlending();
+ batch.setBlendFunction(GL20.GL_ZERO, GL20.GL_ONE_MINUS_SRC_ALPHA);
+ batch.draw(light, 0, 0, lightWidth, lightHeight);
+ batch.end();
+ batch.setColor(color);
lightBuffer.end();
}
}
diff --git a/client/src/game/systems/render/world/MapGroundRenderingSystem.java b/client/src/game/systems/render/world/MapGroundRenderingSystem.java
index cb8919ce..c0eaf102 100644
--- a/client/src/game/systems/render/world/MapGroundRenderingSystem.java
+++ b/client/src/game/systems/render/world/MapGroundRenderingSystem.java
@@ -15,7 +15,7 @@
import com.google.common.cache.CacheLoader;
import com.google.common.cache.LoadingCache;
import game.systems.map.MapManager;
-import game.systems.render.BatchRenderingSystem;
+import game.systems.render.BatchSystem;
import game.systems.resources.AnimationsSystem;
import org.jetbrains.annotations.NotNull;
import shared.model.map.Map;
@@ -44,7 +44,7 @@ public Texture load(@NotNull Map key) {
}
});
private WorldRenderingSystem worldRenderingSystem;
- private BatchRenderingSystem batchRenderingSystem;
+ private BatchSystem batchSystem;
public MapGroundRenderingSystem() {
super(LOWER_LAYERS);
@@ -63,7 +63,7 @@ protected void doRender(Map map) {
int height = (int) ((range.maxAreaY - range.minAreaY) * Tile.TILE_PIXEL_HEIGHT);
TextureRegion userRegion = new TextureRegion(mapTexture, x, mapTexture.getHeight() - y - height, width, height);
- batchRenderingSystem.addTask(batch -> batch.draw(userRegion, x, y));
+ batchSystem.getBatch().draw(userRegion, x, y);
} catch (ExecutionException e) {
Log.error("Failed to render map layer 0", e);
}
diff --git a/client/src/game/systems/render/world/MapLayerRenderingSystem.java b/client/src/game/systems/render/world/MapLayerRenderingSystem.java
index b21da38e..a201e65b 100644
--- a/client/src/game/systems/render/world/MapLayerRenderingSystem.java
+++ b/client/src/game/systems/render/world/MapLayerRenderingSystem.java
@@ -57,6 +57,9 @@ private void drawGraphicInLayer(int layer, int x, int y, Map map, WorldPos pos)
if (graphic == 0) {
return;
}
+ if (layer == 3 && MapManager.layer4Disable){
+ return;
+ }
mapManager.doTileDraw(world.getDelta(), x, y, graphic);
});
}
diff --git a/client/src/game/systems/render/world/MapMiddleLayerRenderingSystem.java b/client/src/game/systems/render/world/MapMiddleLayerRenderingSystem.java
new file mode 100644
index 00000000..4b7767b8
--- /dev/null
+++ b/client/src/game/systems/render/world/MapMiddleLayerRenderingSystem.java
@@ -0,0 +1,11 @@
+package game.systems.render.world;
+
+import game.systems.map.MapManager;
+
+public class MapMiddleLayerRenderingSystem extends MapLayerRenderingSystem {
+
+ public MapMiddleLayerRenderingSystem() {
+ super( MapManager.MIDDLE_LAYERS);
+
+ }
+}
diff --git a/client/src/game/systems/render/world/NameRenderingSystem.java b/client/src/game/systems/render/world/NameRenderingSystem.java
index 976b6619..cddc55fb 100644
--- a/client/src/game/systems/render/world/NameRenderingSystem.java
+++ b/client/src/game/systems/render/world/NameRenderingSystem.java
@@ -4,55 +4,56 @@
import com.artemis.E;
import com.artemis.annotations.Wire;
import com.badlogic.gdx.graphics.Color;
+import com.badlogic.gdx.graphics.g2d.SpriteBatch;
+import com.badlogic.gdx.math.Interpolation;
import com.badlogic.gdx.scenes.scene2d.ui.Label;
+import com.badlogic.gdx.scenes.scene2d.ui.ProgressBar;
import com.badlogic.gdx.scenes.scene2d.ui.Table;
-import com.badlogic.gdx.utils.Align;
-import com.esotericsoftware.minlog.Log;
-import com.google.common.cache.CacheBuilder;
-import com.google.common.cache.CacheLoader;
-import com.google.common.cache.LoadingCache;
import component.entity.character.info.Name;
+import component.entity.character.status.Health;
+import component.entity.character.status.Mana;
import component.position.WorldPos;
-import game.systems.render.BatchRenderingSystem;
+import game.systems.render.BatchSystem;
import game.ui.WidgetFactory;
import game.utils.Colors;
import game.utils.Pos2D;
-import game.utils.Skins;
import org.jetbrains.annotations.NotNull;
import shared.interfaces.Hero;
import shared.model.map.Tile;
-import java.util.concurrent.TimeUnit;
-
import static com.artemis.E.E;
@Wire(injectInherited = true)
public class NameRenderingSystem extends RenderingSystem {
- private final LoadingCache names = CacheBuilder
- .newBuilder()
- .expireAfterAccess(5, TimeUnit.MINUTES)
- .build(new CacheLoader() {
- @Override
- public Table load(@NotNull Integer integer) {
- Table table = new Table(Skins.COMODORE_SKIN);
- table.setRound(false);
- E e = E(integer);
- String text = e.getName().text;
- Label label = WidgetFactory.createFlippedLabel(text);
- label.getStyle().font.setUseIntegerPositions(false);
- label.setFontScale(1.1f);
- float prefWidth = label.getPrefWidth();
- label.setWrap(true);
- label.setAlignment(Align.center);
- Log.debug("Width: " + prefWidth);
- table.add(label).width(Math.min(prefWidth + 20, 200));
- return table;
- }
-
-
- });
- private BatchRenderingSystem batchRenderingSystem;
+ @NotNull
+ private Label createLabel(String name) {
+ Label label = WidgetFactory.createFlippedLabel(name);
+ label.getStyle().font.setUseIntegerPositions(false);
+ return label;
+ }
+
+ private ProgressBar createHP(Health health) {
+ ProgressBar bar = WidgetFactory.createProgressBar(WidgetFactory.ProgressBars.INGAME_HP);
+ bar.setRange(0, health.max);
+ bar.setValue(health.min);
+ bar.setAnimateInterpolation(Interpolation.fastSlow);
+ bar.setAnimateDuration(0.3f);
+ bar.setRound(false);
+ return bar;
+ }
+
+ private ProgressBar createMana(Mana mana) {
+ ProgressBar bar = WidgetFactory.createProgressBar(WidgetFactory.ProgressBars.INGAME_MANA);
+ bar.setRange(0, mana.max);
+ bar.setValue(mana.min);
+ bar.setAnimateInterpolation(Interpolation.fastSlow);
+ bar.setAnimateDuration(0.3f);
+ bar.setRound(false);
+ return bar;
+ }
+
+ private BatchSystem batchSystem;
public NameRenderingSystem() {
super(Aspect.all(WorldPos.class, Name.class));
@@ -62,24 +63,40 @@ public NameRenderingSystem() {
protected void process(E player) {
Pos2D playerPos = Pos2D.get(player).toScreen();
- float nameY = drawName(player, playerPos);
- drawClanName(player, playerPos, nameY);
+ if (player.hasDisplay()) { // update
+ if (player.hasMana()) {
+ player.displayMana(player.manaMin(), player.manaMax());
+ }
+ if (player.hasHealth()) {
+ player.displayHp(player.healthMin(), player.healthMax());
+ }
+ } else { // create
+ player.display();
+ if (player.hasMana()) {
+ player.displayAddMana(createMana(player.getMana()));
+ }
+ if (player.hasHealth()) {
+ player.displayAddHp(createHP(player.getHealth()));
+ }
+ Label nameLabel = createLabel(player.nameText());
+ float prefWidth = nameLabel.getPrefWidth();
+ player.displayAddLabel(nameLabel, prefWidth);
+ }
+ Table table = player.displayDisplay();
+ float nameY = drawName(player, playerPos, table);
}
- private float drawName(E player, Pos2D screenPos) {
- Table nameLabel = names.getUnchecked(player.id());
+ private float drawName(E player, Pos2D screenPos, Table table) {
+ final float fontX = screenPos.x + ((Tile.TILE_PIXEL_WIDTH - table.getWidth()) / 2);
+ final float fontY = screenPos.y + 15;
+ table.act(getWorld().getDelta());
+ final SpriteBatch batch = batchSystem.getBatch();
+
+ Color color = setColor(player, player.displayLabel());
+ table.setPosition(fontX, fontY);
+ table.draw(batch, 1);
+ player.displayLabel().getStyle().fontColor = color;
- final float fontX = screenPos.x + ((Tile.TILE_PIXEL_WIDTH - nameLabel.getWidth()) / 2);
- final float fontY = screenPos.y + 10;
- Label label = (Label) nameLabel.getChild(0);
- label.getStyle().font.setUseIntegerPositions(false);
- batchRenderingSystem.addTask(batch -> {
- Color color = setColor(player, label);
- nameLabel.setPosition(fontX, fontY);
- nameLabel.draw(batch, 1);
- label.getStyle().fontColor = color;
- }
- );
return fontY;
}
diff --git a/client/src/game/systems/render/world/ObjectRenderingSystem.java b/client/src/game/systems/render/world/ObjectRenderingSystem.java
index d77838d6..d16eccfe 100644
--- a/client/src/game/systems/render/world/ObjectRenderingSystem.java
+++ b/client/src/game/systems/render/world/ObjectRenderingSystem.java
@@ -8,7 +8,7 @@
import component.entity.world.Object;
import component.position.WorldPos;
import component.position.WorldPosOffsets;
-import game.systems.render.BatchRenderingSystem;
+import game.systems.render.BatchSystem;
import game.systems.resources.ObjectSystem;
import shared.model.map.Tile;
import shared.objects.types.Obj;
@@ -20,7 +20,7 @@
public class ObjectRenderingSystem extends RenderingSystem {
private ObjectSystem objectSystem;
- private BatchRenderingSystem batchRenderingSystem;
+ private BatchSystem batchSystem;
public ObjectRenderingSystem() {
super(Aspect.all(Object.class, WorldPos.class));
@@ -45,7 +45,7 @@ protected void process(E e) {
float height = scale * texture.getRegionHeight();
float x = screenPos.x + (Tile.TILE_PIXEL_WIDTH - width) / 2;
float y = screenPos.y + (Tile.TILE_PIXEL_HEIGHT - height) / 2;
- batchRenderingSystem.addTask(batch -> batch.draw(texture, x, y, width, height));
+ batchSystem.getBatch().draw(texture, x, y, width, height);
});
}
}
diff --git a/client/src/game/systems/render/world/RenderingSystem.java b/client/src/game/systems/render/world/RenderingSystem.java
index 62a144fe..d19bfffe 100644
--- a/client/src/game/systems/render/world/RenderingSystem.java
+++ b/client/src/game/systems/render/world/RenderingSystem.java
@@ -15,7 +15,7 @@
@Wire
public abstract class RenderingSystem extends OrderedEntityProcessingSystem {
- public static final float SCALE = 2;
+ public static final float SCALE = 1;
private CameraSystem cameraSystem;
diff --git a/client/src/game/systems/render/world/TargetRenderingSystem.java b/client/src/game/systems/render/world/TargetRenderingSystem.java
index c7895cc0..d31fbcbc 100644
--- a/client/src/game/systems/render/world/TargetRenderingSystem.java
+++ b/client/src/game/systems/render/world/TargetRenderingSystem.java
@@ -6,10 +6,11 @@
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.Color;
import com.badlogic.gdx.graphics.Texture;
+import com.badlogic.gdx.graphics.g2d.SpriteBatch;
import component.camera.Focused;
import component.position.WorldPos;
import component.position.WorldPosOffsets;
-import game.systems.render.BatchRenderingSystem;
+import game.systems.render.BatchSystem;
import game.systems.ui.UserInterfaceSystem;
import game.utils.Colors;
import shared.model.map.Tile;
@@ -20,7 +21,7 @@ public class TargetRenderingSystem extends RenderingSystem {
private static final Texture TARGET = new Texture(Gdx.files.local("data/ui/images/target.png"));
private UserInterfaceSystem userInterfaceSystem;
- private BatchRenderingSystem batchRenderingSystem;
+ private BatchSystem batchSystem;
public TargetRenderingSystem() {
super(Aspect.all(Focused.class));
@@ -29,12 +30,11 @@ public TargetRenderingSystem() {
@Override
protected void process(E e) {
WorldPos worldPos = userInterfaceSystem.getWorldPos(Gdx.input.getX(), Gdx.input.getY());
- batchRenderingSystem.addTask(batch -> {
- Color prevColor = new Color(batch.getColor());
- batch.setColor(Colors.rgba(255, 255, 255, 0.5f));
- WorldPosOffsets mousePos = WorldPosConversion.toScreen(worldPos);
- batch.draw(TARGET, mousePos.x, mousePos.y, Tile.TILE_PIXEL_WIDTH, Tile.TILE_PIXEL_HEIGHT);
- batch.setColor(prevColor);
- });
+ final SpriteBatch batch = batchSystem.getBatch();
+ Color prevColor = new Color(batch.getColor());
+ batch.setColor(Colors.rgba(255, 255, 255, 0.5f));
+ WorldPosOffsets mousePos = WorldPosConversion.toScreen(worldPos);
+ batch.draw(TARGET, mousePos.x, mousePos.y, Tile.TILE_PIXEL_WIDTH, Tile.TILE_PIXEL_HEIGHT);
+ batch.setColor(prevColor);
}
}
diff --git a/client/src/game/systems/render/world/WorldRenderingSystem.java b/client/src/game/systems/render/world/WorldRenderingSystem.java
index ab39707c..98d7ff24 100644
--- a/client/src/game/systems/render/world/WorldRenderingSystem.java
+++ b/client/src/game/systems/render/world/WorldRenderingSystem.java
@@ -23,11 +23,11 @@
@Wire
public class WorldRenderingSystem extends BaseSystem {
- private static final int EXTRA_TILES = 7;
+ private static final int EXTRA_TILES = 2;
private MapManager mapManager;
private CameraSystem cameraSystem;
private TiledMapSystem tiledMapSystem;
- private CharacterRenderingSystem characterRenderingSystem;
+ private CharacterRenderSystem characterRenderingSystem;
private EffectRenderingSystem effectRenderingSystem;
private NetworkedEntitySystem networkedEntitySystem;
diff --git a/client/src/game/systems/resources/AnimationsSystem.java b/client/src/game/systems/resources/AnimationsSystem.java
index ca0498b2..52608f21 100644
--- a/client/src/game/systems/resources/AnimationsSystem.java
+++ b/client/src/game/systems/resources/AnimationsSystem.java
@@ -189,7 +189,7 @@ private AOTexture createTexture(int id) {
Log.debug("Fail to create AO Image: " + id);
return null;
}
- return new AOTexture(image, assetManager.getTexture(image.getFileNum()));
+ return new AOTexture(image, assetManager.getTexture(image.getFileNum()), true);
}
public boolean hasTexture(int id) {
diff --git a/client/src/game/systems/resources/FontsSystem.java b/client/src/game/systems/resources/FontsSystem.java
index f17ba457..50acf5ab 100644
--- a/client/src/game/systems/resources/FontsSystem.java
+++ b/client/src/game/systems/resources/FontsSystem.java
@@ -35,19 +35,4 @@ private void initFonts() {
// MAGIC_COMBAT_FONT = generate(Colors.MANA, 11, Color.BLACK, 0, 1, -1, COMMODORE_FONT);
}
- private Skin getSkin() {
- return assetManager.getSkin();
- }
-
- public BitmapFont getShadowedFont() {
- return getSkin().getFont("big-shadow");
- }
-
- public BitmapFont getNormalFont() {
- return getSkin().getFont("small");
- }
-
- public BitmapFont getFlippedFont() {
- return getSkin().getFont("flipped");
- }
}
diff --git a/client/src/game/systems/resources/MusicSystem.java b/client/src/game/systems/resources/MusicSystem.java
index 879c96ee..0493fd5a 100644
--- a/client/src/game/systems/resources/MusicSystem.java
+++ b/client/src/game/systems/resources/MusicSystem.java
@@ -2,27 +2,29 @@
import com.artemis.annotations.Wire;
import com.badlogic.gdx.audio.Music;
+import com.badlogic.gdx.math.MathUtils;
import com.badlogic.gdx.utils.Timer;
import com.esotericsoftware.minlog.Log;
import game.handlers.DefaultAOAssetManager;
-import net.mostlyoriginal.api.system.core.PassiveSystem;
import javax.sound.midi.MidiChannel;
import javax.sound.midi.MidiSystem;
import javax.sound.midi.MidiUnavailableException;
import javax.sound.midi.Sequencer;
-@Wire
-public class MusicSystem extends PassiveSystem { // @todo revisar
+/**
+ * @todo Si la música está deshabilitada, en playMusic() deberÃa igualmente actualizarse la música actual
+ * @todo toggle() no le hace caso a isDisabled()
+ * @todo los timers de fadeIn y fadeOut deberÃan cancelarse en caso de que se cambie la música o se deshabilite el sistema
+ */
+public class MusicSystem {
- static private final float MUSIC_FADE_STEP = 0.01f;
+ private static final float MUSIC_FADE_STEP = 0.1f;
- @Wire
- private DefaultAOAssetManager assetManager;
+ @Wire private DefaultAOAssetManager assetManager;
private float volume = 1.0f;
- private boolean disableMusic = false;
- // Current music
+ private boolean disabled;
private Music currentMusic;
private int currentMusicID = -1;
@@ -35,36 +37,38 @@ public void playMusic(int musicID, boolean fadeIn) {
}
public void playMusic(int musicID, boolean fadeIn, boolean loop) {
- if (!isDisableMusic()) {
- if (musicID != currentMusicID) {
- // paramos la música
- if (currentMusic != null) currentMusic.stop();
-
- // cargamos la nueva música
- currentMusic = assetManager.getMusic(musicID);
- if (currentMusic == null) { // Error al cargar
- Log.warn("MusicSystem", "Could not get music index: " + musicID);
- currentMusicID = -1;
- return;
- }
- currentMusicID = musicID;
- }
+ if (isDisabled()) return;
+ if (musicID != currentMusicID) {
+ // paramos la música actual
if (currentMusic != null) {
- // reproducimos
- if (!(currentMusic.isPlaying())) {
- currentMusic.setLooping(loop);
- if (fadeIn) {
- fadeInMusic(MUSIC_FADE_STEP);
- } else {
- currentMusic.play();
- }
+ // todo: if (fadeIn) fadeout
+ currentMusic.stop();
+ }
+ // cargamos la nueva música
+ currentMusic = assetManager.getMusic(musicID);
+ if (currentMusic == null) {
+ Log.warn("MusicSystem", "Couldn't get music ID: " + musicID);
+ currentMusicID = -1;
+ return;
+ }
+ currentMusicID = musicID;
+ }
+ if (currentMusic != null) {
+ // seteamos el looping
+ currentMusic.setLooping(loop);
+ // reproducimos
+ if (!(currentMusic.isPlaying())) {
+ if (fadeIn) {
+ fadeInMusic(MUSIC_FADE_STEP);
+ } else {
+ currentMusic.play();
}
}
}
}
public void playMusic() {
- if (currentMusic != null && isEnabled()) currentMusic.play();
+ if (currentMusic != null && !isDisabled()) currentMusic.play();
}
public void pauseMusic() {
@@ -88,14 +92,14 @@ public void toggle() {
}
public void fadeInMusic(float step) {
- if (currentMusic != null && !isDisableMusic()) {
+ if (currentMusic != null && !isDisabled()) {
currentMusic.setVolume(0.0f);
currentMusic.play();
Timer.schedule(new Timer.Task() {
@Override
public void run() {
if (currentMusic == null) {
- Log.warn("MusicSystem", "Tried to fade music index " + currentMusic + ", but it was not playing or loaded.");
+ Log.warn("MusicSystem", "Tried to fade null music reference.");
this.cancel();
return;
}
@@ -114,7 +118,7 @@ public void fadeOutMusic(float step) {
@Override
public void run() {
if (currentMusic == null) {
- Log.warn("MusicSystem", "Tried to fade music index " + currentMusicID + ", but it was not playing or loaded.");
+ Log.warn("MusicSystem", "Tried to fade null music reference.");
this.cancel();
return;
}
@@ -128,19 +132,26 @@ public void run() {
}, 0.0f, 0.5f);
}
- public boolean isDisableMusic() {
- return disableMusic;
+ public boolean isDisabled() {
+ return disabled;
+ }
+
+ public void setDisabled(boolean disabled) {
+ this.disabled = disabled;
+ if (disabled) {
+ pauseMusic();
+ } else {
+ playMusic();
+ }
}
- public void setDisableMusic(boolean musicEnable) {
- this.disableMusic = musicEnable;
+ public float getVolume() {
+ return volume;
}
// Control de volumen
public void setVolume(float volume) {
- if (volume < 0.0f) volume = 0.0f;
- if (volume > 1.0f) volume = 1.0f;
- this.volume = volume;
+ this.volume = MathUtils.clamp(volume, 0.0f, 1.0f);
if (currentMusic != null) currentMusic.setVolume(volume);
}
diff --git a/client/src/game/systems/resources/SoundsSystem.java b/client/src/game/systems/resources/SoundsSystem.java
index a7d2f3dc..30f045b4 100644
--- a/client/src/game/systems/resources/SoundsSystem.java
+++ b/client/src/game/systems/resources/SoundsSystem.java
@@ -14,56 +14,56 @@ public class SoundsSystem extends PassiveSystem {
@Wire
private DefaultAOAssetManager assetManager;
- private boolean disableSounds;
+ float volume = 1.0f;
+ boolean disabled;
public long playSound(Integer soundID, boolean loop) {
+ if (disabled) return -1;
+
Sound sound = assetManager.getSound(soundID);
if (sound == null) {
- Log.warn(SoundsSystem.class.getSimpleName(), "Error: tried to play sound index: " + soundID + ", but it was not loaded.");
+ Log.warn(SoundsSystem.class.getSimpleName(), "Tried to play sound ID: " + soundID + ", but it was not loaded.");
return -1;
}
- //TODO: it should be played with a global configurable volume
+
if (!loop) {
- return sound.play(SoundSytem.volume);
+ return sound.play(volume);
} else {
- return sound.loop(SoundSytem.volume);
+ return sound.loop(volume);
}
}
- public void playSound(Integer soundID) {
- if (!disableSounds) {
- playSound(soundID, false);
- }
+ public long playSound(Integer soundID) {
+ return playSound(soundID, false);
}
public void updateVolume(Integer soundId, long soundIndex, float volume) {
Sound sound = assetManager.getSound(soundId);
if (sound != null) {
- sound.setVolume(soundIndex, volume * SoundSytem.volume);
+ sound.setVolume(soundIndex, volume * this.volume);
}
}
public void updatePan(Integer soundId, long soundIndex, float pan, float volume) {
Sound sound = assetManager.getSound(soundId);
if (sound != null) {
- sound.setPan(soundIndex, pan, volume * SoundSytem.volume);
+ sound.setPan(soundIndex, pan, volume * this.volume);
}
}
public void stopSound(Integer soundID) {
Sound sound = assetManager.getSound(soundID);
if (sound == null) {
- Log.warn(SoundsSystem.class.getSimpleName(), "Error: tried to play sound index: " + soundID + ", but it was not loaded.");
+ Log.warn(SoundsSystem.class.getSimpleName(), "Tried to stop sound ID: " + soundID + ", but it was not loaded.");
return;
}
-
sound.stop();
}
public void stopSound(Integer soundID, long soundIndex) {
Sound sound = assetManager.getSound(soundID);
if (sound == null) {
- Log.warn(SoundsSystem.class.getSimpleName(), "Error: tried to play sound index: " + soundID + ", but it was not loaded.");
+ Log.warn(SoundsSystem.class.getSimpleName(), "Tried to stop sound ID: " + soundID + ", but it was not loaded.");
return;
}
sound.stop(soundIndex);
@@ -75,11 +75,20 @@ public float getDuration(int soundID) {
return sound instanceof OpenALSound ? ((OpenALSound) sound).duration() : 0;
}
- public boolean isDisableSounds() {
- return disableSounds;
+ public float getVolume() {
+ return volume;
+ }
+
+ public void setVolume(float volume) {
+ this.volume = volume;
+ // todo: actualizar el volumen de todos los sonidos actuales
+ }
+
+ public boolean isDisabled() {
+ return disabled;
}
- public void setDisableSounds(boolean disableSounds) {
- this.disableSounds = disableSounds;
+ public void setDisabled(boolean disabled) {
+ this.disabled = disabled;
}
}
diff --git a/client/src/game/systems/sound/SoundSytem.java b/client/src/game/systems/sound/SoundSytem.java
index 4981a034..02f73f14 100644
--- a/client/src/game/systems/sound/SoundSytem.java
+++ b/client/src/game/systems/sound/SoundSytem.java
@@ -31,7 +31,6 @@ class SoundIndexPair {
@Wire
public class SoundSytem extends IteratingSystem {
- public static float volume = 1.0f;
private final Map sounds;
private SoundsSystem soundsSystem;
@@ -43,17 +42,13 @@ public SoundSytem() {
this.sounds = new HashMap<>();
}
- public void setVolume(float volume) {
- SoundSytem.volume = volume;
- }
-
@Override
protected void inserted(int entityId) {
super.inserted(entityId);
E entity = E(entityId);
AOSound sound = entity.getAOSound();
- if (!soundsSystem.isDisableSounds()) {
+ if (!soundsSystem.isDisabled()) {
long soundIndex = soundsSystem.playSound(sound.id, sound.shouldLoop);
sounds.put(entityId, new SoundIndexPair(sound.id, soundIndex));
}
diff --git a/client/src/game/systems/ui/UserInterfaceSystem.java b/client/src/game/systems/ui/UserInterfaceSystem.java
index 90776621..743b05aa 100644
--- a/client/src/game/systems/ui/UserInterfaceSystem.java
+++ b/client/src/game/systems/ui/UserInterfaceSystem.java
@@ -1,20 +1,21 @@
package game.systems.ui;
import com.artemis.Aspect;
+import com.artemis.E;
import com.artemis.annotations.Wire;
import com.artemis.systems.IteratingSystem;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.InputMultiplexer;
+import com.badlogic.gdx.graphics.g2d.BitmapFont;
import com.badlogic.gdx.math.Vector2;
import com.badlogic.gdx.math.Vector3;
import com.badlogic.gdx.scenes.scene2d.Actor;
import com.badlogic.gdx.scenes.scene2d.InputEvent;
import com.badlogic.gdx.scenes.scene2d.InputListener;
import com.badlogic.gdx.scenes.scene2d.Stage;
-import com.badlogic.gdx.scenes.scene2d.ui.Container;
-import com.badlogic.gdx.scenes.scene2d.ui.Table;
-import com.badlogic.gdx.scenes.scene2d.ui.TooltipManager;
+import com.badlogic.gdx.scenes.scene2d.ui.*;
import com.badlogic.gdx.utils.Disposable;
+import com.badlogic.gdx.utils.ObjectMap;
import component.camera.Focused;
import component.position.WorldPos;
import game.systems.camera.CameraSystem;
@@ -24,10 +25,16 @@
import game.systems.ui.console.ConsoleSystem;
import game.systems.ui.dialog.DialogSystem;
import game.systems.ui.stats.StatsSystem;
+import game.systems.ui.stats.UserBars;
+import game.systems.ui.stats.UserHeader;
+import game.systems.ui.stats.UserStats;
import game.systems.ui.user.UserSystem;
+import game.ui.WidgetFactory;
import game.utils.Skins;
import shared.util.WorldPosConversion;
+import static com.artemis.E.E;
+
@Wire
public class UserInterfaceSystem extends IteratingSystem implements Disposable {
@@ -51,11 +58,10 @@ public UserInterfaceSystem() {
protected void initialize() {
super.initialize();
stage = new Stage();
-
- Skins.COMODORE_SKIN.getFont("simple").setUseIntegerPositions(false);
- Skins.COMODORE_SKIN.getFont("simple-with-border").setUseIntegerPositions(false);
- Skins.COMODORE_SKIN.getFont("flipped").setUseIntegerPositions(false);
- Skins.COMODORE_SKIN.getFont("flipped-with-border").setUseIntegerPositions(false);
+ ObjectMap fonts = Skins.CURRENT.get().getAll(BitmapFont.class);
+ if (fonts != null) {
+ fonts.forEach((f) -> f.value.setUseIntegerPositions(false));
+ }
}
public void show() {
@@ -81,35 +87,50 @@ protected void inserted(int entityId) {
table.setFillParent(true);
stage.addActor(table);
stage.setScrollFocus(table);
- fillTable(table);
+ fillTable(table, E(entityId));
}
- private void fillTable(Table table) {
+ private void fillTable(Table table, E e) {
final Actor dialogUI = dialogSystem.getActor();
stage.addActor(dialogUI);
-
- Container consoleUI = new Container<>(consoleSystem.getConsole());
- table.add(consoleUI).top().colspan(2).minHeight(Gdx.graphics.getHeight() * 0.15f).maxHeight(Gdx.graphics.getHeight() * 0.15f);
- table.row();
+ Table leftTable = new Table();
+ leftTable.add(consoleSystem.getConsole()).top().left().padLeft(20).padTop(10).minHeight(Gdx.graphics.getHeight() * 0.15f).maxHeight(Gdx.graphics.getHeight() * 0.15f).fillX().row();
Container userStatsUI = new Container<>(statsSystem.getActor());
- table.add(userStatsUI).left().expand();
+ leftTable.add(userStatsUI).left().grow();
+ table.add(leftTable).left().grow();
+
// Add action bar (inventory and spell view)
- Container actionBarUI = new Container<>(actionBarSystem.getActor());
- table.add(actionBarUI).right().expand();
- table.row();
- Container userUI = new Container<>(userSystem.getActor());
- table.add(userUI).bottom().colspan(2);
+ Container actionBarUI = new Container<>();
+ Table rightTable = WidgetFactory.createMainTable();
+ Table optionButtons1 = new Table();
+ optionButtons1.add(WidgetFactory.createImageButton(WidgetFactory.ImageButtons.BACK)).size(48).grow();
+ optionButtons1.add(WidgetFactory.createImageButton(WidgetFactory.ImageButtons.CLOSE)).size(48).grow();
+ optionButtons1.add(WidgetFactory.createImageButton(WidgetFactory.ImageButtons.DELETE)).size(48).grow();
+ rightTable.add(optionButtons1).top().height(48).growX().row();
+
+ rightTable.add(new UserHeader(e)).pad(15).growX().row();
+
+ rightTable.add(actionBarSystem.getActor()).height(410).padRight(-1).padTop(-55).row();
+ rightTable.add(new UserBars(e)).top().padTop(-50).grow().row();
+ rightTable.add(new UserStats(e)).grow().row();
+
+ Table optionButtons2 = new Table();
+ optionButtons2.add(WidgetFactory.createImageButton(WidgetFactory.ImageButtons.BACK)).size(48).grow();
+ optionButtons2.add(WidgetFactory.createImageButton(WidgetFactory.ImageButtons.CLOSE)).size(48).grow();
+ optionButtons2.add(WidgetFactory.createImageButton(WidgetFactory.ImageButtons.DELETE)).size(48).grow();
+ rightTable.add(optionButtons2).bottom().height(45).growX();
+ table.add(rightTable).right().bottom().growY();
table.addListener(new InputListener() {
- @Override
- public boolean scrolled(InputEvent event, float x, float y, float amountX, float amountY) {
- return isInUI(dialogUI, x, y) ||
- isInUI(consoleUI, x, y) ||
- isInUI(userStatsUI, x, y) ||
- isInUI(actionBarUI, x, y) ||
- isInUI(userUI, x, y);
+ // @Override
+ public boolean scrolled(InputEvent event, float x, float y, int amount) {
+ return isInUI(dialogUI, x, y) ||
+ isInUI(consoleSystem.getConsole(), x, y) ||
+ isInUI(userStatsUI, x, y) ||
+ isInUI(actionBarUI, x, y) ||
+ isInUI(userSystem.getActor(), x, y);
}
private boolean isInUI(Actor actor, float x, float y) {
@@ -122,11 +143,14 @@ private boolean isBetween(float x, float x1, float x2) {
return x >= x1 && x <= x2;
}
});
+
+// table.add(userSystem.getActor()).bottom().colspan(2).expand();
}
// Should only process player component.entity
@Override
protected void process(int entityId) {
+ Gdx.gl.glViewport(0, 0, Gdx.graphics.getWidth(), Gdx.graphics.getHeight());
stage.act(Gdx.graphics.getDeltaTime());
stage.draw();
}
@@ -137,7 +161,8 @@ public void dispose() {
}
public WorldPos getWorldPos(int screenX, int screenY) { // TODO review
- Vector3 screenPos = cameraSystem.camera.unproject(new Vector3(screenX, screenY, 0));
+ Vector3 screenPos = cameraSystem.camera.unproject(new Vector3(screenX, screenY, 0), 0, 0,
+ Gdx.graphics.getWidth() - 260, Gdx.graphics.getHeight());
WorldPos worldPos = WorldPosConversion.toWorld(screenPos.x, screenPos.y);
worldPos.map = mapSystem.mapNumber;
return worldPos;
@@ -148,10 +173,11 @@ public WorldPos getMouseWorldPos() {
}
public void resize(int width, int height) {
- getStage().getViewport().update(width, height);
+// getStage().getViewport().update(width, height);
}
public Stage getStage() {
return stage;
}
+
}
diff --git a/client/src/game/systems/ui/action_bar/ActionBarSystem.java b/client/src/game/systems/ui/action_bar/ActionBarSystem.java
index f3948074..d5ab36a3 100644
--- a/client/src/game/systems/ui/action_bar/ActionBarSystem.java
+++ b/client/src/game/systems/ui/action_bar/ActionBarSystem.java
@@ -36,8 +36,6 @@ public class ActionBarSystem extends UserInterfaceContributionSystem {
private PlayerSystem playerSystem;
private Actor actionBar;
- private ImageTextButton expandInventoryButton;
- private ImageButton castButton, shotButton;
private Label goldLabel;
public ActionBarSystem() {
@@ -48,7 +46,7 @@ public ActionBarSystem() {
public void calculate(int entityId) {
inventorySystem.calculate(entityId);
spellSystem.calculate(entityId);
- Table actionBar = new Table(Skins.COMODORE_SKIN);
+ Table actionBar = WidgetFactory.createMainWindow();
Log.debug("Creating Action Bar for component.entity: " + entityId);
SwitchButtons buttons = new SwitchButtons();
buttons.addListener(state -> {
@@ -62,44 +60,18 @@ public void calculate(int entityId) {
}
});
- actionBar.add(buttons).top().right().colspan(2).padRight(10).row();
-
- /*cast and shot*/
- Table buttonsTable = new Table();
- Stack buttonStack = new Stack();
- castButton = createCastButton();
- buttonStack.add(castButton);
- shotButton = createShotButton();
- buttonStack.add(shotButton);
- buttonsTable.add(buttonStack).right().row();
- expandInventoryButton = createExpandInventoryButton();
- buttonsTable.add(expandInventoryButton).right().width(50).height(50);
- actionBar.add(buttonsTable).padRight(-25f).width(100);
+ actionBar.add(buttons).top().padLeft(5).padRight(10).height(45).padTop(-8).growX().row();
/* Inventary and spellbook */
Stack stack = new Stack();
E e = E(entityId);
- if (e.hasBag()) {
- // add inventory
+ if (e.hasBag()) { // add inventory
stack.add(inventorySystem.getActor());
}
- if (e.hasSpellBook()) {
- // add spellbook
+ if (e.hasSpellBook()) { // add spellbook
stack.add(spellSystem.getActor());
}
- actionBar.add(stack).top().right().row();
-
- /*gold table*/
- Table goldTable = new Table();
- Cell goldIconCell = goldTable.add(WidgetFactory.createImage(new Texture(Gdx.files.local("data/ui/images/gold.png"))));
- goldIconCell.height(28).width(30).left();
- goldLabel = WidgetFactory.createLabel("");
- goldLabel.setText(String.valueOf(playerSystem.get().goldCount()));
- goldLabel.setColor(Color.GOLDENROD);
- goldLabel.setAlignment(Align.right);
- goldTable.add(goldLabel).height(28).fillY().right();
- actionBar.add(goldTable).colspan(2).right().padRight(10);
-
+ actionBar.add(stack).top().grow().row();
this.actionBar = actionBar;
}
@@ -110,19 +82,10 @@ public Actor getActor() {
public void showInventory() {
spellSystem.hide();
- castButton.setVisible(false);
- shotButton.setVisible(true);
- expandInventoryButton.setVisible(true);
inventorySystem.show();
}
public void showSpells() {
- if (inventorySystem.isExpanded()) {
- inventorySystem.toggleExpanded();
- }
- expandInventoryButton.setVisible(false);
- castButton.setVisible(true);
- shotButton.setVisible(false);
spellSystem.show();
inventorySystem.hide();
}
@@ -135,56 +98,6 @@ public void toggle() {
}
}
- private ImageTextButton createExpandInventoryButton() {
- expandInventoryButton = new ImageTextButton("", Skins.COMODORE_SKIN, "inventory-expand-collapse");
- expandInventoryButton.addListener(new ClickListener() {
- @Override
- public void clicked(InputEvent event, float x, float y) {
- inventorySystem.toggleExpanded();
- }
- });
- return expandInventoryButton;
- }
-
- private ImageButton createCastButton() {
- ImageButton staff = WidgetFactory.createImageStaffButton();
- staff.addListener(new ClickListener() {
- @Override
- public void clicked(InputEvent event, float x, float y) {
- spellSystem.castClick();
- }
- });
- return staff;
- }
-
- public void clearCast() {
- castButton.setChecked(false);
- }
-
- private ImageButton createShotButton() {
- Sprite shotSprite = new Sprite(new Texture(Gdx.files.local("data/graficos2x/16007.png")));
- shotSprite.rotate90(true);
- SpriteDrawable shotDrawable = new SpriteDrawable(shotSprite);
- ImageButton.ImageButtonStyle shotStile = new ImageButton.ImageButtonStyle();
- shotStile.up = Skins.COMODORE_SKIN.getDrawable("big-disc");
- shotStile.imageUp = shotDrawable.tint(Color.DARK_GRAY);
- shotStile.imageChecked = shotDrawable.tint(Color.GOLDENROD);
-
- ImageButton shotButton = WidgetFactory.createImageButton(shotStile);
-
- shotButton.addListener(new ClickListener() {
- @Override
- public void clicked(InputEvent event, float x, float y) {
- mouseSystem.shot();
- }
- });
- return shotButton;
- }
-
- public void clearShot() {
- shotButton.setChecked(false);
- }
-
public void updateGoldLabel(int goldCount) {
goldLabel.setText(String.valueOf(goldCount));
}
diff --git a/client/src/game/systems/ui/action_bar/systems/InventorySystem.java b/client/src/game/systems/ui/action_bar/systems/InventorySystem.java
index 39346b08..ec3c92d4 100644
--- a/client/src/game/systems/ui/action_bar/systems/InventorySystem.java
+++ b/client/src/game/systems/ui/action_bar/systems/InventorySystem.java
@@ -101,7 +101,7 @@ private Actor createTooltipContent(Bag.Item item, Obj obj) {
Table table = new Table();
table.pad(0, 10, 10, 0);
- table.setSkin(Skins.COMODORE_SKIN);
+ table.setSkin(Skins.CURRENT.get());
table.background(getBackground());
Label title = WidgetFactory.createTitleLabel(" - " + name + " - ");
Label type = WidgetFactory.createDescLabel(objType.toString());
@@ -317,15 +317,7 @@ public Optional getWorldPos(float x, float y) {
public void update(Bag bag) {
inventory.update(bag);
- actionBarSystem.updateGoldLabel(playerSystem.get().goldCount());
- }
-
- public void toggleExpanded() {
- inventory.toggleExpanded(playerSystem.get().getBag());
- }
-
- public boolean isExpanded() {
- return inventory.getExpanded();
+// actionBarSystem.updateGoldLabel(playerSystem.get().goldCount());
}
}
diff --git a/client/src/game/systems/ui/action_bar/systems/SpellSystem.java b/client/src/game/systems/ui/action_bar/systems/SpellSystem.java
index ab90e98f..7fc09c12 100644
--- a/client/src/game/systems/ui/action_bar/systems/SpellSystem.java
+++ b/client/src/game/systems/ui/action_bar/systems/SpellSystem.java
@@ -31,7 +31,7 @@ public void calculate(int entityId) {
spellView = new SpellBookUI() {
@Override
protected void onCastClicked(SpellSlotUI slot) {
- if (slot != null) {
+ if (slot != null && slot.getSpell() != null) {
mouseSystem.spell(slot.getSpell());
}
}
@@ -58,19 +58,8 @@ public void show() {
spellView.setVisible(true);
}
- public void clearCast() {
- actionBarSystem.clearCast();
- }
-
public boolean isVisible() {
return spellView.isVisible();
}
- public void castClick() {
- spellView.castClick();
- }
-
- public void clearShot() {
- actionBarSystem.clearShot();
- }
}
diff --git a/client/src/game/systems/ui/dialog/DialogSystem.java b/client/src/game/systems/ui/dialog/DialogSystem.java
index 72fb1c78..9a1c6913 100644
--- a/client/src/game/systems/ui/dialog/DialogSystem.java
+++ b/client/src/game/systems/ui/dialog/DialogSystem.java
@@ -5,9 +5,14 @@
import com.badlogic.gdx.scenes.scene2d.Actor;
import com.badlogic.gdx.scenes.scene2d.InputEvent;
import com.badlogic.gdx.scenes.scene2d.InputListener;
+import com.badlogic.gdx.scenes.scene2d.ui.ImageButton;
+import com.badlogic.gdx.scenes.scene2d.ui.Stack;
+import com.badlogic.gdx.scenes.scene2d.ui.Table;
+import com.badlogic.gdx.scenes.scene2d.utils.ClickListener;
import game.systems.PlayerSystem;
import game.systems.network.ClientSystem;
import game.ui.DialogText;
+import game.ui.WidgetFactory;
import game.utils.AlternativeKeys;
import net.mostlyoriginal.api.system.core.PassiveSystem;
import shared.network.interaction.TalkRequest;
@@ -18,12 +23,14 @@ public class DialogSystem extends PassiveSystem {
public DialogText dialogText;
private ClientSystem clientSystem;
private PlayerSystem playerSystem;
+ private Table table;
public DialogSystem() {
+ table = new Table();
+ table.setVisible(false);
+ table.setFillParent(true);
dialogText = new DialogText();
- float width = getWidth() * 0.8f;
- dialogText.setSize(width, dialogText.getHeight());
- dialogText.setPosition((getWidth() - width) / 2, getHeight() / 2);
+ float width = getWidth() * 0.5f;
dialogText.addListener(new InputListener() {
@Override
public boolean keyUp(InputEvent event, int keycode) {
@@ -33,6 +40,17 @@ public boolean keyUp(InputEvent event, int keycode) {
return keycode == AlternativeKeys.TALK;
}
});
+
+ table.add(dialogText).expandY().bottom().width(width);
+ ImageButton submitButton = WidgetFactory.createImageButton(WidgetFactory.ImageButtons.SUBMIT);
+ submitButton.addListener(new ClickListener() {
+ @Override
+ public void touchUp(InputEvent event, float x, float y, int pointer, int button) {
+ super.touchUp(event, x, y, pointer, button);
+ talk();
+ }
+ });
+ table.add(submitButton).expandY().bottom().padLeft(-50);
}
public void talk() {
@@ -51,11 +69,12 @@ private String getMessage() {
private boolean toggle() {
dialogText.toggle();
+ table.setVisible(!table.isVisible());
return dialogText.isVisible();
}
public Actor getActor() {
- return dialogText;
+ return table;
}
private float getWidth() {
diff --git a/client/src/game/systems/ui/stats/StatsSystem.java b/client/src/game/systems/ui/stats/StatsSystem.java
index 981183b0..3169b879 100644
--- a/client/src/game/systems/ui/stats/StatsSystem.java
+++ b/client/src/game/systems/ui/stats/StatsSystem.java
@@ -67,7 +67,7 @@ public class IntervalItem extends Table {
public IntervalItem(Texture image) {
this.image = image;
this.time = WidgetFactory.createLabel("");
- add(WidgetFactory.createImage(image)).left();
+ add(WidgetFactory.createImage(image)).size(16).left();
add(time).right();
}
diff --git a/client/src/game/systems/ui/stats/UserBars.java b/client/src/game/systems/ui/stats/UserBars.java
new file mode 100644
index 00000000..6aa10832
--- /dev/null
+++ b/client/src/game/systems/ui/stats/UserBars.java
@@ -0,0 +1,118 @@
+package game.systems.ui.stats;
+
+import com.artemis.E;
+import com.badlogic.gdx.math.Interpolation;
+import com.badlogic.gdx.scenes.scene2d.ui.*;
+import com.badlogic.gdx.utils.Align;
+import game.ui.WidgetFactory;
+
+public class UserBars extends Table {
+
+ private E player;
+
+ private ProgressBar energyBar;
+ private Label energyLabel;
+ private ProgressBar manaBar;
+ private Label manaLabel;
+ private ProgressBar hpBar;
+ private Label hpLabel;
+
+ public UserBars(E player) {
+ this.player = player;
+ createUI();
+ }
+
+ private void createUI() {
+ Tuple tuple = addBar(WidgetFactory.ProgressBars.UI_ENERGY, WidgetFactory.ImageButtons.UI_ENERGY);
+ energyBar = tuple.progressBar;
+ energyLabel = tuple.label;
+ if (player.hasStamina()) {
+ energyBar.setRange(0, player.staminaMax());
+ energyBar.setValue(player.staminaMin());
+ }
+ row();
+ tuple = addBar(WidgetFactory.ProgressBars.UI_HP, WidgetFactory.ImageButtons.UI_HP);
+ hpLabel = tuple.label;
+ hpBar = tuple.progressBar;
+ if (player.hasHealth()) {
+ hpBar.setRange(0, player.healthMax());
+ hpBar.setValue(player.healthMin());
+ }
+ row();
+ tuple = addBar(WidgetFactory.ProgressBars.UI_MANA, WidgetFactory.ImageButtons.UI_MANA);
+ manaLabel = tuple.label;
+ manaBar = tuple.progressBar;
+ if (player.hasMana()) {
+ manaBar.setRange(0, player.manaMax());
+ manaBar.setValue(player.manaMin());
+ }
+ }
+
+ private Tuple addBar(WidgetFactory.ProgressBars bar, WidgetFactory.ImageButtons image) {
+ Stack stack = new Stack();
+ Table table = new Table();
+ ImageButton icon = WidgetFactory.createImageButton(image);
+ table.add(icon);
+ ProgressBar progressBar = WidgetFactory.createProgressBar(bar);
+ progressBar.setAnimateDuration(0.35f);
+ progressBar.setAnimateInterpolation(Interpolation.fastSlow);
+ table.add(progressBar).width(180).padLeft(-24);
+ icon.toFront();
+ stack.add(table);
+
+ Table table1 = new Table();
+ Label label = WidgetFactory.createBarLabel("");
+ label.setAlignment(Align.center);
+ table1.add(label).growX().padLeft(12);
+ stack.add(table1);
+
+ add(stack);
+ return new Tuple(label, progressBar);
+ }
+
+ @Override
+ public void act(float delta) {
+ super.act(delta);
+ if (player.hasStamina()) {
+ if (player.staminaMax() != energyBar.getMaxValue()) {
+ energyBar.setRange(0, player.staminaMax());
+ }
+ if (player.staminaMin() != energyBar.getValue()) {
+ energyBar.setValue(player.staminaMin());
+ }
+ energyLabel.setText(player.staminaMin() + "/" + player.staminaMax());
+ }
+
+ if (player.hasHealth()) {
+ if (player.healthMax() != hpBar.getMaxValue()) {
+ hpBar.setRange(0, player.staminaMax());
+ }
+ if (player.healthMin() != hpBar.getValue()) {
+ hpBar.setValue(player.healthMin());
+ hpLabel.setText(player.healthMin() + "/" + player.healthMax());
+ }
+ hpLabel.setText(player.healthMin() + "/" + player.healthMax());
+ }
+
+ if (player.hasMana()) {
+ if (player.manaMax() != manaBar.getMaxValue()) {
+ manaBar.setRange(0, player.manaMax());
+ }
+ if (player.manaMin() != manaBar.getValue()) {
+ manaBar.setValue(player.manaMin());
+ manaLabel.setText(player.manaMin() + "/" + player.manaMax());
+ }
+ manaLabel.setText(player.manaMin() + "/" + player.manaMax());
+ }
+ }
+
+ private static class Tuple {
+ private final ProgressBar progressBar;
+ private final Label label;
+
+ public Tuple(Label label, ProgressBar progressBar) {
+ this.label = label;
+ this.progressBar = progressBar;
+ }
+ }
+}
diff --git a/client/src/game/systems/ui/stats/UserHeader.java b/client/src/game/systems/ui/stats/UserHeader.java
new file mode 100644
index 00000000..531b4351
--- /dev/null
+++ b/client/src/game/systems/ui/stats/UserHeader.java
@@ -0,0 +1,75 @@
+package game.systems.ui.stats;
+
+import com.artemis.E;
+import com.badlogic.gdx.math.Interpolation;
+import com.badlogic.gdx.scenes.scene2d.ui.*;
+import com.badlogic.gdx.utils.Align;
+import game.ui.WidgetFactory;
+
+public class UserHeader extends Table {
+
+ private E player;
+ private Label level;
+ private ProgressBar exp;
+ private Label expLabel;
+ private ImageButton levelButton;
+
+ public UserHeader(E player) {
+ this.player = player;
+ createUI();
+ }
+
+ private void createUI() {
+ // add label
+ add(WidgetFactory.createUserLabel(player.nameText())).colspan(2).center().row();
+
+ Stack levelStack = new Stack();
+ // add background
+ levelButton = WidgetFactory.createImageButton(WidgetFactory.ImageButtons.UI_EXP);
+ levelStack.add(levelButton);
+ // add level
+ level = WidgetFactory.createBarLabel(player.levelLevel() + "");
+ level.setAlignment(Align.center);
+ levelStack.add(level);
+ add(levelStack);
+ // create stack
+ Stack barStack = new Stack();
+ Table expTable = new Table();
+ // add bar
+ exp = WidgetFactory.createProgressBar(WidgetFactory.ProgressBars.UI_EXP);
+ exp.setAnimateInterpolation(Interpolation.fastSlow);
+ exp.setAnimateDuration(0.35f);
+ expTable.add(exp).width(180);
+ // add text
+ Table labelTable = new Table();
+ expLabel = WidgetFactory.createBarLabel("");
+ expLabel.setAlignment(Align.center);
+ labelTable.add(expLabel).width(168).padLeft(12);
+ barStack.add(expTable);
+ barStack.add(labelTable);
+
+ add(barStack).padLeft(-24);
+ levelStack.toFront();
+ }
+
+ @Override
+ public void act(float delta) {
+ super.act(delta);
+ try {
+ if (player.hasLevel() && player.levelLevel() != Integer.parseInt(level.getText().toString())) {
+ level.setText(player.levelLevel() + "");
+ }
+ } catch (Exception e) {
+ // Do nothing
+ }
+ if (player.hasLevel()) {
+ if (player.levelExpToNextLevel() != exp.getMaxValue()) {
+ exp.setRange(0, player.levelExpToNextLevel());
+ }
+ if (player.levelExp() != exp.getValue()) {
+ exp.setValue(player.levelExp());
+ }
+ expLabel.setText(player.levelExp() + "/" + player.levelExpToNextLevel());
+ }
+ }
+}
diff --git a/client/src/game/systems/ui/stats/UserStats.java b/client/src/game/systems/ui/stats/UserStats.java
new file mode 100644
index 00000000..86926c2a
--- /dev/null
+++ b/client/src/game/systems/ui/stats/UserStats.java
@@ -0,0 +1,55 @@
+package game.systems.ui.stats;
+
+import com.artemis.E;
+import com.badlogic.gdx.scenes.scene2d.ui.*;
+import com.badlogic.gdx.utils.Align;
+import game.ui.WidgetFactory;
+
+public class UserStats extends Table {
+
+ private E player;
+
+ private Label shieldLabel;
+ private Label weaponLabel;
+ private Label bodyLabel;
+ private Label helmetLabel;
+
+ public UserStats(E player) {
+ this.player = player;
+ createUI();
+ }
+
+ private void createUI() {
+ bodyLabel = createStat(WidgetFactory.ImageButtons.UI_ARMOR, false);
+ helmetLabel = createStat(WidgetFactory.ImageButtons.UI_HELMET, true);
+ row();
+ weaponLabel = createStat(WidgetFactory.ImageButtons.UI_WEAPON, false);
+ shieldLabel = createStat(WidgetFactory.ImageButtons.UI_SHIELD, true);
+ }
+
+ private Label createStat(WidgetFactory.ImageButtons image, boolean isRight) {
+ Label result = WidgetFactory.createStatLabel("12/10");
+ result.setAlignment(isRight ? Align.left : Align.right);
+ Table table = new Table();
+ final ImageButton imageButton = WidgetFactory.createImageButton(image);
+ if (isRight) {
+ table.add(result).width(70).height(32);
+ table.add(imageButton).padLeft(-24);
+ } else {
+ table.add(imageButton);
+ table.add(result).width(70).height(32).padLeft(-24);
+ }
+ add(table).spaceLeft(5).spaceRight(5);
+ imageButton.toFront();
+ return result;
+ }
+
+ @Override
+ public void act(float delta) {
+ super.act(delta);
+ if (player.hasBody()) {
+
+ }
+ }
+
+}
diff --git a/client/src/game/systems/world/ClearSystem.java b/client/src/game/systems/world/ClearSystem.java
index 371fd393..acc0970c 100644
--- a/client/src/game/systems/world/ClearSystem.java
+++ b/client/src/game/systems/world/ClearSystem.java
@@ -1,28 +1,29 @@
package game.systems.world;
-import com.artemis.E;
+import com.artemis.ComponentMapper;
import com.artemis.annotations.All;
import com.artemis.annotations.Wire;
import com.artemis.systems.IteratingSystem;
import com.esotericsoftware.minlog.Log;
import component.entity.Clear;
-@All({Clear.class})
-@Wire
+@All(Clear.class)
public class ClearSystem extends IteratingSystem {
private NetworkedEntitySystem entitySystem;
+ ComponentMapper mClear;
+
@Override
protected void process(int entityId) {
- E e = E.E(entityId);
- e.getClear().setTime(e.getClear().getTime() - world.getDelta());
- if (e.clearTime() <= 0) {
+ Clear clear = mClear.get(entityId);
+ clear.setTime(clear.getTime() - world.getDelta());
+ if (clear.getTime() <= 0.0f) {
Log.debug("Unregistering entity: " + entityId);
if (entitySystem.existsLocal(entityId)) {
entitySystem.unregisterLocalEntity(entityId);
} else {
- e.deleteFromWorld();
+ world.getEntity(entityId).deleteFromWorld();
}
}
}
diff --git a/client/src/game/ui/AOConsole.java b/client/src/game/ui/AOConsole.java
index a24ed7a2..dc544900 100644
--- a/client/src/game/ui/AOConsole.java
+++ b/client/src/game/ui/AOConsole.java
@@ -6,8 +6,10 @@
import com.badlogic.gdx.scenes.scene2d.ui.Label;
import com.badlogic.gdx.scenes.scene2d.ui.ScrollPane;
import com.badlogic.gdx.scenes.scene2d.ui.VerticalGroup;
+import com.badlogic.gdx.utils.Align;
import com.badlogic.gdx.utils.Array;
import game.utils.Colors;
+import game.utils.Skins;
public class AOConsole extends ScrollPane {
@@ -18,10 +20,18 @@ public AOConsole() {
super(createStack());
setSmoothScrolling(true);
setFadeScrollBars(true);
+ getStyle().background = Skins.CURRENT.get().getDrawable( "Slider_Horizontal_Background" );
+ getStyle().vScrollKnob = Skins.CURRENT.get().getDrawable( "Slider_Horizontal_Handle" );
+ setFadeScrollBars( false );
+ addMessage( "Bienvenidos al servidor", Color.GOLDENROD );
+ addMessage( "/help para obtener la lista de comandos", Color.GOLDENROD );
}
private static Actor createStack() {
- return new VerticalGroup();
+ VerticalGroup verticalGroup = new VerticalGroup();
+ verticalGroup.columnLeft();
+ verticalGroup.grow();
+ return verticalGroup;
}
public void addInfo(String message) {
@@ -42,6 +52,7 @@ public void addCombat(String message) {
private void addMessage(String message, Color color) {
Label label = WidgetFactory.createConsoleLabel(message, color);
+ label.setAlignment(Align.left);
if (!messages.isEmpty() && messages.items.length >= MAX_MESSAGES) {
messages.removeIndex(0);
((VerticalGroup) getActor()).removeActor(((VerticalGroup) getActor()).getChild(0), true);
diff --git a/client/src/game/ui/DialogText.java b/client/src/game/ui/DialogText.java
index 6c6ea000..b7ac4c55 100644
--- a/client/src/game/ui/DialogText.java
+++ b/client/src/game/ui/DialogText.java
@@ -9,6 +9,10 @@ public class DialogText extends Table {
public DialogText() {
setVisible(false);
+ if (textf == null) {
+ textf = WidgetFactory.createTextField("");
+ }
+ add(textf).growX();
}
public String getMessage() {
@@ -16,18 +20,13 @@ public String getMessage() {
}
public void toggle() {
- if (textf == null) {
- textf = WidgetFactory.createTextField("");
- }
+
setVisible(!isVisible());
if (isVisible()) {
- add(textf).fillX();
- row().colspan(1).expandX().fillX();
getStage().setKeyboardFocus(textf);
} else {
getStage().unfocus(textf);
textf.setText("");
- removeActor(textf);
}
}
diff --git a/client/src/game/ui/ExtendedDialog.java b/client/src/game/ui/ExtendedDialog.java
new file mode 100644
index 00000000..1a99640d
--- /dev/null
+++ b/client/src/game/ui/ExtendedDialog.java
@@ -0,0 +1,43 @@
+package game.ui;
+
+import com.badlogic.gdx.scenes.scene2d.ui.Button;
+import com.badlogic.gdx.scenes.scene2d.ui.Dialog;
+import com.badlogic.gdx.scenes.scene2d.ui.Skin;
+import com.badlogic.gdx.scenes.scene2d.ui.TextButton;
+
+/** Extensión que permite trabajar con expresiones lambda y runnables.
+ * @see com.badlogic.gdx.scenes.scene2d.ui.Dialog
+ * @todo Agregar más funcionalidad
+ */
+public class ExtendedDialog extends Dialog {
+ public ExtendedDialog(String title, Skin skin) {
+ super(title, skin);
+ }
+
+ public ExtendedDialog(String title, Skin skin, String windowStyleName) {
+ super(title, skin, windowStyleName);
+ }
+
+ public ExtendedDialog(String title, WindowStyle windowStyle) {
+ super(title, windowStyle);
+ }
+
+ public Dialog button (String text, Runnable runnable) {
+ return super.button(text, runnable);
+ }
+
+ public Dialog button (String text, Runnable runnable, TextButton.TextButtonStyle buttonStyle) {
+ return super.button(text, runnable, buttonStyle);
+ }
+
+ public Dialog button (Button button, Runnable runnable) {
+ return super.button(button, runnable);
+ }
+
+ @Override
+ protected void result(Object object) {
+ if (object instanceof Runnable) {
+ ((Runnable) object).run();
+ }
+ }
+}
diff --git a/client/src/game/ui/Inventory.java b/client/src/game/ui/Inventory.java
index c0423f02..92f0230d 100644
--- a/client/src/game/ui/Inventory.java
+++ b/client/src/game/ui/Inventory.java
@@ -7,106 +7,58 @@
import com.badlogic.gdx.math.MathUtils;
import com.badlogic.gdx.scenes.scene2d.InputEvent;
import com.badlogic.gdx.scenes.scene2d.ui.Label;
+import com.badlogic.gdx.scenes.scene2d.ui.Table;
import com.badlogic.gdx.scenes.scene2d.ui.Tooltip;
import com.badlogic.gdx.scenes.scene2d.ui.Window;
import com.badlogic.gdx.scenes.scene2d.utils.ClickListener;
import component.entity.character.info.Bag;
import component.entity.character.info.Bag.Item;
-import game.systems.PlayerSystem;
import game.utils.Skins;
import java.util.ArrayList;
import java.util.Optional;
import java.util.stream.Stream;
-public abstract class Inventory extends Window {
+public abstract class Inventory extends Table {
private static final int COLUMNS = 5;
- private static final int ROWS = 4;
+ private static final int ROWS = 5;
private static final int SIZE = COLUMNS * ROWS;
private int base;
- private PlayerSystem playerSystem;
private ArrayList slots;
private ArrayList itemCount;
private Optional selected = Optional.empty();
private Optional dragging = Optional.empty();
private Optional origin = Optional.empty();
- private boolean expanded;
public Inventory() {
- super("", Skins.COMODORE_SKIN, "inventory");
- setMovable(false);
+ super();
this.slots = new ArrayList<>();
this.itemCount = new ArrayList<>();
createui();
}
private void createui() {
- clear();
- if (expanded) {
- int columnsCounter = 1, loops = 0;
- for (int i = 0; i < SIZE; i++) {
- Slot newSlot = new Slot();
- Label count = WidgetFactory.createLabel("");
- count.setFontScale(0.7f);
- itemCount.add(count);
- slots.add(newSlot);
- add(slots.get(i)).width(Slot.SIZE).height(Slot.SIZE);
- if (columnsCounter > ROWS - 1) {
- row();
- for (int x = 0; x < 4; x++) {
- switch (loops) {
- case 0:
- add(itemCount.get(x)).height(10);
- break;
- case 1:
- add(itemCount.get(x + 4)).height(10);
- break;
- case 2:
- add(itemCount.get(x + 8)).height(10);
- break;
- case 3:
- add(itemCount.get(x + 12)).height(10);
- break;
- case 4:
- add(itemCount.get(x + 16)).height(10);
- break;
- }
- }
- row();
- for (int y = 0; y < 4; y++) {
- add(WidgetFactory.createSeparatorImage());
- }
- row();
- columnsCounter = 0;
- loops++;
- }
- columnsCounter++;
-
- }
- } else {
- for (int i = 0; i < 5; i++) {
- Slot newSlot = new Slot();
- Label count = WidgetFactory.createLabel("");
- count.setFontScale(0.7f);
- slots.add(newSlot);
- itemCount.add(count);
- add(slots.get(i)).width(Slot.SIZE).height(Slot.SIZE).row();
- add(itemCount.get(i)).height(10).row();
- add(WidgetFactory.createSeparatorImage()).row();
+ int columnsCounter = 1, loops = 0;
+ for (int i = 0; i < SIZE; i++) {
+ Slot newSlot = new Slot();
+ Label count = WidgetFactory.createLabel("");
+ itemCount.add(count);
+ slots.add(newSlot);
+ add(newSlot).width(Slot.SIZE).height(Slot.SIZE).space(0);
+ if (columnsCounter > ROWS - 1) {
+ row();
+ columnsCounter = 0;
+ loops++;
}
+ columnsCounter++;
+
}
addListener(getMouseListener());
}
- public void toggleExpanded(Bag bag) {
- expanded = !expanded;
- createui();
- update(bag);
- }
-
public void selectItem(float x, float y, int tapCount) {
selected.ifPresent(slot -> slot.setSelected(false));
selected = getSlot(x, y);
@@ -124,8 +76,8 @@ private Optional getSlot(float x, float y) {
return Stream.of(getChildren().items)
.filter(Slot.class::isInstance)
.filter(actor -> {
- if (x > actor.getX() && x < actor.getWidth() + actor.getX()) {
- return y > actor.getY() && y < actor.getHeight() + actor.getY();
+ if (x >= actor.getX() && x <= actor.getWidth() + actor.getX()) {
+ return y >= actor.getY() && y <= actor.getHeight() + actor.getY();
}
return false;
})
@@ -146,10 +98,8 @@ public boolean scrolled(InputEvent event, float x, float y, float amountX, float
public void clicked(InputEvent event, float x, float y) {
int tapCount = getTapCount();
selectItem(x, y, tapCount);
-
}
-
@Override
public boolean touchDown(InputEvent event, float x, float y, int pointer, int button) {
boolean result = super.touchDown(event, x, y, pointer, button);
@@ -164,6 +114,7 @@ public void touchDragged(InputEvent event, float x, float y, int pointer) {
super.touchDragged(event, x, y, pointer);
if (Gdx.input.isKeyPressed(Input.Keys.SHIFT_LEFT) || Gdx.input.isKeyPressed(Input.Keys.SHIFT_RIGHT)) {
dragging = origin;
+ dragging.ifPresent(slot -> slot.setDragging(true));
} else {
dragging = Optional.empty();
}
@@ -179,8 +130,10 @@ public void touchUp(InputEvent event, float x, float y, int pointer, int button)
int targetIndex = base + slots.indexOf(target);
int originIndex = base + slots.indexOf(dragging.get());
swap(originIndex, targetIndex);
+ dragging.ifPresent(draggedSlot -> draggedSlot.setDragging(false));
} else {
dragAndDropOut(draggingIndex(), (int) x, (int) y);
+ dragging.ifPresent(draggedSlot -> draggedSlot.setDragging(false));
}
}
dragging = Optional.empty();
@@ -199,20 +152,11 @@ public void update(Bag userBag) {
public void update(int base, Bag userBag) {
Item[] userItems = userBag.items;
- if (expanded) {
- for (int i = 0; i < SIZE; i++) {
- Item item = base + i < userItems.length ? userItems[base + i] : null;
- slots.get(i).setItem(item, item != null ? getGraphic(item) : null, item != null ? getTooltip(item) : null);
- updateCount(item, i);
- }
- } else {
- for (int i = 0; i < 5; i++) {
- Item item = base + i < userItems.length ? userItems[base + i] : null;
- slots.get(i).setItem(item, item != null ? getGraphic(item) : null, item != null ? getTooltip(item) : null);
- updateCount(item, i);
- }
+ for (int i = 0; i < SIZE; i++) {
+ Item item = base + i < userItems.length ? userItems[base + i] : null;
+ slots.get(i).setItem(item, item != null ? getGraphic(item) : null, item != null ? getTooltip(item) : null);
+ updateCount(item, i);
}
-
}
private void updateCount(Item item, int i) {
@@ -233,9 +177,9 @@ public void draw(Batch batch, float parentAlpha) {
dragging.ifPresent(slot -> {
TextureRegion graphic = slot.getGraphic();
if (graphic != null) {
- int x1 = Gdx.input.getX() - (graphic.getRegionWidth() / 2);
- int y1 = Gdx.graphics.getHeight() - Gdx.input.getY() - (graphic.getRegionHeight() / 2);
- batch.draw(graphic, x1, y1);
+ int x1 = Gdx.input.getX() - (graphic.getRegionWidth() / 2 / 2);
+ int y1 = Gdx.graphics.getHeight() - Gdx.input.getY() - (graphic.getRegionHeight() / 2 / 2);
+ batch.draw(graphic, x1, y1, Slot.SIZE, Slot.SIZE);
}
});
}
@@ -263,8 +207,4 @@ private int draggingIndex() {
protected abstract Tooltip getTooltip(Item item);
-
- public boolean getExpanded() {
- return expanded;
- }
}
diff --git a/client/src/game/ui/Slot.java b/client/src/game/ui/Slot.java
index e1d2adde..22524400 100755
--- a/client/src/game/ui/Slot.java
+++ b/client/src/game/ui/Slot.java
@@ -15,19 +15,21 @@
public class Slot extends ImageButton {
- static final int SIZE = 64;
+ static final int SIZE = 48;
- private static Drawable selection = Skins.COMODORE_SKIN.getDrawable("slot-selected2");
+ private static Drawable selection = WidgetFactory.createDrawable(WidgetFactory.Drawables.INVENTORY_SLOT_SELECTION.name);
+ private static Drawable overlay = WidgetFactory.createDrawable(WidgetFactory.Drawables.INVENTORY_SLOT_OVERLAY.name);
private static Texture equip = new Texture(Gdx.files.local("data/ui/images/slot-equipped.png"));
private Optional- item = Optional.empty();
+ private boolean dragging;
private boolean selected;
private Tooltip tooltip;
private TextureRegion graphic;
Slot() {
- super(Skins.COMODORE_SKIN, "icon-container");
+ super(Skins.CURRENT.get(), "slot");
}
public Slot(Item item) {
@@ -68,19 +70,21 @@ void setItem(Item item, TextureRegion graphic, Tooltip tooltip) {
public void draw(Batch batch, float parentAlpha) {
super.draw(batch, parentAlpha);
if (item.isPresent()) {
- drawItem(batch);
+ if (!dragging) drawItem(batch);
if (item.get().equipped) {
- batch.draw(equip, getX(), getY(), SIZE, SIZE);
+ batch.draw(equip, getX(), getY(), getWidth(), getHeight());
}
+
if (selected) {
- selection.draw(batch, getX(), getY(), SIZE, SIZE);
+ selection.draw(batch, getX(), getY(), getWidth(), getHeight());
}
}
+ overlay.draw(batch, getX(), getY(), getWidth(), getHeight());
}
private void drawItem(Batch batch) {
if (graphic != null) {
- batch.draw(graphic, getX() + 1, getY() + 1);
+ batch.draw(graphic, getX() + 3, getY() + 3, getWidth() - 6, getHeight() - 6);
}
}
@@ -88,4 +92,8 @@ void setSelected(boolean selected) {
this.selected = selected;
}
+ void setDragging(boolean dragging) {
+ this.dragging = dragging;
+ }
+
}
diff --git a/client/src/game/ui/SpellBookUI.java b/client/src/game/ui/SpellBookUI.java
index f5e72ed7..1c8c22f0 100755
--- a/client/src/game/ui/SpellBookUI.java
+++ b/client/src/game/ui/SpellBookUI.java
@@ -1,7 +1,9 @@
package game.ui;
-import com.badlogic.gdx.scenes.scene2d.ui.Table;
-import com.badlogic.gdx.scenes.scene2d.ui.Window;
+import com.badlogic.gdx.scenes.scene2d.InputEvent;
+import com.badlogic.gdx.scenes.scene2d.Touchable;
+import com.badlogic.gdx.scenes.scene2d.ui.*;
+import com.badlogic.gdx.scenes.scene2d.utils.ClickListener;
import component.entity.character.info.SpellBook;
import game.utils.Skins;
import shared.model.Spell;
@@ -12,13 +14,13 @@
public abstract class SpellBookUI extends Table {
- private static final int MAX_SPELLS = 6;
+ private static final int MAX_SPELLS = SpellBook.SIZE;
public Optional
selected = Optional.empty();
- private List slots = new ArrayList<>(MAX_SPELLS);
+ private final List slots = new ArrayList<>(MAX_SPELLS);
public SpellBookUI() {
- super(Skins.COMODORE_SKIN);
- Window spellTable = WidgetFactory.createInventoryWindow();
+ super(Skins.CURRENT.get());
+ Table spellTable = WidgetFactory.createInventoryWindow();
for (int i = 0; i < MAX_SPELLS; i++) {
SpellSlotUI slot = new SpellSlotUI() {
@Override
@@ -31,13 +33,47 @@ public void onSpellClick(SpellSlotUI spellSlotUI) {
}
};
slots.add(slot);
- spellTable.add(slot).width(SpellSlot.SIZE).height(SpellSlot.SIZE).row();
- if (i < MAX_SPELLS - 1) {
- spellTable.add(WidgetFactory.createSeparatorImage()).row();
- }
+ spellTable.add(slot).growX().row();
}
- add(spellTable).right();
+ final ScrollPane scrollPane = new ScrollPane(spellTable);
+ scrollPane.setScrollbarsOnTop(true);
+ scrollPane.setScrollbarsVisible(true);
+ scrollPane.setFadeScrollBars(false);
+ scrollPane.setSmoothScrolling(true);
+ scrollPane.setFlickScroll(false);
+ scrollPane.setOverscroll(false, false);
+ add(scrollPane).maxHeight(200).growX();
+ Table buttons = new Table();
+ ImageButton moveUp = WidgetFactory.createImageButton(WidgetFactory.ImageButtons.ARROW_UP);
+ moveUp.addListener(new ClickListener() {
+ @Override
+ public void touchUp(InputEvent event, float x, float y, int pointer, int button) {
+ super.touchUp(event, x, y, pointer, button);
+ swap(-1);
+ }
+ });
+ buttons.add(moveUp).row();
+ buttons.add(WidgetFactory.createLineImage()).row();
+ ImageButton moveDown = WidgetFactory.createImageButton(WidgetFactory.ImageButtons.ARROW_DOWN);
+ moveDown.addListener(new ClickListener() {
+ @Override
+ public void touchUp(InputEvent event, float x, float y, int pointer, int button) {
+ super.touchUp(event, x, y, pointer, button);
+ swap(1);
+ }
+ });
+ buttons.add(moveDown).row();
+ add(buttons);
+ row();
spellTable.toFront();
+ TextButton castButton = WidgetFactory.createMagicTextButton("Lanzar");
+ castButton.addListener(new ClickListener() {
+ @Override
+ public void clicked(InputEvent event, float x, float y) {
+ castClick();
+ }
+ });
+ add(castButton).growX().padLeft(-2).colspan(2);
}
public void update(SpellBook spellBook, int base) {
@@ -48,28 +84,31 @@ public void update(SpellBook spellBook, int base) {
}
}
}
+ private void swap(int i) {
+ selected.ifPresent(slot -> {
+ int currentIndex = slots.indexOf(slot);
+ if (currentIndex + i < MAX_SPELLS && currentIndex + i >= 0) {
+ swap(currentIndex, currentIndex + i);
+ }
+ });
+ }
- public void castClick() {
- selected.ifPresent(spell -> onCastClicked(spell));
+ private void swap(int a, int b) {
+ // todo notify change
+ Spell spellB = slots.get(b).getSpell();
+ slots.get(b).setSpell(slots.get(a).getSpell());
+ slots.get(a).setSpell(spellB);
+ slots.get(a).setSelected(false);
+ slots.get(b).setSelected(true);
+ selected = Optional.ofNullable(slots.get(b));
}
+ public void castClick() {
+ selected.ifPresent(this::onCastClicked);
+ }
protected abstract void onCastClicked(SpellSlotUI spell);
protected abstract Spell getSpell(Integer spellId);
-// @Override
-// public void draw(Batch batch, float parentAlpha) {
-//// int player = GameScreen.getPlayer();
-//// Color backup = batch.getColor();
-//// if (player >= 0) {
-//// E e = E(player);
-//// if (e != null && e.hasAttack()) {
-//// batch.setColor(Colors.COMBAT);
-//// }
-//// }
-// super.draw(batch, parentAlpha);
-//// batch.setColor(backup);
-// }
-
}
diff --git a/client/src/game/ui/SpellSlot.java b/client/src/game/ui/SpellSlot.java
deleted file mode 100755
index ece3e863..00000000
--- a/client/src/game/ui/SpellSlot.java
+++ /dev/null
@@ -1,128 +0,0 @@
-package game.ui;
-
-import com.badlogic.gdx.Gdx;
-import com.badlogic.gdx.graphics.Color;
-import com.badlogic.gdx.graphics.Texture;
-import com.badlogic.gdx.graphics.g2d.Batch;
-import com.badlogic.gdx.scenes.scene2d.Actor;
-import com.badlogic.gdx.scenes.scene2d.InputEvent;
-import com.badlogic.gdx.scenes.scene2d.ui.ImageButton;
-import com.badlogic.gdx.scenes.scene2d.ui.Table;
-import com.badlogic.gdx.scenes.scene2d.ui.Tooltip;
-import com.badlogic.gdx.scenes.scene2d.utils.ClickListener;
-import com.badlogic.gdx.scenes.scene2d.utils.Drawable;
-import game.utils.Resources;
-import game.utils.Skins;
-import org.jetbrains.annotations.Contract;
-import org.jetbrains.annotations.NotNull;
-import shared.model.Spell;
-
-public class SpellSlot extends ImageButton {
-
- static final int SIZE = 64;
- private static final float ICON_ALPHA = 0.5f;
- private static final Drawable selection = Skins.COMODORE_SKIN.getDrawable("slot-selected2");
- private final SpellView spellView;
- private final ClickListener clickListener;
- private Spell spell;
- private Tooltip> tooltip;
-
- SpellSlot(SpellView spellView, Spell spell) {
- super(Skins.COMODORE_SKIN, "icon-container");
- this.spellView = spellView;
- clickListener = new ClickListener() {
-
- @Override
- public void touchUp(InputEvent event, float x, float y, int pointer, int button) {
- super.touchUp(event, x, y, pointer, button);
- onClick();
- }
- };
- addListener(clickListener);
- }
-
- public void setSpell(Spell spell) {
- this.spell = spell;
- if (spell == null) {
- return;
- }
- if (tooltip != null) {
- removeListener(tooltip);
- }
- tooltip = getTooltip(spell);
- addListener(tooltip);
- }
-
- @NotNull
- private Tooltip> getTooltip(Spell spell) {
- Actor content = createTooltipContent(spell);
- return new Tooltip<>(content);
- }
-
- @NotNull
- private Actor createTooltipContent(@NotNull Spell spell) {
- String name = spell.getName();
- String desc = spell.getDesc();
- int minhp = spell.getMinHP();
- int maxhp = spell.getMaxHP();
- int requiredMana = spell.getRequiredMana();
- int requiredSkills = spell.getMinSkill();
-
- Table table = WidgetFactory.createWindow();
-
- table.pad(0, 10, 10, 0);
- table.add // LabelNombre
- (WidgetFactory.createTitleLabel(name))
- .left().pad(10, 15, 10, 10).row();
- table.add // LabelSkills
- (WidgetFactory.createDescLabel("Requiere " + requiredSkills + " puntos de Magia."))
- .pad(0, 20, 0, 10).left().row();
- table.add // LabelMana
- (WidgetFactory.createDescLabel("Requiere " + requiredMana + " puntos de Maná."))
- .pad(0, 20, 0, 10).left().row();
- table.add // LabelDaño TODO Llamar daño base desde el character
- (WidgetFactory.createDescLabel("Inflinge entre " + minhp + " (+DañoBase)" + "/" + maxhp + " (+DañoBase)"))
- .pad(0, 20, 0, 10).left().row();
- table.add // LabelDescripcion TODO hacer que el texto se ajuste a un tamaño fijo
- (WidgetFactory.createDescLabel(desc))
- .pad(10, 20, 0, 10).row();
- return table;
- }
-
- @Override
- public void draw(Batch batch, float parentAlpha) {
- super.draw(batch, parentAlpha);
- if (spell == null) {
- return;
- }
- drawSpell(batch);
- spellView.selected.filter(sp -> sp.equals(spell)).ifPresent(sp -> drawSelection(batch));
- }
-
- private void drawSelection(Batch batch) {
- selection.draw(batch, getX(), getY(), SIZE, SIZE);
- }
-
- private void drawSpell(@NotNull Batch batch) {
- Texture graphic = getSpellIcon();
- Color current = new Color(batch.getColor());
- batch.setColor(current.r, current.g, current.b, ICON_ALPHA);
- batch.draw(graphic, getX() + 1, getY() + 1);
- batch.setColor(current);
- }
-
- private void onClick() {
- spellView.selected(spell);
- }
-
- @Override
- public boolean isOver() {
- return clickListener != null && clickListener.isOver();
- }
-
- @NotNull
- @Contract(" -> new")
- private Texture getSpellIcon() {
- return new Texture(Gdx.files.local(Resources.GAME_SPELL_ICONS_PATH + spell.getId() + ".png"));
- }
-}
diff --git a/client/src/game/ui/SpellSlotEC.java b/client/src/game/ui/SpellSlotEC.java
deleted file mode 100644
index b4fe507e..00000000
--- a/client/src/game/ui/SpellSlotEC.java
+++ /dev/null
@@ -1,128 +0,0 @@
-package game.ui;
-
-import com.badlogic.gdx.Gdx;
-import com.badlogic.gdx.graphics.Color;
-import com.badlogic.gdx.graphics.Texture;
-import com.badlogic.gdx.graphics.g2d.Batch;
-import com.badlogic.gdx.scenes.scene2d.Actor;
-import com.badlogic.gdx.scenes.scene2d.InputEvent;
-import com.badlogic.gdx.scenes.scene2d.ui.ImageButton;
-import com.badlogic.gdx.scenes.scene2d.ui.Table;
-import com.badlogic.gdx.scenes.scene2d.ui.Tooltip;
-import com.badlogic.gdx.scenes.scene2d.utils.ClickListener;
-import com.badlogic.gdx.scenes.scene2d.utils.Drawable;
-import game.utils.Resources;
-import game.utils.Skins;
-import org.jetbrains.annotations.NotNull;
-import shared.model.Spell;
-
-public class SpellSlotEC extends ImageButton {
-
- static final int SIZE = 64;
- private static final float ICON_ALPHA = 0.5f;
- private static Drawable selection = Skins.COMODORE_SKIN.getDrawable("slot-selected2");
- private final SpellViewExpanded spellViewExpanded;
- private final ClickListener clickListener;
- private Spell spell;
- private Texture icon;
- private Tooltip> tooltip;
-
- SpellSlotEC(SpellViewExpanded spellViewExpanded, Spell spell) {
- super(Skins.COMODORE_SKIN, "icon-container");
- this.spellViewExpanded = spellViewExpanded;
- clickListener = new ClickListener() {
-
- @Override
- public void touchUp(InputEvent event, float x, float y, int pointer, int button) {
- super.touchUp(event, x, y, pointer, button);
- onClick();
- }
- };
- addListener(clickListener);
- }
-
- public void setSpell(Spell spell) {
- this.spell = spell;
- if (spell == null) {
- return;
- }
- if (tooltip != null) {
- removeListener(tooltip);
- }
- tooltip = getTooltip(spell);
- addListener(tooltip);
- }
-
- @NotNull
- private Tooltip> getTooltip(Spell spell) {
- Actor content = createTooltipContent(spell);
- return new Tooltip<>(content);
- }
-
- @NotNull
- private Actor createTooltipContent(@NotNull Spell spell) {
- String name = spell.getName();
- String desc = spell.getDesc();
- int minhp = spell.getMinHP();
- int maxhp = spell.getMaxHP();
- int requiredMana = spell.getRequiredMana();
- int requiredSkills = spell.getMinSkill();
-
- Table table = WidgetFactory.createWindow();
-
- table.pad(0, 10, 10, 0);
- table.add // LabelNombre
- (WidgetFactory.createTitleLabel(name))
- .left().pad(10, 15, 10, 10).row();
- table.add // LabelSkills
- (WidgetFactory.createDescLabel("Requiere " + requiredSkills + " puntos de Magia."))
- .pad(0, 20, 0, 10).left().row();
- table.add // LabelMana
- (WidgetFactory.createDescLabel("Requiere " + requiredMana + " puntos de Maná."))
- .pad(0, 20, 0, 10).left().row();
- table.add // LabelDaño TODO Llamar daño base desde el character
- (WidgetFactory.createDescLabel("Inflinge entre " + minhp + " (+DañoBase)" + "/" + maxhp + " (+DañoBase)"))
- .pad(0, 20, 0, 10).left().row();
- table.add // LabelDescripcion TODO hacer que el texto se ajuste a un tamaño fijo
- (WidgetFactory.createDescLabel(desc))
- .pad(10, 20, 0, 10).row();
- return table;
- }
-
- @Override
- public void draw(Batch batch, float parentAlpha) {
- super.draw(batch, parentAlpha);
- if (spell == null) {
- return;
- }
- drawSpell(batch);
- spellViewExpanded.selected.filter(sp -> sp.equals(spell)).ifPresent(sp -> drawSelection(batch));
- }
-
- private void drawSelection(Batch batch) {
- selection.draw(batch, getX(), getY(), SIZE, SIZE);
- }
-
- private void drawSpell(@NotNull Batch batch) {
- Texture graphic = getSpellIcon();
- Color current = new Color(batch.getColor());
- batch.setColor(current.r, current.g, current.b, ICON_ALPHA);
- batch.draw(graphic, getX() + 1, getY() + 1);
- batch.setColor(current);
- }
-
- private void onClick() {
- spellViewExpanded.selected(spell);
- }
-
- public boolean isOver() {
- return clickListener != null && clickListener.isOver();
- }
-
- private Texture getSpellIcon() {
- if (icon == null) {
- icon = new Texture(Gdx.files.local(Resources.GAME_SPELL_ICONS_PATH + spell.getId() + ".png"));
- }
- return icon;
- }
-}
diff --git a/client/src/game/ui/SpellSlotUI.java b/client/src/game/ui/SpellSlotUI.java
index 74a5c35f..7e3b10ef 100755
--- a/client/src/game/ui/SpellSlotUI.java
+++ b/client/src/game/ui/SpellSlotUI.java
@@ -1,33 +1,56 @@
package game.ui;
import com.badlogic.gdx.Gdx;
+import com.badlogic.gdx.Input;
import com.badlogic.gdx.graphics.Color;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.graphics.g2d.Batch;
+import com.badlogic.gdx.scenes.scene2d.Actor;
import com.badlogic.gdx.scenes.scene2d.InputEvent;
-import com.badlogic.gdx.scenes.scene2d.ui.ImageButton;
+import com.badlogic.gdx.scenes.scene2d.ui.Image;
+import com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton;
+import com.badlogic.gdx.scenes.scene2d.ui.Label;
+import com.badlogic.gdx.scenes.scene2d.ui.Table;
import com.badlogic.gdx.scenes.scene2d.utils.ClickListener;
import com.badlogic.gdx.scenes.scene2d.utils.Drawable;
+import com.badlogic.gdx.scenes.scene2d.utils.TextureRegionDrawable;
+import com.badlogic.gdx.utils.Align;
import game.utils.Resources;
import game.utils.Skins;
import shared.model.Spell;
-public abstract class SpellSlotUI extends ImageButton {
+public abstract class SpellSlotUI extends Table {
- static final int SIZE = 64;
private static final float ICON_ALPHA = 0.5f;
- private static final Drawable selection = Skins.COMODORE_SKIN.getDrawable("slot-selected2");
+ private static final Drawable selection = WidgetFactory.createDrawable(WidgetFactory.Drawables.INVENTORY_SLOT_SELECTION.name);
private Spell spell;
private Texture graphic;
private boolean selected;
+ private Image image;
+ private Label label;
SpellSlotUI() {
- super(Skins.COMODORE_SKIN, "icon-container");
+ super(Skins.CURRENT.get());
+ image = new Image();
+ label = WidgetFactory.createSpellLabel("(None)");
+ label.setAlignment(Align.left);
+ add(image).right().width(16).height(16);
+ add(label).padLeft(5).grow();
addListener(new ClickListener() {
+
+ @Override
+ public void enter(InputEvent event, float x, float y, int pointer, Actor fromActor) {
+ super.enter(event, x, y, pointer, fromActor);
+ if (Gdx.input.isButtonPressed(Input.Buttons.LEFT)) {
+ onSpellClick(SpellSlotUI.this);
+ }
+ }
+
@Override
- public void touchUp(InputEvent event, float x, float y, int pointer, int button) {
- super.touchUp(event, x, y, pointer, button);
+ public boolean touchDown(InputEvent event, float x, float y, int pointer, int button) {
+ boolean result = super.touchDown(event, x, y, pointer, button);
onSpellClick(SpellSlotUI.this);
+ return result;
}
});
}
@@ -42,25 +65,12 @@ public void setSelected(boolean selected) {
@Override
public void draw(Batch batch, float parentAlpha) {
- super.draw(batch, parentAlpha);
- if (spell == null) {
- return;
- }
- drawSpell(batch);
if (selected) drawSelection(batch);
+ super.draw(batch, parentAlpha);
}
private void drawSelection(Batch batch) {
- selection.draw(batch, getX(), getY(), SIZE, SIZE);
- }
-
- private void drawSpell(Batch batch) {
- if (graphic != null) {
- Color current = new Color(batch.getColor());
- batch.setColor(current.r, current.g, current.b, ICON_ALPHA);
- batch.draw(graphic, getX() + 1, getY() + 1);
- batch.setColor(current);
- }
+ selection.draw(batch, getX(), getY(), getWidth(), getHeight());
}
public Spell getSpell() {
@@ -68,12 +78,18 @@ public Spell getSpell() {
}
public void setSpell(Spell spell) {
- if (spell.equals(this.spell)) return;
+ if (spell != null && spell.equals(this.spell)) return;
this.spell = spell;
if (graphic != null) {
graphic.dispose();
}
- this.graphic = spell != null ? new Texture(Gdx.files.local(Resources.GAME_SPELL_ICONS_PATH + spell.getId() + ".png")) : null;
+ if (this.spell != null) {
+ this.graphic = new Texture(Gdx.files.local(Resources.GAME_SPELL_ICONS_PATH + spell.getId() + ".png"));
+ image.setDrawable(new TextureRegionDrawable(graphic));
+ } else {
+ image.setDrawable(null);
+ }
+ label.setText(this.spell == null ? "(None)" : this.spell.getName());
}
abstract public void onSpellClick(SpellSlotUI spellSlotUI);
diff --git a/client/src/game/ui/SpellView.java b/client/src/game/ui/SpellView.java
deleted file mode 100755
index 8922b821..00000000
--- a/client/src/game/ui/SpellView.java
+++ /dev/null
@@ -1,126 +0,0 @@
-package game.ui;
-
-import com.badlogic.gdx.graphics.g2d.Batch;
-import com.badlogic.gdx.scenes.scene2d.InputEvent;
-import com.badlogic.gdx.scenes.scene2d.ui.ImageButton;
-import com.badlogic.gdx.scenes.scene2d.ui.Table;
-import com.badlogic.gdx.scenes.scene2d.ui.Window;
-import com.badlogic.gdx.scenes.scene2d.utils.ClickListener;
-import game.utils.Skins;
-import shared.model.Spell;
-
-import java.util.ArrayList;
-import java.util.List;
-import java.util.Optional;
-import java.util.stream.Stream;
-
-public class SpellView extends Table {
-
- private static final int MAX_SPELLS = 6;
- public Optional toCast = Optional.empty();
- public Optional selected = Optional.empty();
- private ImageButton castButton;
- private Window spellTable;
- private List slots = new ArrayList<>(MAX_SPELLS);
- private int base;
-
- public SpellView() {
- super(Skins.COMODORE_SKIN);
- spellTable = WidgetFactory.createInventoryWindow();
- for (int i = 0; i < MAX_SPELLS; i++) {
- SpellSlot slot = new SpellSlot(this, null);
- slots.add(slot);
- spellTable.add(slot).width(SpellSlot.SIZE).height(SpellSlot.SIZE).row();
- if (i < MAX_SPELLS - 1) {
- spellTable.add(WidgetFactory.createSeparatorImage()).row();
- }
- }
- castButton = createCastButton();
- add(castButton).padRight(-25f);
- add(spellTable).right();
- spellTable.toFront();
- }
-
- /**
- * Cambia el cursor al seleccionar un hechizo.
- */
- private void changeCursor() {
-// WorldUtils.getWorld().ifPresent(world -> {
-// world.getSystem(UserInterfaceSystem.class).getConsole().addInfo("Haz click para lanzar el hechizo");
-// world.getSystem(UserInterfaceSystem.class).getInventory().cleanShoot();
-// });
-// Cursors.setCursor("select");
- }
-
- /**
- * Actualiza la lista de hechizos en la UI.
- */
- public void updateSpells() {
-// WorldUtils.getWorld().ifPresent(world -> {
-// SpellsSystem spellsSystem = world.getSystem(SpellsSystem.class);
-// Spell[] spells = spellsSystem.getSpells();
-// Spell[] spellsToShow = new Spell[MAX_SPELLS];
-// System.arraycopy(spells, base, spellsToShow, 0, Math.min(MAX_SPELLS, spells.length));
-// for (int i = 0; i < MAX_SPELLS; i++) {
-// slots.get(i).setSpell(spellsToShow[i]);
-// }
-// });
- }
-
- public void addSpelltoSpellview(Spell spell, int slotPosition) {
- slots.get(slotPosition).setSpell(spell);
- }
-
- /**
- * Interfaz de Usuario: Crea el boton para lanzar el hechizo.
- *
- * @return staff
- */
-
- private ImageButton createCastButton() {
- ImageButton staff = WidgetFactory.createImageStaffButton();
- staff.addListener(new ClickListener() {
- @Override
- public void clicked(InputEvent event, float x, float y) {
- selected.ifPresent(spell -> preparedToCast(spell));
- super.clicked(event, x, y);
- }
- });
- return staff;
- }
-
- void selected(Spell spell) {
- selected = Optional.ofNullable(spell);
- }
-
- void preparedToCast(Spell spell) {
- toCast = Optional.ofNullable(spell);
- changeCursor();
- }
-
- public boolean isOver() {
- return Stream.of(spellTable.getChildren().items)
- .filter(SpellSlot.class::isInstance)
- .map(SpellSlot.class::cast)
- .anyMatch(SpellSlot::isOver) || castButton.isOver();
- }
-
- @Override
- public void draw(Batch batch, float parentAlpha) {
-// int player = GameScreen.getPlayer();
-// Color backup = batch.getColor();
-// if (player >= 0) {
-// E e = E(player);
-// if (e != null && e.hasAttack()) {
-// batch.setColor(Colors.COMBAT);
-// }
-// }
-// super.draw(batch, parentAlpha);
-// batch.setColor(backup);
- }
-
- public void cleanCast() {
- toCast = Optional.empty();
- castButton.setChecked(false);
- }
-}
diff --git a/client/src/game/ui/SpellViewExpanded.java b/client/src/game/ui/SpellViewExpanded.java
deleted file mode 100644
index dbaf81fe..00000000
--- a/client/src/game/ui/SpellViewExpanded.java
+++ /dev/null
@@ -1,118 +0,0 @@
-package game.ui;
-
-import com.badlogic.gdx.graphics.g2d.Batch;
-import com.badlogic.gdx.scenes.scene2d.ui.Table;
-import com.badlogic.gdx.scenes.scene2d.ui.Window;
-import game.utils.Skins;
-import shared.model.Spell;
-
-import java.util.ArrayList;
-import java.util.List;
-import java.util.Optional;
-import java.util.concurrent.atomic.AtomicBoolean;
-import java.util.stream.Stream;
-
-public class SpellViewExpanded extends Table {
-
- private static final int MAX_SPELLS = 25;
- private final Window spellTable;
- private final List slotsEC = new ArrayList<>(MAX_SPELLS);
- public Optional selected = Optional.empty();
- private int base;
-
- public SpellViewExpanded() {
- super(Skins.COMODORE_SKIN);
- spellTable = WidgetFactory.createInventoryWindow();
- int columnsCounter = 1;
- for (int i = 0; i < MAX_SPELLS; i++) {
- SpellSlotEC slot = new SpellSlotEC(this, null);
- slotsEC.add(slot);
-
- if (columnsCounter < 5) {
- spellTable.add(slot).width(SpellSlotEC.SIZE).height(SpellSlotEC.SIZE);
- } else {
- spellTable.add(slot).width(SpellSlotEC.SIZE).height(SpellSlotEC.SIZE).row();
- columnsCounter = 0;
- }
- columnsCounter++;
- }
- add(spellTable);
- spellTable.toFront();
- }
-
-
- public void updateSpells() {
-// WorldUtils.getWorld().ifPresent(world -> {
-// SpellsSystem spellsSystem = world.getSystem(SpellsSystem.class);
-// Spell[] spells = spellsSystem.getSpells();
-// Spell[] spellsToShow = new Spell[MAX_SPELLS];
-// System.arraycopy(spells, 0, spellsToShow, 0, Math.min(MAX_SPELLS, spells.length));
-// for (int i = 0; i < MAX_SPELLS; i++) {
-// slotsEC.get(i).setSpell(spellsToShow[i]);
-// }
-// });
- }
-
- public void newSpellAdd(int spellNum) {
- AtomicBoolean present = new AtomicBoolean(false);
-// WorldUtils.getWorld().ifPresent(world -> {
-// SpellsSystem spellsSystem = world.getSystem(SpellsSystem.class);
-// Spell[] spells = spellsSystem.getSpells();
-// Spell[] spellsToShow = new Spell[MAX_SPELLS];
-// Optional newSpell = spellsSystem.getSpell(spellNum);
-// newSpell.ifPresent(spell1 -> {
-// if (spells.length <= MAX_SPELLS) {
-// for (Spell spell : spells) {
-// if (spell.equals(spell1)) {
-// present.set(true);
-// }
-// }
-// if (!present.get()) {
-// System.arraycopy(spells, 0, spellsToShow, 0, spells.length);
-// spellsToShow[spells.length] = spell1;
-// for (int i = 0; i < MAX_SPELLS; i++) {
-// slotsEC.get(i).setSpell(spellsToShow[i]);
-// }
-// world.getSystem(UserInterfaceSystem.class).getConsole().addInfo(assetManager.getMessages(Messages.SPELLS_ADD, spell1.getName(), Integer.toString(spells.length + 1)));
-// } else {
-// world.getSystem(UserInterfaceSystem.class).getConsole().addInfo(assetManager.getMessages(Messages.SPELLS_ALREDY_KNOWN, spell1.getName()));
-// }
-// } else {
-// world.getSystem(UserInterfaceSystem.class).getConsole().addInfo(assetManager.getMessages(Messages.SPELLS_FULL));
-// }
-// });
-// });
-// E(GameScreen.getPlayer()).getSpellBook().addSpell(spellNum);
-// updateSpells();
- }
-
- void selected(Spell spell) {
- selected = Optional.ofNullable(spell);
- }
-
-
- @Override
- public void draw(Batch batch, float parentAlpha) {
-// int player = GameScreen.getPlayer();
-// Color backup = batch.getColor();
-// if (player >= 0) {
-// E e = E(player);
-// if (e != null && e.hasAttack()) {
-// batch.setColor(Colors.COMBAT);
-// }
-// }
-// super.draw(batch, parentAlpha);
-// batch.setColor(backup);
- }
-
- public boolean isOver() {
- return Stream.of(spellTable.getChildren().items)
- .filter(SpellSlotEC.class::isInstance)
- .map(SpellSlotEC.class::cast)
- .anyMatch(SpellSlotEC::isOver);
- }
-
- public Spell getSelected() {
- return selected.orElse(null);
- }
-}
diff --git a/client/src/game/ui/SwitchButtons.java b/client/src/game/ui/SwitchButtons.java
index c04d3c35..f8c652e2 100644
--- a/client/src/game/ui/SwitchButtons.java
+++ b/client/src/game/ui/SwitchButtons.java
@@ -2,7 +2,9 @@
import com.badlogic.gdx.scenes.scene2d.InputEvent;
import com.badlogic.gdx.scenes.scene2d.ui.ImageButton;
+import com.badlogic.gdx.scenes.scene2d.ui.Label;
import com.badlogic.gdx.scenes.scene2d.ui.Table;
+import com.badlogic.gdx.scenes.scene2d.ui.TextButton;
import com.badlogic.gdx.scenes.scene2d.utils.ClickListener;
import java.util.ArrayList;
@@ -10,8 +12,8 @@
public class SwitchButtons extends Table {
- private final ImageButton inventory;
- private final ImageButton spells;
+ private final TextButton inventory;
+ private final TextButton spells;
private final List listeners = new ArrayList<>();
private State state = State.INVENTORY;
@@ -30,8 +32,8 @@ public void clicked(InputEvent event, float x, float y) {
toggle(State.SPELLS);
}
});
- add(inventory);
- add(spells).padLeft(1);
+ add(inventory).grow().left();
+ add(spells).grow().right();
toggle(State.INVENTORY);
}
@@ -40,8 +42,9 @@ public void addListener(ActionSwitchListener listener) {
}
private void toggle(State state) {
+ boolean notify = true;
if (this.state == state) {
- return;
+ notify = false;
}
this.state = state;
switch (state) {
@@ -49,12 +52,13 @@ private void toggle(State state) {
inventory.setChecked(false);
spells.setChecked(true);
break;
+
case INVENTORY:
spells.setChecked(false);
inventory.setChecked(true);
break;
}
- listeners.forEach(listener -> listener.notify(this.state));
+ if (notify) listeners.forEach(listener -> listener.notify(this.state));
}
public void toggle() {
diff --git a/client/src/game/ui/WidgetFactory.java b/client/src/game/ui/WidgetFactory.java
index 335dbc5a..042d8f69 100644
--- a/client/src/game/ui/WidgetFactory.java
+++ b/client/src/game/ui/WidgetFactory.java
@@ -2,7 +2,10 @@
import com.badlogic.gdx.graphics.Color;
import com.badlogic.gdx.graphics.Texture;
+import com.badlogic.gdx.graphics.g2d.TextureRegion;
+import com.badlogic.gdx.scenes.scene2d.Actor;
import com.badlogic.gdx.scenes.scene2d.ui.*;
+import com.badlogic.gdx.scenes.scene2d.utils.Drawable;
import component.entity.world.CombatMessage;
import game.utils.Colors;
import game.utils.Skins;
@@ -12,12 +15,20 @@
public class WidgetFactory {
- private static Supplier skin = () -> Skins.COMODORE_SKIN;
+ private static Supplier skin = () -> Skins.CURRENT.get();
public static Label createLabel(String text) {
return new Label(text, skin.get());
}
+ public static Label createSpellLabel(String text) {
+ return new Label(text, skin.get(), Labels.SPELLS.name);
+ }
+
+ public static Label createUserLabel(String text) {
+ return new Label(text, skin.get(), Labels.USER.name);
+ }
+
public static Label createDescLabel(String desc) {
return new Label(desc, skin.get(), Labels.DESC.name);
}
@@ -34,11 +45,19 @@ public static Label createTitleLabel(String name) {
// TODO refactor, handle colors and styles in skin.
public static Label createCombatLabel(@NotNull CombatMessage message) {
- Label.LabelStyle labelStyle = new Label.LabelStyle(Skins.COMODORE_SKIN.getFont("flipped-with-border"), Colors.get(message));
+ Label.LabelStyle labelStyle = new Label.LabelStyle(Skins.CURRENT.get().getFont(Fonts.IN_GAME.name), Colors.get(message));
labelStyle.font.setUseIntegerPositions(false);
return new Label(message.text, labelStyle);
}
+ public static Label createBarLabel(String text) {
+ return new Label(text, skin.get(), Labels.BAR.name);
+ }
+
+ public static Label createStatLabel(String text) {
+ return new Label(text, skin.get(), Labels.STAT.name);
+ }
+
public static Label createFlippedLabel(String text) {
return new Label(text, skin.get(), Labels.FLIPPED.name);
}
@@ -55,6 +74,18 @@ public static Image createSeparatorImage() {
return new Image(skin.get().getDrawable(Images.SEPARATOR.name));
}
+ public static Image createBarSeparatorImage() {
+ return new Image(skin.get().getDrawable(Images.BAR_SEPARATOR.name));
+ }
+
+ public static Image createBarOverlayImage() {
+ return new Image(skin.get().getDrawable(Images.BAR_OVERLAY.name));
+ }
+
+ public static Image createLineImage() {
+ return new Image(skin.get().getDrawable(Images.LINE.name));
+ }
+
public static Button createButton() {
return new Button(skin.get());
}
@@ -63,23 +94,28 @@ public static TextButton createTextButton(String text) {
return new TextButton(text, skin.get());
}
- public static ImageButton createImageButton() {
- return new ImageButton(skin.get());
+ public static TextButton createMagicTextButton(String text) {
+ return new TextButton(text, skin.get(), TextButtons.MAGIC.name);
}
- public static ImageButton createImageInventoryButton() {
- return new ImageButton(skin.get(), ImageButtons.INVENTORY.name);
+ public static ImageButton createImageButton(ImageButtons button) {
+ return new ImageButton(skin.get(), button.name);
}
- public static ImageButton createImageSpellsButton() {
- return new ImageButton(skin.get(), ImageButtons.SPELLS.name);
+ public static ImageTextButton createImageInventoryExpandButton() {
+ return new ImageTextButton("", Skins.CURRENT.get(), ImageButtons.INVENTORY.name);
}
- public static ImageButton createImageStaffButton() {
- return new ImageButton(Skins.COMODORE_SKIN, ImageButtons.STAFF.name);
+ public static TextButton createImageInventoryButton() {
+ return new TextButton("Inventario", skin.get(), Windows.MAIN.name);
}
- // TODO create bow image button
+ public static TextButton createImageSpellsButton() {
+ return new TextButton("Hechizos", skin.get(), Windows.MAIN.name);
+ }
+
+
+
public static ImageButton createImageButton(ImageButton.ImageButtonStyle style) {
return new ImageButton(style);
}
@@ -88,8 +124,8 @@ public static CheckBox createCheckBox(String text) {
return new CheckBox(text, skin.get());
}
- public static ButtonGroup createButtonGroup() {
- return new ButtonGroup();
+ public static ButtonGroup createButtonGroup() {
+ return new ButtonGroup<>();
}
public static TextField createTextField(String text) {
@@ -100,21 +136,21 @@ public static TextArea createTextArea(String text) {
return new TextArea(text, skin.get());
}
- public static List createList() {
- return new List(skin.get());
+ public static List createList() {
+ return new List<>(skin.get());
}
- public static SelectBox createSelectBox() {
- return new SelectBox(skin.get());
+ public static SelectBox createSelectBox() {
+ return new SelectBox<>(skin.get());
}
-
- public static ProgressBar createProgressBar() {
- return new ProgressBar(0, 0, 1, false, skin.get());
+ public static ProgressBar createProgressBar(ProgressBars bar) {
+ return new ProgressBar(0, 0, 1, false, skin.get(), bar.name);
}
// TODO create loading progessbar
+
public static ProgressBar createLoadingProgressBar() {
- return new ProgressBar(1, 100, 1, false, skin.get());
+ return new ProgressBar(1, 100, 1, false, skin.get(), ProgressBars.LOADING.name);
}
public static Slider createSlider() {
@@ -122,34 +158,109 @@ public static Slider createSlider() {
}
public static Window createWindow() {
- return new Window("", skin.get());
+ Window window = new Window("", skin.get());
+ window.setMovable(false);
+ return window;
+ }
+
+ /*
+ * actor = lo que necesita que tenga las barras de desplazamiento
+ * horizontalScroll = activa o desactiva el desplazamiento horizontal
+ * vertivalScroll = activa o desactiva el desplazamiento vertical
+ * fade = oculta las barras de desplazamiento si no se esta desplazando
+ * flickScroll = permite el arrastrado con el mouse
+ * */
+ public static ScrollPane createScrollPane(Actor actor,boolean horizontalScroll, boolean verticalScroll, boolean fade, boolean flickScroll){
+ ScrollPane scrollPane= new ScrollPane(actor);
+ scrollPane.getStyle().vScrollKnob = skin.get().getDrawable( "Slider_Horizontal_Handle" );
+ scrollPane.getStyle().hScrollKnob = skin.get().getDrawable( "Slider_Horizontal_Handle" );
+ scrollPane.setScrollBarPositions(horizontalScroll, verticalScroll);
+ scrollPane.setScrollbarsOnTop(true);
+ scrollPane.setScrollbarsVisible(true);
+ scrollPane.setFadeScrollBars(fade);
+ scrollPane.setFlickScroll(flickScroll);
+ scrollPane.setScrollingDisabled( !horizontalScroll, !verticalScroll );
+ return scrollPane;
}
- public static Window createInventoryWindow() {
- return new Window("", skin.get(), Windows.INVENTORY.name);
+
+ public static Table createInventoryWindow() {
+ return new Table();
}
public static Dialog createDialog(String title) {
return new Dialog(title, skin.get());
}
+ public static Drawable createDrawable(String drawable) {
+ return skin.get().getDrawable(drawable);
+ }
+
+ public static TextureRegion createRegionTexture(String text) {
+ return skin.get().getRegion(text);
+ }
+
+ public static Table createMainWindow() {
+ Table table = new Table(skin.get());
+ table.setBackground(createDrawable("main-window"));
+ return table;
+ }
+
+ public static Table createMainTable() {
+ Table table = new Table(skin.get());
+ table.setBackground(createDrawable("main-background"));
+ return table;
+ }
+
+ public enum Drawables {
+ BAR_FILL("fill"),
+ BAR_FRAME("empty"),
+ CIRCLE_GLOW("UnitFrame_Main_Avatar_Overlay"),
+ SLOT("button-background"),
+ INVENTORY_SLOT("slot"),
+ INVENTORY_SLOT_SELECTION("slot_selected"),
+ INVENTORY_SLOT_OVERLAY("slot_overlay"),
+ LINE("line"),
+ USER_FRAME("user-stats-frame");
+
+ public final String name;
+
+ Drawables(String name) {
+ this.name = name;
+ }
+ }
+
enum Fonts {
- BIG("big");
+ BIG("big"),
+ IN_GAME("flipped");
- private String name;
+ private final String name;
Fonts(String name) {
this.name = name;
}
}
+ enum TextButtons {
+ MAGIC("magic");
+ private final String name;
+
+ TextButtons(String name) {
+ this.name = name;
+ }
+ }
+
enum Labels {
DESC("desc-no-background"),
TITLE("title-no-background"),
+ USER("user"),
FLIPPED("flipped"),
- SPEECH_BUBBLE("speech-bubble");
+ BAR("bar"),
+ SPELLS("spells"),
+ SPEECH_BUBBLE("speech-bubble"),
+ STAT("ui-stat");
- private String name;
+ private final String name;
Labels(String name) {
this.name = name;
@@ -157,34 +268,57 @@ enum Labels {
}
enum Images {
+ LINE("line"),
+ BAR_SEPARATOR("bar-separator"),
+ BAR_OVERLAY("bar-overlay"),
SEPARATOR("separator");
- private String name;
+ private final String name;
Images(String name) {
this.name = name;
}
}
- enum ImageButtons {
+ public enum ImageButtons {
+ BIG_DISC("big-disc"),
+ ITEM_CONTAINER("inventory"),
INVENTORY("inventory"),
SPELLS("spells"),
- STAFF("staff"),
- BOW("bow");
-
- private String name;
+ BACK("back"),
+ CLOSE("close"),
+ DELETE("delete"),
+ SUBMIT("submit"),
+ ARROW_UP("arrow-up"),
+ ARROW_DOWN("arrow-down"),
+ UI_HP("ui-hp"),
+ UI_MANA("ui-mana"),
+ UI_ENERGY("ui-energy"),
+ UI_EXP("ui-exp"),
+ UI_ARMOR("ui-armor"),
+ UI_HELMET("ui-helmet"),
+ UI_SHIELD("ui-shield"),
+ UI_WEAPON("ui-weapon");
+
+ public final String name;
ImageButtons(String name) {
this.name = name;
}
}
- enum ProgressBars {
+ public enum ProgressBars {
LOADING("loading"),
HP("hp"),
- MANA("mana");
+ MANA("mana"),
+ INGAME_HP("ingame-hp"),
+ INGAME_MANA("ingame-mana"),
+ UI_HP("ui-hp"),
+ UI_MANA("ui-mana"),
+ UI_ENERGY("ui-energy"),
+ UI_EXP("ui-exp");
- private String name;
+ private final String name;
ProgressBars(String name) {
@@ -193,10 +327,11 @@ enum ProgressBars {
}
enum Windows {
+ MAIN("main"),
INVENTORY("inventory"),
SPELLS("spells");
- private String name;
+ private final String name;
Windows(String name) {
this.name = name;
diff --git a/client/src/game/ui/user/Bar.java b/client/src/game/ui/user/Bar.java
index 3b0d6cf2..bf11ec2e 100644
--- a/client/src/game/ui/user/Bar.java
+++ b/client/src/game/ui/user/Bar.java
@@ -16,9 +16,9 @@ public class Bar extends Actor {
//private static final int ORIGINAL_WIDTH = 212;
private static final int ORIGINAL_HEIGHT = 32;
private static final int ORIGINAL_BORDER = 9;
- private static final Drawable background = Skins.COMODORE_SKIN.getDrawable("bar-frame");
+ private static final Drawable background = WidgetFactory.createDrawable(WidgetFactory.Drawables.BAR_FRAME.name);
private final Label points;
- private final Drawable bar = Skins.COMODORE_SKIN.getDrawable("bar");
+ private final Drawable bar = WidgetFactory.createDrawable(WidgetFactory.Drawables.BAR_FRAME.name);
private final Kind kind;
private E e;
diff --git a/client/src/game/ui/user/UserImage.java b/client/src/game/ui/user/UserImage.java
index d0079db9..27ec450e 100644
--- a/client/src/game/ui/user/UserImage.java
+++ b/client/src/game/ui/user/UserImage.java
@@ -21,12 +21,12 @@ public class UserImage extends ImageButton {
private E e;
UserImage(E e) {
- super(Skins.COMODORE_SKIN, "big-disc");
+ super(Skins.CURRENT.get(), WidgetFactory.ImageButtons.BIG_DISC.name);
this.e = e;
lvlLabel = WidgetFactory.createTitleLabel("");
lvlLabel.setAlignment(Align.center);
- radialSprite = new RadialSprite(Skins.COMODORE_SKIN.getRegion("disc-glow"));
- radialProgress = new RadialProgress(Skins.COMODORE_SKIN.getRegion("disc-glow"));
+ radialSprite = new RadialSprite(WidgetFactory.createRegionTexture(WidgetFactory.Drawables.CIRCLE_GLOW.name));
+ radialProgress = new RadialProgress(WidgetFactory.createRegionTexture(WidgetFactory.Drawables.CIRCLE_GLOW.name));
}
@Override
diff --git a/client/src/game/ui/user/UserInformation.java b/client/src/game/ui/user/UserInformation.java
index 9a87586d..9a9d0050 100644
--- a/client/src/game/ui/user/UserInformation.java
+++ b/client/src/game/ui/user/UserInformation.java
@@ -1,17 +1,100 @@
package game.ui.user;
import com.artemis.E;
+import com.badlogic.gdx.math.Interpolation;
+import com.badlogic.gdx.scenes.scene2d.ui.Label;
+import com.badlogic.gdx.scenes.scene2d.ui.ProgressBar;
+import com.badlogic.gdx.scenes.scene2d.ui.Stack;
import com.badlogic.gdx.scenes.scene2d.ui.Table;
+import com.badlogic.gdx.utils.Align;
+import game.ui.WidgetFactory;
public class UserInformation extends Table {
+ private ProgressBar hp;
+ private Label hpLabel;
+ private ProgressBar mana;
+ private Label manaLabel;
+ private E e;
+
// TODO refactor. Don't use E
public UserInformation(E e) {
- UserImage head = new UserImage(e);
- UserStatus status = new UserStatus(e);
+ Stack stack = new Stack();
+ this.e = e;
+ // stack add bars
+ Table bars = new Table();
+
+ bars.add(WidgetFactory.createLabel("")).growY().row();
+ bars.add(createHpBar()).height(20).width(320).row();
+ bars.add(createManaBar()).height(20).width(320).row();
+ stack.add(bars);
+ // stack add frame with name
+ Table frame = new Table();
+ frame.setBackground(WidgetFactory.createDrawable(WidgetFactory.Drawables.USER_FRAME.name));
+ frame.add(WidgetFactory.createUserLabel(e.nameText().toUpperCase())).top().padTop(-25).height(18);
+ stack.add(frame);
+ add(stack);
+ }
+
+ private Stack createManaBar() {
+ Stack stack = new Stack();
+ mana = WidgetFactory.createProgressBar(WidgetFactory.ProgressBars.MANA);
+ mana.setAnimateDuration(0.200f);
+ mana.setAnimateInterpolation(Interpolation.fastSlow);
+ stack.add(mana);
+ manaLabel = WidgetFactory.createBarLabel("");
+ manaLabel.setWidth(320);
+ manaLabel.setAlignment(Align.center);
+ stack.add(manaLabel);
+ stack.add(WidgetFactory.createBarOverlayImage());
+ return stack;
+ }
+
+ private Stack createHpBar() {
+ Stack stack = new Stack();
+ hp = WidgetFactory.createProgressBar(WidgetFactory.ProgressBars.HP);
+ hp.setAnimateDuration(0.200f);
+ hp.setAnimateInterpolation(Interpolation.fastSlow);
+ stack.add(hp);
+ hpLabel = WidgetFactory.createBarLabel("");
+ hpLabel.setWidth(320);
+ hpLabel.setAlignment(Align.center);
+ stack.add(hpLabel);
+ stack.add(WidgetFactory.createBarOverlayImage());
+ return stack;
+ }
+
+ @Override
+ public void act(float delta) {
+ super.act(delta);
+ if (e == null) return;
+ if (e.hasHealth()) {
+ if (hp.getMaxValue() != e.healthMax()) {
+ hp.setRange(0, e.healthMax());
+ }
+ int hp = e.healthMin();
+ if (hp != this.hp.getValue()) {
+ setHp(hp);
+ }
+ }
+ if (e.hasMana()) {
+ if (mana.getMaxValue() != e.manaMax()) {
+ mana.setRange(0, e.manaMax());
+ }
+ int mana = e.manaMin();
+ if (mana != this.mana.getValue()) {
+ setMana(mana);
+ }
+ }
+ }
+
+ private void setHp(int value) {
+ hp.setValue(value);
+ hpLabel.setText(e.healthMin() + "/" + e.healthMax());
+ }
- add(head).left().prefHeight(128).prefWidth(128);
- add(status).pad(-10).right();
- head.toFront();
+ private void setMana(int value) {
+ mana.setValue(value);
+ manaLabel.setText(e.manaMin() + "/" +e.manaMax());
}
}
diff --git a/client/src/game/utils/Colors.java b/client/src/game/utils/Colors.java
index 0139c5d3..7cc4def1 100644
--- a/client/src/game/utils/Colors.java
+++ b/client/src/game/utils/Colors.java
@@ -18,6 +18,8 @@ public class Colors {
public static final Color TRANSPARENT_RED = rgba(231, 76, 60, 0.1f);
public static final Color RED = rgb(231, 76, 60);
public static final Color YELLOW = rgb(244, 244, 143);
+ public static final Color DARK = rgba(30, 30, 30, 0.7f);
+ public static final Color OUTLINE = rgba(246, 234, 199, 0.2f);
public static Color rgba(int r, int g, int b, float a) {
return new Color((float) r / 255, (float) g / 255, (float) b / 255, a);
diff --git a/client/src/game/utils/Pixmaps.java b/client/src/game/utils/Pixmaps.java
index 70da5551..46f45e4e 100644
--- a/client/src/game/utils/Pixmaps.java
+++ b/client/src/game/utils/Pixmaps.java
@@ -19,16 +19,16 @@ public class Pixmaps {
private static Pixmap drawPixmap;
public static void flip(Pixmap pixmap) {
- Buffer pixels = pixmap.getPixels();
+ ByteBuffer pixels = pixmap.getPixels();
int numBytes = pixmap.getWidth() * pixmap.getHeight() * 4;
byte[] lines = new byte[numBytes];
int numBytesPerLine = pixmap.getWidth() * 4;
for (int i = 0; i < pixmap.getHeight(); i++) {
pixels.position((pixmap.getHeight() - i - 1) * numBytesPerLine);
- ((ByteBuffer) pixels).get(lines, i * numBytesPerLine, numBytesPerLine);
+ pixels.get(lines, i * numBytesPerLine, numBytesPerLine);
}
pixels.clear();
- ((ByteBuffer) pixels).put(lines);
+ pixels.put(lines);
}
private static Pixmap copy(Pixmap input) {
@@ -51,7 +51,7 @@ public static Pixmap scale(Pixmap input, float scalex, float scaley) {
return pixmap;
}
- protected static Pixmap outline(Pixmap input, Color color) {
+ public static Pixmap outline(Pixmap input, Color color) {
Pixmap pixmap = copy(input);
pixmap.setColor(color);
diff --git a/client/src/game/utils/Resources.java b/client/src/game/utils/Resources.java
index a3412017..ad3452a3 100644
--- a/client/src/game/utils/Resources.java
+++ b/client/src/game/utils/Resources.java
@@ -9,11 +9,13 @@ public class Resources {
// Paths
private static final String GAME_DATA_PATH = "data/";
public static final String GAME_UI_PATH = GAME_DATA_PATH + "ui/";
+ public static final String GAME_SKINS_PATH = GAME_DATA_PATH + "skins/";
public static final String SKIN_FILE_PATH = "ao-skin-2/";
public static final String GAME_IMAGES_PATH = GAME_UI_PATH + "images/";
public static final String GAME_SPELL_ICONS_PATH = GAME_UI_PATH + "spells/";
public static final String GAME_SKIN_FILE = GAME_UI_PATH + SKIN_FILE_PATH + "ao-skin.json";
- public static final String GAME_GRAPHICS_PATH = GAME_DATA_PATH + "graficos2x/";
+ public static final String GAME_GRAPHICS_PATH = GAME_DATA_PATH + "graphics/";
+ public static final String GAME_ATLAS_PATH = GAME_DATA_PATH + "images/";
public static final String GAME_FXS_PATH = GAME_DATA_PATH + "fxs/";
public static final String GAME_PARTICLES_PATH = GAME_DATA_PATH + "particles/";
public static final String GAME_FONTS_PATH = GAME_DATA_PATH + "fonts/";
@@ -27,7 +29,7 @@ public class Resources {
// Files
public static final String GAME_SHADERS_LIGHT = "light.png";
- public static final String CLIENT_CONFIG = "client/Config.json";
+ public static final String CLIENT_CONFIG = "config.json";
// Extensions
public static final String GAME_GRAPHICS_EXTENSION = ".png";
diff --git a/client/src/game/utils/Skins.java b/client/src/game/utils/Skins.java
index f4f46b1d..ea238f2c 100755
--- a/client/src/game/utils/Skins.java
+++ b/client/src/game/utils/Skins.java
@@ -11,11 +11,15 @@
import com.badlogic.gdx.utils.Json;
import com.badlogic.gdx.utils.JsonValue;
+import java.util.function.Supplier;
+
public class Skins {
static public final String DEFAULT_CHARS = "\u0000ABCDEFGHIJKLMNÑOPQRSTUVWXYZabcdefghijklmnñopqrstuvwxyz1234567890\"!`?'.,;:()[]{}<>|/@\\^$€-%+=#_&~*\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008A\u008B\u008C\u008D\u008E\u008F\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097\u0098\u0099\u009A\u009B\u009C\u009D\u009E\u009F\u00A0\u00A1\u00A2\u00A3\u00A4\u00A5\u00A6\u00A7\u00A8\u00A9\u00AA\u00AB\u00AC\u00AD\u00AE\u00AF\u00B0\u00B1\u00B2\u00B3\u00B4\u00B5\u00B6\u00B7\u00B8\u00B9\u00BA\u00BB\u00BC\u00BD\u00BE\u00BF\u00C0\u00C1\u00C2\u00C3\u00C4\u00C5\u00C6\u00C7\u00C8\u00C9\u00CA\u00CB\u00CC\u00CD\u00CE\u00CF\u00D0\u00D1\u00D2\u00D3\u00D4\u00D5\u00D6\u00D7\u00D8\u00D9\u00DA\u00DB\u00DC\u00DD\u00DE\u00DF\u00E0\u00E1\u00E2\u00E3\u00E4\u00E5\u00E6\u00E7\u00E8\u00E9\u00EA\u00EB\u00EC\u00ED\u00EE\u00EF\u00F0\u00F1\u00F2\u00F3\u00F4\u00F5\u00F6\u00F7\u00F8\u00F9\u00FA\u00FB\u00FC\u00FD\u00FE\u00FF";
- private static final Skin AO_SKIN = new AOSkin(Gdx.files.internal(Resources.GAME_UI_PATH + "ao-skin-2/" + "ao-skin.json"));
- public static final Skin COMODORE_SKIN = AO_SKIN;
+ public static final Skin CLASSIC = new AOSkin(Gdx.files.internal(Resources.GAME_SKINS_PATH + "classic/" + "ao-skin.json"));
+ public static final Skin FINISTERRA = new AOSkin(Gdx.files.internal(Resources.GAME_SKINS_PATH + "finisterra/" + "ao-skin.json"));
+
+ public static Supplier CURRENT = () -> FINISTERRA;
public static final class AOSkin extends Skin {
diff --git a/client/src/model/textures/AOImage.java b/client/src/model/textures/AOImage.java
index 1dfc73ee..13c9e340 100644
--- a/client/src/model/textures/AOImage.java
+++ b/client/src/model/textures/AOImage.java
@@ -87,9 +87,9 @@ public String toString() {
}
public void adjust() {
- setX(getX());
- setY(getY());
- setWidth(getWidth());
- setHeight(getHeight());
+ setX(getX() / 2);
+ setY(getY() / 2);
+ setWidth(getWidth() / 2);
+ setHeight(getHeight() / 2);
}
}
diff --git a/client/src/model/textures/AOTexture.java b/client/src/model/textures/AOTexture.java
index 9a7051c6..4863f9a0 100644
--- a/client/src/model/textures/AOTexture.java
+++ b/client/src/model/textures/AOTexture.java
@@ -16,10 +16,13 @@ public AOTexture(AOImage image, Texture texture, boolean flipY) {
image.getX(), image.getY(), image.getWidth(), image.getHeight());
this.textureRegion.flip(false, flipY);
}
-
- public void dispose() {
- this.textureRegion.getTexture().dispose();
- }
+//
+// public AOTexture(AOImage image, TextureRegion region, boolean flipY) {
+// this.textureRegion = new TextureRegion(region);
+// textureRegion.setRegion(region.getRegionX() + image.getX(), region.getRegionY() + image.getY(),
+// image.getWidth(), image.getHeight());
+// textureRegion.flip(false, flipY);
+// }
public TextureRegion getTexture() {
return textureRegion;
diff --git a/client/src/test/UITest.java b/client/src/test/UITest.java
new file mode 100644
index 00000000..13ef274f
--- /dev/null
+++ b/client/src/test/UITest.java
@@ -0,0 +1,119 @@
+package test;
+
+import com.badlogic.gdx.ApplicationAdapter;
+import com.badlogic.gdx.Gdx;
+import com.badlogic.gdx.graphics.Color;
+import com.badlogic.gdx.graphics.Texture;
+import com.badlogic.gdx.scenes.scene2d.Stage;
+import com.badlogic.gdx.scenes.scene2d.ui.*;
+import com.badlogic.gdx.scenes.scene2d.utils.Drawable;
+import com.badlogic.gdx.scenes.scene2d.utils.TextureRegionDrawable;
+import game.handlers.DefaultAOAssetManager;
+import game.ui.WidgetFactory;
+import game.utils.Resources;
+import game.utils.Skins;
+
+/**
+ * Aplicación liviana para hacer pruebas de interfaz gráfica
+ */
+public class UITest extends ApplicationAdapter {
+
+ DefaultAOAssetManager assetManager;
+ boolean loaded;
+ Stage stage;
+ Table mainTable;
+
+ @Override
+ public void create() {
+ assetManager = DefaultAOAssetManager.getInstance();
+ stage = new Stage();
+ }
+
+ public void createUI() {
+ // Inicializamos el stage y la tabla principal
+ mainTable = new Table();
+ mainTable.setFillParent(true);
+ // @todo Cargar esta textura por Asset Manager
+ Drawable background = new TextureRegionDrawable(new Texture(Gdx.files.internal(Resources.GAME_IMAGES_PATH + "background.jpg")));
+ mainTable.setBackground(background);
+ stage.addActor(mainTable);
+
+ Gdx.input.setInputProcessor(stage);
+
+ // Tabla de login
+ Window loginWindow = WidgetFactory.createWindow();
+ Label emailLabel = WidgetFactory.createLabel("Email: ");
+ TextField emailField = WidgetFactory.createTextField("mail@example.com");
+ Label passwordLabel = WidgetFactory.createLabel("Password");
+ TextField passwordField = WidgetFactory.createTextField("");
+ passwordField.setPasswordCharacter('*');
+ passwordField.setPasswordMode(true);
+ CheckBox rememberMe = WidgetFactory.createCheckBox("Remember me");
+ CheckBox seePassword = WidgetFactory.createCheckBox("See Password");
+
+ TextButton loginButton = WidgetFactory.createTextButton("Login");
+ TextButton newAccountButton = WidgetFactory.createTextButton("New account");
+
+ loginWindow.getColor().a = 0.8f;
+ loginWindow.add(emailLabel).padRight(5);
+ loginWindow.add(emailField).width(250).row();
+ loginWindow.add(passwordLabel).padTop(5).padRight(5);
+ loginWindow.add(passwordField).padTop(5).width(250).row();
+ loginWindow.add(rememberMe).padTop(20);
+ loginWindow.add(loginButton).padTop(20).row();
+ loginWindow.add(seePassword).padLeft(-10).padTop(30);
+ loginWindow.add(newAccountButton).padTop(30).row();
+
+ // Botones para desactivar el sonido y la musica
+ CheckBox disableMusic = WidgetFactory.createCheckBox("Deshabilitar música");
+ CheckBox disableSound = WidgetFactory.createCheckBox("Deshabilitar sonido");
+
+ // Agrega la imagen del logo
+ mainTable.add(
+ // @todo Cargar esta textura por Asset Manager
+ WidgetFactory.createImage(new Texture(Gdx.files.local("data/ui/images/logo-big.png")))
+ ).pad(20).center().row();
+
+ // Tabla botones
+ Window buttonsTable = WidgetFactory.createWindow();
+ buttonsTable.setMovable(false);
+ // buttonsTable.background(Skins.COMODORE_SKIN.getDrawable("menu-frame"));
+ buttonsTable.getTitleLabel().setColor(Color.GOLD);
+ buttonsTable.getTitleLabel().setAlignment(2);
+ buttonsTable.setHeight(100);
+ buttonsTable.add(disableMusic).width(500).pad(10);
+ buttonsTable.add(disableSound).width(400).pad(10);
+
+ // Tabla para loguin y servers
+ Table login_server = new Table();
+ login_server.add(loginWindow).width(500).height(300).padLeft(10).padRight(10).padTop(10);
+
+ // Tabla principal
+ mainTable.add(login_server).row();
+ mainTable.add(buttonsTable).height(100).width(920).pad(20);
+ stage.setKeyboardFocus(emailField);
+ }
+
+ @Override
+ public void render() {
+ if (assetManager.update() && !loaded) {
+ createUI();
+ loaded = true;
+ }
+ if (loaded) {
+ stage.act(Gdx.graphics.getDeltaTime());
+ stage.draw();
+ }
+ }
+
+ @Override
+ public void resize(int width, int height) {
+ stage.getViewport().update(width, height);
+ }
+
+ @Override
+ public void dispose() {
+ if (assetManager != null) assetManager.dispose();
+ if (stage != null) stage.dispose();
+ }
+}
diff --git a/compatibility/assets/data/fonts/arial.fnt b/compatibility/assets/data/fonts/arial.fnt
new file mode 100644
index 00000000..b1e9c306
--- /dev/null
+++ b/compatibility/assets/data/fonts/arial.fnt
@@ -0,0 +1,100 @@
+info face="Tahoma Bold" size=15 bold=1 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0
+common lineHeight=19 base=15 scaleW=512 scaleH=512 pages=1 packed=0
+page id=0 file="arial.png"
+chars count=95
+char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=15 xadvance=4 page=0 chnl=0
+char id=124 x=0 y=0 width=4 height=17 xoffset=4 yoffset=2 xadvance=10 page=0 chnl=0
+char id=125 x=4 y=0 width=10 height=17 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0
+char id=123 x=14 y=0 width=10 height=17 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0
+char id=93 x=24 y=0 width=7 height=17 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0
+char id=91 x=31 y=0 width=7 height=17 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0
+char id=41 x=38 y=0 width=7 height=17 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0
+char id=40 x=45 y=0 width=7 height=17 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0
+char id=36 x=52 y=0 width=11 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0
+char id=92 x=63 y=0 width=9 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0
+char id=47 x=72 y=0 width=9 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0
+char id=106 x=81 y=0 width=7 height=16 xoffset=-1 yoffset=3 xadvance=5 page=0 chnl=0
+char id=81 x=88 y=0 width=13 height=16 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0
+char id=64 x=101 y=0 width=15 height=15 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0
+char id=108 x=116 y=0 width=4 height=14 xoffset=1 yoffset=2 xadvance=5 page=0 chnl=0
+char id=107 x=120 y=0 width=9 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0
+char id=104 x=129 y=0 width=10 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0
+char id=102 x=139 y=0 width=8 height=14 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0
+char id=100 x=147 y=0 width=10 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0
+char id=98 x=157 y=0 width=10 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0
+char id=127 x=167 y=0 width=13 height=13 xoffset=2 yoffset=3 xadvance=15 page=0 chnl=0
+char id=38 x=180 y=0 width=12 height=13 xoffset=1 yoffset=3 xadvance=12 page=0 chnl=0
+char id=35 x=192 y=0 width=13 height=13 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0
+char id=37 x=205 y=0 width=19 height=13 xoffset=0 yoffset=3 xadvance=18 page=0 chnl=0
+char id=59 x=224 y=0 width=5 height=13 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0
+char id=63 x=229 y=0 width=9 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=33 x=238 y=0 width=4 height=13 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0
+char id=48 x=242 y=0 width=11 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=57 x=253 y=0 width=11 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=55 x=264 y=0 width=10 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=54 x=274 y=0 width=10 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=53 x=284 y=0 width=11 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=52 x=295 y=0 width=11 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=51 x=306 y=0 width=11 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=50 x=317 y=0 width=11 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=49 x=328 y=0 width=8 height=13 xoffset=2 yoffset=3 xadvance=10 page=0 chnl=0
+char id=113 x=336 y=0 width=10 height=13 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0
+char id=112 x=346 y=0 width=10 height=13 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0
+char id=105 x=356 y=0 width=4 height=13 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0
+char id=103 x=360 y=0 width=10 height=13 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0
+char id=90 x=370 y=0 width=10 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=89 x=380 y=0 width=13 height=13 xoffset=-1 yoffset=3 xadvance=11 page=0 chnl=0
+char id=88 x=393 y=0 width=12 height=13 xoffset=-1 yoffset=3 xadvance=10 page=0 chnl=0
+char id=87 x=405 y=0 width=17 height=13 xoffset=-1 yoffset=3 xadvance=15 page=0 chnl=0
+char id=86 x=422 y=0 width=12 height=13 xoffset=-1 yoffset=3 xadvance=10 page=0 chnl=0
+char id=85 x=434 y=0 width=12 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0
+char id=84 x=446 y=0 width=10 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=83 x=456 y=0 width=11 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=82 x=467 y=0 width=11 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0
+char id=80 x=478 y=0 width=10 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=79 x=488 y=0 width=13 height=13 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0
+char id=78 x=0 y=17 width=13 height=13 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0
+char id=77 x=13 y=17 width=14 height=13 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0
+char id=76 x=27 y=17 width=10 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=75 x=37 y=17 width=10 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=74 x=47 y=17 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=73 x=56 y=17 width=8 height=13 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0
+char id=72 x=64 y=17 width=12 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0
+char id=71 x=76 y=17 width=12 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0
+char id=70 x=88 y=17 width=10 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=69 x=98 y=17 width=10 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=68 x=108 y=17 width=12 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0
+char id=66 x=120 y=17 width=11 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=65 x=131 y=17 width=12 height=13 xoffset=-1 yoffset=3 xadvance=10 page=0 chnl=0
+char id=62 x=143 y=17 width=11 height=12 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0
+char id=60 x=154 y=17 width=11 height=12 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0
+char id=56 x=165 y=17 width=10 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
+char id=121 x=175 y=17 width=11 height=12 xoffset=-1 yoffset=7 xadvance=9 page=0 chnl=0
+char id=116 x=186 y=17 width=7 height=12 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0
+char id=67 x=193 y=17 width=11 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
+char id=43 x=204 y=17 width=11 height=11 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0
+char id=58 x=215 y=17 width=4 height=10 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=0
+char id=122 x=219 y=17 width=9 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
+char id=120 x=228 y=17 width=11 height=10 xoffset=-1 yoffset=6 xadvance=9 page=0 chnl=0
+char id=119 x=239 y=17 width=13 height=10 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0
+char id=118 x=252 y=17 width=11 height=10 xoffset=-1 yoffset=6 xadvance=9 page=0 chnl=0
+char id=117 x=263 y=17 width=10 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0
+char id=115 x=273 y=17 width=9 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0
+char id=114 x=282 y=17 width=8 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0
+char id=110 x=290 y=17 width=10 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0
+char id=109 x=300 y=17 width=14 height=10 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0
+char id=101 x=314 y=17 width=10 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0
+char id=97 x=324 y=17 width=10 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0
+char id=42 x=334 y=17 width=9 height=9 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0
+char id=111 x=343 y=17 width=9 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0
+char id=99 x=352 y=17 width=9 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0
+char id=44 x=361 y=17 width=5 height=8 xoffset=0 yoffset=11 xadvance=5 page=0 chnl=0
+char id=126 x=366 y=17 width=13 height=7 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0
+char id=61 x=379 y=17 width=11 height=7 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0
+char id=94 x=390 y=17 width=11 height=7 xoffset=1 yoffset=3 xadvance=12 page=0 chnl=0
+char id=39 x=401 y=17 width=3 height=6 xoffset=1 yoffset=2 xadvance=4 page=0 chnl=0
+char id=34 x=404 y=17 width=7 height=6 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0
+char id=46 x=411 y=17 width=4 height=5 xoffset=1 yoffset=11 xadvance=5 page=0 chnl=0
+char id=96 x=415 y=17 width=4 height=4 xoffset=2 yoffset=3 xadvance=8 page=0 chnl=0
+char id=95 x=419 y=17 width=12 height=3 xoffset=0 yoffset=15 xadvance=10 page=0 chnl=0
+char id=45 x=431 y=17 width=7 height=3 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0
diff --git a/compatibility/assets/data/fonts/arial.png b/compatibility/assets/data/fonts/arial.png
new file mode 100644
index 00000000..b8fbc656
Binary files /dev/null and b/compatibility/assets/data/fonts/arial.png differ
diff --git a/compatibility/assets/data/fonts/tahoma-bold.fnt b/compatibility/assets/data/fonts/tahoma-bold.fnt
new file mode 100644
index 00000000..0e7efe36
--- /dev/null
+++ b/compatibility/assets/data/fonts/tahoma-bold.fnt
@@ -0,0 +1,100 @@
+info face="Tahoma Bold" size=14 bold=1 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0
+common lineHeight=17 base=14 scaleW=512 scaleH=512 pages=1 packed=0
+page id=0 file="tahoma-bold.png"
+chars count=95
+char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0
+char id=124 x=0 y=0 width=4 height=16 xoffset=3 yoffset=2 xadvance=9 page=0 chnl=0
+char id=125 x=4 y=0 width=10 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0
+char id=123 x=14 y=0 width=10 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0
+char id=93 x=24 y=0 width=6 height=16 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=0
+char id=91 x=30 y=0 width=6 height=16 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=0
+char id=41 x=36 y=0 width=6 height=16 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=0
+char id=40 x=42 y=0 width=7 height=16 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0
+char id=106 x=49 y=0 width=7 height=16 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0
+char id=36 x=56 y=0 width=10 height=15 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0
+char id=92 x=66 y=0 width=9 height=15 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0
+char id=47 x=75 y=0 width=9 height=15 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0
+char id=81 x=84 y=0 width=12 height=14 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0
+char id=127 x=96 y=0 width=13 height=13 xoffset=1 yoffset=2 xadvance=14 page=0 chnl=0
+char id=64 x=109 y=0 width=15 height=13 xoffset=-1 yoffset=4 xadvance=13 page=0 chnl=0
+char id=57 x=124 y=0 width=10 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=56 x=134 y=0 width=10 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=113 x=144 y=0 width=10 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
+char id=112 x=154 y=0 width=10 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
+char id=108 x=164 y=0 width=4 height=13 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0
+char id=107 x=168 y=0 width=8 height=13 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0
+char id=105 x=176 y=0 width=4 height=13 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0
+char id=104 x=180 y=0 width=10 height=13 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0
+char id=103 x=190 y=0 width=10 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
+char id=102 x=200 y=0 width=8 height=13 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0
+char id=100 x=208 y=0 width=10 height=13 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0
+char id=98 x=218 y=0 width=10 height=13 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0
+char id=38 x=228 y=0 width=11 height=12 xoffset=1 yoffset=3 xadvance=11 page=0 chnl=0
+char id=35 x=239 y=0 width=12 height=12 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0
+char id=37 x=251 y=0 width=18 height=12 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0
+char id=62 x=269 y=0 width=11 height=12 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0
+char id=60 x=280 y=0 width=11 height=12 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0
+char id=59 x=291 y=0 width=5 height=12 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0
+char id=33 x=296 y=0 width=4 height=12 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0
+char id=55 x=300 y=0 width=10 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=54 x=310 y=0 width=9 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=53 x=319 y=0 width=10 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=52 x=329 y=0 width=10 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=51 x=339 y=0 width=9 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=49 x=348 y=0 width=8 height=12 xoffset=1 yoffset=3 xadvance=9 page=0 chnl=0
+char id=121 x=356 y=0 width=10 height=12 xoffset=-1 yoffset=6 xadvance=8 page=0 chnl=0
+char id=116 x=366 y=0 width=7 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0
+char id=90 x=373 y=0 width=10 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=89 x=383 y=0 width=11 height=12 xoffset=-1 yoffset=3 xadvance=9 page=0 chnl=0
+char id=87 x=394 y=0 width=16 height=12 xoffset=-1 yoffset=3 xadvance=14 page=0 chnl=0
+char id=86 x=410 y=0 width=12 height=12 xoffset=-1 yoffset=3 xadvance=10 page=0 chnl=0
+char id=85 x=422 y=0 width=11 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=84 x=433 y=0 width=10 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=83 x=443 y=0 width=10 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=82 x=453 y=0 width=10 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=80 x=463 y=0 width=9 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=78 x=472 y=0 width=12 height=12 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0
+char id=77 x=484 y=0 width=13 height=12 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0
+char id=76 x=497 y=0 width=9 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=75 x=0 y=16 width=10 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=74 x=10 y=16 width=8 height=12 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0
+char id=73 x=18 y=16 width=6 height=12 xoffset=1 yoffset=3 xadvance=7 page=0 chnl=0
+char id=72 x=24 y=16 width=12 height=12 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0
+char id=71 x=36 y=16 width=11 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=70 x=47 y=16 width=9 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=69 x=56 y=16 width=10 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=68 x=66 y=16 width=10 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=66 x=76 y=16 width=11 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=65 x=87 y=16 width=12 height=12 xoffset=-1 yoffset=3 xadvance=10 page=0 chnl=0
+char id=63 x=99 y=16 width=9 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0
+char id=48 x=108 y=16 width=10 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
+char id=50 x=118 y=16 width=10 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
+char id=88 x=128 y=16 width=12 height=11 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0
+char id=79 x=140 y=16 width=11 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0
+char id=67 x=151 y=16 width=11 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
+char id=58 x=162 y=16 width=4 height=10 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0
+char id=122 x=166 y=16 width=8 height=10 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0
+char id=120 x=174 y=16 width=10 height=10 xoffset=-1 yoffset=5 xadvance=8 page=0 chnl=0
+char id=119 x=184 y=16 width=12 height=10 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0
+char id=118 x=196 y=16 width=10 height=10 xoffset=-1 yoffset=5 xadvance=8 page=0 chnl=0
+char id=117 x=206 y=16 width=10 height=10 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
+char id=115 x=216 y=16 width=8 height=10 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0
+char id=114 x=224 y=16 width=7 height=10 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
+char id=110 x=231 y=16 width=10 height=10 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0
+char id=109 x=241 y=16 width=14 height=10 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0
+char id=101 x=255 y=16 width=9 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
+char id=97 x=264 y=16 width=9 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
+char id=42 x=273 y=16 width=9 height=9 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0
+char id=43 x=282 y=16 width=9 height=9 xoffset=2 yoffset=5 xadvance=11 page=0 chnl=0
+char id=111 x=291 y=16 width=9 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0
+char id=99 x=300 y=16 width=8 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0
+char id=44 x=308 y=16 width=5 height=7 xoffset=0 yoffset=10 xadvance=4 page=0 chnl=0
+char id=126 x=313 y=16 width=12 height=6 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0
+char id=61 x=325 y=16 width=10 height=6 xoffset=1 yoffset=6 xadvance=11 page=0 chnl=0
+char id=94 x=335 y=16 width=10 height=6 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0
+char id=39 x=345 y=16 width=3 height=6 xoffset=1 yoffset=2 xadvance=4 page=0 chnl=0
+char id=34 x=348 y=16 width=7 height=6 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0
+char id=46 x=355 y=16 width=4 height=5 xoffset=1 yoffset=10 xadvance=4 page=0 chnl=0
+char id=96 x=359 y=16 width=4 height=4 xoffset=2 yoffset=2 xadvance=8 page=0 chnl=0
+char id=95 x=363 y=16 width=11 height=3 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0
+char id=45 x=374 y=16 width=7 height=3 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0
diff --git a/compatibility/assets/data/fonts/tahoma-bold.png b/compatibility/assets/data/fonts/tahoma-bold.png
new file mode 100644
index 00000000..48a63c58
Binary files /dev/null and b/compatibility/assets/data/fonts/tahoma-bold.png differ
diff --git a/compatibility/assets/data/fonts/tahoma.fnt b/compatibility/assets/data/fonts/tahoma.fnt
new file mode 100644
index 00000000..74bb6874
--- /dev/null
+++ b/compatibility/assets/data/fonts/tahoma.fnt
@@ -0,0 +1,100 @@
+info face="Tahoma" size=14 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0
+common lineHeight=17 base=14 scaleW=512 scaleH=512 pages=1 packed=0
+page id=0 file="tahoma.png"
+chars count=95
+char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0
+char id=124 x=0 y=0 width=3 height=16 xoffset=2 yoffset=2 xadvance=5 page=0 chnl=0
+char id=125 x=3 y=0 width=7 height=16 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0
+char id=123 x=10 y=0 width=7 height=16 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0
+char id=93 x=17 y=0 width=6 height=16 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0
+char id=91 x=23 y=0 width=6 height=16 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0
+char id=41 x=29 y=0 width=6 height=16 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0
+char id=40 x=35 y=0 width=5 height=16 xoffset=1 yoffset=2 xadvance=5 page=0 chnl=0
+char id=36 x=40 y=0 width=8 height=15 xoffset=1 yoffset=2 xadvance=8 page=0 chnl=0
+char id=92 x=48 y=0 width=6 height=15 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0
+char id=47 x=54 y=0 width=6 height=15 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0
+char id=106 x=60 y=0 width=6 height=15 xoffset=-1 yoffset=3 xadvance=4 page=0 chnl=0
+char id=64 x=66 y=0 width=14 height=14 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0
+char id=81 x=80 y=0 width=11 height=14 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
+char id=127 x=91 y=0 width=13 height=13 xoffset=2 yoffset=2 xadvance=14 page=0 chnl=0
+char id=121 x=104 y=0 width=10 height=13 xoffset=-1 yoffset=5 xadvance=8 page=0 chnl=0
+char id=113 x=114 y=0 width=9 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
+char id=112 x=123 y=0 width=9 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
+char id=108 x=132 y=0 width=3 height=13 xoffset=0 yoffset=2 xadvance=2 page=0 chnl=0
+char id=107 x=135 y=0 width=8 height=13 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0
+char id=104 x=143 y=0 width=9 height=13 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0
+char id=103 x=152 y=0 width=9 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
+char id=102 x=161 y=0 width=7 height=13 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0
+char id=100 x=168 y=0 width=9 height=13 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0
+char id=98 x=177 y=0 width=9 height=13 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0
+char id=35 x=186 y=0 width=10 height=12 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0
+char id=37 x=196 y=0 width=14 height=12 xoffset=1 yoffset=3 xadvance=14 page=0 chnl=0
+char id=59 x=210 y=0 width=4 height=12 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0
+char id=33 x=214 y=0 width=3 height=12 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0
+char id=57 x=217 y=0 width=9 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=56 x=226 y=0 width=9 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=55 x=235 y=0 width=8 height=12 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0
+char id=54 x=243 y=0 width=9 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=53 x=252 y=0 width=8 height=12 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0
+char id=52 x=260 y=0 width=9 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=51 x=269 y=0 width=8 height=12 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0
+char id=50 x=277 y=0 width=8 height=12 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0
+char id=49 x=285 y=0 width=7 height=12 xoffset=2 yoffset=3 xadvance=8 page=0 chnl=0
+char id=116 x=292 y=0 width=7 height=12 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0
+char id=105 x=299 y=0 width=3 height=12 xoffset=0 yoffset=3 xadvance=2 page=0 chnl=0
+char id=90 x=302 y=0 width=9 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=89 x=311 y=0 width=8 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=88 x=319 y=0 width=8 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=87 x=327 y=0 width=14 height=12 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0
+char id=86 x=341 y=0 width=8 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=85 x=349 y=0 width=10 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=84 x=359 y=0 width=11 height=12 xoffset=-1 yoffset=3 xadvance=8 page=0 chnl=0
+char id=83 x=370 y=0 width=9 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=82 x=379 y=0 width=9 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=80 x=388 y=0 width=8 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=78 x=396 y=0 width=10 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=77 x=406 y=0 width=11 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=76 x=417 y=0 width=8 height=12 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0
+char id=75 x=425 y=0 width=8 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=74 x=433 y=0 width=7 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0
+char id=73 x=440 y=0 width=5 height=12 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0
+char id=72 x=445 y=0 width=10 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=71 x=455 y=0 width=10 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=70 x=465 y=0 width=8 height=12 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0
+char id=69 x=473 y=0 width=9 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=68 x=482 y=0 width=10 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0
+char id=67 x=492 y=0 width=10 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0
+char id=66 x=502 y=0 width=8 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=65 x=0 y=16 width=8 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0
+char id=38 x=8 y=16 width=10 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0
+char id=63 x=18 y=16 width=7 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0
+char id=48 x=25 y=16 width=9 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0
+char id=79 x=34 y=16 width=10 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0
+char id=58 x=44 y=16 width=3 height=10 xoffset=2 yoffset=5 xadvance=5 page=0 chnl=0
+char id=122 x=47 y=16 width=7 height=10 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0
+char id=120 x=54 y=16 width=8 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
+char id=119 x=62 y=16 width=10 height=10 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0
+char id=118 x=72 y=16 width=10 height=10 xoffset=-1 yoffset=5 xadvance=8 page=0 chnl=0
+char id=117 x=82 y=16 width=9 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
+char id=114 x=91 y=16 width=6 height=10 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0
+char id=111 x=97 y=16 width=8 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
+char id=110 x=105 y=16 width=9 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0
+char id=109 x=114 y=16 width=11 height=10 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0
+char id=101 x=125 y=16 width=8 height=10 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0
+char id=97 x=133 y=16 width=8 height=10 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0
+char id=42 x=141 y=16 width=8 height=9 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0
+char id=43 x=149 y=16 width=9 height=9 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0
+char id=115 x=158 y=16 width=7 height=9 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0
+char id=99 x=165 y=16 width=8 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0
+char id=62 x=173 y=16 width=9 height=8 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0
+char id=60 x=182 y=16 width=9 height=8 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0
+char id=94 x=191 y=16 width=9 height=7 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0
+char id=126 x=200 y=16 width=9 height=6 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0
+char id=61 x=209 y=16 width=10 height=6 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0
+char id=44 x=219 y=16 width=4 height=6 xoffset=1 yoffset=11 xadvance=4 page=0 chnl=0
+char id=39 x=223 y=16 width=2 height=6 xoffset=1 yoffset=2 xadvance=3 page=0 chnl=0
+char id=34 x=225 y=16 width=5 height=6 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=0
+char id=96 x=230 y=16 width=4 height=5 xoffset=2 yoffset=1 xadvance=8 page=0 chnl=0
+char id=46 x=234 y=16 width=3 height=4 xoffset=1 yoffset=11 xadvance=4 page=0 chnl=0
+char id=95 x=237 y=16 width=10 height=3 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0
+char id=45 x=247 y=16 width=6 height=3 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0
diff --git a/compatibility/assets/data/fonts/tahoma.png b/compatibility/assets/data/fonts/tahoma.png
new file mode 100644
index 00000000..2eaf0ee9
Binary files /dev/null and b/compatibility/assets/data/fonts/tahoma.png differ
diff --git a/compatibility/assets/data/graficos/0.png b/compatibility/assets/data/graficos/0.png
new file mode 100644
index 00000000..c7439103
Binary files /dev/null and b/compatibility/assets/data/graficos/0.png differ
diff --git a/compatibility/assets/data/graficos/1.png b/compatibility/assets/data/graficos/1.png
new file mode 100644
index 00000000..f7bd7266
Binary files /dev/null and b/compatibility/assets/data/graficos/1.png differ
diff --git a/compatibility/assets/data/graficos/10.png b/compatibility/assets/data/graficos/10.png
new file mode 100644
index 00000000..49c3b184
Binary files /dev/null and b/compatibility/assets/data/graficos/10.png differ
diff --git a/compatibility/assets/data/graficos/100.png b/compatibility/assets/data/graficos/100.png
new file mode 100644
index 00000000..35a0dacb
Binary files /dev/null and b/compatibility/assets/data/graficos/100.png differ
diff --git a/compatibility/assets/data/graficos/10000.png b/compatibility/assets/data/graficos/10000.png
new file mode 100644
index 00000000..af36156b
Binary files /dev/null and b/compatibility/assets/data/graficos/10000.png differ
diff --git a/compatibility/assets/data/graficos/10001.png b/compatibility/assets/data/graficos/10001.png
new file mode 100644
index 00000000..876bb1b2
Binary files /dev/null and b/compatibility/assets/data/graficos/10001.png differ
diff --git a/compatibility/assets/data/graficos/10002.png b/compatibility/assets/data/graficos/10002.png
new file mode 100644
index 00000000..78796790
Binary files /dev/null and b/compatibility/assets/data/graficos/10002.png differ
diff --git a/compatibility/assets/data/graficos/10003.png b/compatibility/assets/data/graficos/10003.png
new file mode 100644
index 00000000..57867c6c
Binary files /dev/null and b/compatibility/assets/data/graficos/10003.png differ
diff --git a/compatibility/assets/data/graficos/10004.png b/compatibility/assets/data/graficos/10004.png
new file mode 100644
index 00000000..7615584b
Binary files /dev/null and b/compatibility/assets/data/graficos/10004.png differ
diff --git a/compatibility/assets/data/graficos/10005.png b/compatibility/assets/data/graficos/10005.png
new file mode 100644
index 00000000..a969fd2d
Binary files /dev/null and b/compatibility/assets/data/graficos/10005.png differ
diff --git a/compatibility/assets/data/graficos/10006.png b/compatibility/assets/data/graficos/10006.png
new file mode 100644
index 00000000..e0476ef7
Binary files /dev/null and b/compatibility/assets/data/graficos/10006.png differ
diff --git a/compatibility/assets/data/graficos/10007.png b/compatibility/assets/data/graficos/10007.png
new file mode 100644
index 00000000..43a1d062
Binary files /dev/null and b/compatibility/assets/data/graficos/10007.png differ
diff --git a/compatibility/assets/data/graficos/10008.png b/compatibility/assets/data/graficos/10008.png
new file mode 100644
index 00000000..52a782a2
Binary files /dev/null and b/compatibility/assets/data/graficos/10008.png differ
diff --git a/compatibility/assets/data/graficos/10009.png b/compatibility/assets/data/graficos/10009.png
new file mode 100644
index 00000000..e8204a15
Binary files /dev/null and b/compatibility/assets/data/graficos/10009.png differ
diff --git a/compatibility/assets/data/graficos/10010.png b/compatibility/assets/data/graficos/10010.png
new file mode 100644
index 00000000..f5db3a71
Binary files /dev/null and b/compatibility/assets/data/graficos/10010.png differ
diff --git a/compatibility/assets/data/graficos/10090.png b/compatibility/assets/data/graficos/10090.png
new file mode 100644
index 00000000..3e977e9b
Binary files /dev/null and b/compatibility/assets/data/graficos/10090.png differ
diff --git a/compatibility/assets/data/graficos/101.png b/compatibility/assets/data/graficos/101.png
new file mode 100644
index 00000000..3c4ac472
Binary files /dev/null and b/compatibility/assets/data/graficos/101.png differ
diff --git a/compatibility/assets/data/graficos/102.png b/compatibility/assets/data/graficos/102.png
new file mode 100644
index 00000000..ea462574
Binary files /dev/null and b/compatibility/assets/data/graficos/102.png differ
diff --git a/compatibility/assets/data/graficos/103.png b/compatibility/assets/data/graficos/103.png
new file mode 100644
index 00000000..68b3d946
Binary files /dev/null and b/compatibility/assets/data/graficos/103.png differ
diff --git a/compatibility/assets/data/graficos/104.png b/compatibility/assets/data/graficos/104.png
new file mode 100644
index 00000000..1b787848
Binary files /dev/null and b/compatibility/assets/data/graficos/104.png differ
diff --git a/compatibility/assets/data/graficos/105.png b/compatibility/assets/data/graficos/105.png
new file mode 100644
index 00000000..1c6daad8
Binary files /dev/null and b/compatibility/assets/data/graficos/105.png differ
diff --git a/compatibility/assets/data/graficos/106.png b/compatibility/assets/data/graficos/106.png
new file mode 100644
index 00000000..ae889ddd
Binary files /dev/null and b/compatibility/assets/data/graficos/106.png differ
diff --git a/compatibility/assets/data/graficos/107.png b/compatibility/assets/data/graficos/107.png
new file mode 100644
index 00000000..6de98b07
Binary files /dev/null and b/compatibility/assets/data/graficos/107.png differ
diff --git a/compatibility/assets/data/graficos/108.png b/compatibility/assets/data/graficos/108.png
new file mode 100644
index 00000000..9bbf9323
Binary files /dev/null and b/compatibility/assets/data/graficos/108.png differ
diff --git a/compatibility/assets/data/graficos/109.png b/compatibility/assets/data/graficos/109.png
new file mode 100644
index 00000000..523df3d0
Binary files /dev/null and b/compatibility/assets/data/graficos/109.png differ
diff --git a/compatibility/assets/data/graficos/11.png b/compatibility/assets/data/graficos/11.png
new file mode 100644
index 00000000..8d8baf17
Binary files /dev/null and b/compatibility/assets/data/graficos/11.png differ
diff --git a/compatibility/assets/data/graficos/110.png b/compatibility/assets/data/graficos/110.png
new file mode 100644
index 00000000..965f9b91
Binary files /dev/null and b/compatibility/assets/data/graficos/110.png differ
diff --git a/compatibility/assets/data/graficos/11000.png b/compatibility/assets/data/graficos/11000.png
new file mode 100644
index 00000000..4694f802
Binary files /dev/null and b/compatibility/assets/data/graficos/11000.png differ
diff --git a/compatibility/assets/data/graficos/11001.png b/compatibility/assets/data/graficos/11001.png
new file mode 100644
index 00000000..9ec8049a
Binary files /dev/null and b/compatibility/assets/data/graficos/11001.png differ
diff --git a/compatibility/assets/data/graficos/11002.png b/compatibility/assets/data/graficos/11002.png
new file mode 100644
index 00000000..ed569977
Binary files /dev/null and b/compatibility/assets/data/graficos/11002.png differ
diff --git a/compatibility/assets/data/graficos/11003.png b/compatibility/assets/data/graficos/11003.png
new file mode 100644
index 00000000..73faab3e
Binary files /dev/null and b/compatibility/assets/data/graficos/11003.png differ
diff --git a/compatibility/assets/data/graficos/11004.png b/compatibility/assets/data/graficos/11004.png
new file mode 100644
index 00000000..d06ac619
Binary files /dev/null and b/compatibility/assets/data/graficos/11004.png differ
diff --git a/compatibility/assets/data/graficos/11005.png b/compatibility/assets/data/graficos/11005.png
new file mode 100644
index 00000000..2a208999
Binary files /dev/null and b/compatibility/assets/data/graficos/11005.png differ
diff --git a/compatibility/assets/data/graficos/11006.png b/compatibility/assets/data/graficos/11006.png
new file mode 100644
index 00000000..ea607a60
Binary files /dev/null and b/compatibility/assets/data/graficos/11006.png differ
diff --git a/compatibility/assets/data/graficos/11007.png b/compatibility/assets/data/graficos/11007.png
new file mode 100644
index 00000000..de03c4b5
Binary files /dev/null and b/compatibility/assets/data/graficos/11007.png differ
diff --git a/compatibility/assets/data/graficos/11008.png b/compatibility/assets/data/graficos/11008.png
new file mode 100644
index 00000000..230043e5
Binary files /dev/null and b/compatibility/assets/data/graficos/11008.png differ
diff --git a/compatibility/assets/data/graficos/11009.png b/compatibility/assets/data/graficos/11009.png
new file mode 100644
index 00000000..8c17cf4d
Binary files /dev/null and b/compatibility/assets/data/graficos/11009.png differ
diff --git a/compatibility/assets/data/graficos/11010.png b/compatibility/assets/data/graficos/11010.png
new file mode 100644
index 00000000..5cfd5036
Binary files /dev/null and b/compatibility/assets/data/graficos/11010.png differ
diff --git a/compatibility/assets/data/graficos/11011.png b/compatibility/assets/data/graficos/11011.png
new file mode 100644
index 00000000..12b4b97e
Binary files /dev/null and b/compatibility/assets/data/graficos/11011.png differ
diff --git a/compatibility/assets/data/graficos/11012.png b/compatibility/assets/data/graficos/11012.png
new file mode 100644
index 00000000..39985e65
Binary files /dev/null and b/compatibility/assets/data/graficos/11012.png differ
diff --git a/compatibility/assets/data/graficos/11013.png b/compatibility/assets/data/graficos/11013.png
new file mode 100644
index 00000000..2a2d63ac
Binary files /dev/null and b/compatibility/assets/data/graficos/11013.png differ
diff --git a/compatibility/assets/data/graficos/11014.png b/compatibility/assets/data/graficos/11014.png
new file mode 100644
index 00000000..2038413f
Binary files /dev/null and b/compatibility/assets/data/graficos/11014.png differ
diff --git a/compatibility/assets/data/graficos/11015.png b/compatibility/assets/data/graficos/11015.png
new file mode 100644
index 00000000..579b6973
Binary files /dev/null and b/compatibility/assets/data/graficos/11015.png differ
diff --git a/compatibility/assets/data/graficos/11016.png b/compatibility/assets/data/graficos/11016.png
new file mode 100644
index 00000000..201d1f0e
Binary files /dev/null and b/compatibility/assets/data/graficos/11016.png differ
diff --git a/compatibility/assets/data/graficos/11017.png b/compatibility/assets/data/graficos/11017.png
new file mode 100644
index 00000000..863b443a
Binary files /dev/null and b/compatibility/assets/data/graficos/11017.png differ
diff --git a/compatibility/assets/data/graficos/11018.png b/compatibility/assets/data/graficos/11018.png
new file mode 100644
index 00000000..fe345458
Binary files /dev/null and b/compatibility/assets/data/graficos/11018.png differ
diff --git a/compatibility/assets/data/graficos/11019.png b/compatibility/assets/data/graficos/11019.png
new file mode 100644
index 00000000..3766c617
Binary files /dev/null and b/compatibility/assets/data/graficos/11019.png differ
diff --git a/compatibility/assets/data/graficos/11020.png b/compatibility/assets/data/graficos/11020.png
new file mode 100644
index 00000000..557019da
Binary files /dev/null and b/compatibility/assets/data/graficos/11020.png differ
diff --git a/compatibility/assets/data/graficos/11021.png b/compatibility/assets/data/graficos/11021.png
new file mode 100644
index 00000000..0652161f
Binary files /dev/null and b/compatibility/assets/data/graficos/11021.png differ
diff --git a/compatibility/assets/data/graficos/11022.png b/compatibility/assets/data/graficos/11022.png
new file mode 100644
index 00000000..005be532
Binary files /dev/null and b/compatibility/assets/data/graficos/11022.png differ
diff --git a/compatibility/assets/data/graficos/11023.png b/compatibility/assets/data/graficos/11023.png
new file mode 100644
index 00000000..8a1bdb7c
Binary files /dev/null and b/compatibility/assets/data/graficos/11023.png differ
diff --git a/compatibility/assets/data/graficos/11024.png b/compatibility/assets/data/graficos/11024.png
new file mode 100644
index 00000000..6694e157
Binary files /dev/null and b/compatibility/assets/data/graficos/11024.png differ
diff --git a/compatibility/assets/data/graficos/11025.png b/compatibility/assets/data/graficos/11025.png
new file mode 100644
index 00000000..e6c44df6
Binary files /dev/null and b/compatibility/assets/data/graficos/11025.png differ
diff --git a/compatibility/assets/data/graficos/11026.png b/compatibility/assets/data/graficos/11026.png
new file mode 100644
index 00000000..efe29653
Binary files /dev/null and b/compatibility/assets/data/graficos/11026.png differ
diff --git a/compatibility/assets/data/graficos/11027.png b/compatibility/assets/data/graficos/11027.png
new file mode 100644
index 00000000..9c5e72d7
Binary files /dev/null and b/compatibility/assets/data/graficos/11027.png differ
diff --git a/compatibility/assets/data/graficos/11028.png b/compatibility/assets/data/graficos/11028.png
new file mode 100644
index 00000000..4e490a74
Binary files /dev/null and b/compatibility/assets/data/graficos/11028.png differ
diff --git a/compatibility/assets/data/graficos/11029.png b/compatibility/assets/data/graficos/11029.png
new file mode 100644
index 00000000..579b6973
Binary files /dev/null and b/compatibility/assets/data/graficos/11029.png differ
diff --git a/compatibility/assets/data/graficos/11030.png b/compatibility/assets/data/graficos/11030.png
new file mode 100644
index 00000000..69958a9d
Binary files /dev/null and b/compatibility/assets/data/graficos/11030.png differ
diff --git a/compatibility/assets/data/graficos/11031.png b/compatibility/assets/data/graficos/11031.png
new file mode 100644
index 00000000..95a597e6
Binary files /dev/null and b/compatibility/assets/data/graficos/11031.png differ
diff --git a/compatibility/assets/data/graficos/11032.png b/compatibility/assets/data/graficos/11032.png
new file mode 100644
index 00000000..77322917
Binary files /dev/null and b/compatibility/assets/data/graficos/11032.png differ
diff --git a/compatibility/assets/data/graficos/11033.png b/compatibility/assets/data/graficos/11033.png
new file mode 100644
index 00000000..b81cae1e
Binary files /dev/null and b/compatibility/assets/data/graficos/11033.png differ
diff --git a/compatibility/assets/data/graficos/11034.png b/compatibility/assets/data/graficos/11034.png
new file mode 100644
index 00000000..cf6b7fcd
Binary files /dev/null and b/compatibility/assets/data/graficos/11034.png differ
diff --git a/compatibility/assets/data/graficos/11035.png b/compatibility/assets/data/graficos/11035.png
new file mode 100644
index 00000000..883177b8
Binary files /dev/null and b/compatibility/assets/data/graficos/11035.png differ
diff --git a/compatibility/assets/data/graficos/11036.png b/compatibility/assets/data/graficos/11036.png
new file mode 100644
index 00000000..5732dfc3
Binary files /dev/null and b/compatibility/assets/data/graficos/11036.png differ
diff --git a/compatibility/assets/data/graficos/11037.png b/compatibility/assets/data/graficos/11037.png
new file mode 100644
index 00000000..196e66d2
Binary files /dev/null and b/compatibility/assets/data/graficos/11037.png differ
diff --git a/compatibility/assets/data/graficos/11038.png b/compatibility/assets/data/graficos/11038.png
new file mode 100644
index 00000000..413b1cce
Binary files /dev/null and b/compatibility/assets/data/graficos/11038.png differ
diff --git a/compatibility/assets/data/graficos/11039.png b/compatibility/assets/data/graficos/11039.png
new file mode 100644
index 00000000..9676c690
Binary files /dev/null and b/compatibility/assets/data/graficos/11039.png differ
diff --git a/compatibility/assets/data/graficos/11040.png b/compatibility/assets/data/graficos/11040.png
new file mode 100644
index 00000000..9cf59726
Binary files /dev/null and b/compatibility/assets/data/graficos/11040.png differ
diff --git a/compatibility/assets/data/graficos/11041.png b/compatibility/assets/data/graficos/11041.png
new file mode 100644
index 00000000..b394c683
Binary files /dev/null and b/compatibility/assets/data/graficos/11041.png differ
diff --git a/compatibility/assets/data/graficos/11042.png b/compatibility/assets/data/graficos/11042.png
new file mode 100644
index 00000000..73a28036
Binary files /dev/null and b/compatibility/assets/data/graficos/11042.png differ
diff --git a/compatibility/assets/data/graficos/11043.png b/compatibility/assets/data/graficos/11043.png
new file mode 100644
index 00000000..d97521bd
Binary files /dev/null and b/compatibility/assets/data/graficos/11043.png differ
diff --git a/compatibility/assets/data/graficos/11044.png b/compatibility/assets/data/graficos/11044.png
new file mode 100644
index 00000000..5ba3c3fe
Binary files /dev/null and b/compatibility/assets/data/graficos/11044.png differ
diff --git a/compatibility/assets/data/graficos/11045.png b/compatibility/assets/data/graficos/11045.png
new file mode 100644
index 00000000..10885cf0
Binary files /dev/null and b/compatibility/assets/data/graficos/11045.png differ
diff --git a/compatibility/assets/data/graficos/11046.png b/compatibility/assets/data/graficos/11046.png
new file mode 100644
index 00000000..10efd960
Binary files /dev/null and b/compatibility/assets/data/graficos/11046.png differ
diff --git a/compatibility/assets/data/graficos/11047.png b/compatibility/assets/data/graficos/11047.png
new file mode 100644
index 00000000..7f039513
Binary files /dev/null and b/compatibility/assets/data/graficos/11047.png differ
diff --git a/compatibility/assets/data/graficos/11048.png b/compatibility/assets/data/graficos/11048.png
new file mode 100644
index 00000000..c4d2ce35
Binary files /dev/null and b/compatibility/assets/data/graficos/11048.png differ
diff --git a/compatibility/assets/data/graficos/11049.png b/compatibility/assets/data/graficos/11049.png
new file mode 100644
index 00000000..3e89a2dc
Binary files /dev/null and b/compatibility/assets/data/graficos/11049.png differ
diff --git a/compatibility/assets/data/graficos/11050.png b/compatibility/assets/data/graficos/11050.png
new file mode 100644
index 00000000..18a34743
Binary files /dev/null and b/compatibility/assets/data/graficos/11050.png differ
diff --git a/compatibility/assets/data/graficos/11051.png b/compatibility/assets/data/graficos/11051.png
new file mode 100644
index 00000000..90d88da6
Binary files /dev/null and b/compatibility/assets/data/graficos/11051.png differ
diff --git a/compatibility/assets/data/graficos/11052.png b/compatibility/assets/data/graficos/11052.png
new file mode 100644
index 00000000..80f2a645
Binary files /dev/null and b/compatibility/assets/data/graficos/11052.png differ
diff --git a/compatibility/assets/data/graficos/11053.png b/compatibility/assets/data/graficos/11053.png
new file mode 100644
index 00000000..a33790f6
Binary files /dev/null and b/compatibility/assets/data/graficos/11053.png differ
diff --git a/compatibility/assets/data/graficos/111.png b/compatibility/assets/data/graficos/111.png
new file mode 100644
index 00000000..e81b2cbc
Binary files /dev/null and b/compatibility/assets/data/graficos/111.png differ
diff --git a/compatibility/assets/data/graficos/112.png b/compatibility/assets/data/graficos/112.png
new file mode 100644
index 00000000..1c908229
Binary files /dev/null and b/compatibility/assets/data/graficos/112.png differ
diff --git a/compatibility/assets/data/graficos/113.png b/compatibility/assets/data/graficos/113.png
new file mode 100644
index 00000000..10200497
Binary files /dev/null and b/compatibility/assets/data/graficos/113.png differ
diff --git a/compatibility/assets/data/graficos/114.png b/compatibility/assets/data/graficos/114.png
new file mode 100644
index 00000000..12b5ba72
Binary files /dev/null and b/compatibility/assets/data/graficos/114.png differ
diff --git a/compatibility/assets/data/graficos/115.png b/compatibility/assets/data/graficos/115.png
new file mode 100644
index 00000000..df4ee43b
Binary files /dev/null and b/compatibility/assets/data/graficos/115.png differ
diff --git a/compatibility/assets/data/graficos/116.png b/compatibility/assets/data/graficos/116.png
new file mode 100644
index 00000000..b150b388
Binary files /dev/null and b/compatibility/assets/data/graficos/116.png differ
diff --git a/compatibility/assets/data/graficos/117.png b/compatibility/assets/data/graficos/117.png
new file mode 100644
index 00000000..65fc0d31
Binary files /dev/null and b/compatibility/assets/data/graficos/117.png differ
diff --git a/compatibility/assets/data/graficos/118.png b/compatibility/assets/data/graficos/118.png
new file mode 100644
index 00000000..777cc576
Binary files /dev/null and b/compatibility/assets/data/graficos/118.png differ
diff --git a/compatibility/assets/data/graficos/119.png b/compatibility/assets/data/graficos/119.png
new file mode 100644
index 00000000..06743311
Binary files /dev/null and b/compatibility/assets/data/graficos/119.png differ
diff --git a/compatibility/assets/data/graficos/12.png b/compatibility/assets/data/graficos/12.png
new file mode 100644
index 00000000..6fc143dc
Binary files /dev/null and b/compatibility/assets/data/graficos/12.png differ
diff --git a/compatibility/assets/data/graficos/120.png b/compatibility/assets/data/graficos/120.png
new file mode 100644
index 00000000..2c5cfc17
Binary files /dev/null and b/compatibility/assets/data/graficos/120.png differ
diff --git a/compatibility/assets/data/graficos/12000.png b/compatibility/assets/data/graficos/12000.png
new file mode 100644
index 00000000..4f996d1a
Binary files /dev/null and b/compatibility/assets/data/graficos/12000.png differ
diff --git a/compatibility/assets/data/graficos/12001.png b/compatibility/assets/data/graficos/12001.png
new file mode 100644
index 00000000..0fc3a860
Binary files /dev/null and b/compatibility/assets/data/graficos/12001.png differ
diff --git a/compatibility/assets/data/graficos/12002.png b/compatibility/assets/data/graficos/12002.png
new file mode 100644
index 00000000..0fe1af91
Binary files /dev/null and b/compatibility/assets/data/graficos/12002.png differ
diff --git a/compatibility/assets/data/graficos/12003.png b/compatibility/assets/data/graficos/12003.png
new file mode 100644
index 00000000..c2280a30
Binary files /dev/null and b/compatibility/assets/data/graficos/12003.png differ
diff --git a/compatibility/assets/data/graficos/12004.png b/compatibility/assets/data/graficos/12004.png
new file mode 100644
index 00000000..230c0fbe
Binary files /dev/null and b/compatibility/assets/data/graficos/12004.png differ
diff --git a/compatibility/assets/data/graficos/12005.png b/compatibility/assets/data/graficos/12005.png
new file mode 100644
index 00000000..ceb299e3
Binary files /dev/null and b/compatibility/assets/data/graficos/12005.png differ
diff --git a/compatibility/assets/data/graficos/12006.png b/compatibility/assets/data/graficos/12006.png
new file mode 100644
index 00000000..fdee7e11
Binary files /dev/null and b/compatibility/assets/data/graficos/12006.png differ
diff --git a/compatibility/assets/data/graficos/12007.png b/compatibility/assets/data/graficos/12007.png
new file mode 100644
index 00000000..906f086f
Binary files /dev/null and b/compatibility/assets/data/graficos/12007.png differ
diff --git a/compatibility/assets/data/graficos/12008.png b/compatibility/assets/data/graficos/12008.png
new file mode 100644
index 00000000..75448669
Binary files /dev/null and b/compatibility/assets/data/graficos/12008.png differ
diff --git a/compatibility/assets/data/graficos/12009.png b/compatibility/assets/data/graficos/12009.png
new file mode 100644
index 00000000..17c3b161
Binary files /dev/null and b/compatibility/assets/data/graficos/12009.png differ
diff --git a/compatibility/assets/data/graficos/12010.png b/compatibility/assets/data/graficos/12010.png
new file mode 100644
index 00000000..82edb337
Binary files /dev/null and b/compatibility/assets/data/graficos/12010.png differ
diff --git a/compatibility/assets/data/graficos/12011.png b/compatibility/assets/data/graficos/12011.png
new file mode 100644
index 00000000..2e7e2438
Binary files /dev/null and b/compatibility/assets/data/graficos/12011.png differ
diff --git a/compatibility/assets/data/graficos/12012.png b/compatibility/assets/data/graficos/12012.png
new file mode 100644
index 00000000..2786d906
Binary files /dev/null and b/compatibility/assets/data/graficos/12012.png differ
diff --git a/compatibility/assets/data/graficos/12013.png b/compatibility/assets/data/graficos/12013.png
new file mode 100644
index 00000000..8381a039
Binary files /dev/null and b/compatibility/assets/data/graficos/12013.png differ
diff --git a/compatibility/assets/data/graficos/12014.png b/compatibility/assets/data/graficos/12014.png
new file mode 100644
index 00000000..c32a6520
Binary files /dev/null and b/compatibility/assets/data/graficos/12014.png differ
diff --git a/compatibility/assets/data/graficos/12015.png b/compatibility/assets/data/graficos/12015.png
new file mode 100644
index 00000000..d01b89e9
Binary files /dev/null and b/compatibility/assets/data/graficos/12015.png differ
diff --git a/compatibility/assets/data/graficos/12016.png b/compatibility/assets/data/graficos/12016.png
new file mode 100644
index 00000000..6703a0d9
Binary files /dev/null and b/compatibility/assets/data/graficos/12016.png differ
diff --git a/compatibility/assets/data/graficos/12017.png b/compatibility/assets/data/graficos/12017.png
new file mode 100644
index 00000000..5c6cb461
Binary files /dev/null and b/compatibility/assets/data/graficos/12017.png differ
diff --git a/compatibility/assets/data/graficos/12018.png b/compatibility/assets/data/graficos/12018.png
new file mode 100644
index 00000000..1e73dd99
Binary files /dev/null and b/compatibility/assets/data/graficos/12018.png differ
diff --git a/compatibility/assets/data/graficos/12019.png b/compatibility/assets/data/graficos/12019.png
new file mode 100644
index 00000000..8c695ce8
Binary files /dev/null and b/compatibility/assets/data/graficos/12019.png differ
diff --git a/compatibility/assets/data/graficos/12020.png b/compatibility/assets/data/graficos/12020.png
new file mode 100644
index 00000000..fb1b471e
Binary files /dev/null and b/compatibility/assets/data/graficos/12020.png differ
diff --git a/compatibility/assets/data/graficos/12021.png b/compatibility/assets/data/graficos/12021.png
new file mode 100644
index 00000000..fa29d883
Binary files /dev/null and b/compatibility/assets/data/graficos/12021.png differ
diff --git a/compatibility/assets/data/graficos/12022.png b/compatibility/assets/data/graficos/12022.png
new file mode 100644
index 00000000..ccd403f7
Binary files /dev/null and b/compatibility/assets/data/graficos/12022.png differ
diff --git a/compatibility/assets/data/graficos/12023.png b/compatibility/assets/data/graficos/12023.png
new file mode 100644
index 00000000..ba83a968
Binary files /dev/null and b/compatibility/assets/data/graficos/12023.png differ
diff --git a/compatibility/assets/data/graficos/12024.png b/compatibility/assets/data/graficos/12024.png
new file mode 100644
index 00000000..6a92bd34
Binary files /dev/null and b/compatibility/assets/data/graficos/12024.png differ
diff --git a/compatibility/assets/data/graficos/12025.png b/compatibility/assets/data/graficos/12025.png
new file mode 100644
index 00000000..493f1556
Binary files /dev/null and b/compatibility/assets/data/graficos/12025.png differ
diff --git a/compatibility/assets/data/graficos/12026.png b/compatibility/assets/data/graficos/12026.png
new file mode 100644
index 00000000..8ef1ec21
Binary files /dev/null and b/compatibility/assets/data/graficos/12026.png differ
diff --git a/compatibility/assets/data/graficos/12027.png b/compatibility/assets/data/graficos/12027.png
new file mode 100644
index 00000000..d59ee192
Binary files /dev/null and b/compatibility/assets/data/graficos/12027.png differ
diff --git a/compatibility/assets/data/graficos/12028.png b/compatibility/assets/data/graficos/12028.png
new file mode 100644
index 00000000..eeb714fe
Binary files /dev/null and b/compatibility/assets/data/graficos/12028.png differ
diff --git a/compatibility/assets/data/graficos/12029.png b/compatibility/assets/data/graficos/12029.png
new file mode 100644
index 00000000..a19848eb
Binary files /dev/null and b/compatibility/assets/data/graficos/12029.png differ
diff --git a/compatibility/assets/data/graficos/12030.png b/compatibility/assets/data/graficos/12030.png
new file mode 100644
index 00000000..c19bfe08
Binary files /dev/null and b/compatibility/assets/data/graficos/12030.png differ
diff --git a/compatibility/assets/data/graficos/12031.png b/compatibility/assets/data/graficos/12031.png
new file mode 100644
index 00000000..5191677a
Binary files /dev/null and b/compatibility/assets/data/graficos/12031.png differ
diff --git a/compatibility/assets/data/graficos/12032.png b/compatibility/assets/data/graficos/12032.png
new file mode 100644
index 00000000..4208ec6c
Binary files /dev/null and b/compatibility/assets/data/graficos/12032.png differ
diff --git a/compatibility/assets/data/graficos/12033.png b/compatibility/assets/data/graficos/12033.png
new file mode 100644
index 00000000..112ea07c
Binary files /dev/null and b/compatibility/assets/data/graficos/12033.png differ
diff --git a/compatibility/assets/data/graficos/12034.png b/compatibility/assets/data/graficos/12034.png
new file mode 100644
index 00000000..24dd94b2
Binary files /dev/null and b/compatibility/assets/data/graficos/12034.png differ
diff --git a/compatibility/assets/data/graficos/12035.png b/compatibility/assets/data/graficos/12035.png
new file mode 100644
index 00000000..911a000a
Binary files /dev/null and b/compatibility/assets/data/graficos/12035.png differ
diff --git a/compatibility/assets/data/graficos/12036.png b/compatibility/assets/data/graficos/12036.png
new file mode 100644
index 00000000..2e7b9d8b
Binary files /dev/null and b/compatibility/assets/data/graficos/12036.png differ
diff --git a/compatibility/assets/data/graficos/12037.png b/compatibility/assets/data/graficos/12037.png
new file mode 100644
index 00000000..2d1dcb41
Binary files /dev/null and b/compatibility/assets/data/graficos/12037.png differ
diff --git a/compatibility/assets/data/graficos/12038.png b/compatibility/assets/data/graficos/12038.png
new file mode 100644
index 00000000..23c385a0
Binary files /dev/null and b/compatibility/assets/data/graficos/12038.png differ
diff --git a/compatibility/assets/data/graficos/12039.png b/compatibility/assets/data/graficos/12039.png
new file mode 100644
index 00000000..74577d05
Binary files /dev/null and b/compatibility/assets/data/graficos/12039.png differ
diff --git a/compatibility/assets/data/graficos/12040.png b/compatibility/assets/data/graficos/12040.png
new file mode 100644
index 00000000..f14ff929
Binary files /dev/null and b/compatibility/assets/data/graficos/12040.png differ
diff --git a/compatibility/assets/data/graficos/12041.png b/compatibility/assets/data/graficos/12041.png
new file mode 100644
index 00000000..5a7ec013
Binary files /dev/null and b/compatibility/assets/data/graficos/12041.png differ
diff --git a/compatibility/assets/data/graficos/12042.png b/compatibility/assets/data/graficos/12042.png
new file mode 100644
index 00000000..32f0903d
Binary files /dev/null and b/compatibility/assets/data/graficos/12042.png differ
diff --git a/compatibility/assets/data/graficos/12043.png b/compatibility/assets/data/graficos/12043.png
new file mode 100644
index 00000000..8f23326b
Binary files /dev/null and b/compatibility/assets/data/graficos/12043.png differ
diff --git a/compatibility/assets/data/graficos/12044.png b/compatibility/assets/data/graficos/12044.png
new file mode 100644
index 00000000..fb1b471e
Binary files /dev/null and b/compatibility/assets/data/graficos/12044.png differ
diff --git a/compatibility/assets/data/graficos/12045.png b/compatibility/assets/data/graficos/12045.png
new file mode 100644
index 00000000..c97100ef
Binary files /dev/null and b/compatibility/assets/data/graficos/12045.png differ
diff --git a/compatibility/assets/data/graficos/12046.png b/compatibility/assets/data/graficos/12046.png
new file mode 100644
index 00000000..038bbdac
Binary files /dev/null and b/compatibility/assets/data/graficos/12046.png differ
diff --git a/compatibility/assets/data/graficos/12047.png b/compatibility/assets/data/graficos/12047.png
new file mode 100644
index 00000000..e953ab18
Binary files /dev/null and b/compatibility/assets/data/graficos/12047.png differ
diff --git a/compatibility/assets/data/graficos/12048.png b/compatibility/assets/data/graficos/12048.png
new file mode 100644
index 00000000..0e798f7c
Binary files /dev/null and b/compatibility/assets/data/graficos/12048.png differ
diff --git a/compatibility/assets/data/graficos/12049.png b/compatibility/assets/data/graficos/12049.png
new file mode 100644
index 00000000..fca442d6
Binary files /dev/null and b/compatibility/assets/data/graficos/12049.png differ
diff --git a/compatibility/assets/data/graficos/12050.png b/compatibility/assets/data/graficos/12050.png
new file mode 100644
index 00000000..4cb7d011
Binary files /dev/null and b/compatibility/assets/data/graficos/12050.png differ
diff --git a/compatibility/assets/data/graficos/12051.png b/compatibility/assets/data/graficos/12051.png
new file mode 100644
index 00000000..a5cf5d17
Binary files /dev/null and b/compatibility/assets/data/graficos/12051.png differ
diff --git a/compatibility/assets/data/graficos/12052.png b/compatibility/assets/data/graficos/12052.png
new file mode 100644
index 00000000..5f2181cc
Binary files /dev/null and b/compatibility/assets/data/graficos/12052.png differ
diff --git a/compatibility/assets/data/graficos/12053.png b/compatibility/assets/data/graficos/12053.png
new file mode 100644
index 00000000..7b52c82b
Binary files /dev/null and b/compatibility/assets/data/graficos/12053.png differ
diff --git a/compatibility/assets/data/graficos/12054.png b/compatibility/assets/data/graficos/12054.png
new file mode 100644
index 00000000..57b8ef9c
Binary files /dev/null and b/compatibility/assets/data/graficos/12054.png differ
diff --git a/compatibility/assets/data/graficos/12055.png b/compatibility/assets/data/graficos/12055.png
new file mode 100644
index 00000000..f6b3ea64
Binary files /dev/null and b/compatibility/assets/data/graficos/12055.png differ
diff --git a/compatibility/assets/data/graficos/12056.png b/compatibility/assets/data/graficos/12056.png
new file mode 100644
index 00000000..85cc6e42
Binary files /dev/null and b/compatibility/assets/data/graficos/12056.png differ
diff --git a/compatibility/assets/data/graficos/12057.png b/compatibility/assets/data/graficos/12057.png
new file mode 100644
index 00000000..fef82cbb
Binary files /dev/null and b/compatibility/assets/data/graficos/12057.png differ
diff --git a/compatibility/assets/data/graficos/12058.png b/compatibility/assets/data/graficos/12058.png
new file mode 100644
index 00000000..b013e2eb
Binary files /dev/null and b/compatibility/assets/data/graficos/12058.png differ
diff --git a/compatibility/assets/data/graficos/12059.png b/compatibility/assets/data/graficos/12059.png
new file mode 100644
index 00000000..8f20d5a0
Binary files /dev/null and b/compatibility/assets/data/graficos/12059.png differ
diff --git a/compatibility/assets/data/graficos/12060.png b/compatibility/assets/data/graficos/12060.png
new file mode 100644
index 00000000..dc5d7015
Binary files /dev/null and b/compatibility/assets/data/graficos/12060.png differ
diff --git a/compatibility/assets/data/graficos/12061.png b/compatibility/assets/data/graficos/12061.png
new file mode 100644
index 00000000..5a157179
Binary files /dev/null and b/compatibility/assets/data/graficos/12061.png differ
diff --git a/compatibility/assets/data/graficos/12062.png b/compatibility/assets/data/graficos/12062.png
new file mode 100644
index 00000000..069154ba
Binary files /dev/null and b/compatibility/assets/data/graficos/12062.png differ
diff --git a/compatibility/assets/data/graficos/12063.png b/compatibility/assets/data/graficos/12063.png
new file mode 100644
index 00000000..194fb8c3
Binary files /dev/null and b/compatibility/assets/data/graficos/12063.png differ
diff --git a/compatibility/assets/data/graficos/12064.png b/compatibility/assets/data/graficos/12064.png
new file mode 100644
index 00000000..bd4730fb
Binary files /dev/null and b/compatibility/assets/data/graficos/12064.png differ
diff --git a/compatibility/assets/data/graficos/12065.png b/compatibility/assets/data/graficos/12065.png
new file mode 100644
index 00000000..4f024161
Binary files /dev/null and b/compatibility/assets/data/graficos/12065.png differ
diff --git a/compatibility/assets/data/graficos/12066.png b/compatibility/assets/data/graficos/12066.png
new file mode 100644
index 00000000..fa98cd76
Binary files /dev/null and b/compatibility/assets/data/graficos/12066.png differ
diff --git a/compatibility/assets/data/graficos/12067.png b/compatibility/assets/data/graficos/12067.png
new file mode 100644
index 00000000..44aa6e83
Binary files /dev/null and b/compatibility/assets/data/graficos/12067.png differ
diff --git a/compatibility/assets/data/graficos/12068.png b/compatibility/assets/data/graficos/12068.png
new file mode 100644
index 00000000..c8d0dab5
Binary files /dev/null and b/compatibility/assets/data/graficos/12068.png differ
diff --git a/compatibility/assets/data/graficos/12069.png b/compatibility/assets/data/graficos/12069.png
new file mode 100644
index 00000000..154de094
Binary files /dev/null and b/compatibility/assets/data/graficos/12069.png differ
diff --git a/compatibility/assets/data/graficos/12070.png b/compatibility/assets/data/graficos/12070.png
new file mode 100644
index 00000000..82e0d6e8
Binary files /dev/null and b/compatibility/assets/data/graficos/12070.png differ
diff --git a/compatibility/assets/data/graficos/12071.png b/compatibility/assets/data/graficos/12071.png
new file mode 100644
index 00000000..1609a6c8
Binary files /dev/null and b/compatibility/assets/data/graficos/12071.png differ
diff --git a/compatibility/assets/data/graficos/12072.png b/compatibility/assets/data/graficos/12072.png
new file mode 100644
index 00000000..153f3225
Binary files /dev/null and b/compatibility/assets/data/graficos/12072.png differ
diff --git a/compatibility/assets/data/graficos/12073.png b/compatibility/assets/data/graficos/12073.png
new file mode 100644
index 00000000..03fe3311
Binary files /dev/null and b/compatibility/assets/data/graficos/12073.png differ
diff --git a/compatibility/assets/data/graficos/12074.png b/compatibility/assets/data/graficos/12074.png
new file mode 100644
index 00000000..9ca6fd0c
Binary files /dev/null and b/compatibility/assets/data/graficos/12074.png differ
diff --git a/compatibility/assets/data/graficos/12075.png b/compatibility/assets/data/graficos/12075.png
new file mode 100644
index 00000000..08aadd0d
Binary files /dev/null and b/compatibility/assets/data/graficos/12075.png differ
diff --git a/compatibility/assets/data/graficos/12076.png b/compatibility/assets/data/graficos/12076.png
new file mode 100644
index 00000000..954aa46e
Binary files /dev/null and b/compatibility/assets/data/graficos/12076.png differ
diff --git a/compatibility/assets/data/graficos/12077.png b/compatibility/assets/data/graficos/12077.png
new file mode 100644
index 00000000..d58bf5c7
Binary files /dev/null and b/compatibility/assets/data/graficos/12077.png differ
diff --git a/compatibility/assets/data/graficos/12078.png b/compatibility/assets/data/graficos/12078.png
new file mode 100644
index 00000000..9f08bc28
Binary files /dev/null and b/compatibility/assets/data/graficos/12078.png differ
diff --git a/compatibility/assets/data/graficos/12079.png b/compatibility/assets/data/graficos/12079.png
new file mode 100644
index 00000000..e3af61dc
Binary files /dev/null and b/compatibility/assets/data/graficos/12079.png differ
diff --git a/compatibility/assets/data/graficos/12080.png b/compatibility/assets/data/graficos/12080.png
new file mode 100644
index 00000000..7ea4dff1
Binary files /dev/null and b/compatibility/assets/data/graficos/12080.png differ
diff --git a/compatibility/assets/data/graficos/12081.png b/compatibility/assets/data/graficos/12081.png
new file mode 100644
index 00000000..09967d5d
Binary files /dev/null and b/compatibility/assets/data/graficos/12081.png differ
diff --git a/compatibility/assets/data/graficos/12082.png b/compatibility/assets/data/graficos/12082.png
new file mode 100644
index 00000000..bd734921
Binary files /dev/null and b/compatibility/assets/data/graficos/12082.png differ
diff --git a/compatibility/assets/data/graficos/12083.png b/compatibility/assets/data/graficos/12083.png
new file mode 100644
index 00000000..645d804e
Binary files /dev/null and b/compatibility/assets/data/graficos/12083.png differ
diff --git a/compatibility/assets/data/graficos/12084.png b/compatibility/assets/data/graficos/12084.png
new file mode 100644
index 00000000..1dd769a5
Binary files /dev/null and b/compatibility/assets/data/graficos/12084.png differ
diff --git a/compatibility/assets/data/graficos/12085.png b/compatibility/assets/data/graficos/12085.png
new file mode 100644
index 00000000..24adf2ce
Binary files /dev/null and b/compatibility/assets/data/graficos/12085.png differ
diff --git a/compatibility/assets/data/graficos/12086.png b/compatibility/assets/data/graficos/12086.png
new file mode 100644
index 00000000..b5c98ec9
Binary files /dev/null and b/compatibility/assets/data/graficos/12086.png differ
diff --git a/compatibility/assets/data/graficos/12087.png b/compatibility/assets/data/graficos/12087.png
new file mode 100644
index 00000000..636d503e
Binary files /dev/null and b/compatibility/assets/data/graficos/12087.png differ
diff --git a/compatibility/assets/data/graficos/12088.png b/compatibility/assets/data/graficos/12088.png
new file mode 100644
index 00000000..748679f9
Binary files /dev/null and b/compatibility/assets/data/graficos/12088.png differ
diff --git a/compatibility/assets/data/graficos/12089.png b/compatibility/assets/data/graficos/12089.png
new file mode 100644
index 00000000..205fb4c9
Binary files /dev/null and b/compatibility/assets/data/graficos/12089.png differ
diff --git a/compatibility/assets/data/graficos/12090.png b/compatibility/assets/data/graficos/12090.png
new file mode 100644
index 00000000..24adf2ce
Binary files /dev/null and b/compatibility/assets/data/graficos/12090.png differ
diff --git a/compatibility/assets/data/graficos/12091.png b/compatibility/assets/data/graficos/12091.png
new file mode 100644
index 00000000..6da6e33f
Binary files /dev/null and b/compatibility/assets/data/graficos/12091.png differ
diff --git a/compatibility/assets/data/graficos/12092.png b/compatibility/assets/data/graficos/12092.png
new file mode 100644
index 00000000..b6766bfa
Binary files /dev/null and b/compatibility/assets/data/graficos/12092.png differ
diff --git a/compatibility/assets/data/graficos/12093.png b/compatibility/assets/data/graficos/12093.png
new file mode 100644
index 00000000..c868c6ca
Binary files /dev/null and b/compatibility/assets/data/graficos/12093.png differ
diff --git a/compatibility/assets/data/graficos/121.png b/compatibility/assets/data/graficos/121.png
new file mode 100644
index 00000000..46bc0972
Binary files /dev/null and b/compatibility/assets/data/graficos/121.png differ
diff --git a/compatibility/assets/data/graficos/12152.png b/compatibility/assets/data/graficos/12152.png
new file mode 100644
index 00000000..1d1501d8
Binary files /dev/null and b/compatibility/assets/data/graficos/12152.png differ
diff --git a/compatibility/assets/data/graficos/12173.png b/compatibility/assets/data/graficos/12173.png
new file mode 100644
index 00000000..9d4f7b68
Binary files /dev/null and b/compatibility/assets/data/graficos/12173.png differ
diff --git a/compatibility/assets/data/graficos/12174.png b/compatibility/assets/data/graficos/12174.png
new file mode 100644
index 00000000..bccf65b9
Binary files /dev/null and b/compatibility/assets/data/graficos/12174.png differ
diff --git a/compatibility/assets/data/graficos/12175.png b/compatibility/assets/data/graficos/12175.png
new file mode 100644
index 00000000..d361eeeb
Binary files /dev/null and b/compatibility/assets/data/graficos/12175.png differ
diff --git a/compatibility/assets/data/graficos/12176.png b/compatibility/assets/data/graficos/12176.png
new file mode 100644
index 00000000..a6b527c3
Binary files /dev/null and b/compatibility/assets/data/graficos/12176.png differ
diff --git a/compatibility/assets/data/graficos/122.png b/compatibility/assets/data/graficos/122.png
new file mode 100644
index 00000000..1a9e7cf3
Binary files /dev/null and b/compatibility/assets/data/graficos/122.png differ
diff --git a/compatibility/assets/data/graficos/123.png b/compatibility/assets/data/graficos/123.png
new file mode 100644
index 00000000..aa47660a
Binary files /dev/null and b/compatibility/assets/data/graficos/123.png differ
diff --git a/compatibility/assets/data/graficos/124.png b/compatibility/assets/data/graficos/124.png
new file mode 100644
index 00000000..27a4235e
Binary files /dev/null and b/compatibility/assets/data/graficos/124.png differ
diff --git a/compatibility/assets/data/graficos/125.png b/compatibility/assets/data/graficos/125.png
new file mode 100644
index 00000000..cabd2dad
Binary files /dev/null and b/compatibility/assets/data/graficos/125.png differ
diff --git a/compatibility/assets/data/graficos/126.png b/compatibility/assets/data/graficos/126.png
new file mode 100644
index 00000000..b2703125
Binary files /dev/null and b/compatibility/assets/data/graficos/126.png differ
diff --git a/compatibility/assets/data/graficos/127.png b/compatibility/assets/data/graficos/127.png
new file mode 100644
index 00000000..a84e0417
Binary files /dev/null and b/compatibility/assets/data/graficos/127.png differ
diff --git a/compatibility/assets/data/graficos/128.png b/compatibility/assets/data/graficos/128.png
new file mode 100644
index 00000000..fb3e5a2c
Binary files /dev/null and b/compatibility/assets/data/graficos/128.png differ
diff --git a/compatibility/assets/data/graficos/129.png b/compatibility/assets/data/graficos/129.png
new file mode 100644
index 00000000..7a2b817f
Binary files /dev/null and b/compatibility/assets/data/graficos/129.png differ
diff --git a/compatibility/assets/data/graficos/13.png b/compatibility/assets/data/graficos/13.png
new file mode 100644
index 00000000..51edcb48
Binary files /dev/null and b/compatibility/assets/data/graficos/13.png differ
diff --git a/compatibility/assets/data/graficos/130.png b/compatibility/assets/data/graficos/130.png
new file mode 100644
index 00000000..1e26da46
Binary files /dev/null and b/compatibility/assets/data/graficos/130.png differ
diff --git a/compatibility/assets/data/graficos/13000.png b/compatibility/assets/data/graficos/13000.png
new file mode 100644
index 00000000..be096d43
Binary files /dev/null and b/compatibility/assets/data/graficos/13000.png differ
diff --git a/compatibility/assets/data/graficos/13001.png b/compatibility/assets/data/graficos/13001.png
new file mode 100644
index 00000000..4cc1d1b8
Binary files /dev/null and b/compatibility/assets/data/graficos/13001.png differ
diff --git a/compatibility/assets/data/graficos/13002.png b/compatibility/assets/data/graficos/13002.png
new file mode 100644
index 00000000..911da669
Binary files /dev/null and b/compatibility/assets/data/graficos/13002.png differ
diff --git a/compatibility/assets/data/graficos/13003.png b/compatibility/assets/data/graficos/13003.png
new file mode 100644
index 00000000..8c63db68
Binary files /dev/null and b/compatibility/assets/data/graficos/13003.png differ
diff --git a/compatibility/assets/data/graficos/13004.png b/compatibility/assets/data/graficos/13004.png
new file mode 100644
index 00000000..1c2a1f12
Binary files /dev/null and b/compatibility/assets/data/graficos/13004.png differ
diff --git a/compatibility/assets/data/graficos/13005.png b/compatibility/assets/data/graficos/13005.png
new file mode 100644
index 00000000..d9cef305
Binary files /dev/null and b/compatibility/assets/data/graficos/13005.png differ
diff --git a/compatibility/assets/data/graficos/13006.png b/compatibility/assets/data/graficos/13006.png
new file mode 100644
index 00000000..1814071b
Binary files /dev/null and b/compatibility/assets/data/graficos/13006.png differ
diff --git a/compatibility/assets/data/graficos/13007.png b/compatibility/assets/data/graficos/13007.png
new file mode 100644
index 00000000..62be2fae
Binary files /dev/null and b/compatibility/assets/data/graficos/13007.png differ
diff --git a/compatibility/assets/data/graficos/13008.png b/compatibility/assets/data/graficos/13008.png
new file mode 100644
index 00000000..e479bbee
Binary files /dev/null and b/compatibility/assets/data/graficos/13008.png differ
diff --git a/compatibility/assets/data/graficos/13009.png b/compatibility/assets/data/graficos/13009.png
new file mode 100644
index 00000000..18a6c43b
Binary files /dev/null and b/compatibility/assets/data/graficos/13009.png differ
diff --git a/compatibility/assets/data/graficos/13010.png b/compatibility/assets/data/graficos/13010.png
new file mode 100644
index 00000000..79d89a24
Binary files /dev/null and b/compatibility/assets/data/graficos/13010.png differ
diff --git a/compatibility/assets/data/graficos/13011.png b/compatibility/assets/data/graficos/13011.png
new file mode 100644
index 00000000..f5fc630f
Binary files /dev/null and b/compatibility/assets/data/graficos/13011.png differ
diff --git a/compatibility/assets/data/graficos/13012.png b/compatibility/assets/data/graficos/13012.png
new file mode 100644
index 00000000..f58d1153
Binary files /dev/null and b/compatibility/assets/data/graficos/13012.png differ
diff --git a/compatibility/assets/data/graficos/13013.png b/compatibility/assets/data/graficos/13013.png
new file mode 100644
index 00000000..9cc0ac70
Binary files /dev/null and b/compatibility/assets/data/graficos/13013.png differ
diff --git a/compatibility/assets/data/graficos/13014.png b/compatibility/assets/data/graficos/13014.png
new file mode 100644
index 00000000..61f6e7cd
Binary files /dev/null and b/compatibility/assets/data/graficos/13014.png differ
diff --git a/compatibility/assets/data/graficos/13015.png b/compatibility/assets/data/graficos/13015.png
new file mode 100644
index 00000000..cbef0941
Binary files /dev/null and b/compatibility/assets/data/graficos/13015.png differ
diff --git a/compatibility/assets/data/graficos/13016.png b/compatibility/assets/data/graficos/13016.png
new file mode 100644
index 00000000..f67a7864
Binary files /dev/null and b/compatibility/assets/data/graficos/13016.png differ
diff --git a/compatibility/assets/data/graficos/13017.png b/compatibility/assets/data/graficos/13017.png
new file mode 100644
index 00000000..d41d8950
Binary files /dev/null and b/compatibility/assets/data/graficos/13017.png differ
diff --git a/compatibility/assets/data/graficos/13018.png b/compatibility/assets/data/graficos/13018.png
new file mode 100644
index 00000000..2fb4a7b0
Binary files /dev/null and b/compatibility/assets/data/graficos/13018.png differ
diff --git a/compatibility/assets/data/graficos/13019.png b/compatibility/assets/data/graficos/13019.png
new file mode 100644
index 00000000..b887fe89
Binary files /dev/null and b/compatibility/assets/data/graficos/13019.png differ
diff --git a/compatibility/assets/data/graficos/13020.png b/compatibility/assets/data/graficos/13020.png
new file mode 100644
index 00000000..120c2b2b
Binary files /dev/null and b/compatibility/assets/data/graficos/13020.png differ
diff --git a/compatibility/assets/data/graficos/13021.png b/compatibility/assets/data/graficos/13021.png
new file mode 100644
index 00000000..53a4f965
Binary files /dev/null and b/compatibility/assets/data/graficos/13021.png differ
diff --git a/compatibility/assets/data/graficos/13022.png b/compatibility/assets/data/graficos/13022.png
new file mode 100644
index 00000000..871e521a
Binary files /dev/null and b/compatibility/assets/data/graficos/13022.png differ
diff --git a/compatibility/assets/data/graficos/13023.png b/compatibility/assets/data/graficos/13023.png
new file mode 100644
index 00000000..261334f2
Binary files /dev/null and b/compatibility/assets/data/graficos/13023.png differ
diff --git a/compatibility/assets/data/graficos/13024.png b/compatibility/assets/data/graficos/13024.png
new file mode 100644
index 00000000..1db75a63
Binary files /dev/null and b/compatibility/assets/data/graficos/13024.png differ
diff --git a/compatibility/assets/data/graficos/13025.png b/compatibility/assets/data/graficos/13025.png
new file mode 100644
index 00000000..b4383ec5
Binary files /dev/null and b/compatibility/assets/data/graficos/13025.png differ
diff --git a/compatibility/assets/data/graficos/13026.png b/compatibility/assets/data/graficos/13026.png
new file mode 100644
index 00000000..b9091dcc
Binary files /dev/null and b/compatibility/assets/data/graficos/13026.png differ
diff --git a/compatibility/assets/data/graficos/13027.png b/compatibility/assets/data/graficos/13027.png
new file mode 100644
index 00000000..c8994040
Binary files /dev/null and b/compatibility/assets/data/graficos/13027.png differ
diff --git a/compatibility/assets/data/graficos/13028.png b/compatibility/assets/data/graficos/13028.png
new file mode 100644
index 00000000..2ac20cfb
Binary files /dev/null and b/compatibility/assets/data/graficos/13028.png differ
diff --git a/compatibility/assets/data/graficos/13029.png b/compatibility/assets/data/graficos/13029.png
new file mode 100644
index 00000000..2beab4dd
Binary files /dev/null and b/compatibility/assets/data/graficos/13029.png differ
diff --git a/compatibility/assets/data/graficos/13030.png b/compatibility/assets/data/graficos/13030.png
new file mode 100644
index 00000000..512d01c5
Binary files /dev/null and b/compatibility/assets/data/graficos/13030.png differ
diff --git a/compatibility/assets/data/graficos/13031.png b/compatibility/assets/data/graficos/13031.png
new file mode 100644
index 00000000..56d022dd
Binary files /dev/null and b/compatibility/assets/data/graficos/13031.png differ
diff --git a/compatibility/assets/data/graficos/131.png b/compatibility/assets/data/graficos/131.png
new file mode 100644
index 00000000..815ee054
Binary files /dev/null and b/compatibility/assets/data/graficos/131.png differ
diff --git a/compatibility/assets/data/graficos/13106.png b/compatibility/assets/data/graficos/13106.png
new file mode 100644
index 00000000..99780f06
Binary files /dev/null and b/compatibility/assets/data/graficos/13106.png differ
diff --git a/compatibility/assets/data/graficos/13107.png b/compatibility/assets/data/graficos/13107.png
new file mode 100644
index 00000000..adc92909
Binary files /dev/null and b/compatibility/assets/data/graficos/13107.png differ
diff --git a/compatibility/assets/data/graficos/132.png b/compatibility/assets/data/graficos/132.png
new file mode 100644
index 00000000..45093c61
Binary files /dev/null and b/compatibility/assets/data/graficos/132.png differ
diff --git a/compatibility/assets/data/graficos/133.png b/compatibility/assets/data/graficos/133.png
new file mode 100644
index 00000000..bbe37750
Binary files /dev/null and b/compatibility/assets/data/graficos/133.png differ
diff --git a/compatibility/assets/data/graficos/134.png b/compatibility/assets/data/graficos/134.png
new file mode 100644
index 00000000..d1600e8f
Binary files /dev/null and b/compatibility/assets/data/graficos/134.png differ
diff --git a/compatibility/assets/data/graficos/135.png b/compatibility/assets/data/graficos/135.png
new file mode 100644
index 00000000..e2e7c942
Binary files /dev/null and b/compatibility/assets/data/graficos/135.png differ
diff --git a/compatibility/assets/data/graficos/136.png b/compatibility/assets/data/graficos/136.png
new file mode 100644
index 00000000..072878e1
Binary files /dev/null and b/compatibility/assets/data/graficos/136.png differ
diff --git a/compatibility/assets/data/graficos/137.png b/compatibility/assets/data/graficos/137.png
new file mode 100644
index 00000000..7f1e1a18
Binary files /dev/null and b/compatibility/assets/data/graficos/137.png differ
diff --git a/compatibility/assets/data/graficos/138.png b/compatibility/assets/data/graficos/138.png
new file mode 100644
index 00000000..e110538e
Binary files /dev/null and b/compatibility/assets/data/graficos/138.png differ
diff --git a/compatibility/assets/data/graficos/139.png b/compatibility/assets/data/graficos/139.png
new file mode 100644
index 00000000..66abc9bf
Binary files /dev/null and b/compatibility/assets/data/graficos/139.png differ
diff --git a/compatibility/assets/data/graficos/14.png b/compatibility/assets/data/graficos/14.png
new file mode 100644
index 00000000..7c1bbd78
Binary files /dev/null and b/compatibility/assets/data/graficos/14.png differ
diff --git a/compatibility/assets/data/graficos/140.png b/compatibility/assets/data/graficos/140.png
new file mode 100644
index 00000000..e51c9baa
Binary files /dev/null and b/compatibility/assets/data/graficos/140.png differ
diff --git a/compatibility/assets/data/graficos/14000.png b/compatibility/assets/data/graficos/14000.png
new file mode 100644
index 00000000..fda422cf
Binary files /dev/null and b/compatibility/assets/data/graficos/14000.png differ
diff --git a/compatibility/assets/data/graficos/14001.png b/compatibility/assets/data/graficos/14001.png
new file mode 100644
index 00000000..cc7a50af
Binary files /dev/null and b/compatibility/assets/data/graficos/14001.png differ
diff --git a/compatibility/assets/data/graficos/14002.png b/compatibility/assets/data/graficos/14002.png
new file mode 100644
index 00000000..7cdc4b5d
Binary files /dev/null and b/compatibility/assets/data/graficos/14002.png differ
diff --git a/compatibility/assets/data/graficos/14003.png b/compatibility/assets/data/graficos/14003.png
new file mode 100644
index 00000000..002472b5
Binary files /dev/null and b/compatibility/assets/data/graficos/14003.png differ
diff --git a/compatibility/assets/data/graficos/14004.png b/compatibility/assets/data/graficos/14004.png
new file mode 100644
index 00000000..a895a26a
Binary files /dev/null and b/compatibility/assets/data/graficos/14004.png differ
diff --git a/compatibility/assets/data/graficos/14005.png b/compatibility/assets/data/graficos/14005.png
new file mode 100644
index 00000000..0fa35171
Binary files /dev/null and b/compatibility/assets/data/graficos/14005.png differ
diff --git a/compatibility/assets/data/graficos/14006.png b/compatibility/assets/data/graficos/14006.png
new file mode 100644
index 00000000..6df70f1f
Binary files /dev/null and b/compatibility/assets/data/graficos/14006.png differ
diff --git a/compatibility/assets/data/graficos/14007.png b/compatibility/assets/data/graficos/14007.png
new file mode 100644
index 00000000..b32e1a74
Binary files /dev/null and b/compatibility/assets/data/graficos/14007.png differ
diff --git a/compatibility/assets/data/graficos/14008.png b/compatibility/assets/data/graficos/14008.png
new file mode 100644
index 00000000..2f5c4428
Binary files /dev/null and b/compatibility/assets/data/graficos/14008.png differ
diff --git a/compatibility/assets/data/graficos/14009.png b/compatibility/assets/data/graficos/14009.png
new file mode 100644
index 00000000..0f3845af
Binary files /dev/null and b/compatibility/assets/data/graficos/14009.png differ
diff --git a/compatibility/assets/data/graficos/14010.png b/compatibility/assets/data/graficos/14010.png
new file mode 100644
index 00000000..c8d049a5
Binary files /dev/null and b/compatibility/assets/data/graficos/14010.png differ
diff --git a/compatibility/assets/data/graficos/14011.png b/compatibility/assets/data/graficos/14011.png
new file mode 100644
index 00000000..83788007
Binary files /dev/null and b/compatibility/assets/data/graficos/14011.png differ
diff --git a/compatibility/assets/data/graficos/14012.png b/compatibility/assets/data/graficos/14012.png
new file mode 100644
index 00000000..f16cf611
Binary files /dev/null and b/compatibility/assets/data/graficos/14012.png differ
diff --git a/compatibility/assets/data/graficos/14013.png b/compatibility/assets/data/graficos/14013.png
new file mode 100644
index 00000000..ee3039a4
Binary files /dev/null and b/compatibility/assets/data/graficos/14013.png differ
diff --git a/compatibility/assets/data/graficos/14014.png b/compatibility/assets/data/graficos/14014.png
new file mode 100644
index 00000000..6d3a5ce8
Binary files /dev/null and b/compatibility/assets/data/graficos/14014.png differ
diff --git a/compatibility/assets/data/graficos/14015.png b/compatibility/assets/data/graficos/14015.png
new file mode 100644
index 00000000..5641c96b
Binary files /dev/null and b/compatibility/assets/data/graficos/14015.png differ
diff --git a/compatibility/assets/data/graficos/14016.png b/compatibility/assets/data/graficos/14016.png
new file mode 100644
index 00000000..4b1bd4ed
Binary files /dev/null and b/compatibility/assets/data/graficos/14016.png differ
diff --git a/compatibility/assets/data/graficos/14017.png b/compatibility/assets/data/graficos/14017.png
new file mode 100644
index 00000000..828a65fd
Binary files /dev/null and b/compatibility/assets/data/graficos/14017.png differ
diff --git a/compatibility/assets/data/graficos/14018.png b/compatibility/assets/data/graficos/14018.png
new file mode 100644
index 00000000..be309c22
Binary files /dev/null and b/compatibility/assets/data/graficos/14018.png differ
diff --git a/compatibility/assets/data/graficos/14019.png b/compatibility/assets/data/graficos/14019.png
new file mode 100644
index 00000000..544ae249
Binary files /dev/null and b/compatibility/assets/data/graficos/14019.png differ
diff --git a/compatibility/assets/data/graficos/14020.png b/compatibility/assets/data/graficos/14020.png
new file mode 100644
index 00000000..b7f2156a
Binary files /dev/null and b/compatibility/assets/data/graficos/14020.png differ
diff --git a/compatibility/assets/data/graficos/14021.png b/compatibility/assets/data/graficos/14021.png
new file mode 100644
index 00000000..b5780bef
Binary files /dev/null and b/compatibility/assets/data/graficos/14021.png differ
diff --git a/compatibility/assets/data/graficos/14022.png b/compatibility/assets/data/graficos/14022.png
new file mode 100644
index 00000000..ba46ffd3
Binary files /dev/null and b/compatibility/assets/data/graficos/14022.png differ
diff --git a/compatibility/assets/data/graficos/14023.png b/compatibility/assets/data/graficos/14023.png
new file mode 100644
index 00000000..f1a38de9
Binary files /dev/null and b/compatibility/assets/data/graficos/14023.png differ
diff --git a/compatibility/assets/data/graficos/14024.png b/compatibility/assets/data/graficos/14024.png
new file mode 100644
index 00000000..57a91d3f
Binary files /dev/null and b/compatibility/assets/data/graficos/14024.png differ
diff --git a/compatibility/assets/data/graficos/14025.png b/compatibility/assets/data/graficos/14025.png
new file mode 100644
index 00000000..116d6a9c
Binary files /dev/null and b/compatibility/assets/data/graficos/14025.png differ
diff --git a/compatibility/assets/data/graficos/14026.png b/compatibility/assets/data/graficos/14026.png
new file mode 100644
index 00000000..9631386c
Binary files /dev/null and b/compatibility/assets/data/graficos/14026.png differ
diff --git a/compatibility/assets/data/graficos/14027.png b/compatibility/assets/data/graficos/14027.png
new file mode 100644
index 00000000..24b45f9c
Binary files /dev/null and b/compatibility/assets/data/graficos/14027.png differ
diff --git a/compatibility/assets/data/graficos/14028.png b/compatibility/assets/data/graficos/14028.png
new file mode 100644
index 00000000..824517c7
Binary files /dev/null and b/compatibility/assets/data/graficos/14028.png differ
diff --git a/compatibility/assets/data/graficos/14029.png b/compatibility/assets/data/graficos/14029.png
new file mode 100644
index 00000000..3ea177c6
Binary files /dev/null and b/compatibility/assets/data/graficos/14029.png differ
diff --git a/compatibility/assets/data/graficos/14030.png b/compatibility/assets/data/graficos/14030.png
new file mode 100644
index 00000000..e23a5318
Binary files /dev/null and b/compatibility/assets/data/graficos/14030.png differ
diff --git a/compatibility/assets/data/graficos/14031.png b/compatibility/assets/data/graficos/14031.png
new file mode 100644
index 00000000..8ef0c817
Binary files /dev/null and b/compatibility/assets/data/graficos/14031.png differ
diff --git a/compatibility/assets/data/graficos/14032.png b/compatibility/assets/data/graficos/14032.png
new file mode 100644
index 00000000..048c0abc
Binary files /dev/null and b/compatibility/assets/data/graficos/14032.png differ
diff --git a/compatibility/assets/data/graficos/14033.png b/compatibility/assets/data/graficos/14033.png
new file mode 100644
index 00000000..fe86d91e
Binary files /dev/null and b/compatibility/assets/data/graficos/14033.png differ
diff --git a/compatibility/assets/data/graficos/14034.png b/compatibility/assets/data/graficos/14034.png
new file mode 100644
index 00000000..4ce71985
Binary files /dev/null and b/compatibility/assets/data/graficos/14034.png differ
diff --git a/compatibility/assets/data/graficos/14035.png b/compatibility/assets/data/graficos/14035.png
new file mode 100644
index 00000000..1eb3c2aa
Binary files /dev/null and b/compatibility/assets/data/graficos/14035.png differ
diff --git a/compatibility/assets/data/graficos/14036.png b/compatibility/assets/data/graficos/14036.png
new file mode 100644
index 00000000..b02f3454
Binary files /dev/null and b/compatibility/assets/data/graficos/14036.png differ
diff --git a/compatibility/assets/data/graficos/14037.png b/compatibility/assets/data/graficos/14037.png
new file mode 100644
index 00000000..fa367b56
Binary files /dev/null and b/compatibility/assets/data/graficos/14037.png differ
diff --git a/compatibility/assets/data/graficos/14038.png b/compatibility/assets/data/graficos/14038.png
new file mode 100644
index 00000000..6a7abd57
Binary files /dev/null and b/compatibility/assets/data/graficos/14038.png differ
diff --git a/compatibility/assets/data/graficos/14039.png b/compatibility/assets/data/graficos/14039.png
new file mode 100644
index 00000000..22eb2cec
Binary files /dev/null and b/compatibility/assets/data/graficos/14039.png differ
diff --git a/compatibility/assets/data/graficos/141.png b/compatibility/assets/data/graficos/141.png
new file mode 100644
index 00000000..cb336079
Binary files /dev/null and b/compatibility/assets/data/graficos/141.png differ
diff --git a/compatibility/assets/data/graficos/142.png b/compatibility/assets/data/graficos/142.png
new file mode 100644
index 00000000..7da08517
Binary files /dev/null and b/compatibility/assets/data/graficos/142.png differ
diff --git a/compatibility/assets/data/graficos/143.png b/compatibility/assets/data/graficos/143.png
new file mode 100644
index 00000000..b8b24489
Binary files /dev/null and b/compatibility/assets/data/graficos/143.png differ
diff --git a/compatibility/assets/data/graficos/144.png b/compatibility/assets/data/graficos/144.png
new file mode 100644
index 00000000..580461a0
Binary files /dev/null and b/compatibility/assets/data/graficos/144.png differ
diff --git a/compatibility/assets/data/graficos/145.png b/compatibility/assets/data/graficos/145.png
new file mode 100644
index 00000000..2f5c16de
Binary files /dev/null and b/compatibility/assets/data/graficos/145.png differ
diff --git a/compatibility/assets/data/graficos/146.png b/compatibility/assets/data/graficos/146.png
new file mode 100644
index 00000000..cbd30662
Binary files /dev/null and b/compatibility/assets/data/graficos/146.png differ
diff --git a/compatibility/assets/data/graficos/147.png b/compatibility/assets/data/graficos/147.png
new file mode 100644
index 00000000..c51a7e9c
Binary files /dev/null and b/compatibility/assets/data/graficos/147.png differ
diff --git a/compatibility/assets/data/graficos/148.png b/compatibility/assets/data/graficos/148.png
new file mode 100644
index 00000000..9229597b
Binary files /dev/null and b/compatibility/assets/data/graficos/148.png differ
diff --git a/compatibility/assets/data/graficos/149.png b/compatibility/assets/data/graficos/149.png
new file mode 100644
index 00000000..512d720c
Binary files /dev/null and b/compatibility/assets/data/graficos/149.png differ
diff --git a/compatibility/assets/data/graficos/15.png b/compatibility/assets/data/graficos/15.png
new file mode 100644
index 00000000..edcae269
Binary files /dev/null and b/compatibility/assets/data/graficos/15.png differ
diff --git a/compatibility/assets/data/graficos/150.png b/compatibility/assets/data/graficos/150.png
new file mode 100644
index 00000000..fca1acfc
Binary files /dev/null and b/compatibility/assets/data/graficos/150.png differ
diff --git a/compatibility/assets/data/graficos/15000.png b/compatibility/assets/data/graficos/15000.png
new file mode 100644
index 00000000..3d0043b7
Binary files /dev/null and b/compatibility/assets/data/graficos/15000.png differ
diff --git a/compatibility/assets/data/graficos/15001.png b/compatibility/assets/data/graficos/15001.png
new file mode 100644
index 00000000..dc292e33
Binary files /dev/null and b/compatibility/assets/data/graficos/15001.png differ
diff --git a/compatibility/assets/data/graficos/15002.png b/compatibility/assets/data/graficos/15002.png
new file mode 100644
index 00000000..6daeb084
Binary files /dev/null and b/compatibility/assets/data/graficos/15002.png differ
diff --git a/compatibility/assets/data/graficos/15003.png b/compatibility/assets/data/graficos/15003.png
new file mode 100644
index 00000000..e93b5133
Binary files /dev/null and b/compatibility/assets/data/graficos/15003.png differ
diff --git a/compatibility/assets/data/graficos/15004.png b/compatibility/assets/data/graficos/15004.png
new file mode 100644
index 00000000..06ef6bfc
Binary files /dev/null and b/compatibility/assets/data/graficos/15004.png differ
diff --git a/compatibility/assets/data/graficos/15005.png b/compatibility/assets/data/graficos/15005.png
new file mode 100644
index 00000000..c7df9890
Binary files /dev/null and b/compatibility/assets/data/graficos/15005.png differ
diff --git a/compatibility/assets/data/graficos/15006.png b/compatibility/assets/data/graficos/15006.png
new file mode 100644
index 00000000..cca33b2b
Binary files /dev/null and b/compatibility/assets/data/graficos/15006.png differ
diff --git a/compatibility/assets/data/graficos/15007.png b/compatibility/assets/data/graficos/15007.png
new file mode 100644
index 00000000..dc2426c4
Binary files /dev/null and b/compatibility/assets/data/graficos/15007.png differ
diff --git a/compatibility/assets/data/graficos/15008.png b/compatibility/assets/data/graficos/15008.png
new file mode 100644
index 00000000..7326c505
Binary files /dev/null and b/compatibility/assets/data/graficos/15008.png differ
diff --git a/compatibility/assets/data/graficos/15009.png b/compatibility/assets/data/graficos/15009.png
new file mode 100644
index 00000000..16f9d5ed
Binary files /dev/null and b/compatibility/assets/data/graficos/15009.png differ
diff --git a/compatibility/assets/data/graficos/15010.png b/compatibility/assets/data/graficos/15010.png
new file mode 100644
index 00000000..0e9f6fdb
Binary files /dev/null and b/compatibility/assets/data/graficos/15010.png differ
diff --git a/compatibility/assets/data/graficos/15011.png b/compatibility/assets/data/graficos/15011.png
new file mode 100644
index 00000000..92c7699e
Binary files /dev/null and b/compatibility/assets/data/graficos/15011.png differ
diff --git a/compatibility/assets/data/graficos/15012.png b/compatibility/assets/data/graficos/15012.png
new file mode 100644
index 00000000..34595e76
Binary files /dev/null and b/compatibility/assets/data/graficos/15012.png differ
diff --git a/compatibility/assets/data/graficos/15013.png b/compatibility/assets/data/graficos/15013.png
new file mode 100644
index 00000000..5bfdfe61
Binary files /dev/null and b/compatibility/assets/data/graficos/15013.png differ
diff --git a/compatibility/assets/data/graficos/15014.png b/compatibility/assets/data/graficos/15014.png
new file mode 100644
index 00000000..c7f6e063
Binary files /dev/null and b/compatibility/assets/data/graficos/15014.png differ
diff --git a/compatibility/assets/data/graficos/15015.png b/compatibility/assets/data/graficos/15015.png
new file mode 100644
index 00000000..6e0495fe
Binary files /dev/null and b/compatibility/assets/data/graficos/15015.png differ
diff --git a/compatibility/assets/data/graficos/15016.png b/compatibility/assets/data/graficos/15016.png
new file mode 100644
index 00000000..30da9d94
Binary files /dev/null and b/compatibility/assets/data/graficos/15016.png differ
diff --git a/compatibility/assets/data/graficos/15017.png b/compatibility/assets/data/graficos/15017.png
new file mode 100644
index 00000000..a53daa0e
Binary files /dev/null and b/compatibility/assets/data/graficos/15017.png differ
diff --git a/compatibility/assets/data/graficos/15018.png b/compatibility/assets/data/graficos/15018.png
new file mode 100644
index 00000000..5c16ed0b
Binary files /dev/null and b/compatibility/assets/data/graficos/15018.png differ
diff --git a/compatibility/assets/data/graficos/15019.png b/compatibility/assets/data/graficos/15019.png
new file mode 100644
index 00000000..31502cf2
Binary files /dev/null and b/compatibility/assets/data/graficos/15019.png differ
diff --git a/compatibility/assets/data/graficos/15020.png b/compatibility/assets/data/graficos/15020.png
new file mode 100644
index 00000000..b6cdbbea
Binary files /dev/null and b/compatibility/assets/data/graficos/15020.png differ
diff --git a/compatibility/assets/data/graficos/15021.png b/compatibility/assets/data/graficos/15021.png
new file mode 100644
index 00000000..a0c12b18
Binary files /dev/null and b/compatibility/assets/data/graficos/15021.png differ
diff --git a/compatibility/assets/data/graficos/15022.png b/compatibility/assets/data/graficos/15022.png
new file mode 100644
index 00000000..7f988768
Binary files /dev/null and b/compatibility/assets/data/graficos/15022.png differ
diff --git a/compatibility/assets/data/graficos/15023.png b/compatibility/assets/data/graficos/15023.png
new file mode 100644
index 00000000..2fea4364
Binary files /dev/null and b/compatibility/assets/data/graficos/15023.png differ
diff --git a/compatibility/assets/data/graficos/15024.png b/compatibility/assets/data/graficos/15024.png
new file mode 100644
index 00000000..1c114696
Binary files /dev/null and b/compatibility/assets/data/graficos/15024.png differ
diff --git a/compatibility/assets/data/graficos/15025.png b/compatibility/assets/data/graficos/15025.png
new file mode 100644
index 00000000..e60c0efb
Binary files /dev/null and b/compatibility/assets/data/graficos/15025.png differ
diff --git a/compatibility/assets/data/graficos/15026.png b/compatibility/assets/data/graficos/15026.png
new file mode 100644
index 00000000..41a69cb5
Binary files /dev/null and b/compatibility/assets/data/graficos/15026.png differ
diff --git a/compatibility/assets/data/graficos/15027.png b/compatibility/assets/data/graficos/15027.png
new file mode 100644
index 00000000..85d6d092
Binary files /dev/null and b/compatibility/assets/data/graficos/15027.png differ
diff --git a/compatibility/assets/data/graficos/15028.png b/compatibility/assets/data/graficos/15028.png
new file mode 100644
index 00000000..41fd86da
Binary files /dev/null and b/compatibility/assets/data/graficos/15028.png differ
diff --git a/compatibility/assets/data/graficos/15029.png b/compatibility/assets/data/graficos/15029.png
new file mode 100644
index 00000000..122445d9
Binary files /dev/null and b/compatibility/assets/data/graficos/15029.png differ
diff --git a/compatibility/assets/data/graficos/15030.png b/compatibility/assets/data/graficos/15030.png
new file mode 100644
index 00000000..0bd5582c
Binary files /dev/null and b/compatibility/assets/data/graficos/15030.png differ
diff --git a/compatibility/assets/data/graficos/15031.png b/compatibility/assets/data/graficos/15031.png
new file mode 100644
index 00000000..1e5ab445
Binary files /dev/null and b/compatibility/assets/data/graficos/15031.png differ
diff --git a/compatibility/assets/data/graficos/15032.png b/compatibility/assets/data/graficos/15032.png
new file mode 100644
index 00000000..1d1295cf
Binary files /dev/null and b/compatibility/assets/data/graficos/15032.png differ
diff --git a/compatibility/assets/data/graficos/15033.png b/compatibility/assets/data/graficos/15033.png
new file mode 100644
index 00000000..472a6e79
Binary files /dev/null and b/compatibility/assets/data/graficos/15033.png differ
diff --git a/compatibility/assets/data/graficos/15034.png b/compatibility/assets/data/graficos/15034.png
new file mode 100644
index 00000000..1db8104e
Binary files /dev/null and b/compatibility/assets/data/graficos/15034.png differ
diff --git a/compatibility/assets/data/graficos/15035.png b/compatibility/assets/data/graficos/15035.png
new file mode 100644
index 00000000..1aec52c2
Binary files /dev/null and b/compatibility/assets/data/graficos/15035.png differ
diff --git a/compatibility/assets/data/graficos/15036.png b/compatibility/assets/data/graficos/15036.png
new file mode 100644
index 00000000..bb4372e3
Binary files /dev/null and b/compatibility/assets/data/graficos/15036.png differ
diff --git a/compatibility/assets/data/graficos/15037.png b/compatibility/assets/data/graficos/15037.png
new file mode 100644
index 00000000..6a7db769
Binary files /dev/null and b/compatibility/assets/data/graficos/15037.png differ
diff --git a/compatibility/assets/data/graficos/15038.png b/compatibility/assets/data/graficos/15038.png
new file mode 100644
index 00000000..4f7e5971
Binary files /dev/null and b/compatibility/assets/data/graficos/15038.png differ
diff --git a/compatibility/assets/data/graficos/15039.png b/compatibility/assets/data/graficos/15039.png
new file mode 100644
index 00000000..2b90ff74
Binary files /dev/null and b/compatibility/assets/data/graficos/15039.png differ
diff --git a/compatibility/assets/data/graficos/15040.png b/compatibility/assets/data/graficos/15040.png
new file mode 100644
index 00000000..7693d0b9
Binary files /dev/null and b/compatibility/assets/data/graficos/15040.png differ
diff --git a/compatibility/assets/data/graficos/15041.png b/compatibility/assets/data/graficos/15041.png
new file mode 100644
index 00000000..155b98ba
Binary files /dev/null and b/compatibility/assets/data/graficos/15041.png differ
diff --git a/compatibility/assets/data/graficos/15042.png b/compatibility/assets/data/graficos/15042.png
new file mode 100644
index 00000000..c2a44def
Binary files /dev/null and b/compatibility/assets/data/graficos/15042.png differ
diff --git a/compatibility/assets/data/graficos/15043.png b/compatibility/assets/data/graficos/15043.png
new file mode 100644
index 00000000..29e0a5d0
Binary files /dev/null and b/compatibility/assets/data/graficos/15043.png differ
diff --git a/compatibility/assets/data/graficos/15044.png b/compatibility/assets/data/graficos/15044.png
new file mode 100644
index 00000000..fe343645
Binary files /dev/null and b/compatibility/assets/data/graficos/15044.png differ
diff --git a/compatibility/assets/data/graficos/15045.png b/compatibility/assets/data/graficos/15045.png
new file mode 100644
index 00000000..59471624
Binary files /dev/null and b/compatibility/assets/data/graficos/15045.png differ
diff --git a/compatibility/assets/data/graficos/15046.png b/compatibility/assets/data/graficos/15046.png
new file mode 100644
index 00000000..3ad79481
Binary files /dev/null and b/compatibility/assets/data/graficos/15046.png differ
diff --git a/compatibility/assets/data/graficos/15047.png b/compatibility/assets/data/graficos/15047.png
new file mode 100644
index 00000000..f06f8b82
Binary files /dev/null and b/compatibility/assets/data/graficos/15047.png differ
diff --git a/compatibility/assets/data/graficos/15048.png b/compatibility/assets/data/graficos/15048.png
new file mode 100644
index 00000000..50cf8069
Binary files /dev/null and b/compatibility/assets/data/graficos/15048.png differ
diff --git a/compatibility/assets/data/graficos/15049.png b/compatibility/assets/data/graficos/15049.png
new file mode 100644
index 00000000..34df5b72
Binary files /dev/null and b/compatibility/assets/data/graficos/15049.png differ
diff --git a/compatibility/assets/data/graficos/15050.png b/compatibility/assets/data/graficos/15050.png
new file mode 100644
index 00000000..9a42728b
Binary files /dev/null and b/compatibility/assets/data/graficos/15050.png differ
diff --git a/compatibility/assets/data/graficos/15051.png b/compatibility/assets/data/graficos/15051.png
new file mode 100644
index 00000000..bce1b7df
Binary files /dev/null and b/compatibility/assets/data/graficos/15051.png differ
diff --git a/compatibility/assets/data/graficos/15052.png b/compatibility/assets/data/graficos/15052.png
new file mode 100644
index 00000000..e0540208
Binary files /dev/null and b/compatibility/assets/data/graficos/15052.png differ
diff --git a/compatibility/assets/data/graficos/15053.png b/compatibility/assets/data/graficos/15053.png
new file mode 100644
index 00000000..8e74b7d1
Binary files /dev/null and b/compatibility/assets/data/graficos/15053.png differ
diff --git a/compatibility/assets/data/graficos/15054.png b/compatibility/assets/data/graficos/15054.png
new file mode 100644
index 00000000..2cbab5c4
Binary files /dev/null and b/compatibility/assets/data/graficos/15054.png differ
diff --git a/compatibility/assets/data/graficos/15055.png b/compatibility/assets/data/graficos/15055.png
new file mode 100644
index 00000000..1a0f9e8a
Binary files /dev/null and b/compatibility/assets/data/graficos/15055.png differ
diff --git a/compatibility/assets/data/graficos/15056.png b/compatibility/assets/data/graficos/15056.png
new file mode 100644
index 00000000..d1a89aaf
Binary files /dev/null and b/compatibility/assets/data/graficos/15056.png differ
diff --git a/compatibility/assets/data/graficos/15057.png b/compatibility/assets/data/graficos/15057.png
new file mode 100644
index 00000000..cfb8528a
Binary files /dev/null and b/compatibility/assets/data/graficos/15057.png differ
diff --git a/compatibility/assets/data/graficos/15058.png b/compatibility/assets/data/graficos/15058.png
new file mode 100644
index 00000000..ea5f5f40
Binary files /dev/null and b/compatibility/assets/data/graficos/15058.png differ
diff --git a/compatibility/assets/data/graficos/15059.png b/compatibility/assets/data/graficos/15059.png
new file mode 100644
index 00000000..d0f22a3f
Binary files /dev/null and b/compatibility/assets/data/graficos/15059.png differ
diff --git a/compatibility/assets/data/graficos/15060.png b/compatibility/assets/data/graficos/15060.png
new file mode 100644
index 00000000..c5b90727
Binary files /dev/null and b/compatibility/assets/data/graficos/15060.png differ
diff --git a/compatibility/assets/data/graficos/15061.png b/compatibility/assets/data/graficos/15061.png
new file mode 100644
index 00000000..d53b429a
Binary files /dev/null and b/compatibility/assets/data/graficos/15061.png differ
diff --git a/compatibility/assets/data/graficos/15062.png b/compatibility/assets/data/graficos/15062.png
new file mode 100644
index 00000000..eb1d8c9a
Binary files /dev/null and b/compatibility/assets/data/graficos/15062.png differ
diff --git a/compatibility/assets/data/graficos/15063.png b/compatibility/assets/data/graficos/15063.png
new file mode 100644
index 00000000..83e63690
Binary files /dev/null and b/compatibility/assets/data/graficos/15063.png differ
diff --git a/compatibility/assets/data/graficos/15064.png b/compatibility/assets/data/graficos/15064.png
new file mode 100644
index 00000000..bdfe7d2f
Binary files /dev/null and b/compatibility/assets/data/graficos/15064.png differ
diff --git a/compatibility/assets/data/graficos/15065.png b/compatibility/assets/data/graficos/15065.png
new file mode 100644
index 00000000..920a97a6
Binary files /dev/null and b/compatibility/assets/data/graficos/15065.png differ
diff --git a/compatibility/assets/data/graficos/15066.png b/compatibility/assets/data/graficos/15066.png
new file mode 100644
index 00000000..5dd2c7b2
Binary files /dev/null and b/compatibility/assets/data/graficos/15066.png differ
diff --git a/compatibility/assets/data/graficos/15067.png b/compatibility/assets/data/graficos/15067.png
new file mode 100644
index 00000000..12e88b08
Binary files /dev/null and b/compatibility/assets/data/graficos/15067.png differ
diff --git a/compatibility/assets/data/graficos/15068.png b/compatibility/assets/data/graficos/15068.png
new file mode 100644
index 00000000..83ebfd96
Binary files /dev/null and b/compatibility/assets/data/graficos/15068.png differ
diff --git a/compatibility/assets/data/graficos/15069.png b/compatibility/assets/data/graficos/15069.png
new file mode 100644
index 00000000..713637e0
Binary files /dev/null and b/compatibility/assets/data/graficos/15069.png differ
diff --git a/compatibility/assets/data/graficos/15070.png b/compatibility/assets/data/graficos/15070.png
new file mode 100644
index 00000000..5e99a3a3
Binary files /dev/null and b/compatibility/assets/data/graficos/15070.png differ
diff --git a/compatibility/assets/data/graficos/15071.png b/compatibility/assets/data/graficos/15071.png
new file mode 100644
index 00000000..65d65bbf
Binary files /dev/null and b/compatibility/assets/data/graficos/15071.png differ
diff --git a/compatibility/assets/data/graficos/15072.png b/compatibility/assets/data/graficos/15072.png
new file mode 100644
index 00000000..9169b6c7
Binary files /dev/null and b/compatibility/assets/data/graficos/15072.png differ
diff --git a/compatibility/assets/data/graficos/15073.png b/compatibility/assets/data/graficos/15073.png
new file mode 100644
index 00000000..91595060
Binary files /dev/null and b/compatibility/assets/data/graficos/15073.png differ
diff --git a/compatibility/assets/data/graficos/15074.png b/compatibility/assets/data/graficos/15074.png
new file mode 100644
index 00000000..78cf155f
Binary files /dev/null and b/compatibility/assets/data/graficos/15074.png differ
diff --git a/compatibility/assets/data/graficos/15075.png b/compatibility/assets/data/graficos/15075.png
new file mode 100644
index 00000000..4127866a
Binary files /dev/null and b/compatibility/assets/data/graficos/15075.png differ
diff --git a/compatibility/assets/data/graficos/15076.png b/compatibility/assets/data/graficos/15076.png
new file mode 100644
index 00000000..4a514072
Binary files /dev/null and b/compatibility/assets/data/graficos/15076.png differ
diff --git a/compatibility/assets/data/graficos/15077.png b/compatibility/assets/data/graficos/15077.png
new file mode 100644
index 00000000..b32ef348
Binary files /dev/null and b/compatibility/assets/data/graficos/15077.png differ
diff --git a/compatibility/assets/data/graficos/15078.png b/compatibility/assets/data/graficos/15078.png
new file mode 100644
index 00000000..371f5fa8
Binary files /dev/null and b/compatibility/assets/data/graficos/15078.png differ
diff --git a/compatibility/assets/data/graficos/15079.png b/compatibility/assets/data/graficos/15079.png
new file mode 100644
index 00000000..d0ca2479
Binary files /dev/null and b/compatibility/assets/data/graficos/15079.png differ
diff --git a/compatibility/assets/data/graficos/15080.png b/compatibility/assets/data/graficos/15080.png
new file mode 100644
index 00000000..0bd5582c
Binary files /dev/null and b/compatibility/assets/data/graficos/15080.png differ
diff --git a/compatibility/assets/data/graficos/15081.png b/compatibility/assets/data/graficos/15081.png
new file mode 100644
index 00000000..7c7b0682
Binary files /dev/null and b/compatibility/assets/data/graficos/15081.png differ
diff --git a/compatibility/assets/data/graficos/15082.png b/compatibility/assets/data/graficos/15082.png
new file mode 100644
index 00000000..b15276e8
Binary files /dev/null and b/compatibility/assets/data/graficos/15082.png differ
diff --git a/compatibility/assets/data/graficos/15083.png b/compatibility/assets/data/graficos/15083.png
new file mode 100644
index 00000000..fbaaea92
Binary files /dev/null and b/compatibility/assets/data/graficos/15083.png differ
diff --git a/compatibility/assets/data/graficos/15084.png b/compatibility/assets/data/graficos/15084.png
new file mode 100644
index 00000000..03ec82fb
Binary files /dev/null and b/compatibility/assets/data/graficos/15084.png differ
diff --git a/compatibility/assets/data/graficos/15085.png b/compatibility/assets/data/graficos/15085.png
new file mode 100644
index 00000000..a1f59761
Binary files /dev/null and b/compatibility/assets/data/graficos/15085.png differ
diff --git a/compatibility/assets/data/graficos/15086.png b/compatibility/assets/data/graficos/15086.png
new file mode 100644
index 00000000..bed88760
Binary files /dev/null and b/compatibility/assets/data/graficos/15086.png differ
diff --git a/compatibility/assets/data/graficos/15087.png b/compatibility/assets/data/graficos/15087.png
new file mode 100644
index 00000000..364282e2
Binary files /dev/null and b/compatibility/assets/data/graficos/15087.png differ
diff --git a/compatibility/assets/data/graficos/15088.png b/compatibility/assets/data/graficos/15088.png
new file mode 100644
index 00000000..8c78ccf0
Binary files /dev/null and b/compatibility/assets/data/graficos/15088.png differ
diff --git a/compatibility/assets/data/graficos/15089.png b/compatibility/assets/data/graficos/15089.png
new file mode 100644
index 00000000..d9245db0
Binary files /dev/null and b/compatibility/assets/data/graficos/15089.png differ
diff --git a/compatibility/assets/data/graficos/15090.png b/compatibility/assets/data/graficos/15090.png
new file mode 100644
index 00000000..79c765a5
Binary files /dev/null and b/compatibility/assets/data/graficos/15090.png differ
diff --git a/compatibility/assets/data/graficos/15091.png b/compatibility/assets/data/graficos/15091.png
new file mode 100644
index 00000000..8eb52880
Binary files /dev/null and b/compatibility/assets/data/graficos/15091.png differ
diff --git a/compatibility/assets/data/graficos/15092.png b/compatibility/assets/data/graficos/15092.png
new file mode 100644
index 00000000..d49dd32c
Binary files /dev/null and b/compatibility/assets/data/graficos/15092.png differ
diff --git a/compatibility/assets/data/graficos/15093.png b/compatibility/assets/data/graficos/15093.png
new file mode 100644
index 00000000..c3dd0761
Binary files /dev/null and b/compatibility/assets/data/graficos/15093.png differ
diff --git a/compatibility/assets/data/graficos/15094.png b/compatibility/assets/data/graficos/15094.png
new file mode 100644
index 00000000..908b72d6
Binary files /dev/null and b/compatibility/assets/data/graficos/15094.png differ
diff --git a/compatibility/assets/data/graficos/15095.png b/compatibility/assets/data/graficos/15095.png
new file mode 100644
index 00000000..d91b77d0
Binary files /dev/null and b/compatibility/assets/data/graficos/15095.png differ
diff --git a/compatibility/assets/data/graficos/15096.png b/compatibility/assets/data/graficos/15096.png
new file mode 100644
index 00000000..4888b5b9
Binary files /dev/null and b/compatibility/assets/data/graficos/15096.png differ
diff --git a/compatibility/assets/data/graficos/15097.png b/compatibility/assets/data/graficos/15097.png
new file mode 100644
index 00000000..72c73b4b
Binary files /dev/null and b/compatibility/assets/data/graficos/15097.png differ
diff --git a/compatibility/assets/data/graficos/15098.png b/compatibility/assets/data/graficos/15098.png
new file mode 100644
index 00000000..eb38ad14
Binary files /dev/null and b/compatibility/assets/data/graficos/15098.png differ
diff --git a/compatibility/assets/data/graficos/15099.png b/compatibility/assets/data/graficos/15099.png
new file mode 100644
index 00000000..fd7a315e
Binary files /dev/null and b/compatibility/assets/data/graficos/15099.png differ
diff --git a/compatibility/assets/data/graficos/151.png b/compatibility/assets/data/graficos/151.png
new file mode 100644
index 00000000..2ae36b7c
Binary files /dev/null and b/compatibility/assets/data/graficos/151.png differ
diff --git a/compatibility/assets/data/graficos/15100.png b/compatibility/assets/data/graficos/15100.png
new file mode 100644
index 00000000..adc6254e
Binary files /dev/null and b/compatibility/assets/data/graficos/15100.png differ
diff --git a/compatibility/assets/data/graficos/15101.png b/compatibility/assets/data/graficos/15101.png
new file mode 100644
index 00000000..47f30a9a
Binary files /dev/null and b/compatibility/assets/data/graficos/15101.png differ
diff --git a/compatibility/assets/data/graficos/15102.png b/compatibility/assets/data/graficos/15102.png
new file mode 100644
index 00000000..8deed18c
Binary files /dev/null and b/compatibility/assets/data/graficos/15102.png differ
diff --git a/compatibility/assets/data/graficos/15103.png b/compatibility/assets/data/graficos/15103.png
new file mode 100644
index 00000000..37f7597c
Binary files /dev/null and b/compatibility/assets/data/graficos/15103.png differ
diff --git a/compatibility/assets/data/graficos/15104.png b/compatibility/assets/data/graficos/15104.png
new file mode 100644
index 00000000..4b158342
Binary files /dev/null and b/compatibility/assets/data/graficos/15104.png differ
diff --git a/compatibility/assets/data/graficos/15105.png b/compatibility/assets/data/graficos/15105.png
new file mode 100644
index 00000000..7db08fd3
Binary files /dev/null and b/compatibility/assets/data/graficos/15105.png differ
diff --git a/compatibility/assets/data/graficos/15106.png b/compatibility/assets/data/graficos/15106.png
new file mode 100644
index 00000000..f528e93e
Binary files /dev/null and b/compatibility/assets/data/graficos/15106.png differ
diff --git a/compatibility/assets/data/graficos/15107.png b/compatibility/assets/data/graficos/15107.png
new file mode 100644
index 00000000..ea5f5f40
Binary files /dev/null and b/compatibility/assets/data/graficos/15107.png differ
diff --git a/compatibility/assets/data/graficos/15108.png b/compatibility/assets/data/graficos/15108.png
new file mode 100644
index 00000000..709066d3
Binary files /dev/null and b/compatibility/assets/data/graficos/15108.png differ
diff --git a/compatibility/assets/data/graficos/15109.png b/compatibility/assets/data/graficos/15109.png
new file mode 100644
index 00000000..e7de74b8
Binary files /dev/null and b/compatibility/assets/data/graficos/15109.png differ
diff --git a/compatibility/assets/data/graficos/15110.png b/compatibility/assets/data/graficos/15110.png
new file mode 100644
index 00000000..202ba4c6
Binary files /dev/null and b/compatibility/assets/data/graficos/15110.png differ
diff --git a/compatibility/assets/data/graficos/15111.png b/compatibility/assets/data/graficos/15111.png
new file mode 100644
index 00000000..a293f187
Binary files /dev/null and b/compatibility/assets/data/graficos/15111.png differ
diff --git a/compatibility/assets/data/graficos/15112.png b/compatibility/assets/data/graficos/15112.png
new file mode 100644
index 00000000..54f60a7c
Binary files /dev/null and b/compatibility/assets/data/graficos/15112.png differ
diff --git a/compatibility/assets/data/graficos/15113.png b/compatibility/assets/data/graficos/15113.png
new file mode 100644
index 00000000..75817eda
Binary files /dev/null and b/compatibility/assets/data/graficos/15113.png differ
diff --git a/compatibility/assets/data/graficos/15114.png b/compatibility/assets/data/graficos/15114.png
new file mode 100644
index 00000000..7a64c7b7
Binary files /dev/null and b/compatibility/assets/data/graficos/15114.png differ
diff --git a/compatibility/assets/data/graficos/15115.png b/compatibility/assets/data/graficos/15115.png
new file mode 100644
index 00000000..636fef2a
Binary files /dev/null and b/compatibility/assets/data/graficos/15115.png differ
diff --git a/compatibility/assets/data/graficos/15116.png b/compatibility/assets/data/graficos/15116.png
new file mode 100644
index 00000000..9e17a1f8
Binary files /dev/null and b/compatibility/assets/data/graficos/15116.png differ
diff --git a/compatibility/assets/data/graficos/15117.png b/compatibility/assets/data/graficos/15117.png
new file mode 100644
index 00000000..f4ea6276
Binary files /dev/null and b/compatibility/assets/data/graficos/15117.png differ
diff --git a/compatibility/assets/data/graficos/15118.png b/compatibility/assets/data/graficos/15118.png
new file mode 100644
index 00000000..e8c60a34
Binary files /dev/null and b/compatibility/assets/data/graficos/15118.png differ
diff --git a/compatibility/assets/data/graficos/15119.png b/compatibility/assets/data/graficos/15119.png
new file mode 100644
index 00000000..6b731df6
Binary files /dev/null and b/compatibility/assets/data/graficos/15119.png differ
diff --git a/compatibility/assets/data/graficos/15120.png b/compatibility/assets/data/graficos/15120.png
new file mode 100644
index 00000000..4745c7d4
Binary files /dev/null and b/compatibility/assets/data/graficos/15120.png differ
diff --git a/compatibility/assets/data/graficos/15121.png b/compatibility/assets/data/graficos/15121.png
new file mode 100644
index 00000000..1a2080bd
Binary files /dev/null and b/compatibility/assets/data/graficos/15121.png differ
diff --git a/compatibility/assets/data/graficos/15122.png b/compatibility/assets/data/graficos/15122.png
new file mode 100644
index 00000000..970e98e3
Binary files /dev/null and b/compatibility/assets/data/graficos/15122.png differ
diff --git a/compatibility/assets/data/graficos/15123.png b/compatibility/assets/data/graficos/15123.png
new file mode 100644
index 00000000..6ff0fd84
Binary files /dev/null and b/compatibility/assets/data/graficos/15123.png differ
diff --git a/compatibility/assets/data/graficos/15124.png b/compatibility/assets/data/graficos/15124.png
new file mode 100644
index 00000000..3d8ca57d
Binary files /dev/null and b/compatibility/assets/data/graficos/15124.png differ
diff --git a/compatibility/assets/data/graficos/15125.png b/compatibility/assets/data/graficos/15125.png
new file mode 100644
index 00000000..250868e1
Binary files /dev/null and b/compatibility/assets/data/graficos/15125.png differ
diff --git a/compatibility/assets/data/graficos/15126.png b/compatibility/assets/data/graficos/15126.png
new file mode 100644
index 00000000..18014fee
Binary files /dev/null and b/compatibility/assets/data/graficos/15126.png differ
diff --git a/compatibility/assets/data/graficos/15127.png b/compatibility/assets/data/graficos/15127.png
new file mode 100644
index 00000000..6fb6eff5
Binary files /dev/null and b/compatibility/assets/data/graficos/15127.png differ
diff --git a/compatibility/assets/data/graficos/15128.png b/compatibility/assets/data/graficos/15128.png
new file mode 100644
index 00000000..c2c31536
Binary files /dev/null and b/compatibility/assets/data/graficos/15128.png differ
diff --git a/compatibility/assets/data/graficos/15129.png b/compatibility/assets/data/graficos/15129.png
new file mode 100644
index 00000000..c928b928
Binary files /dev/null and b/compatibility/assets/data/graficos/15129.png differ
diff --git a/compatibility/assets/data/graficos/15130.png b/compatibility/assets/data/graficos/15130.png
new file mode 100644
index 00000000..0f2a6f9d
Binary files /dev/null and b/compatibility/assets/data/graficos/15130.png differ
diff --git a/compatibility/assets/data/graficos/15131.png b/compatibility/assets/data/graficos/15131.png
new file mode 100644
index 00000000..c3b241f2
Binary files /dev/null and b/compatibility/assets/data/graficos/15131.png differ
diff --git a/compatibility/assets/data/graficos/15132.png b/compatibility/assets/data/graficos/15132.png
new file mode 100644
index 00000000..df4a8233
Binary files /dev/null and b/compatibility/assets/data/graficos/15132.png differ
diff --git a/compatibility/assets/data/graficos/15133.png b/compatibility/assets/data/graficos/15133.png
new file mode 100644
index 00000000..da6c1e64
Binary files /dev/null and b/compatibility/assets/data/graficos/15133.png differ
diff --git a/compatibility/assets/data/graficos/15134.png b/compatibility/assets/data/graficos/15134.png
new file mode 100644
index 00000000..615bc8b0
Binary files /dev/null and b/compatibility/assets/data/graficos/15134.png differ
diff --git a/compatibility/assets/data/graficos/15135.png b/compatibility/assets/data/graficos/15135.png
new file mode 100644
index 00000000..8ae085ad
Binary files /dev/null and b/compatibility/assets/data/graficos/15135.png differ
diff --git a/compatibility/assets/data/graficos/15136.png b/compatibility/assets/data/graficos/15136.png
new file mode 100644
index 00000000..9d7cabeb
Binary files /dev/null and b/compatibility/assets/data/graficos/15136.png differ
diff --git a/compatibility/assets/data/graficos/15137.png b/compatibility/assets/data/graficos/15137.png
new file mode 100644
index 00000000..6c7ecfcb
Binary files /dev/null and b/compatibility/assets/data/graficos/15137.png differ
diff --git a/compatibility/assets/data/graficos/15138.png b/compatibility/assets/data/graficos/15138.png
new file mode 100644
index 00000000..512215a3
Binary files /dev/null and b/compatibility/assets/data/graficos/15138.png differ
diff --git a/compatibility/assets/data/graficos/15139.png b/compatibility/assets/data/graficos/15139.png
new file mode 100644
index 00000000..438fbf7a
Binary files /dev/null and b/compatibility/assets/data/graficos/15139.png differ
diff --git a/compatibility/assets/data/graficos/15140.png b/compatibility/assets/data/graficos/15140.png
new file mode 100644
index 00000000..944e38c0
Binary files /dev/null and b/compatibility/assets/data/graficos/15140.png differ
diff --git a/compatibility/assets/data/graficos/15141.png b/compatibility/assets/data/graficos/15141.png
new file mode 100644
index 00000000..a8fbe5fd
Binary files /dev/null and b/compatibility/assets/data/graficos/15141.png differ
diff --git a/compatibility/assets/data/graficos/15142.png b/compatibility/assets/data/graficos/15142.png
new file mode 100644
index 00000000..83c42259
Binary files /dev/null and b/compatibility/assets/data/graficos/15142.png differ
diff --git a/compatibility/assets/data/graficos/15143.png b/compatibility/assets/data/graficos/15143.png
new file mode 100644
index 00000000..495f5df0
Binary files /dev/null and b/compatibility/assets/data/graficos/15143.png differ
diff --git a/compatibility/assets/data/graficos/15144.png b/compatibility/assets/data/graficos/15144.png
new file mode 100644
index 00000000..202006b8
Binary files /dev/null and b/compatibility/assets/data/graficos/15144.png differ
diff --git a/compatibility/assets/data/graficos/15145.png b/compatibility/assets/data/graficos/15145.png
new file mode 100644
index 00000000..7fee8494
Binary files /dev/null and b/compatibility/assets/data/graficos/15145.png differ
diff --git a/compatibility/assets/data/graficos/15146.png b/compatibility/assets/data/graficos/15146.png
new file mode 100644
index 00000000..9175220f
Binary files /dev/null and b/compatibility/assets/data/graficos/15146.png differ
diff --git a/compatibility/assets/data/graficos/15147.png b/compatibility/assets/data/graficos/15147.png
new file mode 100644
index 00000000..a2c3daf4
Binary files /dev/null and b/compatibility/assets/data/graficos/15147.png differ
diff --git a/compatibility/assets/data/graficos/15148.png b/compatibility/assets/data/graficos/15148.png
new file mode 100644
index 00000000..5b0de832
Binary files /dev/null and b/compatibility/assets/data/graficos/15148.png differ
diff --git a/compatibility/assets/data/graficos/15149.png b/compatibility/assets/data/graficos/15149.png
new file mode 100644
index 00000000..d5c58bde
Binary files /dev/null and b/compatibility/assets/data/graficos/15149.png differ
diff --git a/compatibility/assets/data/graficos/15150.png b/compatibility/assets/data/graficos/15150.png
new file mode 100644
index 00000000..edcbbc8f
Binary files /dev/null and b/compatibility/assets/data/graficos/15150.png differ
diff --git a/compatibility/assets/data/graficos/15151.png b/compatibility/assets/data/graficos/15151.png
new file mode 100644
index 00000000..58bd7406
Binary files /dev/null and b/compatibility/assets/data/graficos/15151.png differ
diff --git a/compatibility/assets/data/graficos/15152.png b/compatibility/assets/data/graficos/15152.png
new file mode 100644
index 00000000..dd8fd2dd
Binary files /dev/null and b/compatibility/assets/data/graficos/15152.png differ
diff --git a/compatibility/assets/data/graficos/15153.png b/compatibility/assets/data/graficos/15153.png
new file mode 100644
index 00000000..ba84dbc2
Binary files /dev/null and b/compatibility/assets/data/graficos/15153.png differ
diff --git a/compatibility/assets/data/graficos/15154.png b/compatibility/assets/data/graficos/15154.png
new file mode 100644
index 00000000..978fdc27
Binary files /dev/null and b/compatibility/assets/data/graficos/15154.png differ
diff --git a/compatibility/assets/data/graficos/15155.png b/compatibility/assets/data/graficos/15155.png
new file mode 100644
index 00000000..7f18ea4b
Binary files /dev/null and b/compatibility/assets/data/graficos/15155.png differ
diff --git a/compatibility/assets/data/graficos/15156.png b/compatibility/assets/data/graficos/15156.png
new file mode 100644
index 00000000..e7769d54
Binary files /dev/null and b/compatibility/assets/data/graficos/15156.png differ
diff --git a/compatibility/assets/data/graficos/15157.png b/compatibility/assets/data/graficos/15157.png
new file mode 100644
index 00000000..a0a783c6
Binary files /dev/null and b/compatibility/assets/data/graficos/15157.png differ
diff --git a/compatibility/assets/data/graficos/15158.png b/compatibility/assets/data/graficos/15158.png
new file mode 100644
index 00000000..c2eb4f5f
Binary files /dev/null and b/compatibility/assets/data/graficos/15158.png differ
diff --git a/compatibility/assets/data/graficos/15159.png b/compatibility/assets/data/graficos/15159.png
new file mode 100644
index 00000000..c0084990
Binary files /dev/null and b/compatibility/assets/data/graficos/15159.png differ
diff --git a/compatibility/assets/data/graficos/15160.png b/compatibility/assets/data/graficos/15160.png
new file mode 100644
index 00000000..141b2b06
Binary files /dev/null and b/compatibility/assets/data/graficos/15160.png differ
diff --git a/compatibility/assets/data/graficos/15161.png b/compatibility/assets/data/graficos/15161.png
new file mode 100644
index 00000000..c757f96a
Binary files /dev/null and b/compatibility/assets/data/graficos/15161.png differ
diff --git a/compatibility/assets/data/graficos/15162.png b/compatibility/assets/data/graficos/15162.png
new file mode 100644
index 00000000..d8931554
Binary files /dev/null and b/compatibility/assets/data/graficos/15162.png differ
diff --git a/compatibility/assets/data/graficos/15163.png b/compatibility/assets/data/graficos/15163.png
new file mode 100644
index 00000000..75271695
Binary files /dev/null and b/compatibility/assets/data/graficos/15163.png differ
diff --git a/compatibility/assets/data/graficos/15164.png b/compatibility/assets/data/graficos/15164.png
new file mode 100644
index 00000000..3b05dec6
Binary files /dev/null and b/compatibility/assets/data/graficos/15164.png differ
diff --git a/compatibility/assets/data/graficos/15165.png b/compatibility/assets/data/graficos/15165.png
new file mode 100644
index 00000000..149ac27a
Binary files /dev/null and b/compatibility/assets/data/graficos/15165.png differ
diff --git a/compatibility/assets/data/graficos/15166.png b/compatibility/assets/data/graficos/15166.png
new file mode 100644
index 00000000..ea50b2c3
Binary files /dev/null and b/compatibility/assets/data/graficos/15166.png differ
diff --git a/compatibility/assets/data/graficos/15167.png b/compatibility/assets/data/graficos/15167.png
new file mode 100644
index 00000000..6058e5e5
Binary files /dev/null and b/compatibility/assets/data/graficos/15167.png differ
diff --git a/compatibility/assets/data/graficos/15168.png b/compatibility/assets/data/graficos/15168.png
new file mode 100644
index 00000000..e9d1cae7
Binary files /dev/null and b/compatibility/assets/data/graficos/15168.png differ
diff --git a/compatibility/assets/data/graficos/15169.png b/compatibility/assets/data/graficos/15169.png
new file mode 100644
index 00000000..7bad0aa9
Binary files /dev/null and b/compatibility/assets/data/graficos/15169.png differ
diff --git a/compatibility/assets/data/graficos/15170.png b/compatibility/assets/data/graficos/15170.png
new file mode 100644
index 00000000..949c3f9a
Binary files /dev/null and b/compatibility/assets/data/graficos/15170.png differ
diff --git a/compatibility/assets/data/graficos/15171.png b/compatibility/assets/data/graficos/15171.png
new file mode 100644
index 00000000..3576cd7d
Binary files /dev/null and b/compatibility/assets/data/graficos/15171.png differ
diff --git a/compatibility/assets/data/graficos/15172.png b/compatibility/assets/data/graficos/15172.png
new file mode 100644
index 00000000..4ec29711
Binary files /dev/null and b/compatibility/assets/data/graficos/15172.png differ
diff --git a/compatibility/assets/data/graficos/15173.png b/compatibility/assets/data/graficos/15173.png
new file mode 100644
index 00000000..d841edbf
Binary files /dev/null and b/compatibility/assets/data/graficos/15173.png differ
diff --git a/compatibility/assets/data/graficos/15174.png b/compatibility/assets/data/graficos/15174.png
new file mode 100644
index 00000000..d44afd20
Binary files /dev/null and b/compatibility/assets/data/graficos/15174.png differ
diff --git a/compatibility/assets/data/graficos/15175.png b/compatibility/assets/data/graficos/15175.png
new file mode 100644
index 00000000..5cf1f362
Binary files /dev/null and b/compatibility/assets/data/graficos/15175.png differ
diff --git a/compatibility/assets/data/graficos/15176.png b/compatibility/assets/data/graficos/15176.png
new file mode 100644
index 00000000..0d76a247
Binary files /dev/null and b/compatibility/assets/data/graficos/15176.png differ
diff --git a/compatibility/assets/data/graficos/15177.png b/compatibility/assets/data/graficos/15177.png
new file mode 100644
index 00000000..f96192d0
Binary files /dev/null and b/compatibility/assets/data/graficos/15177.png differ
diff --git a/compatibility/assets/data/graficos/15178.png b/compatibility/assets/data/graficos/15178.png
new file mode 100644
index 00000000..0c13160a
Binary files /dev/null and b/compatibility/assets/data/graficos/15178.png differ
diff --git a/compatibility/assets/data/graficos/15179.png b/compatibility/assets/data/graficos/15179.png
new file mode 100644
index 00000000..b34435ec
Binary files /dev/null and b/compatibility/assets/data/graficos/15179.png differ
diff --git a/compatibility/assets/data/graficos/15180.png b/compatibility/assets/data/graficos/15180.png
new file mode 100644
index 00000000..f9b5756f
Binary files /dev/null and b/compatibility/assets/data/graficos/15180.png differ
diff --git a/compatibility/assets/data/graficos/15181.png b/compatibility/assets/data/graficos/15181.png
new file mode 100644
index 00000000..8d4b8515
Binary files /dev/null and b/compatibility/assets/data/graficos/15181.png differ
diff --git a/compatibility/assets/data/graficos/15182.png b/compatibility/assets/data/graficos/15182.png
new file mode 100644
index 00000000..c9b694b0
Binary files /dev/null and b/compatibility/assets/data/graficos/15182.png differ
diff --git a/compatibility/assets/data/graficos/15183.png b/compatibility/assets/data/graficos/15183.png
new file mode 100644
index 00000000..775025fe
Binary files /dev/null and b/compatibility/assets/data/graficos/15183.png differ
diff --git a/compatibility/assets/data/graficos/15184.png b/compatibility/assets/data/graficos/15184.png
new file mode 100644
index 00000000..d2ad4ce6
Binary files /dev/null and b/compatibility/assets/data/graficos/15184.png differ
diff --git a/compatibility/assets/data/graficos/15185.png b/compatibility/assets/data/graficos/15185.png
new file mode 100644
index 00000000..4340922e
Binary files /dev/null and b/compatibility/assets/data/graficos/15185.png differ
diff --git a/compatibility/assets/data/graficos/15186.png b/compatibility/assets/data/graficos/15186.png
new file mode 100644
index 00000000..673318df
Binary files /dev/null and b/compatibility/assets/data/graficos/15186.png differ
diff --git a/compatibility/assets/data/graficos/15187.png b/compatibility/assets/data/graficos/15187.png
new file mode 100644
index 00000000..9a32c498
Binary files /dev/null and b/compatibility/assets/data/graficos/15187.png differ
diff --git a/compatibility/assets/data/graficos/15188.png b/compatibility/assets/data/graficos/15188.png
new file mode 100644
index 00000000..87f58d3e
Binary files /dev/null and b/compatibility/assets/data/graficos/15188.png differ
diff --git a/compatibility/assets/data/graficos/15189.png b/compatibility/assets/data/graficos/15189.png
new file mode 100644
index 00000000..f4c0a6e4
Binary files /dev/null and b/compatibility/assets/data/graficos/15189.png differ
diff --git a/compatibility/assets/data/graficos/15190.png b/compatibility/assets/data/graficos/15190.png
new file mode 100644
index 00000000..4d272aa8
Binary files /dev/null and b/compatibility/assets/data/graficos/15190.png differ
diff --git a/compatibility/assets/data/graficos/15191.png b/compatibility/assets/data/graficos/15191.png
new file mode 100644
index 00000000..2b47c023
Binary files /dev/null and b/compatibility/assets/data/graficos/15191.png differ
diff --git a/compatibility/assets/data/graficos/15192.png b/compatibility/assets/data/graficos/15192.png
new file mode 100644
index 00000000..d2115e0f
Binary files /dev/null and b/compatibility/assets/data/graficos/15192.png differ
diff --git a/compatibility/assets/data/graficos/15193.png b/compatibility/assets/data/graficos/15193.png
new file mode 100644
index 00000000..3e111c4f
Binary files /dev/null and b/compatibility/assets/data/graficos/15193.png differ
diff --git a/compatibility/assets/data/graficos/15194.png b/compatibility/assets/data/graficos/15194.png
new file mode 100644
index 00000000..5efabb54
Binary files /dev/null and b/compatibility/assets/data/graficos/15194.png differ
diff --git a/compatibility/assets/data/graficos/15195.png b/compatibility/assets/data/graficos/15195.png
new file mode 100644
index 00000000..4a7fdefc
Binary files /dev/null and b/compatibility/assets/data/graficos/15195.png differ
diff --git a/compatibility/assets/data/graficos/15196.png b/compatibility/assets/data/graficos/15196.png
new file mode 100644
index 00000000..560a139f
Binary files /dev/null and b/compatibility/assets/data/graficos/15196.png differ
diff --git a/compatibility/assets/data/graficos/15197.png b/compatibility/assets/data/graficos/15197.png
new file mode 100644
index 00000000..9c9fe4c4
Binary files /dev/null and b/compatibility/assets/data/graficos/15197.png differ
diff --git a/compatibility/assets/data/graficos/15198.png b/compatibility/assets/data/graficos/15198.png
new file mode 100644
index 00000000..3bc3c610
Binary files /dev/null and b/compatibility/assets/data/graficos/15198.png differ
diff --git a/compatibility/assets/data/graficos/15199.png b/compatibility/assets/data/graficos/15199.png
new file mode 100644
index 00000000..9a095802
Binary files /dev/null and b/compatibility/assets/data/graficos/15199.png differ
diff --git a/compatibility/assets/data/graficos/152.png b/compatibility/assets/data/graficos/152.png
new file mode 100644
index 00000000..b1529874
Binary files /dev/null and b/compatibility/assets/data/graficos/152.png differ
diff --git a/compatibility/assets/data/graficos/15200.png b/compatibility/assets/data/graficos/15200.png
new file mode 100644
index 00000000..bbc6c677
Binary files /dev/null and b/compatibility/assets/data/graficos/15200.png differ
diff --git a/compatibility/assets/data/graficos/15201.png b/compatibility/assets/data/graficos/15201.png
new file mode 100644
index 00000000..8d688b0e
Binary files /dev/null and b/compatibility/assets/data/graficos/15201.png differ
diff --git a/compatibility/assets/data/graficos/15202.png b/compatibility/assets/data/graficos/15202.png
new file mode 100644
index 00000000..8caad2c6
Binary files /dev/null and b/compatibility/assets/data/graficos/15202.png differ
diff --git a/compatibility/assets/data/graficos/15203.png b/compatibility/assets/data/graficos/15203.png
new file mode 100644
index 00000000..5be0a65f
Binary files /dev/null and b/compatibility/assets/data/graficos/15203.png differ
diff --git a/compatibility/assets/data/graficos/15204.png b/compatibility/assets/data/graficos/15204.png
new file mode 100644
index 00000000..ba9a7be3
Binary files /dev/null and b/compatibility/assets/data/graficos/15204.png differ
diff --git a/compatibility/assets/data/graficos/15205.png b/compatibility/assets/data/graficos/15205.png
new file mode 100644
index 00000000..f9c99bfc
Binary files /dev/null and b/compatibility/assets/data/graficos/15205.png differ
diff --git a/compatibility/assets/data/graficos/15206.png b/compatibility/assets/data/graficos/15206.png
new file mode 100644
index 00000000..bf759b61
Binary files /dev/null and b/compatibility/assets/data/graficos/15206.png differ
diff --git a/compatibility/assets/data/graficos/15207.png b/compatibility/assets/data/graficos/15207.png
new file mode 100644
index 00000000..e7de74b8
Binary files /dev/null and b/compatibility/assets/data/graficos/15207.png differ
diff --git a/compatibility/assets/data/graficos/15208.png b/compatibility/assets/data/graficos/15208.png
new file mode 100644
index 00000000..6e3239e9
Binary files /dev/null and b/compatibility/assets/data/graficos/15208.png differ
diff --git a/compatibility/assets/data/graficos/15209.png b/compatibility/assets/data/graficos/15209.png
new file mode 100644
index 00000000..422a6407
Binary files /dev/null and b/compatibility/assets/data/graficos/15209.png differ
diff --git a/compatibility/assets/data/graficos/15210.png b/compatibility/assets/data/graficos/15210.png
new file mode 100644
index 00000000..25bc95e7
Binary files /dev/null and b/compatibility/assets/data/graficos/15210.png differ
diff --git a/compatibility/assets/data/graficos/15211.png b/compatibility/assets/data/graficos/15211.png
new file mode 100644
index 00000000..c84e21e7
Binary files /dev/null and b/compatibility/assets/data/graficos/15211.png differ
diff --git a/compatibility/assets/data/graficos/15212.png b/compatibility/assets/data/graficos/15212.png
new file mode 100644
index 00000000..4481ebc1
Binary files /dev/null and b/compatibility/assets/data/graficos/15212.png differ
diff --git a/compatibility/assets/data/graficos/15213.png b/compatibility/assets/data/graficos/15213.png
new file mode 100644
index 00000000..6798cccd
Binary files /dev/null and b/compatibility/assets/data/graficos/15213.png differ
diff --git a/compatibility/assets/data/graficos/15214.png b/compatibility/assets/data/graficos/15214.png
new file mode 100644
index 00000000..41946c4e
Binary files /dev/null and b/compatibility/assets/data/graficos/15214.png differ
diff --git a/compatibility/assets/data/graficos/15215.png b/compatibility/assets/data/graficos/15215.png
new file mode 100644
index 00000000..06baecad
Binary files /dev/null and b/compatibility/assets/data/graficos/15215.png differ
diff --git a/compatibility/assets/data/graficos/15216.png b/compatibility/assets/data/graficos/15216.png
new file mode 100644
index 00000000..b9d592dc
Binary files /dev/null and b/compatibility/assets/data/graficos/15216.png differ
diff --git a/compatibility/assets/data/graficos/15217.png b/compatibility/assets/data/graficos/15217.png
new file mode 100644
index 00000000..773d7862
Binary files /dev/null and b/compatibility/assets/data/graficos/15217.png differ
diff --git a/compatibility/assets/data/graficos/15218.png b/compatibility/assets/data/graficos/15218.png
new file mode 100644
index 00000000..76108400
Binary files /dev/null and b/compatibility/assets/data/graficos/15218.png differ
diff --git a/compatibility/assets/data/graficos/15219.png b/compatibility/assets/data/graficos/15219.png
new file mode 100644
index 00000000..7dc008a6
Binary files /dev/null and b/compatibility/assets/data/graficos/15219.png differ
diff --git a/compatibility/assets/data/graficos/15220.png b/compatibility/assets/data/graficos/15220.png
new file mode 100644
index 00000000..6f69ace0
Binary files /dev/null and b/compatibility/assets/data/graficos/15220.png differ
diff --git a/compatibility/assets/data/graficos/15221.png b/compatibility/assets/data/graficos/15221.png
new file mode 100644
index 00000000..6254c871
Binary files /dev/null and b/compatibility/assets/data/graficos/15221.png differ
diff --git a/compatibility/assets/data/graficos/15222.png b/compatibility/assets/data/graficos/15222.png
new file mode 100644
index 00000000..6ba2d4d5
Binary files /dev/null and b/compatibility/assets/data/graficos/15222.png differ
diff --git a/compatibility/assets/data/graficos/15223.png b/compatibility/assets/data/graficos/15223.png
new file mode 100644
index 00000000..c6ae8dd5
Binary files /dev/null and b/compatibility/assets/data/graficos/15223.png differ
diff --git a/compatibility/assets/data/graficos/15224.png b/compatibility/assets/data/graficos/15224.png
new file mode 100644
index 00000000..a1280b8f
Binary files /dev/null and b/compatibility/assets/data/graficos/15224.png differ
diff --git a/compatibility/assets/data/graficos/15225.png b/compatibility/assets/data/graficos/15225.png
new file mode 100644
index 00000000..c78f20ae
Binary files /dev/null and b/compatibility/assets/data/graficos/15225.png differ
diff --git a/compatibility/assets/data/graficos/15226.png b/compatibility/assets/data/graficos/15226.png
new file mode 100644
index 00000000..392463ab
Binary files /dev/null and b/compatibility/assets/data/graficos/15226.png differ
diff --git a/compatibility/assets/data/graficos/15227.png b/compatibility/assets/data/graficos/15227.png
new file mode 100644
index 00000000..040d3142
Binary files /dev/null and b/compatibility/assets/data/graficos/15227.png differ
diff --git a/compatibility/assets/data/graficos/15228.png b/compatibility/assets/data/graficos/15228.png
new file mode 100644
index 00000000..91c4fede
Binary files /dev/null and b/compatibility/assets/data/graficos/15228.png differ
diff --git a/compatibility/assets/data/graficos/15229.png b/compatibility/assets/data/graficos/15229.png
new file mode 100644
index 00000000..94e94276
Binary files /dev/null and b/compatibility/assets/data/graficos/15229.png differ
diff --git a/compatibility/assets/data/graficos/15230.png b/compatibility/assets/data/graficos/15230.png
new file mode 100644
index 00000000..1335aba0
Binary files /dev/null and b/compatibility/assets/data/graficos/15230.png differ
diff --git a/compatibility/assets/data/graficos/15231.png b/compatibility/assets/data/graficos/15231.png
new file mode 100644
index 00000000..58b3687b
Binary files /dev/null and b/compatibility/assets/data/graficos/15231.png differ
diff --git a/compatibility/assets/data/graficos/153.png b/compatibility/assets/data/graficos/153.png
new file mode 100644
index 00000000..f803b698
Binary files /dev/null and b/compatibility/assets/data/graficos/153.png differ
diff --git a/compatibility/assets/data/graficos/154.png b/compatibility/assets/data/graficos/154.png
new file mode 100644
index 00000000..867152e7
Binary files /dev/null and b/compatibility/assets/data/graficos/154.png differ
diff --git a/compatibility/assets/data/graficos/155.png b/compatibility/assets/data/graficos/155.png
new file mode 100644
index 00000000..ef95ecec
Binary files /dev/null and b/compatibility/assets/data/graficos/155.png differ
diff --git a/compatibility/assets/data/graficos/1556.png b/compatibility/assets/data/graficos/1556.png
new file mode 100644
index 00000000..d40479f8
Binary files /dev/null and b/compatibility/assets/data/graficos/1556.png differ
diff --git a/compatibility/assets/data/graficos/1557.png b/compatibility/assets/data/graficos/1557.png
new file mode 100644
index 00000000..3a32ba74
Binary files /dev/null and b/compatibility/assets/data/graficos/1557.png differ
diff --git a/compatibility/assets/data/graficos/1558.png b/compatibility/assets/data/graficos/1558.png
new file mode 100644
index 00000000..07578999
Binary files /dev/null and b/compatibility/assets/data/graficos/1558.png differ
diff --git a/compatibility/assets/data/graficos/1559.png b/compatibility/assets/data/graficos/1559.png
new file mode 100644
index 00000000..f6d025a8
Binary files /dev/null and b/compatibility/assets/data/graficos/1559.png differ
diff --git a/compatibility/assets/data/graficos/156.png b/compatibility/assets/data/graficos/156.png
new file mode 100644
index 00000000..0f6031bd
Binary files /dev/null and b/compatibility/assets/data/graficos/156.png differ
diff --git a/compatibility/assets/data/graficos/157.png b/compatibility/assets/data/graficos/157.png
new file mode 100644
index 00000000..7e6c688c
Binary files /dev/null and b/compatibility/assets/data/graficos/157.png differ
diff --git a/compatibility/assets/data/graficos/158.png b/compatibility/assets/data/graficos/158.png
new file mode 100644
index 00000000..31f350b9
Binary files /dev/null and b/compatibility/assets/data/graficos/158.png differ
diff --git a/compatibility/assets/data/graficos/159.png b/compatibility/assets/data/graficos/159.png
new file mode 100644
index 00000000..3e9ba0c1
Binary files /dev/null and b/compatibility/assets/data/graficos/159.png differ
diff --git a/compatibility/assets/data/graficos/16.png b/compatibility/assets/data/graficos/16.png
new file mode 100644
index 00000000..b92f28ce
Binary files /dev/null and b/compatibility/assets/data/graficos/16.png differ
diff --git a/compatibility/assets/data/graficos/160.png b/compatibility/assets/data/graficos/160.png
new file mode 100644
index 00000000..dbe38824
Binary files /dev/null and b/compatibility/assets/data/graficos/160.png differ
diff --git a/compatibility/assets/data/graficos/16000.png b/compatibility/assets/data/graficos/16000.png
new file mode 100644
index 00000000..af6126a5
Binary files /dev/null and b/compatibility/assets/data/graficos/16000.png differ
diff --git a/compatibility/assets/data/graficos/16001.png b/compatibility/assets/data/graficos/16001.png
new file mode 100644
index 00000000..87ca7b7a
Binary files /dev/null and b/compatibility/assets/data/graficos/16001.png differ
diff --git a/compatibility/assets/data/graficos/16002.png b/compatibility/assets/data/graficos/16002.png
new file mode 100644
index 00000000..20c5184a
Binary files /dev/null and b/compatibility/assets/data/graficos/16002.png differ
diff --git a/compatibility/assets/data/graficos/16003.png b/compatibility/assets/data/graficos/16003.png
new file mode 100644
index 00000000..c824afbc
Binary files /dev/null and b/compatibility/assets/data/graficos/16003.png differ
diff --git a/compatibility/assets/data/graficos/16004.png b/compatibility/assets/data/graficos/16004.png
new file mode 100644
index 00000000..b8c799c5
Binary files /dev/null and b/compatibility/assets/data/graficos/16004.png differ
diff --git a/compatibility/assets/data/graficos/16005.png b/compatibility/assets/data/graficos/16005.png
new file mode 100644
index 00000000..ff3e12b6
Binary files /dev/null and b/compatibility/assets/data/graficos/16005.png differ
diff --git a/compatibility/assets/data/graficos/16006.png b/compatibility/assets/data/graficos/16006.png
new file mode 100644
index 00000000..1146d086
Binary files /dev/null and b/compatibility/assets/data/graficos/16006.png differ
diff --git a/compatibility/assets/data/graficos/16007.png b/compatibility/assets/data/graficos/16007.png
new file mode 100644
index 00000000..b6e5878d
Binary files /dev/null and b/compatibility/assets/data/graficos/16007.png differ
diff --git a/compatibility/assets/data/graficos/16008.png b/compatibility/assets/data/graficos/16008.png
new file mode 100644
index 00000000..5f54878b
Binary files /dev/null and b/compatibility/assets/data/graficos/16008.png differ
diff --git a/compatibility/assets/data/graficos/16009.png b/compatibility/assets/data/graficos/16009.png
new file mode 100644
index 00000000..255ac279
Binary files /dev/null and b/compatibility/assets/data/graficos/16009.png differ
diff --git a/compatibility/assets/data/graficos/16010.png b/compatibility/assets/data/graficos/16010.png
new file mode 100644
index 00000000..4fda75ea
Binary files /dev/null and b/compatibility/assets/data/graficos/16010.png differ
diff --git a/compatibility/assets/data/graficos/16011.png b/compatibility/assets/data/graficos/16011.png
new file mode 100644
index 00000000..38862a02
Binary files /dev/null and b/compatibility/assets/data/graficos/16011.png differ
diff --git a/compatibility/assets/data/graficos/16012.png b/compatibility/assets/data/graficos/16012.png
new file mode 100644
index 00000000..bc845279
Binary files /dev/null and b/compatibility/assets/data/graficos/16012.png differ
diff --git a/compatibility/assets/data/graficos/16013.png b/compatibility/assets/data/graficos/16013.png
new file mode 100644
index 00000000..e494807c
Binary files /dev/null and b/compatibility/assets/data/graficos/16013.png differ
diff --git a/compatibility/assets/data/graficos/16014.png b/compatibility/assets/data/graficos/16014.png
new file mode 100644
index 00000000..9b6da63e
Binary files /dev/null and b/compatibility/assets/data/graficos/16014.png differ
diff --git a/compatibility/assets/data/graficos/16015.png b/compatibility/assets/data/graficos/16015.png
new file mode 100644
index 00000000..1bba174c
Binary files /dev/null and b/compatibility/assets/data/graficos/16015.png differ
diff --git a/compatibility/assets/data/graficos/16016.png b/compatibility/assets/data/graficos/16016.png
new file mode 100644
index 00000000..dcb6a3b4
Binary files /dev/null and b/compatibility/assets/data/graficos/16016.png differ
diff --git a/compatibility/assets/data/graficos/16017.png b/compatibility/assets/data/graficos/16017.png
new file mode 100644
index 00000000..3c92484b
Binary files /dev/null and b/compatibility/assets/data/graficos/16017.png differ
diff --git a/compatibility/assets/data/graficos/16018.png b/compatibility/assets/data/graficos/16018.png
new file mode 100644
index 00000000..34e4ccd2
Binary files /dev/null and b/compatibility/assets/data/graficos/16018.png differ
diff --git a/compatibility/assets/data/graficos/16019.png b/compatibility/assets/data/graficos/16019.png
new file mode 100644
index 00000000..3f7cfeec
Binary files /dev/null and b/compatibility/assets/data/graficos/16019.png differ
diff --git a/compatibility/assets/data/graficos/16020.png b/compatibility/assets/data/graficos/16020.png
new file mode 100644
index 00000000..1af93521
Binary files /dev/null and b/compatibility/assets/data/graficos/16020.png differ
diff --git a/compatibility/assets/data/graficos/16021.png b/compatibility/assets/data/graficos/16021.png
new file mode 100644
index 00000000..4e699df6
Binary files /dev/null and b/compatibility/assets/data/graficos/16021.png differ
diff --git a/compatibility/assets/data/graficos/16022.png b/compatibility/assets/data/graficos/16022.png
new file mode 100644
index 00000000..bd746dc0
Binary files /dev/null and b/compatibility/assets/data/graficos/16022.png differ
diff --git a/compatibility/assets/data/graficos/16023.png b/compatibility/assets/data/graficos/16023.png
new file mode 100644
index 00000000..dc1870a2
Binary files /dev/null and b/compatibility/assets/data/graficos/16023.png differ
diff --git a/compatibility/assets/data/graficos/16024.png b/compatibility/assets/data/graficos/16024.png
new file mode 100644
index 00000000..6b2a3a86
Binary files /dev/null and b/compatibility/assets/data/graficos/16024.png differ
diff --git a/compatibility/assets/data/graficos/16025.png b/compatibility/assets/data/graficos/16025.png
new file mode 100644
index 00000000..e5018f2e
Binary files /dev/null and b/compatibility/assets/data/graficos/16025.png differ
diff --git a/compatibility/assets/data/graficos/16026.png b/compatibility/assets/data/graficos/16026.png
new file mode 100644
index 00000000..16ff810c
Binary files /dev/null and b/compatibility/assets/data/graficos/16026.png differ
diff --git a/compatibility/assets/data/graficos/16027.png b/compatibility/assets/data/graficos/16027.png
new file mode 100644
index 00000000..6f0ffca9
Binary files /dev/null and b/compatibility/assets/data/graficos/16027.png differ
diff --git a/compatibility/assets/data/graficos/16028.png b/compatibility/assets/data/graficos/16028.png
new file mode 100644
index 00000000..1fa908be
Binary files /dev/null and b/compatibility/assets/data/graficos/16028.png differ
diff --git a/compatibility/assets/data/graficos/16029.png b/compatibility/assets/data/graficos/16029.png
new file mode 100644
index 00000000..3a717392
Binary files /dev/null and b/compatibility/assets/data/graficos/16029.png differ
diff --git a/compatibility/assets/data/graficos/16030.png b/compatibility/assets/data/graficos/16030.png
new file mode 100644
index 00000000..7459c83e
Binary files /dev/null and b/compatibility/assets/data/graficos/16030.png differ
diff --git a/compatibility/assets/data/graficos/16031.png b/compatibility/assets/data/graficos/16031.png
new file mode 100644
index 00000000..a4824722
Binary files /dev/null and b/compatibility/assets/data/graficos/16031.png differ
diff --git a/compatibility/assets/data/graficos/16032.png b/compatibility/assets/data/graficos/16032.png
new file mode 100644
index 00000000..ea3f8292
Binary files /dev/null and b/compatibility/assets/data/graficos/16032.png differ
diff --git a/compatibility/assets/data/graficos/16033.png b/compatibility/assets/data/graficos/16033.png
new file mode 100644
index 00000000..406fe95e
Binary files /dev/null and b/compatibility/assets/data/graficos/16033.png differ
diff --git a/compatibility/assets/data/graficos/16034.png b/compatibility/assets/data/graficos/16034.png
new file mode 100644
index 00000000..e93e98bc
Binary files /dev/null and b/compatibility/assets/data/graficos/16034.png differ
diff --git a/compatibility/assets/data/graficos/16035.png b/compatibility/assets/data/graficos/16035.png
new file mode 100644
index 00000000..7977fc02
Binary files /dev/null and b/compatibility/assets/data/graficos/16035.png differ
diff --git a/compatibility/assets/data/graficos/16036.png b/compatibility/assets/data/graficos/16036.png
new file mode 100644
index 00000000..75f16bc6
Binary files /dev/null and b/compatibility/assets/data/graficos/16036.png differ
diff --git a/compatibility/assets/data/graficos/16037.png b/compatibility/assets/data/graficos/16037.png
new file mode 100644
index 00000000..aab6df86
Binary files /dev/null and b/compatibility/assets/data/graficos/16037.png differ
diff --git a/compatibility/assets/data/graficos/16038.png b/compatibility/assets/data/graficos/16038.png
new file mode 100644
index 00000000..fe205138
Binary files /dev/null and b/compatibility/assets/data/graficos/16038.png differ
diff --git a/compatibility/assets/data/graficos/16039.png b/compatibility/assets/data/graficos/16039.png
new file mode 100644
index 00000000..97d0f1be
Binary files /dev/null and b/compatibility/assets/data/graficos/16039.png differ
diff --git a/compatibility/assets/data/graficos/16040.png b/compatibility/assets/data/graficos/16040.png
new file mode 100644
index 00000000..741bfb02
Binary files /dev/null and b/compatibility/assets/data/graficos/16040.png differ
diff --git a/compatibility/assets/data/graficos/16041.png b/compatibility/assets/data/graficos/16041.png
new file mode 100644
index 00000000..c53b457b
Binary files /dev/null and b/compatibility/assets/data/graficos/16041.png differ
diff --git a/compatibility/assets/data/graficos/16042.png b/compatibility/assets/data/graficos/16042.png
new file mode 100644
index 00000000..638194d1
Binary files /dev/null and b/compatibility/assets/data/graficos/16042.png differ
diff --git a/compatibility/assets/data/graficos/16043.png b/compatibility/assets/data/graficos/16043.png
new file mode 100644
index 00000000..326639d1
Binary files /dev/null and b/compatibility/assets/data/graficos/16043.png differ
diff --git a/compatibility/assets/data/graficos/16044.png b/compatibility/assets/data/graficos/16044.png
new file mode 100644
index 00000000..1ad516c8
Binary files /dev/null and b/compatibility/assets/data/graficos/16044.png differ
diff --git a/compatibility/assets/data/graficos/16045.png b/compatibility/assets/data/graficos/16045.png
new file mode 100644
index 00000000..463d0bf6
Binary files /dev/null and b/compatibility/assets/data/graficos/16045.png differ
diff --git a/compatibility/assets/data/graficos/16046.png b/compatibility/assets/data/graficos/16046.png
new file mode 100644
index 00000000..0ea827c1
Binary files /dev/null and b/compatibility/assets/data/graficos/16046.png differ
diff --git a/compatibility/assets/data/graficos/16047.png b/compatibility/assets/data/graficos/16047.png
new file mode 100644
index 00000000..98d1a919
Binary files /dev/null and b/compatibility/assets/data/graficos/16047.png differ
diff --git a/compatibility/assets/data/graficos/16048.png b/compatibility/assets/data/graficos/16048.png
new file mode 100644
index 00000000..a3f2e34c
Binary files /dev/null and b/compatibility/assets/data/graficos/16048.png differ
diff --git a/compatibility/assets/data/graficos/16049.png b/compatibility/assets/data/graficos/16049.png
new file mode 100644
index 00000000..737e07fc
Binary files /dev/null and b/compatibility/assets/data/graficos/16049.png differ
diff --git a/compatibility/assets/data/graficos/16050.png b/compatibility/assets/data/graficos/16050.png
new file mode 100644
index 00000000..0b79e3b8
Binary files /dev/null and b/compatibility/assets/data/graficos/16050.png differ
diff --git a/compatibility/assets/data/graficos/16051.png b/compatibility/assets/data/graficos/16051.png
new file mode 100644
index 00000000..600b0e4c
Binary files /dev/null and b/compatibility/assets/data/graficos/16051.png differ
diff --git a/compatibility/assets/data/graficos/16052.png b/compatibility/assets/data/graficos/16052.png
new file mode 100644
index 00000000..62226dde
Binary files /dev/null and b/compatibility/assets/data/graficos/16052.png differ
diff --git a/compatibility/assets/data/graficos/16053.png b/compatibility/assets/data/graficos/16053.png
new file mode 100644
index 00000000..2537537a
Binary files /dev/null and b/compatibility/assets/data/graficos/16053.png differ
diff --git a/compatibility/assets/data/graficos/16054.png b/compatibility/assets/data/graficos/16054.png
new file mode 100644
index 00000000..5254a286
Binary files /dev/null and b/compatibility/assets/data/graficos/16054.png differ
diff --git a/compatibility/assets/data/graficos/16055.png b/compatibility/assets/data/graficos/16055.png
new file mode 100644
index 00000000..bc1a54bf
Binary files /dev/null and b/compatibility/assets/data/graficos/16055.png differ
diff --git a/compatibility/assets/data/graficos/16056.png b/compatibility/assets/data/graficos/16056.png
new file mode 100644
index 00000000..23ec012b
Binary files /dev/null and b/compatibility/assets/data/graficos/16056.png differ
diff --git a/compatibility/assets/data/graficos/16057.png b/compatibility/assets/data/graficos/16057.png
new file mode 100644
index 00000000..c02794bb
Binary files /dev/null and b/compatibility/assets/data/graficos/16057.png differ
diff --git a/compatibility/assets/data/graficos/16058.png b/compatibility/assets/data/graficos/16058.png
new file mode 100644
index 00000000..b36b0c03
Binary files /dev/null and b/compatibility/assets/data/graficos/16058.png differ
diff --git a/compatibility/assets/data/graficos/16059.png b/compatibility/assets/data/graficos/16059.png
new file mode 100644
index 00000000..b8be598e
Binary files /dev/null and b/compatibility/assets/data/graficos/16059.png differ
diff --git a/compatibility/assets/data/graficos/16060.png b/compatibility/assets/data/graficos/16060.png
new file mode 100644
index 00000000..9a28e6bd
Binary files /dev/null and b/compatibility/assets/data/graficos/16060.png differ
diff --git a/compatibility/assets/data/graficos/16061.png b/compatibility/assets/data/graficos/16061.png
new file mode 100644
index 00000000..6e6bcb12
Binary files /dev/null and b/compatibility/assets/data/graficos/16061.png differ
diff --git a/compatibility/assets/data/graficos/16062.png b/compatibility/assets/data/graficos/16062.png
new file mode 100644
index 00000000..62f0a281
Binary files /dev/null and b/compatibility/assets/data/graficos/16062.png differ
diff --git a/compatibility/assets/data/graficos/16063.png b/compatibility/assets/data/graficos/16063.png
new file mode 100644
index 00000000..b797f5de
Binary files /dev/null and b/compatibility/assets/data/graficos/16063.png differ
diff --git a/compatibility/assets/data/graficos/16064.png b/compatibility/assets/data/graficos/16064.png
new file mode 100644
index 00000000..255ac279
Binary files /dev/null and b/compatibility/assets/data/graficos/16064.png differ
diff --git a/compatibility/assets/data/graficos/16065.png b/compatibility/assets/data/graficos/16065.png
new file mode 100644
index 00000000..2143b95a
Binary files /dev/null and b/compatibility/assets/data/graficos/16065.png differ
diff --git a/compatibility/assets/data/graficos/16066.png b/compatibility/assets/data/graficos/16066.png
new file mode 100644
index 00000000..d778e385
Binary files /dev/null and b/compatibility/assets/data/graficos/16066.png differ
diff --git a/compatibility/assets/data/graficos/16067.png b/compatibility/assets/data/graficos/16067.png
new file mode 100644
index 00000000..13538b61
Binary files /dev/null and b/compatibility/assets/data/graficos/16067.png differ
diff --git a/compatibility/assets/data/graficos/16068.png b/compatibility/assets/data/graficos/16068.png
new file mode 100644
index 00000000..f3ab9338
Binary files /dev/null and b/compatibility/assets/data/graficos/16068.png differ
diff --git a/compatibility/assets/data/graficos/16069.png b/compatibility/assets/data/graficos/16069.png
new file mode 100644
index 00000000..99ec7cef
Binary files /dev/null and b/compatibility/assets/data/graficos/16069.png differ
diff --git a/compatibility/assets/data/graficos/16070.png b/compatibility/assets/data/graficos/16070.png
new file mode 100644
index 00000000..b36439f5
Binary files /dev/null and b/compatibility/assets/data/graficos/16070.png differ
diff --git a/compatibility/assets/data/graficos/16071.png b/compatibility/assets/data/graficos/16071.png
new file mode 100644
index 00000000..a2d10cb2
Binary files /dev/null and b/compatibility/assets/data/graficos/16071.png differ
diff --git a/compatibility/assets/data/graficos/16072.png b/compatibility/assets/data/graficos/16072.png
new file mode 100644
index 00000000..afc7be18
Binary files /dev/null and b/compatibility/assets/data/graficos/16072.png differ
diff --git a/compatibility/assets/data/graficos/16073.png b/compatibility/assets/data/graficos/16073.png
new file mode 100644
index 00000000..b47db763
Binary files /dev/null and b/compatibility/assets/data/graficos/16073.png differ
diff --git a/compatibility/assets/data/graficos/16074.png b/compatibility/assets/data/graficos/16074.png
new file mode 100644
index 00000000..b5f0ee60
Binary files /dev/null and b/compatibility/assets/data/graficos/16074.png differ
diff --git a/compatibility/assets/data/graficos/16075.png b/compatibility/assets/data/graficos/16075.png
new file mode 100644
index 00000000..456c627a
Binary files /dev/null and b/compatibility/assets/data/graficos/16075.png differ
diff --git a/compatibility/assets/data/graficos/16076.png b/compatibility/assets/data/graficos/16076.png
new file mode 100644
index 00000000..b01409c4
Binary files /dev/null and b/compatibility/assets/data/graficos/16076.png differ
diff --git a/compatibility/assets/data/graficos/16077.png b/compatibility/assets/data/graficos/16077.png
new file mode 100644
index 00000000..ff08a464
Binary files /dev/null and b/compatibility/assets/data/graficos/16077.png differ
diff --git a/compatibility/assets/data/graficos/16078.png b/compatibility/assets/data/graficos/16078.png
new file mode 100644
index 00000000..5629d23a
Binary files /dev/null and b/compatibility/assets/data/graficos/16078.png differ
diff --git a/compatibility/assets/data/graficos/16079.png b/compatibility/assets/data/graficos/16079.png
new file mode 100644
index 00000000..097f242c
Binary files /dev/null and b/compatibility/assets/data/graficos/16079.png differ
diff --git a/compatibility/assets/data/graficos/16080.png b/compatibility/assets/data/graficos/16080.png
new file mode 100644
index 00000000..17f2e930
Binary files /dev/null and b/compatibility/assets/data/graficos/16080.png differ
diff --git a/compatibility/assets/data/graficos/16081.png b/compatibility/assets/data/graficos/16081.png
new file mode 100644
index 00000000..2d91faf9
Binary files /dev/null and b/compatibility/assets/data/graficos/16081.png differ
diff --git a/compatibility/assets/data/graficos/16082.png b/compatibility/assets/data/graficos/16082.png
new file mode 100644
index 00000000..0cf355e1
Binary files /dev/null and b/compatibility/assets/data/graficos/16082.png differ
diff --git a/compatibility/assets/data/graficos/16083.png b/compatibility/assets/data/graficos/16083.png
new file mode 100644
index 00000000..97508424
Binary files /dev/null and b/compatibility/assets/data/graficos/16083.png differ
diff --git a/compatibility/assets/data/graficos/16084.png b/compatibility/assets/data/graficos/16084.png
new file mode 100644
index 00000000..c34bb04c
Binary files /dev/null and b/compatibility/assets/data/graficos/16084.png differ
diff --git a/compatibility/assets/data/graficos/16085.png b/compatibility/assets/data/graficos/16085.png
new file mode 100644
index 00000000..54152fd9
Binary files /dev/null and b/compatibility/assets/data/graficos/16085.png differ
diff --git a/compatibility/assets/data/graficos/16086.png b/compatibility/assets/data/graficos/16086.png
new file mode 100644
index 00000000..1929b7c3
Binary files /dev/null and b/compatibility/assets/data/graficos/16086.png differ
diff --git a/compatibility/assets/data/graficos/16087.png b/compatibility/assets/data/graficos/16087.png
new file mode 100644
index 00000000..1162c4a9
Binary files /dev/null and b/compatibility/assets/data/graficos/16087.png differ
diff --git a/compatibility/assets/data/graficos/16088.png b/compatibility/assets/data/graficos/16088.png
new file mode 100644
index 00000000..a95b8dc8
Binary files /dev/null and b/compatibility/assets/data/graficos/16088.png differ
diff --git a/compatibility/assets/data/graficos/16089.png b/compatibility/assets/data/graficos/16089.png
new file mode 100644
index 00000000..bdce8d18
Binary files /dev/null and b/compatibility/assets/data/graficos/16089.png differ
diff --git a/compatibility/assets/data/graficos/16090.png b/compatibility/assets/data/graficos/16090.png
new file mode 100644
index 00000000..df7f81ca
Binary files /dev/null and b/compatibility/assets/data/graficos/16090.png differ
diff --git a/compatibility/assets/data/graficos/16091.png b/compatibility/assets/data/graficos/16091.png
new file mode 100644
index 00000000..32207fd4
Binary files /dev/null and b/compatibility/assets/data/graficos/16091.png differ
diff --git a/compatibility/assets/data/graficos/16092.png b/compatibility/assets/data/graficos/16092.png
new file mode 100644
index 00000000..1ad568eb
Binary files /dev/null and b/compatibility/assets/data/graficos/16092.png differ
diff --git a/compatibility/assets/data/graficos/16093.png b/compatibility/assets/data/graficos/16093.png
new file mode 100644
index 00000000..9a14c0af
Binary files /dev/null and b/compatibility/assets/data/graficos/16093.png differ
diff --git a/compatibility/assets/data/graficos/16094.png b/compatibility/assets/data/graficos/16094.png
new file mode 100644
index 00000000..638194d1
Binary files /dev/null and b/compatibility/assets/data/graficos/16094.png differ
diff --git a/compatibility/assets/data/graficos/16095.png b/compatibility/assets/data/graficos/16095.png
new file mode 100644
index 00000000..7e81c03c
Binary files /dev/null and b/compatibility/assets/data/graficos/16095.png differ
diff --git a/compatibility/assets/data/graficos/16096.png b/compatibility/assets/data/graficos/16096.png
new file mode 100644
index 00000000..69a228f7
Binary files /dev/null and b/compatibility/assets/data/graficos/16096.png differ
diff --git a/compatibility/assets/data/graficos/16097.png b/compatibility/assets/data/graficos/16097.png
new file mode 100644
index 00000000..fde9f449
Binary files /dev/null and b/compatibility/assets/data/graficos/16097.png differ
diff --git a/compatibility/assets/data/graficos/16098.png b/compatibility/assets/data/graficos/16098.png
new file mode 100644
index 00000000..550d015d
Binary files /dev/null and b/compatibility/assets/data/graficos/16098.png differ
diff --git a/compatibility/assets/data/graficos/16099.png b/compatibility/assets/data/graficos/16099.png
new file mode 100644
index 00000000..cd714f53
Binary files /dev/null and b/compatibility/assets/data/graficos/16099.png differ
diff --git a/compatibility/assets/data/graficos/161.png b/compatibility/assets/data/graficos/161.png
new file mode 100644
index 00000000..037d43d1
Binary files /dev/null and b/compatibility/assets/data/graficos/161.png differ
diff --git a/compatibility/assets/data/graficos/16100.png b/compatibility/assets/data/graficos/16100.png
new file mode 100644
index 00000000..ceebc25c
Binary files /dev/null and b/compatibility/assets/data/graficos/16100.png differ
diff --git a/compatibility/assets/data/graficos/16101.png b/compatibility/assets/data/graficos/16101.png
new file mode 100644
index 00000000..27a2a78f
Binary files /dev/null and b/compatibility/assets/data/graficos/16101.png differ
diff --git a/compatibility/assets/data/graficos/16102.png b/compatibility/assets/data/graficos/16102.png
new file mode 100644
index 00000000..1d903495
Binary files /dev/null and b/compatibility/assets/data/graficos/16102.png differ
diff --git a/compatibility/assets/data/graficos/16103.png b/compatibility/assets/data/graficos/16103.png
new file mode 100644
index 00000000..30b0ec8e
Binary files /dev/null and b/compatibility/assets/data/graficos/16103.png differ
diff --git a/compatibility/assets/data/graficos/16104.png b/compatibility/assets/data/graficos/16104.png
new file mode 100644
index 00000000..7df346b7
Binary files /dev/null and b/compatibility/assets/data/graficos/16104.png differ
diff --git a/compatibility/assets/data/graficos/16105.png b/compatibility/assets/data/graficos/16105.png
new file mode 100644
index 00000000..90dd9190
Binary files /dev/null and b/compatibility/assets/data/graficos/16105.png differ
diff --git a/compatibility/assets/data/graficos/16106.png b/compatibility/assets/data/graficos/16106.png
new file mode 100644
index 00000000..0ae91386
Binary files /dev/null and b/compatibility/assets/data/graficos/16106.png differ
diff --git a/compatibility/assets/data/graficos/16107.png b/compatibility/assets/data/graficos/16107.png
new file mode 100644
index 00000000..d73581b1
Binary files /dev/null and b/compatibility/assets/data/graficos/16107.png differ
diff --git a/compatibility/assets/data/graficos/16108.png b/compatibility/assets/data/graficos/16108.png
new file mode 100644
index 00000000..f12d652a
Binary files /dev/null and b/compatibility/assets/data/graficos/16108.png differ
diff --git a/compatibility/assets/data/graficos/16109.png b/compatibility/assets/data/graficos/16109.png
new file mode 100644
index 00000000..56ee4b17
Binary files /dev/null and b/compatibility/assets/data/graficos/16109.png differ
diff --git a/compatibility/assets/data/graficos/16110.png b/compatibility/assets/data/graficos/16110.png
new file mode 100644
index 00000000..e58acb33
Binary files /dev/null and b/compatibility/assets/data/graficos/16110.png differ
diff --git a/compatibility/assets/data/graficos/16111.png b/compatibility/assets/data/graficos/16111.png
new file mode 100644
index 00000000..2c2aaee3
Binary files /dev/null and b/compatibility/assets/data/graficos/16111.png differ
diff --git a/compatibility/assets/data/graficos/16112.png b/compatibility/assets/data/graficos/16112.png
new file mode 100644
index 00000000..12657870
Binary files /dev/null and b/compatibility/assets/data/graficos/16112.png differ
diff --git a/compatibility/assets/data/graficos/162.png b/compatibility/assets/data/graficos/162.png
new file mode 100644
index 00000000..d5a34639
Binary files /dev/null and b/compatibility/assets/data/graficos/162.png differ
diff --git a/compatibility/assets/data/graficos/163.png b/compatibility/assets/data/graficos/163.png
new file mode 100644
index 00000000..4c779f0a
Binary files /dev/null and b/compatibility/assets/data/graficos/163.png differ
diff --git a/compatibility/assets/data/graficos/164.png b/compatibility/assets/data/graficos/164.png
new file mode 100644
index 00000000..e06fa1f9
Binary files /dev/null and b/compatibility/assets/data/graficos/164.png differ
diff --git a/compatibility/assets/data/graficos/165.png b/compatibility/assets/data/graficos/165.png
new file mode 100644
index 00000000..af1cae2e
Binary files /dev/null and b/compatibility/assets/data/graficos/165.png differ
diff --git a/compatibility/assets/data/graficos/166.png b/compatibility/assets/data/graficos/166.png
new file mode 100644
index 00000000..2382f310
Binary files /dev/null and b/compatibility/assets/data/graficos/166.png differ
diff --git a/compatibility/assets/data/graficos/167.png b/compatibility/assets/data/graficos/167.png
new file mode 100644
index 00000000..e4c7f74e
Binary files /dev/null and b/compatibility/assets/data/graficos/167.png differ
diff --git a/compatibility/assets/data/graficos/168.png b/compatibility/assets/data/graficos/168.png
new file mode 100644
index 00000000..68da9050
Binary files /dev/null and b/compatibility/assets/data/graficos/168.png differ
diff --git a/compatibility/assets/data/graficos/1686.png b/compatibility/assets/data/graficos/1686.png
new file mode 100644
index 00000000..1b5ff1be
Binary files /dev/null and b/compatibility/assets/data/graficos/1686.png differ
diff --git a/compatibility/assets/data/graficos/169.png b/compatibility/assets/data/graficos/169.png
new file mode 100644
index 00000000..d17a25d5
Binary files /dev/null and b/compatibility/assets/data/graficos/169.png differ
diff --git a/compatibility/assets/data/graficos/17.png b/compatibility/assets/data/graficos/17.png
new file mode 100644
index 00000000..713e58db
Binary files /dev/null and b/compatibility/assets/data/graficos/17.png differ
diff --git a/compatibility/assets/data/graficos/170.png b/compatibility/assets/data/graficos/170.png
new file mode 100644
index 00000000..dbe39ee1
Binary files /dev/null and b/compatibility/assets/data/graficos/170.png differ
diff --git a/compatibility/assets/data/graficos/17000.png b/compatibility/assets/data/graficos/17000.png
new file mode 100644
index 00000000..91978576
Binary files /dev/null and b/compatibility/assets/data/graficos/17000.png differ
diff --git a/compatibility/assets/data/graficos/17001.png b/compatibility/assets/data/graficos/17001.png
new file mode 100644
index 00000000..6d206ef7
Binary files /dev/null and b/compatibility/assets/data/graficos/17001.png differ
diff --git a/compatibility/assets/data/graficos/17002.png b/compatibility/assets/data/graficos/17002.png
new file mode 100644
index 00000000..2af536d1
Binary files /dev/null and b/compatibility/assets/data/graficos/17002.png differ
diff --git a/compatibility/assets/data/graficos/17003.png b/compatibility/assets/data/graficos/17003.png
new file mode 100644
index 00000000..8b032ba9
Binary files /dev/null and b/compatibility/assets/data/graficos/17003.png differ
diff --git a/compatibility/assets/data/graficos/17004.png b/compatibility/assets/data/graficos/17004.png
new file mode 100644
index 00000000..774ee5ed
Binary files /dev/null and b/compatibility/assets/data/graficos/17004.png differ
diff --git a/compatibility/assets/data/graficos/17005.png b/compatibility/assets/data/graficos/17005.png
new file mode 100644
index 00000000..3aa7c0eb
Binary files /dev/null and b/compatibility/assets/data/graficos/17005.png differ
diff --git a/compatibility/assets/data/graficos/17006.png b/compatibility/assets/data/graficos/17006.png
new file mode 100644
index 00000000..40c87165
Binary files /dev/null and b/compatibility/assets/data/graficos/17006.png differ
diff --git a/compatibility/assets/data/graficos/17007.png b/compatibility/assets/data/graficos/17007.png
new file mode 100644
index 00000000..43b6a13f
Binary files /dev/null and b/compatibility/assets/data/graficos/17007.png differ
diff --git a/compatibility/assets/data/graficos/17008.png b/compatibility/assets/data/graficos/17008.png
new file mode 100644
index 00000000..9e4fc566
Binary files /dev/null and b/compatibility/assets/data/graficos/17008.png differ
diff --git a/compatibility/assets/data/graficos/17009.png b/compatibility/assets/data/graficos/17009.png
new file mode 100644
index 00000000..4ffb9046
Binary files /dev/null and b/compatibility/assets/data/graficos/17009.png differ
diff --git a/compatibility/assets/data/graficos/17010.png b/compatibility/assets/data/graficos/17010.png
new file mode 100644
index 00000000..eda0eb1c
Binary files /dev/null and b/compatibility/assets/data/graficos/17010.png differ
diff --git a/compatibility/assets/data/graficos/17011.png b/compatibility/assets/data/graficos/17011.png
new file mode 100644
index 00000000..8c49cfeb
Binary files /dev/null and b/compatibility/assets/data/graficos/17011.png differ
diff --git a/compatibility/assets/data/graficos/17012.png b/compatibility/assets/data/graficos/17012.png
new file mode 100644
index 00000000..0dc91c76
Binary files /dev/null and b/compatibility/assets/data/graficos/17012.png differ
diff --git a/compatibility/assets/data/graficos/17013.png b/compatibility/assets/data/graficos/17013.png
new file mode 100644
index 00000000..924e1be5
Binary files /dev/null and b/compatibility/assets/data/graficos/17013.png differ
diff --git a/compatibility/assets/data/graficos/17014.png b/compatibility/assets/data/graficos/17014.png
new file mode 100644
index 00000000..cd95d07d
Binary files /dev/null and b/compatibility/assets/data/graficos/17014.png differ
diff --git a/compatibility/assets/data/graficos/17039.png b/compatibility/assets/data/graficos/17039.png
new file mode 100644
index 00000000..d35e391c
Binary files /dev/null and b/compatibility/assets/data/graficos/17039.png differ
diff --git a/compatibility/assets/data/graficos/17041.png b/compatibility/assets/data/graficos/17041.png
new file mode 100644
index 00000000..0a2eced1
Binary files /dev/null and b/compatibility/assets/data/graficos/17041.png differ
diff --git a/compatibility/assets/data/graficos/17042.png b/compatibility/assets/data/graficos/17042.png
new file mode 100644
index 00000000..d1660251
Binary files /dev/null and b/compatibility/assets/data/graficos/17042.png differ
diff --git a/compatibility/assets/data/graficos/17043.png b/compatibility/assets/data/graficos/17043.png
new file mode 100644
index 00000000..cac548ff
Binary files /dev/null and b/compatibility/assets/data/graficos/17043.png differ
diff --git a/compatibility/assets/data/graficos/17044.png b/compatibility/assets/data/graficos/17044.png
new file mode 100644
index 00000000..d435f85e
Binary files /dev/null and b/compatibility/assets/data/graficos/17044.png differ
diff --git a/compatibility/assets/data/graficos/171.png b/compatibility/assets/data/graficos/171.png
new file mode 100644
index 00000000..1f353324
Binary files /dev/null and b/compatibility/assets/data/graficos/171.png differ
diff --git a/compatibility/assets/data/graficos/172.png b/compatibility/assets/data/graficos/172.png
new file mode 100644
index 00000000..4dbaa0fb
Binary files /dev/null and b/compatibility/assets/data/graficos/172.png differ
diff --git a/compatibility/assets/data/graficos/173.png b/compatibility/assets/data/graficos/173.png
new file mode 100644
index 00000000..ce4998fd
Binary files /dev/null and b/compatibility/assets/data/graficos/173.png differ
diff --git a/compatibility/assets/data/graficos/174.png b/compatibility/assets/data/graficos/174.png
new file mode 100644
index 00000000..105cdbc1
Binary files /dev/null and b/compatibility/assets/data/graficos/174.png differ
diff --git a/compatibility/assets/data/graficos/175.png b/compatibility/assets/data/graficos/175.png
new file mode 100644
index 00000000..bbd7022c
Binary files /dev/null and b/compatibility/assets/data/graficos/175.png differ
diff --git a/compatibility/assets/data/graficos/176.png b/compatibility/assets/data/graficos/176.png
new file mode 100644
index 00000000..71200a58
Binary files /dev/null and b/compatibility/assets/data/graficos/176.png differ
diff --git a/compatibility/assets/data/graficos/177.png b/compatibility/assets/data/graficos/177.png
new file mode 100644
index 00000000..89deb4d1
Binary files /dev/null and b/compatibility/assets/data/graficos/177.png differ
diff --git a/compatibility/assets/data/graficos/178.png b/compatibility/assets/data/graficos/178.png
new file mode 100644
index 00000000..09232339
Binary files /dev/null and b/compatibility/assets/data/graficos/178.png differ
diff --git a/compatibility/assets/data/graficos/179.png b/compatibility/assets/data/graficos/179.png
new file mode 100644
index 00000000..c2967279
Binary files /dev/null and b/compatibility/assets/data/graficos/179.png differ
diff --git a/compatibility/assets/data/graficos/18.png b/compatibility/assets/data/graficos/18.png
new file mode 100644
index 00000000..bc1edcfd
Binary files /dev/null and b/compatibility/assets/data/graficos/18.png differ
diff --git a/compatibility/assets/data/graficos/180.png b/compatibility/assets/data/graficos/180.png
new file mode 100644
index 00000000..34a1bb96
Binary files /dev/null and b/compatibility/assets/data/graficos/180.png differ
diff --git a/compatibility/assets/data/graficos/18000.png b/compatibility/assets/data/graficos/18000.png
new file mode 100644
index 00000000..082fe944
Binary files /dev/null and b/compatibility/assets/data/graficos/18000.png differ
diff --git a/compatibility/assets/data/graficos/18001.png b/compatibility/assets/data/graficos/18001.png
new file mode 100644
index 00000000..20f620a3
Binary files /dev/null and b/compatibility/assets/data/graficos/18001.png differ
diff --git a/compatibility/assets/data/graficos/18002.png b/compatibility/assets/data/graficos/18002.png
new file mode 100644
index 00000000..5313f177
Binary files /dev/null and b/compatibility/assets/data/graficos/18002.png differ
diff --git a/compatibility/assets/data/graficos/18003.png b/compatibility/assets/data/graficos/18003.png
new file mode 100644
index 00000000..a04b6bec
Binary files /dev/null and b/compatibility/assets/data/graficos/18003.png differ
diff --git a/compatibility/assets/data/graficos/18004.png b/compatibility/assets/data/graficos/18004.png
new file mode 100644
index 00000000..ff5627a3
Binary files /dev/null and b/compatibility/assets/data/graficos/18004.png differ
diff --git a/compatibility/assets/data/graficos/18005.png b/compatibility/assets/data/graficos/18005.png
new file mode 100644
index 00000000..7fe92f64
Binary files /dev/null and b/compatibility/assets/data/graficos/18005.png differ
diff --git a/compatibility/assets/data/graficos/18006.png b/compatibility/assets/data/graficos/18006.png
new file mode 100644
index 00000000..0d89eca1
Binary files /dev/null and b/compatibility/assets/data/graficos/18006.png differ
diff --git a/compatibility/assets/data/graficos/18007.png b/compatibility/assets/data/graficos/18007.png
new file mode 100644
index 00000000..8ba57bc1
Binary files /dev/null and b/compatibility/assets/data/graficos/18007.png differ
diff --git a/compatibility/assets/data/graficos/18008.png b/compatibility/assets/data/graficos/18008.png
new file mode 100644
index 00000000..80598495
Binary files /dev/null and b/compatibility/assets/data/graficos/18008.png differ
diff --git a/compatibility/assets/data/graficos/18009.png b/compatibility/assets/data/graficos/18009.png
new file mode 100644
index 00000000..7ee3a9cc
Binary files /dev/null and b/compatibility/assets/data/graficos/18009.png differ
diff --git a/compatibility/assets/data/graficos/18010.png b/compatibility/assets/data/graficos/18010.png
new file mode 100644
index 00000000..d2de949f
Binary files /dev/null and b/compatibility/assets/data/graficos/18010.png differ
diff --git a/compatibility/assets/data/graficos/18011.png b/compatibility/assets/data/graficos/18011.png
new file mode 100644
index 00000000..94a55d30
Binary files /dev/null and b/compatibility/assets/data/graficos/18011.png differ
diff --git a/compatibility/assets/data/graficos/18012.png b/compatibility/assets/data/graficos/18012.png
new file mode 100644
index 00000000..b06395c4
Binary files /dev/null and b/compatibility/assets/data/graficos/18012.png differ
diff --git a/compatibility/assets/data/graficos/18013.png b/compatibility/assets/data/graficos/18013.png
new file mode 100644
index 00000000..b52ef17e
Binary files /dev/null and b/compatibility/assets/data/graficos/18013.png differ
diff --git a/compatibility/assets/data/graficos/18014.png b/compatibility/assets/data/graficos/18014.png
new file mode 100644
index 00000000..50a8355b
Binary files /dev/null and b/compatibility/assets/data/graficos/18014.png differ
diff --git a/compatibility/assets/data/graficos/18015.png b/compatibility/assets/data/graficos/18015.png
new file mode 100644
index 00000000..e82759a3
Binary files /dev/null and b/compatibility/assets/data/graficos/18015.png differ
diff --git a/compatibility/assets/data/graficos/18016.png b/compatibility/assets/data/graficos/18016.png
new file mode 100644
index 00000000..887e929c
Binary files /dev/null and b/compatibility/assets/data/graficos/18016.png differ
diff --git a/compatibility/assets/data/graficos/18017.png b/compatibility/assets/data/graficos/18017.png
new file mode 100644
index 00000000..bb94708a
Binary files /dev/null and b/compatibility/assets/data/graficos/18017.png differ
diff --git a/compatibility/assets/data/graficos/18018.png b/compatibility/assets/data/graficos/18018.png
new file mode 100644
index 00000000..7a1a02a2
Binary files /dev/null and b/compatibility/assets/data/graficos/18018.png differ
diff --git a/compatibility/assets/data/graficos/18019.png b/compatibility/assets/data/graficos/18019.png
new file mode 100644
index 00000000..104938cb
Binary files /dev/null and b/compatibility/assets/data/graficos/18019.png differ
diff --git a/compatibility/assets/data/graficos/18020.png b/compatibility/assets/data/graficos/18020.png
new file mode 100644
index 00000000..8adc0342
Binary files /dev/null and b/compatibility/assets/data/graficos/18020.png differ
diff --git a/compatibility/assets/data/graficos/18021.png b/compatibility/assets/data/graficos/18021.png
new file mode 100644
index 00000000..575bdfe7
Binary files /dev/null and b/compatibility/assets/data/graficos/18021.png differ
diff --git a/compatibility/assets/data/graficos/18022.png b/compatibility/assets/data/graficos/18022.png
new file mode 100644
index 00000000..c8aa735d
Binary files /dev/null and b/compatibility/assets/data/graficos/18022.png differ
diff --git a/compatibility/assets/data/graficos/18023.png b/compatibility/assets/data/graficos/18023.png
new file mode 100644
index 00000000..15b64053
Binary files /dev/null and b/compatibility/assets/data/graficos/18023.png differ
diff --git a/compatibility/assets/data/graficos/18024.png b/compatibility/assets/data/graficos/18024.png
new file mode 100644
index 00000000..86880d1b
Binary files /dev/null and b/compatibility/assets/data/graficos/18024.png differ
diff --git a/compatibility/assets/data/graficos/18025.png b/compatibility/assets/data/graficos/18025.png
new file mode 100644
index 00000000..0ba2588f
Binary files /dev/null and b/compatibility/assets/data/graficos/18025.png differ
diff --git a/compatibility/assets/data/graficos/18026.png b/compatibility/assets/data/graficos/18026.png
new file mode 100644
index 00000000..c49e2686
Binary files /dev/null and b/compatibility/assets/data/graficos/18026.png differ
diff --git a/compatibility/assets/data/graficos/18027.png b/compatibility/assets/data/graficos/18027.png
new file mode 100644
index 00000000..a823e00f
Binary files /dev/null and b/compatibility/assets/data/graficos/18027.png differ
diff --git a/compatibility/assets/data/graficos/18028.png b/compatibility/assets/data/graficos/18028.png
new file mode 100644
index 00000000..aa5b22a8
Binary files /dev/null and b/compatibility/assets/data/graficos/18028.png differ
diff --git a/compatibility/assets/data/graficos/181.png b/compatibility/assets/data/graficos/181.png
new file mode 100644
index 00000000..3b954c95
Binary files /dev/null and b/compatibility/assets/data/graficos/181.png differ
diff --git a/compatibility/assets/data/graficos/182.png b/compatibility/assets/data/graficos/182.png
new file mode 100644
index 00000000..ef085279
Binary files /dev/null and b/compatibility/assets/data/graficos/182.png differ
diff --git a/compatibility/assets/data/graficos/183.png b/compatibility/assets/data/graficos/183.png
new file mode 100644
index 00000000..f20cdf0a
Binary files /dev/null and b/compatibility/assets/data/graficos/183.png differ
diff --git a/compatibility/assets/data/graficos/184.png b/compatibility/assets/data/graficos/184.png
new file mode 100644
index 00000000..fd470f6e
Binary files /dev/null and b/compatibility/assets/data/graficos/184.png differ
diff --git a/compatibility/assets/data/graficos/185.png b/compatibility/assets/data/graficos/185.png
new file mode 100644
index 00000000..6429775a
Binary files /dev/null and b/compatibility/assets/data/graficos/185.png differ
diff --git a/compatibility/assets/data/graficos/186.png b/compatibility/assets/data/graficos/186.png
new file mode 100644
index 00000000..65148fa3
Binary files /dev/null and b/compatibility/assets/data/graficos/186.png differ
diff --git a/compatibility/assets/data/graficos/187.png b/compatibility/assets/data/graficos/187.png
new file mode 100644
index 00000000..17985101
Binary files /dev/null and b/compatibility/assets/data/graficos/187.png differ
diff --git a/compatibility/assets/data/graficos/188.png b/compatibility/assets/data/graficos/188.png
new file mode 100644
index 00000000..6272c8e6
Binary files /dev/null and b/compatibility/assets/data/graficos/188.png differ
diff --git a/compatibility/assets/data/graficos/189.png b/compatibility/assets/data/graficos/189.png
new file mode 100644
index 00000000..c0891b48
Binary files /dev/null and b/compatibility/assets/data/graficos/189.png differ
diff --git a/compatibility/assets/data/graficos/19.png b/compatibility/assets/data/graficos/19.png
new file mode 100644
index 00000000..e361d1d7
Binary files /dev/null and b/compatibility/assets/data/graficos/19.png differ
diff --git a/compatibility/assets/data/graficos/190.png b/compatibility/assets/data/graficos/190.png
new file mode 100644
index 00000000..eb3b191e
Binary files /dev/null and b/compatibility/assets/data/graficos/190.png differ
diff --git a/compatibility/assets/data/graficos/19000.png b/compatibility/assets/data/graficos/19000.png
new file mode 100644
index 00000000..58aee69f
Binary files /dev/null and b/compatibility/assets/data/graficos/19000.png differ
diff --git a/compatibility/assets/data/graficos/19001.png b/compatibility/assets/data/graficos/19001.png
new file mode 100644
index 00000000..83175e9a
Binary files /dev/null and b/compatibility/assets/data/graficos/19001.png differ
diff --git a/compatibility/assets/data/graficos/19002.png b/compatibility/assets/data/graficos/19002.png
new file mode 100644
index 00000000..5130ea63
Binary files /dev/null and b/compatibility/assets/data/graficos/19002.png differ
diff --git a/compatibility/assets/data/graficos/19003.png b/compatibility/assets/data/graficos/19003.png
new file mode 100644
index 00000000..ecef795d
Binary files /dev/null and b/compatibility/assets/data/graficos/19003.png differ
diff --git a/compatibility/assets/data/graficos/19004.png b/compatibility/assets/data/graficos/19004.png
new file mode 100644
index 00000000..aa1065fe
Binary files /dev/null and b/compatibility/assets/data/graficos/19004.png differ
diff --git a/compatibility/assets/data/graficos/19005.png b/compatibility/assets/data/graficos/19005.png
new file mode 100644
index 00000000..71ea3c63
Binary files /dev/null and b/compatibility/assets/data/graficos/19005.png differ
diff --git a/compatibility/assets/data/graficos/19006.png b/compatibility/assets/data/graficos/19006.png
new file mode 100644
index 00000000..028cb59f
Binary files /dev/null and b/compatibility/assets/data/graficos/19006.png differ
diff --git a/compatibility/assets/data/graficos/19007.png b/compatibility/assets/data/graficos/19007.png
new file mode 100644
index 00000000..bb5614b9
Binary files /dev/null and b/compatibility/assets/data/graficos/19007.png differ
diff --git a/compatibility/assets/data/graficos/19008.png b/compatibility/assets/data/graficos/19008.png
new file mode 100644
index 00000000..8af04dc6
Binary files /dev/null and b/compatibility/assets/data/graficos/19008.png differ
diff --git a/compatibility/assets/data/graficos/19009.png b/compatibility/assets/data/graficos/19009.png
new file mode 100644
index 00000000..b1f3d8f5
Binary files /dev/null and b/compatibility/assets/data/graficos/19009.png differ
diff --git a/compatibility/assets/data/graficos/19010.png b/compatibility/assets/data/graficos/19010.png
new file mode 100644
index 00000000..624df228
Binary files /dev/null and b/compatibility/assets/data/graficos/19010.png differ
diff --git a/compatibility/assets/data/graficos/19011.png b/compatibility/assets/data/graficos/19011.png
new file mode 100644
index 00000000..65079c8d
Binary files /dev/null and b/compatibility/assets/data/graficos/19011.png differ
diff --git a/compatibility/assets/data/graficos/19012.png b/compatibility/assets/data/graficos/19012.png
new file mode 100644
index 00000000..2fa860de
Binary files /dev/null and b/compatibility/assets/data/graficos/19012.png differ
diff --git a/compatibility/assets/data/graficos/19013.png b/compatibility/assets/data/graficos/19013.png
new file mode 100644
index 00000000..3ce5bc17
Binary files /dev/null and b/compatibility/assets/data/graficos/19013.png differ
diff --git a/compatibility/assets/data/graficos/19014.png b/compatibility/assets/data/graficos/19014.png
new file mode 100644
index 00000000..00bd6809
Binary files /dev/null and b/compatibility/assets/data/graficos/19014.png differ
diff --git a/compatibility/assets/data/graficos/19015.png b/compatibility/assets/data/graficos/19015.png
new file mode 100644
index 00000000..0c456cc6
Binary files /dev/null and b/compatibility/assets/data/graficos/19015.png differ
diff --git a/compatibility/assets/data/graficos/19016.png b/compatibility/assets/data/graficos/19016.png
new file mode 100644
index 00000000..ea50697d
Binary files /dev/null and b/compatibility/assets/data/graficos/19016.png differ
diff --git a/compatibility/assets/data/graficos/19017.png b/compatibility/assets/data/graficos/19017.png
new file mode 100644
index 00000000..1cd5aa61
Binary files /dev/null and b/compatibility/assets/data/graficos/19017.png differ
diff --git a/compatibility/assets/data/graficos/19018.png b/compatibility/assets/data/graficos/19018.png
new file mode 100644
index 00000000..961fcaf9
Binary files /dev/null and b/compatibility/assets/data/graficos/19018.png differ
diff --git a/compatibility/assets/data/graficos/19019.png b/compatibility/assets/data/graficos/19019.png
new file mode 100644
index 00000000..830ce985
Binary files /dev/null and b/compatibility/assets/data/graficos/19019.png differ
diff --git a/compatibility/assets/data/graficos/19020.png b/compatibility/assets/data/graficos/19020.png
new file mode 100644
index 00000000..26e6d939
Binary files /dev/null and b/compatibility/assets/data/graficos/19020.png differ
diff --git a/compatibility/assets/data/graficos/19021.png b/compatibility/assets/data/graficos/19021.png
new file mode 100644
index 00000000..0fad7e90
Binary files /dev/null and b/compatibility/assets/data/graficos/19021.png differ
diff --git a/compatibility/assets/data/graficos/19022.png b/compatibility/assets/data/graficos/19022.png
new file mode 100644
index 00000000..e47fb09a
Binary files /dev/null and b/compatibility/assets/data/graficos/19022.png differ
diff --git a/compatibility/assets/data/graficos/19023.png b/compatibility/assets/data/graficos/19023.png
new file mode 100644
index 00000000..40e9cbd4
Binary files /dev/null and b/compatibility/assets/data/graficos/19023.png differ
diff --git a/compatibility/assets/data/graficos/19024.png b/compatibility/assets/data/graficos/19024.png
new file mode 100644
index 00000000..894edff5
Binary files /dev/null and b/compatibility/assets/data/graficos/19024.png differ
diff --git a/compatibility/assets/data/graficos/19025.png b/compatibility/assets/data/graficos/19025.png
new file mode 100644
index 00000000..1f42f1f4
Binary files /dev/null and b/compatibility/assets/data/graficos/19025.png differ
diff --git a/compatibility/assets/data/graficos/19026.png b/compatibility/assets/data/graficos/19026.png
new file mode 100644
index 00000000..2c7728b6
Binary files /dev/null and b/compatibility/assets/data/graficos/19026.png differ
diff --git a/compatibility/assets/data/graficos/19027.png b/compatibility/assets/data/graficos/19027.png
new file mode 100644
index 00000000..a51211e3
Binary files /dev/null and b/compatibility/assets/data/graficos/19027.png differ
diff --git a/compatibility/assets/data/graficos/19028.png b/compatibility/assets/data/graficos/19028.png
new file mode 100644
index 00000000..6713981d
Binary files /dev/null and b/compatibility/assets/data/graficos/19028.png differ
diff --git a/compatibility/assets/data/graficos/191.png b/compatibility/assets/data/graficos/191.png
new file mode 100644
index 00000000..23d87805
Binary files /dev/null and b/compatibility/assets/data/graficos/191.png differ
diff --git a/compatibility/assets/data/graficos/192.png b/compatibility/assets/data/graficos/192.png
new file mode 100644
index 00000000..283cff4d
Binary files /dev/null and b/compatibility/assets/data/graficos/192.png differ
diff --git a/compatibility/assets/data/graficos/193.png b/compatibility/assets/data/graficos/193.png
new file mode 100644
index 00000000..0f494dd5
Binary files /dev/null and b/compatibility/assets/data/graficos/193.png differ
diff --git a/compatibility/assets/data/graficos/194.png b/compatibility/assets/data/graficos/194.png
new file mode 100644
index 00000000..aec4c424
Binary files /dev/null and b/compatibility/assets/data/graficos/194.png differ
diff --git a/compatibility/assets/data/graficos/195.png b/compatibility/assets/data/graficos/195.png
new file mode 100644
index 00000000..645b8c89
Binary files /dev/null and b/compatibility/assets/data/graficos/195.png differ
diff --git a/compatibility/assets/data/graficos/196.png b/compatibility/assets/data/graficos/196.png
new file mode 100644
index 00000000..8f99e8fc
Binary files /dev/null and b/compatibility/assets/data/graficos/196.png differ
diff --git a/compatibility/assets/data/graficos/197.png b/compatibility/assets/data/graficos/197.png
new file mode 100644
index 00000000..070cbfcd
Binary files /dev/null and b/compatibility/assets/data/graficos/197.png differ
diff --git a/compatibility/assets/data/graficos/198.png b/compatibility/assets/data/graficos/198.png
new file mode 100644
index 00000000..dd5cabe7
Binary files /dev/null and b/compatibility/assets/data/graficos/198.png differ
diff --git a/compatibility/assets/data/graficos/199.png b/compatibility/assets/data/graficos/199.png
new file mode 100644
index 00000000..e22e097f
Binary files /dev/null and b/compatibility/assets/data/graficos/199.png differ
diff --git a/compatibility/assets/data/graficos/2.png b/compatibility/assets/data/graficos/2.png
new file mode 100644
index 00000000..0670592f
Binary files /dev/null and b/compatibility/assets/data/graficos/2.png differ
diff --git a/compatibility/assets/data/graficos/20.png b/compatibility/assets/data/graficos/20.png
new file mode 100644
index 00000000..b600bb98
Binary files /dev/null and b/compatibility/assets/data/graficos/20.png differ
diff --git a/compatibility/assets/data/graficos/200.png b/compatibility/assets/data/graficos/200.png
new file mode 100644
index 00000000..77207a46
Binary files /dev/null and b/compatibility/assets/data/graficos/200.png differ
diff --git a/compatibility/assets/data/graficos/2000.png b/compatibility/assets/data/graficos/2000.png
new file mode 100644
index 00000000..5a87e06b
Binary files /dev/null and b/compatibility/assets/data/graficos/2000.png differ
diff --git a/compatibility/assets/data/graficos/20000.png b/compatibility/assets/data/graficos/20000.png
new file mode 100644
index 00000000..24909a6f
Binary files /dev/null and b/compatibility/assets/data/graficos/20000.png differ
diff --git a/compatibility/assets/data/graficos/20001.png b/compatibility/assets/data/graficos/20001.png
new file mode 100644
index 00000000..e7c87192
Binary files /dev/null and b/compatibility/assets/data/graficos/20001.png differ
diff --git a/compatibility/assets/data/graficos/20002.png b/compatibility/assets/data/graficos/20002.png
new file mode 100644
index 00000000..e24305af
Binary files /dev/null and b/compatibility/assets/data/graficos/20002.png differ
diff --git a/compatibility/assets/data/graficos/20003.png b/compatibility/assets/data/graficos/20003.png
new file mode 100644
index 00000000..dbf5f722
Binary files /dev/null and b/compatibility/assets/data/graficos/20003.png differ
diff --git a/compatibility/assets/data/graficos/20004.png b/compatibility/assets/data/graficos/20004.png
new file mode 100644
index 00000000..4933cf00
Binary files /dev/null and b/compatibility/assets/data/graficos/20004.png differ
diff --git a/compatibility/assets/data/graficos/20005.png b/compatibility/assets/data/graficos/20005.png
new file mode 100644
index 00000000..78837d51
Binary files /dev/null and b/compatibility/assets/data/graficos/20005.png differ
diff --git a/compatibility/assets/data/graficos/20006.png b/compatibility/assets/data/graficos/20006.png
new file mode 100644
index 00000000..caf1fda9
Binary files /dev/null and b/compatibility/assets/data/graficos/20006.png differ
diff --git a/compatibility/assets/data/graficos/20007.png b/compatibility/assets/data/graficos/20007.png
new file mode 100644
index 00000000..6b70805a
Binary files /dev/null and b/compatibility/assets/data/graficos/20007.png differ
diff --git a/compatibility/assets/data/graficos/20008.png b/compatibility/assets/data/graficos/20008.png
new file mode 100644
index 00000000..f7830863
Binary files /dev/null and b/compatibility/assets/data/graficos/20008.png differ
diff --git a/compatibility/assets/data/graficos/20009.png b/compatibility/assets/data/graficos/20009.png
new file mode 100644
index 00000000..99c92a79
Binary files /dev/null and b/compatibility/assets/data/graficos/20009.png differ
diff --git a/compatibility/assets/data/graficos/2001.png b/compatibility/assets/data/graficos/2001.png
new file mode 100644
index 00000000..7f3ab87e
Binary files /dev/null and b/compatibility/assets/data/graficos/2001.png differ
diff --git a/compatibility/assets/data/graficos/20010.png b/compatibility/assets/data/graficos/20010.png
new file mode 100644
index 00000000..669aecf6
Binary files /dev/null and b/compatibility/assets/data/graficos/20010.png differ
diff --git a/compatibility/assets/data/graficos/20011.png b/compatibility/assets/data/graficos/20011.png
new file mode 100644
index 00000000..4ae4ae9c
Binary files /dev/null and b/compatibility/assets/data/graficos/20011.png differ
diff --git a/compatibility/assets/data/graficos/20012.png b/compatibility/assets/data/graficos/20012.png
new file mode 100644
index 00000000..9aea51fe
Binary files /dev/null and b/compatibility/assets/data/graficos/20012.png differ
diff --git a/compatibility/assets/data/graficos/20013.png b/compatibility/assets/data/graficos/20013.png
new file mode 100644
index 00000000..95cd1a45
Binary files /dev/null and b/compatibility/assets/data/graficos/20013.png differ
diff --git a/compatibility/assets/data/graficos/20014.png b/compatibility/assets/data/graficos/20014.png
new file mode 100644
index 00000000..116bb271
Binary files /dev/null and b/compatibility/assets/data/graficos/20014.png differ
diff --git a/compatibility/assets/data/graficos/20015.png b/compatibility/assets/data/graficos/20015.png
new file mode 100644
index 00000000..3115ec6f
Binary files /dev/null and b/compatibility/assets/data/graficos/20015.png differ
diff --git a/compatibility/assets/data/graficos/20016.png b/compatibility/assets/data/graficos/20016.png
new file mode 100644
index 00000000..efe1530f
Binary files /dev/null and b/compatibility/assets/data/graficos/20016.png differ
diff --git a/compatibility/assets/data/graficos/20017.png b/compatibility/assets/data/graficos/20017.png
new file mode 100644
index 00000000..99f3eb01
Binary files /dev/null and b/compatibility/assets/data/graficos/20017.png differ
diff --git a/compatibility/assets/data/graficos/20018.png b/compatibility/assets/data/graficos/20018.png
new file mode 100644
index 00000000..1b91e8b2
Binary files /dev/null and b/compatibility/assets/data/graficos/20018.png differ
diff --git a/compatibility/assets/data/graficos/20019.png b/compatibility/assets/data/graficos/20019.png
new file mode 100644
index 00000000..8b0b4b15
Binary files /dev/null and b/compatibility/assets/data/graficos/20019.png differ
diff --git a/compatibility/assets/data/graficos/2002.png b/compatibility/assets/data/graficos/2002.png
new file mode 100644
index 00000000..21196ff4
Binary files /dev/null and b/compatibility/assets/data/graficos/2002.png differ
diff --git a/compatibility/assets/data/graficos/2003.png b/compatibility/assets/data/graficos/2003.png
new file mode 100644
index 00000000..5d4cd52d
Binary files /dev/null and b/compatibility/assets/data/graficos/2003.png differ
diff --git a/compatibility/assets/data/graficos/2004.png b/compatibility/assets/data/graficos/2004.png
new file mode 100644
index 00000000..3f623da9
Binary files /dev/null and b/compatibility/assets/data/graficos/2004.png differ
diff --git a/compatibility/assets/data/graficos/2005.png b/compatibility/assets/data/graficos/2005.png
new file mode 100644
index 00000000..581c7d85
Binary files /dev/null and b/compatibility/assets/data/graficos/2005.png differ
diff --git a/compatibility/assets/data/graficos/2006.png b/compatibility/assets/data/graficos/2006.png
new file mode 100644
index 00000000..a901e7e6
Binary files /dev/null and b/compatibility/assets/data/graficos/2006.png differ
diff --git a/compatibility/assets/data/graficos/2007.png b/compatibility/assets/data/graficos/2007.png
new file mode 100644
index 00000000..4750a6b7
Binary files /dev/null and b/compatibility/assets/data/graficos/2007.png differ
diff --git a/compatibility/assets/data/graficos/2008.png b/compatibility/assets/data/graficos/2008.png
new file mode 100644
index 00000000..ae5e20ed
Binary files /dev/null and b/compatibility/assets/data/graficos/2008.png differ
diff --git a/compatibility/assets/data/graficos/2009.png b/compatibility/assets/data/graficos/2009.png
new file mode 100644
index 00000000..cd1d3f18
Binary files /dev/null and b/compatibility/assets/data/graficos/2009.png differ
diff --git a/compatibility/assets/data/graficos/201.png b/compatibility/assets/data/graficos/201.png
new file mode 100644
index 00000000..6bb6dae0
Binary files /dev/null and b/compatibility/assets/data/graficos/201.png differ
diff --git a/compatibility/assets/data/graficos/2010.png b/compatibility/assets/data/graficos/2010.png
new file mode 100644
index 00000000..c3a1439d
Binary files /dev/null and b/compatibility/assets/data/graficos/2010.png differ
diff --git a/compatibility/assets/data/graficos/2011.png b/compatibility/assets/data/graficos/2011.png
new file mode 100644
index 00000000..e06ec512
Binary files /dev/null and b/compatibility/assets/data/graficos/2011.png differ
diff --git a/compatibility/assets/data/graficos/2012.png b/compatibility/assets/data/graficos/2012.png
new file mode 100644
index 00000000..252d00a2
Binary files /dev/null and b/compatibility/assets/data/graficos/2012.png differ
diff --git a/compatibility/assets/data/graficos/2013.png b/compatibility/assets/data/graficos/2013.png
new file mode 100644
index 00000000..e37aa107
Binary files /dev/null and b/compatibility/assets/data/graficos/2013.png differ
diff --git a/compatibility/assets/data/graficos/2014.png b/compatibility/assets/data/graficos/2014.png
new file mode 100644
index 00000000..b2f2360b
Binary files /dev/null and b/compatibility/assets/data/graficos/2014.png differ
diff --git a/compatibility/assets/data/graficos/2015.png b/compatibility/assets/data/graficos/2015.png
new file mode 100644
index 00000000..ea2976f6
Binary files /dev/null and b/compatibility/assets/data/graficos/2015.png differ
diff --git a/compatibility/assets/data/graficos/2016.png b/compatibility/assets/data/graficos/2016.png
new file mode 100644
index 00000000..a9476e3e
Binary files /dev/null and b/compatibility/assets/data/graficos/2016.png differ
diff --git a/compatibility/assets/data/graficos/2017.png b/compatibility/assets/data/graficos/2017.png
new file mode 100644
index 00000000..3c52b23d
Binary files /dev/null and b/compatibility/assets/data/graficos/2017.png differ
diff --git a/compatibility/assets/data/graficos/2018.png b/compatibility/assets/data/graficos/2018.png
new file mode 100644
index 00000000..80d164c2
Binary files /dev/null and b/compatibility/assets/data/graficos/2018.png differ
diff --git a/compatibility/assets/data/graficos/2019.png b/compatibility/assets/data/graficos/2019.png
new file mode 100644
index 00000000..d1d1e92b
Binary files /dev/null and b/compatibility/assets/data/graficos/2019.png differ
diff --git a/compatibility/assets/data/graficos/202.png b/compatibility/assets/data/graficos/202.png
new file mode 100644
index 00000000..8a45ae88
Binary files /dev/null and b/compatibility/assets/data/graficos/202.png differ
diff --git a/compatibility/assets/data/graficos/2020.png b/compatibility/assets/data/graficos/2020.png
new file mode 100644
index 00000000..ebc1a0d8
Binary files /dev/null and b/compatibility/assets/data/graficos/2020.png differ
diff --git a/compatibility/assets/data/graficos/2021.png b/compatibility/assets/data/graficos/2021.png
new file mode 100644
index 00000000..a6cb05f5
Binary files /dev/null and b/compatibility/assets/data/graficos/2021.png differ
diff --git a/compatibility/assets/data/graficos/2022.png b/compatibility/assets/data/graficos/2022.png
new file mode 100644
index 00000000..1d2064d8
Binary files /dev/null and b/compatibility/assets/data/graficos/2022.png differ
diff --git a/compatibility/assets/data/graficos/2023.png b/compatibility/assets/data/graficos/2023.png
new file mode 100644
index 00000000..58866b3a
Binary files /dev/null and b/compatibility/assets/data/graficos/2023.png differ
diff --git a/compatibility/assets/data/graficos/2024.png b/compatibility/assets/data/graficos/2024.png
new file mode 100644
index 00000000..62c5211d
Binary files /dev/null and b/compatibility/assets/data/graficos/2024.png differ
diff --git a/compatibility/assets/data/graficos/2025.png b/compatibility/assets/data/graficos/2025.png
new file mode 100644
index 00000000..4ebd7cb4
Binary files /dev/null and b/compatibility/assets/data/graficos/2025.png differ
diff --git a/compatibility/assets/data/graficos/2026.png b/compatibility/assets/data/graficos/2026.png
new file mode 100644
index 00000000..a39bbd39
Binary files /dev/null and b/compatibility/assets/data/graficos/2026.png differ
diff --git a/compatibility/assets/data/graficos/2027.png b/compatibility/assets/data/graficos/2027.png
new file mode 100644
index 00000000..58ac074f
Binary files /dev/null and b/compatibility/assets/data/graficos/2027.png differ
diff --git a/compatibility/assets/data/graficos/2028.png b/compatibility/assets/data/graficos/2028.png
new file mode 100644
index 00000000..4e4a32d9
Binary files /dev/null and b/compatibility/assets/data/graficos/2028.png differ
diff --git a/compatibility/assets/data/graficos/2029.png b/compatibility/assets/data/graficos/2029.png
new file mode 100644
index 00000000..2de0aa86
Binary files /dev/null and b/compatibility/assets/data/graficos/2029.png differ
diff --git a/compatibility/assets/data/graficos/203.png b/compatibility/assets/data/graficos/203.png
new file mode 100644
index 00000000..bdfb0ebf
Binary files /dev/null and b/compatibility/assets/data/graficos/203.png differ
diff --git a/compatibility/assets/data/graficos/2030.png b/compatibility/assets/data/graficos/2030.png
new file mode 100644
index 00000000..c581eaf8
Binary files /dev/null and b/compatibility/assets/data/graficos/2030.png differ
diff --git a/compatibility/assets/data/graficos/2031.png b/compatibility/assets/data/graficos/2031.png
new file mode 100644
index 00000000..4b406c46
Binary files /dev/null and b/compatibility/assets/data/graficos/2031.png differ
diff --git a/compatibility/assets/data/graficos/2032.png b/compatibility/assets/data/graficos/2032.png
new file mode 100644
index 00000000..6e05f3fc
Binary files /dev/null and b/compatibility/assets/data/graficos/2032.png differ
diff --git a/compatibility/assets/data/graficos/2033.png b/compatibility/assets/data/graficos/2033.png
new file mode 100644
index 00000000..0d470caa
Binary files /dev/null and b/compatibility/assets/data/graficos/2033.png differ
diff --git a/compatibility/assets/data/graficos/2034.png b/compatibility/assets/data/graficos/2034.png
new file mode 100644
index 00000000..dffe61a6
Binary files /dev/null and b/compatibility/assets/data/graficos/2034.png differ
diff --git a/compatibility/assets/data/graficos/2035.png b/compatibility/assets/data/graficos/2035.png
new file mode 100644
index 00000000..c264e6ad
Binary files /dev/null and b/compatibility/assets/data/graficos/2035.png differ
diff --git a/compatibility/assets/data/graficos/2036.png b/compatibility/assets/data/graficos/2036.png
new file mode 100644
index 00000000..963b332a
Binary files /dev/null and b/compatibility/assets/data/graficos/2036.png differ
diff --git a/compatibility/assets/data/graficos/2037.png b/compatibility/assets/data/graficos/2037.png
new file mode 100644
index 00000000..e95681e9
Binary files /dev/null and b/compatibility/assets/data/graficos/2037.png differ
diff --git a/compatibility/assets/data/graficos/2038.png b/compatibility/assets/data/graficos/2038.png
new file mode 100644
index 00000000..7ced4309
Binary files /dev/null and b/compatibility/assets/data/graficos/2038.png differ
diff --git a/compatibility/assets/data/graficos/2039.png b/compatibility/assets/data/graficos/2039.png
new file mode 100644
index 00000000..222e7f23
Binary files /dev/null and b/compatibility/assets/data/graficos/2039.png differ
diff --git a/compatibility/assets/data/graficos/204.png b/compatibility/assets/data/graficos/204.png
new file mode 100644
index 00000000..c41212f9
Binary files /dev/null and b/compatibility/assets/data/graficos/204.png differ
diff --git a/compatibility/assets/data/graficos/2040.png b/compatibility/assets/data/graficos/2040.png
new file mode 100644
index 00000000..d266c733
Binary files /dev/null and b/compatibility/assets/data/graficos/2040.png differ
diff --git a/compatibility/assets/data/graficos/2041.png b/compatibility/assets/data/graficos/2041.png
new file mode 100644
index 00000000..61fd810e
Binary files /dev/null and b/compatibility/assets/data/graficos/2041.png differ
diff --git a/compatibility/assets/data/graficos/2042.png b/compatibility/assets/data/graficos/2042.png
new file mode 100644
index 00000000..21d951cf
Binary files /dev/null and b/compatibility/assets/data/graficos/2042.png differ
diff --git a/compatibility/assets/data/graficos/2043.png b/compatibility/assets/data/graficos/2043.png
new file mode 100644
index 00000000..cb0960f0
Binary files /dev/null and b/compatibility/assets/data/graficos/2043.png differ
diff --git a/compatibility/assets/data/graficos/2044.png b/compatibility/assets/data/graficos/2044.png
new file mode 100644
index 00000000..a6eb27ea
Binary files /dev/null and b/compatibility/assets/data/graficos/2044.png differ
diff --git a/compatibility/assets/data/graficos/2045.png b/compatibility/assets/data/graficos/2045.png
new file mode 100644
index 00000000..ea0b1c33
Binary files /dev/null and b/compatibility/assets/data/graficos/2045.png differ
diff --git a/compatibility/assets/data/graficos/2046.png b/compatibility/assets/data/graficos/2046.png
new file mode 100644
index 00000000..e9a5243e
Binary files /dev/null and b/compatibility/assets/data/graficos/2046.png differ
diff --git a/compatibility/assets/data/graficos/2047.png b/compatibility/assets/data/graficos/2047.png
new file mode 100644
index 00000000..16b71b82
Binary files /dev/null and b/compatibility/assets/data/graficos/2047.png differ
diff --git a/compatibility/assets/data/graficos/2048.png b/compatibility/assets/data/graficos/2048.png
new file mode 100644
index 00000000..5521beb2
Binary files /dev/null and b/compatibility/assets/data/graficos/2048.png differ
diff --git a/compatibility/assets/data/graficos/2049.png b/compatibility/assets/data/graficos/2049.png
new file mode 100644
index 00000000..c7bf8eed
Binary files /dev/null and b/compatibility/assets/data/graficos/2049.png differ
diff --git a/compatibility/assets/data/graficos/205.png b/compatibility/assets/data/graficos/205.png
new file mode 100644
index 00000000..266b76cd
Binary files /dev/null and b/compatibility/assets/data/graficos/205.png differ
diff --git a/compatibility/assets/data/graficos/2050.png b/compatibility/assets/data/graficos/2050.png
new file mode 100644
index 00000000..627ffa38
Binary files /dev/null and b/compatibility/assets/data/graficos/2050.png differ
diff --git a/compatibility/assets/data/graficos/2051.png b/compatibility/assets/data/graficos/2051.png
new file mode 100644
index 00000000..73950ab5
Binary files /dev/null and b/compatibility/assets/data/graficos/2051.png differ
diff --git a/compatibility/assets/data/graficos/2052.png b/compatibility/assets/data/graficos/2052.png
new file mode 100644
index 00000000..df593eae
Binary files /dev/null and b/compatibility/assets/data/graficos/2052.png differ
diff --git a/compatibility/assets/data/graficos/2053.png b/compatibility/assets/data/graficos/2053.png
new file mode 100644
index 00000000..6a6f3013
Binary files /dev/null and b/compatibility/assets/data/graficos/2053.png differ
diff --git a/compatibility/assets/data/graficos/2054.png b/compatibility/assets/data/graficos/2054.png
new file mode 100644
index 00000000..7047d977
Binary files /dev/null and b/compatibility/assets/data/graficos/2054.png differ
diff --git a/compatibility/assets/data/graficos/2055.png b/compatibility/assets/data/graficos/2055.png
new file mode 100644
index 00000000..cbb65278
Binary files /dev/null and b/compatibility/assets/data/graficos/2055.png differ
diff --git a/compatibility/assets/data/graficos/2056.png b/compatibility/assets/data/graficos/2056.png
new file mode 100644
index 00000000..3ea1eaf6
Binary files /dev/null and b/compatibility/assets/data/graficos/2056.png differ
diff --git a/compatibility/assets/data/graficos/2057.png b/compatibility/assets/data/graficos/2057.png
new file mode 100644
index 00000000..8f9e5588
Binary files /dev/null and b/compatibility/assets/data/graficos/2057.png differ
diff --git a/compatibility/assets/data/graficos/2058.png b/compatibility/assets/data/graficos/2058.png
new file mode 100644
index 00000000..210192cf
Binary files /dev/null and b/compatibility/assets/data/graficos/2058.png differ
diff --git a/compatibility/assets/data/graficos/2059.png b/compatibility/assets/data/graficos/2059.png
new file mode 100644
index 00000000..f394e1be
Binary files /dev/null and b/compatibility/assets/data/graficos/2059.png differ
diff --git a/compatibility/assets/data/graficos/206.png b/compatibility/assets/data/graficos/206.png
new file mode 100644
index 00000000..634cf70d
Binary files /dev/null and b/compatibility/assets/data/graficos/206.png differ
diff --git a/compatibility/assets/data/graficos/2060.png b/compatibility/assets/data/graficos/2060.png
new file mode 100644
index 00000000..192efc36
Binary files /dev/null and b/compatibility/assets/data/graficos/2060.png differ
diff --git a/compatibility/assets/data/graficos/2061.png b/compatibility/assets/data/graficos/2061.png
new file mode 100644
index 00000000..6eae7595
Binary files /dev/null and b/compatibility/assets/data/graficos/2061.png differ
diff --git a/compatibility/assets/data/graficos/2062.png b/compatibility/assets/data/graficos/2062.png
new file mode 100644
index 00000000..acd31b00
Binary files /dev/null and b/compatibility/assets/data/graficos/2062.png differ
diff --git a/compatibility/assets/data/graficos/2063.png b/compatibility/assets/data/graficos/2063.png
new file mode 100644
index 00000000..3484d748
Binary files /dev/null and b/compatibility/assets/data/graficos/2063.png differ
diff --git a/compatibility/assets/data/graficos/2064.png b/compatibility/assets/data/graficos/2064.png
new file mode 100644
index 00000000..9dc5fdb8
Binary files /dev/null and b/compatibility/assets/data/graficos/2064.png differ
diff --git a/compatibility/assets/data/graficos/2065.png b/compatibility/assets/data/graficos/2065.png
new file mode 100644
index 00000000..0de54ba5
Binary files /dev/null and b/compatibility/assets/data/graficos/2065.png differ
diff --git a/compatibility/assets/data/graficos/2066.png b/compatibility/assets/data/graficos/2066.png
new file mode 100644
index 00000000..972b0fc4
Binary files /dev/null and b/compatibility/assets/data/graficos/2066.png differ
diff --git a/compatibility/assets/data/graficos/2067.png b/compatibility/assets/data/graficos/2067.png
new file mode 100644
index 00000000..8b600ce6
Binary files /dev/null and b/compatibility/assets/data/graficos/2067.png differ
diff --git a/compatibility/assets/data/graficos/2068.png b/compatibility/assets/data/graficos/2068.png
new file mode 100644
index 00000000..43a7ea74
Binary files /dev/null and b/compatibility/assets/data/graficos/2068.png differ
diff --git a/compatibility/assets/data/graficos/2069.png b/compatibility/assets/data/graficos/2069.png
new file mode 100644
index 00000000..0ece8ce6
Binary files /dev/null and b/compatibility/assets/data/graficos/2069.png differ
diff --git a/compatibility/assets/data/graficos/207.png b/compatibility/assets/data/graficos/207.png
new file mode 100644
index 00000000..e8b4bf95
Binary files /dev/null and b/compatibility/assets/data/graficos/207.png differ
diff --git a/compatibility/assets/data/graficos/2070.png b/compatibility/assets/data/graficos/2070.png
new file mode 100644
index 00000000..deac5b18
Binary files /dev/null and b/compatibility/assets/data/graficos/2070.png differ
diff --git a/compatibility/assets/data/graficos/2071.png b/compatibility/assets/data/graficos/2071.png
new file mode 100644
index 00000000..2fff36c1
Binary files /dev/null and b/compatibility/assets/data/graficos/2071.png differ
diff --git a/compatibility/assets/data/graficos/2072.png b/compatibility/assets/data/graficos/2072.png
new file mode 100644
index 00000000..5a27048b
Binary files /dev/null and b/compatibility/assets/data/graficos/2072.png differ
diff --git a/compatibility/assets/data/graficos/2073.png b/compatibility/assets/data/graficos/2073.png
new file mode 100644
index 00000000..dd640572
Binary files /dev/null and b/compatibility/assets/data/graficos/2073.png differ
diff --git a/compatibility/assets/data/graficos/2074.png b/compatibility/assets/data/graficos/2074.png
new file mode 100644
index 00000000..29cfc9cb
Binary files /dev/null and b/compatibility/assets/data/graficos/2074.png differ
diff --git a/compatibility/assets/data/graficos/2075.png b/compatibility/assets/data/graficos/2075.png
new file mode 100644
index 00000000..7ae6423e
Binary files /dev/null and b/compatibility/assets/data/graficos/2075.png differ
diff --git a/compatibility/assets/data/graficos/2076.png b/compatibility/assets/data/graficos/2076.png
new file mode 100644
index 00000000..d64108b1
Binary files /dev/null and b/compatibility/assets/data/graficos/2076.png differ
diff --git a/compatibility/assets/data/graficos/2077.png b/compatibility/assets/data/graficos/2077.png
new file mode 100644
index 00000000..4566dca1
Binary files /dev/null and b/compatibility/assets/data/graficos/2077.png differ
diff --git a/compatibility/assets/data/graficos/2078.png b/compatibility/assets/data/graficos/2078.png
new file mode 100644
index 00000000..ab0890b2
Binary files /dev/null and b/compatibility/assets/data/graficos/2078.png differ
diff --git a/compatibility/assets/data/graficos/2079.png b/compatibility/assets/data/graficos/2079.png
new file mode 100644
index 00000000..243dcd90
Binary files /dev/null and b/compatibility/assets/data/graficos/2079.png differ
diff --git a/compatibility/assets/data/graficos/208.png b/compatibility/assets/data/graficos/208.png
new file mode 100644
index 00000000..7122f06c
Binary files /dev/null and b/compatibility/assets/data/graficos/208.png differ
diff --git a/compatibility/assets/data/graficos/2080.png b/compatibility/assets/data/graficos/2080.png
new file mode 100644
index 00000000..eefa450e
Binary files /dev/null and b/compatibility/assets/data/graficos/2080.png differ
diff --git a/compatibility/assets/data/graficos/2081.png b/compatibility/assets/data/graficos/2081.png
new file mode 100644
index 00000000..f3f382e9
Binary files /dev/null and b/compatibility/assets/data/graficos/2081.png differ
diff --git a/compatibility/assets/data/graficos/2082.png b/compatibility/assets/data/graficos/2082.png
new file mode 100644
index 00000000..a471e009
Binary files /dev/null and b/compatibility/assets/data/graficos/2082.png differ
diff --git a/compatibility/assets/data/graficos/2083.png b/compatibility/assets/data/graficos/2083.png
new file mode 100644
index 00000000..d0ffd0ec
Binary files /dev/null and b/compatibility/assets/data/graficos/2083.png differ
diff --git a/compatibility/assets/data/graficos/2084.png b/compatibility/assets/data/graficos/2084.png
new file mode 100644
index 00000000..9acdbb46
Binary files /dev/null and b/compatibility/assets/data/graficos/2084.png differ
diff --git a/compatibility/assets/data/graficos/2085.png b/compatibility/assets/data/graficos/2085.png
new file mode 100644
index 00000000..7c1ff999
Binary files /dev/null and b/compatibility/assets/data/graficos/2085.png differ
diff --git a/compatibility/assets/data/graficos/2086.png b/compatibility/assets/data/graficos/2086.png
new file mode 100644
index 00000000..6265613d
Binary files /dev/null and b/compatibility/assets/data/graficos/2086.png differ
diff --git a/compatibility/assets/data/graficos/2087.png b/compatibility/assets/data/graficos/2087.png
new file mode 100644
index 00000000..c16775cf
Binary files /dev/null and b/compatibility/assets/data/graficos/2087.png differ
diff --git a/compatibility/assets/data/graficos/2088.png b/compatibility/assets/data/graficos/2088.png
new file mode 100644
index 00000000..8766595e
Binary files /dev/null and b/compatibility/assets/data/graficos/2088.png differ
diff --git a/compatibility/assets/data/graficos/2089.png b/compatibility/assets/data/graficos/2089.png
new file mode 100644
index 00000000..02ca5522
Binary files /dev/null and b/compatibility/assets/data/graficos/2089.png differ
diff --git a/compatibility/assets/data/graficos/209.png b/compatibility/assets/data/graficos/209.png
new file mode 100644
index 00000000..2070ae7d
Binary files /dev/null and b/compatibility/assets/data/graficos/209.png differ
diff --git a/compatibility/assets/data/graficos/2090.png b/compatibility/assets/data/graficos/2090.png
new file mode 100644
index 00000000..b1f623e9
Binary files /dev/null and b/compatibility/assets/data/graficos/2090.png differ
diff --git a/compatibility/assets/data/graficos/2091.png b/compatibility/assets/data/graficos/2091.png
new file mode 100644
index 00000000..7510efd0
Binary files /dev/null and b/compatibility/assets/data/graficos/2091.png differ
diff --git a/compatibility/assets/data/graficos/2092.png b/compatibility/assets/data/graficos/2092.png
new file mode 100644
index 00000000..551d8361
Binary files /dev/null and b/compatibility/assets/data/graficos/2092.png differ
diff --git a/compatibility/assets/data/graficos/2093.png b/compatibility/assets/data/graficos/2093.png
new file mode 100644
index 00000000..d8e0c989
Binary files /dev/null and b/compatibility/assets/data/graficos/2093.png differ
diff --git a/compatibility/assets/data/graficos/2094.png b/compatibility/assets/data/graficos/2094.png
new file mode 100644
index 00000000..44d1e815
Binary files /dev/null and b/compatibility/assets/data/graficos/2094.png differ
diff --git a/compatibility/assets/data/graficos/2095.png b/compatibility/assets/data/graficos/2095.png
new file mode 100644
index 00000000..2e4c0c5e
Binary files /dev/null and b/compatibility/assets/data/graficos/2095.png differ
diff --git a/compatibility/assets/data/graficos/2096.png b/compatibility/assets/data/graficos/2096.png
new file mode 100644
index 00000000..37f9c881
Binary files /dev/null and b/compatibility/assets/data/graficos/2096.png differ
diff --git a/compatibility/assets/data/graficos/2097.png b/compatibility/assets/data/graficos/2097.png
new file mode 100644
index 00000000..6eaed283
Binary files /dev/null and b/compatibility/assets/data/graficos/2097.png differ
diff --git a/compatibility/assets/data/graficos/2098.png b/compatibility/assets/data/graficos/2098.png
new file mode 100644
index 00000000..7b780060
Binary files /dev/null and b/compatibility/assets/data/graficos/2098.png differ
diff --git a/compatibility/assets/data/graficos/2099.png b/compatibility/assets/data/graficos/2099.png
new file mode 100644
index 00000000..5b923a98
Binary files /dev/null and b/compatibility/assets/data/graficos/2099.png differ
diff --git a/compatibility/assets/data/graficos/21.png b/compatibility/assets/data/graficos/21.png
new file mode 100644
index 00000000..87cc66f0
Binary files /dev/null and b/compatibility/assets/data/graficos/21.png differ
diff --git a/compatibility/assets/data/graficos/210.png b/compatibility/assets/data/graficos/210.png
new file mode 100644
index 00000000..52e0def7
Binary files /dev/null and b/compatibility/assets/data/graficos/210.png differ
diff --git a/compatibility/assets/data/graficos/2100.png b/compatibility/assets/data/graficos/2100.png
new file mode 100644
index 00000000..046ef2db
Binary files /dev/null and b/compatibility/assets/data/graficos/2100.png differ
diff --git a/compatibility/assets/data/graficos/21000.png b/compatibility/assets/data/graficos/21000.png
new file mode 100644
index 00000000..9b9ff67e
Binary files /dev/null and b/compatibility/assets/data/graficos/21000.png differ
diff --git a/compatibility/assets/data/graficos/21001.png b/compatibility/assets/data/graficos/21001.png
new file mode 100644
index 00000000..8e39fd14
Binary files /dev/null and b/compatibility/assets/data/graficos/21001.png differ
diff --git a/compatibility/assets/data/graficos/21002.png b/compatibility/assets/data/graficos/21002.png
new file mode 100644
index 00000000..293fb2b2
Binary files /dev/null and b/compatibility/assets/data/graficos/21002.png differ
diff --git a/compatibility/assets/data/graficos/21003.png b/compatibility/assets/data/graficos/21003.png
new file mode 100644
index 00000000..b98994ff
Binary files /dev/null and b/compatibility/assets/data/graficos/21003.png differ
diff --git a/compatibility/assets/data/graficos/21004.png b/compatibility/assets/data/graficos/21004.png
new file mode 100644
index 00000000..c000bcc1
Binary files /dev/null and b/compatibility/assets/data/graficos/21004.png differ
diff --git a/compatibility/assets/data/graficos/21005.png b/compatibility/assets/data/graficos/21005.png
new file mode 100644
index 00000000..c7e8d346
Binary files /dev/null and b/compatibility/assets/data/graficos/21005.png differ
diff --git a/compatibility/assets/data/graficos/21006.png b/compatibility/assets/data/graficos/21006.png
new file mode 100644
index 00000000..86ee1fc9
Binary files /dev/null and b/compatibility/assets/data/graficos/21006.png differ
diff --git a/compatibility/assets/data/graficos/21007.png b/compatibility/assets/data/graficos/21007.png
new file mode 100644
index 00000000..09731697
Binary files /dev/null and b/compatibility/assets/data/graficos/21007.png differ
diff --git a/compatibility/assets/data/graficos/21008.png b/compatibility/assets/data/graficos/21008.png
new file mode 100644
index 00000000..40ffc96c
Binary files /dev/null and b/compatibility/assets/data/graficos/21008.png differ
diff --git a/compatibility/assets/data/graficos/21009.png b/compatibility/assets/data/graficos/21009.png
new file mode 100644
index 00000000..df9ca27a
Binary files /dev/null and b/compatibility/assets/data/graficos/21009.png differ
diff --git a/compatibility/assets/data/graficos/2101.png b/compatibility/assets/data/graficos/2101.png
new file mode 100644
index 00000000..1a76b697
Binary files /dev/null and b/compatibility/assets/data/graficos/2101.png differ
diff --git a/compatibility/assets/data/graficos/21010.png b/compatibility/assets/data/graficos/21010.png
new file mode 100644
index 00000000..07c6c009
Binary files /dev/null and b/compatibility/assets/data/graficos/21010.png differ
diff --git a/compatibility/assets/data/graficos/21011.png b/compatibility/assets/data/graficos/21011.png
new file mode 100644
index 00000000..e541c98c
Binary files /dev/null and b/compatibility/assets/data/graficos/21011.png differ
diff --git a/compatibility/assets/data/graficos/21012.png b/compatibility/assets/data/graficos/21012.png
new file mode 100644
index 00000000..571521e8
Binary files /dev/null and b/compatibility/assets/data/graficos/21012.png differ
diff --git a/compatibility/assets/data/graficos/21013.png b/compatibility/assets/data/graficos/21013.png
new file mode 100644
index 00000000..7141b810
Binary files /dev/null and b/compatibility/assets/data/graficos/21013.png differ
diff --git a/compatibility/assets/data/graficos/21014.png b/compatibility/assets/data/graficos/21014.png
new file mode 100644
index 00000000..7cccd980
Binary files /dev/null and b/compatibility/assets/data/graficos/21014.png differ
diff --git a/compatibility/assets/data/graficos/2102.png b/compatibility/assets/data/graficos/2102.png
new file mode 100644
index 00000000..a4019288
Binary files /dev/null and b/compatibility/assets/data/graficos/2102.png differ
diff --git a/compatibility/assets/data/graficos/2103.png b/compatibility/assets/data/graficos/2103.png
new file mode 100644
index 00000000..76475307
Binary files /dev/null and b/compatibility/assets/data/graficos/2103.png differ
diff --git a/compatibility/assets/data/graficos/2104.png b/compatibility/assets/data/graficos/2104.png
new file mode 100644
index 00000000..47da4688
Binary files /dev/null and b/compatibility/assets/data/graficos/2104.png differ
diff --git a/compatibility/assets/data/graficos/2105.png b/compatibility/assets/data/graficos/2105.png
new file mode 100644
index 00000000..be1d6592
Binary files /dev/null and b/compatibility/assets/data/graficos/2105.png differ
diff --git a/compatibility/assets/data/graficos/2106.png b/compatibility/assets/data/graficos/2106.png
new file mode 100644
index 00000000..b8d8c847
Binary files /dev/null and b/compatibility/assets/data/graficos/2106.png differ
diff --git a/compatibility/assets/data/graficos/2107.png b/compatibility/assets/data/graficos/2107.png
new file mode 100644
index 00000000..5567607d
Binary files /dev/null and b/compatibility/assets/data/graficos/2107.png differ
diff --git a/compatibility/assets/data/graficos/2108.png b/compatibility/assets/data/graficos/2108.png
new file mode 100644
index 00000000..5a7eb465
Binary files /dev/null and b/compatibility/assets/data/graficos/2108.png differ
diff --git a/compatibility/assets/data/graficos/2109.png b/compatibility/assets/data/graficos/2109.png
new file mode 100644
index 00000000..05b8788c
Binary files /dev/null and b/compatibility/assets/data/graficos/2109.png differ
diff --git a/compatibility/assets/data/graficos/211.png b/compatibility/assets/data/graficos/211.png
new file mode 100644
index 00000000..9ed95b86
Binary files /dev/null and b/compatibility/assets/data/graficos/211.png differ
diff --git a/compatibility/assets/data/graficos/2110.png b/compatibility/assets/data/graficos/2110.png
new file mode 100644
index 00000000..f589e2e2
Binary files /dev/null and b/compatibility/assets/data/graficos/2110.png differ
diff --git a/compatibility/assets/data/graficos/2111.png b/compatibility/assets/data/graficos/2111.png
new file mode 100644
index 00000000..8393357e
Binary files /dev/null and b/compatibility/assets/data/graficos/2111.png differ
diff --git a/compatibility/assets/data/graficos/2112.png b/compatibility/assets/data/graficos/2112.png
new file mode 100644
index 00000000..74c75de6
Binary files /dev/null and b/compatibility/assets/data/graficos/2112.png differ
diff --git a/compatibility/assets/data/graficos/2113.png b/compatibility/assets/data/graficos/2113.png
new file mode 100644
index 00000000..41bddcd1
Binary files /dev/null and b/compatibility/assets/data/graficos/2113.png differ
diff --git a/compatibility/assets/data/graficos/2114.png b/compatibility/assets/data/graficos/2114.png
new file mode 100644
index 00000000..dfa047d6
Binary files /dev/null and b/compatibility/assets/data/graficos/2114.png differ
diff --git a/compatibility/assets/data/graficos/2115.png b/compatibility/assets/data/graficos/2115.png
new file mode 100644
index 00000000..a6d6fcf0
Binary files /dev/null and b/compatibility/assets/data/graficos/2115.png differ
diff --git a/compatibility/assets/data/graficos/2116.png b/compatibility/assets/data/graficos/2116.png
new file mode 100644
index 00000000..1d29a3ef
Binary files /dev/null and b/compatibility/assets/data/graficos/2116.png differ
diff --git a/compatibility/assets/data/graficos/2117.png b/compatibility/assets/data/graficos/2117.png
new file mode 100644
index 00000000..420d99dd
Binary files /dev/null and b/compatibility/assets/data/graficos/2117.png differ
diff --git a/compatibility/assets/data/graficos/2118.png b/compatibility/assets/data/graficos/2118.png
new file mode 100644
index 00000000..455f0f1a
Binary files /dev/null and b/compatibility/assets/data/graficos/2118.png differ
diff --git a/compatibility/assets/data/graficos/2119.png b/compatibility/assets/data/graficos/2119.png
new file mode 100644
index 00000000..a9a651e8
Binary files /dev/null and b/compatibility/assets/data/graficos/2119.png differ
diff --git a/compatibility/assets/data/graficos/212.png b/compatibility/assets/data/graficos/212.png
new file mode 100644
index 00000000..8beca22e
Binary files /dev/null and b/compatibility/assets/data/graficos/212.png differ
diff --git a/compatibility/assets/data/graficos/2120.png b/compatibility/assets/data/graficos/2120.png
new file mode 100644
index 00000000..d8641fcb
Binary files /dev/null and b/compatibility/assets/data/graficos/2120.png differ
diff --git a/compatibility/assets/data/graficos/2121.png b/compatibility/assets/data/graficos/2121.png
new file mode 100644
index 00000000..08356f85
Binary files /dev/null and b/compatibility/assets/data/graficos/2121.png differ
diff --git a/compatibility/assets/data/graficos/2122.png b/compatibility/assets/data/graficos/2122.png
new file mode 100644
index 00000000..74a5b927
Binary files /dev/null and b/compatibility/assets/data/graficos/2122.png differ
diff --git a/compatibility/assets/data/graficos/2123.png b/compatibility/assets/data/graficos/2123.png
new file mode 100644
index 00000000..3879c81f
Binary files /dev/null and b/compatibility/assets/data/graficos/2123.png differ
diff --git a/compatibility/assets/data/graficos/2124.png b/compatibility/assets/data/graficos/2124.png
new file mode 100644
index 00000000..9bd3fc49
Binary files /dev/null and b/compatibility/assets/data/graficos/2124.png differ
diff --git a/compatibility/assets/data/graficos/2125.png b/compatibility/assets/data/graficos/2125.png
new file mode 100644
index 00000000..1d203388
Binary files /dev/null and b/compatibility/assets/data/graficos/2125.png differ
diff --git a/compatibility/assets/data/graficos/2126.png b/compatibility/assets/data/graficos/2126.png
new file mode 100644
index 00000000..ff5494b1
Binary files /dev/null and b/compatibility/assets/data/graficos/2126.png differ
diff --git a/compatibility/assets/data/graficos/2127.png b/compatibility/assets/data/graficos/2127.png
new file mode 100644
index 00000000..fe7caef0
Binary files /dev/null and b/compatibility/assets/data/graficos/2127.png differ
diff --git a/compatibility/assets/data/graficos/2128.png b/compatibility/assets/data/graficos/2128.png
new file mode 100644
index 00000000..c862cf5c
Binary files /dev/null and b/compatibility/assets/data/graficos/2128.png differ
diff --git a/compatibility/assets/data/graficos/2129.png b/compatibility/assets/data/graficos/2129.png
new file mode 100644
index 00000000..e8945dee
Binary files /dev/null and b/compatibility/assets/data/graficos/2129.png differ
diff --git a/compatibility/assets/data/graficos/213.png b/compatibility/assets/data/graficos/213.png
new file mode 100644
index 00000000..da3e2eec
Binary files /dev/null and b/compatibility/assets/data/graficos/213.png differ
diff --git a/compatibility/assets/data/graficos/2130.png b/compatibility/assets/data/graficos/2130.png
new file mode 100644
index 00000000..b86a4db8
Binary files /dev/null and b/compatibility/assets/data/graficos/2130.png differ
diff --git a/compatibility/assets/data/graficos/2131.png b/compatibility/assets/data/graficos/2131.png
new file mode 100644
index 00000000..a7f6da59
Binary files /dev/null and b/compatibility/assets/data/graficos/2131.png differ
diff --git a/compatibility/assets/data/graficos/2132.png b/compatibility/assets/data/graficos/2132.png
new file mode 100644
index 00000000..2d4e85f6
Binary files /dev/null and b/compatibility/assets/data/graficos/2132.png differ
diff --git a/compatibility/assets/data/graficos/2133.png b/compatibility/assets/data/graficos/2133.png
new file mode 100644
index 00000000..3829b686
Binary files /dev/null and b/compatibility/assets/data/graficos/2133.png differ
diff --git a/compatibility/assets/data/graficos/2134.png b/compatibility/assets/data/graficos/2134.png
new file mode 100644
index 00000000..35106dac
Binary files /dev/null and b/compatibility/assets/data/graficos/2134.png differ
diff --git a/compatibility/assets/data/graficos/2135.png b/compatibility/assets/data/graficos/2135.png
new file mode 100644
index 00000000..76d738e2
Binary files /dev/null and b/compatibility/assets/data/graficos/2135.png differ
diff --git a/compatibility/assets/data/graficos/2136.png b/compatibility/assets/data/graficos/2136.png
new file mode 100644
index 00000000..3cbc8599
Binary files /dev/null and b/compatibility/assets/data/graficos/2136.png differ
diff --git a/compatibility/assets/data/graficos/2137.png b/compatibility/assets/data/graficos/2137.png
new file mode 100644
index 00000000..5440a9e8
Binary files /dev/null and b/compatibility/assets/data/graficos/2137.png differ
diff --git a/compatibility/assets/data/graficos/2138.png b/compatibility/assets/data/graficos/2138.png
new file mode 100644
index 00000000..7dac8220
Binary files /dev/null and b/compatibility/assets/data/graficos/2138.png differ
diff --git a/compatibility/assets/data/graficos/2139.png b/compatibility/assets/data/graficos/2139.png
new file mode 100644
index 00000000..689361bc
Binary files /dev/null and b/compatibility/assets/data/graficos/2139.png differ
diff --git a/compatibility/assets/data/graficos/214.png b/compatibility/assets/data/graficos/214.png
new file mode 100644
index 00000000..1362ec11
Binary files /dev/null and b/compatibility/assets/data/graficos/214.png differ
diff --git a/compatibility/assets/data/graficos/2140.png b/compatibility/assets/data/graficos/2140.png
new file mode 100644
index 00000000..b26dfe2c
Binary files /dev/null and b/compatibility/assets/data/graficos/2140.png differ
diff --git a/compatibility/assets/data/graficos/2141.png b/compatibility/assets/data/graficos/2141.png
new file mode 100644
index 00000000..78b41ea4
Binary files /dev/null and b/compatibility/assets/data/graficos/2141.png differ
diff --git a/compatibility/assets/data/graficos/2142.png b/compatibility/assets/data/graficos/2142.png
new file mode 100644
index 00000000..a32b376d
Binary files /dev/null and b/compatibility/assets/data/graficos/2142.png differ
diff --git a/compatibility/assets/data/graficos/2143.png b/compatibility/assets/data/graficos/2143.png
new file mode 100644
index 00000000..bbc2896d
Binary files /dev/null and b/compatibility/assets/data/graficos/2143.png differ
diff --git a/compatibility/assets/data/graficos/2144.png b/compatibility/assets/data/graficos/2144.png
new file mode 100644
index 00000000..759b9dee
Binary files /dev/null and b/compatibility/assets/data/graficos/2144.png differ
diff --git a/compatibility/assets/data/graficos/2145.png b/compatibility/assets/data/graficos/2145.png
new file mode 100644
index 00000000..515ae03e
Binary files /dev/null and b/compatibility/assets/data/graficos/2145.png differ
diff --git a/compatibility/assets/data/graficos/2146.png b/compatibility/assets/data/graficos/2146.png
new file mode 100644
index 00000000..4e80b41d
Binary files /dev/null and b/compatibility/assets/data/graficos/2146.png differ
diff --git a/compatibility/assets/data/graficos/2147.png b/compatibility/assets/data/graficos/2147.png
new file mode 100644
index 00000000..4cdea8ed
Binary files /dev/null and b/compatibility/assets/data/graficos/2147.png differ
diff --git a/compatibility/assets/data/graficos/2148.png b/compatibility/assets/data/graficos/2148.png
new file mode 100644
index 00000000..6447f111
Binary files /dev/null and b/compatibility/assets/data/graficos/2148.png differ
diff --git a/compatibility/assets/data/graficos/2149.png b/compatibility/assets/data/graficos/2149.png
new file mode 100644
index 00000000..b605e0f8
Binary files /dev/null and b/compatibility/assets/data/graficos/2149.png differ
diff --git a/compatibility/assets/data/graficos/215.png b/compatibility/assets/data/graficos/215.png
new file mode 100644
index 00000000..d7905706
Binary files /dev/null and b/compatibility/assets/data/graficos/215.png differ
diff --git a/compatibility/assets/data/graficos/2150.png b/compatibility/assets/data/graficos/2150.png
new file mode 100644
index 00000000..bd412bd3
Binary files /dev/null and b/compatibility/assets/data/graficos/2150.png differ
diff --git a/compatibility/assets/data/graficos/2151.png b/compatibility/assets/data/graficos/2151.png
new file mode 100644
index 00000000..6c356973
Binary files /dev/null and b/compatibility/assets/data/graficos/2151.png differ
diff --git a/compatibility/assets/data/graficos/2152.png b/compatibility/assets/data/graficos/2152.png
new file mode 100644
index 00000000..a1e0ea91
Binary files /dev/null and b/compatibility/assets/data/graficos/2152.png differ
diff --git a/compatibility/assets/data/graficos/2153.png b/compatibility/assets/data/graficos/2153.png
new file mode 100644
index 00000000..3e520b32
Binary files /dev/null and b/compatibility/assets/data/graficos/2153.png differ
diff --git a/compatibility/assets/data/graficos/2154.png b/compatibility/assets/data/graficos/2154.png
new file mode 100644
index 00000000..4fa48d52
Binary files /dev/null and b/compatibility/assets/data/graficos/2154.png differ
diff --git a/compatibility/assets/data/graficos/2155.png b/compatibility/assets/data/graficos/2155.png
new file mode 100644
index 00000000..b39c720a
Binary files /dev/null and b/compatibility/assets/data/graficos/2155.png differ
diff --git a/compatibility/assets/data/graficos/2156.png b/compatibility/assets/data/graficos/2156.png
new file mode 100644
index 00000000..19f59106
Binary files /dev/null and b/compatibility/assets/data/graficos/2156.png differ
diff --git a/compatibility/assets/data/graficos/2157.png b/compatibility/assets/data/graficos/2157.png
new file mode 100644
index 00000000..07ab1006
Binary files /dev/null and b/compatibility/assets/data/graficos/2157.png differ
diff --git a/compatibility/assets/data/graficos/2158.png b/compatibility/assets/data/graficos/2158.png
new file mode 100644
index 00000000..b7dbc9df
Binary files /dev/null and b/compatibility/assets/data/graficos/2158.png differ
diff --git a/compatibility/assets/data/graficos/2159.png b/compatibility/assets/data/graficos/2159.png
new file mode 100644
index 00000000..9cd2a8ae
Binary files /dev/null and b/compatibility/assets/data/graficos/2159.png differ
diff --git a/compatibility/assets/data/graficos/216.png b/compatibility/assets/data/graficos/216.png
new file mode 100644
index 00000000..717c1c81
Binary files /dev/null and b/compatibility/assets/data/graficos/216.png differ
diff --git a/compatibility/assets/data/graficos/2160.png b/compatibility/assets/data/graficos/2160.png
new file mode 100644
index 00000000..479c293e
Binary files /dev/null and b/compatibility/assets/data/graficos/2160.png differ
diff --git a/compatibility/assets/data/graficos/2161.png b/compatibility/assets/data/graficos/2161.png
new file mode 100644
index 00000000..4b5707e9
Binary files /dev/null and b/compatibility/assets/data/graficos/2161.png differ
diff --git a/compatibility/assets/data/graficos/2162.png b/compatibility/assets/data/graficos/2162.png
new file mode 100644
index 00000000..12c3635b
Binary files /dev/null and b/compatibility/assets/data/graficos/2162.png differ
diff --git a/compatibility/assets/data/graficos/2163.png b/compatibility/assets/data/graficos/2163.png
new file mode 100644
index 00000000..09199624
Binary files /dev/null and b/compatibility/assets/data/graficos/2163.png differ
diff --git a/compatibility/assets/data/graficos/2164.png b/compatibility/assets/data/graficos/2164.png
new file mode 100644
index 00000000..0065ceea
Binary files /dev/null and b/compatibility/assets/data/graficos/2164.png differ
diff --git a/compatibility/assets/data/graficos/2165.png b/compatibility/assets/data/graficos/2165.png
new file mode 100644
index 00000000..055cc826
Binary files /dev/null and b/compatibility/assets/data/graficos/2165.png differ
diff --git a/compatibility/assets/data/graficos/2166.png b/compatibility/assets/data/graficos/2166.png
new file mode 100644
index 00000000..bcdf959f
Binary files /dev/null and b/compatibility/assets/data/graficos/2166.png differ
diff --git a/compatibility/assets/data/graficos/2167.png b/compatibility/assets/data/graficos/2167.png
new file mode 100644
index 00000000..238f6a22
Binary files /dev/null and b/compatibility/assets/data/graficos/2167.png differ
diff --git a/compatibility/assets/data/graficos/2168.png b/compatibility/assets/data/graficos/2168.png
new file mode 100644
index 00000000..48f9d272
Binary files /dev/null and b/compatibility/assets/data/graficos/2168.png differ
diff --git a/compatibility/assets/data/graficos/2169.png b/compatibility/assets/data/graficos/2169.png
new file mode 100644
index 00000000..39a43920
Binary files /dev/null and b/compatibility/assets/data/graficos/2169.png differ
diff --git a/compatibility/assets/data/graficos/217.png b/compatibility/assets/data/graficos/217.png
new file mode 100644
index 00000000..767cdaf7
Binary files /dev/null and b/compatibility/assets/data/graficos/217.png differ
diff --git a/compatibility/assets/data/graficos/2170.png b/compatibility/assets/data/graficos/2170.png
new file mode 100644
index 00000000..89f65126
Binary files /dev/null and b/compatibility/assets/data/graficos/2170.png differ
diff --git a/compatibility/assets/data/graficos/2171.png b/compatibility/assets/data/graficos/2171.png
new file mode 100644
index 00000000..1e307079
Binary files /dev/null and b/compatibility/assets/data/graficos/2171.png differ
diff --git a/compatibility/assets/data/graficos/2172.png b/compatibility/assets/data/graficos/2172.png
new file mode 100644
index 00000000..4be1365d
Binary files /dev/null and b/compatibility/assets/data/graficos/2172.png differ
diff --git a/compatibility/assets/data/graficos/2173.png b/compatibility/assets/data/graficos/2173.png
new file mode 100644
index 00000000..659a4f7d
Binary files /dev/null and b/compatibility/assets/data/graficos/2173.png differ
diff --git a/compatibility/assets/data/graficos/2174.png b/compatibility/assets/data/graficos/2174.png
new file mode 100644
index 00000000..c65bd5cf
Binary files /dev/null and b/compatibility/assets/data/graficos/2174.png differ
diff --git a/compatibility/assets/data/graficos/2175.png b/compatibility/assets/data/graficos/2175.png
new file mode 100644
index 00000000..b468d049
Binary files /dev/null and b/compatibility/assets/data/graficos/2175.png differ
diff --git a/compatibility/assets/data/graficos/2176.png b/compatibility/assets/data/graficos/2176.png
new file mode 100644
index 00000000..36d71fbf
Binary files /dev/null and b/compatibility/assets/data/graficos/2176.png differ
diff --git a/compatibility/assets/data/graficos/2177.png b/compatibility/assets/data/graficos/2177.png
new file mode 100644
index 00000000..5a80078f
Binary files /dev/null and b/compatibility/assets/data/graficos/2177.png differ
diff --git a/compatibility/assets/data/graficos/2178.png b/compatibility/assets/data/graficos/2178.png
new file mode 100644
index 00000000..8b758ddb
Binary files /dev/null and b/compatibility/assets/data/graficos/2178.png differ
diff --git a/compatibility/assets/data/graficos/2179.png b/compatibility/assets/data/graficos/2179.png
new file mode 100644
index 00000000..6b4dcfdf
Binary files /dev/null and b/compatibility/assets/data/graficos/2179.png differ
diff --git a/compatibility/assets/data/graficos/218.png b/compatibility/assets/data/graficos/218.png
new file mode 100644
index 00000000..c396a9d1
Binary files /dev/null and b/compatibility/assets/data/graficos/218.png differ
diff --git a/compatibility/assets/data/graficos/2180.png b/compatibility/assets/data/graficos/2180.png
new file mode 100644
index 00000000..9c998887
Binary files /dev/null and b/compatibility/assets/data/graficos/2180.png differ
diff --git a/compatibility/assets/data/graficos/2181.png b/compatibility/assets/data/graficos/2181.png
new file mode 100644
index 00000000..e3a8d457
Binary files /dev/null and b/compatibility/assets/data/graficos/2181.png differ
diff --git a/compatibility/assets/data/graficos/2182.png b/compatibility/assets/data/graficos/2182.png
new file mode 100644
index 00000000..f0a11823
Binary files /dev/null and b/compatibility/assets/data/graficos/2182.png differ
diff --git a/compatibility/assets/data/graficos/2183.png b/compatibility/assets/data/graficos/2183.png
new file mode 100644
index 00000000..97d2925e
Binary files /dev/null and b/compatibility/assets/data/graficos/2183.png differ
diff --git a/compatibility/assets/data/graficos/2184.png b/compatibility/assets/data/graficos/2184.png
new file mode 100644
index 00000000..da4a5f18
Binary files /dev/null and b/compatibility/assets/data/graficos/2184.png differ
diff --git a/compatibility/assets/data/graficos/2185.png b/compatibility/assets/data/graficos/2185.png
new file mode 100644
index 00000000..0af8389e
Binary files /dev/null and b/compatibility/assets/data/graficos/2185.png differ
diff --git a/compatibility/assets/data/graficos/2186.png b/compatibility/assets/data/graficos/2186.png
new file mode 100644
index 00000000..4b9809d4
Binary files /dev/null and b/compatibility/assets/data/graficos/2186.png differ
diff --git a/compatibility/assets/data/graficos/2187.png b/compatibility/assets/data/graficos/2187.png
new file mode 100644
index 00000000..ec766f6d
Binary files /dev/null and b/compatibility/assets/data/graficos/2187.png differ
diff --git a/compatibility/assets/data/graficos/2188.png b/compatibility/assets/data/graficos/2188.png
new file mode 100644
index 00000000..2dd981c3
Binary files /dev/null and b/compatibility/assets/data/graficos/2188.png differ
diff --git a/compatibility/assets/data/graficos/2189.png b/compatibility/assets/data/graficos/2189.png
new file mode 100644
index 00000000..88f83878
Binary files /dev/null and b/compatibility/assets/data/graficos/2189.png differ
diff --git a/compatibility/assets/data/graficos/219.png b/compatibility/assets/data/graficos/219.png
new file mode 100644
index 00000000..849b9717
Binary files /dev/null and b/compatibility/assets/data/graficos/219.png differ
diff --git a/compatibility/assets/data/graficos/2190.png b/compatibility/assets/data/graficos/2190.png
new file mode 100644
index 00000000..b635e8bb
Binary files /dev/null and b/compatibility/assets/data/graficos/2190.png differ
diff --git a/compatibility/assets/data/graficos/2191.png b/compatibility/assets/data/graficos/2191.png
new file mode 100644
index 00000000..93368b75
Binary files /dev/null and b/compatibility/assets/data/graficos/2191.png differ
diff --git a/compatibility/assets/data/graficos/2192.png b/compatibility/assets/data/graficos/2192.png
new file mode 100644
index 00000000..18f7fd89
Binary files /dev/null and b/compatibility/assets/data/graficos/2192.png differ
diff --git a/compatibility/assets/data/graficos/2193.png b/compatibility/assets/data/graficos/2193.png
new file mode 100644
index 00000000..9bde289a
Binary files /dev/null and b/compatibility/assets/data/graficos/2193.png differ
diff --git a/compatibility/assets/data/graficos/2194.png b/compatibility/assets/data/graficos/2194.png
new file mode 100644
index 00000000..290221ba
Binary files /dev/null and b/compatibility/assets/data/graficos/2194.png differ
diff --git a/compatibility/assets/data/graficos/2195.png b/compatibility/assets/data/graficos/2195.png
new file mode 100644
index 00000000..be5715d5
Binary files /dev/null and b/compatibility/assets/data/graficos/2195.png differ
diff --git a/compatibility/assets/data/graficos/2196.png b/compatibility/assets/data/graficos/2196.png
new file mode 100644
index 00000000..7e42fdb4
Binary files /dev/null and b/compatibility/assets/data/graficos/2196.png differ
diff --git a/compatibility/assets/data/graficos/2197.png b/compatibility/assets/data/graficos/2197.png
new file mode 100644
index 00000000..25d62814
Binary files /dev/null and b/compatibility/assets/data/graficos/2197.png differ
diff --git a/compatibility/assets/data/graficos/2198.png b/compatibility/assets/data/graficos/2198.png
new file mode 100644
index 00000000..b5916ae2
Binary files /dev/null and b/compatibility/assets/data/graficos/2198.png differ
diff --git a/compatibility/assets/data/graficos/2199.png b/compatibility/assets/data/graficos/2199.png
new file mode 100644
index 00000000..b8d372d9
Binary files /dev/null and b/compatibility/assets/data/graficos/2199.png differ
diff --git a/compatibility/assets/data/graficos/22.png b/compatibility/assets/data/graficos/22.png
new file mode 100644
index 00000000..4e28f04f
Binary files /dev/null and b/compatibility/assets/data/graficos/22.png differ
diff --git a/compatibility/assets/data/graficos/220.png b/compatibility/assets/data/graficos/220.png
new file mode 100644
index 00000000..b05041b5
Binary files /dev/null and b/compatibility/assets/data/graficos/220.png differ
diff --git a/compatibility/assets/data/graficos/2200.png b/compatibility/assets/data/graficos/2200.png
new file mode 100644
index 00000000..e6e41169
Binary files /dev/null and b/compatibility/assets/data/graficos/2200.png differ
diff --git a/compatibility/assets/data/graficos/22000.png b/compatibility/assets/data/graficos/22000.png
new file mode 100644
index 00000000..ad150bc0
Binary files /dev/null and b/compatibility/assets/data/graficos/22000.png differ
diff --git a/compatibility/assets/data/graficos/22001.png b/compatibility/assets/data/graficos/22001.png
new file mode 100644
index 00000000..80d214e9
Binary files /dev/null and b/compatibility/assets/data/graficos/22001.png differ
diff --git a/compatibility/assets/data/graficos/22002.png b/compatibility/assets/data/graficos/22002.png
new file mode 100644
index 00000000..3c4412c0
Binary files /dev/null and b/compatibility/assets/data/graficos/22002.png differ
diff --git a/compatibility/assets/data/graficos/22003.png b/compatibility/assets/data/graficos/22003.png
new file mode 100644
index 00000000..669c69ab
Binary files /dev/null and b/compatibility/assets/data/graficos/22003.png differ
diff --git a/compatibility/assets/data/graficos/22004.png b/compatibility/assets/data/graficos/22004.png
new file mode 100644
index 00000000..697fd2d4
Binary files /dev/null and b/compatibility/assets/data/graficos/22004.png differ
diff --git a/compatibility/assets/data/graficos/22005.png b/compatibility/assets/data/graficos/22005.png
new file mode 100644
index 00000000..c7f6e063
Binary files /dev/null and b/compatibility/assets/data/graficos/22005.png differ
diff --git a/compatibility/assets/data/graficos/22006.png b/compatibility/assets/data/graficos/22006.png
new file mode 100644
index 00000000..6fae400c
Binary files /dev/null and b/compatibility/assets/data/graficos/22006.png differ
diff --git a/compatibility/assets/data/graficos/22007.png b/compatibility/assets/data/graficos/22007.png
new file mode 100644
index 00000000..8ff63234
Binary files /dev/null and b/compatibility/assets/data/graficos/22007.png differ
diff --git a/compatibility/assets/data/graficos/22008.png b/compatibility/assets/data/graficos/22008.png
new file mode 100644
index 00000000..65f4786b
Binary files /dev/null and b/compatibility/assets/data/graficos/22008.png differ
diff --git a/compatibility/assets/data/graficos/22009.png b/compatibility/assets/data/graficos/22009.png
new file mode 100644
index 00000000..04dfc5a5
Binary files /dev/null and b/compatibility/assets/data/graficos/22009.png differ
diff --git a/compatibility/assets/data/graficos/2201.png b/compatibility/assets/data/graficos/2201.png
new file mode 100644
index 00000000..80cf1e3a
Binary files /dev/null and b/compatibility/assets/data/graficos/2201.png differ
diff --git a/compatibility/assets/data/graficos/22010.png b/compatibility/assets/data/graficos/22010.png
new file mode 100644
index 00000000..9df6fc2c
Binary files /dev/null and b/compatibility/assets/data/graficos/22010.png differ
diff --git a/compatibility/assets/data/graficos/22011.png b/compatibility/assets/data/graficos/22011.png
new file mode 100644
index 00000000..72bb6174
Binary files /dev/null and b/compatibility/assets/data/graficos/22011.png differ
diff --git a/compatibility/assets/data/graficos/22012.png b/compatibility/assets/data/graficos/22012.png
new file mode 100644
index 00000000..814f3eb1
Binary files /dev/null and b/compatibility/assets/data/graficos/22012.png differ
diff --git a/compatibility/assets/data/graficos/22013.png b/compatibility/assets/data/graficos/22013.png
new file mode 100644
index 00000000..4cce3a92
Binary files /dev/null and b/compatibility/assets/data/graficos/22013.png differ
diff --git a/compatibility/assets/data/graficos/22014.png b/compatibility/assets/data/graficos/22014.png
new file mode 100644
index 00000000..01cb010d
Binary files /dev/null and b/compatibility/assets/data/graficos/22014.png differ
diff --git a/compatibility/assets/data/graficos/22015.png b/compatibility/assets/data/graficos/22015.png
new file mode 100644
index 00000000..b3bc898f
Binary files /dev/null and b/compatibility/assets/data/graficos/22015.png differ
diff --git a/compatibility/assets/data/graficos/22016.png b/compatibility/assets/data/graficos/22016.png
new file mode 100644
index 00000000..e2015a19
Binary files /dev/null and b/compatibility/assets/data/graficos/22016.png differ
diff --git a/compatibility/assets/data/graficos/22017.png b/compatibility/assets/data/graficos/22017.png
new file mode 100644
index 00000000..6cd83730
Binary files /dev/null and b/compatibility/assets/data/graficos/22017.png differ
diff --git a/compatibility/assets/data/graficos/22018.png b/compatibility/assets/data/graficos/22018.png
new file mode 100644
index 00000000..81216541
Binary files /dev/null and b/compatibility/assets/data/graficos/22018.png differ
diff --git a/compatibility/assets/data/graficos/22019.png b/compatibility/assets/data/graficos/22019.png
new file mode 100644
index 00000000..b5928da9
Binary files /dev/null and b/compatibility/assets/data/graficos/22019.png differ
diff --git a/compatibility/assets/data/graficos/2202.png b/compatibility/assets/data/graficos/2202.png
new file mode 100644
index 00000000..d95aac66
Binary files /dev/null and b/compatibility/assets/data/graficos/2202.png differ
diff --git a/compatibility/assets/data/graficos/22020.png b/compatibility/assets/data/graficos/22020.png
new file mode 100644
index 00000000..670f58e3
Binary files /dev/null and b/compatibility/assets/data/graficos/22020.png differ
diff --git a/compatibility/assets/data/graficos/22021.png b/compatibility/assets/data/graficos/22021.png
new file mode 100644
index 00000000..0cf2f711
Binary files /dev/null and b/compatibility/assets/data/graficos/22021.png differ
diff --git a/compatibility/assets/data/graficos/22022.png b/compatibility/assets/data/graficos/22022.png
new file mode 100644
index 00000000..c596b7c3
Binary files /dev/null and b/compatibility/assets/data/graficos/22022.png differ
diff --git a/compatibility/assets/data/graficos/22023.png b/compatibility/assets/data/graficos/22023.png
new file mode 100644
index 00000000..a2d66a4b
Binary files /dev/null and b/compatibility/assets/data/graficos/22023.png differ
diff --git a/compatibility/assets/data/graficos/22024.png b/compatibility/assets/data/graficos/22024.png
new file mode 100644
index 00000000..2b2f1659
Binary files /dev/null and b/compatibility/assets/data/graficos/22024.png differ
diff --git a/compatibility/assets/data/graficos/22025.png b/compatibility/assets/data/graficos/22025.png
new file mode 100644
index 00000000..9f934405
Binary files /dev/null and b/compatibility/assets/data/graficos/22025.png differ
diff --git a/compatibility/assets/data/graficos/22026.png b/compatibility/assets/data/graficos/22026.png
new file mode 100644
index 00000000..2bab7496
Binary files /dev/null and b/compatibility/assets/data/graficos/22026.png differ
diff --git a/compatibility/assets/data/graficos/22027.png b/compatibility/assets/data/graficos/22027.png
new file mode 100644
index 00000000..6d5fe2c5
Binary files /dev/null and b/compatibility/assets/data/graficos/22027.png differ
diff --git a/compatibility/assets/data/graficos/22028.png b/compatibility/assets/data/graficos/22028.png
new file mode 100644
index 00000000..c4dcdbd7
Binary files /dev/null and b/compatibility/assets/data/graficos/22028.png differ
diff --git a/compatibility/assets/data/graficos/22029.png b/compatibility/assets/data/graficos/22029.png
new file mode 100644
index 00000000..c23f1459
Binary files /dev/null and b/compatibility/assets/data/graficos/22029.png differ
diff --git a/compatibility/assets/data/graficos/2203.png b/compatibility/assets/data/graficos/2203.png
new file mode 100644
index 00000000..2d6da973
Binary files /dev/null and b/compatibility/assets/data/graficos/2203.png differ
diff --git a/compatibility/assets/data/graficos/22030.png b/compatibility/assets/data/graficos/22030.png
new file mode 100644
index 00000000..416beff0
Binary files /dev/null and b/compatibility/assets/data/graficos/22030.png differ
diff --git a/compatibility/assets/data/graficos/22031.png b/compatibility/assets/data/graficos/22031.png
new file mode 100644
index 00000000..0c44b97f
Binary files /dev/null and b/compatibility/assets/data/graficos/22031.png differ
diff --git a/compatibility/assets/data/graficos/22032.png b/compatibility/assets/data/graficos/22032.png
new file mode 100644
index 00000000..1878a71d
Binary files /dev/null and b/compatibility/assets/data/graficos/22032.png differ
diff --git a/compatibility/assets/data/graficos/22033.png b/compatibility/assets/data/graficos/22033.png
new file mode 100644
index 00000000..3b555be6
Binary files /dev/null and b/compatibility/assets/data/graficos/22033.png differ
diff --git a/compatibility/assets/data/graficos/22034.png b/compatibility/assets/data/graficos/22034.png
new file mode 100644
index 00000000..d19c74e0
Binary files /dev/null and b/compatibility/assets/data/graficos/22034.png differ
diff --git a/compatibility/assets/data/graficos/22035.png b/compatibility/assets/data/graficos/22035.png
new file mode 100644
index 00000000..8257b00c
Binary files /dev/null and b/compatibility/assets/data/graficos/22035.png differ
diff --git a/compatibility/assets/data/graficos/22036.png b/compatibility/assets/data/graficos/22036.png
new file mode 100644
index 00000000..cce6f0cd
Binary files /dev/null and b/compatibility/assets/data/graficos/22036.png differ
diff --git a/compatibility/assets/data/graficos/22037.png b/compatibility/assets/data/graficos/22037.png
new file mode 100644
index 00000000..117689b9
Binary files /dev/null and b/compatibility/assets/data/graficos/22037.png differ
diff --git a/compatibility/assets/data/graficos/22038.png b/compatibility/assets/data/graficos/22038.png
new file mode 100644
index 00000000..d721e3b4
Binary files /dev/null and b/compatibility/assets/data/graficos/22038.png differ
diff --git a/compatibility/assets/data/graficos/22039.png b/compatibility/assets/data/graficos/22039.png
new file mode 100644
index 00000000..9f0d2afa
Binary files /dev/null and b/compatibility/assets/data/graficos/22039.png differ
diff --git a/compatibility/assets/data/graficos/2204.png b/compatibility/assets/data/graficos/2204.png
new file mode 100644
index 00000000..6fef4d52
Binary files /dev/null and b/compatibility/assets/data/graficos/2204.png differ
diff --git a/compatibility/assets/data/graficos/22040.png b/compatibility/assets/data/graficos/22040.png
new file mode 100644
index 00000000..2b98582d
Binary files /dev/null and b/compatibility/assets/data/graficos/22040.png differ
diff --git a/compatibility/assets/data/graficos/22041.png b/compatibility/assets/data/graficos/22041.png
new file mode 100644
index 00000000..2bbc6dac
Binary files /dev/null and b/compatibility/assets/data/graficos/22041.png differ
diff --git a/compatibility/assets/data/graficos/22042.png b/compatibility/assets/data/graficos/22042.png
new file mode 100644
index 00000000..ca5675d1
Binary files /dev/null and b/compatibility/assets/data/graficos/22042.png differ
diff --git a/compatibility/assets/data/graficos/22043.png b/compatibility/assets/data/graficos/22043.png
new file mode 100644
index 00000000..2e03813f
Binary files /dev/null and b/compatibility/assets/data/graficos/22043.png differ
diff --git a/compatibility/assets/data/graficos/22044.png b/compatibility/assets/data/graficos/22044.png
new file mode 100644
index 00000000..8d2b445c
Binary files /dev/null and b/compatibility/assets/data/graficos/22044.png differ
diff --git a/compatibility/assets/data/graficos/22045.png b/compatibility/assets/data/graficos/22045.png
new file mode 100644
index 00000000..672c7510
Binary files /dev/null and b/compatibility/assets/data/graficos/22045.png differ
diff --git a/compatibility/assets/data/graficos/22046.png b/compatibility/assets/data/graficos/22046.png
new file mode 100644
index 00000000..1d68ab6c
Binary files /dev/null and b/compatibility/assets/data/graficos/22046.png differ
diff --git a/compatibility/assets/data/graficos/22047.png b/compatibility/assets/data/graficos/22047.png
new file mode 100644
index 00000000..6fb265f3
Binary files /dev/null and b/compatibility/assets/data/graficos/22047.png differ
diff --git a/compatibility/assets/data/graficos/22048.png b/compatibility/assets/data/graficos/22048.png
new file mode 100644
index 00000000..a7e49eca
Binary files /dev/null and b/compatibility/assets/data/graficos/22048.png differ
diff --git a/compatibility/assets/data/graficos/22049.png b/compatibility/assets/data/graficos/22049.png
new file mode 100644
index 00000000..beaea3e4
Binary files /dev/null and b/compatibility/assets/data/graficos/22049.png differ
diff --git a/compatibility/assets/data/graficos/2205.png b/compatibility/assets/data/graficos/2205.png
new file mode 100644
index 00000000..3dac34c8
Binary files /dev/null and b/compatibility/assets/data/graficos/2205.png differ
diff --git a/compatibility/assets/data/graficos/22050.png b/compatibility/assets/data/graficos/22050.png
new file mode 100644
index 00000000..db99c458
Binary files /dev/null and b/compatibility/assets/data/graficos/22050.png differ
diff --git a/compatibility/assets/data/graficos/22051.png b/compatibility/assets/data/graficos/22051.png
new file mode 100644
index 00000000..903f8844
Binary files /dev/null and b/compatibility/assets/data/graficos/22051.png differ
diff --git a/compatibility/assets/data/graficos/22052.png b/compatibility/assets/data/graficos/22052.png
new file mode 100644
index 00000000..e7bb0460
Binary files /dev/null and b/compatibility/assets/data/graficos/22052.png differ
diff --git a/compatibility/assets/data/graficos/22053.png b/compatibility/assets/data/graficos/22053.png
new file mode 100644
index 00000000..23a8a5f7
Binary files /dev/null and b/compatibility/assets/data/graficos/22053.png differ
diff --git a/compatibility/assets/data/graficos/22054.png b/compatibility/assets/data/graficos/22054.png
new file mode 100644
index 00000000..ec088a9e
Binary files /dev/null and b/compatibility/assets/data/graficos/22054.png differ
diff --git a/compatibility/assets/data/graficos/22055.png b/compatibility/assets/data/graficos/22055.png
new file mode 100644
index 00000000..238ef873
Binary files /dev/null and b/compatibility/assets/data/graficos/22055.png differ
diff --git a/compatibility/assets/data/graficos/22056.png b/compatibility/assets/data/graficos/22056.png
new file mode 100644
index 00000000..7d839b5d
Binary files /dev/null and b/compatibility/assets/data/graficos/22056.png differ
diff --git a/compatibility/assets/data/graficos/22057.png b/compatibility/assets/data/graficos/22057.png
new file mode 100644
index 00000000..122206f6
Binary files /dev/null and b/compatibility/assets/data/graficos/22057.png differ
diff --git a/compatibility/assets/data/graficos/22058.png b/compatibility/assets/data/graficos/22058.png
new file mode 100644
index 00000000..745d8a2b
Binary files /dev/null and b/compatibility/assets/data/graficos/22058.png differ
diff --git a/compatibility/assets/data/graficos/22059.png b/compatibility/assets/data/graficos/22059.png
new file mode 100644
index 00000000..dbb682bb
Binary files /dev/null and b/compatibility/assets/data/graficos/22059.png differ
diff --git a/compatibility/assets/data/graficos/2206.png b/compatibility/assets/data/graficos/2206.png
new file mode 100644
index 00000000..0680495e
Binary files /dev/null and b/compatibility/assets/data/graficos/2206.png differ
diff --git a/compatibility/assets/data/graficos/22060.png b/compatibility/assets/data/graficos/22060.png
new file mode 100644
index 00000000..7974e8b3
Binary files /dev/null and b/compatibility/assets/data/graficos/22060.png differ
diff --git a/compatibility/assets/data/graficos/22061.png b/compatibility/assets/data/graficos/22061.png
new file mode 100644
index 00000000..705fc92b
Binary files /dev/null and b/compatibility/assets/data/graficos/22061.png differ
diff --git a/compatibility/assets/data/graficos/22062.png b/compatibility/assets/data/graficos/22062.png
new file mode 100644
index 00000000..18324572
Binary files /dev/null and b/compatibility/assets/data/graficos/22062.png differ
diff --git a/compatibility/assets/data/graficos/22063.png b/compatibility/assets/data/graficos/22063.png
new file mode 100644
index 00000000..328d2dfc
Binary files /dev/null and b/compatibility/assets/data/graficos/22063.png differ
diff --git a/compatibility/assets/data/graficos/22064.png b/compatibility/assets/data/graficos/22064.png
new file mode 100644
index 00000000..850ddc1d
Binary files /dev/null and b/compatibility/assets/data/graficos/22064.png differ
diff --git a/compatibility/assets/data/graficos/22065.png b/compatibility/assets/data/graficos/22065.png
new file mode 100644
index 00000000..99429161
Binary files /dev/null and b/compatibility/assets/data/graficos/22065.png differ
diff --git a/compatibility/assets/data/graficos/22066.png b/compatibility/assets/data/graficos/22066.png
new file mode 100644
index 00000000..856d35ce
Binary files /dev/null and b/compatibility/assets/data/graficos/22066.png differ
diff --git a/compatibility/assets/data/graficos/22067.png b/compatibility/assets/data/graficos/22067.png
new file mode 100644
index 00000000..68bf86fc
Binary files /dev/null and b/compatibility/assets/data/graficos/22067.png differ
diff --git a/compatibility/assets/data/graficos/22068.png b/compatibility/assets/data/graficos/22068.png
new file mode 100644
index 00000000..499ecf4e
Binary files /dev/null and b/compatibility/assets/data/graficos/22068.png differ
diff --git a/compatibility/assets/data/graficos/22069.png b/compatibility/assets/data/graficos/22069.png
new file mode 100644
index 00000000..9ed879bf
Binary files /dev/null and b/compatibility/assets/data/graficos/22069.png differ
diff --git a/compatibility/assets/data/graficos/2207.png b/compatibility/assets/data/graficos/2207.png
new file mode 100644
index 00000000..7c978923
Binary files /dev/null and b/compatibility/assets/data/graficos/2207.png differ
diff --git a/compatibility/assets/data/graficos/22070.png b/compatibility/assets/data/graficos/22070.png
new file mode 100644
index 00000000..19b3f9f8
Binary files /dev/null and b/compatibility/assets/data/graficos/22070.png differ
diff --git a/compatibility/assets/data/graficos/22071.png b/compatibility/assets/data/graficos/22071.png
new file mode 100644
index 00000000..0f16a64e
Binary files /dev/null and b/compatibility/assets/data/graficos/22071.png differ
diff --git a/compatibility/assets/data/graficos/22072.png b/compatibility/assets/data/graficos/22072.png
new file mode 100644
index 00000000..70073b67
Binary files /dev/null and b/compatibility/assets/data/graficos/22072.png differ
diff --git a/compatibility/assets/data/graficos/2208.png b/compatibility/assets/data/graficos/2208.png
new file mode 100644
index 00000000..f0a14893
Binary files /dev/null and b/compatibility/assets/data/graficos/2208.png differ
diff --git a/compatibility/assets/data/graficos/2209.png b/compatibility/assets/data/graficos/2209.png
new file mode 100644
index 00000000..0d569af5
Binary files /dev/null and b/compatibility/assets/data/graficos/2209.png differ
diff --git a/compatibility/assets/data/graficos/221.png b/compatibility/assets/data/graficos/221.png
new file mode 100644
index 00000000..7702fb24
Binary files /dev/null and b/compatibility/assets/data/graficos/221.png differ
diff --git a/compatibility/assets/data/graficos/2210.png b/compatibility/assets/data/graficos/2210.png
new file mode 100644
index 00000000..f2be085b
Binary files /dev/null and b/compatibility/assets/data/graficos/2210.png differ
diff --git a/compatibility/assets/data/graficos/2211.png b/compatibility/assets/data/graficos/2211.png
new file mode 100644
index 00000000..b2f85595
Binary files /dev/null and b/compatibility/assets/data/graficos/2211.png differ
diff --git a/compatibility/assets/data/graficos/2212.png b/compatibility/assets/data/graficos/2212.png
new file mode 100644
index 00000000..736d0d34
Binary files /dev/null and b/compatibility/assets/data/graficos/2212.png differ
diff --git a/compatibility/assets/data/graficos/2213.png b/compatibility/assets/data/graficos/2213.png
new file mode 100644
index 00000000..ffc9226d
Binary files /dev/null and b/compatibility/assets/data/graficos/2213.png differ
diff --git a/compatibility/assets/data/graficos/2214.png b/compatibility/assets/data/graficos/2214.png
new file mode 100644
index 00000000..8bce4dfb
Binary files /dev/null and b/compatibility/assets/data/graficos/2214.png differ
diff --git a/compatibility/assets/data/graficos/2215.png b/compatibility/assets/data/graficos/2215.png
new file mode 100644
index 00000000..261c13e5
Binary files /dev/null and b/compatibility/assets/data/graficos/2215.png differ
diff --git a/compatibility/assets/data/graficos/2216.png b/compatibility/assets/data/graficos/2216.png
new file mode 100644
index 00000000..bcacfa00
Binary files /dev/null and b/compatibility/assets/data/graficos/2216.png differ
diff --git a/compatibility/assets/data/graficos/2217.png b/compatibility/assets/data/graficos/2217.png
new file mode 100644
index 00000000..c1845446
Binary files /dev/null and b/compatibility/assets/data/graficos/2217.png differ
diff --git a/compatibility/assets/data/graficos/2218.png b/compatibility/assets/data/graficos/2218.png
new file mode 100644
index 00000000..7c0734e8
Binary files /dev/null and b/compatibility/assets/data/graficos/2218.png differ
diff --git a/compatibility/assets/data/graficos/2219.png b/compatibility/assets/data/graficos/2219.png
new file mode 100644
index 00000000..f0709fa2
Binary files /dev/null and b/compatibility/assets/data/graficos/2219.png differ
diff --git a/compatibility/assets/data/graficos/222.png b/compatibility/assets/data/graficos/222.png
new file mode 100644
index 00000000..d2a179fe
Binary files /dev/null and b/compatibility/assets/data/graficos/222.png differ
diff --git a/compatibility/assets/data/graficos/2220.png b/compatibility/assets/data/graficos/2220.png
new file mode 100644
index 00000000..808496e7
Binary files /dev/null and b/compatibility/assets/data/graficos/2220.png differ
diff --git a/compatibility/assets/data/graficos/2221.png b/compatibility/assets/data/graficos/2221.png
new file mode 100644
index 00000000..37ada5df
Binary files /dev/null and b/compatibility/assets/data/graficos/2221.png differ
diff --git a/compatibility/assets/data/graficos/2222.png b/compatibility/assets/data/graficos/2222.png
new file mode 100644
index 00000000..93594f98
Binary files /dev/null and b/compatibility/assets/data/graficos/2222.png differ
diff --git a/compatibility/assets/data/graficos/2223.png b/compatibility/assets/data/graficos/2223.png
new file mode 100644
index 00000000..483f92ea
Binary files /dev/null and b/compatibility/assets/data/graficos/2223.png differ
diff --git a/compatibility/assets/data/graficos/2224.png b/compatibility/assets/data/graficos/2224.png
new file mode 100644
index 00000000..48802c6c
Binary files /dev/null and b/compatibility/assets/data/graficos/2224.png differ
diff --git a/compatibility/assets/data/graficos/2225.png b/compatibility/assets/data/graficos/2225.png
new file mode 100644
index 00000000..5e9c9699
Binary files /dev/null and b/compatibility/assets/data/graficos/2225.png differ
diff --git a/compatibility/assets/data/graficos/2226.png b/compatibility/assets/data/graficos/2226.png
new file mode 100644
index 00000000..976d3a17
Binary files /dev/null and b/compatibility/assets/data/graficos/2226.png differ
diff --git a/compatibility/assets/data/graficos/2227.png b/compatibility/assets/data/graficos/2227.png
new file mode 100644
index 00000000..eb260336
Binary files /dev/null and b/compatibility/assets/data/graficos/2227.png differ
diff --git a/compatibility/assets/data/graficos/2228.png b/compatibility/assets/data/graficos/2228.png
new file mode 100644
index 00000000..5c3ef429
Binary files /dev/null and b/compatibility/assets/data/graficos/2228.png differ
diff --git a/compatibility/assets/data/graficos/2229.png b/compatibility/assets/data/graficos/2229.png
new file mode 100644
index 00000000..05e61a22
Binary files /dev/null and b/compatibility/assets/data/graficos/2229.png differ
diff --git a/compatibility/assets/data/graficos/223.png b/compatibility/assets/data/graficos/223.png
new file mode 100644
index 00000000..70a8387e
Binary files /dev/null and b/compatibility/assets/data/graficos/223.png differ
diff --git a/compatibility/assets/data/graficos/2230.png b/compatibility/assets/data/graficos/2230.png
new file mode 100644
index 00000000..67b86fe4
Binary files /dev/null and b/compatibility/assets/data/graficos/2230.png differ
diff --git a/compatibility/assets/data/graficos/2231.png b/compatibility/assets/data/graficos/2231.png
new file mode 100644
index 00000000..116b326d
Binary files /dev/null and b/compatibility/assets/data/graficos/2231.png differ
diff --git a/compatibility/assets/data/graficos/2232.png b/compatibility/assets/data/graficos/2232.png
new file mode 100644
index 00000000..93ab9805
Binary files /dev/null and b/compatibility/assets/data/graficos/2232.png differ
diff --git a/compatibility/assets/data/graficos/2233.png b/compatibility/assets/data/graficos/2233.png
new file mode 100644
index 00000000..dd73c1d7
Binary files /dev/null and b/compatibility/assets/data/graficos/2233.png differ
diff --git a/compatibility/assets/data/graficos/2234.png b/compatibility/assets/data/graficos/2234.png
new file mode 100644
index 00000000..c5ed28ca
Binary files /dev/null and b/compatibility/assets/data/graficos/2234.png differ
diff --git a/compatibility/assets/data/graficos/2235.png b/compatibility/assets/data/graficos/2235.png
new file mode 100644
index 00000000..bd897045
Binary files /dev/null and b/compatibility/assets/data/graficos/2235.png differ
diff --git a/compatibility/assets/data/graficos/224.png b/compatibility/assets/data/graficos/224.png
new file mode 100644
index 00000000..7af42073
Binary files /dev/null and b/compatibility/assets/data/graficos/224.png differ
diff --git a/compatibility/assets/data/graficos/225.png b/compatibility/assets/data/graficos/225.png
new file mode 100644
index 00000000..e978aa6a
Binary files /dev/null and b/compatibility/assets/data/graficos/225.png differ
diff --git a/compatibility/assets/data/graficos/226.png b/compatibility/assets/data/graficos/226.png
new file mode 100644
index 00000000..6f338c7a
Binary files /dev/null and b/compatibility/assets/data/graficos/226.png differ
diff --git a/compatibility/assets/data/graficos/227.png b/compatibility/assets/data/graficos/227.png
new file mode 100644
index 00000000..e8df7e17
Binary files /dev/null and b/compatibility/assets/data/graficos/227.png differ
diff --git a/compatibility/assets/data/graficos/228.png b/compatibility/assets/data/graficos/228.png
new file mode 100644
index 00000000..3ab32c54
Binary files /dev/null and b/compatibility/assets/data/graficos/228.png differ
diff --git a/compatibility/assets/data/graficos/229.png b/compatibility/assets/data/graficos/229.png
new file mode 100644
index 00000000..1e21e915
Binary files /dev/null and b/compatibility/assets/data/graficos/229.png differ
diff --git a/compatibility/assets/data/graficos/23.png b/compatibility/assets/data/graficos/23.png
new file mode 100644
index 00000000..28149e8a
Binary files /dev/null and b/compatibility/assets/data/graficos/23.png differ
diff --git a/compatibility/assets/data/graficos/230.png b/compatibility/assets/data/graficos/230.png
new file mode 100644
index 00000000..fbee83be
Binary files /dev/null and b/compatibility/assets/data/graficos/230.png differ
diff --git a/compatibility/assets/data/graficos/23000.png b/compatibility/assets/data/graficos/23000.png
new file mode 100644
index 00000000..e33b18c9
Binary files /dev/null and b/compatibility/assets/data/graficos/23000.png differ
diff --git a/compatibility/assets/data/graficos/23001.png b/compatibility/assets/data/graficos/23001.png
new file mode 100644
index 00000000..4bf68ca0
Binary files /dev/null and b/compatibility/assets/data/graficos/23001.png differ
diff --git a/compatibility/assets/data/graficos/23002.png b/compatibility/assets/data/graficos/23002.png
new file mode 100644
index 00000000..705fc92b
Binary files /dev/null and b/compatibility/assets/data/graficos/23002.png differ
diff --git a/compatibility/assets/data/graficos/23003.png b/compatibility/assets/data/graficos/23003.png
new file mode 100644
index 00000000..c6ab8011
Binary files /dev/null and b/compatibility/assets/data/graficos/23003.png differ
diff --git a/compatibility/assets/data/graficos/23004.png b/compatibility/assets/data/graficos/23004.png
new file mode 100644
index 00000000..761b3f1f
Binary files /dev/null and b/compatibility/assets/data/graficos/23004.png differ
diff --git a/compatibility/assets/data/graficos/23005.png b/compatibility/assets/data/graficos/23005.png
new file mode 100644
index 00000000..290d49ce
Binary files /dev/null and b/compatibility/assets/data/graficos/23005.png differ
diff --git a/compatibility/assets/data/graficos/231.png b/compatibility/assets/data/graficos/231.png
new file mode 100644
index 00000000..6e7ca703
Binary files /dev/null and b/compatibility/assets/data/graficos/231.png differ
diff --git a/compatibility/assets/data/graficos/232.png b/compatibility/assets/data/graficos/232.png
new file mode 100644
index 00000000..6535b043
Binary files /dev/null and b/compatibility/assets/data/graficos/232.png differ
diff --git a/compatibility/assets/data/graficos/233.png b/compatibility/assets/data/graficos/233.png
new file mode 100644
index 00000000..2d2cd413
Binary files /dev/null and b/compatibility/assets/data/graficos/233.png differ
diff --git a/compatibility/assets/data/graficos/234.png b/compatibility/assets/data/graficos/234.png
new file mode 100644
index 00000000..fde506ec
Binary files /dev/null and b/compatibility/assets/data/graficos/234.png differ
diff --git a/compatibility/assets/data/graficos/235.png b/compatibility/assets/data/graficos/235.png
new file mode 100644
index 00000000..3c2af6f5
Binary files /dev/null and b/compatibility/assets/data/graficos/235.png differ
diff --git a/compatibility/assets/data/graficos/236.png b/compatibility/assets/data/graficos/236.png
new file mode 100644
index 00000000..fab59dc9
Binary files /dev/null and b/compatibility/assets/data/graficos/236.png differ
diff --git a/compatibility/assets/data/graficos/237.png b/compatibility/assets/data/graficos/237.png
new file mode 100644
index 00000000..98f1bb78
Binary files /dev/null and b/compatibility/assets/data/graficos/237.png differ
diff --git a/compatibility/assets/data/graficos/238.png b/compatibility/assets/data/graficos/238.png
new file mode 100644
index 00000000..0817e8fd
Binary files /dev/null and b/compatibility/assets/data/graficos/238.png differ
diff --git a/compatibility/assets/data/graficos/239.png b/compatibility/assets/data/graficos/239.png
new file mode 100644
index 00000000..62d57f3e
Binary files /dev/null and b/compatibility/assets/data/graficos/239.png differ
diff --git a/compatibility/assets/data/graficos/24.png b/compatibility/assets/data/graficos/24.png
new file mode 100644
index 00000000..55cd45c0
Binary files /dev/null and b/compatibility/assets/data/graficos/24.png differ
diff --git a/compatibility/assets/data/graficos/240.png b/compatibility/assets/data/graficos/240.png
new file mode 100644
index 00000000..f01c6512
Binary files /dev/null and b/compatibility/assets/data/graficos/240.png differ
diff --git a/compatibility/assets/data/graficos/24000.png b/compatibility/assets/data/graficos/24000.png
new file mode 100644
index 00000000..3ab298bb
Binary files /dev/null and b/compatibility/assets/data/graficos/24000.png differ
diff --git a/compatibility/assets/data/graficos/24001.png b/compatibility/assets/data/graficos/24001.png
new file mode 100644
index 00000000..794d8035
Binary files /dev/null and b/compatibility/assets/data/graficos/24001.png differ
diff --git a/compatibility/assets/data/graficos/24002.png b/compatibility/assets/data/graficos/24002.png
new file mode 100644
index 00000000..3ca6eaea
Binary files /dev/null and b/compatibility/assets/data/graficos/24002.png differ
diff --git a/compatibility/assets/data/graficos/24003.png b/compatibility/assets/data/graficos/24003.png
new file mode 100644
index 00000000..2b09da51
Binary files /dev/null and b/compatibility/assets/data/graficos/24003.png differ
diff --git a/compatibility/assets/data/graficos/24004.png b/compatibility/assets/data/graficos/24004.png
new file mode 100644
index 00000000..38e190d9
Binary files /dev/null and b/compatibility/assets/data/graficos/24004.png differ
diff --git a/compatibility/assets/data/graficos/24005.png b/compatibility/assets/data/graficos/24005.png
new file mode 100644
index 00000000..99eb72c8
Binary files /dev/null and b/compatibility/assets/data/graficos/24005.png differ
diff --git a/compatibility/assets/data/graficos/24006.png b/compatibility/assets/data/graficos/24006.png
new file mode 100644
index 00000000..fd31e816
Binary files /dev/null and b/compatibility/assets/data/graficos/24006.png differ
diff --git a/compatibility/assets/data/graficos/24007.png b/compatibility/assets/data/graficos/24007.png
new file mode 100644
index 00000000..fbb666f1
Binary files /dev/null and b/compatibility/assets/data/graficos/24007.png differ
diff --git a/compatibility/assets/data/graficos/24008.png b/compatibility/assets/data/graficos/24008.png
new file mode 100644
index 00000000..1401b132
Binary files /dev/null and b/compatibility/assets/data/graficos/24008.png differ
diff --git a/compatibility/assets/data/graficos/24009.png b/compatibility/assets/data/graficos/24009.png
new file mode 100644
index 00000000..2a20337b
Binary files /dev/null and b/compatibility/assets/data/graficos/24009.png differ
diff --git a/compatibility/assets/data/graficos/241.png b/compatibility/assets/data/graficos/241.png
new file mode 100644
index 00000000..1a13277c
Binary files /dev/null and b/compatibility/assets/data/graficos/241.png differ
diff --git a/compatibility/assets/data/graficos/242.png b/compatibility/assets/data/graficos/242.png
new file mode 100644
index 00000000..6d8567ef
Binary files /dev/null and b/compatibility/assets/data/graficos/242.png differ
diff --git a/compatibility/assets/data/graficos/243.png b/compatibility/assets/data/graficos/243.png
new file mode 100644
index 00000000..829c8a94
Binary files /dev/null and b/compatibility/assets/data/graficos/243.png differ
diff --git a/compatibility/assets/data/graficos/244.png b/compatibility/assets/data/graficos/244.png
new file mode 100644
index 00000000..276d69f4
Binary files /dev/null and b/compatibility/assets/data/graficos/244.png differ
diff --git a/compatibility/assets/data/graficos/245.png b/compatibility/assets/data/graficos/245.png
new file mode 100644
index 00000000..7a301d5e
Binary files /dev/null and b/compatibility/assets/data/graficos/245.png differ
diff --git a/compatibility/assets/data/graficos/246.png b/compatibility/assets/data/graficos/246.png
new file mode 100644
index 00000000..bbaf9849
Binary files /dev/null and b/compatibility/assets/data/graficos/246.png differ
diff --git a/compatibility/assets/data/graficos/247.png b/compatibility/assets/data/graficos/247.png
new file mode 100644
index 00000000..7e7b2625
Binary files /dev/null and b/compatibility/assets/data/graficos/247.png differ
diff --git a/compatibility/assets/data/graficos/248.png b/compatibility/assets/data/graficos/248.png
new file mode 100644
index 00000000..96977dc1
Binary files /dev/null and b/compatibility/assets/data/graficos/248.png differ
diff --git a/compatibility/assets/data/graficos/249.png b/compatibility/assets/data/graficos/249.png
new file mode 100644
index 00000000..761715ea
Binary files /dev/null and b/compatibility/assets/data/graficos/249.png differ
diff --git a/compatibility/assets/data/graficos/25.png b/compatibility/assets/data/graficos/25.png
new file mode 100644
index 00000000..a2e1b905
Binary files /dev/null and b/compatibility/assets/data/graficos/25.png differ
diff --git a/compatibility/assets/data/graficos/250.png b/compatibility/assets/data/graficos/250.png
new file mode 100644
index 00000000..381f2c98
Binary files /dev/null and b/compatibility/assets/data/graficos/250.png differ
diff --git a/compatibility/assets/data/graficos/25000.png b/compatibility/assets/data/graficos/25000.png
new file mode 100644
index 00000000..2884f818
Binary files /dev/null and b/compatibility/assets/data/graficos/25000.png differ
diff --git a/compatibility/assets/data/graficos/25001.png b/compatibility/assets/data/graficos/25001.png
new file mode 100644
index 00000000..589c4be9
Binary files /dev/null and b/compatibility/assets/data/graficos/25001.png differ
diff --git a/compatibility/assets/data/graficos/25002.png b/compatibility/assets/data/graficos/25002.png
new file mode 100644
index 00000000..2d5cc5a1
Binary files /dev/null and b/compatibility/assets/data/graficos/25002.png differ
diff --git a/compatibility/assets/data/graficos/25003.png b/compatibility/assets/data/graficos/25003.png
new file mode 100644
index 00000000..6583d71a
Binary files /dev/null and b/compatibility/assets/data/graficos/25003.png differ
diff --git a/compatibility/assets/data/graficos/25004.png b/compatibility/assets/data/graficos/25004.png
new file mode 100644
index 00000000..4c932db4
Binary files /dev/null and b/compatibility/assets/data/graficos/25004.png differ
diff --git a/compatibility/assets/data/graficos/25005.png b/compatibility/assets/data/graficos/25005.png
new file mode 100644
index 00000000..81fa77b9
Binary files /dev/null and b/compatibility/assets/data/graficos/25005.png differ
diff --git a/compatibility/assets/data/graficos/25006.png b/compatibility/assets/data/graficos/25006.png
new file mode 100644
index 00000000..d063ac9e
Binary files /dev/null and b/compatibility/assets/data/graficos/25006.png differ
diff --git a/compatibility/assets/data/graficos/25007.png b/compatibility/assets/data/graficos/25007.png
new file mode 100644
index 00000000..fe746f1f
Binary files /dev/null and b/compatibility/assets/data/graficos/25007.png differ
diff --git a/compatibility/assets/data/graficos/25008.png b/compatibility/assets/data/graficos/25008.png
new file mode 100644
index 00000000..f0bee54e
Binary files /dev/null and b/compatibility/assets/data/graficos/25008.png differ
diff --git a/compatibility/assets/data/graficos/25009.png b/compatibility/assets/data/graficos/25009.png
new file mode 100644
index 00000000..3deee1c7
Binary files /dev/null and b/compatibility/assets/data/graficos/25009.png differ
diff --git a/compatibility/assets/data/graficos/25010.png b/compatibility/assets/data/graficos/25010.png
new file mode 100644
index 00000000..c709507c
Binary files /dev/null and b/compatibility/assets/data/graficos/25010.png differ
diff --git a/compatibility/assets/data/graficos/25011.png b/compatibility/assets/data/graficos/25011.png
new file mode 100644
index 00000000..c6b88c9f
Binary files /dev/null and b/compatibility/assets/data/graficos/25011.png differ
diff --git a/compatibility/assets/data/graficos/25012.png b/compatibility/assets/data/graficos/25012.png
new file mode 100644
index 00000000..31031d41
Binary files /dev/null and b/compatibility/assets/data/graficos/25012.png differ
diff --git a/compatibility/assets/data/graficos/25013.png b/compatibility/assets/data/graficos/25013.png
new file mode 100644
index 00000000..74b84160
Binary files /dev/null and b/compatibility/assets/data/graficos/25013.png differ
diff --git a/compatibility/assets/data/graficos/25014.png b/compatibility/assets/data/graficos/25014.png
new file mode 100644
index 00000000..b181aef6
Binary files /dev/null and b/compatibility/assets/data/graficos/25014.png differ
diff --git a/compatibility/assets/data/graficos/25015.png b/compatibility/assets/data/graficos/25015.png
new file mode 100644
index 00000000..5df8640e
Binary files /dev/null and b/compatibility/assets/data/graficos/25015.png differ
diff --git a/compatibility/assets/data/graficos/25016.png b/compatibility/assets/data/graficos/25016.png
new file mode 100644
index 00000000..ec3d819f
Binary files /dev/null and b/compatibility/assets/data/graficos/25016.png differ
diff --git a/compatibility/assets/data/graficos/25017.png b/compatibility/assets/data/graficos/25017.png
new file mode 100644
index 00000000..40b418ae
Binary files /dev/null and b/compatibility/assets/data/graficos/25017.png differ
diff --git a/compatibility/assets/data/graficos/25018.png b/compatibility/assets/data/graficos/25018.png
new file mode 100644
index 00000000..4f854acc
Binary files /dev/null and b/compatibility/assets/data/graficos/25018.png differ
diff --git a/compatibility/assets/data/graficos/25019.png b/compatibility/assets/data/graficos/25019.png
new file mode 100644
index 00000000..0434af7c
Binary files /dev/null and b/compatibility/assets/data/graficos/25019.png differ
diff --git a/compatibility/assets/data/graficos/25020.png b/compatibility/assets/data/graficos/25020.png
new file mode 100644
index 00000000..96f6091e
Binary files /dev/null and b/compatibility/assets/data/graficos/25020.png differ
diff --git a/compatibility/assets/data/graficos/25021.png b/compatibility/assets/data/graficos/25021.png
new file mode 100644
index 00000000..4dd7ea46
Binary files /dev/null and b/compatibility/assets/data/graficos/25021.png differ
diff --git a/compatibility/assets/data/graficos/25022.png b/compatibility/assets/data/graficos/25022.png
new file mode 100644
index 00000000..8c631e66
Binary files /dev/null and b/compatibility/assets/data/graficos/25022.png differ
diff --git a/compatibility/assets/data/graficos/25023.png b/compatibility/assets/data/graficos/25023.png
new file mode 100644
index 00000000..8e653571
Binary files /dev/null and b/compatibility/assets/data/graficos/25023.png differ
diff --git a/compatibility/assets/data/graficos/25024.png b/compatibility/assets/data/graficos/25024.png
new file mode 100644
index 00000000..45aa2cf9
Binary files /dev/null and b/compatibility/assets/data/graficos/25024.png differ
diff --git a/compatibility/assets/data/graficos/25025.png b/compatibility/assets/data/graficos/25025.png
new file mode 100644
index 00000000..9afe1a40
Binary files /dev/null and b/compatibility/assets/data/graficos/25025.png differ
diff --git a/compatibility/assets/data/graficos/25026.png b/compatibility/assets/data/graficos/25026.png
new file mode 100644
index 00000000..7f8825f9
Binary files /dev/null and b/compatibility/assets/data/graficos/25026.png differ
diff --git a/compatibility/assets/data/graficos/25027.png b/compatibility/assets/data/graficos/25027.png
new file mode 100644
index 00000000..2dc5ca2e
Binary files /dev/null and b/compatibility/assets/data/graficos/25027.png differ
diff --git a/compatibility/assets/data/graficos/25028.png b/compatibility/assets/data/graficos/25028.png
new file mode 100644
index 00000000..e7b111be
Binary files /dev/null and b/compatibility/assets/data/graficos/25028.png differ
diff --git a/compatibility/assets/data/graficos/25029.png b/compatibility/assets/data/graficos/25029.png
new file mode 100644
index 00000000..e35b7ced
Binary files /dev/null and b/compatibility/assets/data/graficos/25029.png differ
diff --git a/compatibility/assets/data/graficos/25030.png b/compatibility/assets/data/graficos/25030.png
new file mode 100644
index 00000000..6e3cc547
Binary files /dev/null and b/compatibility/assets/data/graficos/25030.png differ
diff --git a/compatibility/assets/data/graficos/25031.png b/compatibility/assets/data/graficos/25031.png
new file mode 100644
index 00000000..7cd1ceaf
Binary files /dev/null and b/compatibility/assets/data/graficos/25031.png differ
diff --git a/compatibility/assets/data/graficos/25032.png b/compatibility/assets/data/graficos/25032.png
new file mode 100644
index 00000000..c53c135f
Binary files /dev/null and b/compatibility/assets/data/graficos/25032.png differ
diff --git a/compatibility/assets/data/graficos/25033.png b/compatibility/assets/data/graficos/25033.png
new file mode 100644
index 00000000..c53c135f
Binary files /dev/null and b/compatibility/assets/data/graficos/25033.png differ
diff --git a/compatibility/assets/data/graficos/25034.png b/compatibility/assets/data/graficos/25034.png
new file mode 100644
index 00000000..c53c135f
Binary files /dev/null and b/compatibility/assets/data/graficos/25034.png differ
diff --git a/compatibility/assets/data/graficos/25035.png b/compatibility/assets/data/graficos/25035.png
new file mode 100644
index 00000000..c53c135f
Binary files /dev/null and b/compatibility/assets/data/graficos/25035.png differ
diff --git a/compatibility/assets/data/graficos/25036.png b/compatibility/assets/data/graficos/25036.png
new file mode 100644
index 00000000..bef5a112
Binary files /dev/null and b/compatibility/assets/data/graficos/25036.png differ
diff --git a/compatibility/assets/data/graficos/25037.png b/compatibility/assets/data/graficos/25037.png
new file mode 100644
index 00000000..af6d40ae
Binary files /dev/null and b/compatibility/assets/data/graficos/25037.png differ
diff --git a/compatibility/assets/data/graficos/25038.png b/compatibility/assets/data/graficos/25038.png
new file mode 100644
index 00000000..76f41887
Binary files /dev/null and b/compatibility/assets/data/graficos/25038.png differ
diff --git a/compatibility/assets/data/graficos/25039.png b/compatibility/assets/data/graficos/25039.png
new file mode 100644
index 00000000..73a5c82f
Binary files /dev/null and b/compatibility/assets/data/graficos/25039.png differ
diff --git a/compatibility/assets/data/graficos/25040.png b/compatibility/assets/data/graficos/25040.png
new file mode 100644
index 00000000..b2279492
Binary files /dev/null and b/compatibility/assets/data/graficos/25040.png differ
diff --git a/compatibility/assets/data/graficos/25041.png b/compatibility/assets/data/graficos/25041.png
new file mode 100644
index 00000000..ef7ae909
Binary files /dev/null and b/compatibility/assets/data/graficos/25041.png differ
diff --git a/compatibility/assets/data/graficos/25042.png b/compatibility/assets/data/graficos/25042.png
new file mode 100644
index 00000000..33a82ee9
Binary files /dev/null and b/compatibility/assets/data/graficos/25042.png differ
diff --git a/compatibility/assets/data/graficos/25043.png b/compatibility/assets/data/graficos/25043.png
new file mode 100644
index 00000000..b5c11224
Binary files /dev/null and b/compatibility/assets/data/graficos/25043.png differ
diff --git a/compatibility/assets/data/graficos/25044.png b/compatibility/assets/data/graficos/25044.png
new file mode 100644
index 00000000..9439b81e
Binary files /dev/null and b/compatibility/assets/data/graficos/25044.png differ
diff --git a/compatibility/assets/data/graficos/25045.png b/compatibility/assets/data/graficos/25045.png
new file mode 100644
index 00000000..ce879b74
Binary files /dev/null and b/compatibility/assets/data/graficos/25045.png differ
diff --git a/compatibility/assets/data/graficos/25046.png b/compatibility/assets/data/graficos/25046.png
new file mode 100644
index 00000000..b077f3e4
Binary files /dev/null and b/compatibility/assets/data/graficos/25046.png differ
diff --git a/compatibility/assets/data/graficos/25047.png b/compatibility/assets/data/graficos/25047.png
new file mode 100644
index 00000000..34c31d4c
Binary files /dev/null and b/compatibility/assets/data/graficos/25047.png differ
diff --git a/compatibility/assets/data/graficos/25048.png b/compatibility/assets/data/graficos/25048.png
new file mode 100644
index 00000000..854e8410
Binary files /dev/null and b/compatibility/assets/data/graficos/25048.png differ
diff --git a/compatibility/assets/data/graficos/25049.png b/compatibility/assets/data/graficos/25049.png
new file mode 100644
index 00000000..64f21baf
Binary files /dev/null and b/compatibility/assets/data/graficos/25049.png differ
diff --git a/compatibility/assets/data/graficos/25050.png b/compatibility/assets/data/graficos/25050.png
new file mode 100644
index 00000000..9b25af56
Binary files /dev/null and b/compatibility/assets/data/graficos/25050.png differ
diff --git a/compatibility/assets/data/graficos/25051.png b/compatibility/assets/data/graficos/25051.png
new file mode 100644
index 00000000..6e24a361
Binary files /dev/null and b/compatibility/assets/data/graficos/25051.png differ
diff --git a/compatibility/assets/data/graficos/25052.png b/compatibility/assets/data/graficos/25052.png
new file mode 100644
index 00000000..4191be75
Binary files /dev/null and b/compatibility/assets/data/graficos/25052.png differ
diff --git a/compatibility/assets/data/graficos/25053.png b/compatibility/assets/data/graficos/25053.png
new file mode 100644
index 00000000..25946e09
Binary files /dev/null and b/compatibility/assets/data/graficos/25053.png differ
diff --git a/compatibility/assets/data/graficos/25054.png b/compatibility/assets/data/graficos/25054.png
new file mode 100644
index 00000000..2ec9bd10
Binary files /dev/null and b/compatibility/assets/data/graficos/25054.png differ
diff --git a/compatibility/assets/data/graficos/25055.png b/compatibility/assets/data/graficos/25055.png
new file mode 100644
index 00000000..aba3f65b
Binary files /dev/null and b/compatibility/assets/data/graficos/25055.png differ
diff --git a/compatibility/assets/data/graficos/25056.png b/compatibility/assets/data/graficos/25056.png
new file mode 100644
index 00000000..53d3aee8
Binary files /dev/null and b/compatibility/assets/data/graficos/25056.png differ
diff --git a/compatibility/assets/data/graficos/25057.png b/compatibility/assets/data/graficos/25057.png
new file mode 100644
index 00000000..c443a7dd
Binary files /dev/null and b/compatibility/assets/data/graficos/25057.png differ
diff --git a/compatibility/assets/data/graficos/25058.png b/compatibility/assets/data/graficos/25058.png
new file mode 100644
index 00000000..6b21330a
Binary files /dev/null and b/compatibility/assets/data/graficos/25058.png differ
diff --git a/compatibility/assets/data/graficos/25059.png b/compatibility/assets/data/graficos/25059.png
new file mode 100644
index 00000000..6b21330a
Binary files /dev/null and b/compatibility/assets/data/graficos/25059.png differ
diff --git a/compatibility/assets/data/graficos/25060.png b/compatibility/assets/data/graficos/25060.png
new file mode 100644
index 00000000..5c3690d1
Binary files /dev/null and b/compatibility/assets/data/graficos/25060.png differ
diff --git a/compatibility/assets/data/graficos/25061.png b/compatibility/assets/data/graficos/25061.png
new file mode 100644
index 00000000..5c3690d1
Binary files /dev/null and b/compatibility/assets/data/graficos/25061.png differ
diff --git a/compatibility/assets/data/graficos/25062.png b/compatibility/assets/data/graficos/25062.png
new file mode 100644
index 00000000..5c3690d1
Binary files /dev/null and b/compatibility/assets/data/graficos/25062.png differ
diff --git a/compatibility/assets/data/graficos/25063.png b/compatibility/assets/data/graficos/25063.png
new file mode 100644
index 00000000..5c3690d1
Binary files /dev/null and b/compatibility/assets/data/graficos/25063.png differ
diff --git a/compatibility/assets/data/graficos/251.png b/compatibility/assets/data/graficos/251.png
new file mode 100644
index 00000000..b7913715
Binary files /dev/null and b/compatibility/assets/data/graficos/251.png differ
diff --git a/compatibility/assets/data/graficos/252.png b/compatibility/assets/data/graficos/252.png
new file mode 100644
index 00000000..b73bac4b
Binary files /dev/null and b/compatibility/assets/data/graficos/252.png differ
diff --git a/compatibility/assets/data/graficos/253.png b/compatibility/assets/data/graficos/253.png
new file mode 100644
index 00000000..079b4187
Binary files /dev/null and b/compatibility/assets/data/graficos/253.png differ
diff --git a/compatibility/assets/data/graficos/254.png b/compatibility/assets/data/graficos/254.png
new file mode 100644
index 00000000..bfa4d675
Binary files /dev/null and b/compatibility/assets/data/graficos/254.png differ
diff --git a/compatibility/assets/data/graficos/255.png b/compatibility/assets/data/graficos/255.png
new file mode 100644
index 00000000..0b46f975
Binary files /dev/null and b/compatibility/assets/data/graficos/255.png differ
diff --git a/compatibility/assets/data/graficos/256.png b/compatibility/assets/data/graficos/256.png
new file mode 100644
index 00000000..4e2c8739
Binary files /dev/null and b/compatibility/assets/data/graficos/256.png differ
diff --git a/compatibility/assets/data/graficos/257.png b/compatibility/assets/data/graficos/257.png
new file mode 100644
index 00000000..1061c9ec
Binary files /dev/null and b/compatibility/assets/data/graficos/257.png differ
diff --git a/compatibility/assets/data/graficos/258.png b/compatibility/assets/data/graficos/258.png
new file mode 100644
index 00000000..5de4b8df
Binary files /dev/null and b/compatibility/assets/data/graficos/258.png differ
diff --git a/compatibility/assets/data/graficos/259.png b/compatibility/assets/data/graficos/259.png
new file mode 100644
index 00000000..caa729e1
Binary files /dev/null and b/compatibility/assets/data/graficos/259.png differ
diff --git a/compatibility/assets/data/graficos/26.png b/compatibility/assets/data/graficos/26.png
new file mode 100644
index 00000000..f600e666
Binary files /dev/null and b/compatibility/assets/data/graficos/26.png differ
diff --git a/compatibility/assets/data/graficos/260.png b/compatibility/assets/data/graficos/260.png
new file mode 100644
index 00000000..10d58619
Binary files /dev/null and b/compatibility/assets/data/graficos/260.png differ
diff --git a/compatibility/assets/data/graficos/261.png b/compatibility/assets/data/graficos/261.png
new file mode 100644
index 00000000..7009b22e
Binary files /dev/null and b/compatibility/assets/data/graficos/261.png differ
diff --git a/compatibility/assets/data/graficos/262.png b/compatibility/assets/data/graficos/262.png
new file mode 100644
index 00000000..95e91bdf
Binary files /dev/null and b/compatibility/assets/data/graficos/262.png differ
diff --git a/compatibility/assets/data/graficos/263.png b/compatibility/assets/data/graficos/263.png
new file mode 100644
index 00000000..f216d764
Binary files /dev/null and b/compatibility/assets/data/graficos/263.png differ
diff --git a/compatibility/assets/data/graficos/264.png b/compatibility/assets/data/graficos/264.png
new file mode 100644
index 00000000..fc871b24
Binary files /dev/null and b/compatibility/assets/data/graficos/264.png differ
diff --git a/compatibility/assets/data/graficos/265.png b/compatibility/assets/data/graficos/265.png
new file mode 100644
index 00000000..2ea60c1f
Binary files /dev/null and b/compatibility/assets/data/graficos/265.png differ
diff --git a/compatibility/assets/data/graficos/266.png b/compatibility/assets/data/graficos/266.png
new file mode 100644
index 00000000..6521783e
Binary files /dev/null and b/compatibility/assets/data/graficos/266.png differ
diff --git a/compatibility/assets/data/graficos/267.png b/compatibility/assets/data/graficos/267.png
new file mode 100644
index 00000000..99651e45
Binary files /dev/null and b/compatibility/assets/data/graficos/267.png differ
diff --git a/compatibility/assets/data/graficos/268.png b/compatibility/assets/data/graficos/268.png
new file mode 100644
index 00000000..80936ddf
Binary files /dev/null and b/compatibility/assets/data/graficos/268.png differ
diff --git a/compatibility/assets/data/graficos/269.png b/compatibility/assets/data/graficos/269.png
new file mode 100644
index 00000000..9210b98d
Binary files /dev/null and b/compatibility/assets/data/graficos/269.png differ
diff --git a/compatibility/assets/data/graficos/27.png b/compatibility/assets/data/graficos/27.png
new file mode 100644
index 00000000..82eb4f93
Binary files /dev/null and b/compatibility/assets/data/graficos/27.png differ
diff --git a/compatibility/assets/data/graficos/270.png b/compatibility/assets/data/graficos/270.png
new file mode 100644
index 00000000..2c12af16
Binary files /dev/null and b/compatibility/assets/data/graficos/270.png differ
diff --git a/compatibility/assets/data/graficos/271.png b/compatibility/assets/data/graficos/271.png
new file mode 100644
index 00000000..746db191
Binary files /dev/null and b/compatibility/assets/data/graficos/271.png differ
diff --git a/compatibility/assets/data/graficos/272.png b/compatibility/assets/data/graficos/272.png
new file mode 100644
index 00000000..79ca1a05
Binary files /dev/null and b/compatibility/assets/data/graficos/272.png differ
diff --git a/compatibility/assets/data/graficos/273.png b/compatibility/assets/data/graficos/273.png
new file mode 100644
index 00000000..76ecc67f
Binary files /dev/null and b/compatibility/assets/data/graficos/273.png differ
diff --git a/compatibility/assets/data/graficos/274.png b/compatibility/assets/data/graficos/274.png
new file mode 100644
index 00000000..6a5a1b6c
Binary files /dev/null and b/compatibility/assets/data/graficos/274.png differ
diff --git a/compatibility/assets/data/graficos/275.png b/compatibility/assets/data/graficos/275.png
new file mode 100644
index 00000000..80b08977
Binary files /dev/null and b/compatibility/assets/data/graficos/275.png differ
diff --git a/compatibility/assets/data/graficos/276.png b/compatibility/assets/data/graficos/276.png
new file mode 100644
index 00000000..708370bf
Binary files /dev/null and b/compatibility/assets/data/graficos/276.png differ
diff --git a/compatibility/assets/data/graficos/277.png b/compatibility/assets/data/graficos/277.png
new file mode 100644
index 00000000..2b650ae5
Binary files /dev/null and b/compatibility/assets/data/graficos/277.png differ
diff --git a/compatibility/assets/data/graficos/278.png b/compatibility/assets/data/graficos/278.png
new file mode 100644
index 00000000..b7238401
Binary files /dev/null and b/compatibility/assets/data/graficos/278.png differ
diff --git a/compatibility/assets/data/graficos/279.png b/compatibility/assets/data/graficos/279.png
new file mode 100644
index 00000000..e7cc630b
Binary files /dev/null and b/compatibility/assets/data/graficos/279.png differ
diff --git a/compatibility/assets/data/graficos/28.png b/compatibility/assets/data/graficos/28.png
new file mode 100644
index 00000000..77e67ed4
Binary files /dev/null and b/compatibility/assets/data/graficos/28.png differ
diff --git a/compatibility/assets/data/graficos/280.png b/compatibility/assets/data/graficos/280.png
new file mode 100644
index 00000000..822972bb
Binary files /dev/null and b/compatibility/assets/data/graficos/280.png differ
diff --git a/compatibility/assets/data/graficos/281.png b/compatibility/assets/data/graficos/281.png
new file mode 100644
index 00000000..9206725e
Binary files /dev/null and b/compatibility/assets/data/graficos/281.png differ
diff --git a/compatibility/assets/data/graficos/282.png b/compatibility/assets/data/graficos/282.png
new file mode 100644
index 00000000..e846595c
Binary files /dev/null and b/compatibility/assets/data/graficos/282.png differ
diff --git a/compatibility/assets/data/graficos/283.png b/compatibility/assets/data/graficos/283.png
new file mode 100644
index 00000000..7fffef04
Binary files /dev/null and b/compatibility/assets/data/graficos/283.png differ
diff --git a/compatibility/assets/data/graficos/284.png b/compatibility/assets/data/graficos/284.png
new file mode 100644
index 00000000..9d18e1fe
Binary files /dev/null and b/compatibility/assets/data/graficos/284.png differ
diff --git a/compatibility/assets/data/graficos/285.png b/compatibility/assets/data/graficos/285.png
new file mode 100644
index 00000000..4d5933ad
Binary files /dev/null and b/compatibility/assets/data/graficos/285.png differ
diff --git a/compatibility/assets/data/graficos/286.png b/compatibility/assets/data/graficos/286.png
new file mode 100644
index 00000000..efcd6a72
Binary files /dev/null and b/compatibility/assets/data/graficos/286.png differ
diff --git a/compatibility/assets/data/graficos/287.png b/compatibility/assets/data/graficos/287.png
new file mode 100644
index 00000000..7cb84755
Binary files /dev/null and b/compatibility/assets/data/graficos/287.png differ
diff --git a/compatibility/assets/data/graficos/288.png b/compatibility/assets/data/graficos/288.png
new file mode 100644
index 00000000..7ededdb4
Binary files /dev/null and b/compatibility/assets/data/graficos/288.png differ
diff --git a/compatibility/assets/data/graficos/289.png b/compatibility/assets/data/graficos/289.png
new file mode 100644
index 00000000..f52cda79
Binary files /dev/null and b/compatibility/assets/data/graficos/289.png differ
diff --git a/compatibility/assets/data/graficos/29.png b/compatibility/assets/data/graficos/29.png
new file mode 100644
index 00000000..811b355a
Binary files /dev/null and b/compatibility/assets/data/graficos/29.png differ
diff --git a/compatibility/assets/data/graficos/290.png b/compatibility/assets/data/graficos/290.png
new file mode 100644
index 00000000..f8b651c4
Binary files /dev/null and b/compatibility/assets/data/graficos/290.png differ
diff --git a/compatibility/assets/data/graficos/291.png b/compatibility/assets/data/graficos/291.png
new file mode 100644
index 00000000..025f5725
Binary files /dev/null and b/compatibility/assets/data/graficos/291.png differ
diff --git a/compatibility/assets/data/graficos/292.png b/compatibility/assets/data/graficos/292.png
new file mode 100644
index 00000000..49c44a71
Binary files /dev/null and b/compatibility/assets/data/graficos/292.png differ
diff --git a/compatibility/assets/data/graficos/293.png b/compatibility/assets/data/graficos/293.png
new file mode 100644
index 00000000..3d45523d
Binary files /dev/null and b/compatibility/assets/data/graficos/293.png differ
diff --git a/compatibility/assets/data/graficos/294.png b/compatibility/assets/data/graficos/294.png
new file mode 100644
index 00000000..ff7e4cc2
Binary files /dev/null and b/compatibility/assets/data/graficos/294.png differ
diff --git a/compatibility/assets/data/graficos/295.png b/compatibility/assets/data/graficos/295.png
new file mode 100644
index 00000000..938f877b
Binary files /dev/null and b/compatibility/assets/data/graficos/295.png differ
diff --git a/compatibility/assets/data/graficos/296.png b/compatibility/assets/data/graficos/296.png
new file mode 100644
index 00000000..16e29ea6
Binary files /dev/null and b/compatibility/assets/data/graficos/296.png differ
diff --git a/compatibility/assets/data/graficos/297.png b/compatibility/assets/data/graficos/297.png
new file mode 100644
index 00000000..feb5bdef
Binary files /dev/null and b/compatibility/assets/data/graficos/297.png differ
diff --git a/compatibility/assets/data/graficos/298.png b/compatibility/assets/data/graficos/298.png
new file mode 100644
index 00000000..76ae19f7
Binary files /dev/null and b/compatibility/assets/data/graficos/298.png differ
diff --git a/compatibility/assets/data/graficos/299.png b/compatibility/assets/data/graficos/299.png
new file mode 100644
index 00000000..45664d82
Binary files /dev/null and b/compatibility/assets/data/graficos/299.png differ
diff --git a/compatibility/assets/data/graficos/3.png b/compatibility/assets/data/graficos/3.png
new file mode 100644
index 00000000..87cc66f0
Binary files /dev/null and b/compatibility/assets/data/graficos/3.png differ
diff --git a/compatibility/assets/data/graficos/30.png b/compatibility/assets/data/graficos/30.png
new file mode 100644
index 00000000..b92f28ce
Binary files /dev/null and b/compatibility/assets/data/graficos/30.png differ
diff --git a/compatibility/assets/data/graficos/300.png b/compatibility/assets/data/graficos/300.png
new file mode 100644
index 00000000..ce607985
Binary files /dev/null and b/compatibility/assets/data/graficos/300.png differ
diff --git a/compatibility/assets/data/graficos/3000.png b/compatibility/assets/data/graficos/3000.png
new file mode 100644
index 00000000..88093742
Binary files /dev/null and b/compatibility/assets/data/graficos/3000.png differ
diff --git a/compatibility/assets/data/graficos/3001.png b/compatibility/assets/data/graficos/3001.png
new file mode 100644
index 00000000..c710b258
Binary files /dev/null and b/compatibility/assets/data/graficos/3001.png differ
diff --git a/compatibility/assets/data/graficos/3002.png b/compatibility/assets/data/graficos/3002.png
new file mode 100644
index 00000000..5b4a1a4b
Binary files /dev/null and b/compatibility/assets/data/graficos/3002.png differ
diff --git a/compatibility/assets/data/graficos/3003.png b/compatibility/assets/data/graficos/3003.png
new file mode 100644
index 00000000..83bb193d
Binary files /dev/null and b/compatibility/assets/data/graficos/3003.png differ
diff --git a/compatibility/assets/data/graficos/3004.png b/compatibility/assets/data/graficos/3004.png
new file mode 100644
index 00000000..cd57745a
Binary files /dev/null and b/compatibility/assets/data/graficos/3004.png differ
diff --git a/compatibility/assets/data/graficos/3005.png b/compatibility/assets/data/graficos/3005.png
new file mode 100644
index 00000000..4f6d73e7
Binary files /dev/null and b/compatibility/assets/data/graficos/3005.png differ
diff --git a/compatibility/assets/data/graficos/3006.png b/compatibility/assets/data/graficos/3006.png
new file mode 100644
index 00000000..9778d0dc
Binary files /dev/null and b/compatibility/assets/data/graficos/3006.png differ
diff --git a/compatibility/assets/data/graficos/3007.png b/compatibility/assets/data/graficos/3007.png
new file mode 100644
index 00000000..dd9504c7
Binary files /dev/null and b/compatibility/assets/data/graficos/3007.png differ
diff --git a/compatibility/assets/data/graficos/3008.png b/compatibility/assets/data/graficos/3008.png
new file mode 100644
index 00000000..7218e728
Binary files /dev/null and b/compatibility/assets/data/graficos/3008.png differ
diff --git a/compatibility/assets/data/graficos/3009.png b/compatibility/assets/data/graficos/3009.png
new file mode 100644
index 00000000..1321d6b9
Binary files /dev/null and b/compatibility/assets/data/graficos/3009.png differ
diff --git a/compatibility/assets/data/graficos/301.png b/compatibility/assets/data/graficos/301.png
new file mode 100644
index 00000000..6731941a
Binary files /dev/null and b/compatibility/assets/data/graficos/301.png differ
diff --git a/compatibility/assets/data/graficos/3010.png b/compatibility/assets/data/graficos/3010.png
new file mode 100644
index 00000000..c528beb8
Binary files /dev/null and b/compatibility/assets/data/graficos/3010.png differ
diff --git a/compatibility/assets/data/graficos/3011.png b/compatibility/assets/data/graficos/3011.png
new file mode 100644
index 00000000..546a46fb
Binary files /dev/null and b/compatibility/assets/data/graficos/3011.png differ
diff --git a/compatibility/assets/data/graficos/3012.png b/compatibility/assets/data/graficos/3012.png
new file mode 100644
index 00000000..6e8ed39d
Binary files /dev/null and b/compatibility/assets/data/graficos/3012.png differ
diff --git a/compatibility/assets/data/graficos/3013.png b/compatibility/assets/data/graficos/3013.png
new file mode 100644
index 00000000..9eb49a68
Binary files /dev/null and b/compatibility/assets/data/graficos/3013.png differ
diff --git a/compatibility/assets/data/graficos/3014.png b/compatibility/assets/data/graficos/3014.png
new file mode 100644
index 00000000..77765d90
Binary files /dev/null and b/compatibility/assets/data/graficos/3014.png differ
diff --git a/compatibility/assets/data/graficos/3015.png b/compatibility/assets/data/graficos/3015.png
new file mode 100644
index 00000000..3f7f9694
Binary files /dev/null and b/compatibility/assets/data/graficos/3015.png differ
diff --git a/compatibility/assets/data/graficos/3016.png b/compatibility/assets/data/graficos/3016.png
new file mode 100644
index 00000000..d8ecd4ed
Binary files /dev/null and b/compatibility/assets/data/graficos/3016.png differ
diff --git a/compatibility/assets/data/graficos/3017.png b/compatibility/assets/data/graficos/3017.png
new file mode 100644
index 00000000..d41f04f6
Binary files /dev/null and b/compatibility/assets/data/graficos/3017.png differ
diff --git a/compatibility/assets/data/graficos/3018.png b/compatibility/assets/data/graficos/3018.png
new file mode 100644
index 00000000..96723120
Binary files /dev/null and b/compatibility/assets/data/graficos/3018.png differ
diff --git a/compatibility/assets/data/graficos/3019.png b/compatibility/assets/data/graficos/3019.png
new file mode 100644
index 00000000..729e66e4
Binary files /dev/null and b/compatibility/assets/data/graficos/3019.png differ
diff --git a/compatibility/assets/data/graficos/302.png b/compatibility/assets/data/graficos/302.png
new file mode 100644
index 00000000..a3207a35
Binary files /dev/null and b/compatibility/assets/data/graficos/302.png differ
diff --git a/compatibility/assets/data/graficos/3020.png b/compatibility/assets/data/graficos/3020.png
new file mode 100644
index 00000000..e904d81e
Binary files /dev/null and b/compatibility/assets/data/graficos/3020.png differ
diff --git a/compatibility/assets/data/graficos/3021.png b/compatibility/assets/data/graficos/3021.png
new file mode 100644
index 00000000..2ba13404
Binary files /dev/null and b/compatibility/assets/data/graficos/3021.png differ
diff --git a/compatibility/assets/data/graficos/3022.png b/compatibility/assets/data/graficos/3022.png
new file mode 100644
index 00000000..6bf0deb2
Binary files /dev/null and b/compatibility/assets/data/graficos/3022.png differ
diff --git a/compatibility/assets/data/graficos/3023.png b/compatibility/assets/data/graficos/3023.png
new file mode 100644
index 00000000..dacfc52a
Binary files /dev/null and b/compatibility/assets/data/graficos/3023.png differ
diff --git a/compatibility/assets/data/graficos/3024.png b/compatibility/assets/data/graficos/3024.png
new file mode 100644
index 00000000..706ad367
Binary files /dev/null and b/compatibility/assets/data/graficos/3024.png differ
diff --git a/compatibility/assets/data/graficos/3025.png b/compatibility/assets/data/graficos/3025.png
new file mode 100644
index 00000000..d37da2c9
Binary files /dev/null and b/compatibility/assets/data/graficos/3025.png differ
diff --git a/compatibility/assets/data/graficos/3026.png b/compatibility/assets/data/graficos/3026.png
new file mode 100644
index 00000000..8549734e
Binary files /dev/null and b/compatibility/assets/data/graficos/3026.png differ
diff --git a/compatibility/assets/data/graficos/3027.png b/compatibility/assets/data/graficos/3027.png
new file mode 100644
index 00000000..e6d0c54a
Binary files /dev/null and b/compatibility/assets/data/graficos/3027.png differ
diff --git a/compatibility/assets/data/graficos/3028.png b/compatibility/assets/data/graficos/3028.png
new file mode 100644
index 00000000..0470b2a1
Binary files /dev/null and b/compatibility/assets/data/graficos/3028.png differ
diff --git a/compatibility/assets/data/graficos/3029.png b/compatibility/assets/data/graficos/3029.png
new file mode 100644
index 00000000..d3b775fc
Binary files /dev/null and b/compatibility/assets/data/graficos/3029.png differ
diff --git a/compatibility/assets/data/graficos/303.png b/compatibility/assets/data/graficos/303.png
new file mode 100644
index 00000000..3dfbc11b
Binary files /dev/null and b/compatibility/assets/data/graficos/303.png differ
diff --git a/compatibility/assets/data/graficos/3030.png b/compatibility/assets/data/graficos/3030.png
new file mode 100644
index 00000000..ceb18e4e
Binary files /dev/null and b/compatibility/assets/data/graficos/3030.png differ
diff --git a/compatibility/assets/data/graficos/3031.png b/compatibility/assets/data/graficos/3031.png
new file mode 100644
index 00000000..19e573fe
Binary files /dev/null and b/compatibility/assets/data/graficos/3031.png differ
diff --git a/compatibility/assets/data/graficos/3032.png b/compatibility/assets/data/graficos/3032.png
new file mode 100644
index 00000000..b0d977f8
Binary files /dev/null and b/compatibility/assets/data/graficos/3032.png differ
diff --git a/compatibility/assets/data/graficos/3033.png b/compatibility/assets/data/graficos/3033.png
new file mode 100644
index 00000000..68444ed7
Binary files /dev/null and b/compatibility/assets/data/graficos/3033.png differ
diff --git a/compatibility/assets/data/graficos/3034.png b/compatibility/assets/data/graficos/3034.png
new file mode 100644
index 00000000..e8467124
Binary files /dev/null and b/compatibility/assets/data/graficos/3034.png differ
diff --git a/compatibility/assets/data/graficos/3035.png b/compatibility/assets/data/graficos/3035.png
new file mode 100644
index 00000000..99fa37e0
Binary files /dev/null and b/compatibility/assets/data/graficos/3035.png differ
diff --git a/compatibility/assets/data/graficos/3036.png b/compatibility/assets/data/graficos/3036.png
new file mode 100644
index 00000000..6fa31f89
Binary files /dev/null and b/compatibility/assets/data/graficos/3036.png differ
diff --git a/compatibility/assets/data/graficos/3037.png b/compatibility/assets/data/graficos/3037.png
new file mode 100644
index 00000000..b61c138c
Binary files /dev/null and b/compatibility/assets/data/graficos/3037.png differ
diff --git a/compatibility/assets/data/graficos/3038.png b/compatibility/assets/data/graficos/3038.png
new file mode 100644
index 00000000..bd5e24fd
Binary files /dev/null and b/compatibility/assets/data/graficos/3038.png differ
diff --git a/compatibility/assets/data/graficos/3039.png b/compatibility/assets/data/graficos/3039.png
new file mode 100644
index 00000000..3d600eeb
Binary files /dev/null and b/compatibility/assets/data/graficos/3039.png differ
diff --git a/compatibility/assets/data/graficos/304.png b/compatibility/assets/data/graficos/304.png
new file mode 100644
index 00000000..70e1a179
Binary files /dev/null and b/compatibility/assets/data/graficos/304.png differ
diff --git a/compatibility/assets/data/graficos/3040.png b/compatibility/assets/data/graficos/3040.png
new file mode 100644
index 00000000..a59697fb
Binary files /dev/null and b/compatibility/assets/data/graficos/3040.png differ
diff --git a/compatibility/assets/data/graficos/3041.png b/compatibility/assets/data/graficos/3041.png
new file mode 100644
index 00000000..b763e005
Binary files /dev/null and b/compatibility/assets/data/graficos/3041.png differ
diff --git a/compatibility/assets/data/graficos/3042.png b/compatibility/assets/data/graficos/3042.png
new file mode 100644
index 00000000..c193421d
Binary files /dev/null and b/compatibility/assets/data/graficos/3042.png differ
diff --git a/compatibility/assets/data/graficos/3043.png b/compatibility/assets/data/graficos/3043.png
new file mode 100644
index 00000000..1a41c467
Binary files /dev/null and b/compatibility/assets/data/graficos/3043.png differ
diff --git a/compatibility/assets/data/graficos/3044.png b/compatibility/assets/data/graficos/3044.png
new file mode 100644
index 00000000..8a72eef8
Binary files /dev/null and b/compatibility/assets/data/graficos/3044.png differ
diff --git a/compatibility/assets/data/graficos/3045.png b/compatibility/assets/data/graficos/3045.png
new file mode 100644
index 00000000..74f0b44d
Binary files /dev/null and b/compatibility/assets/data/graficos/3045.png differ
diff --git a/compatibility/assets/data/graficos/3046.png b/compatibility/assets/data/graficos/3046.png
new file mode 100644
index 00000000..f021bbbf
Binary files /dev/null and b/compatibility/assets/data/graficos/3046.png differ
diff --git a/compatibility/assets/data/graficos/3047.png b/compatibility/assets/data/graficos/3047.png
new file mode 100644
index 00000000..bbe871ae
Binary files /dev/null and b/compatibility/assets/data/graficos/3047.png differ
diff --git a/compatibility/assets/data/graficos/3048.png b/compatibility/assets/data/graficos/3048.png
new file mode 100644
index 00000000..91fbbe5c
Binary files /dev/null and b/compatibility/assets/data/graficos/3048.png differ
diff --git a/compatibility/assets/data/graficos/3049.png b/compatibility/assets/data/graficos/3049.png
new file mode 100644
index 00000000..94412664
Binary files /dev/null and b/compatibility/assets/data/graficos/3049.png differ
diff --git a/compatibility/assets/data/graficos/305.png b/compatibility/assets/data/graficos/305.png
new file mode 100644
index 00000000..c1f0fd32
Binary files /dev/null and b/compatibility/assets/data/graficos/305.png differ
diff --git a/compatibility/assets/data/graficos/3050.png b/compatibility/assets/data/graficos/3050.png
new file mode 100644
index 00000000..f6144928
Binary files /dev/null and b/compatibility/assets/data/graficos/3050.png differ
diff --git a/compatibility/assets/data/graficos/3051.png b/compatibility/assets/data/graficos/3051.png
new file mode 100644
index 00000000..b88c21c7
Binary files /dev/null and b/compatibility/assets/data/graficos/3051.png differ
diff --git a/compatibility/assets/data/graficos/3052.png b/compatibility/assets/data/graficos/3052.png
new file mode 100644
index 00000000..4a5b94a8
Binary files /dev/null and b/compatibility/assets/data/graficos/3052.png differ
diff --git a/compatibility/assets/data/graficos/3053.png b/compatibility/assets/data/graficos/3053.png
new file mode 100644
index 00000000..ad2bdee9
Binary files /dev/null and b/compatibility/assets/data/graficos/3053.png differ
diff --git a/compatibility/assets/data/graficos/3054.png b/compatibility/assets/data/graficos/3054.png
new file mode 100644
index 00000000..239e2de4
Binary files /dev/null and b/compatibility/assets/data/graficos/3054.png differ
diff --git a/compatibility/assets/data/graficos/3055.png b/compatibility/assets/data/graficos/3055.png
new file mode 100644
index 00000000..6af432ab
Binary files /dev/null and b/compatibility/assets/data/graficos/3055.png differ
diff --git a/compatibility/assets/data/graficos/3056.png b/compatibility/assets/data/graficos/3056.png
new file mode 100644
index 00000000..340f362e
Binary files /dev/null and b/compatibility/assets/data/graficos/3056.png differ
diff --git a/compatibility/assets/data/graficos/3057.png b/compatibility/assets/data/graficos/3057.png
new file mode 100644
index 00000000..353cdeac
Binary files /dev/null and b/compatibility/assets/data/graficos/3057.png differ
diff --git a/compatibility/assets/data/graficos/3058.png b/compatibility/assets/data/graficos/3058.png
new file mode 100644
index 00000000..784e403d
Binary files /dev/null and b/compatibility/assets/data/graficos/3058.png differ
diff --git a/compatibility/assets/data/graficos/3059.png b/compatibility/assets/data/graficos/3059.png
new file mode 100644
index 00000000..0fb974af
Binary files /dev/null and b/compatibility/assets/data/graficos/3059.png differ
diff --git a/compatibility/assets/data/graficos/306.png b/compatibility/assets/data/graficos/306.png
new file mode 100644
index 00000000..eaecff7c
Binary files /dev/null and b/compatibility/assets/data/graficos/306.png differ
diff --git a/compatibility/assets/data/graficos/3060.png b/compatibility/assets/data/graficos/3060.png
new file mode 100644
index 00000000..dad90d71
Binary files /dev/null and b/compatibility/assets/data/graficos/3060.png differ
diff --git a/compatibility/assets/data/graficos/3061.png b/compatibility/assets/data/graficos/3061.png
new file mode 100644
index 00000000..311392b4
Binary files /dev/null and b/compatibility/assets/data/graficos/3061.png differ
diff --git a/compatibility/assets/data/graficos/3062.png b/compatibility/assets/data/graficos/3062.png
new file mode 100644
index 00000000..c1e413db
Binary files /dev/null and b/compatibility/assets/data/graficos/3062.png differ
diff --git a/compatibility/assets/data/graficos/3063.png b/compatibility/assets/data/graficos/3063.png
new file mode 100644
index 00000000..204044fe
Binary files /dev/null and b/compatibility/assets/data/graficos/3063.png differ
diff --git a/compatibility/assets/data/graficos/3064.png b/compatibility/assets/data/graficos/3064.png
new file mode 100644
index 00000000..15c22c3f
Binary files /dev/null and b/compatibility/assets/data/graficos/3064.png differ
diff --git a/compatibility/assets/data/graficos/3065.png b/compatibility/assets/data/graficos/3065.png
new file mode 100644
index 00000000..4a8e5e78
Binary files /dev/null and b/compatibility/assets/data/graficos/3065.png differ
diff --git a/compatibility/assets/data/graficos/3066.png b/compatibility/assets/data/graficos/3066.png
new file mode 100644
index 00000000..1f7a33a0
Binary files /dev/null and b/compatibility/assets/data/graficos/3066.png differ
diff --git a/compatibility/assets/data/graficos/3067.png b/compatibility/assets/data/graficos/3067.png
new file mode 100644
index 00000000..837dc6af
Binary files /dev/null and b/compatibility/assets/data/graficos/3067.png differ
diff --git a/compatibility/assets/data/graficos/3068.png b/compatibility/assets/data/graficos/3068.png
new file mode 100644
index 00000000..c925f786
Binary files /dev/null and b/compatibility/assets/data/graficos/3068.png differ
diff --git a/compatibility/assets/data/graficos/3069.png b/compatibility/assets/data/graficos/3069.png
new file mode 100644
index 00000000..2ebaedbe
Binary files /dev/null and b/compatibility/assets/data/graficos/3069.png differ
diff --git a/compatibility/assets/data/graficos/307.png b/compatibility/assets/data/graficos/307.png
new file mode 100644
index 00000000..b1a7939b
Binary files /dev/null and b/compatibility/assets/data/graficos/307.png differ
diff --git a/compatibility/assets/data/graficos/3070.png b/compatibility/assets/data/graficos/3070.png
new file mode 100644
index 00000000..521b6b82
Binary files /dev/null and b/compatibility/assets/data/graficos/3070.png differ
diff --git a/compatibility/assets/data/graficos/3071.png b/compatibility/assets/data/graficos/3071.png
new file mode 100644
index 00000000..8ece224c
Binary files /dev/null and b/compatibility/assets/data/graficos/3071.png differ
diff --git a/compatibility/assets/data/graficos/3072.png b/compatibility/assets/data/graficos/3072.png
new file mode 100644
index 00000000..889ea822
Binary files /dev/null and b/compatibility/assets/data/graficos/3072.png differ
diff --git a/compatibility/assets/data/graficos/3073.png b/compatibility/assets/data/graficos/3073.png
new file mode 100644
index 00000000..803f5881
Binary files /dev/null and b/compatibility/assets/data/graficos/3073.png differ
diff --git a/compatibility/assets/data/graficos/3074.png b/compatibility/assets/data/graficos/3074.png
new file mode 100644
index 00000000..56206ba0
Binary files /dev/null and b/compatibility/assets/data/graficos/3074.png differ
diff --git a/compatibility/assets/data/graficos/3075.png b/compatibility/assets/data/graficos/3075.png
new file mode 100644
index 00000000..e699e466
Binary files /dev/null and b/compatibility/assets/data/graficos/3075.png differ
diff --git a/compatibility/assets/data/graficos/3076.png b/compatibility/assets/data/graficos/3076.png
new file mode 100644
index 00000000..f9942390
Binary files /dev/null and b/compatibility/assets/data/graficos/3076.png differ
diff --git a/compatibility/assets/data/graficos/3077.png b/compatibility/assets/data/graficos/3077.png
new file mode 100644
index 00000000..145ccb31
Binary files /dev/null and b/compatibility/assets/data/graficos/3077.png differ
diff --git a/compatibility/assets/data/graficos/3078.png b/compatibility/assets/data/graficos/3078.png
new file mode 100644
index 00000000..3ba29ac7
Binary files /dev/null and b/compatibility/assets/data/graficos/3078.png differ
diff --git a/compatibility/assets/data/graficos/3079.png b/compatibility/assets/data/graficos/3079.png
new file mode 100644
index 00000000..65f71c1a
Binary files /dev/null and b/compatibility/assets/data/graficos/3079.png differ
diff --git a/compatibility/assets/data/graficos/308.png b/compatibility/assets/data/graficos/308.png
new file mode 100644
index 00000000..10ac473b
Binary files /dev/null and b/compatibility/assets/data/graficos/308.png differ
diff --git a/compatibility/assets/data/graficos/3080.png b/compatibility/assets/data/graficos/3080.png
new file mode 100644
index 00000000..fb781da1
Binary files /dev/null and b/compatibility/assets/data/graficos/3080.png differ
diff --git a/compatibility/assets/data/graficos/3081.png b/compatibility/assets/data/graficos/3081.png
new file mode 100644
index 00000000..44614d75
Binary files /dev/null and b/compatibility/assets/data/graficos/3081.png differ
diff --git a/compatibility/assets/data/graficos/3082.png b/compatibility/assets/data/graficos/3082.png
new file mode 100644
index 00000000..ee642ed8
Binary files /dev/null and b/compatibility/assets/data/graficos/3082.png differ
diff --git a/compatibility/assets/data/graficos/3083.png b/compatibility/assets/data/graficos/3083.png
new file mode 100644
index 00000000..c6151dcb
Binary files /dev/null and b/compatibility/assets/data/graficos/3083.png differ
diff --git a/compatibility/assets/data/graficos/3084.png b/compatibility/assets/data/graficos/3084.png
new file mode 100644
index 00000000..8b056e55
Binary files /dev/null and b/compatibility/assets/data/graficos/3084.png differ
diff --git a/compatibility/assets/data/graficos/3085.png b/compatibility/assets/data/graficos/3085.png
new file mode 100644
index 00000000..725314a7
Binary files /dev/null and b/compatibility/assets/data/graficos/3085.png differ
diff --git a/compatibility/assets/data/graficos/3086.png b/compatibility/assets/data/graficos/3086.png
new file mode 100644
index 00000000..18513790
Binary files /dev/null and b/compatibility/assets/data/graficos/3086.png differ
diff --git a/compatibility/assets/data/graficos/3087.png b/compatibility/assets/data/graficos/3087.png
new file mode 100644
index 00000000..2d2e980b
Binary files /dev/null and b/compatibility/assets/data/graficos/3087.png differ
diff --git a/compatibility/assets/data/graficos/3088.png b/compatibility/assets/data/graficos/3088.png
new file mode 100644
index 00000000..2d2e980b
Binary files /dev/null and b/compatibility/assets/data/graficos/3088.png differ
diff --git a/compatibility/assets/data/graficos/3089.png b/compatibility/assets/data/graficos/3089.png
new file mode 100644
index 00000000..e1764b38
Binary files /dev/null and b/compatibility/assets/data/graficos/3089.png differ
diff --git a/compatibility/assets/data/graficos/309.png b/compatibility/assets/data/graficos/309.png
new file mode 100644
index 00000000..5987ec8b
Binary files /dev/null and b/compatibility/assets/data/graficos/309.png differ
diff --git a/compatibility/assets/data/graficos/3090.png b/compatibility/assets/data/graficos/3090.png
new file mode 100644
index 00000000..88a2c6a1
Binary files /dev/null and b/compatibility/assets/data/graficos/3090.png differ
diff --git a/compatibility/assets/data/graficos/3091.png b/compatibility/assets/data/graficos/3091.png
new file mode 100644
index 00000000..fc066522
Binary files /dev/null and b/compatibility/assets/data/graficos/3091.png differ
diff --git a/compatibility/assets/data/graficos/3092.png b/compatibility/assets/data/graficos/3092.png
new file mode 100644
index 00000000..3d3b76d6
Binary files /dev/null and b/compatibility/assets/data/graficos/3092.png differ
diff --git a/compatibility/assets/data/graficos/3093.png b/compatibility/assets/data/graficos/3093.png
new file mode 100644
index 00000000..2e5ae607
Binary files /dev/null and b/compatibility/assets/data/graficos/3093.png differ
diff --git a/compatibility/assets/data/graficos/3094.png b/compatibility/assets/data/graficos/3094.png
new file mode 100644
index 00000000..058b8c26
Binary files /dev/null and b/compatibility/assets/data/graficos/3094.png differ
diff --git a/compatibility/assets/data/graficos/3095.png b/compatibility/assets/data/graficos/3095.png
new file mode 100644
index 00000000..3dd777e1
Binary files /dev/null and b/compatibility/assets/data/graficos/3095.png differ
diff --git a/compatibility/assets/data/graficos/3096.png b/compatibility/assets/data/graficos/3096.png
new file mode 100644
index 00000000..2f8cd77a
Binary files /dev/null and b/compatibility/assets/data/graficos/3096.png differ
diff --git a/compatibility/assets/data/graficos/3097.png b/compatibility/assets/data/graficos/3097.png
new file mode 100644
index 00000000..61a02c43
Binary files /dev/null and b/compatibility/assets/data/graficos/3097.png differ
diff --git a/compatibility/assets/data/graficos/3098.png b/compatibility/assets/data/graficos/3098.png
new file mode 100644
index 00000000..15617ed5
Binary files /dev/null and b/compatibility/assets/data/graficos/3098.png differ
diff --git a/compatibility/assets/data/graficos/3099.png b/compatibility/assets/data/graficos/3099.png
new file mode 100644
index 00000000..84a58f09
Binary files /dev/null and b/compatibility/assets/data/graficos/3099.png differ
diff --git a/compatibility/assets/data/graficos/31.png b/compatibility/assets/data/graficos/31.png
new file mode 100644
index 00000000..305b3e2f
Binary files /dev/null and b/compatibility/assets/data/graficos/31.png differ
diff --git a/compatibility/assets/data/graficos/310.png b/compatibility/assets/data/graficos/310.png
new file mode 100644
index 00000000..57cd77a5
Binary files /dev/null and b/compatibility/assets/data/graficos/310.png differ
diff --git a/compatibility/assets/data/graficos/3100.png b/compatibility/assets/data/graficos/3100.png
new file mode 100644
index 00000000..0dc51dac
Binary files /dev/null and b/compatibility/assets/data/graficos/3100.png differ
diff --git a/compatibility/assets/data/graficos/3101.png b/compatibility/assets/data/graficos/3101.png
new file mode 100644
index 00000000..93853d67
Binary files /dev/null and b/compatibility/assets/data/graficos/3101.png differ
diff --git a/compatibility/assets/data/graficos/3102.png b/compatibility/assets/data/graficos/3102.png
new file mode 100644
index 00000000..9d63034e
Binary files /dev/null and b/compatibility/assets/data/graficos/3102.png differ
diff --git a/compatibility/assets/data/graficos/3103.png b/compatibility/assets/data/graficos/3103.png
new file mode 100644
index 00000000..53726ae0
Binary files /dev/null and b/compatibility/assets/data/graficos/3103.png differ
diff --git a/compatibility/assets/data/graficos/3104.png b/compatibility/assets/data/graficos/3104.png
new file mode 100644
index 00000000..2d7d608e
Binary files /dev/null and b/compatibility/assets/data/graficos/3104.png differ
diff --git a/compatibility/assets/data/graficos/3105.png b/compatibility/assets/data/graficos/3105.png
new file mode 100644
index 00000000..7fa84c00
Binary files /dev/null and b/compatibility/assets/data/graficos/3105.png differ
diff --git a/compatibility/assets/data/graficos/3106.png b/compatibility/assets/data/graficos/3106.png
new file mode 100644
index 00000000..9ea75871
Binary files /dev/null and b/compatibility/assets/data/graficos/3106.png differ
diff --git a/compatibility/assets/data/graficos/311.png b/compatibility/assets/data/graficos/311.png
new file mode 100644
index 00000000..40d84d28
Binary files /dev/null and b/compatibility/assets/data/graficos/311.png differ
diff --git a/compatibility/assets/data/graficos/312.png b/compatibility/assets/data/graficos/312.png
new file mode 100644
index 00000000..b0e69185
Binary files /dev/null and b/compatibility/assets/data/graficos/312.png differ
diff --git a/compatibility/assets/data/graficos/313.png b/compatibility/assets/data/graficos/313.png
new file mode 100644
index 00000000..5fc10e6c
Binary files /dev/null and b/compatibility/assets/data/graficos/313.png differ
diff --git a/compatibility/assets/data/graficos/314.png b/compatibility/assets/data/graficos/314.png
new file mode 100644
index 00000000..10d3d8af
Binary files /dev/null and b/compatibility/assets/data/graficos/314.png differ
diff --git a/compatibility/assets/data/graficos/315.png b/compatibility/assets/data/graficos/315.png
new file mode 100644
index 00000000..b38265e5
Binary files /dev/null and b/compatibility/assets/data/graficos/315.png differ
diff --git a/compatibility/assets/data/graficos/316.png b/compatibility/assets/data/graficos/316.png
new file mode 100644
index 00000000..52b8ce3a
Binary files /dev/null and b/compatibility/assets/data/graficos/316.png differ
diff --git a/compatibility/assets/data/graficos/317.png b/compatibility/assets/data/graficos/317.png
new file mode 100644
index 00000000..c3931308
Binary files /dev/null and b/compatibility/assets/data/graficos/317.png differ
diff --git a/compatibility/assets/data/graficos/318.png b/compatibility/assets/data/graficos/318.png
new file mode 100644
index 00000000..f7292b54
Binary files /dev/null and b/compatibility/assets/data/graficos/318.png differ
diff --git a/compatibility/assets/data/graficos/319.png b/compatibility/assets/data/graficos/319.png
new file mode 100644
index 00000000..bc4c7211
Binary files /dev/null and b/compatibility/assets/data/graficos/319.png differ
diff --git a/compatibility/assets/data/graficos/32.png b/compatibility/assets/data/graficos/32.png
new file mode 100644
index 00000000..373b24cd
Binary files /dev/null and b/compatibility/assets/data/graficos/32.png differ
diff --git a/compatibility/assets/data/graficos/320.png b/compatibility/assets/data/graficos/320.png
new file mode 100644
index 00000000..45dbdd08
Binary files /dev/null and b/compatibility/assets/data/graficos/320.png differ
diff --git a/compatibility/assets/data/graficos/321.png b/compatibility/assets/data/graficos/321.png
new file mode 100644
index 00000000..b0e7d3e0
Binary files /dev/null and b/compatibility/assets/data/graficos/321.png differ
diff --git a/compatibility/assets/data/graficos/322.png b/compatibility/assets/data/graficos/322.png
new file mode 100644
index 00000000..6ffa08b2
Binary files /dev/null and b/compatibility/assets/data/graficos/322.png differ
diff --git a/compatibility/assets/data/graficos/323.png b/compatibility/assets/data/graficos/323.png
new file mode 100644
index 00000000..f309debd
Binary files /dev/null and b/compatibility/assets/data/graficos/323.png differ
diff --git a/compatibility/assets/data/graficos/324.png b/compatibility/assets/data/graficos/324.png
new file mode 100644
index 00000000..d636c924
Binary files /dev/null and b/compatibility/assets/data/graficos/324.png differ
diff --git a/compatibility/assets/data/graficos/325.png b/compatibility/assets/data/graficos/325.png
new file mode 100644
index 00000000..5fc60f94
Binary files /dev/null and b/compatibility/assets/data/graficos/325.png differ
diff --git a/compatibility/assets/data/graficos/326.png b/compatibility/assets/data/graficos/326.png
new file mode 100644
index 00000000..2a8170ac
Binary files /dev/null and b/compatibility/assets/data/graficos/326.png differ
diff --git a/compatibility/assets/data/graficos/327.png b/compatibility/assets/data/graficos/327.png
new file mode 100644
index 00000000..7f902946
Binary files /dev/null and b/compatibility/assets/data/graficos/327.png differ
diff --git a/compatibility/assets/data/graficos/328.png b/compatibility/assets/data/graficos/328.png
new file mode 100644
index 00000000..660f9011
Binary files /dev/null and b/compatibility/assets/data/graficos/328.png differ
diff --git a/compatibility/assets/data/graficos/329.png b/compatibility/assets/data/graficos/329.png
new file mode 100644
index 00000000..84f01a95
Binary files /dev/null and b/compatibility/assets/data/graficos/329.png differ
diff --git a/compatibility/assets/data/graficos/33.png b/compatibility/assets/data/graficos/33.png
new file mode 100644
index 00000000..b15f6257
Binary files /dev/null and b/compatibility/assets/data/graficos/33.png differ
diff --git a/compatibility/assets/data/graficos/330.png b/compatibility/assets/data/graficos/330.png
new file mode 100644
index 00000000..ee48483d
Binary files /dev/null and b/compatibility/assets/data/graficos/330.png differ
diff --git a/compatibility/assets/data/graficos/331.png b/compatibility/assets/data/graficos/331.png
new file mode 100644
index 00000000..cc7e987c
Binary files /dev/null and b/compatibility/assets/data/graficos/331.png differ
diff --git a/compatibility/assets/data/graficos/332.png b/compatibility/assets/data/graficos/332.png
new file mode 100644
index 00000000..cc7e987c
Binary files /dev/null and b/compatibility/assets/data/graficos/332.png differ
diff --git a/compatibility/assets/data/graficos/333.png b/compatibility/assets/data/graficos/333.png
new file mode 100644
index 00000000..e5615bf0
Binary files /dev/null and b/compatibility/assets/data/graficos/333.png differ
diff --git a/compatibility/assets/data/graficos/334.png b/compatibility/assets/data/graficos/334.png
new file mode 100644
index 00000000..d2e3b9cc
Binary files /dev/null and b/compatibility/assets/data/graficos/334.png differ
diff --git a/compatibility/assets/data/graficos/335.png b/compatibility/assets/data/graficos/335.png
new file mode 100644
index 00000000..b513a291
Binary files /dev/null and b/compatibility/assets/data/graficos/335.png differ
diff --git a/compatibility/assets/data/graficos/336.png b/compatibility/assets/data/graficos/336.png
new file mode 100644
index 00000000..b513a291
Binary files /dev/null and b/compatibility/assets/data/graficos/336.png differ
diff --git a/compatibility/assets/data/graficos/337.png b/compatibility/assets/data/graficos/337.png
new file mode 100644
index 00000000..329909bb
Binary files /dev/null and b/compatibility/assets/data/graficos/337.png differ
diff --git a/compatibility/assets/data/graficos/338.png b/compatibility/assets/data/graficos/338.png
new file mode 100644
index 00000000..a0e31d9e
Binary files /dev/null and b/compatibility/assets/data/graficos/338.png differ
diff --git a/compatibility/assets/data/graficos/339.png b/compatibility/assets/data/graficos/339.png
new file mode 100644
index 00000000..bdb4d4ec
Binary files /dev/null and b/compatibility/assets/data/graficos/339.png differ
diff --git a/compatibility/assets/data/graficos/34.png b/compatibility/assets/data/graficos/34.png
new file mode 100644
index 00000000..2e02fe01
Binary files /dev/null and b/compatibility/assets/data/graficos/34.png differ
diff --git a/compatibility/assets/data/graficos/340.png b/compatibility/assets/data/graficos/340.png
new file mode 100644
index 00000000..bc82b14d
Binary files /dev/null and b/compatibility/assets/data/graficos/340.png differ
diff --git a/compatibility/assets/data/graficos/341.png b/compatibility/assets/data/graficos/341.png
new file mode 100644
index 00000000..6f691291
Binary files /dev/null and b/compatibility/assets/data/graficos/341.png differ
diff --git a/compatibility/assets/data/graficos/342.png b/compatibility/assets/data/graficos/342.png
new file mode 100644
index 00000000..a5135481
Binary files /dev/null and b/compatibility/assets/data/graficos/342.png differ
diff --git a/compatibility/assets/data/graficos/343.png b/compatibility/assets/data/graficos/343.png
new file mode 100644
index 00000000..3cfee9cb
Binary files /dev/null and b/compatibility/assets/data/graficos/343.png differ
diff --git a/compatibility/assets/data/graficos/344.png b/compatibility/assets/data/graficos/344.png
new file mode 100644
index 00000000..44a586fd
Binary files /dev/null and b/compatibility/assets/data/graficos/344.png differ
diff --git a/compatibility/assets/data/graficos/345.png b/compatibility/assets/data/graficos/345.png
new file mode 100644
index 00000000..5d9a0702
Binary files /dev/null and b/compatibility/assets/data/graficos/345.png differ
diff --git a/compatibility/assets/data/graficos/346.png b/compatibility/assets/data/graficos/346.png
new file mode 100644
index 00000000..ff4964a3
Binary files /dev/null and b/compatibility/assets/data/graficos/346.png differ
diff --git a/compatibility/assets/data/graficos/347.png b/compatibility/assets/data/graficos/347.png
new file mode 100644
index 00000000..fb41921d
Binary files /dev/null and b/compatibility/assets/data/graficos/347.png differ
diff --git a/compatibility/assets/data/graficos/348.png b/compatibility/assets/data/graficos/348.png
new file mode 100644
index 00000000..08f818d3
Binary files /dev/null and b/compatibility/assets/data/graficos/348.png differ
diff --git a/compatibility/assets/data/graficos/349.png b/compatibility/assets/data/graficos/349.png
new file mode 100644
index 00000000..f9e5930a
Binary files /dev/null and b/compatibility/assets/data/graficos/349.png differ
diff --git a/compatibility/assets/data/graficos/35.png b/compatibility/assets/data/graficos/35.png
new file mode 100644
index 00000000..f5a80588
Binary files /dev/null and b/compatibility/assets/data/graficos/35.png differ
diff --git a/compatibility/assets/data/graficos/350.png b/compatibility/assets/data/graficos/350.png
new file mode 100644
index 00000000..f0f03419
Binary files /dev/null and b/compatibility/assets/data/graficos/350.png differ
diff --git a/compatibility/assets/data/graficos/351.png b/compatibility/assets/data/graficos/351.png
new file mode 100644
index 00000000..bf66012f
Binary files /dev/null and b/compatibility/assets/data/graficos/351.png differ
diff --git a/compatibility/assets/data/graficos/352.png b/compatibility/assets/data/graficos/352.png
new file mode 100644
index 00000000..ae33f883
Binary files /dev/null and b/compatibility/assets/data/graficos/352.png differ
diff --git a/compatibility/assets/data/graficos/353.png b/compatibility/assets/data/graficos/353.png
new file mode 100644
index 00000000..0daab2e1
Binary files /dev/null and b/compatibility/assets/data/graficos/353.png differ
diff --git a/compatibility/assets/data/graficos/354.png b/compatibility/assets/data/graficos/354.png
new file mode 100644
index 00000000..5f6aeb6b
Binary files /dev/null and b/compatibility/assets/data/graficos/354.png differ
diff --git a/compatibility/assets/data/graficos/355.png b/compatibility/assets/data/graficos/355.png
new file mode 100644
index 00000000..b83296ae
Binary files /dev/null and b/compatibility/assets/data/graficos/355.png differ
diff --git a/compatibility/assets/data/graficos/356.png b/compatibility/assets/data/graficos/356.png
new file mode 100644
index 00000000..905523c8
Binary files /dev/null and b/compatibility/assets/data/graficos/356.png differ
diff --git a/compatibility/assets/data/graficos/357.png b/compatibility/assets/data/graficos/357.png
new file mode 100644
index 00000000..a35876a4
Binary files /dev/null and b/compatibility/assets/data/graficos/357.png differ
diff --git a/compatibility/assets/data/graficos/358.png b/compatibility/assets/data/graficos/358.png
new file mode 100644
index 00000000..30754ed8
Binary files /dev/null and b/compatibility/assets/data/graficos/358.png differ
diff --git a/compatibility/assets/data/graficos/359.png b/compatibility/assets/data/graficos/359.png
new file mode 100644
index 00000000..4f4a01e2
Binary files /dev/null and b/compatibility/assets/data/graficos/359.png differ
diff --git a/compatibility/assets/data/graficos/36.png b/compatibility/assets/data/graficos/36.png
new file mode 100644
index 00000000..e01e6515
Binary files /dev/null and b/compatibility/assets/data/graficos/36.png differ
diff --git a/compatibility/assets/data/graficos/360.png b/compatibility/assets/data/graficos/360.png
new file mode 100644
index 00000000..b4e19658
Binary files /dev/null and b/compatibility/assets/data/graficos/360.png differ
diff --git a/compatibility/assets/data/graficos/361.png b/compatibility/assets/data/graficos/361.png
new file mode 100644
index 00000000..4a37819a
Binary files /dev/null and b/compatibility/assets/data/graficos/361.png differ
diff --git a/compatibility/assets/data/graficos/362.png b/compatibility/assets/data/graficos/362.png
new file mode 100644
index 00000000..1cf323e8
Binary files /dev/null and b/compatibility/assets/data/graficos/362.png differ
diff --git a/compatibility/assets/data/graficos/363.png b/compatibility/assets/data/graficos/363.png
new file mode 100644
index 00000000..3d906740
Binary files /dev/null and b/compatibility/assets/data/graficos/363.png differ
diff --git a/compatibility/assets/data/graficos/364.png b/compatibility/assets/data/graficos/364.png
new file mode 100644
index 00000000..25e35b68
Binary files /dev/null and b/compatibility/assets/data/graficos/364.png differ
diff --git a/compatibility/assets/data/graficos/365.png b/compatibility/assets/data/graficos/365.png
new file mode 100644
index 00000000..9c20e34b
Binary files /dev/null and b/compatibility/assets/data/graficos/365.png differ
diff --git a/compatibility/assets/data/graficos/366.png b/compatibility/assets/data/graficos/366.png
new file mode 100644
index 00000000..b634c05c
Binary files /dev/null and b/compatibility/assets/data/graficos/366.png differ
diff --git a/compatibility/assets/data/graficos/367.png b/compatibility/assets/data/graficos/367.png
new file mode 100644
index 00000000..c44652c3
Binary files /dev/null and b/compatibility/assets/data/graficos/367.png differ
diff --git a/compatibility/assets/data/graficos/368.png b/compatibility/assets/data/graficos/368.png
new file mode 100644
index 00000000..83dfff7c
Binary files /dev/null and b/compatibility/assets/data/graficos/368.png differ
diff --git a/compatibility/assets/data/graficos/369.png b/compatibility/assets/data/graficos/369.png
new file mode 100644
index 00000000..6d2c5ee3
Binary files /dev/null and b/compatibility/assets/data/graficos/369.png differ
diff --git a/compatibility/assets/data/graficos/37.png b/compatibility/assets/data/graficos/37.png
new file mode 100644
index 00000000..eae9a69d
Binary files /dev/null and b/compatibility/assets/data/graficos/37.png differ
diff --git a/compatibility/assets/data/graficos/370.png b/compatibility/assets/data/graficos/370.png
new file mode 100644
index 00000000..4130ac2a
Binary files /dev/null and b/compatibility/assets/data/graficos/370.png differ
diff --git a/compatibility/assets/data/graficos/371.png b/compatibility/assets/data/graficos/371.png
new file mode 100644
index 00000000..46bd01c4
Binary files /dev/null and b/compatibility/assets/data/graficos/371.png differ
diff --git a/compatibility/assets/data/graficos/372.png b/compatibility/assets/data/graficos/372.png
new file mode 100644
index 00000000..1278c6eb
Binary files /dev/null and b/compatibility/assets/data/graficos/372.png differ
diff --git a/compatibility/assets/data/graficos/373.png b/compatibility/assets/data/graficos/373.png
new file mode 100644
index 00000000..89bc2d2a
Binary files /dev/null and b/compatibility/assets/data/graficos/373.png differ
diff --git a/compatibility/assets/data/graficos/374.png b/compatibility/assets/data/graficos/374.png
new file mode 100644
index 00000000..65b3a01c
Binary files /dev/null and b/compatibility/assets/data/graficos/374.png differ
diff --git a/compatibility/assets/data/graficos/375.png b/compatibility/assets/data/graficos/375.png
new file mode 100644
index 00000000..4f3275a0
Binary files /dev/null and b/compatibility/assets/data/graficos/375.png differ
diff --git a/compatibility/assets/data/graficos/376.png b/compatibility/assets/data/graficos/376.png
new file mode 100644
index 00000000..98d6aa52
Binary files /dev/null and b/compatibility/assets/data/graficos/376.png differ
diff --git a/compatibility/assets/data/graficos/377.png b/compatibility/assets/data/graficos/377.png
new file mode 100644
index 00000000..6c21b6fd
Binary files /dev/null and b/compatibility/assets/data/graficos/377.png differ
diff --git a/compatibility/assets/data/graficos/378.png b/compatibility/assets/data/graficos/378.png
new file mode 100644
index 00000000..39d92a40
Binary files /dev/null and b/compatibility/assets/data/graficos/378.png differ
diff --git a/compatibility/assets/data/graficos/379.png b/compatibility/assets/data/graficos/379.png
new file mode 100644
index 00000000..39d6224d
Binary files /dev/null and b/compatibility/assets/data/graficos/379.png differ
diff --git a/compatibility/assets/data/graficos/38.png b/compatibility/assets/data/graficos/38.png
new file mode 100644
index 00000000..4d66f0fe
Binary files /dev/null and b/compatibility/assets/data/graficos/38.png differ
diff --git a/compatibility/assets/data/graficos/380.png b/compatibility/assets/data/graficos/380.png
new file mode 100644
index 00000000..78fa88ea
Binary files /dev/null and b/compatibility/assets/data/graficos/380.png differ
diff --git a/compatibility/assets/data/graficos/381.png b/compatibility/assets/data/graficos/381.png
new file mode 100644
index 00000000..5ab25210
Binary files /dev/null and b/compatibility/assets/data/graficos/381.png differ
diff --git a/compatibility/assets/data/graficos/382.png b/compatibility/assets/data/graficos/382.png
new file mode 100644
index 00000000..b70e0e5f
Binary files /dev/null and b/compatibility/assets/data/graficos/382.png differ
diff --git a/compatibility/assets/data/graficos/383.png b/compatibility/assets/data/graficos/383.png
new file mode 100644
index 00000000..052b5f74
Binary files /dev/null and b/compatibility/assets/data/graficos/383.png differ
diff --git a/compatibility/assets/data/graficos/384.png b/compatibility/assets/data/graficos/384.png
new file mode 100644
index 00000000..c0402962
Binary files /dev/null and b/compatibility/assets/data/graficos/384.png differ
diff --git a/compatibility/assets/data/graficos/385.png b/compatibility/assets/data/graficos/385.png
new file mode 100644
index 00000000..e750e0f0
Binary files /dev/null and b/compatibility/assets/data/graficos/385.png differ
diff --git a/compatibility/assets/data/graficos/386.png b/compatibility/assets/data/graficos/386.png
new file mode 100644
index 00000000..9fb3ea8c
Binary files /dev/null and b/compatibility/assets/data/graficos/386.png differ
diff --git a/compatibility/assets/data/graficos/387.png b/compatibility/assets/data/graficos/387.png
new file mode 100644
index 00000000..2f53ae54
Binary files /dev/null and b/compatibility/assets/data/graficos/387.png differ
diff --git a/compatibility/assets/data/graficos/388.png b/compatibility/assets/data/graficos/388.png
new file mode 100644
index 00000000..7a8ffe3f
Binary files /dev/null and b/compatibility/assets/data/graficos/388.png differ
diff --git a/compatibility/assets/data/graficos/389.png b/compatibility/assets/data/graficos/389.png
new file mode 100644
index 00000000..9e394933
Binary files /dev/null and b/compatibility/assets/data/graficos/389.png differ
diff --git a/compatibility/assets/data/graficos/39.png b/compatibility/assets/data/graficos/39.png
new file mode 100644
index 00000000..954add21
Binary files /dev/null and b/compatibility/assets/data/graficos/39.png differ
diff --git a/compatibility/assets/data/graficos/390.png b/compatibility/assets/data/graficos/390.png
new file mode 100644
index 00000000..ec13c5ed
Binary files /dev/null and b/compatibility/assets/data/graficos/390.png differ
diff --git a/compatibility/assets/data/graficos/391.png b/compatibility/assets/data/graficos/391.png
new file mode 100644
index 00000000..2cede0ae
Binary files /dev/null and b/compatibility/assets/data/graficos/391.png differ
diff --git a/compatibility/assets/data/graficos/392.png b/compatibility/assets/data/graficos/392.png
new file mode 100644
index 00000000..4f2fe786
Binary files /dev/null and b/compatibility/assets/data/graficos/392.png differ
diff --git a/compatibility/assets/data/graficos/393.png b/compatibility/assets/data/graficos/393.png
new file mode 100644
index 00000000..dbd663af
Binary files /dev/null and b/compatibility/assets/data/graficos/393.png differ
diff --git a/compatibility/assets/data/graficos/394.png b/compatibility/assets/data/graficos/394.png
new file mode 100644
index 00000000..5adac8e3
Binary files /dev/null and b/compatibility/assets/data/graficos/394.png differ
diff --git a/compatibility/assets/data/graficos/395.png b/compatibility/assets/data/graficos/395.png
new file mode 100644
index 00000000..69aa0beb
Binary files /dev/null and b/compatibility/assets/data/graficos/395.png differ
diff --git a/compatibility/assets/data/graficos/396.png b/compatibility/assets/data/graficos/396.png
new file mode 100644
index 00000000..fa36ceba
Binary files /dev/null and b/compatibility/assets/data/graficos/396.png differ
diff --git a/compatibility/assets/data/graficos/397.png b/compatibility/assets/data/graficos/397.png
new file mode 100644
index 00000000..d41487ee
Binary files /dev/null and b/compatibility/assets/data/graficos/397.png differ
diff --git a/compatibility/assets/data/graficos/398.png b/compatibility/assets/data/graficos/398.png
new file mode 100644
index 00000000..8f760b0f
Binary files /dev/null and b/compatibility/assets/data/graficos/398.png differ
diff --git a/compatibility/assets/data/graficos/399.png b/compatibility/assets/data/graficos/399.png
new file mode 100644
index 00000000..53ace733
Binary files /dev/null and b/compatibility/assets/data/graficos/399.png differ
diff --git a/compatibility/assets/data/graficos/4.png b/compatibility/assets/data/graficos/4.png
new file mode 100644
index 00000000..4e28f04f
Binary files /dev/null and b/compatibility/assets/data/graficos/4.png differ
diff --git a/compatibility/assets/data/graficos/40.png b/compatibility/assets/data/graficos/40.png
new file mode 100644
index 00000000..d6b7c09b
Binary files /dev/null and b/compatibility/assets/data/graficos/40.png differ
diff --git a/compatibility/assets/data/graficos/400.png b/compatibility/assets/data/graficos/400.png
new file mode 100644
index 00000000..ea274e7b
Binary files /dev/null and b/compatibility/assets/data/graficos/400.png differ
diff --git a/compatibility/assets/data/graficos/4000.png b/compatibility/assets/data/graficos/4000.png
new file mode 100644
index 00000000..14edd876
Binary files /dev/null and b/compatibility/assets/data/graficos/4000.png differ
diff --git a/compatibility/assets/data/graficos/4001.png b/compatibility/assets/data/graficos/4001.png
new file mode 100644
index 00000000..fb881f3d
Binary files /dev/null and b/compatibility/assets/data/graficos/4001.png differ
diff --git a/compatibility/assets/data/graficos/4002.png b/compatibility/assets/data/graficos/4002.png
new file mode 100644
index 00000000..4142c116
Binary files /dev/null and b/compatibility/assets/data/graficos/4002.png differ
diff --git a/compatibility/assets/data/graficos/4003.png b/compatibility/assets/data/graficos/4003.png
new file mode 100644
index 00000000..5cfd1633
Binary files /dev/null and b/compatibility/assets/data/graficos/4003.png differ
diff --git a/compatibility/assets/data/graficos/4004.png b/compatibility/assets/data/graficos/4004.png
new file mode 100644
index 00000000..067cd51d
Binary files /dev/null and b/compatibility/assets/data/graficos/4004.png differ
diff --git a/compatibility/assets/data/graficos/4005.png b/compatibility/assets/data/graficos/4005.png
new file mode 100644
index 00000000..9dab87ab
Binary files /dev/null and b/compatibility/assets/data/graficos/4005.png differ
diff --git a/compatibility/assets/data/graficos/4006.png b/compatibility/assets/data/graficos/4006.png
new file mode 100644
index 00000000..4ab4fc78
Binary files /dev/null and b/compatibility/assets/data/graficos/4006.png differ
diff --git a/compatibility/assets/data/graficos/4007.png b/compatibility/assets/data/graficos/4007.png
new file mode 100644
index 00000000..353607d8
Binary files /dev/null and b/compatibility/assets/data/graficos/4007.png differ
diff --git a/compatibility/assets/data/graficos/4008.png b/compatibility/assets/data/graficos/4008.png
new file mode 100644
index 00000000..12579232
Binary files /dev/null and b/compatibility/assets/data/graficos/4008.png differ
diff --git a/compatibility/assets/data/graficos/4009.png b/compatibility/assets/data/graficos/4009.png
new file mode 100644
index 00000000..9b832bfd
Binary files /dev/null and b/compatibility/assets/data/graficos/4009.png differ
diff --git a/compatibility/assets/data/graficos/401.png b/compatibility/assets/data/graficos/401.png
new file mode 100644
index 00000000..1c2001ba
Binary files /dev/null and b/compatibility/assets/data/graficos/401.png differ
diff --git a/compatibility/assets/data/graficos/4010.png b/compatibility/assets/data/graficos/4010.png
new file mode 100644
index 00000000..56cc4247
Binary files /dev/null and b/compatibility/assets/data/graficos/4010.png differ
diff --git a/compatibility/assets/data/graficos/4011.png b/compatibility/assets/data/graficos/4011.png
new file mode 100644
index 00000000..42129808
Binary files /dev/null and b/compatibility/assets/data/graficos/4011.png differ
diff --git a/compatibility/assets/data/graficos/4012.png b/compatibility/assets/data/graficos/4012.png
new file mode 100644
index 00000000..8a9982aa
Binary files /dev/null and b/compatibility/assets/data/graficos/4012.png differ
diff --git a/compatibility/assets/data/graficos/4013.png b/compatibility/assets/data/graficos/4013.png
new file mode 100644
index 00000000..84bce787
Binary files /dev/null and b/compatibility/assets/data/graficos/4013.png differ
diff --git a/compatibility/assets/data/graficos/4014.png b/compatibility/assets/data/graficos/4014.png
new file mode 100644
index 00000000..7ed5da4e
Binary files /dev/null and b/compatibility/assets/data/graficos/4014.png differ
diff --git a/compatibility/assets/data/graficos/4015.png b/compatibility/assets/data/graficos/4015.png
new file mode 100644
index 00000000..66f07fe9
Binary files /dev/null and b/compatibility/assets/data/graficos/4015.png differ
diff --git a/compatibility/assets/data/graficos/4016.png b/compatibility/assets/data/graficos/4016.png
new file mode 100644
index 00000000..0481031b
Binary files /dev/null and b/compatibility/assets/data/graficos/4016.png differ
diff --git a/compatibility/assets/data/graficos/4017.png b/compatibility/assets/data/graficos/4017.png
new file mode 100644
index 00000000..2e830ee0
Binary files /dev/null and b/compatibility/assets/data/graficos/4017.png differ
diff --git a/compatibility/assets/data/graficos/4018.png b/compatibility/assets/data/graficos/4018.png
new file mode 100644
index 00000000..47e87c32
Binary files /dev/null and b/compatibility/assets/data/graficos/4018.png differ
diff --git a/compatibility/assets/data/graficos/4019.png b/compatibility/assets/data/graficos/4019.png
new file mode 100644
index 00000000..608eba6c
Binary files /dev/null and b/compatibility/assets/data/graficos/4019.png differ
diff --git a/compatibility/assets/data/graficos/402.png b/compatibility/assets/data/graficos/402.png
new file mode 100644
index 00000000..bb06fff8
Binary files /dev/null and b/compatibility/assets/data/graficos/402.png differ
diff --git a/compatibility/assets/data/graficos/4020.png b/compatibility/assets/data/graficos/4020.png
new file mode 100644
index 00000000..b1711c25
Binary files /dev/null and b/compatibility/assets/data/graficos/4020.png differ
diff --git a/compatibility/assets/data/graficos/4021.png b/compatibility/assets/data/graficos/4021.png
new file mode 100644
index 00000000..7a84ef0b
Binary files /dev/null and b/compatibility/assets/data/graficos/4021.png differ
diff --git a/compatibility/assets/data/graficos/4022.png b/compatibility/assets/data/graficos/4022.png
new file mode 100644
index 00000000..4277bef7
Binary files /dev/null and b/compatibility/assets/data/graficos/4022.png differ
diff --git a/compatibility/assets/data/graficos/4023.png b/compatibility/assets/data/graficos/4023.png
new file mode 100644
index 00000000..1a9103c4
Binary files /dev/null and b/compatibility/assets/data/graficos/4023.png differ
diff --git a/compatibility/assets/data/graficos/4024.png b/compatibility/assets/data/graficos/4024.png
new file mode 100644
index 00000000..436ccf07
Binary files /dev/null and b/compatibility/assets/data/graficos/4024.png differ
diff --git a/compatibility/assets/data/graficos/4025.png b/compatibility/assets/data/graficos/4025.png
new file mode 100644
index 00000000..3252d853
Binary files /dev/null and b/compatibility/assets/data/graficos/4025.png differ
diff --git a/compatibility/assets/data/graficos/4026.png b/compatibility/assets/data/graficos/4026.png
new file mode 100644
index 00000000..452bf07c
Binary files /dev/null and b/compatibility/assets/data/graficos/4026.png differ
diff --git a/compatibility/assets/data/graficos/4027.png b/compatibility/assets/data/graficos/4027.png
new file mode 100644
index 00000000..10751fde
Binary files /dev/null and b/compatibility/assets/data/graficos/4027.png differ
diff --git a/compatibility/assets/data/graficos/4028.png b/compatibility/assets/data/graficos/4028.png
new file mode 100644
index 00000000..fb75fc88
Binary files /dev/null and b/compatibility/assets/data/graficos/4028.png differ
diff --git a/compatibility/assets/data/graficos/4029.png b/compatibility/assets/data/graficos/4029.png
new file mode 100644
index 00000000..d4d41aab
Binary files /dev/null and b/compatibility/assets/data/graficos/4029.png differ
diff --git a/compatibility/assets/data/graficos/403.png b/compatibility/assets/data/graficos/403.png
new file mode 100644
index 00000000..7a8deff3
Binary files /dev/null and b/compatibility/assets/data/graficos/403.png differ
diff --git a/compatibility/assets/data/graficos/4030.png b/compatibility/assets/data/graficos/4030.png
new file mode 100644
index 00000000..b571c190
Binary files /dev/null and b/compatibility/assets/data/graficos/4030.png differ
diff --git a/compatibility/assets/data/graficos/4031.png b/compatibility/assets/data/graficos/4031.png
new file mode 100644
index 00000000..97ff3d20
Binary files /dev/null and b/compatibility/assets/data/graficos/4031.png differ
diff --git a/compatibility/assets/data/graficos/4032.png b/compatibility/assets/data/graficos/4032.png
new file mode 100644
index 00000000..17ab0117
Binary files /dev/null and b/compatibility/assets/data/graficos/4032.png differ
diff --git a/compatibility/assets/data/graficos/4033.png b/compatibility/assets/data/graficos/4033.png
new file mode 100644
index 00000000..99138ada
Binary files /dev/null and b/compatibility/assets/data/graficos/4033.png differ
diff --git a/compatibility/assets/data/graficos/4034.png b/compatibility/assets/data/graficos/4034.png
new file mode 100644
index 00000000..0b55ebec
Binary files /dev/null and b/compatibility/assets/data/graficos/4034.png differ
diff --git a/compatibility/assets/data/graficos/4035.png b/compatibility/assets/data/graficos/4035.png
new file mode 100644
index 00000000..e0e52d77
Binary files /dev/null and b/compatibility/assets/data/graficos/4035.png differ
diff --git a/compatibility/assets/data/graficos/4036.png b/compatibility/assets/data/graficos/4036.png
new file mode 100644
index 00000000..5edb2a90
Binary files /dev/null and b/compatibility/assets/data/graficos/4036.png differ
diff --git a/compatibility/assets/data/graficos/4037.png b/compatibility/assets/data/graficos/4037.png
new file mode 100644
index 00000000..bd0a4721
Binary files /dev/null and b/compatibility/assets/data/graficos/4037.png differ
diff --git a/compatibility/assets/data/graficos/4038.png b/compatibility/assets/data/graficos/4038.png
new file mode 100644
index 00000000..3ab1674c
Binary files /dev/null and b/compatibility/assets/data/graficos/4038.png differ
diff --git a/compatibility/assets/data/graficos/4039.png b/compatibility/assets/data/graficos/4039.png
new file mode 100644
index 00000000..39855bfa
Binary files /dev/null and b/compatibility/assets/data/graficos/4039.png differ
diff --git a/compatibility/assets/data/graficos/404.png b/compatibility/assets/data/graficos/404.png
new file mode 100644
index 00000000..f78ac205
Binary files /dev/null and b/compatibility/assets/data/graficos/404.png differ
diff --git a/compatibility/assets/data/graficos/4040.png b/compatibility/assets/data/graficos/4040.png
new file mode 100644
index 00000000..b17ea26a
Binary files /dev/null and b/compatibility/assets/data/graficos/4040.png differ
diff --git a/compatibility/assets/data/graficos/4041.png b/compatibility/assets/data/graficos/4041.png
new file mode 100644
index 00000000..5fb0d83f
Binary files /dev/null and b/compatibility/assets/data/graficos/4041.png differ
diff --git a/compatibility/assets/data/graficos/4042.png b/compatibility/assets/data/graficos/4042.png
new file mode 100644
index 00000000..d5b4ca95
Binary files /dev/null and b/compatibility/assets/data/graficos/4042.png differ
diff --git a/compatibility/assets/data/graficos/4043.png b/compatibility/assets/data/graficos/4043.png
new file mode 100644
index 00000000..efbf4d52
Binary files /dev/null and b/compatibility/assets/data/graficos/4043.png differ
diff --git a/compatibility/assets/data/graficos/4044.png b/compatibility/assets/data/graficos/4044.png
new file mode 100644
index 00000000..b20491ba
Binary files /dev/null and b/compatibility/assets/data/graficos/4044.png differ
diff --git a/compatibility/assets/data/graficos/4045.png b/compatibility/assets/data/graficos/4045.png
new file mode 100644
index 00000000..69dfcb3e
Binary files /dev/null and b/compatibility/assets/data/graficos/4045.png differ
diff --git a/compatibility/assets/data/graficos/4046.png b/compatibility/assets/data/graficos/4046.png
new file mode 100644
index 00000000..0adee317
Binary files /dev/null and b/compatibility/assets/data/graficos/4046.png differ
diff --git a/compatibility/assets/data/graficos/4047.png b/compatibility/assets/data/graficos/4047.png
new file mode 100644
index 00000000..b383be36
Binary files /dev/null and b/compatibility/assets/data/graficos/4047.png differ
diff --git a/compatibility/assets/data/graficos/4048.png b/compatibility/assets/data/graficos/4048.png
new file mode 100644
index 00000000..5d188e82
Binary files /dev/null and b/compatibility/assets/data/graficos/4048.png differ
diff --git a/compatibility/assets/data/graficos/4049.png b/compatibility/assets/data/graficos/4049.png
new file mode 100644
index 00000000..27c69d7d
Binary files /dev/null and b/compatibility/assets/data/graficos/4049.png differ
diff --git a/compatibility/assets/data/graficos/405.png b/compatibility/assets/data/graficos/405.png
new file mode 100644
index 00000000..d6a3624a
Binary files /dev/null and b/compatibility/assets/data/graficos/405.png differ
diff --git a/compatibility/assets/data/graficos/4050.png b/compatibility/assets/data/graficos/4050.png
new file mode 100644
index 00000000..7c2a8118
Binary files /dev/null and b/compatibility/assets/data/graficos/4050.png differ
diff --git a/compatibility/assets/data/graficos/4051.png b/compatibility/assets/data/graficos/4051.png
new file mode 100644
index 00000000..cd7aeb65
Binary files /dev/null and b/compatibility/assets/data/graficos/4051.png differ
diff --git a/compatibility/assets/data/graficos/4052.png b/compatibility/assets/data/graficos/4052.png
new file mode 100644
index 00000000..0e3039bc
Binary files /dev/null and b/compatibility/assets/data/graficos/4052.png differ
diff --git a/compatibility/assets/data/graficos/4053.png b/compatibility/assets/data/graficos/4053.png
new file mode 100644
index 00000000..5e40ac64
Binary files /dev/null and b/compatibility/assets/data/graficos/4053.png differ
diff --git a/compatibility/assets/data/graficos/4054.png b/compatibility/assets/data/graficos/4054.png
new file mode 100644
index 00000000..c406b8d7
Binary files /dev/null and b/compatibility/assets/data/graficos/4054.png differ
diff --git a/compatibility/assets/data/graficos/4055.png b/compatibility/assets/data/graficos/4055.png
new file mode 100644
index 00000000..aa5d55f6
Binary files /dev/null and b/compatibility/assets/data/graficos/4055.png differ
diff --git a/compatibility/assets/data/graficos/4056.png b/compatibility/assets/data/graficos/4056.png
new file mode 100644
index 00000000..13a263b1
Binary files /dev/null and b/compatibility/assets/data/graficos/4056.png differ
diff --git a/compatibility/assets/data/graficos/4057.png b/compatibility/assets/data/graficos/4057.png
new file mode 100644
index 00000000..a8650fb3
Binary files /dev/null and b/compatibility/assets/data/graficos/4057.png differ
diff --git a/compatibility/assets/data/graficos/4058.png b/compatibility/assets/data/graficos/4058.png
new file mode 100644
index 00000000..8f106344
Binary files /dev/null and b/compatibility/assets/data/graficos/4058.png differ
diff --git a/compatibility/assets/data/graficos/4059.png b/compatibility/assets/data/graficos/4059.png
new file mode 100644
index 00000000..dcb168b6
Binary files /dev/null and b/compatibility/assets/data/graficos/4059.png differ
diff --git a/compatibility/assets/data/graficos/406.png b/compatibility/assets/data/graficos/406.png
new file mode 100644
index 00000000..ede01d46
Binary files /dev/null and b/compatibility/assets/data/graficos/406.png differ
diff --git a/compatibility/assets/data/graficos/4060.png b/compatibility/assets/data/graficos/4060.png
new file mode 100644
index 00000000..a88b0c4b
Binary files /dev/null and b/compatibility/assets/data/graficos/4060.png differ
diff --git a/compatibility/assets/data/graficos/4061.png b/compatibility/assets/data/graficos/4061.png
new file mode 100644
index 00000000..80f77f9a
Binary files /dev/null and b/compatibility/assets/data/graficos/4061.png differ
diff --git a/compatibility/assets/data/graficos/4062.png b/compatibility/assets/data/graficos/4062.png
new file mode 100644
index 00000000..880ec57e
Binary files /dev/null and b/compatibility/assets/data/graficos/4062.png differ
diff --git a/compatibility/assets/data/graficos/4063.png b/compatibility/assets/data/graficos/4063.png
new file mode 100644
index 00000000..a4b9297f
Binary files /dev/null and b/compatibility/assets/data/graficos/4063.png differ
diff --git a/compatibility/assets/data/graficos/4064.png b/compatibility/assets/data/graficos/4064.png
new file mode 100644
index 00000000..29e28fb7
Binary files /dev/null and b/compatibility/assets/data/graficos/4064.png differ
diff --git a/compatibility/assets/data/graficos/4065.png b/compatibility/assets/data/graficos/4065.png
new file mode 100644
index 00000000..4fe72d35
Binary files /dev/null and b/compatibility/assets/data/graficos/4065.png differ
diff --git a/compatibility/assets/data/graficos/4066.png b/compatibility/assets/data/graficos/4066.png
new file mode 100644
index 00000000..d6ded6c5
Binary files /dev/null and b/compatibility/assets/data/graficos/4066.png differ
diff --git a/compatibility/assets/data/graficos/4067.png b/compatibility/assets/data/graficos/4067.png
new file mode 100644
index 00000000..ba7b1ed5
Binary files /dev/null and b/compatibility/assets/data/graficos/4067.png differ
diff --git a/compatibility/assets/data/graficos/4068.png b/compatibility/assets/data/graficos/4068.png
new file mode 100644
index 00000000..5c5bb5f8
Binary files /dev/null and b/compatibility/assets/data/graficos/4068.png differ
diff --git a/compatibility/assets/data/graficos/4069.png b/compatibility/assets/data/graficos/4069.png
new file mode 100644
index 00000000..db77e9b1
Binary files /dev/null and b/compatibility/assets/data/graficos/4069.png differ
diff --git a/compatibility/assets/data/graficos/407.png b/compatibility/assets/data/graficos/407.png
new file mode 100644
index 00000000..57025571
Binary files /dev/null and b/compatibility/assets/data/graficos/407.png differ
diff --git a/compatibility/assets/data/graficos/4070.png b/compatibility/assets/data/graficos/4070.png
new file mode 100644
index 00000000..0e444f68
Binary files /dev/null and b/compatibility/assets/data/graficos/4070.png differ
diff --git a/compatibility/assets/data/graficos/4071.png b/compatibility/assets/data/graficos/4071.png
new file mode 100644
index 00000000..b84644d1
Binary files /dev/null and b/compatibility/assets/data/graficos/4071.png differ
diff --git a/compatibility/assets/data/graficos/4072.png b/compatibility/assets/data/graficos/4072.png
new file mode 100644
index 00000000..4fb79e28
Binary files /dev/null and b/compatibility/assets/data/graficos/4072.png differ
diff --git a/compatibility/assets/data/graficos/4073.png b/compatibility/assets/data/graficos/4073.png
new file mode 100644
index 00000000..a048c64b
Binary files /dev/null and b/compatibility/assets/data/graficos/4073.png differ
diff --git a/compatibility/assets/data/graficos/4074.png b/compatibility/assets/data/graficos/4074.png
new file mode 100644
index 00000000..a096ee51
Binary files /dev/null and b/compatibility/assets/data/graficos/4074.png differ
diff --git a/compatibility/assets/data/graficos/4075.png b/compatibility/assets/data/graficos/4075.png
new file mode 100644
index 00000000..82d5dd67
Binary files /dev/null and b/compatibility/assets/data/graficos/4075.png differ
diff --git a/compatibility/assets/data/graficos/4076.png b/compatibility/assets/data/graficos/4076.png
new file mode 100644
index 00000000..a006b179
Binary files /dev/null and b/compatibility/assets/data/graficos/4076.png differ
diff --git a/compatibility/assets/data/graficos/4077.png b/compatibility/assets/data/graficos/4077.png
new file mode 100644
index 00000000..179b3d61
Binary files /dev/null and b/compatibility/assets/data/graficos/4077.png differ
diff --git a/compatibility/assets/data/graficos/4078.png b/compatibility/assets/data/graficos/4078.png
new file mode 100644
index 00000000..e06829a6
Binary files /dev/null and b/compatibility/assets/data/graficos/4078.png differ
diff --git a/compatibility/assets/data/graficos/4079.png b/compatibility/assets/data/graficos/4079.png
new file mode 100644
index 00000000..cc06f085
Binary files /dev/null and b/compatibility/assets/data/graficos/4079.png differ
diff --git a/compatibility/assets/data/graficos/408.png b/compatibility/assets/data/graficos/408.png
new file mode 100644
index 00000000..d8853054
Binary files /dev/null and b/compatibility/assets/data/graficos/408.png differ
diff --git a/compatibility/assets/data/graficos/4080.png b/compatibility/assets/data/graficos/4080.png
new file mode 100644
index 00000000..fc1f5821
Binary files /dev/null and b/compatibility/assets/data/graficos/4080.png differ
diff --git a/compatibility/assets/data/graficos/4081.png b/compatibility/assets/data/graficos/4081.png
new file mode 100644
index 00000000..b238b2f0
Binary files /dev/null and b/compatibility/assets/data/graficos/4081.png differ
diff --git a/compatibility/assets/data/graficos/4082.png b/compatibility/assets/data/graficos/4082.png
new file mode 100644
index 00000000..7d6904e7
Binary files /dev/null and b/compatibility/assets/data/graficos/4082.png differ
diff --git a/compatibility/assets/data/graficos/4083.png b/compatibility/assets/data/graficos/4083.png
new file mode 100644
index 00000000..ddb93abb
Binary files /dev/null and b/compatibility/assets/data/graficos/4083.png differ
diff --git a/compatibility/assets/data/graficos/4084.png b/compatibility/assets/data/graficos/4084.png
new file mode 100644
index 00000000..0909906e
Binary files /dev/null and b/compatibility/assets/data/graficos/4084.png differ
diff --git a/compatibility/assets/data/graficos/4085.png b/compatibility/assets/data/graficos/4085.png
new file mode 100644
index 00000000..e9c48d87
Binary files /dev/null and b/compatibility/assets/data/graficos/4085.png differ
diff --git a/compatibility/assets/data/graficos/4086.png b/compatibility/assets/data/graficos/4086.png
new file mode 100644
index 00000000..094ef7fd
Binary files /dev/null and b/compatibility/assets/data/graficos/4086.png differ
diff --git a/compatibility/assets/data/graficos/4087.png b/compatibility/assets/data/graficos/4087.png
new file mode 100644
index 00000000..f011a46a
Binary files /dev/null and b/compatibility/assets/data/graficos/4087.png differ
diff --git a/compatibility/assets/data/graficos/4088.png b/compatibility/assets/data/graficos/4088.png
new file mode 100644
index 00000000..b5d7cc67
Binary files /dev/null and b/compatibility/assets/data/graficos/4088.png differ
diff --git a/compatibility/assets/data/graficos/4089.png b/compatibility/assets/data/graficos/4089.png
new file mode 100644
index 00000000..55a5e945
Binary files /dev/null and b/compatibility/assets/data/graficos/4089.png differ
diff --git a/compatibility/assets/data/graficos/409.png b/compatibility/assets/data/graficos/409.png
new file mode 100644
index 00000000..19ff0b5b
Binary files /dev/null and b/compatibility/assets/data/graficos/409.png differ
diff --git a/compatibility/assets/data/graficos/4090.png b/compatibility/assets/data/graficos/4090.png
new file mode 100644
index 00000000..32314519
Binary files /dev/null and b/compatibility/assets/data/graficos/4090.png differ
diff --git a/compatibility/assets/data/graficos/4091.png b/compatibility/assets/data/graficos/4091.png
new file mode 100644
index 00000000..2382804c
Binary files /dev/null and b/compatibility/assets/data/graficos/4091.png differ
diff --git a/compatibility/assets/data/graficos/4092.png b/compatibility/assets/data/graficos/4092.png
new file mode 100644
index 00000000..137598da
Binary files /dev/null and b/compatibility/assets/data/graficos/4092.png differ
diff --git a/compatibility/assets/data/graficos/4093.png b/compatibility/assets/data/graficos/4093.png
new file mode 100644
index 00000000..c55705cc
Binary files /dev/null and b/compatibility/assets/data/graficos/4093.png differ
diff --git a/compatibility/assets/data/graficos/4094.png b/compatibility/assets/data/graficos/4094.png
new file mode 100644
index 00000000..25cf9e39
Binary files /dev/null and b/compatibility/assets/data/graficos/4094.png differ
diff --git a/compatibility/assets/data/graficos/4095.png b/compatibility/assets/data/graficos/4095.png
new file mode 100644
index 00000000..b605f960
Binary files /dev/null and b/compatibility/assets/data/graficos/4095.png differ
diff --git a/compatibility/assets/data/graficos/4096.png b/compatibility/assets/data/graficos/4096.png
new file mode 100644
index 00000000..67e30506
Binary files /dev/null and b/compatibility/assets/data/graficos/4096.png differ
diff --git a/compatibility/assets/data/graficos/4097.png b/compatibility/assets/data/graficos/4097.png
new file mode 100644
index 00000000..4be791d3
Binary files /dev/null and b/compatibility/assets/data/graficos/4097.png differ
diff --git a/compatibility/assets/data/graficos/4098.png b/compatibility/assets/data/graficos/4098.png
new file mode 100644
index 00000000..486d9ddf
Binary files /dev/null and b/compatibility/assets/data/graficos/4098.png differ
diff --git a/compatibility/assets/data/graficos/4099.png b/compatibility/assets/data/graficos/4099.png
new file mode 100644
index 00000000..41e3031f
Binary files /dev/null and b/compatibility/assets/data/graficos/4099.png differ
diff --git a/compatibility/assets/data/graficos/41.png b/compatibility/assets/data/graficos/41.png
new file mode 100644
index 00000000..958a9d63
Binary files /dev/null and b/compatibility/assets/data/graficos/41.png differ
diff --git a/compatibility/assets/data/graficos/410.png b/compatibility/assets/data/graficos/410.png
new file mode 100644
index 00000000..3f7ba382
Binary files /dev/null and b/compatibility/assets/data/graficos/410.png differ
diff --git a/compatibility/assets/data/graficos/4100.png b/compatibility/assets/data/graficos/4100.png
new file mode 100644
index 00000000..db148b84
Binary files /dev/null and b/compatibility/assets/data/graficos/4100.png differ
diff --git a/compatibility/assets/data/graficos/4101.png b/compatibility/assets/data/graficos/4101.png
new file mode 100644
index 00000000..09ffea76
Binary files /dev/null and b/compatibility/assets/data/graficos/4101.png differ
diff --git a/compatibility/assets/data/graficos/4102.png b/compatibility/assets/data/graficos/4102.png
new file mode 100644
index 00000000..744632f0
Binary files /dev/null and b/compatibility/assets/data/graficos/4102.png differ
diff --git a/compatibility/assets/data/graficos/4103.png b/compatibility/assets/data/graficos/4103.png
new file mode 100644
index 00000000..04acc9c7
Binary files /dev/null and b/compatibility/assets/data/graficos/4103.png differ
diff --git a/compatibility/assets/data/graficos/4104.png b/compatibility/assets/data/graficos/4104.png
new file mode 100644
index 00000000..13f0f34a
Binary files /dev/null and b/compatibility/assets/data/graficos/4104.png differ
diff --git a/compatibility/assets/data/graficos/4105.png b/compatibility/assets/data/graficos/4105.png
new file mode 100644
index 00000000..1254f9ad
Binary files /dev/null and b/compatibility/assets/data/graficos/4105.png differ
diff --git a/compatibility/assets/data/graficos/4106.png b/compatibility/assets/data/graficos/4106.png
new file mode 100644
index 00000000..3549c156
Binary files /dev/null and b/compatibility/assets/data/graficos/4106.png differ
diff --git a/compatibility/assets/data/graficos/4107.png b/compatibility/assets/data/graficos/4107.png
new file mode 100644
index 00000000..3689de01
Binary files /dev/null and b/compatibility/assets/data/graficos/4107.png differ
diff --git a/compatibility/assets/data/graficos/4108.png b/compatibility/assets/data/graficos/4108.png
new file mode 100644
index 00000000..d2517a8f
Binary files /dev/null and b/compatibility/assets/data/graficos/4108.png differ
diff --git a/compatibility/assets/data/graficos/4109.png b/compatibility/assets/data/graficos/4109.png
new file mode 100644
index 00000000..6e1bd360
Binary files /dev/null and b/compatibility/assets/data/graficos/4109.png differ
diff --git a/compatibility/assets/data/graficos/411.png b/compatibility/assets/data/graficos/411.png
new file mode 100644
index 00000000..49140126
Binary files /dev/null and b/compatibility/assets/data/graficos/411.png differ
diff --git a/compatibility/assets/data/graficos/4110.png b/compatibility/assets/data/graficos/4110.png
new file mode 100644
index 00000000..d331e86b
Binary files /dev/null and b/compatibility/assets/data/graficos/4110.png differ
diff --git a/compatibility/assets/data/graficos/4111.png b/compatibility/assets/data/graficos/4111.png
new file mode 100644
index 00000000..b1367f6e
Binary files /dev/null and b/compatibility/assets/data/graficos/4111.png differ
diff --git a/compatibility/assets/data/graficos/4112.png b/compatibility/assets/data/graficos/4112.png
new file mode 100644
index 00000000..e0e33382
Binary files /dev/null and b/compatibility/assets/data/graficos/4112.png differ
diff --git a/compatibility/assets/data/graficos/4113.png b/compatibility/assets/data/graficos/4113.png
new file mode 100644
index 00000000..a417d7e4
Binary files /dev/null and b/compatibility/assets/data/graficos/4113.png differ
diff --git a/compatibility/assets/data/graficos/4114.png b/compatibility/assets/data/graficos/4114.png
new file mode 100644
index 00000000..1b85b0b2
Binary files /dev/null and b/compatibility/assets/data/graficos/4114.png differ
diff --git a/compatibility/assets/data/graficos/4115.png b/compatibility/assets/data/graficos/4115.png
new file mode 100644
index 00000000..6ca4cf07
Binary files /dev/null and b/compatibility/assets/data/graficos/4115.png differ
diff --git a/compatibility/assets/data/graficos/4116.png b/compatibility/assets/data/graficos/4116.png
new file mode 100644
index 00000000..5cfd1633
Binary files /dev/null and b/compatibility/assets/data/graficos/4116.png differ
diff --git a/compatibility/assets/data/graficos/4117.png b/compatibility/assets/data/graficos/4117.png
new file mode 100644
index 00000000..ffc5dc3d
Binary files /dev/null and b/compatibility/assets/data/graficos/4117.png differ
diff --git a/compatibility/assets/data/graficos/4118.png b/compatibility/assets/data/graficos/4118.png
new file mode 100644
index 00000000..33380e3a
Binary files /dev/null and b/compatibility/assets/data/graficos/4118.png differ
diff --git a/compatibility/assets/data/graficos/4119.png b/compatibility/assets/data/graficos/4119.png
new file mode 100644
index 00000000..ac857715
Binary files /dev/null and b/compatibility/assets/data/graficos/4119.png differ
diff --git a/compatibility/assets/data/graficos/412.png b/compatibility/assets/data/graficos/412.png
new file mode 100644
index 00000000..ade87292
Binary files /dev/null and b/compatibility/assets/data/graficos/412.png differ
diff --git a/compatibility/assets/data/graficos/4120.png b/compatibility/assets/data/graficos/4120.png
new file mode 100644
index 00000000..a9e48bfa
Binary files /dev/null and b/compatibility/assets/data/graficos/4120.png differ
diff --git a/compatibility/assets/data/graficos/4121.png b/compatibility/assets/data/graficos/4121.png
new file mode 100644
index 00000000..5264f52a
Binary files /dev/null and b/compatibility/assets/data/graficos/4121.png differ
diff --git a/compatibility/assets/data/graficos/4122.png b/compatibility/assets/data/graficos/4122.png
new file mode 100644
index 00000000..eeb56da2
Binary files /dev/null and b/compatibility/assets/data/graficos/4122.png differ
diff --git a/compatibility/assets/data/graficos/4123.png b/compatibility/assets/data/graficos/4123.png
new file mode 100644
index 00000000..97d3346e
Binary files /dev/null and b/compatibility/assets/data/graficos/4123.png differ
diff --git a/compatibility/assets/data/graficos/4124.png b/compatibility/assets/data/graficos/4124.png
new file mode 100644
index 00000000..e9da6895
Binary files /dev/null and b/compatibility/assets/data/graficos/4124.png differ
diff --git a/compatibility/assets/data/graficos/4125.png b/compatibility/assets/data/graficos/4125.png
new file mode 100644
index 00000000..4eb00e58
Binary files /dev/null and b/compatibility/assets/data/graficos/4125.png differ
diff --git a/compatibility/assets/data/graficos/4126.png b/compatibility/assets/data/graficos/4126.png
new file mode 100644
index 00000000..218bee25
Binary files /dev/null and b/compatibility/assets/data/graficos/4126.png differ
diff --git a/compatibility/assets/data/graficos/4127.png b/compatibility/assets/data/graficos/4127.png
new file mode 100644
index 00000000..c103d9d8
Binary files /dev/null and b/compatibility/assets/data/graficos/4127.png differ
diff --git a/compatibility/assets/data/graficos/4128.png b/compatibility/assets/data/graficos/4128.png
new file mode 100644
index 00000000..d2b8ca69
Binary files /dev/null and b/compatibility/assets/data/graficos/4128.png differ
diff --git a/compatibility/assets/data/graficos/4129.png b/compatibility/assets/data/graficos/4129.png
new file mode 100644
index 00000000..b135fdc4
Binary files /dev/null and b/compatibility/assets/data/graficos/4129.png differ
diff --git a/compatibility/assets/data/graficos/413.png b/compatibility/assets/data/graficos/413.png
new file mode 100644
index 00000000..a3f1e13f
Binary files /dev/null and b/compatibility/assets/data/graficos/413.png differ
diff --git a/compatibility/assets/data/graficos/4130.png b/compatibility/assets/data/graficos/4130.png
new file mode 100644
index 00000000..bc644021
Binary files /dev/null and b/compatibility/assets/data/graficos/4130.png differ
diff --git a/compatibility/assets/data/graficos/4131.png b/compatibility/assets/data/graficos/4131.png
new file mode 100644
index 00000000..3d1ea289
Binary files /dev/null and b/compatibility/assets/data/graficos/4131.png differ
diff --git a/compatibility/assets/data/graficos/4132.png b/compatibility/assets/data/graficos/4132.png
new file mode 100644
index 00000000..d5ff4dcd
Binary files /dev/null and b/compatibility/assets/data/graficos/4132.png differ
diff --git a/compatibility/assets/data/graficos/4133.png b/compatibility/assets/data/graficos/4133.png
new file mode 100644
index 00000000..cc4f6c8d
Binary files /dev/null and b/compatibility/assets/data/graficos/4133.png differ
diff --git a/compatibility/assets/data/graficos/4134.png b/compatibility/assets/data/graficos/4134.png
new file mode 100644
index 00000000..35088aad
Binary files /dev/null and b/compatibility/assets/data/graficos/4134.png differ
diff --git a/compatibility/assets/data/graficos/4135.png b/compatibility/assets/data/graficos/4135.png
new file mode 100644
index 00000000..09328344
Binary files /dev/null and b/compatibility/assets/data/graficos/4135.png differ
diff --git a/compatibility/assets/data/graficos/4136.png b/compatibility/assets/data/graficos/4136.png
new file mode 100644
index 00000000..f666f026
Binary files /dev/null and b/compatibility/assets/data/graficos/4136.png differ
diff --git a/compatibility/assets/data/graficos/4137.png b/compatibility/assets/data/graficos/4137.png
new file mode 100644
index 00000000..3388d196
Binary files /dev/null and b/compatibility/assets/data/graficos/4137.png differ
diff --git a/compatibility/assets/data/graficos/4138.png b/compatibility/assets/data/graficos/4138.png
new file mode 100644
index 00000000..9ef84045
Binary files /dev/null and b/compatibility/assets/data/graficos/4138.png differ
diff --git a/compatibility/assets/data/graficos/4139.png b/compatibility/assets/data/graficos/4139.png
new file mode 100644
index 00000000..1069391f
Binary files /dev/null and b/compatibility/assets/data/graficos/4139.png differ
diff --git a/compatibility/assets/data/graficos/414.png b/compatibility/assets/data/graficos/414.png
new file mode 100644
index 00000000..771c6372
Binary files /dev/null and b/compatibility/assets/data/graficos/414.png differ
diff --git a/compatibility/assets/data/graficos/4140.png b/compatibility/assets/data/graficos/4140.png
new file mode 100644
index 00000000..c54ab621
Binary files /dev/null and b/compatibility/assets/data/graficos/4140.png differ
diff --git a/compatibility/assets/data/graficos/4141.png b/compatibility/assets/data/graficos/4141.png
new file mode 100644
index 00000000..0e78731d
Binary files /dev/null and b/compatibility/assets/data/graficos/4141.png differ
diff --git a/compatibility/assets/data/graficos/4142.png b/compatibility/assets/data/graficos/4142.png
new file mode 100644
index 00000000..dfd7e20f
Binary files /dev/null and b/compatibility/assets/data/graficos/4142.png differ
diff --git a/compatibility/assets/data/graficos/4143.png b/compatibility/assets/data/graficos/4143.png
new file mode 100644
index 00000000..edf7d850
Binary files /dev/null and b/compatibility/assets/data/graficos/4143.png differ
diff --git a/compatibility/assets/data/graficos/4144.png b/compatibility/assets/data/graficos/4144.png
new file mode 100644
index 00000000..2f4164c1
Binary files /dev/null and b/compatibility/assets/data/graficos/4144.png differ
diff --git a/compatibility/assets/data/graficos/4145.png b/compatibility/assets/data/graficos/4145.png
new file mode 100644
index 00000000..1dc5709e
Binary files /dev/null and b/compatibility/assets/data/graficos/4145.png differ
diff --git a/compatibility/assets/data/graficos/4146.png b/compatibility/assets/data/graficos/4146.png
new file mode 100644
index 00000000..f7b5c03a
Binary files /dev/null and b/compatibility/assets/data/graficos/4146.png differ
diff --git a/compatibility/assets/data/graficos/4147.png b/compatibility/assets/data/graficos/4147.png
new file mode 100644
index 00000000..7b2f2f63
Binary files /dev/null and b/compatibility/assets/data/graficos/4147.png differ
diff --git a/compatibility/assets/data/graficos/4148.png b/compatibility/assets/data/graficos/4148.png
new file mode 100644
index 00000000..856461ad
Binary files /dev/null and b/compatibility/assets/data/graficos/4148.png differ
diff --git a/compatibility/assets/data/graficos/4149.png b/compatibility/assets/data/graficos/4149.png
new file mode 100644
index 00000000..c39d6389
Binary files /dev/null and b/compatibility/assets/data/graficos/4149.png differ
diff --git a/compatibility/assets/data/graficos/415.png b/compatibility/assets/data/graficos/415.png
new file mode 100644
index 00000000..6f691291
Binary files /dev/null and b/compatibility/assets/data/graficos/415.png differ
diff --git a/compatibility/assets/data/graficos/4150.png b/compatibility/assets/data/graficos/4150.png
new file mode 100644
index 00000000..c8c7b663
Binary files /dev/null and b/compatibility/assets/data/graficos/4150.png differ
diff --git a/compatibility/assets/data/graficos/4151.png b/compatibility/assets/data/graficos/4151.png
new file mode 100644
index 00000000..a753c12c
Binary files /dev/null and b/compatibility/assets/data/graficos/4151.png differ
diff --git a/compatibility/assets/data/graficos/4152.png b/compatibility/assets/data/graficos/4152.png
new file mode 100644
index 00000000..4d291248
Binary files /dev/null and b/compatibility/assets/data/graficos/4152.png differ
diff --git a/compatibility/assets/data/graficos/4153.png b/compatibility/assets/data/graficos/4153.png
new file mode 100644
index 00000000..e32a0165
Binary files /dev/null and b/compatibility/assets/data/graficos/4153.png differ
diff --git a/compatibility/assets/data/graficos/4154.png b/compatibility/assets/data/graficos/4154.png
new file mode 100644
index 00000000..85313500
Binary files /dev/null and b/compatibility/assets/data/graficos/4154.png differ
diff --git a/compatibility/assets/data/graficos/4155.png b/compatibility/assets/data/graficos/4155.png
new file mode 100644
index 00000000..5a93bfc7
Binary files /dev/null and b/compatibility/assets/data/graficos/4155.png differ
diff --git a/compatibility/assets/data/graficos/4156.png b/compatibility/assets/data/graficos/4156.png
new file mode 100644
index 00000000..c0e72677
Binary files /dev/null and b/compatibility/assets/data/graficos/4156.png differ
diff --git a/compatibility/assets/data/graficos/4157.png b/compatibility/assets/data/graficos/4157.png
new file mode 100644
index 00000000..6fe18ae2
Binary files /dev/null and b/compatibility/assets/data/graficos/4157.png differ
diff --git a/compatibility/assets/data/graficos/4158.png b/compatibility/assets/data/graficos/4158.png
new file mode 100644
index 00000000..e1f7af19
Binary files /dev/null and b/compatibility/assets/data/graficos/4158.png differ
diff --git a/compatibility/assets/data/graficos/4159.png b/compatibility/assets/data/graficos/4159.png
new file mode 100644
index 00000000..32febc4c
Binary files /dev/null and b/compatibility/assets/data/graficos/4159.png differ
diff --git a/compatibility/assets/data/graficos/416.png b/compatibility/assets/data/graficos/416.png
new file mode 100644
index 00000000..a5135481
Binary files /dev/null and b/compatibility/assets/data/graficos/416.png differ
diff --git a/compatibility/assets/data/graficos/4160.png b/compatibility/assets/data/graficos/4160.png
new file mode 100644
index 00000000..a762be7d
Binary files /dev/null and b/compatibility/assets/data/graficos/4160.png differ
diff --git a/compatibility/assets/data/graficos/4161.png b/compatibility/assets/data/graficos/4161.png
new file mode 100644
index 00000000..a6b82a15
Binary files /dev/null and b/compatibility/assets/data/graficos/4161.png differ
diff --git a/compatibility/assets/data/graficos/4162.png b/compatibility/assets/data/graficos/4162.png
new file mode 100644
index 00000000..8f4ed55f
Binary files /dev/null and b/compatibility/assets/data/graficos/4162.png differ
diff --git a/compatibility/assets/data/graficos/4163.png b/compatibility/assets/data/graficos/4163.png
new file mode 100644
index 00000000..d72c7ecc
Binary files /dev/null and b/compatibility/assets/data/graficos/4163.png differ
diff --git a/compatibility/assets/data/graficos/4164.png b/compatibility/assets/data/graficos/4164.png
new file mode 100644
index 00000000..35a100e0
Binary files /dev/null and b/compatibility/assets/data/graficos/4164.png differ
diff --git a/compatibility/assets/data/graficos/4165.png b/compatibility/assets/data/graficos/4165.png
new file mode 100644
index 00000000..19246d92
Binary files /dev/null and b/compatibility/assets/data/graficos/4165.png differ
diff --git a/compatibility/assets/data/graficos/4166.png b/compatibility/assets/data/graficos/4166.png
new file mode 100644
index 00000000..4f77a013
Binary files /dev/null and b/compatibility/assets/data/graficos/4166.png differ
diff --git a/compatibility/assets/data/graficos/4167.png b/compatibility/assets/data/graficos/4167.png
new file mode 100644
index 00000000..24373b39
Binary files /dev/null and b/compatibility/assets/data/graficos/4167.png differ
diff --git a/compatibility/assets/data/graficos/4168.png b/compatibility/assets/data/graficos/4168.png
new file mode 100644
index 00000000..b35b4945
Binary files /dev/null and b/compatibility/assets/data/graficos/4168.png differ
diff --git a/compatibility/assets/data/graficos/4169.png b/compatibility/assets/data/graficos/4169.png
new file mode 100644
index 00000000..d9e5caaf
Binary files /dev/null and b/compatibility/assets/data/graficos/4169.png differ
diff --git a/compatibility/assets/data/graficos/417.png b/compatibility/assets/data/graficos/417.png
new file mode 100644
index 00000000..8f7a7d01
Binary files /dev/null and b/compatibility/assets/data/graficos/417.png differ
diff --git a/compatibility/assets/data/graficos/4170.png b/compatibility/assets/data/graficos/4170.png
new file mode 100644
index 00000000..7ada80a9
Binary files /dev/null and b/compatibility/assets/data/graficos/4170.png differ
diff --git a/compatibility/assets/data/graficos/418.png b/compatibility/assets/data/graficos/418.png
new file mode 100644
index 00000000..2b883262
Binary files /dev/null and b/compatibility/assets/data/graficos/418.png differ
diff --git a/compatibility/assets/data/graficos/419.png b/compatibility/assets/data/graficos/419.png
new file mode 100644
index 00000000..0f306459
Binary files /dev/null and b/compatibility/assets/data/graficos/419.png differ
diff --git a/compatibility/assets/data/graficos/42.png b/compatibility/assets/data/graficos/42.png
new file mode 100644
index 00000000..1276ad51
Binary files /dev/null and b/compatibility/assets/data/graficos/42.png differ
diff --git a/compatibility/assets/data/graficos/420.png b/compatibility/assets/data/graficos/420.png
new file mode 100644
index 00000000..76ae19f7
Binary files /dev/null and b/compatibility/assets/data/graficos/420.png differ
diff --git a/compatibility/assets/data/graficos/421.png b/compatibility/assets/data/graficos/421.png
new file mode 100644
index 00000000..5daa925a
Binary files /dev/null and b/compatibility/assets/data/graficos/421.png differ
diff --git a/compatibility/assets/data/graficos/422.png b/compatibility/assets/data/graficos/422.png
new file mode 100644
index 00000000..c36b5c1d
Binary files /dev/null and b/compatibility/assets/data/graficos/422.png differ
diff --git a/compatibility/assets/data/graficos/423.png b/compatibility/assets/data/graficos/423.png
new file mode 100644
index 00000000..298f2830
Binary files /dev/null and b/compatibility/assets/data/graficos/423.png differ
diff --git a/compatibility/assets/data/graficos/424.png b/compatibility/assets/data/graficos/424.png
new file mode 100644
index 00000000..f10320e4
Binary files /dev/null and b/compatibility/assets/data/graficos/424.png differ
diff --git a/compatibility/assets/data/graficos/425.png b/compatibility/assets/data/graficos/425.png
new file mode 100644
index 00000000..0c62b783
Binary files /dev/null and b/compatibility/assets/data/graficos/425.png differ
diff --git a/compatibility/assets/data/graficos/426.png b/compatibility/assets/data/graficos/426.png
new file mode 100644
index 00000000..dd3d9c0e
Binary files /dev/null and b/compatibility/assets/data/graficos/426.png differ
diff --git a/compatibility/assets/data/graficos/427.png b/compatibility/assets/data/graficos/427.png
new file mode 100644
index 00000000..ce356567
Binary files /dev/null and b/compatibility/assets/data/graficos/427.png differ
diff --git a/compatibility/assets/data/graficos/428.png b/compatibility/assets/data/graficos/428.png
new file mode 100644
index 00000000..b755b337
Binary files /dev/null and b/compatibility/assets/data/graficos/428.png differ
diff --git a/compatibility/assets/data/graficos/429.png b/compatibility/assets/data/graficos/429.png
new file mode 100644
index 00000000..e60ff52f
Binary files /dev/null and b/compatibility/assets/data/graficos/429.png differ
diff --git a/compatibility/assets/data/graficos/43.png b/compatibility/assets/data/graficos/43.png
new file mode 100644
index 00000000..3c36fb76
Binary files /dev/null and b/compatibility/assets/data/graficos/43.png differ
diff --git a/compatibility/assets/data/graficos/430.png b/compatibility/assets/data/graficos/430.png
new file mode 100644
index 00000000..d5033876
Binary files /dev/null and b/compatibility/assets/data/graficos/430.png differ
diff --git a/compatibility/assets/data/graficos/431.png b/compatibility/assets/data/graficos/431.png
new file mode 100644
index 00000000..d7396cf1
Binary files /dev/null and b/compatibility/assets/data/graficos/431.png differ
diff --git a/compatibility/assets/data/graficos/432.png b/compatibility/assets/data/graficos/432.png
new file mode 100644
index 00000000..df7c97de
Binary files /dev/null and b/compatibility/assets/data/graficos/432.png differ
diff --git a/compatibility/assets/data/graficos/433.png b/compatibility/assets/data/graficos/433.png
new file mode 100644
index 00000000..bed43174
Binary files /dev/null and b/compatibility/assets/data/graficos/433.png differ
diff --git a/compatibility/assets/data/graficos/434.png b/compatibility/assets/data/graficos/434.png
new file mode 100644
index 00000000..a6c4764e
Binary files /dev/null and b/compatibility/assets/data/graficos/434.png differ
diff --git a/compatibility/assets/data/graficos/435.png b/compatibility/assets/data/graficos/435.png
new file mode 100644
index 00000000..fb0adecd
Binary files /dev/null and b/compatibility/assets/data/graficos/435.png differ
diff --git a/compatibility/assets/data/graficos/436.png b/compatibility/assets/data/graficos/436.png
new file mode 100644
index 00000000..0d124abf
Binary files /dev/null and b/compatibility/assets/data/graficos/436.png differ
diff --git a/compatibility/assets/data/graficos/437.png b/compatibility/assets/data/graficos/437.png
new file mode 100644
index 00000000..dc305c1e
Binary files /dev/null and b/compatibility/assets/data/graficos/437.png differ
diff --git a/compatibility/assets/data/graficos/438.png b/compatibility/assets/data/graficos/438.png
new file mode 100644
index 00000000..546b551f
Binary files /dev/null and b/compatibility/assets/data/graficos/438.png differ
diff --git a/compatibility/assets/data/graficos/439.png b/compatibility/assets/data/graficos/439.png
new file mode 100644
index 00000000..4833529e
Binary files /dev/null and b/compatibility/assets/data/graficos/439.png differ
diff --git a/compatibility/assets/data/graficos/44.png b/compatibility/assets/data/graficos/44.png
new file mode 100644
index 00000000..1a7efa90
Binary files /dev/null and b/compatibility/assets/data/graficos/44.png differ
diff --git a/compatibility/assets/data/graficos/440.png b/compatibility/assets/data/graficos/440.png
new file mode 100644
index 00000000..e68bf9f3
Binary files /dev/null and b/compatibility/assets/data/graficos/440.png differ
diff --git a/compatibility/assets/data/graficos/441.png b/compatibility/assets/data/graficos/441.png
new file mode 100644
index 00000000..b079ff99
Binary files /dev/null and b/compatibility/assets/data/graficos/441.png differ
diff --git a/compatibility/assets/data/graficos/442.png b/compatibility/assets/data/graficos/442.png
new file mode 100644
index 00000000..4299f100
Binary files /dev/null and b/compatibility/assets/data/graficos/442.png differ
diff --git a/compatibility/assets/data/graficos/443.png b/compatibility/assets/data/graficos/443.png
new file mode 100644
index 00000000..b498032a
Binary files /dev/null and b/compatibility/assets/data/graficos/443.png differ
diff --git a/compatibility/assets/data/graficos/444.png b/compatibility/assets/data/graficos/444.png
new file mode 100644
index 00000000..e019405d
Binary files /dev/null and b/compatibility/assets/data/graficos/444.png differ
diff --git a/compatibility/assets/data/graficos/445.png b/compatibility/assets/data/graficos/445.png
new file mode 100644
index 00000000..a756e1de
Binary files /dev/null and b/compatibility/assets/data/graficos/445.png differ
diff --git a/compatibility/assets/data/graficos/446.png b/compatibility/assets/data/graficos/446.png
new file mode 100644
index 00000000..a786f02f
Binary files /dev/null and b/compatibility/assets/data/graficos/446.png differ
diff --git a/compatibility/assets/data/graficos/447.png b/compatibility/assets/data/graficos/447.png
new file mode 100644
index 00000000..14521428
Binary files /dev/null and b/compatibility/assets/data/graficos/447.png differ
diff --git a/compatibility/assets/data/graficos/448.png b/compatibility/assets/data/graficos/448.png
new file mode 100644
index 00000000..ef18cdc1
Binary files /dev/null and b/compatibility/assets/data/graficos/448.png differ
diff --git a/compatibility/assets/data/graficos/449.png b/compatibility/assets/data/graficos/449.png
new file mode 100644
index 00000000..0a3cd985
Binary files /dev/null and b/compatibility/assets/data/graficos/449.png differ
diff --git a/compatibility/assets/data/graficos/45.png b/compatibility/assets/data/graficos/45.png
new file mode 100644
index 00000000..8132da76
Binary files /dev/null and b/compatibility/assets/data/graficos/45.png differ
diff --git a/compatibility/assets/data/graficos/450.png b/compatibility/assets/data/graficos/450.png
new file mode 100644
index 00000000..98af142b
Binary files /dev/null and b/compatibility/assets/data/graficos/450.png differ
diff --git a/compatibility/assets/data/graficos/451.png b/compatibility/assets/data/graficos/451.png
new file mode 100644
index 00000000..fcafc689
Binary files /dev/null and b/compatibility/assets/data/graficos/451.png differ
diff --git a/compatibility/assets/data/graficos/452.png b/compatibility/assets/data/graficos/452.png
new file mode 100644
index 00000000..39dee97c
Binary files /dev/null and b/compatibility/assets/data/graficos/452.png differ
diff --git a/compatibility/assets/data/graficos/453.png b/compatibility/assets/data/graficos/453.png
new file mode 100644
index 00000000..5ec622d4
Binary files /dev/null and b/compatibility/assets/data/graficos/453.png differ
diff --git a/compatibility/assets/data/graficos/454.png b/compatibility/assets/data/graficos/454.png
new file mode 100644
index 00000000..129e8c71
Binary files /dev/null and b/compatibility/assets/data/graficos/454.png differ
diff --git a/compatibility/assets/data/graficos/455.png b/compatibility/assets/data/graficos/455.png
new file mode 100644
index 00000000..d1078c3f
Binary files /dev/null and b/compatibility/assets/data/graficos/455.png differ
diff --git a/compatibility/assets/data/graficos/456.png b/compatibility/assets/data/graficos/456.png
new file mode 100644
index 00000000..c76e833c
Binary files /dev/null and b/compatibility/assets/data/graficos/456.png differ
diff --git a/compatibility/assets/data/graficos/457.png b/compatibility/assets/data/graficos/457.png
new file mode 100644
index 00000000..c963fac0
Binary files /dev/null and b/compatibility/assets/data/graficos/457.png differ
diff --git a/compatibility/assets/data/graficos/458.png b/compatibility/assets/data/graficos/458.png
new file mode 100644
index 00000000..3f2ae208
Binary files /dev/null and b/compatibility/assets/data/graficos/458.png differ
diff --git a/compatibility/assets/data/graficos/459.png b/compatibility/assets/data/graficos/459.png
new file mode 100644
index 00000000..565ce392
Binary files /dev/null and b/compatibility/assets/data/graficos/459.png differ
diff --git a/compatibility/assets/data/graficos/46.png b/compatibility/assets/data/graficos/46.png
new file mode 100644
index 00000000..975f6e0d
Binary files /dev/null and b/compatibility/assets/data/graficos/46.png differ
diff --git a/compatibility/assets/data/graficos/460.png b/compatibility/assets/data/graficos/460.png
new file mode 100644
index 00000000..823a341b
Binary files /dev/null and b/compatibility/assets/data/graficos/460.png differ
diff --git a/compatibility/assets/data/graficos/461.png b/compatibility/assets/data/graficos/461.png
new file mode 100644
index 00000000..628e76c8
Binary files /dev/null and b/compatibility/assets/data/graficos/461.png differ
diff --git a/compatibility/assets/data/graficos/462.png b/compatibility/assets/data/graficos/462.png
new file mode 100644
index 00000000..15d3e712
Binary files /dev/null and b/compatibility/assets/data/graficos/462.png differ
diff --git a/compatibility/assets/data/graficos/463.png b/compatibility/assets/data/graficos/463.png
new file mode 100644
index 00000000..a23c1ad5
Binary files /dev/null and b/compatibility/assets/data/graficos/463.png differ
diff --git a/compatibility/assets/data/graficos/464.png b/compatibility/assets/data/graficos/464.png
new file mode 100644
index 00000000..dab34f33
Binary files /dev/null and b/compatibility/assets/data/graficos/464.png differ
diff --git a/compatibility/assets/data/graficos/465.png b/compatibility/assets/data/graficos/465.png
new file mode 100644
index 00000000..b5f09527
Binary files /dev/null and b/compatibility/assets/data/graficos/465.png differ
diff --git a/compatibility/assets/data/graficos/466.png b/compatibility/assets/data/graficos/466.png
new file mode 100644
index 00000000..6b81c2c2
Binary files /dev/null and b/compatibility/assets/data/graficos/466.png differ
diff --git a/compatibility/assets/data/graficos/467.png b/compatibility/assets/data/graficos/467.png
new file mode 100644
index 00000000..18838590
Binary files /dev/null and b/compatibility/assets/data/graficos/467.png differ
diff --git a/compatibility/assets/data/graficos/468.png b/compatibility/assets/data/graficos/468.png
new file mode 100644
index 00000000..3d62954c
Binary files /dev/null and b/compatibility/assets/data/graficos/468.png differ
diff --git a/compatibility/assets/data/graficos/469.png b/compatibility/assets/data/graficos/469.png
new file mode 100644
index 00000000..6b90366c
Binary files /dev/null and b/compatibility/assets/data/graficos/469.png differ
diff --git a/compatibility/assets/data/graficos/47.png b/compatibility/assets/data/graficos/47.png
new file mode 100644
index 00000000..141a4d6d
Binary files /dev/null and b/compatibility/assets/data/graficos/47.png differ
diff --git a/compatibility/assets/data/graficos/470.png b/compatibility/assets/data/graficos/470.png
new file mode 100644
index 00000000..134c1be8
Binary files /dev/null and b/compatibility/assets/data/graficos/470.png differ
diff --git a/compatibility/assets/data/graficos/471.png b/compatibility/assets/data/graficos/471.png
new file mode 100644
index 00000000..072878e1
Binary files /dev/null and b/compatibility/assets/data/graficos/471.png differ
diff --git a/compatibility/assets/data/graficos/472.png b/compatibility/assets/data/graficos/472.png
new file mode 100644
index 00000000..94111ec5
Binary files /dev/null and b/compatibility/assets/data/graficos/472.png differ
diff --git a/compatibility/assets/data/graficos/473.png b/compatibility/assets/data/graficos/473.png
new file mode 100644
index 00000000..45dab635
Binary files /dev/null and b/compatibility/assets/data/graficos/473.png differ
diff --git a/compatibility/assets/data/graficos/474.png b/compatibility/assets/data/graficos/474.png
new file mode 100644
index 00000000..0430df4a
Binary files /dev/null and b/compatibility/assets/data/graficos/474.png differ
diff --git a/compatibility/assets/data/graficos/475.png b/compatibility/assets/data/graficos/475.png
new file mode 100644
index 00000000..27209223
Binary files /dev/null and b/compatibility/assets/data/graficos/475.png differ
diff --git a/compatibility/assets/data/graficos/476.png b/compatibility/assets/data/graficos/476.png
new file mode 100644
index 00000000..500e0346
Binary files /dev/null and b/compatibility/assets/data/graficos/476.png differ
diff --git a/compatibility/assets/data/graficos/477.png b/compatibility/assets/data/graficos/477.png
new file mode 100644
index 00000000..e58aca93
Binary files /dev/null and b/compatibility/assets/data/graficos/477.png differ
diff --git a/compatibility/assets/data/graficos/478.png b/compatibility/assets/data/graficos/478.png
new file mode 100644
index 00000000..2f595a32
Binary files /dev/null and b/compatibility/assets/data/graficos/478.png differ
diff --git a/compatibility/assets/data/graficos/479.png b/compatibility/assets/data/graficos/479.png
new file mode 100644
index 00000000..17ac9bde
Binary files /dev/null and b/compatibility/assets/data/graficos/479.png differ
diff --git a/compatibility/assets/data/graficos/48.png b/compatibility/assets/data/graficos/48.png
new file mode 100644
index 00000000..1a10c065
Binary files /dev/null and b/compatibility/assets/data/graficos/48.png differ
diff --git a/compatibility/assets/data/graficos/480.png b/compatibility/assets/data/graficos/480.png
new file mode 100644
index 00000000..6d9ee0ec
Binary files /dev/null and b/compatibility/assets/data/graficos/480.png differ
diff --git a/compatibility/assets/data/graficos/481.png b/compatibility/assets/data/graficos/481.png
new file mode 100644
index 00000000..d14aa65a
Binary files /dev/null and b/compatibility/assets/data/graficos/481.png differ
diff --git a/compatibility/assets/data/graficos/482.png b/compatibility/assets/data/graficos/482.png
new file mode 100644
index 00000000..fca3f933
Binary files /dev/null and b/compatibility/assets/data/graficos/482.png differ
diff --git a/compatibility/assets/data/graficos/483.png b/compatibility/assets/data/graficos/483.png
new file mode 100644
index 00000000..ba17e709
Binary files /dev/null and b/compatibility/assets/data/graficos/483.png differ
diff --git a/compatibility/assets/data/graficos/484.png b/compatibility/assets/data/graficos/484.png
new file mode 100644
index 00000000..ac5d313b
Binary files /dev/null and b/compatibility/assets/data/graficos/484.png differ
diff --git a/compatibility/assets/data/graficos/485.png b/compatibility/assets/data/graficos/485.png
new file mode 100644
index 00000000..6dc20de9
Binary files /dev/null and b/compatibility/assets/data/graficos/485.png differ
diff --git a/compatibility/assets/data/graficos/486.png b/compatibility/assets/data/graficos/486.png
new file mode 100644
index 00000000..80d6f344
Binary files /dev/null and b/compatibility/assets/data/graficos/486.png differ
diff --git a/compatibility/assets/data/graficos/487.png b/compatibility/assets/data/graficos/487.png
new file mode 100644
index 00000000..c271007b
Binary files /dev/null and b/compatibility/assets/data/graficos/487.png differ
diff --git a/compatibility/assets/data/graficos/488.png b/compatibility/assets/data/graficos/488.png
new file mode 100644
index 00000000..94d5fc8c
Binary files /dev/null and b/compatibility/assets/data/graficos/488.png differ
diff --git a/compatibility/assets/data/graficos/489.png b/compatibility/assets/data/graficos/489.png
new file mode 100644
index 00000000..2ddf08fc
Binary files /dev/null and b/compatibility/assets/data/graficos/489.png differ
diff --git a/compatibility/assets/data/graficos/49.png b/compatibility/assets/data/graficos/49.png
new file mode 100644
index 00000000..4855c2e3
Binary files /dev/null and b/compatibility/assets/data/graficos/49.png differ
diff --git a/compatibility/assets/data/graficos/490.png b/compatibility/assets/data/graficos/490.png
new file mode 100644
index 00000000..21f92fe4
Binary files /dev/null and b/compatibility/assets/data/graficos/490.png differ
diff --git a/compatibility/assets/data/graficos/491.png b/compatibility/assets/data/graficos/491.png
new file mode 100644
index 00000000..5f143f3e
Binary files /dev/null and b/compatibility/assets/data/graficos/491.png differ
diff --git a/compatibility/assets/data/graficos/492.png b/compatibility/assets/data/graficos/492.png
new file mode 100644
index 00000000..4a7ecd8e
Binary files /dev/null and b/compatibility/assets/data/graficos/492.png differ
diff --git a/compatibility/assets/data/graficos/493.png b/compatibility/assets/data/graficos/493.png
new file mode 100644
index 00000000..8e32fce0
Binary files /dev/null and b/compatibility/assets/data/graficos/493.png differ
diff --git a/compatibility/assets/data/graficos/494.png b/compatibility/assets/data/graficos/494.png
new file mode 100644
index 00000000..48bd5b86
Binary files /dev/null and b/compatibility/assets/data/graficos/494.png differ
diff --git a/compatibility/assets/data/graficos/495.png b/compatibility/assets/data/graficos/495.png
new file mode 100644
index 00000000..61487457
Binary files /dev/null and b/compatibility/assets/data/graficos/495.png differ
diff --git a/compatibility/assets/data/graficos/496.png b/compatibility/assets/data/graficos/496.png
new file mode 100644
index 00000000..bddcc1ec
Binary files /dev/null and b/compatibility/assets/data/graficos/496.png differ
diff --git a/compatibility/assets/data/graficos/497.png b/compatibility/assets/data/graficos/497.png
new file mode 100644
index 00000000..0d0a59e5
Binary files /dev/null and b/compatibility/assets/data/graficos/497.png differ
diff --git a/compatibility/assets/data/graficos/498.png b/compatibility/assets/data/graficos/498.png
new file mode 100644
index 00000000..079d861e
Binary files /dev/null and b/compatibility/assets/data/graficos/498.png differ
diff --git a/compatibility/assets/data/graficos/499.png b/compatibility/assets/data/graficos/499.png
new file mode 100644
index 00000000..076947bb
Binary files /dev/null and b/compatibility/assets/data/graficos/499.png differ
diff --git a/compatibility/assets/data/graficos/5.png b/compatibility/assets/data/graficos/5.png
new file mode 100644
index 00000000..811b355a
Binary files /dev/null and b/compatibility/assets/data/graficos/5.png differ
diff --git a/compatibility/assets/data/graficos/50.png b/compatibility/assets/data/graficos/50.png
new file mode 100644
index 00000000..af255022
Binary files /dev/null and b/compatibility/assets/data/graficos/50.png differ
diff --git a/compatibility/assets/data/graficos/500.png b/compatibility/assets/data/graficos/500.png
new file mode 100644
index 00000000..8ab6c081
Binary files /dev/null and b/compatibility/assets/data/graficos/500.png differ
diff --git a/compatibility/assets/data/graficos/5000.png b/compatibility/assets/data/graficos/5000.png
new file mode 100644
index 00000000..7881ed45
Binary files /dev/null and b/compatibility/assets/data/graficos/5000.png differ
diff --git a/compatibility/assets/data/graficos/5001.png b/compatibility/assets/data/graficos/5001.png
new file mode 100644
index 00000000..a48e6e83
Binary files /dev/null and b/compatibility/assets/data/graficos/5001.png differ
diff --git a/compatibility/assets/data/graficos/5002.png b/compatibility/assets/data/graficos/5002.png
new file mode 100644
index 00000000..042954c4
Binary files /dev/null and b/compatibility/assets/data/graficos/5002.png differ
diff --git a/compatibility/assets/data/graficos/5003.png b/compatibility/assets/data/graficos/5003.png
new file mode 100644
index 00000000..03e31f32
Binary files /dev/null and b/compatibility/assets/data/graficos/5003.png differ
diff --git a/compatibility/assets/data/graficos/5004.png b/compatibility/assets/data/graficos/5004.png
new file mode 100644
index 00000000..9fa150d9
Binary files /dev/null and b/compatibility/assets/data/graficos/5004.png differ
diff --git a/compatibility/assets/data/graficos/5005.png b/compatibility/assets/data/graficos/5005.png
new file mode 100644
index 00000000..e00d46fe
Binary files /dev/null and b/compatibility/assets/data/graficos/5005.png differ
diff --git a/compatibility/assets/data/graficos/5006.png b/compatibility/assets/data/graficos/5006.png
new file mode 100644
index 00000000..a3bd4ff4
Binary files /dev/null and b/compatibility/assets/data/graficos/5006.png differ
diff --git a/compatibility/assets/data/graficos/5007.png b/compatibility/assets/data/graficos/5007.png
new file mode 100644
index 00000000..aa13462b
Binary files /dev/null and b/compatibility/assets/data/graficos/5007.png differ
diff --git a/compatibility/assets/data/graficos/5008.png b/compatibility/assets/data/graficos/5008.png
new file mode 100644
index 00000000..5da793a8
Binary files /dev/null and b/compatibility/assets/data/graficos/5008.png differ
diff --git a/compatibility/assets/data/graficos/5009.png b/compatibility/assets/data/graficos/5009.png
new file mode 100644
index 00000000..3888a5e9
Binary files /dev/null and b/compatibility/assets/data/graficos/5009.png differ
diff --git a/compatibility/assets/data/graficos/501.png b/compatibility/assets/data/graficos/501.png
new file mode 100644
index 00000000..b7fd7be8
Binary files /dev/null and b/compatibility/assets/data/graficos/501.png differ
diff --git a/compatibility/assets/data/graficos/5010.png b/compatibility/assets/data/graficos/5010.png
new file mode 100644
index 00000000..196ece6d
Binary files /dev/null and b/compatibility/assets/data/graficos/5010.png differ
diff --git a/compatibility/assets/data/graficos/5011.png b/compatibility/assets/data/graficos/5011.png
new file mode 100644
index 00000000..1fca3301
Binary files /dev/null and b/compatibility/assets/data/graficos/5011.png differ
diff --git a/compatibility/assets/data/graficos/5012.png b/compatibility/assets/data/graficos/5012.png
new file mode 100644
index 00000000..fafb6e80
Binary files /dev/null and b/compatibility/assets/data/graficos/5012.png differ
diff --git a/compatibility/assets/data/graficos/5013.png b/compatibility/assets/data/graficos/5013.png
new file mode 100644
index 00000000..96d57ba6
Binary files /dev/null and b/compatibility/assets/data/graficos/5013.png differ
diff --git a/compatibility/assets/data/graficos/5014.png b/compatibility/assets/data/graficos/5014.png
new file mode 100644
index 00000000..42563f76
Binary files /dev/null and b/compatibility/assets/data/graficos/5014.png differ
diff --git a/compatibility/assets/data/graficos/5015.png b/compatibility/assets/data/graficos/5015.png
new file mode 100644
index 00000000..1d1bd325
Binary files /dev/null and b/compatibility/assets/data/graficos/5015.png differ
diff --git a/compatibility/assets/data/graficos/5016.png b/compatibility/assets/data/graficos/5016.png
new file mode 100644
index 00000000..428bfbdd
Binary files /dev/null and b/compatibility/assets/data/graficos/5016.png differ
diff --git a/compatibility/assets/data/graficos/5017.png b/compatibility/assets/data/graficos/5017.png
new file mode 100644
index 00000000..ac8bd0e4
Binary files /dev/null and b/compatibility/assets/data/graficos/5017.png differ
diff --git a/compatibility/assets/data/graficos/5018.png b/compatibility/assets/data/graficos/5018.png
new file mode 100644
index 00000000..a1d1adfc
Binary files /dev/null and b/compatibility/assets/data/graficos/5018.png differ
diff --git a/compatibility/assets/data/graficos/5019.png b/compatibility/assets/data/graficos/5019.png
new file mode 100644
index 00000000..248a02fc
Binary files /dev/null and b/compatibility/assets/data/graficos/5019.png differ
diff --git a/compatibility/assets/data/graficos/502.png b/compatibility/assets/data/graficos/502.png
new file mode 100644
index 00000000..c5d4016f
Binary files /dev/null and b/compatibility/assets/data/graficos/502.png differ
diff --git a/compatibility/assets/data/graficos/5020.png b/compatibility/assets/data/graficos/5020.png
new file mode 100644
index 00000000..f02e12d6
Binary files /dev/null and b/compatibility/assets/data/graficos/5020.png differ
diff --git a/compatibility/assets/data/graficos/5021.png b/compatibility/assets/data/graficos/5021.png
new file mode 100644
index 00000000..af7b61ab
Binary files /dev/null and b/compatibility/assets/data/graficos/5021.png differ
diff --git a/compatibility/assets/data/graficos/5022.png b/compatibility/assets/data/graficos/5022.png
new file mode 100644
index 00000000..b5dcbd9a
Binary files /dev/null and b/compatibility/assets/data/graficos/5022.png differ
diff --git a/compatibility/assets/data/graficos/5023.png b/compatibility/assets/data/graficos/5023.png
new file mode 100644
index 00000000..129eaad6
Binary files /dev/null and b/compatibility/assets/data/graficos/5023.png differ
diff --git a/compatibility/assets/data/graficos/5024.png b/compatibility/assets/data/graficos/5024.png
new file mode 100644
index 00000000..842b90ec
Binary files /dev/null and b/compatibility/assets/data/graficos/5024.png differ
diff --git a/compatibility/assets/data/graficos/5025.png b/compatibility/assets/data/graficos/5025.png
new file mode 100644
index 00000000..184ef585
Binary files /dev/null and b/compatibility/assets/data/graficos/5025.png differ
diff --git a/compatibility/assets/data/graficos/5026.png b/compatibility/assets/data/graficos/5026.png
new file mode 100644
index 00000000..454290f7
Binary files /dev/null and b/compatibility/assets/data/graficos/5026.png differ
diff --git a/compatibility/assets/data/graficos/5027.png b/compatibility/assets/data/graficos/5027.png
new file mode 100644
index 00000000..edd0e897
Binary files /dev/null and b/compatibility/assets/data/graficos/5027.png differ
diff --git a/compatibility/assets/data/graficos/5028.png b/compatibility/assets/data/graficos/5028.png
new file mode 100644
index 00000000..c61e7e42
Binary files /dev/null and b/compatibility/assets/data/graficos/5028.png differ
diff --git a/compatibility/assets/data/graficos/5029.png b/compatibility/assets/data/graficos/5029.png
new file mode 100644
index 00000000..c40c0b27
Binary files /dev/null and b/compatibility/assets/data/graficos/5029.png differ
diff --git a/compatibility/assets/data/graficos/503.png b/compatibility/assets/data/graficos/503.png
new file mode 100644
index 00000000..78aa021d
Binary files /dev/null and b/compatibility/assets/data/graficos/503.png differ
diff --git a/compatibility/assets/data/graficos/5030.png b/compatibility/assets/data/graficos/5030.png
new file mode 100644
index 00000000..56799f89
Binary files /dev/null and b/compatibility/assets/data/graficos/5030.png differ
diff --git a/compatibility/assets/data/graficos/5031.png b/compatibility/assets/data/graficos/5031.png
new file mode 100644
index 00000000..2c110f19
Binary files /dev/null and b/compatibility/assets/data/graficos/5031.png differ
diff --git a/compatibility/assets/data/graficos/5032.png b/compatibility/assets/data/graficos/5032.png
new file mode 100644
index 00000000..d48decb9
Binary files /dev/null and b/compatibility/assets/data/graficos/5032.png differ
diff --git a/compatibility/assets/data/graficos/5033.png b/compatibility/assets/data/graficos/5033.png
new file mode 100644
index 00000000..4c262f8f
Binary files /dev/null and b/compatibility/assets/data/graficos/5033.png differ
diff --git a/compatibility/assets/data/graficos/5034.png b/compatibility/assets/data/graficos/5034.png
new file mode 100644
index 00000000..ce6e3e35
Binary files /dev/null and b/compatibility/assets/data/graficos/5034.png differ
diff --git a/compatibility/assets/data/graficos/5035.png b/compatibility/assets/data/graficos/5035.png
new file mode 100644
index 00000000..3f64f5b8
Binary files /dev/null and b/compatibility/assets/data/graficos/5035.png differ
diff --git a/compatibility/assets/data/graficos/5036.png b/compatibility/assets/data/graficos/5036.png
new file mode 100644
index 00000000..0d2a20b5
Binary files /dev/null and b/compatibility/assets/data/graficos/5036.png differ
diff --git a/compatibility/assets/data/graficos/5037.png b/compatibility/assets/data/graficos/5037.png
new file mode 100644
index 00000000..544d71e1
Binary files /dev/null and b/compatibility/assets/data/graficos/5037.png differ
diff --git a/compatibility/assets/data/graficos/5038.png b/compatibility/assets/data/graficos/5038.png
new file mode 100644
index 00000000..e5be13b1
Binary files /dev/null and b/compatibility/assets/data/graficos/5038.png differ
diff --git a/compatibility/assets/data/graficos/5039.png b/compatibility/assets/data/graficos/5039.png
new file mode 100644
index 00000000..8cd7b7d7
Binary files /dev/null and b/compatibility/assets/data/graficos/5039.png differ
diff --git a/compatibility/assets/data/graficos/504.png b/compatibility/assets/data/graficos/504.png
new file mode 100644
index 00000000..b676a045
Binary files /dev/null and b/compatibility/assets/data/graficos/504.png differ
diff --git a/compatibility/assets/data/graficos/5040.png b/compatibility/assets/data/graficos/5040.png
new file mode 100644
index 00000000..a5069927
Binary files /dev/null and b/compatibility/assets/data/graficos/5040.png differ
diff --git a/compatibility/assets/data/graficos/5041.png b/compatibility/assets/data/graficos/5041.png
new file mode 100644
index 00000000..79c2fc08
Binary files /dev/null and b/compatibility/assets/data/graficos/5041.png differ
diff --git a/compatibility/assets/data/graficos/505.png b/compatibility/assets/data/graficos/505.png
new file mode 100644
index 00000000..aa9ca6e0
Binary files /dev/null and b/compatibility/assets/data/graficos/505.png differ
diff --git a/compatibility/assets/data/graficos/506.png b/compatibility/assets/data/graficos/506.png
new file mode 100644
index 00000000..0f8eda6d
Binary files /dev/null and b/compatibility/assets/data/graficos/506.png differ
diff --git a/compatibility/assets/data/graficos/507.png b/compatibility/assets/data/graficos/507.png
new file mode 100644
index 00000000..4d2de67a
Binary files /dev/null and b/compatibility/assets/data/graficos/507.png differ
diff --git a/compatibility/assets/data/graficos/508.png b/compatibility/assets/data/graficos/508.png
new file mode 100644
index 00000000..a29e9975
Binary files /dev/null and b/compatibility/assets/data/graficos/508.png differ
diff --git a/compatibility/assets/data/graficos/509.png b/compatibility/assets/data/graficos/509.png
new file mode 100644
index 00000000..12c79c48
Binary files /dev/null and b/compatibility/assets/data/graficos/509.png differ
diff --git a/compatibility/assets/data/graficos/51.png b/compatibility/assets/data/graficos/51.png
new file mode 100644
index 00000000..2deedbde
Binary files /dev/null and b/compatibility/assets/data/graficos/51.png differ
diff --git a/compatibility/assets/data/graficos/510.png b/compatibility/assets/data/graficos/510.png
new file mode 100644
index 00000000..3716f707
Binary files /dev/null and b/compatibility/assets/data/graficos/510.png differ
diff --git a/compatibility/assets/data/graficos/511.png b/compatibility/assets/data/graficos/511.png
new file mode 100644
index 00000000..63ffa1a3
Binary files /dev/null and b/compatibility/assets/data/graficos/511.png differ
diff --git a/compatibility/assets/data/graficos/512.png b/compatibility/assets/data/graficos/512.png
new file mode 100644
index 00000000..2211f2c8
Binary files /dev/null and b/compatibility/assets/data/graficos/512.png differ
diff --git a/compatibility/assets/data/graficos/513.png b/compatibility/assets/data/graficos/513.png
new file mode 100644
index 00000000..d8ea90de
Binary files /dev/null and b/compatibility/assets/data/graficos/513.png differ
diff --git a/compatibility/assets/data/graficos/514.png b/compatibility/assets/data/graficos/514.png
new file mode 100644
index 00000000..de367ba1
Binary files /dev/null and b/compatibility/assets/data/graficos/514.png differ
diff --git a/compatibility/assets/data/graficos/515.png b/compatibility/assets/data/graficos/515.png
new file mode 100644
index 00000000..b2124ecd
Binary files /dev/null and b/compatibility/assets/data/graficos/515.png differ
diff --git a/compatibility/assets/data/graficos/516.png b/compatibility/assets/data/graficos/516.png
new file mode 100644
index 00000000..52365eb0
Binary files /dev/null and b/compatibility/assets/data/graficos/516.png differ
diff --git a/compatibility/assets/data/graficos/517.png b/compatibility/assets/data/graficos/517.png
new file mode 100644
index 00000000..f0c5d985
Binary files /dev/null and b/compatibility/assets/data/graficos/517.png differ
diff --git a/compatibility/assets/data/graficos/518.png b/compatibility/assets/data/graficos/518.png
new file mode 100644
index 00000000..9c1435ac
Binary files /dev/null and b/compatibility/assets/data/graficos/518.png differ
diff --git a/compatibility/assets/data/graficos/519.png b/compatibility/assets/data/graficos/519.png
new file mode 100644
index 00000000..fcf76356
Binary files /dev/null and b/compatibility/assets/data/graficos/519.png differ
diff --git a/compatibility/assets/data/graficos/52.png b/compatibility/assets/data/graficos/52.png
new file mode 100644
index 00000000..e01d0610
Binary files /dev/null and b/compatibility/assets/data/graficos/52.png differ
diff --git a/compatibility/assets/data/graficos/520.png b/compatibility/assets/data/graficos/520.png
new file mode 100644
index 00000000..c01f480f
Binary files /dev/null and b/compatibility/assets/data/graficos/520.png differ
diff --git a/compatibility/assets/data/graficos/521.png b/compatibility/assets/data/graficos/521.png
new file mode 100644
index 00000000..c79cb65b
Binary files /dev/null and b/compatibility/assets/data/graficos/521.png differ
diff --git a/compatibility/assets/data/graficos/522.png b/compatibility/assets/data/graficos/522.png
new file mode 100644
index 00000000..ae19db44
Binary files /dev/null and b/compatibility/assets/data/graficos/522.png differ
diff --git a/compatibility/assets/data/graficos/523.png b/compatibility/assets/data/graficos/523.png
new file mode 100644
index 00000000..ed1878f9
Binary files /dev/null and b/compatibility/assets/data/graficos/523.png differ
diff --git a/compatibility/assets/data/graficos/524.png b/compatibility/assets/data/graficos/524.png
new file mode 100644
index 00000000..484e3d47
Binary files /dev/null and b/compatibility/assets/data/graficos/524.png differ
diff --git a/compatibility/assets/data/graficos/525.png b/compatibility/assets/data/graficos/525.png
new file mode 100644
index 00000000..533318ed
Binary files /dev/null and b/compatibility/assets/data/graficos/525.png differ
diff --git a/compatibility/assets/data/graficos/526.png b/compatibility/assets/data/graficos/526.png
new file mode 100644
index 00000000..48f4d9f4
Binary files /dev/null and b/compatibility/assets/data/graficos/526.png differ
diff --git a/compatibility/assets/data/graficos/527.png b/compatibility/assets/data/graficos/527.png
new file mode 100644
index 00000000..0ec1add0
Binary files /dev/null and b/compatibility/assets/data/graficos/527.png differ
diff --git a/compatibility/assets/data/graficos/528.png b/compatibility/assets/data/graficos/528.png
new file mode 100644
index 00000000..96bdfd02
Binary files /dev/null and b/compatibility/assets/data/graficos/528.png differ
diff --git a/compatibility/assets/data/graficos/529.png b/compatibility/assets/data/graficos/529.png
new file mode 100644
index 00000000..f0956d6e
Binary files /dev/null and b/compatibility/assets/data/graficos/529.png differ
diff --git a/compatibility/assets/data/graficos/53.png b/compatibility/assets/data/graficos/53.png
new file mode 100644
index 00000000..6309ce59
Binary files /dev/null and b/compatibility/assets/data/graficos/53.png differ
diff --git a/compatibility/assets/data/graficos/530.png b/compatibility/assets/data/graficos/530.png
new file mode 100644
index 00000000..3e861ea2
Binary files /dev/null and b/compatibility/assets/data/graficos/530.png differ
diff --git a/compatibility/assets/data/graficos/531.png b/compatibility/assets/data/graficos/531.png
new file mode 100644
index 00000000..a5fffd8a
Binary files /dev/null and b/compatibility/assets/data/graficos/531.png differ
diff --git a/compatibility/assets/data/graficos/532.png b/compatibility/assets/data/graficos/532.png
new file mode 100644
index 00000000..e50ca609
Binary files /dev/null and b/compatibility/assets/data/graficos/532.png differ
diff --git a/compatibility/assets/data/graficos/533.png b/compatibility/assets/data/graficos/533.png
new file mode 100644
index 00000000..c4aa2752
Binary files /dev/null and b/compatibility/assets/data/graficos/533.png differ
diff --git a/compatibility/assets/data/graficos/534.png b/compatibility/assets/data/graficos/534.png
new file mode 100644
index 00000000..f6f2a0cb
Binary files /dev/null and b/compatibility/assets/data/graficos/534.png differ
diff --git a/compatibility/assets/data/graficos/535.png b/compatibility/assets/data/graficos/535.png
new file mode 100644
index 00000000..a6c6697e
Binary files /dev/null and b/compatibility/assets/data/graficos/535.png differ
diff --git a/compatibility/assets/data/graficos/536.png b/compatibility/assets/data/graficos/536.png
new file mode 100644
index 00000000..6a601a92
Binary files /dev/null and b/compatibility/assets/data/graficos/536.png differ
diff --git a/compatibility/assets/data/graficos/537.png b/compatibility/assets/data/graficos/537.png
new file mode 100644
index 00000000..342ea49b
Binary files /dev/null and b/compatibility/assets/data/graficos/537.png differ
diff --git a/compatibility/assets/data/graficos/538.png b/compatibility/assets/data/graficos/538.png
new file mode 100644
index 00000000..15138b64
Binary files /dev/null and b/compatibility/assets/data/graficos/538.png differ
diff --git a/compatibility/assets/data/graficos/539.png b/compatibility/assets/data/graficos/539.png
new file mode 100644
index 00000000..61507249
Binary files /dev/null and b/compatibility/assets/data/graficos/539.png differ
diff --git a/compatibility/assets/data/graficos/54.png b/compatibility/assets/data/graficos/54.png
new file mode 100644
index 00000000..02799a43
Binary files /dev/null and b/compatibility/assets/data/graficos/54.png differ
diff --git a/compatibility/assets/data/graficos/540.png b/compatibility/assets/data/graficos/540.png
new file mode 100644
index 00000000..63cb2efd
Binary files /dev/null and b/compatibility/assets/data/graficos/540.png differ
diff --git a/compatibility/assets/data/graficos/541.png b/compatibility/assets/data/graficos/541.png
new file mode 100644
index 00000000..ee9a345e
Binary files /dev/null and b/compatibility/assets/data/graficos/541.png differ
diff --git a/compatibility/assets/data/graficos/542.png b/compatibility/assets/data/graficos/542.png
new file mode 100644
index 00000000..4577864f
Binary files /dev/null and b/compatibility/assets/data/graficos/542.png differ
diff --git a/compatibility/assets/data/graficos/543.png b/compatibility/assets/data/graficos/543.png
new file mode 100644
index 00000000..20ff09ce
Binary files /dev/null and b/compatibility/assets/data/graficos/543.png differ
diff --git a/compatibility/assets/data/graficos/544.png b/compatibility/assets/data/graficos/544.png
new file mode 100644
index 00000000..e436c887
Binary files /dev/null and b/compatibility/assets/data/graficos/544.png differ
diff --git a/compatibility/assets/data/graficos/545.png b/compatibility/assets/data/graficos/545.png
new file mode 100644
index 00000000..13ce6327
Binary files /dev/null and b/compatibility/assets/data/graficos/545.png differ
diff --git a/compatibility/assets/data/graficos/546.png b/compatibility/assets/data/graficos/546.png
new file mode 100644
index 00000000..0924969e
Binary files /dev/null and b/compatibility/assets/data/graficos/546.png differ
diff --git a/compatibility/assets/data/graficos/547.png b/compatibility/assets/data/graficos/547.png
new file mode 100644
index 00000000..db2f1d9d
Binary files /dev/null and b/compatibility/assets/data/graficos/547.png differ
diff --git a/compatibility/assets/data/graficos/548.png b/compatibility/assets/data/graficos/548.png
new file mode 100644
index 00000000..3c1ed7cb
Binary files /dev/null and b/compatibility/assets/data/graficos/548.png differ
diff --git a/compatibility/assets/data/graficos/549.png b/compatibility/assets/data/graficos/549.png
new file mode 100644
index 00000000..34ca5fc0
Binary files /dev/null and b/compatibility/assets/data/graficos/549.png differ
diff --git a/compatibility/assets/data/graficos/55.png b/compatibility/assets/data/graficos/55.png
new file mode 100644
index 00000000..9df0082a
Binary files /dev/null and b/compatibility/assets/data/graficos/55.png differ
diff --git a/compatibility/assets/data/graficos/550.png b/compatibility/assets/data/graficos/550.png
new file mode 100644
index 00000000..bc900556
Binary files /dev/null and b/compatibility/assets/data/graficos/550.png differ
diff --git a/compatibility/assets/data/graficos/551.png b/compatibility/assets/data/graficos/551.png
new file mode 100644
index 00000000..603daa32
Binary files /dev/null and b/compatibility/assets/data/graficos/551.png differ
diff --git a/compatibility/assets/data/graficos/552.png b/compatibility/assets/data/graficos/552.png
new file mode 100644
index 00000000..5aeec86e
Binary files /dev/null and b/compatibility/assets/data/graficos/552.png differ
diff --git a/compatibility/assets/data/graficos/553.png b/compatibility/assets/data/graficos/553.png
new file mode 100644
index 00000000..c16a0d9f
Binary files /dev/null and b/compatibility/assets/data/graficos/553.png differ
diff --git a/compatibility/assets/data/graficos/554.png b/compatibility/assets/data/graficos/554.png
new file mode 100644
index 00000000..d02e9f4e
Binary files /dev/null and b/compatibility/assets/data/graficos/554.png differ
diff --git a/compatibility/assets/data/graficos/555.png b/compatibility/assets/data/graficos/555.png
new file mode 100644
index 00000000..7d2e09c8
Binary files /dev/null and b/compatibility/assets/data/graficos/555.png differ
diff --git a/compatibility/assets/data/graficos/556.png b/compatibility/assets/data/graficos/556.png
new file mode 100644
index 00000000..5405b18d
Binary files /dev/null and b/compatibility/assets/data/graficos/556.png differ
diff --git a/compatibility/assets/data/graficos/557.png b/compatibility/assets/data/graficos/557.png
new file mode 100644
index 00000000..89250706
Binary files /dev/null and b/compatibility/assets/data/graficos/557.png differ
diff --git a/compatibility/assets/data/graficos/558.png b/compatibility/assets/data/graficos/558.png
new file mode 100644
index 00000000..c0d20a20
Binary files /dev/null and b/compatibility/assets/data/graficos/558.png differ
diff --git a/compatibility/assets/data/graficos/559.png b/compatibility/assets/data/graficos/559.png
new file mode 100644
index 00000000..02dc30df
Binary files /dev/null and b/compatibility/assets/data/graficos/559.png differ
diff --git a/compatibility/assets/data/graficos/56.png b/compatibility/assets/data/graficos/56.png
new file mode 100644
index 00000000..14e21967
Binary files /dev/null and b/compatibility/assets/data/graficos/56.png differ
diff --git a/compatibility/assets/data/graficos/560.png b/compatibility/assets/data/graficos/560.png
new file mode 100644
index 00000000..8cedb3d7
Binary files /dev/null and b/compatibility/assets/data/graficos/560.png differ
diff --git a/compatibility/assets/data/graficos/561.png b/compatibility/assets/data/graficos/561.png
new file mode 100644
index 00000000..02799a43
Binary files /dev/null and b/compatibility/assets/data/graficos/561.png differ
diff --git a/compatibility/assets/data/graficos/562.png b/compatibility/assets/data/graficos/562.png
new file mode 100644
index 00000000..6429e6ae
Binary files /dev/null and b/compatibility/assets/data/graficos/562.png differ
diff --git a/compatibility/assets/data/graficos/563.png b/compatibility/assets/data/graficos/563.png
new file mode 100644
index 00000000..4ee1fec0
Binary files /dev/null and b/compatibility/assets/data/graficos/563.png differ
diff --git a/compatibility/assets/data/graficos/564.png b/compatibility/assets/data/graficos/564.png
new file mode 100644
index 00000000..bb0bdd30
Binary files /dev/null and b/compatibility/assets/data/graficos/564.png differ
diff --git a/compatibility/assets/data/graficos/565.png b/compatibility/assets/data/graficos/565.png
new file mode 100644
index 00000000..fa7459a1
Binary files /dev/null and b/compatibility/assets/data/graficos/565.png differ
diff --git a/compatibility/assets/data/graficos/566.png b/compatibility/assets/data/graficos/566.png
new file mode 100644
index 00000000..3e5abb47
Binary files /dev/null and b/compatibility/assets/data/graficos/566.png differ
diff --git a/compatibility/assets/data/graficos/567.png b/compatibility/assets/data/graficos/567.png
new file mode 100644
index 00000000..a26bc61b
Binary files /dev/null and b/compatibility/assets/data/graficos/567.png differ
diff --git a/compatibility/assets/data/graficos/568.png b/compatibility/assets/data/graficos/568.png
new file mode 100644
index 00000000..f45c093e
Binary files /dev/null and b/compatibility/assets/data/graficos/568.png differ
diff --git a/compatibility/assets/data/graficos/569.png b/compatibility/assets/data/graficos/569.png
new file mode 100644
index 00000000..d86a58cd
Binary files /dev/null and b/compatibility/assets/data/graficos/569.png differ
diff --git a/compatibility/assets/data/graficos/57.png b/compatibility/assets/data/graficos/57.png
new file mode 100644
index 00000000..ad3644df
Binary files /dev/null and b/compatibility/assets/data/graficos/57.png differ
diff --git a/compatibility/assets/data/graficos/570.png b/compatibility/assets/data/graficos/570.png
new file mode 100644
index 00000000..8f3e93e2
Binary files /dev/null and b/compatibility/assets/data/graficos/570.png differ
diff --git a/compatibility/assets/data/graficos/571.png b/compatibility/assets/data/graficos/571.png
new file mode 100644
index 00000000..c3d90532
Binary files /dev/null and b/compatibility/assets/data/graficos/571.png differ
diff --git a/compatibility/assets/data/graficos/572.png b/compatibility/assets/data/graficos/572.png
new file mode 100644
index 00000000..84f7ab42
Binary files /dev/null and b/compatibility/assets/data/graficos/572.png differ
diff --git a/compatibility/assets/data/graficos/573.png b/compatibility/assets/data/graficos/573.png
new file mode 100644
index 00000000..d1a6df6b
Binary files /dev/null and b/compatibility/assets/data/graficos/573.png differ
diff --git a/compatibility/assets/data/graficos/574.png b/compatibility/assets/data/graficos/574.png
new file mode 100644
index 00000000..66366dee
Binary files /dev/null and b/compatibility/assets/data/graficos/574.png differ
diff --git a/compatibility/assets/data/graficos/575.png b/compatibility/assets/data/graficos/575.png
new file mode 100644
index 00000000..fb8e23b0
Binary files /dev/null and b/compatibility/assets/data/graficos/575.png differ
diff --git a/compatibility/assets/data/graficos/576.png b/compatibility/assets/data/graficos/576.png
new file mode 100644
index 00000000..bfe1c241
Binary files /dev/null and b/compatibility/assets/data/graficos/576.png differ
diff --git a/compatibility/assets/data/graficos/577.png b/compatibility/assets/data/graficos/577.png
new file mode 100644
index 00000000..6aad3416
Binary files /dev/null and b/compatibility/assets/data/graficos/577.png differ
diff --git a/compatibility/assets/data/graficos/578.png b/compatibility/assets/data/graficos/578.png
new file mode 100644
index 00000000..787b63ed
Binary files /dev/null and b/compatibility/assets/data/graficos/578.png differ
diff --git a/compatibility/assets/data/graficos/579.png b/compatibility/assets/data/graficos/579.png
new file mode 100644
index 00000000..145dd29b
Binary files /dev/null and b/compatibility/assets/data/graficos/579.png differ
diff --git a/compatibility/assets/data/graficos/58.png b/compatibility/assets/data/graficos/58.png
new file mode 100644
index 00000000..7134be9b
Binary files /dev/null and b/compatibility/assets/data/graficos/58.png differ
diff --git a/compatibility/assets/data/graficos/580.png b/compatibility/assets/data/graficos/580.png
new file mode 100644
index 00000000..e9063b73
Binary files /dev/null and b/compatibility/assets/data/graficos/580.png differ
diff --git a/compatibility/assets/data/graficos/581.png b/compatibility/assets/data/graficos/581.png
new file mode 100644
index 00000000..bc413edb
Binary files /dev/null and b/compatibility/assets/data/graficos/581.png differ
diff --git a/compatibility/assets/data/graficos/582.png b/compatibility/assets/data/graficos/582.png
new file mode 100644
index 00000000..1dbbd42f
Binary files /dev/null and b/compatibility/assets/data/graficos/582.png differ
diff --git a/compatibility/assets/data/graficos/583.png b/compatibility/assets/data/graficos/583.png
new file mode 100644
index 00000000..bb4e1e7e
Binary files /dev/null and b/compatibility/assets/data/graficos/583.png differ
diff --git a/compatibility/assets/data/graficos/584.png b/compatibility/assets/data/graficos/584.png
new file mode 100644
index 00000000..8baf5587
Binary files /dev/null and b/compatibility/assets/data/graficos/584.png differ
diff --git a/compatibility/assets/data/graficos/585.png b/compatibility/assets/data/graficos/585.png
new file mode 100644
index 00000000..24d8c5b6
Binary files /dev/null and b/compatibility/assets/data/graficos/585.png differ
diff --git a/compatibility/assets/data/graficos/586.png b/compatibility/assets/data/graficos/586.png
new file mode 100644
index 00000000..68875323
Binary files /dev/null and b/compatibility/assets/data/graficos/586.png differ
diff --git a/compatibility/assets/data/graficos/587.png b/compatibility/assets/data/graficos/587.png
new file mode 100644
index 00000000..f24b79ce
Binary files /dev/null and b/compatibility/assets/data/graficos/587.png differ
diff --git a/compatibility/assets/data/graficos/588.png b/compatibility/assets/data/graficos/588.png
new file mode 100644
index 00000000..688c7f99
Binary files /dev/null and b/compatibility/assets/data/graficos/588.png differ
diff --git a/compatibility/assets/data/graficos/589.png b/compatibility/assets/data/graficos/589.png
new file mode 100644
index 00000000..40dc5f06
Binary files /dev/null and b/compatibility/assets/data/graficos/589.png differ
diff --git a/compatibility/assets/data/graficos/59.png b/compatibility/assets/data/graficos/59.png
new file mode 100644
index 00000000..642ac889
Binary files /dev/null and b/compatibility/assets/data/graficos/59.png differ
diff --git a/compatibility/assets/data/graficos/590.png b/compatibility/assets/data/graficos/590.png
new file mode 100644
index 00000000..273654fd
Binary files /dev/null and b/compatibility/assets/data/graficos/590.png differ
diff --git a/compatibility/assets/data/graficos/591.png b/compatibility/assets/data/graficos/591.png
new file mode 100644
index 00000000..6b69d426
Binary files /dev/null and b/compatibility/assets/data/graficos/591.png differ
diff --git a/compatibility/assets/data/graficos/592.png b/compatibility/assets/data/graficos/592.png
new file mode 100644
index 00000000..3e6c4257
Binary files /dev/null and b/compatibility/assets/data/graficos/592.png differ
diff --git a/compatibility/assets/data/graficos/593.png b/compatibility/assets/data/graficos/593.png
new file mode 100644
index 00000000..5d325275
Binary files /dev/null and b/compatibility/assets/data/graficos/593.png differ
diff --git a/compatibility/assets/data/graficos/594.png b/compatibility/assets/data/graficos/594.png
new file mode 100644
index 00000000..43a4c6d3
Binary files /dev/null and b/compatibility/assets/data/graficos/594.png differ
diff --git a/compatibility/assets/data/graficos/595.png b/compatibility/assets/data/graficos/595.png
new file mode 100644
index 00000000..47607d55
Binary files /dev/null and b/compatibility/assets/data/graficos/595.png differ
diff --git a/compatibility/assets/data/graficos/596.png b/compatibility/assets/data/graficos/596.png
new file mode 100644
index 00000000..2b66948f
Binary files /dev/null and b/compatibility/assets/data/graficos/596.png differ
diff --git a/compatibility/assets/data/graficos/597.png b/compatibility/assets/data/graficos/597.png
new file mode 100644
index 00000000..3d5a57a9
Binary files /dev/null and b/compatibility/assets/data/graficos/597.png differ
diff --git a/compatibility/assets/data/graficos/598.png b/compatibility/assets/data/graficos/598.png
new file mode 100644
index 00000000..3e027f40
Binary files /dev/null and b/compatibility/assets/data/graficos/598.png differ
diff --git a/compatibility/assets/data/graficos/599.png b/compatibility/assets/data/graficos/599.png
new file mode 100644
index 00000000..98d4bcfc
Binary files /dev/null and b/compatibility/assets/data/graficos/599.png differ
diff --git a/compatibility/assets/data/graficos/6.png b/compatibility/assets/data/graficos/6.png
new file mode 100644
index 00000000..8fcdb491
Binary files /dev/null and b/compatibility/assets/data/graficos/6.png differ
diff --git a/compatibility/assets/data/graficos/60.png b/compatibility/assets/data/graficos/60.png
new file mode 100644
index 00000000..57940bf1
Binary files /dev/null and b/compatibility/assets/data/graficos/60.png differ
diff --git a/compatibility/assets/data/graficos/600.png b/compatibility/assets/data/graficos/600.png
new file mode 100644
index 00000000..4f580ad8
Binary files /dev/null and b/compatibility/assets/data/graficos/600.png differ
diff --git a/compatibility/assets/data/graficos/6000.png b/compatibility/assets/data/graficos/6000.png
new file mode 100644
index 00000000..cd42efb2
Binary files /dev/null and b/compatibility/assets/data/graficos/6000.png differ
diff --git a/compatibility/assets/data/graficos/6001.png b/compatibility/assets/data/graficos/6001.png
new file mode 100644
index 00000000..9266c564
Binary files /dev/null and b/compatibility/assets/data/graficos/6001.png differ
diff --git a/compatibility/assets/data/graficos/6002.png b/compatibility/assets/data/graficos/6002.png
new file mode 100644
index 00000000..314421c6
Binary files /dev/null and b/compatibility/assets/data/graficos/6002.png differ
diff --git a/compatibility/assets/data/graficos/6003.png b/compatibility/assets/data/graficos/6003.png
new file mode 100644
index 00000000..64234eb3
Binary files /dev/null and b/compatibility/assets/data/graficos/6003.png differ
diff --git a/compatibility/assets/data/graficos/6004.png b/compatibility/assets/data/graficos/6004.png
new file mode 100644
index 00000000..3c4a346a
Binary files /dev/null and b/compatibility/assets/data/graficos/6004.png differ
diff --git a/compatibility/assets/data/graficos/6005.png b/compatibility/assets/data/graficos/6005.png
new file mode 100644
index 00000000..463bf9fd
Binary files /dev/null and b/compatibility/assets/data/graficos/6005.png differ
diff --git a/compatibility/assets/data/graficos/6006.png b/compatibility/assets/data/graficos/6006.png
new file mode 100644
index 00000000..e8d8e66b
Binary files /dev/null and b/compatibility/assets/data/graficos/6006.png differ
diff --git a/compatibility/assets/data/graficos/6007.png b/compatibility/assets/data/graficos/6007.png
new file mode 100644
index 00000000..12eb0e69
Binary files /dev/null and b/compatibility/assets/data/graficos/6007.png differ
diff --git a/compatibility/assets/data/graficos/6008.png b/compatibility/assets/data/graficos/6008.png
new file mode 100644
index 00000000..4502f7f5
Binary files /dev/null and b/compatibility/assets/data/graficos/6008.png differ
diff --git a/compatibility/assets/data/graficos/6009.png b/compatibility/assets/data/graficos/6009.png
new file mode 100644
index 00000000..10f2b5eb
Binary files /dev/null and b/compatibility/assets/data/graficos/6009.png differ
diff --git a/compatibility/assets/data/graficos/601.png b/compatibility/assets/data/graficos/601.png
new file mode 100644
index 00000000..20ba0513
Binary files /dev/null and b/compatibility/assets/data/graficos/601.png differ
diff --git a/compatibility/assets/data/graficos/6010.png b/compatibility/assets/data/graficos/6010.png
new file mode 100644
index 00000000..8db302c4
Binary files /dev/null and b/compatibility/assets/data/graficos/6010.png differ
diff --git a/compatibility/assets/data/graficos/6011.png b/compatibility/assets/data/graficos/6011.png
new file mode 100644
index 00000000..500411ab
Binary files /dev/null and b/compatibility/assets/data/graficos/6011.png differ
diff --git a/compatibility/assets/data/graficos/6012.png b/compatibility/assets/data/graficos/6012.png
new file mode 100644
index 00000000..fd9b856d
Binary files /dev/null and b/compatibility/assets/data/graficos/6012.png differ
diff --git a/compatibility/assets/data/graficos/6013.png b/compatibility/assets/data/graficos/6013.png
new file mode 100644
index 00000000..43fd1989
Binary files /dev/null and b/compatibility/assets/data/graficos/6013.png differ
diff --git a/compatibility/assets/data/graficos/6014.png b/compatibility/assets/data/graficos/6014.png
new file mode 100644
index 00000000..ffbc3356
Binary files /dev/null and b/compatibility/assets/data/graficos/6014.png differ
diff --git a/compatibility/assets/data/graficos/6015.png b/compatibility/assets/data/graficos/6015.png
new file mode 100644
index 00000000..3a9da553
Binary files /dev/null and b/compatibility/assets/data/graficos/6015.png differ
diff --git a/compatibility/assets/data/graficos/6016.png b/compatibility/assets/data/graficos/6016.png
new file mode 100644
index 00000000..69f112b9
Binary files /dev/null and b/compatibility/assets/data/graficos/6016.png differ
diff --git a/compatibility/assets/data/graficos/6017.png b/compatibility/assets/data/graficos/6017.png
new file mode 100644
index 00000000..517586f9
Binary files /dev/null and b/compatibility/assets/data/graficos/6017.png differ
diff --git a/compatibility/assets/data/graficos/6018.png b/compatibility/assets/data/graficos/6018.png
new file mode 100644
index 00000000..92a9adf6
Binary files /dev/null and b/compatibility/assets/data/graficos/6018.png differ
diff --git a/compatibility/assets/data/graficos/6019.png b/compatibility/assets/data/graficos/6019.png
new file mode 100644
index 00000000..fe983d2d
Binary files /dev/null and b/compatibility/assets/data/graficos/6019.png differ
diff --git a/compatibility/assets/data/graficos/602.png b/compatibility/assets/data/graficos/602.png
new file mode 100644
index 00000000..d2cbb7fd
Binary files /dev/null and b/compatibility/assets/data/graficos/602.png differ
diff --git a/compatibility/assets/data/graficos/6020.png b/compatibility/assets/data/graficos/6020.png
new file mode 100644
index 00000000..c5c2e265
Binary files /dev/null and b/compatibility/assets/data/graficos/6020.png differ
diff --git a/compatibility/assets/data/graficos/6021.png b/compatibility/assets/data/graficos/6021.png
new file mode 100644
index 00000000..9a583892
Binary files /dev/null and b/compatibility/assets/data/graficos/6021.png differ
diff --git a/compatibility/assets/data/graficos/6022.png b/compatibility/assets/data/graficos/6022.png
new file mode 100644
index 00000000..3a6617fa
Binary files /dev/null and b/compatibility/assets/data/graficos/6022.png differ
diff --git a/compatibility/assets/data/graficos/6023.png b/compatibility/assets/data/graficos/6023.png
new file mode 100644
index 00000000..8b3cf817
Binary files /dev/null and b/compatibility/assets/data/graficos/6023.png differ
diff --git a/compatibility/assets/data/graficos/6024.png b/compatibility/assets/data/graficos/6024.png
new file mode 100644
index 00000000..47cfe696
Binary files /dev/null and b/compatibility/assets/data/graficos/6024.png differ
diff --git a/compatibility/assets/data/graficos/6025.png b/compatibility/assets/data/graficos/6025.png
new file mode 100644
index 00000000..71c61531
Binary files /dev/null and b/compatibility/assets/data/graficos/6025.png differ
diff --git a/compatibility/assets/data/graficos/6026.png b/compatibility/assets/data/graficos/6026.png
new file mode 100644
index 00000000..9cd1d043
Binary files /dev/null and b/compatibility/assets/data/graficos/6026.png differ
diff --git a/compatibility/assets/data/graficos/6027.png b/compatibility/assets/data/graficos/6027.png
new file mode 100644
index 00000000..2fdcc0d2
Binary files /dev/null and b/compatibility/assets/data/graficos/6027.png differ
diff --git a/compatibility/assets/data/graficos/6028.png b/compatibility/assets/data/graficos/6028.png
new file mode 100644
index 00000000..473b92a3
Binary files /dev/null and b/compatibility/assets/data/graficos/6028.png differ
diff --git a/compatibility/assets/data/graficos/6029.png b/compatibility/assets/data/graficos/6029.png
new file mode 100644
index 00000000..a2b9e262
Binary files /dev/null and b/compatibility/assets/data/graficos/6029.png differ
diff --git a/compatibility/assets/data/graficos/603.png b/compatibility/assets/data/graficos/603.png
new file mode 100644
index 00000000..dd259a28
Binary files /dev/null and b/compatibility/assets/data/graficos/603.png differ
diff --git a/compatibility/assets/data/graficos/6030.png b/compatibility/assets/data/graficos/6030.png
new file mode 100644
index 00000000..e6e459ce
Binary files /dev/null and b/compatibility/assets/data/graficos/6030.png differ
diff --git a/compatibility/assets/data/graficos/6031.png b/compatibility/assets/data/graficos/6031.png
new file mode 100644
index 00000000..96065d6c
Binary files /dev/null and b/compatibility/assets/data/graficos/6031.png differ
diff --git a/compatibility/assets/data/graficos/6032.png b/compatibility/assets/data/graficos/6032.png
new file mode 100644
index 00000000..8fae4549
Binary files /dev/null and b/compatibility/assets/data/graficos/6032.png differ
diff --git a/compatibility/assets/data/graficos/6033.png b/compatibility/assets/data/graficos/6033.png
new file mode 100644
index 00000000..b0816e41
Binary files /dev/null and b/compatibility/assets/data/graficos/6033.png differ
diff --git a/compatibility/assets/data/graficos/6034.png b/compatibility/assets/data/graficos/6034.png
new file mode 100644
index 00000000..019d4137
Binary files /dev/null and b/compatibility/assets/data/graficos/6034.png differ
diff --git a/compatibility/assets/data/graficos/6035.png b/compatibility/assets/data/graficos/6035.png
new file mode 100644
index 00000000..bb0dfc0e
Binary files /dev/null and b/compatibility/assets/data/graficos/6035.png differ
diff --git a/compatibility/assets/data/graficos/6036.png b/compatibility/assets/data/graficos/6036.png
new file mode 100644
index 00000000..0d305f9e
Binary files /dev/null and b/compatibility/assets/data/graficos/6036.png differ
diff --git a/compatibility/assets/data/graficos/6037.png b/compatibility/assets/data/graficos/6037.png
new file mode 100644
index 00000000..97b372ee
Binary files /dev/null and b/compatibility/assets/data/graficos/6037.png differ
diff --git a/compatibility/assets/data/graficos/6038.png b/compatibility/assets/data/graficos/6038.png
new file mode 100644
index 00000000..b0775beb
Binary files /dev/null and b/compatibility/assets/data/graficos/6038.png differ
diff --git a/compatibility/assets/data/graficos/6039.png b/compatibility/assets/data/graficos/6039.png
new file mode 100644
index 00000000..d1f04fde
Binary files /dev/null and b/compatibility/assets/data/graficos/6039.png differ
diff --git a/compatibility/assets/data/graficos/604.png b/compatibility/assets/data/graficos/604.png
new file mode 100644
index 00000000..8d3a39b5
Binary files /dev/null and b/compatibility/assets/data/graficos/604.png differ
diff --git a/compatibility/assets/data/graficos/6040.png b/compatibility/assets/data/graficos/6040.png
new file mode 100644
index 00000000..a664d4d1
Binary files /dev/null and b/compatibility/assets/data/graficos/6040.png differ
diff --git a/compatibility/assets/data/graficos/6041.png b/compatibility/assets/data/graficos/6041.png
new file mode 100644
index 00000000..bcb47007
Binary files /dev/null and b/compatibility/assets/data/graficos/6041.png differ
diff --git a/compatibility/assets/data/graficos/6042.png b/compatibility/assets/data/graficos/6042.png
new file mode 100644
index 00000000..4b8ffd51
Binary files /dev/null and b/compatibility/assets/data/graficos/6042.png differ
diff --git a/compatibility/assets/data/graficos/6043.png b/compatibility/assets/data/graficos/6043.png
new file mode 100644
index 00000000..f176b3a4
Binary files /dev/null and b/compatibility/assets/data/graficos/6043.png differ
diff --git a/compatibility/assets/data/graficos/6044.png b/compatibility/assets/data/graficos/6044.png
new file mode 100644
index 00000000..7bc76260
Binary files /dev/null and b/compatibility/assets/data/graficos/6044.png differ
diff --git a/compatibility/assets/data/graficos/6045.png b/compatibility/assets/data/graficos/6045.png
new file mode 100644
index 00000000..2ad89e4a
Binary files /dev/null and b/compatibility/assets/data/graficos/6045.png differ
diff --git a/compatibility/assets/data/graficos/6046.png b/compatibility/assets/data/graficos/6046.png
new file mode 100644
index 00000000..bb83d3db
Binary files /dev/null and b/compatibility/assets/data/graficos/6046.png differ
diff --git a/compatibility/assets/data/graficos/6047.png b/compatibility/assets/data/graficos/6047.png
new file mode 100644
index 00000000..b9aae994
Binary files /dev/null and b/compatibility/assets/data/graficos/6047.png differ
diff --git a/compatibility/assets/data/graficos/6048.png b/compatibility/assets/data/graficos/6048.png
new file mode 100644
index 00000000..9dd7c663
Binary files /dev/null and b/compatibility/assets/data/graficos/6048.png differ
diff --git a/compatibility/assets/data/graficos/6049.png b/compatibility/assets/data/graficos/6049.png
new file mode 100644
index 00000000..61e343df
Binary files /dev/null and b/compatibility/assets/data/graficos/6049.png differ
diff --git a/compatibility/assets/data/graficos/605.png b/compatibility/assets/data/graficos/605.png
new file mode 100644
index 00000000..8e1ddccc
Binary files /dev/null and b/compatibility/assets/data/graficos/605.png differ
diff --git a/compatibility/assets/data/graficos/6050.png b/compatibility/assets/data/graficos/6050.png
new file mode 100644
index 00000000..ee5dbb4a
Binary files /dev/null and b/compatibility/assets/data/graficos/6050.png differ
diff --git a/compatibility/assets/data/graficos/6051.png b/compatibility/assets/data/graficos/6051.png
new file mode 100644
index 00000000..245a5749
Binary files /dev/null and b/compatibility/assets/data/graficos/6051.png differ
diff --git a/compatibility/assets/data/graficos/6052.png b/compatibility/assets/data/graficos/6052.png
new file mode 100644
index 00000000..460705f2
Binary files /dev/null and b/compatibility/assets/data/graficos/6052.png differ
diff --git a/compatibility/assets/data/graficos/6053.png b/compatibility/assets/data/graficos/6053.png
new file mode 100644
index 00000000..ef9066cc
Binary files /dev/null and b/compatibility/assets/data/graficos/6053.png differ
diff --git a/compatibility/assets/data/graficos/6054.png b/compatibility/assets/data/graficos/6054.png
new file mode 100644
index 00000000..cce5af02
Binary files /dev/null and b/compatibility/assets/data/graficos/6054.png differ
diff --git a/compatibility/assets/data/graficos/6055.png b/compatibility/assets/data/graficos/6055.png
new file mode 100644
index 00000000..6177109e
Binary files /dev/null and b/compatibility/assets/data/graficos/6055.png differ
diff --git a/compatibility/assets/data/graficos/6056.png b/compatibility/assets/data/graficos/6056.png
new file mode 100644
index 00000000..324a9ada
Binary files /dev/null and b/compatibility/assets/data/graficos/6056.png differ
diff --git a/compatibility/assets/data/graficos/6057.png b/compatibility/assets/data/graficos/6057.png
new file mode 100644
index 00000000..73c8f05d
Binary files /dev/null and b/compatibility/assets/data/graficos/6057.png differ
diff --git a/compatibility/assets/data/graficos/6058.png b/compatibility/assets/data/graficos/6058.png
new file mode 100644
index 00000000..b09fe1d9
Binary files /dev/null and b/compatibility/assets/data/graficos/6058.png differ
diff --git a/compatibility/assets/data/graficos/6059.png b/compatibility/assets/data/graficos/6059.png
new file mode 100644
index 00000000..e1b56090
Binary files /dev/null and b/compatibility/assets/data/graficos/6059.png differ
diff --git a/compatibility/assets/data/graficos/606.png b/compatibility/assets/data/graficos/606.png
new file mode 100644
index 00000000..823ae49b
Binary files /dev/null and b/compatibility/assets/data/graficos/606.png differ
diff --git a/compatibility/assets/data/graficos/6060.png b/compatibility/assets/data/graficos/6060.png
new file mode 100644
index 00000000..856e579d
Binary files /dev/null and b/compatibility/assets/data/graficos/6060.png differ
diff --git a/compatibility/assets/data/graficos/6061.png b/compatibility/assets/data/graficos/6061.png
new file mode 100644
index 00000000..db7ea3e9
Binary files /dev/null and b/compatibility/assets/data/graficos/6061.png differ
diff --git a/compatibility/assets/data/graficos/6062.png b/compatibility/assets/data/graficos/6062.png
new file mode 100644
index 00000000..2d6852d2
Binary files /dev/null and b/compatibility/assets/data/graficos/6062.png differ
diff --git a/compatibility/assets/data/graficos/6063.png b/compatibility/assets/data/graficos/6063.png
new file mode 100644
index 00000000..26933d25
Binary files /dev/null and b/compatibility/assets/data/graficos/6063.png differ
diff --git a/compatibility/assets/data/graficos/6064.png b/compatibility/assets/data/graficos/6064.png
new file mode 100644
index 00000000..12364a9e
Binary files /dev/null and b/compatibility/assets/data/graficos/6064.png differ
diff --git a/compatibility/assets/data/graficos/6065.png b/compatibility/assets/data/graficos/6065.png
new file mode 100644
index 00000000..cd5e8b9e
Binary files /dev/null and b/compatibility/assets/data/graficos/6065.png differ
diff --git a/compatibility/assets/data/graficos/6066.png b/compatibility/assets/data/graficos/6066.png
new file mode 100644
index 00000000..50b9f8a4
Binary files /dev/null and b/compatibility/assets/data/graficos/6066.png differ
diff --git a/compatibility/assets/data/graficos/6067.png b/compatibility/assets/data/graficos/6067.png
new file mode 100644
index 00000000..cff10972
Binary files /dev/null and b/compatibility/assets/data/graficos/6067.png differ
diff --git a/compatibility/assets/data/graficos/6068.png b/compatibility/assets/data/graficos/6068.png
new file mode 100644
index 00000000..99ecfa7f
Binary files /dev/null and b/compatibility/assets/data/graficos/6068.png differ
diff --git a/compatibility/assets/data/graficos/6069.png b/compatibility/assets/data/graficos/6069.png
new file mode 100644
index 00000000..94b7fc83
Binary files /dev/null and b/compatibility/assets/data/graficos/6069.png differ
diff --git a/compatibility/assets/data/graficos/607.png b/compatibility/assets/data/graficos/607.png
new file mode 100644
index 00000000..09359c40
Binary files /dev/null and b/compatibility/assets/data/graficos/607.png differ
diff --git a/compatibility/assets/data/graficos/6070.png b/compatibility/assets/data/graficos/6070.png
new file mode 100644
index 00000000..54c4c411
Binary files /dev/null and b/compatibility/assets/data/graficos/6070.png differ
diff --git a/compatibility/assets/data/graficos/6071.png b/compatibility/assets/data/graficos/6071.png
new file mode 100644
index 00000000..1d0994b8
Binary files /dev/null and b/compatibility/assets/data/graficos/6071.png differ
diff --git a/compatibility/assets/data/graficos/6072.png b/compatibility/assets/data/graficos/6072.png
new file mode 100644
index 00000000..8be01f2f
Binary files /dev/null and b/compatibility/assets/data/graficos/6072.png differ
diff --git a/compatibility/assets/data/graficos/6073.png b/compatibility/assets/data/graficos/6073.png
new file mode 100644
index 00000000..23c218b9
Binary files /dev/null and b/compatibility/assets/data/graficos/6073.png differ
diff --git a/compatibility/assets/data/graficos/6074.png b/compatibility/assets/data/graficos/6074.png
new file mode 100644
index 00000000..81153ad4
Binary files /dev/null and b/compatibility/assets/data/graficos/6074.png differ
diff --git a/compatibility/assets/data/graficos/6075.png b/compatibility/assets/data/graficos/6075.png
new file mode 100644
index 00000000..2b659ae0
Binary files /dev/null and b/compatibility/assets/data/graficos/6075.png differ
diff --git a/compatibility/assets/data/graficos/6076.png b/compatibility/assets/data/graficos/6076.png
new file mode 100644
index 00000000..b210a38b
Binary files /dev/null and b/compatibility/assets/data/graficos/6076.png differ
diff --git a/compatibility/assets/data/graficos/6077.png b/compatibility/assets/data/graficos/6077.png
new file mode 100644
index 00000000..4eb6ce5a
Binary files /dev/null and b/compatibility/assets/data/graficos/6077.png differ
diff --git a/compatibility/assets/data/graficos/6078.png b/compatibility/assets/data/graficos/6078.png
new file mode 100644
index 00000000..af0f6992
Binary files /dev/null and b/compatibility/assets/data/graficos/6078.png differ
diff --git a/compatibility/assets/data/graficos/6079.png b/compatibility/assets/data/graficos/6079.png
new file mode 100644
index 00000000..ac4abb3b
Binary files /dev/null and b/compatibility/assets/data/graficos/6079.png differ
diff --git a/compatibility/assets/data/graficos/608.png b/compatibility/assets/data/graficos/608.png
new file mode 100644
index 00000000..cc89506f
Binary files /dev/null and b/compatibility/assets/data/graficos/608.png differ
diff --git a/compatibility/assets/data/graficos/6080.png b/compatibility/assets/data/graficos/6080.png
new file mode 100644
index 00000000..dcbc55b0
Binary files /dev/null and b/compatibility/assets/data/graficos/6080.png differ
diff --git a/compatibility/assets/data/graficos/6081.png b/compatibility/assets/data/graficos/6081.png
new file mode 100644
index 00000000..2e4870ed
Binary files /dev/null and b/compatibility/assets/data/graficos/6081.png differ
diff --git a/compatibility/assets/data/graficos/6082.png b/compatibility/assets/data/graficos/6082.png
new file mode 100644
index 00000000..99a4275d
Binary files /dev/null and b/compatibility/assets/data/graficos/6082.png differ
diff --git a/compatibility/assets/data/graficos/609.png b/compatibility/assets/data/graficos/609.png
new file mode 100644
index 00000000..8612516c
Binary files /dev/null and b/compatibility/assets/data/graficos/609.png differ
diff --git a/compatibility/assets/data/graficos/61.png b/compatibility/assets/data/graficos/61.png
new file mode 100644
index 00000000..331cf791
Binary files /dev/null and b/compatibility/assets/data/graficos/61.png differ
diff --git a/compatibility/assets/data/graficos/610.png b/compatibility/assets/data/graficos/610.png
new file mode 100644
index 00000000..ed0ba065
Binary files /dev/null and b/compatibility/assets/data/graficos/610.png differ
diff --git a/compatibility/assets/data/graficos/611.png b/compatibility/assets/data/graficos/611.png
new file mode 100644
index 00000000..1b830534
Binary files /dev/null and b/compatibility/assets/data/graficos/611.png differ
diff --git a/compatibility/assets/data/graficos/612.png b/compatibility/assets/data/graficos/612.png
new file mode 100644
index 00000000..a3f92d3d
Binary files /dev/null and b/compatibility/assets/data/graficos/612.png differ
diff --git a/compatibility/assets/data/graficos/613.png b/compatibility/assets/data/graficos/613.png
new file mode 100644
index 00000000..ee0f6fd3
Binary files /dev/null and b/compatibility/assets/data/graficos/613.png differ
diff --git a/compatibility/assets/data/graficos/614.png b/compatibility/assets/data/graficos/614.png
new file mode 100644
index 00000000..f82e5249
Binary files /dev/null and b/compatibility/assets/data/graficos/614.png differ
diff --git a/compatibility/assets/data/graficos/615.png b/compatibility/assets/data/graficos/615.png
new file mode 100644
index 00000000..585bd1c9
Binary files /dev/null and b/compatibility/assets/data/graficos/615.png differ
diff --git a/compatibility/assets/data/graficos/616.png b/compatibility/assets/data/graficos/616.png
new file mode 100644
index 00000000..4dc6052c
Binary files /dev/null and b/compatibility/assets/data/graficos/616.png differ
diff --git a/compatibility/assets/data/graficos/617.png b/compatibility/assets/data/graficos/617.png
new file mode 100644
index 00000000..6283e9fb
Binary files /dev/null and b/compatibility/assets/data/graficos/617.png differ
diff --git a/compatibility/assets/data/graficos/618.png b/compatibility/assets/data/graficos/618.png
new file mode 100644
index 00000000..c8a4e77b
Binary files /dev/null and b/compatibility/assets/data/graficos/618.png differ
diff --git a/compatibility/assets/data/graficos/619.png b/compatibility/assets/data/graficos/619.png
new file mode 100644
index 00000000..d098e6a0
Binary files /dev/null and b/compatibility/assets/data/graficos/619.png differ
diff --git a/compatibility/assets/data/graficos/62.png b/compatibility/assets/data/graficos/62.png
new file mode 100644
index 00000000..aae9dcf4
Binary files /dev/null and b/compatibility/assets/data/graficos/62.png differ
diff --git a/compatibility/assets/data/graficos/620.png b/compatibility/assets/data/graficos/620.png
new file mode 100644
index 00000000..ea7348f4
Binary files /dev/null and b/compatibility/assets/data/graficos/620.png differ
diff --git a/compatibility/assets/data/graficos/621.png b/compatibility/assets/data/graficos/621.png
new file mode 100644
index 00000000..5ee5fdad
Binary files /dev/null and b/compatibility/assets/data/graficos/621.png differ
diff --git a/compatibility/assets/data/graficos/622.png b/compatibility/assets/data/graficos/622.png
new file mode 100644
index 00000000..2c9735fa
Binary files /dev/null and b/compatibility/assets/data/graficos/622.png differ
diff --git a/compatibility/assets/data/graficos/623.png b/compatibility/assets/data/graficos/623.png
new file mode 100644
index 00000000..e14183b6
Binary files /dev/null and b/compatibility/assets/data/graficos/623.png differ
diff --git a/compatibility/assets/data/graficos/624.png b/compatibility/assets/data/graficos/624.png
new file mode 100644
index 00000000..114682aa
Binary files /dev/null and b/compatibility/assets/data/graficos/624.png differ
diff --git a/compatibility/assets/data/graficos/625.png b/compatibility/assets/data/graficos/625.png
new file mode 100644
index 00000000..51404a27
Binary files /dev/null and b/compatibility/assets/data/graficos/625.png differ
diff --git a/compatibility/assets/data/graficos/626.png b/compatibility/assets/data/graficos/626.png
new file mode 100644
index 00000000..4656717f
Binary files /dev/null and b/compatibility/assets/data/graficos/626.png differ
diff --git a/compatibility/assets/data/graficos/627.png b/compatibility/assets/data/graficos/627.png
new file mode 100644
index 00000000..a2833530
Binary files /dev/null and b/compatibility/assets/data/graficos/627.png differ
diff --git a/compatibility/assets/data/graficos/628.png b/compatibility/assets/data/graficos/628.png
new file mode 100644
index 00000000..31212754
Binary files /dev/null and b/compatibility/assets/data/graficos/628.png differ
diff --git a/compatibility/assets/data/graficos/629.png b/compatibility/assets/data/graficos/629.png
new file mode 100644
index 00000000..72a777bf
Binary files /dev/null and b/compatibility/assets/data/graficos/629.png differ
diff --git a/compatibility/assets/data/graficos/63.png b/compatibility/assets/data/graficos/63.png
new file mode 100644
index 00000000..0dde68a4
Binary files /dev/null and b/compatibility/assets/data/graficos/63.png differ
diff --git a/compatibility/assets/data/graficos/630.png b/compatibility/assets/data/graficos/630.png
new file mode 100644
index 00000000..49fb9d8c
Binary files /dev/null and b/compatibility/assets/data/graficos/630.png differ
diff --git a/compatibility/assets/data/graficos/631.png b/compatibility/assets/data/graficos/631.png
new file mode 100644
index 00000000..725307c3
Binary files /dev/null and b/compatibility/assets/data/graficos/631.png differ
diff --git a/compatibility/assets/data/graficos/632.png b/compatibility/assets/data/graficos/632.png
new file mode 100644
index 00000000..5942f8ce
Binary files /dev/null and b/compatibility/assets/data/graficos/632.png differ
diff --git a/compatibility/assets/data/graficos/633.png b/compatibility/assets/data/graficos/633.png
new file mode 100644
index 00000000..520f0b07
Binary files /dev/null and b/compatibility/assets/data/graficos/633.png differ
diff --git a/compatibility/assets/data/graficos/634.png b/compatibility/assets/data/graficos/634.png
new file mode 100644
index 00000000..7ef0f048
Binary files /dev/null and b/compatibility/assets/data/graficos/634.png differ
diff --git a/compatibility/assets/data/graficos/635.png b/compatibility/assets/data/graficos/635.png
new file mode 100644
index 00000000..a4bb9567
Binary files /dev/null and b/compatibility/assets/data/graficos/635.png differ
diff --git a/compatibility/assets/data/graficos/636.png b/compatibility/assets/data/graficos/636.png
new file mode 100644
index 00000000..10f04658
Binary files /dev/null and b/compatibility/assets/data/graficos/636.png differ
diff --git a/compatibility/assets/data/graficos/637.png b/compatibility/assets/data/graficos/637.png
new file mode 100644
index 00000000..fdbab9e4
Binary files /dev/null and b/compatibility/assets/data/graficos/637.png differ
diff --git a/compatibility/assets/data/graficos/638.png b/compatibility/assets/data/graficos/638.png
new file mode 100644
index 00000000..3f7d5863
Binary files /dev/null and b/compatibility/assets/data/graficos/638.png differ
diff --git a/compatibility/assets/data/graficos/639.png b/compatibility/assets/data/graficos/639.png
new file mode 100644
index 00000000..69baf523
Binary files /dev/null and b/compatibility/assets/data/graficos/639.png differ
diff --git a/compatibility/assets/data/graficos/64.png b/compatibility/assets/data/graficos/64.png
new file mode 100644
index 00000000..069f6867
Binary files /dev/null and b/compatibility/assets/data/graficos/64.png differ
diff --git a/compatibility/assets/data/graficos/640.png b/compatibility/assets/data/graficos/640.png
new file mode 100644
index 00000000..a87f60cc
Binary files /dev/null and b/compatibility/assets/data/graficos/640.png differ
diff --git a/compatibility/assets/data/graficos/641.png b/compatibility/assets/data/graficos/641.png
new file mode 100644
index 00000000..1756f4fc
Binary files /dev/null and b/compatibility/assets/data/graficos/641.png differ
diff --git a/compatibility/assets/data/graficos/642.png b/compatibility/assets/data/graficos/642.png
new file mode 100644
index 00000000..c22801a7
Binary files /dev/null and b/compatibility/assets/data/graficos/642.png differ
diff --git a/compatibility/assets/data/graficos/643.png b/compatibility/assets/data/graficos/643.png
new file mode 100644
index 00000000..7abc49b9
Binary files /dev/null and b/compatibility/assets/data/graficos/643.png differ
diff --git a/compatibility/assets/data/graficos/644.png b/compatibility/assets/data/graficos/644.png
new file mode 100644
index 00000000..cd953fd9
Binary files /dev/null and b/compatibility/assets/data/graficos/644.png differ
diff --git a/compatibility/assets/data/graficos/645.png b/compatibility/assets/data/graficos/645.png
new file mode 100644
index 00000000..e1db3bfa
Binary files /dev/null and b/compatibility/assets/data/graficos/645.png differ
diff --git a/compatibility/assets/data/graficos/646.png b/compatibility/assets/data/graficos/646.png
new file mode 100644
index 00000000..8d20f74e
Binary files /dev/null and b/compatibility/assets/data/graficos/646.png differ
diff --git a/compatibility/assets/data/graficos/647.png b/compatibility/assets/data/graficos/647.png
new file mode 100644
index 00000000..234d720d
Binary files /dev/null and b/compatibility/assets/data/graficos/647.png differ
diff --git a/compatibility/assets/data/graficos/648.png b/compatibility/assets/data/graficos/648.png
new file mode 100644
index 00000000..4a33c778
Binary files /dev/null and b/compatibility/assets/data/graficos/648.png differ
diff --git a/compatibility/assets/data/graficos/649.png b/compatibility/assets/data/graficos/649.png
new file mode 100644
index 00000000..9261b0f2
Binary files /dev/null and b/compatibility/assets/data/graficos/649.png differ
diff --git a/compatibility/assets/data/graficos/65.png b/compatibility/assets/data/graficos/65.png
new file mode 100644
index 00000000..780d90cb
Binary files /dev/null and b/compatibility/assets/data/graficos/65.png differ
diff --git a/compatibility/assets/data/graficos/650.png b/compatibility/assets/data/graficos/650.png
new file mode 100644
index 00000000..69af9c67
Binary files /dev/null and b/compatibility/assets/data/graficos/650.png differ
diff --git a/compatibility/assets/data/graficos/651.png b/compatibility/assets/data/graficos/651.png
new file mode 100644
index 00000000..fff0705e
Binary files /dev/null and b/compatibility/assets/data/graficos/651.png differ
diff --git a/compatibility/assets/data/graficos/652.png b/compatibility/assets/data/graficos/652.png
new file mode 100644
index 00000000..180c71db
Binary files /dev/null and b/compatibility/assets/data/graficos/652.png differ
diff --git a/compatibility/assets/data/graficos/653.png b/compatibility/assets/data/graficos/653.png
new file mode 100644
index 00000000..ae878381
Binary files /dev/null and b/compatibility/assets/data/graficos/653.png differ
diff --git a/compatibility/assets/data/graficos/654.png b/compatibility/assets/data/graficos/654.png
new file mode 100644
index 00000000..711a1538
Binary files /dev/null and b/compatibility/assets/data/graficos/654.png differ
diff --git a/compatibility/assets/data/graficos/655.png b/compatibility/assets/data/graficos/655.png
new file mode 100644
index 00000000..9968bd73
Binary files /dev/null and b/compatibility/assets/data/graficos/655.png differ
diff --git a/compatibility/assets/data/graficos/656.png b/compatibility/assets/data/graficos/656.png
new file mode 100644
index 00000000..4421f4de
Binary files /dev/null and b/compatibility/assets/data/graficos/656.png differ
diff --git a/compatibility/assets/data/graficos/657.png b/compatibility/assets/data/graficos/657.png
new file mode 100644
index 00000000..9348a711
Binary files /dev/null and b/compatibility/assets/data/graficos/657.png differ
diff --git a/compatibility/assets/data/graficos/658.png b/compatibility/assets/data/graficos/658.png
new file mode 100644
index 00000000..14fe3f4d
Binary files /dev/null and b/compatibility/assets/data/graficos/658.png differ
diff --git a/compatibility/assets/data/graficos/659.png b/compatibility/assets/data/graficos/659.png
new file mode 100644
index 00000000..03277d92
Binary files /dev/null and b/compatibility/assets/data/graficos/659.png differ
diff --git a/compatibility/assets/data/graficos/66.png b/compatibility/assets/data/graficos/66.png
new file mode 100644
index 00000000..3e644543
Binary files /dev/null and b/compatibility/assets/data/graficos/66.png differ
diff --git a/compatibility/assets/data/graficos/660.png b/compatibility/assets/data/graficos/660.png
new file mode 100644
index 00000000..f79563c2
Binary files /dev/null and b/compatibility/assets/data/graficos/660.png differ
diff --git a/compatibility/assets/data/graficos/661.png b/compatibility/assets/data/graficos/661.png
new file mode 100644
index 00000000..764feb3d
Binary files /dev/null and b/compatibility/assets/data/graficos/661.png differ
diff --git a/compatibility/assets/data/graficos/662.png b/compatibility/assets/data/graficos/662.png
new file mode 100644
index 00000000..f443e1b2
Binary files /dev/null and b/compatibility/assets/data/graficos/662.png differ
diff --git a/compatibility/assets/data/graficos/663.png b/compatibility/assets/data/graficos/663.png
new file mode 100644
index 00000000..67d15004
Binary files /dev/null and b/compatibility/assets/data/graficos/663.png differ
diff --git a/compatibility/assets/data/graficos/664.png b/compatibility/assets/data/graficos/664.png
new file mode 100644
index 00000000..4a16e1ad
Binary files /dev/null and b/compatibility/assets/data/graficos/664.png differ
diff --git a/compatibility/assets/data/graficos/665.png b/compatibility/assets/data/graficos/665.png
new file mode 100644
index 00000000..4750781e
Binary files /dev/null and b/compatibility/assets/data/graficos/665.png differ
diff --git a/compatibility/assets/data/graficos/666.png b/compatibility/assets/data/graficos/666.png
new file mode 100644
index 00000000..15423a06
Binary files /dev/null and b/compatibility/assets/data/graficos/666.png differ
diff --git a/compatibility/assets/data/graficos/667.png b/compatibility/assets/data/graficos/667.png
new file mode 100644
index 00000000..ee1caf21
Binary files /dev/null and b/compatibility/assets/data/graficos/667.png differ
diff --git a/compatibility/assets/data/graficos/668.png b/compatibility/assets/data/graficos/668.png
new file mode 100644
index 00000000..90d13300
Binary files /dev/null and b/compatibility/assets/data/graficos/668.png differ
diff --git a/compatibility/assets/data/graficos/669.png b/compatibility/assets/data/graficos/669.png
new file mode 100644
index 00000000..d2f7d6d2
Binary files /dev/null and b/compatibility/assets/data/graficos/669.png differ
diff --git a/compatibility/assets/data/graficos/67.png b/compatibility/assets/data/graficos/67.png
new file mode 100644
index 00000000..5512e750
Binary files /dev/null and b/compatibility/assets/data/graficos/67.png differ
diff --git a/compatibility/assets/data/graficos/670.png b/compatibility/assets/data/graficos/670.png
new file mode 100644
index 00000000..b720e98e
Binary files /dev/null and b/compatibility/assets/data/graficos/670.png differ
diff --git a/compatibility/assets/data/graficos/671.png b/compatibility/assets/data/graficos/671.png
new file mode 100644
index 00000000..56543c9d
Binary files /dev/null and b/compatibility/assets/data/graficos/671.png differ
diff --git a/compatibility/assets/data/graficos/672.png b/compatibility/assets/data/graficos/672.png
new file mode 100644
index 00000000..592bd8d7
Binary files /dev/null and b/compatibility/assets/data/graficos/672.png differ
diff --git a/compatibility/assets/data/graficos/673.png b/compatibility/assets/data/graficos/673.png
new file mode 100644
index 00000000..5b73dba8
Binary files /dev/null and b/compatibility/assets/data/graficos/673.png differ
diff --git a/compatibility/assets/data/graficos/674.png b/compatibility/assets/data/graficos/674.png
new file mode 100644
index 00000000..3cc5a2fc
Binary files /dev/null and b/compatibility/assets/data/graficos/674.png differ
diff --git a/compatibility/assets/data/graficos/675.png b/compatibility/assets/data/graficos/675.png
new file mode 100644
index 00000000..ecdb23ca
Binary files /dev/null and b/compatibility/assets/data/graficos/675.png differ
diff --git a/compatibility/assets/data/graficos/676.png b/compatibility/assets/data/graficos/676.png
new file mode 100644
index 00000000..3faf3a8e
Binary files /dev/null and b/compatibility/assets/data/graficos/676.png differ
diff --git a/compatibility/assets/data/graficos/677.png b/compatibility/assets/data/graficos/677.png
new file mode 100644
index 00000000..31ed95ff
Binary files /dev/null and b/compatibility/assets/data/graficos/677.png differ
diff --git a/compatibility/assets/data/graficos/678.png b/compatibility/assets/data/graficos/678.png
new file mode 100644
index 00000000..2019fc55
Binary files /dev/null and b/compatibility/assets/data/graficos/678.png differ
diff --git a/compatibility/assets/data/graficos/679.png b/compatibility/assets/data/graficos/679.png
new file mode 100644
index 00000000..6e38a5fa
Binary files /dev/null and b/compatibility/assets/data/graficos/679.png differ
diff --git a/compatibility/assets/data/graficos/68.png b/compatibility/assets/data/graficos/68.png
new file mode 100644
index 00000000..3534b037
Binary files /dev/null and b/compatibility/assets/data/graficos/68.png differ
diff --git a/compatibility/assets/data/graficos/680.png b/compatibility/assets/data/graficos/680.png
new file mode 100644
index 00000000..e6df29d8
Binary files /dev/null and b/compatibility/assets/data/graficos/680.png differ
diff --git a/compatibility/assets/data/graficos/681.png b/compatibility/assets/data/graficos/681.png
new file mode 100644
index 00000000..589a27d8
Binary files /dev/null and b/compatibility/assets/data/graficos/681.png differ
diff --git a/compatibility/assets/data/graficos/682.png b/compatibility/assets/data/graficos/682.png
new file mode 100644
index 00000000..b499310a
Binary files /dev/null and b/compatibility/assets/data/graficos/682.png differ
diff --git a/compatibility/assets/data/graficos/683.png b/compatibility/assets/data/graficos/683.png
new file mode 100644
index 00000000..713f9bc2
Binary files /dev/null and b/compatibility/assets/data/graficos/683.png differ
diff --git a/compatibility/assets/data/graficos/69.png b/compatibility/assets/data/graficos/69.png
new file mode 100644
index 00000000..b5f02b3f
Binary files /dev/null and b/compatibility/assets/data/graficos/69.png differ
diff --git a/compatibility/assets/data/graficos/7.png b/compatibility/assets/data/graficos/7.png
new file mode 100644
index 00000000..4d0a5e5d
Binary files /dev/null and b/compatibility/assets/data/graficos/7.png differ
diff --git a/compatibility/assets/data/graficos/70.png b/compatibility/assets/data/graficos/70.png
new file mode 100644
index 00000000..fcedbc8a
Binary files /dev/null and b/compatibility/assets/data/graficos/70.png differ
diff --git a/compatibility/assets/data/graficos/7000.png b/compatibility/assets/data/graficos/7000.png
new file mode 100644
index 00000000..a793a76a
Binary files /dev/null and b/compatibility/assets/data/graficos/7000.png differ
diff --git a/compatibility/assets/data/graficos/7001.png b/compatibility/assets/data/graficos/7001.png
new file mode 100644
index 00000000..b1d9fae7
Binary files /dev/null and b/compatibility/assets/data/graficos/7001.png differ
diff --git a/compatibility/assets/data/graficos/7002.png b/compatibility/assets/data/graficos/7002.png
new file mode 100644
index 00000000..a71b6fcf
Binary files /dev/null and b/compatibility/assets/data/graficos/7002.png differ
diff --git a/compatibility/assets/data/graficos/7003.png b/compatibility/assets/data/graficos/7003.png
new file mode 100644
index 00000000..371c32a7
Binary files /dev/null and b/compatibility/assets/data/graficos/7003.png differ
diff --git a/compatibility/assets/data/graficos/7004.png b/compatibility/assets/data/graficos/7004.png
new file mode 100644
index 00000000..1b88df22
Binary files /dev/null and b/compatibility/assets/data/graficos/7004.png differ
diff --git a/compatibility/assets/data/graficos/7005.png b/compatibility/assets/data/graficos/7005.png
new file mode 100644
index 00000000..44cec07c
Binary files /dev/null and b/compatibility/assets/data/graficos/7005.png differ
diff --git a/compatibility/assets/data/graficos/7006.png b/compatibility/assets/data/graficos/7006.png
new file mode 100644
index 00000000..14f22cde
Binary files /dev/null and b/compatibility/assets/data/graficos/7006.png differ
diff --git a/compatibility/assets/data/graficos/7007.png b/compatibility/assets/data/graficos/7007.png
new file mode 100644
index 00000000..507f3397
Binary files /dev/null and b/compatibility/assets/data/graficos/7007.png differ
diff --git a/compatibility/assets/data/graficos/7008.png b/compatibility/assets/data/graficos/7008.png
new file mode 100644
index 00000000..3939a43f
Binary files /dev/null and b/compatibility/assets/data/graficos/7008.png differ
diff --git a/compatibility/assets/data/graficos/7009.png b/compatibility/assets/data/graficos/7009.png
new file mode 100644
index 00000000..addb1dd9
Binary files /dev/null and b/compatibility/assets/data/graficos/7009.png differ
diff --git a/compatibility/assets/data/graficos/7010.png b/compatibility/assets/data/graficos/7010.png
new file mode 100644
index 00000000..1e959c28
Binary files /dev/null and b/compatibility/assets/data/graficos/7010.png differ
diff --git a/compatibility/assets/data/graficos/7011.png b/compatibility/assets/data/graficos/7011.png
new file mode 100644
index 00000000..bb7eea46
Binary files /dev/null and b/compatibility/assets/data/graficos/7011.png differ
diff --git a/compatibility/assets/data/graficos/7012.png b/compatibility/assets/data/graficos/7012.png
new file mode 100644
index 00000000..0eb42e83
Binary files /dev/null and b/compatibility/assets/data/graficos/7012.png differ
diff --git a/compatibility/assets/data/graficos/7013.png b/compatibility/assets/data/graficos/7013.png
new file mode 100644
index 00000000..6511c1b8
Binary files /dev/null and b/compatibility/assets/data/graficos/7013.png differ
diff --git a/compatibility/assets/data/graficos/7014.png b/compatibility/assets/data/graficos/7014.png
new file mode 100644
index 00000000..97aa388a
Binary files /dev/null and b/compatibility/assets/data/graficos/7014.png differ
diff --git a/compatibility/assets/data/graficos/7015.png b/compatibility/assets/data/graficos/7015.png
new file mode 100644
index 00000000..d347b171
Binary files /dev/null and b/compatibility/assets/data/graficos/7015.png differ
diff --git a/compatibility/assets/data/graficos/7016.png b/compatibility/assets/data/graficos/7016.png
new file mode 100644
index 00000000..1e606859
Binary files /dev/null and b/compatibility/assets/data/graficos/7016.png differ
diff --git a/compatibility/assets/data/graficos/7017.png b/compatibility/assets/data/graficos/7017.png
new file mode 100644
index 00000000..fdd01f9e
Binary files /dev/null and b/compatibility/assets/data/graficos/7017.png differ
diff --git a/compatibility/assets/data/graficos/7018.png b/compatibility/assets/data/graficos/7018.png
new file mode 100644
index 00000000..749575a7
Binary files /dev/null and b/compatibility/assets/data/graficos/7018.png differ
diff --git a/compatibility/assets/data/graficos/7019.png b/compatibility/assets/data/graficos/7019.png
new file mode 100644
index 00000000..9bad577f
Binary files /dev/null and b/compatibility/assets/data/graficos/7019.png differ
diff --git a/compatibility/assets/data/graficos/7020.png b/compatibility/assets/data/graficos/7020.png
new file mode 100644
index 00000000..caa6848e
Binary files /dev/null and b/compatibility/assets/data/graficos/7020.png differ
diff --git a/compatibility/assets/data/graficos/7021.png b/compatibility/assets/data/graficos/7021.png
new file mode 100644
index 00000000..e53678b0
Binary files /dev/null and b/compatibility/assets/data/graficos/7021.png differ
diff --git a/compatibility/assets/data/graficos/7022.png b/compatibility/assets/data/graficos/7022.png
new file mode 100644
index 00000000..e2114ef8
Binary files /dev/null and b/compatibility/assets/data/graficos/7022.png differ
diff --git a/compatibility/assets/data/graficos/7023.png b/compatibility/assets/data/graficos/7023.png
new file mode 100644
index 00000000..d2147eef
Binary files /dev/null and b/compatibility/assets/data/graficos/7023.png differ
diff --git a/compatibility/assets/data/graficos/7024.png b/compatibility/assets/data/graficos/7024.png
new file mode 100644
index 00000000..c4fd3bbf
Binary files /dev/null and b/compatibility/assets/data/graficos/7024.png differ
diff --git a/compatibility/assets/data/graficos/7025.png b/compatibility/assets/data/graficos/7025.png
new file mode 100644
index 00000000..b4d353a8
Binary files /dev/null and b/compatibility/assets/data/graficos/7025.png differ
diff --git a/compatibility/assets/data/graficos/7026.png b/compatibility/assets/data/graficos/7026.png
new file mode 100644
index 00000000..f61a9a63
Binary files /dev/null and b/compatibility/assets/data/graficos/7026.png differ
diff --git a/compatibility/assets/data/graficos/7027.png b/compatibility/assets/data/graficos/7027.png
new file mode 100644
index 00000000..2db207b0
Binary files /dev/null and b/compatibility/assets/data/graficos/7027.png differ
diff --git a/compatibility/assets/data/graficos/7028.png b/compatibility/assets/data/graficos/7028.png
new file mode 100644
index 00000000..92d1c387
Binary files /dev/null and b/compatibility/assets/data/graficos/7028.png differ
diff --git a/compatibility/assets/data/graficos/7029.png b/compatibility/assets/data/graficos/7029.png
new file mode 100644
index 00000000..7237639a
Binary files /dev/null and b/compatibility/assets/data/graficos/7029.png differ
diff --git a/compatibility/assets/data/graficos/7030.png b/compatibility/assets/data/graficos/7030.png
new file mode 100644
index 00000000..552dba86
Binary files /dev/null and b/compatibility/assets/data/graficos/7030.png differ
diff --git a/compatibility/assets/data/graficos/7031.png b/compatibility/assets/data/graficos/7031.png
new file mode 100644
index 00000000..8adef6be
Binary files /dev/null and b/compatibility/assets/data/graficos/7031.png differ
diff --git a/compatibility/assets/data/graficos/7032.png b/compatibility/assets/data/graficos/7032.png
new file mode 100644
index 00000000..8d5161ce
Binary files /dev/null and b/compatibility/assets/data/graficos/7032.png differ
diff --git a/compatibility/assets/data/graficos/7033.png b/compatibility/assets/data/graficos/7033.png
new file mode 100644
index 00000000..ce8dcc0f
Binary files /dev/null and b/compatibility/assets/data/graficos/7033.png differ
diff --git a/compatibility/assets/data/graficos/7034.png b/compatibility/assets/data/graficos/7034.png
new file mode 100644
index 00000000..76f2bb70
Binary files /dev/null and b/compatibility/assets/data/graficos/7034.png differ
diff --git a/compatibility/assets/data/graficos/7035.png b/compatibility/assets/data/graficos/7035.png
new file mode 100644
index 00000000..e7004795
Binary files /dev/null and b/compatibility/assets/data/graficos/7035.png differ
diff --git a/compatibility/assets/data/graficos/7036.png b/compatibility/assets/data/graficos/7036.png
new file mode 100644
index 00000000..d6207fac
Binary files /dev/null and b/compatibility/assets/data/graficos/7036.png differ
diff --git a/compatibility/assets/data/graficos/7037.png b/compatibility/assets/data/graficos/7037.png
new file mode 100644
index 00000000..a0b97f76
Binary files /dev/null and b/compatibility/assets/data/graficos/7037.png differ
diff --git a/compatibility/assets/data/graficos/7038.png b/compatibility/assets/data/graficos/7038.png
new file mode 100644
index 00000000..17708626
Binary files /dev/null and b/compatibility/assets/data/graficos/7038.png differ
diff --git a/compatibility/assets/data/graficos/7039.png b/compatibility/assets/data/graficos/7039.png
new file mode 100644
index 00000000..291ad5d9
Binary files /dev/null and b/compatibility/assets/data/graficos/7039.png differ
diff --git a/compatibility/assets/data/graficos/7040.png b/compatibility/assets/data/graficos/7040.png
new file mode 100644
index 00000000..1b86a007
Binary files /dev/null and b/compatibility/assets/data/graficos/7040.png differ
diff --git a/compatibility/assets/data/graficos/7041.png b/compatibility/assets/data/graficos/7041.png
new file mode 100644
index 00000000..503491c1
Binary files /dev/null and b/compatibility/assets/data/graficos/7041.png differ
diff --git a/compatibility/assets/data/graficos/7042.png b/compatibility/assets/data/graficos/7042.png
new file mode 100644
index 00000000..060b5396
Binary files /dev/null and b/compatibility/assets/data/graficos/7042.png differ
diff --git a/compatibility/assets/data/graficos/7043.png b/compatibility/assets/data/graficos/7043.png
new file mode 100644
index 00000000..4eca6d88
Binary files /dev/null and b/compatibility/assets/data/graficos/7043.png differ
diff --git a/compatibility/assets/data/graficos/7044.png b/compatibility/assets/data/graficos/7044.png
new file mode 100644
index 00000000..bf5073ea
Binary files /dev/null and b/compatibility/assets/data/graficos/7044.png differ
diff --git a/compatibility/assets/data/graficos/7045.png b/compatibility/assets/data/graficos/7045.png
new file mode 100644
index 00000000..c6cad0fa
Binary files /dev/null and b/compatibility/assets/data/graficos/7045.png differ
diff --git a/compatibility/assets/data/graficos/7046.png b/compatibility/assets/data/graficos/7046.png
new file mode 100644
index 00000000..f155a1ed
Binary files /dev/null and b/compatibility/assets/data/graficos/7046.png differ
diff --git a/compatibility/assets/data/graficos/7047.png b/compatibility/assets/data/graficos/7047.png
new file mode 100644
index 00000000..a657b336
Binary files /dev/null and b/compatibility/assets/data/graficos/7047.png differ
diff --git a/compatibility/assets/data/graficos/7048.png b/compatibility/assets/data/graficos/7048.png
new file mode 100644
index 00000000..3b3061ac
Binary files /dev/null and b/compatibility/assets/data/graficos/7048.png differ
diff --git a/compatibility/assets/data/graficos/7049.png b/compatibility/assets/data/graficos/7049.png
new file mode 100644
index 00000000..696aae1d
Binary files /dev/null and b/compatibility/assets/data/graficos/7049.png differ
diff --git a/compatibility/assets/data/graficos/7050.png b/compatibility/assets/data/graficos/7050.png
new file mode 100644
index 00000000..702d3be9
Binary files /dev/null and b/compatibility/assets/data/graficos/7050.png differ
diff --git a/compatibility/assets/data/graficos/7051.png b/compatibility/assets/data/graficos/7051.png
new file mode 100644
index 00000000..db911cfa
Binary files /dev/null and b/compatibility/assets/data/graficos/7051.png differ
diff --git a/compatibility/assets/data/graficos/7052.png b/compatibility/assets/data/graficos/7052.png
new file mode 100644
index 00000000..6aa8026c
Binary files /dev/null and b/compatibility/assets/data/graficos/7052.png differ
diff --git a/compatibility/assets/data/graficos/7053.png b/compatibility/assets/data/graficos/7053.png
new file mode 100644
index 00000000..350f8f84
Binary files /dev/null and b/compatibility/assets/data/graficos/7053.png differ
diff --git a/compatibility/assets/data/graficos/7054.png b/compatibility/assets/data/graficos/7054.png
new file mode 100644
index 00000000..d09ef49f
Binary files /dev/null and b/compatibility/assets/data/graficos/7054.png differ
diff --git a/compatibility/assets/data/graficos/7055.png b/compatibility/assets/data/graficos/7055.png
new file mode 100644
index 00000000..cabb1544
Binary files /dev/null and b/compatibility/assets/data/graficos/7055.png differ
diff --git a/compatibility/assets/data/graficos/7056.png b/compatibility/assets/data/graficos/7056.png
new file mode 100644
index 00000000..a949a26c
Binary files /dev/null and b/compatibility/assets/data/graficos/7056.png differ
diff --git a/compatibility/assets/data/graficos/7057.png b/compatibility/assets/data/graficos/7057.png
new file mode 100644
index 00000000..3814948f
Binary files /dev/null and b/compatibility/assets/data/graficos/7057.png differ
diff --git a/compatibility/assets/data/graficos/7058.png b/compatibility/assets/data/graficos/7058.png
new file mode 100644
index 00000000..45a40c28
Binary files /dev/null and b/compatibility/assets/data/graficos/7058.png differ
diff --git a/compatibility/assets/data/graficos/7059.png b/compatibility/assets/data/graficos/7059.png
new file mode 100644
index 00000000..7a0ba819
Binary files /dev/null and b/compatibility/assets/data/graficos/7059.png differ
diff --git a/compatibility/assets/data/graficos/7060.png b/compatibility/assets/data/graficos/7060.png
new file mode 100644
index 00000000..4da57c18
Binary files /dev/null and b/compatibility/assets/data/graficos/7060.png differ
diff --git a/compatibility/assets/data/graficos/7061.png b/compatibility/assets/data/graficos/7061.png
new file mode 100644
index 00000000..175cec2b
Binary files /dev/null and b/compatibility/assets/data/graficos/7061.png differ
diff --git a/compatibility/assets/data/graficos/7062.png b/compatibility/assets/data/graficos/7062.png
new file mode 100644
index 00000000..85ce4cba
Binary files /dev/null and b/compatibility/assets/data/graficos/7062.png differ
diff --git a/compatibility/assets/data/graficos/7063.png b/compatibility/assets/data/graficos/7063.png
new file mode 100644
index 00000000..f7490227
Binary files /dev/null and b/compatibility/assets/data/graficos/7063.png differ
diff --git a/compatibility/assets/data/graficos/7064.png b/compatibility/assets/data/graficos/7064.png
new file mode 100644
index 00000000..9870bc93
Binary files /dev/null and b/compatibility/assets/data/graficos/7064.png differ
diff --git a/compatibility/assets/data/graficos/7065.png b/compatibility/assets/data/graficos/7065.png
new file mode 100644
index 00000000..f1b242e7
Binary files /dev/null and b/compatibility/assets/data/graficos/7065.png differ
diff --git a/compatibility/assets/data/graficos/7066.png b/compatibility/assets/data/graficos/7066.png
new file mode 100644
index 00000000..a439beeb
Binary files /dev/null and b/compatibility/assets/data/graficos/7066.png differ
diff --git a/compatibility/assets/data/graficos/7067.png b/compatibility/assets/data/graficos/7067.png
new file mode 100644
index 00000000..ed1ff5e3
Binary files /dev/null and b/compatibility/assets/data/graficos/7067.png differ
diff --git a/compatibility/assets/data/graficos/7068.png b/compatibility/assets/data/graficos/7068.png
new file mode 100644
index 00000000..611159fd
Binary files /dev/null and b/compatibility/assets/data/graficos/7068.png differ
diff --git a/compatibility/assets/data/graficos/7069.png b/compatibility/assets/data/graficos/7069.png
new file mode 100644
index 00000000..9fc7c20c
Binary files /dev/null and b/compatibility/assets/data/graficos/7069.png differ
diff --git a/compatibility/assets/data/graficos/7070.png b/compatibility/assets/data/graficos/7070.png
new file mode 100644
index 00000000..65e57d75
Binary files /dev/null and b/compatibility/assets/data/graficos/7070.png differ
diff --git a/compatibility/assets/data/graficos/7071.png b/compatibility/assets/data/graficos/7071.png
new file mode 100644
index 00000000..857545b6
Binary files /dev/null and b/compatibility/assets/data/graficos/7071.png differ
diff --git a/compatibility/assets/data/graficos/7072.png b/compatibility/assets/data/graficos/7072.png
new file mode 100644
index 00000000..c27dbaf1
Binary files /dev/null and b/compatibility/assets/data/graficos/7072.png differ
diff --git a/compatibility/assets/data/graficos/7073.png b/compatibility/assets/data/graficos/7073.png
new file mode 100644
index 00000000..6c9839d1
Binary files /dev/null and b/compatibility/assets/data/graficos/7073.png differ
diff --git a/compatibility/assets/data/graficos/7074.png b/compatibility/assets/data/graficos/7074.png
new file mode 100644
index 00000000..7d3377ab
Binary files /dev/null and b/compatibility/assets/data/graficos/7074.png differ
diff --git a/compatibility/assets/data/graficos/7075.png b/compatibility/assets/data/graficos/7075.png
new file mode 100644
index 00000000..0dcd952f
Binary files /dev/null and b/compatibility/assets/data/graficos/7075.png differ
diff --git a/compatibility/assets/data/graficos/7076.png b/compatibility/assets/data/graficos/7076.png
new file mode 100644
index 00000000..a267871c
Binary files /dev/null and b/compatibility/assets/data/graficos/7076.png differ
diff --git a/compatibility/assets/data/graficos/7077.png b/compatibility/assets/data/graficos/7077.png
new file mode 100644
index 00000000..408f91fa
Binary files /dev/null and b/compatibility/assets/data/graficos/7077.png differ
diff --git a/compatibility/assets/data/graficos/71.png b/compatibility/assets/data/graficos/71.png
new file mode 100644
index 00000000..8d54db2f
Binary files /dev/null and b/compatibility/assets/data/graficos/71.png differ
diff --git a/compatibility/assets/data/graficos/72.png b/compatibility/assets/data/graficos/72.png
new file mode 100644
index 00000000..705ba90e
Binary files /dev/null and b/compatibility/assets/data/graficos/72.png differ
diff --git a/compatibility/assets/data/graficos/73.png b/compatibility/assets/data/graficos/73.png
new file mode 100644
index 00000000..76807dc1
Binary files /dev/null and b/compatibility/assets/data/graficos/73.png differ
diff --git a/compatibility/assets/data/graficos/74.png b/compatibility/assets/data/graficos/74.png
new file mode 100644
index 00000000..6a358ad1
Binary files /dev/null and b/compatibility/assets/data/graficos/74.png differ
diff --git a/compatibility/assets/data/graficos/75.png b/compatibility/assets/data/graficos/75.png
new file mode 100644
index 00000000..ff3d149f
Binary files /dev/null and b/compatibility/assets/data/graficos/75.png differ
diff --git a/compatibility/assets/data/graficos/76.png b/compatibility/assets/data/graficos/76.png
new file mode 100644
index 00000000..d3df08de
Binary files /dev/null and b/compatibility/assets/data/graficos/76.png differ
diff --git a/compatibility/assets/data/graficos/77.png b/compatibility/assets/data/graficos/77.png
new file mode 100644
index 00000000..d9cb8919
Binary files /dev/null and b/compatibility/assets/data/graficos/77.png differ
diff --git a/compatibility/assets/data/graficos/78.png b/compatibility/assets/data/graficos/78.png
new file mode 100644
index 00000000..453d4462
Binary files /dev/null and b/compatibility/assets/data/graficos/78.png differ
diff --git a/compatibility/assets/data/graficos/79.png b/compatibility/assets/data/graficos/79.png
new file mode 100644
index 00000000..4d61bf54
Binary files /dev/null and b/compatibility/assets/data/graficos/79.png differ
diff --git a/compatibility/assets/data/graficos/8.png b/compatibility/assets/data/graficos/8.png
new file mode 100644
index 00000000..8ec4683d
Binary files /dev/null and b/compatibility/assets/data/graficos/8.png differ
diff --git a/compatibility/assets/data/graficos/80.png b/compatibility/assets/data/graficos/80.png
new file mode 100644
index 00000000..bb4d1d8d
Binary files /dev/null and b/compatibility/assets/data/graficos/80.png differ
diff --git a/compatibility/assets/data/graficos/8000.png b/compatibility/assets/data/graficos/8000.png
new file mode 100644
index 00000000..cf085636
Binary files /dev/null and b/compatibility/assets/data/graficos/8000.png differ
diff --git a/compatibility/assets/data/graficos/8001.png b/compatibility/assets/data/graficos/8001.png
new file mode 100644
index 00000000..4673386d
Binary files /dev/null and b/compatibility/assets/data/graficos/8001.png differ
diff --git a/compatibility/assets/data/graficos/8002.png b/compatibility/assets/data/graficos/8002.png
new file mode 100644
index 00000000..d9aac9af
Binary files /dev/null and b/compatibility/assets/data/graficos/8002.png differ
diff --git a/compatibility/assets/data/graficos/8003.png b/compatibility/assets/data/graficos/8003.png
new file mode 100644
index 00000000..d169beca
Binary files /dev/null and b/compatibility/assets/data/graficos/8003.png differ
diff --git a/compatibility/assets/data/graficos/8004.png b/compatibility/assets/data/graficos/8004.png
new file mode 100644
index 00000000..6f6eca18
Binary files /dev/null and b/compatibility/assets/data/graficos/8004.png differ
diff --git a/compatibility/assets/data/graficos/8005.png b/compatibility/assets/data/graficos/8005.png
new file mode 100644
index 00000000..8dd21b58
Binary files /dev/null and b/compatibility/assets/data/graficos/8005.png differ
diff --git a/compatibility/assets/data/graficos/8006.png b/compatibility/assets/data/graficos/8006.png
new file mode 100644
index 00000000..bc64d924
Binary files /dev/null and b/compatibility/assets/data/graficos/8006.png differ
diff --git a/compatibility/assets/data/graficos/8007.png b/compatibility/assets/data/graficos/8007.png
new file mode 100644
index 00000000..6561040b
Binary files /dev/null and b/compatibility/assets/data/graficos/8007.png differ
diff --git a/compatibility/assets/data/graficos/8008.png b/compatibility/assets/data/graficos/8008.png
new file mode 100644
index 00000000..3348e382
Binary files /dev/null and b/compatibility/assets/data/graficos/8008.png differ
diff --git a/compatibility/assets/data/graficos/8009.png b/compatibility/assets/data/graficos/8009.png
new file mode 100644
index 00000000..e1750ec0
Binary files /dev/null and b/compatibility/assets/data/graficos/8009.png differ
diff --git a/compatibility/assets/data/graficos/8010.png b/compatibility/assets/data/graficos/8010.png
new file mode 100644
index 00000000..1ec666b2
Binary files /dev/null and b/compatibility/assets/data/graficos/8010.png differ
diff --git a/compatibility/assets/data/graficos/8011.png b/compatibility/assets/data/graficos/8011.png
new file mode 100644
index 00000000..ebd4ace1
Binary files /dev/null and b/compatibility/assets/data/graficos/8011.png differ
diff --git a/compatibility/assets/data/graficos/8012.png b/compatibility/assets/data/graficos/8012.png
new file mode 100644
index 00000000..96e1cbb9
Binary files /dev/null and b/compatibility/assets/data/graficos/8012.png differ
diff --git a/compatibility/assets/data/graficos/8013.png b/compatibility/assets/data/graficos/8013.png
new file mode 100644
index 00000000..4f94e1b0
Binary files /dev/null and b/compatibility/assets/data/graficos/8013.png differ
diff --git a/compatibility/assets/data/graficos/8014.png b/compatibility/assets/data/graficos/8014.png
new file mode 100644
index 00000000..7a722363
Binary files /dev/null and b/compatibility/assets/data/graficos/8014.png differ
diff --git a/compatibility/assets/data/graficos/8015.png b/compatibility/assets/data/graficos/8015.png
new file mode 100644
index 00000000..0cd9bf6d
Binary files /dev/null and b/compatibility/assets/data/graficos/8015.png differ
diff --git a/compatibility/assets/data/graficos/8016.png b/compatibility/assets/data/graficos/8016.png
new file mode 100644
index 00000000..26623cef
Binary files /dev/null and b/compatibility/assets/data/graficos/8016.png differ
diff --git a/compatibility/assets/data/graficos/8017.png b/compatibility/assets/data/graficos/8017.png
new file mode 100644
index 00000000..13de0361
Binary files /dev/null and b/compatibility/assets/data/graficos/8017.png differ
diff --git a/compatibility/assets/data/graficos/8018.png b/compatibility/assets/data/graficos/8018.png
new file mode 100644
index 00000000..ccab9fc8
Binary files /dev/null and b/compatibility/assets/data/graficos/8018.png differ
diff --git a/compatibility/assets/data/graficos/8019.png b/compatibility/assets/data/graficos/8019.png
new file mode 100644
index 00000000..ddf2ee77
Binary files /dev/null and b/compatibility/assets/data/graficos/8019.png differ
diff --git a/compatibility/assets/data/graficos/8020.png b/compatibility/assets/data/graficos/8020.png
new file mode 100644
index 00000000..e67aeb33
Binary files /dev/null and b/compatibility/assets/data/graficos/8020.png differ
diff --git a/compatibility/assets/data/graficos/8021.png b/compatibility/assets/data/graficos/8021.png
new file mode 100644
index 00000000..e17b0038
Binary files /dev/null and b/compatibility/assets/data/graficos/8021.png differ
diff --git a/compatibility/assets/data/graficos/8022.png b/compatibility/assets/data/graficos/8022.png
new file mode 100644
index 00000000..d33b36eb
Binary files /dev/null and b/compatibility/assets/data/graficos/8022.png differ
diff --git a/compatibility/assets/data/graficos/8023.png b/compatibility/assets/data/graficos/8023.png
new file mode 100644
index 00000000..afdc56d2
Binary files /dev/null and b/compatibility/assets/data/graficos/8023.png differ
diff --git a/compatibility/assets/data/graficos/8024.png b/compatibility/assets/data/graficos/8024.png
new file mode 100644
index 00000000..5be21de2
Binary files /dev/null and b/compatibility/assets/data/graficos/8024.png differ
diff --git a/compatibility/assets/data/graficos/8025.png b/compatibility/assets/data/graficos/8025.png
new file mode 100644
index 00000000..c139613e
Binary files /dev/null and b/compatibility/assets/data/graficos/8025.png differ
diff --git a/compatibility/assets/data/graficos/8026.png b/compatibility/assets/data/graficos/8026.png
new file mode 100644
index 00000000..befee3ff
Binary files /dev/null and b/compatibility/assets/data/graficos/8026.png differ
diff --git a/compatibility/assets/data/graficos/8027.png b/compatibility/assets/data/graficos/8027.png
new file mode 100644
index 00000000..ba302953
Binary files /dev/null and b/compatibility/assets/data/graficos/8027.png differ
diff --git a/compatibility/assets/data/graficos/8028.png b/compatibility/assets/data/graficos/8028.png
new file mode 100644
index 00000000..9fa50f50
Binary files /dev/null and b/compatibility/assets/data/graficos/8028.png differ
diff --git a/compatibility/assets/data/graficos/8029.png b/compatibility/assets/data/graficos/8029.png
new file mode 100644
index 00000000..ed673151
Binary files /dev/null and b/compatibility/assets/data/graficos/8029.png differ
diff --git a/compatibility/assets/data/graficos/8030.png b/compatibility/assets/data/graficos/8030.png
new file mode 100644
index 00000000..1011974b
Binary files /dev/null and b/compatibility/assets/data/graficos/8030.png differ
diff --git a/compatibility/assets/data/graficos/8031.png b/compatibility/assets/data/graficos/8031.png
new file mode 100644
index 00000000..46c839cb
Binary files /dev/null and b/compatibility/assets/data/graficos/8031.png differ
diff --git a/compatibility/assets/data/graficos/8032.png b/compatibility/assets/data/graficos/8032.png
new file mode 100644
index 00000000..ae9bc179
Binary files /dev/null and b/compatibility/assets/data/graficos/8032.png differ
diff --git a/compatibility/assets/data/graficos/8033.png b/compatibility/assets/data/graficos/8033.png
new file mode 100644
index 00000000..4a2d6048
Binary files /dev/null and b/compatibility/assets/data/graficos/8033.png differ
diff --git a/compatibility/assets/data/graficos/8034.png b/compatibility/assets/data/graficos/8034.png
new file mode 100644
index 00000000..3032e784
Binary files /dev/null and b/compatibility/assets/data/graficos/8034.png differ
diff --git a/compatibility/assets/data/graficos/8035.png b/compatibility/assets/data/graficos/8035.png
new file mode 100644
index 00000000..f5492f59
Binary files /dev/null and b/compatibility/assets/data/graficos/8035.png differ
diff --git a/compatibility/assets/data/graficos/8036.png b/compatibility/assets/data/graficos/8036.png
new file mode 100644
index 00000000..b26420a9
Binary files /dev/null and b/compatibility/assets/data/graficos/8036.png differ
diff --git a/compatibility/assets/data/graficos/8037.png b/compatibility/assets/data/graficos/8037.png
new file mode 100644
index 00000000..d5ef9c3e
Binary files /dev/null and b/compatibility/assets/data/graficos/8037.png differ
diff --git a/compatibility/assets/data/graficos/8038.png b/compatibility/assets/data/graficos/8038.png
new file mode 100644
index 00000000..cb828871
Binary files /dev/null and b/compatibility/assets/data/graficos/8038.png differ
diff --git a/compatibility/assets/data/graficos/8039.png b/compatibility/assets/data/graficos/8039.png
new file mode 100644
index 00000000..1839b15b
Binary files /dev/null and b/compatibility/assets/data/graficos/8039.png differ
diff --git a/compatibility/assets/data/graficos/8040.png b/compatibility/assets/data/graficos/8040.png
new file mode 100644
index 00000000..3b623bd2
Binary files /dev/null and b/compatibility/assets/data/graficos/8040.png differ
diff --git a/compatibility/assets/data/graficos/8041.png b/compatibility/assets/data/graficos/8041.png
new file mode 100644
index 00000000..e4211759
Binary files /dev/null and b/compatibility/assets/data/graficos/8041.png differ
diff --git a/compatibility/assets/data/graficos/8042.png b/compatibility/assets/data/graficos/8042.png
new file mode 100644
index 00000000..166c2e61
Binary files /dev/null and b/compatibility/assets/data/graficos/8042.png differ
diff --git a/compatibility/assets/data/graficos/8043.png b/compatibility/assets/data/graficos/8043.png
new file mode 100644
index 00000000..b357009a
Binary files /dev/null and b/compatibility/assets/data/graficos/8043.png differ
diff --git a/compatibility/assets/data/graficos/8044.png b/compatibility/assets/data/graficos/8044.png
new file mode 100644
index 00000000..50b0efe8
Binary files /dev/null and b/compatibility/assets/data/graficos/8044.png differ
diff --git a/compatibility/assets/data/graficos/8045.png b/compatibility/assets/data/graficos/8045.png
new file mode 100644
index 00000000..4025438f
Binary files /dev/null and b/compatibility/assets/data/graficos/8045.png differ
diff --git a/compatibility/assets/data/graficos/8046.png b/compatibility/assets/data/graficos/8046.png
new file mode 100644
index 00000000..88fc1c2e
Binary files /dev/null and b/compatibility/assets/data/graficos/8046.png differ
diff --git a/compatibility/assets/data/graficos/8047.png b/compatibility/assets/data/graficos/8047.png
new file mode 100644
index 00000000..35d6f385
Binary files /dev/null and b/compatibility/assets/data/graficos/8047.png differ
diff --git a/compatibility/assets/data/graficos/8048.png b/compatibility/assets/data/graficos/8048.png
new file mode 100644
index 00000000..0ac0f7aa
Binary files /dev/null and b/compatibility/assets/data/graficos/8048.png differ
diff --git a/compatibility/assets/data/graficos/8049.png b/compatibility/assets/data/graficos/8049.png
new file mode 100644
index 00000000..4242b8d4
Binary files /dev/null and b/compatibility/assets/data/graficos/8049.png differ
diff --git a/compatibility/assets/data/graficos/8050.png b/compatibility/assets/data/graficos/8050.png
new file mode 100644
index 00000000..4d207e0e
Binary files /dev/null and b/compatibility/assets/data/graficos/8050.png differ
diff --git a/compatibility/assets/data/graficos/8051.png b/compatibility/assets/data/graficos/8051.png
new file mode 100644
index 00000000..76ddc27a
Binary files /dev/null and b/compatibility/assets/data/graficos/8051.png differ
diff --git a/compatibility/assets/data/graficos/8052.png b/compatibility/assets/data/graficos/8052.png
new file mode 100644
index 00000000..dce2a5e2
Binary files /dev/null and b/compatibility/assets/data/graficos/8052.png differ
diff --git a/compatibility/assets/data/graficos/8053.png b/compatibility/assets/data/graficos/8053.png
new file mode 100644
index 00000000..7ebf3b4d
Binary files /dev/null and b/compatibility/assets/data/graficos/8053.png differ
diff --git a/compatibility/assets/data/graficos/8054.png b/compatibility/assets/data/graficos/8054.png
new file mode 100644
index 00000000..770ec7e8
Binary files /dev/null and b/compatibility/assets/data/graficos/8054.png differ
diff --git a/compatibility/assets/data/graficos/8055.png b/compatibility/assets/data/graficos/8055.png
new file mode 100644
index 00000000..eb3ce497
Binary files /dev/null and b/compatibility/assets/data/graficos/8055.png differ
diff --git a/compatibility/assets/data/graficos/8056.png b/compatibility/assets/data/graficos/8056.png
new file mode 100644
index 00000000..4ce3d759
Binary files /dev/null and b/compatibility/assets/data/graficos/8056.png differ
diff --git a/compatibility/assets/data/graficos/8057.png b/compatibility/assets/data/graficos/8057.png
new file mode 100644
index 00000000..c6e017d7
Binary files /dev/null and b/compatibility/assets/data/graficos/8057.png differ
diff --git a/compatibility/assets/data/graficos/8058.png b/compatibility/assets/data/graficos/8058.png
new file mode 100644
index 00000000..11f78f24
Binary files /dev/null and b/compatibility/assets/data/graficos/8058.png differ
diff --git a/compatibility/assets/data/graficos/8059.png b/compatibility/assets/data/graficos/8059.png
new file mode 100644
index 00000000..77f1aa19
Binary files /dev/null and b/compatibility/assets/data/graficos/8059.png differ
diff --git a/compatibility/assets/data/graficos/8060.png b/compatibility/assets/data/graficos/8060.png
new file mode 100644
index 00000000..788ee05c
Binary files /dev/null and b/compatibility/assets/data/graficos/8060.png differ
diff --git a/compatibility/assets/data/graficos/8061.png b/compatibility/assets/data/graficos/8061.png
new file mode 100644
index 00000000..5c639f75
Binary files /dev/null and b/compatibility/assets/data/graficos/8061.png differ
diff --git a/compatibility/assets/data/graficos/8062.png b/compatibility/assets/data/graficos/8062.png
new file mode 100644
index 00000000..6635c026
Binary files /dev/null and b/compatibility/assets/data/graficos/8062.png differ
diff --git a/compatibility/assets/data/graficos/8063.png b/compatibility/assets/data/graficos/8063.png
new file mode 100644
index 00000000..f476654f
Binary files /dev/null and b/compatibility/assets/data/graficos/8063.png differ
diff --git a/compatibility/assets/data/graficos/8064.png b/compatibility/assets/data/graficos/8064.png
new file mode 100644
index 00000000..f476654f
Binary files /dev/null and b/compatibility/assets/data/graficos/8064.png differ
diff --git a/compatibility/assets/data/graficos/8065.png b/compatibility/assets/data/graficos/8065.png
new file mode 100644
index 00000000..312d5c55
Binary files /dev/null and b/compatibility/assets/data/graficos/8065.png differ
diff --git a/compatibility/assets/data/graficos/8066.png b/compatibility/assets/data/graficos/8066.png
new file mode 100644
index 00000000..6e9d677d
Binary files /dev/null and b/compatibility/assets/data/graficos/8066.png differ
diff --git a/compatibility/assets/data/graficos/8067.png b/compatibility/assets/data/graficos/8067.png
new file mode 100644
index 00000000..0aebf345
Binary files /dev/null and b/compatibility/assets/data/graficos/8067.png differ
diff --git a/compatibility/assets/data/graficos/8068.png b/compatibility/assets/data/graficos/8068.png
new file mode 100644
index 00000000..f54b14c5
Binary files /dev/null and b/compatibility/assets/data/graficos/8068.png differ
diff --git a/compatibility/assets/data/graficos/8069.png b/compatibility/assets/data/graficos/8069.png
new file mode 100644
index 00000000..d4397e60
Binary files /dev/null and b/compatibility/assets/data/graficos/8069.png differ
diff --git a/compatibility/assets/data/graficos/8070.png b/compatibility/assets/data/graficos/8070.png
new file mode 100644
index 00000000..2f50ca87
Binary files /dev/null and b/compatibility/assets/data/graficos/8070.png differ
diff --git a/compatibility/assets/data/graficos/8071.png b/compatibility/assets/data/graficos/8071.png
new file mode 100644
index 00000000..8c164b86
Binary files /dev/null and b/compatibility/assets/data/graficos/8071.png differ
diff --git a/compatibility/assets/data/graficos/8072.png b/compatibility/assets/data/graficos/8072.png
new file mode 100644
index 00000000..e21b10f7
Binary files /dev/null and b/compatibility/assets/data/graficos/8072.png differ
diff --git a/compatibility/assets/data/graficos/8073.png b/compatibility/assets/data/graficos/8073.png
new file mode 100644
index 00000000..3a43d73a
Binary files /dev/null and b/compatibility/assets/data/graficos/8073.png differ
diff --git a/compatibility/assets/data/graficos/8074.png b/compatibility/assets/data/graficos/8074.png
new file mode 100644
index 00000000..eae895a4
Binary files /dev/null and b/compatibility/assets/data/graficos/8074.png differ
diff --git a/compatibility/assets/data/graficos/8075.png b/compatibility/assets/data/graficos/8075.png
new file mode 100644
index 00000000..73f9df57
Binary files /dev/null and b/compatibility/assets/data/graficos/8075.png differ
diff --git a/compatibility/assets/data/graficos/8076.png b/compatibility/assets/data/graficos/8076.png
new file mode 100644
index 00000000..d58bfeca
Binary files /dev/null and b/compatibility/assets/data/graficos/8076.png differ
diff --git a/compatibility/assets/data/graficos/8077.png b/compatibility/assets/data/graficos/8077.png
new file mode 100644
index 00000000..9bda0bc6
Binary files /dev/null and b/compatibility/assets/data/graficos/8077.png differ
diff --git a/compatibility/assets/data/graficos/8078.png b/compatibility/assets/data/graficos/8078.png
new file mode 100644
index 00000000..2daa4d2e
Binary files /dev/null and b/compatibility/assets/data/graficos/8078.png differ
diff --git a/compatibility/assets/data/graficos/8079.png b/compatibility/assets/data/graficos/8079.png
new file mode 100644
index 00000000..54c2b04c
Binary files /dev/null and b/compatibility/assets/data/graficos/8079.png differ
diff --git a/compatibility/assets/data/graficos/8080.png b/compatibility/assets/data/graficos/8080.png
new file mode 100644
index 00000000..1d25b5fd
Binary files /dev/null and b/compatibility/assets/data/graficos/8080.png differ
diff --git a/compatibility/assets/data/graficos/8081.png b/compatibility/assets/data/graficos/8081.png
new file mode 100644
index 00000000..b558f67b
Binary files /dev/null and b/compatibility/assets/data/graficos/8081.png differ
diff --git a/compatibility/assets/data/graficos/8082.png b/compatibility/assets/data/graficos/8082.png
new file mode 100644
index 00000000..a3539c37
Binary files /dev/null and b/compatibility/assets/data/graficos/8082.png differ
diff --git a/compatibility/assets/data/graficos/8083.png b/compatibility/assets/data/graficos/8083.png
new file mode 100644
index 00000000..a53724c4
Binary files /dev/null and b/compatibility/assets/data/graficos/8083.png differ
diff --git a/compatibility/assets/data/graficos/8084.png b/compatibility/assets/data/graficos/8084.png
new file mode 100644
index 00000000..178fcede
Binary files /dev/null and b/compatibility/assets/data/graficos/8084.png differ
diff --git a/compatibility/assets/data/graficos/8085.png b/compatibility/assets/data/graficos/8085.png
new file mode 100644
index 00000000..115fe052
Binary files /dev/null and b/compatibility/assets/data/graficos/8085.png differ
diff --git a/compatibility/assets/data/graficos/8086.png b/compatibility/assets/data/graficos/8086.png
new file mode 100644
index 00000000..92ac92f6
Binary files /dev/null and b/compatibility/assets/data/graficos/8086.png differ
diff --git a/compatibility/assets/data/graficos/8087.png b/compatibility/assets/data/graficos/8087.png
new file mode 100644
index 00000000..e2bf8cc3
Binary files /dev/null and b/compatibility/assets/data/graficos/8087.png differ
diff --git a/compatibility/assets/data/graficos/8088.png b/compatibility/assets/data/graficos/8088.png
new file mode 100644
index 00000000..0fbdffe8
Binary files /dev/null and b/compatibility/assets/data/graficos/8088.png differ
diff --git a/compatibility/assets/data/graficos/8089.png b/compatibility/assets/data/graficos/8089.png
new file mode 100644
index 00000000..678a66fb
Binary files /dev/null and b/compatibility/assets/data/graficos/8089.png differ
diff --git a/compatibility/assets/data/graficos/8090.png b/compatibility/assets/data/graficos/8090.png
new file mode 100644
index 00000000..0e008cad
Binary files /dev/null and b/compatibility/assets/data/graficos/8090.png differ
diff --git a/compatibility/assets/data/graficos/8091.png b/compatibility/assets/data/graficos/8091.png
new file mode 100644
index 00000000..bb515a3a
Binary files /dev/null and b/compatibility/assets/data/graficos/8091.png differ
diff --git a/compatibility/assets/data/graficos/8092.png b/compatibility/assets/data/graficos/8092.png
new file mode 100644
index 00000000..64533978
Binary files /dev/null and b/compatibility/assets/data/graficos/8092.png differ
diff --git a/compatibility/assets/data/graficos/8093.png b/compatibility/assets/data/graficos/8093.png
new file mode 100644
index 00000000..9c4a950a
Binary files /dev/null and b/compatibility/assets/data/graficos/8093.png differ
diff --git a/compatibility/assets/data/graficos/8094.png b/compatibility/assets/data/graficos/8094.png
new file mode 100644
index 00000000..d11b48d6
Binary files /dev/null and b/compatibility/assets/data/graficos/8094.png differ
diff --git a/compatibility/assets/data/graficos/8095.png b/compatibility/assets/data/graficos/8095.png
new file mode 100644
index 00000000..1e327fc6
Binary files /dev/null and b/compatibility/assets/data/graficos/8095.png differ
diff --git a/compatibility/assets/data/graficos/8096.png b/compatibility/assets/data/graficos/8096.png
new file mode 100644
index 00000000..b34588de
Binary files /dev/null and b/compatibility/assets/data/graficos/8096.png differ
diff --git a/compatibility/assets/data/graficos/8097.png b/compatibility/assets/data/graficos/8097.png
new file mode 100644
index 00000000..e8f0f5b6
Binary files /dev/null and b/compatibility/assets/data/graficos/8097.png differ
diff --git a/compatibility/assets/data/graficos/8098.png b/compatibility/assets/data/graficos/8098.png
new file mode 100644
index 00000000..5a0dd44c
Binary files /dev/null and b/compatibility/assets/data/graficos/8098.png differ
diff --git a/compatibility/assets/data/graficos/8099.png b/compatibility/assets/data/graficos/8099.png
new file mode 100644
index 00000000..64517d71
Binary files /dev/null and b/compatibility/assets/data/graficos/8099.png differ
diff --git a/compatibility/assets/data/graficos/81.png b/compatibility/assets/data/graficos/81.png
new file mode 100644
index 00000000..943f90e8
Binary files /dev/null and b/compatibility/assets/data/graficos/81.png differ
diff --git a/compatibility/assets/data/graficos/8100.png b/compatibility/assets/data/graficos/8100.png
new file mode 100644
index 00000000..5ab5ac29
Binary files /dev/null and b/compatibility/assets/data/graficos/8100.png differ
diff --git a/compatibility/assets/data/graficos/8101.png b/compatibility/assets/data/graficos/8101.png
new file mode 100644
index 00000000..6fc2a8af
Binary files /dev/null and b/compatibility/assets/data/graficos/8101.png differ
diff --git a/compatibility/assets/data/graficos/8102.png b/compatibility/assets/data/graficos/8102.png
new file mode 100644
index 00000000..9310d9ab
Binary files /dev/null and b/compatibility/assets/data/graficos/8102.png differ
diff --git a/compatibility/assets/data/graficos/8103.png b/compatibility/assets/data/graficos/8103.png
new file mode 100644
index 00000000..4fa02535
Binary files /dev/null and b/compatibility/assets/data/graficos/8103.png differ
diff --git a/compatibility/assets/data/graficos/8104.png b/compatibility/assets/data/graficos/8104.png
new file mode 100644
index 00000000..379ffe41
Binary files /dev/null and b/compatibility/assets/data/graficos/8104.png differ
diff --git a/compatibility/assets/data/graficos/8105.png b/compatibility/assets/data/graficos/8105.png
new file mode 100644
index 00000000..3e279f2d
Binary files /dev/null and b/compatibility/assets/data/graficos/8105.png differ
diff --git a/compatibility/assets/data/graficos/8106.png b/compatibility/assets/data/graficos/8106.png
new file mode 100644
index 00000000..f6276fe9
Binary files /dev/null and b/compatibility/assets/data/graficos/8106.png differ
diff --git a/compatibility/assets/data/graficos/8107.png b/compatibility/assets/data/graficos/8107.png
new file mode 100644
index 00000000..791c37aa
Binary files /dev/null and b/compatibility/assets/data/graficos/8107.png differ
diff --git a/compatibility/assets/data/graficos/8108.png b/compatibility/assets/data/graficos/8108.png
new file mode 100644
index 00000000..19bfc599
Binary files /dev/null and b/compatibility/assets/data/graficos/8108.png differ
diff --git a/compatibility/assets/data/graficos/8109.png b/compatibility/assets/data/graficos/8109.png
new file mode 100644
index 00000000..a4ba1871
Binary files /dev/null and b/compatibility/assets/data/graficos/8109.png differ
diff --git a/compatibility/assets/data/graficos/8110.png b/compatibility/assets/data/graficos/8110.png
new file mode 100644
index 00000000..52a81838
Binary files /dev/null and b/compatibility/assets/data/graficos/8110.png differ
diff --git a/compatibility/assets/data/graficos/8111.png b/compatibility/assets/data/graficos/8111.png
new file mode 100644
index 00000000..ba3beaa4
Binary files /dev/null and b/compatibility/assets/data/graficos/8111.png differ
diff --git a/compatibility/assets/data/graficos/8112.png b/compatibility/assets/data/graficos/8112.png
new file mode 100644
index 00000000..548ba758
Binary files /dev/null and b/compatibility/assets/data/graficos/8112.png differ
diff --git a/compatibility/assets/data/graficos/8113.png b/compatibility/assets/data/graficos/8113.png
new file mode 100644
index 00000000..599dd659
Binary files /dev/null and b/compatibility/assets/data/graficos/8113.png differ
diff --git a/compatibility/assets/data/graficos/8114.png b/compatibility/assets/data/graficos/8114.png
new file mode 100644
index 00000000..84756c61
Binary files /dev/null and b/compatibility/assets/data/graficos/8114.png differ
diff --git a/compatibility/assets/data/graficos/8115.png b/compatibility/assets/data/graficos/8115.png
new file mode 100644
index 00000000..72101e87
Binary files /dev/null and b/compatibility/assets/data/graficos/8115.png differ
diff --git a/compatibility/assets/data/graficos/8116.png b/compatibility/assets/data/graficos/8116.png
new file mode 100644
index 00000000..c32fc305
Binary files /dev/null and b/compatibility/assets/data/graficos/8116.png differ
diff --git a/compatibility/assets/data/graficos/8117.png b/compatibility/assets/data/graficos/8117.png
new file mode 100644
index 00000000..0558d30d
Binary files /dev/null and b/compatibility/assets/data/graficos/8117.png differ
diff --git a/compatibility/assets/data/graficos/8118.png b/compatibility/assets/data/graficos/8118.png
new file mode 100644
index 00000000..7f75e7b3
Binary files /dev/null and b/compatibility/assets/data/graficos/8118.png differ
diff --git a/compatibility/assets/data/graficos/8119.png b/compatibility/assets/data/graficos/8119.png
new file mode 100644
index 00000000..c6b12bdd
Binary files /dev/null and b/compatibility/assets/data/graficos/8119.png differ
diff --git a/compatibility/assets/data/graficos/8120.png b/compatibility/assets/data/graficos/8120.png
new file mode 100644
index 00000000..d40479f8
Binary files /dev/null and b/compatibility/assets/data/graficos/8120.png differ
diff --git a/compatibility/assets/data/graficos/8121.png b/compatibility/assets/data/graficos/8121.png
new file mode 100644
index 00000000..3a32ba74
Binary files /dev/null and b/compatibility/assets/data/graficos/8121.png differ
diff --git a/compatibility/assets/data/graficos/8122.png b/compatibility/assets/data/graficos/8122.png
new file mode 100644
index 00000000..07578999
Binary files /dev/null and b/compatibility/assets/data/graficos/8122.png differ
diff --git a/compatibility/assets/data/graficos/8123.png b/compatibility/assets/data/graficos/8123.png
new file mode 100644
index 00000000..f6d025a8
Binary files /dev/null and b/compatibility/assets/data/graficos/8123.png differ
diff --git a/compatibility/assets/data/graficos/8124.png b/compatibility/assets/data/graficos/8124.png
new file mode 100644
index 00000000..cd798dae
Binary files /dev/null and b/compatibility/assets/data/graficos/8124.png differ
diff --git a/compatibility/assets/data/graficos/8125.png b/compatibility/assets/data/graficos/8125.png
new file mode 100644
index 00000000..9343bc62
Binary files /dev/null and b/compatibility/assets/data/graficos/8125.png differ
diff --git a/compatibility/assets/data/graficos/8126.png b/compatibility/assets/data/graficos/8126.png
new file mode 100644
index 00000000..4ee97035
Binary files /dev/null and b/compatibility/assets/data/graficos/8126.png differ
diff --git a/compatibility/assets/data/graficos/8127.png b/compatibility/assets/data/graficos/8127.png
new file mode 100644
index 00000000..f331a492
Binary files /dev/null and b/compatibility/assets/data/graficos/8127.png differ
diff --git a/compatibility/assets/data/graficos/8128.png b/compatibility/assets/data/graficos/8128.png
new file mode 100644
index 00000000..252166e0
Binary files /dev/null and b/compatibility/assets/data/graficos/8128.png differ
diff --git a/compatibility/assets/data/graficos/8129.png b/compatibility/assets/data/graficos/8129.png
new file mode 100644
index 00000000..976cc9a5
Binary files /dev/null and b/compatibility/assets/data/graficos/8129.png differ
diff --git a/compatibility/assets/data/graficos/8130.png b/compatibility/assets/data/graficos/8130.png
new file mode 100644
index 00000000..08180380
Binary files /dev/null and b/compatibility/assets/data/graficos/8130.png differ
diff --git a/compatibility/assets/data/graficos/8131.png b/compatibility/assets/data/graficos/8131.png
new file mode 100644
index 00000000..b0ee31fb
Binary files /dev/null and b/compatibility/assets/data/graficos/8131.png differ
diff --git a/compatibility/assets/data/graficos/8132.png b/compatibility/assets/data/graficos/8132.png
new file mode 100644
index 00000000..35071377
Binary files /dev/null and b/compatibility/assets/data/graficos/8132.png differ
diff --git a/compatibility/assets/data/graficos/8133.png b/compatibility/assets/data/graficos/8133.png
new file mode 100644
index 00000000..dfd2f38a
Binary files /dev/null and b/compatibility/assets/data/graficos/8133.png differ
diff --git a/compatibility/assets/data/graficos/8134.png b/compatibility/assets/data/graficos/8134.png
new file mode 100644
index 00000000..1e904433
Binary files /dev/null and b/compatibility/assets/data/graficos/8134.png differ
diff --git a/compatibility/assets/data/graficos/8135.png b/compatibility/assets/data/graficos/8135.png
new file mode 100644
index 00000000..ce96fcd5
Binary files /dev/null and b/compatibility/assets/data/graficos/8135.png differ
diff --git a/compatibility/assets/data/graficos/8136.png b/compatibility/assets/data/graficos/8136.png
new file mode 100644
index 00000000..7bdff2b2
Binary files /dev/null and b/compatibility/assets/data/graficos/8136.png differ
diff --git a/compatibility/assets/data/graficos/8137.png b/compatibility/assets/data/graficos/8137.png
new file mode 100644
index 00000000..2f687878
Binary files /dev/null and b/compatibility/assets/data/graficos/8137.png differ
diff --git a/compatibility/assets/data/graficos/8138.png b/compatibility/assets/data/graficos/8138.png
new file mode 100644
index 00000000..c6716cdd
Binary files /dev/null and b/compatibility/assets/data/graficos/8138.png differ
diff --git a/compatibility/assets/data/graficos/8139.png b/compatibility/assets/data/graficos/8139.png
new file mode 100644
index 00000000..9a70cc80
Binary files /dev/null and b/compatibility/assets/data/graficos/8139.png differ
diff --git a/compatibility/assets/data/graficos/8140.png b/compatibility/assets/data/graficos/8140.png
new file mode 100644
index 00000000..1b1d15c9
Binary files /dev/null and b/compatibility/assets/data/graficos/8140.png differ
diff --git a/compatibility/assets/data/graficos/8141.png b/compatibility/assets/data/graficos/8141.png
new file mode 100644
index 00000000..d2a76cf6
Binary files /dev/null and b/compatibility/assets/data/graficos/8141.png differ
diff --git a/compatibility/assets/data/graficos/8142.png b/compatibility/assets/data/graficos/8142.png
new file mode 100644
index 00000000..851a7dfe
Binary files /dev/null and b/compatibility/assets/data/graficos/8142.png differ
diff --git a/compatibility/assets/data/graficos/8143.png b/compatibility/assets/data/graficos/8143.png
new file mode 100644
index 00000000..b5652d50
Binary files /dev/null and b/compatibility/assets/data/graficos/8143.png differ
diff --git a/compatibility/assets/data/graficos/8144.png b/compatibility/assets/data/graficos/8144.png
new file mode 100644
index 00000000..6622b804
Binary files /dev/null and b/compatibility/assets/data/graficos/8144.png differ
diff --git a/compatibility/assets/data/graficos/8145.png b/compatibility/assets/data/graficos/8145.png
new file mode 100644
index 00000000..c3bdca44
Binary files /dev/null and b/compatibility/assets/data/graficos/8145.png differ
diff --git a/compatibility/assets/data/graficos/8146.png b/compatibility/assets/data/graficos/8146.png
new file mode 100644
index 00000000..eaf0e861
Binary files /dev/null and b/compatibility/assets/data/graficos/8146.png differ
diff --git a/compatibility/assets/data/graficos/8147.png b/compatibility/assets/data/graficos/8147.png
new file mode 100644
index 00000000..bc284cb5
Binary files /dev/null and b/compatibility/assets/data/graficos/8147.png differ
diff --git a/compatibility/assets/data/graficos/8148.png b/compatibility/assets/data/graficos/8148.png
new file mode 100644
index 00000000..2347f44a
Binary files /dev/null and b/compatibility/assets/data/graficos/8148.png differ
diff --git a/compatibility/assets/data/graficos/8149.png b/compatibility/assets/data/graficos/8149.png
new file mode 100644
index 00000000..2b4f0e99
Binary files /dev/null and b/compatibility/assets/data/graficos/8149.png differ
diff --git a/compatibility/assets/data/graficos/8150.png b/compatibility/assets/data/graficos/8150.png
new file mode 100644
index 00000000..b8751af5
Binary files /dev/null and b/compatibility/assets/data/graficos/8150.png differ
diff --git a/compatibility/assets/data/graficos/8151.png b/compatibility/assets/data/graficos/8151.png
new file mode 100644
index 00000000..8d28e808
Binary files /dev/null and b/compatibility/assets/data/graficos/8151.png differ
diff --git a/compatibility/assets/data/graficos/8152.png b/compatibility/assets/data/graficos/8152.png
new file mode 100644
index 00000000..5e2882d4
Binary files /dev/null and b/compatibility/assets/data/graficos/8152.png differ
diff --git a/compatibility/assets/data/graficos/8153.png b/compatibility/assets/data/graficos/8153.png
new file mode 100644
index 00000000..65ae806a
Binary files /dev/null and b/compatibility/assets/data/graficos/8153.png differ
diff --git a/compatibility/assets/data/graficos/8154.png b/compatibility/assets/data/graficos/8154.png
new file mode 100644
index 00000000..c0384d6d
Binary files /dev/null and b/compatibility/assets/data/graficos/8154.png differ
diff --git a/compatibility/assets/data/graficos/8155.png b/compatibility/assets/data/graficos/8155.png
new file mode 100644
index 00000000..60efa5ec
Binary files /dev/null and b/compatibility/assets/data/graficos/8155.png differ
diff --git a/compatibility/assets/data/graficos/8156.png b/compatibility/assets/data/graficos/8156.png
new file mode 100644
index 00000000..d2e90a74
Binary files /dev/null and b/compatibility/assets/data/graficos/8156.png differ
diff --git a/compatibility/assets/data/graficos/8157.png b/compatibility/assets/data/graficos/8157.png
new file mode 100644
index 00000000..5080e9aa
Binary files /dev/null and b/compatibility/assets/data/graficos/8157.png differ
diff --git a/compatibility/assets/data/graficos/8158.png b/compatibility/assets/data/graficos/8158.png
new file mode 100644
index 00000000..5d4d1da4
Binary files /dev/null and b/compatibility/assets/data/graficos/8158.png differ
diff --git a/compatibility/assets/data/graficos/8159.png b/compatibility/assets/data/graficos/8159.png
new file mode 100644
index 00000000..a5a6e6b5
Binary files /dev/null and b/compatibility/assets/data/graficos/8159.png differ
diff --git a/compatibility/assets/data/graficos/8160.png b/compatibility/assets/data/graficos/8160.png
new file mode 100644
index 00000000..a144d671
Binary files /dev/null and b/compatibility/assets/data/graficos/8160.png differ
diff --git a/compatibility/assets/data/graficos/8161.png b/compatibility/assets/data/graficos/8161.png
new file mode 100644
index 00000000..b7297dfd
Binary files /dev/null and b/compatibility/assets/data/graficos/8161.png differ
diff --git a/compatibility/assets/data/graficos/8162.png b/compatibility/assets/data/graficos/8162.png
new file mode 100644
index 00000000..ea72d23e
Binary files /dev/null and b/compatibility/assets/data/graficos/8162.png differ
diff --git a/compatibility/assets/data/graficos/8163.png b/compatibility/assets/data/graficos/8163.png
new file mode 100644
index 00000000..b3ada07b
Binary files /dev/null and b/compatibility/assets/data/graficos/8163.png differ
diff --git a/compatibility/assets/data/graficos/8164.png b/compatibility/assets/data/graficos/8164.png
new file mode 100644
index 00000000..9bd239b1
Binary files /dev/null and b/compatibility/assets/data/graficos/8164.png differ
diff --git a/compatibility/assets/data/graficos/8165.png b/compatibility/assets/data/graficos/8165.png
new file mode 100644
index 00000000..9c1e002f
Binary files /dev/null and b/compatibility/assets/data/graficos/8165.png differ
diff --git a/compatibility/assets/data/graficos/8166.png b/compatibility/assets/data/graficos/8166.png
new file mode 100644
index 00000000..909d5f27
Binary files /dev/null and b/compatibility/assets/data/graficos/8166.png differ
diff --git a/compatibility/assets/data/graficos/8167.png b/compatibility/assets/data/graficos/8167.png
new file mode 100644
index 00000000..99543139
Binary files /dev/null and b/compatibility/assets/data/graficos/8167.png differ
diff --git a/compatibility/assets/data/graficos/8168.png b/compatibility/assets/data/graficos/8168.png
new file mode 100644
index 00000000..2e93b169
Binary files /dev/null and b/compatibility/assets/data/graficos/8168.png differ
diff --git a/compatibility/assets/data/graficos/8169.png b/compatibility/assets/data/graficos/8169.png
new file mode 100644
index 00000000..e4360c2c
Binary files /dev/null and b/compatibility/assets/data/graficos/8169.png differ
diff --git a/compatibility/assets/data/graficos/8170.png b/compatibility/assets/data/graficos/8170.png
new file mode 100644
index 00000000..ca8dcbb9
Binary files /dev/null and b/compatibility/assets/data/graficos/8170.png differ
diff --git a/compatibility/assets/data/graficos/8171.png b/compatibility/assets/data/graficos/8171.png
new file mode 100644
index 00000000..566636fa
Binary files /dev/null and b/compatibility/assets/data/graficos/8171.png differ
diff --git a/compatibility/assets/data/graficos/8172.png b/compatibility/assets/data/graficos/8172.png
new file mode 100644
index 00000000..b7ce632c
Binary files /dev/null and b/compatibility/assets/data/graficos/8172.png differ
diff --git a/compatibility/assets/data/graficos/8173.png b/compatibility/assets/data/graficos/8173.png
new file mode 100644
index 00000000..7a07a6ff
Binary files /dev/null and b/compatibility/assets/data/graficos/8173.png differ
diff --git a/compatibility/assets/data/graficos/8174.png b/compatibility/assets/data/graficos/8174.png
new file mode 100644
index 00000000..453a0bc7
Binary files /dev/null and b/compatibility/assets/data/graficos/8174.png differ
diff --git a/compatibility/assets/data/graficos/8175.png b/compatibility/assets/data/graficos/8175.png
new file mode 100644
index 00000000..8e7a5603
Binary files /dev/null and b/compatibility/assets/data/graficos/8175.png differ
diff --git a/compatibility/assets/data/graficos/8176.png b/compatibility/assets/data/graficos/8176.png
new file mode 100644
index 00000000..67062e71
Binary files /dev/null and b/compatibility/assets/data/graficos/8176.png differ
diff --git a/compatibility/assets/data/graficos/8177.png b/compatibility/assets/data/graficos/8177.png
new file mode 100644
index 00000000..629c4f4e
Binary files /dev/null and b/compatibility/assets/data/graficos/8177.png differ
diff --git a/compatibility/assets/data/graficos/8178.png b/compatibility/assets/data/graficos/8178.png
new file mode 100644
index 00000000..6415a505
Binary files /dev/null and b/compatibility/assets/data/graficos/8178.png differ
diff --git a/compatibility/assets/data/graficos/8179.png b/compatibility/assets/data/graficos/8179.png
new file mode 100644
index 00000000..1b43d6c4
Binary files /dev/null and b/compatibility/assets/data/graficos/8179.png differ
diff --git a/compatibility/assets/data/graficos/8180.png b/compatibility/assets/data/graficos/8180.png
new file mode 100644
index 00000000..5acbc845
Binary files /dev/null and b/compatibility/assets/data/graficos/8180.png differ
diff --git a/compatibility/assets/data/graficos/8181.png b/compatibility/assets/data/graficos/8181.png
new file mode 100644
index 00000000..937990ee
Binary files /dev/null and b/compatibility/assets/data/graficos/8181.png differ
diff --git a/compatibility/assets/data/graficos/8182.png b/compatibility/assets/data/graficos/8182.png
new file mode 100644
index 00000000..314959fa
Binary files /dev/null and b/compatibility/assets/data/graficos/8182.png differ
diff --git a/compatibility/assets/data/graficos/8183.png b/compatibility/assets/data/graficos/8183.png
new file mode 100644
index 00000000..840cb3b4
Binary files /dev/null and b/compatibility/assets/data/graficos/8183.png differ
diff --git a/compatibility/assets/data/graficos/8184.png b/compatibility/assets/data/graficos/8184.png
new file mode 100644
index 00000000..0c5f6b39
Binary files /dev/null and b/compatibility/assets/data/graficos/8184.png differ
diff --git a/compatibility/assets/data/graficos/8185.png b/compatibility/assets/data/graficos/8185.png
new file mode 100644
index 00000000..d9cb7862
Binary files /dev/null and b/compatibility/assets/data/graficos/8185.png differ
diff --git a/compatibility/assets/data/graficos/8186.png b/compatibility/assets/data/graficos/8186.png
new file mode 100644
index 00000000..2da81b41
Binary files /dev/null and b/compatibility/assets/data/graficos/8186.png differ
diff --git a/compatibility/assets/data/graficos/8187.png b/compatibility/assets/data/graficos/8187.png
new file mode 100644
index 00000000..4f3824fd
Binary files /dev/null and b/compatibility/assets/data/graficos/8187.png differ
diff --git a/compatibility/assets/data/graficos/8188.png b/compatibility/assets/data/graficos/8188.png
new file mode 100644
index 00000000..27020cb0
Binary files /dev/null and b/compatibility/assets/data/graficos/8188.png differ
diff --git a/compatibility/assets/data/graficos/8189.png b/compatibility/assets/data/graficos/8189.png
new file mode 100644
index 00000000..316c14a4
Binary files /dev/null and b/compatibility/assets/data/graficos/8189.png differ
diff --git a/compatibility/assets/data/graficos/8190.png b/compatibility/assets/data/graficos/8190.png
new file mode 100644
index 00000000..aadadbc7
Binary files /dev/null and b/compatibility/assets/data/graficos/8190.png differ
diff --git a/compatibility/assets/data/graficos/8191.png b/compatibility/assets/data/graficos/8191.png
new file mode 100644
index 00000000..5fc5d7db
Binary files /dev/null and b/compatibility/assets/data/graficos/8191.png differ
diff --git a/compatibility/assets/data/graficos/8192.png b/compatibility/assets/data/graficos/8192.png
new file mode 100644
index 00000000..da27fb62
Binary files /dev/null and b/compatibility/assets/data/graficos/8192.png differ
diff --git a/compatibility/assets/data/graficos/8193.png b/compatibility/assets/data/graficos/8193.png
new file mode 100644
index 00000000..79c52651
Binary files /dev/null and b/compatibility/assets/data/graficos/8193.png differ
diff --git a/compatibility/assets/data/graficos/8194.png b/compatibility/assets/data/graficos/8194.png
new file mode 100644
index 00000000..29bcbdae
Binary files /dev/null and b/compatibility/assets/data/graficos/8194.png differ
diff --git a/compatibility/assets/data/graficos/8195.png b/compatibility/assets/data/graficos/8195.png
new file mode 100644
index 00000000..e541ebb0
Binary files /dev/null and b/compatibility/assets/data/graficos/8195.png differ
diff --git a/compatibility/assets/data/graficos/8196.png b/compatibility/assets/data/graficos/8196.png
new file mode 100644
index 00000000..d92b39d8
Binary files /dev/null and b/compatibility/assets/data/graficos/8196.png differ
diff --git a/compatibility/assets/data/graficos/8197.png b/compatibility/assets/data/graficos/8197.png
new file mode 100644
index 00000000..04219114
Binary files /dev/null and b/compatibility/assets/data/graficos/8197.png differ
diff --git a/compatibility/assets/data/graficos/8198.png b/compatibility/assets/data/graficos/8198.png
new file mode 100644
index 00000000..1aca322d
Binary files /dev/null and b/compatibility/assets/data/graficos/8198.png differ
diff --git a/compatibility/assets/data/graficos/8199.png b/compatibility/assets/data/graficos/8199.png
new file mode 100644
index 00000000..29626a05
Binary files /dev/null and b/compatibility/assets/data/graficos/8199.png differ
diff --git a/compatibility/assets/data/graficos/82.png b/compatibility/assets/data/graficos/82.png
new file mode 100644
index 00000000..3488e291
Binary files /dev/null and b/compatibility/assets/data/graficos/82.png differ
diff --git a/compatibility/assets/data/graficos/8200.png b/compatibility/assets/data/graficos/8200.png
new file mode 100644
index 00000000..7a71a4fa
Binary files /dev/null and b/compatibility/assets/data/graficos/8200.png differ
diff --git a/compatibility/assets/data/graficos/8201.png b/compatibility/assets/data/graficos/8201.png
new file mode 100644
index 00000000..58bba5fd
Binary files /dev/null and b/compatibility/assets/data/graficos/8201.png differ
diff --git a/compatibility/assets/data/graficos/8202.png b/compatibility/assets/data/graficos/8202.png
new file mode 100644
index 00000000..c240fbf7
Binary files /dev/null and b/compatibility/assets/data/graficos/8202.png differ
diff --git a/compatibility/assets/data/graficos/8203.png b/compatibility/assets/data/graficos/8203.png
new file mode 100644
index 00000000..060c3ec8
Binary files /dev/null and b/compatibility/assets/data/graficos/8203.png differ
diff --git a/compatibility/assets/data/graficos/8204.png b/compatibility/assets/data/graficos/8204.png
new file mode 100644
index 00000000..56d67329
Binary files /dev/null and b/compatibility/assets/data/graficos/8204.png differ
diff --git a/compatibility/assets/data/graficos/8205.png b/compatibility/assets/data/graficos/8205.png
new file mode 100644
index 00000000..093dd755
Binary files /dev/null and b/compatibility/assets/data/graficos/8205.png differ
diff --git a/compatibility/assets/data/graficos/8206.png b/compatibility/assets/data/graficos/8206.png
new file mode 100644
index 00000000..0946f36d
Binary files /dev/null and b/compatibility/assets/data/graficos/8206.png differ
diff --git a/compatibility/assets/data/graficos/8207.png b/compatibility/assets/data/graficos/8207.png
new file mode 100644
index 00000000..e07e2d87
Binary files /dev/null and b/compatibility/assets/data/graficos/8207.png differ
diff --git a/compatibility/assets/data/graficos/8208.png b/compatibility/assets/data/graficos/8208.png
new file mode 100644
index 00000000..82f229f7
Binary files /dev/null and b/compatibility/assets/data/graficos/8208.png differ
diff --git a/compatibility/assets/data/graficos/8209.png b/compatibility/assets/data/graficos/8209.png
new file mode 100644
index 00000000..6d42b49f
Binary files /dev/null and b/compatibility/assets/data/graficos/8209.png differ
diff --git a/compatibility/assets/data/graficos/8210.png b/compatibility/assets/data/graficos/8210.png
new file mode 100644
index 00000000..caa9e4ad
Binary files /dev/null and b/compatibility/assets/data/graficos/8210.png differ
diff --git a/compatibility/assets/data/graficos/8211.png b/compatibility/assets/data/graficos/8211.png
new file mode 100644
index 00000000..25414861
Binary files /dev/null and b/compatibility/assets/data/graficos/8211.png differ
diff --git a/compatibility/assets/data/graficos/8212.png b/compatibility/assets/data/graficos/8212.png
new file mode 100644
index 00000000..22ac2d12
Binary files /dev/null and b/compatibility/assets/data/graficos/8212.png differ
diff --git a/compatibility/assets/data/graficos/8213.png b/compatibility/assets/data/graficos/8213.png
new file mode 100644
index 00000000..5db0acc2
Binary files /dev/null and b/compatibility/assets/data/graficos/8213.png differ
diff --git a/compatibility/assets/data/graficos/8214.png b/compatibility/assets/data/graficos/8214.png
new file mode 100644
index 00000000..eb5b3011
Binary files /dev/null and b/compatibility/assets/data/graficos/8214.png differ
diff --git a/compatibility/assets/data/graficos/8215.png b/compatibility/assets/data/graficos/8215.png
new file mode 100644
index 00000000..0f4bb3cf
Binary files /dev/null and b/compatibility/assets/data/graficos/8215.png differ
diff --git a/compatibility/assets/data/graficos/8216.png b/compatibility/assets/data/graficos/8216.png
new file mode 100644
index 00000000..422c2f35
Binary files /dev/null and b/compatibility/assets/data/graficos/8216.png differ
diff --git a/compatibility/assets/data/graficos/8217.png b/compatibility/assets/data/graficos/8217.png
new file mode 100644
index 00000000..58e48c71
Binary files /dev/null and b/compatibility/assets/data/graficos/8217.png differ
diff --git a/compatibility/assets/data/graficos/8218.png b/compatibility/assets/data/graficos/8218.png
new file mode 100644
index 00000000..af10a9ff
Binary files /dev/null and b/compatibility/assets/data/graficos/8218.png differ
diff --git a/compatibility/assets/data/graficos/8219.png b/compatibility/assets/data/graficos/8219.png
new file mode 100644
index 00000000..aeb21816
Binary files /dev/null and b/compatibility/assets/data/graficos/8219.png differ
diff --git a/compatibility/assets/data/graficos/8220.png b/compatibility/assets/data/graficos/8220.png
new file mode 100644
index 00000000..1f9e36b6
Binary files /dev/null and b/compatibility/assets/data/graficos/8220.png differ
diff --git a/compatibility/assets/data/graficos/8221.png b/compatibility/assets/data/graficos/8221.png
new file mode 100644
index 00000000..272e6771
Binary files /dev/null and b/compatibility/assets/data/graficos/8221.png differ
diff --git a/compatibility/assets/data/graficos/8222.png b/compatibility/assets/data/graficos/8222.png
new file mode 100644
index 00000000..88d6256b
Binary files /dev/null and b/compatibility/assets/data/graficos/8222.png differ
diff --git a/compatibility/assets/data/graficos/8223.png b/compatibility/assets/data/graficos/8223.png
new file mode 100644
index 00000000..80142f4a
Binary files /dev/null and b/compatibility/assets/data/graficos/8223.png differ
diff --git a/compatibility/assets/data/graficos/8224.png b/compatibility/assets/data/graficos/8224.png
new file mode 100644
index 00000000..d1a3624e
Binary files /dev/null and b/compatibility/assets/data/graficos/8224.png differ
diff --git a/compatibility/assets/data/graficos/83.png b/compatibility/assets/data/graficos/83.png
new file mode 100644
index 00000000..38817716
Binary files /dev/null and b/compatibility/assets/data/graficos/83.png differ
diff --git a/compatibility/assets/data/graficos/84.png b/compatibility/assets/data/graficos/84.png
new file mode 100644
index 00000000..810cbe66
Binary files /dev/null and b/compatibility/assets/data/graficos/84.png differ
diff --git a/compatibility/assets/data/graficos/85.png b/compatibility/assets/data/graficos/85.png
new file mode 100644
index 00000000..6e99ba9d
Binary files /dev/null and b/compatibility/assets/data/graficos/85.png differ
diff --git a/compatibility/assets/data/graficos/86.png b/compatibility/assets/data/graficos/86.png
new file mode 100644
index 00000000..a71bec9d
Binary files /dev/null and b/compatibility/assets/data/graficos/86.png differ
diff --git a/compatibility/assets/data/graficos/87.png b/compatibility/assets/data/graficos/87.png
new file mode 100644
index 00000000..a55d7f53
Binary files /dev/null and b/compatibility/assets/data/graficos/87.png differ
diff --git a/compatibility/assets/data/graficos/88.png b/compatibility/assets/data/graficos/88.png
new file mode 100644
index 00000000..c34aec1d
Binary files /dev/null and b/compatibility/assets/data/graficos/88.png differ
diff --git a/compatibility/assets/data/graficos/89.png b/compatibility/assets/data/graficos/89.png
new file mode 100644
index 00000000..148f22f4
Binary files /dev/null and b/compatibility/assets/data/graficos/89.png differ
diff --git a/compatibility/assets/data/graficos/9.png b/compatibility/assets/data/graficos/9.png
new file mode 100644
index 00000000..1e37e03a
Binary files /dev/null and b/compatibility/assets/data/graficos/9.png differ
diff --git a/compatibility/assets/data/graficos/90.png b/compatibility/assets/data/graficos/90.png
new file mode 100644
index 00000000..bf3f748a
Binary files /dev/null and b/compatibility/assets/data/graficos/90.png differ
diff --git a/compatibility/assets/data/graficos/9000.png b/compatibility/assets/data/graficos/9000.png
new file mode 100644
index 00000000..ebf92132
Binary files /dev/null and b/compatibility/assets/data/graficos/9000.png differ
diff --git a/compatibility/assets/data/graficos/9001.png b/compatibility/assets/data/graficos/9001.png
new file mode 100644
index 00000000..bd9de6ca
Binary files /dev/null and b/compatibility/assets/data/graficos/9001.png differ
diff --git a/compatibility/assets/data/graficos/9002.png b/compatibility/assets/data/graficos/9002.png
new file mode 100644
index 00000000..6bdb0c74
Binary files /dev/null and b/compatibility/assets/data/graficos/9002.png differ
diff --git a/compatibility/assets/data/graficos/9003.png b/compatibility/assets/data/graficos/9003.png
new file mode 100644
index 00000000..d5e82fde
Binary files /dev/null and b/compatibility/assets/data/graficos/9003.png differ
diff --git a/compatibility/assets/data/graficos/9004.png b/compatibility/assets/data/graficos/9004.png
new file mode 100644
index 00000000..d0aaaaf6
Binary files /dev/null and b/compatibility/assets/data/graficos/9004.png differ
diff --git a/compatibility/assets/data/graficos/9005.png b/compatibility/assets/data/graficos/9005.png
new file mode 100644
index 00000000..3ebcd324
Binary files /dev/null and b/compatibility/assets/data/graficos/9005.png differ
diff --git a/compatibility/assets/data/graficos/9006.png b/compatibility/assets/data/graficos/9006.png
new file mode 100644
index 00000000..9051552f
Binary files /dev/null and b/compatibility/assets/data/graficos/9006.png differ
diff --git a/compatibility/assets/data/graficos/9007.png b/compatibility/assets/data/graficos/9007.png
new file mode 100644
index 00000000..3c5dd21d
Binary files /dev/null and b/compatibility/assets/data/graficos/9007.png differ
diff --git a/compatibility/assets/data/graficos/9008.png b/compatibility/assets/data/graficos/9008.png
new file mode 100644
index 00000000..dd0aaf7b
Binary files /dev/null and b/compatibility/assets/data/graficos/9008.png differ
diff --git a/compatibility/assets/data/graficos/9009.png b/compatibility/assets/data/graficos/9009.png
new file mode 100644
index 00000000..4662f60c
Binary files /dev/null and b/compatibility/assets/data/graficos/9009.png differ
diff --git a/compatibility/assets/data/graficos/9010.png b/compatibility/assets/data/graficos/9010.png
new file mode 100644
index 00000000..8a1c644f
Binary files /dev/null and b/compatibility/assets/data/graficos/9010.png differ
diff --git a/compatibility/assets/data/graficos/9011.png b/compatibility/assets/data/graficos/9011.png
new file mode 100644
index 00000000..2055bbf7
Binary files /dev/null and b/compatibility/assets/data/graficos/9011.png differ
diff --git a/compatibility/assets/data/graficos/9012.png b/compatibility/assets/data/graficos/9012.png
new file mode 100644
index 00000000..b98cfe56
Binary files /dev/null and b/compatibility/assets/data/graficos/9012.png differ
diff --git a/compatibility/assets/data/graficos/9013.png b/compatibility/assets/data/graficos/9013.png
new file mode 100644
index 00000000..494c4544
Binary files /dev/null and b/compatibility/assets/data/graficos/9013.png differ
diff --git a/compatibility/assets/data/graficos/9014.png b/compatibility/assets/data/graficos/9014.png
new file mode 100644
index 00000000..21eea916
Binary files /dev/null and b/compatibility/assets/data/graficos/9014.png differ
diff --git a/compatibility/assets/data/graficos/9015.png b/compatibility/assets/data/graficos/9015.png
new file mode 100644
index 00000000..51eab79c
Binary files /dev/null and b/compatibility/assets/data/graficos/9015.png differ
diff --git a/compatibility/assets/data/graficos/9016.png b/compatibility/assets/data/graficos/9016.png
new file mode 100644
index 00000000..51eab79c
Binary files /dev/null and b/compatibility/assets/data/graficos/9016.png differ
diff --git a/compatibility/assets/data/graficos/9017.png b/compatibility/assets/data/graficos/9017.png
new file mode 100644
index 00000000..935fbb0a
Binary files /dev/null and b/compatibility/assets/data/graficos/9017.png differ
diff --git a/compatibility/assets/data/graficos/9018.png b/compatibility/assets/data/graficos/9018.png
new file mode 100644
index 00000000..78a7c795
Binary files /dev/null and b/compatibility/assets/data/graficos/9018.png differ
diff --git a/compatibility/assets/data/graficos/9019.png b/compatibility/assets/data/graficos/9019.png
new file mode 100644
index 00000000..3bc5c6d3
Binary files /dev/null and b/compatibility/assets/data/graficos/9019.png differ
diff --git a/compatibility/assets/data/graficos/9020.png b/compatibility/assets/data/graficos/9020.png
new file mode 100644
index 00000000..b02cf7af
Binary files /dev/null and b/compatibility/assets/data/graficos/9020.png differ
diff --git a/compatibility/assets/data/graficos/9021.png b/compatibility/assets/data/graficos/9021.png
new file mode 100644
index 00000000..5a8e5dda
Binary files /dev/null and b/compatibility/assets/data/graficos/9021.png differ
diff --git a/compatibility/assets/data/graficos/9022.png b/compatibility/assets/data/graficos/9022.png
new file mode 100644
index 00000000..fa30d25d
Binary files /dev/null and b/compatibility/assets/data/graficos/9022.png differ
diff --git a/compatibility/assets/data/graficos/91.png b/compatibility/assets/data/graficos/91.png
new file mode 100644
index 00000000..7df68400
Binary files /dev/null and b/compatibility/assets/data/graficos/91.png differ
diff --git a/compatibility/assets/data/graficos/92.png b/compatibility/assets/data/graficos/92.png
new file mode 100644
index 00000000..a41aed49
Binary files /dev/null and b/compatibility/assets/data/graficos/92.png differ
diff --git a/compatibility/assets/data/graficos/93.png b/compatibility/assets/data/graficos/93.png
new file mode 100644
index 00000000..63e45cbd
Binary files /dev/null and b/compatibility/assets/data/graficos/93.png differ
diff --git a/compatibility/assets/data/graficos/94.png b/compatibility/assets/data/graficos/94.png
new file mode 100644
index 00000000..3e91646c
Binary files /dev/null and b/compatibility/assets/data/graficos/94.png differ
diff --git a/compatibility/assets/data/graficos/95.png b/compatibility/assets/data/graficos/95.png
new file mode 100644
index 00000000..3c0ab0a5
Binary files /dev/null and b/compatibility/assets/data/graficos/95.png differ
diff --git a/compatibility/assets/data/graficos/96.png b/compatibility/assets/data/graficos/96.png
new file mode 100644
index 00000000..008852b3
Binary files /dev/null and b/compatibility/assets/data/graficos/96.png differ
diff --git a/compatibility/assets/data/graficos/97.png b/compatibility/assets/data/graficos/97.png
new file mode 100644
index 00000000..3ee3fd44
Binary files /dev/null and b/compatibility/assets/data/graficos/97.png differ
diff --git a/compatibility/assets/data/graficos/98.png b/compatibility/assets/data/graficos/98.png
new file mode 100644
index 00000000..5a61c946
Binary files /dev/null and b/compatibility/assets/data/graficos/98.png differ
diff --git a/compatibility/assets/data/graficos/99.png b/compatibility/assets/data/graficos/99.png
new file mode 100644
index 00000000..0580c6ba
Binary files /dev/null and b/compatibility/assets/data/graficos/99.png differ
diff --git a/compatibility/assets/data/init/AO.dat b/compatibility/assets/data/init/AO.dat
new file mode 100644
index 00000000..839f997a
Binary files /dev/null and b/compatibility/assets/data/init/AO.dat differ
diff --git a/compatibility/assets/data/init/Armas.dat b/compatibility/assets/data/init/Armas.dat
new file mode 100644
index 00000000..de2645a6
--- /dev/null
+++ b/compatibility/assets/data/init/Armas.dat
@@ -0,0 +1,526 @@
+[INIT]
+NumArmas=76
+
+[Arma1]
+Dir1=4719
+Dir2=4721
+Dir3=4718
+Dir4=4720
+
+[Arma3]
+Dir1=4723
+Dir2=4725
+Dir3=4722
+Dir4=4724
+
+# Garrote
+[ARMA4]
+Dir1=10269
+Dir2=10271
+Dir3=10268
+Dir4=10270
+
+# Cimitarra
+[ARMA5]
+Dir1=10295
+Dir2=10297
+Dir3=10294
+Dir4=10296
+
+# Vara de mago
+[ARMA6]
+Dir1=10321
+Dir2=10323
+Dir3=10320
+Dir4=10322
+
+# Arco
+[ARMA7]
+Dir1=10467
+Dir2=10469
+Dir3=10466
+Dir4=10468
+
+# vara de fresno
+[Arma8]
+Dir3=955
+Dir1=956
+Dir4=957
+Dir2=958
+
+# baston nudoso
+[Arma9]
+Dir3=982
+Dir1=983
+Dir4=984
+Dir2=985
+
+# baculo engarzado
+[Arma10]
+Dir3=1009
+Dir1=1010
+Dir4=1011
+Dir2=1012
+
+# hunter# s composite long bow
+[Arma11]
+Dir3=1048
+Dir1=1049
+Dir4=1050
+Dir2=1051
+
+# daga chota
+[Arma12]
+Dir3=1311
+Dir1=1312
+Dir4=1313
+Dir2=1314
+
+
+# SILVER SWORD
+[Arma13]
+Dir3=13331
+Dir1=13332
+Dir4=13333
+Dir2=13334
+
+# short sword
+[Arma14]
+Dir3=13357
+Dir1=13358
+Dir4=13359
+Dir2=13360
+
+# dragon slayer long sword
+[Arma15]
+Dir3=13383
+Dir1=13384
+Dir4=13385
+Dir2=13386
+
+# Alforja
+[Arma16]
+Dir3=3607
+Dir1=3608
+Dir4=3609
+Dir2=3610
+
+# Mochila
+[Arma17]
+Dir3=3633
+Dir1=3634
+Dir4=3635
+Dir2=3636
+
+# Katana
+[Arma18]
+Dir3=3659
+Dir1=3660
+Dir4=3661
+Dir2=3662
+
+# Hacha de Barbaro
+[Arma19]
+Dir3=19824
+Dir1=19825
+Dir4=19826
+Dir2=19827
+
+# Caña de Pescar
+[Arma20]
+Dir3=19746
+Dir1=19747
+Dir4=19748
+Dir2=19749
+
+# Espada Larga
+[Arma21]
+Dir3=19772
+Dir1=19773
+Dir4=19774
+Dir2=19775
+
+# Espada Vikinga
+[Arma22]
+Dir3=19798
+Dir1=19799
+Dir4=19800
+Dir2=19801
+
+# Hacha de Leñador
+[Arma23]
+Dir3=19850
+Dir1=19851
+Dir4=19852
+Dir2=19853
+
+# Hacha doble filo
+[Arma24]
+Dir3=19876
+Dir1=19877
+Dir4=19878
+Dir2=19879
+
+# Hacha
+[Arma25]
+Dir3=19902
+Dir1=19903
+Dir4=19904
+Dir2=19905
+
+# Horquilla
+[Arma26]
+Dir3=19928
+Dir1=19929
+Dir4=19930
+Dir2=19931
+
+# Katana
+[Arma27]
+Dir3=19954
+Dir1=19955
+Dir4=19956
+Dir2=19957
+
+# Martillo de Guerra
+[Arma28]
+Dir3=19980
+Dir1=19981
+Dir4=19982
+Dir2=19983
+
+# Martillo de Herrero
+[Arma29]
+Dir3=20006
+Dir1=20007
+Dir4=20008
+Dir2=20009
+
+# Piquete de Minero
+[Arma30]
+Dir3=20032
+Dir1=20033
+Dir4=20034
+Dir2=20035
+
+# Serrucho
+[Arma31]
+Dir3=20058
+Dir1=20059
+Dir4=20060
+Dir2=20061
+
+# Mazo del juicio
+[Arma32]
+Dir3=20229
+Dir1=20230
+Dir4=20231
+Dir2=20232
+
+# Antorcha Olímpica
+[Arma33]
+Dir3=20483
+Dir1=20484
+Dir4=20485
+Dir2=20486
+
+# Daga +1
+[Arma34]
+Dir3=17881
+Dir1=17882
+Dir4=17883
+Dir2=17884
+
+# Daga +2
+[Arma35]
+Dir3=17907
+Dir1=17908
+Dir4=17909
+Dir2=17910
+
+# Daga +3
+[Arma36]
+Dir3=20532
+Dir1=20533
+Dir4=20534
+Dir2=20535
+
+# Hacha de leña éfica
+[Arma37]
+Dir3=21945
+Dir1=21946
+Dir4=21947
+Dir2=21948
+
+# Cuchillas para altos
+[Arma38]
+Dir3=22003
+Dir1=22004
+Dir4=22005
+Dir2=22006
+
+# Cuchillas para bajos
+[Arma39]
+Dir3=22029
+Dir1=22030
+Dir4=22031
+Dir2=22032
+
+# Arco Simple enano
+[Arma40]
+Dir3=22288
+Dir1=22289
+Dir4=22290
+Dir2=22291
+
+# Arco Simple
+[Arma41]
+Dir3=22314
+Dir1=22315
+Dir4=22316
+Dir2=22317
+
+# Arco Simple reforzado enano
+[Arma42]
+Dir3=22340
+Dir1=22341
+Dir4=22342
+Dir2=22343
+
+# Arco simple reforzado
+[Arma43]
+Dir3=22366
+Dir1=22367
+Dir4=22368
+Dir2=22369
+
+# Arco compuesto reforzado enano
+[Arma44]
+Dir3=22392
+Dir1=22393
+Dir4=22394
+Dir2=22395
+
+# Arco compuesto reforzado
+[Arma45]
+Dir3=22418
+Dir1=22419
+Dir4=22420
+Dir2=22421
+
+# Arco cazador enano
+[Arma46]
+Dir3=22444
+Dir1=22445
+Dir4=22446
+Dir2=22447
+
+# Arco cazador
+[Arma47]
+Dir3=22470
+Dir1=22471
+Dir4=22472
+Dir2=22473
+
+# Daga común(Petizos)
+[Arma48]
+Dir3=22537
+Dir1=22538
+Dir4=22539
+Dir2=22540
+
+# Daga +1(Petizos)
+[Arma49]
+Dir3=22563
+Dir1=22564
+Dir4=22565
+Dir2=22566
+
+# Daga +2(Petizos)
+[Arma50]
+Dir3=22589
+Dir1=22590
+Dir4=22591
+Dir2=22592
+
+# Daga +3(Petizos)
+[Arma51]
+Dir3=22615
+Dir1=22616
+Dir4=22617
+Dir2=22618
+
+# Daga +4
+[Arma52]
+Dir3=22641
+Dir1=22642
+Dir4=22643
+Dir2=22644
+
+# Daga +4(Petizos)
+[Arma53]
+Dir3=22667
+Dir1=22668
+Dir4=22669
+Dir2=22670
+
+# Katana(Petizos)
+[Arma54]
+Dir3=22693
+Dir1=22694
+Dir4=22695
+Dir2=22696
+
+# Vikinga(Petizos)
+[Arma55]
+Dir3=22719
+Dir1=22720
+Dir4=22721
+Dir2=22722
+
+# Sable
+[Arma56]
+Dir3=22746
+Dir1=22747
+Dir4=22748
+Dir2=22749
+
+# Sable(Petizos)
+[Arma57]
+Dir3=22772
+Dir1=22773
+Dir4=22774
+Dir2=22775
+
+# Vara de mago(Petizos)
+[Arma58]
+Dir3=22798
+Dir1=22799
+Dir4=22800
+Dir2=22801
+
+# Arco compuesto (Petizos)
+[Arma59]
+Dir3=23200
+Dir1=23201
+Dir4=23202
+Dir2=23203
+
+# Vara frezno (E/G)
+[Arma60]
+Dir3=23231
+Dir1=23232
+Dir4=23233
+Dir2=23234
+
+# Bastón nudoso (E/G)
+[Arma61]
+Dir3=23257
+Dir1=23258
+Dir4=23259
+Dir2=23260
+
+# Báculo engarzado (E/G)
+[Arma62]
+Dir3=23283
+Dir1=23284
+Dir4=23285
+Dir2=23286
+
+# Espada de plata (E/G)
+[Arma63]
+Dir3=23309
+Dir1=23310
+Dir4=23311
+Dir2=23312
+
+# Espada corta (E/G)
+[Arma64]
+Dir3=23335
+Dir1=23336
+Dir4=23337
+Dir2=23338
+
+# Espada mata dragones (E/G)
+[Arma65]
+Dir3=23361
+Dir1=23362
+Dir4=23363
+Dir2=23364
+
+# Espada dos manos (E/G)
+[Arma66]
+Dir3=23387
+Dir1=23388
+Dir4=23389
+Dir2=23390
+
+# Hacha larga de guerra (E/G)
+[Arma67]
+Dir3=23413
+Dir1=23414
+Dir4=23415
+Dir2=23416
+
+# Mazo de guerra (E/G)
+[Arma68]
+Dir3=23439
+Dir1=23440
+Dir4=23441
+Dir2=23442
+
+# Antorchar olímpica (E/G)
+[Arma69]
+Dir3=23465
+Dir1=23466
+Dir4=23467
+Dir2=23468
+
+# Garrote (E/G)
+[Arma70]
+Dir3=23491
+Dir1=23492
+Dir4=23493
+Dir2=23494
+
+# Cimitarra (E/G)
+[Arma71]
+Dir3=23517
+Dir1=23518
+Dir4=23519
+Dir2=23520
+
+# Espada larga (E/G)
+[Arma72]
+Dir3=23543
+Dir1=23544
+Dir4=23545
+Dir2=23546
+
+# Serrucho (E/G)
+[Arma73]
+Dir3=23569
+Dir1=23570
+Dir4=23571
+Dir2=23572
+
+# Piquerte de minero (E/G)
+[Arma74]
+Dir3=23595
+Dir1=23596
+Dir4=23597
+Dir2=23598
+
+# Martillo de herrero (E/G)
+[Arma75]
+Dir3=23621
+Dir1=23622
+Dir4=23623
+Dir2=23624
+
+# Caña de pescar (E/G)
+[Arma76]
+Dir3=23647
+Dir1=23648
+Dir4=23649
+Dir2=23650
diff --git a/compatibility/assets/data/init/BindKeys.bin b/compatibility/assets/data/init/BindKeys.bin
new file mode 100644
index 00000000..2aa1ca30
Binary files /dev/null and b/compatibility/assets/data/init/BindKeys.bin differ
diff --git a/compatibility/assets/data/init/Cabezas.ind b/compatibility/assets/data/init/Cabezas.ind
new file mode 100644
index 00000000..d53e1381
Binary files /dev/null and b/compatibility/assets/data/init/Cabezas.ind differ
diff --git a/compatibility/assets/data/init/Cascos.ind b/compatibility/assets/data/init/Cascos.ind
new file mode 100644
index 00000000..a6a977de
Binary files /dev/null and b/compatibility/assets/data/init/Cascos.ind differ
diff --git a/compatibility/assets/data/init/CharInfo.dat b/compatibility/assets/data/init/CharInfo.dat
new file mode 100644
index 00000000..2e158669
--- /dev/null
+++ b/compatibility/assets/data/init/CharInfo.dat
@@ -0,0 +1,152 @@
+[MODRAZA]
+HumanoFuerza=+1
+HumanoAgilidad=+1
+HumanoInteligencia=0
+HumanoCarisma=0
+HumanoConstitucion=+2
+ElfoFuerza=-1
+ElfoAgilidad=+3
+ElfoInteligencia=+2
+ElfoCarisma=+2
+ElfoConstitucion=+1
+ElfoOscuroFuerza=+2
+ElfoOscuroAgilidad=+3
+ElfoOscuroInteligencia=+2
+ElfoOscuroCarisma=-3
+ElfoOscuroConstitucion=0
+EnanoFuerza=+3
+EnanoAgilidad=0
+EnanoInteligencia=-2
+EnanoCarisma=-2
+EnanoConstitucion=+3
+GnomoFuerza=-2
+GnomoAgilidad=+3
+GnomoInteligencia=+4
+GnomoCarisma=+1
+GnomoConstitucion=0
+
+[MODEVASION]
+Guerrero=1
+Cazador=0.9
+Paladin=0.9
+Bandido=0.7
+Asesino=1.1
+Pirata=1.25
+Ladron=1.1
+Clerigo=0.8
+Bardo=1.075
+Mago=0.4
+Druida=0.75
+Trabajador=0.8
+
+[MODATAQUEARMAS]
+Guerrero=1
+Cazador=0.8
+Paladin=0.95
+Bandido=0.7
+Asesino=0.85
+Pirata=0.9
+Ladron=0.75
+Clerigo=0.85
+Bardo=0.7
+Mago=0.5
+Druida=0.65
+Trabajador=0.8
+
+[MODATAQUEPROYECTILES]
+Guerrero=0.8
+Cazador=1
+Paladin=0.75
+Bandido=0.75
+Asesino=0.75
+Pirata=0.9
+Ladron=0.8
+Clerigo=0.7
+Bardo=0.7
+Mago=0.5
+Druida=0.75
+Trabajador=0.7
+
+[MODDAÑOARMAS]
+Guerrero=1.1
+Cazador=0.9
+Paladin=0.925
+Bandido=0.9
+Asesino=0.9
+Pirata=0.95
+Ladron=0.8
+Clerigo=0.8
+Bardo=0.75
+Mago=0.5
+Druida=0.7
+Trabajador=0.8
+
+[MODDAÑOPROYECTILES]
+Guerrero=0.9
+Cazador=1.1
+Paladin=0.8
+Bandido=0.8
+Asesino=0.8
+Pirata=0.8
+Ladron=0.75
+Clerigo=0.7
+Bardo=0.7
+Mago=0.5
+Druida=0.75
+Trabajador=0.7
+
+[MODESCUDO]
+Guerrero=1
+Cazador=0.8
+Paladin=1
+Bandido=2
+Asesino=0.8
+Pirata=0
+Ladron=0.7
+Clerigo=0.85
+Bardo=0.8
+Mago=0
+Druida=0.75
+Trabajador=0.7
+
+[MODVIDA]
+Guerrero=0.5
+Cazador=1
+Paladin=1
+Bandido=2
+Asesino=2
+Pirata=0.5
+Ladron=0.5
+Clerigo=2
+Bardo=2
+Mago=3.5
+Druida=2
+Trabajador=2
+
+[HIT]
+Guerrero=2.7
+Cazador=2.7
+Paladin=2.4
+Bandido=2.4
+Asesino=2.4
+Pirata=3
+Ladron=1
+Clerigo=2
+Bardo=2
+Mago=1
+Druida=2
+Trabajador=2
+
+[MODMAGIA]
+Guerrero=0
+Cazador=0
+Paladin=1
+Bandido=0.5
+Asesino=1
+Pirata=0
+Ladron=0
+Clerigo=2
+Bardo=2
+Mago=2.8
+Druida=2
+Trabajador=0
\ No newline at end of file
diff --git a/compatibility/assets/data/init/Escudos.dat b/compatibility/assets/data/init/Escudos.dat
new file mode 100644
index 00000000..8a010ee8
--- /dev/null
+++ b/compatibility/assets/data/init/Escudos.dat
@@ -0,0 +1,58 @@
+# Oso: NO USEN EL ESCUDO 2 (Es "No Animar" ^^)
+
+[INIT]
+NumEscudos=10
+
+[ESC1]
+Dir1=4727
+Dir2=4729
+Dir3=4726
+Dir4=4728
+
+[ESC3]
+Dir3=902
+Dir1=903
+Dir4=904
+Dir2=905
+
+[ESC4]
+Dir3=928
+Dir1=929
+Dir4=930
+Dir2=931
+
+[ESC5]
+Dir3=13278
+Dir1=13279
+Dir4=13280
+Dir2=13281
+
+[ESC6]
+Dir3=4856
+Dir1=4857
+Dir4=4858
+Dir2=4859
+
+[ESC7]
+Dir3=22986
+Dir1=22987
+Dir4=22988
+Dir2=22989
+
+[ESC8]
+Dir3=23012
+Dir1=23013
+Dir4=23014
+Dir2=23015
+
+[ESC9]
+Dir3=23038
+Dir1=23039
+Dir4=23040
+Dir2=23041
+
+[ESC10]
+Dir3=23064
+Dir1=23065
+Dir4=23066
+Dir2=23067
diff --git a/compatibility/assets/data/init/FK.ind b/compatibility/assets/data/init/FK.ind
new file mode 100644
index 00000000..e297375a
Binary files /dev/null and b/compatibility/assets/data/init/FK.ind differ
diff --git a/compatibility/assets/data/init/Fxs.ind b/compatibility/assets/data/init/Fxs.ind
new file mode 100644
index 00000000..e669b72b
Binary files /dev/null and b/compatibility/assets/data/init/Fxs.ind differ
diff --git a/compatibility/assets/data/init/Graficos.ind b/compatibility/assets/data/init/Graficos.ind
new file mode 100644
index 00000000..b6a8f73a
Binary files /dev/null and b/compatibility/assets/data/init/Graficos.ind differ
diff --git a/compatibility/assets/data/init/Graficos3.ind b/compatibility/assets/data/init/Graficos3.ind
new file mode 100644
index 00000000..e69de29b
diff --git a/compatibility/assets/data/init/Inicios.con b/compatibility/assets/data/init/Inicios.con
new file mode 100644
index 00000000..dcf5a765
Binary files /dev/null and b/compatibility/assets/data/init/Inicios.con differ
diff --git a/compatibility/assets/data/init/Mapa.dat b/compatibility/assets/data/init/Mapa.dat
new file mode 100644
index 00000000..c2710147
--- /dev/null
+++ b/compatibility/assets/data/init/Mapa.dat
@@ -0,0 +1,4 @@
+[Mapa1]
+Minimap=1
+[Mapa2]
+Minimap=2
\ No newline at end of file
diff --git a/compatibility/assets/data/init/Personajes.ind b/compatibility/assets/data/init/Personajes.ind
new file mode 100644
index 00000000..b2fa80fc
Binary files /dev/null and b/compatibility/assets/data/init/Personajes.ind differ
diff --git a/compatibility/assets/data/init/Ver.bin b/compatibility/assets/data/init/Ver.bin
new file mode 100644
index 00000000..b104500d
Binary files /dev/null and b/compatibility/assets/data/init/Ver.bin differ
diff --git a/compatibility/assets/data/init/auras.dat b/compatibility/assets/data/init/auras.dat
new file mode 100644
index 00000000..8c4d788d
--- /dev/null
+++ b/compatibility/assets/data/init/auras.dat
@@ -0,0 +1,8 @@
+[INIT]
+Cant =1
+
+[S1]
+Desc=Primario AOAlkon - Online
+IP=200.49.147.28
+P2= 7667
+PJ= 7666
diff --git a/compatibility/assets/data/init/colores.dat b/compatibility/assets/data/init/colores.dat
new file mode 100644
index 00000000..0f68a455
--- /dev/null
+++ b/compatibility/assets/data/init/colores.dat
@@ -0,0 +1,283 @@
+permite customizar los colores de los PJs
+# todos los valores deben estar entre 0 y 255
+# los rangos van de 1 a 48 (inclusive). El 0 y el 49,50 estan reservados. Mas arriba son ignorados.
+
+# criminales
+[Cr]
+R=255
+G=0
+B=0
+
+# ciudadanos
+[Ci]
+R=0
+G=128
+B=255
+
+# Atacables
+[At]
+R=139
+G=0
+B=255
+
+[0]
+R=0
+G=0
+B=0
+
+# consejeros
+[1]
+R=30
+G=150
+B=30
+
+# semidioses
+[2]
+R=30
+G=255
+B=30
+
+# dioses
+[3]
+R=250
+G=250
+B=150
+
+# admins
+[4]
+R=255
+G=255
+B=255
+
+# rolmasters
+[5]
+R=180
+G=180
+B=180
+
+# caos
+[6]
+R=255
+G=50
+B=0
+
+# consejo de bander
+[7]
+R=0
+G=195
+B=255
+
+[8]
+R=0
+G=0
+B=0
+
+[9]
+R=0
+G=0
+B=0
+
+[10]
+R=0
+G=0
+B=0
+
+[11]
+R=0
+G=0
+B=0
+
+[12]
+R=0
+G=0
+B=0
+
+[13]
+R=0
+G=0
+B=0
+
+[14]
+R=0
+G=0
+B=0
+
+[15]
+R=0
+G=0
+B=0
+
+[16]
+R=0
+G=0
+B=0
+
+[17]
+R=0
+G=0
+B=0
+
+[18]
+R=0
+G=0
+B=0
+
+[19]
+R=0
+G=0
+B=0
+
+[20]
+R=0
+G=0
+B=0
+
+[21]
+R=0
+G=0
+B=0
+
+[22]
+R=0
+G=0
+B=0
+
+[23]
+R=0
+G=0
+B=0
+
+[24]
+R=0
+G=0
+B=0
+
+[25]
+R=0
+G=0
+B=0
+
+[26]
+R=0
+G=0
+B=0
+
+[27]
+R=0
+G=0
+B=0
+
+[28]
+R=0
+G=0
+B=0
+
+[29]
+R=0
+G=0
+B=0
+
+[30]
+R=0
+G=0
+B=0
+
+[31]
+R=0
+G=0
+B=0
+
+[32]
+R=0
+G=0
+B=0
+
+[33]
+R=0
+G=0
+B=0
+
+[34]
+R=0
+G=0
+B=0
+
+[35]
+R=0
+G=0
+B=0
+
+[36]
+R=0
+G=0
+B=0
+
+[37]
+R=0
+G=0
+B=0
+
+[38]
+R=0
+G=0
+B=0
+
+[39]
+R=0
+G=0
+B=0
+
+[40]
+R=0
+G=0
+B=0
+
+[41]
+R=0
+G=0
+B=0
+
+[42]
+R=0
+G=0
+B=0
+
+[43]
+R=0
+G=0
+B=0
+
+[44]
+R=0
+G=0
+B=0
+
+[45]
+R=0
+G=0
+B=0
+
+[46]
+R=0
+G=0
+B=0
+
+[47]
+R=0
+G=0
+B=0
+
+[48]
+R=0
+G=0
+B=0
+
+[49]
+R=0
+G=0
+B=0
+
+[50]
+R=0
+G=0
+B=0
\ No newline at end of file
diff --git a/compatibility/assets/data/init/messages.txt b/compatibility/assets/data/init/messages.txt
new file mode 100644
index 00000000..e69de29b
diff --git a/compatibility/assets/data/init/particles.ini b/compatibility/assets/data/init/particles.ini
new file mode 100644
index 00000000..b4c4d642
--- /dev/null
+++ b/compatibility/assets/data/init/particles.ini
@@ -0,0 +1,1406 @@
+[INIT]
+Total=36
+[1]
+Name=Fountain
+NumOfParticles=50
+X1=0
+Y1=0
+X2=0
+Y2=0
+Angle=0
+VecX1=-20
+VecX2=20
+VecY1=-10
+VecY2=-50
+Life1=10
+Life2=50
+Friction=8
+Spin=1
+Spin_SpeedL=10
+Spin_SpeedH=10
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=1
+XMove=0
+YMove=0
+move_x1=0
+move_x2=0
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=-1
+rx=10
+ry=10
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,0,0
+ColorSet2=255,171,168
+ColorSet3=255,0,0
+ColorSet4=255,190,190
+[2]
+Name=Starburst
+NumOfParticles=20
+X1=0
+Y1=0
+X2=0
+Y2=0
+Angle=0
+VecX1=-10
+VecX2=10
+VecY1=-10
+VecY2=10
+Life1=10
+Life2=50
+Friction=8
+Spin=1
+Spin_SpeedL=2
+Spin_SpeedH=2
+Grav_Strength=0
+Bounce_Strength=0
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=0
+move_x1=0
+move_x2=0
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .4
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,255,255
+ColorSet2=255,255,255
+ColorSet3=255,255,255
+ColorSet4=255,255,255
+[3]
+Name=Jet
+NumOfParticles=50
+X1=0
+Y1=0
+X2=0
+Y2=0
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=-20
+VecY2=0
+Life1=10
+Life2=50
+Friction=2
+Spin=0
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=0
+Bounce_Strength=0
+AlphaBlend=1
+Gravity=0
+XMove=1
+YMove=0
+move_x1=-2
+move_x2=2
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=0,141,255
+ColorSet2=255,255,255
+ColorSet3=0,124,255
+ColorSet4=0,159,255
+[4]
+Name=Large Fountain
+NumOfParticles=50
+X1=0
+Y1=0
+X2=0
+Y2=0
+Angle=0
+VecX1=-20
+VecX2=20
+VecY1=-10
+VecY2=-50
+Life1=10
+Life2=50
+Friction=8
+Spin=0
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-15
+AlphaBlend=1
+Gravity=1
+XMove=0
+YMove=0
+move_x1=0
+move_x2=0
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,157,78
+ColorSet2=255,154,111
+ColorSet3=255,223,109
+ColorSet4=255,255,255
+[5]
+Name=Rising
+NumOfParticles=50
+X1=0
+Y1=0
+X2=0
+Y2=0
+Angle=0
+VecX1=-8
+VecX2=8
+VecY1=0
+VecY2=350
+Life1=10
+Life2=30
+Friction=3
+Spin=0
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=1
+XMove=0
+YMove=1
+move_x1=0
+move_x2=0
+move_y1=-10
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=0,131,255
+ColorSet2=255,255,255
+ColorSet3=0,117,255
+ColorSet4=255,255,255
+[6]
+Name=Torch
+NumOfParticles=12
+X1=-5
+Y1=0
+X2=5
+Y2=0
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=-70
+VecY2=0
+Life1=5
+Life2=10
+Friction=10
+Spin=0
+Spin_SpeedL=5
+Spin_SpeedH=5
+Grav_Strength=0
+Bounce_Strength=0
+AlphaBlend=1
+Gravity=0
+XMove=1
+YMove=0
+move_x1=-25
+move_x2=25
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=0,122,255
+ColorSet2=255,255,255
+ColorSet3=0,128,255
+ColorSet4=0,255,255
+[7]
+Name=Waterfall
+NumOfParticles=200
+X1=-50
+Y1=0
+X2=50
+Y2=0
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=20
+VecY2=0
+Life1=15
+Life2=25
+Friction=4
+Spin=1
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=1
+YMove=0
+move_x1=-5
+move_x2=5
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,138,138
+ColorSet2=255,255,255
+ColorSet3=255,125,122
+ColorSet4=255,151,151
+[8]
+Name=Rain
+NumOfParticles=200
+X1=-200
+Y1=0
+X2=200
+Y2=0
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=100
+VecY2=200
+Life1=25
+Life2=40
+Friction=12
+Spin=1
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=1
+YMove=0
+move_x1=0
+move_x2=75
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=-1
+rx=5
+ry=5
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,127,128
+ColorSet2=255,255,255
+ColorSet3=255,127,117
+ColorSet4=255,255,255
+[9]
+Name=Insects
+NumOfParticles=60
+X1=-5
+Y1=-5
+X2=-5
+Y2=-5
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=0
+VecY2=0
+Life1=10
+Life2=100
+Friction=8
+Spin=1
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=1
+YMove=1
+move_x1=-25
+move_x2=25
+move_y1=-25
+move_y2=25
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=54,152,52
+ColorSet2=255,255,255
+ColorSet3=60,127,62
+ColorSet4=54,139,44
+[10]
+Name=Smoke
+NumOfParticles=10
+X1=-3
+Y1=-3
+X2=-3
+Y2=-3
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=-5
+VecY2=-20
+Life1=10
+Life2=70
+Friction=10
+Spin=1
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=0
+Bounce_Strength=0
+AlphaBlend=1
+Gravity=0
+XMove=1
+YMove=0
+move_x1=-10
+move_x2=10
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= 0
+resize=-1
+rx=30
+ry=30
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,255,255
+ColorSet2=255,255,255
+ColorSet3=255,255,255
+ColorSet4=255,255,255
+[11]
+Name=Fire
+NumOfParticles=30
+X1=-10
+Y1=-1
+X2=10
+Y2=-1
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=-10
+VecY2=-11
+Life1=10
+Life2=20
+Friction=3
+Spin=1
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=1
+YMove=1
+move_x1=5
+move_x2=-5
+move_y1=-5
+move_y2=-6
+life_counter=-1
+Speed= .5
+resize=-1
+rx=60
+ry=60
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=0,146,255
+ColorSet2=255,255,255
+ColorSet3=0,124,255
+ColorSet4=255,255,255
+[12]
+Name=Rune
+NumOfParticles=5
+X1=0
+Y1=0
+X2=0
+Y2=0
+Angle=0
+VecX1=-30
+VecX2=30
+VecY1=-30
+VecY2=30
+Life1=40
+Life2=100
+Friction=5
+Spin=1
+Spin_SpeedL=10
+Spin_SpeedH=10
+Grav_Strength=0
+Bounce_Strength=0
+AlphaBlend=1
+Gravity=0
+XMove=1
+YMove=1
+move_x1=-10
+move_x2=10
+move_y1=0
+move_y2=-10
+life_counter=30
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,255,255
+ColorSet2=255,255,255
+ColorSet3=255,255,255
+ColorSet4=255,255,255
+[13]
+Name=Snow
+NumOfParticles=50
+X1=-200
+Y1=0
+X2=200
+Y2=0
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=10
+VecY2=30
+Life1=30
+Life2=70
+Friction=3
+Spin=1
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=1
+YMove=0
+move_x1=-10
+move_x2=10
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=-1
+rx=5
+ry=5
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,255,255
+ColorSet2=255,255,255
+ColorSet3=255,255,255
+ColorSet4=255,255,255
+[14]
+Name=Foam
+NumOfParticles=35
+X1=-50
+Y1=0
+X2=50
+Y2=0
+Angle=0
+VecX1=-20
+VecX2=20
+VecY1=-20
+VecY2=20
+Life1=10
+Life2=50
+Friction=4
+Spin=1
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=1
+YMove=1
+move_x1=-10
+move_x2=10
+move_y1=-5
+move_y2=5
+life_counter=-1
+Speed= .5
+resize=-1
+rx=30
+ry=30
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,255,255
+ColorSet2=255,255,255
+ColorSet3=255,255,255
+ColorSet4=255,255,255
+[15]
+Name=Fire Wall
+NumOfParticles=50
+X1=-50
+Y1=-1
+X2=50
+Y2=1
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=-10
+VecY2=-11
+Life1=10
+Life2=100
+Friction=4
+Spin=0
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=1
+move_x1=0
+move_x2=0
+move_y1=-5
+move_y2=-12
+life_counter=-1
+Speed= .5
+resize=0
+rx=60
+ry=60
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=0,117,255
+ColorSet2=0,98,255
+ColorSet3=255,255,255
+ColorSet4=0,122,255
+[16]
+Name=White Ruin
+NumOfParticles=1
+X1=0
+Y1=0
+X2=0
+Y2=0
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=0
+VecY2=0
+Life1=0
+Life2=0
+Friction=5
+Spin=1
+Spin_SpeedL=4
+Spin_SpeedH=1
+Grav_Strength=5
+Bounce_Strength=-20
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=0
+move_x1=5
+move_x2=0
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=0,255,255
+ColorSet2=0,255,255
+ColorSet3=0,255,255
+ColorSet4=0,255,255
+[17]
+Name=Gold Ruin
+NumOfParticles=1
+X1=0
+Y1=0
+X2=0
+Y2=0
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=0
+VecY2=0
+Life1=0
+Life2=0
+Friction=5
+Spin=1
+Spin_SpeedL=4
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=0
+move_x1=0
+move_x2=0
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=0,180,240
+ColorSet2=0,180,240
+ColorSet3=0,180,240
+ColorSet4=0,180,240
+[18]
+Name=Green Ruin
+NumOfParticles=1
+X1=0
+Y1=0
+X2=0
+Y2=0
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=0
+VecY2=0
+Life1=0
+Life2=0
+Friction=5
+Spin=1
+Spin_SpeedL=4
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=0
+move_x1=0
+move_x2=0
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=0,255,0
+ColorSet2=0,255,0
+ColorSet3=0,255,0
+ColorSet4=0,255,0
+[19]
+Name=Blue Smoke
+NumOfParticles=60
+X1=-15
+Y1=-1
+X2=15
+Y2=-1
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=10
+VecY2=11
+Life1=10
+Life2=100
+Friction=8
+Spin=1
+Spin_SpeedL=4
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=0
+move_x1=0
+move_x2=0
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,108,103
+ColorSet2=255,90,87
+ColorSet3=255,112,112
+ColorSet4=255,112,104
+[20]
+Name=Spirits
+NumOfParticles=40
+X1=-10
+Y1=0
+X2=10
+Y2=0
+Angle=0
+VecX1=-10
+VecX2=10
+VecY1=-10
+VecY2=10
+Life1=10
+Life2=50
+Friction=8
+Spin=0
+Spin_SpeedL=80
+Spin_SpeedH=80
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=0
+move_x1=0
+move_x2=0
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,255,255
+ColorSet2=255,255,255
+ColorSet3=255,255,255
+ColorSet4=255,255,255
+[21]
+Name=Ruin Rain
+NumOfParticles=20
+X1=-5
+Y1=-1
+X2=5
+Y2=-1
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=10
+VecY2=11
+Life1=10
+Life2=100
+Friction=8
+Spin=0
+Spin_SpeedL=80
+Spin_SpeedH=80
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=0
+move_x1=0
+move_x2=0
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,255,255
+ColorSet2=255,255,255
+ColorSet3=255,255,255
+ColorSet4=255,255,255
+[22]
+Name=Ankh Redemption
+NumOfParticles=10
+X1=0
+Y1=0
+X2=0
+Y2=0
+Angle=0
+VecX1=-10
+VecX2=10
+VecY1=-10
+VecY2=10
+Life1=10
+Life2=50
+Friction=8
+Spin=0
+Spin_SpeedL=0
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=0
+move_x1=0
+move_x2=0
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=0,255,254
+ColorSet2=157,255,255
+ColorSet3=255,255,255
+ColorSet4=0,255,255
+[23]
+Name=Hearts Cry
+NumOfParticles=15
+X1=0
+Y1=0
+X2=0
+Y2=0
+Angle=0
+VecX1=-40
+VecX2=40
+VecY1=-60
+VecY2=-80
+Life1=30
+Life2=50
+Friction=20
+Spin=0
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=1
+XMove=0
+YMove=0
+move_x1=1
+move_x2=1
+move_y1=1
+move_y2=1
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23733,
+ColorSet1=0,0,255
+ColorSet2=0,0,255
+ColorSet3=0,0,255
+ColorSet4=0,0,255
+[24]
+Name=Bubbles
+NumOfParticles=30
+X1=0
+Y1=0
+X2=0
+Y2=0
+Angle=0
+VecX1=-5
+VecX2=5
+VecY1=-20
+VecY2=0
+Life1=10
+Life2=25
+Friction=3
+Spin=0
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=0
+move_x1=0
+move_x2=0
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,255,255
+ColorSet2=255,255,255
+ColorSet3=255,255,255
+ColorSet4=255,255,255
+[25]
+Name=Magicnitia
+NumOfParticles=20
+X1=-5
+Y1=-5
+X2=-5
+Y2=-5
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=0
+VecY2=0
+Life1=10
+Life2=50
+Friction=8
+Spin=1
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=1
+YMove=1
+move_x1=-25
+move_x2=25
+move_y1=-25
+move_y2=25
+life_counter=-1
+Speed= .5
+resize=-1
+rx=50
+ry=50
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,255,255
+ColorSet2=255,255,255
+ColorSet3=255,255,255
+ColorSet4=255,255,255
+[26]
+Name=Lightning
+NumOfParticles=3
+X1=0
+Y1=0
+X2=0
+Y2=0
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=-20
+VecY2=0
+Life1=1
+Life2=1
+Friction=3
+Spin=0
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=0
+Bounce_Strength=0
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=0
+move_x1=-2
+move_x2=2
+move_y1=0
+move_y2=0
+life_counter=15
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,255,255
+ColorSet2=255,255,255
+ColorSet3=255,255,255
+ColorSet4=0,0,0
+[27]
+Name=Rune Wall
+NumOfParticles=50
+X1=-50
+Y1=-1
+X2=50
+Y2=1
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=-10
+VecY2=-11
+Life1=10
+Life2=100
+Friction=4
+Spin=1
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=1
+move_x1=0
+move_x2=0
+move_y1=-5
+move_y2=-12
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,255,255
+ColorSet2=255,255,255
+ColorSet3=255,255,255
+ColorSet4=255,255,255
+[28]
+Name=Wall of Force
+NumOfParticles=30
+X1=-30
+Y1=-1
+X2=30
+Y2=1
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=-10
+VecY2=-11
+Life1=10
+Life2=70
+Friction=4
+Spin=1
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=1
+move_x1=0
+move_x2=0
+move_y1=-5
+move_y2=-12
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,255,255
+ColorSet2=255,255,255
+ColorSet3=255,255,255
+ColorSet4=255,255,255
+[29]
+Name=Deamon
+NumOfParticles=10
+X1=-5
+Y1=-5
+X2=-5
+Y2=-5
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=0
+VecY2=0
+Life1=10
+Life2=50
+Friction=10
+Spin=0
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=1
+YMove=1
+move_x1=-25
+move_x2=25
+move_y1=-25
+move_y2=25
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=0,124,255
+ColorSet2=0,0,255
+ColorSet3=0,111,255
+ColorSet4=0,0,255
+[30]
+Name=Death
+NumOfParticles=3
+X1=-5
+Y1=-5
+X2=-5
+Y2=-5
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=0
+VecY2=0
+Life1=10
+Life2=50
+Friction=10
+Spin=0
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=1
+YMove=1
+move_x1=-25
+move_x2=25
+move_y1=-25
+move_y2=25
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,255,255
+ColorSet2=255,255,255
+ColorSet3=255,255,255
+ColorSet4=255,255,255
+[31]
+Name=Attacking
+NumOfParticles=1
+X1=0
+Y1=0
+X2=0
+Y2=0
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=0
+VecY2=0
+Life1=0
+Life2=0
+Friction=1
+Spin=1
+Spin_SpeedL=4
+Spin_SpeedH=4
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=0
+move_x1=0
+move_x2=0
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=0,0,255
+ColorSet2=0,0,255
+ColorSet3=0,0,255
+ColorSet4=0,0,255
+[32]
+Name=Poison Gas
+NumOfParticles=20
+X1=-5
+Y1=-1
+X2=5
+Y2=-1
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=-10
+VecY2=11
+Life1=10
+Life2=100
+Friction=3
+Spin=1
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=1
+YMove=1
+move_x1=5
+move_x2=-5
+move_y1=-5
+move_y2=-5
+life_counter=-1
+Speed= .1
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=27,100,34
+ColorSet2=38,109,50
+ColorSet3=0,109,47
+ColorSet4=0,62,0
+[33]
+Name=Sprinkle
+NumOfParticles=60
+X1=-25
+Y1=-25
+X2=25
+Y2=25
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=20
+VecY2=0
+Life1=10
+Life2=25
+Friction=4
+Spin=1
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=1
+YMove=0
+move_x1=-5
+move_x2=5
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,130,143
+ColorSet2=255,255,255
+ColorSet3=255,130,125
+ColorSet4=255,255,255
+[34]
+Name=meditacionlvl1
+NumOfParticles=15
+X1=-20
+Y1=-5
+X2=20
+Y2=5
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=-20
+VecY2=-10
+Life1=10
+Life2=50
+Friction=9
+Spin=1
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=0
+move_x1=0
+move_x2=0
+move_y1=0
+move_y2=0
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=174,0,174
+ColorSet2=174,0,174
+ColorSet3=174,0,174
+ColorSet4=174,0,174
+[35]
+Name=meditacionlvl35
+NumOfParticles=30
+X1=-10
+Y1=-1
+X2=10
+Y2=1
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=-10
+VecY2=-11
+Life1=10
+Life2=80
+Friction=8
+Spin=1
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=0
+move_x1=0
+move_x2=0
+move_y1=-5
+move_y2=12
+life_counter=-1
+Speed= .5
+resize=0
+rx=0
+ry=0
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=0,0,0
+ColorSet2=0,255,0
+ColorSet3=0,0,0
+ColorSet4=0,255,0
+[36]
+Name=meditacionlvl50
+NumOfParticles=50
+X1=-50
+Y1=-1
+X2=50
+Y2=1
+Angle=0
+VecX1=0
+VecX2=0
+VecY1=-10
+VecY2=-11
+Life1=10
+Life2=100
+Friction=4
+Spin=1
+Spin_SpeedL=1
+Spin_SpeedH=1
+Grav_Strength=2
+Bounce_Strength=-5
+AlphaBlend=1
+Gravity=0
+XMove=0
+YMove=0
+move_x1=0
+move_x2=0
+move_y1=-5
+move_y2=12
+life_counter=-1
+Speed= .5
+resize=0
+rx=60
+ry=60
+NumGrhs=1
+Grh_List=23731,
+ColorSet1=255,0,0
+ColorSet2=255,143,0
+ColorSet3=255,107,0
+ColorSet4=255,255,255
\ No newline at end of file
diff --git a/compatibility/assets/data/init/sinfo.dat b/compatibility/assets/data/init/sinfo.dat
new file mode 100644
index 00000000..8c4d788d
--- /dev/null
+++ b/compatibility/assets/data/init/sinfo.dat
@@ -0,0 +1,8 @@
+[INIT]
+Cant =1
+
+[S1]
+Desc=Primario AOAlkon - Online
+IP=200.49.147.28
+P2= 7667
+PJ= 7666
diff --git a/compatibility/assets/data/mapas/Mapa1.map b/compatibility/assets/data/mapas/Mapa1.map
new file mode 100644
index 00000000..4fa579a0
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa1.map differ
diff --git a/compatibility/assets/data/mapas/Mapa10.map b/compatibility/assets/data/mapas/Mapa10.map
new file mode 100644
index 00000000..3a139d65
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa10.map differ
diff --git a/compatibility/assets/data/mapas/Mapa100.map b/compatibility/assets/data/mapas/Mapa100.map
new file mode 100644
index 00000000..d602d33a
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa100.map differ
diff --git a/compatibility/assets/data/mapas/Mapa101.map b/compatibility/assets/data/mapas/Mapa101.map
new file mode 100644
index 00000000..da4a344b
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa101.map differ
diff --git a/compatibility/assets/data/mapas/Mapa102.map b/compatibility/assets/data/mapas/Mapa102.map
new file mode 100644
index 00000000..82ecfa88
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa102.map differ
diff --git a/compatibility/assets/data/mapas/Mapa103.map b/compatibility/assets/data/mapas/Mapa103.map
new file mode 100644
index 00000000..4eae26c0
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa103.map differ
diff --git a/compatibility/assets/data/mapas/Mapa104.map b/compatibility/assets/data/mapas/Mapa104.map
new file mode 100644
index 00000000..27240261
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa104.map differ
diff --git a/compatibility/assets/data/mapas/Mapa105.map b/compatibility/assets/data/mapas/Mapa105.map
new file mode 100644
index 00000000..a0bbedb0
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa105.map differ
diff --git a/compatibility/assets/data/mapas/Mapa106.map b/compatibility/assets/data/mapas/Mapa106.map
new file mode 100644
index 00000000..9b0585ef
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa106.map differ
diff --git a/compatibility/assets/data/mapas/Mapa107.map b/compatibility/assets/data/mapas/Mapa107.map
new file mode 100644
index 00000000..e64d19d8
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa107.map differ
diff --git a/compatibility/assets/data/mapas/Mapa108.map b/compatibility/assets/data/mapas/Mapa108.map
new file mode 100644
index 00000000..3b5260cd
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa108.map differ
diff --git a/compatibility/assets/data/mapas/Mapa109.map b/compatibility/assets/data/mapas/Mapa109.map
new file mode 100644
index 00000000..1ff6030d
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa109.map differ
diff --git a/compatibility/assets/data/mapas/Mapa110.map b/compatibility/assets/data/mapas/Mapa110.map
new file mode 100644
index 00000000..6c08cd52
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa110.map differ
diff --git a/compatibility/assets/data/mapas/Mapa112.map b/compatibility/assets/data/mapas/Mapa112.map
new file mode 100644
index 00000000..58565eb0
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa112.map differ
diff --git a/compatibility/assets/data/mapas/Mapa113.map b/compatibility/assets/data/mapas/Mapa113.map
new file mode 100644
index 00000000..835e772d
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa113.map differ
diff --git a/compatibility/assets/data/mapas/Mapa115.map b/compatibility/assets/data/mapas/Mapa115.map
new file mode 100644
index 00000000..369f0afe
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa115.map differ
diff --git a/compatibility/assets/data/mapas/Mapa116.map b/compatibility/assets/data/mapas/Mapa116.map
new file mode 100644
index 00000000..e1457e4e
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa116.map differ
diff --git a/compatibility/assets/data/mapas/Mapa117.map b/compatibility/assets/data/mapas/Mapa117.map
new file mode 100644
index 00000000..3949f6c2
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa117.map differ
diff --git a/compatibility/assets/data/mapas/Mapa118.map b/compatibility/assets/data/mapas/Mapa118.map
new file mode 100644
index 00000000..84995825
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa118.map differ
diff --git a/compatibility/assets/data/mapas/Mapa119.map b/compatibility/assets/data/mapas/Mapa119.map
new file mode 100644
index 00000000..382840f0
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa119.map differ
diff --git a/compatibility/assets/data/mapas/Mapa12.map b/compatibility/assets/data/mapas/Mapa12.map
new file mode 100644
index 00000000..a57c2583
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa12.map differ
diff --git a/compatibility/assets/data/mapas/Mapa120.map b/compatibility/assets/data/mapas/Mapa120.map
new file mode 100644
index 00000000..317451ee
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa120.map differ
diff --git a/compatibility/assets/data/mapas/Mapa121.map b/compatibility/assets/data/mapas/Mapa121.map
new file mode 100644
index 00000000..e64d19d8
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa121.map differ
diff --git a/compatibility/assets/data/mapas/Mapa123.map b/compatibility/assets/data/mapas/Mapa123.map
new file mode 100644
index 00000000..5988e54c
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa123.map differ
diff --git a/compatibility/assets/data/mapas/Mapa124.map b/compatibility/assets/data/mapas/Mapa124.map
new file mode 100644
index 00000000..741a605b
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa124.map differ
diff --git a/compatibility/assets/data/mapas/Mapa125.map b/compatibility/assets/data/mapas/Mapa125.map
new file mode 100644
index 00000000..fc80b49d
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa125.map differ
diff --git a/compatibility/assets/data/mapas/Mapa126.map b/compatibility/assets/data/mapas/Mapa126.map
new file mode 100644
index 00000000..f9ddc725
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa126.map differ
diff --git a/compatibility/assets/data/mapas/Mapa127.map b/compatibility/assets/data/mapas/Mapa127.map
new file mode 100644
index 00000000..1a2117a8
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa127.map differ
diff --git a/compatibility/assets/data/mapas/Mapa128.map b/compatibility/assets/data/mapas/Mapa128.map
new file mode 100644
index 00000000..27465c96
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa128.map differ
diff --git a/compatibility/assets/data/mapas/Mapa129.map b/compatibility/assets/data/mapas/Mapa129.map
new file mode 100644
index 00000000..4398042a
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa129.map differ
diff --git a/compatibility/assets/data/mapas/Mapa13.map b/compatibility/assets/data/mapas/Mapa13.map
new file mode 100644
index 00000000..5291972c
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa13.map differ
diff --git a/compatibility/assets/data/mapas/Mapa131.map b/compatibility/assets/data/mapas/Mapa131.map
new file mode 100644
index 00000000..8cb6d632
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa131.map differ
diff --git a/compatibility/assets/data/mapas/Mapa132.map b/compatibility/assets/data/mapas/Mapa132.map
new file mode 100644
index 00000000..eca76eb8
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa132.map differ
diff --git a/compatibility/assets/data/mapas/Mapa133.map b/compatibility/assets/data/mapas/Mapa133.map
new file mode 100644
index 00000000..931c353c
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa133.map differ
diff --git a/compatibility/assets/data/mapas/Mapa134.map b/compatibility/assets/data/mapas/Mapa134.map
new file mode 100644
index 00000000..deede5de
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa134.map differ
diff --git a/compatibility/assets/data/mapas/Mapa135.map b/compatibility/assets/data/mapas/Mapa135.map
new file mode 100644
index 00000000..89fd1a54
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa135.map differ
diff --git a/compatibility/assets/data/mapas/Mapa136.map b/compatibility/assets/data/mapas/Mapa136.map
new file mode 100644
index 00000000..8842751e
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa136.map differ
diff --git a/compatibility/assets/data/mapas/Mapa137.map b/compatibility/assets/data/mapas/Mapa137.map
new file mode 100644
index 00000000..99274cc6
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa137.map differ
diff --git a/compatibility/assets/data/mapas/Mapa14.map b/compatibility/assets/data/mapas/Mapa14.map
new file mode 100644
index 00000000..f1e88c52
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa14.map differ
diff --git a/compatibility/assets/data/mapas/Mapa140.map b/compatibility/assets/data/mapas/Mapa140.map
new file mode 100644
index 00000000..60e0859e
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa140.map differ
diff --git a/compatibility/assets/data/mapas/Mapa141.map b/compatibility/assets/data/mapas/Mapa141.map
new file mode 100644
index 00000000..7e20c06f
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa141.map differ
diff --git a/compatibility/assets/data/mapas/Mapa142.map b/compatibility/assets/data/mapas/Mapa142.map
new file mode 100644
index 00000000..938addbc
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa142.map differ
diff --git a/compatibility/assets/data/mapas/Mapa143.map b/compatibility/assets/data/mapas/Mapa143.map
new file mode 100644
index 00000000..d33633eb
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa143.map differ
diff --git a/compatibility/assets/data/mapas/Mapa144.map b/compatibility/assets/data/mapas/Mapa144.map
new file mode 100644
index 00000000..c23f587c
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa144.map differ
diff --git a/compatibility/assets/data/mapas/Mapa145.map b/compatibility/assets/data/mapas/Mapa145.map
new file mode 100644
index 00000000..c93e0dcb
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa145.map differ
diff --git a/compatibility/assets/data/mapas/Mapa146.map b/compatibility/assets/data/mapas/Mapa146.map
new file mode 100644
index 00000000..b8c44c3f
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa146.map differ
diff --git a/compatibility/assets/data/mapas/Mapa147.map b/compatibility/assets/data/mapas/Mapa147.map
new file mode 100644
index 00000000..931c353c
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa147.map differ
diff --git a/compatibility/assets/data/mapas/Mapa148.map b/compatibility/assets/data/mapas/Mapa148.map
new file mode 100644
index 00000000..e24aa5bd
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa148.map differ
diff --git a/compatibility/assets/data/mapas/Mapa149.map b/compatibility/assets/data/mapas/Mapa149.map
new file mode 100644
index 00000000..74cc7040
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa149.map differ
diff --git a/compatibility/assets/data/mapas/Mapa15.map b/compatibility/assets/data/mapas/Mapa15.map
new file mode 100644
index 00000000..484fe777
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa15.map differ
diff --git a/compatibility/assets/data/mapas/Mapa150.map b/compatibility/assets/data/mapas/Mapa150.map
new file mode 100644
index 00000000..87a5e445
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa150.map differ
diff --git a/compatibility/assets/data/mapas/Mapa152.map b/compatibility/assets/data/mapas/Mapa152.map
new file mode 100644
index 00000000..e64d19d8
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa152.map differ
diff --git a/compatibility/assets/data/mapas/Mapa153.map b/compatibility/assets/data/mapas/Mapa153.map
new file mode 100644
index 00000000..e64d19d8
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa153.map differ
diff --git a/compatibility/assets/data/mapas/Mapa154.map b/compatibility/assets/data/mapas/Mapa154.map
new file mode 100644
index 00000000..e64d19d8
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa154.map differ
diff --git a/compatibility/assets/data/mapas/Mapa156.map b/compatibility/assets/data/mapas/Mapa156.map
new file mode 100644
index 00000000..fd147c94
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa156.map differ
diff --git a/compatibility/assets/data/mapas/Mapa157.map b/compatibility/assets/data/mapas/Mapa157.map
new file mode 100644
index 00000000..08045e25
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa157.map differ
diff --git a/compatibility/assets/data/mapas/Mapa158.map b/compatibility/assets/data/mapas/Mapa158.map
new file mode 100644
index 00000000..243c39ff
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa158.map differ
diff --git a/compatibility/assets/data/mapas/Mapa159.map b/compatibility/assets/data/mapas/Mapa159.map
new file mode 100644
index 00000000..44038f6b
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa159.map differ
diff --git a/compatibility/assets/data/mapas/Mapa16.map b/compatibility/assets/data/mapas/Mapa16.map
new file mode 100644
index 00000000..9799104f
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa16.map differ
diff --git a/compatibility/assets/data/mapas/Mapa160.map b/compatibility/assets/data/mapas/Mapa160.map
new file mode 100644
index 00000000..ef63a239
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa160.map differ
diff --git a/compatibility/assets/data/mapas/Mapa161.map b/compatibility/assets/data/mapas/Mapa161.map
new file mode 100644
index 00000000..46c4e52a
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa161.map differ
diff --git a/compatibility/assets/data/mapas/Mapa162.map b/compatibility/assets/data/mapas/Mapa162.map
new file mode 100644
index 00000000..ada6e144
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa162.map differ
diff --git a/compatibility/assets/data/mapas/Mapa163.map b/compatibility/assets/data/mapas/Mapa163.map
new file mode 100644
index 00000000..6f74b627
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa163.map differ
diff --git a/compatibility/assets/data/mapas/Mapa164.map b/compatibility/assets/data/mapas/Mapa164.map
new file mode 100644
index 00000000..02ce24e2
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa164.map differ
diff --git a/compatibility/assets/data/mapas/Mapa165.map b/compatibility/assets/data/mapas/Mapa165.map
new file mode 100644
index 00000000..33c7bb48
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa165.map differ
diff --git a/compatibility/assets/data/mapas/Mapa166.map b/compatibility/assets/data/mapas/Mapa166.map
new file mode 100644
index 00000000..c31a203a
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa166.map differ
diff --git a/compatibility/assets/data/mapas/Mapa167.map b/compatibility/assets/data/mapas/Mapa167.map
new file mode 100644
index 00000000..e95be6ec
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa167.map differ
diff --git a/compatibility/assets/data/mapas/Mapa168.map b/compatibility/assets/data/mapas/Mapa168.map
new file mode 100644
index 00000000..d0ead05c
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa168.map differ
diff --git a/compatibility/assets/data/mapas/Mapa169.map b/compatibility/assets/data/mapas/Mapa169.map
new file mode 100644
index 00000000..a39eda76
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa169.map differ
diff --git a/compatibility/assets/data/mapas/Mapa17.map b/compatibility/assets/data/mapas/Mapa17.map
new file mode 100644
index 00000000..b5e597e5
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa17.map differ
diff --git a/compatibility/assets/data/mapas/Mapa170.map b/compatibility/assets/data/mapas/Mapa170.map
new file mode 100644
index 00000000..3b921dbd
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa170.map differ
diff --git a/compatibility/assets/data/mapas/Mapa171.map b/compatibility/assets/data/mapas/Mapa171.map
new file mode 100644
index 00000000..835c8e8d
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa171.map differ
diff --git a/compatibility/assets/data/mapas/Mapa172.map b/compatibility/assets/data/mapas/Mapa172.map
new file mode 100644
index 00000000..b17945fb
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa172.map differ
diff --git a/compatibility/assets/data/mapas/Mapa173.map b/compatibility/assets/data/mapas/Mapa173.map
new file mode 100644
index 00000000..948466c8
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa173.map differ
diff --git a/compatibility/assets/data/mapas/Mapa174.map b/compatibility/assets/data/mapas/Mapa174.map
new file mode 100644
index 00000000..e439d694
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa174.map differ
diff --git a/compatibility/assets/data/mapas/Mapa175.map b/compatibility/assets/data/mapas/Mapa175.map
new file mode 100644
index 00000000..bd8b51ce
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa175.map differ
diff --git a/compatibility/assets/data/mapas/Mapa176.map b/compatibility/assets/data/mapas/Mapa176.map
new file mode 100644
index 00000000..8d2bb0dd
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa176.map differ
diff --git a/compatibility/assets/data/mapas/Mapa177.map b/compatibility/assets/data/mapas/Mapa177.map
new file mode 100644
index 00000000..3d785169
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa177.map differ
diff --git a/compatibility/assets/data/mapas/Mapa178.map b/compatibility/assets/data/mapas/Mapa178.map
new file mode 100644
index 00000000..3b7e7970
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa178.map differ
diff --git a/compatibility/assets/data/mapas/Mapa179.map b/compatibility/assets/data/mapas/Mapa179.map
new file mode 100644
index 00000000..769d0529
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa179.map differ
diff --git a/compatibility/assets/data/mapas/Mapa18.map b/compatibility/assets/data/mapas/Mapa18.map
new file mode 100644
index 00000000..5ef123f6
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa18.map differ
diff --git a/compatibility/assets/data/mapas/Mapa180.map b/compatibility/assets/data/mapas/Mapa180.map
new file mode 100644
index 00000000..81cee01a
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa180.map differ
diff --git a/compatibility/assets/data/mapas/Mapa182.map b/compatibility/assets/data/mapas/Mapa182.map
new file mode 100644
index 00000000..0f9b302e
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa182.map differ
diff --git a/compatibility/assets/data/mapas/Mapa184.map b/compatibility/assets/data/mapas/Mapa184.map
new file mode 100644
index 00000000..a20247fc
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa184.map differ
diff --git a/compatibility/assets/data/mapas/Mapa185.map b/compatibility/assets/data/mapas/Mapa185.map
new file mode 100644
index 00000000..e16809e2
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa185.map differ
diff --git a/compatibility/assets/data/mapas/Mapa186.map b/compatibility/assets/data/mapas/Mapa186.map
new file mode 100644
index 00000000..6321b785
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa186.map differ
diff --git a/compatibility/assets/data/mapas/Mapa187.map b/compatibility/assets/data/mapas/Mapa187.map
new file mode 100644
index 00000000..b7158475
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa187.map differ
diff --git a/compatibility/assets/data/mapas/Mapa189.map b/compatibility/assets/data/mapas/Mapa189.map
new file mode 100644
index 00000000..f7f0f6fc
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa189.map differ
diff --git a/compatibility/assets/data/mapas/Mapa19.map b/compatibility/assets/data/mapas/Mapa19.map
new file mode 100644
index 00000000..6a58f7ed
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa19.map differ
diff --git a/compatibility/assets/data/mapas/Mapa191.map b/compatibility/assets/data/mapas/Mapa191.map
new file mode 100644
index 00000000..5dc02da2
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa191.map differ
diff --git a/compatibility/assets/data/mapas/Mapa193.map b/compatibility/assets/data/mapas/Mapa193.map
new file mode 100644
index 00000000..4263a380
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa193.map differ
diff --git a/compatibility/assets/data/mapas/Mapa194.map b/compatibility/assets/data/mapas/Mapa194.map
new file mode 100644
index 00000000..abc7f2cc
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa194.map differ
diff --git a/compatibility/assets/data/mapas/Mapa195.map b/compatibility/assets/data/mapas/Mapa195.map
new file mode 100644
index 00000000..6b8bb586
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa195.map differ
diff --git a/compatibility/assets/data/mapas/Mapa197.map b/compatibility/assets/data/mapas/Mapa197.map
new file mode 100644
index 00000000..33dc6c27
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa197.map differ
diff --git a/compatibility/assets/data/mapas/Mapa198.map b/compatibility/assets/data/mapas/Mapa198.map
new file mode 100644
index 00000000..60c2d27a
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa198.map differ
diff --git a/compatibility/assets/data/mapas/Mapa199.map b/compatibility/assets/data/mapas/Mapa199.map
new file mode 100644
index 00000000..7bf2f803
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa199.map differ
diff --git a/compatibility/assets/data/mapas/Mapa2.map b/compatibility/assets/data/mapas/Mapa2.map
new file mode 100644
index 00000000..2a788e95
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa2.map differ
diff --git a/compatibility/assets/data/mapas/Mapa20.map b/compatibility/assets/data/mapas/Mapa20.map
new file mode 100644
index 00000000..fe5f2e2a
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa20.map differ
diff --git a/compatibility/assets/data/mapas/Mapa200.map b/compatibility/assets/data/mapas/Mapa200.map
new file mode 100644
index 00000000..aab96b92
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa200.map differ
diff --git a/compatibility/assets/data/mapas/Mapa201.map b/compatibility/assets/data/mapas/Mapa201.map
new file mode 100644
index 00000000..4016eb27
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa201.map differ
diff --git a/compatibility/assets/data/mapas/Mapa202.map b/compatibility/assets/data/mapas/Mapa202.map
new file mode 100644
index 00000000..f6cc1b81
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa202.map differ
diff --git a/compatibility/assets/data/mapas/Mapa203.map b/compatibility/assets/data/mapas/Mapa203.map
new file mode 100644
index 00000000..b8894b5d
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa203.map differ
diff --git a/compatibility/assets/data/mapas/Mapa204.map b/compatibility/assets/data/mapas/Mapa204.map
new file mode 100644
index 00000000..a5b94836
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa204.map differ
diff --git a/compatibility/assets/data/mapas/Mapa205.map b/compatibility/assets/data/mapas/Mapa205.map
new file mode 100644
index 00000000..a5b94836
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa205.map differ
diff --git a/compatibility/assets/data/mapas/Mapa206.map b/compatibility/assets/data/mapas/Mapa206.map
new file mode 100644
index 00000000..78b27c53
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa206.map differ
diff --git a/compatibility/assets/data/mapas/Mapa207.map b/compatibility/assets/data/mapas/Mapa207.map
new file mode 100644
index 00000000..1ac8a2a3
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa207.map differ
diff --git a/compatibility/assets/data/mapas/Mapa208.map b/compatibility/assets/data/mapas/Mapa208.map
new file mode 100644
index 00000000..1208401d
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa208.map differ
diff --git a/compatibility/assets/data/mapas/Mapa21.map b/compatibility/assets/data/mapas/Mapa21.map
new file mode 100644
index 00000000..76a6607c
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa21.map differ
diff --git a/compatibility/assets/data/mapas/Mapa210.map b/compatibility/assets/data/mapas/Mapa210.map
new file mode 100644
index 00000000..9edb617f
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa210.map differ
diff --git a/compatibility/assets/data/mapas/Mapa211.map b/compatibility/assets/data/mapas/Mapa211.map
new file mode 100644
index 00000000..5405515d
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa211.map differ
diff --git a/compatibility/assets/data/mapas/Mapa212.map b/compatibility/assets/data/mapas/Mapa212.map
new file mode 100644
index 00000000..fb28a324
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa212.map differ
diff --git a/compatibility/assets/data/mapas/Mapa213.map b/compatibility/assets/data/mapas/Mapa213.map
new file mode 100644
index 00000000..3a6a7331
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa213.map differ
diff --git a/compatibility/assets/data/mapas/Mapa214.map b/compatibility/assets/data/mapas/Mapa214.map
new file mode 100644
index 00000000..048ca165
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa214.map differ
diff --git a/compatibility/assets/data/mapas/Mapa215.map b/compatibility/assets/data/mapas/Mapa215.map
new file mode 100644
index 00000000..65ea4111
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa215.map differ
diff --git a/compatibility/assets/data/mapas/Mapa216.map b/compatibility/assets/data/mapas/Mapa216.map
new file mode 100644
index 00000000..8eb32fa8
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa216.map differ
diff --git a/compatibility/assets/data/mapas/Mapa217.map b/compatibility/assets/data/mapas/Mapa217.map
new file mode 100644
index 00000000..39beadc1
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa217.map differ
diff --git a/compatibility/assets/data/mapas/Mapa219.map b/compatibility/assets/data/mapas/Mapa219.map
new file mode 100644
index 00000000..d9726436
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa219.map differ
diff --git a/compatibility/assets/data/mapas/Mapa22.map b/compatibility/assets/data/mapas/Mapa22.map
new file mode 100644
index 00000000..ef2a26f0
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa22.map differ
diff --git a/compatibility/assets/data/mapas/Mapa220.map b/compatibility/assets/data/mapas/Mapa220.map
new file mode 100644
index 00000000..c84e716f
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa220.map differ
diff --git a/compatibility/assets/data/mapas/Mapa221.map b/compatibility/assets/data/mapas/Mapa221.map
new file mode 100644
index 00000000..1a1abe70
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa221.map differ
diff --git a/compatibility/assets/data/mapas/Mapa222.map b/compatibility/assets/data/mapas/Mapa222.map
new file mode 100644
index 00000000..4b7370cf
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa222.map differ
diff --git a/compatibility/assets/data/mapas/Mapa225.map b/compatibility/assets/data/mapas/Mapa225.map
new file mode 100644
index 00000000..f20436af
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa225.map differ
diff --git a/compatibility/assets/data/mapas/Mapa226.map b/compatibility/assets/data/mapas/Mapa226.map
new file mode 100644
index 00000000..f6cc1b81
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa226.map differ
diff --git a/compatibility/assets/data/mapas/Mapa227.map b/compatibility/assets/data/mapas/Mapa227.map
new file mode 100644
index 00000000..b2527bc8
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa227.map differ
diff --git a/compatibility/assets/data/mapas/Mapa228.map b/compatibility/assets/data/mapas/Mapa228.map
new file mode 100644
index 00000000..0802e996
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa228.map differ
diff --git a/compatibility/assets/data/mapas/Mapa229.map b/compatibility/assets/data/mapas/Mapa229.map
new file mode 100644
index 00000000..f6cc1b81
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa229.map differ
diff --git a/compatibility/assets/data/mapas/Mapa230.map b/compatibility/assets/data/mapas/Mapa230.map
new file mode 100644
index 00000000..1995edc9
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa230.map differ
diff --git a/compatibility/assets/data/mapas/Mapa231.map b/compatibility/assets/data/mapas/Mapa231.map
new file mode 100644
index 00000000..2b755303
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa231.map differ
diff --git a/compatibility/assets/data/mapas/Mapa232.map b/compatibility/assets/data/mapas/Mapa232.map
new file mode 100644
index 00000000..43822eb0
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa232.map differ
diff --git a/compatibility/assets/data/mapas/Mapa233.map b/compatibility/assets/data/mapas/Mapa233.map
new file mode 100644
index 00000000..0f916409
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa233.map differ
diff --git a/compatibility/assets/data/mapas/Mapa234.map b/compatibility/assets/data/mapas/Mapa234.map
new file mode 100644
index 00000000..e6c8d632
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa234.map differ
diff --git a/compatibility/assets/data/mapas/Mapa235.map b/compatibility/assets/data/mapas/Mapa235.map
new file mode 100644
index 00000000..9ddc0664
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa235.map differ
diff --git a/compatibility/assets/data/mapas/Mapa236.map b/compatibility/assets/data/mapas/Mapa236.map
new file mode 100644
index 00000000..2e8a71ae
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa236.map differ
diff --git a/compatibility/assets/data/mapas/Mapa238.map b/compatibility/assets/data/mapas/Mapa238.map
new file mode 100644
index 00000000..90e99233
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa238.map differ
diff --git a/compatibility/assets/data/mapas/Mapa24.map b/compatibility/assets/data/mapas/Mapa24.map
new file mode 100644
index 00000000..b17c8900
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa24.map differ
diff --git a/compatibility/assets/data/mapas/Mapa243.map b/compatibility/assets/data/mapas/Mapa243.map
new file mode 100644
index 00000000..498a60b0
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa243.map differ
diff --git a/compatibility/assets/data/mapas/Mapa244.map b/compatibility/assets/data/mapas/Mapa244.map
new file mode 100644
index 00000000..fd96d874
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa244.map differ
diff --git a/compatibility/assets/data/mapas/Mapa245.map b/compatibility/assets/data/mapas/Mapa245.map
new file mode 100644
index 00000000..d8b25090
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa245.map differ
diff --git a/compatibility/assets/data/mapas/Mapa246.map b/compatibility/assets/data/mapas/Mapa246.map
new file mode 100644
index 00000000..839e684d
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa246.map differ
diff --git a/compatibility/assets/data/mapas/Mapa247.map b/compatibility/assets/data/mapas/Mapa247.map
new file mode 100644
index 00000000..cbc76b46
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa247.map differ
diff --git a/compatibility/assets/data/mapas/Mapa248.map b/compatibility/assets/data/mapas/Mapa248.map
new file mode 100644
index 00000000..b19a1b37
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa248.map differ
diff --git a/compatibility/assets/data/mapas/Mapa249.map b/compatibility/assets/data/mapas/Mapa249.map
new file mode 100644
index 00000000..e0cb4aa1
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa249.map differ
diff --git a/compatibility/assets/data/mapas/Mapa25.map b/compatibility/assets/data/mapas/Mapa25.map
new file mode 100644
index 00000000..76873426
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa25.map differ
diff --git a/compatibility/assets/data/mapas/Mapa250.map b/compatibility/assets/data/mapas/Mapa250.map
new file mode 100644
index 00000000..da3b7404
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa250.map differ
diff --git a/compatibility/assets/data/mapas/Mapa251.map b/compatibility/assets/data/mapas/Mapa251.map
new file mode 100644
index 00000000..2e8a71ae
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa251.map differ
diff --git a/compatibility/assets/data/mapas/Mapa252.map b/compatibility/assets/data/mapas/Mapa252.map
new file mode 100644
index 00000000..f6cc1b81
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa252.map differ
diff --git a/compatibility/assets/data/mapas/Mapa253.map b/compatibility/assets/data/mapas/Mapa253.map
new file mode 100644
index 00000000..18936fbf
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa253.map differ
diff --git a/compatibility/assets/data/mapas/Mapa254.map b/compatibility/assets/data/mapas/Mapa254.map
new file mode 100644
index 00000000..1995edc9
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa254.map differ
diff --git a/compatibility/assets/data/mapas/Mapa255.map b/compatibility/assets/data/mapas/Mapa255.map
new file mode 100644
index 00000000..2e8a71ae
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa255.map differ
diff --git a/compatibility/assets/data/mapas/Mapa256.map b/compatibility/assets/data/mapas/Mapa256.map
new file mode 100644
index 00000000..2e8a71ae
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa256.map differ
diff --git a/compatibility/assets/data/mapas/Mapa257.map b/compatibility/assets/data/mapas/Mapa257.map
new file mode 100644
index 00000000..1c064cb0
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa257.map differ
diff --git a/compatibility/assets/data/mapas/Mapa258.map b/compatibility/assets/data/mapas/Mapa258.map
new file mode 100644
index 00000000..1995edc9
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa258.map differ
diff --git a/compatibility/assets/data/mapas/Mapa259.map b/compatibility/assets/data/mapas/Mapa259.map
new file mode 100644
index 00000000..619fff9f
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa259.map differ
diff --git a/compatibility/assets/data/mapas/Mapa26.map b/compatibility/assets/data/mapas/Mapa26.map
new file mode 100644
index 00000000..92e067db
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa26.map differ
diff --git a/compatibility/assets/data/mapas/Mapa260.map b/compatibility/assets/data/mapas/Mapa260.map
new file mode 100644
index 00000000..67857d80
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa260.map differ
diff --git a/compatibility/assets/data/mapas/Mapa261.map b/compatibility/assets/data/mapas/Mapa261.map
new file mode 100644
index 00000000..4eaed4cf
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa261.map differ
diff --git a/compatibility/assets/data/mapas/Mapa262.map b/compatibility/assets/data/mapas/Mapa262.map
new file mode 100644
index 00000000..9e92a09a
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa262.map differ
diff --git a/compatibility/assets/data/mapas/Mapa263.map b/compatibility/assets/data/mapas/Mapa263.map
new file mode 100644
index 00000000..d48e1a19
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa263.map differ
diff --git a/compatibility/assets/data/mapas/Mapa264.map b/compatibility/assets/data/mapas/Mapa264.map
new file mode 100644
index 00000000..fef3e8e9
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa264.map differ
diff --git a/compatibility/assets/data/mapas/Mapa265.map b/compatibility/assets/data/mapas/Mapa265.map
new file mode 100644
index 00000000..989fbe88
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa265.map differ
diff --git a/compatibility/assets/data/mapas/Mapa266.map b/compatibility/assets/data/mapas/Mapa266.map
new file mode 100644
index 00000000..d774a35b
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa266.map differ
diff --git a/compatibility/assets/data/mapas/Mapa267.map b/compatibility/assets/data/mapas/Mapa267.map
new file mode 100644
index 00000000..8385053b
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa267.map differ
diff --git a/compatibility/assets/data/mapas/Mapa268.map b/compatibility/assets/data/mapas/Mapa268.map
new file mode 100644
index 00000000..0668bb37
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa268.map differ
diff --git a/compatibility/assets/data/mapas/Mapa269.map b/compatibility/assets/data/mapas/Mapa269.map
new file mode 100644
index 00000000..43f4c04a
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa269.map differ
diff --git a/compatibility/assets/data/mapas/Mapa27.map b/compatibility/assets/data/mapas/Mapa27.map
new file mode 100644
index 00000000..c1715435
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa27.map differ
diff --git a/compatibility/assets/data/mapas/Mapa270.map b/compatibility/assets/data/mapas/Mapa270.map
new file mode 100644
index 00000000..37ad1a21
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa270.map differ
diff --git a/compatibility/assets/data/mapas/Mapa271.map b/compatibility/assets/data/mapas/Mapa271.map
new file mode 100644
index 00000000..bedb473d
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa271.map differ
diff --git a/compatibility/assets/data/mapas/Mapa272.map b/compatibility/assets/data/mapas/Mapa272.map
new file mode 100644
index 00000000..a5b2c992
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa272.map differ
diff --git a/compatibility/assets/data/mapas/Mapa273.map b/compatibility/assets/data/mapas/Mapa273.map
new file mode 100644
index 00000000..1879572c
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa273.map differ
diff --git a/compatibility/assets/data/mapas/Mapa274.map b/compatibility/assets/data/mapas/Mapa274.map
new file mode 100644
index 00000000..b9280451
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa274.map differ
diff --git a/compatibility/assets/data/mapas/Mapa275.map b/compatibility/assets/data/mapas/Mapa275.map
new file mode 100644
index 00000000..7b87959f
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa275.map differ
diff --git a/compatibility/assets/data/mapas/Mapa276.map b/compatibility/assets/data/mapas/Mapa276.map
new file mode 100644
index 00000000..8995f4fe
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa276.map differ
diff --git a/compatibility/assets/data/mapas/Mapa277.map b/compatibility/assets/data/mapas/Mapa277.map
new file mode 100644
index 00000000..87a84a47
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa277.map differ
diff --git a/compatibility/assets/data/mapas/Mapa278.map b/compatibility/assets/data/mapas/Mapa278.map
new file mode 100644
index 00000000..f3232555
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa278.map differ
diff --git a/compatibility/assets/data/mapas/Mapa279.map b/compatibility/assets/data/mapas/Mapa279.map
new file mode 100644
index 00000000..683693c0
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa279.map differ
diff --git a/compatibility/assets/data/mapas/Mapa28.map b/compatibility/assets/data/mapas/Mapa28.map
new file mode 100644
index 00000000..19d66148
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa28.map differ
diff --git a/compatibility/assets/data/mapas/Mapa280.map b/compatibility/assets/data/mapas/Mapa280.map
new file mode 100644
index 00000000..296a1b9b
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa280.map differ
diff --git a/compatibility/assets/data/mapas/Mapa281.map b/compatibility/assets/data/mapas/Mapa281.map
new file mode 100644
index 00000000..0d503dc4
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa281.map differ
diff --git a/compatibility/assets/data/mapas/Mapa282.map b/compatibility/assets/data/mapas/Mapa282.map
new file mode 100644
index 00000000..466a54fa
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa282.map differ
diff --git a/compatibility/assets/data/mapas/Mapa283.map b/compatibility/assets/data/mapas/Mapa283.map
new file mode 100644
index 00000000..cc7e6a78
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa283.map differ
diff --git a/compatibility/assets/data/mapas/Mapa284.map b/compatibility/assets/data/mapas/Mapa284.map
new file mode 100644
index 00000000..abcb54a9
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa284.map differ
diff --git a/compatibility/assets/data/mapas/Mapa285.map b/compatibility/assets/data/mapas/Mapa285.map
new file mode 100644
index 00000000..f4675a0a
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa285.map differ
diff --git a/compatibility/assets/data/mapas/Mapa286.map b/compatibility/assets/data/mapas/Mapa286.map
new file mode 100644
index 00000000..15acee12
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa286.map differ
diff --git a/compatibility/assets/data/mapas/Mapa287.map b/compatibility/assets/data/mapas/Mapa287.map
new file mode 100644
index 00000000..8eadf401
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa287.map differ
diff --git a/compatibility/assets/data/mapas/Mapa288.map b/compatibility/assets/data/mapas/Mapa288.map
new file mode 100644
index 00000000..88040fae
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa288.map differ
diff --git a/compatibility/assets/data/mapas/Mapa289.map b/compatibility/assets/data/mapas/Mapa289.map
new file mode 100644
index 00000000..7e7b4244
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa289.map differ
diff --git a/compatibility/assets/data/mapas/Mapa29.map b/compatibility/assets/data/mapas/Mapa29.map
new file mode 100644
index 00000000..91047eea
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa29.map differ
diff --git a/compatibility/assets/data/mapas/Mapa290.map b/compatibility/assets/data/mapas/Mapa290.map
new file mode 100644
index 00000000..fdec874d
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa290.map differ
diff --git a/compatibility/assets/data/mapas/Mapa3.map b/compatibility/assets/data/mapas/Mapa3.map
new file mode 100644
index 00000000..9a38fd8c
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa3.map differ
diff --git a/compatibility/assets/data/mapas/Mapa30.map b/compatibility/assets/data/mapas/Mapa30.map
new file mode 100644
index 00000000..c5f8e82e
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa30.map differ
diff --git a/compatibility/assets/data/mapas/Mapa31.map b/compatibility/assets/data/mapas/Mapa31.map
new file mode 100644
index 00000000..17fd6cdc
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa31.map differ
diff --git a/compatibility/assets/data/mapas/Mapa33.map b/compatibility/assets/data/mapas/Mapa33.map
new file mode 100644
index 00000000..c88b1159
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa33.map differ
diff --git a/compatibility/assets/data/mapas/Mapa35.map b/compatibility/assets/data/mapas/Mapa35.map
new file mode 100644
index 00000000..5181b1ea
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa35.map differ
diff --git a/compatibility/assets/data/mapas/Mapa37.map b/compatibility/assets/data/mapas/Mapa37.map
new file mode 100644
index 00000000..30202b63
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa37.map differ
diff --git a/compatibility/assets/data/mapas/Mapa38.map b/compatibility/assets/data/mapas/Mapa38.map
new file mode 100644
index 00000000..ac2478a8
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa38.map differ
diff --git a/compatibility/assets/data/mapas/Mapa39.map b/compatibility/assets/data/mapas/Mapa39.map
new file mode 100644
index 00000000..73b12444
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa39.map differ
diff --git a/compatibility/assets/data/mapas/Mapa4.map b/compatibility/assets/data/mapas/Mapa4.map
new file mode 100644
index 00000000..92447f7c
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa4.map differ
diff --git a/compatibility/assets/data/mapas/Mapa41.map b/compatibility/assets/data/mapas/Mapa41.map
new file mode 100644
index 00000000..32aa9e90
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa41.map differ
diff --git a/compatibility/assets/data/mapas/Mapa42.map b/compatibility/assets/data/mapas/Mapa42.map
new file mode 100644
index 00000000..52d629a9
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa42.map differ
diff --git a/compatibility/assets/data/mapas/Mapa43.map b/compatibility/assets/data/mapas/Mapa43.map
new file mode 100644
index 00000000..7aea4d07
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa43.map differ
diff --git a/compatibility/assets/data/mapas/Mapa44.map b/compatibility/assets/data/mapas/Mapa44.map
new file mode 100644
index 00000000..de3f7eb4
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa44.map differ
diff --git a/compatibility/assets/data/mapas/Mapa46.map b/compatibility/assets/data/mapas/Mapa46.map
new file mode 100644
index 00000000..0df80356
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa46.map differ
diff --git a/compatibility/assets/data/mapas/Mapa47.map b/compatibility/assets/data/mapas/Mapa47.map
new file mode 100644
index 00000000..891a169a
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa47.map differ
diff --git a/compatibility/assets/data/mapas/Mapa48.map b/compatibility/assets/data/mapas/Mapa48.map
new file mode 100644
index 00000000..7eef8330
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa48.map differ
diff --git a/compatibility/assets/data/mapas/Mapa49.map b/compatibility/assets/data/mapas/Mapa49.map
new file mode 100644
index 00000000..64045a7b
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa49.map differ
diff --git a/compatibility/assets/data/mapas/Mapa5.map b/compatibility/assets/data/mapas/Mapa5.map
new file mode 100644
index 00000000..7a637e9f
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa5.map differ
diff --git a/compatibility/assets/data/mapas/Mapa50.map b/compatibility/assets/data/mapas/Mapa50.map
new file mode 100644
index 00000000..fb0e9edb
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa50.map differ
diff --git a/compatibility/assets/data/mapas/Mapa51.map b/compatibility/assets/data/mapas/Mapa51.map
new file mode 100644
index 00000000..40d48a8d
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa51.map differ
diff --git a/compatibility/assets/data/mapas/Mapa52.map b/compatibility/assets/data/mapas/Mapa52.map
new file mode 100644
index 00000000..572463d7
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa52.map differ
diff --git a/compatibility/assets/data/mapas/Mapa53.map b/compatibility/assets/data/mapas/Mapa53.map
new file mode 100644
index 00000000..f3316abf
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa53.map differ
diff --git a/compatibility/assets/data/mapas/Mapa54.map b/compatibility/assets/data/mapas/Mapa54.map
new file mode 100644
index 00000000..78adac44
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa54.map differ
diff --git a/compatibility/assets/data/mapas/Mapa55.map b/compatibility/assets/data/mapas/Mapa55.map
new file mode 100644
index 00000000..9a5f2549
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa55.map differ
diff --git a/compatibility/assets/data/mapas/Mapa56.map b/compatibility/assets/data/mapas/Mapa56.map
new file mode 100644
index 00000000..4a132af4
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa56.map differ
diff --git a/compatibility/assets/data/mapas/Mapa57.map b/compatibility/assets/data/mapas/Mapa57.map
new file mode 100644
index 00000000..35375f33
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa57.map differ
diff --git a/compatibility/assets/data/mapas/Mapa58.map b/compatibility/assets/data/mapas/Mapa58.map
new file mode 100644
index 00000000..c5cba25f
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa58.map differ
diff --git a/compatibility/assets/data/mapas/Mapa59.map b/compatibility/assets/data/mapas/Mapa59.map
new file mode 100644
index 00000000..276b17c9
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa59.map differ
diff --git a/compatibility/assets/data/mapas/Mapa6.map b/compatibility/assets/data/mapas/Mapa6.map
new file mode 100644
index 00000000..9924ca4f
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa6.map differ
diff --git a/compatibility/assets/data/mapas/Mapa60.map b/compatibility/assets/data/mapas/Mapa60.map
new file mode 100644
index 00000000..733ef570
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa60.map differ
diff --git a/compatibility/assets/data/mapas/Mapa61.map b/compatibility/assets/data/mapas/Mapa61.map
new file mode 100644
index 00000000..4bed68ee
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa61.map differ
diff --git a/compatibility/assets/data/mapas/Mapa62.map b/compatibility/assets/data/mapas/Mapa62.map
new file mode 100644
index 00000000..1db9504e
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa62.map differ
diff --git a/compatibility/assets/data/mapas/Mapa63.map b/compatibility/assets/data/mapas/Mapa63.map
new file mode 100644
index 00000000..04f9a64f
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa63.map differ
diff --git a/compatibility/assets/data/mapas/Mapa65.map b/compatibility/assets/data/mapas/Mapa65.map
new file mode 100644
index 00000000..4696dbb9
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa65.map differ
diff --git a/compatibility/assets/data/mapas/Mapa66.map b/compatibility/assets/data/mapas/Mapa66.map
new file mode 100644
index 00000000..c6491f5d
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa66.map differ
diff --git a/compatibility/assets/data/mapas/Mapa67.map b/compatibility/assets/data/mapas/Mapa67.map
new file mode 100644
index 00000000..d802092a
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa67.map differ
diff --git a/compatibility/assets/data/mapas/Mapa68.map b/compatibility/assets/data/mapas/Mapa68.map
new file mode 100644
index 00000000..6a93814d
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa68.map differ
diff --git a/compatibility/assets/data/mapas/Mapa69.map b/compatibility/assets/data/mapas/Mapa69.map
new file mode 100644
index 00000000..7d665b55
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa69.map differ
diff --git a/compatibility/assets/data/mapas/Mapa7.map b/compatibility/assets/data/mapas/Mapa7.map
new file mode 100644
index 00000000..57df6037
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa7.map differ
diff --git a/compatibility/assets/data/mapas/Mapa70.map b/compatibility/assets/data/mapas/Mapa70.map
new file mode 100644
index 00000000..20506729
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa70.map differ
diff --git a/compatibility/assets/data/mapas/Mapa71.map b/compatibility/assets/data/mapas/Mapa71.map
new file mode 100644
index 00000000..33ffea89
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa71.map differ
diff --git a/compatibility/assets/data/mapas/Mapa72.map b/compatibility/assets/data/mapas/Mapa72.map
new file mode 100644
index 00000000..99ef37a6
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa72.map differ
diff --git a/compatibility/assets/data/mapas/Mapa73.map b/compatibility/assets/data/mapas/Mapa73.map
new file mode 100644
index 00000000..9a4db31d
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa73.map differ
diff --git a/compatibility/assets/data/mapas/Mapa74.map b/compatibility/assets/data/mapas/Mapa74.map
new file mode 100644
index 00000000..ba584a7d
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa74.map differ
diff --git a/compatibility/assets/data/mapas/Mapa75.map b/compatibility/assets/data/mapas/Mapa75.map
new file mode 100644
index 00000000..04cc6554
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa75.map differ
diff --git a/compatibility/assets/data/mapas/Mapa76.map b/compatibility/assets/data/mapas/Mapa76.map
new file mode 100644
index 00000000..fb2606a0
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa76.map differ
diff --git a/compatibility/assets/data/mapas/Mapa77.map b/compatibility/assets/data/mapas/Mapa77.map
new file mode 100644
index 00000000..cc5cb2a7
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa77.map differ
diff --git a/compatibility/assets/data/mapas/Mapa78.map b/compatibility/assets/data/mapas/Mapa78.map
new file mode 100644
index 00000000..6249d7b2
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa78.map differ
diff --git a/compatibility/assets/data/mapas/Mapa79.map b/compatibility/assets/data/mapas/Mapa79.map
new file mode 100644
index 00000000..4a0e9407
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa79.map differ
diff --git a/compatibility/assets/data/mapas/Mapa8.map b/compatibility/assets/data/mapas/Mapa8.map
new file mode 100644
index 00000000..9dae77d4
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa8.map differ
diff --git a/compatibility/assets/data/mapas/Mapa80.map b/compatibility/assets/data/mapas/Mapa80.map
new file mode 100644
index 00000000..64bafc3e
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa80.map differ
diff --git a/compatibility/assets/data/mapas/Mapa81.map b/compatibility/assets/data/mapas/Mapa81.map
new file mode 100644
index 00000000..0b59e4f2
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa81.map differ
diff --git a/compatibility/assets/data/mapas/Mapa82.map b/compatibility/assets/data/mapas/Mapa82.map
new file mode 100644
index 00000000..fa22b6de
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa82.map differ
diff --git a/compatibility/assets/data/mapas/Mapa83.map b/compatibility/assets/data/mapas/Mapa83.map
new file mode 100644
index 00000000..bf2ad750
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa83.map differ
diff --git a/compatibility/assets/data/mapas/Mapa84.map b/compatibility/assets/data/mapas/Mapa84.map
new file mode 100644
index 00000000..f584f68c
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa84.map differ
diff --git a/compatibility/assets/data/mapas/Mapa85.map b/compatibility/assets/data/mapas/Mapa85.map
new file mode 100644
index 00000000..d9439cbc
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa85.map differ
diff --git a/compatibility/assets/data/mapas/Mapa86.map b/compatibility/assets/data/mapas/Mapa86.map
new file mode 100644
index 00000000..fa25dab7
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa86.map differ
diff --git a/compatibility/assets/data/mapas/Mapa87.map b/compatibility/assets/data/mapas/Mapa87.map
new file mode 100644
index 00000000..01921671
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa87.map differ
diff --git a/compatibility/assets/data/mapas/Mapa88.map b/compatibility/assets/data/mapas/Mapa88.map
new file mode 100644
index 00000000..a89c006a
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa88.map differ
diff --git a/compatibility/assets/data/mapas/Mapa89.map b/compatibility/assets/data/mapas/Mapa89.map
new file mode 100644
index 00000000..140e79d0
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa89.map differ
diff --git a/compatibility/assets/data/mapas/Mapa9.map b/compatibility/assets/data/mapas/Mapa9.map
new file mode 100644
index 00000000..003fb8fb
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa9.map differ
diff --git a/compatibility/assets/data/mapas/Mapa90.map b/compatibility/assets/data/mapas/Mapa90.map
new file mode 100644
index 00000000..b88076bf
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa90.map differ
diff --git a/compatibility/assets/data/mapas/Mapa91.map b/compatibility/assets/data/mapas/Mapa91.map
new file mode 100644
index 00000000..5e2906fb
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa91.map differ
diff --git a/compatibility/assets/data/mapas/Mapa92.map b/compatibility/assets/data/mapas/Mapa92.map
new file mode 100644
index 00000000..82522107
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa92.map differ
diff --git a/compatibility/assets/data/mapas/Mapa93.map b/compatibility/assets/data/mapas/Mapa93.map
new file mode 100644
index 00000000..859821d9
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa93.map differ
diff --git a/compatibility/assets/data/mapas/Mapa94.map b/compatibility/assets/data/mapas/Mapa94.map
new file mode 100644
index 00000000..d79604d2
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa94.map differ
diff --git a/compatibility/assets/data/mapas/Mapa95.map b/compatibility/assets/data/mapas/Mapa95.map
new file mode 100644
index 00000000..99e36c93
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa95.map differ
diff --git a/compatibility/assets/data/mapas/Mapa96.map b/compatibility/assets/data/mapas/Mapa96.map
new file mode 100644
index 00000000..870607bd
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa96.map differ
diff --git a/compatibility/assets/data/mapas/Mapa97.map b/compatibility/assets/data/mapas/Mapa97.map
new file mode 100644
index 00000000..741a605b
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa97.map differ
diff --git a/compatibility/assets/data/mapas/Mapa98.map b/compatibility/assets/data/mapas/Mapa98.map
new file mode 100644
index 00000000..c818a31b
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa98.map differ
diff --git a/compatibility/assets/data/mapas/Mapa99.map b/compatibility/assets/data/mapas/Mapa99.map
new file mode 100644
index 00000000..d17b9395
Binary files /dev/null and b/compatibility/assets/data/mapas/Mapa99.map differ
diff --git a/compatibility/assets/data/mapas/mapa11.map b/compatibility/assets/data/mapas/mapa11.map
new file mode 100644
index 00000000..d1b73af5
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa11.map differ
diff --git a/compatibility/assets/data/mapas/mapa111.map b/compatibility/assets/data/mapas/mapa111.map
new file mode 100644
index 00000000..8ae3e9da
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa111.map differ
diff --git a/compatibility/assets/data/mapas/mapa114.map b/compatibility/assets/data/mapas/mapa114.map
new file mode 100644
index 00000000..348ac2d8
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa114.map differ
diff --git a/compatibility/assets/data/mapas/mapa122.map b/compatibility/assets/data/mapas/mapa122.map
new file mode 100644
index 00000000..9b0585ef
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa122.map differ
diff --git a/compatibility/assets/data/mapas/mapa130.map b/compatibility/assets/data/mapas/mapa130.map
new file mode 100644
index 00000000..9b0585ef
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa130.map differ
diff --git a/compatibility/assets/data/mapas/mapa138.map b/compatibility/assets/data/mapas/mapa138.map
new file mode 100644
index 00000000..037f58da
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa138.map differ
diff --git a/compatibility/assets/data/mapas/mapa139.map b/compatibility/assets/data/mapas/mapa139.map
new file mode 100644
index 00000000..6f453899
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa139.map differ
diff --git a/compatibility/assets/data/mapas/mapa151.map b/compatibility/assets/data/mapas/mapa151.map
new file mode 100644
index 00000000..d01438dc
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa151.map differ
diff --git a/compatibility/assets/data/mapas/mapa155.map b/compatibility/assets/data/mapas/mapa155.map
new file mode 100644
index 00000000..bed8c954
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa155.map differ
diff --git a/compatibility/assets/data/mapas/mapa181.map b/compatibility/assets/data/mapas/mapa181.map
new file mode 100644
index 00000000..1995edc9
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa181.map differ
diff --git a/compatibility/assets/data/mapas/mapa183.map b/compatibility/assets/data/mapas/mapa183.map
new file mode 100644
index 00000000..f20436af
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa183.map differ
diff --git a/compatibility/assets/data/mapas/mapa188.map b/compatibility/assets/data/mapas/mapa188.map
new file mode 100644
index 00000000..0c4ff88b
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa188.map differ
diff --git a/compatibility/assets/data/mapas/mapa190.map b/compatibility/assets/data/mapas/mapa190.map
new file mode 100644
index 00000000..ec39c41e
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa190.map differ
diff --git a/compatibility/assets/data/mapas/mapa192.map b/compatibility/assets/data/mapas/mapa192.map
new file mode 100644
index 00000000..e7812bfd
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa192.map differ
diff --git a/compatibility/assets/data/mapas/mapa196.map b/compatibility/assets/data/mapas/mapa196.map
new file mode 100644
index 00000000..7577a719
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa196.map differ
diff --git a/compatibility/assets/data/mapas/mapa209.map b/compatibility/assets/data/mapas/mapa209.map
new file mode 100644
index 00000000..b520a4be
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa209.map differ
diff --git a/compatibility/assets/data/mapas/mapa218.map b/compatibility/assets/data/mapas/mapa218.map
new file mode 100644
index 00000000..d17bc3dc
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa218.map differ
diff --git a/compatibility/assets/data/mapas/mapa223.map b/compatibility/assets/data/mapas/mapa223.map
new file mode 100644
index 00000000..19adbd4d
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa223.map differ
diff --git a/compatibility/assets/data/mapas/mapa224.map b/compatibility/assets/data/mapas/mapa224.map
new file mode 100644
index 00000000..527e786d
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa224.map differ
diff --git a/compatibility/assets/data/mapas/mapa23.map b/compatibility/assets/data/mapas/mapa23.map
new file mode 100644
index 00000000..f41fe696
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa23.map differ
diff --git a/compatibility/assets/data/mapas/mapa237.map b/compatibility/assets/data/mapas/mapa237.map
new file mode 100644
index 00000000..d83e551f
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa237.map differ
diff --git a/compatibility/assets/data/mapas/mapa239.map b/compatibility/assets/data/mapas/mapa239.map
new file mode 100644
index 00000000..1d4961af
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa239.map differ
diff --git a/compatibility/assets/data/mapas/mapa240.map b/compatibility/assets/data/mapas/mapa240.map
new file mode 100644
index 00000000..bc9973bd
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa240.map differ
diff --git a/compatibility/assets/data/mapas/mapa241.map b/compatibility/assets/data/mapas/mapa241.map
new file mode 100644
index 00000000..0d7204b1
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa241.map differ
diff --git a/compatibility/assets/data/mapas/mapa242.map b/compatibility/assets/data/mapas/mapa242.map
new file mode 100644
index 00000000..0f4b22df
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa242.map differ
diff --git a/compatibility/assets/data/mapas/mapa32.map b/compatibility/assets/data/mapas/mapa32.map
new file mode 100644
index 00000000..c5a257ac
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa32.map differ
diff --git a/compatibility/assets/data/mapas/mapa34.map b/compatibility/assets/data/mapas/mapa34.map
new file mode 100644
index 00000000..67899c89
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa34.map differ
diff --git a/compatibility/assets/data/mapas/mapa36.map b/compatibility/assets/data/mapas/mapa36.map
new file mode 100644
index 00000000..b601f071
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa36.map differ
diff --git a/compatibility/assets/data/mapas/mapa40.map b/compatibility/assets/data/mapas/mapa40.map
new file mode 100644
index 00000000..0049dd51
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa40.map differ
diff --git a/compatibility/assets/data/mapas/mapa45.map b/compatibility/assets/data/mapas/mapa45.map
new file mode 100644
index 00000000..8c0f7244
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa45.map differ
diff --git a/compatibility/assets/data/mapas/mapa64.map b/compatibility/assets/data/mapas/mapa64.map
new file mode 100644
index 00000000..cbc03568
Binary files /dev/null and b/compatibility/assets/data/mapas/mapa64.map differ
diff --git a/compatibility/assets/data/shaders/defaultPixelShader.glsl b/compatibility/assets/data/shaders/defaultPixelShader.glsl
new file mode 100644
index 00000000..469748d7
--- /dev/null
+++ b/compatibility/assets/data/shaders/defaultPixelShader.glsl
@@ -0,0 +1,17 @@
+#ifdef GL_ES
+#define LOWP lowp
+precision mediump float;
+#else
+#define LOWP
+#endif
+
+varying LOWP vec4 vColor;
+varying vec2 vTexCoord;
+
+//our texture samplers
+uniform sampler2D u_texture; //diffuse map
+
+void main() {
+ vec4 DiffuseColor = texture2D(u_texture, vTexCoord);
+ gl_FragColor = vColor * DiffuseColor;
+}
\ No newline at end of file
diff --git a/compatibility/assets/data/shaders/light.png b/compatibility/assets/data/shaders/light.png
new file mode 100644
index 00000000..9484adde
Binary files /dev/null and b/compatibility/assets/data/shaders/light.png differ
diff --git a/compatibility/assets/data/shaders/pixelShader.glsl b/compatibility/assets/data/shaders/pixelShader.glsl
new file mode 100644
index 00000000..40055dbf
--- /dev/null
+++ b/compatibility/assets/data/shaders/pixelShader.glsl
@@ -0,0 +1,29 @@
+#ifdef GL_ES
+#define LOWP lowp
+precision mediump float;
+#else
+#define LOWP
+#endif
+
+varying LOWP vec4 vColor;
+varying vec2 vTexCoord;
+
+//texture samplers
+uniform sampler2D u_texture; //diffuse map
+uniform sampler2D u_lightmap; //light map
+
+//additional parameters for the shader
+uniform vec2 resolution; //resolution of screen
+uniform LOWP vec4 ambientColor; //ambient RGB, alpha channel is intensity
+
+void main() {
+ vec4 diffuseColor = texture2D(u_texture, vTexCoord);
+ vec2 lighCoord = (gl_FragCoord.xy / resolution.xy);
+ vec4 light = texture2D(u_lightmap, lighCoord);
+
+ vec3 ambient = ambientColor.rgb * ambientColor.a;
+ vec3 intensity = ambient + light.rgb;
+ vec3 finalColor = diffuseColor.rgb * intensity;
+
+ gl_FragColor = vColor * vec4(finalColor, diffuseColor.a);
+}
diff --git a/compatibility/assets/data/shaders/vertexShader.glsl b/compatibility/assets/data/shaders/vertexShader.glsl
new file mode 100644
index 00000000..7af59e67
--- /dev/null
+++ b/compatibility/assets/data/shaders/vertexShader.glsl
@@ -0,0 +1,12 @@
+attribute vec4 a_position;
+attribute vec4 a_color;
+attribute vec2 a_texCoord0;
+uniform mat4 u_projTrans;
+varying vec4 vColor;
+varying vec2 vTexCoord;
+
+void main() {
+ vColor = a_color;
+ vTexCoord = a_texCoord0;
+ gl_Position = u_projTrans * a_position;
+}
\ No newline at end of file
diff --git a/compatibility/assets/data/sounds/hit.wav b/compatibility/assets/data/sounds/hit.wav
new file mode 100644
index 00000000..9f524478
Binary files /dev/null and b/compatibility/assets/data/sounds/hit.wav differ
diff --git a/compatibility/assets/data/sounds/jump.wav b/compatibility/assets/data/sounds/jump.wav
new file mode 100644
index 00000000..5d3cf09c
Binary files /dev/null and b/compatibility/assets/data/sounds/jump.wav differ
diff --git a/compatibility/assets/data/sounds/outofbounds.wav b/compatibility/assets/data/sounds/outofbounds.wav
new file mode 100644
index 00000000..7a97d44a
Binary files /dev/null and b/compatibility/assets/data/sounds/outofbounds.wav differ
diff --git a/compatibility/assets/data/sounds/pickup.wav b/compatibility/assets/data/sounds/pickup.wav
new file mode 100644
index 00000000..c4f1c409
Binary files /dev/null and b/compatibility/assets/data/sounds/pickup.wav differ
diff --git a/compatibility/assets/data/sounds/splash2.wav b/compatibility/assets/data/sounds/splash2.wav
new file mode 100644
index 00000000..63aba379
Binary files /dev/null and b/compatibility/assets/data/sounds/splash2.wav differ
diff --git a/compatibility/assets/data/sounds/target.wav b/compatibility/assets/data/sounds/target.wav
new file mode 100644
index 00000000..e74d3bb6
Binary files /dev/null and b/compatibility/assets/data/sounds/target.wav differ
diff --git a/compatibility/assets/output/graphics/images.atlas b/compatibility/assets/output/graphics/images.atlas
new file mode 100644
index 00000000..0106bf0a
--- /dev/null
+++ b/compatibility/assets/output/graphics/images.atlas
@@ -0,0 +1,17642 @@
+
+images.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+4060
+ rotate: false
+ xy: 1, 1363
+ size: 1280, 640
+ orig: 1280, 640
+ offset: 0, 0
+ index: -1
+4143
+ rotate: false
+ xy: 1, 682
+ size: 1120, 680
+ orig: 1120, 680
+ offset: 0, 0
+ index: -1
+4144
+ rotate: false
+ xy: 1, 1
+ size: 1120, 680
+ orig: 1120, 680
+ offset: 0, 0
+ index: -1
+
+images2.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+4117
+ rotate: false
+ xy: 1, 1
+ size: 1119, 944
+ orig: 1119, 944
+ offset: 0, 0
+ index: -1
+4145
+ rotate: false
+ xy: 1, 946
+ size: 1120, 680
+ orig: 1120, 680
+ offset: 0, 0
+ index: -1
+
+images3.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+15201
+ rotate: false
+ xy: 1, 847
+ size: 1119, 100
+ orig: 1119, 100
+ offset: 0, 0
+ index: -1
+15202
+ rotate: false
+ xy: 1, 746
+ size: 1119, 100
+ orig: 1119, 100
+ offset: 0, 0
+ index: -1
+4056
+ rotate: false
+ xy: 1121, 1420
+ size: 920, 472
+ orig: 920, 472
+ offset: 0, 0
+ index: -1
+4057
+ rotate: false
+ xy: 1121, 947
+ size: 920, 472
+ orig: 920, 472
+ offset: 0, 0
+ index: -1
+4058
+ rotate: false
+ xy: 1121, 474
+ size: 920, 472
+ orig: 920, 472
+ offset: 0, 0
+ index: -1
+4118
+ rotate: false
+ xy: 1, 948
+ size: 1119, 944
+ orig: 1119, 944
+ offset: 0, 0
+ index: -1
+4168
+ rotate: false
+ xy: 1, 245
+ size: 1000, 500
+ orig: 1000, 500
+ offset: 0, 0
+ index: -1
+4170
+ rotate: false
+ xy: 1002, 1
+ size: 920, 472
+ orig: 920, 472
+ offset: 0, 0
+ index: -1
+
+images4.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+4000
+ rotate: false
+ xy: 1, 1203
+ size: 901, 561
+ orig: 901, 561
+ offset: 0, 0
+ index: -1
+4062
+ rotate: false
+ xy: 1, 602
+ size: 864, 600
+ orig: 864, 600
+ offset: 0, 0
+ index: -1
+4063
+ rotate: false
+ xy: 1, 1
+ size: 864, 600
+ orig: 864, 600
+ offset: 0, 0
+ index: -1
+4064
+ rotate: false
+ xy: 903, 1164
+ size: 864, 600
+ orig: 864, 600
+ offset: 0, 0
+ index: -1
+4065
+ rotate: false
+ xy: 866, 563
+ size: 864, 600
+ orig: 864, 600
+ offset: 0, 0
+ index: -1
+
+images5.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+15228
+ rotate: false
+ xy: 1, 196
+ size: 798, 256
+ orig: 798, 256
+ offset: 0, 0
+ index: -1
+3094
+ rotate: false
+ xy: 1, 453
+ size: 800, 340
+ orig: 800, 340
+ offset: 0, 0
+ index: -1
+4035
+ rotate: false
+ xy: 866, 1
+ size: 812, 992
+ orig: 812, 992
+ offset: 0, 0
+ index: -1
+4119
+ rotate: false
+ xy: 866, 994
+ size: 855, 928
+ orig: 855, 928
+ offset: 0, 0
+ index: -1
+4120
+ rotate: false
+ xy: 1, 794
+ size: 864, 1128
+ orig: 864, 1128
+ offset: 0, 0
+ index: -1
+
+images6.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+12040
+ rotate: false
+ xy: 738, 642
+ size: 640, 640
+ orig: 640, 640
+ offset: 0, 0
+ index: -1
+12173
+ rotate: false
+ xy: 1, 575
+ size: 704, 459
+ orig: 704, 459
+ offset: 0, 0
+ index: -1
+12174
+ rotate: false
+ xy: 1, 115
+ size: 704, 459
+ orig: 704, 459
+ offset: 0, 0
+ index: -1
+15200
+ rotate: false
+ xy: 706, 507
+ size: 626, 134
+ orig: 626, 134
+ offset: 0, 0
+ index: -1
+15203
+ rotate: false
+ xy: 1, 9
+ size: 560, 50
+ orig: 560, 50
+ offset: 0, 0
+ index: -1
+3082
+ rotate: false
+ xy: 706, 1
+ size: 588, 304
+ orig: 588, 304
+ offset: 0, 0
+ index: -1
+3092
+ rotate: false
+ xy: 1, 1700
+ size: 760, 330
+ orig: 760, 330
+ offset: 0, 0
+ index: -1
+3096
+ rotate: false
+ xy: 1463, 1450
+ size: 580, 580
+ orig: 580, 580
+ offset: 0, 0
+ index: -1
+3099
+ rotate: false
+ xy: 762, 1500
+ size: 700, 530
+ orig: 700, 530
+ offset: 0, 0
+ index: -1
+3100
+ rotate: false
+ xy: 1, 60
+ size: 600, 54
+ orig: 600, 54
+ offset: 0, 0
+ index: -1
+4001
+ rotate: false
+ xy: 1, 1035
+ size: 736, 664
+ orig: 736, 664
+ offset: 0, 0
+ index: -1
+4092
+ rotate: false
+ xy: 706, 306
+ size: 594, 200
+ orig: 594, 200
+ offset: 0, 0
+ index: -1
+4121
+ rotate: false
+ xy: 1333, 328
+ size: 539, 300
+ orig: 539, 300
+ offset: 0, 0
+ index: -1
+4135
+ rotate: false
+ xy: 738, 1283
+ size: 640, 216
+ orig: 640, 216
+ offset: 0, 0
+ index: -1
+4136
+ rotate: false
+ xy: 1379, 1065
+ size: 576, 384
+ orig: 576, 384
+ offset: 0, 0
+ index: -1
+4137
+ rotate: false
+ xy: 1379, 680
+ size: 576, 384
+ orig: 576, 384
+ offset: 0, 0
+ index: -1
+4152
+ rotate: false
+ xy: 1301, 27
+ size: 539, 300
+ orig: 539, 300
+ offset: 0, 0
+ index: -1
+8173
+ rotate: false
+ xy: 1379, 629
+ size: 549, 50
+ orig: 549, 50
+ offset: 0, 0
+ index: -1
+
+images7.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10090
+ rotate: false
+ xy: 522, 931
+ size: 512, 512
+ orig: 512, 512
+ offset: 0, 0
+ index: -1
+12006
+ rotate: false
+ xy: 1035, 1444
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12008
+ rotate: false
+ xy: 1, 130
+ size: 512, 135
+ orig: 512, 135
+ offset: 0, 0
+ index: -1
+12052
+ rotate: false
+ xy: 1035, 1315
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12053
+ rotate: false
+ xy: 1, 1
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12054
+ rotate: false
+ xy: 1035, 1186
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12055
+ rotate: false
+ xy: 1035, 1057
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12056
+ rotate: false
+ xy: 1035, 928
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12059
+ rotate: false
+ xy: 514, 802
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12060
+ rotate: false
+ xy: 514, 673
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12064
+ rotate: false
+ xy: 514, 544
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12065
+ rotate: false
+ xy: 514, 415
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12067
+ rotate: false
+ xy: 514, 286
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12068
+ rotate: false
+ xy: 514, 157
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12069
+ rotate: false
+ xy: 514, 28
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12072
+ rotate: false
+ xy: 1027, 799
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12073
+ rotate: false
+ xy: 1027, 670
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12074
+ rotate: false
+ xy: 1027, 541
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12075
+ rotate: false
+ xy: 1027, 412
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12076
+ rotate: false
+ xy: 1027, 283
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12077
+ rotate: false
+ xy: 1027, 154
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12078
+ rotate: false
+ xy: 1027, 25
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+3095
+ rotate: false
+ xy: 1, 782
+ size: 512, 512
+ orig: 512, 512
+ offset: 0, 0
+ index: -1
+4004
+ rotate: false
+ xy: 1, 1295
+ size: 520, 664
+ orig: 520, 664
+ offset: 0, 0
+ index: -1
+8023
+ rotate: false
+ xy: 522, 1831
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8024
+ rotate: false
+ xy: 1, 653
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8025
+ rotate: false
+ xy: 522, 1702
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8111
+ rotate: false
+ xy: 1035, 1831
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8112
+ rotate: false
+ xy: 1, 524
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8113
+ rotate: false
+ xy: 522, 1573
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8115
+ rotate: false
+ xy: 1035, 1702
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8166
+ rotate: false
+ xy: 1, 395
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8167
+ rotate: false
+ xy: 522, 1444
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8168
+ rotate: false
+ xy: 1035, 1573
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+9022
+ rotate: false
+ xy: 1, 266
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+
+images8.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+11012
+ rotate: false
+ xy: 514, 1669
+ size: 500, 96
+ orig: 500, 96
+ offset: 0, 0
+ index: -1
+11013
+ rotate: false
+ xy: 1019, 1886
+ size: 500, 160
+ orig: 500, 160
+ offset: 0, 0
+ index: -1
+12175
+ rotate: false
+ xy: 514, 1129
+ size: 415, 539
+ orig: 415, 539
+ offset: 0, 0
+ index: -1
+12176
+ rotate: false
+ xy: 482, 444
+ size: 427, 474
+ orig: 427, 474
+ offset: 0, 0
+ index: -1
+15121
+ rotate: false
+ xy: 1331, 994
+ size: 400, 300
+ orig: 400, 300
+ offset: 0, 0
+ index: -1
+15168
+ rotate: false
+ xy: 1, 1790
+ size: 512, 256
+ orig: 512, 256
+ offset: 0, 0
+ index: -1
+15190
+ rotate: false
+ xy: 1, 1661
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+15198
+ rotate: false
+ xy: 482, 221
+ size: 420, 222
+ orig: 420, 222
+ offset: 0, 0
+ index: -1
+17006
+ rotate: false
+ xy: 1331, 663
+ size: 388, 330
+ orig: 388, 330
+ offset: 0, 0
+ index: -1
+17007
+ rotate: false
+ xy: 1311, 332
+ size: 388, 330
+ orig: 388, 330
+ offset: 0, 0
+ index: -1
+17009
+ rotate: false
+ xy: 1311, 1
+ size: 388, 330
+ orig: 388, 330
+ offset: 0, 0
+ index: -1
+3071
+ rotate: false
+ xy: 930, 1295
+ size: 400, 340
+ orig: 400, 340
+ offset: 0, 0
+ index: -1
+3089
+ rotate: false
+ xy: 1, 662
+ size: 480, 256
+ orig: 480, 256
+ offset: 0, 0
+ index: -1
+3090
+ rotate: false
+ xy: 1, 469
+ size: 480, 192
+ orig: 480, 192
+ offset: 0, 0
+ index: -1
+3098
+ rotate: false
+ xy: 1, 212
+ size: 480, 256
+ orig: 480, 256
+ offset: 0, 0
+ index: -1
+4008
+ rotate: false
+ xy: 930, 982
+ size: 400, 312
+ orig: 400, 312
+ offset: 0, 0
+ index: -1
+4034
+ rotate: false
+ xy: 1, 919
+ size: 490, 340
+ orig: 490, 340
+ offset: 0, 0
+ index: -1
+4039
+ rotate: false
+ xy: 903, 107
+ size: 399, 192
+ orig: 399, 192
+ offset: 0, 0
+ index: -1
+4051
+ rotate: false
+ xy: 1520, 1806
+ size: 445, 240
+ orig: 445, 240
+ offset: 0, 0
+ index: -1
+4073
+ rotate: false
+ xy: 910, 641
+ size: 400, 340
+ orig: 400, 340
+ offset: 0, 0
+ index: -1
+4074
+ rotate: false
+ xy: 910, 300
+ size: 400, 340
+ orig: 400, 340
+ offset: 0, 0
+ index: -1
+4075
+ rotate: false
+ xy: 1331, 1295
+ size: 400, 340
+ orig: 400, 340
+ offset: 0, 0
+ index: -1
+4094
+ rotate: false
+ xy: 1, 14
+ size: 473, 197
+ orig: 473, 197
+ offset: 0, 0
+ index: -1
+4124
+ rotate: false
+ xy: 1015, 1636
+ size: 415, 45
+ orig: 415, 45
+ offset: 0, 0
+ index: -1
+4125
+ rotate: false
+ xy: 482, 175
+ size: 415, 45
+ orig: 415, 45
+ offset: 0, 0
+ index: -1
+4126
+ rotate: false
+ xy: 1019, 1835
+ size: 440, 50
+ orig: 440, 50
+ offset: 0, 0
+ index: -1
+4127
+ rotate: false
+ xy: 1019, 1784
+ size: 440, 50
+ orig: 440, 50
+ offset: 0, 0
+ index: -1
+4128
+ rotate: false
+ xy: 1019, 1733
+ size: 440, 50
+ orig: 440, 50
+ offset: 0, 0
+ index: -1
+4129
+ rotate: false
+ xy: 1015, 1682
+ size: 440, 50
+ orig: 440, 50
+ offset: 0, 0
+ index: -1
+4134
+ rotate: false
+ xy: 475, 31
+ size: 415, 143
+ orig: 415, 143
+ offset: 0, 0
+ index: -1
+4151
+ rotate: false
+ xy: 1460, 1665
+ size: 416, 140
+ orig: 416, 140
+ offset: 0, 0
+ index: -1
+4167
+ rotate: false
+ xy: 514, 1766
+ size: 504, 280
+ orig: 504, 280
+ offset: 0, 0
+ index: -1
+7000
+ rotate: false
+ xy: 492, 919
+ size: 403, 209
+ orig: 403, 209
+ offset: 0, 0
+ index: -1
+8165
+ rotate: false
+ xy: 1, 1260
+ size: 500, 400
+ orig: 500, 400
+ offset: 0, 0
+ index: -1
+
+images9.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+12007
+ rotate: false
+ xy: 1164, 1342
+ size: 384, 384
+ orig: 384, 384
+ offset: 0, 0
+ index: -1
+12036
+ rotate: false
+ xy: 1549, 1342
+ size: 384, 384
+ orig: 384, 384
+ offset: 0, 0
+ index: -1
+12037
+ rotate: false
+ xy: 779, 1306
+ size: 384, 384
+ orig: 384, 384
+ offset: 0, 0
+ index: -1
+12038
+ rotate: false
+ xy: 1, 1268
+ size: 384, 384
+ orig: 384, 384
+ offset: 0, 0
+ index: -1
+12039
+ rotate: false
+ xy: 386, 1268
+ size: 384, 384
+ orig: 384, 384
+ offset: 0, 0
+ index: -1
+12057
+ rotate: false
+ xy: 1164, 1213
+ size: 384, 128
+ orig: 384, 128
+ offset: 0, 0
+ index: -1
+12058
+ rotate: false
+ xy: 1549, 1213
+ size: 384, 128
+ orig: 384, 128
+ offset: 0, 0
+ index: -1
+12062
+ rotate: false
+ xy: 771, 1177
+ size: 384, 128
+ orig: 384, 128
+ offset: 0, 0
+ index: -1
+14012
+ rotate: false
+ xy: 1, 787
+ size: 384, 480
+ orig: 384, 480
+ offset: 0, 0
+ index: -1
+14032
+ rotate: false
+ xy: 386, 787
+ size: 384, 480
+ orig: 384, 480
+ offset: 0, 0
+ index: -1
+15122
+ rotate: false
+ xy: 386, 282
+ size: 359, 504
+ orig: 359, 504
+ offset: 0, 0
+ index: -1
+15164
+ rotate: false
+ xy: 779, 1948
+ size: 385, 35
+ orig: 385, 35
+ offset: 0, 0
+ index: -1
+17000
+ rotate: false
+ xy: 1156, 864
+ size: 384, 348
+ orig: 384, 348
+ offset: 0, 0
+ index: -1
+17001
+ rotate: false
+ xy: 1541, 864
+ size: 384, 348
+ orig: 384, 348
+ offset: 0, 0
+ index: -1
+17002
+ rotate: false
+ xy: 771, 823
+ size: 384, 353
+ orig: 384, 353
+ offset: 0, 0
+ index: -1
+17003
+ rotate: false
+ xy: 1156, 510
+ size: 384, 353
+ orig: 384, 353
+ offset: 0, 0
+ index: -1
+17004
+ rotate: false
+ xy: 1541, 503
+ size: 384, 360
+ orig: 384, 360
+ offset: 0, 0
+ index: -1
+17005
+ rotate: false
+ xy: 771, 462
+ size: 384, 360
+ orig: 384, 360
+ offset: 0, 0
+ index: -1
+17008
+ rotate: false
+ xy: 1, 462
+ size: 384, 324
+ orig: 384, 324
+ offset: 0, 0
+ index: -1
+17010
+ rotate: false
+ xy: 1, 1653
+ size: 388, 330
+ orig: 388, 330
+ offset: 0, 0
+ index: -1
+17011
+ rotate: false
+ xy: 390, 1653
+ size: 388, 330
+ orig: 388, 330
+ offset: 0, 0
+ index: -1
+4153
+ rotate: false
+ xy: 1165, 1727
+ size: 384, 256
+ orig: 384, 256
+ offset: 0, 0
+ index: -1
+4154
+ rotate: false
+ xy: 1550, 1727
+ size: 384, 256
+ orig: 384, 256
+ offset: 0, 0
+ index: -1
+4155
+ rotate: false
+ xy: 779, 1691
+ size: 384, 256
+ orig: 384, 256
+ offset: 0, 0
+ index: -1
+6003
+ rotate: false
+ xy: 1156, 49
+ size: 357, 460
+ orig: 357, 460
+ offset: 0, 0
+ index: -1
+6011
+ rotate: false
+ xy: 1514, 42
+ size: 357, 460
+ orig: 357, 460
+ offset: 0, 0
+ index: -1
+6024
+ rotate: false
+ xy: 1, 1
+ size: 357, 460
+ orig: 357, 460
+ offset: 0, 0
+ index: -1
+6030
+ rotate: false
+ xy: 746, 1
+ size: 357, 460
+ orig: 357, 460
+ offset: 0, 0
+ index: -1
+9015
+ rotate: false
+ xy: 359, 217
+ size: 352, 64
+ orig: 352, 64
+ offset: 0, 0
+ index: -1
+9016
+ rotate: false
+ xy: 359, 217
+ size: 352, 64
+ orig: 352, 64
+ offset: 0, 0
+ index: -1
+
+images10.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10000
+ rotate: false
+ xy: 344, 1024
+ size: 333, 398
+ orig: 333, 398
+ offset: 0, 0
+ index: -1
+11008
+ rotate: false
+ xy: 991, 64
+ size: 300, 96
+ orig: 300, 96
+ offset: 0, 0
+ index: -1
+11009
+ rotate: false
+ xy: 1621, 494
+ size: 300, 160
+ orig: 300, 160
+ offset: 0, 0
+ index: -1
+11023
+ rotate: false
+ xy: 673, 908
+ size: 320, 96
+ orig: 320, 96
+ offset: 0, 0
+ index: -1
+11024
+ rotate: false
+ xy: 673, 683
+ size: 320, 224
+ orig: 320, 224
+ offset: 0, 0
+ index: -1
+11026
+ rotate: false
+ xy: 673, 298
+ size: 320, 384
+ orig: 320, 384
+ offset: 0, 0
+ index: -1
+11027
+ rotate: false
+ xy: 670, 137
+ size: 320, 160
+ orig: 320, 160
+ offset: 0, 0
+ index: -1
+12048
+ rotate: false
+ xy: 1, 1617
+ size: 352, 416
+ orig: 352, 416
+ offset: 0, 0
+ index: -1
+12093
+ rotate: false
+ xy: 1700, 1704
+ size: 320, 128
+ orig: 320, 128
+ offset: 0, 0
+ index: -1
+14004
+ rotate: false
+ xy: 1616, 313
+ size: 300, 180
+ orig: 300, 180
+ offset: 0, 0
+ index: -1
+14009
+ rotate: false
+ xy: 999, 1137
+ size: 320, 284
+ orig: 320, 284
+ offset: 0, 0
+ index: -1
+14010
+ rotate: false
+ xy: 999, 852
+ size: 320, 284
+ orig: 320, 284
+ offset: 0, 0
+ index: -1
+14024
+ rotate: false
+ xy: 1616, 132
+ size: 300, 180
+ orig: 300, 180
+ offset: 0, 0
+ index: -1
+14029
+ rotate: false
+ xy: 994, 567
+ size: 320, 284
+ orig: 320, 284
+ offset: 0, 0
+ index: -1
+14030
+ rotate: false
+ xy: 994, 282
+ size: 320, 284
+ orig: 320, 284
+ offset: 0, 0
+ index: -1
+15062
+ rotate: false
+ xy: 1, 1423
+ size: 350, 63
+ orig: 350, 63
+ offset: 0, 0
+ index: -1
+15063
+ rotate: false
+ xy: 354, 1840
+ size: 350, 63
+ orig: 350, 63
+ offset: 0, 0
+ index: -1
+15112
+ rotate: false
+ xy: 991, 161
+ size: 316, 120
+ orig: 316, 120
+ offset: 0, 0
+ index: -1
+15138
+ rotate: false
+ xy: 1337, 1551
+ size: 314, 234
+ orig: 314, 234
+ offset: 0, 0
+ index: -1
+3065
+ rotate: false
+ xy: 706, 1904
+ size: 320, 64
+ orig: 320, 64
+ offset: 0, 0
+ index: -1
+3091
+ rotate: false
+ xy: 1058, 1905
+ size: 320, 128
+ orig: 320, 128
+ offset: 0, 0
+ index: -1
+3093
+ rotate: false
+ xy: 1379, 1969
+ size: 320, 64
+ orig: 320, 64
+ offset: 0, 0
+ index: -1
+4002
+ rotate: false
+ xy: 1, 1022
+ size: 342, 400
+ orig: 342, 400
+ offset: 0, 0
+ index: -1
+4003
+ rotate: false
+ xy: 1, 624
+ size: 342, 397
+ orig: 342, 397
+ offset: 0, 0
+ index: -1
+4116
+ rotate: false
+ xy: 1, 624
+ size: 342, 397
+ orig: 342, 397
+ offset: 0, 0
+ index: -1
+4006
+ rotate: false
+ xy: 1, 226
+ size: 342, 397
+ orig: 342, 397
+ offset: 0, 0
+ index: -1
+4029
+ rotate: false
+ xy: 1018, 1422
+ size: 318, 240
+ orig: 318, 240
+ offset: 0, 0
+ index: -1
+4032
+ rotate: false
+ xy: 1337, 1226
+ size: 312, 324
+ orig: 312, 324
+ offset: 0, 0
+ index: -1
+4033
+ rotate: false
+ xy: 1320, 901
+ size: 312, 324
+ orig: 312, 324
+ offset: 0, 0
+ index: -1
+4038
+ rotate: false
+ xy: 1700, 1833
+ size: 320, 200
+ orig: 320, 200
+ offset: 0, 0
+ index: -1
+4066
+ rotate: false
+ xy: 354, 1443
+ size: 342, 396
+ orig: 342, 396
+ offset: 0, 0
+ index: -1
+4111
+ rotate: false
+ xy: 344, 107
+ size: 325, 264
+ orig: 325, 264
+ offset: 0, 0
+ index: -1
+4139
+ rotate: false
+ xy: 344, 698
+ size: 328, 325
+ orig: 328, 325
+ offset: 0, 0
+ index: -1
+4142
+ rotate: false
+ xy: 344, 372
+ size: 328, 325
+ orig: 328, 325
+ offset: 0, 0
+ index: -1
+4156
+ rotate: false
+ xy: 1320, 625
+ size: 300, 275
+ orig: 300, 275
+ offset: 0, 0
+ index: -1
+4169
+ rotate: false
+ xy: 1, 1
+ size: 330, 224
+ orig: 330, 224
+ offset: 0, 0
+ index: -1
+6002
+ rotate: false
+ xy: 1315, 354
+ size: 300, 270
+ orig: 300, 270
+ offset: 0, 0
+ index: -1
+6013
+ rotate: false
+ xy: 1652, 1315
+ size: 312, 388
+ orig: 312, 388
+ offset: 0, 0
+ index: -1
+6023
+ rotate: false
+ xy: 1315, 83
+ size: 300, 270
+ orig: 300, 270
+ offset: 0, 0
+ index: -1
+6032
+ rotate: false
+ xy: 1650, 926
+ size: 312, 388
+ orig: 312, 388
+ offset: 0, 0
+ index: -1
+6050
+ rotate: false
+ xy: 1633, 655
+ size: 300, 270
+ orig: 300, 270
+ offset: 0, 0
+ index: -1
+7001
+ rotate: false
+ xy: 1379, 1786
+ size: 320, 182
+ orig: 320, 182
+ offset: 0, 0
+ index: -1
+7007
+ rotate: false
+ xy: 705, 1663
+ size: 320, 240
+ orig: 320, 240
+ offset: 0, 0
+ index: -1
+7077
+ rotate: false
+ xy: 697, 1422
+ size: 320, 240
+ orig: 320, 240
+ offset: 0, 0
+ index: -1
+8019
+ rotate: false
+ xy: 332, 25
+ size: 300, 81
+ orig: 300, 81
+ offset: 0, 0
+ index: -1
+8142
+ rotate: false
+ xy: 670, 55
+ size: 300, 81
+ orig: 300, 81
+ offset: 0, 0
+ index: -1
+9007
+ rotate: false
+ xy: 678, 1005
+ size: 320, 416
+ orig: 320, 416
+ offset: 0, 0
+ index: -1
+9011
+ rotate: false
+ xy: 1, 1552
+ size: 351, 64
+ orig: 351, 64
+ offset: 0, 0
+ index: -1
+9012
+ rotate: false
+ xy: 354, 1969
+ size: 351, 64
+ orig: 351, 64
+ offset: 0, 0
+ index: -1
+9013
+ rotate: false
+ xy: 1, 1487
+ size: 351, 64
+ orig: 351, 64
+ offset: 0, 0
+ index: -1
+9014
+ rotate: false
+ xy: 354, 1904
+ size: 351, 64
+ orig: 351, 64
+ offset: 0, 0
+ index: -1
+9017
+ rotate: false
+ xy: 706, 1969
+ size: 351, 64
+ orig: 351, 64
+ offset: 0, 0
+ index: -1
+
+images11.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+11044
+ rotate: false
+ xy: 601, 1465
+ size: 288, 192
+ orig: 288, 192
+ offset: 0, 0
+ index: -1
+11045
+ rotate: false
+ xy: 600, 1272
+ size: 288, 192
+ orig: 288, 192
+ offset: 0, 0
+ index: -1
+11046
+ rotate: false
+ xy: 600, 1079
+ size: 288, 192
+ orig: 288, 192
+ offset: 0, 0
+ index: -1
+11047
+ rotate: false
+ xy: 596, 790
+ size: 288, 288
+ orig: 288, 288
+ offset: 0, 0
+ index: -1
+14015
+ rotate: false
+ xy: 582, 254
+ size: 282, 320
+ orig: 282, 320
+ offset: 0, 0
+ index: -1
+15114
+ rotate: false
+ xy: 1, 1708
+ size: 300, 300
+ orig: 300, 300
+ offset: 0, 0
+ index: -1
+15115
+ rotate: false
+ xy: 1, 1207
+ size: 300, 500
+ orig: 300, 500
+ offset: 0, 0
+ index: -1
+15123
+ rotate: false
+ xy: 1, 970
+ size: 298, 154
+ orig: 298, 154
+ offset: 0, 0
+ index: -1
+15124
+ rotate: false
+ xy: 302, 1732
+ size: 298, 154
+ orig: 298, 154
+ offset: 0, 0
+ index: -1
+15125
+ rotate: false
+ xy: 1, 815
+ size: 298, 154
+ orig: 298, 154
+ offset: 0, 0
+ index: -1
+15126
+ rotate: false
+ xy: 302, 1577
+ size: 298, 154
+ orig: 298, 154
+ offset: 0, 0
+ index: -1
+15196
+ rotate: false
+ xy: 300, 745
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17041
+ rotate: false
+ xy: 302, 1950
+ size: 300, 58
+ orig: 300, 58
+ offset: 0, 0
+ index: -1
+17042
+ rotate: false
+ xy: 1, 1125
+ size: 300, 81
+ orig: 300, 81
+ offset: 0, 0
+ index: -1
+17043
+ rotate: false
+ xy: 302, 1887
+ size: 300, 62
+ orig: 300, 62
+ offset: 0, 0
+ index: -1
+17044
+ rotate: false
+ xy: 603, 1943
+ size: 300, 65
+ orig: 300, 65
+ offset: 0, 0
+ index: -1
+4037
+ rotate: false
+ xy: 1, 617
+ size: 297, 197
+ orig: 297, 197
+ offset: 0, 0
+ index: -1
+4059
+ rotate: false
+ xy: 302, 1379
+ size: 297, 197
+ orig: 297, 197
+ offset: 0, 0
+ index: -1
+4078
+ rotate: false
+ xy: 1, 419
+ size: 297, 197
+ orig: 297, 197
+ offset: 0, 0
+ index: -1
+4105
+ rotate: false
+ xy: 582, 41
+ size: 280, 212
+ orig: 280, 212
+ offset: 0, 0
+ index: -1
+4106
+ rotate: false
+ xy: 1786, 1880
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+4107
+ rotate: false
+ xy: 1786, 1751
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+4108
+ rotate: false
+ xy: 1786, 1622
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+4109
+ rotate: false
+ xy: 1769, 1493
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+4148
+ rotate: false
+ xy: 302, 1181
+ size: 297, 197
+ orig: 297, 197
+ offset: 0, 0
+ index: -1
+4149
+ rotate: false
+ xy: 1, 221
+ size: 297, 197
+ orig: 297, 197
+ offset: 0, 0
+ index: -1
+6000
+ rotate: false
+ xy: 889, 860
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6001
+ rotate: false
+ xy: 1146, 772
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6008
+ rotate: false
+ xy: 889, 1156
+ size: 267, 300
+ orig: 267, 300
+ offset: 0, 0
+ index: -1
+6012
+ rotate: false
+ xy: 904, 1672
+ size: 293, 336
+ orig: 293, 336
+ offset: 0, 0
+ index: -1
+6014
+ rotate: false
+ xy: 1198, 1670
+ size: 293, 338
+ orig: 293, 338
+ offset: 0, 0
+ index: -1
+6015
+ rotate: false
+ xy: 885, 564
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6017
+ rotate: false
+ xy: 865, 307
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6018
+ rotate: false
+ xy: 1142, 515
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6020
+ rotate: false
+ xy: 1122, 194
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6021
+ rotate: false
+ xy: 865, 11
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6022
+ rotate: false
+ xy: 1403, 772
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6029
+ rotate: false
+ xy: 1169, 1369
+ size: 267, 300
+ orig: 267, 300
+ offset: 0, 0
+ index: -1
+6031
+ rotate: false
+ xy: 1492, 1672
+ size: 293, 336
+ orig: 293, 336
+ offset: 0, 0
+ index: -1
+6033
+ rotate: false
+ xy: 302, 842
+ size: 293, 338
+ orig: 293, 338
+ offset: 0, 0
+ index: -1
+6034
+ rotate: false
+ xy: 1399, 515
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6035
+ rotate: false
+ xy: 1379, 258
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6036
+ rotate: false
+ xy: 1379, 1
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6037
+ rotate: false
+ xy: 1437, 1217
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6038
+ rotate: false
+ xy: 1636, 194
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6039
+ rotate: false
+ xy: 1694, 1153
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6040
+ rotate: false
+ xy: 1660, 832
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6055
+ rotate: false
+ xy: 1157, 1068
+ size: 267, 300
+ orig: 267, 300
+ offset: 0, 0
+ index: -1
+6063
+ rotate: false
+ xy: 299, 424
+ size: 282, 320
+ orig: 282, 320
+ offset: 0, 0
+ index: -1
+6077
+ rotate: false
+ xy: 299, 103
+ size: 282, 320
+ orig: 282, 320
+ offset: 0, 0
+ index: -1
+8028
+ rotate: false
+ xy: 1492, 1474
+ size: 276, 197
+ orig: 276, 197
+ offset: 0, 0
+ index: -1
+8030
+ rotate: false
+ xy: 1, 23
+ size: 290, 197
+ orig: 290, 197
+ offset: 0, 0
+ index: -1
+8031
+ rotate: false
+ xy: 603, 1873
+ size: 290, 69
+ orig: 290, 69
+ offset: 0, 0
+ index: -1
+8032
+ rotate: false
+ xy: 292, 34
+ size: 276, 68
+ orig: 276, 68
+ offset: 0, 0
+ index: -1
+8033
+ rotate: false
+ xy: 892, 1457
+ size: 276, 214
+ orig: 276, 214
+ offset: 0, 0
+ index: -1
+8034
+ rotate: false
+ xy: 601, 1658
+ size: 290, 214
+ orig: 290, 214
+ offset: 0, 0
+ index: -1
+9020
+ rotate: false
+ xy: 589, 575
+ size: 282, 214
+ orig: 282, 214
+ offset: 0, 0
+ index: -1
+
+images12.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10004
+ rotate: false
+ xy: 1029, 553
+ size: 256, 194
+ orig: 256, 194
+ offset: 0, 0
+ index: -1
+11000
+ rotate: false
+ xy: 515, 34
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+11001
+ rotate: false
+ xy: 1029, 392
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+11002
+ rotate: false
+ xy: 1029, 295
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+11003
+ rotate: false
+ xy: 1029, 134
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+11004
+ rotate: false
+ xy: 1029, 37
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+11005
+ rotate: false
+ xy: 1286, 1847
+ size: 256, 185
+ orig: 256, 185
+ offset: 0, 0
+ index: -1
+11006
+ rotate: false
+ xy: 1286, 1750
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+11007
+ rotate: false
+ xy: 1286, 1589
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+11010
+ rotate: false
+ xy: 1286, 1492
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+11011
+ rotate: false
+ xy: 1286, 1296
+ size: 256, 195
+ orig: 256, 195
+ offset: 0, 0
+ index: -1
+11014
+ rotate: false
+ xy: 1286, 1199
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+11015
+ rotate: false
+ xy: 1286, 1038
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+11029
+ rotate: false
+ xy: 1286, 1038
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+11019
+ rotate: false
+ xy: 515, 1
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+11020
+ rotate: false
+ xy: 1286, 941
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+11021
+ rotate: false
+ xy: 1286, 780
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+11028
+ rotate: false
+ xy: 1286, 619
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+11030
+ rotate: false
+ xy: 1286, 522
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+11034
+ rotate: false
+ xy: 1286, 361
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+11035
+ rotate: false
+ xy: 1286, 264
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+12003
+ rotate: false
+ xy: 1543, 1648
+ size: 256, 384
+ orig: 256, 384
+ offset: 0, 0
+ index: -1
+12011
+ rotate: false
+ xy: 1543, 1263
+ size: 256, 384
+ orig: 256, 384
+ offset: 0, 0
+ index: -1
+12012
+ rotate: false
+ xy: 1543, 878
+ size: 256, 384
+ orig: 256, 384
+ offset: 0, 0
+ index: -1
+12082
+ rotate: false
+ xy: 1543, 493
+ size: 256, 384
+ orig: 256, 384
+ offset: 0, 0
+ index: -1
+12083
+ rotate: false
+ xy: 1543, 108
+ size: 256, 384
+ orig: 256, 384
+ offset: 0, 0
+ index: -1
+13106
+ rotate: false
+ xy: 1286, 7
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6041
+ rotate: false
+ xy: 1, 1712
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6042
+ rotate: false
+ xy: 258, 1737
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6044
+ rotate: false
+ xy: 258, 1480
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6045
+ rotate: false
+ xy: 1, 1455
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6047
+ rotate: false
+ xy: 258, 1159
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6048
+ rotate: false
+ xy: 1, 1159
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6049
+ rotate: false
+ xy: 515, 1737
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6056
+ rotate: false
+ xy: 515, 1480
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6057
+ rotate: false
+ xy: 515, 1223
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6058
+ rotate: false
+ xy: 515, 966
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6059
+ rotate: false
+ xy: 1, 838
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6060
+ rotate: false
+ xy: 258, 838
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6061
+ rotate: false
+ xy: 515, 645
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6062
+ rotate: false
+ xy: 1, 517
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6064
+ rotate: false
+ xy: 258, 542
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6066
+ rotate: false
+ xy: 515, 388
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6067
+ rotate: false
+ xy: 1, 260
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6070
+ rotate: false
+ xy: 258, 285
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6071
+ rotate: false
+ xy: 515, 131
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6072
+ rotate: false
+ xy: 258, 28
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6073
+ rotate: false
+ xy: 772, 1712
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6074
+ rotate: false
+ xy: 772, 1391
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6075
+ rotate: false
+ xy: 772, 1070
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6076
+ rotate: false
+ xy: 772, 749
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6078
+ rotate: false
+ xy: 772, 428
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6079
+ rotate: false
+ xy: 1, 3
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6080
+ rotate: false
+ xy: 772, 171
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+8014
+ rotate: false
+ xy: 1029, 1776
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+8015
+ rotate: false
+ xy: 1029, 1519
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+8080
+ rotate: false
+ xy: 1029, 1262
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+8175
+ rotate: false
+ xy: 772, 10
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+9008
+ rotate: false
+ xy: 1029, 1005
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+9018
+ rotate: false
+ xy: 1029, 748
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+
+images13.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10001
+ rotate: false
+ xy: 1, 448
+ size: 245, 256
+ orig: 245, 256
+ offset: 0, 0
+ index: -1
+10009
+ rotate: false
+ xy: 1182, 38
+ size: 204, 352
+ orig: 204, 352
+ offset: 0, 0
+ index: -1
+12041
+ rotate: false
+ xy: 1800, 1764
+ size: 222, 76
+ orig: 222, 76
+ offset: 0, 0
+ index: -1
+13107
+ rotate: false
+ xy: 1, 1789
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+14000
+ rotate: false
+ xy: 258, 1860
+ size: 256, 185
+ orig: 256, 185
+ offset: 0, 0
+ index: -1
+14001
+ rotate: false
+ xy: 515, 1859
+ size: 256, 186
+ orig: 256, 186
+ offset: 0, 0
+ index: -1
+14002
+ rotate: false
+ xy: 258, 1673
+ size: 256, 186
+ orig: 256, 186
+ offset: 0, 0
+ index: -1
+14003
+ rotate: false
+ xy: 1, 1604
+ size: 256, 184
+ orig: 256, 184
+ offset: 0, 0
+ index: -1
+14005
+ rotate: false
+ xy: 772, 1831
+ size: 256, 214
+ orig: 256, 214
+ offset: 0, 0
+ index: -1
+14006
+ rotate: false
+ xy: 515, 1671
+ size: 256, 187
+ orig: 256, 187
+ offset: 0, 0
+ index: -1
+14007
+ rotate: false
+ xy: 258, 1476
+ size: 256, 196
+ orig: 256, 196
+ offset: 0, 0
+ index: -1
+14008
+ rotate: false
+ xy: 1, 1283
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+14011
+ rotate: false
+ xy: 1029, 1745
+ size: 256, 300
+ orig: 256, 300
+ offset: 0, 0
+ index: -1
+14013
+ rotate: false
+ xy: 772, 1634
+ size: 256, 196
+ orig: 256, 196
+ offset: 0, 0
+ index: -1
+14014
+ rotate: false
+ xy: 515, 1482
+ size: 256, 188
+ orig: 256, 188
+ offset: 0, 0
+ index: -1
+14016
+ rotate: false
+ xy: 1286, 1981
+ size: 256, 64
+ orig: 256, 64
+ offset: 0, 0
+ index: -1
+14017
+ rotate: false
+ xy: 1543, 1981
+ size: 256, 64
+ orig: 256, 64
+ offset: 0, 0
+ index: -1
+14018
+ rotate: false
+ xy: 1286, 1916
+ size: 256, 64
+ orig: 256, 64
+ offset: 0, 0
+ index: -1
+14020
+ rotate: false
+ xy: 1543, 1795
+ size: 256, 185
+ orig: 256, 185
+ offset: 0, 0
+ index: -1
+14021
+ rotate: false
+ xy: 1286, 1729
+ size: 256, 186
+ orig: 256, 186
+ offset: 0, 0
+ index: -1
+14022
+ rotate: false
+ xy: 1029, 1558
+ size: 256, 186
+ orig: 256, 186
+ offset: 0, 0
+ index: -1
+14023
+ rotate: false
+ xy: 772, 1449
+ size: 256, 184
+ orig: 256, 184
+ offset: 0, 0
+ index: -1
+14025
+ rotate: false
+ xy: 515, 1267
+ size: 256, 214
+ orig: 256, 214
+ offset: 0, 0
+ index: -1
+14026
+ rotate: false
+ xy: 258, 1288
+ size: 256, 187
+ orig: 256, 187
+ offset: 0, 0
+ index: -1
+14027
+ rotate: false
+ xy: 258, 1091
+ size: 256, 196
+ orig: 256, 196
+ offset: 0, 0
+ index: -1
+14028
+ rotate: false
+ xy: 1, 962
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+14031
+ rotate: false
+ xy: 1543, 1494
+ size: 256, 300
+ orig: 256, 300
+ offset: 0, 0
+ index: -1
+14033
+ rotate: false
+ xy: 1286, 1532
+ size: 256, 196
+ orig: 256, 196
+ offset: 0, 0
+ index: -1
+14034
+ rotate: false
+ xy: 1029, 1369
+ size: 256, 188
+ orig: 256, 188
+ offset: 0, 0
+ index: -1
+14035
+ rotate: false
+ xy: 772, 1260
+ size: 256, 188
+ orig: 256, 188
+ offset: 0, 0
+ index: -1
+14036
+ rotate: false
+ xy: 515, 1202
+ size: 256, 64
+ orig: 256, 64
+ offset: 0, 0
+ index: -1
+14037
+ rotate: false
+ xy: 1286, 1467
+ size: 256, 64
+ orig: 256, 64
+ offset: 0, 0
+ index: -1
+14038
+ rotate: false
+ xy: 1543, 1429
+ size: 256, 64
+ orig: 256, 64
+ offset: 0, 0
+ index: -1
+143
+ rotate: false
+ xy: 739, 391
+ size: 231, 260
+ orig: 231, 260
+ offset: 0, 0
+ index: -1
+15001
+ rotate: false
+ xy: 1029, 1018
+ size: 253, 93
+ orig: 253, 93
+ offset: 0, 0
+ index: -1
+15009
+ rotate: false
+ xy: 1800, 1186
+ size: 200, 32
+ orig: 200, 32
+ offset: 0, 0
+ index: -1
+15060
+ rotate: false
+ xy: 712, 283
+ size: 209, 107
+ orig: 209, 107
+ offset: 0, 0
+ index: -1
+15127
+ rotate: false
+ xy: 772, 917
+ size: 248, 85
+ orig: 248, 85
+ offset: 0, 0
+ index: -1
+15159
+ rotate: false
+ xy: 1, 65
+ size: 204, 81
+ orig: 204, 81
+ offset: 0, 0
+ index: -1
+15169
+ rotate: false
+ xy: 1286, 1402
+ size: 256, 64
+ orig: 256, 64
+ offset: 0, 0
+ index: -1
+15178
+ rotate: false
+ xy: 1543, 1172
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+15179
+ rotate: false
+ xy: 1286, 1145
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+15180
+ rotate: false
+ xy: 1029, 1112
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+15189
+ rotate: false
+ xy: 480, 278
+ size: 209, 107
+ orig: 209, 107
+ offset: 0, 0
+ index: -1
+15191
+ rotate: false
+ xy: 772, 1003
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+15209
+ rotate: false
+ xy: 515, 977
+ size: 256, 224
+ orig: 256, 224
+ offset: 0, 0
+ index: -1
+15230
+ rotate: false
+ xy: 258, 834
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+15231
+ rotate: false
+ xy: 1, 705
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+3070
+ rotate: false
+ xy: 922, 150
+ size: 200, 170
+ orig: 200, 170
+ offset: 0, 0
+ index: -1
+4005
+ rotate: false
+ xy: 1800, 1219
+ size: 213, 140
+ orig: 213, 140
+ offset: 0, 0
+ index: -1
+4030
+ rotate: false
+ xy: 1798, 947
+ size: 228, 224
+ orig: 228, 224
+ offset: 0, 0
+ index: -1
+4031
+ rotate: false
+ xy: 690, 98
+ size: 200, 184
+ orig: 200, 184
+ offset: 0, 0
+ index: -1
+4040
+ rotate: false
+ xy: 891, 17
+ size: 198, 132
+ orig: 198, 132
+ offset: 0, 0
+ index: -1
+4050
+ rotate: false
+ xy: 480, 386
+ size: 231, 132
+ orig: 231, 132
+ offset: 0, 0
+ index: -1
+4072
+ rotate: false
+ xy: 1783, 109
+ size: 192, 157
+ orig: 192, 157
+ offset: 0, 0
+ index: -1
+4083
+ rotate: false
+ xy: 1800, 1841
+ size: 224, 204
+ orig: 224, 204
+ offset: 0, 0
+ index: -1
+4088
+ rotate: false
+ xy: 1846, 285
+ size: 192, 189
+ orig: 192, 189
+ offset: 0, 0
+ index: -1
+4093
+ rotate: false
+ xy: 1229, 612
+ size: 213, 140
+ orig: 213, 140
+ offset: 0, 0
+ index: -1
+4113
+ rotate: false
+ xy: 1586, 5
+ size: 196, 128
+ orig: 196, 128
+ offset: 0, 0
+ index: -1
+4114
+ rotate: false
+ xy: 1800, 1360
+ size: 218, 128
+ orig: 218, 128
+ offset: 0, 0
+ index: -1
+4130
+ rotate: false
+ xy: 1229, 391
+ size: 210, 220
+ orig: 210, 220
+ offset: 0, 0
+ index: -1
+4131
+ rotate: false
+ xy: 1443, 547
+ size: 212, 140
+ orig: 212, 140
+ offset: 0, 0
+ index: -1
+4133
+ rotate: false
+ xy: 206, 1
+ size: 194, 125
+ orig: 194, 125
+ offset: 0, 0
+ index: -1
+4138
+ rotate: false
+ xy: 1588, 141
+ size: 194, 125
+ orig: 194, 125
+ offset: 0, 0
+ index: -1
+4140
+ rotate: false
+ xy: 515, 776
+ size: 245, 200
+ orig: 245, 200
+ offset: 0, 0
+ index: -1
+4141
+ rotate: false
+ xy: 258, 633
+ size: 245, 200
+ orig: 245, 200
+ offset: 0, 0
+ index: -1
+4150
+ rotate: false
+ xy: 1540, 688
+ size: 216, 208
+ orig: 216, 208
+ offset: 0, 0
+ index: -1
+4160
+ rotate: false
+ xy: 1387, 1
+ size: 198, 132
+ orig: 198, 132
+ offset: 0, 0
+ index: -1
+4162
+ rotate: false
+ xy: 1800, 1489
+ size: 220, 184
+ orig: 220, 184
+ offset: 0, 0
+ index: -1
+4163
+ rotate: false
+ xy: 971, 321
+ size: 210, 140
+ orig: 210, 140
+ offset: 0, 0
+ index: -1
+6004
+ rotate: false
+ xy: 234, 127
+ size: 204, 204
+ orig: 204, 204
+ offset: 0, 0
+ index: -1
+6005
+ rotate: false
+ xy: 247, 332
+ size: 232, 300
+ orig: 232, 300
+ offset: 0, 0
+ index: -1
+6007
+ rotate: false
+ xy: 439, 70
+ size: 200, 207
+ orig: 200, 207
+ offset: 0, 0
+ index: -1
+6025
+ rotate: false
+ xy: 1656, 475
+ size: 204, 204
+ orig: 204, 204
+ offset: 0, 0
+ index: -1
+6026
+ rotate: false
+ xy: 1, 147
+ size: 232, 300
+ orig: 232, 300
+ offset: 0, 0
+ index: -1
+6028
+ rotate: false
+ xy: 1645, 267
+ size: 200, 207
+ orig: 200, 207
+ offset: 0, 0
+ index: -1
+6051
+ rotate: false
+ xy: 1440, 342
+ size: 204, 204
+ orig: 204, 204
+ offset: 0, 0
+ index: -1
+6052
+ rotate: false
+ xy: 996, 462
+ size: 232, 300
+ orig: 232, 300
+ offset: 0, 0
+ index: -1
+6054
+ rotate: false
+ xy: 1387, 134
+ size: 200, 207
+ orig: 200, 207
+ offset: 0, 0
+ index: -1
+8077
+ rotate: false
+ xy: 1800, 1674
+ size: 221, 89
+ orig: 221, 89
+ offset: 0, 0
+ index: -1
+8078
+ rotate: false
+ xy: 761, 652
+ size: 234, 264
+ orig: 234, 264
+ offset: 0, 0
+ index: -1
+8079
+ rotate: false
+ xy: 1029, 763
+ size: 250, 254
+ orig: 250, 254
+ offset: 0, 0
+ index: -1
+8164
+ rotate: false
+ xy: 1798, 680
+ size: 218, 266
+ orig: 218, 266
+ offset: 0, 0
+ index: -1
+9005
+ rotate: false
+ xy: 1543, 897
+ size: 254, 274
+ orig: 254, 274
+ offset: 0, 0
+ index: -1
+9009
+ rotate: false
+ xy: 504, 519
+ size: 234, 256
+ orig: 234, 256
+ offset: 0, 0
+ index: -1
+9019
+ rotate: false
+ xy: 1286, 753
+ size: 253, 391
+ orig: 253, 391
+ offset: 0, 0
+ index: -1
+
+images14.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10005
+ rotate: false
+ xy: 194, 1372
+ size: 186, 182
+ orig: 186, 182
+ offset: 0, 0
+ index: -1
+10006
+ rotate: false
+ xy: 383, 740
+ size: 152, 221
+ orig: 152, 221
+ offset: 0, 0
+ index: -1
+103
+ rotate: false
+ xy: 1289, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+104
+ rotate: false
+ xy: 907, 239
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+105
+ rotate: false
+ xy: 756, 150
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+107
+ rotate: false
+ xy: 605, 1
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+109
+ rotate: false
+ xy: 1058, 239
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+11
+ rotate: false
+ xy: 1, 393
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+11016
+ rotate: false
+ xy: 937, 1636
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+11017
+ rotate: false
+ xy: 936, 1507
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+11022
+ rotate: false
+ xy: 1, 991
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+11025
+ rotate: false
+ xy: 1, 926
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+11037
+ rotate: false
+ xy: 1, 829
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+111
+ rotate: false
+ xy: 1440, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+113
+ rotate: false
+ xy: 1442, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+115
+ rotate: false
+ xy: 1550, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+117
+ rotate: false
+ xy: 1551, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+119
+ rotate: false
+ xy: 1553, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+120
+ rotate: false
+ xy: 1551, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+122
+ rotate: false
+ xy: 1468, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+124
+ rotate: false
+ xy: 1468, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+127
+ rotate: false
+ xy: 1442, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+129
+ rotate: false
+ xy: 1591, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+13
+ rotate: false
+ xy: 152, 393
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+13007
+ rotate: false
+ xy: 383, 1244
+ size: 180, 210
+ orig: 180, 210
+ offset: 0, 0
+ index: -1
+132
+ rotate: false
+ xy: 1593, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+134
+ rotate: false
+ xy: 1619, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+136
+ rotate: false
+ xy: 1701, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+471
+ rotate: false
+ xy: 1701, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+138
+ rotate: false
+ xy: 1702, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+140
+ rotate: false
+ xy: 1742, 592
+ size: 150, 181
+ orig: 150, 181
+ offset: 0, 0
+ index: -1
+142
+ rotate: false
+ xy: 1744, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+144
+ rotate: false
+ xy: 1770, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+145
+ rotate: false
+ xy: 1744, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+147
+ rotate: false
+ xy: 1852, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+149
+ rotate: false
+ xy: 1852, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+15
+ rotate: false
+ xy: 534, 559
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+15056
+ rotate: false
+ xy: 936, 1410
+ size: 160, 96
+ orig: 160, 96
+ offset: 0, 0
+ index: -1
+15072
+ rotate: false
+ xy: 1, 764
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+151
+ rotate: false
+ xy: 1853, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+15105
+ rotate: false
+ xy: 917, 1313
+ size: 160, 96
+ orig: 160, 96
+ offset: 0, 0
+ index: -1
+15181
+ rotate: false
+ xy: 373, 1111
+ size: 160, 64
+ orig: 160, 64
+ offset: 0, 0
+ index: -1
+15182
+ rotate: false
+ xy: 695, 1152
+ size: 160, 64
+ orig: 160, 64
+ offset: 0, 0
+ index: -1
+15183
+ rotate: false
+ xy: 695, 1087
+ size: 160, 64
+ orig: 160, 64
+ offset: 0, 0
+ index: -1
+15206
+ rotate: false
+ xy: 516, 962
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+153
+ rotate: false
+ xy: 1853, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+155
+ rotate: false
+ xy: 1742, 411
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+157
+ rotate: false
+ xy: 1209, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+159
+ rotate: false
+ xy: 907, 58
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+161
+ rotate: false
+ xy: 1058, 58
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+167
+ rotate: false
+ xy: 1360, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+168
+ rotate: false
+ xy: 1511, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+169
+ rotate: false
+ xy: 1662, 230
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+170
+ rotate: false
+ xy: 1813, 230
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+171
+ rotate: false
+ xy: 1893, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+172
+ rotate: false
+ xy: 1893, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+173
+ rotate: false
+ xy: 1895, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+174
+ rotate: false
+ xy: 1895, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+175
+ rotate: false
+ xy: 1209, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+176
+ rotate: false
+ xy: 1360, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+177
+ rotate: false
+ xy: 1511, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+178
+ rotate: false
+ xy: 1662, 49
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+179
+ rotate: false
+ xy: 1813, 49
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+18
+ rotate: false
+ xy: 1015, 963
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+199
+ rotate: false
+ xy: 194, 1555
+ size: 186, 192
+ orig: 186, 192
+ offset: 0, 0
+ index: -1
+20
+ rotate: false
+ xy: 1100, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+23
+ rotate: false
+ xy: 1098, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+238
+ rotate: false
+ xy: 194, 789
+ size: 151, 180
+ orig: 151, 180
+ offset: 0, 0
+ index: -1
+25
+ rotate: false
+ xy: 1098, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+27
+ rotate: false
+ xy: 1097, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+3
+ rotate: false
+ xy: 536, 781
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21
+ rotate: false
+ xy: 536, 781
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+31
+ rotate: false
+ xy: 1015, 782
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+33
+ rotate: false
+ xy: 838, 693
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+35
+ rotate: false
+ xy: 685, 544
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+37
+ rotate: false
+ xy: 303, 378
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+39
+ rotate: false
+ xy: 1, 212
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+4011
+ rotate: false
+ xy: 856, 874
+ size: 158, 269
+ orig: 158, 269
+ offset: 0, 0
+ index: -1
+4013
+ rotate: false
+ xy: 766, 1867
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+4014
+ rotate: false
+ xy: 766, 1806
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+4015
+ rotate: false
+ xy: 766, 1745
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+4016
+ rotate: false
+ xy: 765, 1684
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+4017
+ rotate: false
+ xy: 765, 1623
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+4018
+ rotate: false
+ xy: 765, 1562
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+4019
+ rotate: false
+ xy: 765, 1501
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+4020
+ rotate: false
+ xy: 564, 1242
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+4082
+ rotate: false
+ xy: 576, 1915
+ size: 189, 125
+ orig: 189, 125
+ offset: 0, 0
+ index: -1
+4084
+ rotate: false
+ xy: 1, 574
+ size: 190, 189
+ orig: 190, 189
+ offset: 0, 0
+ index: -1
+4091
+ rotate: false
+ xy: 742, 1273
+ size: 174, 181
+ orig: 174, 181
+ offset: 0, 0
+ index: -1
+4098
+ rotate: false
+ xy: 192, 574
+ size: 190, 189
+ orig: 190, 189
+ offset: 0, 0
+ index: -1
+41
+ rotate: false
+ xy: 152, 212
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+4101
+ rotate: false
+ xy: 1, 1912
+ size: 192, 128
+ orig: 192, 128
+ offset: 0, 0
+ index: -1
+4102
+ rotate: false
+ xy: 1, 1783
+ size: 192, 128
+ orig: 192, 128
+ offset: 0, 0
+ index: -1
+4103
+ rotate: false
+ xy: 1, 1654
+ size: 192, 128
+ orig: 192, 128
+ offset: 0, 0
+ index: -1
+4104
+ rotate: false
+ xy: 1, 1525
+ size: 192, 128
+ orig: 192, 128
+ offset: 0, 0
+ index: -1
+4110
+ rotate: false
+ xy: 1, 1386
+ size: 192, 138
+ orig: 192, 138
+ offset: 0, 0
+ index: -1
+4112
+ rotate: false
+ xy: 1, 1249
+ size: 192, 136
+ orig: 192, 136
+ offset: 0, 0
+ index: -1
+4115
+ rotate: false
+ xy: 576, 1789
+ size: 189, 125
+ orig: 189, 125
+ offset: 0, 0
+ index: -1
+4122
+ rotate: false
+ xy: 373, 1176
+ size: 160, 67
+ orig: 160, 67
+ offset: 0, 0
+ index: -1
+4123
+ rotate: false
+ xy: 735, 1217
+ size: 160, 55
+ orig: 160, 55
+ offset: 0, 0
+ index: -1
+4132
+ rotate: false
+ xy: 1, 1056
+ size: 192, 192
+ orig: 192, 192
+ offset: 0, 0
+ index: -1
+4159
+ rotate: false
+ xy: 766, 1928
+ size: 172, 112
+ orig: 172, 112
+ offset: 0, 0
+ index: -1
+4166
+ rotate: false
+ xy: 534, 1091
+ size: 160, 150
+ orig: 160, 150
+ offset: 0, 0
+ index: -1
+43
+ rotate: false
+ xy: 454, 378
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+45
+ rotate: false
+ xy: 989, 601
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+47
+ rotate: false
+ xy: 836, 512
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+49
+ rotate: false
+ xy: 605, 363
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+5
+ rotate: false
+ xy: 687, 906
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+29
+ rotate: false
+ xy: 687, 906
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+5003
+ rotate: false
+ xy: 564, 1303
+ size: 177, 151
+ orig: 177, 151
+ offset: 0, 0
+ index: -1
+51
+ rotate: false
+ xy: 303, 197
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+53
+ rotate: false
+ xy: 1, 31
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+56
+ rotate: false
+ xy: 152, 31
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+58
+ rotate: false
+ xy: 454, 197
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+59
+ rotate: false
+ xy: 1140, 601
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+60
+ rotate: false
+ xy: 1248, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+61
+ rotate: false
+ xy: 1251, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+62
+ rotate: false
+ xy: 1249, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+63
+ rotate: false
+ xy: 1249, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+64
+ rotate: false
+ xy: 1166, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+65
+ rotate: false
+ xy: 1166, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+66
+ rotate: false
+ xy: 1291, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+67
+ rotate: false
+ xy: 1399, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+68
+ rotate: false
+ xy: 1402, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+69
+ rotate: false
+ xy: 1400, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+7
+ rotate: false
+ xy: 687, 725
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+70
+ rotate: false
+ xy: 1400, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+7009
+ rotate: false
+ xy: 194, 970
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+7013
+ rotate: false
+ xy: 355, 970
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+7042
+ rotate: false
+ xy: 896, 1144
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+7072
+ rotate: false
+ xy: 939, 1912
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+71
+ rotate: false
+ xy: 1317, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+72
+ rotate: false
+ xy: 1317, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+73
+ rotate: false
+ xy: 1291, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+74
+ rotate: false
+ xy: 987, 420
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+75
+ rotate: false
+ xy: 756, 331
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+77
+ rotate: false
+ xy: 605, 182
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+79
+ rotate: false
+ xy: 303, 16
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+81
+ rotate: false
+ xy: 454, 16
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+8163
+ rotate: false
+ xy: 937, 1765
+ size: 160, 146
+ orig: 160, 146
+ offset: 0, 0
+ index: -1
+83
+ rotate: false
+ xy: 1138, 420
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+9
+ rotate: false
+ xy: 383, 559
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+9001
+ rotate: false
+ xy: 194, 1748
+ size: 190, 292
+ orig: 190, 292
+ offset: 0, 0
+ index: -1
+9002
+ rotate: false
+ xy: 383, 1455
+ size: 190, 292
+ orig: 190, 292
+ offset: 0, 0
+ index: -1
+9003
+ rotate: false
+ xy: 385, 1748
+ size: 190, 292
+ orig: 190, 292
+ offset: 0, 0
+ index: -1
+9004
+ rotate: false
+ xy: 574, 1455
+ size: 190, 292
+ orig: 190, 292
+ offset: 0, 0
+ index: -1
+9010
+ rotate: false
+ xy: 194, 1099
+ size: 178, 272
+ orig: 178, 272
+ offset: 0, 0
+ index: -1
+
+images15.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+180
+ rotate: false
+ xy: 1, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+181
+ rotate: false
+ xy: 1, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+182
+ rotate: false
+ xy: 152, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+183
+ rotate: false
+ xy: 1, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+184
+ rotate: false
+ xy: 152, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+185
+ rotate: false
+ xy: 303, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+186
+ rotate: false
+ xy: 1, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+187
+ rotate: false
+ xy: 152, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+189
+ rotate: false
+ xy: 303, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+190
+ rotate: false
+ xy: 454, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+191
+ rotate: false
+ xy: 1, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+192
+ rotate: false
+ xy: 152, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+193
+ rotate: false
+ xy: 303, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+194
+ rotate: false
+ xy: 454, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+195
+ rotate: false
+ xy: 605, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+196
+ rotate: false
+ xy: 1, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+197
+ rotate: false
+ xy: 152, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+198
+ rotate: false
+ xy: 303, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+200
+ rotate: false
+ xy: 454, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+201
+ rotate: false
+ xy: 605, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+202
+ rotate: false
+ xy: 756, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+203
+ rotate: false
+ xy: 1, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+208
+ rotate: false
+ xy: 152, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+210
+ rotate: false
+ xy: 303, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+212
+ rotate: false
+ xy: 454, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+214
+ rotate: false
+ xy: 605, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+216
+ rotate: false
+ xy: 756, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+218
+ rotate: false
+ xy: 907, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+219
+ rotate: false
+ xy: 1, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+221
+ rotate: false
+ xy: 152, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+223
+ rotate: false
+ xy: 303, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+225
+ rotate: false
+ xy: 454, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+227
+ rotate: false
+ xy: 605, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+230
+ rotate: false
+ xy: 756, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+232
+ rotate: false
+ xy: 907, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+234
+ rotate: false
+ xy: 1058, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+236
+ rotate: false
+ xy: 1, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+240
+ rotate: false
+ xy: 152, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+242
+ rotate: false
+ xy: 303, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+244
+ rotate: false
+ xy: 454, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+246
+ rotate: false
+ xy: 605, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+248
+ rotate: false
+ xy: 756, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+250
+ rotate: false
+ xy: 907, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+252
+ rotate: false
+ xy: 1058, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+254
+ rotate: false
+ xy: 1209, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+256
+ rotate: false
+ xy: 1, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+258
+ rotate: false
+ xy: 152, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+260
+ rotate: false
+ xy: 303, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+262
+ rotate: false
+ xy: 454, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+264
+ rotate: false
+ xy: 605, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+266
+ rotate: false
+ xy: 756, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+268
+ rotate: false
+ xy: 907, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+297
+ rotate: false
+ xy: 1058, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+302
+ rotate: false
+ xy: 1209, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+334
+ rotate: false
+ xy: 1360, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+345
+ rotate: false
+ xy: 1, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+348
+ rotate: false
+ xy: 152, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+350
+ rotate: false
+ xy: 303, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+351
+ rotate: false
+ xy: 454, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+352
+ rotate: false
+ xy: 605, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+353
+ rotate: false
+ xy: 756, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+354
+ rotate: false
+ xy: 907, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+355
+ rotate: false
+ xy: 1058, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+356
+ rotate: false
+ xy: 1209, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+357
+ rotate: false
+ xy: 1360, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+358
+ rotate: false
+ xy: 1511, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+360
+ rotate: false
+ xy: 152, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+361
+ rotate: false
+ xy: 303, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+362
+ rotate: false
+ xy: 454, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+363
+ rotate: false
+ xy: 605, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+364
+ rotate: false
+ xy: 756, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+365
+ rotate: false
+ xy: 907, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+366
+ rotate: false
+ xy: 1058, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+368
+ rotate: false
+ xy: 1209, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+369
+ rotate: false
+ xy: 1360, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+370
+ rotate: false
+ xy: 1511, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+371
+ rotate: false
+ xy: 1662, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+372
+ rotate: false
+ xy: 303, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+373
+ rotate: false
+ xy: 454, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+374
+ rotate: false
+ xy: 605, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+375
+ rotate: false
+ xy: 756, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+376
+ rotate: false
+ xy: 907, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+377
+ rotate: false
+ xy: 1058, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+379
+ rotate: false
+ xy: 1209, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+380
+ rotate: false
+ xy: 1360, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+381
+ rotate: false
+ xy: 1511, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+382
+ rotate: false
+ xy: 1662, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+383
+ rotate: false
+ xy: 1813, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+384
+ rotate: false
+ xy: 454, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+385
+ rotate: false
+ xy: 605, 182
+ size: 150, 181
+ orig: 150, 181
+ offset: 0, 0
+ index: -1
+386
+ rotate: false
+ xy: 756, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+387
+ rotate: false
+ xy: 907, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+388
+ rotate: false
+ xy: 1058, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+390
+ rotate: false
+ xy: 1209, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+391
+ rotate: false
+ xy: 1360, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+392
+ rotate: false
+ xy: 1511, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+393
+ rotate: false
+ xy: 1662, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+394
+ rotate: false
+ xy: 1813, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+395
+ rotate: false
+ xy: 756, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+396
+ rotate: false
+ xy: 907, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+397
+ rotate: false
+ xy: 1058, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+398
+ rotate: false
+ xy: 1209, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+399
+ rotate: false
+ xy: 1360, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+401
+ rotate: false
+ xy: 1511, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+402
+ rotate: false
+ xy: 1662, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+403
+ rotate: false
+ xy: 1813, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+404
+ rotate: false
+ xy: 907, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+405
+ rotate: false
+ xy: 1058, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+406
+ rotate: false
+ xy: 1209, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+407
+ rotate: false
+ xy: 1360, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+409
+ rotate: false
+ xy: 1511, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+410
+ rotate: false
+ xy: 1662, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+411
+ rotate: false
+ xy: 1813, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+413
+ rotate: false
+ xy: 1058, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+422
+ rotate: false
+ xy: 1209, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+424
+ rotate: false
+ xy: 1360, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+426
+ rotate: false
+ xy: 1511, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+428
+ rotate: false
+ xy: 1662, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+429
+ rotate: false
+ xy: 1813, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+431
+ rotate: false
+ xy: 1209, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+433
+ rotate: false
+ xy: 1360, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+436
+ rotate: false
+ xy: 1511, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+438
+ rotate: false
+ xy: 1662, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+440
+ rotate: false
+ xy: 1813, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+442
+ rotate: false
+ xy: 1360, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+444
+ rotate: false
+ xy: 1511, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+446
+ rotate: false
+ xy: 1662, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+447
+ rotate: false
+ xy: 1813, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+449
+ rotate: false
+ xy: 1511, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+451
+ rotate: false
+ xy: 1662, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+453
+ rotate: false
+ xy: 1813, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+455
+ rotate: false
+ xy: 1662, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+458
+ rotate: false
+ xy: 1813, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+460
+ rotate: false
+ xy: 1813, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+462
+ rotate: false
+ xy: 605, 1
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+464
+ rotate: false
+ xy: 756, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+466
+ rotate: false
+ xy: 907, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+468
+ rotate: false
+ xy: 1058, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+469
+ rotate: false
+ xy: 1209, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+472
+ rotate: false
+ xy: 1360, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+474
+ rotate: false
+ xy: 1511, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+476
+ rotate: false
+ xy: 1662, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+479
+ rotate: false
+ xy: 1813, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+
+images16.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+15095
+ rotate: false
+ xy: 1209, 821
+ size: 150, 75
+ orig: 150, 75
+ offset: 0, 0
+ index: -1
+15101
+ rotate: false
+ xy: 1209, 740
+ size: 150, 80
+ orig: 150, 80
+ offset: 0, 0
+ index: -1
+16001
+ rotate: false
+ xy: 1360, 565
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16003
+ rotate: false
+ xy: 1058, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16005
+ rotate: false
+ xy: 1209, 559
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16009
+ rotate: false
+ xy: 1058, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16064
+ rotate: false
+ xy: 1058, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16010
+ rotate: false
+ xy: 1813, 622
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16012
+ rotate: false
+ xy: 1662, 544
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16013
+ rotate: false
+ xy: 1511, 408
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16014
+ rotate: false
+ xy: 1360, 384
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16015
+ rotate: false
+ xy: 1209, 378
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16017
+ rotate: false
+ xy: 1058, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16018
+ rotate: false
+ xy: 1813, 441
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16019
+ rotate: false
+ xy: 1662, 363
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16020
+ rotate: false
+ xy: 1511, 227
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16021
+ rotate: false
+ xy: 1360, 203
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16022
+ rotate: false
+ xy: 1209, 197
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16023
+ rotate: false
+ xy: 1058, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16024
+ rotate: false
+ xy: 1813, 260
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16025
+ rotate: false
+ xy: 1662, 182
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16026
+ rotate: false
+ xy: 1511, 46
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16027
+ rotate: false
+ xy: 1360, 22
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16028
+ rotate: false
+ xy: 1209, 16
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16029
+ rotate: false
+ xy: 1813, 79
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16031
+ rotate: false
+ xy: 1662, 1
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+1686
+ rotate: false
+ xy: 1360, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+3069
+ rotate: false
+ xy: 1511, 1236
+ size: 150, 80
+ orig: 150, 80
+ offset: 0, 0
+ index: -1
+4012
+ rotate: false
+ xy: 1662, 1135
+ size: 150, 181
+ orig: 150, 181
+ offset: 0, 0
+ index: -1
+4048
+ rotate: false
+ xy: 1511, 1003
+ size: 150, 232
+ orig: 150, 232
+ offset: 0, 0
+ index: -1
+4049
+ rotate: false
+ xy: 1813, 1084
+ size: 150, 232
+ orig: 150, 232
+ offset: 0, 0
+ index: -1
+4052
+ rotate: false
+ xy: 1662, 934
+ size: 150, 200
+ orig: 150, 200
+ offset: 0, 0
+ index: -1
+4054
+ rotate: false
+ xy: 1813, 803
+ size: 150, 280
+ orig: 150, 280
+ offset: 0, 0
+ index: -1
+4055
+ rotate: false
+ xy: 1058, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+4061
+ rotate: false
+ xy: 1209, 897
+ size: 150, 238
+ orig: 150, 238
+ offset: 0, 0
+ index: -1
+4069
+ rotate: false
+ xy: 1058, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+4070
+ rotate: false
+ xy: 1360, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+4071
+ rotate: false
+ xy: 1511, 822
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+4079
+ rotate: false
+ xy: 1662, 725
+ size: 150, 208
+ orig: 150, 208
+ offset: 0, 0
+ index: -1
+4080
+ rotate: false
+ xy: 1360, 746
+ size: 150, 208
+ orig: 150, 208
+ offset: 0, 0
+ index: -1
+4165
+ rotate: false
+ xy: 1511, 589
+ size: 150, 232
+ orig: 150, 232
+ offset: 0, 0
+ index: -1
+481
+ rotate: false
+ xy: 1, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+483
+ rotate: false
+ xy: 1, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+484
+ rotate: false
+ xy: 1, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+486
+ rotate: false
+ xy: 1, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+488
+ rotate: false
+ xy: 1, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+489
+ rotate: false
+ xy: 1, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+491
+ rotate: false
+ xy: 1, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+493
+ rotate: false
+ xy: 1, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+495
+ rotate: false
+ xy: 1, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+497
+ rotate: false
+ xy: 1, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+500
+ rotate: false
+ xy: 1, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+502
+ rotate: false
+ xy: 152, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+504
+ rotate: false
+ xy: 152, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+506
+ rotate: false
+ xy: 152, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+508
+ rotate: false
+ xy: 152, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+509
+ rotate: false
+ xy: 152, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+511
+ rotate: false
+ xy: 152, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+513
+ rotate: false
+ xy: 152, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+515
+ rotate: false
+ xy: 152, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+517
+ rotate: false
+ xy: 152, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+519
+ rotate: false
+ xy: 152, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+522
+ rotate: false
+ xy: 152, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+524
+ rotate: false
+ xy: 303, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+526
+ rotate: false
+ xy: 303, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+528
+ rotate: false
+ xy: 303, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+530
+ rotate: false
+ xy: 303, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+531
+ rotate: false
+ xy: 303, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+533
+ rotate: false
+ xy: 303, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+535
+ rotate: false
+ xy: 303, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+537
+ rotate: false
+ xy: 303, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+539
+ rotate: false
+ xy: 303, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+540
+ rotate: false
+ xy: 303, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+543
+ rotate: false
+ xy: 303, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+545
+ rotate: false
+ xy: 454, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+547
+ rotate: false
+ xy: 605, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+549
+ rotate: false
+ xy: 756, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+551
+ rotate: false
+ xy: 907, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+553
+ rotate: false
+ xy: 1058, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+554
+ rotate: false
+ xy: 1209, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+556
+ rotate: false
+ xy: 1360, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+558
+ rotate: false
+ xy: 1511, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+560
+ rotate: false
+ xy: 1662, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+562
+ rotate: false
+ xy: 1813, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+565
+ rotate: false
+ xy: 454, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+567
+ rotate: false
+ xy: 454, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+569
+ rotate: false
+ xy: 454, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+571
+ rotate: false
+ xy: 454, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+573
+ rotate: false
+ xy: 454, 954
+ size: 150, 181
+ orig: 150, 181
+ offset: 0, 0
+ index: -1
+575
+ rotate: false
+ xy: 454, 773
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+576
+ rotate: false
+ xy: 454, 592
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+578
+ rotate: false
+ xy: 454, 411
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+580
+ rotate: false
+ xy: 454, 230
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+582
+ rotate: false
+ xy: 454, 49
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+584
+ rotate: false
+ xy: 605, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+587
+ rotate: false
+ xy: 756, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+589
+ rotate: false
+ xy: 907, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+591
+ rotate: false
+ xy: 1058, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+593
+ rotate: false
+ xy: 1209, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+595
+ rotate: false
+ xy: 1360, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+597
+ rotate: false
+ xy: 1511, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+599
+ rotate: false
+ xy: 1662, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+601
+ rotate: false
+ xy: 1813, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+603
+ rotate: false
+ xy: 605, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+605
+ rotate: false
+ xy: 605, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+607
+ rotate: false
+ xy: 605, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+609
+ rotate: false
+ xy: 605, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+611
+ rotate: false
+ xy: 605, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+613
+ rotate: false
+ xy: 605, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+615
+ rotate: false
+ xy: 605, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+617
+ rotate: false
+ xy: 605, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+619
+ rotate: false
+ xy: 605, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+621
+ rotate: false
+ xy: 756, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+623
+ rotate: false
+ xy: 907, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+625
+ rotate: false
+ xy: 1058, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+627
+ rotate: false
+ xy: 1209, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+629
+ rotate: false
+ xy: 1360, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+631
+ rotate: false
+ xy: 1511, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+633
+ rotate: false
+ xy: 1662, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+635
+ rotate: false
+ xy: 1813, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+637
+ rotate: false
+ xy: 756, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+639
+ rotate: false
+ xy: 756, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+641
+ rotate: false
+ xy: 756, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+643
+ rotate: false
+ xy: 756, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+645
+ rotate: false
+ xy: 756, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+647
+ rotate: false
+ xy: 756, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+649
+ rotate: false
+ xy: 756, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+651
+ rotate: false
+ xy: 756, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+653
+ rotate: false
+ xy: 907, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+655
+ rotate: false
+ xy: 1058, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+657
+ rotate: false
+ xy: 1209, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+659
+ rotate: false
+ xy: 1360, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+661
+ rotate: false
+ xy: 1511, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+663
+ rotate: false
+ xy: 1662, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+665
+ rotate: false
+ xy: 1813, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+667
+ rotate: false
+ xy: 907, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+669
+ rotate: false
+ xy: 907, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+671
+ rotate: false
+ xy: 907, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+673
+ rotate: false
+ xy: 907, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+675
+ rotate: false
+ xy: 907, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+676
+ rotate: false
+ xy: 907, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+678
+ rotate: false
+ xy: 907, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+680
+ rotate: false
+ xy: 1058, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+682
+ rotate: false
+ xy: 1209, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+
+images17.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+1
+ rotate: false
+ xy: 605, 24
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+10002
+ rotate: false
+ xy: 893, 797
+ size: 130, 145
+ orig: 130, 145
+ offset: 0, 0
+ index: -1
+15033
+ rotate: false
+ xy: 756, 761
+ size: 130, 100
+ orig: 130, 100
+ offset: 0, 0
+ index: -1
+15050
+ rotate: false
+ xy: 1, 23
+ size: 146, 33
+ orig: 146, 33
+ offset: 0, 0
+ index: -1
+15113
+ rotate: false
+ xy: 289, 1
+ size: 140, 55
+ orig: 140, 55
+ offset: 0, 0
+ index: -1
+1556
+ rotate: false
+ xy: 1334, 978
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8120
+ rotate: false
+ xy: 1334, 978
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+1557
+ rotate: false
+ xy: 1178, 937
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8121
+ rotate: false
+ xy: 1178, 937
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+1558
+ rotate: false
+ xy: 1615, 1119
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8122
+ rotate: false
+ xy: 1615, 1119
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+1559
+ rotate: false
+ xy: 1615, 990
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8123
+ rotate: false
+ xy: 1615, 990
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+16032
+ rotate: false
+ xy: 1, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16033
+ rotate: false
+ xy: 1, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16059
+ rotate: false
+ xy: 1, 1505
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16060
+ rotate: false
+ xy: 1, 1324
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16061
+ rotate: false
+ xy: 1, 1143
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16069
+ rotate: false
+ xy: 1, 962
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16070
+ rotate: false
+ xy: 1, 781
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16071
+ rotate: false
+ xy: 1, 600
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16073
+ rotate: false
+ xy: 1, 419
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16074
+ rotate: false
+ xy: 1, 238
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16076
+ rotate: false
+ xy: 1, 57
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16077
+ rotate: false
+ xy: 152, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16078
+ rotate: false
+ xy: 152, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16079
+ rotate: false
+ xy: 152, 1505
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16080
+ rotate: false
+ xy: 152, 1324
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16081
+ rotate: false
+ xy: 152, 1143
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16082
+ rotate: false
+ xy: 152, 962
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16083
+ rotate: false
+ xy: 152, 781
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16085
+ rotate: false
+ xy: 152, 600
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16086
+ rotate: false
+ xy: 152, 419
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16087
+ rotate: false
+ xy: 152, 238
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16088
+ rotate: false
+ xy: 152, 57
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16090
+ rotate: false
+ xy: 303, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16091
+ rotate: false
+ xy: 303, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16092
+ rotate: false
+ xy: 303, 1505
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16093
+ rotate: false
+ xy: 303, 1324
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16095
+ rotate: false
+ xy: 303, 1143
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16096
+ rotate: false
+ xy: 303, 962
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16097
+ rotate: false
+ xy: 303, 781
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16098
+ rotate: false
+ xy: 303, 600
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16100
+ rotate: false
+ xy: 303, 419
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16101
+ rotate: false
+ xy: 303, 238
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16102
+ rotate: false
+ xy: 303, 57
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16103
+ rotate: false
+ xy: 454, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16104
+ rotate: false
+ xy: 605, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16105
+ rotate: false
+ xy: 756, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16106
+ rotate: false
+ xy: 907, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16107
+ rotate: false
+ xy: 1058, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16108
+ rotate: false
+ xy: 1209, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16109
+ rotate: false
+ xy: 1360, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16110
+ rotate: false
+ xy: 1511, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16111
+ rotate: false
+ xy: 1662, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16112
+ rotate: false
+ xy: 1813, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+20000
+ rotate: false
+ xy: 454, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+20001
+ rotate: false
+ xy: 454, 1505
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+20002
+ rotate: false
+ xy: 454, 1324
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+20008
+ rotate: false
+ xy: 454, 1143
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+20009
+ rotate: false
+ xy: 454, 962
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+20014
+ rotate: false
+ xy: 454, 781
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+20015
+ rotate: false
+ xy: 454, 599
+ size: 150, 181
+ orig: 150, 181
+ offset: 0, 0
+ index: -1
+20016
+ rotate: false
+ xy: 454, 418
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+20017
+ rotate: false
+ xy: 454, 236
+ size: 150, 181
+ orig: 150, 181
+ offset: 0, 0
+ index: -1
+21000
+ rotate: false
+ xy: 454, 55
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21001
+ rotate: false
+ xy: 605, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21002
+ rotate: false
+ xy: 756, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21003
+ rotate: false
+ xy: 907, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21010
+ rotate: false
+ xy: 1058, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21011
+ rotate: false
+ xy: 1209, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21012
+ rotate: false
+ xy: 1360, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21013
+ rotate: false
+ xy: 1511, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21014
+ rotate: false
+ xy: 1662, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+22000
+ rotate: false
+ xy: 1813, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+22004
+ rotate: false
+ xy: 605, 1505
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+22044
+ rotate: false
+ xy: 605, 1324
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24000
+ rotate: false
+ xy: 605, 1143
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24001
+ rotate: false
+ xy: 605, 962
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24002
+ rotate: false
+ xy: 605, 781
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24003
+ rotate: false
+ xy: 605, 600
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24004
+ rotate: false
+ xy: 605, 419
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24005
+ rotate: false
+ xy: 605, 238
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24006
+ rotate: false
+ xy: 605, 57
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24007
+ rotate: false
+ xy: 756, 1505
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24008
+ rotate: false
+ xy: 907, 1505
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24009
+ rotate: false
+ xy: 1058, 1505
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+3000
+ rotate: false
+ xy: 906, 1359
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3001
+ rotate: false
+ xy: 1052, 1359
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3002
+ rotate: false
+ xy: 1359, 1540
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3003
+ rotate: false
+ xy: 1505, 1540
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3004
+ rotate: false
+ xy: 1651, 1540
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3005
+ rotate: false
+ xy: 1797, 1540
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3006
+ rotate: false
+ xy: 1359, 1394
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3007
+ rotate: false
+ xy: 1198, 1336
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3008
+ rotate: false
+ xy: 906, 1213
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3009
+ rotate: false
+ xy: 1052, 1213
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3010
+ rotate: false
+ xy: 756, 1177
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3011
+ rotate: false
+ xy: 1505, 1394
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3012
+ rotate: false
+ xy: 1651, 1394
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3013
+ rotate: false
+ xy: 1797, 1394
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3014
+ rotate: false
+ xy: 1344, 1248
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3015
+ rotate: false
+ xy: 1198, 1190
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3016
+ rotate: false
+ xy: 902, 1067
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3017
+ rotate: false
+ xy: 756, 1031
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3018
+ rotate: false
+ xy: 1048, 1067
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3019
+ rotate: false
+ xy: 1490, 1248
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3020
+ rotate: false
+ xy: 1636, 1248
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3021
+ rotate: false
+ xy: 1463, 888
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3022
+ rotate: false
+ xy: 1307, 849
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3023
+ rotate: false
+ xy: 1178, 808
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3024
+ rotate: false
+ xy: 1024, 725
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3025
+ rotate: false
+ xy: 887, 668
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3026
+ rotate: false
+ xy: 756, 632
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3027
+ rotate: false
+ xy: 1744, 979
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3028
+ rotate: false
+ xy: 1592, 861
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3029
+ rotate: false
+ xy: 1436, 759
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3030
+ rotate: false
+ xy: 1307, 720
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3031
+ rotate: false
+ xy: 1153, 679
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3032
+ rotate: false
+ xy: 1016, 596
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3033
+ rotate: false
+ xy: 885, 539
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3034
+ rotate: false
+ xy: 756, 503
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3035
+ rotate: false
+ xy: 1873, 979
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3036
+ rotate: false
+ xy: 1721, 850
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3037
+ rotate: false
+ xy: 1565, 732
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3038
+ rotate: false
+ xy: 1436, 630
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3039
+ rotate: false
+ xy: 1282, 591
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3040
+ rotate: false
+ xy: 1145, 550
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3041
+ rotate: false
+ xy: 1014, 467
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3042
+ rotate: false
+ xy: 885, 410
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3043
+ rotate: false
+ xy: 756, 374
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3044
+ rotate: false
+ xy: 1850, 850
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3045
+ rotate: false
+ xy: 1694, 721
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3046
+ rotate: false
+ xy: 1565, 603
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3047
+ rotate: false
+ xy: 1411, 501
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3048
+ rotate: false
+ xy: 1274, 462
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3049
+ rotate: false
+ xy: 1143, 421
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3050
+ rotate: false
+ xy: 1014, 338
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3051
+ rotate: false
+ xy: 885, 281
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3052
+ rotate: false
+ xy: 756, 245
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3053
+ rotate: false
+ xy: 1823, 721
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3054
+ rotate: false
+ xy: 1694, 592
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3055
+ rotate: false
+ xy: 1540, 474
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3056
+ rotate: false
+ xy: 1403, 372
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3057
+ rotate: false
+ xy: 1272, 333
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3058
+ rotate: false
+ xy: 1143, 292
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3059
+ rotate: false
+ xy: 1014, 209
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3060
+ rotate: false
+ xy: 885, 152
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3061
+ rotate: false
+ xy: 756, 116
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3062
+ rotate: false
+ xy: 1823, 592
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3063
+ rotate: false
+ xy: 885, 23
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3064
+ rotate: false
+ xy: 1014, 80
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3066
+ rotate: false
+ xy: 1669, 463
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3072
+ rotate: false
+ xy: 1532, 345
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3073
+ rotate: false
+ xy: 1401, 243
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3074
+ rotate: false
+ xy: 1272, 204
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3075
+ rotate: false
+ xy: 1143, 163
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3076
+ rotate: false
+ xy: 1143, 34
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3077
+ rotate: false
+ xy: 1798, 463
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3078
+ rotate: false
+ xy: 1401, 114
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3079
+ rotate: false
+ xy: 1272, 75
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3080
+ rotate: false
+ xy: 1530, 216
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3081
+ rotate: false
+ xy: 1530, 87
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3083
+ rotate: false
+ xy: 1659, 216
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3084
+ rotate: false
+ xy: 1659, 87
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3085
+ rotate: false
+ xy: 1788, 334
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3086
+ rotate: false
+ xy: 1917, 334
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3087
+ rotate: false
+ xy: 1788, 205
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3088
+ rotate: false
+ xy: 1788, 205
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4009
+ rotate: false
+ xy: 1209, 1482
+ size: 149, 203
+ orig: 149, 203
+ offset: 0, 0
+ index: -1
+4010
+ rotate: false
+ xy: 1042, 854
+ size: 135, 212
+ orig: 135, 212
+ offset: 0, 0
+ index: -1
+4089
+ rotate: false
+ xy: 756, 1323
+ size: 149, 181
+ orig: 149, 181
+ offset: 0, 0
+ index: -1
+4161
+ rotate: false
+ xy: 756, 862
+ size: 136, 168
+ orig: 136, 168
+ offset: 0, 0
+ index: -1
+5004
+ rotate: false
+ xy: 1344, 1107
+ size: 140, 140
+ orig: 140, 140
+ offset: 0, 0
+ index: -1
+6016
+ rotate: false
+ xy: 1917, 205
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+6019
+ rotate: false
+ xy: 1788, 76
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+6043
+ rotate: false
+ xy: 1917, 76
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8017
+ rotate: false
+ xy: 1782, 1108
+ size: 145, 285
+ orig: 145, 285
+ offset: 0, 0
+ index: -1
+8020
+ rotate: false
+ xy: 148, 1
+ size: 140, 55
+ orig: 140, 55
+ offset: 0, 0
+ index: -1
+8141
+ rotate: false
+ xy: 1485, 1017
+ size: 129, 230
+ orig: 129, 230
+ offset: 0, 0
+ index: -1
+8170
+ rotate: false
+ xy: 1194, 1066
+ size: 139, 123
+ orig: 139, 123
+ offset: 0, 0
+ index: -1
+8171
+ rotate: false
+ xy: 902, 943
+ size: 139, 123
+ orig: 139, 123
+ offset: 0, 0
+ index: -1
+
+images18.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10003
+ rotate: false
+ xy: 1549, 466
+ size: 120, 222
+ orig: 120, 222
+ offset: 0, 0
+ index: -1
+10007
+ rotate: false
+ xy: 1549, 224
+ size: 104, 179
+ orig: 104, 179
+ offset: 0, 0
+ index: -1
+11031
+ rotate: false
+ xy: 1775, 1951
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+11032
+ rotate: false
+ xy: 1775, 1854
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+11036
+ rotate: false
+ xy: 1672, 1633
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+11039
+ rotate: false
+ xy: 1769, 1633
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+11040
+ rotate: false
+ xy: 1671, 1394
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+11041
+ rotate: false
+ xy: 1671, 1297
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+11042
+ rotate: false
+ xy: 1671, 1200
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+11043
+ rotate: false
+ xy: 1671, 1103
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+11048
+ rotate: false
+ xy: 1671, 878
+ size: 96, 224
+ orig: 96, 224
+ offset: 0, 0
+ index: -1
+11053
+ rotate: false
+ xy: 1747, 8
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+12000
+ rotate: false
+ xy: 1162, 1146
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12001
+ rotate: false
+ xy: 1162, 1017
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12002
+ rotate: false
+ xy: 1162, 888
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12004
+ rotate: false
+ xy: 1162, 759
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12005
+ rotate: false
+ xy: 1162, 630
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12009
+ rotate: false
+ xy: 1650, 123
+ size: 100, 100
+ orig: 100, 100
+ offset: 0, 0
+ index: -1
+12010
+ rotate: false
+ xy: 1654, 225
+ size: 100, 100
+ orig: 100, 100
+ offset: 0, 0
+ index: -1
+12021
+ rotate: false
+ xy: 1162, 501
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12022
+ rotate: false
+ xy: 1162, 372
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12023
+ rotate: false
+ xy: 1162, 243
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12024
+ rotate: false
+ xy: 1162, 114
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12025
+ rotate: false
+ xy: 1291, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12026
+ rotate: false
+ xy: 1291, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12027
+ rotate: false
+ xy: 1291, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12028
+ rotate: false
+ xy: 1291, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12029
+ rotate: false
+ xy: 1291, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12030
+ rotate: false
+ xy: 1291, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12031
+ rotate: false
+ xy: 1291, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12032
+ rotate: false
+ xy: 1291, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12033
+ rotate: false
+ xy: 1291, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12034
+ rotate: false
+ xy: 1291, 758
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12035
+ rotate: false
+ xy: 1291, 629
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12042
+ rotate: false
+ xy: 1291, 500
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12043
+ rotate: false
+ xy: 1291, 371
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12045
+ rotate: false
+ xy: 1291, 242
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12047
+ rotate: false
+ xy: 1291, 113
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12049
+ rotate: false
+ xy: 1420, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12051
+ rotate: false
+ xy: 1420, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12061
+ rotate: false
+ xy: 1420, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12063
+ rotate: false
+ xy: 1420, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12066
+ rotate: false
+ xy: 1420, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12070
+ rotate: false
+ xy: 1420, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12071
+ rotate: false
+ xy: 1420, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12079
+ rotate: false
+ xy: 1420, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12084
+ rotate: false
+ xy: 1420, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+13008
+ rotate: false
+ xy: 1863, 1401
+ size: 76, 68
+ orig: 76, 68
+ offset: 0, 0
+ index: -1
+13022
+ rotate: false
+ xy: 1868, 560
+ size: 75, 123
+ orig: 75, 123
+ offset: 0, 0
+ index: -1
+13025
+ rotate: false
+ xy: 1774, 660
+ size: 77, 58
+ orig: 77, 58
+ offset: 0, 0
+ index: -1
+13026
+ rotate: false
+ xy: 1942, 831
+ size: 75, 56
+ orig: 75, 56
+ offset: 0, 0
+ index: -1
+13027
+ rotate: false
+ xy: 1857, 1013
+ size: 78, 55
+ orig: 78, 55
+ offset: 0, 0
+ index: -1
+15002
+ rotate: false
+ xy: 130, 15
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+15008
+ rotate: false
+ xy: 1751, 142
+ size: 100, 50
+ orig: 100, 50
+ offset: 0, 0
+ index: -1
+15011
+ rotate: false
+ xy: 1671, 702
+ size: 80, 45
+ orig: 80, 45
+ offset: 0, 0
+ index: -1
+15021
+ rotate: false
+ xy: 887, 2
+ size: 110, 110
+ orig: 110, 110
+ offset: 0, 0
+ index: -1
+15029
+ rotate: false
+ xy: 775, 81
+ size: 111, 31
+ orig: 111, 31
+ offset: 0, 0
+ index: -1
+15030
+ rotate: false
+ xy: 1852, 142
+ size: 100, 50
+ orig: 100, 50
+ offset: 0, 0
+ index: -1
+15080
+ rotate: false
+ xy: 1852, 142
+ size: 100, 50
+ orig: 100, 50
+ offset: 0, 0
+ index: -1
+15031
+ rotate: false
+ xy: 1751, 74
+ size: 100, 67
+ orig: 100, 67
+ offset: 0, 0
+ index: -1
+15032
+ rotate: false
+ xy: 1650, 60
+ size: 100, 62
+ orig: 100, 62
+ offset: 0, 0
+ index: -1
+15035
+ rotate: false
+ xy: 1852, 11
+ size: 100, 130
+ orig: 100, 130
+ offset: 0, 0
+ index: -1
+15043
+ rotate: false
+ xy: 1671, 1491
+ size: 100, 100
+ orig: 100, 100
+ offset: 0, 0
+ index: -1
+15055
+ rotate: false
+ xy: 1764, 193
+ size: 103, 415
+ orig: 103, 415
+ offset: 0, 0
+ index: -1
+15061
+ rotate: false
+ xy: 1856, 869
+ size: 83, 107
+ orig: 83, 107
+ offset: 0, 0
+ index: -1
+15066
+ rotate: false
+ xy: 1291, 21
+ size: 125, 91
+ orig: 125, 91
+ offset: 0, 0
+ index: -1
+15067
+ rotate: false
+ xy: 1658, 326
+ size: 105, 139
+ orig: 105, 139
+ offset: 0, 0
+ index: -1
+15070
+ rotate: false
+ xy: 1872, 1813
+ size: 92, 43
+ orig: 92, 43
+ offset: 0, 0
+ index: -1
+15073
+ rotate: false
+ xy: 1861, 1206
+ size: 80, 80
+ orig: 80, 80
+ offset: 0, 0
+ index: -1
+15076
+ rotate: false
+ xy: 388, 31
+ size: 116, 65
+ orig: 116, 65
+ offset: 0, 0
+ index: -1
+15078
+ rotate: false
+ xy: 1205, 8
+ size: 82, 40
+ orig: 82, 40
+ offset: 0, 0
+ index: -1
+15093
+ rotate: false
+ xy: 1549, 5
+ size: 100, 77
+ orig: 100, 77
+ offset: 0, 0
+ index: -1
+15133
+ rotate: false
+ xy: 1867, 1558
+ size: 80, 51
+ orig: 80, 51
+ offset: 0, 0
+ index: -1
+15153
+ rotate: false
+ xy: 1672, 1600
+ size: 93, 32
+ orig: 93, 32
+ offset: 0, 0
+ index: -1
+15156
+ rotate: false
+ xy: 1420, 711
+ size: 128, 175
+ orig: 128, 175
+ offset: 0, 0
+ index: -1
+15158
+ rotate: false
+ xy: 775, 50
+ size: 110, 30
+ orig: 110, 30
+ offset: 0, 0
+ index: -1
+15165
+ rotate: false
+ xy: 1942, 755
+ size: 75, 75
+ orig: 75, 75
+ offset: 0, 0
+ index: -1
+15177
+ rotate: false
+ xy: 1162, 49
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+15186
+ rotate: false
+ xy: 1773, 1789
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+15187
+ rotate: false
+ xy: 1671, 813
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+15193
+ rotate: false
+ xy: 1420, 582
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+15195
+ rotate: false
+ xy: 1671, 748
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+15205
+ rotate: false
+ xy: 1, 5
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+2
+ rotate: false
+ xy: 1417, 33
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+25000
+ rotate: false
+ xy: 505, 4
+ size: 103, 30
+ orig: 103, 30
+ offset: 0, 0
+ index: -1
+25001
+ rotate: false
+ xy: 731, 19
+ size: 103, 30
+ orig: 103, 30
+ offset: 0, 0
+ index: -1
+25005
+ rotate: false
+ xy: 1420, 453
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+25006
+ rotate: false
+ xy: 1420, 324
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+25007
+ rotate: false
+ xy: 1420, 195
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+25008
+ rotate: false
+ xy: 1420, 66
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+25009
+ rotate: false
+ xy: 1549, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3067
+ rotate: false
+ xy: 1751, 41
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+3068
+ rotate: false
+ xy: 1650, 27
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+3097
+ rotate: false
+ xy: 1966, 1323
+ size: 75, 724
+ orig: 75, 724
+ offset: 0, 0
+ index: -1
+3106
+ rotate: false
+ xy: 388, 97
+ size: 120, 15
+ orig: 120, 15
+ offset: 0, 0
+ index: -1
+4007
+ rotate: false
+ xy: 1670, 508
+ size: 93, 100
+ orig: 93, 100
+ offset: 0, 0
+ index: -1
+4036
+ rotate: false
+ xy: 1768, 1078
+ size: 90, 96
+ orig: 90, 96
+ offset: 0, 0
+ index: -1
+4041
+ rotate: false
+ xy: 1678, 1994
+ size: 96, 53
+ orig: 96, 53
+ offset: 0, 0
+ index: -1
+4042
+ rotate: false
+ xy: 1678, 1940
+ size: 96, 53
+ orig: 96, 53
+ offset: 0, 0
+ index: -1
+4043
+ rotate: false
+ xy: 1675, 1778
+ size: 96, 53
+ orig: 96, 53
+ offset: 0, 0
+ index: -1
+4044
+ rotate: false
+ xy: 1108, 1
+ size: 96, 47
+ orig: 96, 47
+ offset: 0, 0
+ index: -1
+4045
+ rotate: false
+ xy: 1672, 1730
+ size: 96, 47
+ orig: 96, 47
+ offset: 0, 0
+ index: -1
+4046
+ rotate: false
+ xy: 1769, 1730
+ size: 96, 47
+ orig: 96, 47
+ offset: 0, 0
+ index: -1
+4053
+ rotate: false
+ xy: 998, 42
+ size: 109, 70
+ orig: 109, 70
+ offset: 0, 0
+ index: -1
+4067
+ rotate: false
+ xy: 1940, 940
+ size: 78, 128
+ orig: 78, 128
+ offset: 0, 0
+ index: -1
+4068
+ rotate: false
+ xy: 1866, 1691
+ size: 93, 97
+ orig: 93, 97
+ offset: 0, 0
+ index: -1
+4076
+ rotate: false
+ xy: 1768, 848
+ size: 87, 128
+ orig: 87, 128
+ offset: 0, 0
+ index: -1
+4081
+ rotate: false
+ xy: 1872, 1947
+ size: 93, 100
+ orig: 93, 100
+ offset: 0, 0
+ index: -1
+4085
+ rotate: false
+ xy: 627, 4
+ size: 103, 48
+ orig: 103, 48
+ offset: 0, 0
+ index: -1
+4086
+ rotate: false
+ xy: 1943, 370
+ size: 73, 189
+ orig: 73, 189
+ offset: 0, 0
+ index: -1
+4090
+ rotate: false
+ xy: 1942, 1105
+ size: 76, 181
+ orig: 76, 181
+ offset: 0, 0
+ index: -1
+4095
+ rotate: false
+ xy: 509, 35
+ size: 117, 77
+ orig: 117, 77
+ offset: 0, 0
+ index: -1
+4099
+ rotate: false
+ xy: 1768, 1393
+ size: 94, 97
+ orig: 94, 97
+ offset: 0, 0
+ index: -1
+4100
+ rotate: false
+ xy: 1772, 1535
+ size: 94, 97
+ orig: 94, 97
+ offset: 0, 0
+ index: -1
+4146
+ rotate: false
+ xy: 1774, 719
+ size: 87, 128
+ orig: 87, 128
+ offset: 0, 0
+ index: -1
+4164
+ rotate: false
+ xy: 1670, 609
+ size: 103, 79
+ orig: 103, 79
+ offset: 0, 0
+ index: -1
+5000
+ rotate: false
+ xy: 1859, 1069
+ size: 82, 105
+ orig: 82, 105
+ offset: 0, 0
+ index: -1
+5001
+ rotate: false
+ xy: 1861, 1287
+ size: 82, 105
+ orig: 82, 105
+ offset: 0, 0
+ index: -1
+5005
+ rotate: false
+ xy: 1944, 561
+ size: 73, 193
+ orig: 73, 193
+ offset: 0, 0
+ index: -1
+5006
+ rotate: false
+ xy: 1768, 1175
+ size: 92, 217
+ orig: 92, 217
+ offset: 0, 0
+ index: -1
+5007
+ rotate: false
+ xy: 1872, 1857
+ size: 93, 89
+ orig: 93, 89
+ offset: 0, 0
+ index: -1
+6006
+ rotate: false
+ xy: 1549, 1291
+ size: 121, 300
+ orig: 121, 300
+ offset: 0, 0
+ index: -1
+6009
+ rotate: false
+ xy: 1863, 1470
+ size: 80, 64
+ orig: 80, 64
+ offset: 0, 0
+ index: -1
+6027
+ rotate: false
+ xy: 1549, 990
+ size: 121, 300
+ orig: 121, 300
+ offset: 0, 0
+ index: -1
+6046
+ rotate: false
+ xy: 1, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+6053
+ rotate: false
+ xy: 1549, 689
+ size: 121, 300
+ orig: 121, 300
+ offset: 0, 0
+ index: -1
+6065
+ rotate: false
+ xy: 1, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+6068
+ rotate: false
+ xy: 1, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+6081
+ rotate: false
+ xy: 1, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+6082
+ rotate: false
+ xy: 1, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+7012
+ rotate: false
+ xy: 1, 1338
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7037
+ rotate: false
+ xy: 1, 1273
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7038
+ rotate: false
+ xy: 1, 1208
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7039
+ rotate: false
+ xy: 1, 1143
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7040
+ rotate: false
+ xy: 1, 1078
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7041
+ rotate: false
+ xy: 1, 1013
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7044
+ rotate: false
+ xy: 1, 948
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7047
+ rotate: false
+ xy: 1, 883
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7048
+ rotate: false
+ xy: 1, 818
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7049
+ rotate: false
+ xy: 1, 753
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7050
+ rotate: false
+ xy: 1, 688
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7051
+ rotate: false
+ xy: 1, 623
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7052
+ rotate: false
+ xy: 1, 558
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7053
+ rotate: false
+ xy: 1, 493
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7054
+ rotate: false
+ xy: 1, 428
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7055
+ rotate: false
+ xy: 1, 363
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7056
+ rotate: false
+ xy: 1, 298
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7057
+ rotate: false
+ xy: 1, 233
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7058
+ rotate: false
+ xy: 1, 168
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7059
+ rotate: false
+ xy: 1, 103
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7074
+ rotate: false
+ xy: 1, 38
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7076
+ rotate: false
+ xy: 130, 1983
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+8000
+ rotate: false
+ xy: 130, 1854
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8001
+ rotate: false
+ xy: 130, 1725
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8002
+ rotate: false
+ xy: 130, 1596
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8003
+ rotate: false
+ xy: 130, 1467
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8004
+ rotate: false
+ xy: 130, 1338
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8005
+ rotate: false
+ xy: 130, 1209
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8006
+ rotate: false
+ xy: 130, 1080
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8007
+ rotate: false
+ xy: 130, 951
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8008
+ rotate: false
+ xy: 130, 822
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8009
+ rotate: false
+ xy: 130, 693
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8010
+ rotate: false
+ xy: 130, 564
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8011
+ rotate: false
+ xy: 130, 435
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8012
+ rotate: false
+ xy: 130, 306
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8013
+ rotate: false
+ xy: 130, 177
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8016
+ rotate: false
+ xy: 1953, 67
+ size: 73, 302
+ orig: 73, 302
+ offset: 0, 0
+ index: -1
+8018
+ rotate: false
+ xy: 1862, 684
+ size: 79, 184
+ orig: 79, 184
+ offset: 0, 0
+ index: -1
+8021
+ rotate: false
+ xy: 1549, 83
+ size: 100, 140
+ orig: 100, 140
+ offset: 0, 0
+ index: -1
+8026
+ rotate: false
+ xy: 130, 48
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8027
+ rotate: false
+ xy: 1867, 1610
+ size: 80, 80
+ orig: 80, 80
+ offset: 0, 0
+ index: -1
+8029
+ rotate: false
+ xy: 1868, 429
+ size: 74, 130
+ orig: 74, 130
+ offset: 0, 0
+ index: -1
+8035
+ rotate: false
+ xy: 1868, 291
+ size: 74, 137
+ orig: 74, 137
+ offset: 0, 0
+ index: -1
+8053
+ rotate: false
+ xy: 259, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8055
+ rotate: false
+ xy: 259, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8057
+ rotate: false
+ xy: 259, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8059
+ rotate: false
+ xy: 259, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8061
+ rotate: false
+ xy: 259, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8062
+ rotate: false
+ xy: 259, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8063
+ rotate: false
+ xy: 259, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8064
+ rotate: false
+ xy: 259, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8065
+ rotate: false
+ xy: 259, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8066
+ rotate: false
+ xy: 259, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8067
+ rotate: false
+ xy: 259, 758
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8068
+ rotate: false
+ xy: 259, 629
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8069
+ rotate: false
+ xy: 259, 500
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8070
+ rotate: false
+ xy: 259, 371
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8071
+ rotate: false
+ xy: 259, 242
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8072
+ rotate: false
+ xy: 259, 113
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8073
+ rotate: false
+ xy: 388, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8074
+ rotate: false
+ xy: 388, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8076
+ rotate: false
+ xy: 1549, 1592
+ size: 122, 185
+ orig: 122, 185
+ offset: 0, 0
+ index: -1
+8084
+ rotate: false
+ xy: 1549, 404
+ size: 108, 61
+ orig: 108, 61
+ offset: 0, 0
+ index: -1
+8085
+ rotate: false
+ xy: 1940, 888
+ size: 78, 51
+ orig: 78, 51
+ offset: 0, 0
+ index: -1
+8105
+ rotate: false
+ xy: 1549, 1778
+ size: 125, 140
+ orig: 125, 140
+ offset: 0, 0
+ index: -1
+8106
+ rotate: false
+ xy: 388, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8109
+ rotate: false
+ xy: 1768, 977
+ size: 88, 100
+ orig: 88, 100
+ offset: 0, 0
+ index: -1
+8114
+ rotate: false
+ xy: 388, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8116
+ rotate: false
+ xy: 388, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8117
+ rotate: false
+ xy: 388, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8118
+ rotate: false
+ xy: 388, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8119
+ rotate: false
+ xy: 388, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8124
+ rotate: false
+ xy: 388, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8125
+ rotate: false
+ xy: 388, 758
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8126
+ rotate: false
+ xy: 388, 629
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8127
+ rotate: false
+ xy: 388, 500
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8128
+ rotate: false
+ xy: 388, 371
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8129
+ rotate: false
+ xy: 388, 242
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8130
+ rotate: false
+ xy: 388, 113
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8131
+ rotate: false
+ xy: 517, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8132
+ rotate: false
+ xy: 517, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8133
+ rotate: false
+ xy: 517, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8134
+ rotate: false
+ xy: 517, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8135
+ rotate: false
+ xy: 517, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8136
+ rotate: false
+ xy: 517, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8137
+ rotate: false
+ xy: 517, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8138
+ rotate: false
+ xy: 517, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8139
+ rotate: false
+ xy: 517, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8140
+ rotate: false
+ xy: 517, 758
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8143
+ rotate: false
+ xy: 517, 629
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8144
+ rotate: false
+ xy: 517, 500
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8145
+ rotate: false
+ xy: 517, 371
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8146
+ rotate: false
+ xy: 517, 242
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8147
+ rotate: false
+ xy: 517, 113
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8148
+ rotate: false
+ xy: 646, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8149
+ rotate: false
+ xy: 646, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8150
+ rotate: false
+ xy: 646, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8151
+ rotate: false
+ xy: 646, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8152
+ rotate: false
+ xy: 646, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8153
+ rotate: false
+ xy: 646, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8154
+ rotate: false
+ xy: 646, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8155
+ rotate: false
+ xy: 646, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8156
+ rotate: false
+ xy: 646, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8157
+ rotate: false
+ xy: 646, 758
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8158
+ rotate: false
+ xy: 646, 629
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8159
+ rotate: false
+ xy: 646, 440
+ size: 128, 188
+ orig: 128, 188
+ offset: 0, 0
+ index: -1
+8160
+ rotate: false
+ xy: 646, 311
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8161
+ rotate: false
+ xy: 646, 182
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8162
+ rotate: false
+ xy: 646, 53
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8176
+ rotate: false
+ xy: 775, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8177
+ rotate: false
+ xy: 775, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8178
+ rotate: false
+ xy: 775, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8179
+ rotate: false
+ xy: 775, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8180
+ rotate: false
+ xy: 775, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8181
+ rotate: false
+ xy: 775, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8182
+ rotate: false
+ xy: 775, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8183
+ rotate: false
+ xy: 775, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8184
+ rotate: false
+ xy: 775, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8185
+ rotate: false
+ xy: 775, 758
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8186
+ rotate: false
+ xy: 775, 629
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8187
+ rotate: false
+ xy: 775, 500
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8188
+ rotate: false
+ xy: 775, 371
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8189
+ rotate: false
+ xy: 775, 242
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8190
+ rotate: false
+ xy: 775, 113
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8191
+ rotate: false
+ xy: 904, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8192
+ rotate: false
+ xy: 904, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8193
+ rotate: false
+ xy: 904, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8194
+ rotate: false
+ xy: 904, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8195
+ rotate: false
+ xy: 904, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8196
+ rotate: false
+ xy: 904, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8197
+ rotate: false
+ xy: 904, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8198
+ rotate: false
+ xy: 904, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8199
+ rotate: false
+ xy: 904, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8200
+ rotate: false
+ xy: 904, 758
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8201
+ rotate: false
+ xy: 904, 629
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8202
+ rotate: false
+ xy: 904, 500
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8203
+ rotate: false
+ xy: 904, 371
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8204
+ rotate: false
+ xy: 904, 242
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8205
+ rotate: false
+ xy: 904, 113
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8206
+ rotate: false
+ xy: 1033, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8207
+ rotate: false
+ xy: 1033, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8208
+ rotate: false
+ xy: 1033, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8209
+ rotate: false
+ xy: 1033, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8210
+ rotate: false
+ xy: 1033, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8211
+ rotate: false
+ xy: 1033, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8212
+ rotate: false
+ xy: 1033, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8213
+ rotate: false
+ xy: 1033, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8214
+ rotate: false
+ xy: 1033, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8215
+ rotate: false
+ xy: 1033, 758
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8216
+ rotate: false
+ xy: 1033, 629
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8217
+ rotate: false
+ xy: 1033, 500
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8218
+ rotate: false
+ xy: 1033, 371
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8219
+ rotate: false
+ xy: 1033, 242
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8220
+ rotate: false
+ xy: 1033, 113
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8221
+ rotate: false
+ xy: 1162, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8222
+ rotate: false
+ xy: 1162, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8223
+ rotate: false
+ xy: 1162, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8224
+ rotate: false
+ xy: 1162, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+9000
+ rotate: false
+ xy: 259, 5
+ size: 128, 107
+ orig: 128, 107
+ offset: 0, 0
+ index: -1
+9006
+ rotate: false
+ xy: 1162, 1275
+ size: 128, 256
+ orig: 128, 256
+ offset: 0, 0
+ index: -1
+9021
+ rotate: false
+ xy: 1675, 1832
+ size: 97, 86
+ orig: 97, 86
+ offset: 0, 0
+ index: -1
+
+images19.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+0
+ rotate: false
+ xy: 1080, 1672
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+10
+ rotate: false
+ xy: 524, 311
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+100
+ rotate: false
+ xy: 1344, 1629
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+10008
+ rotate: false
+ xy: 1781, 1681
+ size: 47, 64
+ orig: 47, 64
+ offset: 0, 0
+ index: -1
+10010
+ rotate: false
+ xy: 844, 1354
+ size: 32, 70
+ orig: 32, 70
+ offset: 0, 0
+ index: -1
+101
+ rotate: false
+ xy: 1377, 1629
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+102
+ rotate: false
+ xy: 1278, 1603
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+106
+ rotate: false
+ xy: 1311, 1596
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+108
+ rotate: false
+ xy: 1344, 1596
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+110
+ rotate: false
+ xy: 1377, 1596
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+11018
+ rotate: false
+ xy: 795, 1088
+ size: 32, 160
+ orig: 32, 160
+ offset: 0, 0
+ index: -1
+11033
+ rotate: false
+ xy: 828, 1088
+ size: 32, 160
+ orig: 32, 160
+ offset: 0, 0
+ index: -1
+11038
+ rotate: false
+ xy: 1234, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+11049
+ rotate: false
+ xy: 877, 1328
+ size: 32, 96
+ orig: 32, 96
+ offset: 0, 0
+ index: -1
+11050
+ rotate: false
+ xy: 844, 1257
+ size: 32, 96
+ orig: 32, 96
+ offset: 0, 0
+ index: -1
+11051
+ rotate: false
+ xy: 279, 1505
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+11052
+ rotate: false
+ xy: 409, 1713
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+112
+ rotate: false
+ xy: 1410, 1622
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+114
+ rotate: false
+ xy: 1443, 1622
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+116
+ rotate: false
+ xy: 1410, 1589
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+118
+ rotate: false
+ xy: 1443, 1589
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12
+ rotate: false
+ xy: 524, 278
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12013
+ rotate: false
+ xy: 1516, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12014
+ rotate: false
+ xy: 409, 1648
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12015
+ rotate: false
+ xy: 929, 1618
+ size: 62, 62
+ orig: 62, 62
+ offset: 0, 0
+ index: -1
+12016
+ rotate: false
+ xy: 407, 680
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+12017
+ rotate: false
+ xy: 474, 1681
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12018
+ rotate: false
+ xy: 1581, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12019
+ rotate: false
+ xy: 409, 1583
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12020
+ rotate: false
+ xy: 474, 1616
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12044
+ rotate: false
+ xy: 474, 1616
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12046
+ rotate: false
+ xy: 539, 1681
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12050
+ rotate: false
+ xy: 1646, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12080
+ rotate: false
+ xy: 539, 1616
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12081
+ rotate: false
+ xy: 604, 1681
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12085
+ rotate: false
+ xy: 1711, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12090
+ rotate: false
+ xy: 1711, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12086
+ rotate: false
+ xy: 604, 1616
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12087
+ rotate: false
+ xy: 669, 1681
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12088
+ rotate: false
+ xy: 1776, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12089
+ rotate: false
+ xy: 669, 1616
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12091
+ rotate: false
+ xy: 734, 1681
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12092
+ rotate: false
+ xy: 1841, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+121
+ rotate: false
+ xy: 1476, 1609
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12152
+ rotate: false
+ xy: 1267, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+123
+ rotate: false
+ xy: 1476, 1576
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+125
+ rotate: false
+ xy: 577, 850
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+126
+ rotate: false
+ xy: 576, 817
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+128
+ rotate: false
+ xy: 570, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+130
+ rotate: false
+ xy: 610, 850
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13000
+ rotate: false
+ xy: 877, 1277
+ size: 32, 50
+ orig: 32, 50
+ offset: 0, 0
+ index: -1
+13001
+ rotate: false
+ xy: 1300, 1364
+ size: 32, 50
+ orig: 32, 50
+ offset: 0, 0
+ index: -1
+13002
+ rotate: false
+ xy: 1333, 1364
+ size: 32, 50
+ orig: 32, 50
+ offset: 0, 0
+ index: -1
+13003
+ rotate: false
+ xy: 1366, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13004
+ rotate: false
+ xy: 1399, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13005
+ rotate: false
+ xy: 1432, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13006
+ rotate: false
+ xy: 1465, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13009
+ rotate: false
+ xy: 588, 883
+ size: 45, 100
+ orig: 45, 100
+ offset: 0, 0
+ index: -1
+13010
+ rotate: false
+ xy: 602, 1462
+ size: 44, 50
+ orig: 44, 50
+ offset: 0, 0
+ index: -1
+13011
+ rotate: false
+ xy: 1113, 1702
+ size: 54, 43
+ orig: 54, 43
+ offset: 0, 0
+ index: -1
+13012
+ rotate: false
+ xy: 1276, 1702
+ size: 51, 43
+ orig: 51, 43
+ offset: 0, 0
+ index: -1
+13013
+ rotate: false
+ xy: 1168, 1697
+ size: 53, 48
+ orig: 53, 48
+ offset: 0, 0
+ index: -1
+13014
+ rotate: false
+ xy: 1829, 1699
+ size: 47, 46
+ orig: 47, 46
+ offset: 0, 0
+ index: -1
+13015
+ rotate: false
+ xy: 1498, 1394
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13016
+ rotate: false
+ xy: 1531, 1394
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13017
+ rotate: false
+ xy: 1564, 1394
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13018
+ rotate: false
+ xy: 1597, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13019
+ rotate: false
+ xy: 1630, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13020
+ rotate: false
+ xy: 861, 1192
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+13021
+ rotate: false
+ xy: 861, 1159
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13023
+ rotate: false
+ xy: 588, 984
+ size: 47, 91
+ orig: 47, 91
+ offset: 0, 0
+ index: -1
+13024
+ rotate: false
+ xy: 994, 1701
+ size: 62, 44
+ orig: 62, 44
+ offset: 0, 0
+ index: -1
+13028
+ rotate: false
+ xy: 343, 780
+ size: 54, 40
+ orig: 54, 40
+ offset: 0, 0
+ index: -1
+13029
+ rotate: false
+ xy: 1684, 1704
+ size: 48, 41
+ orig: 48, 41
+ offset: 0, 0
+ index: -1
+13030
+ rotate: false
+ xy: 856, 1567
+ size: 56, 48
+ orig: 56, 48
+ offset: 0, 0
+ index: -1
+13031
+ rotate: false
+ xy: 344, 1508
+ size: 64, 44
+ orig: 64, 44
+ offset: 0, 0
+ index: -1
+131
+ rotate: false
+ xy: 609, 817
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+133
+ rotate: false
+ xy: 603, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+135
+ rotate: false
+ xy: 572, 751
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+137
+ rotate: false
+ xy: 572, 718
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+139
+ rotate: false
+ xy: 605, 751
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14
+ rotate: false
+ xy: 524, 245
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14019
+ rotate: false
+ xy: 409, 1518
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+14039
+ rotate: false
+ xy: 474, 1551
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+141
+ rotate: false
+ xy: 605, 718
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+146
+ rotate: false
+ xy: 597, 685
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+148
+ rotate: false
+ xy: 597, 652
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+150
+ rotate: false
+ xy: 597, 619
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15000
+ rotate: false
+ xy: 449, 735
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+15003
+ rotate: false
+ xy: 734, 1616
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15004
+ rotate: false
+ xy: 861, 1126
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15005
+ rotate: false
+ xy: 647, 1469
+ size: 43, 43
+ orig: 43, 43
+ offset: 0, 0
+ index: -1
+15006
+ rotate: false
+ xy: 74, 1957
+ size: 70, 35
+ orig: 70, 35
+ offset: 0, 0
+ index: -1
+15007
+ rotate: false
+ xy: 734, 1555
+ size: 60, 60
+ orig: 60, 60
+ offset: 0, 0
+ index: -1
+15010
+ rotate: false
+ xy: 1583, 1665
+ size: 45, 37
+ orig: 45, 37
+ offset: 0, 0
+ index: -1
+15012
+ rotate: false
+ xy: 1328, 1695
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+15013
+ rotate: false
+ xy: 2012, 2011
+ size: 35, 36
+ orig: 35, 36
+ offset: 0, 0
+ index: -1
+15014
+ rotate: false
+ xy: 861, 1093
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22005
+ rotate: false
+ xy: 861, 1093
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15015
+ rotate: false
+ xy: 1663, 1363
+ size: 32, 40
+ orig: 32, 40
+ offset: 0, 0
+ index: -1
+15016
+ rotate: false
+ xy: 407, 639
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+15017
+ rotate: false
+ xy: 1696, 1371
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15018
+ rotate: false
+ xy: 1877, 1715
+ size: 45, 30
+ orig: 45, 30
+ offset: 0, 0
+ index: -1
+15019
+ rotate: false
+ xy: 1729, 1367
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15020
+ rotate: false
+ xy: 1762, 1344
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15022
+ rotate: false
+ xy: 526, 476
+ size: 34, 65
+ orig: 34, 65
+ offset: 0, 0
+ index: -1
+15023
+ rotate: false
+ xy: 279, 1487
+ size: 36, 17
+ orig: 36, 17
+ offset: 0, 0
+ index: -1
+15024
+ rotate: false
+ xy: 1795, 1329
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15025
+ rotate: false
+ xy: 791, 388
+ size: 22, 35
+ orig: 22, 35
+ offset: 0, 0
+ index: -1
+15026
+ rotate: false
+ xy: 2021, 1529
+ size: 18, 40
+ orig: 18, 40
+ offset: 0, 0
+ index: -1
+15027
+ rotate: false
+ xy: 1379, 1695
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+15028
+ rotate: false
+ xy: 1379, 984
+ size: 20, 50
+ orig: 20, 50
+ offset: 0, 0
+ index: -1
+15034
+ rotate: false
+ xy: 277, 778
+ size: 65, 65
+ orig: 65, 65
+ offset: 0, 0
+ index: -1
+15036
+ rotate: false
+ xy: 407, 588
+ size: 40, 50
+ orig: 40, 50
+ offset: 0, 0
+ index: -1
+15037
+ rotate: false
+ xy: 2010, 1905
+ size: 37, 40
+ orig: 37, 40
+ offset: 0, 0
+ index: -1
+15038
+ rotate: false
+ xy: 490, 735
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+15039
+ rotate: false
+ xy: 2010, 1864
+ size: 37, 40
+ orig: 37, 40
+ offset: 0, 0
+ index: -1
+15040
+ rotate: false
+ xy: 1057, 1705
+ size: 55, 40
+ orig: 55, 40
+ offset: 0, 0
+ index: -1
+15041
+ rotate: false
+ xy: 145, 1977
+ size: 70, 70
+ orig: 70, 70
+ offset: 0, 0
+ index: -1
+15042
+ rotate: false
+ xy: 1430, 1655
+ size: 50, 90
+ orig: 50, 90
+ offset: 0, 0
+ index: -1
+15044
+ rotate: false
+ xy: 1370, 1260
+ size: 27, 55
+ orig: 27, 55
+ offset: 0, 0
+ index: -1
+15045
+ rotate: false
+ xy: 407, 547
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+15046
+ rotate: false
+ xy: 1339, 1285
+ size: 30, 30
+ orig: 30, 30
+ offset: 0, 0
+ index: -1
+15047
+ rotate: false
+ xy: 1481, 1702
+ size: 50, 43
+ orig: 50, 43
+ offset: 0, 0
+ index: -1
+15048
+ rotate: false
+ xy: 487, 426
+ size: 37, 35
+ orig: 37, 35
+ offset: 0, 0
+ index: -1
+15049
+ rotate: false
+ xy: 487, 390
+ size: 37, 35
+ orig: 37, 35
+ offset: 0, 0
+ index: -1
+15051
+ rotate: false
+ xy: 1366, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15052
+ rotate: false
+ xy: 1399, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15053
+ rotate: false
+ xy: 799, 1681
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15054
+ rotate: false
+ xy: 1432, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15057
+ rotate: false
+ xy: 1, 1635
+ size: 70, 42
+ orig: 70, 42
+ offset: 0, 0
+ index: -1
+15058
+ rotate: false
+ xy: 1222, 1696
+ size: 53, 49
+ orig: 53, 49
+ offset: 0, 0
+ index: -1
+15107
+ rotate: false
+ xy: 1222, 1696
+ size: 53, 49
+ orig: 53, 49
+ offset: 0, 0
+ index: -1
+15059
+ rotate: false
+ xy: 74, 1918
+ size: 70, 38
+ orig: 70, 38
+ offset: 0, 0
+ index: -1
+15064
+ rotate: false
+ xy: 1383, 1035
+ size: 24, 100
+ orig: 24, 100
+ offset: 0, 0
+ index: -1
+15065
+ rotate: false
+ xy: 2026, 1389
+ size: 17, 72
+ orig: 17, 72
+ offset: 0, 0
+ index: -1
+15068
+ rotate: false
+ xy: 216, 1987
+ size: 70, 60
+ orig: 70, 60
+ offset: 0, 0
+ index: -1
+15069
+ rotate: false
+ xy: 145, 1926
+ size: 70, 50
+ orig: 70, 50
+ offset: 0, 0
+ index: -1
+15071
+ rotate: false
+ xy: 1465, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15074
+ rotate: false
+ xy: 1498, 1361
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15075
+ rotate: false
+ xy: 1481, 1642
+ size: 50, 59
+ orig: 50, 59
+ offset: 0, 0
+ index: -1
+15077
+ rotate: false
+ xy: 342, 262
+ size: 62, 65
+ orig: 62, 65
+ offset: 0, 0
+ index: -1
+15079
+ rotate: false
+ xy: 602, 1411
+ size: 43, 50
+ orig: 43, 50
+ offset: 0, 0
+ index: -1
+15081
+ rotate: false
+ xy: 563, 669
+ size: 33, 45
+ orig: 33, 45
+ offset: 0, 0
+ index: -1
+15082
+ rotate: false
+ xy: 1356, 1141
+ size: 26, 100
+ orig: 26, 100
+ offset: 0, 0
+ index: -1
+15083
+ rotate: false
+ xy: 410, 1080
+ size: 33, 18
+ orig: 33, 18
+ offset: 0, 0
+ index: -1
+15084
+ rotate: false
+ xy: 273, 1
+ size: 33, 18
+ orig: 33, 18
+ offset: 0, 0
+ index: -1
+15085
+ rotate: false
+ xy: 1356, 1040
+ size: 26, 100
+ orig: 26, 100
+ offset: 0, 0
+ index: -1
+15086
+ rotate: false
+ xy: 1532, 1709
+ size: 50, 36
+ orig: 50, 36
+ offset: 0, 0
+ index: -1
+15087
+ rotate: false
+ xy: 1532, 1665
+ size: 50, 43
+ orig: 50, 43
+ offset: 0, 0
+ index: -1
+15088
+ rotate: false
+ xy: 407, 496
+ size: 40, 50
+ orig: 40, 50
+ offset: 0, 0
+ index: -1
+15089
+ rotate: false
+ xy: 636, 1050
+ size: 20, 55
+ orig: 20, 55
+ offset: 0, 0
+ index: -1
+15090
+ rotate: false
+ xy: 604, 1513
+ size: 45, 37
+ orig: 45, 37
+ offset: 0, 0
+ index: -1
+15091
+ rotate: false
+ xy: 563, 623
+ size: 33, 45
+ orig: 33, 45
+ offset: 0, 0
+ index: -1
+15092
+ rotate: false
+ xy: 407, 419
+ size: 40, 76
+ orig: 40, 76
+ offset: 0, 0
+ index: -1
+15094
+ rotate: false
+ xy: 1, 1554
+ size: 70, 80
+ orig: 70, 80
+ offset: 0, 0
+ index: -1
+15096
+ rotate: false
+ xy: 1339, 1242
+ size: 30, 42
+ orig: 30, 42
+ offset: 0, 0
+ index: -1
+15097
+ rotate: false
+ xy: 1028, 1574
+ size: 34, 40
+ orig: 34, 40
+ offset: 0, 0
+ index: -1
+15098
+ rotate: false
+ xy: 1063, 1574
+ size: 34, 40
+ orig: 34, 40
+ offset: 0, 0
+ index: -1
+15099
+ rotate: false
+ xy: 526, 445
+ size: 34, 30
+ orig: 34, 30
+ offset: 0, 0
+ index: -1
+15100
+ rotate: false
+ xy: 345, 1056
+ size: 34, 23
+ orig: 34, 23
+ offset: 0, 0
+ index: -1
+15102
+ rotate: false
+ xy: 540, 1330
+ size: 60, 60
+ orig: 60, 60
+ offset: 0, 0
+ index: -1
+15103
+ rotate: false
+ xy: 407, 358
+ size: 40, 60
+ orig: 40, 60
+ offset: 0, 0
+ index: -1
+15104
+ rotate: false
+ xy: 531, 715
+ size: 40, 60
+ orig: 40, 60
+ offset: 0, 0
+ index: -1
+15106
+ rotate: false
+ xy: 74, 1875
+ size: 70, 42
+ orig: 70, 42
+ offset: 0, 0
+ index: -1
+15108
+ rotate: false
+ xy: 1, 1799
+ size: 71, 58
+ orig: 71, 58
+ offset: 0, 0
+ index: -1
+15109
+ rotate: false
+ xy: 1906, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15207
+ rotate: false
+ xy: 1906, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15110
+ rotate: false
+ xy: 539, 1551
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15111
+ rotate: false
+ xy: 1801, 1646
+ size: 20, 34
+ orig: 20, 34
+ offset: 0, 0
+ index: -1
+15116
+ rotate: false
+ xy: 1531, 1344
+ size: 32, 49
+ orig: 32, 49
+ offset: 0, 0
+ index: -1
+15117
+ rotate: false
+ xy: 407, 721
+ size: 41, 54
+ orig: 41, 54
+ offset: 0, 0
+ index: -1
+15118
+ rotate: false
+ xy: 277, 981
+ size: 66, 71
+ orig: 66, 71
+ offset: 0, 0
+ index: -1
+15119
+ rotate: false
+ xy: 475, 1247
+ size: 61, 75
+ orig: 61, 75
+ offset: 0, 0
+ index: -1
+15120
+ rotate: false
+ xy: 342, 186
+ size: 61, 75
+ orig: 61, 75
+ offset: 0, 0
+ index: -1
+15128
+ rotate: false
+ xy: 821, 231
+ size: 25, 123
+ orig: 25, 123
+ offset: 0, 0
+ index: -1
+15129
+ rotate: false
+ xy: 760, 461
+ size: 25, 124
+ orig: 25, 124
+ offset: 0, 0
+ index: -1
+15130
+ rotate: false
+ xy: 2012, 1975
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+15131
+ rotate: false
+ xy: 956, 1582
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+15132
+ rotate: false
+ xy: 526, 573
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+15134
+ rotate: false
+ xy: 1564, 1361
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15135
+ rotate: false
+ xy: 1498, 1328
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15136
+ rotate: false
+ xy: 758, 388
+ size: 32, 35
+ orig: 32, 35
+ offset: 0, 0
+ index: -1
+15137
+ rotate: false
+ xy: 789, 355
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15139
+ rotate: false
+ xy: 759, 424
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15140
+ rotate: false
+ xy: 345, 1379
+ size: 64, 128
+ orig: 64, 128
+ offset: 0, 0
+ index: -1
+15141
+ rotate: false
+ xy: 345, 1274
+ size: 64, 104
+ orig: 64, 104
+ offset: 0, 0
+ index: -1
+15142
+ rotate: false
+ xy: 1597, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15143
+ rotate: false
+ xy: 1630, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15144
+ rotate: false
+ xy: 1564, 1328
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15145
+ rotate: false
+ xy: 1531, 1311
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15146
+ rotate: false
+ xy: 1597, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15147
+ rotate: false
+ xy: 1630, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15148
+ rotate: false
+ xy: 1663, 1330
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15149
+ rotate: false
+ xy: 1696, 1338
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15150
+ rotate: false
+ xy: 1729, 1334
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15151
+ rotate: false
+ xy: 1564, 1295
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15152
+ rotate: false
+ xy: 1762, 1311
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15154
+ rotate: false
+ xy: 410, 1229
+ size: 64, 288
+ orig: 64, 288
+ offset: 0, 0
+ index: -1
+15155
+ rotate: false
+ xy: 448, 208
+ size: 38, 512
+ orig: 38, 512
+ offset: 0, 0
+ index: -1
+15157
+ rotate: false
+ xy: 1583, 1703
+ size: 50, 42
+ orig: 50, 42
+ offset: 0, 0
+ index: -1
+15160
+ rotate: false
+ xy: 795, 1561
+ size: 60, 54
+ orig: 60, 54
+ offset: 0, 0
+ index: -1
+15161
+ rotate: false
+ xy: 407, 327
+ size: 40, 30
+ orig: 40, 30
+ offset: 0, 0
+ index: -1
+15162
+ rotate: false
+ xy: 487, 216
+ size: 35, 32
+ orig: 35, 32
+ offset: 0, 0
+ index: -1
+15163
+ rotate: false
+ xy: 992, 1582
+ size: 35, 32
+ orig: 35, 32
+ offset: 0, 0
+ index: -1
+15166
+ rotate: false
+ xy: 526, 542
+ size: 35, 30
+ orig: 35, 30
+ offset: 0, 0
+ index: -1
+15167
+ rotate: false
+ xy: 650, 1513
+ size: 45, 37
+ orig: 45, 37
+ offset: 0, 0
+ index: -1
+15170
+ rotate: false
+ xy: 1597, 1283
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15171
+ rotate: false
+ xy: 1630, 1283
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15172
+ rotate: false
+ xy: 1663, 1297
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15173
+ rotate: false
+ xy: 1696, 1305
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15174
+ rotate: false
+ xy: 1729, 1301
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15175
+ rotate: false
+ xy: 1795, 1296
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15176
+ rotate: false
+ xy: 345, 1145
+ size: 64, 128
+ orig: 64, 128
+ offset: 0, 0
+ index: -1
+15184
+ rotate: false
+ xy: 474, 1518
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+15185
+ rotate: false
+ xy: 475, 1421
+ size: 64, 96
+ orig: 64, 96
+ offset: 0, 0
+ index: -1
+15188
+ rotate: false
+ xy: 799, 1616
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15192
+ rotate: false
+ xy: 1828, 1312
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15194
+ rotate: false
+ xy: 864, 1649
+ size: 64, 96
+ orig: 64, 96
+ offset: 0, 0
+ index: -1
+15197
+ rotate: false
+ xy: 342, 393
+ size: 64, 384
+ orig: 64, 384
+ offset: 0, 0
+ index: -1
+15199
+ rotate: false
+ xy: 1861, 1312
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+152
+ rotate: false
+ xy: 596, 586
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15204
+ rotate: false
+ xy: 343, 821
+ size: 60, 60
+ orig: 60, 60
+ offset: 0, 0
+ index: -1
+15208
+ rotate: false
+ xy: 604, 1551
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15210
+ rotate: false
+ xy: 410, 1164
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15211
+ rotate: false
+ xy: 475, 1356
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15212
+ rotate: false
+ xy: 929, 1681
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15213
+ rotate: false
+ xy: 342, 328
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15214
+ rotate: false
+ xy: 345, 1080
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15215
+ rotate: false
+ xy: 669, 1551
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15216
+ rotate: false
+ xy: 410, 1099
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15217
+ rotate: false
+ xy: 539, 1518
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+15218
+ rotate: false
+ xy: 864, 1616
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+15219
+ rotate: false
+ xy: 475, 1323
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+15220
+ rotate: false
+ xy: 910, 1346
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+15221
+ rotate: false
+ xy: 910, 1281
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+15222
+ rotate: false
+ xy: 943, 1322
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+15223
+ rotate: false
+ xy: 943, 1257
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+15224
+ rotate: false
+ xy: 976, 1314
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+15225
+ rotate: false
+ xy: 1009, 1314
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+15226
+ rotate: false
+ xy: 1042, 1314
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+15227
+ rotate: false
+ xy: 1075, 1314
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+15229
+ rotate: false
+ xy: 277, 909
+ size: 66, 71
+ orig: 66, 71
+ offset: 0, 0
+ index: -1
+154
+ rotate: false
+ xy: 595, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+156
+ rotate: false
+ xy: 595, 520
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+158
+ rotate: false
+ xy: 594, 487
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16
+ rotate: false
+ xy: 523, 212
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+30
+ rotate: false
+ xy: 523, 212
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+160
+ rotate: false
+ xy: 594, 454
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16000
+ rotate: false
+ xy: 976, 1281
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16002
+ rotate: false
+ xy: 1009, 1281
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16004
+ rotate: false
+ xy: 1042, 1281
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16006
+ rotate: false
+ xy: 1075, 1281
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16007
+ rotate: false
+ xy: 910, 1248
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16008
+ rotate: false
+ xy: 1108, 1346
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16011
+ rotate: false
+ xy: 1108, 1313
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16016
+ rotate: false
+ xy: 1108, 1280
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16030
+ rotate: false
+ xy: 1141, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16034
+ rotate: false
+ xy: 1141, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16035
+ rotate: false
+ xy: 1174, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16036
+ rotate: false
+ xy: 1174, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16037
+ rotate: false
+ xy: 1141, 1283
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16038
+ rotate: false
+ xy: 1207, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16039
+ rotate: false
+ xy: 1207, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16040
+ rotate: false
+ xy: 1174, 1283
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16041
+ rotate: false
+ xy: 1240, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16042
+ rotate: false
+ xy: 1240, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16094
+ rotate: false
+ xy: 1240, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16043
+ rotate: false
+ xy: 1207, 1283
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16044
+ rotate: false
+ xy: 1240, 1283
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16045
+ rotate: false
+ xy: 1762, 1278
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16046
+ rotate: false
+ xy: 976, 1248
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16047
+ rotate: false
+ xy: 1009, 1248
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16048
+ rotate: false
+ xy: 1042, 1248
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16049
+ rotate: false
+ xy: 1075, 1248
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16050
+ rotate: false
+ xy: 1108, 1247
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16051
+ rotate: false
+ xy: 1141, 1250
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16052
+ rotate: false
+ xy: 1174, 1250
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16053
+ rotate: false
+ xy: 1207, 1250
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16054
+ rotate: false
+ xy: 1240, 1250
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16055
+ rotate: false
+ xy: 1894, 1300
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16056
+ rotate: false
+ xy: 1927, 1300
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16057
+ rotate: false
+ xy: 1960, 1300
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16058
+ rotate: false
+ xy: 1993, 1300
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16062
+ rotate: false
+ xy: 1795, 1263
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16063
+ rotate: false
+ xy: 1828, 1279
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16065
+ rotate: false
+ xy: 1861, 1279
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16066
+ rotate: false
+ xy: 1894, 1267
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16067
+ rotate: false
+ xy: 1927, 1267
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16068
+ rotate: false
+ xy: 1960, 1267
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16072
+ rotate: false
+ xy: 1993, 1267
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16075
+ rotate: false
+ xy: 943, 1224
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16084
+ rotate: false
+ xy: 976, 1215
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16089
+ rotate: false
+ xy: 1009, 1215
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16099
+ rotate: false
+ xy: 1042, 1215
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+162
+ rotate: false
+ xy: 594, 421
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+163
+ rotate: false
+ xy: 593, 388
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+164
+ rotate: false
+ xy: 591, 355
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+165
+ rotate: false
+ xy: 590, 322
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+166
+ rotate: false
+ xy: 590, 289
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17
+ rotate: false
+ xy: 1080, 1639
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17012
+ rotate: false
+ xy: 1075, 1215
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17013
+ rotate: false
+ xy: 1108, 1214
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17014
+ rotate: false
+ xy: 1141, 1217
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17039
+ rotate: false
+ xy: 1174, 1217
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18000
+ rotate: false
+ xy: 1207, 1217
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18001
+ rotate: false
+ xy: 208, 275
+ size: 68, 28
+ orig: 68, 28
+ offset: 0, 0
+ index: -1
+18002
+ rotate: false
+ xy: 1240, 1217
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18003
+ rotate: false
+ xy: 208, 246
+ size: 68, 28
+ orig: 68, 28
+ offset: 0, 0
+ index: -1
+18004
+ rotate: false
+ xy: 208, 217
+ size: 68, 28
+ orig: 68, 28
+ offset: 0, 0
+ index: -1
+18005
+ rotate: false
+ xy: 894, 1215
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18006
+ rotate: false
+ xy: 1, 7
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18007
+ rotate: false
+ xy: 70, 22
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18008
+ rotate: false
+ xy: 208, 200
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18009
+ rotate: false
+ xy: 139, 22
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18010
+ rotate: false
+ xy: 894, 1182
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18011
+ rotate: false
+ xy: 894, 1149
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18012
+ rotate: false
+ xy: 894, 1116
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18013
+ rotate: false
+ xy: 208, 183
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18014
+ rotate: false
+ xy: 208, 166
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18015
+ rotate: false
+ xy: 894, 1083
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18016
+ rotate: false
+ xy: 208, 149
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18017
+ rotate: false
+ xy: 927, 1191
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18018
+ rotate: false
+ xy: 208, 132
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18019
+ rotate: false
+ xy: 208, 115
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18020
+ rotate: false
+ xy: 927, 1158
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18021
+ rotate: false
+ xy: 927, 1125
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18022
+ rotate: false
+ xy: 927, 1092
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18023
+ rotate: false
+ xy: 208, 98
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18024
+ rotate: false
+ xy: 960, 1182
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18025
+ rotate: false
+ xy: 960, 1149
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18026
+ rotate: false
+ xy: 208, 69
+ size: 68, 28
+ orig: 68, 28
+ offset: 0, 0
+ index: -1
+18027
+ rotate: false
+ xy: 993, 1182
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18028
+ rotate: false
+ xy: 208, 40
+ size: 68, 28
+ orig: 68, 28
+ offset: 0, 0
+ index: -1
+188
+ rotate: false
+ xy: 590, 256
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19
+ rotate: false
+ xy: 1113, 1636
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19000
+ rotate: false
+ xy: 960, 1116
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19001
+ rotate: false
+ xy: 993, 1149
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19002
+ rotate: false
+ xy: 1026, 1182
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19003
+ rotate: false
+ xy: 993, 1116
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19004
+ rotate: false
+ xy: 1026, 1149
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19005
+ rotate: false
+ xy: 1059, 1182
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19006
+ rotate: false
+ xy: 1026, 1116
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19007
+ rotate: false
+ xy: 1059, 1149
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19008
+ rotate: false
+ xy: 1059, 1116
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19009
+ rotate: false
+ xy: 960, 1083
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19010
+ rotate: false
+ xy: 993, 1083
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19011
+ rotate: false
+ xy: 1026, 1083
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19012
+ rotate: false
+ xy: 1059, 1083
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19013
+ rotate: false
+ xy: 927, 1059
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19014
+ rotate: false
+ xy: 960, 1050
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19015
+ rotate: false
+ xy: 993, 1050
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19016
+ rotate: false
+ xy: 1026, 1050
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19017
+ rotate: false
+ xy: 1059, 1050
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19018
+ rotate: false
+ xy: 1092, 1181
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19019
+ rotate: false
+ xy: 1092, 1148
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19020
+ rotate: false
+ xy: 1092, 1115
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19021
+ rotate: false
+ xy: 1092, 1082
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19022
+ rotate: false
+ xy: 1092, 1049
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19023
+ rotate: false
+ xy: 1828, 1246
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19024
+ rotate: false
+ xy: 1861, 1246
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19025
+ rotate: false
+ xy: 1894, 1234
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19026
+ rotate: false
+ xy: 1927, 1234
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19027
+ rotate: false
+ xy: 1960, 1234
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19028
+ rotate: false
+ xy: 1993, 1234
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2000
+ rotate: false
+ xy: 216, 1936
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+20003
+ rotate: false
+ xy: 1125, 1181
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20004
+ rotate: false
+ xy: 1125, 1148
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20005
+ rotate: false
+ xy: 1125, 1115
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20006
+ rotate: false
+ xy: 1125, 1082
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20007
+ rotate: false
+ xy: 1125, 1049
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2001
+ rotate: false
+ xy: 287, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+20010
+ rotate: false
+ xy: 1158, 1184
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20011
+ rotate: false
+ xy: 1158, 1151
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20012
+ rotate: false
+ xy: 1191, 1184
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20013
+ rotate: false
+ xy: 1158, 1118
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20018
+ rotate: false
+ xy: 1191, 1151
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20019
+ rotate: false
+ xy: 1224, 1184
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2002
+ rotate: false
+ xy: 145, 1875
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2003
+ rotate: false
+ xy: 1, 1503
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2004
+ rotate: false
+ xy: 356, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2005
+ rotate: false
+ xy: 1, 1452
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2006
+ rotate: false
+ xy: 425, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2007
+ rotate: false
+ xy: 1, 1401
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2008
+ rotate: false
+ xy: 494, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2009
+ rotate: false
+ xy: 1, 1350
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2010
+ rotate: false
+ xy: 563, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2011
+ rotate: false
+ xy: 1, 1299
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2012
+ rotate: false
+ xy: 632, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2013
+ rotate: false
+ xy: 1, 1248
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2014
+ rotate: false
+ xy: 701, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2015
+ rotate: false
+ xy: 1, 1197
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2016
+ rotate: false
+ xy: 770, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2017
+ rotate: false
+ xy: 1, 1146
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2018
+ rotate: false
+ xy: 839, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2019
+ rotate: false
+ xy: 1, 1095
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2020
+ rotate: false
+ xy: 908, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2021
+ rotate: false
+ xy: 1, 1044
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2022
+ rotate: false
+ xy: 977, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2023
+ rotate: false
+ xy: 1, 993
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2024
+ rotate: false
+ xy: 1046, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2025
+ rotate: false
+ xy: 1, 942
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2026
+ rotate: false
+ xy: 1115, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2027
+ rotate: false
+ xy: 1, 891
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2028
+ rotate: false
+ xy: 1184, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2029
+ rotate: false
+ xy: 1, 840
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2030
+ rotate: false
+ xy: 1253, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2031
+ rotate: false
+ xy: 1, 789
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2032
+ rotate: false
+ xy: 1322, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2033
+ rotate: false
+ xy: 1, 738
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2034
+ rotate: false
+ xy: 1391, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2035
+ rotate: false
+ xy: 1, 687
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2036
+ rotate: false
+ xy: 1460, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2037
+ rotate: false
+ xy: 1, 636
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2038
+ rotate: false
+ xy: 1529, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2039
+ rotate: false
+ xy: 1, 585
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+204
+ rotate: false
+ xy: 590, 223
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2040
+ rotate: false
+ xy: 1598, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2041
+ rotate: false
+ xy: 1, 534
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2042
+ rotate: false
+ xy: 1667, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2043
+ rotate: false
+ xy: 1, 483
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2044
+ rotate: false
+ xy: 1736, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2045
+ rotate: false
+ xy: 1, 432
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2046
+ rotate: false
+ xy: 1805, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2047
+ rotate: false
+ xy: 1, 381
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2048
+ rotate: false
+ xy: 1874, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2049
+ rotate: false
+ xy: 1, 330
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+205
+ rotate: false
+ xy: 589, 190
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2050
+ rotate: false
+ xy: 1943, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2051
+ rotate: false
+ xy: 1, 279
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2052
+ rotate: false
+ xy: 1, 228
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2053
+ rotate: false
+ xy: 1, 177
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2054
+ rotate: false
+ xy: 1, 126
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2055
+ rotate: false
+ xy: 1, 75
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2056
+ rotate: false
+ xy: 1, 24
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2057
+ rotate: false
+ xy: 74, 1824
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2058
+ rotate: false
+ xy: 143, 1824
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2059
+ rotate: false
+ xy: 73, 1773
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+206
+ rotate: false
+ xy: 1790, 1572
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2060
+ rotate: false
+ xy: 142, 1773
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2061
+ rotate: false
+ xy: 72, 1722
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2062
+ rotate: false
+ xy: 72, 1671
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2063
+ rotate: false
+ xy: 141, 1722
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2064
+ rotate: false
+ xy: 72, 1620
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2065
+ rotate: false
+ xy: 141, 1671
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2066
+ rotate: false
+ xy: 72, 1569
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2067
+ rotate: false
+ xy: 141, 1620
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2068
+ rotate: false
+ xy: 141, 1569
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2069
+ rotate: false
+ xy: 72, 1518
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+207
+ rotate: false
+ xy: 1509, 1589
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2070
+ rotate: false
+ xy: 141, 1518
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2071
+ rotate: false
+ xy: 70, 1467
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2072
+ rotate: false
+ xy: 70, 1416
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2073
+ rotate: false
+ xy: 139, 1467
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2074
+ rotate: false
+ xy: 70, 1365
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2075
+ rotate: false
+ xy: 139, 1416
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2076
+ rotate: false
+ xy: 70, 1314
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2077
+ rotate: false
+ xy: 139, 1365
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2078
+ rotate: false
+ xy: 70, 1263
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2079
+ rotate: false
+ xy: 139, 1314
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2080
+ rotate: false
+ xy: 70, 1212
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2081
+ rotate: false
+ xy: 139, 1263
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2082
+ rotate: false
+ xy: 70, 1161
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2083
+ rotate: false
+ xy: 139, 1212
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2084
+ rotate: false
+ xy: 70, 1110
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2085
+ rotate: false
+ xy: 139, 1161
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2086
+ rotate: false
+ xy: 70, 1059
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2087
+ rotate: false
+ xy: 139, 1110
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2088
+ rotate: false
+ xy: 70, 1008
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2089
+ rotate: false
+ xy: 139, 1059
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+209
+ rotate: false
+ xy: 1542, 1589
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2090
+ rotate: false
+ xy: 70, 957
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2091
+ rotate: false
+ xy: 139, 1008
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2092
+ rotate: false
+ xy: 70, 906
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2093
+ rotate: false
+ xy: 139, 957
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2094
+ rotate: false
+ xy: 70, 855
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2095
+ rotate: false
+ xy: 139, 906
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2096
+ rotate: false
+ xy: 70, 804
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2097
+ rotate: false
+ xy: 139, 855
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2098
+ rotate: false
+ xy: 70, 753
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2099
+ rotate: false
+ xy: 139, 804
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2100
+ rotate: false
+ xy: 70, 702
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+21004
+ rotate: false
+ xy: 1158, 1085
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21005
+ rotate: false
+ xy: 1191, 1118
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21006
+ rotate: false
+ xy: 1224, 1151
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21007
+ rotate: false
+ xy: 1158, 1052
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21008
+ rotate: false
+ xy: 1191, 1085
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21009
+ rotate: false
+ xy: 1224, 1118
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2101
+ rotate: false
+ xy: 139, 753
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2102
+ rotate: false
+ xy: 70, 651
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2103
+ rotate: false
+ xy: 139, 702
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2104
+ rotate: false
+ xy: 70, 600
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2105
+ rotate: false
+ xy: 139, 651
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2106
+ rotate: false
+ xy: 70, 549
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2107
+ rotate: false
+ xy: 139, 600
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2108
+ rotate: false
+ xy: 70, 498
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2109
+ rotate: false
+ xy: 139, 549
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+211
+ rotate: false
+ xy: 1575, 1589
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2110
+ rotate: false
+ xy: 70, 447
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2111
+ rotate: false
+ xy: 139, 498
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2112
+ rotate: false
+ xy: 70, 396
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2113
+ rotate: false
+ xy: 139, 447
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2114
+ rotate: false
+ xy: 70, 345
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2115
+ rotate: false
+ xy: 139, 396
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2116
+ rotate: false
+ xy: 70, 294
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2117
+ rotate: false
+ xy: 139, 345
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2118
+ rotate: false
+ xy: 70, 243
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2119
+ rotate: false
+ xy: 139, 294
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2120
+ rotate: false
+ xy: 70, 192
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2121
+ rotate: false
+ xy: 139, 243
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2122
+ rotate: false
+ xy: 70, 141
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2123
+ rotate: false
+ xy: 139, 192
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2124
+ rotate: false
+ xy: 70, 90
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2125
+ rotate: false
+ xy: 139, 141
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2126
+ rotate: false
+ xy: 70, 39
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2127
+ rotate: false
+ xy: 139, 90
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2128
+ rotate: false
+ xy: 139, 39
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2129
+ rotate: false
+ xy: 216, 1885
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+213
+ rotate: false
+ xy: 1509, 1556
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2130
+ rotate: false
+ xy: 287, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2131
+ rotate: false
+ xy: 356, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2132
+ rotate: false
+ xy: 425, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2133
+ rotate: false
+ xy: 494, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2134
+ rotate: false
+ xy: 563, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2135
+ rotate: false
+ xy: 632, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2136
+ rotate: false
+ xy: 701, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2137
+ rotate: false
+ xy: 770, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2138
+ rotate: false
+ xy: 839, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2139
+ rotate: false
+ xy: 908, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2140
+ rotate: false
+ xy: 977, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2141
+ rotate: false
+ xy: 1046, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2142
+ rotate: false
+ xy: 1115, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2143
+ rotate: false
+ xy: 1184, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2144
+ rotate: false
+ xy: 1253, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2145
+ rotate: false
+ xy: 1322, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2146
+ rotate: false
+ xy: 1391, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2147
+ rotate: false
+ xy: 1460, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2148
+ rotate: false
+ xy: 1529, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2149
+ rotate: false
+ xy: 1598, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+215
+ rotate: false
+ xy: 1542, 1556
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2150
+ rotate: false
+ xy: 1667, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2151
+ rotate: false
+ xy: 1736, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2152
+ rotate: false
+ xy: 1805, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2153
+ rotate: false
+ xy: 1874, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2154
+ rotate: false
+ xy: 1943, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2155
+ rotate: false
+ xy: 285, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2156
+ rotate: false
+ xy: 354, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2157
+ rotate: false
+ xy: 423, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2158
+ rotate: false
+ xy: 492, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2159
+ rotate: false
+ xy: 561, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2160
+ rotate: false
+ xy: 630, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2161
+ rotate: false
+ xy: 699, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2162
+ rotate: false
+ xy: 768, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2163
+ rotate: false
+ xy: 837, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2164
+ rotate: false
+ xy: 906, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2165
+ rotate: false
+ xy: 975, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2166
+ rotate: false
+ xy: 1044, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2167
+ rotate: false
+ xy: 1113, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2168
+ rotate: false
+ xy: 1182, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2169
+ rotate: false
+ xy: 1251, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+217
+ rotate: false
+ xy: 1575, 1556
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2170
+ rotate: false
+ xy: 1320, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2171
+ rotate: false
+ xy: 1389, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2172
+ rotate: false
+ xy: 1458, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2173
+ rotate: false
+ xy: 1527, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2174
+ rotate: false
+ xy: 1596, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2175
+ rotate: false
+ xy: 1665, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2176
+ rotate: false
+ xy: 1734, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2177
+ rotate: false
+ xy: 1803, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2178
+ rotate: false
+ xy: 1872, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2179
+ rotate: false
+ xy: 1941, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2180
+ rotate: false
+ xy: 285, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2181
+ rotate: false
+ xy: 354, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2182
+ rotate: false
+ xy: 423, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2183
+ rotate: false
+ xy: 492, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2184
+ rotate: false
+ xy: 561, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2185
+ rotate: false
+ xy: 630, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2186
+ rotate: false
+ xy: 699, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2187
+ rotate: false
+ xy: 768, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2188
+ rotate: false
+ xy: 837, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2189
+ rotate: false
+ xy: 906, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2190
+ rotate: false
+ xy: 975, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2191
+ rotate: false
+ xy: 1044, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2192
+ rotate: false
+ xy: 1113, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2193
+ rotate: false
+ xy: 1182, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2194
+ rotate: false
+ xy: 1251, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2195
+ rotate: false
+ xy: 1320, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2196
+ rotate: false
+ xy: 1389, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2197
+ rotate: false
+ xy: 1458, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2198
+ rotate: false
+ xy: 1527, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2199
+ rotate: false
+ xy: 1596, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+220
+ rotate: false
+ xy: 1608, 1577
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2200
+ rotate: false
+ xy: 1665, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+22001
+ rotate: false
+ xy: 1191, 1052
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22002
+ rotate: false
+ xy: 405, 239
+ size: 39, 87
+ orig: 39, 87
+ offset: 0, 0
+ index: -1
+22003
+ rotate: false
+ xy: 1224, 1085
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22006
+ rotate: false
+ xy: 1224, 1052
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22007
+ rotate: false
+ xy: 1257, 1184
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22008
+ rotate: false
+ xy: 1257, 1151
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22009
+ rotate: false
+ xy: 1257, 1118
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2201
+ rotate: false
+ xy: 1734, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+22010
+ rotate: false
+ xy: 1257, 1085
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22011
+ rotate: false
+ xy: 696, 1501
+ size: 42, 49
+ orig: 42, 49
+ offset: 0, 0
+ index: -1
+22012
+ rotate: false
+ xy: 1257, 1052
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22013
+ rotate: false
+ xy: 861, 1060
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22014
+ rotate: false
+ xy: 894, 1050
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22015
+ rotate: false
+ xy: 927, 1026
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22016
+ rotate: false
+ xy: 960, 1017
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22017
+ rotate: false
+ xy: 993, 1017
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22018
+ rotate: false
+ xy: 1026, 1017
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22019
+ rotate: false
+ xy: 1059, 1017
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2202
+ rotate: false
+ xy: 1803, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+22020
+ rotate: false
+ xy: 1092, 1016
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22021
+ rotate: false
+ xy: 1125, 1016
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22022
+ rotate: false
+ xy: 1158, 1019
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22023
+ rotate: false
+ xy: 1191, 1019
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22024
+ rotate: false
+ xy: 1224, 1019
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22025
+ rotate: false
+ xy: 1257, 1019
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22026
+ rotate: false
+ xy: 636, 984
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22027
+ rotate: false
+ xy: 636, 1017
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22028
+ rotate: false
+ xy: 1663, 1264
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22029
+ rotate: false
+ xy: 1696, 1272
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2203
+ rotate: false
+ xy: 1872, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+22030
+ rotate: false
+ xy: 1729, 1268
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22031
+ rotate: false
+ xy: 1762, 1245
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22032
+ rotate: false
+ xy: 1795, 1230
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22033
+ rotate: false
+ xy: 1828, 1213
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22034
+ rotate: false
+ xy: 1861, 1213
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22035
+ rotate: false
+ xy: 1894, 1201
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22036
+ rotate: false
+ xy: 1927, 1201
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22037
+ rotate: false
+ xy: 1960, 1201
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22038
+ rotate: false
+ xy: 1993, 1201
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22039
+ rotate: false
+ xy: 1696, 1239
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2204
+ rotate: false
+ xy: 1941, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+22040
+ rotate: false
+ xy: 404, 200
+ size: 38, 38
+ orig: 38, 38
+ offset: 0, 0
+ index: -1
+22041
+ rotate: false
+ xy: 487, 696
+ size: 38, 38
+ orig: 38, 38
+ offset: 0, 0
+ index: -1
+22042
+ rotate: false
+ xy: 487, 657
+ size: 38, 38
+ orig: 38, 38
+ offset: 0, 0
+ index: -1
+22043
+ rotate: false
+ xy: 487, 618
+ size: 38, 38
+ orig: 38, 38
+ offset: 0, 0
+ index: -1
+22045
+ rotate: false
+ xy: 487, 579
+ size: 38, 38
+ orig: 38, 38
+ offset: 0, 0
+ index: -1
+22046
+ rotate: false
+ xy: 487, 540
+ size: 38, 38
+ orig: 38, 38
+ offset: 0, 0
+ index: -1
+22047
+ rotate: false
+ xy: 487, 501
+ size: 38, 38
+ orig: 38, 38
+ offset: 0, 0
+ index: -1
+22048
+ rotate: false
+ xy: 487, 462
+ size: 38, 38
+ orig: 38, 38
+ offset: 0, 0
+ index: -1
+22049
+ rotate: false
+ xy: 1729, 1235
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2205
+ rotate: false
+ xy: 214, 1834
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+22050
+ rotate: false
+ xy: 1762, 1212
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22051
+ rotate: false
+ xy: 1795, 1197
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22052
+ rotate: false
+ xy: 1828, 1180
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22053
+ rotate: false
+ xy: 1861, 1180
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22054
+ rotate: false
+ xy: 1894, 1168
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22055
+ rotate: false
+ xy: 1927, 1168
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22056
+ rotate: false
+ xy: 1960, 1168
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22057
+ rotate: false
+ xy: 1993, 1168
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22058
+ rotate: false
+ xy: 1273, 1331
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22059
+ rotate: false
+ xy: 1306, 1331
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2206
+ rotate: false
+ xy: 212, 1783
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+22060
+ rotate: false
+ xy: 1273, 1298
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22061
+ rotate: false
+ xy: 1273, 1265
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23002
+ rotate: false
+ xy: 1273, 1265
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22062
+ rotate: false
+ xy: 1306, 1298
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22063
+ rotate: false
+ xy: 1273, 1232
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22064
+ rotate: false
+ xy: 1306, 1265
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22065
+ rotate: false
+ xy: 1306, 1232
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22066
+ rotate: false
+ xy: 1290, 1199
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22067
+ rotate: false
+ xy: 1290, 1166
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22068
+ rotate: false
+ xy: 1290, 1133
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22069
+ rotate: false
+ xy: 1290, 1100
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2207
+ rotate: false
+ xy: 211, 1732
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+22070
+ rotate: false
+ xy: 1290, 1067
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22071
+ rotate: false
+ xy: 525, 410
+ size: 34, 34
+ orig: 34, 34
+ offset: 0, 0
+ index: -1
+22072
+ rotate: false
+ xy: 1383, 1136
+ size: 25, 102
+ orig: 25, 102
+ offset: 0, 0
+ index: -1
+2208
+ rotate: false
+ xy: 210, 1681
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2209
+ rotate: false
+ xy: 210, 1630
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2210
+ rotate: false
+ xy: 210, 1579
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2211
+ rotate: false
+ xy: 210, 1528
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2212
+ rotate: false
+ xy: 210, 1477
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2213
+ rotate: false
+ xy: 208, 1426
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2214
+ rotate: false
+ xy: 208, 1375
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2215
+ rotate: false
+ xy: 208, 1324
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2216
+ rotate: false
+ xy: 208, 1273
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2217
+ rotate: false
+ xy: 208, 1222
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2218
+ rotate: false
+ xy: 208, 1171
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2219
+ rotate: false
+ xy: 208, 1120
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+222
+ rotate: false
+ xy: 1641, 1577
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2220
+ rotate: false
+ xy: 208, 1069
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2221
+ rotate: false
+ xy: 208, 1018
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2222
+ rotate: false
+ xy: 208, 967
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2223
+ rotate: false
+ xy: 208, 916
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2224
+ rotate: false
+ xy: 208, 865
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2225
+ rotate: false
+ xy: 208, 814
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2226
+ rotate: false
+ xy: 208, 763
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2227
+ rotate: false
+ xy: 208, 712
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2228
+ rotate: false
+ xy: 208, 661
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2229
+ rotate: false
+ xy: 208, 610
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2230
+ rotate: false
+ xy: 208, 559
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2231
+ rotate: false
+ xy: 208, 508
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2232
+ rotate: false
+ xy: 208, 457
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2233
+ rotate: false
+ xy: 208, 406
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2234
+ rotate: false
+ xy: 208, 355
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2235
+ rotate: false
+ xy: 208, 304
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+224
+ rotate: false
+ xy: 1608, 1544
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+226
+ rotate: false
+ xy: 1641, 1544
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+228
+ rotate: false
+ xy: 956, 1549
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+229
+ rotate: false
+ xy: 989, 1549
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23000
+ rotate: false
+ xy: 1290, 1034
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23001
+ rotate: false
+ xy: 1323, 1199
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23003
+ rotate: false
+ xy: 1323, 1166
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23004
+ rotate: false
+ xy: 1323, 1133
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23005
+ rotate: false
+ xy: 1323, 1100
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+231
+ rotate: false
+ xy: 1022, 1541
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+233
+ rotate: false
+ xy: 1055, 1541
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+235
+ rotate: false
+ xy: 1088, 1541
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+237
+ rotate: false
+ xy: 1823, 1623
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+239
+ rotate: false
+ xy: 1823, 1590
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+24
+ rotate: false
+ xy: 563, 590
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+241
+ rotate: false
+ xy: 1823, 1557
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+243
+ rotate: false
+ xy: 1856, 1606
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+245
+ rotate: false
+ xy: 1856, 1573
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+247
+ rotate: false
+ xy: 1889, 1606
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+249
+ rotate: false
+ xy: 1889, 1573
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+25002
+ rotate: false
+ xy: 577, 887
+ size: 10, 17
+ orig: 10, 17
+ offset: 0, 0
+ index: -1
+25003
+ rotate: false
+ xy: 530, 161
+ size: 19, 17
+ orig: 19, 17
+ offset: 0, 0
+ index: -1
+25004
+ rotate: false
+ xy: 1273, 1364
+ size: 19, 17
+ orig: 19, 17
+ offset: 0, 0
+ index: -1
+25010
+ rotate: false
+ xy: 1323, 1067
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+25011
+ rotate: false
+ xy: 1323, 1034
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+25012
+ rotate: false
+ xy: 1290, 1001
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+25013
+ rotate: false
+ xy: 1323, 1001
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+25014
+ rotate: false
+ xy: 1339, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+25015
+ rotate: false
+ xy: 1372, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+25016
+ rotate: false
+ xy: 739, 1512
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25017
+ rotate: false
+ xy: 1923, 1703
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25018
+ rotate: false
+ xy: 1973, 1801
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25019
+ rotate: false
+ xy: 1971, 1758
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25020
+ rotate: false
+ xy: 405, 866
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25021
+ rotate: false
+ xy: 404, 823
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25022
+ rotate: false
+ xy: 691, 1458
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25023
+ rotate: false
+ xy: 1629, 1653
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25024
+ rotate: false
+ xy: 1532, 1622
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25025
+ rotate: false
+ xy: 1575, 1622
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25026
+ rotate: false
+ xy: 448, 862
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25027
+ rotate: false
+ xy: 491, 862
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25028
+ rotate: false
+ xy: 534, 862
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25029
+ rotate: false
+ xy: 447, 819
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25030
+ rotate: false
+ xy: 490, 819
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25031
+ rotate: false
+ xy: 533, 819
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25032
+ rotate: false
+ xy: 994, 1658
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25033
+ rotate: false
+ xy: 994, 1658
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25034
+ rotate: false
+ xy: 994, 1658
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25035
+ rotate: false
+ xy: 994, 1658
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25036
+ rotate: false
+ xy: 992, 1615
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25037
+ rotate: false
+ xy: 602, 1368
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25038
+ rotate: false
+ xy: 601, 1325
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25039
+ rotate: false
+ xy: 1618, 1610
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25040
+ rotate: false
+ xy: 1037, 1658
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25041
+ rotate: false
+ xy: 1035, 1615
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25042
+ rotate: false
+ xy: 1829, 1656
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25043
+ rotate: false
+ xy: 1877, 1672
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25044
+ rotate: false
+ xy: 1920, 1660
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25045
+ rotate: false
+ xy: 913, 1573
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25046
+ rotate: false
+ xy: 782, 1512
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25047
+ rotate: false
+ xy: 825, 1518
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25048
+ rotate: false
+ xy: 868, 1524
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25049
+ rotate: false
+ xy: 398, 778
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25050
+ rotate: false
+ xy: 441, 776
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25051
+ rotate: false
+ xy: 484, 776
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25052
+ rotate: false
+ xy: 527, 776
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25053
+ rotate: false
+ xy: 1971, 1715
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25054
+ rotate: false
+ xy: 1672, 1653
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25055
+ rotate: false
+ xy: 1661, 1610
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25056
+ rotate: false
+ xy: 1715, 1642
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25057
+ rotate: false
+ xy: 1704, 1599
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25058
+ rotate: false
+ xy: 1758, 1638
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25059
+ rotate: false
+ xy: 1758, 1638
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25060
+ rotate: false
+ xy: 1747, 1595
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25061
+ rotate: false
+ xy: 1747, 1595
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25062
+ rotate: false
+ xy: 1747, 1595
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25063
+ rotate: false
+ xy: 1747, 1595
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+251
+ rotate: false
+ xy: 1856, 1540
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+253
+ rotate: false
+ xy: 1889, 1540
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+255
+ rotate: false
+ xy: 1922, 1627
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+257
+ rotate: false
+ xy: 1922, 1594
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+259
+ rotate: false
+ xy: 1922, 1561
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+26
+ rotate: false
+ xy: 562, 557
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+261
+ rotate: false
+ xy: 1922, 1528
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+263
+ rotate: false
+ xy: 487, 183
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+265
+ rotate: false
+ xy: 520, 179
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+267
+ rotate: false
+ xy: 553, 161
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+269
+ rotate: false
+ xy: 586, 157
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+270
+ rotate: false
+ xy: 464, 150
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+271
+ rotate: false
+ xy: 464, 117
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+272
+ rotate: false
+ xy: 464, 84
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+273
+ rotate: false
+ xy: 464, 51
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+274
+ rotate: false
+ xy: 464, 18
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+275
+ rotate: false
+ xy: 497, 146
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+276
+ rotate: false
+ xy: 497, 113
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+277
+ rotate: false
+ xy: 497, 80
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+278
+ rotate: false
+ xy: 497, 47
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+279
+ rotate: false
+ xy: 497, 14
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+28
+ rotate: false
+ xy: 562, 524
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+280
+ rotate: false
+ xy: 530, 128
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+281
+ rotate: false
+ xy: 530, 95
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+282
+ rotate: false
+ xy: 530, 62
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+283
+ rotate: false
+ xy: 530, 29
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+284
+ rotate: false
+ xy: 563, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+285
+ rotate: false
+ xy: 563, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+286
+ rotate: false
+ xy: 563, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+287
+ rotate: false
+ xy: 563, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+288
+ rotate: false
+ xy: 596, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+289
+ rotate: false
+ xy: 596, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+290
+ rotate: false
+ xy: 596, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+291
+ rotate: false
+ xy: 596, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+292
+ rotate: false
+ xy: 619, 157
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+293
+ rotate: false
+ xy: 622, 190
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+294
+ rotate: false
+ xy: 629, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+295
+ rotate: false
+ xy: 629, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+296
+ rotate: false
+ xy: 629, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+298
+ rotate: false
+ xy: 629, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+420
+ rotate: false
+ xy: 629, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+299
+ rotate: false
+ xy: 652, 157
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+300
+ rotate: false
+ xy: 662, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+301
+ rotate: false
+ xy: 662, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+303
+ rotate: false
+ xy: 662, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+304
+ rotate: false
+ xy: 662, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+305
+ rotate: false
+ xy: 636, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+306
+ rotate: false
+ xy: 638, 751
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+307
+ rotate: false
+ xy: 638, 718
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+308
+ rotate: false
+ xy: 630, 685
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+309
+ rotate: false
+ xy: 630, 652
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+310
+ rotate: false
+ xy: 630, 619
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3101
+ rotate: false
+ xy: 817, 157
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3102
+ rotate: false
+ xy: 827, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3103
+ rotate: false
+ xy: 827, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3104
+ rotate: false
+ xy: 827, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3105
+ rotate: false
+ xy: 827, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+311
+ rotate: false
+ xy: 629, 586
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+312
+ rotate: false
+ xy: 628, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+313
+ rotate: false
+ xy: 628, 520
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+314
+ rotate: false
+ xy: 627, 487
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+315
+ rotate: false
+ xy: 627, 454
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+316
+ rotate: false
+ xy: 627, 421
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+317
+ rotate: false
+ xy: 626, 388
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+318
+ rotate: false
+ xy: 624, 355
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+319
+ rotate: false
+ xy: 623, 322
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+32
+ rotate: false
+ xy: 561, 491
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+320
+ rotate: false
+ xy: 623, 289
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+321
+ rotate: false
+ xy: 623, 256
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+322
+ rotate: false
+ xy: 623, 223
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+323
+ rotate: false
+ xy: 655, 190
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+324
+ rotate: false
+ xy: 642, 817
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+325
+ rotate: false
+ xy: 685, 157
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+326
+ rotate: false
+ xy: 695, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+327
+ rotate: false
+ xy: 695, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+328
+ rotate: false
+ xy: 695, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+329
+ rotate: false
+ xy: 695, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+330
+ rotate: false
+ xy: 1955, 1627
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+331
+ rotate: false
+ xy: 1955, 1594
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+332
+ rotate: false
+ xy: 1955, 1594
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+333
+ rotate: false
+ xy: 1955, 1561
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+335
+ rotate: false
+ xy: 1955, 1528
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+336
+ rotate: false
+ xy: 1955, 1528
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+337
+ rotate: false
+ xy: 663, 685
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+338
+ rotate: false
+ xy: 663, 652
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+339
+ rotate: false
+ xy: 663, 619
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+34
+ rotate: false
+ xy: 561, 458
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+340
+ rotate: false
+ xy: 662, 586
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+341
+ rotate: false
+ xy: 661, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+415
+ rotate: false
+ xy: 661, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+342
+ rotate: false
+ xy: 661, 520
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+416
+ rotate: false
+ xy: 661, 520
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+343
+ rotate: false
+ xy: 660, 487
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+344
+ rotate: false
+ xy: 660, 454
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+346
+ rotate: false
+ xy: 660, 421
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+347
+ rotate: false
+ xy: 659, 388
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+349
+ rotate: false
+ xy: 657, 355
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+359
+ rotate: false
+ xy: 656, 322
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+36
+ rotate: false
+ xy: 561, 425
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+367
+ rotate: false
+ xy: 656, 289
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+378
+ rotate: false
+ xy: 656, 256
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+38
+ rotate: false
+ xy: 560, 392
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+389
+ rotate: false
+ xy: 656, 223
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4
+ rotate: false
+ xy: 1113, 1669
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22
+ rotate: false
+ xy: 1113, 1669
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+40
+ rotate: false
+ xy: 558, 359
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+400
+ rotate: false
+ xy: 688, 190
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4021
+ rotate: false
+ xy: 342, 15
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+4022
+ rotate: false
+ xy: 475, 1076
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+4023
+ rotate: false
+ xy: 403, 15
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+4024
+ rotate: false
+ xy: 536, 1076
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+4025
+ rotate: false
+ xy: 344, 882
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+4026
+ rotate: false
+ xy: 405, 909
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+4027
+ rotate: false
+ xy: 466, 905
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+4028
+ rotate: false
+ xy: 527, 905
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+4047
+ rotate: false
+ xy: 1733, 1685
+ size: 47, 60
+ orig: 47, 60
+ offset: 0, 0
+ index: -1
+4077
+ rotate: false
+ xy: 277, 1371
+ size: 67, 105
+ orig: 67, 105
+ offset: 0, 0
+ index: -1
+408
+ rotate: false
+ xy: 718, 157
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4087
+ rotate: false
+ xy: 1, 1858
+ size: 72, 189
+ orig: 72, 189
+ offset: 0, 0
+ index: -1
+4096
+ rotate: false
+ xy: 277, 1265
+ size: 67, 105
+ orig: 67, 105
+ offset: 0, 0
+ index: -1
+4097
+ rotate: false
+ xy: 277, 1159
+ size: 67, 105
+ orig: 67, 105
+ offset: 0, 0
+ index: -1
+412
+ rotate: false
+ xy: 728, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+414
+ rotate: false
+ xy: 728, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4147
+ rotate: false
+ xy: 277, 1053
+ size: 67, 105
+ orig: 67, 105
+ offset: 0, 0
+ index: -1
+4157
+ rotate: false
+ xy: 487, 284
+ size: 36, 105
+ orig: 36, 105
+ offset: 0, 0
+ index: -1
+4158
+ rotate: false
+ xy: 526, 609
+ size: 36, 105
+ orig: 36, 105
+ offset: 0, 0
+ index: -1
+417
+ rotate: false
+ xy: 728, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+418
+ rotate: false
+ xy: 728, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+419
+ rotate: false
+ xy: 2014, 1767
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+42
+ rotate: false
+ xy: 557, 326
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+421
+ rotate: false
+ xy: 669, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+423
+ rotate: false
+ xy: 671, 751
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+425
+ rotate: false
+ xy: 671, 718
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+427
+ rotate: false
+ xy: 696, 685
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+430
+ rotate: false
+ xy: 696, 652
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+432
+ rotate: false
+ xy: 696, 619
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+434
+ rotate: false
+ xy: 695, 586
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+435
+ rotate: false
+ xy: 694, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+437
+ rotate: false
+ xy: 694, 520
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+439
+ rotate: false
+ xy: 693, 487
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+44
+ rotate: false
+ xy: 557, 293
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+441
+ rotate: false
+ xy: 693, 454
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+443
+ rotate: false
+ xy: 693, 421
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+445
+ rotate: false
+ xy: 692, 388
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+448
+ rotate: false
+ xy: 690, 355
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+450
+ rotate: false
+ xy: 689, 322
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+452
+ rotate: false
+ xy: 689, 289
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+454
+ rotate: false
+ xy: 689, 256
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+456
+ rotate: false
+ xy: 689, 223
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+457
+ rotate: false
+ xy: 721, 190
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+459
+ rotate: false
+ xy: 751, 157
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+46
+ rotate: false
+ xy: 557, 260
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+461
+ rotate: false
+ xy: 761, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+463
+ rotate: false
+ xy: 761, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+465
+ rotate: false
+ xy: 761, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+467
+ rotate: false
+ xy: 761, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+470
+ rotate: false
+ xy: 540, 1297
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+473
+ rotate: false
+ xy: 537, 1264
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+475
+ rotate: false
+ xy: 904, 1491
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+477
+ rotate: false
+ xy: 647, 1436
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+478
+ rotate: false
+ xy: 646, 1403
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+48
+ rotate: false
+ xy: 557, 227
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+480
+ rotate: false
+ xy: 645, 1370
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+482
+ rotate: false
+ xy: 680, 1425
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+485
+ rotate: false
+ xy: 679, 1392
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+487
+ rotate: false
+ xy: 678, 1359
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+490
+ rotate: false
+ xy: 645, 1337
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+492
+ rotate: false
+ xy: 678, 1326
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+494
+ rotate: false
+ xy: 644, 1304
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+496
+ rotate: false
+ xy: 677, 1293
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+498
+ rotate: false
+ xy: 1966, 1682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+499
+ rotate: false
+ xy: 2014, 1733
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+50
+ rotate: false
+ xy: 556, 194
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5002
+ rotate: false
+ xy: 712, 1392
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5008
+ rotate: false
+ xy: 1356, 988
+ size: 22, 51
+ orig: 22, 51
+ offset: 0, 0
+ index: -1
+5009
+ rotate: false
+ xy: 788, 226
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+501
+ rotate: false
+ xy: 1988, 1594
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5010
+ rotate: false
+ xy: 937, 1411
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5011
+ rotate: false
+ xy: 970, 1420
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5012
+ rotate: false
+ xy: 1003, 1412
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5013
+ rotate: false
+ xy: 1036, 1412
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5014
+ rotate: false
+ xy: 1069, 1412
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5015
+ rotate: false
+ xy: 1102, 1412
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5016
+ rotate: false
+ xy: 1135, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5017
+ rotate: false
+ xy: 1168, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5018
+ rotate: false
+ xy: 1201, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5019
+ rotate: false
+ xy: 1234, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5020
+ rotate: false
+ xy: 1267, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5021
+ rotate: false
+ xy: 1300, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5022
+ rotate: false
+ xy: 1333, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5023
+ rotate: false
+ xy: 1366, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5024
+ rotate: false
+ xy: 1399, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5025
+ rotate: false
+ xy: 1432, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5026
+ rotate: false
+ xy: 1465, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5027
+ rotate: false
+ xy: 1498, 1427
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5028
+ rotate: false
+ xy: 1531, 1427
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5029
+ rotate: false
+ xy: 1564, 1427
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+503
+ rotate: false
+ xy: 1988, 1561
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5030
+ rotate: false
+ xy: 1597, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5031
+ rotate: false
+ xy: 1630, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5032
+ rotate: false
+ xy: 1663, 1404
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5033
+ rotate: false
+ xy: 1696, 1404
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5034
+ rotate: false
+ xy: 1729, 1400
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5035
+ rotate: false
+ xy: 1762, 1377
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5036
+ rotate: false
+ xy: 1795, 1362
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5037
+ rotate: false
+ xy: 1828, 1345
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5038
+ rotate: false
+ xy: 1861, 1345
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5039
+ rotate: false
+ xy: 1894, 1333
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5040
+ rotate: false
+ xy: 1927, 1333
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5041
+ rotate: false
+ xy: 1960, 1333
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+505
+ rotate: false
+ xy: 1988, 1528
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+507
+ rotate: false
+ xy: 838, 1452
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+510
+ rotate: false
+ xy: 871, 1458
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+512
+ rotate: false
+ xy: 904, 1458
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+514
+ rotate: false
+ xy: 913, 1540
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+516
+ rotate: false
+ xy: 871, 1425
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+518
+ rotate: false
+ xy: 904, 1425
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+52
+ rotate: false
+ xy: 739, 1479
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+520
+ rotate: false
+ xy: 1674, 1566
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+521
+ rotate: false
+ xy: 1707, 1566
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+523
+ rotate: false
+ xy: 1674, 1533
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+525
+ rotate: false
+ xy: 1707, 1533
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+527
+ rotate: false
+ xy: 1740, 1562
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+529
+ rotate: false
+ xy: 1740, 1529
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+532
+ rotate: false
+ xy: 1773, 1539
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+534
+ rotate: false
+ xy: 1773, 1506
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+536
+ rotate: false
+ xy: 1806, 1524
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+538
+ rotate: false
+ xy: 1806, 1491
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+54
+ rotate: false
+ xy: 772, 1479
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+561
+ rotate: false
+ xy: 772, 1479
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+541
+ rotate: false
+ xy: 1839, 1507
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+542
+ rotate: false
+ xy: 1872, 1507
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+544
+ rotate: false
+ xy: 1839, 1474
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+546
+ rotate: false
+ xy: 1872, 1474
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+548
+ rotate: false
+ xy: 1905, 1495
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+55
+ rotate: false
+ xy: 805, 1479
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+550
+ rotate: false
+ xy: 1938, 1495
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+552
+ rotate: false
+ xy: 1971, 1495
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+555
+ rotate: false
+ xy: 1905, 1462
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+557
+ rotate: false
+ xy: 1938, 1462
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+559
+ rotate: false
+ xy: 1971, 1462
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+563
+ rotate: false
+ xy: 2004, 1495
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+564
+ rotate: false
+ xy: 2004, 1462
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+566
+ rotate: false
+ xy: 570, 1264
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+568
+ rotate: false
+ xy: 603, 1292
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+57
+ rotate: false
+ xy: 838, 1485
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+570
+ rotate: false
+ xy: 603, 1259
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+572
+ rotate: false
+ xy: 636, 1271
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+574
+ rotate: false
+ xy: 597, 1226
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+577
+ rotate: false
+ xy: 597, 1193
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+579
+ rotate: false
+ xy: 597, 1160
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+581
+ rotate: false
+ xy: 597, 1127
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+583
+ rotate: false
+ xy: 597, 1094
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+585
+ rotate: false
+ xy: 669, 1260
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+586
+ rotate: false
+ xy: 636, 1238
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+588
+ rotate: false
+ xy: 630, 1205
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+590
+ rotate: false
+ xy: 630, 1172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+592
+ rotate: false
+ xy: 630, 1139
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+594
+ rotate: false
+ xy: 630, 1106
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+596
+ rotate: false
+ xy: 669, 1227
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+598
+ rotate: false
+ xy: 663, 1194
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6
+ rotate: false
+ xy: 525, 377
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+600
+ rotate: false
+ xy: 663, 1161
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6010
+ rotate: false
+ xy: 277, 844
+ size: 65, 64
+ orig: 65, 64
+ offset: 0, 0
+ index: -1
+602
+ rotate: false
+ xy: 663, 1128
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+604
+ rotate: false
+ xy: 663, 1095
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+606
+ rotate: false
+ xy: 702, 1260
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6069
+ rotate: false
+ xy: 277, 713
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+608
+ rotate: false
+ xy: 702, 1227
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+610
+ rotate: false
+ xy: 696, 1194
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+612
+ rotate: false
+ xy: 696, 1161
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+614
+ rotate: false
+ xy: 696, 1128
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+616
+ rotate: false
+ xy: 696, 1095
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+618
+ rotate: false
+ xy: 710, 1293
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+620
+ rotate: false
+ xy: 735, 1260
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+622
+ rotate: false
+ xy: 735, 1227
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+624
+ rotate: false
+ xy: 729, 1194
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+626
+ rotate: false
+ xy: 729, 1161
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+628
+ rotate: false
+ xy: 729, 1128
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+630
+ rotate: false
+ xy: 729, 1095
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+632
+ rotate: false
+ xy: 762, 1194
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+634
+ rotate: false
+ xy: 762, 1161
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+636
+ rotate: false
+ xy: 762, 1128
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+638
+ rotate: false
+ xy: 762, 1095
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+640
+ rotate: false
+ xy: 634, 951
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+642
+ rotate: false
+ xy: 634, 918
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+644
+ rotate: false
+ xy: 634, 885
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+646
+ rotate: false
+ xy: 643, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+648
+ rotate: false
+ xy: 723, 355
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+650
+ rotate: false
+ xy: 722, 322
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+652
+ rotate: false
+ xy: 722, 289
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+654
+ rotate: false
+ xy: 722, 256
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+656
+ rotate: false
+ xy: 722, 223
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+658
+ rotate: false
+ xy: 725, 388
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+660
+ rotate: false
+ xy: 754, 190
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+662
+ rotate: false
+ xy: 784, 157
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+664
+ rotate: false
+ xy: 794, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+666
+ rotate: false
+ xy: 794, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+668
+ rotate: false
+ xy: 794, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+670
+ rotate: false
+ xy: 794, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+672
+ rotate: false
+ xy: 756, 355
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+674
+ rotate: false
+ xy: 755, 322
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+677
+ rotate: false
+ xy: 755, 289
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+679
+ rotate: false
+ xy: 755, 256
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+681
+ rotate: false
+ xy: 755, 223
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+683
+ rotate: false
+ xy: 787, 190
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7002
+ rotate: false
+ xy: 277, 680
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7003
+ rotate: false
+ xy: 277, 647
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7004
+ rotate: false
+ xy: 277, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7005
+ rotate: false
+ xy: 277, 581
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7006
+ rotate: false
+ xy: 277, 548
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7008
+ rotate: false
+ xy: 277, 515
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7010
+ rotate: false
+ xy: 277, 482
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7011
+ rotate: false
+ xy: 277, 449
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7014
+ rotate: false
+ xy: 277, 416
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7015
+ rotate: false
+ xy: 277, 383
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7016
+ rotate: false
+ xy: 277, 350
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7017
+ rotate: false
+ xy: 277, 317
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7018
+ rotate: false
+ xy: 277, 284
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7019
+ rotate: false
+ xy: 277, 251
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7020
+ rotate: false
+ xy: 277, 218
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7021
+ rotate: false
+ xy: 277, 185
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7022
+ rotate: false
+ xy: 277, 152
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7023
+ rotate: false
+ xy: 277, 119
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7024
+ rotate: false
+ xy: 277, 86
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7025
+ rotate: false
+ xy: 277, 53
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7026
+ rotate: false
+ xy: 208, 7
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7027
+ rotate: false
+ xy: 277, 20
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7028
+ rotate: false
+ xy: 283, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7029
+ rotate: false
+ xy: 348, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7030
+ rotate: false
+ xy: 413, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7031
+ rotate: false
+ xy: 478, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7032
+ rotate: false
+ xy: 543, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7033
+ rotate: false
+ xy: 608, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7034
+ rotate: false
+ xy: 673, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7035
+ rotate: false
+ xy: 738, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7036
+ rotate: false
+ xy: 803, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7043
+ rotate: false
+ xy: 868, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7045
+ rotate: false
+ xy: 933, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7046
+ rotate: false
+ xy: 998, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7060
+ rotate: false
+ xy: 1063, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7061
+ rotate: false
+ xy: 1128, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7062
+ rotate: false
+ xy: 1193, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7063
+ rotate: false
+ xy: 1258, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7064
+ rotate: false
+ xy: 1323, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7065
+ rotate: false
+ xy: 1388, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7066
+ rotate: false
+ xy: 1453, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7067
+ rotate: false
+ xy: 1518, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7068
+ rotate: false
+ xy: 1583, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7069
+ rotate: false
+ xy: 1648, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7070
+ rotate: false
+ xy: 1713, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7071
+ rotate: false
+ xy: 1778, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7073
+ rotate: false
+ xy: 1843, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7075
+ rotate: false
+ xy: 1908, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+76
+ rotate: false
+ xy: 871, 1491
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+78
+ rotate: false
+ xy: 734, 1446
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8
+ rotate: false
+ xy: 524, 344
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+80
+ rotate: false
+ xy: 767, 1446
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8022
+ rotate: false
+ xy: 281, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8036
+ rotate: false
+ xy: 74, 1993
+ size: 70, 54
+ orig: 70, 54
+ offset: 0, 0
+ index: -1
+8037
+ rotate: false
+ xy: 346, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8038
+ rotate: false
+ xy: 411, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8039
+ rotate: false
+ xy: 476, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8040
+ rotate: false
+ xy: 541, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8041
+ rotate: false
+ xy: 606, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8042
+ rotate: false
+ xy: 671, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8043
+ rotate: false
+ xy: 736, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8044
+ rotate: false
+ xy: 801, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8045
+ rotate: false
+ xy: 866, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8046
+ rotate: false
+ xy: 931, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8047
+ rotate: false
+ xy: 996, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8048
+ rotate: false
+ xy: 1061, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8049
+ rotate: false
+ xy: 1126, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8050
+ rotate: false
+ xy: 1191, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8051
+ rotate: false
+ xy: 1256, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8052
+ rotate: false
+ xy: 1321, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8054
+ rotate: false
+ xy: 1993, 1333
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+8056
+ rotate: false
+ xy: 727, 457
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+8058
+ rotate: false
+ xy: 745, 1317
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+8060
+ rotate: false
+ xy: 778, 1317
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+8075
+ rotate: false
+ xy: 279, 1603
+ size: 64, 128
+ orig: 64, 128
+ offset: 0, 0
+ index: -1
+8081
+ rotate: false
+ xy: 2021, 1570
+ size: 24, 56
+ orig: 24, 56
+ offset: 0, 0
+ index: -1
+8082
+ rotate: false
+ xy: 1634, 1696
+ size: 49, 49
+ orig: 49, 49
+ offset: 0, 0
+ index: -1
+8083
+ rotate: false
+ xy: 487, 249
+ size: 36, 34
+ orig: 36, 34
+ offset: 0, 0
+ index: -1
+8086
+ rotate: false
+ xy: 728, 586
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8087
+ rotate: false
+ xy: 711, 1359
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8088
+ rotate: false
+ xy: 711, 1326
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8089
+ rotate: false
+ xy: 726, 424
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8090
+ rotate: false
+ xy: 811, 1413
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8091
+ rotate: false
+ xy: 811, 1380
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8092
+ rotate: false
+ xy: 811, 1347
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8093
+ rotate: false
+ xy: 811, 1314
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8094
+ rotate: false
+ xy: 970, 1387
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8095
+ rotate: false
+ xy: 1003, 1379
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8096
+ rotate: false
+ xy: 1036, 1379
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8097
+ rotate: false
+ xy: 1069, 1379
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8098
+ rotate: false
+ xy: 1102, 1379
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8099
+ rotate: false
+ xy: 1, 1678
+ size: 70, 120
+ orig: 70, 120
+ offset: 0, 0
+ index: -1
+8100
+ rotate: false
+ xy: 2014, 1627
+ size: 33, 105
+ orig: 33, 105
+ offset: 0, 0
+ index: -1
+8101
+ rotate: false
+ xy: 1135, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8102
+ rotate: false
+ xy: 768, 1252
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+8103
+ rotate: false
+ xy: 801, 1249
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+8104
+ rotate: false
+ xy: 1168, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8107
+ rotate: false
+ xy: 1201, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8108
+ rotate: false
+ xy: 1386, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8110
+ rotate: false
+ xy: 279, 1538
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8169
+ rotate: false
+ xy: 344, 1553
+ size: 64, 192
+ orig: 64, 192
+ offset: 0, 0
+ index: -1
+8172
+ rotate: false
+ xy: 540, 1391
+ size: 61, 126
+ orig: 61, 126
+ offset: 0, 0
+ index: -1
+8174
+ rotate: false
+ xy: 1451, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+82
+ rotate: false
+ xy: 800, 1446
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+84
+ rotate: false
+ xy: 1872, 1639
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+85
+ rotate: false
+ xy: 1790, 1605
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+86
+ rotate: false
+ xy: 1146, 1664
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+87
+ rotate: false
+ xy: 1179, 1664
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+88
+ rotate: false
+ xy: 1146, 1631
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+89
+ rotate: false
+ xy: 1179, 1631
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+90
+ rotate: false
+ xy: 1212, 1663
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+91
+ rotate: false
+ xy: 1212, 1630
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+92
+ rotate: false
+ xy: 1245, 1663
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+93
+ rotate: false
+ xy: 1245, 1630
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+94
+ rotate: false
+ xy: 1278, 1669
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+95
+ rotate: false
+ xy: 1278, 1636
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+96
+ rotate: false
+ xy: 1311, 1662
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+97
+ rotate: false
+ xy: 1344, 1662
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+98
+ rotate: false
+ xy: 1377, 1662
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+99
+ rotate: false
+ xy: 1311, 1629
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
diff --git a/compatibility/assets/output/graphics/images.png b/compatibility/assets/output/graphics/images.png
new file mode 100644
index 00000000..cd5dc73a
Binary files /dev/null and b/compatibility/assets/output/graphics/images.png differ
diff --git a/compatibility/assets/output/graphics/images10.png b/compatibility/assets/output/graphics/images10.png
new file mode 100644
index 00000000..93b7cb1c
Binary files /dev/null and b/compatibility/assets/output/graphics/images10.png differ
diff --git a/compatibility/assets/output/graphics/images11.png b/compatibility/assets/output/graphics/images11.png
new file mode 100644
index 00000000..841dbf34
Binary files /dev/null and b/compatibility/assets/output/graphics/images11.png differ
diff --git a/compatibility/assets/output/graphics/images12.png b/compatibility/assets/output/graphics/images12.png
new file mode 100644
index 00000000..83ee40e1
Binary files /dev/null and b/compatibility/assets/output/graphics/images12.png differ
diff --git a/compatibility/assets/output/graphics/images13.png b/compatibility/assets/output/graphics/images13.png
new file mode 100644
index 00000000..98077256
Binary files /dev/null and b/compatibility/assets/output/graphics/images13.png differ
diff --git a/compatibility/assets/output/graphics/images14.png b/compatibility/assets/output/graphics/images14.png
new file mode 100644
index 00000000..fffbaef5
Binary files /dev/null and b/compatibility/assets/output/graphics/images14.png differ
diff --git a/compatibility/assets/output/graphics/images15.png b/compatibility/assets/output/graphics/images15.png
new file mode 100644
index 00000000..92770b4e
Binary files /dev/null and b/compatibility/assets/output/graphics/images15.png differ
diff --git a/compatibility/assets/output/graphics/images16.png b/compatibility/assets/output/graphics/images16.png
new file mode 100644
index 00000000..4317d6cb
Binary files /dev/null and b/compatibility/assets/output/graphics/images16.png differ
diff --git a/compatibility/assets/output/graphics/images17.png b/compatibility/assets/output/graphics/images17.png
new file mode 100644
index 00000000..5179a4c3
Binary files /dev/null and b/compatibility/assets/output/graphics/images17.png differ
diff --git a/compatibility/assets/output/graphics/images18.png b/compatibility/assets/output/graphics/images18.png
new file mode 100644
index 00000000..df2f350e
Binary files /dev/null and b/compatibility/assets/output/graphics/images18.png differ
diff --git a/compatibility/assets/output/graphics/images19.png b/compatibility/assets/output/graphics/images19.png
new file mode 100644
index 00000000..6a2ccff9
Binary files /dev/null and b/compatibility/assets/output/graphics/images19.png differ
diff --git a/compatibility/assets/output/graphics/images2.png b/compatibility/assets/output/graphics/images2.png
new file mode 100644
index 00000000..bb928fe2
Binary files /dev/null and b/compatibility/assets/output/graphics/images2.png differ
diff --git a/compatibility/assets/output/graphics/images3.png b/compatibility/assets/output/graphics/images3.png
new file mode 100644
index 00000000..27d7ebce
Binary files /dev/null and b/compatibility/assets/output/graphics/images3.png differ
diff --git a/compatibility/assets/output/graphics/images4.png b/compatibility/assets/output/graphics/images4.png
new file mode 100644
index 00000000..5ae4adbb
Binary files /dev/null and b/compatibility/assets/output/graphics/images4.png differ
diff --git a/compatibility/assets/output/graphics/images5.png b/compatibility/assets/output/graphics/images5.png
new file mode 100644
index 00000000..648246fb
Binary files /dev/null and b/compatibility/assets/output/graphics/images5.png differ
diff --git a/compatibility/assets/output/graphics/images6.png b/compatibility/assets/output/graphics/images6.png
new file mode 100644
index 00000000..71873911
Binary files /dev/null and b/compatibility/assets/output/graphics/images6.png differ
diff --git a/compatibility/assets/output/graphics/images7.png b/compatibility/assets/output/graphics/images7.png
new file mode 100644
index 00000000..90090d9d
Binary files /dev/null and b/compatibility/assets/output/graphics/images7.png differ
diff --git a/compatibility/assets/output/graphics/images8.png b/compatibility/assets/output/graphics/images8.png
new file mode 100644
index 00000000..c5bbc459
Binary files /dev/null and b/compatibility/assets/output/graphics/images8.png differ
diff --git a/compatibility/assets/output/graphics/images9.png b/compatibility/assets/output/graphics/images9.png
new file mode 100644
index 00000000..ddff8a86
Binary files /dev/null and b/compatibility/assets/output/graphics/images9.png differ
diff --git a/compatibility/build.gradle b/compatibility/build.gradle
new file mode 100644
index 00000000..dc6617f6
--- /dev/null
+++ b/compatibility/build.gradle
@@ -0,0 +1,26 @@
+plugins {
+ id 'application'
+}
+
+group 'Finisterra'
+version '0.1.15'
+
+
+sourceSets {
+ main.java.srcDirs = ["src/main/java"]
+ main.resources.srcDirs = ["assets/"]
+}
+
+repositories {
+ mavenCentral()
+}
+
+dependencies {
+ api project(":client")
+ api group: 'org.ini4j', name: 'ini4j', version: '0.5.4'
+ api group: 'com.badlogicgames.gdx', name: 'gdx-tools', version: '1.9.11'
+ testCompile group: 'junit', name: 'junit', version: '4.12'
+}
+
+mainClassName = "com.argentum.GenerateLauncher"
+
diff --git a/compatibility/output/descriptors/animations.json b/compatibility/output/descriptors/animations.json
new file mode 100644
index 00000000..a0892de8
--- /dev/null
+++ b/compatibility/output/descriptors/animations.json
@@ -0,0 +1 @@
+[{"id":25,"frames":[15,16,17,18,19,20,21,22,23,24],"speed":166},{"id":30,"frames":[26,27,28,29],"speed":66},{"id":49,"frames":[38,39,40,41,42,43,44,45,46,47,48],"speed":183},{"id":60,"frames":[56,57,58,59],"speed":66},{"id":77,"frames":[61,62,63,64],"speed":66},{"id":78,"frames":[65,66,67,68],"speed":66},{"id":79,"frames":[69,70,71,72],"speed":66},{"id":80,"frames":[73,74,75,76],"speed":66},{"id":93,"frames":[85,86,87,88,89,90,91,92],"speed":133},{"id":99,"frames":[96,97,98],"speed":50},{"id":115,"frames":[100,101,102,103,104,105,106,107,108,109,110,111,112,113,114],"speed":250},{"id":119,"frames":[116,117,118],"speed":50},{"id":123,"frames":[120,121,122],"speed":50},{"id":134,"frames":[124,125,126,127,128,129,130,131,132,133],"speed":166},{"id":145,"frames":[135,136,137,138,139,140,141,142,143,144],"speed":166},{"id":156,"frames":[146,147,148,149,150,151,152,153,154,155],"speed":166},{"id":172,"frames":[157,158,159,160,161,162,163,164,165,166,167,168,169,170,171],"speed":250},{"id":183,"frames":[173,174,175,176,177,178,179,180,181,182],"speed":166},{"id":194,"frames":[184,185,186,187,188,189,190,191,192,193],"speed":166},{"id":205,"frames":[195,196,197,198,199,200,201,202,203,204],"speed":166},{"id":221,"frames":[206,207,208,209,210,211,212,213,214,215,216,217,218,219,220],"speed":250},{"id":237,"frames":[222,223,224,225,226,227,228,229,230,231,232,233,234,235,236],"speed":250},{"id":259,"frames":[238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258],"speed":350},{"id":265,"frames":[260,261,262,263,264],"speed":83},{"id":275,"frames":[266,267,268,269,270,271,272,273],"speed":133},{"id":286,"frames":[276,277,278,279,280,281,282,283,284,285],"speed":166},{"id":297,"frames":[287,288,289,290,291,292,293,294,295,296],"speed":166},{"id":308,"frames":[298,299,300,301,302,303,304,305,306,307],"speed":166},{"id":420,"frames":[412,413,414,415,416,417,418,419],"speed":133},{"id":421,"frames":[405,406,407,408,409,410,411],"speed":116},{"id":460,"frames":[448,449,450],"speed":50},{"id":461,"frames":[451,452,453],"speed":50},{"id":462,"frames":[454,455,456],"speed":50},{"id":463,"frames":[457,458,459],"speed":50},{"id":488,"frames":[468,469,470,471,472],"speed":83},{"id":489,"frames":[473,474,475,476,477],"speed":83},{"id":490,"frames":[478,479,480,481,482],"speed":83},{"id":491,"frames":[483,484,485,486,487],"speed":83},{"id":669,"frames":[661,662,663,664,665,666,667,668],"speed":133},{"id":816,"frames":[808,809,810,811,812,812,813,814],"speed":133},{"id":825,"frames":[817,818,819,820,821,822,823,824],"speed":133},{"id":834,"frames":[826,827,828,829,830,831,832,833],"speed":133},{"id":843,"frames":[835,836,837,838,839,840,841,842],"speed":133},{"id":859,"frames":[851,852],"speed":33},{"id":860,"frames":[853,854],"speed":33},{"id":861,"frames":[855,856],"speed":33},{"id":862,"frames":[857,858],"speed":33},{"id":902,"frames":[880,881,882,883,884,885],"speed":100},{"id":903,"frames":[886,887,888,889,890,891],"speed":100},{"id":904,"frames":[892,893,894,895,896],"speed":83},{"id":905,"frames":[897,898,899,900,901],"speed":83},{"id":928,"frames":[906,907,908,909,910,911],"speed":100},{"id":929,"frames":[912,913,914,914,916,917],"speed":100},{"id":930,"frames":[918,919,920,921,922],"speed":83},{"id":931,"frames":[923,924,925,926,927],"speed":83},{"id":955,"frames":[933,934,935,936,937,938],"speed":100},{"id":956,"frames":[939,940,941,942,943,944],"speed":100},{"id":957,"frames":[945,946,947,948,949],"speed":83},{"id":958,"frames":[950,951,952,953,954],"speed":83},{"id":982,"frames":[960,961,962,963,964,965],"speed":100},{"id":983,"frames":[966,967,968,969,970,971],"speed":100},{"id":984,"frames":[972,973,974,975,976],"speed":83},{"id":985,"frames":[977,978,979,980,981],"speed":83},{"id":1009,"frames":[987,988,989,990,991,992],"speed":100},{"id":1010,"frames":[993,994,995,996,997,998],"speed":100},{"id":1011,"frames":[999,1000,1001,1002,1003],"speed":83},{"id":1012,"frames":[1004,1005,1006,1007,1008],"speed":83},{"id":1048,"frames":[1026,1027,1028,1029,1030,1031],"speed":100},{"id":1049,"frames":[1032,1033,1034,1035,1036,1037],"speed":100},{"id":1050,"frames":[1038,1039,1040,1041,1042],"speed":83},{"id":1051,"frames":[1043,1044,1045,1046,1047],"speed":83},{"id":1123,"frames":[1101,1102,1103,1104,1105,1106],"speed":100},{"id":1124,"frames":[1107,1108,1109,1110,1111,1112],"speed":100},{"id":1125,"frames":[1113,1114,1115,1116,1117],"speed":83},{"id":1126,"frames":[1118,1119,1120,1121,1122],"speed":83},{"id":1150,"frames":[1128,1129,1130,1131,1132,1133],"speed":100},{"id":1151,"frames":[1134,1135,1136,1137,1138,1139],"speed":100},{"id":1152,"frames":[1140,1141,1142,1143,1144],"speed":83},{"id":1153,"frames":[1145,1146,1147,1148,1149],"speed":83},{"id":1177,"frames":[1155,1156,1157,1158,1159,1160],"speed":100},{"id":1178,"frames":[1161,1162,1163,1164,1165,1166],"speed":100},{"id":1179,"frames":[1167,1168,1169,1170,1171],"speed":83},{"id":1180,"frames":[1172,1173,1174,1175,1176],"speed":83},{"id":1204,"frames":[1182,1183,1184,1185,1186,1187],"speed":100},{"id":1205,"frames":[1188,1189,1190,1191,1192,1193],"speed":100},{"id":1206,"frames":[1194,1195,1196,1197,1198],"speed":83},{"id":1207,"frames":[1199,1200,1201,1202,1203],"speed":83},{"id":1231,"frames":[1209,1210,1211,1212,1213,1214],"speed":100},{"id":1232,"frames":[1215,1216,1217,1218,1219,1220],"speed":100},{"id":1233,"frames":[1221,1222,1223,1224,1225],"speed":83},{"id":1234,"frames":[1226,1227,1228,1229,1230],"speed":83},{"id":1258,"frames":[1236,1237,1238,1239,1240,1241],"speed":100},{"id":1259,"frames":[1242,1243,1244,1245,1246,1247],"speed":100},{"id":1260,"frames":[1248,1249,1250,1251,1252],"speed":83},{"id":1261,"frames":[1253,1254,1255,1256,1257],"speed":83},{"id":1285,"frames":[1263,1264,1265,1266,1267,1268],"speed":100},{"id":1286,"frames":[1269,1270,1271,1272,1273,1274],"speed":100},{"id":1287,"frames":[1275,1276,1277,1278,1279],"speed":83},{"id":1288,"frames":[1280,1281,1282,1283,1284],"speed":83},{"id":1311,"frames":[1289,1290,1291,1292,1293,1294],"speed":100},{"id":1312,"frames":[1295,1296,1297,1298,1299,1300],"speed":100},{"id":1313,"frames":[1301,1302,1303,1304,1305],"speed":83},{"id":1314,"frames":[1306,1307,1308,1309,1310],"speed":83},{"id":1468,"frames":[1464,1465,1466,1467],"speed":66},{"id":1505,"frames":[324,340,356,372],"speed":66},{"id":1506,"frames":[325,341,357,373],"speed":66},{"id":1507,"frames":[326,342,358,374],"speed":66},{"id":1508,"frames":[327,343,359,375],"speed":66},{"id":1509,"frames":[328,344,360,376],"speed":66},{"id":1510,"frames":[329,345,361,377],"speed":66},{"id":1511,"frames":[330,346,362,378],"speed":66},{"id":1512,"frames":[331,347,363,379],"speed":66},{"id":1513,"frames":[332,348,364,380],"speed":66},{"id":1514,"frames":[333,349,365,381],"speed":66},{"id":1515,"frames":[334,350,366,382],"speed":66},{"id":1516,"frames":[335,351,367,383],"speed":66},{"id":1517,"frames":[336,352,368,384],"speed":66},{"id":1518,"frames":[337,353,369,385],"speed":66},{"id":1519,"frames":[338,354,370,386],"speed":66},{"id":1520,"frames":[339,355,371,387],"speed":66},{"id":1521,"frames":[315,316,317,318,319,320,321,322,323],"speed":150},{"id":1885,"frames":[1877,1878,1879,1880,1881,1882,1883,1884],"speed":133},{"id":1894,"frames":[1886,1887,1888,1889,1890,1891,1892,1893],"speed":133},{"id":1917,"frames":[1895,1896,1897,1898,1899,1900],"speed":100},{"id":1918,"frames":[1901,1902,1903,1904,1905,1906],"speed":100},{"id":1919,"frames":[1907,1908,1909,1910,1911],"speed":83},{"id":1920,"frames":[1912,1913,1914,1915,1916],"speed":83},{"id":1943,"frames":[1921,1922,1923,1924,1925,1926],"speed":100},{"id":1944,"frames":[1927,1928,1929,1930,1931,1932],"speed":100},{"id":1945,"frames":[1933,1934,1935,1936,1937],"speed":83},{"id":1946,"frames":[1938,1939,1940,1941,1942],"speed":83},{"id":1969,"frames":[1947,1948,1949,1950,1951,1952],"speed":100},{"id":1970,"frames":[1953,1954,1955,1956,1957,1958],"speed":100},{"id":1971,"frames":[1959,1960,1961,1962,1963],"speed":83},{"id":1972,"frames":[1964,1965,1966,1967,1968],"speed":83},{"id":1989,"frames":[1973,1974,1975,1976],"speed":66},{"id":1990,"frames":[1977,1978,1979,1980],"speed":66},{"id":1991,"frames":[1981,1982,1983,1984],"speed":66},{"id":1992,"frames":[1985,1986,1987,1988],"speed":66},{"id":2126,"frames":[2110,2111,2112,2113],"speed":66},{"id":2127,"frames":[2114,2115,2116,2117],"speed":66},{"id":2128,"frames":[2118,2119,2120,2121],"speed":66},{"id":2129,"frames":[2122,2123,2124,2125],"speed":66},{"id":2316,"frames":[2310,2311,2312,2313,2314,2315],"speed":100},{"id":2634,"frames":[2630,2631,2632,2633],"speed":66},{"id":3072,"frames":[3056,3057,3058,3059],"speed":66},{"id":3073,"frames":[3060,3061,3062,3063],"speed":66},{"id":3074,"frames":[3064,3065,3066,3067],"speed":66},{"id":3075,"frames":[3068,3069,3070,3071],"speed":66},{"id":3151,"frames":[3129,3130,3131,3132,3133,3134],"speed":100},{"id":3152,"frames":[3135,3136,3137,3138,3139,3140],"speed":100},{"id":3153,"frames":[3141,3142,3143,3144,3145],"speed":83},{"id":3154,"frames":[3146,3147,3148,3149,3150],"speed":83},{"id":3179,"frames":[3157,3158,3159,3160,3161,3162],"speed":100},{"id":3180,"frames":[3163,3164,3165,3166,3167,3168],"speed":100},{"id":3181,"frames":[3169,3170,3171,3172,3173],"speed":83},{"id":3182,"frames":[3174,3175,3176,3177,3178],"speed":83},{"id":3183,"frames":[3076,3077,3078,3079,3080,3081],"speed":100},{"id":3184,"frames":[3082,3083,3084,3085,3086,3087],"speed":100},{"id":3185,"frames":[3088,3089,3090,3091,3092],"speed":83},{"id":3186,"frames":[3093,3094,3095,3096,3097],"speed":83},{"id":3197,"frames":[3187,3188,3189,3190,3191,3192,3193,3194,3195,3196],"speed":166},{"id":3249,"frames":[3227,3228,3229,3230,3231,3232],"speed":100},{"id":3250,"frames":[3233,3234,3235,3236,3237,3238],"speed":100},{"id":3251,"frames":[3239,3240,3241,3242,3243],"speed":83},{"id":3252,"frames":[3244,3245,3246,3247,3248],"speed":83},{"id":3276,"frames":[3254,3255,3256,3257,3258,3259],"speed":100},{"id":3277,"frames":[3260,3261,3262,3263,3264,3265],"speed":100},{"id":3278,"frames":[3266,3267,3268,3269,3270],"speed":83},{"id":3279,"frames":[3271,3272,3273,3274,3275],"speed":83},{"id":3300,"frames":[3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299],"speed":333},{"id":3607,"frames":[3585,3586,3587,3588,3589,3590],"speed":100},{"id":3608,"frames":[3591,3592,3593,3594,3595,3596],"speed":100},{"id":3609,"frames":[3597,3598,3599,3600,3601],"speed":83},{"id":3610,"frames":[3602,3603,3604,3605,3606],"speed":83},{"id":3633,"frames":[3611,3612,3613,3614,3615,3616],"speed":100},{"id":3634,"frames":[3617,3618,3619,3620,3621,3622],"speed":100},{"id":3635,"frames":[3623,3624,3625,3626,3627],"speed":83},{"id":3636,"frames":[3628,3629,3630,3631,3632],"speed":83},{"id":3659,"frames":[3637,3638,3639,3640,3641,3642],"speed":100},{"id":3660,"frames":[3643,3644,3645,3646,3647,3648],"speed":100},{"id":3661,"frames":[3649,3650,3651,3652,3653],"speed":83},{"id":3662,"frames":[3654,3655,3656,3657,3658],"speed":83},{"id":3685,"frames":[3663,3664,3665,3666,3667,3668],"speed":100},{"id":3686,"frames":[3669,3670,3671,3672,3673,3674],"speed":100},{"id":3687,"frames":[3675,3676,3677,3678,3679],"speed":83},{"id":3688,"frames":[3680,3681,3682,3683,3684],"speed":83},{"id":3711,"frames":[3689,3690,3691,3692,3693,3694],"speed":100},{"id":3712,"frames":[3695,3696,3697,3698,3699,3700],"speed":100},{"id":3713,"frames":[3701,3702,3703,3704,3705],"speed":83},{"id":3714,"frames":[3706,3707,3708,3709,3710],"speed":83},{"id":3739,"frames":[3717,3718,3719,3720,3721,3722],"speed":100},{"id":3740,"frames":[3723,3724,3725,3726,3727,3728],"speed":100},{"id":3741,"frames":[3729,3730,3731,3732,3733],"speed":83},{"id":3742,"frames":[3734,3735,3736,3737,3738],"speed":83},{"id":3765,"frames":[3743,3744,3745,3746,3747,3748],"speed":100},{"id":3766,"frames":[3749,3750,3751,3752,3753,3754],"speed":100},{"id":3767,"frames":[3755,3756,3757,3758,3759],"speed":83},{"id":3768,"frames":[3760,3761,3762,3763,3764],"speed":83},{"id":3791,"frames":[3769,3770,3771,3772,3773,3774],"speed":100},{"id":3792,"frames":[3775,3776,3777,3778,3779,3780],"speed":100},{"id":3793,"frames":[3781,3782,3783,3784,3785],"speed":83},{"id":3794,"frames":[3786,3787,3788,3789,3790],"speed":83},{"id":3853,"frames":[3831,3832,3833,3834,3835,3836],"speed":100},{"id":3854,"frames":[3837,3838,3839,3840,3841,3842],"speed":100},{"id":3855,"frames":[3843,3844,3845,3846,3847],"speed":83},{"id":3856,"frames":[3848,3849,3850,3851,3852],"speed":83},{"id":3877,"frames":[3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876],"speed":333},{"id":3900,"frames":[3878,3879,3880,3881,3882,3883],"speed":100},{"id":3901,"frames":[3884,3885,3886,3887,3888,3889],"speed":100},{"id":3902,"frames":[3890,3891,3892,3893,3894],"speed":83},{"id":3903,"frames":[3895,3896,3897,3898,3899],"speed":83},{"id":3926,"frames":[3904,3905,3906,3907,3908,3909],"speed":100},{"id":3927,"frames":[3910,3911,3912,3913,3914,3915],"speed":100},{"id":3928,"frames":[3916,3917,3918,3919,3920],"speed":83},{"id":3929,"frames":[3921,3922,3923,3924,3925],"speed":83},{"id":3952,"frames":[3930,3931,3932,3933,3934,3935],"speed":100},{"id":3953,"frames":[3936,3937,3938,3939,3940,3941],"speed":100},{"id":3954,"frames":[3942,3943,3944,3945,3946],"speed":83},{"id":3955,"frames":[3947,3948,3949,3950,3951],"speed":83},{"id":3978,"frames":[3956,3957,3958,3959,3960,3961],"speed":100},{"id":3979,"frames":[3962,3963,3964,3965,3966,3967],"speed":100},{"id":3980,"frames":[3968,3969,3970,3971,3972],"speed":83},{"id":3981,"frames":[3973,3974,3975,3976,3977],"speed":83},{"id":3993,"frames":[3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992],"speed":183},{"id":4476,"frames":[4464,4465,4466],"speed":50},{"id":4477,"frames":[4467,4468,4469],"speed":50},{"id":4478,"frames":[4470,4471,4472],"speed":50},{"id":4479,"frames":[4473,4474,4475],"speed":50},{"id":4488,"frames":[4480,4481,4482,4483],"speed":66},{"id":4489,"frames":[4484,4485,4486,4487],"speed":66},{"id":4516,"frames":[2140,2141,2142,2143,2144,2145,2146,2147],"speed":133},{"id":4517,"frames":[2148,2149,2150,2151,2152,2153,2154,2155],"speed":133},{"id":4518,"frames":[2156,2157,2158,2159,2160,2161,2162,2163],"speed":133},{"id":4519,"frames":[2164,2165,2166,2167,2168,2169,2170,2171],"speed":133},{"id":4520,"frames":[2178,2179,2180,2181,2182,2183,2184,2185],"speed":133},{"id":4521,"frames":[2186,2187,2188,2189,2190,2191,2192,2193],"speed":133},{"id":4522,"frames":[2194,2195,2196,2197,2198,2199,2200,2201],"speed":133},{"id":4523,"frames":[2202,2203,2204,2205,2206,2207,2208,2209],"speed":133},{"id":4524,"frames":[2210,2211,2212,2213,2214,2215,2216,2217],"speed":133},{"id":4525,"frames":[2218,2219,2220,2221,2222,2223,2224,2225],"speed":133},{"id":4526,"frames":[2226,2227,2228,2229,2230,2231,2232,2233],"speed":133},{"id":4527,"frames":[2234,2235,2236,2237,2238,2239,2240,2241],"speed":133},{"id":4528,"frames":[2242,2243,2244],"speed":50},{"id":4529,"frames":[2245,2246,2247],"speed":50},{"id":4530,"frames":[2248,2249,2250],"speed":50},{"id":4531,"frames":[2251,2252,2253],"speed":50},{"id":4532,"frames":[2254,2255],"speed":33},{"id":4533,"frames":[2256,2257],"speed":33},{"id":4534,"frames":[2258,2259],"speed":33},{"id":4535,"frames":[2260,2261],"speed":33},{"id":4536,"frames":[2262,2263,2264,2265],"speed":66},{"id":4537,"frames":[2266,2267,2268,2269],"speed":66},{"id":4538,"frames":[2270,2271,2272,2273],"speed":66},{"id":4539,"frames":[2274,2275,2276,2277],"speed":66},{"id":4544,"frames":[4540,4541,4542,4543],"speed":66},{"id":4548,"frames":[2342,2343,2344],"speed":50},{"id":4549,"frames":[2345,2346,2347],"speed":50},{"id":4550,"frames":[2348,2349,2350],"speed":50},{"id":4551,"frames":[2351,2352,2353],"speed":50},{"id":4552,"frames":[2354,2355,2356,2357,2358,2359,2360,2361],"speed":133},{"id":4553,"frames":[2362,2363,2364,2365,2366,2367,2368,2369],"speed":133},{"id":4554,"frames":[2370,2371,2372,2373,2374,2375,2376,2377],"speed":133},{"id":4555,"frames":[2378,2379,2380,2381,2382,2383,2384,2385],"speed":133},{"id":4556,"frames":[2386,2387,2388,2389,2390,2391,2392,2393],"speed":133},{"id":4557,"frames":[2394,2395,2396,2397,2398,2399,2400,2401],"speed":133},{"id":4558,"frames":[2402,2403,2404,2405,2406,2407,2408,2409],"speed":133},{"id":4559,"frames":[2410,2411,2412,2413,2414,2415,2416,2417],"speed":133},{"id":4560,"frames":[2418,2419,2420,2421,2422,2423,2424,2425],"speed":133},{"id":4561,"frames":[2426,2427,2428,2429,2430,2431,2432,2433],"speed":133},{"id":4562,"frames":[2434,2435,2436,2437,2438,2439,2440,2441],"speed":133},{"id":4563,"frames":[2442,2443,2444,2445,2446,2447,2448,2449],"speed":133},{"id":4564,"frames":[2450,2451,2452],"speed":50},{"id":4565,"frames":[2453,2454,2455],"speed":50},{"id":4566,"frames":[2456,2457,2458],"speed":50},{"id":4567,"frames":[2459,2460,2461],"speed":50},{"id":4568,"frames":[2462,2463,2464],"speed":50},{"id":4569,"frames":[2465,2466,2467],"speed":50},{"id":4570,"frames":[2468,2469,2470],"speed":50},{"id":4571,"frames":[2471,2472,2473],"speed":50},{"id":4572,"frames":[2474,2475,2476],"speed":50},{"id":4573,"frames":[2477,2478,2479,2480,2481,2482,2483,2484],"speed":133},{"id":4574,"frames":[2485,2486,2487,2488,2489,2490,2491,2492],"speed":133},{"id":4575,"frames":[2493,2494,2495,2496,2497,2498,2499,2500],"speed":133},{"id":4576,"frames":[2501,2502,2503,2504,2505,2506,2507,2508],"speed":133},{"id":4577,"frames":[2509,2510,2511,2512,2513,2514],"speed":100},{"id":4578,"frames":[2515,2516,2517,2518,2519,2520],"speed":100},{"id":4579,"frames":[2521,2522,2523,2524,2525],"speed":83},{"id":4580,"frames":[2526,2527,2528,2529,2530],"speed":83},{"id":4581,"frames":[2531,2532,2533,2534,2535,2536],"speed":100},{"id":4582,"frames":[2537,2538,2539,2540,2541,2542],"speed":100},{"id":4583,"frames":[2543,2544,2545,2546,2547],"speed":83},{"id":4584,"frames":[2548,2549,2550,2551,2552],"speed":83},{"id":4585,"frames":[2553,2554,2555,2556,2557,2558],"speed":100},{"id":4586,"frames":[2559,2560,2561,2562,2563,2564],"speed":100},{"id":4587,"frames":[2565,2566,2567,2568,2569],"speed":83},{"id":4588,"frames":[2570,2571,2572,2573,2574],"speed":83},{"id":4589,"frames":[2575,2576,2577,2578,2579,2580],"speed":100},{"id":4590,"frames":[2581,2582,2583,2584,2585,2586],"speed":100},{"id":4591,"frames":[2587,2588,2589,2590,2591],"speed":83},{"id":4592,"frames":[2592,2593,2594,2595,2596],"speed":83},{"id":4593,"frames":[2597,2598,2599,2600,2601,2602],"speed":100},{"id":4594,"frames":[2603,2604,2605,2606,2607,2608],"speed":100},{"id":4595,"frames":[2609,2610,2611,2612,2613],"speed":83},{"id":4596,"frames":[2614,2615,2616,2617,2618],"speed":83},{"id":4601,"frames":[2641,2642,2643,2644,2645,2646],"speed":100},{"id":4602,"frames":[2647,2648,2649,2650,2651,2652],"speed":100},{"id":4603,"frames":[2653,2654,2655,2656,2657],"speed":83},{"id":4604,"frames":[2658,2659,2660,2661,2662],"speed":83},{"id":4605,"frames":[2663,2664,2665,2666,2667,2668],"speed":100},{"id":4606,"frames":[2669,2670,2671,2672,2673,2674],"speed":100},{"id":4607,"frames":[2675,2676,2677,2678,2679],"speed":83},{"id":4608,"frames":[2680,2681,2682,2683,2684],"speed":83},{"id":4609,"frames":[2685,2686,2687,2688,2689,2690],"speed":100},{"id":4610,"frames":[2691,2692,2693,2694,2695,2696],"speed":100},{"id":4611,"frames":[2697,2698,2699,2700,2701,2702],"speed":100},{"id":4612,"frames":[2703,2704,2705,2706,2707,2708],"speed":100},{"id":4613,"frames":[2709,2710,2711],"speed":50},{"id":4614,"frames":[2712,2713,2714],"speed":50},{"id":4615,"frames":[2715,2716,2717],"speed":50},{"id":4616,"frames":[2718,2719,2720],"speed":50},{"id":4617,"frames":[2721,2722,2723,2724,2725,2726],"speed":100},{"id":4618,"frames":[2727,2728,2729,2730,2731,2732],"speed":100},{"id":4619,"frames":[2733,2734,2735,2736,2737],"speed":83},{"id":4620,"frames":[2738,2739,2740,2741,2742],"speed":83},{"id":4621,"frames":[2743,2744,2745,2746,2747,2748,2749],"speed":116},{"id":4622,"frames":[2750,2751,2752,2753,2754,2755,2756],"speed":116},{"id":4623,"frames":[2757,2758,2759,2760,2761,2762,2763],"speed":116},{"id":4624,"frames":[2764,2765,2766,2767,2768,2769,2770],"speed":116},{"id":4625,"frames":[2771,2772,2773,2774,2775,2776],"speed":100},{"id":4626,"frames":[2777,2778,2779,2780,2781,2782],"speed":100},{"id":4627,"frames":[2783,2784,2785,2786,2787],"speed":83},{"id":4628,"frames":[2788,2789,2790,2791,2792],"speed":83},{"id":4629,"frames":[2793,2794,2795,2796,2797,2798],"speed":100},{"id":4630,"frames":[2799,2800,2801,2802,2803,2804],"speed":100},{"id":4631,"frames":[2805,2806,2807,2808,2809],"speed":83},{"id":4632,"frames":[2810,2811,2812,2813,2814],"speed":83},{"id":4633,"frames":[2815,2816,2817,2818,2819,2820],"speed":100},{"id":4634,"frames":[2821,2822,2823,2824,2825,2826],"speed":100},{"id":4635,"frames":[2827,2828,2829,2830,2831],"speed":83},{"id":4636,"frames":[2832,2833,2834,2835,2836],"speed":83},{"id":4637,"frames":[2837,2838,2839,2840,2841,2842],"speed":100},{"id":4638,"frames":[2843,2844,2845,2846,2847,2848],"speed":100},{"id":4639,"frames":[2849,2850,2851,2852,2853,2854],"speed":100},{"id":4640,"frames":[2855,2856,2857,2858,2859,2860],"speed":100},{"id":4641,"frames":[2861,2862,2863,2864],"speed":66},{"id":4642,"frames":[2865,2866,2867,2868],"speed":66},{"id":4643,"frames":[2869,2870,2871,2872],"speed":66},{"id":4644,"frames":[2873,2874,2875,2876],"speed":66},{"id":4645,"frames":[2877,2878,2879,2880,2881,2882,2883,2884],"speed":133},{"id":4646,"frames":[2885,2886,2887,2888,2889,2890,2891,2892],"speed":133},{"id":4647,"frames":[2893,2894,2895,2896,2897,2898,2899,2900],"speed":133},{"id":4648,"frames":[2901,2902,2903,2904,2905,2906,2907,2908],"speed":133},{"id":4649,"frames":[2909,2910,2911,2912,2913,2914],"speed":100},{"id":4650,"frames":[2915,2916,2917,2918,2919,2920],"speed":100},{"id":4651,"frames":[2921,2922,2923,2924,2925],"speed":83},{"id":4652,"frames":[2926,2927,2928,2929,2930],"speed":83},{"id":4653,"frames":[2931,2932,2933,2934,2935,2936],"speed":100},{"id":4654,"frames":[2937,2938,2939,2940,2941,2942],"speed":100},{"id":4655,"frames":[2943,2944,2945,2946,2947],"speed":83},{"id":4656,"frames":[2948,2949,2950,2951,2952],"speed":83},{"id":4657,"frames":[2953,2954,2955,2956,2957,2958],"speed":100},{"id":4658,"frames":[2959,2960,2961,2962,2963,2964],"speed":100},{"id":4659,"frames":[2965,2966,2967,2968,2969],"speed":83},{"id":4660,"frames":[2970,2971,2972,2973,2974],"speed":83},{"id":4661,"frames":[2975,2976,2977,2978,2979,2980],"speed":100},{"id":4662,"frames":[2981,2982,2983,2984,2985,2986],"speed":100},{"id":4663,"frames":[2987,2988,2989,2990,2991],"speed":83},{"id":4669,"frames":[4000,4001,4002,4003,4004],"speed":83},{"id":4670,"frames":[4005,4006,4007,4008,4009,4010],"speed":100},{"id":4671,"frames":[4011,4012,4013,4014,4015,4016],"speed":100},{"id":4672,"frames":[4017,4018,4019,4020,4021],"speed":83},{"id":4673,"frames":[4022,4023,4024,4025,4026],"speed":83},{"id":4674,"frames":[4027,4028,4029,4030,4031,4032],"speed":100},{"id":4675,"frames":[4033,4034,4035,4036,4037,4038],"speed":100},{"id":4676,"frames":[4039,4040,4041,4042,4043],"speed":83},{"id":4677,"frames":[4044,4045,4046,4047,4048],"speed":83},{"id":4678,"frames":[4049,4050,4051,4052,4053,4054],"speed":100},{"id":4679,"frames":[4055,4056,4057,4058,4059,4060],"speed":100},{"id":4680,"frames":[4061,4062,4063,4064,4065],"speed":83},{"id":4681,"frames":[4066,4067,4068,4069,4070],"speed":83},{"id":4682,"frames":[4071,4072,4073,4074],"speed":66},{"id":4683,"frames":[4075,4076,4077,4078],"speed":66},{"id":4684,"frames":[4079,4080,4081,4082],"speed":66},{"id":4685,"frames":[4083,4084,4085,4086],"speed":66},{"id":4686,"frames":[4087,4088,4089,4090,4091,4092],"speed":100},{"id":4687,"frames":[4093,4094,4095,4096,4097,4098],"speed":100},{"id":4688,"frames":[4099,4100,4101,4102,4103],"speed":83},{"id":4689,"frames":[4104,4105,4106,4107,4108],"speed":83},{"id":4690,"frames":[4109,4110,4111,4112,4113,4114],"speed":100},{"id":4691,"frames":[4115,4116,4117,4118,4119,4120],"speed":100},{"id":4692,"frames":[4121,4122,4123,4124,4125],"speed":83},{"id":4693,"frames":[4126,4127,4128,4129,4130],"speed":83},{"id":4698,"frames":[4135,4136,4137,4138,4139,4140],"speed":100},{"id":4699,"frames":[4141,4142,4143,4144,4145,4146],"speed":100},{"id":4700,"frames":[4147,4148,4149,4150,4151],"speed":83},{"id":4701,"frames":[4152,4153,4154,4155,4156],"speed":83},{"id":4702,"frames":[4157,4158,4159,4160,4161,4162],"speed":100},{"id":4703,"frames":[4163,4164,4165,4166,4167,4168],"speed":100},{"id":4704,"frames":[4169,4170,4171,4172,4173],"speed":83},{"id":4705,"frames":[4174,4175,4176,4177,4178],"speed":83},{"id":4706,"frames":[4179,4180,4181,4182,4183,4184],"speed":100},{"id":4707,"frames":[4185,4186,4187,4188,4189,4190],"speed":100},{"id":4708,"frames":[4191,4192,4193,4194,4195],"speed":83},{"id":4709,"frames":[4196,4197,4198,4199,4200],"speed":83},{"id":4710,"frames":[4201,4202,4203,4204,4205,4206],"speed":100},{"id":4711,"frames":[4207,4208,4209,4210,4211,4212],"speed":100},{"id":4712,"frames":[4213,4214,4215,4216,4217],"speed":83},{"id":4713,"frames":[4218,4219,4220,4221,4222],"speed":83},{"id":4714,"frames":[4223,4224,4225,4226,4227,4228],"speed":100},{"id":4715,"frames":[4229,4230,4231,4232,4233,4234],"speed":100},{"id":4716,"frames":[4235,4236,4237,4238,4239],"speed":83},{"id":4717,"frames":[4240,4241,4242,4243,4244],"speed":83},{"id":4718,"frames":[4245,4246,4247,4248,4249,4250],"speed":100},{"id":4719,"frames":[4251,4252,4253,4254,4255,4256],"speed":100},{"id":4720,"frames":[4257,4258,4259,4260,4261],"speed":83},{"id":4721,"frames":[4262,4263,4264,4265,4266],"speed":83},{"id":4722,"frames":[4267,4268,4269,4270,4271,4272],"speed":100},{"id":4723,"frames":[4273,4274,4275,4276,4277,4278],"speed":100},{"id":4724,"frames":[4279,4280,4281,4282,4283],"speed":83},{"id":4725,"frames":[4284,4285,4286,4287,4288],"speed":83},{"id":4726,"frames":[4289,4290,4291,4292,4293,4294],"speed":100},{"id":4727,"frames":[4295,4296,4297,4298,4299,4300],"speed":100},{"id":4728,"frames":[4301,4302,4303,4304,4305],"speed":83},{"id":4729,"frames":[4306,4307,4308,4309,4310],"speed":83},{"id":4730,"frames":[4320,4321],"speed":33},{"id":4731,"frames":[4322,4323],"speed":33},{"id":4732,"frames":[4324,4325],"speed":33},{"id":4733,"frames":[4326,4327],"speed":33},{"id":4734,"frames":[4328,4329],"speed":33},{"id":4735,"frames":[4330,4331],"speed":33},{"id":4736,"frames":[4332,4333],"speed":33},{"id":4737,"frames":[4334,4335],"speed":33},{"id":4738,"frames":[4336,4337,4338,4339,4340,4341,4342,4343],"speed":133},{"id":4739,"frames":[4344,4345,4346,4347,4348,4349,4350,4351],"speed":133},{"id":4740,"frames":[4352,4353,4354,4355,4356,4357,4358,4359],"speed":133},{"id":4741,"frames":[4360,4361,4362,4363,4364,4365,4366,4367],"speed":133},{"id":4742,"frames":[4368,4369,4370],"speed":50},{"id":4743,"frames":[4371,4372,4373],"speed":50},{"id":4744,"frames":[4374,4375,4376],"speed":50},{"id":4745,"frames":[4377,4378,4379],"speed":50},{"id":4746,"frames":[4380,4381,4382],"speed":50},{"id":4747,"frames":[4383,4384,4385],"speed":50},{"id":4748,"frames":[4386,4387,4388],"speed":50},{"id":4749,"frames":[4389,4390,4391],"speed":50},{"id":4754,"frames":[4404,4405,4406,4407,4408,4409,4410,4411],"speed":133},{"id":4755,"frames":[4412,4413,4414,4415,4416,4417,4418,4419],"speed":133},{"id":4756,"frames":[4420,4421,4422,4423,4424,4425,4426,4427],"speed":133},{"id":4757,"frames":[4428,4429,4430,4431,4432,4433,4434,4435],"speed":133},{"id":4758,"frames":[4436,4437,4438,4439,4440,4441],"speed":100},{"id":4759,"frames":[4442,4443,4444,4445,4446,4447],"speed":100},{"id":4760,"frames":[4448,4449,4450,4451,4452,4453],"speed":100},{"id":4761,"frames":[4454,4455,4456,4457,4458,4459],"speed":100},{"id":4762,"frames":[2000,2001,2002,2003,2004,2005],"speed":100},{"id":4763,"frames":[2006,2007,2008,2009,2010,2011],"speed":100},{"id":4764,"frames":[2012,2013,2014,2015,2016],"speed":83},{"id":4765,"frames":[2017,2018,2019,2020,2021],"speed":83},{"id":4766,"frames":[2022,2023,2024,2025,2026,2027],"speed":100},{"id":4767,"frames":[2028,2029,2030,2031,2032,2033],"speed":100},{"id":4768,"frames":[2034,2035,2036,2037,2038],"speed":83},{"id":4769,"frames":[2039,2040,2041,2042,2043],"speed":83},{"id":4770,"frames":[2044,2045,2046,2047,2048,2049],"speed":100},{"id":4771,"frames":[2050,2051,2052,2053,2054,2055],"speed":100},{"id":4772,"frames":[2056,2057,2058,2059,2060],"speed":83},{"id":4773,"frames":[2061,2062,2063,2064,2065],"speed":83},{"id":4774,"frames":[2066,2067,2068,2069,2070,2071],"speed":100},{"id":4775,"frames":[2072,2073,2074,2075,2076,2077],"speed":100},{"id":4776,"frames":[2078,2079,2080,2081,2082],"speed":83},{"id":4777,"frames":[2083,2084,2085,2086,2087],"speed":83},{"id":4778,"frames":[2088,2089,2090,2091,2092,2093],"speed":100},{"id":4779,"frames":[2094,2095,2096,2097,2098,2099],"speed":100},{"id":4780,"frames":[2100,2101,2102,2103,2104],"speed":83},{"id":4781,"frames":[2105,2106,2107,2108,2109],"speed":83},{"id":4797,"frames":[4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796],"speed":250},{"id":4830,"frames":[4798,4799,4800,4801,4802,4803,4804,4805],"speed":133},{"id":4831,"frames":[4806,4807,4808,4809,4810,4811,4812,4813],"speed":133},{"id":4832,"frames":[4814,4815,4816,4817,4818,4819,4820,4821],"speed":133},{"id":4833,"frames":[4822,4823,4824,4825,4826,4827,4828,4829],"speed":133},{"id":4856,"frames":[4834,4835,4836,4837,4838,4839],"speed":100},{"id":4857,"frames":[4840,4841,4842,4843,4844,4845],"speed":100},{"id":4858,"frames":[4846,4847,4848,4849,4850],"speed":83},{"id":4859,"frames":[4851,4852,4853,4854,4855],"speed":83},{"id":4965,"frames":[4941,4942,4943,4944,4945,4946],"speed":100},{"id":4966,"frames":[4947,4948,4949,4950,4951,4952],"speed":100},{"id":4967,"frames":[4953,4954,4955,4956,4957,4958],"speed":100},{"id":4968,"frames":[4959,4960,4961,4962,4963,4964],"speed":100},{"id":4977,"frames":[4969,4970,4971,4972,4973,4974,4975,4976],"speed":133},{"id":5022,"frames":[5000,5001,5002,5003,5004,5005],"speed":100},{"id":5023,"frames":[5006,5007,5008,5009,5010,5011],"speed":100},{"id":5024,"frames":[5012,5013,5014,5015,5016],"speed":83},{"id":5025,"frames":[5017,5018,5019,5020,5021],"speed":83},{"id":5052,"frames":[5030,5031,5032,5033,5034,5035],"speed":100},{"id":5053,"frames":[5036,5037,5038,5039,5040,5041],"speed":100},{"id":5054,"frames":[5042,5043,5044,5045,5046],"speed":83},{"id":5055,"frames":[5047,5048,5049,5050,5051],"speed":83},{"id":5082,"frames":[5060,5061,5062,5063,5064,5065],"speed":100},{"id":5083,"frames":[5066,5067,5068,5069,5070,5071],"speed":100},{"id":5084,"frames":[5072,5073,5074,5075,5076],"speed":83},{"id":5085,"frames":[5077,5078,5079,5080,5081],"speed":83},{"id":5112,"frames":[5090,5091,5092,5093,5094,5095],"speed":100},{"id":5113,"frames":[5096,5097,5098,5099,5100,5101],"speed":100},{"id":5114,"frames":[5102,5103,5104,5105,5106],"speed":83},{"id":5115,"frames":[5107,5108,5109,5110,5111],"speed":83},{"id":5142,"frames":[5120,5121,5122,5123,5124,5125],"speed":100},{"id":5143,"frames":[5126,5127,5128,5129,5130,5131],"speed":100},{"id":5144,"frames":[5132,5133,5134,5135,5136],"speed":83},{"id":5145,"frames":[5137,5138,5139,5140,5141],"speed":83},{"id":5172,"frames":[5150,5151,5152,5153,5154,5155],"speed":100},{"id":5173,"frames":[5156,5157,5158,5159,5160,5161],"speed":100},{"id":5174,"frames":[5162,5163,5164,5165,5166],"speed":83},{"id":5175,"frames":[5167,5168,5169,5170,5171],"speed":83},{"id":5202,"frames":[5180,5181,5182,5183,5184,5185],"speed":100},{"id":5203,"frames":[5186,5187,5188,5189,5190,5191],"speed":100},{"id":5204,"frames":[5192,5193,5194,5195,5196],"speed":83},{"id":5205,"frames":[5197,5198,5199,5200,5201],"speed":83},{"id":5232,"frames":[5210,5211,5212,5213,5214,5215],"speed":100},{"id":5233,"frames":[5216,5217,5218,5219,5220,5221],"speed":100},{"id":5234,"frames":[5222,5223,5224,5225,5226],"speed":83},{"id":5235,"frames":[5227,5228,5229,5230,5231],"speed":83},{"id":5262,"frames":[5240,5241,5242,5243,5244,5245],"speed":100},{"id":5263,"frames":[5246,5247,5248,5249,5250,5251],"speed":100},{"id":5264,"frames":[5252,5253,5254,5255,5256],"speed":83},{"id":5265,"frames":[5257,5258,5259,5260,5261],"speed":83},{"id":5292,"frames":[5270,5271,5272,5273,5274,5275],"speed":100},{"id":5293,"frames":[5276,5277,5278,5279,5280,5281],"speed":100},{"id":5294,"frames":[5282,5283,5284,5285,5286],"speed":83},{"id":5295,"frames":[5287,5288,5289,5290,5291],"speed":83},{"id":5322,"frames":[5300,5301,5302,5303,5304,5305],"speed":100},{"id":5323,"frames":[5306,5307,5308,5309,5310,5311],"speed":100},{"id":5324,"frames":[5312,5313,5314,5315,5316],"speed":83},{"id":5325,"frames":[5317,5318,5319,5320,5321],"speed":83},{"id":5349,"frames":[5327,5328,5329,5330,5331,5332],"speed":100},{"id":5350,"frames":[5333,5334,5335,5336,5337,5338],"speed":100},{"id":5351,"frames":[5339,5340,5341,5342,5343],"speed":83},{"id":5352,"frames":[5344,5345,5346,5347,5348],"speed":83},{"id":5382,"frames":[5360,5361,5362,5363,5364,5365],"speed":100},{"id":5383,"frames":[5366,5367,5368,5369,5370,5371],"speed":100},{"id":5384,"frames":[5372,5373,5374,5375,5376],"speed":83},{"id":5385,"frames":[5377,5378,5379,5380,5381],"speed":83},{"id":5412,"frames":[5390,5391,5392,5393,5394,5395],"speed":100},{"id":5413,"frames":[5396,5397,5398,5399,5400,5401],"speed":100},{"id":5414,"frames":[5402,5403,5404,5405,5406],"speed":83},{"id":5415,"frames":[5407,5408,5409,5410,5411],"speed":83},{"id":5442,"frames":[5420,5421,5422,5423,5424,5425],"speed":100},{"id":5443,"frames":[5426,5427,5428,5429,5430,5431],"speed":100},{"id":5444,"frames":[5432,5433,5434,5435,5436],"speed":83},{"id":5445,"frames":[5437,5438,5439,5440,5441],"speed":83},{"id":5472,"frames":[5450,5451,5452,5453,5454,5455],"speed":100},{"id":5473,"frames":[5456,5457,5458,5459,5460,5461],"speed":100},{"id":5474,"frames":[5462,5463,5464,5465,5466],"speed":83},{"id":5475,"frames":[5467,5468,5469,5470,5471],"speed":83},{"id":5492,"frames":[5476,5477,5478,5479],"speed":66},{"id":5493,"frames":[5480,5481,5482,5483],"speed":66},{"id":5494,"frames":[5484,5485,5486,5487],"speed":66},{"id":5495,"frames":[5488,5489,5490,5491],"speed":66},{"id":5526,"frames":[5504,5505,5506,5507,5508,5509],"speed":100},{"id":5527,"frames":[5510,5511,5512,5513,5514,5515],"speed":100},{"id":5528,"frames":[5516,5517,5518,5519,5520],"speed":83},{"id":5529,"frames":[5521,5522,5523,5524,5525],"speed":83},{"id":5552,"frames":[5530,5531,5532,5533,5534,5535],"speed":100},{"id":5553,"frames":[5536,5537,5538,5539,5540,5541],"speed":100},{"id":5554,"frames":[5542,5543,5544,5545,5546],"speed":83},{"id":5555,"frames":[5547,5548,5549,5550,5551],"speed":83},{"id":5579,"frames":[5557,5558,5559,5560,5561,5562],"speed":100},{"id":5580,"frames":[5563,5564,5565,5566,5567,5568],"speed":100},{"id":5581,"frames":[5569,5570,5571,5572,5573],"speed":83},{"id":5582,"frames":[5574,5575,5576,5577,5578],"speed":83},{"id":5665,"frames":[5602,5617,5633,5649],"speed":66},{"id":5666,"frames":[5603,5618,5634,5650],"speed":66},{"id":5667,"frames":[5604,5619,5635,5651],"speed":66},{"id":5668,"frames":[5605,5620,5636,5652],"speed":66},{"id":5669,"frames":[5605,5621,5637,5653],"speed":66},{"id":5670,"frames":[5606,5622,5638,5654],"speed":66},{"id":5671,"frames":[5607,5623,5639,5655],"speed":66},{"id":5672,"frames":[5608,5624,5640,5656],"speed":66},{"id":5673,"frames":[5609,5625,5641,5657],"speed":66},{"id":5674,"frames":[5610,5626,5642,5658],"speed":66},{"id":5675,"frames":[5611,5627,5643,5659],"speed":66},{"id":5676,"frames":[5612,5628,5644,5660],"speed":66},{"id":5677,"frames":[5613,5629,5645,5661],"speed":66},{"id":5678,"frames":[5614,5630,5646,5662],"speed":66},{"id":5679,"frames":[5615,5631,5647,5663],"speed":66},{"id":5680,"frames":[5616,5632,5648,5664],"speed":66},{"id":5837,"frames":[5773,5789,5805,5821],"speed":66},{"id":5838,"frames":[5774,5790,5806,5822],"speed":66},{"id":5839,"frames":[5775,5791,5807,5823],"speed":66},{"id":5840,"frames":[5776,5792,5808,5824],"speed":66},{"id":5841,"frames":[5777,5793,5809,5825],"speed":66},{"id":5842,"frames":[5778,5794,5810,5826],"speed":66},{"id":5843,"frames":[5779,5795,5811,5827],"speed":66},{"id":5844,"frames":[5780,5796,5812,5828],"speed":66},{"id":5845,"frames":[5781,5797,5813,5829],"speed":66},{"id":5846,"frames":[5782,5798,5814,5830],"speed":66},{"id":5847,"frames":[5783,5799,5815,5831],"speed":66},{"id":5848,"frames":[5784,5800,5816,5832],"speed":66},{"id":5849,"frames":[5785,5801,5817,5833],"speed":66},{"id":5850,"frames":[5786,5802,5818,5834],"speed":66},{"id":5851,"frames":[5787,5803,5819,5835],"speed":66},{"id":5852,"frames":[5788,5804,5820,5836],"speed":66},{"id":5941,"frames":[5918,5919,5920,5921,5922,5923,5924,5925],"speed":133},{"id":5942,"frames":[5926,5927,5928,5929,5930,5931,5932],"speed":116},{"id":5943,"frames":[5933,5934,5935,5936,5937,5938,5939,5940],"speed":133},{"id":5954,"frames":[5944,5945,5946,5947,5948,5949,5950,5951,5952,5953],"speed":166},{"id":5978,"frames":[5956,5957,5958,5959,5960,5961],"speed":100},{"id":5979,"frames":[5962,5963,5964,5965,5966,5967],"speed":100},{"id":5980,"frames":[5968,5969,5970,5971,5972],"speed":83},{"id":5981,"frames":[5973,5974,5975,5976,5977],"speed":83},{"id":6580,"frames":[6577,6578,6579],"speed":50},{"id":6783,"frames":[6758,6759,6760,6761,6762,6763],"speed":100},{"id":6784,"frames":[6765,6766,6767,6768,6769,6770],"speed":100},{"id":6785,"frames":[6772,6773,6774,6775,6776],"speed":83},{"id":6786,"frames":[6778,6779,6780,6781,6782],"speed":83},{"id":6813,"frames":[6787,6788,6789,6790,6791,6792,6793,6794],"speed":133},{"id":6814,"frames":[6795,6796,6797,6798,6799,6800,6801,6802],"speed":133},{"id":6815,"frames":[6803,6804,6805,6806,6807],"speed":83},{"id":6816,"frames":[6808,6809,6810,6811,6812],"speed":83},{"id":6846,"frames":[6821,6822,6823,6824,6825,6826],"speed":100},{"id":6847,"frames":[6828,6829,6830,6831,6832,6833],"speed":100},{"id":6848,"frames":[6835,6836,6837,6838,6839],"speed":83},{"id":6849,"frames":[6841,6842,6843,6844,6845],"speed":83},{"id":6875,"frames":[6850,6851,6852,6853,6854,6855],"speed":100},{"id":6876,"frames":[6857,6858,6859,6860,6861,6862],"speed":100},{"id":6877,"frames":[6864,6865,6866,6867,6868],"speed":83},{"id":6878,"frames":[6870,6871,6872,6873,6874],"speed":83},{"id":6894,"frames":[6879,6880,6881],"speed":50},{"id":6895,"frames":[6883,6884,6885],"speed":50},{"id":6896,"frames":[6887,6888,6889],"speed":50},{"id":6897,"frames":[6891,6892,6893],"speed":50},{"id":6914,"frames":[6898,6899,6900,6901],"speed":66},{"id":6915,"frames":[6902,6903,6904,6905],"speed":66},{"id":6916,"frames":[6906,6907,6908,6909],"speed":66},{"id":6917,"frames":[6910,6911,6912,6913],"speed":66},{"id":6940,"frames":[6918,6919,6920,6921,6922,6923],"speed":100},{"id":6941,"frames":[6924,6925,6926,6927,6928,6929],"speed":100},{"id":6942,"frames":[6930,6931,6932,6933,6934],"speed":83},{"id":6943,"frames":[6935,6936,6937,6938,6939],"speed":83},{"id":6990,"frames":[6968,6969,6970,6971,6972,6973],"speed":100},{"id":6991,"frames":[6974,6975,6976,6977,6978,6979],"speed":100},{"id":6992,"frames":[6980,6981,6982,6983,6984],"speed":83},{"id":6993,"frames":[6985,6986,6987,6988,6989],"speed":83},{"id":7030,"frames":[7003,7004,7005,7006,7007,7008],"speed":100},{"id":7031,"frames":[7010,7011,7012,7013,7014,7015],"speed":100},{"id":7032,"frames":[7017,7018,7019,7020,7021,7022],"speed":100},{"id":7033,"frames":[7024,7025,7026,7027,7028,7029],"speed":100},{"id":7061,"frames":[7034,7035,7036,7037,7038,7039],"speed":100},{"id":7062,"frames":[7041,7042,7043,7044,7045,7046],"speed":100},{"id":7063,"frames":[7048,7049,7050,7051,7052,7053],"speed":100},{"id":7064,"frames":[7055,7056,7057,7058,7059,7060],"speed":100},{"id":7092,"frames":[7065,7066,7067,7068,7069,7070],"speed":100},{"id":7093,"frames":[7072,7073,7074,7075,7076,7077],"speed":100},{"id":7094,"frames":[7079,7080,7081,7082,7083,7084],"speed":100},{"id":7095,"frames":[7086,7087,7088,7089,7090,7091],"speed":100},{"id":7194,"frames":[7171,7172,7173,7174,7175],"speed":83},{"id":7195,"frames":[7177,7178,7179,7180,7181],"speed":83},{"id":7196,"frames":[7183,7184,7185,7186,7187],"speed":83},{"id":7197,"frames":[7189,7190,7191,7192,7193],"speed":83},{"id":8549,"frames":[8521,8522,8523,8524,8525,8526,8527],"speed":116},{"id":8550,"frames":[8528,8529,8530,8531,8532,8533,8534],"speed":116},{"id":8551,"frames":[8535,8536,8537,8538,8539,8540,8541],"speed":116},{"id":8552,"frames":[8542,8543,8544,8545,8546,8547,8548],"speed":116},{"id":8579,"frames":[8556,8557,8558,8559,8560],"speed":83},{"id":8580,"frames":[8562,8563,8564,8565,8566],"speed":83},{"id":8581,"frames":[8568,8569,8570,8571,8572],"speed":83},{"id":8582,"frames":[8574,8575,8576,8577,8578],"speed":83},{"id":8598,"frames":[8583,8584,8585],"speed":50},{"id":8599,"frames":[8587,8588,8589],"speed":50},{"id":8600,"frames":[8591,8592,8593],"speed":50},{"id":8601,"frames":[8595,8596,8597],"speed":50},{"id":9459,"frames":[9444,9445,9446],"speed":50},{"id":9460,"frames":[9448,9449,9450],"speed":50},{"id":9461,"frames":[9452,9453,9454],"speed":50},{"id":9462,"frames":[9456,9457,9458],"speed":50},{"id":9471,"frames":[9463,9464,9465,9466,9467,9468,9469,9470],"speed":133},{"id":9552,"frames":[9530,9531,9532,9533,9534,9535],"speed":100},{"id":9553,"frames":[9536,9537,9538,9539,9540,9541],"speed":100},{"id":9554,"frames":[9542,9543,9544,9545,9546],"speed":83},{"id":9555,"frames":[9547,9548,9549,9550,9551],"speed":83},{"id":9568,"frames":[9560,9561,9562,9563,9564,9565,9566,9567],"speed":133},{"id":9604,"frames":[9582,9583,9584,9585,9586,9587],"speed":100},{"id":9605,"frames":[9588,9589,9590,9591,9592,9593],"speed":100},{"id":9606,"frames":[9594,9595,9596,9597,9598],"speed":83},{"id":9607,"frames":[9599,9600,9601,9602,9603],"speed":83},{"id":9655,"frames":[9633,9634,9635,9636,9637,9638],"speed":100},{"id":9656,"frames":[9639,9640,9641,9642,9643,9644],"speed":100},{"id":9657,"frames":[9645,9646,9647,9648,9649],"speed":83},{"id":9658,"frames":[9650,9651,9652,9653,9654],"speed":83},{"id":9682,"frames":[9660,9661,9662,9663,9664,9665],"speed":100},{"id":9683,"frames":[9666,9667,9668,9669,9670,9671],"speed":100},{"id":9684,"frames":[9672,9673,9674,9675,9676],"speed":83},{"id":9685,"frames":[9677,9678,9679,9680,9681],"speed":83},{"id":9709,"frames":[9687,9688,9689,9690,9691,9692],"speed":100},{"id":9710,"frames":[9693,9694,9695,9696,9697,9698],"speed":100},{"id":9711,"frames":[9699,9700,9701,9702,9703],"speed":83},{"id":9712,"frames":[9704,9705,9706,9707,9708],"speed":83},{"id":9736,"frames":[9714,9715,9716,9717,9718,9719],"speed":100},{"id":9737,"frames":[9720,9721,9722,9723,9724,9725],"speed":100},{"id":9738,"frames":[9726,9727,9728,9729,9730],"speed":83},{"id":9739,"frames":[9731,9732,9733,9734,9735],"speed":83},{"id":9763,"frames":[9741,9742,9743,9744,9745,9746],"speed":100},{"id":9764,"frames":[9747,9748,9749,9750,9751,9752],"speed":100},{"id":9765,"frames":[9753,9754,9755,9756,9757],"speed":83},{"id":9766,"frames":[9758,9759,9760,9761,9762],"speed":83},{"id":9790,"frames":[9768,9769,9770,9771,9772,9773],"speed":100},{"id":9791,"frames":[9774,9775,9776,9777,9778,9779],"speed":100},{"id":9792,"frames":[9780,9781,9782,9783,9784],"speed":83},{"id":9793,"frames":[9785,9786,9787,9788,9789],"speed":83},{"id":9820,"frames":[9794,9795,9796,9797,9798,9799,9800],"speed":116},{"id":9821,"frames":[9801,9802,9803,9804,9805,9806,9807],"speed":116},{"id":9822,"frames":[9808,9809,9810,9811,9812,9813],"speed":100},{"id":9823,"frames":[9814,9815,9816,9817,9818,9819],"speed":100},{"id":9848,"frames":[9824,9825,9826,9827,9828,9829],"speed":100},{"id":9849,"frames":[9830,9831,9832,9833,9834,9835],"speed":100},{"id":9850,"frames":[9836,9837,9838,9839,9840,9841],"speed":100},{"id":9851,"frames":[9842,9843,9844,9845,9846],"speed":83},{"id":9880,"frames":[9852,9853,9854,9855,9856,9857,9858],"speed":116},{"id":9881,"frames":[9859,9860,9861,9862,9863,9864,9865],"speed":116},{"id":9882,"frames":[9866,9867,9868,9869,9870,9871],"speed":100},{"id":9883,"frames":[9873,9874,9875,9876,9877,9878],"speed":100},{"id":9906,"frames":[9884,9885,9886,9887,9888,9889],"speed":100},{"id":9907,"frames":[9890,9891,9892,9893,9894,9895],"speed":100},{"id":9908,"frames":[9896,9897,9898,9899,9900],"speed":83},{"id":9909,"frames":[9901,9902,9903,9904,9905],"speed":83},{"id":9933,"frames":[9911,9912,9913,9914,9915,9916],"speed":100},{"id":9934,"frames":[9917,9918,9919,9920,9921,9922],"speed":100},{"id":9935,"frames":[9923,9924,9925,9926,9927],"speed":83},{"id":9936,"frames":[9928,9929,9930,9931,9932],"speed":83},{"id":9960,"frames":[9938,9939,9940,9941,9942,9943],"speed":100},{"id":9961,"frames":[9944,9945,9946,9947,9948,9949],"speed":100},{"id":9962,"frames":[9950,9951,9952,9953,9954],"speed":83},{"id":9963,"frames":[9955,9956,9957,9958,9959],"speed":83},{"id":9987,"frames":[9965,9966,9967,9968,9969,9970],"speed":100},{"id":9988,"frames":[9971,9972,9973,9974,9975,9976],"speed":100},{"id":9989,"frames":[9977,9978,9979,9980,9981],"speed":83},{"id":9990,"frames":[9982,9983,9984,9985,9986],"speed":83},{"id":10032,"frames":[10000,10001,10002,10003,10004,10005,10006,10007],"speed":133},{"id":10033,"frames":[10008,10009,10010,10011,10012,10013,10014,10015],"speed":133},{"id":10034,"frames":[10016,10017,10018,10019,10020,10021,10022,10023],"speed":133},{"id":10035,"frames":[10024,10025,10026,10027,10028,10029,10030,10031],"speed":133},{"id":10060,"frames":[10036,10037,10038,10039,10040,10041],"speed":100},{"id":10061,"frames":[10042,10043,10044,10045,10046,10047],"speed":100},{"id":10062,"frames":[10048,10049,10050,10051,10052],"speed":83},{"id":10063,"frames":[10053,10054,10055,10056,10057],"speed":83},{"id":10086,"frames":[10064,10065,10066,10067,10068,10069],"speed":100},{"id":10087,"frames":[10070,10071,10072,10073,10074,10075],"speed":100},{"id":10088,"frames":[10076,10077,10078,10079,10080],"speed":83},{"id":10089,"frames":[10081,10082,10083,10084,10085],"speed":83},{"id":10112,"frames":[10090,10091,10092,10093,10094,10095],"speed":100},{"id":10113,"frames":[10096,10097,10098,10099,10100,10101],"speed":100},{"id":10114,"frames":[10102,10103,10104,10105,10106],"speed":83},{"id":10115,"frames":[10107,10108,10109,10110,10111],"speed":83},{"id":10138,"frames":[10116,10117,10118,10119,10120,10121],"speed":100},{"id":10139,"frames":[10122,10123,10124,10125,10126,10127],"speed":100},{"id":10140,"frames":[10128,10129,10130,10131,10132],"speed":83},{"id":10141,"frames":[10133,10134,10135,10136,10137],"speed":83},{"id":10164,"frames":[10142,10143,10144,10145,10146,10147],"speed":100},{"id":10165,"frames":[10148,10149,10150,10151,10152,10153],"speed":100},{"id":10166,"frames":[10154,10155,10156,10157,10158],"speed":83},{"id":10167,"frames":[10159,10160,10161,10162,10163],"speed":83},{"id":10190,"frames":[10168,10169,10170,10171,10172,10173],"speed":100},{"id":10191,"frames":[10174,10175,10176,10177,10178,10179],"speed":100},{"id":10192,"frames":[10180,10181,10182,10183,10184],"speed":83},{"id":10193,"frames":[10185,10186,10187,10188,10189],"speed":83},{"id":10242,"frames":[10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,10205],"speed":200},{"id":10243,"frames":[10206,10207,10208,10209,10210,10211,10212,10213,10214,10215,10216,10217],"speed":200},{"id":10244,"frames":[10218,10219,10220,10221,10222,10223,10224,10225,10226,10227,10228,10229],"speed":200},{"id":10245,"frames":[10230,10231,10232,10233,10234,10235,10236,10237,10238,10239,10240,10241],"speed":200},{"id":10268,"frames":[10246,10247,10248,10249,10250,10251],"speed":100},{"id":10269,"frames":[10252,10253,10254,10255,10256,10257],"speed":100},{"id":10270,"frames":[10258,10259,10260,10261,10262],"speed":83},{"id":10271,"frames":[10263,10264,10265,10266,10267],"speed":83},{"id":10294,"frames":[10272,10273,10274,10275,10276,10277],"speed":100},{"id":10295,"frames":[10278,10279,10280,10281,10282,10283],"speed":100},{"id":10296,"frames":[10284,10285,10286,10287,10288],"speed":83},{"id":10297,"frames":[10289,10290,10291,10292,10293],"speed":83},{"id":10320,"frames":[10298,10299,10300,10301,10302,10303],"speed":100},{"id":10321,"frames":[10304,10305,10306,10307,10308,10309],"speed":100},{"id":10322,"frames":[10310,10311,10312,10312,10314],"speed":83},{"id":10323,"frames":[10315,10316,10317,10318,10319],"speed":83},{"id":10360,"frames":[10324,10325,10326,10327,10328,10329,10330,10331,10332],"speed":150},{"id":10361,"frames":[10333,10334,10335,10336,10337,10338,10339,10340,10341],"speed":150},{"id":10362,"frames":[10342,10343,10344,10345,10346,10347,10348,10349,10350],"speed":150},{"id":10363,"frames":[10351,10352,10353,10354,10355,10356,10357,10358,10359],"speed":150},{"id":10380,"frames":[10364,10365,10366,10367],"speed":66},{"id":10381,"frames":[10368,10369,10370,10371],"speed":66},{"id":10382,"frames":[10372,10373,10374,10375],"speed":66},{"id":10383,"frames":[10376,10377,10378,10379],"speed":66},{"id":10400,"frames":[10384,10385,10386,10387],"speed":66},{"id":10401,"frames":[10388,10389,10390,10391],"speed":66},{"id":10402,"frames":[10392,10393,10394,10395],"speed":66},{"id":10403,"frames":[10396,10397,10398,10399],"speed":66},{"id":10420,"frames":[10404,10405,10406,10407],"speed":66},{"id":10421,"frames":[10408,10409,10410,10411],"speed":66},{"id":10422,"frames":[10412,10413,10414,10415],"speed":66},{"id":10423,"frames":[10416,10417,10418,10419],"speed":66},{"id":10440,"frames":[10424,10425,10426,10427],"speed":66},{"id":10441,"frames":[10428,10429,10430,10431],"speed":66},{"id":10442,"frames":[10432,10433,10434,10435],"speed":66},{"id":10443,"frames":[10436,10437,10438,10439],"speed":66},{"id":10466,"frames":[10444,10445,10446,10447,10448,10449],"speed":100},{"id":10467,"frames":[10450,10451,10452,10453,10454,10455],"speed":100},{"id":10468,"frames":[10456,10457,10458,10459,10460],"speed":83},{"id":10469,"frames":[10461,10462,10463,10464,10465],"speed":83},{"id":10502,"frames":[10470,10471,10472,10473,10474,10475,10476,10477],"speed":133},{"id":10503,"frames":[10478,10479,10480,10481,10482,10483,10484,10485],"speed":133},{"id":10504,"frames":[10486,10487,10488,10489,10490,10491,10492,10493],"speed":133},{"id":10505,"frames":[10494,10495,10496,10497,10498,10499,10500,10501],"speed":133},{"id":10528,"frames":[10506,10507,10508,10509,10510,10511],"speed":100},{"id":10529,"frames":[10512,10513,10514,10515,10516,10517],"speed":100},{"id":10530,"frames":[10518,10519,10520,10521,10522],"speed":83},{"id":10531,"frames":[10523,10524,10525,10526,10527],"speed":83},{"id":10554,"frames":[10532,10533,10534,10535,10536,10537],"speed":100},{"id":10555,"frames":[10538,10539,10540,10541,10542,10543],"speed":100},{"id":10556,"frames":[10544,10545,10546,10547,10548],"speed":83},{"id":10557,"frames":[10549,10550,10551,10552,10553],"speed":83},{"id":10580,"frames":[10558,10559,10560,10561,10562,10563],"speed":100},{"id":10581,"frames":[10564,10565,10566,10567,10568,10569],"speed":100},{"id":10582,"frames":[10570,10571,10572,10573,10574],"speed":83},{"id":10583,"frames":[10575,10576,10577,10578,10579],"speed":83},{"id":10606,"frames":[10584,10585,10586,10587,10588,10589],"speed":100},{"id":10607,"frames":[10590,10591,10592,10593,10594,10595],"speed":100},{"id":10608,"frames":[10596,10597,10598,10599,10600],"speed":83},{"id":10609,"frames":[10601,10602,10603,10604,10605],"speed":83},{"id":10632,"frames":[10610,10611,10612,10613,10614,10615],"speed":100},{"id":10633,"frames":[10616,10617,10618,10619,10620,10621],"speed":100},{"id":10634,"frames":[10622,10623,10624,10625,10626],"speed":83},{"id":10635,"frames":[10627,10628,10629,10630,10631],"speed":83},{"id":10658,"frames":[10636,10637,10638,10639,10640,10641],"speed":100},{"id":10659,"frames":[10642,10643,10644,10645,10646,10647],"speed":100},{"id":10660,"frames":[10648,10649,10650,10651,10652],"speed":83},{"id":10661,"frames":[10653,10654,10655,10656,10657],"speed":83},{"id":10684,"frames":[10662,10663,10664,10665,10666,10667],"speed":100},{"id":10685,"frames":[10668,10669,10670,10671,10672,10673],"speed":100},{"id":10686,"frames":[10674,10675,10676,10677,10678],"speed":83},{"id":10687,"frames":[10679,10680,10681,10682,10683],"speed":83},{"id":10710,"frames":[10688,10689,10690,10691,10692,10693],"speed":100},{"id":10711,"frames":[10694,10695,10696,10697,10698,10699],"speed":100},{"id":10712,"frames":[10700,10701,10702,10703,10704],"speed":83},{"id":10713,"frames":[10705,10706,10707,10708,10709],"speed":83},{"id":10736,"frames":[10714,10715,10716,10717,10718,10719],"speed":100},{"id":10737,"frames":[10720,10721,10722,10723,10724,10725],"speed":100},{"id":10738,"frames":[10726,10727,10728,10729,10730],"speed":83},{"id":10739,"frames":[10731,10732,10733,10734,10735],"speed":83},{"id":10762,"frames":[10740,10741,10742,10743,10744,10745],"speed":100},{"id":10763,"frames":[10746,10747,10748,10749,10750,10751],"speed":100},{"id":10764,"frames":[10752,10753,10754,10755,10756],"speed":83},{"id":10765,"frames":[10757,10758,10759,10760,10761],"speed":83},{"id":10786,"frames":[10766,10767,10768,10769,10770],"speed":83},{"id":10787,"frames":[10771,10772,10773,10774,10775],"speed":83},{"id":10788,"frames":[10776,10777,10778,10779,10780],"speed":83},{"id":10789,"frames":[10781,10782,10782,10783,10784],"speed":83},{"id":10812,"frames":[10790,10791,10792,10793,10794,10795],"speed":100},{"id":10813,"frames":[10796,10797,10798,10799,10800,10801],"speed":100},{"id":10814,"frames":[10802,10803,10804,10805,10806],"speed":83},{"id":10815,"frames":[10807,10808,10809,10810,10811],"speed":83},{"id":10838,"frames":[10816,10817,10818,10819,10820,10821],"speed":100},{"id":10839,"frames":[10822,10823,10824,10825,10826,10827],"speed":100},{"id":10840,"frames":[10828,10829,10830,10831,10832],"speed":83},{"id":10841,"frames":[10833,10834,10835,10836,10837],"speed":83},{"id":10864,"frames":[10842,10843,10844,10845,10846,10847],"speed":100},{"id":10865,"frames":[10848,10849,10850,10851,10852,10853],"speed":100},{"id":10866,"frames":[10854,10855,10856,10857,10858],"speed":83},{"id":10867,"frames":[10859,10860,10861,10862,10863],"speed":83},{"id":10915,"frames":[10893,10894,10895,10896,10897,10898],"speed":100},{"id":10916,"frames":[10899,10900,10901,10902,10903,10904],"speed":100},{"id":10917,"frames":[10905,10906,10907,10908,10909],"speed":83},{"id":10918,"frames":[10910,10911,10912,10913,10914],"speed":83},{"id":10941,"frames":[10919,10920,10921,10922,10923,10924],"speed":100},{"id":10942,"frames":[10925,10926,10927,10928,10929,10930],"speed":100},{"id":10943,"frames":[10931,10932,10933,10934,10935],"speed":83},{"id":10944,"frames":[10936,10937,10938,10939,10940],"speed":83},{"id":10967,"frames":[10945,10946,10947,10948,10949,10950],"speed":100},{"id":10968,"frames":[10951,10952,10953,10954,10955,10956],"speed":100},{"id":10969,"frames":[10957,10958,10959,10960,10961],"speed":83},{"id":10970,"frames":[10962,10963,10964,10965,10966],"speed":83},{"id":10993,"frames":[10971,10972,10973,10974,10975,10976],"speed":100},{"id":10994,"frames":[10977,10978,10979,10980,10981,10982],"speed":100},{"id":10995,"frames":[10983,10984,10985,10986,10987],"speed":83},{"id":10996,"frames":[10988,10989,10990,10991,10992],"speed":83},{"id":11019,"frames":[10997,10998,10999,11000,11001,11002],"speed":100},{"id":11020,"frames":[11003,11004,11005,11006,11007,11008],"speed":100},{"id":11021,"frames":[11009,11010,11011,11012,11013],"speed":83},{"id":11022,"frames":[11014,11015,11016,11017,11018],"speed":83},{"id":11045,"frames":[11023,11024,11025,11026,11027,11028],"speed":100},{"id":11046,"frames":[11029,11030,11031,11032,11033,11034],"speed":100},{"id":11047,"frames":[11035,11036,11037,11038,11039],"speed":83},{"id":11048,"frames":[11040,11041,11042,11043,11044],"speed":83},{"id":11071,"frames":[11049,11050,11051,11052,11053,11054],"speed":100},{"id":11072,"frames":[11055,11056,11057,11058,11059,11060],"speed":100},{"id":11073,"frames":[11061,11062,11063,11064,11065],"speed":83},{"id":11074,"frames":[11066,11067,11068,11069,11070],"speed":83},{"id":11097,"frames":[11075,11076,11077,11078,11079,11080],"speed":100},{"id":11098,"frames":[11081,11082,11083,11084,11085,11086],"speed":100},{"id":11099,"frames":[11087,11088,11089,11090,11091],"speed":83},{"id":11100,"frames":[11092,11093,11094,11095,11096],"speed":83},{"id":11123,"frames":[11101,11102,11103,11104,11105,11106],"speed":100},{"id":11124,"frames":[11107,11108,11109,11110,11111,11112],"speed":100},{"id":11125,"frames":[11113,11114,11115,11116,11117],"speed":83},{"id":11126,"frames":[11118,11119,11120,11121,11122],"speed":83},{"id":11149,"frames":[11127,11128,11129,11130,11131,11132],"speed":100},{"id":11150,"frames":[11133,11134,11135,11136,11137,11138],"speed":100},{"id":11151,"frames":[11139,11140,11141,11142,11143],"speed":83},{"id":11152,"frames":[11144,11145,11146,11147,11148],"speed":83},{"id":11175,"frames":[11153,11154,11155,11156,11157,11158],"speed":100},{"id":11176,"frames":[11159,11160,11161,11162,11163,11164],"speed":100},{"id":11177,"frames":[11165,11166,11167,11168,11169],"speed":83},{"id":11178,"frames":[11170,11171,11172,11173,11174],"speed":83},{"id":11201,"frames":[11179,11180,11181,11182,11183,11184],"speed":100},{"id":11202,"frames":[11185,11186,11187,11188,11189,11190],"speed":100},{"id":11203,"frames":[11191,11192,11193,11194,11195],"speed":83},{"id":11204,"frames":[11196,11197,11198,11199,11200],"speed":83},{"id":11227,"frames":[11205,11206,11207,11208,11209,11210],"speed":100},{"id":11228,"frames":[11211,11212,11213,11214,11215,11216],"speed":100},{"id":11229,"frames":[11217,11218,11219,11220,11221],"speed":83},{"id":11230,"frames":[11222,11223,11224,11225,11226],"speed":83},{"id":11253,"frames":[11231,11232,11233,11234,11235,11236],"speed":100},{"id":11254,"frames":[11237,11238,11239,11240,11241,11242],"speed":100},{"id":11255,"frames":[11243,11244,11245,11246,11247],"speed":83},{"id":11256,"frames":[11248,11249,11250,11251,11252],"speed":83},{"id":11279,"frames":[11257,11258,11259,11260,11261,11262],"speed":100},{"id":11280,"frames":[11263,11264,11265,11266,11267,11268],"speed":100},{"id":11281,"frames":[11269,11270,11271,11272,11273],"speed":83},{"id":11282,"frames":[11274,11275,11276,11277,11278],"speed":83},{"id":11305,"frames":[11283,11284,11285,11286,11287,11288],"speed":100},{"id":11306,"frames":[11289,11290,11291,11292,11293,11294],"speed":100},{"id":11307,"frames":[11295,11296,11297,11298,11299],"speed":83},{"id":11308,"frames":[11300,11301,11302,11303,11304],"speed":83},{"id":11331,"frames":[11309,11310,11311,11312,11313,11314],"speed":100},{"id":11332,"frames":[11315,11316,11317,11318,11319,11320],"speed":100},{"id":11333,"frames":[11321,11322,11323,11324,11325],"speed":83},{"id":11334,"frames":[11326,11327,11328,11329,11330],"speed":83},{"id":11357,"frames":[11335,11336,11337,11338,11339,11340],"speed":100},{"id":11358,"frames":[11341,11342,11343,11344,11345,11346],"speed":100},{"id":11359,"frames":[11347,11348,11349,11350,11351],"speed":83},{"id":11360,"frames":[11352,11353,11354,11355,11356],"speed":83},{"id":11383,"frames":[11361,11362,11363,11364,11365,11366],"speed":100},{"id":11384,"frames":[11367,11368,11369,11370,11371,11372],"speed":100},{"id":11385,"frames":[11373,11374,11375,11376,11377],"speed":83},{"id":11386,"frames":[11378,11379,11380,11381,11382],"speed":83},{"id":11409,"frames":[11387,11388,11389,11390,11391,11392],"speed":100},{"id":11410,"frames":[11393,11394,11395,11396,11397,11398],"speed":100},{"id":11411,"frames":[11399,11400,11401,11402,11403],"speed":83},{"id":11412,"frames":[11404,11405,11406,11407,11408],"speed":83},{"id":11435,"frames":[11413,11414,11415,11416,11417,11418],"speed":100},{"id":11436,"frames":[11419,11420,11421,11422,11423,11424],"speed":100},{"id":11437,"frames":[11425,11426,11427,11428,11429],"speed":83},{"id":11438,"frames":[11430,11431,11432,11433,11434],"speed":83},{"id":11461,"frames":[11439,11440,11441,11442,11443,11444],"speed":100},{"id":11462,"frames":[11445,11446,11447,11448,11449,11450],"speed":100},{"id":11463,"frames":[11451,11452,11453,11454,11455],"speed":83},{"id":11464,"frames":[11456,11457,11458,11459,11460],"speed":83},{"id":11487,"frames":[11465,11466,11467,11468,11469,11470],"speed":100},{"id":11488,"frames":[11471,11472,11473,11474,11475,11476],"speed":100},{"id":11489,"frames":[11477,11478,11479,11480,11481],"speed":83},{"id":11490,"frames":[11482,11483,11484,11485,11486],"speed":83},{"id":11513,"frames":[11491,11492,11493,11494,11495,11496],"speed":100},{"id":11514,"frames":[11497,11498,11499,11500,11501,11502],"speed":100},{"id":11515,"frames":[11503,11504,11505,11506,11507],"speed":83},{"id":11516,"frames":[11508,11509,11510,11511,11512],"speed":83},{"id":11539,"frames":[11517,11518,11519,11520,11521,11522],"speed":100},{"id":11540,"frames":[11523,11524,11525,11526,11527,11528],"speed":100},{"id":11541,"frames":[11529,11530,11531,11532,11533],"speed":83},{"id":11542,"frames":[11534,11535,11536,11537,11538],"speed":83},{"id":11565,"frames":[11543,11544,11545,11546,11547,11548],"speed":100},{"id":11566,"frames":[11549,11550,11551,11552,11553,11554],"speed":100},{"id":11567,"frames":[11555,11556,11557,11558,11559],"speed":83},{"id":11568,"frames":[11560,11561,11562,11563,11564],"speed":83},{"id":11591,"frames":[11569,11570,11571,11572,11573,11574],"speed":100},{"id":11592,"frames":[11575,11576,11577,11578,11579,11580],"speed":100},{"id":11593,"frames":[11581,11582,11583,11584,11585],"speed":83},{"id":11594,"frames":[11586,11587,11588,11589,11590],"speed":83},{"id":11617,"frames":[11595,11596,11597,11598,11599,11600],"speed":100},{"id":11618,"frames":[11601,11602,11603,11604,11605,11606],"speed":100},{"id":11619,"frames":[11607,11608,11609,11610,11611],"speed":83},{"id":11620,"frames":[11612,11613,11614,11615,11616],"speed":83},{"id":11643,"frames":[11621,11622,11623,11624,11625,11626],"speed":100},{"id":11644,"frames":[11627,11628,11629,11630,11631,11632],"speed":100},{"id":11645,"frames":[11633,11634,11635,11636,11637],"speed":83},{"id":11646,"frames":[11638,11639,11640,11641,11642],"speed":83},{"id":11669,"frames":[11647,11648,11649,11650,11651,11652],"speed":100},{"id":11670,"frames":[11653,11654,11655,11656,11657,11658],"speed":100},{"id":11671,"frames":[11659,11660,11661,11662,11663],"speed":83},{"id":11672,"frames":[11664,11665,11666,11667,11668],"speed":83},{"id":11695,"frames":[11673,11674,11675,11676,11677,11678],"speed":100},{"id":11696,"frames":[11679,11680,11681,11682,11683,11684],"speed":100},{"id":11697,"frames":[11685,11686,11687,11688,11689],"speed":83},{"id":11698,"frames":[11690,11691,11692,11693,11694],"speed":83},{"id":11721,"frames":[11699,11700,11701,11702,11703,11704],"speed":100},{"id":11722,"frames":[11705,11706,11707,11708,11709,11710],"speed":100},{"id":11723,"frames":[11711,11712,11713,11714,11715],"speed":83},{"id":11724,"frames":[11716,11717,11718,11719,11720],"speed":83},{"id":11747,"frames":[11725,11726,11727,11728,11729,11730],"speed":100},{"id":11748,"frames":[11731,11732,11733,11734,11735,11736],"speed":100},{"id":11749,"frames":[11737,11738,11739,11740,11741],"speed":83},{"id":11750,"frames":[11742,11743,11744,11745,11746],"speed":83},{"id":11773,"frames":[11751,11752,11753,11754,11755,11756],"speed":100},{"id":11774,"frames":[11757,11758,11759,11760,11761,11762],"speed":100},{"id":11775,"frames":[11763,11764,11765,11766,11767],"speed":83},{"id":11776,"frames":[11768,11769,11770,11771,11772],"speed":83},{"id":11799,"frames":[11777,11778,11779,11780,11781,11782],"speed":100},{"id":11800,"frames":[11783,11784,11785,11786,11787,11788],"speed":100},{"id":11801,"frames":[11789,11790,11791,11792,11793],"speed":83},{"id":11802,"frames":[11794,11795,11796,11797,11798],"speed":83},{"id":11825,"frames":[11803,11804,11805,11806,11807,11808],"speed":100},{"id":11826,"frames":[11809,11810,11811,11812,11813,11814],"speed":100},{"id":11827,"frames":[11815,11816,11817,11818,11819],"speed":83},{"id":11828,"frames":[11820,11821,11822,11823,11824],"speed":83},{"id":11851,"frames":[11829,11830,11831,11832,11833,11834],"speed":100},{"id":11852,"frames":[11835,11836,11837,11838,11839,11840],"speed":100},{"id":11853,"frames":[11841,11842,11843,11844,11845],"speed":83},{"id":11854,"frames":[11846,11847,11848,11849,11850],"speed":83},{"id":11877,"frames":[11855,11856,11857,11858,11859,11860],"speed":100},{"id":11878,"frames":[11861,11862,11863,11864,11865,11866],"speed":100},{"id":11879,"frames":[11867,11868,11869,11870,11871],"speed":83},{"id":11880,"frames":[11872,11873,11874,11875,11876],"speed":83},{"id":11913,"frames":[11881,11882,11883,11884,11885,11886,11887,11888],"speed":133},{"id":11914,"frames":[11889,11890,11891,11892,11893,11894,11895,11896],"speed":133},{"id":11915,"frames":[11897,11898,11899,11900,11901,11902,11903,11904],"speed":133},{"id":11916,"frames":[11905,11906,11907,11908,11909,11910,11911,11912],"speed":133},{"id":11939,"frames":[11917,11918,11919,11920,11921,11922],"speed":100},{"id":11940,"frames":[11923,11924,11925,11926,11927,11928],"speed":100},{"id":11941,"frames":[11929,11930,11931,11932,11933],"speed":83},{"id":11942,"frames":[11934,11935,11936,11937,11938],"speed":83},{"id":11975,"frames":[11943,11944,11945,11946,11947,11948,11949,11950],"speed":133},{"id":11976,"frames":[11951,11952,11953,11954,11955,11956,11957,11958],"speed":133},{"id":11977,"frames":[11959,11960,11961,11962,11963,11964,11965,11966],"speed":133},{"id":11978,"frames":[11967,11968,11969,11970,11971,11972,11973,11974],"speed":133},{"id":12016,"frames":[12004,12005,12006],"speed":50},{"id":12017,"frames":[12007,12008,12009],"speed":50},{"id":12018,"frames":[12010,12011,12012],"speed":50},{"id":12019,"frames":[12013,12014,12015],"speed":50},{"id":12028,"frames":[12020,12021],"speed":33},{"id":12029,"frames":[12022,12023],"speed":33},{"id":12030,"frames":[12024,12025],"speed":33},{"id":12031,"frames":[12026,12027],"speed":33},{"id":12048,"frames":[12032,12033,12034,12035],"speed":66},{"id":12049,"frames":[12036,12037,12038,12039],"speed":66},{"id":12050,"frames":[12040,12041,12042,12043],"speed":66},{"id":12051,"frames":[12044,12045,12046,12047],"speed":66},{"id":12068,"frames":[12052,12053,12054,12055],"speed":66},{"id":12069,"frames":[12056,12057,12058,12059],"speed":66},{"id":12070,"frames":[12060,12061,12062,12063],"speed":66},{"id":12071,"frames":[12064,12065,12066,12067],"speed":66},{"id":12104,"frames":[12072,12073,12074,12075,12076,12077,12078,12079],"speed":133},{"id":12105,"frames":[12080,12081,12082,12083,12084,12085,12086,12087],"speed":133},{"id":12106,"frames":[12088,12089,12090,12091,12092,12093,12094,12095],"speed":133},{"id":12107,"frames":[12096,12097,12098,12099,12100,12101,12102,12103],"speed":133},{"id":12140,"frames":[12108,12109,12110,12111,12112,12113,12114,12115],"speed":133},{"id":12141,"frames":[12116,12117,12118,12119,12120,12121,12122,12123],"speed":133},{"id":12142,"frames":[12124,12125,12126,12127,12128,12129,12130,12131],"speed":133},{"id":12143,"frames":[12132,12133,12134,12135,12136,12137,12138,12139],"speed":133},{"id":12180,"frames":[12144,12145,12146,12147,12148,12149,12150,12151,12152],"speed":150},{"id":12181,"frames":[12153,12154,12155,12156,12157,12158,12159,12160,12161],"speed":150},{"id":12182,"frames":[12162,12163,12164,12165,12166,12167,12168,12169,12170],"speed":150},{"id":12183,"frames":[12171,12172,12173,12174,12175,12176,12177,12178,12179],"speed":150},{"id":12216,"frames":[12184,12185,12186,12187,12188,12189,12190,12191],"speed":133},{"id":12217,"frames":[12192,12193,12194,12195,12196,12197,12198,12199],"speed":133},{"id":12218,"frames":[12200,12201,12202,12203,12204,12205,12206,12207],"speed":133},{"id":12219,"frames":[12208,12209,12210,12211,12212,12213,12214,12215],"speed":133},{"id":12252,"frames":[12220,12221,12222,12223,12224,12225,12226,12227],"speed":133},{"id":12253,"frames":[12228,12229,12230,12231,12232,12233,12234,12235],"speed":133},{"id":12254,"frames":[12236,12237,12238,12239,12240,12241,12242,12243],"speed":133},{"id":12255,"frames":[12244,12245,12246,12247,12248,12249,12250,12251],"speed":133},{"id":12288,"frames":[12256,12257,12258,12259,12260,12261,12262,12263],"speed":133},{"id":12289,"frames":[12264,12265,12266,12267,12268,12269,12270,12271],"speed":133},{"id":12290,"frames":[12272,12273,12274,12275,12276,12277,12278,12279],"speed":133},{"id":12291,"frames":[12280,12281,12282,12283,12284,12285,12286,12287],"speed":133},{"id":12322,"frames":[12292,12293,12294,12295,12296],"speed":83},{"id":12323,"frames":[12298,12299,12300,12301,12302],"speed":83},{"id":12324,"frames":[12311,12312,12313,12314,12315],"speed":83},{"id":12325,"frames":[12317,12318,12319,12320,12321],"speed":83},{"id":12430,"frames":[12422,12423,12424,12425],"speed":66},{"id":12695,"frames":[12663,12664,12665,12666,12667,12668,12669,12670],"speed":133},{"id":12696,"frames":[12671,12672,12673,12674,12675,12676,12677,12678],"speed":133},{"id":12697,"frames":[12679,12680,12681,12682,12683,12684,12685,12686],"speed":133},{"id":12698,"frames":[12687,12688,12689,12690,12691,12692,12693,12694],"speed":133},{"id":12748,"frames":[12728,12729,12730,12731,12732],"speed":83},{"id":12749,"frames":[12733,12734,12735,12736,12737],"speed":83},{"id":12750,"frames":[12738,12739,12740,12741,12742],"speed":83},{"id":12751,"frames":[12743,12744,12745,12746,12747],"speed":83},{"id":12775,"frames":[12753,12754,12755,12756,12757,12758],"speed":100},{"id":12776,"frames":[12759,12760,12761,12762,12763,12764],"speed":100},{"id":12777,"frames":[12765,12766,12767,12768,12769],"speed":83},{"id":12778,"frames":[12770,12771,12772,12773,12774],"speed":83},{"id":12802,"frames":[12780,12781,12782,12783,12784,12785],"speed":100},{"id":12803,"frames":[12786,12787,12788,12789,12790,12791],"speed":100},{"id":12804,"frames":[12792,12793,12794,12795,12796],"speed":83},{"id":12805,"frames":[12797,12798,12799,12800,12801],"speed":83},{"id":12829,"frames":[12807,12808,12809,12810,12811,12812],"speed":100},{"id":12830,"frames":[12813,12814,12815,12816,12817,12818],"speed":100},{"id":12831,"frames":[12819,12820,12821,12822,12823],"speed":83},{"id":12832,"frames":[12824,12825,12826,12827,12828],"speed":83},{"id":12856,"frames":[12834,12835,12836,12837,12838,12839],"speed":100},{"id":12857,"frames":[12840,12841,12842,12843,12844,12845],"speed":100},{"id":12858,"frames":[12846,12847,12848,12849,12850],"speed":83},{"id":12859,"frames":[12851,12852,12853,12854,12855],"speed":83},{"id":12883,"frames":[12861,12862,12863,12864,12865,12866],"speed":100},{"id":12884,"frames":[12867,12868,12869,12870,12871,12872],"speed":100},{"id":12885,"frames":[12873,12874,12875,12876,12877],"speed":83},{"id":12886,"frames":[12878,12879,12880,12881,12882],"speed":83},{"id":12910,"frames":[12888,12889,12890,12891,12892,12893],"speed":100},{"id":12911,"frames":[12894,12895,12896,12897,12898,12899],"speed":100},{"id":12912,"frames":[12900,12901,12902,12903,12904],"speed":83},{"id":12913,"frames":[12905,12906,12907,12908,12909],"speed":83},{"id":12937,"frames":[12915,12916,12917,12918,12919,12920],"speed":100},{"id":12938,"frames":[12921,12922,12923,12924,12925,12926],"speed":100},{"id":12939,"frames":[12927,12928,12929,12930,12931],"speed":83},{"id":12940,"frames":[12932,12933,12934,12935,12936],"speed":83},{"id":12963,"frames":[12941,12942,12943,12944,12945,12946],"speed":100},{"id":12964,"frames":[12947,12948,12949,12950,12951,12952],"speed":100},{"id":12965,"frames":[12953,12954,12955,12956,12957],"speed":83},{"id":12966,"frames":[12958,12959,12960,12961,12962],"speed":83},{"id":12990,"frames":[12968,12969,12970,12971,12972,12973],"speed":100},{"id":12991,"frames":[12974,12975,12976,12977,12978,12979],"speed":100},{"id":12992,"frames":[12980,12981,12982,12983,12984],"speed":83},{"id":12993,"frames":[12985,12986,12987,12988,12989],"speed":83},{"id":13278,"frames":[13256,13257,13258,13259,13260,13261],"speed":100},{"id":13279,"frames":[13262,13263,13264,13265,13266,13267],"speed":100},{"id":13280,"frames":[13268,13269,13270,13271,13272],"speed":83},{"id":13281,"frames":[13273,13274,13275,13276,13277],"speed":83},{"id":13305,"frames":[13283,13284,13285,13286,13287,13288],"speed":100},{"id":13306,"frames":[13289,13290,13291,13292,13293,13294],"speed":100},{"id":13307,"frames":[13295,13296,13297,13298,13299],"speed":83},{"id":13308,"frames":[13300,13301,13302,13303,13304],"speed":83},{"id":13331,"frames":[13309,13310,13311,13312,13313,13314],"speed":100},{"id":13332,"frames":[13315,13316,13317,13318,13319,13320],"speed":100},{"id":13333,"frames":[13321,13322,13323,13324,13325],"speed":83},{"id":13334,"frames":[13326,13327,13328,13329,13330],"speed":83},{"id":13357,"frames":[13335,13336,13337,13338,13339,13340],"speed":100},{"id":13358,"frames":[13341,13342,13343,13344,13345,13346],"speed":100},{"id":13359,"frames":[13347,13348,13349,13350,13351],"speed":83},{"id":13360,"frames":[13352,13353,13354,13355,13356],"speed":83},{"id":13383,"frames":[13361,13362,13363,13364,13365,13366],"speed":100},{"id":13384,"frames":[13367,13368,13369,13370,13371,13372],"speed":100},{"id":13385,"frames":[13373,13374,13375,13376,13377],"speed":83},{"id":13386,"frames":[13378,13379,13380,13381,13382],"speed":83},{"id":13547,"frames":[13483,13499,13515,13531],"speed":66},{"id":13548,"frames":[13484,13500,13516,13532],"speed":66},{"id":13549,"frames":[13485,13501,13517,13533],"speed":66},{"id":13550,"frames":[13486,13502,13518,13534],"speed":66},{"id":13551,"frames":[13487,13503,13519,13535],"speed":66},{"id":13552,"frames":[13488,13504,13520,13536],"speed":66},{"id":13553,"frames":[13489,13505,13521,13537],"speed":66},{"id":13554,"frames":[13490,13506,13522,13538],"speed":66},{"id":13555,"frames":[13491,13507,13523,13539],"speed":66},{"id":13557,"frames":[13493,13509,13525,13541],"speed":66},{"id":13558,"frames":[13494,13510,13526,13542],"speed":66},{"id":13559,"frames":[13495,13511,13527,13543],"speed":66},{"id":13560,"frames":[13496,13512,13528,13544],"speed":66},{"id":13561,"frames":[13497,13513,13529,13545],"speed":66},{"id":13562,"frames":[13498,13514,13530,13546],"speed":66},{"id":13585,"frames":[13563,13564,13565,13566,13567,13568],"speed":100},{"id":13586,"frames":[13569,13570,13571,13572,13573,13574],"speed":100},{"id":13587,"frames":[13575,13576,13577,13578,13579],"speed":83},{"id":13588,"frames":[13580,13581,13582,13583,13584],"speed":83},{"id":13613,"frames":[13591,13592,13593,13594,13595,13596],"speed":100},{"id":13614,"frames":[13597,13598,13599,13600,13601,13602],"speed":100},{"id":13615,"frames":[13603,13604,13605,13606,13607],"speed":83},{"id":13616,"frames":[13608,13609,13610,13611,13612],"speed":83},{"id":13640,"frames":[13617,13618,13619,13620,13621,13622],"speed":100},{"id":13641,"frames":[13623,13624,13625,13626,13627,13628],"speed":100},{"id":13642,"frames":[13629,13630,13631,13632,13633],"speed":83},{"id":13643,"frames":[13634,13635,13636,13637,13638],"speed":83},{"id":13667,"frames":[13644,13645,13646,13647,13648,13649],"speed":100},{"id":13668,"frames":[13650,13651,13652,13653,13654,13655],"speed":100},{"id":13669,"frames":[13656,13657,13658,13659,13660],"speed":83},{"id":13670,"frames":[13661,13662,13663,13664,13665],"speed":83},{"id":13694,"frames":[13671,13672,13673,13674,13675,13676],"speed":100},{"id":13695,"frames":[13677,13678,13679,13680,13681,13682],"speed":100},{"id":13696,"frames":[13683,13684,13685,13686,13687],"speed":83},{"id":13697,"frames":[13688,13689,13690,13691,13692],"speed":83},{"id":13721,"frames":[13698,13699,13700,13701,13702,13703],"speed":100},{"id":13722,"frames":[13704,13705,13706,13707,13708,13709],"speed":100},{"id":13723,"frames":[13710,13711,13712,13713,13714],"speed":83},{"id":13724,"frames":[13715,13716,13717,13718,13719],"speed":83},{"id":13747,"frames":[13725,13726,13727,13728,13729,13730],"speed":100},{"id":13748,"frames":[13731,13732,13733,13734,13735,13736],"speed":100},{"id":13749,"frames":[13737,13738,13739,13740,13741],"speed":83},{"id":13750,"frames":[13742,13743,13744,13745,13746],"speed":83},{"id":13774,"frames":[13751,13752,13753,13754,13755,13756],"speed":100},{"id":13775,"frames":[13757,13758,13759,13760,13761,13762],"speed":100},{"id":13776,"frames":[13763,13764,13765,13766,13767],"speed":83},{"id":13777,"frames":[13768,13769,13770,13771,13772],"speed":83},{"id":13801,"frames":[13778,13779,13780,13781,13782,13783],"speed":100},{"id":13802,"frames":[13784,13785,13786,13787,13788,13789],"speed":100},{"id":13803,"frames":[13790,13791,13792,13793,13794],"speed":83},{"id":13804,"frames":[13795,13796,13797,13798,13799],"speed":83},{"id":13828,"frames":[13805,13806,13807,13808,13809,13810],"speed":100},{"id":13829,"frames":[13811,13812,13813,13814,13815,13816],"speed":100},{"id":13830,"frames":[13817,13818,13819,13820,13821],"speed":83},{"id":13831,"frames":[13822,13823,13824,13825,13826],"speed":83},{"id":13855,"frames":[13832,13833,13834,13835,13836,13837],"speed":100},{"id":13856,"frames":[13838,13839,13840,13841,13842,13843],"speed":100},{"id":13857,"frames":[13844,13845,13846,13847,13848],"speed":83},{"id":13858,"frames":[13849,13850,13851,13852,13853],"speed":83},{"id":13882,"frames":[13859,13860,13861,13862,13863,13864],"speed":100},{"id":13883,"frames":[13865,13866,13867,13868,13869,13870],"speed":100},{"id":13884,"frames":[13871,13872,13873,13874,13875],"speed":83},{"id":13885,"frames":[13876,13877,13878,13879,13880],"speed":83},{"id":13908,"frames":[13886,13887,13888,13889,13890,13891],"speed":100},{"id":13909,"frames":[13892,13893,13894,13895,13896,13897],"speed":100},{"id":13910,"frames":[13898,13899,13900,13901,13902],"speed":83},{"id":13911,"frames":[13903,13904,13905,13906,13907],"speed":83},{"id":13924,"frames":[13912,13913,13914,13915,13916,13917],"speed":100},{"id":13925,"frames":[13918,13919,13920,13921,13922,13923],"speed":100},{"id":13948,"frames":[13926,13927,13928,13929,13930,13931],"speed":100},{"id":13949,"frames":[13932,13933,13934,13935,13936,13937],"speed":100},{"id":13950,"frames":[13938,13939,13940,13941,13942],"speed":83},{"id":13951,"frames":[13943,13944,13945,13946,13947],"speed":83},{"id":13986,"frames":[13964,13965,13966,13967,13968,13969],"speed":100},{"id":13987,"frames":[13970,13971,13972,13973,13974,13975],"speed":100},{"id":13988,"frames":[13976,13977,13978,13979,13980],"speed":83},{"id":13989,"frames":[13981,13982,13983,13984,13985],"speed":83},{"id":14022,"frames":[14000,14001,14002,14003,14004,14005],"speed":100},{"id":14023,"frames":[14006,14007,14008,14009,14010,14011],"speed":100},{"id":14024,"frames":[14012,14013,14014,14015,14016],"speed":83},{"id":14025,"frames":[14017,14018,14019,14020,14021],"speed":83},{"id":14048,"frames":[14026,14027,14028,14029,14030,14031],"speed":100},{"id":14049,"frames":[14032,14033,14034,14035,14036,14037],"speed":100},{"id":14050,"frames":[14038,14039,14040,14041,14042],"speed":83},{"id":14051,"frames":[14043,14044,14045,14046,14047],"speed":83},{"id":14075,"frames":[14053,14054,14055,14056,14057,14058],"speed":100},{"id":14076,"frames":[14059,14060,14061,14062,14063,14064],"speed":100},{"id":14077,"frames":[14065,14066,14067,14068,14069],"speed":83},{"id":14078,"frames":[14070,14071,14072,14073,14074],"speed":83},{"id":14102,"frames":[14080,14081,14082,14083,14084,14085],"speed":100},{"id":14103,"frames":[14086,14087,14088,14089,14090,14091],"speed":100},{"id":14104,"frames":[14092,14093,14094,14095,14096],"speed":83},{"id":14105,"frames":[14097,14098,14099,14100,14101],"speed":83},{"id":14128,"frames":[14106,14107,14108,14109,14110,14111],"speed":100},{"id":14129,"frames":[14112,14113,14114,14115,14116,14117],"speed":100},{"id":14130,"frames":[14118,14119,14120,14121,14122],"speed":83},{"id":14131,"frames":[14123,14124,14125,14126,14127],"speed":83},{"id":14154,"frames":[14132,14133,14134,14135,14136,14137],"speed":100},{"id":14155,"frames":[14138,14139,14140,14141,14142,14143],"speed":100},{"id":14156,"frames":[14144,14145,14146,14147,14148],"speed":83},{"id":14157,"frames":[14149,14150,14151,14152,14153],"speed":83},{"id":14180,"frames":[14158,14159,14160,14161,14162,14163],"speed":100},{"id":14181,"frames":[14164,14165,14166,14167,14168,14169],"speed":100},{"id":14182,"frames":[14170,14171,14172,14173,14174],"speed":83},{"id":14183,"frames":[14175,14176,14177,14178,14179],"speed":83},{"id":14219,"frames":[14197,14198,14199,14200,14201,14202],"speed":100},{"id":14220,"frames":[14203,14204,14205,14206,14207,14208],"speed":100},{"id":14221,"frames":[14209,14210,14211,14212,14213],"speed":83},{"id":14222,"frames":[14214,14215,14216,14217,14218],"speed":83},{"id":14246,"frames":[14224,14225,14226,14227,14228,14229],"speed":100},{"id":14247,"frames":[14230,14231,14232,14233,14234,14235],"speed":100},{"id":14248,"frames":[14236,14237,14238,14239,14240],"speed":83},{"id":14249,"frames":[14241,14242,14243,14244,14245],"speed":83},{"id":14273,"frames":[14251,14252,14253,14254,14255,14256],"speed":100},{"id":14274,"frames":[14257,14258,14259,14260,14261,14262],"speed":100},{"id":14275,"frames":[14263,14264,14265,14266,14267],"speed":83},{"id":14276,"frames":[14268,14269,14270,14271,14272],"speed":83},{"id":14300,"frames":[14278,14279,14280,14281,14282,14283],"speed":100},{"id":14301,"frames":[14284,14285,14286,14287,14288,14289],"speed":100},{"id":14302,"frames":[14290,14291,14292,14293,14294],"speed":83},{"id":14303,"frames":[14295,14296,14297,14298,14299],"speed":83},{"id":14327,"frames":[14305,14306,14307,14308,14309,14310],"speed":100},{"id":14328,"frames":[14311,14312,14313,14314,14315,14316],"speed":100},{"id":14329,"frames":[14317,14318,14319,14320,14321],"speed":83},{"id":14330,"frames":[14322,14323,14324,14325,14326],"speed":83},{"id":14354,"frames":[14332,14333,14334,14335,14336,14337],"speed":100},{"id":14355,"frames":[14338,14339,14340,14341,14342,14343],"speed":100},{"id":14356,"frames":[14344,14345,14346,14347,14348],"speed":83},{"id":14357,"frames":[14349,14350,14351,14352,14353],"speed":83},{"id":14381,"frames":[14359,14360,14361,14362,14363,14364],"speed":100},{"id":14382,"frames":[14365,14366,14367,14368,14369,14370],"speed":100},{"id":14383,"frames":[14371,14372,14373,14374,14375],"speed":83},{"id":14384,"frames":[14376,14377,14378,14379,14380],"speed":83},{"id":14408,"frames":[14386,14387,14388,14389,14390,14391],"speed":100},{"id":14409,"frames":[14392,14393,14394,14395,14396,14397],"speed":100},{"id":14410,"frames":[14398,14399,14400,14401,14402],"speed":83},{"id":14411,"frames":[14403,14404,14405,14406,14407],"speed":83},{"id":14435,"frames":[14413,14414,14415,14416,14417,14418],"speed":100},{"id":14436,"frames":[14419,14420,14421,14422,14423,14424],"speed":100},{"id":14437,"frames":[14425,14426,14427,14428,14429],"speed":83},{"id":14438,"frames":[14430,14431,14432,14433,14434],"speed":83},{"id":14462,"frames":[14440,14441,14442,14443,14444,14445],"speed":100},{"id":14463,"frames":[14446,14447,14448,14449,14450,14451],"speed":100},{"id":14464,"frames":[14452,14453,14454,14455,14456],"speed":83},{"id":14465,"frames":[14457,14458,14459,14460,14461],"speed":83},{"id":14489,"frames":[14467,14468,14469,14470,14471,14472],"speed":100},{"id":14490,"frames":[14473,14474,14475,14476,14477,14478],"speed":100},{"id":14491,"frames":[14479,14480,14481,14482,14483],"speed":83},{"id":14492,"frames":[14484,14485,14486,14487,14488],"speed":83},{"id":14516,"frames":[14494,14495,14496,14497,14498,14499],"speed":100},{"id":14517,"frames":[14500,14501,14502,14503,14504,14505],"speed":100},{"id":14518,"frames":[14506,14507,14508,14509,14510],"speed":83},{"id":14519,"frames":[14511,14512,14513,14514,14515],"speed":83},{"id":14543,"frames":[14521,14522,14523,14524,14525,14526],"speed":100},{"id":14544,"frames":[14527,14528,14529,14530,14531,14532],"speed":100},{"id":14545,"frames":[14533,14534,14535,14536,14537],"speed":83},{"id":14546,"frames":[14538,14539,14540,14541,14542],"speed":83},{"id":14570,"frames":[14548,14549,14550,14551,14552,14553],"speed":100},{"id":14571,"frames":[14554,14555,14556,14557,14558,14559],"speed":100},{"id":14572,"frames":[14560,14561,14562,14563,14564],"speed":83},{"id":14573,"frames":[14565,14566,14567,14568,14569],"speed":83},{"id":14597,"frames":[14575,14576,14577,14578,14579,14580],"speed":100},{"id":14598,"frames":[14581,14582,14583,14584,14585,14586],"speed":100},{"id":14599,"frames":[14587,14588,14589,14590,14591],"speed":83},{"id":14600,"frames":[14592,14593,14594,14595,14596],"speed":83},{"id":14624,"frames":[14602,14603,14604,14605,14606,14607],"speed":100},{"id":14625,"frames":[14608,14609,14610,14611,14612,14613],"speed":100},{"id":14626,"frames":[14614,14615,14616,14617,14618],"speed":83},{"id":14627,"frames":[14619,14620,14621,14622,14623],"speed":83},{"id":14651,"frames":[14629,14630,14631,14632,14633,14634],"speed":100},{"id":14652,"frames":[14635,14636,14637,14638,14639,14640],"speed":100},{"id":14653,"frames":[14641,14642,14643,14644,14645],"speed":83},{"id":14654,"frames":[14646,14647,14648,14649,14650],"speed":83},{"id":14678,"frames":[14656,14657,14658,14659,14660,14661],"speed":100},{"id":14679,"frames":[14662,14663,14664,14665,14666,14667],"speed":100},{"id":14680,"frames":[14668,14669,14670,14671,14672],"speed":83},{"id":14681,"frames":[14673,14674,14675,14676,14677],"speed":83},{"id":14705,"frames":[14683,14684,14685,14686,14687,14688],"speed":100},{"id":14706,"frames":[14689,14690,14691,14692,14693,14694],"speed":100},{"id":14707,"frames":[14695,14696,14697,14698,14699],"speed":83},{"id":14708,"frames":[14700,14701,14702,14703,14704],"speed":83},{"id":14732,"frames":[14710,14711,14712,14713,14714,14715],"speed":100},{"id":14733,"frames":[14716,14717,14718,14719,14720,14721],"speed":100},{"id":14734,"frames":[14722,14723,14724,14725,14726],"speed":83},{"id":14735,"frames":[14727,14728,14729,14730,14731],"speed":83},{"id":14759,"frames":[14737,14738,14739,14740,14741,14742],"speed":100},{"id":14760,"frames":[14743,14744,14745,14746,14747,14748],"speed":100},{"id":14761,"frames":[14749,14750,14751,14752,14753],"speed":83},{"id":14762,"frames":[14754,14755,14756,14757,14758],"speed":83},{"id":14786,"frames":[14764,14765,14766,14767,14768,14769],"speed":100},{"id":14787,"frames":[14770,14771,14772,14773,14774,14775],"speed":100},{"id":14788,"frames":[14776,14777,14778,14779,14780],"speed":83},{"id":14789,"frames":[14781,14782,14783,14784,14785],"speed":83},{"id":14813,"frames":[14791,14792,14793,14794,14795,14796],"speed":100},{"id":14814,"frames":[14797,14798,14799,14800,14801,14802],"speed":100},{"id":14815,"frames":[14803,14804,14805,14806,14807],"speed":83},{"id":14816,"frames":[14808,14809,14810,14811,14812],"speed":83},{"id":14840,"frames":[14818,14819,14820,14821,14822,14823],"speed":100},{"id":14841,"frames":[14824,14825,14826,14827,14828,14829],"speed":100},{"id":14842,"frames":[14830,14831,14832,14833,14834],"speed":83},{"id":14843,"frames":[14835,14836,14837,14838,14839],"speed":83},{"id":14867,"frames":[14845,14846,14847,14848,14849,14850],"speed":100},{"id":14868,"frames":[14851,14852,14853,14854,14855,14856],"speed":100},{"id":14869,"frames":[14857,14858,14859,14860,14861],"speed":83},{"id":14870,"frames":[14862,14863,14864,14865,14866],"speed":83},{"id":14894,"frames":[14872,14873,14874,14875,14876,14877],"speed":100},{"id":14895,"frames":[14878,14879,14880,14881,14882,14883],"speed":100},{"id":14896,"frames":[14884,14885,14886,14887,14888],"speed":83},{"id":14897,"frames":[14889,14890,14891,14892,14893],"speed":83},{"id":14921,"frames":[14899,14900,14901,14902,14903,14904],"speed":100},{"id":14922,"frames":[14905,14906,14907,14908,14909,14910],"speed":100},{"id":14923,"frames":[14911,14912,14913,14914,14915],"speed":83},{"id":14924,"frames":[14916,14917,14918,14919,14920],"speed":83},{"id":14948,"frames":[14926,14927,14928,14929,14930,14931],"speed":100},{"id":14949,"frames":[14932,14933,14934,14935,14936,14937],"speed":100},{"id":14950,"frames":[14938,14939,14940,14941,14942],"speed":83},{"id":14951,"frames":[14943,14944,14945,14946,14947],"speed":83},{"id":14975,"frames":[14953,14954,14955,14956,14957,14958],"speed":100},{"id":14976,"frames":[14959,14960,14961,14962,14963,14964],"speed":100},{"id":14977,"frames":[14965,14966,14967,14968,14969],"speed":83},{"id":14978,"frames":[14970,14971,14972,14973,14974],"speed":83},{"id":15002,"frames":[14980,14981,14982,14983,14984,14985],"speed":100},{"id":15003,"frames":[14986,14987,14988,14989,14990,14991],"speed":100},{"id":15004,"frames":[14992,14993,14994,14995,14996],"speed":83},{"id":15005,"frames":[14997,14998,14999,15000,15001],"speed":83},{"id":15029,"frames":[15007,15008,15009,15010,15011,15012],"speed":100},{"id":15030,"frames":[15013,15014,15015,15016,15017,15018],"speed":100},{"id":15031,"frames":[15019,15020,15021,15022,15023],"speed":83},{"id":15032,"frames":[15024,15025,15026,15027,15028],"speed":83},{"id":15056,"frames":[15034,15035,15036,15037,15038,15039],"speed":100},{"id":15057,"frames":[15040,15041,15042,15043,15044,15045],"speed":100},{"id":15058,"frames":[15046,15047,15048,15049,15050],"speed":83},{"id":15059,"frames":[15051,15052,15053,15054,15055],"speed":83},{"id":15083,"frames":[15061,15062,15063,15064,15065,15066],"speed":100},{"id":15084,"frames":[15067,15068,15069,15070,15071,15072],"speed":100},{"id":15085,"frames":[15073,15074,15075,15076,15077],"speed":83},{"id":15086,"frames":[15078,15079,15080,15081,15082],"speed":83},{"id":15110,"frames":[15088,15089,15090,15091,15092,15093],"speed":100},{"id":15111,"frames":[15094,15095,15096,15097,15098,15099],"speed":100},{"id":15112,"frames":[15100,15101,15102,15103,15104],"speed":83},{"id":15113,"frames":[15105,15106,15107,15108,15109],"speed":83},{"id":15137,"frames":[15115,15116,15117,15118,15119,15120],"speed":100},{"id":15138,"frames":[15121,15122,15123,15124,15125,15126],"speed":100},{"id":15139,"frames":[15127,15128,15129,15130,15131],"speed":83},{"id":15140,"frames":[15132,15133,15134,15135,15136],"speed":83},{"id":15164,"frames":[15142,15143,15144,15145,15146,15147],"speed":100},{"id":15165,"frames":[15148,15149,15150,15151,15152,15153],"speed":100},{"id":15166,"frames":[15154,15155,15156,15157,15158],"speed":83},{"id":15167,"frames":[15159,15160,15161,15162,15163],"speed":83},{"id":15191,"frames":[15169,15170,15171,15172,15173,15174],"speed":100},{"id":15192,"frames":[15175,15176,15177,15178,15179,15180],"speed":100},{"id":15193,"frames":[15181,15182,15183,15184,15185],"speed":83},{"id":15194,"frames":[15186,15187,15188,15189,15190],"speed":83},{"id":15218,"frames":[15196,15197,15198,15199,15200,15201],"speed":100},{"id":15219,"frames":[15202,15203,15204,15205,15206,15207],"speed":100},{"id":15220,"frames":[15208,15209,15210,15211,15212],"speed":83},{"id":15221,"frames":[15213,15214,15215,15216,15217],"speed":83},{"id":15245,"frames":[15223,15224,15225,15226,15227,15228],"speed":100},{"id":15246,"frames":[15229,15230,15231,15232,15233,15234],"speed":100},{"id":15247,"frames":[15235,15236,15237,15238,15239],"speed":83},{"id":15248,"frames":[15240,15241,15242,15243,15244],"speed":83},{"id":15272,"frames":[15250,15251,15252,15253,15254,15255],"speed":100},{"id":15273,"frames":[15256,15257,15258,15259,15260,15261],"speed":100},{"id":15274,"frames":[15262,15263,15264,15265,15266],"speed":83},{"id":15275,"frames":[15267,15268,15269,15270,15271],"speed":83},{"id":15299,"frames":[15277,15278,15279,15280,15281,15282],"speed":100},{"id":15300,"frames":[15283,15284,15285,15286,15287,15288],"speed":100},{"id":15301,"frames":[15289,15290,15291,15292,15293],"speed":83},{"id":15302,"frames":[15294,15295,15296,15297,15298],"speed":83},{"id":15326,"frames":[15304,15305,15306,15307,15308,15309],"speed":100},{"id":15327,"frames":[15310,15311,15312,15313,15314,15315],"speed":100},{"id":15328,"frames":[15316,15317,15318,15319,15320],"speed":83},{"id":15329,"frames":[15321,15322,15323,15324,15325],"speed":83},{"id":15353,"frames":[15331,15332,15333,15334,15335,15336],"speed":100},{"id":15354,"frames":[15337,15338,15339,15340,15341,15342],"speed":100},{"id":15355,"frames":[15343,15344,15345,15346,15347],"speed":83},{"id":15356,"frames":[15348,15349,15350,15351,15352],"speed":83},{"id":15380,"frames":[15358,15359,15360,15361,15362,15363],"speed":100},{"id":15381,"frames":[15364,15365,15366,15367,15368,15369],"speed":100},{"id":15382,"frames":[15370,15371,15372,15373,15374],"speed":83},{"id":15383,"frames":[15375,15376,15377,15378,15379],"speed":83},{"id":15407,"frames":[15385,15386,15387,15388,15389,15390],"speed":100},{"id":15408,"frames":[15391,15392,15393,15394,15395,15396],"speed":100},{"id":15409,"frames":[15397,15398,15399,15400,15401],"speed":83},{"id":15410,"frames":[15402,15403,15404,15405,15406],"speed":83},{"id":15434,"frames":[15412,15413,15414,15415,15416,15417],"speed":100},{"id":15435,"frames":[15418,15419,15420,15421,15422,15423],"speed":100},{"id":15436,"frames":[15424,15425,15426,15427,15428],"speed":83},{"id":15437,"frames":[15429,15430,15431,15432,15433],"speed":83},{"id":15461,"frames":[15439,15440,15441,15442,15443,15444],"speed":100},{"id":15462,"frames":[15445,15446,15447,15448,15449,15450],"speed":100},{"id":15463,"frames":[15451,15452,15453,15454,15455],"speed":83},{"id":15464,"frames":[15456,15457,15458,15459,15460],"speed":83},{"id":15488,"frames":[15466,15467,15468,15469,15470,15471],"speed":100},{"id":15489,"frames":[15472,15473,15474,15475,15476,15477],"speed":100},{"id":15490,"frames":[15478,15479,15480,15481,15482],"speed":83},{"id":15491,"frames":[15483,15484,15485,15486,15487],"speed":83},{"id":15515,"frames":[15493,15494,15495,15496,15497,15498],"speed":100},{"id":15516,"frames":[15499,15500,15501,15502,15503,15504],"speed":100},{"id":15517,"frames":[15505,15506,15507,15508,15509],"speed":83},{"id":15518,"frames":[15510,15511,15512,15513,15514],"speed":83},{"id":15542,"frames":[15520,15521,15522,15523,15524,15525],"speed":100},{"id":15543,"frames":[15526,15527,15528,15529,15530,15531],"speed":100},{"id":15544,"frames":[15532,15533,15534,15535,15536],"speed":83},{"id":15545,"frames":[15537,15538,15539,15540,15541],"speed":83},{"id":15569,"frames":[15547,15548,15549,15550,15551,15552],"speed":100},{"id":15570,"frames":[15553,15554,15555,15556,15557,15558],"speed":100},{"id":15571,"frames":[15559,15560,15561,15562,15563],"speed":83},{"id":15572,"frames":[15564,15565,15566,15567,15568],"speed":83},{"id":15596,"frames":[15574,15575,15576,15577,15578,15579],"speed":100},{"id":15597,"frames":[15580,15581,15582,15583,15584,15585],"speed":100},{"id":15598,"frames":[15586,15587,15588,15589,15590],"speed":83},{"id":15599,"frames":[15591,15592,15593,15594,15595],"speed":83},{"id":15623,"frames":[15601,15602,15603,15604,15605,15606],"speed":100},{"id":15624,"frames":[15607,15608,15609,15610,15611,15612],"speed":100},{"id":15625,"frames":[15613,15614,15615,15616,15617],"speed":83},{"id":15626,"frames":[15618,15619,15620,15621,15622],"speed":83},{"id":15650,"frames":[15628,15629,15630,15631,15632,15633],"speed":100},{"id":15651,"frames":[15634,15635,15636,15637,15638,15639],"speed":100},{"id":15652,"frames":[15640,15641,15642,15643,15644],"speed":83},{"id":15653,"frames":[15645,15646,15647,15648,15649],"speed":83},{"id":15677,"frames":[15655,15656,15657,15658,15659,15660],"speed":100},{"id":15678,"frames":[15661,15662,15663,15664,15665,15666],"speed":100},{"id":15679,"frames":[15667,15668,15669,15670,15671],"speed":83},{"id":15680,"frames":[15672,15673,15674,15675,15676],"speed":83},{"id":15704,"frames":[15682,15683,15684,15685,15686,15687],"speed":100},{"id":15705,"frames":[15688,15689,15690,15691,15692,15693],"speed":100},{"id":15706,"frames":[15694,15695,15696,15697,15698],"speed":83},{"id":15707,"frames":[15699,15700,15701,15702,15703],"speed":83},{"id":15731,"frames":[15709,15710,15711,15712,15713,15714],"speed":100},{"id":15732,"frames":[15715,15716,15717,15718,15719,15720],"speed":100},{"id":15733,"frames":[15721,15722,15723,15724,15725],"speed":83},{"id":15734,"frames":[15726,15727,15728,15729,15730],"speed":83},{"id":15758,"frames":[15736,15737,15738,15739,15740,15741],"speed":100},{"id":15759,"frames":[15742,15743,15744,15745,15746,15747],"speed":100},{"id":15760,"frames":[15748,15749,15750,15751,15752],"speed":83},{"id":15761,"frames":[15753,15754,15755,15756,15757],"speed":83},{"id":15785,"frames":[15763,15764,15765,15766,15767,15768],"speed":100},{"id":15786,"frames":[15769,15770,15771,15772,15773,15774],"speed":100},{"id":15787,"frames":[15775,15776,15777,15778,15779],"speed":83},{"id":15788,"frames":[15780,15781,15782,15783,15784],"speed":83},{"id":15812,"frames":[15790,15791,15792,15793,15794,15795],"speed":100},{"id":15813,"frames":[15796,15797,15798,15799,15800,15801],"speed":100},{"id":15814,"frames":[15802,15803,15804,15805,15806],"speed":83},{"id":15815,"frames":[15807,15808,15809,15810,15811],"speed":83},{"id":15839,"frames":[15817,15818,15819,15820,15821,15822],"speed":100},{"id":15840,"frames":[15823,15824,15825,15826,15827,15828],"speed":100},{"id":15841,"frames":[15829,15830,15831,15832,15833],"speed":83},{"id":15842,"frames":[15834,15835,15836,15837,15838],"speed":83},{"id":15866,"frames":[15844,15845,15846,15847,15848,15849],"speed":100},{"id":15867,"frames":[15850,15851,15852,15853,15854,15855],"speed":100},{"id":15868,"frames":[15856,15857,15858,15859,15860],"speed":83},{"id":15869,"frames":[15861,15862,15863,15864,15865],"speed":83},{"id":15893,"frames":[15871,15872,15873,15874,15875,15876],"speed":100},{"id":15894,"frames":[15877,15878,15879,15880,15881,15882],"speed":100},{"id":15895,"frames":[15883,15884,15885,15886,15887],"speed":83},{"id":15896,"frames":[15888,15889,15890,15891,15892],"speed":83},{"id":15920,"frames":[15898,15899,15900,15901,15902,15903],"speed":100},{"id":15921,"frames":[15904,15905,15906,15907,15908,15909],"speed":100},{"id":15922,"frames":[15910,15911,15912,15913,15914],"speed":83},{"id":15923,"frames":[15915,15916,15917,15918,15919],"speed":83},{"id":15947,"frames":[15925,15926,15927,15928,15929,15930],"speed":100},{"id":15948,"frames":[15931,15932,15933,15934,15935,15936],"speed":100},{"id":15949,"frames":[15937,15938,15939,15940,15941],"speed":83},{"id":15950,"frames":[15942,15943,15944,15945,15946],"speed":83},{"id":15974,"frames":[15952,15953,15954,15955,15956,15957],"speed":100},{"id":15975,"frames":[15958,15959,15960,15961,15962,15963],"speed":100},{"id":15976,"frames":[15964,15965,15966,15967,15968],"speed":83},{"id":15977,"frames":[15969,15970,15971,15972,15973],"speed":83},{"id":16001,"frames":[15979,15980,15981,15982,15983,15984],"speed":100},{"id":16002,"frames":[15985,15986,15987,15988,15989,15990],"speed":100},{"id":16003,"frames":[15991,15992,15993,15994,15995],"speed":83},{"id":16004,"frames":[15996,15997,15998,15999,16000],"speed":83},{"id":16028,"frames":[16006,16007,16008,16009,16010,16011],"speed":100},{"id":16029,"frames":[16012,16013,16014,16015,16016,16017],"speed":100},{"id":16030,"frames":[16018,16019,16020,16021,16022],"speed":83},{"id":16031,"frames":[16023,16024,16025,16026,16027],"speed":83},{"id":16055,"frames":[16033,16034,16035,16036,16037,16038],"speed":100},{"id":16056,"frames":[16039,16040,16041,16042,16043,16044],"speed":100},{"id":16057,"frames":[16045,16046,16047,16048,16049],"speed":83},{"id":16058,"frames":[16050,16051,16052,16053,16054],"speed":83},{"id":16082,"frames":[16060,16061,16062,16063,16064,16065],"speed":100},{"id":16083,"frames":[16066,16067,16068,16069,16070,16071],"speed":100},{"id":16084,"frames":[16072,16073,16074,16075,16076],"speed":83},{"id":16085,"frames":[16077,16078,16079,16080,16081],"speed":83},{"id":16109,"frames":[16087,16088,16089,16090,16091,16092],"speed":100},{"id":16110,"frames":[16093,16094,16095,16096,16097,16098],"speed":100},{"id":16111,"frames":[16099,16100,16101,16102,16103],"speed":83},{"id":16112,"frames":[16104,16105,16106,16107,16108],"speed":83},{"id":16136,"frames":[16114,16115,16116,16117,16118,16119],"speed":100},{"id":16137,"frames":[16120,16121,16122,16123,16124,16125],"speed":100},{"id":16138,"frames":[16126,16127,16128,16129,16130],"speed":83},{"id":16139,"frames":[16131,16132,16133,16134,16135],"speed":83},{"id":16163,"frames":[16141,16142,16143,16144,16145,16146],"speed":100},{"id":16164,"frames":[16147,16148,16149,16150,16151,16152],"speed":100},{"id":16165,"frames":[16153,16154,16155,16156,16157],"speed":83},{"id":16166,"frames":[16158,16159,16160,16161,16162],"speed":83},{"id":16190,"frames":[16168,16169,16170,16171,16172,16173],"speed":100},{"id":16191,"frames":[16174,16175,16176,16177,16178,16179],"speed":100},{"id":16192,"frames":[16180,16181,16182,16183,16184],"speed":83},{"id":16193,"frames":[16185,16186,16187,16188,16189],"speed":83},{"id":16217,"frames":[16195,16196,16197,16198,16199,16200],"speed":100},{"id":16218,"frames":[16201,16202,16203,16204,16205,16206],"speed":100},{"id":16219,"frames":[16207,16208,16209,16210,16211],"speed":83},{"id":16220,"frames":[16212,16213,16214,16215,16216],"speed":83},{"id":16244,"frames":[16222,16223,16224,16225,16226,16227],"speed":100},{"id":16245,"frames":[16228,16229,16230,16231,16232,16233],"speed":100},{"id":16246,"frames":[16234,16235,16236,16237,16238],"speed":83},{"id":16247,"frames":[16239,16240,16241,16242,16243],"speed":83},{"id":16271,"frames":[16249,16250,16251,16252,16253,16254],"speed":100},{"id":16272,"frames":[16255,16256,16257,16258,16259,16260],"speed":100},{"id":16273,"frames":[16261,16262,16263,16264,16265],"speed":83},{"id":16274,"frames":[16266,16267,16268,16269,16270],"speed":83},{"id":16298,"frames":[16276,16277,16278,16279,16280,16281],"speed":100},{"id":16299,"frames":[16282,16283,16284,16285,16286,16287],"speed":100},{"id":16300,"frames":[16288,16289,16290,16291,16292],"speed":83},{"id":16301,"frames":[16293,16294,16295,16296,16297],"speed":83},{"id":16325,"frames":[16303,16304,16305,16306,16307,16308],"speed":100},{"id":16326,"frames":[16309,16310,16311,16312,16313,16314],"speed":100},{"id":16327,"frames":[16315,16316,16317,16318,16319],"speed":83},{"id":16328,"frames":[16320,16321,16322,16323,16324],"speed":83},{"id":16352,"frames":[16330,16331,16332,16333,16334,16335],"speed":100},{"id":16353,"frames":[16336,16337,16338,16339,16340,16341],"speed":100},{"id":16354,"frames":[16342,16343,16344,16345,16346],"speed":83},{"id":16355,"frames":[16347,16348,16349,16350,16351],"speed":83},{"id":16379,"frames":[16357,16358,16359,16360,16361,16362],"speed":100},{"id":16380,"frames":[16363,16364,16365,16366,16367,16368],"speed":100},{"id":16381,"frames":[16369,16370,16371,16372,16373],"speed":83},{"id":16382,"frames":[16374,16375,16376,16377,16378],"speed":83},{"id":16406,"frames":[16384,16385,16386,16387,16388,16389],"speed":100},{"id":16407,"frames":[16390,16391,16392,16393,16394,16395],"speed":100},{"id":16408,"frames":[16396,16397,16398,16399,16400],"speed":83},{"id":16409,"frames":[16401,16402,16403,16404,16405],"speed":83},{"id":16433,"frames":[16411,16412,16413,16414,16415,16416],"speed":100},{"id":16434,"frames":[16417,16418,16419,16420,16421,16422],"speed":100},{"id":16435,"frames":[16423,16424,16425,16426,16427],"speed":83},{"id":16436,"frames":[16428,16429,16430,16431,16432],"speed":83},{"id":16460,"frames":[16438,16439,16440,16441,16442,16443],"speed":100},{"id":16461,"frames":[16444,16445,16446,16447,16448,16449],"speed":100},{"id":16462,"frames":[16450,16451,16452,16453,16454],"speed":83},{"id":16463,"frames":[16455,16456,16457,16458,16459],"speed":83},{"id":16486,"frames":[16464,16465,16466,16467,16468,16469],"speed":100},{"id":16487,"frames":[16470,16471,16472,16473,16474,16475],"speed":100},{"id":16488,"frames":[16476,16477,16478,16479,16480],"speed":83},{"id":16489,"frames":[16481,16482,16483,16484,16485],"speed":83},{"id":16513,"frames":[16491,16492,16493,16494,16495,16496],"speed":100},{"id":16514,"frames":[16497,16498,16499,16500,16501,16502],"speed":100},{"id":16515,"frames":[16503,16504,16505,16506,16507],"speed":83},{"id":16516,"frames":[16508,16509,16510,16511,16512],"speed":83},{"id":16540,"frames":[16518,16519,16520,16521,16522,16523],"speed":100},{"id":16541,"frames":[16524,16525,16526,16527,16528,16529],"speed":100},{"id":16542,"frames":[16530,16531,16532,16533,16534],"speed":83},{"id":16543,"frames":[16535,16536,16537,16538,16539],"speed":83},{"id":16567,"frames":[16545,16546,16547,16548,16549,16550],"speed":100},{"id":16568,"frames":[16551,16552,16553,16554,16555,16556],"speed":100},{"id":16569,"frames":[16557,16558,16559,16560,16561],"speed":83},{"id":16570,"frames":[16562,16563,16564,16565,16566],"speed":83},{"id":16594,"frames":[16572,16573,16574,16575,16576,16577],"speed":100},{"id":16595,"frames":[16578,16579,16580,16581,16582,16583],"speed":100},{"id":16596,"frames":[16584,16585,16586,16587,16588],"speed":83},{"id":16597,"frames":[16589,16590,16591,16592,16593],"speed":83},{"id":16621,"frames":[16599,16600,16601,16602,16603,16604],"speed":100},{"id":16622,"frames":[16605,16606,16607,16608,16609,16610],"speed":100},{"id":16623,"frames":[16611,16612,16613,16614,16615],"speed":83},{"id":16624,"frames":[16616,16617,16618,16619,16620],"speed":83},{"id":16648,"frames":[16626,16627,16628,16629,16630,16631],"speed":100},{"id":16649,"frames":[16632,16633,16634,16635,16636,16637],"speed":100},{"id":16650,"frames":[16638,16639,16640,16641,16642],"speed":83},{"id":16651,"frames":[16643,16644,16645,16646,16647],"speed":83},{"id":16675,"frames":[16653,16654,16655,16656,16657,16658],"speed":100},{"id":16676,"frames":[16659,16660,16661,16662,16663,16664],"speed":100},{"id":16677,"frames":[16665,16666,16667,16668,16669],"speed":83},{"id":16678,"frames":[16670,16671,16672,16673,16674],"speed":83},{"id":16702,"frames":[16680,16681,16682,16683,16684,16685],"speed":100},{"id":16703,"frames":[16686,16687,16688,16689,16690,16691],"speed":100},{"id":16704,"frames":[16692,16693,16694,16695,16696],"speed":83},{"id":16705,"frames":[16697,16698,16699,16700,16701],"speed":83},{"id":16730,"frames":[16708,16709,16710,16711,16712,16713],"speed":100},{"id":16731,"frames":[16714,16715,16716,16717,16718,16719],"speed":100},{"id":16732,"frames":[16720,16721,16722,16723,16724],"speed":83},{"id":16733,"frames":[16725,16726,16727,16728,16729],"speed":83},{"id":16757,"frames":[16735,16736,16737,16738,16739,16740],"speed":100},{"id":16758,"frames":[16741,16742,16743,16744,16745,16746],"speed":100},{"id":16759,"frames":[16747,16748,16749,16750,16751],"speed":83},{"id":16760,"frames":[16752,16753,16754,16755,16756],"speed":83},{"id":16784,"frames":[16762,16763,16764,16765,16766,16767],"speed":100},{"id":16785,"frames":[16768,16769,16770,16771,16772,16773],"speed":100},{"id":16786,"frames":[16774,16775,16776,16777,16778],"speed":83},{"id":16787,"frames":[16779,16780,16781,16782,16783],"speed":83},{"id":16811,"frames":[16789,16790,16791,16792,16793,16794],"speed":100},{"id":16812,"frames":[16795,16796,16797,16798,16799,16800],"speed":100},{"id":16813,"frames":[16801,16802,16803,16804,16805],"speed":83},{"id":16814,"frames":[16806,16807,16808,16809,16810],"speed":83},{"id":16838,"frames":[16816,16817,16818,16819,16820,16821],"speed":100},{"id":16839,"frames":[16822,16823,16824,16825,16826,16827],"speed":100},{"id":16840,"frames":[16828,16829,16830,16831,16832],"speed":83},{"id":16841,"frames":[16833,16834,16835,16836,16837],"speed":83},{"id":16865,"frames":[16843,16844,16845,16846,16847,16848],"speed":100},{"id":16866,"frames":[16849,16850,16851,16852,16853,16854],"speed":100},{"id":16867,"frames":[16855,16856,16857,16858,16859],"speed":83},{"id":16868,"frames":[16860,16861,16862,16863,16864],"speed":83},{"id":16892,"frames":[16870,16871,16872,16873,16874,16875],"speed":100},{"id":16893,"frames":[16876,16877,16878,16879,16880,16881],"speed":100},{"id":16894,"frames":[16882,16883,16884,16885,16886],"speed":83},{"id":16895,"frames":[16887,16888,16889,16890,16891],"speed":83},{"id":16919,"frames":[16897,16898,16899,16900,16901,16902],"speed":100},{"id":16920,"frames":[16903,16904,16905,16906,16907,16908],"speed":100},{"id":16921,"frames":[16909,16910,16911,16912,16913],"speed":83},{"id":16922,"frames":[16914,16915,16916,16917,16918],"speed":83},{"id":16946,"frames":[16924,16925,16926,16927,16928,16929],"speed":100},{"id":16947,"frames":[16930,16931,16932,16933,16934,16935],"speed":100},{"id":16948,"frames":[16936,16937,16938,16939,16940],"speed":83},{"id":16949,"frames":[16941,16942,16943,16944,16945],"speed":83},{"id":16973,"frames":[16951,16952,16953,16954,16955,16956],"speed":100},{"id":16974,"frames":[16957,16958,16959,16960,16961,16962],"speed":100},{"id":16975,"frames":[16963,16964,16965,16966,16967],"speed":83},{"id":16976,"frames":[16968,16969,16970,16971,16972],"speed":83},{"id":17000,"frames":[16978,16979,16980,16981,16982,16983],"speed":100},{"id":17001,"frames":[16984,16985,16986,16987,16988,16989],"speed":100},{"id":17002,"frames":[16990,16991,16992,16993,16994],"speed":83},{"id":17003,"frames":[16995,16996,16997,16998,16999],"speed":83},{"id":17027,"frames":[17005,17006,17007,17008,17009,17010],"speed":100},{"id":17028,"frames":[17011,17012,17013,17014,17015,17016],"speed":100},{"id":17029,"frames":[17017,17018,17019,17020,17021],"speed":83},{"id":17030,"frames":[17022,17023,17024,17025,17026],"speed":83},{"id":17054,"frames":[17032,17033,17034,17035,17036,17037],"speed":100},{"id":17055,"frames":[17038,17039,17040,17041,17042,17043],"speed":100},{"id":17056,"frames":[17044,17045,17046,17047,17048],"speed":83},{"id":17057,"frames":[17049,17050,17051,17052,17053],"speed":83},{"id":17081,"frames":[17059,17060,17061,17062,17063,17064],"speed":100},{"id":17082,"frames":[17065,17066,17067,17068,17069,17070],"speed":100},{"id":17083,"frames":[17071,17072,17073,17074,17075],"speed":83},{"id":17084,"frames":[17076,17077,17078,17079,17080],"speed":83},{"id":17108,"frames":[17086,17087,17088,17089,17090,17091],"speed":100},{"id":17109,"frames":[17092,17093,17094,17095,17096,17097],"speed":100},{"id":17110,"frames":[17098,17099,17100,17101,17102],"speed":83},{"id":17111,"frames":[17103,17104,17105,17106,17107],"speed":83},{"id":17135,"frames":[17113,17114,17115,17116,17117,17118],"speed":100},{"id":17136,"frames":[17119,17120,17121,17122,17123,17124],"speed":100},{"id":17137,"frames":[17125,17126,17127,17128,17129],"speed":83},{"id":17138,"frames":[17130,17131,17132,17133,17134],"speed":83},{"id":17162,"frames":[17140,17141,17142,17143,17144,17145],"speed":100},{"id":17163,"frames":[17146,17147,17148,17149,17150,17151],"speed":100},{"id":17164,"frames":[17152,17153,17154,17155,17156],"speed":83},{"id":17165,"frames":[17157,17158,17159,17160,17161],"speed":83},{"id":17189,"frames":[17167,17168,17169,17170,17171,17172],"speed":100},{"id":17190,"frames":[17173,17174,17175,17176,17177,17178],"speed":100},{"id":17191,"frames":[17179,17180,17181,17182,17183],"speed":83},{"id":17192,"frames":[17184,17185,17186,17187,17188],"speed":83},{"id":17216,"frames":[17194,17195,17196,17197,17198,17199],"speed":100},{"id":17217,"frames":[17200,17201,17202,17203,17204,17205],"speed":100},{"id":17218,"frames":[17206,17207,17208,17209,17210],"speed":83},{"id":17219,"frames":[17211,17212,17213,17214,17215],"speed":83},{"id":17243,"frames":[17221,17222,17223,17224,17225,17226],"speed":100},{"id":17244,"frames":[17227,17228,17229,17230,17231,17232],"speed":100},{"id":17245,"frames":[17233,17234,17235,17236,17237],"speed":83},{"id":17246,"frames":[17238,17239,17240,17241,17242],"speed":83},{"id":17270,"frames":[17248,17249,17250,17251,17252,17253],"speed":100},{"id":17271,"frames":[17254,17255,17256,17257,17258,17259],"speed":100},{"id":17272,"frames":[17260,17261,17262,17263,17264],"speed":83},{"id":17273,"frames":[17265,17266,17267,17268,17269],"speed":83},{"id":17297,"frames":[17275,17276,17277,17278,17279,17280],"speed":100},{"id":17298,"frames":[17281,17282,17283,17284,17285,17286],"speed":100},{"id":17299,"frames":[17287,17288,17289,17290,17291],"speed":83},{"id":17300,"frames":[17292,17293,17294,17295,17296],"speed":83},{"id":17324,"frames":[17302,17303,17304,17305,17306,17307],"speed":100},{"id":17325,"frames":[17308,17309,17310,17311,17312,17313],"speed":100},{"id":17326,"frames":[17314,17315,17316,17317,17318],"speed":83},{"id":17327,"frames":[17319,17320,17321,17322,17323],"speed":83},{"id":17351,"frames":[17329,17330,17331,17332,17333,17334],"speed":100},{"id":17352,"frames":[17335,17336,17337,17338,17339,17340],"speed":100},{"id":17353,"frames":[17341,17342,17343,17344,17345],"speed":83},{"id":17354,"frames":[17346,17347,17348,17349,17350],"speed":83},{"id":17378,"frames":[17356,17357,17358,17359,17360,17361],"speed":100},{"id":17379,"frames":[17362,17363,17364,17365,17366,17367],"speed":100},{"id":17380,"frames":[17368,17369,17370,17371,17372],"speed":83},{"id":17381,"frames":[17373,17374,17375,17376,17377],"speed":83},{"id":17405,"frames":[17383,17384,17385,17386,17387,17388],"speed":100},{"id":17406,"frames":[17389,17390,17391,17392,17393,17394],"speed":100},{"id":17407,"frames":[17395,17396,17397,17398,17399],"speed":83},{"id":17408,"frames":[17400,17401,17402,17403,17404],"speed":83},{"id":17432,"frames":[17410,17411,17412,17413,17414,17415],"speed":100},{"id":17433,"frames":[17416,17417,17418,17419,17420,17421],"speed":100},{"id":17434,"frames":[17422,17423,17424,17425,17426],"speed":83},{"id":17435,"frames":[17427,17428,17429,17430,17431],"speed":83},{"id":17459,"frames":[17437,17438,17439,17440,17441,17442],"speed":100},{"id":17460,"frames":[17443,17444,17445,17446,17447,17448],"speed":100},{"id":17461,"frames":[17449,17450,17451,17452,17453],"speed":83},{"id":17462,"frames":[17454,17455,17456,17457,17458],"speed":83},{"id":17486,"frames":[17464,17465,17466,17467,17468,17469],"speed":100},{"id":17487,"frames":[17470,17471,17472,17473,17474,17475],"speed":100},{"id":17488,"frames":[17476,17477,17478,17479,17480],"speed":83},{"id":17489,"frames":[17481,17482,17483,17484,17485],"speed":83},{"id":17513,"frames":[17491,17492,17493,17494,17495,17496],"speed":100},{"id":17514,"frames":[17497,17498,17499,17500,17501,17502],"speed":100},{"id":17515,"frames":[17503,17504,17505,17506,17507],"speed":83},{"id":17516,"frames":[17508,17509,17510,17511,17512],"speed":83},{"id":17540,"frames":[17518,17519,17520,17521,17522,17523],"speed":100},{"id":17541,"frames":[17524,17525,17526,17527,17528,17529],"speed":100},{"id":17542,"frames":[17530,17531,17532,17533,17534],"speed":83},{"id":17543,"frames":[17535,17536,17537,17538,17539],"speed":83},{"id":17567,"frames":[17545,17546,17547,17548,17549,17550],"speed":100},{"id":17568,"frames":[17551,17552,17553,17554,17555,17556],"speed":100},{"id":17569,"frames":[17557,17558,17559,17560,17561],"speed":83},{"id":17570,"frames":[17562,17563,17564,17565,17566],"speed":83},{"id":17597,"frames":[17571,17572,17573,17574,17575,17576,17577,17578],"speed":133},{"id":17598,"frames":[17579,17580,17581,17582,17583,17584,17585,17586],"speed":133},{"id":17599,"frames":[17587,17588,17589,17590,17591],"speed":83},{"id":17600,"frames":[17592,17593,17594,17595,17596],"speed":83},{"id":17625,"frames":[17601,17602,17603,17604,17605,17606],"speed":100},{"id":17626,"frames":[17607,17608,17609,17610,17611,17612],"speed":100},{"id":17627,"frames":[17613,17614,17615,17616,17617,17618],"speed":100},{"id":17628,"frames":[17619,17620,17621,17622,17623,17624],"speed":100},{"id":17653,"frames":[17629,17630,17631,17632,17633,17634],"speed":100},{"id":17654,"frames":[17635,17636,17637,17638,17639,17640],"speed":100},{"id":17655,"frames":[17641,17642,17643,17644,17645,17646],"speed":100},{"id":17656,"frames":[17647,17648,17649,17650,17651,17652],"speed":100},{"id":17680,"frames":[17658,17659,17660,17661,17662,17663],"speed":100},{"id":17681,"frames":[17664,17665,17666,17667,17668,17669],"speed":100},{"id":17682,"frames":[17670,17671,17672,17673,17674],"speed":83},{"id":17683,"frames":[17675,17676,17677,17678,17679],"speed":83},{"id":17707,"frames":[17685,17686,17687,17688,17689,17690],"speed":100},{"id":17708,"frames":[17691,17692,17693,17694,17695,17696],"speed":100},{"id":17709,"frames":[17697,17698,17699,17700,17701],"speed":83},{"id":17710,"frames":[17702,17703,17704,17705,17706],"speed":83},{"id":17727,"frames":[17711,17712,17713,17714],"speed":66},{"id":17728,"frames":[17715,17716,17717,17718],"speed":66},{"id":17729,"frames":[17719,17720,17721,17722],"speed":66},{"id":17730,"frames":[17723,17724,17725,17726],"speed":66},{"id":17747,"frames":[17731,17732,17733,17734],"speed":66},{"id":17748,"frames":[17735,17736,17737,17738],"speed":66},{"id":17749,"frames":[17739,17740,17741,17742],"speed":66},{"id":17750,"frames":[17743,17744,17745,17746],"speed":66},{"id":17767,"frames":[17751,17752,17753,17754],"speed":66},{"id":17768,"frames":[17755,17756,17757,17758],"speed":66},{"id":17769,"frames":[17759,17760,17761,17762],"speed":66},{"id":17770,"frames":[17763,17764,17765,17766],"speed":66},{"id":17787,"frames":[17771,17772,17773,17774],"speed":66},{"id":17788,"frames":[17775,17776,17777,17778],"speed":66},{"id":17789,"frames":[17779,17780,17781,17782],"speed":66},{"id":17790,"frames":[17783,17784,17785,17786],"speed":66},{"id":17807,"frames":[17791,17792,17793,17794],"speed":66},{"id":17808,"frames":[17795,17796,17797,17798],"speed":66},{"id":17809,"frames":[17799,17800,17801,17802],"speed":66},{"id":17810,"frames":[17803,17804,17805,17806],"speed":66},{"id":17827,"frames":[17811,17812,17813,17814],"speed":66},{"id":17828,"frames":[17815,17816,17817,17818],"speed":66},{"id":17829,"frames":[17819,17820,17821,17822],"speed":66},{"id":17830,"frames":[17823,17824,17825,17826],"speed":66},{"id":17881,"frames":[17859,17860,17861,17862,17863,17864],"speed":100},{"id":17882,"frames":[17865,17866,17867,17868,17869,17870],"speed":100},{"id":17883,"frames":[17871,17872,17873,17874,17875],"speed":83},{"id":17884,"frames":[17876,17877,17878,17879,17880],"speed":83},{"id":17907,"frames":[17885,17886,17887,17888,17889,17890],"speed":100},{"id":17908,"frames":[17891,17892,17893,17894,17895,17896],"speed":100},{"id":17909,"frames":[17897,17898,17899,17900,17901],"speed":83},{"id":17910,"frames":[17902,17903,17904,17905,17906],"speed":83},{"id":18182,"frames":[18160,18161,18162,18163,18164,18165],"speed":100},{"id":18183,"frames":[18166,18167,18168,18169,18170,18171],"speed":100},{"id":18184,"frames":[18172,18173,18174,18175,18176],"speed":83},{"id":18185,"frames":[18177,18178,18179,18180,18181],"speed":83},{"id":18191,"frames":[18186,18187,18188,18189,18190],"speed":83},{"id":18208,"frames":[18192,18193,18194,18195],"speed":66},{"id":18209,"frames":[18196,18197,18198,18199],"speed":66},{"id":18210,"frames":[18200,18201,18202,18203],"speed":66},{"id":18211,"frames":[18204,18205,18206,18207],"speed":66},{"id":18228,"frames":[18212,18213,18214,18215],"speed":66},{"id":18229,"frames":[18216,18217,18218,18219],"speed":66},{"id":18230,"frames":[18220,18221,18222,18223],"speed":66},{"id":18231,"frames":[18224,18225,18226,18227],"speed":66},{"id":18256,"frames":[18232,18233,18234,18235,18236,18237],"speed":100},{"id":18257,"frames":[18238,18239,18240,18241,18242,18243],"speed":100},{"id":18258,"frames":[18244,18245,18246,18247,18248,18249],"speed":100},{"id":18259,"frames":[18250,18251,18252,18253,18254,18255],"speed":100},{"id":18274,"frames":[18271,18272,18273],"speed":50},{"id":18289,"frames":[18277,18278,18279,20069],"speed":66},{"id":18290,"frames":[18280,18281,18282,20070],"speed":66},{"id":18291,"frames":[18283,18284,18285,20071],"speed":66},{"id":18292,"frames":[18286,18287,18288,20072],"speed":66},{"id":18315,"frames":[18293,18294,18295,18296,18297,18298],"speed":100},{"id":18316,"frames":[18299,18300,18301,18302,18303,18304],"speed":100},{"id":18317,"frames":[18305,18306,18307,18308,18309],"speed":83},{"id":18318,"frames":[18310,18311,18312,18313,18314],"speed":83},{"id":18341,"frames":[18319,18320,18321,18322,18323,18324],"speed":100},{"id":18342,"frames":[18325,18326,18327,18328,18329,18330],"speed":100},{"id":18343,"frames":[18331,18332,18333,18334,18335],"speed":83},{"id":18344,"frames":[18336,18337,18338,18339,18340],"speed":83},{"id":18367,"frames":[18345,18346,18347,18348,18349,18350],"speed":100},{"id":18368,"frames":[18351,18352,18353,18354,18355,18356],"speed":100},{"id":18369,"frames":[18357,18358,18359,18360,18361],"speed":83},{"id":18370,"frames":[18362,18363,18364,18365,18366],"speed":83},{"id":18374,"frames":[18371,18372,18373],"speed":50},{"id":18378,"frames":[18375,18376,18377],"speed":50},{"id":18382,"frames":[18379,18380,18381],"speed":50},{"id":18401,"frames":[18396,18397,18398,18399,18400],"speed":83},{"id":18413,"frames":[18403,18404,18405,18406,18407,18408,18409,18410,18411,18412],"speed":166},{"id":18821,"frames":[18805,18806,18807,18808],"speed":66},{"id":18822,"frames":[18809,18810,18811,18812],"speed":66},{"id":18823,"frames":[18813,18814,18815,18816],"speed":66},{"id":18824,"frames":[18817,18818,18819,18820],"speed":66},{"id":18841,"frames":[18825,18826,18827,18828],"speed":66},{"id":18842,"frames":[18829,18830,18831,18832],"speed":66},{"id":18843,"frames":[18833,18834,18835,18836],"speed":66},{"id":18844,"frames":[18837,18838,18839,18840],"speed":66},{"id":18871,"frames":[18849,18850,18851,18852,18853,18854],"speed":100},{"id":18872,"frames":[18855,18856,18857,18858,18859,18860],"speed":100},{"id":18873,"frames":[18861,18862,18863,18864,18865],"speed":83},{"id":18874,"frames":[18866,18867,18868,18869,18870],"speed":83},{"id":18974,"frames":[18911,18927,18943,18959],"speed":66},{"id":18975,"frames":[18912,18928,18944,18960],"speed":66},{"id":18976,"frames":[18913,18929,18945,18961],"speed":66},{"id":18977,"frames":[18914,18930,18946,18962],"speed":66},{"id":18978,"frames":[18915,18931,18947,18963],"speed":66},{"id":18979,"frames":[18916,18932,18948,18964],"speed":66},{"id":18980,"frames":[18917,18933,18949,18965],"speed":66},{"id":18981,"frames":[18918,18934,18950,18966],"speed":66},{"id":18982,"frames":[18919,18935,18951,18967],"speed":66},{"id":18983,"frames":[18920,18936,18952,18968],"speed":66},{"id":18984,"frames":[18921,18937,18953,18969],"speed":66},{"id":18985,"frames":[18922,18938,18954,18970],"speed":66},{"id":18986,"frames":[18923,18939,18955,18971],"speed":66},{"id":18987,"frames":[18924,18940,18956,18972],"speed":66},{"id":18988,"frames":[18925,18941,18957,18973],"speed":66},{"id":18989,"frames":[18926,18942,18958,18973],"speed":66},{"id":19439,"frames":[19417,19418,19419,19420,19421,19422],"speed":100},{"id":19440,"frames":[19423,19424,19425,19426,19427,19428],"speed":100},{"id":19441,"frames":[19429,19430,19431,19432,19433],"speed":83},{"id":19442,"frames":[19434,19435,19436,19437,19438],"speed":83},{"id":19469,"frames":[19447,19448,19449,19450,19451,19452],"speed":100},{"id":19470,"frames":[19453,19454,19455,19456,19457,19458],"speed":100},{"id":19471,"frames":[19459,19460,19461,19462,19463],"speed":83},{"id":19472,"frames":[19464,19465,19466,19467,19468],"speed":83},{"id":19506,"frames":[19474,19475,19476,19477,19478,19479,19480,19481],"speed":133},{"id":19507,"frames":[19482,19483,19484,19485,19486,19487,19488,19489],"speed":133},{"id":19508,"frames":[19490,19491,19492,19493,19494,19495,19496,19497],"speed":133},{"id":19509,"frames":[19498,19499,19500,19501,19502,19503,19504,19505],"speed":133},{"id":19542,"frames":[19510,19511,19512,19513,19514,19515,19516,19517],"speed":133},{"id":19543,"frames":[19518,19519,19520,19521,19522,19523,19524,19525],"speed":133},{"id":19544,"frames":[19526,19527,19528,19529,19530,19531,19532,19533],"speed":133},{"id":19545,"frames":[19534,19535,19536,19537,19538,19539,19540,19541],"speed":133},{"id":19578,"frames":[19546,19547,19548,19549,19550,19551,19552,19553],"speed":133},{"id":19579,"frames":[19554,19555,19556,19557,19558,19559,19560,19561],"speed":133},{"id":19580,"frames":[19562,19563,19564,19565,19566,19567,19568,19569],"speed":133},{"id":19581,"frames":[19570,19571,19572,19573,19574,19575,19576,19577],"speed":133},{"id":19598,"frames":[19582,19583,19584,19585],"speed":66},{"id":19599,"frames":[19586,19587,19588,19589],"speed":66},{"id":19600,"frames":[19590,19591,19592,19593],"speed":66},{"id":19601,"frames":[19594,19595,19596,19597],"speed":66},{"id":19630,"frames":[19602,19603,19604,19605,19606,19607,19608,19609],"speed":133},{"id":19631,"frames":[19610,19611,19612,19613,19614,19615,19616,19617],"speed":133},{"id":19632,"frames":[19618,19619,19620,19621,19622,19623],"speed":100},{"id":19633,"frames":[19624,19625,19626,19627,19628,19629],"speed":100},{"id":19656,"frames":[19634,19635,19636,19637,19638,19639],"speed":100},{"id":19657,"frames":[19640,19641,19642,19643,19644,19645],"speed":100},{"id":19658,"frames":[19646,19647,19648,19649,19650],"speed":83},{"id":19659,"frames":[19651,19652,19653,19654,19655],"speed":83},{"id":19684,"frames":[19660,19661,19662,19663,19664,19665],"speed":100},{"id":19685,"frames":[19666,19667,19668,19669,19670,19671],"speed":100},{"id":19686,"frames":[19672,19673,19674,19675,19676,19677],"speed":100},{"id":19687,"frames":[19678,19679,19680,19681,19682,19683],"speed":100},{"id":19710,"frames":[19688,19689,19690,19691,19692,19693],"speed":100},{"id":19711,"frames":[19694,19695,19696,19697,19698,19699],"speed":100},{"id":19712,"frames":[19700,19701,19702,19703,19704],"speed":83},{"id":19713,"frames":[19705,19706,19707,19708,19709],"speed":83},{"id":19746,"frames":[19724,19725,19726,19727,19728,19729],"speed":100},{"id":19747,"frames":[19730,19731,19732,19733,19734,19735],"speed":100},{"id":19748,"frames":[19736,19737,19738,19739,19740],"speed":83},{"id":19749,"frames":[19741,19742,19743,19744,19745],"speed":83},{"id":19772,"frames":[19750,19751,19752,19753,19754,19755],"speed":100},{"id":19773,"frames":[19756,19757,19758,19759,19760,19761],"speed":100},{"id":19774,"frames":[19762,19763,19764,19765,19766],"speed":83},{"id":19775,"frames":[19767,19768,19769,19770,19771],"speed":83},{"id":19798,"frames":[19776,19777,19778,19779,19780,19781],"speed":100},{"id":19799,"frames":[19782,19783,19784,19785,19786,19787],"speed":100},{"id":19800,"frames":[19788,19789,19790,19791,19792],"speed":83},{"id":19801,"frames":[19793,19794,19795,19796,19797],"speed":83},{"id":19824,"frames":[19802,19803,19804,19805,19806,19807],"speed":100},{"id":19825,"frames":[19808,19809,19810,19811,19812,19813],"speed":100},{"id":19826,"frames":[19814,19815,19816,19817,19818],"speed":83},{"id":19827,"frames":[19819,19820,19821,19822,19823],"speed":83},{"id":19850,"frames":[19828,19829,19830,19831,19832,19833],"speed":100},{"id":19851,"frames":[19834,19835,19836,19837,19838,19839],"speed":100},{"id":19852,"frames":[19840,19841,19842,19843,19844],"speed":83},{"id":19853,"frames":[19845,19846,19847,19848,19849],"speed":83},{"id":19876,"frames":[19854,19855,19856,19857,19858,19859],"speed":100},{"id":19877,"frames":[19860,19861,19862,19863,19864,19865],"speed":100},{"id":19878,"frames":[19866,19867,19868,19869,19870],"speed":83},{"id":19879,"frames":[19871,19872,19873,19874,19875],"speed":83},{"id":19902,"frames":[19880,19881,19882,19883,19884,19885],"speed":100},{"id":19903,"frames":[19886,19887,19888,19889,19890,19891],"speed":100},{"id":19904,"frames":[19892,19893,19894,19895,19896],"speed":83},{"id":19905,"frames":[19897,19898,19899,19900,19901],"speed":83},{"id":19928,"frames":[19906,19907,19908,19909,19910,19911],"speed":100},{"id":19929,"frames":[19912,19913,19914,19915,19916,19917],"speed":100},{"id":19930,"frames":[19918,19919,19920,19921,19922],"speed":83},{"id":19931,"frames":[19923,19924,19925,19926,19927],"speed":83},{"id":19954,"frames":[19932,19933,19934,19935,19936,19937],"speed":100},{"id":19955,"frames":[19938,19939,19940,19941,19942,19943],"speed":100},{"id":19956,"frames":[19944,19945,19946,19947,19948],"speed":83},{"id":19957,"frames":[19949,19950,19951,19952,19953],"speed":83},{"id":19980,"frames":[19958,19959,19960,19961,19962,19963],"speed":100},{"id":19981,"frames":[19964,19965,19966,19967,19968,19969],"speed":100},{"id":19982,"frames":[19970,19971,19972,19973,19974],"speed":83},{"id":19983,"frames":[19975,19976,19977,19978,19979],"speed":83},{"id":20006,"frames":[19984,19985,19986,19987,19988,19989],"speed":100},{"id":20007,"frames":[19990,19991,19992,19993,19994,19995],"speed":100},{"id":20008,"frames":[19996,19997,19998,19999,20000],"speed":83},{"id":20009,"frames":[20001,20002,20003,20004,20005],"speed":83},{"id":20032,"frames":[20010,20011,20012,20013,20014,20015],"speed":100},{"id":20033,"frames":[20016,20017,20018,20019,20020,20021],"speed":100},{"id":20034,"frames":[20022,20023,20024,20025,20026],"speed":83},{"id":20035,"frames":[20027,20028,20029,20030,20031],"speed":83},{"id":20058,"frames":[20036,20037,20038,20039,20040,20041],"speed":100},{"id":20059,"frames":[20042,20043,20044,20045,20046,20047],"speed":100},{"id":20060,"frames":[20048,20049,20050,20051,20052],"speed":83},{"id":20061,"frames":[20053,20054,20055,20056,20057],"speed":83},{"id":20085,"frames":[20073,20074,20075],"speed":50},{"id":20086,"frames":[20076,20077,20078],"speed":50},{"id":20087,"frames":[20079,20080,20081],"speed":50},{"id":20088,"frames":[20082,20083,20084],"speed":50},{"id":20105,"frames":[20089,20090,20091,20092],"speed":66},{"id":20106,"frames":[20093,20094,20095,20096],"speed":66},{"id":20107,"frames":[20097,20098,20099,20100],"speed":66},{"id":20108,"frames":[20101,20102,20103,20104],"speed":66},{"id":20125,"frames":[20109,20110,20111,20112],"speed":66},{"id":20126,"frames":[20113,20114,20115,20116],"speed":66},{"id":20127,"frames":[20117,20118,20119,20120],"speed":66},{"id":20128,"frames":[20121,20122,20123,20124],"speed":66},{"id":20161,"frames":[20129,20130,20131,20132,20133,20134,20135,20136],"speed":133},{"id":20162,"frames":[20137,20138,20139,20140,20141,20142,20143,20144],"speed":133},{"id":20163,"frames":[20145,20146,20147,20148,20149,20150,20151,20152],"speed":133},{"id":20164,"frames":[20153,20154,20155,20156,20157,20158,20159,20160],"speed":133},{"id":20229,"frames":[20207,20208,20209,20210,20211,20212],"speed":100},{"id":20230,"frames":[20213,20214,20215,20216,20217,20218],"speed":100},{"id":20231,"frames":[20219,20220,20221,20222,20223],"speed":83},{"id":20232,"frames":[20224,20225,20226,20227,20228],"speed":83},{"id":20262,"frames":[20240,20241,20242,20243,20244,20245],"speed":100},{"id":20263,"frames":[20246,20247,20248,20249,20250,20251],"speed":100},{"id":20264,"frames":[20252,20253,20254,20255,20256],"speed":83},{"id":20265,"frames":[20257,20258,20259,20260,20261],"speed":83},{"id":20289,"frames":[20267,20268,20269,20270,20271,20272],"speed":100},{"id":20290,"frames":[20273,20274,20275,20276,20277,20278],"speed":100},{"id":20291,"frames":[20279,20280,20281,20282,20283],"speed":83},{"id":20292,"frames":[20284,20285,20286,20287,20288],"speed":83},{"id":20316,"frames":[20294,20295,20296,20297,20298,20299],"speed":100},{"id":20317,"frames":[20300,20301,20302,20303,20304,20305],"speed":100},{"id":20318,"frames":[20306,20307,20308,20309,20310],"speed":83},{"id":20319,"frames":[20311,20312,20313,20314,20315],"speed":83},{"id":20343,"frames":[20321,20322,20323,20324,20325,20326],"speed":100},{"id":20344,"frames":[20327,20328,20329,20330,20331,20332],"speed":100},{"id":20345,"frames":[20333,20334,20335,20336,20337],"speed":83},{"id":20346,"frames":[20338,20339,20340,20341,20342],"speed":83},{"id":20370,"frames":[20348,20349,20350,20351,20352,20353],"speed":100},{"id":20371,"frames":[20354,20355,20356,20357,20358,20359],"speed":100},{"id":20372,"frames":[20360,20361,20362,20363,20364],"speed":83},{"id":20373,"frames":[20365,20366,20367,20368,20369],"speed":83},{"id":20397,"frames":[20375,20376,20377,20378,20379,20380],"speed":100},{"id":20398,"frames":[20381,20382,20383,20384,20385,20386],"speed":100},{"id":20399,"frames":[20387,20388,20389,20390,20391],"speed":83},{"id":20400,"frames":[20392,20393,20394,20395,20396],"speed":83},{"id":20405,"frames":[20401,20402,20403,20404],"speed":66},{"id":20429,"frames":[20407,20408,20409,20410,20411,20412],"speed":100},{"id":20430,"frames":[20413,20414,20415,20416,20417,20418],"speed":100},{"id":20431,"frames":[20419,20420,20421,20422,20423],"speed":83},{"id":20432,"frames":[20424,20425,20426,20427,20428],"speed":83},{"id":20456,"frames":[20434,20435,20436,20437,20438,20439],"speed":100},{"id":20457,"frames":[20440,20441,20442,20443,20444,20445],"speed":100},{"id":20458,"frames":[20446,20447,20448,20449,20450],"speed":83},{"id":20459,"frames":[20451,20452,20453,20454,20455],"speed":83},{"id":20483,"frames":[20461,20462,20463,20464,20465,20466],"speed":100},{"id":20484,"frames":[20467,20468,20469,20470,20471,20472],"speed":100},{"id":20485,"frames":[20473,20474,20475,20476,20477],"speed":83},{"id":20486,"frames":[20478,20479,20480,20481,20482],"speed":83},{"id":20503,"frames":[20487,20488,20489,20490,20491,20492,20493,20494,20495,20496,20497,20498,20499,20500,20501,20502],"speed":266},{"id":20532,"frames":[20510,20511,20512,20513,20514,20515],"speed":100},{"id":20533,"frames":[20516,20517,20518,20519,20520,20521],"speed":100},{"id":20534,"frames":[20522,20523,20524,20525,20526],"speed":83},{"id":20535,"frames":[20527,20528,20529,20530,20531],"speed":83},{"id":20559,"frames":[20537,20538,20539,20540,20541,20542],"speed":100},{"id":20560,"frames":[20543,20544,20545,20546,20547,20548],"speed":100},{"id":20561,"frames":[20549,20550,20551,20552,20553],"speed":83},{"id":20562,"frames":[20554,20555,20556,20557,20558],"speed":83},{"id":20586,"frames":[20564,20565,20566,20567,20568,20569],"speed":100},{"id":20587,"frames":[20570,20571,20572,20573,20574,20575],"speed":100},{"id":20588,"frames":[20576,20577,20578,20579,20580],"speed":83},{"id":20589,"frames":[20581,20582,20583,20584,20585],"speed":83},{"id":20613,"frames":[20591,20592,20593,20594,20595,20596],"speed":100},{"id":20614,"frames":[20597,20598,20599,20600,20601,20602],"speed":100},{"id":20615,"frames":[20603,20604,20605,20606,20607],"speed":83},{"id":20616,"frames":[20608,20609,20610,20611,20612],"speed":83},{"id":20640,"frames":[20618,20619,20620,20621,20622,20623],"speed":100},{"id":20641,"frames":[20624,20625,20626,20627,20628,20629],"speed":100},{"id":20642,"frames":[20630,20631,20632,20633,20634],"speed":83},{"id":20643,"frames":[20635,20636,20637,20638,20639],"speed":83},{"id":20667,"frames":[20645,20646,20647,20648,20649,20650],"speed":100},{"id":20668,"frames":[20651,20652,20653,20654,20655,20656],"speed":100},{"id":20669,"frames":[20657,20658,20659,20660,20661],"speed":83},{"id":20670,"frames":[20662,20663,20664,20665,20666],"speed":83},{"id":20694,"frames":[20672,20673,20674,20675,20676,20677],"speed":100},{"id":20695,"frames":[20678,20679,20680,20681,20682,20683],"speed":100},{"id":20696,"frames":[20684,20685,20686,20687,20688],"speed":83},{"id":20697,"frames":[20689,20690,20691,20692,20693],"speed":83},{"id":20721,"frames":[20699,20700,20701,20702,20703,20704],"speed":100},{"id":20722,"frames":[20705,20706,20707,20708,20709,20710],"speed":100},{"id":20723,"frames":[20711,20712,20713,20714,20715],"speed":83},{"id":20724,"frames":[20716,20717,20718,20719,20720],"speed":83},{"id":20748,"frames":[20726,20727,20728,20729,20730,20731],"speed":100},{"id":20749,"frames":[20732,20733,20734,20735,20736,20737],"speed":100},{"id":20750,"frames":[20738,20739,20740,20741,20742],"speed":83},{"id":20751,"frames":[20743,20744,20745,20746,20747],"speed":83},{"id":20775,"frames":[20753,20754,20755,20756,20757,20758],"speed":100},{"id":20776,"frames":[20759,20760,20761,20762,20763,20764],"speed":100},{"id":20777,"frames":[20765,20766,20767,20768,20769],"speed":83},{"id":20778,"frames":[20770,20771,20772,20773,20774],"speed":83},{"id":20802,"frames":[20780,20781,20782,20783,20784,20785],"speed":100},{"id":20803,"frames":[20786,20787,20788,20789,20790,20791],"speed":100},{"id":20804,"frames":[20792,20793,20794,20795,20796],"speed":83},{"id":20805,"frames":[20797,20798,20799,20800,20801],"speed":83},{"id":20829,"frames":[20807,20808,20809,20810,20811,20812],"speed":100},{"id":20830,"frames":[20813,20814,20815,20816,20817,20818],"speed":100},{"id":20831,"frames":[20819,20820,20821,20822,20823],"speed":83},{"id":20832,"frames":[20824,20825,20826,20827,20828],"speed":83},{"id":20856,"frames":[20834,20835,20836,20837,20838,20839],"speed":100},{"id":20857,"frames":[20840,20841,20842,20843,20844,20845],"speed":100},{"id":20858,"frames":[20846,20847,20848,20849,20850],"speed":83},{"id":20859,"frames":[20851,20852,20853,20854,20855],"speed":83},{"id":20883,"frames":[20861,20862,20863,20864,20865,20866],"speed":100},{"id":20884,"frames":[20867,20868,20869,20870,20871,20872],"speed":100},{"id":20885,"frames":[20873,20874,20875,20876,20877],"speed":83},{"id":20886,"frames":[20878,20879,20880,20881,20882],"speed":83},{"id":20910,"frames":[20888,20889,20890,20891,20892,20893],"speed":100},{"id":20911,"frames":[20894,20895,20896,20897,20898,20899],"speed":100},{"id":20912,"frames":[20900,20901,20902,20903,20904],"speed":83},{"id":20913,"frames":[20905,20906,20907,20908,20909],"speed":83},{"id":20937,"frames":[20915,20916,20917,20918,20919,20920],"speed":100},{"id":20938,"frames":[20921,20922,20923,20924,20925,20926],"speed":100},{"id":20939,"frames":[20927,20928,20929,20930,20931],"speed":83},{"id":20940,"frames":[20932,20933,20934,20935,20936],"speed":83},{"id":20964,"frames":[20942,20943,20944,20945,20946,20947],"speed":100},{"id":20965,"frames":[20948,20949,20950,20951,20952,20953],"speed":100},{"id":20966,"frames":[20954,20955,20956,20957,20958],"speed":83},{"id":20967,"frames":[20959,20960,20961,20962,20963],"speed":83},{"id":20991,"frames":[20969,20970,20971,20972,20973,20974],"speed":100},{"id":20992,"frames":[20975,20976,20977,20978,20979,20980],"speed":100},{"id":20993,"frames":[20981,20982,20983,20984,20985],"speed":83},{"id":20994,"frames":[20986,20987,20988,20989,20990],"speed":83},{"id":21018,"frames":[20996,20997,20998,20999,21000,21001],"speed":100},{"id":21019,"frames":[21002,21003,21004,21005,21006,21007],"speed":100},{"id":21020,"frames":[21008,21009,21010,21011,21012],"speed":83},{"id":21021,"frames":[21013,21014,21015,21016,21017],"speed":83},{"id":21045,"frames":[21023,21024,21025,21026,21027,21028],"speed":100},{"id":21046,"frames":[21029,21030,21031,21032,21033,21034],"speed":100},{"id":21047,"frames":[21035,21036,21037,21038,21039],"speed":83},{"id":21048,"frames":[21040,21041,21042,21043,21044],"speed":83},{"id":21072,"frames":[21050,21051,21052,21053,21054,21055],"speed":100},{"id":21073,"frames":[21056,21057,21058,21059,21060,21061],"speed":100},{"id":21074,"frames":[21062,21063,21064,21065,21066],"speed":83},{"id":21075,"frames":[21067,21068,21069,21070,21071],"speed":83},{"id":21099,"frames":[21077,21078,21079,21080,21081,21082],"speed":100},{"id":21100,"frames":[21083,21084,21085,21086,21087,21088],"speed":100},{"id":21101,"frames":[21089,21090,21091,21092,21093],"speed":83},{"id":21102,"frames":[21094,21095,21096,21097,21098],"speed":83},{"id":21126,"frames":[21104,21105,21106,21107,21108,21109],"speed":100},{"id":21127,"frames":[21110,21111,21112,21113,21114,21115],"speed":100},{"id":21128,"frames":[21116,21117,21118,21119,21120],"speed":83},{"id":21129,"frames":[21121,21122,21123,21124,21125],"speed":83},{"id":21153,"frames":[21131,21132,21133,21134,21135,21136],"speed":100},{"id":21154,"frames":[21137,21138,21139,21140,21141,21142],"speed":100},{"id":21155,"frames":[21143,21144,21145,21146,21147],"speed":83},{"id":21156,"frames":[21148,21149,21150,21151,21152],"speed":83},{"id":21180,"frames":[21158,21159,21160,21161,21162,21163],"speed":100},{"id":21181,"frames":[21164,21165,21166,21167,21168,21169],"speed":100},{"id":21182,"frames":[21170,21171,21172,21173,21174],"speed":83},{"id":21183,"frames":[21175,21176,21177,21178,21179],"speed":83},{"id":21207,"frames":[21185,21186,21187,21188,21189,21190],"speed":100},{"id":21208,"frames":[21191,21192,21193,21194,21195,21196],"speed":100},{"id":21209,"frames":[21197,21198,21199,21200,21201],"speed":83},{"id":21210,"frames":[21202,21203,21204,21205,21206],"speed":83},{"id":21234,"frames":[21212,21213,21214,21215,21216,21217],"speed":100},{"id":21235,"frames":[21218,21219,21220,21221,21222,21223],"speed":100},{"id":21236,"frames":[21224,21225,21226,21227,21228],"speed":83},{"id":21237,"frames":[21229,21230,21231,21232,21233],"speed":83},{"id":21261,"frames":[21239,21240,21241,21242,21243,21244],"speed":100},{"id":21262,"frames":[21245,21246,21247,21248,21249,21250],"speed":100},{"id":21263,"frames":[21251,21252,21253,21254,21255],"speed":83},{"id":21264,"frames":[21256,21257,21258,21259,21260],"speed":83},{"id":21288,"frames":[21266,21267,21268,21269,21270,21271],"speed":100},{"id":21289,"frames":[21272,21273,21274,21275,21276,21277],"speed":100},{"id":21290,"frames":[21278,21279,21280,21281,21282],"speed":83},{"id":21291,"frames":[21283,21284,21285,21286,21287],"speed":83},{"id":21315,"frames":[21293,21294,21295,21296,21297,21298],"speed":100},{"id":21316,"frames":[21299,21300,21301,21302,21303,21304],"speed":100},{"id":21317,"frames":[21305,21306,21307,21308,21309],"speed":83},{"id":21318,"frames":[21310,21311,21312,21313,21314],"speed":83},{"id":21342,"frames":[21320,21321,21322,21323,21324,21325],"speed":100},{"id":21343,"frames":[21326,21327,21328,21329,21330,21331],"speed":100},{"id":21344,"frames":[21332,21333,21334,21335,21336],"speed":83},{"id":21345,"frames":[21337,21338,21339,21340,21341],"speed":83},{"id":21369,"frames":[21347,21348,21349,21350,21351,21352],"speed":100},{"id":21370,"frames":[21353,21354,21355,21356,21357,21358],"speed":100},{"id":21371,"frames":[21359,21360,21361,21362,21363],"speed":83},{"id":21372,"frames":[21364,21365,21366,21367,21368],"speed":83},{"id":21396,"frames":[21374,21375,21376,21377,21378,21379],"speed":100},{"id":21397,"frames":[21380,21381,21382,21383,21384,21385],"speed":100},{"id":21398,"frames":[21386,21387,21388,21389,21390],"speed":83},{"id":21399,"frames":[21391,21392,21393,21394,21395],"speed":83},{"id":21423,"frames":[21401,21402,21403,21404,21405,21406],"speed":100},{"id":21424,"frames":[21407,21408,21409,21410,21411,21412],"speed":100},{"id":21425,"frames":[21413,21414,21415,21416,21417],"speed":83},{"id":21426,"frames":[21418,21419,21420,21421,21422],"speed":83},{"id":21450,"frames":[21428,21429,21430,21431,21432,21433],"speed":100},{"id":21451,"frames":[21434,21435,21436,21437,21438,21439],"speed":100},{"id":21452,"frames":[21440,21441,21442,21443,21444],"speed":83},{"id":21453,"frames":[21445,21446,21447,21448,21449],"speed":83},{"id":21477,"frames":[21455,21456,21457,21458,21459,21460],"speed":100},{"id":21478,"frames":[21461,21462,21463,21464,21465,21466],"speed":100},{"id":21479,"frames":[21467,21468,21469,21470,21471],"speed":83},{"id":21480,"frames":[21472,21473,21474,21475,21476],"speed":83},{"id":21504,"frames":[21482,21483,21484,21485,21486,21487],"speed":100},{"id":21505,"frames":[21488,21489,21490,21491,21492,21493],"speed":100},{"id":21506,"frames":[21494,21495,21496,21497,21498],"speed":83},{"id":21507,"frames":[21499,21500,21501,21502,21503],"speed":83},{"id":21531,"frames":[21509,21510,21511,21512,21513,21514],"speed":100},{"id":21532,"frames":[21515,21516,21517,21518,21519,21520],"speed":100},{"id":21533,"frames":[21521,21522,21523,21524,21525],"speed":83},{"id":21534,"frames":[21526,21527,21528,21529,21530],"speed":83},{"id":21558,"frames":[21536,21537,21538,21539,21540,21541],"speed":100},{"id":21559,"frames":[21542,21543,21544,21545,21546,21547],"speed":100},{"id":21560,"frames":[21548,21549,21550,21551,21552],"speed":83},{"id":21561,"frames":[21553,21554,21555,21556,21557],"speed":83},{"id":21585,"frames":[21563,21564,21565,21566,21567,21568],"speed":100},{"id":21586,"frames":[21569,21570,21571,21572,21573,21574],"speed":100},{"id":21587,"frames":[21575,21576,21577,21578,21579],"speed":83},{"id":21588,"frames":[21580,21581,21582,21583,21584],"speed":83},{"id":21612,"frames":[21590,21591,21592,21593,21594,21595],"speed":100},{"id":21613,"frames":[21596,21597,21598,21599,21600,21601],"speed":100},{"id":21614,"frames":[21602,21603,21604,21605,21606],"speed":83},{"id":21615,"frames":[21607,21608,21609,21610,21611],"speed":83},{"id":21639,"frames":[21617,21618,21619,21620,21621,21622],"speed":100},{"id":21640,"frames":[21623,21624,21625,21626,21627,21628],"speed":100},{"id":21641,"frames":[21629,21630,21631,21632,21633],"speed":83},{"id":21642,"frames":[21634,21635,21636,21637,21638],"speed":83},{"id":21666,"frames":[21644,21645,21646,21647,21648,21649],"speed":100},{"id":21667,"frames":[21650,21651,21652,21653,21654,21655],"speed":100},{"id":21668,"frames":[21656,21657,21658,21659,21660],"speed":83},{"id":21669,"frames":[21661,21662,21663,21664,21665],"speed":83},{"id":21693,"frames":[21671,21672,21673,21674,21675,21676],"speed":100},{"id":21694,"frames":[21677,21678,21679,21680,21681,21682],"speed":100},{"id":21695,"frames":[21683,21684,21685,21686,21687],"speed":83},{"id":21696,"frames":[21688,21689,21690,21691,21692],"speed":83},{"id":21720,"frames":[21698,21699,21700,21701,21702,21703],"speed":100},{"id":21721,"frames":[21704,21705,21706,21707,21708,21709],"speed":100},{"id":21722,"frames":[21710,21711,21712,21713,21714],"speed":83},{"id":21723,"frames":[21715,21716,21717,21718,21719],"speed":83},{"id":21800,"frames":[21792,21793],"speed":33},{"id":21801,"frames":[21794,21795],"speed":33},{"id":21802,"frames":[21796,21797],"speed":33},{"id":21803,"frames":[21798,21799],"speed":33},{"id":21820,"frames":[21804,21805,21806,21807],"speed":66},{"id":21821,"frames":[21808,21809,21810,21811],"speed":66},{"id":21822,"frames":[21812,21813,21814,21815],"speed":66},{"id":21823,"frames":[21816,21817,21818,21819],"speed":66},{"id":21847,"frames":[21824,21825,21826,21827,21828,21829],"speed":100},{"id":21848,"frames":[21830,21831,21832,21833,21834,21835],"speed":100},{"id":21849,"frames":[21836,21837,21838,21839,21840,21841],"speed":100},{"id":21850,"frames":[21842,21843,21844,21845,21846],"speed":83},{"id":21867,"frames":[21851,21852,21853,21854],"speed":66},{"id":21868,"frames":[21855,21856,21857,21858],"speed":66},{"id":21869,"frames":[21859,21860,21861,21862],"speed":66},{"id":21870,"frames":[21863,21864,21865,21866],"speed":66},{"id":21891,"frames":[21871,21872,21873,21874,21875],"speed":83},{"id":21892,"frames":[21876,21877,21878,21879,21880],"speed":83},{"id":21893,"frames":[21881,21882,21883,21884,21885],"speed":83},{"id":21894,"frames":[21886,21887,21888,21889,21890],"speed":83},{"id":21919,"frames":[21895,21896,21897,21898,21899,21900],"speed":100},{"id":21920,"frames":[21901,21902,21903,21904,21905,21906],"speed":100},{"id":21921,"frames":[21907,21908,21909,21910,21911,21912],"speed":100},{"id":21922,"frames":[21913,21914,21915,21916,21917,21918],"speed":100},{"id":21945,"frames":[21923,21924,21925,21926,21927,21928],"speed":100},{"id":21946,"frames":[21929,21930,21931,21932,21933,21934],"speed":100},{"id":21947,"frames":[21935,21936,21937,21938,21939],"speed":83},{"id":21948,"frames":[21940,21941,21942,21943,21944],"speed":83},{"id":21965,"frames":[21949,21950,21951,21952],"speed":66},{"id":21966,"frames":[21953,21954,21955,21956],"speed":66},{"id":21967,"frames":[21957,21958,21959,21960],"speed":66},{"id":21968,"frames":[21961,21962,21963,21964],"speed":66},{"id":22003,"frames":[21981,21982,21983,21984,21985,21986],"speed":100},{"id":22004,"frames":[21987,21988,21989,21990,21991,21992],"speed":100},{"id":22005,"frames":[21993,21994,21995,21996,21997],"speed":83},{"id":22006,"frames":[21998,21999,22000,22001,22002],"speed":83},{"id":22029,"frames":[22007,22008,22009,22010,22011,22012],"speed":100},{"id":22030,"frames":[22013,22014,22015,22016,22017,22018],"speed":100},{"id":22031,"frames":[22019,22020,22021,22022,22023],"speed":83},{"id":22032,"frames":[22024,22025,22026,22027,22028],"speed":83},{"id":22062,"frames":[22040,22041,22042,22043,22044,22045],"speed":100},{"id":22063,"frames":[22046,22047,22048,22049,22050,22051],"speed":100},{"id":22064,"frames":[22052,22053,22054,22055,22056],"speed":83},{"id":22065,"frames":[22057,22058,22059,22060,22061],"speed":83},{"id":22070,"frames":[22067,22068,22069],"speed":50},{"id":22234,"frames":[22212,22213,22214,22215,22216,22217],"speed":100},{"id":22235,"frames":[22218,22219,22220,22221,22222,22223],"speed":100},{"id":22236,"frames":[22224,22225,22226,22227,22228],"speed":83},{"id":22237,"frames":[22229,22230,22231,22232,22233],"speed":83},{"id":22265,"frames":[22256,22257,22258,22259,22260,22261,22262,22263,22264],"speed":150},{"id":22288,"frames":[22266,22267,22268,22269,22270,22271],"speed":100},{"id":22289,"frames":[22272,22273,22274,22275,22276,22277],"speed":100},{"id":22290,"frames":[22278,22279,22280,22281,22282],"speed":83},{"id":22291,"frames":[22283,22284,22285,22286,22287],"speed":83},{"id":22314,"frames":[22292,22293,22294,22295,22296,22297],"speed":100},{"id":22315,"frames":[22298,22299,22300,22301,22302,22303],"speed":100},{"id":22316,"frames":[22304,22305,22306,22307,22308],"speed":83},{"id":22317,"frames":[22309,22310,22311,22312,22313],"speed":83},{"id":22340,"frames":[22318,22319,22320,22321,22322,22323],"speed":100},{"id":22341,"frames":[22324,22325,22326,22327,22328,22329],"speed":100},{"id":22342,"frames":[22330,22331,22332,22333,22334],"speed":83},{"id":22343,"frames":[22335,22336,22337,22338,22339],"speed":83},{"id":22366,"frames":[22344,22345,22346,22347,22348,22349],"speed":100},{"id":22367,"frames":[22350,22351,22352,22353,22354,22355],"speed":100},{"id":22368,"frames":[22356,22357,22358,22359,22360],"speed":83},{"id":22369,"frames":[22361,22362,22363,22364,22365],"speed":83},{"id":22392,"frames":[22370,22371,22372,22373,22374,22375],"speed":100},{"id":22393,"frames":[22376,22377,22378,22379,22380,22381],"speed":100},{"id":22394,"frames":[22382,22383,22384,22385,22386],"speed":83},{"id":22395,"frames":[22387,22388,22389,22390,22391],"speed":83},{"id":22418,"frames":[22396,22397,22398,22399,22400,22401],"speed":100},{"id":22419,"frames":[22402,22403,22404,22405,22406,22407],"speed":100},{"id":22420,"frames":[22408,22409,22410,22411,22412],"speed":83},{"id":22421,"frames":[22413,22414,22415,22416,22417],"speed":83},{"id":22444,"frames":[22422,22423,22424,22425,22426,22427],"speed":100},{"id":22445,"frames":[22428,22429,22430,22431,22432,22433],"speed":100},{"id":22446,"frames":[22434,22435,22436,22437,22438],"speed":83},{"id":22447,"frames":[22439,22440,22441,22442,22443],"speed":83},{"id":22470,"frames":[22448,22449,22450,22451,22452,22453],"speed":100},{"id":22471,"frames":[22454,22455,22456,22457,22458,22459],"speed":100},{"id":22472,"frames":[22460,22461,22462,22463,22464],"speed":83},{"id":22473,"frames":[22465,22466,22467,22468,22469],"speed":83},{"id":22537,"frames":[22515,22516,22517,22518,22519,22520],"speed":100},{"id":22538,"frames":[22521,22522,22523,22524,22525,22526],"speed":100},{"id":22539,"frames":[22527,22528,22529,22530,22531],"speed":83},{"id":22540,"frames":[22532,22533,22534,22535,22536],"speed":83},{"id":22563,"frames":[22541,22542,22543,22544,22545,22546],"speed":100},{"id":22564,"frames":[22547,22548,22549,22550,22551,22552],"speed":100},{"id":22565,"frames":[22553,22554,22555,22556,22557],"speed":83},{"id":22566,"frames":[22558,22559,22560,22561,22562],"speed":83},{"id":22589,"frames":[22567,22568,22569,22570,22571,22572],"speed":100},{"id":22590,"frames":[22573,22574,22575,22576,22577,22578],"speed":100},{"id":22591,"frames":[22579,22580,22581,22582,22583],"speed":83},{"id":22592,"frames":[22584,22585,22586,22587,22588],"speed":83},{"id":22615,"frames":[22593,22594,22595,22596,22597,22598],"speed":100},{"id":22616,"frames":[22599,22600,22601,22602,22603,22604],"speed":100},{"id":22617,"frames":[22605,22606,22607,22608,22609],"speed":83},{"id":22618,"frames":[22610,22611,22612,22613,22614],"speed":83},{"id":22641,"frames":[22619,22620,22621,22622,22623,22624],"speed":100},{"id":22642,"frames":[22625,22626,22627,22628,22629,22630],"speed":100},{"id":22643,"frames":[22631,22632,22633,22634,22635],"speed":83},{"id":22644,"frames":[22636,22637,22638,22639,22640],"speed":83},{"id":22667,"frames":[22645,22646,22647,22648,22649,22650],"speed":100},{"id":22668,"frames":[22651,22652,22653,22654,22655,22656],"speed":100},{"id":22669,"frames":[22657,22658,22659,22660,22661],"speed":83},{"id":22670,"frames":[22662,22663,22664,22665,22666],"speed":83},{"id":22693,"frames":[22671,22672,22673,22674,22675,22676],"speed":100},{"id":22694,"frames":[22677,22678,22679,22680,22681,22682],"speed":100},{"id":22695,"frames":[22683,22684,22685,22686,22687],"speed":83},{"id":22696,"frames":[22688,22689,22690,22691,22692],"speed":83},{"id":22719,"frames":[22697,22698,22699,22700,22701,22702],"speed":100},{"id":22720,"frames":[22703,22704,22705,22706,22707,22708],"speed":100},{"id":22721,"frames":[22709,22710,22711,22712,22713],"speed":83},{"id":22722,"frames":[22714,22715,22716,22717,22718],"speed":83},{"id":22746,"frames":[22724,22725,22726,22727,22728,22729],"speed":100},{"id":22747,"frames":[22730,22731,22732,22733,22734,22735],"speed":100},{"id":22748,"frames":[22736,22737,22738,22739,22740],"speed":83},{"id":22749,"frames":[22741,22742,22743,22744,22745],"speed":83},{"id":22772,"frames":[22750,22751,22752,22753,22754,22755],"speed":100},{"id":22773,"frames":[22756,22757,22758,22759,22760,22761],"speed":100},{"id":22774,"frames":[22762,22763,22764,22765,22766],"speed":83},{"id":22775,"frames":[22767,22768,22769,22770,22771],"speed":83},{"id":22798,"frames":[22776,22777,22778,22779,22780,22781],"speed":100},{"id":22799,"frames":[22782,22783,22784,22785,22786,22787],"speed":100},{"id":22800,"frames":[22788,22789,22790,22791,22792],"speed":83},{"id":22801,"frames":[22793,22794,22795,22796,22797],"speed":83},{"id":22862,"frames":[22830,22831,22832,22833,22834,22835,22836,22837],"speed":133},{"id":22863,"frames":[22838,22839,22840,22841,22842,22843,22844,22845],"speed":133},{"id":22864,"frames":[22846,22847,22848,22849,22850,22851,22852,22853],"speed":133},{"id":22865,"frames":[22854,22855,22856,22857,22858,22859,22860,22861],"speed":133},{"id":22898,"frames":[22866,22867,22868,22869,22870,22871,22872,22873],"speed":133},{"id":22899,"frames":[22874,22875,22876,22877,22878,22879,22880,22881],"speed":133},{"id":22900,"frames":[22882,22883,22884,22885,22886,22887,22888,22889],"speed":133},{"id":22901,"frames":[22890,22891,22892,22893,22894,22895,22896,22897],"speed":133},{"id":22924,"frames":[22902,22903,22904,22905,22906,22907],"speed":100},{"id":22925,"frames":[22908,22909,22910,22911,22912,22913],"speed":100},{"id":22926,"frames":[22914,22915,22916,22917,22918],"speed":83},{"id":22927,"frames":[22919,22920,22921,22922,22923],"speed":83},{"id":22960,"frames":[22928,22929,22930,22931,22932,22933,22934,22935],"speed":133},{"id":22961,"frames":[22936,22937,22938,22939,22940,22941,22942,22943],"speed":133},{"id":22962,"frames":[22944,22945,22946,22947,22948,22949,22950,22951],"speed":133},{"id":22963,"frames":[22952,22953,22954,22955,22956,22957,22958,22959],"speed":133},{"id":22986,"frames":[22964,22965,22966,22967,22968,22969],"speed":100},{"id":22987,"frames":[22970,22971,22972,22973,22974,22975],"speed":100},{"id":22988,"frames":[22976,22977,22978,22979,22980],"speed":83},{"id":22989,"frames":[22981,22982,22983,22984,22985],"speed":83},{"id":23012,"frames":[22990,22991,22992,22993,22994,22995],"speed":100},{"id":23013,"frames":[22996,22997,22998,22999,23000,23001],"speed":100},{"id":23014,"frames":[23002,23003,23004,23005,23006],"speed":83},{"id":23015,"frames":[23007,23008,23009,23010,23011],"speed":83},{"id":23038,"frames":[23016,23017,23018,23019,23020,23021],"speed":100},{"id":23039,"frames":[23022,23023,23024,23025,23026,23027],"speed":100},{"id":23040,"frames":[23028,23029,23030,23031,23032],"speed":83},{"id":23041,"frames":[23033,23034,23035,23036,23037],"speed":83},{"id":23064,"frames":[23042,23043,23044,23045,23046,23047],"speed":100},{"id":23065,"frames":[23048,23049,23050,23051,23052,23053],"speed":100},{"id":23066,"frames":[23054,23055,23056,23057,23058],"speed":83},{"id":23067,"frames":[23059,23060,23061,23062,23063],"speed":83},{"id":23092,"frames":[23070,23071,23072,23073,23074,23075],"speed":100},{"id":23093,"frames":[23076,23077,23078,23079,23080,23081],"speed":100},{"id":23094,"frames":[23082,23083,23084,23085,23086],"speed":83},{"id":23095,"frames":[23087,23088,23089,23090,23091],"speed":83},{"id":23119,"frames":[23097,23098,23099,23100,23101,23102],"speed":100},{"id":23120,"frames":[23103,23104,23105,23106,23107,23108],"speed":100},{"id":23121,"frames":[23109,23110,23111,23112,23113],"speed":83},{"id":23122,"frames":[23114,23115,23116,23117,23118],"speed":83},{"id":23146,"frames":[23124,23125,23126,23127,23128,23129],"speed":100},{"id":23147,"frames":[23130,23131,23132,23133,23134,23135],"speed":100},{"id":23148,"frames":[23136,23137,23138,23139,23140],"speed":83},{"id":23149,"frames":[23141,23142,23143,23144,23145],"speed":83},{"id":23173,"frames":[23151,23152,23153,23154,23155,23156],"speed":100},{"id":23174,"frames":[23157,23158,23159,23160,23161,23162],"speed":100},{"id":23175,"frames":[23163,23164,23165,23166,23167],"speed":83},{"id":23176,"frames":[23168,23169,23170,23171,23172],"speed":83},{"id":23200,"frames":[23178,23179,23180,23181,23182,23183],"speed":100},{"id":23201,"frames":[23184,23185,23186,23187,23188,23189],"speed":100},{"id":23202,"frames":[23190,23191,23192,23193,23194],"speed":83},{"id":23203,"frames":[23195,23196,23197,23198,23199],"speed":83},{"id":23231,"frames":[23209,23210,23211,23212,23213,23214],"speed":100},{"id":23232,"frames":[23215,23216,23217,23218,23219,23220],"speed":100},{"id":23233,"frames":[23221,23222,23223,23224,23225],"speed":83},{"id":23234,"frames":[23226,23227,23228,23229,23230],"speed":83},{"id":23257,"frames":[23235,23236,23237,23238,23239,23240],"speed":100},{"id":23258,"frames":[23241,23242,23243,23244,23245,23246],"speed":100},{"id":23259,"frames":[23247,23248,23249,23250,23251],"speed":83},{"id":23260,"frames":[23252,23253,23254,23255,23256],"speed":83},{"id":23283,"frames":[23261,23262,23263,23264,23265,23266],"speed":100},{"id":23284,"frames":[23267,23268,23269,23270,23271,23272],"speed":100},{"id":23285,"frames":[23273,23274,23275,23276,23277],"speed":83},{"id":23286,"frames":[23278,23279,23280,23281,23282],"speed":83},{"id":23309,"frames":[23287,23288,23289,23290,23291,23292],"speed":100},{"id":23310,"frames":[23293,23294,23295,23296,23297,23298],"speed":100},{"id":23311,"frames":[23299,23300,23301,23302,23303],"speed":83},{"id":23312,"frames":[23304,23305,23306,23307,23308],"speed":83},{"id":23335,"frames":[23313,23314,23315,23316,23317,23318],"speed":100},{"id":23336,"frames":[23319,23320,23321,23322,23323,23324],"speed":100},{"id":23337,"frames":[23325,23326,23327,23328,23329],"speed":83},{"id":23338,"frames":[23330,23331,23332,23333,23334],"speed":83},{"id":23361,"frames":[23339,23340,23341,23342,23343,23344],"speed":100},{"id":23362,"frames":[23345,23346,23347,23348,23349,23350],"speed":100},{"id":23363,"frames":[23351,23352,23353,23354,23355],"speed":83},{"id":23364,"frames":[23356,23357,23358,23359,23360],"speed":83},{"id":23387,"frames":[23365,23366,23367,23368,23369,23370],"speed":100},{"id":23388,"frames":[23371,23372,23373,23374,23375,23376],"speed":100},{"id":23389,"frames":[23377,23378,23379,23380,23381],"speed":83},{"id":23390,"frames":[23382,23383,23384,23385,23386],"speed":83},{"id":23413,"frames":[23391,23392,23393,23394,23395,23396],"speed":100},{"id":23414,"frames":[23397,23398,23399,23400,23401,23402],"speed":100},{"id":23415,"frames":[23403,23404,23405,23406,23407],"speed":83},{"id":23416,"frames":[23408,23409,23410,23411,23412],"speed":83},{"id":23439,"frames":[23417,23418,23419,23420,23421,23422],"speed":100},{"id":23440,"frames":[23423,23424,23425,23426,23427,23428],"speed":100},{"id":23441,"frames":[23429,23430,23431,23432,23433],"speed":83},{"id":23442,"frames":[23434,23435,23436,23437,23438],"speed":83},{"id":23465,"frames":[23443,23444,23445,23446,23447,23448],"speed":100},{"id":23466,"frames":[23449,23450,23451,23452,23453,23454],"speed":100},{"id":23467,"frames":[23455,23456,23457,23458,23459],"speed":83},{"id":23468,"frames":[23460,23461,23462,23463,23464],"speed":83},{"id":23491,"frames":[23469,23470,23471,23472,23473,23474],"speed":100},{"id":23492,"frames":[23475,23476,23477,23478,23479,23480],"speed":100},{"id":23493,"frames":[23481,23482,23483,23484,23485],"speed":83},{"id":23494,"frames":[23486,23487,23488,23489,23490],"speed":83},{"id":23517,"frames":[23495,23496,23497,23498,23499,23500],"speed":100},{"id":23518,"frames":[23501,23502,23503,23504,23505,23506],"speed":100},{"id":23519,"frames":[23507,23508,23509,23510,23511],"speed":83},{"id":23520,"frames":[23512,23513,23514,23515,23516],"speed":83},{"id":23543,"frames":[23521,23522,23523,23524,23525,23526],"speed":100},{"id":23544,"frames":[23527,23528,23529,23530,23531,23532],"speed":100},{"id":23545,"frames":[23533,23534,23535,23536,23537],"speed":83},{"id":23546,"frames":[23538,23539,23540,23541,23542],"speed":83},{"id":23569,"frames":[23547,23548,23549,23550,23551,23552],"speed":100},{"id":23570,"frames":[23553,23554,23555,23556,23557,23558],"speed":100},{"id":23571,"frames":[23559,23560,23561,23562,23563],"speed":83},{"id":23572,"frames":[23564,23565,23566,23567,23568],"speed":83},{"id":23595,"frames":[23573,23574,23575,23576,23577,23578],"speed":100},{"id":23596,"frames":[23579,23580,23581,23582,23583,23584],"speed":100},{"id":23597,"frames":[23585,23586,23587,23588,23589],"speed":83},{"id":23598,"frames":[23590,23591,23592,23593,23594],"speed":83},{"id":23621,"frames":[23599,23600,23601,23602,23603,23604],"speed":100},{"id":23622,"frames":[23605,23606,23607,23608,23609,23610],"speed":100},{"id":23623,"frames":[23611,23612,23613,23614,23615],"speed":83},{"id":23624,"frames":[23616,23617,23618,23619,23620],"speed":83},{"id":23647,"frames":[23625,23626,23627,23628,23629,23630],"speed":100},{"id":23648,"frames":[23631,23632,23633,23634,23635,23636],"speed":100},{"id":23649,"frames":[23637,23638,23639,23640,23641],"speed":83},{"id":23650,"frames":[23642,23643,23644,23645,23646],"speed":83},{"id":23664,"frames":[23652,23653,23654,23655,23656,23657,23658,23659,23660,23661,23662,23663],"speed":200},{"id":23677,"frames":[23665,23666,23667,23668,23669,23670,23671,23672,23673,23674,23675,23676],"speed":200},{"id":23690,"frames":[23678,23679,23680,23681,23682,23683,23684,23685,23686,23687,23688,23689],"speed":200},{"id":23703,"frames":[23691,23692,23693,23694,23695,23696,23697,23698,23699,23700,23701,23702],"speed":200},{"id":23709,"frames":[23705,23706,23707,23708],"speed":66},{"id":23714,"frames":[23710,23711,23712,23713],"speed":66},{"id":23719,"frames":[23715,23716,23717,23718],"speed":66},{"id":23724,"frames":[23720,23721,23722,23723],"speed":66}]
\ No newline at end of file
diff --git a/compatibility/output/descriptors/bodies.json b/compatibility/output/descriptors/bodies.json
new file mode 100644
index 00000000..f5ce7c72
--- /dev/null
+++ b/compatibility/output/descriptors/bodies.json
@@ -0,0 +1 @@
+[{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[18413],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[259],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[5954],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[145],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[93],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[5943],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[205],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[1894],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[119],"offsetX":0,"offsetY":-15},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[275],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[9568],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[172],"offsetX":0,"offsetY":30},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[421],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[18401],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[237],"offsetX":0,"offsetY":32},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[4797],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[134],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[420],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[5942],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[194],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[1885],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[115],"offsetX":0,"offsetY":32},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[20503],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[265],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[6580],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[156],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[297],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[18191],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[221],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[2316],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[123],"offsetX":0,"offsetY":-15},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[286],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[5941],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[183],"offsetX":0,"offsetY":32},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[308],"offsetX":0,"offsetY":0}]
\ No newline at end of file
diff --git a/compatibility/src/main/java/com.argentum/Constants.java b/compatibility/src/main/java/com.argentum/Constants.java
new file mode 100644
index 00000000..e46029ba
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/Constants.java
@@ -0,0 +1,43 @@
+package com.argentum;
+
+import com.badlogic.gdx.graphics.Color;
+
+public interface Constants {
+
+ public static final float PI2 = 3.1415926535897932384626433832795f * 2.0f;
+
+ public static final int GAME_FILE_HEADER_SIZE = 263;
+
+ public static final int MAX_MAP_SIZE_WIDTH = 100;
+ public static final int MIN_MAP_SIZE_WIDTH = 1;
+ public static final int MAX_MAP_SIZE_HEIGHT = 100;
+ public static final int MIN_MAP_SIZE_HEIGHT = 1;
+
+ public static final float OFFSET_HEAD = 12.0f;
+
+ public static final Color COLOR_DAYLIGHT = new Color(0.5f, 0.5f, 0.5f, 0.2f);
+ public static final Color COLOR_DAWN = new Color(0.35f, 0.3f, 0.3f, 0.2f);
+ public static final Color COLOR_NIGHT = new Color(0.2f, 0.2f, 0.2f, 1.0f);
+
+ public static final float ALPHA_TREES = 1.0f;
+ public static final float ALPHA_LIGHTS = 0.4f;
+ public static final float ALPHA_FXS = 0.6f;
+
+ public static final int DEFAULT_NUM_RAYS = 128;
+
+ public enum Heading {
+ NORTH(0), EAST(1), SOUTH(2), WEST(3);
+
+ final int mHeading;
+
+ Heading(int pHeading) {
+ this.mHeading = pHeading;
+ }
+
+ public int toInt() {
+ return this.mHeading;
+ }
+ }
+
+
+}
\ No newline at end of file
diff --git a/compatibility/src/main/java/com.argentum/Game.java b/compatibility/src/main/java/com.argentum/Game.java
new file mode 100644
index 00000000..64a065da
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/Game.java
@@ -0,0 +1,13 @@
+package com.argentum;
+
+public class Game{
+
+ public static final String GAME_GRAPHICS_PATH = "data/graficos/";
+ public static final String GAME_FONTS_PATH = "data/fonts/";
+ public static final String GAME_MAPS_PATH = "data/mapas/";
+ public static final String GAME_INIT_PATH = "data/init/";
+ public static final String GAME_SHADERS_PATH = "data/shaders/";
+ public static final String GAME_GRAPHICS_EXTENSION = ".png";
+ public static final String GAME_SHADERS_LIGHT = "light.png";
+
+}
\ No newline at end of file
diff --git a/compatibility/src/main/java/com.argentum/Generate.java b/compatibility/src/main/java/com.argentum/Generate.java
new file mode 100644
index 00000000..a66ed452
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/Generate.java
@@ -0,0 +1,207 @@
+package com.argentum;
+
+import com.argentum.loaders.GraphicLoader;
+import com.argentum.readers.AOAssetsReader;
+import com.argentum.readers.AssetsReader;
+import com.badlogic.gdx.ApplicationAdapter;
+import com.badlogic.gdx.Gdx;
+import com.badlogic.gdx.graphics.Pixmap;
+import com.badlogic.gdx.graphics.Texture;
+import com.badlogic.gdx.graphics.g2d.PixmapPacker;
+import com.badlogic.gdx.graphics.g2d.TextureAtlas;
+import com.badlogic.gdx.tools.texturepacker.TexturePacker;
+import com.badlogic.gdx.tools.texturepacker.TexturePackerFileProcessor;
+import com.badlogic.gdx.utils.Json;
+import com.badlogic.gdx.utils.LongMap;
+import game.loaders.DescriptorsLoader;
+import model.descriptors.*;
+import model.textures.AOAnimation;
+import model.textures.AOImage;
+import shared.model.map.Map;
+import shared.util.AOJson;
+
+import javax.imageio.ImageIO;
+import java.awt.image.BufferedImage;
+import java.io.File;
+import java.io.IOException;
+import java.net.URISyntaxException;
+import java.net.URL;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Comparator;
+import java.util.List;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
+
+import static shared.util.SharedResources.JSON_EXT;
+
+public class Generate extends ApplicationAdapter {
+ private static LongMap graphics = new LongMap<>();
+ private static LongMap bodies = new LongMap<>();
+ private static LongMap heads = new LongMap<>();
+ private static LongMap helmets = new LongMap<>();
+ private static LongMap weapons = new LongMap<>();
+ private static LongMap shields = new LongMap<>();
+ private static LongMap fxs = new LongMap<>();
+ private static final AssetsReader reader = new AOAssetsReader();
+
+ private Json json = new AOJson();
+
+ private void load() {
+ graphics = reader.loadGraphics();
+ bodies = reader.loadBodies();
+ weapons = reader.loadWeapons();
+ shields = reader.loadShields();
+ heads = reader.loadHeads();
+ helmets = reader.loadHelmets();
+ fxs = reader.loadFxs();
+ }
+
+ @Override
+ public void create() {
+ super.create();
+ // load all
+ load();
+ // generate atlas
+ generateAtlas();
+ // generate jsons
+ generateMaps();
+ generateDescriptors();
+ }
+
+ private void generateDescriptors() {
+ save(bodies, BodyDescriptor.class);
+ save(heads, BodyDescriptor.class);
+ save(helmets, BodyDescriptor.class);
+ save(weapons, BodyDescriptor.class);
+ save(shields, BodyDescriptor.class);
+ save(fxs, BodyDescriptor.class);
+ saveImages();
+ saveAnimations();
+ }
+
+ private void generateMaps() {
+ // todo
+ }
+
+ private void generateAtlas() {
+ File output = new File("output/graphics/");
+ TexturePacker.Settings settings = new TexturePacker.Settings();
+ settings.fast = true;
+ settings.paddingX = 1;
+ settings.paddingY = 1;
+ settings.pot = true;
+ settings.combineSubdirectories = true;
+ settings.maxWidth = 2048;
+ settings.maxHeight = 2048;
+ TexturePacker.process(settings, "assets/" + Game.GAME_GRAPHICS_PATH, "assets/output/graphics/", "images");
+// TexturePacker texturePacker = new TexturePacker(output, settings);
+// List graphicsList = new ArrayList<>();
+// graphics.forEach(graphic -> {
+// graphicsList.add(graphic.value);
+// });
+// List images = graphicsList
+// .stream()
+// .filter(g -> !g.isAnimation())
+// .map(GraphicLoader.Graphic::getImage)
+// .sorted(Comparator.comparingInt(AOImage::getId))
+// .collect(Collectors.toList());
+//
+// images.forEach(image -> {
+// BufferedImage bufferedImage = null;
+// try {
+// bufferedImage = createImage(image);
+// String name = image.getId() + "";
+// texturePacker.addImage(bufferedImage, name);
+//
+// } catch (IOException | URISyntaxException e) {
+// e.printStackTrace();
+// }
+// });
+//
+// texturePacker.pack(output, "images");
+ }
+
+ private BufferedImage createImage(AOImage image) throws IOException, URISyntaxException {
+
+ File file = getFileFromResource(Game.GAME_GRAPHICS_PATH + image.getFileNum() + ".png");
+ BufferedImage bufferedImage = ImageIO.read(file);
+ int width = Math.min(bufferedImage.getWidth() - image.getX(), image.getX() + image.getWidth());
+ return bufferedImage.getSubimage(image.getX(), image.getY(), width, image.getHeight());
+ }
+
+ private File getFileFromResource(String fileName) throws URISyntaxException {
+
+ ClassLoader classLoader = getClass().getClassLoader();
+ URL resource = classLoader.getResource(fileName);
+ if (resource == null) {
+ throw new IllegalArgumentException("file not found! " + fileName);
+ } else {
+
+ // failed if files have whitespaces or special characters
+ //return new File(resource.getFile());
+
+ return new File(resource.toURI());
+ }
+
+ }
+
+ private void saveImages() {
+ List graphicsList = new ArrayList<>();
+ graphics.forEach(graphic -> {
+ graphicsList.add(graphic.value);
+ });
+ List images = graphicsList.stream()
+ .filter(g -> !g.isAnimation())
+ .map(GraphicLoader.Graphic::getImage)
+ .sorted(Comparator.comparingInt(AOImage::getId))
+ .collect(Collectors.toList());
+ json.toJson(images, ArrayList.class, AOImage.class, Gdx.files.local("output/descriptors/animations" + JSON_EXT));
+
+ }
+
+ private void saveAnimations() {
+ List graphicsList = new ArrayList<>();
+ graphics.forEach(graphic -> {
+ graphicsList.add(graphic.value);
+ });
+ List animations = graphicsList.stream()
+ .filter(GraphicLoader.Graphic::isAnimation)
+ .map(GraphicLoader.Graphic::getAnimation)
+ .sorted(Comparator.comparingInt(AOAnimation::getId))
+ .collect(Collectors.toList());
+ json.toJson(animations, ArrayList.class, AOAnimation.class, Gdx.files.local("output/descriptors/animations" + JSON_EXT));
+ }
+
+ private void save(LongMap extends Descriptor> descriptors, Class extends Descriptor> dClass) {
+ List list = new ArrayList<>();
+ descriptors.values().forEach(list::add);
+ List toSave = list.stream()
+ .filter(this::anyAnimation)
+ .sorted(Comparator.comparingInt(Descriptor::getId))
+ .collect(Collectors.toList());
+ json.toJson(toSave, ArrayList.class, dClass, Gdx.files.local("output/descriptors/" + getFileName(dClass) + JSON_EXT));
+ }
+
+ private boolean anyAnimation(Descriptor t) {
+ return Stream.of(t.getIndexs()).flatMapToInt(Arrays::stream).anyMatch(i -> i > 0);
+ }
+
+ private String getFileName(Class extends Descriptor> tClass) {
+ String fileName = "file";
+ if (tClass.equals(HeadDescriptor.class)) {
+ fileName = DescriptorsLoader.HEADS;
+ } else if (tClass.equals(BodyDescriptor.class)) {
+ fileName = DescriptorsLoader.BODIES;
+ } else if (tClass.equals(FXDescriptor.class)) {
+ fileName = DescriptorsLoader.FXS;
+ } else if (tClass.equals(HelmetDescriptor.class)) {
+ fileName = DescriptorsLoader.HELMETS;
+ } else if (tClass.equals(ShieldDescriptor.class)) {
+ fileName = DescriptorsLoader.SHIELDS;
+ } else if (tClass.equals(WeaponDescriptor.class)) {
+ fileName = DescriptorsLoader.WEAPONS;
+ }
+ return fileName;
+ }
+}
diff --git a/compatibility/src/main/java/com.argentum/GenerateLauncher.java b/compatibility/src/main/java/com.argentum/GenerateLauncher.java
new file mode 100644
index 00000000..f6af6697
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/GenerateLauncher.java
@@ -0,0 +1,10 @@
+package com.argentum;
+
+import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
+
+public class GenerateLauncher {
+
+ public static void main(String[] args) {
+ new LwjglApplication(new Generate());
+ }
+}
diff --git a/compatibility/src/main/java/com.argentum/Util.java b/compatibility/src/main/java/com.argentum/Util.java
new file mode 100644
index 00000000..4ff0adbf
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/Util.java
@@ -0,0 +1,31 @@
+package com.argentum;
+
+import java.nio.ByteBuffer;
+import java.nio.ByteOrder;
+
+public class Util {
+
+ public static short leShort(short n) {
+ return (short) (((n & 0xff) << 8) | (((n & 0xff00) >> 8) & 0xff));
+ }
+
+ public static int leInt(int n) {
+ ByteBuffer buf = ByteBuffer.allocate(4);
+ buf.order(ByteOrder.BIG_ENDIAN);
+ buf.putInt(n);
+ buf.order(ByteOrder.LITTLE_ENDIAN);
+
+ return buf.getInt(0);
+ }
+
+ public static int leFloat(float n) {
+
+ ByteBuffer buf = ByteBuffer.allocate(4);
+ buf.order(ByteOrder.BIG_ENDIAN);
+ buf.putFloat(n);
+ buf.order(ByteOrder.LITTLE_ENDIAN);
+
+ return buf.getInt(0);
+ }
+
+}
\ No newline at end of file
diff --git a/compatibility/src/main/java/com.argentum/loaders/BodyLoader.java b/compatibility/src/main/java/com.argentum/loaders/BodyLoader.java
new file mode 100644
index 00000000..63a53860
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/loaders/BodyLoader.java
@@ -0,0 +1,56 @@
+/*******************************************************************************
+ * Copyright (C) 2014 Rodrigo Troncoso
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ *******************************************************************************/
+package com.argentum.loaders;
+
+import java.io.DataInputStream;
+import java.io.IOException;
+
+import static com.argentum.Constants.*;
+import com.argentum.Util;
+import com.badlogic.gdx.utils.LongMap;
+import model.descriptors.BodyDescriptor;
+
+import static com.argentum.Constants.GAME_FILE_HEADER_SIZE;
+
+public class BodyLoader extends Loader> {
+
+ @Override
+ public LongMap load(DataInputStream file) throws IOException {
+ LongMap bodys = new LongMap<>();
+ int numBodys;
+
+ file.skipBytes(GAME_FILE_HEADER_SIZE);
+ numBodys = Util.leShort(file.readShort());
+
+ for(int i = 1; i <= numBodys; i++) {
+ int grhArray[] = new int[4], headOffSetX, headOffSetY;
+
+ grhArray[Heading.NORTH.toInt()] = Util.leShort(file.readShort());
+ grhArray[Heading.EAST.toInt()] = Util.leShort(file.readShort());
+ grhArray[Heading.SOUTH.toInt()] = Util.leShort(file.readShort());
+ grhArray[Heading.WEST.toInt()] = Util.leShort(file.readShort());
+
+ headOffSetX = Util.leShort(file.readShort());
+ headOffSetY = Util.leShort(file.readShort());
+
+ bodys.put(i, new BodyDescriptor(grhArray, headOffSetX, headOffSetY));
+ }
+
+ return bodys;
+ }
+
+}
diff --git a/compatibility/src/main/java/com.argentum/loaders/FxLoader.java b/compatibility/src/main/java/com.argentum/loaders/FxLoader.java
new file mode 100644
index 00000000..3aceb620
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/loaders/FxLoader.java
@@ -0,0 +1,51 @@
+/*******************************************************************************
+ * Copyright (C) 2014 Rodrigo Troncoso
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ *******************************************************************************/
+package com.argentum.loaders;
+
+import java.io.DataInputStream;
+import java.io.IOException;
+
+import static com.argentum.Constants.*;
+
+import com.argentum.Util;
+import com.badlogic.gdx.utils.LongMap;
+import model.descriptors.FXDescriptor;
+
+public class FxLoader extends Loader> {
+
+ @Override
+ public LongMap load(DataInputStream file) throws IOException {
+ LongMap fxs = new LongMap<>();
+ int numFxs;
+
+ file.skipBytes(GAME_FILE_HEADER_SIZE);
+ numFxs = Util.leShort(file.readShort());
+
+ for(int i = 1; i <= numFxs; i++) {
+ int offsetX, offsetY, fxIndex;
+
+ fxIndex = Util.leShort(file.readShort());
+ offsetX = Util.leShort(file.readShort());
+ offsetY = Util.leShort(file.readShort());
+
+ fxs.put(i, new FXDescriptor(fxIndex, offsetX, offsetY));
+ }
+
+ return fxs;
+ }
+
+}
diff --git a/compatibility/src/main/java/com.argentum/loaders/GraphicLoader.java b/compatibility/src/main/java/com.argentum/loaders/GraphicLoader.java
new file mode 100644
index 00000000..53b05b66
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/loaders/GraphicLoader.java
@@ -0,0 +1,122 @@
+/*******************************************************************************
+ * Copyright (C) 2014 Rodrigo Troncoso
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ *******************************************************************************/
+package com.argentum.loaders;
+
+import java.io.DataInputStream;
+import java.io.EOFException;
+import java.io.IOException;
+
+import com.argentum.Util;
+import com.badlogic.gdx.utils.LongMap;
+import model.textures.AOAnimation;
+import model.textures.AOImage;
+import shared.model.map.Tile;
+
+public class GraphicLoader extends Loader> {
+
+ @Override
+ public LongMap load(DataInputStream file) throws IOException {
+ int grh = 0;
+ LongMap inits = new LongMap();
+
+ file.skipBytes(4);
+ int numGraphics = Util.leInt(file.readInt());
+ //inits.ensureCapacity(numGraphics);
+
+ try {
+ do {
+ int fileNum = 0, sX = 0, sY = 0, numFrames, pixelWidth, pixelHeight, frames[] = new int[0];
+ float speed = 0.0f, tileWidth, tileHeight;
+
+ grh = Util.leInt(file.readInt());
+ numFrames = Util.leShort(file.readShort());
+ Graphic graphic;
+ if(numFrames > 1) {
+ frames = new int[numFrames];
+ for(int j=0; j < numFrames; j++) {
+ frames[j] = Util.leInt(file.readInt());
+ if(frames[j] <= 0) throw new IOException("frames[]: " + frames[j]);
+ }
+
+ // Hardcodeamos speed (Java no lee single floating points de VB)
+ file.skipBytes(4);
+ speed = (numFrames * 1000) / 60;
+ if(speed <= 0) throw new IOException("speed (numFrames > 1)");
+
+ graphic = new Graphic(new AOAnimation(grh, frames, speed));
+ } else {
+ // Read normal GRH
+ fileNum = Util.leInt(file.readInt());
+
+ if(fileNum <= 0) throw new IOException("fileNum");
+
+ sX = Util.leShort(file.readShort());
+ if(sX < 0) throw new IOException("sX (numFrames < 1)");
+
+ sY = Util.leShort(file.readShort());
+ if(sY < 0) throw new IOException("sY (numFrames < 1)");
+
+ pixelWidth = Util.leShort(file.readShort());
+ if(pixelWidth <= 0) throw new IOException("pixelWidth (numFrames < 1)");
+
+ pixelHeight = Util.leShort(file.readShort());
+ if(pixelHeight <= 0) throw new IOException("pixelHeight (numFrames < 1)");
+
+ tileWidth = (float) pixelWidth / Tile.TILE_PIXEL_WIDTH;
+ tileHeight = (float) pixelHeight / Tile.TILE_PIXEL_HEIGHT;
+
+ graphic = new Graphic(new AOImage(grh, sX, sY, fileNum, pixelWidth, pixelHeight));
+ }
+
+ inits.put(grh, graphic);
+ } while(grh > 0);
+ } catch(EOFException ex) {
+ return inits;
+ }
+
+ throw new RuntimeException("Unable to read graphics assets file");
+ }
+
+ public static class Graphic {
+ private AOImage image;
+ private AOAnimation animation;
+ private boolean isAnimation;
+
+ public Graphic(AOImage image) {
+ isAnimation = false;
+ this.image = image;
+ }
+
+ public Graphic(AOAnimation animation) {
+ this.animation = animation;
+ this.isAnimation =true;
+ }
+
+ public boolean isAnimation() {
+ return isAnimation;
+ }
+
+ public AOAnimation getAnimation() {
+ return animation;
+ }
+
+ public AOImage getImage() {
+ return image;
+ }
+ }
+
+}
diff --git a/compatibility/src/main/java/com.argentum/loaders/HeadLoader.java b/compatibility/src/main/java/com.argentum/loaders/HeadLoader.java
new file mode 100644
index 00000000..80f585fd
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/loaders/HeadLoader.java
@@ -0,0 +1,53 @@
+/*******************************************************************************
+ * Copyright (C) 2014 Rodrigo Troncoso
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ *******************************************************************************/
+package com.argentum.loaders;
+
+import java.io.DataInputStream;
+import java.io.IOException;
+
+import com.argentum.Util;
+import com.badlogic.gdx.utils.LongMap;
+import model.descriptors.HeadDescriptor;
+
+import static com.argentum.Constants.*;
+
+public class HeadLoader extends Loader> {
+
+ @Override
+ public LongMap load(DataInputStream file) throws IOException {
+ LongMap heads = new LongMap<>();
+ int numHeads;
+
+ file.skipBytes(GAME_FILE_HEADER_SIZE);
+ numHeads = Util.leShort(file.readShort());
+
+ for(int i = 1; i <= numHeads; i++) {
+ int headIndex[] = new int[4];
+
+ headIndex[Heading.NORTH.toInt()] = Util.leShort(file.readShort());
+ headIndex[Heading.EAST.toInt()] = Util.leShort(file.readShort());
+ headIndex[Heading.SOUTH.toInt()] = Util.leShort(file.readShort());
+ headIndex[Heading.WEST.toInt()] = Util.leShort(file.readShort());
+
+ heads.put(i, new HeadDescriptor(headIndex));
+ }
+
+ return heads;
+
+ }
+
+}
diff --git a/compatibility/src/main/java/com.argentum/loaders/HelmetLoader.java b/compatibility/src/main/java/com.argentum/loaders/HelmetLoader.java
new file mode 100644
index 00000000..8e4d769b
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/loaders/HelmetLoader.java
@@ -0,0 +1,52 @@
+/*******************************************************************************
+ * Copyright (C) 2014 Rodrigo Troncoso
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ *******************************************************************************/
+package com.argentum.loaders;
+
+import java.io.DataInputStream;
+import java.io.IOException;
+
+import com.argentum.Util;
+import com.badlogic.gdx.utils.LongMap;
+import model.descriptors.HelmetDescriptor;
+
+import static com.argentum.Constants.*;
+
+public class HelmetLoader extends Loader> {
+
+ @Override
+ public LongMap load(DataInputStream file) throws IOException {
+ LongMap helmets = new LongMap<>();
+ int numHelmets;
+
+ file.skipBytes(GAME_FILE_HEADER_SIZE);
+ numHelmets = Util.leShort(file.readShort());
+
+ for(int i = 1; i <= numHelmets; i++) {
+ int helmetIndex[] = new int[4];
+
+ helmetIndex[Heading.NORTH.toInt()] = Util.leShort(file.readShort());
+ helmetIndex[Heading.EAST.toInt()] = Util.leShort(file.readShort());
+ helmetIndex[Heading.SOUTH.toInt()] = Util.leShort(file.readShort());
+ helmetIndex[Heading.WEST.toInt()] = Util.leShort(file.readShort());
+
+ helmets.put(i, new HelmetDescriptor(helmetIndex));
+ }
+ return helmets;
+
+ }
+
+}
diff --git a/compatibility/src/main/java/com.argentum/loaders/Loader.java b/compatibility/src/main/java/com.argentum/loaders/Loader.java
new file mode 100644
index 00000000..a67b73db
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/loaders/Loader.java
@@ -0,0 +1,28 @@
+/*******************************************************************************
+ * Copyright (C) 2014 Rodrigo Troncoso
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ *******************************************************************************/
+package com.argentum.loaders;
+
+import game.utils.Constants;
+
+import java.io.DataInputStream;
+import java.io.IOException;
+
+public abstract class Loader extends Constants {
+
+ public abstract T load(DataInputStream fileName) throws IOException;
+
+}
diff --git a/compatibility/src/main/java/com.argentum/loaders/MapLoader.java b/compatibility/src/main/java/com.argentum/loaders/MapLoader.java
new file mode 100644
index 00000000..09111a56
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/loaders/MapLoader.java
@@ -0,0 +1,95 @@
+/*******************************************************************************
+ * Copyright (C) 2014 Rodrigo Troncoso
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ *******************************************************************************/
+package com.argentum.loaders;
+
+
+import com.argentum.Util;
+import shared.model.map.Map;
+import shared.model.map.Tile;
+import shared.model.map.WorldPosition;
+
+import java.io.DataInputStream;
+import java.io.IOException;
+
+import static com.argentum.Constants.*;
+
+public class MapLoader {
+
+ public Map load(DataInputStream file, DataInputStream inf) throws IOException {
+ file.skipBytes(GAME_FILE_HEADER_SIZE + (2 * 5)); // Skip complete map header
+
+ inf.readFloat();
+ inf.readFloat();
+ inf.readShort();
+
+ Map map = new Map();
+
+ // Read map info (rows first, then columns)
+ for (int y = Map.MIN_MAP_SIZE_WIDTH; y <= Map.MAX_MAP_SIZE_WIDTH; y++) {
+ for (int x = Map.MIN_MAP_SIZE_HEIGHT; x <= Map.MAX_MAP_SIZE_HEIGHT; x++) {
+ int charIndex = 0, objCount = 0, objIndex = 0, npcIndex = 0, trigger = 0, graphic[] = new int[4];
+ WorldPosition tileExit = null;
+ boolean blocked;
+ byte byFlags;
+
+ byFlags = file.readByte();
+ blocked = (1 == (byFlags & 1));
+
+ graphic[0] = Util.leShort(file.readShort());
+
+ if ((byFlags & 2) == 2) {
+ graphic[1] = Util.leShort(file.readShort());
+ } else {
+ graphic[1] = 0;
+ }
+
+ if ((byFlags & 4) == 4) {
+ graphic[2] = Util.leShort(file.readShort());
+ } else {
+ graphic[2] = 0;
+ }
+
+ if ((byFlags & 8) == 8) {
+ graphic[3] = Util.leShort(file.readShort());
+ } else {
+ graphic[3] = 0;
+ }
+
+ if ((byFlags & 16) == 16) {
+ trigger = Util.leShort(file.readShort());
+ }
+
+ byFlags = inf.readByte();
+ if ((1 == (byFlags & 1))) {
+ tileExit = new WorldPosition(Util.leShort(inf.readShort()), Util.leShort(inf.readShort()), Util.leShort(inf.readShort()));
+ }
+ if ((byFlags & 2) == 2) {
+ npcIndex = Util.leShort(inf.readShort());
+ }
+ if ((byFlags & 4) == 4) {
+ objIndex = Util.leShort(inf.readShort());
+ objCount = Util.leShort(inf.readShort());
+ }
+
+ Tile tile = new Tile(graphic, charIndex, objCount, objIndex, npcIndex, tileExit, blocked, trigger);
+ map.setTile(x, y, tile);
+ }
+ }
+
+ return map;
+ }
+}
diff --git a/compatibility/src/main/java/com.argentum/loaders/ShieldLoader.java b/compatibility/src/main/java/com.argentum/loaders/ShieldLoader.java
new file mode 100644
index 00000000..d47c99ad
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/loaders/ShieldLoader.java
@@ -0,0 +1,71 @@
+/*******************************************************************************
+ * Copyright (C) 2014 Rodrigo Troncoso
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ *******************************************************************************/
+package com.argentum.loaders;
+
+import static com.argentum.Constants.*;
+import com.badlogic.gdx.utils.LongMap;
+import model.descriptors.ShieldDescriptor;
+import org.ini4j.Config;
+import org.ini4j.Ini;
+import org.ini4j.InvalidFileFormatException;
+
+import java.io.DataInputStream;
+import java.io.IOException;
+
+public class ShieldLoader extends Loader> {
+
+ @Override
+ public LongMap load(DataInputStream file) throws IOException {
+ LongMap shields = new LongMap<>();
+ Ini iniFile = new Ini();
+ Config c = new Config();
+ c.setLowerCaseSection(true);
+ iniFile.setConfig(c);
+
+ try {
+ iniFile.load(file);
+
+ int numShields = Integer.parseInt(iniFile.get("init", "NumEscudos"));
+
+ for(int i = 1; i <= numShields; i++) {
+ int[] shieldIndex = new int[4];
+
+ if(iniFile.get("esc" + String.valueOf(i), "Dir1") == null) {
+ shieldIndex[Heading.NORTH.toInt()] = 0;
+ shieldIndex[Heading.EAST.toInt()] = 0;
+ shieldIndex[Heading.SOUTH.toInt()] = 0;
+ shieldIndex[Heading.WEST.toInt()] = 0;
+ shields.put(i, new ShieldDescriptor(shieldIndex));
+ continue;
+ }
+
+ shieldIndex[Heading.NORTH.toInt()] = Integer.parseInt(iniFile.get("esc" + String.valueOf(i), "Dir1"));
+ shieldIndex[Heading.EAST.toInt()] = Integer.parseInt(iniFile.get("esc" + String.valueOf(i), "Dir2"));
+ shieldIndex[Heading.SOUTH.toInt()] = Integer.parseInt(iniFile.get("esc" + String.valueOf(i), "Dir3"));
+ shieldIndex[Heading.WEST.toInt()] = Integer.parseInt(iniFile.get("esc" + String.valueOf(i), "Dir4"));
+
+ shields.put(i, new ShieldDescriptor(shieldIndex));
+ }
+
+ return shields;
+ } catch (InvalidFileFormatException e) {
+ e.printStackTrace();
+ return null;
+ }
+ }
+
+}
diff --git a/compatibility/src/main/java/com.argentum/loaders/WeaponLoader.java b/compatibility/src/main/java/com.argentum/loaders/WeaponLoader.java
new file mode 100644
index 00000000..1966dcf8
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/loaders/WeaponLoader.java
@@ -0,0 +1,76 @@
+/*******************************************************************************
+ * Copyright (C) 2014 Rodrigo Troncoso
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ *******************************************************************************/
+package com.argentum.loaders;
+
+import java.io.DataInputStream;
+import java.io.IOException;
+
+import static com.argentum.Constants.*;
+import com.badlogic.gdx.utils.LongMap;
+
+import model.descriptors.WeaponDescriptor;
+import org.ini4j.Config;
+import org.ini4j.Ini;
+import org.ini4j.InvalidFileFormatException;
+
+public class WeaponLoader extends Loader> {
+
+ @Override
+ public LongMap load(DataInputStream file) {
+ LongMap weapons = new LongMap();
+ Ini iniFile = new Ini();
+ Config c = new Config();
+ c.setLowerCaseSection(true);
+ iniFile.setConfig(c);
+
+ try {
+ iniFile.load(file);
+
+ int numArmas = Integer.parseInt(iniFile.get("init", "NumArmas"));
+
+ for(int i = 1; i <= numArmas; i++) {
+ int[] weaponIndex = new int[4];
+
+ if(iniFile.get("arma" + String.valueOf(i), "Dir1") == null) {
+ weaponIndex[Heading.NORTH.toInt()] = 0;
+ weaponIndex[Heading.EAST.toInt()] = 0;
+ weaponIndex[Heading.SOUTH.toInt()] = 0;
+ weaponIndex[Heading.WEST.toInt()] = 0;
+ weapons.put(i, new WeaponDescriptor(weaponIndex));
+ continue;
+ }
+
+ weaponIndex[Heading.NORTH.toInt()] = Integer.parseInt(iniFile.get("arma" + String.valueOf(i), "Dir1"));
+ weaponIndex[Heading.EAST.toInt()] = Integer.parseInt(iniFile.get("arma" + String.valueOf(i), "Dir2"));
+ weaponIndex[Heading.SOUTH.toInt()] = Integer.parseInt(iniFile.get("arma" + String.valueOf(i), "Dir3"));
+ weaponIndex[Heading.WEST.toInt()] = Integer.parseInt(iniFile.get("arma" + String.valueOf(i), "Dir4"));
+
+ weapons.put(i, new WeaponDescriptor(weaponIndex));
+ }
+
+ return weapons;
+ } catch (InvalidFileFormatException e) {
+ e.printStackTrace();
+ return null;
+ } catch (IOException e) {
+ e.printStackTrace();
+ return null;
+ }
+ }
+
+
+}
diff --git a/compatibility/src/main/java/com.argentum/readers/AOAssetsReader.java b/compatibility/src/main/java/com.argentum/readers/AOAssetsReader.java
new file mode 100644
index 00000000..d7814de3
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/readers/AOAssetsReader.java
@@ -0,0 +1,112 @@
+/**
+ * ****************************************************************************
+ * Copyright (C) 2014 Rodrigo Troncoso
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ * *****************************************************************************
+ */
+package com.argentum.readers;
+
+import com.argentum.Game;
+import com.argentum.loaders.*;
+import com.badlogic.gdx.Gdx;
+import com.badlogic.gdx.files.FileHandle;
+import com.badlogic.gdx.utils.GdxRuntimeException;
+import com.badlogic.gdx.utils.LongMap;
+import com.esotericsoftware.minlog.Log;
+import model.descriptors.*;
+import shared.model.map.Map;
+
+import java.io.DataInputStream;
+import java.io.IOException;
+
+/**
+ * Class AOAssetsReader
+ *
+ * This class handles all the logic for parsing
+ * Argentum Online's data objects.
+ */
+public class AOAssetsReader implements AssetsReader {
+
+ @Override
+ public Map loadMap(String map) {
+ FileHandle mapPath = Gdx.files.internal(Game.GAME_MAPS_PATH + "Mapa" + map + map + ".map");
+ FileHandle infPath = Gdx.files.internal(Game.GAME_MAPS_PATH + "Mapa" + map + map + ".inf");
+ MapLoader loader = new MapLoader();
+ try (DataInputStream mapStream = new DataInputStream(mapPath.read());
+ DataInputStream inf = new DataInputStream(infPath.read())) {
+ return loader.load(mapStream, inf);
+ } catch (IOException | GdxRuntimeException e) {
+ Log.error("Map I/O", "Failed to read map " + map, e);
+ return new Map();
+ }
+ }
+
+ @Override
+ public LongMap loadGraphics() {
+ Reader> reader = new Reader<>();
+ GraphicLoader loader = new GraphicLoader();
+
+ return reader.read(Game.GAME_INIT_PATH + "Graficos.ind", loader);
+ }
+
+ @Override
+ public LongMap loadBodies() {
+ Reader> reader = new Reader<>();
+ BodyLoader loader = new BodyLoader();
+
+ return reader.read(Game.GAME_INIT_PATH + "Personajes.ind", loader);
+ }
+
+ @Override
+ public LongMap loadFxs() {
+ Reader> reader = new Reader<>();
+ FxLoader loader = new FxLoader();
+
+ return reader.read(Game.GAME_INIT_PATH + "Fxs.ind", loader);
+ }
+
+ @Override
+ public LongMap loadHeads() {
+ Reader> reader = new Reader<>();
+ HeadLoader loader = new HeadLoader();
+
+ return reader.read(Game.GAME_INIT_PATH + "Cabezas.ind", loader);
+ }
+
+ @Override
+ public LongMap loadHelmets() {
+ Reader> reader = new Reader<>();
+ HelmetLoader loader = new HelmetLoader();
+
+ return reader.read(Game.GAME_INIT_PATH + "Cascos.ind", loader);
+ }
+
+ @Override
+ public LongMap loadShields() {
+ Reader> reader = new Reader<>();
+ ShieldLoader loader = new ShieldLoader();
+
+ return reader.read(Game.GAME_INIT_PATH + "Escudos.dat", loader);
+ }
+
+ @Override
+ public LongMap loadWeapons() {
+ Reader> reader = new Reader<>();
+ WeaponLoader loader = new WeaponLoader();
+
+ return reader.read(Game.GAME_INIT_PATH + "Armas.dat", loader);
+ }
+
+}
diff --git a/compatibility/src/main/java/com.argentum/readers/AssetsReader.java b/compatibility/src/main/java/com.argentum/readers/AssetsReader.java
new file mode 100644
index 00000000..93226525
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/readers/AssetsReader.java
@@ -0,0 +1,44 @@
+/**
+ * ****************************************************************************
+ * Copyright (C) 2014 Rodrigo Troncoso
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ * *****************************************************************************
+ */
+package com.argentum.readers;
+
+import com.argentum.loaders.GraphicLoader;
+import com.badlogic.gdx.utils.LongMap;
+import model.descriptors.*;
+import shared.model.map.Map;
+
+
+public interface AssetsReader {
+
+ Map loadMap(String map);
+
+ LongMap loadGraphics();
+
+ LongMap loadBodies();
+
+ LongMap loadFxs();
+
+ LongMap loadHeads();
+
+ LongMap loadHelmets();
+
+ LongMap loadShields();
+
+ LongMap loadWeapons();
+}
diff --git a/compatibility/src/main/java/com.argentum/readers/Reader.java b/compatibility/src/main/java/com.argentum/readers/Reader.java
new file mode 100644
index 00000000..10b93d1b
--- /dev/null
+++ b/compatibility/src/main/java/com.argentum/readers/Reader.java
@@ -0,0 +1,45 @@
+/**
+ * ****************************************************************************
+ * Copyright (C) 2014 Rodrigo Troncoso
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ * *****************************************************************************
+ */
+package com.argentum.readers;
+
+import com.argentum.loaders.Loader;
+import com.badlogic.gdx.Gdx;
+import com.badlogic.gdx.files.FileHandle;
+
+import java.io.DataInputStream;
+import java.io.IOException;
+
+public class Reader {
+
+ public T read(String path, Loader loader) {
+
+ try {
+ Gdx.app.log(getClass().getSimpleName(), path);
+ FileHandle fileHandle = Gdx.files.internal(path);
+ T loadedFile = loader.load(new DataInputStream(fileHandle.read()));
+
+ Gdx.app.log(this.getClass().getSimpleName(), "[Reader] Asset " + path + " successfully loaded");
+ return loadedFile;
+ } catch (IOException e) {
+ e.printStackTrace();
+ return null;
+ }
+ }
+
+}
diff --git a/components/src/component/entity/Clear.java b/components/src/component/entity/Clear.java
index 1a9f51c3..7c6b9b5f 100644
--- a/components/src/component/entity/Clear.java
+++ b/components/src/component/entity/Clear.java
@@ -2,6 +2,14 @@
import com.artemis.Component;
+/**
+ * Componente para la limpieza automática de entidades por timeout.
+ * Ver {@link server.systems.world.entity.factory.ClearSystem}
+ * Ver {@link game.systems.world.ClearSystem}
+ *
+ * @todo ¿son necesarios los getters/setters?
+ * @todo Evaluar unificar los sistemas de limpieza en cliente y servidor.
+ */
public class Clear extends Component {
float time;
diff --git a/components/src/component/entity/character/attributes/Attribute.java b/components/src/component/entity/character/attributes/Attribute.java
index 7102886c..c6eeefda 100644
--- a/components/src/component/entity/character/attributes/Attribute.java
+++ b/components/src/component/entity/character/attributes/Attribute.java
@@ -5,6 +5,7 @@
import java.io.Serializable;
+// @todo Evaluar si conviene juntar todos los atributos en un único componente
@PooledWeaver
public abstract class Attribute extends Component implements Serializable {
diff --git a/components/src/component/entity/character/info/Skills.java b/components/src/component/entity/character/info/Skills.java
new file mode 100644
index 00000000..46a8c03a
--- /dev/null
+++ b/components/src/component/entity/character/info/Skills.java
@@ -0,0 +1,211 @@
+package component.entity.character.info;
+
+import com.artemis.Component;
+
+import java.io.Serializable;
+import java.lang.reflect.Field;
+
+public class Skills extends Component implements Serializable {
+
+ private int magia;
+ private int robar;
+ private int tacticas;
+ private int armas;
+ private int meditar;
+ private int apunalar;
+ private int ocultarse;
+ private int supervivencia;
+ private int talar;
+ private int comerciar;
+ private int defensa;
+ private int pesca;
+ private int mineria;
+ private int carpinteria;
+ private int herreria;
+ private int liderazgo;
+ private int domar;
+ private int proyectiles;
+ private int wrestling;
+ private int navegacion;
+ private int equitacion;
+
+ public Skills() {}
+
+ public int getMagia() {
+ return magia;
+ }
+
+ public void setMagia(int magia) {
+ this.magia = magia;
+ }
+
+ public int getRobar() {
+ return robar;
+ }
+
+ public void setRobar(int robar) {
+ this.robar = robar;
+ }
+
+ public int getTacticas() {
+ return tacticas;
+ }
+
+ public void setTacticas(int tacticas) {
+ this.tacticas = tacticas;
+ }
+
+ public int getArmas() {
+ return armas;
+ }
+
+ public void setArmas(int armas) {
+ this.armas = armas;
+ }
+
+ public int getMeditar() {
+ return meditar;
+ }
+
+ public void setMeditar(int meditar) {
+ this.meditar = meditar;
+ }
+
+ public int getApunalar() {
+ return apunalar;
+ }
+
+ public void setApunalar(int apunalar) {
+ this.apunalar = apunalar;
+ }
+
+ public int getOcultarse() {
+ return ocultarse;
+ }
+
+ public void setOcultarse(int ocultarse) {
+ this.ocultarse = ocultarse;
+ }
+
+ public int getSupervivencia() {
+ return supervivencia;
+ }
+
+ public void setSupervivencia(int supervivencia) {
+ this.supervivencia = supervivencia;
+ }
+
+ public int getTalar() {
+ return talar;
+ }
+
+ public void setTalar(int talar) {
+ this.talar = talar;
+ }
+
+ public int getComerciar() {
+ return comerciar;
+ }
+
+ public void setComerciar(int comerciar) {
+ this.comerciar = comerciar;
+ }
+
+ public int getDefensa() {
+ return defensa;
+ }
+
+ public void setDefensa(int defensa) {
+ this.defensa = defensa;
+ }
+
+ public int getPesca() {
+ return pesca;
+ }
+
+ public void setPesca(int pesca) {
+ this.pesca = pesca;
+ }
+
+ public int getMineria() {
+ return mineria;
+ }
+
+ public void setMineria(int mineria) {
+ this.mineria = mineria;
+ }
+
+ public int getCarpinteria() {
+ return carpinteria;
+ }
+
+ public void setCarpinteria(int carpinteria) {
+ this.carpinteria = carpinteria;
+ }
+
+ public int getHerreria() {
+ return herreria;
+ }
+
+ public void setHerreria(int herreria) {
+ this.herreria = herreria;
+ }
+
+ public int getLiderazgo() {
+ return liderazgo;
+ }
+
+ public void setLiderazgo(int liderazgo) {
+ this.liderazgo = liderazgo;
+ }
+
+ public int getDomar() {
+ return domar;
+ }
+
+ public void setDomar(int domar) {
+ this.domar = domar;
+ }
+
+ public int getProyectiles() {
+ return proyectiles;
+ }
+
+ public void setProyectiles(int proyectiles) {
+ this.proyectiles = proyectiles;
+ }
+
+ public int getWrestling() {
+ return wrestling;
+ }
+
+ public void setWrestling(int wrestling) {
+ this.wrestling = wrestling;
+ }
+
+ public int getNavegacion() {
+ return navegacion;
+ }
+
+ public void setNavegacion(int navegacion) {
+ this.navegacion = navegacion;
+ }
+
+ public int getEquitacion() {
+ return equitacion;
+ }
+
+ public void setEquitacion(int equitacion) {
+ this.equitacion = equitacion;
+ }
+
+ public void initial(int initialValue) {
+ try {
+ for (Field field : this.getClass().getFields()) {
+ field.setInt(this, initialValue);
+ }
+ } catch (Exception ignored) {
+
+ }
+ }
+}
diff --git a/components/src/component/entity/character/info/SpellBook.java b/components/src/component/entity/character/info/SpellBook.java
index 12e282e7..ce8884f8 100644
--- a/components/src/component/entity/character/info/SpellBook.java
+++ b/components/src/component/entity/character/info/SpellBook.java
@@ -8,7 +8,7 @@
@PooledWeaver
public class SpellBook extends Component implements Serializable {
- public final static int SIZE = 25;
+ public final static int SIZE = 15;
public Integer[] spells = new Integer[SIZE];
private String msj = "";
diff --git a/components/src/component/entity/character/render/CharAnimation.java b/components/src/component/entity/character/render/CharAnimation.java
new file mode 100644
index 00000000..ebfd4f28
--- /dev/null
+++ b/components/src/component/entity/character/render/CharAnimation.java
@@ -0,0 +1,33 @@
+package component.entity.character.render;
+
+import com.artemis.Component;
+
+public class CharAnimation extends Component {
+ private float time;
+ private float duration;
+
+ public CharAnimation() {}
+
+ public float getDuration() {
+ return duration;
+ }
+
+ public void setDuration(float duration) {
+ this.duration = duration;
+ }
+
+ public float getTime() {
+ return time;
+ }
+
+ public void setTime(float time) {
+ this.time = time;
+ }
+
+ public void add(float deltaTime) {
+ time += deltaTime;
+ if (time > duration) {
+ time -= duration;
+ }
+ }
+}
diff --git a/components/src/component/entity/character/render/CharRenderInfo.java b/components/src/component/entity/character/render/CharRenderInfo.java
new file mode 100644
index 00000000..138a486e
--- /dev/null
+++ b/components/src/component/entity/character/render/CharRenderInfo.java
@@ -0,0 +1,87 @@
+package component.entity.character.render;
+
+import com.artemis.Component;
+import com.artemis.annotations.PooledWeaver;
+import component.entity.character.states.Heading;
+
+import java.util.Objects;
+
+@PooledWeaver
+public class CharRenderInfo extends Component {
+ public static int NONE = -1;
+
+ int body = NONE;
+ int head = NONE;
+ int shield = NONE;
+ int helmet = NONE;
+ int weapon = NONE;
+ int heading = Heading.HEADING_SOUTH;
+
+ public CharRenderInfo() {}
+
+ public int getBody() {
+ return body;
+ }
+
+ public void setBody(int body) {
+ this.body = body;
+ }
+
+ public int getHead() {
+ return head;
+ }
+
+ public void setHead(int head) {
+ this.head = head;
+ }
+
+ public int getShield() {
+ return shield;
+ }
+
+ public void setShield(int shield) {
+ this.shield = shield;
+ }
+
+ public int getHelmet() {
+ return helmet;
+ }
+
+ public void setHelmet(int helmet) {
+ this.helmet = helmet;
+ }
+
+ public int getWeapon() {
+ return weapon;
+ }
+
+ public void setWeapon(int weapon) {
+ this.weapon = weapon;
+ }
+
+ public int getHeading() {
+ return heading;
+ }
+
+ public void setHeading(int heading) {
+ this.heading = heading;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) return true;
+ if (o == null || getClass() != o.getClass()) return false;
+ CharRenderInfo that = (CharRenderInfo) o;
+ return body == that.body &&
+ head == that.head &&
+ shield == that.shield &&
+ helmet == that.helmet &&
+ weapon == that.weapon &&
+ heading == that.heading;
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(body, head, shield, helmet, weapon, heading);
+ }
+}
\ No newline at end of file
diff --git a/components/src/component/entity/character/render/Display.java b/components/src/component/entity/character/render/Display.java
new file mode 100644
index 00000000..bf6f347d
--- /dev/null
+++ b/components/src/component/entity/character/render/Display.java
@@ -0,0 +1,82 @@
+package component.entity.character.render;
+
+import com.artemis.Component;
+import com.artemis.annotations.PooledWeaver;
+import com.badlogic.gdx.scenes.scene2d.ui.Cell;
+import com.badlogic.gdx.scenes.scene2d.ui.Label;
+import com.badlogic.gdx.scenes.scene2d.ui.ProgressBar;
+import com.badlogic.gdx.scenes.scene2d.ui.Table;
+import com.badlogic.gdx.utils.Align;
+
+import java.io.Serializable;
+import java.util.Arrays;
+
+@PooledWeaver
+public class Display extends Component implements Serializable {
+
+ public Table display;
+ private ProgressBar hp;
+ private ProgressBar mana;
+
+ public Display() {
+ display = new Table();
+ display.setRound(false);
+ }
+
+ public Table getDisplay() {
+ return display;
+ }
+
+ public void addLabel(Label label, float prefWidth) {
+ label.setWrap(true);
+ label.setAlignment(Align.center);
+ display.row();
+ display.add(label).width(Math.min(prefWidth + 20, 200));
+
+ }
+
+ public void addHp(ProgressBar hp) {
+ this.hp = hp;
+ display.row();
+ display.add(hp).center().width(64).height(10);
+ }
+
+ public void addMana(ProgressBar mana) {
+ this.mana = mana;
+ display.add(mana).center().width(64).height(10);
+ }
+
+ public void setHp(int value, int max) {
+ if (hasHp()) {
+ if (hp.getMaxValue() != max) {
+ hp.setRange(0, max);
+ }
+ if (hp.getValue() != value) {
+ hp.setValue(value);
+ }
+ }
+ }
+
+ public void setMana(int value, int max) {
+ if (hasMana()) {
+ if (mana.getMaxValue() != max) {
+ mana.setRange(0, max);
+ }
+ if (mana.getValue() != value) {
+ mana.setValue(value);
+ }
+ }
+ }
+
+ public boolean hasMana() {
+ return mana != null;
+ }
+
+ public boolean hasHp() {
+ return hp != null;
+ }
+
+ public Label getLabel() {
+ return Arrays.stream(display.getChildren().items).filter(Label.class::isInstance).map(Label.class::cast).findFirst().get();
+ }
+}
diff --git a/components/src/component/physics/AOPhysics.java b/components/src/component/physics/AOPhysics.java
index 24a61334..32c7ca8a 100644
--- a/components/src/component/physics/AOPhysics.java
+++ b/components/src/component/physics/AOPhysics.java
@@ -11,7 +11,7 @@
@PooledWeaver
public class AOPhysics extends Component implements Serializable {
- public final static float WALKING_VELOCITY = 165.0f;
+ public final static float WALKING_VELOCITY = 32 * 4f;
public Deque intentions = new ConcurrentLinkedDeque<>();
public float velocity = WALKING_VELOCITY;
@@ -20,7 +20,7 @@ public AOPhysics() {
}
public float getVelocity() {
- return velocity * 2;
+ return velocity;
}
public void setVelocity(float velocity) {
diff --git a/components/src/component/position/WorldPos.java b/components/src/component/position/WorldPos.java
index 1d65ad0a..5dae3e34 100644
--- a/components/src/component/position/WorldPos.java
+++ b/components/src/component/position/WorldPos.java
@@ -53,6 +53,12 @@ public WorldPos getNextPos(Heading facing) {
return new WorldPos();
}
+ public void setWorldPos(WorldPos pos){
+ this.x = pos.getX();
+ this.y = pos.getY();
+ this.map = pos.getMap();
+ }
+
public int getMap() {
return map;
}
diff --git a/design/output/images.json b/design/output/images.json
new file mode 100644
index 00000000..cdfa3530
--- /dev/null
+++ b/design/output/images.json
@@ -0,0 +1 @@
+[{"x":64,"y":0,"fileNum":1,"id":1,"width":32,"height":32},{"x":32,"y":0,"fileNum":1,"id":2,"width":32,"height":32},{"x":0,"y":0,"fileNum":1,"id":3,"width":32,"height":32},{"x":96,"y":0,"fileNum":1,"id":4,"width":32,"height":32},{"x":0,"y":0,"fileNum":11028,"id":5,"width":256,"height":160},{"x":0,"y":0,"fileNum":11030,"id":6,"width":256,"height":96},{"x":0,"y":0,"fileNum":11031,"id":7,"width":96,"height":96},{"x":0,"y":0,"fileNum":11032,"id":8,"width":96,"height":96},{"x":0,"y":0,"fileNum":14034,"id":9,"width":256,"height":188},{"x":0,"y":0,"fileNum":12050,"id":10,"width":32,"height":32},{"x":32,"y":0,"fileNum":12050,"id":11,"width":32,"height":32},{"x":0,"y":32,"fileNum":12050,"id":12,"width":32,"height":32},{"x":32,"y":32,"fileNum":12050,"id":13,"width":32,"height":32},{"x":0,"y":0,"fileNum":15157,"id":14,"width":50,"height":42},{"x":0,"y":0,"fileNum":15158,"id":15,"width":11,"height":30},{"x":11,"y":0,"fileNum":15158,"id":16,"width":11,"height":30},{"x":22,"y":0,"fileNum":15158,"id":17,"width":11,"height":30},{"x":33,"y":0,"fileNum":15158,"id":18,"width":11,"height":30},{"x":44,"y":0,"fileNum":15158,"id":19,"width":11,"height":30},{"x":55,"y":0,"fileNum":15158,"id":20,"width":11,"height":30},{"x":66,"y":0,"fileNum":15158,"id":21,"width":11,"height":30},{"x":77,"y":0,"fileNum":15158,"id":22,"width":11,"height":30},{"x":88,"y":0,"fileNum":15158,"id":23,"width":11,"height":30},{"x":99,"y":0,"fileNum":15158,"id":24,"width":11,"height":30},{"x":0,"y":0,"fileNum":15159,"id":26,"width":51,"height":81},{"x":51,"y":0,"fileNum":15159,"id":27,"width":51,"height":81},{"x":102,"y":0,"fileNum":15159,"id":28,"width":51,"height":81},{"x":153,"y":0,"fileNum":15159,"id":29,"width":51,"height":81},{"x":0,"y":0,"fileNum":15160,"id":31,"width":60,"height":54},{"x":0,"y":0,"fileNum":15161,"id":32,"width":40,"height":30},{"x":0,"y":0,"fileNum":14035,"id":33,"width":256,"height":188},{"x":0,"y":0,"fileNum":11034,"id":34,"width":256,"height":160},{"x":0,"y":0,"fileNum":11035,"id":35,"width":256,"height":96},{"x":0,"y":0,"fileNum":15162,"id":36,"width":35,"height":32},{"x":0,"y":0,"fileNum":15163,"id":37,"width":35,"height":32},{"x":0,"y":0,"fileNum":15164,"id":38,"width":35,"height":35},{"x":35,"y":0,"fileNum":15164,"id":39,"width":35,"height":35},{"x":70,"y":0,"fileNum":15164,"id":40,"width":35,"height":35},{"x":105,"y":0,"fileNum":15164,"id":41,"width":35,"height":35},{"x":140,"y":0,"fileNum":15164,"id":42,"width":35,"height":35},{"x":175,"y":0,"fileNum":15164,"id":43,"width":35,"height":35},{"x":210,"y":0,"fileNum":15164,"id":44,"width":35,"height":35},{"x":245,"y":0,"fileNum":15164,"id":45,"width":35,"height":35},{"x":280,"y":0,"fileNum":15164,"id":46,"width":35,"height":35},{"x":315,"y":0,"fileNum":15164,"id":47,"width":35,"height":35},{"x":350,"y":0,"fileNum":15164,"id":48,"width":35,"height":35},{"x":0,"y":0,"fileNum":15165,"id":50,"width":75,"height":75},{"x":0,"y":0,"fileNum":15166,"id":51,"width":35,"height":30},{"x":0,"y":0,"fileNum":15167,"id":52,"width":45,"height":37},{"x":0,"y":0,"fileNum":23005,"id":53,"width":32,"height":32},{"x":0,"y":0,"fileNum":22052,"id":54,"width":32,"height":32},{"x":0,"y":0,"fileNum":18024,"id":55,"width":32,"height":32},{"x":0,"y":0,"fileNum":15169,"id":56,"width":64,"height":64},{"x":64,"y":0,"fileNum":15169,"id":57,"width":64,"height":64},{"x":128,"y":0,"fileNum":15169,"id":58,"width":64,"height":64},{"x":192,"y":0,"fileNum":15169,"id":59,"width":64,"height":64},{"x":0,"y":0,"fileNum":4156,"id":61,"width":32,"height":64},{"x":29,"y":0,"fileNum":4156,"id":62,"width":32,"height":64},{"x":60,"y":0,"fileNum":4156,"id":63,"width":32,"height":64},{"x":90,"y":0,"fileNum":4156,"id":64,"width":32,"height":64},{"x":0,"y":64,"fileNum":4156,"id":65,"width":32,"height":85},{"x":29,"y":64,"fileNum":4156,"id":66,"width":32,"height":85},{"x":60,"y":64,"fileNum":4156,"id":67,"width":32,"height":85},{"x":90,"y":64,"fileNum":4156,"id":68,"width":32,"height":85},{"x":0,"y":142,"fileNum":4156,"id":69,"width":75,"height":70},{"x":75,"y":142,"fileNum":4156,"id":70,"width":75,"height":70},{"x":150,"y":142,"fileNum":4156,"id":71,"width":75,"height":70},{"x":225,"y":142,"fileNum":4156,"id":72,"width":75,"height":70},{"x":0,"y":210,"fileNum":4156,"id":73,"width":72,"height":65},{"x":72,"y":210,"fileNum":4156,"id":74,"width":72,"height":65},{"x":150,"y":210,"fileNum":4156,"id":75,"width":72,"height":65},{"x":227,"y":210,"fileNum":4156,"id":76,"width":72,"height":65},{"x":0,"y":0,"fileNum":18016,"id":81,"width":17,"height":16},{"x":17,"y":0,"fileNum":18016,"id":82,"width":17,"height":16},{"x":34,"y":0,"fileNum":18016,"id":83,"width":17,"height":16},{"x":51,"y":0,"fileNum":18016,"id":84,"width":17,"height":16},{"x":10,"y":0,"fileNum":4073,"id":85,"width":50,"height":130},{"x":100,"y":0,"fileNum":4073,"id":86,"width":50,"height":130},{"x":200,"y":0,"fileNum":4073,"id":87,"width":50,"height":130},{"x":300,"y":0,"fileNum":4073,"id":88,"width":50,"height":130},{"x":10,"y":150,"fileNum":4073,"id":89,"width":50,"height":130},{"x":100,"y":150,"fileNum":4073,"id":90,"width":50,"height":130},{"x":200,"y":150,"fileNum":4073,"id":91,"width":50,"height":130},{"x":300,"y":150,"fileNum":4073,"id":92,"width":50,"height":130},{"x":0,"y":0,"fileNum":15006,"id":94,"width":70,"height":35},{"x":0,"y":0,"fileNum":9000,"id":95,"width":128,"height":99},{"x":1,"y":0,"fileNum":15001,"id":96,"width":84,"height":93},{"x":85,"y":0,"fileNum":15001,"id":97,"width":84,"height":93},{"x":169,"y":0,"fileNum":15001,"id":98,"width":84,"height":93},{"x":0,"y":0,"fileNum":3051,"id":100,"width":128,"height":128},{"x":0,"y":0,"fileNum":3052,"id":101,"width":128,"height":128},{"x":0,"y":0,"fileNum":3053,"id":102,"width":128,"height":128},{"x":0,"y":0,"fileNum":3054,"id":103,"width":128,"height":128},{"x":0,"y":0,"fileNum":3055,"id":104,"width":128,"height":128},{"x":0,"y":0,"fileNum":3056,"id":105,"width":128,"height":128},{"x":0,"y":0,"fileNum":3057,"id":106,"width":128,"height":128},{"x":0,"y":0,"fileNum":3058,"id":107,"width":128,"height":128},{"x":0,"y":0,"fileNum":3059,"id":108,"width":128,"height":128},{"x":0,"y":0,"fileNum":3060,"id":109,"width":128,"height":128},{"x":0,"y":0,"fileNum":3061,"id":110,"width":128,"height":128},{"x":0,"y":0,"fileNum":3062,"id":111,"width":128,"height":128},{"x":0,"y":0,"fileNum":3063,"id":112,"width":128,"height":128},{"x":0,"y":0,"fileNum":3064,"id":113,"width":128,"height":128},{"x":0,"y":0,"fileNum":3066,"id":114,"width":128,"height":128},{"x":0,"y":0,"fileNum":3067,"id":116,"width":32,"height":32},{"x":32,"y":0,"fileNum":3067,"id":117,"width":32,"height":32},{"x":64,"y":0,"fileNum":3067,"id":118,"width":32,"height":32},{"x":0,"y":0,"fileNum":3068,"id":120,"width":32,"height":32},{"x":32,"y":0,"fileNum":3068,"id":121,"width":32,"height":32},{"x":64,"y":0,"fileNum":3068,"id":122,"width":32,"height":32},{"x":0,"y":0,"fileNum":3069,"id":124,"width":30,"height":40},{"x":30,"y":0,"fileNum":3069,"id":125,"width":30,"height":40},{"x":60,"y":0,"fileNum":3069,"id":126,"width":30,"height":40},{"x":90,"y":0,"fileNum":3069,"id":127,"width":30,"height":40},{"x":120,"y":0,"fileNum":3069,"id":128,"width":30,"height":40},{"x":0,"y":40,"fileNum":3069,"id":129,"width":30,"height":40},{"x":30,"y":40,"fileNum":3069,"id":130,"width":30,"height":40},{"x":60,"y":40,"fileNum":3069,"id":131,"width":30,"height":40},{"x":90,"y":40,"fileNum":3069,"id":132,"width":30,"height":40},{"x":120,"y":40,"fileNum":3069,"id":133,"width":30,"height":40},{"x":0,"y":0,"fileNum":3070,"id":135,"width":40,"height":85},{"x":40,"y":0,"fileNum":3070,"id":136,"width":40,"height":85},{"x":80,"y":0,"fileNum":3070,"id":137,"width":40,"height":85},{"x":120,"y":0,"fileNum":3070,"id":138,"width":40,"height":85},{"x":160,"y":0,"fileNum":3070,"id":139,"width":40,"height":85},{"x":0,"y":85,"fileNum":3070,"id":140,"width":40,"height":85},{"x":40,"y":85,"fileNum":3070,"id":141,"width":40,"height":85},{"x":80,"y":85,"fileNum":3070,"id":142,"width":40,"height":85},{"x":120,"y":85,"fileNum":3070,"id":143,"width":40,"height":85},{"x":160,"y":85,"fileNum":3070,"id":144,"width":40,"height":85},{"x":0,"y":0,"fileNum":3071,"id":146,"width":80,"height":170},{"x":80,"y":0,"fileNum":3071,"id":147,"width":80,"height":170},{"x":160,"y":0,"fileNum":3071,"id":148,"width":80,"height":170},{"x":240,"y":0,"fileNum":3071,"id":149,"width":80,"height":170},{"x":320,"y":0,"fileNum":3071,"id":150,"width":80,"height":170},{"x":0,"y":170,"fileNum":3071,"id":151,"width":80,"height":170},{"x":80,"y":170,"fileNum":3071,"id":152,"width":80,"height":170},{"x":160,"y":170,"fileNum":3071,"id":153,"width":80,"height":170},{"x":240,"y":170,"fileNum":3071,"id":154,"width":80,"height":170},{"x":320,"y":170,"fileNum":3071,"id":155,"width":80,"height":170},{"x":0,"y":0,"fileNum":3036,"id":157,"width":128,"height":128},{"x":0,"y":0,"fileNum":3037,"id":158,"width":128,"height":128},{"x":0,"y":0,"fileNum":3038,"id":159,"width":128,"height":128},{"x":0,"y":0,"fileNum":3039,"id":160,"width":128,"height":128},{"x":0,"y":0,"fileNum":3040,"id":161,"width":128,"height":128},{"x":0,"y":0,"fileNum":3041,"id":162,"width":128,"height":128},{"x":0,"y":0,"fileNum":3042,"id":163,"width":128,"height":128},{"x":0,"y":0,"fileNum":3043,"id":164,"width":128,"height":128},{"x":0,"y":0,"fileNum":3044,"id":165,"width":128,"height":128},{"x":0,"y":0,"fileNum":3045,"id":166,"width":128,"height":128},{"x":0,"y":0,"fileNum":3046,"id":167,"width":128,"height":128},{"x":0,"y":0,"fileNum":3047,"id":168,"width":128,"height":128},{"x":0,"y":0,"fileNum":3048,"id":169,"width":128,"height":128},{"x":0,"y":0,"fileNum":3049,"id":170,"width":128,"height":128},{"x":0,"y":0,"fileNum":3050,"id":171,"width":128,"height":128},{"x":0,"y":0,"fileNum":3089,"id":173,"width":96,"height":128},{"x":96,"y":0,"fileNum":3089,"id":174,"width":96,"height":128},{"x":192,"y":0,"fileNum":3089,"id":175,"width":96,"height":128},{"x":288,"y":0,"fileNum":3089,"id":176,"width":96,"height":128},{"x":384,"y":0,"fileNum":3089,"id":177,"width":96,"height":128},{"x":0,"y":128,"fileNum":3089,"id":178,"width":96,"height":128},{"x":96,"y":128,"fileNum":3089,"id":179,"width":96,"height":128},{"x":192,"y":128,"fileNum":3089,"id":180,"width":96,"height":128},{"x":288,"y":128,"fileNum":3089,"id":181,"width":96,"height":128},{"x":384,"y":128,"fileNum":3089,"id":182,"width":96,"height":128},{"x":0,"y":0,"fileNum":3090,"id":184,"width":96,"height":96},{"x":96,"y":0,"fileNum":3090,"id":185,"width":96,"height":96},{"x":192,"y":0,"fileNum":3090,"id":186,"width":96,"height":96},{"x":288,"y":0,"fileNum":3090,"id":187,"width":96,"height":96},{"x":384,"y":0,"fileNum":3090,"id":188,"width":96,"height":96},{"x":0,"y":96,"fileNum":3090,"id":189,"width":96,"height":96},{"x":96,"y":96,"fileNum":3090,"id":190,"width":96,"height":96},{"x":192,"y":96,"fileNum":3090,"id":191,"width":96,"height":96},{"x":288,"y":96,"fileNum":3090,"id":192,"width":96,"height":96},{"x":384,"y":96,"fileNum":3090,"id":193,"width":96,"height":96},{"x":0,"y":0,"fileNum":3091,"id":195,"width":64,"height":64},{"x":64,"y":0,"fileNum":3091,"id":196,"width":64,"height":64},{"x":128,"y":0,"fileNum":3091,"id":197,"width":64,"height":64},{"x":192,"y":0,"fileNum":3091,"id":198,"width":64,"height":64},{"x":256,"y":0,"fileNum":3091,"id":199,"width":64,"height":64},{"x":0,"y":64,"fileNum":3091,"id":200,"width":64,"height":64},{"x":64,"y":64,"fileNum":3091,"id":201,"width":64,"height":64},{"x":128,"y":64,"fileNum":3091,"id":202,"width":64,"height":64},{"x":192,"y":64,"fileNum":3091,"id":203,"width":64,"height":64},{"x":256,"y":64,"fileNum":3091,"id":204,"width":64,"height":64},{"x":0,"y":0,"fileNum":3021,"id":206,"width":128,"height":128},{"x":0,"y":0,"fileNum":3022,"id":207,"width":128,"height":128},{"x":0,"y":0,"fileNum":3023,"id":208,"width":128,"height":128},{"x":0,"y":0,"fileNum":3024,"id":209,"width":128,"height":128},{"x":0,"y":0,"fileNum":3025,"id":210,"width":128,"height":128},{"x":0,"y":0,"fileNum":3026,"id":211,"width":128,"height":128},{"x":0,"y":0,"fileNum":3027,"id":212,"width":128,"height":128},{"x":0,"y":0,"fileNum":3028,"id":213,"width":128,"height":128},{"x":0,"y":0,"fileNum":3029,"id":214,"width":128,"height":128},{"x":0,"y":0,"fileNum":3030,"id":215,"width":128,"height":128},{"x":0,"y":0,"fileNum":3031,"id":216,"width":128,"height":128},{"x":0,"y":0,"fileNum":3032,"id":217,"width":128,"height":128},{"x":0,"y":0,"fileNum":3033,"id":218,"width":128,"height":128},{"x":0,"y":0,"fileNum":3034,"id":219,"width":128,"height":128},{"x":0,"y":0,"fileNum":3035,"id":220,"width":128,"height":128},{"x":0,"y":0,"fileNum":3095,"id":222,"width":128,"height":128},{"x":128,"y":0,"fileNum":3095,"id":223,"width":128,"height":128},{"x":256,"y":0,"fileNum":3095,"id":224,"width":128,"height":128},{"x":384,"y":0,"fileNum":3095,"id":225,"width":128,"height":128},{"x":0,"y":128,"fileNum":3095,"id":226,"width":128,"height":128},{"x":128,"y":128,"fileNum":3095,"id":227,"width":128,"height":128},{"x":256,"y":128,"fileNum":3095,"id":228,"width":128,"height":128},{"x":384,"y":128,"fileNum":3095,"id":229,"width":128,"height":128},{"x":0,"y":256,"fileNum":3095,"id":230,"width":128,"height":128},{"x":128,"y":256,"fileNum":3095,"id":231,"width":128,"height":128},{"x":256,"y":256,"fileNum":3095,"id":232,"width":128,"height":128},{"x":384,"y":256,"fileNum":3095,"id":233,"width":128,"height":128},{"x":0,"y":384,"fileNum":3095,"id":234,"width":128,"height":128},{"x":128,"y":384,"fileNum":3095,"id":235,"width":128,"height":128},{"x":256,"y":384,"fileNum":3095,"id":236,"width":128,"height":128},{"x":0,"y":0,"fileNum":3000,"id":238,"width":145,"height":145},{"x":0,"y":0,"fileNum":3001,"id":239,"width":145,"height":145},{"x":0,"y":0,"fileNum":3002,"id":240,"width":145,"height":145},{"x":0,"y":0,"fileNum":3003,"id":241,"width":145,"height":145},{"x":0,"y":0,"fileNum":3004,"id":242,"width":145,"height":145},{"x":0,"y":0,"fileNum":3005,"id":243,"width":145,"height":145},{"x":0,"y":0,"fileNum":3006,"id":244,"width":145,"height":145},{"x":0,"y":0,"fileNum":3007,"id":245,"width":145,"height":145},{"x":0,"y":0,"fileNum":3008,"id":246,"width":145,"height":145},{"x":0,"y":0,"fileNum":3009,"id":247,"width":145,"height":145},{"x":0,"y":0,"fileNum":3010,"id":248,"width":145,"height":145},{"x":0,"y":0,"fileNum":3011,"id":249,"width":145,"height":145},{"x":0,"y":0,"fileNum":3012,"id":250,"width":145,"height":145},{"x":0,"y":0,"fileNum":3013,"id":251,"width":145,"height":145},{"x":0,"y":0,"fileNum":3014,"id":252,"width":145,"height":145},{"x":0,"y":0,"fileNum":3015,"id":253,"width":145,"height":145},{"x":0,"y":0,"fileNum":3016,"id":254,"width":145,"height":145},{"x":0,"y":0,"fileNum":3017,"id":255,"width":145,"height":145},{"x":0,"y":0,"fileNum":3018,"id":256,"width":145,"height":145},{"x":0,"y":0,"fileNum":3019,"id":257,"width":145,"height":145},{"x":0,"y":0,"fileNum":3020,"id":258,"width":145,"height":145},{"x":0,"y":0,"fileNum":3101,"id":260,"width":32,"height":32},{"x":0,"y":0,"fileNum":3102,"id":261,"width":32,"height":32},{"x":0,"y":0,"fileNum":3103,"id":262,"width":32,"height":32},{"x":0,"y":0,"fileNum":3104,"id":263,"width":32,"height":32},{"x":0,"y":0,"fileNum":3105,"id":264,"width":32,"height":32},{"x":0,"y":0,"fileNum":3106,"id":266,"width":15,"height":15},{"x":15,"y":0,"fileNum":3106,"id":267,"width":15,"height":15},{"x":30,"y":0,"fileNum":3106,"id":268,"width":15,"height":15},{"x":45,"y":0,"fileNum":3106,"id":269,"width":15,"height":15},{"x":60,"y":0,"fileNum":3106,"id":270,"width":15,"height":15},{"x":75,"y":0,"fileNum":3106,"id":271,"width":15,"height":15},{"x":90,"y":0,"fileNum":3106,"id":272,"width":15,"height":15},{"x":105,"y":0,"fileNum":3106,"id":273,"width":15,"height":15},{"x":0,"y":0,"fileNum":15002,"id":274,"width":128,"height":32},{"x":0,"y":0,"fileNum":3094,"id":276,"width":160,"height":170},{"x":160,"y":0,"fileNum":3094,"id":277,"width":160,"height":170},{"x":320,"y":0,"fileNum":3094,"id":278,"width":160,"height":170},{"x":480,"y":0,"fileNum":3094,"id":279,"width":160,"height":170},{"x":640,"y":0,"fileNum":3094,"id":280,"width":160,"height":170},{"x":0,"y":170,"fileNum":3094,"id":281,"width":160,"height":170},{"x":160,"y":170,"fileNum":3094,"id":282,"width":160,"height":170},{"x":320,"y":170,"fileNum":3094,"id":283,"width":160,"height":170},{"x":480,"y":170,"fileNum":3094,"id":284,"width":160,"height":170},{"x":640,"y":170,"fileNum":3094,"id":285,"width":160,"height":170},{"x":0,"y":0,"fileNum":4074,"id":287,"width":80,"height":170},{"x":80,"y":0,"fileNum":4074,"id":288,"width":80,"height":170},{"x":160,"y":0,"fileNum":4074,"id":289,"width":80,"height":170},{"x":240,"y":0,"fileNum":4074,"id":290,"width":80,"height":170},{"x":320,"y":0,"fileNum":4074,"id":291,"width":80,"height":170},{"x":0,"y":170,"fileNum":4074,"id":292,"width":80,"height":170},{"x":80,"y":170,"fileNum":4074,"id":293,"width":80,"height":170},{"x":160,"y":170,"fileNum":4074,"id":294,"width":80,"height":170},{"x":240,"y":170,"fileNum":4074,"id":295,"width":80,"height":170},{"x":320,"y":170,"fileNum":4074,"id":296,"width":80,"height":170},{"x":0,"y":0,"fileNum":4075,"id":298,"width":80,"height":170},{"x":80,"y":0,"fileNum":4075,"id":299,"width":80,"height":170},{"x":160,"y":0,"fileNum":4075,"id":300,"width":80,"height":170},{"x":240,"y":0,"fileNum":4075,"id":301,"width":80,"height":170},{"x":320,"y":0,"fileNum":4075,"id":302,"width":80,"height":170},{"x":0,"y":170,"fileNum":4075,"id":303,"width":80,"height":170},{"x":80,"y":170,"fileNum":4075,"id":304,"width":80,"height":170},{"x":160,"y":170,"fileNum":4075,"id":305,"width":80,"height":170},{"x":240,"y":170,"fileNum":4075,"id":306,"width":80,"height":170},{"x":320,"y":170,"fileNum":4075,"id":307,"width":80,"height":170},{"x":9,"y":0,"fileNum":15003,"id":309,"width":45,"height":64},{"x":0,"y":0,"fileNum":15004,"id":310,"width":32,"height":32},{"x":5,"y":11,"fileNum":15005,"id":311,"width":32,"height":32},{"x":8,"y":8,"fileNum":15007,"id":312,"width":25,"height":45},{"x":0,"y":6,"fileNum":15011,"id":313,"width":80,"height":39},{"x":1,"y":0,"fileNum":15013,"id":314,"width":32,"height":32},{"x":0,"y":0,"fileNum":15143,"id":315,"width":32,"height":32},{"x":0,"y":0,"fileNum":15144,"id":316,"width":32,"height":32},{"x":0,"y":0,"fileNum":15146,"id":317,"width":32,"height":32},{"x":0,"y":0,"fileNum":15147,"id":318,"width":32,"height":32},{"x":0,"y":0,"fileNum":15148,"id":319,"width":32,"height":32},{"x":0,"y":0,"fileNum":15149,"id":320,"width":32,"height":32},{"x":0,"y":0,"fileNum":15150,"id":321,"width":32,"height":32},{"x":0,"y":0,"fileNum":15151,"id":322,"width":32,"height":32},{"x":0,"y":0,"fileNum":15152,"id":323,"width":32,"height":32},{"x":0,"y":0,"fileNum":12039,"id":324,"width":32,"height":32},{"x":32,"y":0,"fileNum":12039,"id":325,"width":32,"height":32},{"x":64,"y":0,"fileNum":12039,"id":326,"width":32,"height":32},{"x":96,"y":0,"fileNum":12039,"id":327,"width":32,"height":32},{"x":0,"y":32,"fileNum":12039,"id":328,"width":32,"height":32},{"x":32,"y":32,"fileNum":12039,"id":329,"width":32,"height":32},{"x":64,"y":32,"fileNum":12039,"id":330,"width":32,"height":32},{"x":96,"y":32,"fileNum":12039,"id":331,"width":32,"height":32},{"x":0,"y":64,"fileNum":12039,"id":332,"width":32,"height":32},{"x":32,"y":64,"fileNum":12039,"id":333,"width":32,"height":32},{"x":64,"y":64,"fileNum":12039,"id":334,"width":32,"height":32},{"x":96,"y":64,"fileNum":12039,"id":335,"width":32,"height":32},{"x":0,"y":96,"fileNum":12039,"id":336,"width":32,"height":32},{"x":32,"y":96,"fileNum":12039,"id":337,"width":32,"height":32},{"x":64,"y":96,"fileNum":12039,"id":338,"width":32,"height":32},{"x":96,"y":96,"fileNum":12039,"id":339,"width":32,"height":32},{"x":128,"y":0,"fileNum":12039,"id":340,"width":32,"height":32},{"x":160,"y":0,"fileNum":12039,"id":341,"width":32,"height":32},{"x":192,"y":0,"fileNum":12039,"id":342,"width":32,"height":32},{"x":224,"y":0,"fileNum":12039,"id":343,"width":32,"height":32},{"x":128,"y":32,"fileNum":12039,"id":344,"width":32,"height":32},{"x":160,"y":32,"fileNum":12039,"id":345,"width":32,"height":32},{"x":192,"y":32,"fileNum":12039,"id":346,"width":32,"height":32},{"x":224,"y":32,"fileNum":12039,"id":347,"width":32,"height":32},{"x":128,"y":64,"fileNum":12039,"id":348,"width":32,"height":32},{"x":160,"y":64,"fileNum":12039,"id":349,"width":32,"height":32},{"x":192,"y":64,"fileNum":12039,"id":350,"width":32,"height":32},{"x":224,"y":64,"fileNum":12039,"id":351,"width":32,"height":32},{"x":128,"y":96,"fileNum":12039,"id":352,"width":32,"height":32},{"x":160,"y":96,"fileNum":12039,"id":353,"width":32,"height":32},{"x":192,"y":96,"fileNum":12039,"id":354,"width":32,"height":32},{"x":224,"y":96,"fileNum":12039,"id":355,"width":32,"height":32},{"x":256,"y":0,"fileNum":12039,"id":356,"width":32,"height":32},{"x":288,"y":0,"fileNum":12039,"id":357,"width":32,"height":32},{"x":320,"y":0,"fileNum":12039,"id":358,"width":32,"height":32},{"x":352,"y":0,"fileNum":12039,"id":359,"width":32,"height":32},{"x":256,"y":32,"fileNum":12039,"id":360,"width":32,"height":32},{"x":288,"y":32,"fileNum":12039,"id":361,"width":32,"height":32},{"x":320,"y":32,"fileNum":12039,"id":362,"width":32,"height":32},{"x":352,"y":32,"fileNum":12039,"id":363,"width":32,"height":32},{"x":256,"y":64,"fileNum":12039,"id":364,"width":32,"height":32},{"x":288,"y":64,"fileNum":12039,"id":365,"width":32,"height":32},{"x":320,"y":64,"fileNum":12039,"id":366,"width":32,"height":32},{"x":352,"y":64,"fileNum":12039,"id":367,"width":32,"height":32},{"x":256,"y":96,"fileNum":12039,"id":368,"width":32,"height":32},{"x":288,"y":96,"fileNum":12039,"id":369,"width":32,"height":32},{"x":320,"y":96,"fileNum":12039,"id":370,"width":32,"height":32},{"x":352,"y":96,"fileNum":12039,"id":371,"width":32,"height":32},{"x":0,"y":128,"fileNum":12039,"id":372,"width":32,"height":32},{"x":32,"y":128,"fileNum":12039,"id":373,"width":32,"height":32},{"x":64,"y":128,"fileNum":12039,"id":374,"width":32,"height":32},{"x":96,"y":128,"fileNum":12039,"id":375,"width":32,"height":32},{"x":0,"y":160,"fileNum":12039,"id":376,"width":32,"height":32},{"x":32,"y":160,"fileNum":12039,"id":377,"width":32,"height":32},{"x":64,"y":160,"fileNum":12039,"id":378,"width":32,"height":32},{"x":96,"y":160,"fileNum":12039,"id":379,"width":32,"height":32},{"x":0,"y":192,"fileNum":12039,"id":380,"width":32,"height":32},{"x":32,"y":192,"fileNum":12039,"id":381,"width":32,"height":32},{"x":64,"y":192,"fileNum":12039,"id":382,"width":32,"height":32},{"x":96,"y":192,"fileNum":12039,"id":383,"width":32,"height":32},{"x":0,"y":224,"fileNum":12039,"id":384,"width":32,"height":32},{"x":32,"y":224,"fileNum":12039,"id":385,"width":32,"height":32},{"x":64,"y":224,"fileNum":12039,"id":386,"width":32,"height":32},{"x":96,"y":224,"fileNum":12039,"id":387,"width":32,"height":32},{"x":0,"y":0,"fileNum":22008,"id":388,"width":32,"height":32},{"x":0,"y":0,"fileNum":8173,"id":389,"width":55,"height":50},{"x":45,"y":0,"fileNum":8173,"id":390,"width":55,"height":50},{"x":90,"y":0,"fileNum":8173,"id":391,"width":55,"height":50},{"x":155,"y":0,"fileNum":8173,"id":392,"width":50,"height":50},{"x":220,"y":0,"fileNum":8173,"id":393,"width":50,"height":50},{"x":275,"y":0,"fileNum":8173,"id":394,"width":50,"height":50},{"x":325,"y":0,"fileNum":8173,"id":395,"width":50,"height":50},{"x":375,"y":0,"fileNum":8173,"id":396,"width":50,"height":50},{"x":435,"y":0,"fileNum":8173,"id":397,"width":50,"height":50},{"x":495,"y":0,"fileNum":8173,"id":398,"width":50,"height":50},{"x":0,"y":0,"fileNum":18018,"id":399,"width":17,"height":16},{"x":17,"y":0,"fileNum":18018,"id":400,"width":17,"height":16},{"x":34,"y":0,"fileNum":18018,"id":401,"width":17,"height":16},{"x":51,"y":0,"fileNum":18018,"id":402,"width":17,"height":16},{"x":0,"y":0,"fileNum":22026,"id":403,"width":32,"height":32},{"x":0,"y":0,"fileNum":15199,"id":404,"width":32,"height":32},{"x":0,"y":76,"fileNum":3082,"id":405,"width":84,"height":76},{"x":84,"y":76,"fileNum":3082,"id":406,"width":84,"height":76},{"x":168,"y":76,"fileNum":3082,"id":407,"width":84,"height":76},{"x":252,"y":76,"fileNum":3082,"id":408,"width":84,"height":76},{"x":336,"y":76,"fileNum":3082,"id":409,"width":84,"height":76},{"x":420,"y":76,"fileNum":3082,"id":410,"width":84,"height":76},{"x":504,"y":76,"fileNum":3082,"id":411,"width":84,"height":76},{"x":0,"y":152,"fileNum":3082,"id":412,"width":84,"height":76},{"x":84,"y":152,"fileNum":3082,"id":413,"width":84,"height":76},{"x":168,"y":152,"fileNum":3082,"id":414,"width":84,"height":76},{"x":252,"y":152,"fileNum":3082,"id":415,"width":84,"height":76},{"x":336,"y":152,"fileNum":3082,"id":416,"width":84,"height":76},{"x":420,"y":152,"fileNum":3082,"id":417,"width":84,"height":76},{"x":0,"y":228,"fileNum":3082,"id":418,"width":84,"height":76},{"x":84,"y":228,"fileNum":3082,"id":419,"width":84,"height":76},{"x":0,"y":0,"fileNum":12048,"id":422,"width":176,"height":208},{"x":176,"y":0,"fileNum":12048,"id":423,"width":176,"height":208},{"x":0,"y":208,"fileNum":12048,"id":424,"width":176,"height":208},{"x":176,"y":208,"fileNum":12048,"id":425,"width":176,"height":208},{"x":0,"y":0,"fileNum":9006,"id":426,"width":128,"height":256},{"x":0,"y":0,"fileNum":14029,"id":427,"width":320,"height":284},{"x":0,"y":0,"fileNum":15122,"id":428,"width":359,"height":504},{"x":0,"y":0,"fileNum":15106,"id":429,"width":70,"height":42},{"x":0,"y":0,"fileNum":15107,"id":430,"width":53,"height":49},{"x":0,"y":0,"fileNum":15108,"id":431,"width":45,"height":29},{"x":40,"y":0,"fileNum":15108,"id":432,"width":31,"height":58},{"x":0,"y":29,"fileNum":15108,"id":433,"width":45,"height":29},{"x":40,"y":29,"fileNum":15108,"id":434,"width":31,"height":29},{"x":0,"y":0,"fileNum":15109,"id":435,"width":64,"height":64},{"x":0,"y":0,"fileNum":15110,"id":436,"width":64,"height":64},{"x":0,"y":0,"fileNum":15111,"id":437,"width":20,"height":34},{"x":0,"y":0,"fileNum":11014,"id":438,"width":256,"height":96},{"x":0,"y":0,"fileNum":11015,"id":439,"width":256,"height":160},{"x":0,"y":0,"fileNum":12020,"id":440,"width":32,"height":32},{"x":32,"y":0,"fileNum":12020,"id":441,"width":32,"height":32},{"x":0,"y":32,"fileNum":12020,"id":442,"width":32,"height":32},{"x":32,"y":32,"fileNum":12020,"id":443,"width":32,"height":32},{"x":0,"y":0,"fileNum":14007,"id":444,"width":256,"height":196},{"x":45,"y":0,"fileNum":15105,"id":445,"width":80,"height":48},{"x":0,"y":48,"fileNum":15105,"id":446,"width":80,"height":48},{"x":80,"y":48,"fileNum":15105,"id":447,"width":80,"height":48},{"x":0,"y":0,"fileNum":4067,"id":448,"width":26,"height":32},{"x":26,"y":0,"fileNum":4067,"id":449,"width":26,"height":32},{"x":52,"y":0,"fileNum":4067,"id":450,"width":26,"height":32},{"x":0,"y":32,"fileNum":4067,"id":451,"width":26,"height":32},{"x":26,"y":32,"fileNum":4067,"id":452,"width":26,"height":32},{"x":52,"y":32,"fileNum":4067,"id":453,"width":26,"height":32},{"x":0,"y":64,"fileNum":4067,"id":454,"width":26,"height":32},{"x":26,"y":64,"fileNum":4067,"id":455,"width":26,"height":32},{"x":52,"y":64,"fileNum":4067,"id":456,"width":26,"height":32},{"x":0,"y":96,"fileNum":4067,"id":457,"width":26,"height":32},{"x":26,"y":96,"fileNum":4067,"id":458,"width":26,"height":32},{"x":52,"y":96,"fileNum":4067,"id":459,"width":26,"height":32},{"x":0,"y":0,"fileNum":12042,"id":464,"width":128,"height":128},{"x":0,"y":0,"fileNum":499,"id":465,"width":32,"height":32},{"x":0,"y":0,"fileNum":10010,"id":466,"width":32,"height":70},{"x":0,"y":0,"fileNum":18017,"id":467,"width":32,"height":32},{"x":0,"y":0,"fileNum":4122,"id":468,"width":32,"height":67},{"x":32,"y":0,"fileNum":4122,"id":469,"width":32,"height":67},{"x":64,"y":0,"fileNum":4122,"id":470,"width":32,"height":67},{"x":96,"y":0,"fileNum":4122,"id":471,"width":32,"height":67},{"x":128,"y":0,"fileNum":4122,"id":472,"width":32,"height":67},{"x":0,"y":0,"fileNum":4123,"id":473,"width":32,"height":55},{"x":32,"y":0,"fileNum":4123,"id":474,"width":32,"height":55},{"x":64,"y":0,"fileNum":4123,"id":475,"width":32,"height":55},{"x":96,"y":0,"fileNum":4123,"id":476,"width":32,"height":55},{"x":128,"y":0,"fileNum":4123,"id":477,"width":32,"height":55},{"x":0,"y":0,"fileNum":4124,"id":478,"width":83,"height":45},{"x":83,"y":0,"fileNum":4124,"id":479,"width":83,"height":45},{"x":166,"y":0,"fileNum":4124,"id":480,"width":83,"height":45},{"x":249,"y":0,"fileNum":4124,"id":481,"width":83,"height":45},{"x":332,"y":0,"fileNum":4124,"id":482,"width":83,"height":45},{"x":0,"y":0,"fileNum":4125,"id":483,"width":83,"height":45},{"x":83,"y":0,"fileNum":4125,"id":484,"width":83,"height":45},{"x":166,"y":0,"fileNum":4125,"id":485,"width":83,"height":45},{"x":249,"y":0,"fileNum":4125,"id":486,"width":83,"height":45},{"x":332,"y":0,"fileNum":4125,"id":487,"width":83,"height":45},{"x":3,"y":0,"fileNum":15010,"id":492,"width":38,"height":37},{"x":4,"y":10,"fileNum":15012,"id":493,"width":42,"height":35},{"x":0,"y":0,"fileNum":15014,"id":494,"width":32,"height":32},{"x":0,"y":10,"fileNum":15016,"id":495,"width":40,"height":30},{"x":0,"y":0,"fileNum":15015,"id":496,"width":32,"height":40},{"x":0,"y":0,"fileNum":15017,"id":497,"width":32,"height":32},{"x":0,"y":0,"fileNum":15019,"id":498,"width":32,"height":32},{"x":5,"y":22,"fileNum":15021,"id":499,"width":100,"height":60},{"x":0,"y":0,"fileNum":7006,"id":500,"width":64,"height":32},{"x":0,"y":0,"fileNum":7007,"id":501,"width":319,"height":239},{"x":0,"y":0,"fileNum":15134,"id":502,"width":32,"height":32},{"x":0,"y":0,"fileNum":15135,"id":503,"width":32,"height":32},{"x":0,"y":0,"fileNum":16036,"id":504,"width":32,"height":32},{"x":0,"y":0,"fileNum":16037,"id":505,"width":32,"height":32},{"x":0,"y":0,"fileNum":19006,"id":506,"width":32,"height":32},{"x":0,"y":0,"fileNum":15028,"id":507,"width":20,"height":50},{"x":0,"y":0,"fileNum":16038,"id":508,"width":32,"height":32},{"x":0,"y":0,"fileNum":22009,"id":509,"width":32,"height":32},{"x":0,"y":0,"fileNum":16039,"id":510,"width":32,"height":32},{"x":0,"y":0,"fileNum":22010,"id":511,"width":32,"height":32},{"x":0,"y":0,"fileNum":7008,"id":512,"width":64,"height":32},{"x":0,"y":0,"fileNum":15137,"id":513,"width":32,"height":32},{"x":0,"y":0,"fileNum":15138,"id":514,"width":314,"height":234},{"x":0,"y":0,"fileNum":19007,"id":515,"width":32,"height":32},{"x":0,"y":0,"fileNum":19008,"id":516,"width":32,"height":32},{"x":0,"y":0,"fileNum":19009,"id":517,"width":32,"height":32},{"x":0,"y":0,"fileNum":19010,"id":518,"width":32,"height":32},{"x":0,"y":0,"fileNum":19011,"id":519,"width":32,"height":32},{"x":0,"y":0,"fileNum":19012,"id":520,"width":32,"height":32},{"x":0,"y":0,"fileNum":19013,"id":521,"width":32,"height":32},{"x":0,"y":0,"fileNum":19014,"id":522,"width":32,"height":32},{"x":0,"y":0,"fileNum":19015,"id":523,"width":32,"height":32},{"x":0,"y":0,"fileNum":15141,"id":524,"width":64,"height":104},{"x":0,"y":0,"fileNum":22011,"id":525,"width":42,"height":49},{"x":0,"y":0,"fileNum":163,"id":526,"width":32,"height":32},{"x":0,"y":0,"fileNum":164,"id":527,"width":32,"height":32},{"x":0,"y":0,"fileNum":165,"id":528,"width":32,"height":32},{"x":0,"y":0,"fileNum":7010,"id":529,"width":64,"height":32},{"x":0,"y":0,"fileNum":7011,"id":530,"width":64,"height":32},{"x":0,"y":0,"fileNum":7009,"id":531,"width":160,"height":128},{"x":0,"y":0,"fileNum":15018,"id":532,"width":45,"height":30},{"x":0,"y":0,"fileNum":15020,"id":533,"width":32,"height":32},{"x":0,"y":0,"fileNum":15022,"id":534,"width":34,"height":65},{"x":0,"y":0,"fileNum":166,"id":535,"width":32,"height":32},{"x":0,"y":0,"fileNum":19016,"id":536,"width":32,"height":32},{"x":0,"y":0,"fileNum":19017,"id":537,"width":32,"height":32},{"x":0,"y":0,"fileNum":22012,"id":538,"width":32,"height":32},{"x":0,"y":0,"fileNum":22013,"id":539,"width":32,"height":32},{"x":0,"y":0,"fileNum":23000,"id":540,"width":32,"height":32},{"x":0,"y":0,"fileNum":23001,"id":541,"width":32,"height":32},{"x":0,"y":0,"fileNum":23002,"id":542,"width":32,"height":32},{"x":0,"y":0,"fileNum":23003,"id":543,"width":32,"height":32},{"x":0,"y":0,"fileNum":270,"id":544,"width":32,"height":32},{"x":0,"y":0,"fileNum":7013,"id":545,"width":160,"height":128},{"x":0,"y":0,"fileNum":7002,"id":546,"width":64,"height":32},{"x":0,"y":0,"fileNum":7003,"id":547,"width":64,"height":32},{"x":0,"y":0,"fileNum":7004,"id":548,"width":64,"height":32},{"x":0,"y":0,"fileNum":7005,"id":549,"width":64,"height":32},{"x":0,"y":0,"fileNum":22014,"id":550,"width":32,"height":32},{"x":0,"y":0,"fileNum":7014,"id":551,"width":63,"height":32},{"x":0,"y":0,"fileNum":7015,"id":552,"width":63,"height":32},{"x":0,"y":0,"fileNum":7016,"id":553,"width":63,"height":32},{"x":0,"y":0,"fileNum":271,"id":554,"width":32,"height":32},{"x":0,"y":0,"fileNum":7017,"id":555,"width":63,"height":32},{"x":0,"y":0,"fileNum":7018,"id":556,"width":63,"height":32},{"x":0,"y":0,"fileNum":20011,"id":557,"width":32,"height":32},{"x":0,"y":0,"fileNum":18020,"id":558,"width":32,"height":32},{"x":0,"y":0,"fileNum":18021,"id":559,"width":32,"height":32},{"x":0,"y":0,"fileNum":20012,"id":560,"width":32,"height":32},{"x":0,"y":0,"fileNum":16040,"id":561,"width":32,"height":32},{"x":0,"y":0,"fileNum":16041,"id":562,"width":32,"height":32},{"x":0,"y":0,"fileNum":16042,"id":563,"width":32,"height":32},{"x":0,"y":0,"fileNum":16043,"id":564,"width":32,"height":32},{"x":0,"y":0,"fileNum":16044,"id":565,"width":32,"height":32},{"x":0,"y":0,"fileNum":16045,"id":566,"width":32,"height":32},{"x":0,"y":0,"fileNum":7019,"id":567,"width":63,"height":32},{"x":0,"y":0,"fileNum":7020,"id":568,"width":63,"height":32},{"x":0,"y":0,"fileNum":7021,"id":569,"width":63,"height":32},{"x":0,"y":0,"fileNum":7022,"id":570,"width":63,"height":32},{"x":0,"y":0,"fileNum":272,"id":571,"width":32,"height":32},{"x":0,"y":0,"fileNum":22015,"id":572,"width":32,"height":32},{"x":0,"y":0,"fileNum":19018,"id":573,"width":32,"height":32},{"x":0,"y":0,"fileNum":21004,"id":574,"width":32,"height":32},{"x":0,"y":0,"fileNum":22016,"id":575,"width":32,"height":32},{"x":0,"y":0,"fileNum":22017,"id":576,"width":32,"height":32},{"x":0,"y":0,"fileNum":22018,"id":577,"width":32,"height":32},{"x":0,"y":0,"fileNum":22019,"id":578,"width":32,"height":32},{"x":0,"y":0,"fileNum":22020,"id":579,"width":32,"height":32},{"x":0,"y":0,"fileNum":22021,"id":580,"width":32,"height":32},{"x":0,"y":0,"fileNum":19019,"id":581,"width":32,"height":32},{"x":0,"y":0,"fileNum":22022,"id":582,"width":32,"height":32},{"x":0,"y":0,"fileNum":16046,"id":583,"width":32,"height":32},{"x":0,"y":0,"fileNum":19020,"id":584,"width":32,"height":32},{"x":0,"y":0,"fileNum":19021,"id":585,"width":32,"height":32},{"x":0,"y":0,"fileNum":22023,"id":586,"width":32,"height":32},{"x":0,"y":0,"fileNum":22024,"id":587,"width":32,"height":32},{"x":0,"y":0,"fileNum":16047,"id":588,"width":32,"height":32},{"x":0,"y":0,"fileNum":15024,"id":589,"width":32,"height":32},{"x":0,"y":0,"fileNum":16048,"id":590,"width":32,"height":32},{"x":0,"y":0,"fileNum":19022,"id":591,"width":32,"height":32},{"x":0,"y":0,"fileNum":15170,"id":592,"width":32,"height":32},{"x":0,"y":0,"fileNum":22027,"id":593,"width":32,"height":32},{"x":0,"y":0,"fileNum":15171,"id":594,"width":32,"height":32},{"x":0,"y":0,"fileNum":15172,"id":595,"width":32,"height":32},{"x":0,"y":0,"fileNum":15173,"id":596,"width":32,"height":32},{"x":0,"y":0,"fileNum":15174,"id":597,"width":32,"height":32},{"x":0,"y":0,"fileNum":22028,"id":598,"width":32,"height":32},{"x":0,"y":0,"fileNum":22029,"id":599,"width":32,"height":32},{"x":0,"y":0,"fileNum":15175,"id":600,"width":32,"height":32},{"x":0,"y":0,"fileNum":23004,"id":601,"width":32,"height":32},{"x":0,"y":0,"fileNum":273,"id":602,"width":32,"height":32},{"x":0,"y":0,"fileNum":21005,"id":603,"width":32,"height":32},{"x":0,"y":0,"fileNum":22030,"id":604,"width":32,"height":32},{"x":0,"y":0,"fileNum":274,"id":605,"width":32,"height":32},{"x":0,"y":0,"fileNum":275,"id":606,"width":32,"height":32},{"x":0,"y":0,"fileNum":21006,"id":607,"width":32,"height":32},{"x":0,"y":0,"fileNum":21007,"id":608,"width":32,"height":32},{"x":0,"y":0,"fileNum":22031,"id":609,"width":32,"height":32},{"x":0,"y":0,"fileNum":7023,"id":610,"width":64,"height":32},{"x":0,"y":0,"fileNum":7024,"id":611,"width":64,"height":32},{"x":0,"y":0,"fileNum":7025,"id":612,"width":64,"height":32},{"x":0,"y":0,"fileNum":7026,"id":613,"width":64,"height":32},{"x":0,"y":0,"fileNum":7027,"id":614,"width":64,"height":32},{"x":0,"y":0,"fileNum":7028,"id":615,"width":64,"height":32},{"x":0,"y":0,"fileNum":7029,"id":616,"width":64,"height":32},{"x":0,"y":0,"fileNum":7030,"id":617,"width":64,"height":32},{"x":0,"y":0,"fileNum":7031,"id":618,"width":64,"height":32},{"x":0,"y":0,"fileNum":7032,"id":619,"width":64,"height":32},{"x":0,"y":0,"fileNum":7033,"id":620,"width":64,"height":32},{"x":0,"y":0,"fileNum":7034,"id":621,"width":64,"height":32},{"x":0,"y":0,"fileNum":7035,"id":622,"width":64,"height":32},{"x":0,"y":0,"fileNum":7036,"id":623,"width":64,"height":32},{"x":0,"y":0,"fileNum":7037,"id":624,"width":128,"height":64},{"x":0,"y":0,"fileNum":7038,"id":625,"width":128,"height":64},{"x":0,"y":0,"fileNum":7039,"id":626,"width":128,"height":64},{"x":0,"y":0,"fileNum":7040,"id":627,"width":128,"height":64},{"x":0,"y":0,"fileNum":7041,"id":628,"width":128,"height":64},{"x":0,"y":0,"fileNum":15176,"id":629,"width":64,"height":128},{"x":0,"y":0,"fileNum":15177,"id":630,"width":128,"height":64},{"x":0,"y":0,"fileNum":22032,"id":631,"width":32,"height":32},{"x":0,"y":0,"fileNum":22033,"id":632,"width":32,"height":32},{"x":0,"y":0,"fileNum":15178,"id":633,"width":256,"height":32},{"x":0,"y":32,"fileNum":15178,"id":634,"width":256,"height":32},{"x":0,"y":64,"fileNum":15178,"id":635,"width":256,"height":32},{"x":0,"y":96,"fileNum":15178,"id":636,"width":256,"height":32},{"x":0,"y":128,"fileNum":15178,"id":637,"width":256,"height":32},{"x":0,"y":160,"fileNum":15178,"id":638,"width":256,"height":32},{"x":0,"y":192,"fileNum":15178,"id":639,"width":256,"height":32},{"x":0,"y":224,"fileNum":15178,"id":640,"width":256,"height":32},{"x":0,"y":0,"fileNum":6065,"id":641,"width":128,"height":128},{"x":12,"y":15,"fileNum":15031,"id":642,"width":65,"height":50},{"x":0,"y":0,"fileNum":6066,"id":643,"width":256,"height":256},{"x":0,"y":0,"fileNum":6067,"id":644,"width":256,"height":256},{"x":0,"y":0,"fileNum":15179,"id":645,"width":256,"height":256},{"x":0,"y":0,"fileNum":15180,"id":646,"width":256,"height":256},{"x":0,"y":0,"fileNum":6068,"id":647,"width":128,"height":128},{"x":0,"y":0,"fileNum":6069,"id":648,"width":64,"height":64},{"x":0,"y":0,"fileNum":15184,"id":649,"width":64,"height":32},{"x":0,"y":0,"fileNum":15185,"id":650,"width":64,"height":96},{"x":0,"y":0,"fileNum":15186,"id":651,"width":96,"height":64},{"x":0,"y":0,"fileNum":15187,"id":652,"width":96,"height":64},{"x":0,"y":0,"fileNum":15188,"id":653,"width":64,"height":64},{"x":0,"y":0,"fileNum":276,"id":654,"width":32,"height":32},{"x":0,"y":0,"fileNum":277,"id":655,"width":32,"height":32},{"x":0,"y":0,"fileNum":278,"id":656,"width":32,"height":32},{"x":0,"y":0,"fileNum":279,"id":657,"width":32,"height":32},{"x":0,"y":0,"fileNum":280,"id":658,"width":32,"height":32},{"x":0,"y":0,"fileNum":281,"id":659,"width":32,"height":32},{"x":0,"y":0,"fileNum":7042,"id":660,"width":160,"height":128},{"x":0,"y":0,"fileNum":9017,"id":661,"width":43,"height":64},{"x":43,"y":0,"fileNum":9017,"id":662,"width":43,"height":64},{"x":86,"y":0,"fileNum":9017,"id":663,"width":43,"height":64},{"x":129,"y":0,"fileNum":9017,"id":664,"width":43,"height":64},{"x":172,"y":0,"fileNum":9017,"id":665,"width":43,"height":64},{"x":215,"y":0,"fileNum":9017,"id":666,"width":43,"height":64},{"x":258,"y":0,"fileNum":9017,"id":667,"width":43,"height":64},{"x":301,"y":0,"fileNum":9017,"id":668,"width":43,"height":64},{"x":0,"y":0,"fileNum":7043,"id":670,"width":64,"height":32},{"x":0,"y":0,"fileNum":7044,"id":671,"width":128,"height":64},{"x":0,"y":0,"fileNum":7045,"id":672,"width":64,"height":32},{"x":0,"y":0,"fileNum":7046,"id":673,"width":64,"height":32},{"x":0,"y":0,"fileNum":282,"id":674,"width":32,"height":32},{"x":0,"y":0,"fileNum":7047,"id":675,"width":128,"height":64},{"x":0,"y":0,"fileNum":7048,"id":676,"width":128,"height":64},{"x":0,"y":0,"fileNum":7049,"id":677,"width":128,"height":64},{"x":0,"y":0,"fileNum":15189,"id":678,"width":209,"height":107},{"x":0,"y":0,"fileNum":10008,"id":679,"width":47,"height":64},{"x":0,"y":0,"fileNum":283,"id":680,"width":32,"height":32},{"x":0,"y":0,"fileNum":284,"id":681,"width":32,"height":32},{"x":0,"y":0,"fileNum":285,"id":682,"width":32,"height":32},{"x":0,"y":0,"fileNum":286,"id":683,"width":32,"height":32},{"x":0,"y":0,"fileNum":22034,"id":684,"width":32,"height":32},{"x":0,"y":0,"fileNum":22035,"id":685,"width":32,"height":32},{"x":0,"y":0,"fileNum":22036,"id":686,"width":32,"height":32},{"x":0,"y":0,"fileNum":287,"id":687,"width":32,"height":32},{"x":0,"y":0,"fileNum":288,"id":688,"width":32,"height":32},{"x":0,"y":0,"fileNum":289,"id":689,"width":32,"height":32},{"x":0,"y":0,"fileNum":290,"id":690,"width":32,"height":32},{"x":0,"y":0,"fileNum":291,"id":691,"width":32,"height":32},{"x":0,"y":0,"fileNum":292,"id":692,"width":32,"height":32},{"x":0,"y":0,"fileNum":293,"id":693,"width":32,"height":32},{"x":0,"y":0,"fileNum":294,"id":694,"width":32,"height":32},{"x":0,"y":0,"fileNum":295,"id":695,"width":32,"height":32},{"x":0,"y":0,"fileNum":9010,"id":696,"width":178,"height":272},{"x":0,"y":0,"fileNum":22037,"id":697,"width":32,"height":32},{"x":0,"y":0,"fileNum":22038,"id":698,"width":32,"height":32},{"x":0,"y":0,"fileNum":22039,"id":699,"width":32,"height":32},{"x":0,"y":0,"fileNum":22040,"id":700,"width":32,"height":32},{"x":0,"y":0,"fileNum":22041,"id":701,"width":32,"height":32},{"x":0,"y":0,"fileNum":22042,"id":702,"width":32,"height":32},{"x":0,"y":0,"fileNum":22043,"id":703,"width":32,"height":32},{"x":0,"y":0,"fileNum":22045,"id":704,"width":32,"height":32},{"x":0,"y":0,"fileNum":22046,"id":705,"width":32,"height":32},{"x":0,"y":0,"fileNum":22047,"id":706,"width":32,"height":32},{"x":0,"y":0,"fileNum":22048,"id":707,"width":32,"height":32},{"x":0,"y":0,"fileNum":16051,"id":708,"width":32,"height":32},{"x":0,"y":0,"fileNum":16052,"id":709,"width":32,"height":32},{"x":0,"y":0,"fileNum":16053,"id":710,"width":32,"height":32},{"x":0,"y":0,"fileNum":16054,"id":711,"width":32,"height":32},{"x":0,"y":0,"fileNum":20013,"id":712,"width":32,"height":32},{"x":0,"y":0,"fileNum":16055,"id":713,"width":32,"height":32},{"x":0,"y":0,"fileNum":16056,"id":714,"width":32,"height":32},{"x":0,"y":0,"fileNum":16057,"id":715,"width":32,"height":32},{"x":0,"y":0,"fileNum":16058,"id":716,"width":32,"height":32},{"x":0,"y":0,"fileNum":18022,"id":717,"width":32,"height":32},{"x":0,"y":0,"fileNum":7050,"id":718,"width":128,"height":64},{"x":0,"y":0,"fileNum":7051,"id":719,"width":128,"height":64},{"x":0,"y":0,"fileNum":7052,"id":720,"width":128,"height":64},{"x":0,"y":0,"fileNum":7053,"id":721,"width":128,"height":64},{"x":0,"y":0,"fileNum":15192,"id":722,"width":32,"height":32},{"x":0,"y":0,"fileNum":22049,"id":723,"width":32,"height":32},{"x":0,"y":0,"fileNum":22050,"id":724,"width":32,"height":32},{"x":0,"y":0,"fileNum":22051,"id":725,"width":32,"height":32},{"x":0,"y":0,"fileNum":21008,"id":726,"width":32,"height":32},{"x":0,"y":0,"fileNum":15027,"id":727,"width":50,"height":50},{"x":0,"y":0,"fileNum":15193,"id":728,"width":128,"height":128},{"x":0,"y":0,"fileNum":13015,"id":729,"width":32,"height":32},{"x":0,"y":0,"fileNum":13016,"id":730,"width":32,"height":32},{"x":0,"y":0,"fileNum":13017,"id":731,"width":32,"height":32},{"x":0,"y":0,"fileNum":13018,"id":732,"width":32,"height":32},{"x":0,"y":0,"fileNum":13019,"id":733,"width":32,"height":32},{"x":0,"y":0,"fileNum":13020,"id":734,"width":32,"height":64},{"x":0,"y":0,"fileNum":6078,"id":735,"width":256,"height":256},{"x":0,"y":0,"fileNum":15194,"id":736,"width":64,"height":96},{"x":0,"y":0,"fileNum":15195,"id":737,"width":96,"height":64},{"x":0,"y":0,"fileNum":13021,"id":738,"width":32,"height":32},{"x":0,"y":10,"fileNum":15033,"id":739,"width":120,"height":90},{"x":0,"y":0,"fileNum":4053,"id":740,"width":109,"height":70},{"x":0,"y":0,"fileNum":15029,"id":741,"width":35,"height":31},{"x":37,"y":0,"fileNum":15029,"id":742,"width":36,"height":31},{"x":73,"y":0,"fileNum":15029,"id":743,"width":37,"height":31},{"x":0,"y":0,"fileNum":15023,"id":744,"width":13,"height":17},{"x":14,"y":0,"fileNum":15023,"id":745,"width":12,"height":17},{"x":24,"y":0,"fileNum":15023,"id":746,"width":12,"height":17},{"x":0,"y":8,"fileNum":15034,"id":747,"width":65,"height":50},{"x":0,"y":0,"fileNum":15036,"id":748,"width":40,"height":50},{"x":0,"y":0,"fileNum":17012,"id":749,"width":32,"height":32},{"x":0,"y":0,"fileNum":16062,"id":750,"width":32,"height":32},{"x":0,"y":0,"fileNum":16063,"id":751,"width":32,"height":32},{"x":0,"y":0,"fileNum":16065,"id":752,"width":32,"height":32},{"x":0,"y":0,"fileNum":16066,"id":753,"width":32,"height":32},{"x":0,"y":0,"fileNum":16067,"id":754,"width":32,"height":32},{"x":0,"y":0,"fileNum":16068,"id":755,"width":32,"height":32},{"x":0,"y":0,"fileNum":298,"id":756,"width":32,"height":32},{"x":0,"y":0,"fileNum":299,"id":757,"width":32,"height":32},{"x":0,"y":0,"fileNum":300,"id":758,"width":32,"height":32},{"x":0,"y":0,"fileNum":301,"id":759,"width":32,"height":32},{"x":0,"y":0,"fileNum":303,"id":760,"width":32,"height":32},{"x":0,"y":0,"fileNum":304,"id":761,"width":32,"height":32},{"x":0,"y":0,"fileNum":305,"id":762,"width":32,"height":32},{"x":0,"y":0,"fileNum":419,"id":763,"width":32,"height":32},{"x":0,"y":0,"fileNum":307,"id":764,"width":32,"height":32},{"x":0,"y":0,"fileNum":308,"id":765,"width":32,"height":32},{"x":0,"y":0,"fileNum":309,"id":766,"width":32,"height":32},{"x":0,"y":0,"fileNum":310,"id":767,"width":32,"height":32},{"x":0,"y":0,"fileNum":311,"id":768,"width":32,"height":32},{"x":0,"y":0,"fileNum":312,"id":769,"width":32,"height":32},{"x":0,"y":0,"fileNum":314,"id":770,"width":32,"height":32},{"x":0,"y":0,"fileNum":315,"id":771,"width":32,"height":32},{"x":0,"y":0,"fileNum":316,"id":772,"width":32,"height":32},{"x":0,"y":0,"fileNum":317,"id":773,"width":32,"height":32},{"x":0,"y":0,"fileNum":318,"id":774,"width":32,"height":32},{"x":0,"y":0,"fileNum":319,"id":775,"width":32,"height":32},{"x":0,"y":0,"fileNum":320,"id":776,"width":32,"height":32},{"x":0,"y":0,"fileNum":321,"id":777,"width":32,"height":32},{"x":0,"y":0,"fileNum":322,"id":778,"width":32,"height":32},{"x":0,"y":0,"fileNum":323,"id":779,"width":32,"height":32},{"x":0,"y":0,"fileNum":324,"id":780,"width":32,"height":32},{"x":0,"y":0,"fileNum":325,"id":781,"width":32,"height":32},{"x":0,"y":0,"fileNum":326,"id":782,"width":32,"height":32},{"x":0,"y":0,"fileNum":327,"id":783,"width":32,"height":32},{"x":0,"y":0,"fileNum":328,"id":784,"width":32,"height":32},{"x":0,"y":0,"fileNum":329,"id":785,"width":32,"height":32},{"x":0,"y":0,"fileNum":330,"id":786,"width":32,"height":32},{"x":0,"y":0,"fileNum":331,"id":787,"width":32,"height":32},{"x":0,"y":0,"fileNum":8164,"id":788,"width":218,"height":266},{"x":0,"y":0,"fileNum":333,"id":789,"width":32,"height":32},{"x":0,"y":0,"fileNum":335,"id":790,"width":32,"height":32},{"x":0,"y":0,"fileNum":336,"id":791,"width":32,"height":32},{"x":0,"y":0,"fileNum":337,"id":792,"width":32,"height":32},{"x":0,"y":0,"fileNum":338,"id":793,"width":32,"height":32},{"x":0,"y":0,"fileNum":339,"id":794,"width":32,"height":32},{"x":0,"y":0,"fileNum":340,"id":795,"width":32,"height":32},{"x":0,"y":0,"fileNum":341,"id":796,"width":32,"height":32},{"x":0,"y":0,"fileNum":342,"id":797,"width":32,"height":32},{"x":0,"y":0,"fileNum":417,"id":798,"width":32,"height":32},{"x":0,"y":0,"fileNum":344,"id":799,"width":32,"height":32},{"x":0,"y":0,"fileNum":347,"id":800,"width":32,"height":32},{"x":0,"y":0,"fileNum":349,"id":801,"width":32,"height":32},{"x":0,"y":0,"fileNum":359,"id":802,"width":32,"height":32},{"x":0,"y":0,"fileNum":367,"id":803,"width":32,"height":32},{"x":0,"y":0,"fileNum":378,"id":804,"width":32,"height":32},{"x":0,"y":0,"fileNum":389,"id":805,"width":32,"height":32},{"x":0,"y":0,"fileNum":400,"id":806,"width":32,"height":32},{"x":0,"y":0,"fileNum":408,"id":807,"width":32,"height":32},{"x":1,"y":0,"fileNum":9011,"id":808,"width":43,"height":64},{"x":43,"y":0,"fileNum":9011,"id":809,"width":43,"height":64},{"x":86,"y":0,"fileNum":9011,"id":810,"width":43,"height":64},{"x":128,"y":0,"fileNum":9011,"id":811,"width":43,"height":64},{"x":170,"y":0,"fileNum":9011,"id":812,"width":43,"height":64},{"x":213,"y":0,"fileNum":9011,"id":813,"width":43,"height":64},{"x":256,"y":0,"fileNum":9011,"id":814,"width":43,"height":64},{"x":298,"y":0,"fileNum":9011,"id":815,"width":43,"height":64},{"x":1,"y":0,"fileNum":9012,"id":817,"width":43,"height":64},{"x":43,"y":0,"fileNum":9012,"id":818,"width":43,"height":64},{"x":86,"y":0,"fileNum":9012,"id":819,"width":43,"height":64},{"x":128,"y":0,"fileNum":9012,"id":820,"width":43,"height":64},{"x":170,"y":0,"fileNum":9012,"id":821,"width":43,"height":64},{"x":213,"y":0,"fileNum":9012,"id":822,"width":43,"height":64},{"x":256,"y":0,"fileNum":9012,"id":823,"width":43,"height":64},{"x":298,"y":0,"fileNum":9012,"id":824,"width":43,"height":64},{"x":1,"y":0,"fileNum":9013,"id":826,"width":43,"height":64},{"x":43,"y":0,"fileNum":9013,"id":827,"width":43,"height":64},{"x":86,"y":0,"fileNum":9013,"id":828,"width":43,"height":64},{"x":128,"y":0,"fileNum":9013,"id":829,"width":43,"height":64},{"x":170,"y":0,"fileNum":9013,"id":830,"width":43,"height":64},{"x":213,"y":0,"fileNum":9013,"id":831,"width":43,"height":64},{"x":256,"y":0,"fileNum":9013,"id":832,"width":43,"height":64},{"x":298,"y":0,"fileNum":9013,"id":833,"width":43,"height":64},{"x":1,"y":0,"fileNum":9014,"id":835,"width":43,"height":64},{"x":43,"y":0,"fileNum":9014,"id":836,"width":43,"height":64},{"x":86,"y":0,"fileNum":9014,"id":837,"width":43,"height":64},{"x":128,"y":0,"fileNum":9014,"id":838,"width":43,"height":64},{"x":170,"y":0,"fileNum":9014,"id":839,"width":43,"height":64},{"x":213,"y":0,"fileNum":9014,"id":840,"width":43,"height":64},{"x":256,"y":0,"fileNum":9014,"id":841,"width":43,"height":64},{"x":298,"y":0,"fileNum":9014,"id":842,"width":43,"height":64},{"x":0,"y":0,"fileNum":21009,"id":844,"width":32,"height":32},{"x":0,"y":0,"fileNum":19023,"id":845,"width":32,"height":32},{"x":0,"y":0,"fileNum":19024,"id":846,"width":32,"height":32},{"x":0,"y":0,"fileNum":19025,"id":847,"width":32,"height":32},{"x":0,"y":0,"fileNum":19026,"id":848,"width":32,"height":32},{"x":0,"y":0,"fileNum":19027,"id":849,"width":32,"height":32},{"x":0,"y":0,"fileNum":19028,"id":850,"width":32,"height":32},{"x":0,"y":0,"fileNum":4157,"id":851,"width":18,"height":26},{"x":18,"y":0,"fileNum":4157,"id":852,"width":18,"height":26},{"x":0,"y":26,"fileNum":4157,"id":853,"width":18,"height":26},{"x":18,"y":26,"fileNum":4157,"id":854,"width":18,"height":26},{"x":0,"y":52,"fileNum":4157,"id":855,"width":18,"height":26},{"x":18,"y":52,"fileNum":4157,"id":856,"width":18,"height":26},{"x":0,"y":78,"fileNum":4157,"id":857,"width":18,"height":26},{"x":18,"y":78,"fileNum":4157,"id":858,"width":18,"height":26},{"x":0,"y":0,"fileNum":7054,"id":863,"width":128,"height":64},{"x":0,"y":0,"fileNum":7055,"id":864,"width":128,"height":64},{"x":0,"y":0,"fileNum":13022,"id":865,"width":75,"height":123},{"x":0,"y":0,"fileNum":13023,"id":866,"width":47,"height":91},{"x":0,"y":0,"fileNum":13024,"id":867,"width":62,"height":44},{"x":0,"y":0,"fileNum":13025,"id":868,"width":77,"height":58},{"x":0,"y":0,"fileNum":13026,"id":869,"width":75,"height":56},{"x":0,"y":0,"fileNum":13027,"id":870,"width":78,"height":55},{"x":0,"y":0,"fileNum":13028,"id":871,"width":54,"height":40},{"x":0,"y":0,"fileNum":13029,"id":872,"width":48,"height":41},{"x":0,"y":0,"fileNum":13030,"id":873,"width":56,"height":48},{"x":0,"y":0,"fileNum":13031,"id":874,"width":64,"height":44},{"x":0,"y":0,"fileNum":7056,"id":875,"width":128,"height":64},{"x":0,"y":0,"fileNum":7057,"id":876,"width":128,"height":64},{"x":0,"y":0,"fileNum":7058,"id":877,"width":128,"height":64},{"x":0,"y":0,"fileNum":7059,"id":878,"width":128,"height":64},{"x":0,"y":15,"fileNum":15044,"id":879,"width":27,"height":40},{"x":0,"y":0,"fileNum":20001,"id":880,"width":25,"height":45},{"x":25,"y":0,"fileNum":20001,"id":881,"width":25,"height":45},{"x":50,"y":0,"fileNum":20001,"id":882,"width":25,"height":45},{"x":75,"y":0,"fileNum":20001,"id":883,"width":25,"height":45},{"x":100,"y":0,"fileNum":20001,"id":884,"width":25,"height":45},{"x":125,"y":0,"fileNum":20001,"id":885,"width":25,"height":45},{"x":0,"y":45,"fileNum":20001,"id":886,"width":25,"height":45},{"x":25,"y":45,"fileNum":20001,"id":887,"width":25,"height":45},{"x":50,"y":45,"fileNum":20001,"id":888,"width":25,"height":45},{"x":75,"y":45,"fileNum":20001,"id":889,"width":25,"height":45},{"x":100,"y":45,"fileNum":20001,"id":890,"width":25,"height":45},{"x":125,"y":45,"fileNum":20001,"id":891,"width":25,"height":45},{"x":0,"y":90,"fileNum":20001,"id":892,"width":25,"height":45},{"x":25,"y":90,"fileNum":20001,"id":893,"width":25,"height":45},{"x":50,"y":90,"fileNum":20001,"id":894,"width":25,"height":45},{"x":75,"y":90,"fileNum":20001,"id":895,"width":25,"height":45},{"x":100,"y":90,"fileNum":20001,"id":896,"width":25,"height":45},{"x":0,"y":135,"fileNum":20001,"id":897,"width":25,"height":45},{"x":25,"y":135,"fileNum":20001,"id":898,"width":25,"height":45},{"x":50,"y":135,"fileNum":20001,"id":899,"width":25,"height":45},{"x":75,"y":135,"fileNum":20001,"id":900,"width":25,"height":45},{"x":100,"y":135,"fileNum":20001,"id":901,"width":25,"height":45},{"x":0,"y":0,"fileNum":20000,"id":906,"width":25,"height":45},{"x":25,"y":0,"fileNum":20000,"id":907,"width":25,"height":45},{"x":50,"y":0,"fileNum":20000,"id":908,"width":25,"height":45},{"x":75,"y":0,"fileNum":20000,"id":909,"width":25,"height":45},{"x":100,"y":0,"fileNum":20000,"id":910,"width":25,"height":45},{"x":125,"y":0,"fileNum":20000,"id":911,"width":25,"height":45},{"x":0,"y":45,"fileNum":20000,"id":912,"width":25,"height":45},{"x":25,"y":45,"fileNum":20000,"id":913,"width":25,"height":45},{"x":50,"y":45,"fileNum":20000,"id":914,"width":25,"height":45},{"x":75,"y":45,"fileNum":20000,"id":915,"width":25,"height":45},{"x":100,"y":45,"fileNum":20000,"id":916,"width":25,"height":45},{"x":125,"y":45,"fileNum":20000,"id":917,"width":25,"height":45},{"x":0,"y":90,"fileNum":20000,"id":918,"width":25,"height":45},{"x":25,"y":90,"fileNum":20000,"id":919,"width":25,"height":45},{"x":50,"y":90,"fileNum":20000,"id":920,"width":25,"height":45},{"x":75,"y":90,"fileNum":20000,"id":921,"width":25,"height":45},{"x":100,"y":90,"fileNum":20000,"id":922,"width":25,"height":45},{"x":0,"y":135,"fileNum":20000,"id":923,"width":25,"height":45},{"x":25,"y":135,"fileNum":20000,"id":924,"width":25,"height":45},{"x":50,"y":135,"fileNum":20000,"id":925,"width":25,"height":45},{"x":75,"y":135,"fileNum":20000,"id":926,"width":25,"height":45},{"x":100,"y":135,"fileNum":20000,"id":927,"width":25,"height":45},{"x":0,"y":0,"fileNum":16000,"id":932,"width":32,"height":32},{"x":0,"y":0,"fileNum":16001,"id":933,"width":25,"height":45},{"x":25,"y":0,"fileNum":16001,"id":934,"width":25,"height":45},{"x":50,"y":0,"fileNum":16001,"id":935,"width":25,"height":45},{"x":75,"y":0,"fileNum":16001,"id":936,"width":25,"height":45},{"x":100,"y":0,"fileNum":16001,"id":937,"width":25,"height":45},{"x":125,"y":0,"fileNum":16001,"id":938,"width":25,"height":45},{"x":0,"y":45,"fileNum":16001,"id":939,"width":25,"height":45},{"x":25,"y":45,"fileNum":16001,"id":940,"width":25,"height":45},{"x":50,"y":45,"fileNum":16001,"id":941,"width":25,"height":45},{"x":75,"y":45,"fileNum":16001,"id":942,"width":25,"height":45},{"x":100,"y":45,"fileNum":16001,"id":943,"width":25,"height":45},{"x":125,"y":45,"fileNum":16001,"id":944,"width":25,"height":45},{"x":0,"y":90,"fileNum":16001,"id":945,"width":25,"height":45},{"x":25,"y":90,"fileNum":16001,"id":946,"width":25,"height":45},{"x":50,"y":90,"fileNum":16001,"id":947,"width":25,"height":45},{"x":75,"y":90,"fileNum":16001,"id":948,"width":25,"height":45},{"x":100,"y":90,"fileNum":16001,"id":949,"width":25,"height":45},{"x":0,"y":135,"fileNum":16001,"id":950,"width":25,"height":45},{"x":25,"y":135,"fileNum":16001,"id":951,"width":25,"height":45},{"x":50,"y":135,"fileNum":16001,"id":952,"width":25,"height":45},{"x":75,"y":135,"fileNum":16001,"id":953,"width":25,"height":45},{"x":100,"y":135,"fileNum":16001,"id":954,"width":25,"height":45},{"x":0,"y":0,"fileNum":16002,"id":959,"width":32,"height":32},{"x":0,"y":0,"fileNum":16003,"id":960,"width":25,"height":45},{"x":25,"y":0,"fileNum":16003,"id":961,"width":25,"height":45},{"x":50,"y":0,"fileNum":16003,"id":962,"width":25,"height":45},{"x":75,"y":0,"fileNum":16003,"id":963,"width":25,"height":45},{"x":100,"y":0,"fileNum":16003,"id":964,"width":25,"height":45},{"x":125,"y":0,"fileNum":16003,"id":965,"width":25,"height":45},{"x":0,"y":45,"fileNum":16003,"id":966,"width":25,"height":45},{"x":25,"y":45,"fileNum":16003,"id":967,"width":25,"height":45},{"x":50,"y":45,"fileNum":16003,"id":968,"width":25,"height":45},{"x":75,"y":45,"fileNum":16003,"id":969,"width":25,"height":45},{"x":100,"y":45,"fileNum":16003,"id":970,"width":25,"height":45},{"x":125,"y":45,"fileNum":16003,"id":971,"width":25,"height":45},{"x":0,"y":90,"fileNum":16003,"id":972,"width":25,"height":45},{"x":25,"y":90,"fileNum":16003,"id":973,"width":25,"height":45},{"x":50,"y":90,"fileNum":16003,"id":974,"width":25,"height":45},{"x":75,"y":90,"fileNum":16003,"id":975,"width":25,"height":45},{"x":100,"y":90,"fileNum":16003,"id":976,"width":25,"height":45},{"x":0,"y":135,"fileNum":16003,"id":977,"width":25,"height":45},{"x":25,"y":135,"fileNum":16003,"id":978,"width":25,"height":45},{"x":50,"y":135,"fileNum":16003,"id":979,"width":25,"height":45},{"x":75,"y":135,"fileNum":16003,"id":980,"width":25,"height":45},{"x":100,"y":135,"fileNum":16003,"id":981,"width":25,"height":45},{"x":0,"y":0,"fileNum":16004,"id":986,"width":32,"height":32},{"x":0,"y":0,"fileNum":16005,"id":987,"width":25,"height":45},{"x":25,"y":0,"fileNum":16005,"id":988,"width":25,"height":45},{"x":50,"y":0,"fileNum":16005,"id":989,"width":25,"height":45},{"x":75,"y":0,"fileNum":16005,"id":990,"width":25,"height":45},{"x":100,"y":0,"fileNum":16005,"id":991,"width":25,"height":45},{"x":125,"y":0,"fileNum":16005,"id":992,"width":25,"height":45},{"x":0,"y":45,"fileNum":16005,"id":993,"width":25,"height":45},{"x":25,"y":45,"fileNum":16005,"id":994,"width":25,"height":45},{"x":50,"y":45,"fileNum":16005,"id":995,"width":25,"height":45},{"x":75,"y":45,"fileNum":16005,"id":996,"width":25,"height":45},{"x":100,"y":45,"fileNum":16005,"id":997,"width":25,"height":45},{"x":125,"y":45,"fileNum":16005,"id":998,"width":25,"height":45},{"x":0,"y":90,"fileNum":16005,"id":999,"width":25,"height":45},{"x":25,"y":90,"fileNum":16005,"id":1000,"width":25,"height":45},{"x":50,"y":90,"fileNum":16005,"id":1001,"width":25,"height":45},{"x":75,"y":90,"fileNum":16005,"id":1002,"width":25,"height":45},{"x":100,"y":90,"fileNum":16005,"id":1003,"width":25,"height":45},{"x":0,"y":135,"fileNum":16005,"id":1004,"width":25,"height":45},{"x":25,"y":135,"fileNum":16005,"id":1005,"width":25,"height":45},{"x":50,"y":135,"fileNum":16005,"id":1006,"width":25,"height":45},{"x":75,"y":135,"fileNum":16005,"id":1007,"width":25,"height":45},{"x":100,"y":135,"fileNum":16005,"id":1008,"width":25,"height":45},{"x":0,"y":0,"fileNum":18000,"id":1013,"width":32,"height":32},{"x":0,"y":0,"fileNum":18001,"id":1014,"width":17,"height":28},{"x":17,"y":0,"fileNum":18001,"id":1015,"width":17,"height":28},{"x":34,"y":0,"fileNum":18001,"id":1016,"width":17,"height":28},{"x":51,"y":0,"fileNum":18001,"id":1017,"width":17,"height":28},{"x":0,"y":0,"fileNum":18002,"id":1018,"width":32,"height":32},{"x":0,"y":0,"fileNum":18003,"id":1019,"width":17,"height":28},{"x":17,"y":0,"fileNum":18003,"id":1020,"width":17,"height":28},{"x":34,"y":0,"fileNum":18003,"id":1021,"width":17,"height":28},{"x":51,"y":0,"fileNum":18003,"id":1022,"width":17,"height":28},{"x":0,"y":0,"fileNum":16006,"id":1023,"width":32,"height":32},{"x":0,"y":0,"fileNum":16007,"id":1024,"width":32,"height":32},{"x":0,"y":0,"fileNum":16008,"id":1025,"width":32,"height":32},{"x":0,"y":0,"fileNum":16009,"id":1026,"width":25,"height":45},{"x":25,"y":0,"fileNum":16009,"id":1027,"width":25,"height":45},{"x":50,"y":0,"fileNum":16009,"id":1028,"width":25,"height":45},{"x":75,"y":0,"fileNum":16009,"id":1029,"width":25,"height":45},{"x":100,"y":0,"fileNum":16009,"id":1030,"width":25,"height":45},{"x":125,"y":0,"fileNum":16009,"id":1031,"width":25,"height":45},{"x":0,"y":45,"fileNum":16009,"id":1032,"width":25,"height":45},{"x":25,"y":45,"fileNum":16009,"id":1033,"width":25,"height":45},{"x":50,"y":45,"fileNum":16009,"id":1034,"width":25,"height":45},{"x":75,"y":45,"fileNum":16009,"id":1035,"width":25,"height":45},{"x":100,"y":45,"fileNum":16009,"id":1036,"width":25,"height":45},{"x":125,"y":45,"fileNum":16009,"id":1037,"width":25,"height":45},{"x":0,"y":90,"fileNum":16009,"id":1038,"width":25,"height":45},{"x":25,"y":90,"fileNum":16009,"id":1039,"width":25,"height":45},{"x":50,"y":90,"fileNum":16009,"id":1040,"width":25,"height":45},{"x":75,"y":90,"fileNum":16009,"id":1041,"width":25,"height":45},{"x":100,"y":90,"fileNum":16009,"id":1042,"width":25,"height":45},{"x":0,"y":135,"fileNum":16009,"id":1043,"width":25,"height":45},{"x":25,"y":135,"fileNum":16009,"id":1044,"width":25,"height":45},{"x":50,"y":135,"fileNum":16009,"id":1045,"width":25,"height":45},{"x":75,"y":135,"fileNum":16009,"id":1046,"width":25,"height":45},{"x":100,"y":135,"fileNum":16009,"id":1047,"width":25,"height":45},{"x":0,"y":0,"fileNum":12000,"id":1052,"width":32,"height":32},{"x":32,"y":0,"fileNum":12000,"id":1053,"width":32,"height":32},{"x":64,"y":0,"fileNum":12000,"id":1054,"width":32,"height":32},{"x":96,"y":0,"fileNum":12000,"id":1055,"width":32,"height":32},{"x":0,"y":32,"fileNum":12000,"id":1056,"width":32,"height":32},{"x":32,"y":32,"fileNum":12000,"id":1057,"width":32,"height":32},{"x":64,"y":32,"fileNum":12000,"id":1058,"width":32,"height":32},{"x":96,"y":32,"fileNum":12000,"id":1059,"width":32,"height":32},{"x":0,"y":64,"fileNum":12000,"id":1060,"width":32,"height":32},{"x":32,"y":64,"fileNum":12000,"id":1061,"width":32,"height":32},{"x":64,"y":64,"fileNum":12000,"id":1062,"width":32,"height":32},{"x":96,"y":64,"fileNum":12000,"id":1063,"width":32,"height":32},{"x":0,"y":96,"fileNum":12000,"id":1064,"width":32,"height":32},{"x":32,"y":96,"fileNum":12000,"id":1065,"width":32,"height":32},{"x":64,"y":96,"fileNum":12000,"id":1066,"width":32,"height":32},{"x":96,"y":96,"fileNum":12000,"id":1067,"width":32,"height":32},{"x":0,"y":0,"fileNum":12001,"id":1068,"width":32,"height":32},{"x":32,"y":0,"fileNum":12001,"id":1069,"width":32,"height":32},{"x":64,"y":0,"fileNum":12001,"id":1070,"width":32,"height":32},{"x":96,"y":0,"fileNum":12001,"id":1071,"width":32,"height":32},{"x":0,"y":32,"fileNum":12001,"id":1072,"width":32,"height":32},{"x":32,"y":32,"fileNum":12001,"id":1073,"width":32,"height":32},{"x":64,"y":32,"fileNum":12001,"id":1074,"width":32,"height":32},{"x":96,"y":32,"fileNum":12001,"id":1075,"width":32,"height":32},{"x":0,"y":64,"fileNum":12001,"id":1076,"width":32,"height":32},{"x":32,"y":64,"fileNum":12001,"id":1077,"width":32,"height":32},{"x":64,"y":64,"fileNum":12001,"id":1078,"width":32,"height":32},{"x":96,"y":64,"fileNum":12001,"id":1079,"width":32,"height":32},{"x":0,"y":96,"fileNum":12001,"id":1080,"width":32,"height":32},{"x":32,"y":96,"fileNum":12001,"id":1081,"width":32,"height":32},{"x":64,"y":96,"fileNum":12001,"id":1082,"width":32,"height":32},{"x":96,"y":96,"fileNum":12001,"id":1083,"width":32,"height":32},{"x":0,"y":0,"fileNum":12002,"id":1084,"width":32,"height":32},{"x":32,"y":0,"fileNum":12002,"id":1085,"width":32,"height":32},{"x":64,"y":0,"fileNum":12002,"id":1086,"width":32,"height":32},{"x":96,"y":0,"fileNum":12002,"id":1087,"width":32,"height":32},{"x":0,"y":32,"fileNum":12002,"id":1088,"width":32,"height":32},{"x":32,"y":32,"fileNum":12002,"id":1089,"width":32,"height":32},{"x":64,"y":32,"fileNum":12002,"id":1090,"width":32,"height":32},{"x":96,"y":32,"fileNum":12002,"id":1091,"width":32,"height":32},{"x":0,"y":64,"fileNum":12002,"id":1092,"width":32,"height":32},{"x":32,"y":64,"fileNum":12002,"id":1093,"width":32,"height":32},{"x":64,"y":64,"fileNum":12002,"id":1094,"width":32,"height":32},{"x":96,"y":64,"fileNum":12002,"id":1095,"width":32,"height":32},{"x":0,"y":96,"fileNum":12002,"id":1096,"width":32,"height":32},{"x":32,"y":96,"fileNum":12002,"id":1097,"width":32,"height":32},{"x":64,"y":96,"fileNum":12002,"id":1098,"width":32,"height":32},{"x":96,"y":96,"fileNum":12002,"id":1099,"width":32,"height":32},{"x":0,"y":0,"fileNum":6,"id":1100,"width":32,"height":32},{"x":0,"y":0,"fileNum":7,"id":1101,"width":25,"height":45},{"x":25,"y":0,"fileNum":7,"id":1102,"width":25,"height":45},{"x":50,"y":0,"fileNum":7,"id":1103,"width":25,"height":45},{"x":75,"y":0,"fileNum":7,"id":1104,"width":25,"height":45},{"x":100,"y":0,"fileNum":7,"id":1105,"width":25,"height":45},{"x":125,"y":0,"fileNum":7,"id":1106,"width":25,"height":45},{"x":0,"y":45,"fileNum":7,"id":1107,"width":25,"height":45},{"x":25,"y":45,"fileNum":7,"id":1108,"width":25,"height":45},{"x":50,"y":45,"fileNum":7,"id":1109,"width":25,"height":45},{"x":75,"y":45,"fileNum":7,"id":1110,"width":25,"height":45},{"x":100,"y":45,"fileNum":7,"id":1111,"width":25,"height":45},{"x":125,"y":45,"fileNum":7,"id":1112,"width":25,"height":45},{"x":0,"y":90,"fileNum":7,"id":1113,"width":25,"height":45},{"x":25,"y":90,"fileNum":7,"id":1114,"width":25,"height":45},{"x":50,"y":90,"fileNum":7,"id":1115,"width":25,"height":45},{"x":75,"y":90,"fileNum":7,"id":1116,"width":25,"height":45},{"x":100,"y":90,"fileNum":7,"id":1117,"width":25,"height":45},{"x":0,"y":135,"fileNum":7,"id":1118,"width":25,"height":45},{"x":25,"y":135,"fileNum":7,"id":1119,"width":25,"height":45},{"x":50,"y":135,"fileNum":7,"id":1120,"width":25,"height":45},{"x":75,"y":135,"fileNum":7,"id":1121,"width":25,"height":45},{"x":100,"y":135,"fileNum":7,"id":1122,"width":25,"height":45},{"x":0,"y":0,"fileNum":8,"id":1127,"width":32,"height":32},{"x":0,"y":0,"fileNum":9,"id":1128,"width":25,"height":45},{"x":25,"y":0,"fileNum":9,"id":1129,"width":25,"height":45},{"x":50,"y":0,"fileNum":9,"id":1130,"width":25,"height":45},{"x":75,"y":0,"fileNum":9,"id":1131,"width":25,"height":45},{"x":100,"y":0,"fileNum":9,"id":1132,"width":25,"height":45},{"x":125,"y":0,"fileNum":9,"id":1133,"width":25,"height":45},{"x":0,"y":45,"fileNum":9,"id":1134,"width":25,"height":45},{"x":25,"y":45,"fileNum":9,"id":1135,"width":25,"height":45},{"x":50,"y":45,"fileNum":9,"id":1136,"width":25,"height":45},{"x":75,"y":45,"fileNum":9,"id":1137,"width":25,"height":45},{"x":100,"y":45,"fileNum":9,"id":1138,"width":25,"height":45},{"x":125,"y":45,"fileNum":9,"id":1139,"width":25,"height":45},{"x":0,"y":90,"fileNum":9,"id":1140,"width":25,"height":45},{"x":25,"y":90,"fileNum":9,"id":1141,"width":25,"height":45},{"x":50,"y":90,"fileNum":9,"id":1142,"width":25,"height":45},{"x":75,"y":90,"fileNum":9,"id":1143,"width":25,"height":45},{"x":100,"y":90,"fileNum":9,"id":1144,"width":25,"height":45},{"x":0,"y":135,"fileNum":9,"id":1145,"width":25,"height":45},{"x":25,"y":135,"fileNum":9,"id":1146,"width":25,"height":45},{"x":50,"y":135,"fileNum":9,"id":1147,"width":25,"height":45},{"x":75,"y":135,"fileNum":9,"id":1148,"width":25,"height":45},{"x":100,"y":135,"fileNum":9,"id":1149,"width":25,"height":45},{"x":0,"y":0,"fileNum":10,"id":1154,"width":32,"height":32},{"x":0,"y":0,"fileNum":11,"id":1155,"width":25,"height":45},{"x":25,"y":0,"fileNum":11,"id":1156,"width":25,"height":45},{"x":50,"y":0,"fileNum":11,"id":1157,"width":25,"height":45},{"x":75,"y":0,"fileNum":11,"id":1158,"width":25,"height":45},{"x":100,"y":0,"fileNum":11,"id":1159,"width":25,"height":45},{"x":125,"y":0,"fileNum":11,"id":1160,"width":25,"height":45},{"x":0,"y":45,"fileNum":11,"id":1161,"width":25,"height":45},{"x":25,"y":45,"fileNum":11,"id":1162,"width":25,"height":45},{"x":50,"y":45,"fileNum":11,"id":1163,"width":25,"height":45},{"x":75,"y":45,"fileNum":11,"id":1164,"width":25,"height":45},{"x":100,"y":45,"fileNum":11,"id":1165,"width":25,"height":45},{"x":125,"y":45,"fileNum":11,"id":1166,"width":25,"height":45},{"x":0,"y":90,"fileNum":11,"id":1167,"width":25,"height":45},{"x":25,"y":90,"fileNum":11,"id":1168,"width":25,"height":45},{"x":50,"y":90,"fileNum":11,"id":1169,"width":25,"height":45},{"x":75,"y":90,"fileNum":11,"id":1170,"width":25,"height":45},{"x":100,"y":90,"fileNum":11,"id":1171,"width":25,"height":45},{"x":0,"y":135,"fileNum":11,"id":1172,"width":25,"height":45},{"x":25,"y":135,"fileNum":11,"id":1173,"width":25,"height":45},{"x":50,"y":135,"fileNum":11,"id":1174,"width":25,"height":45},{"x":75,"y":135,"fileNum":11,"id":1175,"width":25,"height":45},{"x":100,"y":135,"fileNum":11,"id":1176,"width":25,"height":45},{"x":0,"y":0,"fileNum":12,"id":1181,"width":32,"height":32},{"x":0,"y":0,"fileNum":13,"id":1182,"width":25,"height":45},{"x":25,"y":0,"fileNum":13,"id":1183,"width":25,"height":45},{"x":50,"y":0,"fileNum":13,"id":1184,"width":25,"height":45},{"x":75,"y":0,"fileNum":13,"id":1185,"width":25,"height":45},{"x":100,"y":0,"fileNum":13,"id":1186,"width":25,"height":45},{"x":125,"y":0,"fileNum":13,"id":1187,"width":25,"height":45},{"x":0,"y":45,"fileNum":13,"id":1188,"width":25,"height":45},{"x":25,"y":45,"fileNum":13,"id":1189,"width":25,"height":45},{"x":50,"y":45,"fileNum":13,"id":1190,"width":25,"height":45},{"x":75,"y":45,"fileNum":13,"id":1191,"width":25,"height":45},{"x":100,"y":45,"fileNum":13,"id":1192,"width":25,"height":45},{"x":125,"y":45,"fileNum":13,"id":1193,"width":25,"height":45},{"x":0,"y":90,"fileNum":13,"id":1194,"width":25,"height":45},{"x":25,"y":90,"fileNum":13,"id":1195,"width":25,"height":45},{"x":50,"y":90,"fileNum":13,"id":1196,"width":25,"height":45},{"x":75,"y":90,"fileNum":13,"id":1197,"width":25,"height":45},{"x":100,"y":90,"fileNum":13,"id":1198,"width":25,"height":45},{"x":0,"y":135,"fileNum":13,"id":1199,"width":25,"height":45},{"x":25,"y":135,"fileNum":13,"id":1200,"width":25,"height":45},{"x":50,"y":135,"fileNum":13,"id":1201,"width":25,"height":45},{"x":75,"y":135,"fileNum":13,"id":1202,"width":25,"height":45},{"x":100,"y":135,"fileNum":13,"id":1203,"width":25,"height":45},{"x":0,"y":0,"fileNum":14,"id":1208,"width":32,"height":32},{"x":0,"y":0,"fileNum":15,"id":1209,"width":25,"height":45},{"x":25,"y":0,"fileNum":15,"id":1210,"width":25,"height":45},{"x":50,"y":0,"fileNum":15,"id":1211,"width":25,"height":45},{"x":75,"y":0,"fileNum":15,"id":1212,"width":25,"height":45},{"x":100,"y":0,"fileNum":15,"id":1213,"width":25,"height":45},{"x":125,"y":0,"fileNum":15,"id":1214,"width":25,"height":45},{"x":0,"y":45,"fileNum":15,"id":1215,"width":25,"height":45},{"x":25,"y":45,"fileNum":15,"id":1216,"width":25,"height":45},{"x":50,"y":45,"fileNum":15,"id":1217,"width":25,"height":45},{"x":75,"y":45,"fileNum":15,"id":1218,"width":25,"height":45},{"x":100,"y":45,"fileNum":15,"id":1219,"width":25,"height":45},{"x":125,"y":45,"fileNum":15,"id":1220,"width":25,"height":45},{"x":0,"y":90,"fileNum":15,"id":1221,"width":25,"height":45},{"x":25,"y":90,"fileNum":15,"id":1222,"width":25,"height":45},{"x":50,"y":90,"fileNum":15,"id":1223,"width":25,"height":45},{"x":75,"y":90,"fileNum":15,"id":1224,"width":25,"height":45},{"x":100,"y":90,"fileNum":15,"id":1225,"width":25,"height":45},{"x":0,"y":135,"fileNum":15,"id":1226,"width":25,"height":45},{"x":25,"y":135,"fileNum":15,"id":1227,"width":25,"height":45},{"x":50,"y":135,"fileNum":15,"id":1228,"width":25,"height":45},{"x":75,"y":135,"fileNum":15,"id":1229,"width":25,"height":45},{"x":100,"y":135,"fileNum":15,"id":1230,"width":25,"height":45},{"x":0,"y":0,"fileNum":17,"id":1235,"width":32,"height":32},{"x":0,"y":0,"fileNum":18,"id":1236,"width":25,"height":45},{"x":25,"y":0,"fileNum":18,"id":1237,"width":25,"height":45},{"x":50,"y":0,"fileNum":18,"id":1238,"width":25,"height":45},{"x":75,"y":0,"fileNum":18,"id":1239,"width":25,"height":45},{"x":100,"y":0,"fileNum":18,"id":1240,"width":25,"height":45},{"x":125,"y":0,"fileNum":18,"id":1241,"width":25,"height":45},{"x":0,"y":45,"fileNum":18,"id":1242,"width":25,"height":45},{"x":25,"y":45,"fileNum":18,"id":1243,"width":25,"height":45},{"x":50,"y":45,"fileNum":18,"id":1244,"width":25,"height":45},{"x":75,"y":45,"fileNum":18,"id":1245,"width":25,"height":45},{"x":100,"y":45,"fileNum":18,"id":1246,"width":25,"height":45},{"x":125,"y":45,"fileNum":18,"id":1247,"width":25,"height":45},{"x":0,"y":90,"fileNum":18,"id":1248,"width":25,"height":45},{"x":25,"y":90,"fileNum":18,"id":1249,"width":25,"height":45},{"x":50,"y":90,"fileNum":18,"id":1250,"width":25,"height":45},{"x":75,"y":90,"fileNum":18,"id":1251,"width":25,"height":45},{"x":100,"y":90,"fileNum":18,"id":1252,"width":25,"height":45},{"x":0,"y":135,"fileNum":18,"id":1253,"width":25,"height":45},{"x":25,"y":135,"fileNum":18,"id":1254,"width":25,"height":45},{"x":50,"y":135,"fileNum":18,"id":1255,"width":25,"height":45},{"x":75,"y":135,"fileNum":18,"id":1256,"width":25,"height":45},{"x":100,"y":135,"fileNum":18,"id":1257,"width":25,"height":45},{"x":0,"y":0,"fileNum":19,"id":1262,"width":32,"height":32},{"x":0,"y":0,"fileNum":20,"id":1263,"width":25,"height":45},{"x":25,"y":0,"fileNum":20,"id":1264,"width":25,"height":45},{"x":50,"y":0,"fileNum":20,"id":1265,"width":25,"height":45},{"x":75,"y":0,"fileNum":20,"id":1266,"width":25,"height":45},{"x":100,"y":0,"fileNum":20,"id":1267,"width":25,"height":45},{"x":125,"y":0,"fileNum":20,"id":1268,"width":25,"height":45},{"x":0,"y":45,"fileNum":20,"id":1269,"width":25,"height":45},{"x":25,"y":45,"fileNum":20,"id":1270,"width":25,"height":45},{"x":50,"y":45,"fileNum":20,"id":1271,"width":25,"height":45},{"x":75,"y":45,"fileNum":20,"id":1272,"width":25,"height":45},{"x":100,"y":45,"fileNum":20,"id":1273,"width":25,"height":45},{"x":125,"y":45,"fileNum":20,"id":1274,"width":25,"height":45},{"x":0,"y":90,"fileNum":20,"id":1275,"width":25,"height":45},{"x":25,"y":90,"fileNum":20,"id":1276,"width":25,"height":45},{"x":50,"y":90,"fileNum":20,"id":1277,"width":25,"height":45},{"x":75,"y":90,"fileNum":20,"id":1278,"width":25,"height":45},{"x":100,"y":90,"fileNum":20,"id":1279,"width":25,"height":45},{"x":0,"y":135,"fileNum":20,"id":1280,"width":25,"height":45},{"x":25,"y":135,"fileNum":20,"id":1281,"width":25,"height":45},{"x":50,"y":135,"fileNum":20,"id":1282,"width":25,"height":45},{"x":75,"y":135,"fileNum":20,"id":1283,"width":25,"height":45},{"x":100,"y":135,"fileNum":20,"id":1284,"width":25,"height":45},{"x":0,"y":0,"fileNum":16010,"id":1289,"width":25,"height":45},{"x":25,"y":0,"fileNum":16010,"id":1290,"width":25,"height":45},{"x":50,"y":0,"fileNum":16010,"id":1291,"width":25,"height":45},{"x":75,"y":0,"fileNum":16010,"id":1292,"width":25,"height":45},{"x":100,"y":0,"fileNum":16010,"id":1293,"width":25,"height":45},{"x":125,"y":0,"fileNum":16010,"id":1294,"width":25,"height":45},{"x":0,"y":45,"fileNum":16010,"id":1295,"width":25,"height":45},{"x":25,"y":45,"fileNum":16010,"id":1296,"width":25,"height":45},{"x":50,"y":45,"fileNum":16010,"id":1297,"width":25,"height":45},{"x":75,"y":45,"fileNum":16010,"id":1298,"width":25,"height":45},{"x":100,"y":45,"fileNum":16010,"id":1299,"width":25,"height":45},{"x":125,"y":45,"fileNum":16010,"id":1300,"width":25,"height":45},{"x":0,"y":90,"fileNum":16010,"id":1301,"width":25,"height":45},{"x":25,"y":90,"fileNum":16010,"id":1302,"width":25,"height":45},{"x":50,"y":90,"fileNum":16010,"id":1303,"width":25,"height":45},{"x":75,"y":90,"fileNum":16010,"id":1304,"width":25,"height":45},{"x":100,"y":90,"fileNum":16010,"id":1305,"width":25,"height":45},{"x":0,"y":135,"fileNum":16010,"id":1306,"width":25,"height":45},{"x":25,"y":135,"fileNum":16010,"id":1307,"width":25,"height":45},{"x":50,"y":135,"fileNum":16010,"id":1308,"width":25,"height":45},{"x":75,"y":135,"fileNum":16010,"id":1309,"width":25,"height":45},{"x":100,"y":135,"fileNum":16010,"id":1310,"width":25,"height":45},{"x":0,"y":0,"fileNum":12051,"id":1315,"width":32,"height":32},{"x":32,"y":0,"fileNum":12051,"id":1316,"width":32,"height":32},{"x":64,"y":0,"fileNum":12051,"id":1317,"width":32,"height":32},{"x":96,"y":0,"fileNum":12051,"id":1318,"width":32,"height":32},{"x":0,"y":32,"fileNum":12051,"id":1319,"width":32,"height":32},{"x":32,"y":32,"fileNum":12051,"id":1320,"width":32,"height":32},{"x":64,"y":32,"fileNum":12051,"id":1321,"width":32,"height":32},{"x":96,"y":32,"fileNum":12051,"id":1322,"width":32,"height":32},{"x":0,"y":64,"fileNum":12051,"id":1323,"width":32,"height":32},{"x":32,"y":64,"fileNum":12051,"id":1324,"width":32,"height":32},{"x":64,"y":64,"fileNum":12051,"id":1325,"width":32,"height":32},{"x":96,"y":64,"fileNum":12051,"id":1326,"width":32,"height":32},{"x":0,"y":96,"fileNum":12051,"id":1327,"width":32,"height":32},{"x":32,"y":96,"fileNum":12051,"id":1328,"width":32,"height":32},{"x":64,"y":96,"fileNum":12051,"id":1329,"width":32,"height":32},{"x":96,"y":96,"fileNum":12051,"id":1330,"width":32,"height":32},{"x":0,"y":0,"fileNum":8165,"id":1331,"width":500,"height":395},{"x":0,"y":0,"fileNum":8166,"id":1332,"width":32,"height":32},{"x":32,"y":0,"fileNum":8166,"id":1333,"width":32,"height":32},{"x":64,"y":0,"fileNum":8166,"id":1334,"width":32,"height":32},{"x":96,"y":0,"fileNum":8166,"id":1335,"width":32,"height":32},{"x":0,"y":32,"fileNum":8166,"id":1336,"width":32,"height":32},{"x":32,"y":32,"fileNum":8166,"id":1337,"width":32,"height":32},{"x":64,"y":32,"fileNum":8166,"id":1338,"width":32,"height":32},{"x":96,"y":32,"fileNum":8166,"id":1339,"width":32,"height":32},{"x":0,"y":64,"fileNum":8166,"id":1340,"width":32,"height":32},{"x":32,"y":64,"fileNum":8166,"id":1341,"width":32,"height":32},{"x":64,"y":64,"fileNum":8166,"id":1342,"width":32,"height":32},{"x":96,"y":64,"fileNum":8166,"id":1343,"width":32,"height":32},{"x":0,"y":96,"fileNum":8166,"id":1344,"width":32,"height":32},{"x":32,"y":96,"fileNum":8166,"id":1345,"width":32,"height":32},{"x":64,"y":96,"fileNum":8166,"id":1346,"width":32,"height":32},{"x":96,"y":96,"fileNum":8166,"id":1347,"width":32,"height":32},{"x":128,"y":0,"fileNum":8166,"id":1348,"width":32,"height":32},{"x":160,"y":0,"fileNum":8166,"id":1349,"width":32,"height":32},{"x":192,"y":0,"fileNum":8166,"id":1350,"width":32,"height":32},{"x":224,"y":0,"fileNum":8166,"id":1351,"width":32,"height":32},{"x":128,"y":32,"fileNum":8166,"id":1352,"width":32,"height":32},{"x":160,"y":32,"fileNum":8166,"id":1353,"width":32,"height":32},{"x":192,"y":32,"fileNum":8166,"id":1354,"width":32,"height":32},{"x":224,"y":32,"fileNum":8166,"id":1355,"width":32,"height":32},{"x":128,"y":64,"fileNum":8166,"id":1356,"width":32,"height":32},{"x":160,"y":64,"fileNum":8166,"id":1357,"width":32,"height":32},{"x":192,"y":64,"fileNum":8166,"id":1358,"width":32,"height":32},{"x":224,"y":64,"fileNum":8166,"id":1359,"width":32,"height":32},{"x":128,"y":96,"fileNum":8166,"id":1360,"width":32,"height":32},{"x":160,"y":96,"fileNum":8166,"id":1361,"width":32,"height":32},{"x":192,"y":96,"fileNum":8166,"id":1362,"width":32,"height":32},{"x":224,"y":96,"fileNum":8166,"id":1363,"width":32,"height":32},{"x":256,"y":0,"fileNum":8166,"id":1364,"width":32,"height":32},{"x":288,"y":0,"fileNum":8166,"id":1365,"width":32,"height":32},{"x":320,"y":0,"fileNum":8166,"id":1366,"width":32,"height":32},{"x":352,"y":0,"fileNum":8166,"id":1367,"width":32,"height":32},{"x":256,"y":32,"fileNum":8166,"id":1368,"width":32,"height":32},{"x":288,"y":32,"fileNum":8166,"id":1369,"width":32,"height":32},{"x":320,"y":32,"fileNum":8166,"id":1370,"width":32,"height":32},{"x":352,"y":32,"fileNum":8166,"id":1371,"width":32,"height":32},{"x":256,"y":64,"fileNum":8166,"id":1372,"width":32,"height":32},{"x":288,"y":64,"fileNum":8166,"id":1373,"width":32,"height":32},{"x":320,"y":64,"fileNum":8166,"id":1374,"width":32,"height":32},{"x":352,"y":64,"fileNum":8166,"id":1375,"width":32,"height":32},{"x":256,"y":96,"fileNum":8166,"id":1376,"width":32,"height":32},{"x":288,"y":96,"fileNum":8166,"id":1377,"width":32,"height":32},{"x":320,"y":96,"fileNum":8166,"id":1378,"width":32,"height":32},{"x":352,"y":96,"fileNum":8166,"id":1379,"width":32,"height":32},{"x":384,"y":0,"fileNum":8166,"id":1380,"width":32,"height":32},{"x":416,"y":0,"fileNum":8166,"id":1381,"width":32,"height":32},{"x":448,"y":0,"fileNum":8166,"id":1382,"width":32,"height":32},{"x":480,"y":0,"fileNum":8166,"id":1383,"width":32,"height":32},{"x":384,"y":32,"fileNum":8166,"id":1384,"width":32,"height":32},{"x":416,"y":32,"fileNum":8166,"id":1385,"width":32,"height":32},{"x":448,"y":32,"fileNum":8166,"id":1386,"width":32,"height":32},{"x":480,"y":32,"fileNum":8166,"id":1387,"width":32,"height":32},{"x":384,"y":64,"fileNum":8166,"id":1388,"width":32,"height":32},{"x":416,"y":64,"fileNum":8166,"id":1389,"width":32,"height":32},{"x":448,"y":64,"fileNum":8166,"id":1390,"width":32,"height":32},{"x":480,"y":64,"fileNum":8166,"id":1391,"width":32,"height":32},{"x":384,"y":96,"fileNum":8166,"id":1392,"width":32,"height":32},{"x":416,"y":96,"fileNum":8166,"id":1393,"width":32,"height":32},{"x":448,"y":96,"fileNum":8166,"id":1394,"width":32,"height":32},{"x":480,"y":96,"fileNum":8166,"id":1395,"width":32,"height":32},{"x":0,"y":0,"fileNum":8167,"id":1396,"width":32,"height":32},{"x":32,"y":0,"fileNum":8167,"id":1397,"width":32,"height":32},{"x":64,"y":0,"fileNum":8167,"id":1398,"width":32,"height":32},{"x":96,"y":0,"fileNum":8167,"id":1399,"width":32,"height":32},{"x":0,"y":32,"fileNum":8167,"id":1400,"width":32,"height":32},{"x":32,"y":32,"fileNum":8167,"id":1401,"width":32,"height":32},{"x":64,"y":32,"fileNum":8167,"id":1402,"width":32,"height":32},{"x":96,"y":32,"fileNum":8167,"id":1403,"width":32,"height":32},{"x":0,"y":64,"fileNum":8167,"id":1404,"width":32,"height":32},{"x":32,"y":64,"fileNum":8167,"id":1405,"width":32,"height":32},{"x":64,"y":64,"fileNum":8167,"id":1406,"width":32,"height":32},{"x":96,"y":64,"fileNum":8167,"id":1407,"width":32,"height":32},{"x":0,"y":96,"fileNum":8167,"id":1408,"width":32,"height":32},{"x":32,"y":96,"fileNum":8167,"id":1409,"width":32,"height":32},{"x":64,"y":96,"fileNum":8167,"id":1410,"width":32,"height":32},{"x":96,"y":96,"fileNum":8167,"id":1411,"width":32,"height":32},{"x":128,"y":0,"fileNum":8167,"id":1412,"width":32,"height":32},{"x":160,"y":0,"fileNum":8167,"id":1413,"width":32,"height":32},{"x":192,"y":0,"fileNum":8167,"id":1414,"width":32,"height":32},{"x":224,"y":0,"fileNum":8167,"id":1415,"width":32,"height":32},{"x":128,"y":32,"fileNum":8167,"id":1416,"width":32,"height":32},{"x":160,"y":32,"fileNum":8167,"id":1417,"width":32,"height":32},{"x":192,"y":32,"fileNum":8167,"id":1418,"width":32,"height":32},{"x":224,"y":32,"fileNum":8167,"id":1419,"width":32,"height":32},{"x":128,"y":64,"fileNum":8167,"id":1420,"width":32,"height":32},{"x":160,"y":64,"fileNum":8167,"id":1421,"width":32,"height":32},{"x":192,"y":64,"fileNum":8167,"id":1422,"width":32,"height":32},{"x":224,"y":64,"fileNum":8167,"id":1423,"width":32,"height":32},{"x":128,"y":96,"fileNum":8167,"id":1424,"width":32,"height":32},{"x":160,"y":96,"fileNum":8167,"id":1425,"width":32,"height":32},{"x":192,"y":96,"fileNum":8167,"id":1426,"width":32,"height":32},{"x":224,"y":96,"fileNum":8167,"id":1427,"width":32,"height":32},{"x":256,"y":0,"fileNum":8167,"id":1428,"width":32,"height":32},{"x":288,"y":0,"fileNum":8167,"id":1429,"width":32,"height":32},{"x":320,"y":0,"fileNum":8167,"id":1430,"width":32,"height":32},{"x":352,"y":0,"fileNum":8167,"id":1431,"width":32,"height":32},{"x":256,"y":32,"fileNum":8167,"id":1432,"width":32,"height":32},{"x":288,"y":32,"fileNum":8167,"id":1433,"width":32,"height":32},{"x":320,"y":32,"fileNum":8167,"id":1434,"width":32,"height":32},{"x":352,"y":32,"fileNum":8167,"id":1435,"width":32,"height":32},{"x":256,"y":64,"fileNum":8167,"id":1436,"width":32,"height":32},{"x":288,"y":64,"fileNum":8167,"id":1437,"width":32,"height":32},{"x":320,"y":64,"fileNum":8167,"id":1438,"width":32,"height":32},{"x":352,"y":64,"fileNum":8167,"id":1439,"width":32,"height":32},{"x":256,"y":96,"fileNum":8167,"id":1440,"width":32,"height":32},{"x":288,"y":96,"fileNum":8167,"id":1441,"width":32,"height":32},{"x":320,"y":96,"fileNum":8167,"id":1442,"width":32,"height":32},{"x":352,"y":96,"fileNum":8167,"id":1443,"width":32,"height":32},{"x":384,"y":0,"fileNum":8167,"id":1444,"width":32,"height":32},{"x":416,"y":0,"fileNum":8167,"id":1445,"width":32,"height":32},{"x":448,"y":0,"fileNum":8167,"id":1446,"width":32,"height":32},{"x":480,"y":0,"fileNum":8167,"id":1447,"width":32,"height":32},{"x":384,"y":32,"fileNum":8167,"id":1448,"width":32,"height":32},{"x":416,"y":32,"fileNum":8167,"id":1449,"width":32,"height":32},{"x":448,"y":32,"fileNum":8167,"id":1450,"width":32,"height":32},{"x":480,"y":32,"fileNum":8167,"id":1451,"width":32,"height":32},{"x":384,"y":64,"fileNum":8167,"id":1452,"width":32,"height":32},{"x":416,"y":64,"fileNum":8167,"id":1453,"width":32,"height":32},{"x":448,"y":64,"fileNum":8167,"id":1454,"width":32,"height":32},{"x":480,"y":64,"fileNum":8167,"id":1455,"width":32,"height":32},{"x":384,"y":96,"fileNum":8167,"id":1456,"width":32,"height":32},{"x":416,"y":96,"fileNum":8167,"id":1457,"width":32,"height":32},{"x":448,"y":96,"fileNum":8167,"id":1458,"width":32,"height":32},{"x":480,"y":96,"fileNum":8167,"id":1459,"width":32,"height":32},{"x":0,"y":0,"fileNum":8169,"id":1460,"width":64,"height":192},{"x":0,"y":0,"fileNum":8170,"id":1461,"width":139,"height":123},{"x":0,"y":0,"fileNum":8171,"id":1462,"width":139,"height":123},{"x":0,"y":0,"fileNum":8172,"id":1463,"width":61,"height":126},{"x":0,"y":0,"fileNum":15198,"id":1464,"width":105,"height":222},{"x":105,"y":0,"fileNum":15198,"id":1465,"width":105,"height":222},{"x":210,"y":0,"fileNum":15198,"id":1466,"width":105,"height":222},{"x":315,"y":0,"fileNum":15198,"id":1467,"width":105,"height":222},{"x":0,"y":0,"fileNum":16035,"id":1469,"width":32,"height":32},{"x":0,"y":0,"fileNum":206,"id":1470,"width":32,"height":32},{"x":0,"y":0,"fileNum":7012,"id":1471,"width":128,"height":64},{"x":0,"y":0,"fileNum":15025,"id":1472,"width":22,"height":35},{"x":0,"y":0,"fileNum":15026,"id":1473,"width":18,"height":40},{"x":4,"y":0,"fileNum":15030,"id":1474,"width":85,"height":50},{"x":10,"y":10,"fileNum":15032,"id":1475,"width":85,"height":50},{"x":0,"y":0,"fileNum":205,"id":1476,"width":32,"height":32},{"x":0,"y":5,"fileNum":15035,"id":1477,"width":100,"height":110},{"x":15,"y":17,"fileNum":15041,"id":1478,"width":40,"height":40},{"x":0,"y":0,"fileNum":15042,"id":1479,"width":50,"height":90},{"x":0,"y":25,"fileNum":15043,"id":1480,"width":100,"height":70},{"x":0,"y":5,"fileNum":15045,"id":1481,"width":40,"height":30},{"x":0,"y":0,"fileNum":15046,"id":1482,"width":30,"height":30},{"x":0,"y":0,"fileNum":15047,"id":1483,"width":50,"height":43},{"x":0,"y":0,"fileNum":15037,"id":1484,"width":37,"height":40},{"x":0,"y":0,"fileNum":15038,"id":1485,"width":40,"height":40},{"x":0,"y":0,"fileNum":15039,"id":1486,"width":37,"height":40},{"x":0,"y":0,"fileNum":15040,"id":1487,"width":55,"height":40},{"x":0,"y":0,"fileNum":15048,"id":1488,"width":37,"height":35},{"x":0,"y":0,"fileNum":15049,"id":1489,"width":37,"height":35},{"x":0,"y":0,"fileNum":13000,"id":1490,"width":32,"height":50},{"x":0,"y":0,"fileNum":13001,"id":1491,"width":32,"height":50},{"x":0,"y":0,"fileNum":13002,"id":1492,"width":32,"height":50},{"x":0,"y":0,"fileNum":15050,"id":1493,"width":146,"height":33},{"x":0,"y":0,"fileNum":15051,"id":1494,"width":32,"height":32},{"x":0,"y":0,"fileNum":15052,"id":1495,"width":32,"height":32},{"x":0,"y":0,"fileNum":15053,"id":1496,"width":64,"height":64},{"x":0,"y":0,"fileNum":15054,"id":1497,"width":32,"height":32},{"x":0,"y":0,"fileNum":22001,"id":1498,"width":32,"height":32},{"x":5,"y":0,"fileNum":22002,"id":1499,"width":32,"height":87},{"x":0,"y":0,"fileNum":15056,"id":1500,"width":160,"height":96},{"x":0,"y":0,"fileNum":15057,"id":1501,"width":70,"height":42},{"x":0,"y":0,"fileNum":15058,"id":1502,"width":53,"height":49},{"x":0,"y":0,"fileNum":15059,"id":1503,"width":70,"height":38},{"x":0,"y":0,"fileNum":15060,"id":1504,"width":209,"height":107},{"x":0,"y":0,"fileNum":16049,"id":1522,"width":32,"height":32},{"x":0,"y":0,"fileNum":16050,"id":1523,"width":32,"height":32},{"x":0,"y":0,"fileNum":15071,"id":1524,"width":32,"height":32},{"x":0,"y":0,"fileNum":15072,"id":1525,"width":74,"height":64},{"x":74,"y":0,"fileNum":15072,"id":1526,"width":64,"height":64},{"x":128,"y":0,"fileNum":15072,"id":1527,"width":64,"height":64},{"x":0,"y":0,"fileNum":15073,"id":1528,"width":80,"height":80},{"x":0,"y":0,"fileNum":6002,"id":1529,"width":300,"height":270},{"x":0,"y":0,"fileNum":6004,"id":1530,"width":204,"height":204},{"x":0,"y":0,"fileNum":6005,"id":1531,"width":232,"height":300},{"x":0,"y":0,"fileNum":6006,"id":1532,"width":121,"height":292},{"x":0,"y":0,"fileNum":6007,"id":1533,"width":200,"height":207},{"x":0,"y":0,"fileNum":6008,"id":1534,"width":267,"height":297},{"x":0,"y":0,"fileNum":6009,"id":1535,"width":80,"height":64},{"x":0,"y":0,"fileNum":6010,"id":1536,"width":65,"height":64},{"x":0,"y":0,"fileNum":22025,"id":1537,"width":32,"height":32},{"x":0,"y":0,"fileNum":8174,"id":1538,"width":64,"height":64},{"x":0,"y":0,"fileNum":8175,"id":1539,"width":256,"height":160},{"x":0,"y":0,"fileNum":8190,"id":1540,"width":32,"height":32},{"x":32,"y":0,"fileNum":8190,"id":1541,"width":32,"height":32},{"x":64,"y":0,"fileNum":8190,"id":1542,"width":32,"height":32},{"x":96,"y":0,"fileNum":8190,"id":1543,"width":32,"height":32},{"x":0,"y":32,"fileNum":8190,"id":1544,"width":32,"height":32},{"x":32,"y":32,"fileNum":8190,"id":1545,"width":32,"height":32},{"x":64,"y":32,"fileNum":8190,"id":1546,"width":32,"height":32},{"x":96,"y":32,"fileNum":8190,"id":1547,"width":32,"height":32},{"x":0,"y":64,"fileNum":8190,"id":1548,"width":32,"height":32},{"x":32,"y":64,"fileNum":8190,"id":1549,"width":32,"height":32},{"x":64,"y":64,"fileNum":8190,"id":1550,"width":32,"height":32},{"x":96,"y":64,"fileNum":8190,"id":1551,"width":32,"height":32},{"x":0,"y":96,"fileNum":8190,"id":1552,"width":32,"height":32},{"x":32,"y":96,"fileNum":8190,"id":1553,"width":32,"height":32},{"x":64,"y":96,"fileNum":8190,"id":1554,"width":32,"height":32},{"x":96,"y":96,"fileNum":8190,"id":1555,"width":32,"height":32},{"x":0,"y":0,"fileNum":8191,"id":1556,"width":32,"height":32},{"x":32,"y":0,"fileNum":8191,"id":1557,"width":32,"height":32},{"x":64,"y":0,"fileNum":8191,"id":1558,"width":32,"height":32},{"x":96,"y":0,"fileNum":8191,"id":1559,"width":32,"height":32},{"x":0,"y":32,"fileNum":8191,"id":1560,"width":32,"height":32},{"x":32,"y":32,"fileNum":8191,"id":1561,"width":32,"height":32},{"x":64,"y":32,"fileNum":8191,"id":1562,"width":32,"height":32},{"x":96,"y":32,"fileNum":8191,"id":1563,"width":32,"height":32},{"x":0,"y":64,"fileNum":8191,"id":1564,"width":32,"height":32},{"x":32,"y":64,"fileNum":8191,"id":1565,"width":32,"height":32},{"x":64,"y":64,"fileNum":8191,"id":1566,"width":32,"height":32},{"x":96,"y":64,"fileNum":8191,"id":1567,"width":32,"height":32},{"x":0,"y":96,"fileNum":8191,"id":1568,"width":32,"height":32},{"x":32,"y":96,"fileNum":8191,"id":1569,"width":32,"height":32},{"x":64,"y":96,"fileNum":8191,"id":1570,"width":32,"height":32},{"x":96,"y":96,"fileNum":8191,"id":1571,"width":32,"height":32},{"x":0,"y":0,"fileNum":8192,"id":1572,"width":32,"height":32},{"x":32,"y":0,"fileNum":8192,"id":1573,"width":32,"height":32},{"x":64,"y":0,"fileNum":8192,"id":1574,"width":32,"height":32},{"x":96,"y":0,"fileNum":8192,"id":1575,"width":32,"height":32},{"x":0,"y":32,"fileNum":8192,"id":1576,"width":32,"height":32},{"x":32,"y":32,"fileNum":8192,"id":1577,"width":32,"height":32},{"x":64,"y":32,"fileNum":8192,"id":1578,"width":32,"height":32},{"x":96,"y":32,"fileNum":8192,"id":1579,"width":32,"height":32},{"x":0,"y":64,"fileNum":8192,"id":1580,"width":32,"height":32},{"x":32,"y":64,"fileNum":8192,"id":1581,"width":32,"height":32},{"x":64,"y":64,"fileNum":8192,"id":1582,"width":32,"height":32},{"x":96,"y":64,"fileNum":8192,"id":1583,"width":32,"height":32},{"x":0,"y":96,"fileNum":8192,"id":1584,"width":32,"height":32},{"x":32,"y":96,"fileNum":8192,"id":1585,"width":32,"height":32},{"x":64,"y":96,"fileNum":8192,"id":1586,"width":32,"height":32},{"x":96,"y":96,"fileNum":8192,"id":1587,"width":32,"height":32},{"x":0,"y":0,"fileNum":8193,"id":1588,"width":32,"height":32},{"x":32,"y":0,"fileNum":8193,"id":1589,"width":32,"height":32},{"x":64,"y":0,"fileNum":8193,"id":1590,"width":32,"height":32},{"x":96,"y":0,"fileNum":8193,"id":1591,"width":32,"height":32},{"x":0,"y":32,"fileNum":8193,"id":1592,"width":32,"height":32},{"x":32,"y":32,"fileNum":8193,"id":1593,"width":32,"height":32},{"x":64,"y":32,"fileNum":8193,"id":1594,"width":32,"height":32},{"x":96,"y":32,"fileNum":8193,"id":1595,"width":32,"height":32},{"x":0,"y":64,"fileNum":8193,"id":1596,"width":32,"height":32},{"x":32,"y":64,"fileNum":8193,"id":1597,"width":32,"height":32},{"x":64,"y":64,"fileNum":8193,"id":1598,"width":32,"height":32},{"x":96,"y":64,"fileNum":8193,"id":1599,"width":32,"height":32},{"x":0,"y":96,"fileNum":8193,"id":1600,"width":32,"height":32},{"x":32,"y":96,"fileNum":8193,"id":1601,"width":32,"height":32},{"x":64,"y":96,"fileNum":8193,"id":1602,"width":32,"height":32},{"x":96,"y":96,"fileNum":8193,"id":1603,"width":32,"height":32},{"x":0,"y":0,"fileNum":8194,"id":1604,"width":32,"height":32},{"x":32,"y":0,"fileNum":8194,"id":1605,"width":32,"height":32},{"x":64,"y":0,"fileNum":8194,"id":1606,"width":32,"height":32},{"x":96,"y":0,"fileNum":8194,"id":1607,"width":32,"height":32},{"x":0,"y":32,"fileNum":8194,"id":1608,"width":32,"height":32},{"x":32,"y":32,"fileNum":8194,"id":1609,"width":32,"height":32},{"x":64,"y":32,"fileNum":8194,"id":1610,"width":32,"height":32},{"x":96,"y":32,"fileNum":8194,"id":1611,"width":32,"height":32},{"x":0,"y":64,"fileNum":8194,"id":1612,"width":32,"height":32},{"x":32,"y":64,"fileNum":8194,"id":1613,"width":32,"height":32},{"x":64,"y":64,"fileNum":8194,"id":1614,"width":32,"height":32},{"x":96,"y":64,"fileNum":8194,"id":1615,"width":32,"height":32},{"x":0,"y":96,"fileNum":8194,"id":1616,"width":32,"height":32},{"x":32,"y":96,"fileNum":8194,"id":1617,"width":32,"height":32},{"x":64,"y":96,"fileNum":8194,"id":1618,"width":32,"height":32},{"x":96,"y":96,"fileNum":8194,"id":1619,"width":32,"height":32},{"x":0,"y":0,"fileNum":8195,"id":1620,"width":32,"height":32},{"x":32,"y":0,"fileNum":8195,"id":1621,"width":32,"height":32},{"x":64,"y":0,"fileNum":8195,"id":1622,"width":32,"height":32},{"x":96,"y":0,"fileNum":8195,"id":1623,"width":32,"height":32},{"x":0,"y":32,"fileNum":8195,"id":1624,"width":32,"height":32},{"x":32,"y":32,"fileNum":8195,"id":1625,"width":32,"height":32},{"x":64,"y":32,"fileNum":8195,"id":1626,"width":32,"height":32},{"x":96,"y":32,"fileNum":8195,"id":1627,"width":32,"height":32},{"x":0,"y":64,"fileNum":8195,"id":1628,"width":32,"height":32},{"x":32,"y":64,"fileNum":8195,"id":1629,"width":32,"height":32},{"x":64,"y":64,"fileNum":8195,"id":1630,"width":32,"height":32},{"x":96,"y":64,"fileNum":8195,"id":1631,"width":32,"height":32},{"x":0,"y":96,"fileNum":8195,"id":1632,"width":32,"height":32},{"x":32,"y":96,"fileNum":8195,"id":1633,"width":32,"height":32},{"x":64,"y":96,"fileNum":8195,"id":1634,"width":32,"height":32},{"x":96,"y":96,"fileNum":8195,"id":1635,"width":32,"height":32},{"x":0,"y":0,"fileNum":8196,"id":1636,"width":32,"height":32},{"x":32,"y":0,"fileNum":8196,"id":1637,"width":32,"height":32},{"x":64,"y":0,"fileNum":8196,"id":1638,"width":32,"height":32},{"x":96,"y":0,"fileNum":8196,"id":1639,"width":32,"height":32},{"x":0,"y":32,"fileNum":8196,"id":1640,"width":32,"height":32},{"x":32,"y":32,"fileNum":8196,"id":1641,"width":32,"height":32},{"x":64,"y":32,"fileNum":8196,"id":1642,"width":32,"height":32},{"x":96,"y":32,"fileNum":8196,"id":1643,"width":32,"height":32},{"x":0,"y":64,"fileNum":8196,"id":1644,"width":32,"height":32},{"x":32,"y":64,"fileNum":8196,"id":1645,"width":32,"height":32},{"x":64,"y":64,"fileNum":8196,"id":1646,"width":32,"height":32},{"x":96,"y":64,"fileNum":8196,"id":1647,"width":32,"height":32},{"x":0,"y":96,"fileNum":8196,"id":1648,"width":32,"height":32},{"x":32,"y":96,"fileNum":8196,"id":1649,"width":32,"height":32},{"x":64,"y":96,"fileNum":8196,"id":1650,"width":32,"height":32},{"x":96,"y":96,"fileNum":8196,"id":1651,"width":32,"height":32},{"x":0,"y":0,"fileNum":8197,"id":1652,"width":32,"height":32},{"x":32,"y":0,"fileNum":8197,"id":1653,"width":32,"height":32},{"x":64,"y":0,"fileNum":8197,"id":1654,"width":32,"height":32},{"x":96,"y":0,"fileNum":8197,"id":1655,"width":32,"height":32},{"x":0,"y":32,"fileNum":8197,"id":1656,"width":32,"height":32},{"x":32,"y":32,"fileNum":8197,"id":1657,"width":32,"height":32},{"x":64,"y":32,"fileNum":8197,"id":1658,"width":32,"height":32},{"x":96,"y":32,"fileNum":8197,"id":1659,"width":32,"height":32},{"x":0,"y":64,"fileNum":8197,"id":1660,"width":32,"height":32},{"x":32,"y":64,"fileNum":8197,"id":1661,"width":32,"height":32},{"x":64,"y":64,"fileNum":8197,"id":1662,"width":32,"height":32},{"x":96,"y":64,"fileNum":8197,"id":1663,"width":32,"height":32},{"x":0,"y":96,"fileNum":8197,"id":1664,"width":32,"height":32},{"x":32,"y":96,"fileNum":8197,"id":1665,"width":32,"height":32},{"x":64,"y":96,"fileNum":8197,"id":1666,"width":32,"height":32},{"x":96,"y":96,"fileNum":8197,"id":1667,"width":32,"height":32},{"x":0,"y":0,"fileNum":8198,"id":1668,"width":32,"height":32},{"x":32,"y":0,"fileNum":8198,"id":1669,"width":32,"height":32},{"x":64,"y":0,"fileNum":8198,"id":1670,"width":32,"height":32},{"x":96,"y":0,"fileNum":8198,"id":1671,"width":32,"height":32},{"x":0,"y":32,"fileNum":8198,"id":1672,"width":32,"height":32},{"x":32,"y":32,"fileNum":8198,"id":1673,"width":32,"height":32},{"x":64,"y":32,"fileNum":8198,"id":1674,"width":32,"height":32},{"x":96,"y":32,"fileNum":8198,"id":1675,"width":32,"height":32},{"x":0,"y":64,"fileNum":8198,"id":1676,"width":32,"height":32},{"x":32,"y":64,"fileNum":8198,"id":1677,"width":32,"height":32},{"x":64,"y":64,"fileNum":8198,"id":1678,"width":32,"height":32},{"x":96,"y":64,"fileNum":8198,"id":1679,"width":32,"height":32},{"x":0,"y":96,"fileNum":8198,"id":1680,"width":32,"height":32},{"x":32,"y":96,"fileNum":8198,"id":1681,"width":32,"height":32},{"x":64,"y":96,"fileNum":8198,"id":1682,"width":32,"height":32},{"x":96,"y":96,"fileNum":8198,"id":1683,"width":32,"height":32},{"x":0,"y":0,"fileNum":8199,"id":1684,"width":32,"height":32},{"x":32,"y":0,"fileNum":8199,"id":1685,"width":32,"height":32},{"x":64,"y":0,"fileNum":8199,"id":1686,"width":32,"height":32},{"x":96,"y":0,"fileNum":8199,"id":1687,"width":32,"height":32},{"x":0,"y":32,"fileNum":8199,"id":1688,"width":32,"height":32},{"x":32,"y":32,"fileNum":8199,"id":1689,"width":32,"height":32},{"x":64,"y":32,"fileNum":8199,"id":1690,"width":32,"height":32},{"x":96,"y":32,"fileNum":8199,"id":1691,"width":32,"height":32},{"x":0,"y":64,"fileNum":8199,"id":1692,"width":32,"height":32},{"x":32,"y":64,"fileNum":8199,"id":1693,"width":32,"height":32},{"x":64,"y":64,"fileNum":8199,"id":1694,"width":32,"height":32},{"x":96,"y":64,"fileNum":8199,"id":1695,"width":32,"height":32},{"x":0,"y":96,"fileNum":8199,"id":1696,"width":32,"height":32},{"x":32,"y":96,"fileNum":8199,"id":1697,"width":32,"height":32},{"x":64,"y":96,"fileNum":8199,"id":1698,"width":32,"height":32},{"x":96,"y":96,"fileNum":8199,"id":1699,"width":32,"height":32},{"x":0,"y":0,"fileNum":8200,"id":1700,"width":32,"height":32},{"x":32,"y":0,"fileNum":8200,"id":1701,"width":32,"height":32},{"x":64,"y":0,"fileNum":8200,"id":1702,"width":32,"height":32},{"x":96,"y":0,"fileNum":8200,"id":1703,"width":32,"height":32},{"x":0,"y":32,"fileNum":8200,"id":1704,"width":32,"height":32},{"x":32,"y":32,"fileNum":8200,"id":1705,"width":32,"height":32},{"x":64,"y":32,"fileNum":8200,"id":1706,"width":32,"height":32},{"x":96,"y":32,"fileNum":8200,"id":1707,"width":32,"height":32},{"x":0,"y":64,"fileNum":8200,"id":1708,"width":32,"height":32},{"x":32,"y":64,"fileNum":8200,"id":1709,"width":32,"height":32},{"x":64,"y":64,"fileNum":8200,"id":1710,"width":32,"height":32},{"x":96,"y":64,"fileNum":8200,"id":1711,"width":32,"height":32},{"x":0,"y":96,"fileNum":8200,"id":1712,"width":32,"height":32},{"x":32,"y":96,"fileNum":8200,"id":1713,"width":32,"height":32},{"x":64,"y":96,"fileNum":8200,"id":1714,"width":32,"height":32},{"x":96,"y":96,"fileNum":8200,"id":1715,"width":32,"height":32},{"x":0,"y":0,"fileNum":8201,"id":1716,"width":32,"height":32},{"x":32,"y":0,"fileNum":8201,"id":1717,"width":32,"height":32},{"x":64,"y":0,"fileNum":8201,"id":1718,"width":32,"height":32},{"x":96,"y":0,"fileNum":8201,"id":1719,"width":32,"height":32},{"x":0,"y":32,"fileNum":8201,"id":1720,"width":32,"height":32},{"x":32,"y":32,"fileNum":8201,"id":1721,"width":32,"height":32},{"x":64,"y":32,"fileNum":8201,"id":1722,"width":32,"height":32},{"x":96,"y":32,"fileNum":8201,"id":1723,"width":32,"height":32},{"x":0,"y":64,"fileNum":8201,"id":1724,"width":32,"height":32},{"x":32,"y":64,"fileNum":8201,"id":1725,"width":32,"height":32},{"x":64,"y":64,"fileNum":8201,"id":1726,"width":32,"height":32},{"x":96,"y":64,"fileNum":8201,"id":1727,"width":32,"height":32},{"x":0,"y":96,"fileNum":8201,"id":1728,"width":32,"height":32},{"x":32,"y":96,"fileNum":8201,"id":1729,"width":32,"height":32},{"x":64,"y":96,"fileNum":8201,"id":1730,"width":32,"height":32},{"x":96,"y":96,"fileNum":8201,"id":1731,"width":32,"height":32},{"x":0,"y":0,"fileNum":8202,"id":1732,"width":32,"height":32},{"x":32,"y":0,"fileNum":8202,"id":1733,"width":32,"height":32},{"x":64,"y":0,"fileNum":8202,"id":1734,"width":32,"height":32},{"x":96,"y":0,"fileNum":8202,"id":1735,"width":32,"height":32},{"x":0,"y":32,"fileNum":8202,"id":1736,"width":32,"height":32},{"x":32,"y":32,"fileNum":8202,"id":1737,"width":32,"height":32},{"x":64,"y":32,"fileNum":8202,"id":1738,"width":32,"height":32},{"x":96,"y":32,"fileNum":8202,"id":1739,"width":32,"height":32},{"x":0,"y":64,"fileNum":8202,"id":1740,"width":32,"height":32},{"x":32,"y":64,"fileNum":8202,"id":1741,"width":32,"height":32},{"x":64,"y":64,"fileNum":8202,"id":1742,"width":32,"height":32},{"x":96,"y":64,"fileNum":8202,"id":1743,"width":32,"height":32},{"x":0,"y":96,"fileNum":8202,"id":1744,"width":32,"height":32},{"x":32,"y":96,"fileNum":8202,"id":1745,"width":32,"height":32},{"x":64,"y":96,"fileNum":8202,"id":1746,"width":32,"height":32},{"x":96,"y":96,"fileNum":8202,"id":1747,"width":32,"height":32},{"x":0,"y":0,"fileNum":8203,"id":1748,"width":32,"height":32},{"x":32,"y":0,"fileNum":8203,"id":1749,"width":32,"height":32},{"x":64,"y":0,"fileNum":8203,"id":1750,"width":32,"height":32},{"x":96,"y":0,"fileNum":8203,"id":1751,"width":32,"height":32},{"x":0,"y":32,"fileNum":8203,"id":1752,"width":32,"height":32},{"x":32,"y":32,"fileNum":8203,"id":1753,"width":32,"height":32},{"x":64,"y":32,"fileNum":8203,"id":1754,"width":32,"height":32},{"x":96,"y":32,"fileNum":8203,"id":1755,"width":32,"height":32},{"x":0,"y":64,"fileNum":8203,"id":1756,"width":32,"height":32},{"x":32,"y":64,"fileNum":8203,"id":1757,"width":32,"height":32},{"x":64,"y":64,"fileNum":8203,"id":1758,"width":32,"height":32},{"x":96,"y":64,"fileNum":8203,"id":1759,"width":32,"height":32},{"x":0,"y":96,"fileNum":8203,"id":1760,"width":32,"height":32},{"x":32,"y":96,"fileNum":8203,"id":1761,"width":32,"height":32},{"x":64,"y":96,"fileNum":8203,"id":1762,"width":32,"height":32},{"x":96,"y":96,"fileNum":8203,"id":1763,"width":32,"height":32},{"x":0,"y":0,"fileNum":8204,"id":1764,"width":32,"height":32},{"x":32,"y":0,"fileNum":8204,"id":1765,"width":32,"height":32},{"x":64,"y":0,"fileNum":8204,"id":1766,"width":32,"height":32},{"x":96,"y":0,"fileNum":8204,"id":1767,"width":32,"height":32},{"x":0,"y":32,"fileNum":8204,"id":1768,"width":32,"height":32},{"x":32,"y":32,"fileNum":8204,"id":1769,"width":32,"height":32},{"x":64,"y":32,"fileNum":8204,"id":1770,"width":32,"height":32},{"x":96,"y":32,"fileNum":8204,"id":1771,"width":32,"height":32},{"x":0,"y":64,"fileNum":8204,"id":1772,"width":32,"height":32},{"x":32,"y":64,"fileNum":8204,"id":1773,"width":32,"height":32},{"x":64,"y":64,"fileNum":8204,"id":1774,"width":32,"height":32},{"x":96,"y":64,"fileNum":8204,"id":1775,"width":32,"height":32},{"x":0,"y":96,"fileNum":8204,"id":1776,"width":32,"height":32},{"x":32,"y":96,"fileNum":8204,"id":1777,"width":32,"height":32},{"x":64,"y":96,"fileNum":8204,"id":1778,"width":32,"height":32},{"x":96,"y":96,"fileNum":8204,"id":1779,"width":32,"height":32},{"x":0,"y":0,"fileNum":8205,"id":1780,"width":32,"height":32},{"x":32,"y":0,"fileNum":8205,"id":1781,"width":32,"height":32},{"x":64,"y":0,"fileNum":8205,"id":1782,"width":32,"height":32},{"x":96,"y":0,"fileNum":8205,"id":1783,"width":32,"height":32},{"x":0,"y":32,"fileNum":8205,"id":1784,"width":32,"height":32},{"x":32,"y":32,"fileNum":8205,"id":1785,"width":32,"height":32},{"x":64,"y":32,"fileNum":8205,"id":1786,"width":32,"height":32},{"x":96,"y":32,"fileNum":8205,"id":1787,"width":32,"height":32},{"x":0,"y":64,"fileNum":8205,"id":1788,"width":32,"height":32},{"x":32,"y":64,"fileNum":8205,"id":1789,"width":32,"height":32},{"x":64,"y":64,"fileNum":8205,"id":1790,"width":32,"height":32},{"x":96,"y":64,"fileNum":8205,"id":1791,"width":32,"height":32},{"x":0,"y":96,"fileNum":8205,"id":1792,"width":32,"height":32},{"x":32,"y":96,"fileNum":8205,"id":1793,"width":32,"height":32},{"x":64,"y":96,"fileNum":8205,"id":1794,"width":32,"height":32},{"x":96,"y":96,"fileNum":8205,"id":1795,"width":32,"height":32},{"x":0,"y":0,"fileNum":8206,"id":1796,"width":32,"height":32},{"x":32,"y":0,"fileNum":8206,"id":1797,"width":32,"height":32},{"x":64,"y":0,"fileNum":8206,"id":1798,"width":32,"height":32},{"x":96,"y":0,"fileNum":8206,"id":1799,"width":32,"height":32},{"x":0,"y":32,"fileNum":8206,"id":1800,"width":32,"height":32},{"x":32,"y":32,"fileNum":8206,"id":1801,"width":32,"height":32},{"x":64,"y":32,"fileNum":8206,"id":1802,"width":32,"height":32},{"x":96,"y":32,"fileNum":8206,"id":1803,"width":32,"height":32},{"x":0,"y":64,"fileNum":8206,"id":1804,"width":32,"height":32},{"x":32,"y":64,"fileNum":8206,"id":1805,"width":32,"height":32},{"x":64,"y":64,"fileNum":8206,"id":1806,"width":32,"height":32},{"x":96,"y":64,"fileNum":8206,"id":1807,"width":32,"height":32},{"x":0,"y":96,"fileNum":8206,"id":1808,"width":32,"height":32},{"x":32,"y":96,"fileNum":8206,"id":1809,"width":32,"height":32},{"x":64,"y":96,"fileNum":8206,"id":1810,"width":32,"height":32},{"x":96,"y":96,"fileNum":8206,"id":1811,"width":32,"height":32},{"x":0,"y":0,"fileNum":8207,"id":1812,"width":128,"height":128},{"x":0,"y":0,"fileNum":8168,"id":1813,"width":32,"height":32},{"x":32,"y":0,"fileNum":8168,"id":1814,"width":32,"height":32},{"x":64,"y":0,"fileNum":8168,"id":1815,"width":32,"height":32},{"x":96,"y":0,"fileNum":8168,"id":1816,"width":32,"height":32},{"x":0,"y":32,"fileNum":8168,"id":1817,"width":32,"height":32},{"x":32,"y":32,"fileNum":8168,"id":1818,"width":32,"height":32},{"x":64,"y":32,"fileNum":8168,"id":1819,"width":32,"height":32},{"x":96,"y":32,"fileNum":8168,"id":1820,"width":32,"height":32},{"x":0,"y":64,"fileNum":8168,"id":1821,"width":32,"height":32},{"x":32,"y":64,"fileNum":8168,"id":1822,"width":32,"height":32},{"x":64,"y":64,"fileNum":8168,"id":1823,"width":32,"height":32},{"x":96,"y":64,"fileNum":8168,"id":1824,"width":32,"height":32},{"x":0,"y":96,"fileNum":8168,"id":1825,"width":32,"height":32},{"x":32,"y":96,"fileNum":8168,"id":1826,"width":32,"height":32},{"x":64,"y":96,"fileNum":8168,"id":1827,"width":32,"height":32},{"x":96,"y":96,"fileNum":8168,"id":1828,"width":32,"height":32},{"x":128,"y":0,"fileNum":8168,"id":1829,"width":32,"height":32},{"x":160,"y":0,"fileNum":8168,"id":1830,"width":32,"height":32},{"x":192,"y":0,"fileNum":8168,"id":1831,"width":32,"height":32},{"x":224,"y":0,"fileNum":8168,"id":1832,"width":32,"height":32},{"x":128,"y":32,"fileNum":8168,"id":1833,"width":32,"height":32},{"x":160,"y":32,"fileNum":8168,"id":1834,"width":32,"height":32},{"x":192,"y":32,"fileNum":8168,"id":1835,"width":32,"height":32},{"x":224,"y":32,"fileNum":8168,"id":1836,"width":32,"height":32},{"x":128,"y":64,"fileNum":8168,"id":1837,"width":32,"height":32},{"x":160,"y":64,"fileNum":8168,"id":1838,"width":32,"height":32},{"x":192,"y":64,"fileNum":8168,"id":1839,"width":32,"height":32},{"x":224,"y":64,"fileNum":8168,"id":1840,"width":32,"height":32},{"x":128,"y":96,"fileNum":8168,"id":1841,"width":32,"height":32},{"x":160,"y":96,"fileNum":8168,"id":1842,"width":32,"height":32},{"x":192,"y":96,"fileNum":8168,"id":1843,"width":32,"height":32},{"x":224,"y":96,"fileNum":8168,"id":1844,"width":32,"height":32},{"x":256,"y":0,"fileNum":8168,"id":1845,"width":32,"height":32},{"x":288,"y":0,"fileNum":8168,"id":1846,"width":32,"height":32},{"x":320,"y":0,"fileNum":8168,"id":1847,"width":32,"height":32},{"x":352,"y":0,"fileNum":8168,"id":1848,"width":32,"height":32},{"x":256,"y":32,"fileNum":8168,"id":1849,"width":32,"height":32},{"x":288,"y":32,"fileNum":8168,"id":1850,"width":32,"height":32},{"x":320,"y":32,"fileNum":8168,"id":1851,"width":32,"height":32},{"x":352,"y":32,"fileNum":8168,"id":1852,"width":32,"height":32},{"x":256,"y":64,"fileNum":8168,"id":1853,"width":32,"height":32},{"x":288,"y":64,"fileNum":8168,"id":1854,"width":32,"height":32},{"x":320,"y":64,"fileNum":8168,"id":1855,"width":32,"height":32},{"x":352,"y":64,"fileNum":8168,"id":1856,"width":32,"height":32},{"x":256,"y":96,"fileNum":8168,"id":1857,"width":32,"height":32},{"x":288,"y":96,"fileNum":8168,"id":1858,"width":32,"height":32},{"x":320,"y":96,"fileNum":8168,"id":1859,"width":32,"height":32},{"x":352,"y":96,"fileNum":8168,"id":1860,"width":32,"height":32},{"x":384,"y":0,"fileNum":8168,"id":1861,"width":32,"height":32},{"x":416,"y":0,"fileNum":8168,"id":1862,"width":32,"height":32},{"x":448,"y":0,"fileNum":8168,"id":1863,"width":32,"height":32},{"x":480,"y":0,"fileNum":8168,"id":1864,"width":32,"height":32},{"x":384,"y":32,"fileNum":8168,"id":1865,"width":32,"height":32},{"x":416,"y":32,"fileNum":8168,"id":1866,"width":32,"height":32},{"x":448,"y":32,"fileNum":8168,"id":1867,"width":32,"height":32},{"x":480,"y":32,"fileNum":8168,"id":1868,"width":32,"height":32},{"x":384,"y":64,"fileNum":8168,"id":1869,"width":32,"height":32},{"x":416,"y":64,"fileNum":8168,"id":1870,"width":32,"height":32},{"x":448,"y":64,"fileNum":8168,"id":1871,"width":32,"height":32},{"x":480,"y":64,"fileNum":8168,"id":1872,"width":32,"height":32},{"x":384,"y":96,"fileNum":8168,"id":1873,"width":32,"height":32},{"x":416,"y":96,"fileNum":8168,"id":1874,"width":32,"height":32},{"x":448,"y":96,"fileNum":8168,"id":1875,"width":32,"height":32},{"x":480,"y":96,"fileNum":8168,"id":1876,"width":32,"height":32},{"x":0,"y":0,"fileNum":15062,"id":1877,"width":43,"height":63},{"x":43,"y":0,"fileNum":15062,"id":1878,"width":43,"height":63},{"x":86,"y":0,"fileNum":15062,"id":1879,"width":43,"height":63},{"x":126,"y":0,"fileNum":15062,"id":1880,"width":43,"height":63},{"x":169,"y":0,"fileNum":15062,"id":1881,"width":43,"height":63},{"x":212,"y":0,"fileNum":15062,"id":1882,"width":43,"height":63},{"x":255,"y":0,"fileNum":15062,"id":1883,"width":43,"height":63},{"x":298,"y":0,"fileNum":15062,"id":1884,"width":43,"height":63},{"x":0,"y":0,"fileNum":15063,"id":1886,"width":43,"height":63},{"x":43,"y":0,"fileNum":15063,"id":1887,"width":43,"height":63},{"x":86,"y":0,"fileNum":15063,"id":1888,"width":43,"height":63},{"x":126,"y":0,"fileNum":15063,"id":1889,"width":43,"height":63},{"x":169,"y":0,"fileNum":15063,"id":1890,"width":43,"height":63},{"x":212,"y":0,"fileNum":15063,"id":1891,"width":43,"height":63},{"x":255,"y":0,"fileNum":15063,"id":1892,"width":43,"height":63},{"x":298,"y":0,"fileNum":15063,"id":1893,"width":43,"height":63},{"x":0,"y":0,"fileNum":4009,"id":1895,"width":24,"height":51},{"x":24,"y":0,"fileNum":4009,"id":1896,"width":24,"height":51},{"x":48,"y":0,"fileNum":4009,"id":1897,"width":24,"height":51},{"x":72,"y":0,"fileNum":4009,"id":1898,"width":24,"height":51},{"x":96,"y":0,"fileNum":4009,"id":1899,"width":24,"height":51},{"x":120,"y":0,"fileNum":4009,"id":1900,"width":24,"height":51},{"x":0,"y":51,"fileNum":4009,"id":1901,"width":24,"height":51},{"x":24,"y":51,"fileNum":4009,"id":1902,"width":24,"height":51},{"x":48,"y":51,"fileNum":4009,"id":1903,"width":24,"height":51},{"x":72,"y":51,"fileNum":4009,"id":1904,"width":24,"height":51},{"x":96,"y":51,"fileNum":4009,"id":1905,"width":24,"height":51},{"x":120,"y":51,"fileNum":4009,"id":1906,"width":24,"height":51},{"x":0,"y":102,"fileNum":4009,"id":1907,"width":16,"height":51},{"x":16,"y":102,"fileNum":4009,"id":1908,"width":16,"height":51},{"x":37,"y":102,"fileNum":4009,"id":1909,"width":16,"height":51},{"x":56,"y":102,"fileNum":4009,"id":1910,"width":16,"height":51},{"x":74,"y":102,"fileNum":4009,"id":1911,"width":16,"height":51},{"x":0,"y":153,"fileNum":4009,"id":1912,"width":16,"height":50},{"x":16,"y":153,"fileNum":4009,"id":1913,"width":16,"height":50},{"x":36,"y":153,"fileNum":4009,"id":1914,"width":16,"height":50},{"x":54,"y":153,"fileNum":4009,"id":1915,"width":16,"height":50},{"x":71,"y":153,"fileNum":4009,"id":1916,"width":16,"height":50},{"x":0,"y":0,"fileNum":4010,"id":1921,"width":22,"height":53},{"x":22,"y":0,"fileNum":4010,"id":1922,"width":22,"height":53},{"x":44,"y":0,"fileNum":4010,"id":1923,"width":22,"height":53},{"x":66,"y":0,"fileNum":4010,"id":1924,"width":22,"height":53},{"x":88,"y":0,"fileNum":4010,"id":1925,"width":22,"height":53},{"x":110,"y":0,"fileNum":4010,"id":1926,"width":22,"height":53},{"x":0,"y":53,"fileNum":4010,"id":1927,"width":22,"height":53},{"x":22,"y":53,"fileNum":4010,"id":1928,"width":22,"height":53},{"x":44,"y":53,"fileNum":4010,"id":1929,"width":22,"height":53},{"x":67,"y":53,"fileNum":4010,"id":1930,"width":22,"height":53},{"x":89,"y":53,"fileNum":4010,"id":1931,"width":22,"height":53},{"x":111,"y":53,"fileNum":4010,"id":1932,"width":22,"height":53},{"x":0,"y":106,"fileNum":4010,"id":1933,"width":20,"height":53},{"x":20,"y":106,"fileNum":4010,"id":1934,"width":20,"height":53},{"x":40,"y":106,"fileNum":4010,"id":1935,"width":20,"height":53},{"x":60,"y":106,"fileNum":4010,"id":1936,"width":20,"height":53},{"x":80,"y":106,"fileNum":4010,"id":1937,"width":20,"height":53},{"x":0,"y":159,"fileNum":4010,"id":1938,"width":20,"height":53},{"x":17,"y":159,"fileNum":4010,"id":1939,"width":20,"height":53},{"x":40,"y":159,"fileNum":4010,"id":1940,"width":20,"height":53},{"x":60,"y":159,"fileNum":4010,"id":1941,"width":20,"height":53},{"x":80,"y":159,"fileNum":4010,"id":1942,"width":20,"height":53},{"x":0,"y":0,"fileNum":4011,"id":1947,"width":26,"height":67},{"x":26,"y":0,"fileNum":4011,"id":1948,"width":26,"height":67},{"x":52,"y":0,"fileNum":4011,"id":1949,"width":26,"height":67},{"x":78,"y":0,"fileNum":4011,"id":1950,"width":26,"height":67},{"x":104,"y":0,"fileNum":4011,"id":1951,"width":26,"height":67},{"x":130,"y":0,"fileNum":4011,"id":1952,"width":26,"height":67},{"x":0,"y":64,"fileNum":4011,"id":1953,"width":26,"height":67},{"x":26,"y":64,"fileNum":4011,"id":1954,"width":26,"height":67},{"x":52,"y":64,"fileNum":4011,"id":1955,"width":26,"height":67},{"x":78,"y":64,"fileNum":4011,"id":1956,"width":26,"height":67},{"x":104,"y":64,"fileNum":4011,"id":1957,"width":26,"height":67},{"x":130,"y":64,"fileNum":4011,"id":1958,"width":26,"height":67},{"x":0,"y":128,"fileNum":4011,"id":1959,"width":26,"height":67},{"x":26,"y":128,"fileNum":4011,"id":1960,"width":26,"height":67},{"x":52,"y":128,"fileNum":4011,"id":1961,"width":26,"height":67},{"x":78,"y":128,"fileNum":4011,"id":1962,"width":26,"height":67},{"x":104,"y":128,"fileNum":4011,"id":1963,"width":26,"height":67},{"x":0,"y":205,"fileNum":4011,"id":1964,"width":26,"height":64},{"x":23,"y":205,"fileNum":4011,"id":1965,"width":26,"height":64},{"x":48,"y":205,"fileNum":4011,"id":1966,"width":26,"height":64},{"x":76,"y":205,"fileNum":4011,"id":1967,"width":26,"height":64},{"x":102,"y":204,"fileNum":4011,"id":1968,"width":26,"height":64},{"x":0,"y":0,"fileNum":4021,"id":1973,"width":60,"height":170},{"x":0,"y":0,"fileNum":4022,"id":1974,"width":60,"height":170},{"x":0,"y":0,"fileNum":4023,"id":1975,"width":60,"height":170},{"x":0,"y":0,"fileNum":4024,"id":1976,"width":60,"height":170},{"x":0,"y":0,"fileNum":4025,"id":1977,"width":60,"height":170},{"x":0,"y":0,"fileNum":4026,"id":1978,"width":60,"height":170},{"x":0,"y":0,"fileNum":4027,"id":1979,"width":60,"height":170},{"x":0,"y":0,"fileNum":4028,"id":1980,"width":60,"height":170},{"x":0,"y":0,"fileNum":4017,"id":1981,"width":170,"height":60},{"x":0,"y":0,"fileNum":4018,"id":1982,"width":170,"height":60},{"x":0,"y":0,"fileNum":4019,"id":1983,"width":170,"height":60},{"x":0,"y":0,"fileNum":4020,"id":1984,"width":170,"height":60},{"x":0,"y":0,"fileNum":4013,"id":1985,"width":170,"height":60},{"x":0,"y":0,"fileNum":4014,"id":1986,"width":170,"height":60},{"x":0,"y":0,"fileNum":4015,"id":1987,"width":170,"height":60},{"x":0,"y":0,"fileNum":4016,"id":1988,"width":170,"height":60},{"x":0,"y":0,"fileNum":8115,"id":1993,"width":129,"height":128},{"x":129,"y":0,"fileNum":8115,"id":1994,"width":129,"height":128},{"x":256,"y":0,"fileNum":8115,"id":1995,"width":129,"height":128},{"x":384,"y":0,"fileNum":8115,"id":1996,"width":128,"height":128},{"x":0,"y":0,"fileNum":15204,"id":1997,"width":60,"height":60},{"x":0,"y":0,"fileNum":418,"id":1998,"width":32,"height":32},{"x":0,"y":0,"fileNum":22053,"id":1999,"width":32,"height":32},{"x":0,"y":0,"fileNum":24007,"id":2000,"width":25,"height":45},{"x":25,"y":0,"fileNum":24007,"id":2001,"width":25,"height":45},{"x":50,"y":0,"fileNum":24007,"id":2002,"width":25,"height":45},{"x":75,"y":0,"fileNum":24007,"id":2003,"width":25,"height":45},{"x":100,"y":0,"fileNum":24007,"id":2004,"width":25,"height":45},{"x":125,"y":0,"fileNum":24007,"id":2005,"width":25,"height":45},{"x":0,"y":45,"fileNum":24007,"id":2006,"width":25,"height":45},{"x":25,"y":45,"fileNum":24007,"id":2007,"width":25,"height":45},{"x":50,"y":45,"fileNum":24007,"id":2008,"width":25,"height":45},{"x":75,"y":45,"fileNum":24007,"id":2009,"width":25,"height":45},{"x":100,"y":45,"fileNum":24007,"id":2010,"width":25,"height":45},{"x":125,"y":45,"fileNum":24007,"id":2011,"width":25,"height":45},{"x":0,"y":90,"fileNum":24007,"id":2012,"width":25,"height":45},{"x":25,"y":90,"fileNum":24007,"id":2013,"width":25,"height":45},{"x":50,"y":90,"fileNum":24007,"id":2014,"width":25,"height":45},{"x":75,"y":90,"fileNum":24007,"id":2015,"width":25,"height":45},{"x":100,"y":90,"fileNum":24007,"id":2016,"width":25,"height":45},{"x":0,"y":135,"fileNum":24007,"id":2017,"width":25,"height":45},{"x":25,"y":135,"fileNum":24007,"id":2018,"width":25,"height":45},{"x":50,"y":135,"fileNum":24007,"id":2019,"width":25,"height":45},{"x":75,"y":135,"fileNum":24007,"id":2020,"width":25,"height":45},{"x":100,"y":135,"fileNum":24007,"id":2021,"width":25,"height":45},{"x":0,"y":0,"fileNum":190,"id":2022,"width":25,"height":45},{"x":25,"y":0,"fileNum":190,"id":2023,"width":25,"height":45},{"x":50,"y":0,"fileNum":190,"id":2024,"width":25,"height":45},{"x":75,"y":0,"fileNum":190,"id":2025,"width":25,"height":45},{"x":100,"y":0,"fileNum":190,"id":2026,"width":25,"height":45},{"x":125,"y":0,"fileNum":190,"id":2027,"width":25,"height":45},{"x":0,"y":45,"fileNum":190,"id":2028,"width":25,"height":45},{"x":25,"y":45,"fileNum":190,"id":2029,"width":25,"height":45},{"x":50,"y":45,"fileNum":190,"id":2030,"width":25,"height":45},{"x":75,"y":45,"fileNum":190,"id":2031,"width":25,"height":45},{"x":100,"y":45,"fileNum":190,"id":2032,"width":25,"height":45},{"x":125,"y":45,"fileNum":190,"id":2033,"width":25,"height":45},{"x":0,"y":90,"fileNum":190,"id":2034,"width":25,"height":45},{"x":25,"y":90,"fileNum":190,"id":2035,"width":25,"height":45},{"x":50,"y":90,"fileNum":190,"id":2036,"width":25,"height":45},{"x":75,"y":90,"fileNum":190,"id":2037,"width":25,"height":45},{"x":100,"y":90,"fileNum":190,"id":2038,"width":25,"height":45},{"x":0,"y":135,"fileNum":190,"id":2039,"width":25,"height":45},{"x":25,"y":135,"fileNum":190,"id":2040,"width":25,"height":45},{"x":50,"y":135,"fileNum":190,"id":2041,"width":25,"height":45},{"x":75,"y":135,"fileNum":190,"id":2042,"width":25,"height":45},{"x":100,"y":135,"fileNum":190,"id":2043,"width":25,"height":45},{"x":0,"y":0,"fileNum":191,"id":2044,"width":25,"height":45},{"x":25,"y":0,"fileNum":191,"id":2045,"width":25,"height":45},{"x":50,"y":0,"fileNum":191,"id":2046,"width":25,"height":45},{"x":75,"y":0,"fileNum":191,"id":2047,"width":25,"height":45},{"x":100,"y":0,"fileNum":191,"id":2048,"width":25,"height":45},{"x":125,"y":0,"fileNum":191,"id":2049,"width":25,"height":45},{"x":0,"y":45,"fileNum":191,"id":2050,"width":25,"height":45},{"x":25,"y":45,"fileNum":191,"id":2051,"width":25,"height":45},{"x":50,"y":45,"fileNum":191,"id":2052,"width":25,"height":45},{"x":75,"y":45,"fileNum":191,"id":2053,"width":25,"height":45},{"x":100,"y":45,"fileNum":191,"id":2054,"width":25,"height":45},{"x":125,"y":45,"fileNum":191,"id":2055,"width":25,"height":45},{"x":0,"y":90,"fileNum":191,"id":2056,"width":25,"height":45},{"x":25,"y":90,"fileNum":191,"id":2057,"width":25,"height":45},{"x":50,"y":90,"fileNum":191,"id":2058,"width":25,"height":45},{"x":75,"y":90,"fileNum":191,"id":2059,"width":25,"height":45},{"x":100,"y":90,"fileNum":191,"id":2060,"width":25,"height":45},{"x":0,"y":135,"fileNum":191,"id":2061,"width":25,"height":45},{"x":25,"y":135,"fileNum":191,"id":2062,"width":25,"height":45},{"x":50,"y":135,"fileNum":191,"id":2063,"width":25,"height":45},{"x":75,"y":135,"fileNum":191,"id":2064,"width":25,"height":45},{"x":100,"y":135,"fileNum":191,"id":2065,"width":25,"height":45},{"x":0,"y":0,"fileNum":192,"id":2066,"width":25,"height":45},{"x":25,"y":0,"fileNum":192,"id":2067,"width":25,"height":45},{"x":50,"y":0,"fileNum":192,"id":2068,"width":25,"height":45},{"x":75,"y":0,"fileNum":192,"id":2069,"width":25,"height":45},{"x":100,"y":0,"fileNum":192,"id":2070,"width":25,"height":45},{"x":125,"y":0,"fileNum":192,"id":2071,"width":25,"height":45},{"x":0,"y":45,"fileNum":192,"id":2072,"width":25,"height":45},{"x":25,"y":45,"fileNum":192,"id":2073,"width":25,"height":45},{"x":50,"y":45,"fileNum":192,"id":2074,"width":25,"height":45},{"x":75,"y":45,"fileNum":192,"id":2075,"width":25,"height":45},{"x":100,"y":45,"fileNum":192,"id":2076,"width":25,"height":45},{"x":125,"y":45,"fileNum":192,"id":2077,"width":25,"height":45},{"x":0,"y":90,"fileNum":192,"id":2078,"width":25,"height":45},{"x":25,"y":90,"fileNum":192,"id":2079,"width":25,"height":45},{"x":50,"y":90,"fileNum":192,"id":2080,"width":25,"height":45},{"x":75,"y":90,"fileNum":192,"id":2081,"width":25,"height":45},{"x":100,"y":90,"fileNum":192,"id":2082,"width":25,"height":45},{"x":0,"y":135,"fileNum":192,"id":2083,"width":25,"height":45},{"x":25,"y":135,"fileNum":192,"id":2084,"width":25,"height":45},{"x":50,"y":135,"fileNum":192,"id":2085,"width":25,"height":45},{"x":75,"y":135,"fileNum":192,"id":2086,"width":25,"height":45},{"x":100,"y":135,"fileNum":192,"id":2087,"width":25,"height":45},{"x":0,"y":0,"fileNum":193,"id":2088,"width":25,"height":45},{"x":25,"y":0,"fileNum":193,"id":2089,"width":25,"height":45},{"x":50,"y":0,"fileNum":193,"id":2090,"width":25,"height":45},{"x":75,"y":0,"fileNum":193,"id":2091,"width":25,"height":45},{"x":100,"y":0,"fileNum":193,"id":2092,"width":25,"height":45},{"x":125,"y":0,"fileNum":193,"id":2093,"width":25,"height":45},{"x":0,"y":45,"fileNum":193,"id":2094,"width":25,"height":45},{"x":25,"y":45,"fileNum":193,"id":2095,"width":25,"height":45},{"x":50,"y":45,"fileNum":193,"id":2096,"width":25,"height":45},{"x":75,"y":45,"fileNum":193,"id":2097,"width":25,"height":45},{"x":100,"y":45,"fileNum":193,"id":2098,"width":25,"height":45},{"x":125,"y":45,"fileNum":193,"id":2099,"width":25,"height":45},{"x":0,"y":90,"fileNum":193,"id":2100,"width":25,"height":45},{"x":25,"y":90,"fileNum":193,"id":2101,"width":25,"height":45},{"x":50,"y":90,"fileNum":193,"id":2102,"width":25,"height":45},{"x":75,"y":90,"fileNum":193,"id":2103,"width":25,"height":45},{"x":100,"y":90,"fileNum":193,"id":2104,"width":25,"height":45},{"x":0,"y":135,"fileNum":193,"id":2105,"width":25,"height":45},{"x":25,"y":135,"fileNum":193,"id":2106,"width":25,"height":45},{"x":50,"y":135,"fileNum":193,"id":2107,"width":25,"height":45},{"x":75,"y":135,"fileNum":193,"id":2108,"width":25,"height":45},{"x":100,"y":135,"fileNum":193,"id":2109,"width":25,"height":45},{"x":0,"y":0,"fileNum":17006,"id":2110,"width":97,"height":67},{"x":97,"y":0,"fileNum":17006,"id":2111,"width":97,"height":67},{"x":194,"y":0,"fileNum":17006,"id":2112,"width":97,"height":67},{"x":291,"y":0,"fileNum":17006,"id":2113,"width":97,"height":67},{"x":0,"y":67,"fileNum":17006,"id":2114,"width":97,"height":67},{"x":97,"y":67,"fileNum":17006,"id":2115,"width":97,"height":67},{"x":194,"y":67,"fileNum":17006,"id":2116,"width":97,"height":67},{"x":291,"y":67,"fileNum":17006,"id":2117,"width":97,"height":67},{"x":0,"y":134,"fileNum":17006,"id":2118,"width":65,"height":97},{"x":65,"y":134,"fileNum":17006,"id":2119,"width":65,"height":97},{"x":130,"y":134,"fileNum":17006,"id":2120,"width":65,"height":97},{"x":195,"y":134,"fileNum":17006,"id":2121,"width":65,"height":97},{"x":0,"y":231,"fileNum":17006,"id":2122,"width":65,"height":99},{"x":65,"y":231,"fileNum":17006,"id":2123,"width":65,"height":99},{"x":130,"y":231,"fileNum":17006,"id":2124,"width":65,"height":99},{"x":195,"y":231,"fileNum":17006,"id":2125,"width":65,"height":99},{"x":0,"y":0,"fileNum":15061,"id":2130,"width":33,"height":53},{"x":42,"y":0,"fileNum":15061,"id":2131,"width":33,"height":53},{"x":0,"y":53,"fileNum":15061,"id":2132,"width":33,"height":53},{"x":42,"y":53,"fileNum":15061,"id":2133,"width":33,"height":53},{"x":0,"y":0,"fileNum":13003,"id":2134,"width":32,"height":32},{"x":0,"y":0,"fileNum":13004,"id":2135,"width":32,"height":32},{"x":0,"y":0,"fileNum":13005,"id":2136,"width":32,"height":32},{"x":0,"y":0,"fileNum":13006,"id":2137,"width":32,"height":32},{"x":0,"y":0,"fileNum":15068,"id":2138,"width":70,"height":60},{"x":0,"y":0,"fileNum":15069,"id":2139,"width":70,"height":50},{"x":0,"y":0,"fileNum":4133,"id":2140,"width":24,"height":31},{"x":24,"y":0,"fileNum":4133,"id":2141,"width":24,"height":31},{"x":48,"y":0,"fileNum":4133,"id":2142,"width":24,"height":31},{"x":72,"y":0,"fileNum":4133,"id":2143,"width":24,"height":31},{"x":96,"y":0,"fileNum":4133,"id":2144,"width":24,"height":31},{"x":120,"y":0,"fileNum":4133,"id":2145,"width":24,"height":31},{"x":144,"y":0,"fileNum":4133,"id":2146,"width":24,"height":31},{"x":168,"y":0,"fileNum":4133,"id":2147,"width":24,"height":31},{"x":0,"y":31,"fileNum":4133,"id":2148,"width":24,"height":31},{"x":24,"y":31,"fileNum":4133,"id":2149,"width":24,"height":31},{"x":48,"y":31,"fileNum":4133,"id":2150,"width":24,"height":31},{"x":72,"y":31,"fileNum":4133,"id":2151,"width":24,"height":31},{"x":96,"y":31,"fileNum":4133,"id":2152,"width":24,"height":31},{"x":120,"y":31,"fileNum":4133,"id":2153,"width":24,"height":31},{"x":144,"y":31,"fileNum":4133,"id":2154,"width":24,"height":31},{"x":168,"y":31,"fileNum":4133,"id":2155,"width":24,"height":31},{"x":0,"y":62,"fileNum":4133,"id":2156,"width":24,"height":31},{"x":24,"y":62,"fileNum":4133,"id":2157,"width":24,"height":31},{"x":48,"y":62,"fileNum":4133,"id":2158,"width":24,"height":31},{"x":72,"y":62,"fileNum":4133,"id":2159,"width":24,"height":31},{"x":96,"y":62,"fileNum":4133,"id":2160,"width":24,"height":31},{"x":120,"y":62,"fileNum":4133,"id":2161,"width":24,"height":31},{"x":144,"y":62,"fileNum":4133,"id":2162,"width":24,"height":31},{"x":168,"y":62,"fileNum":4133,"id":2163,"width":24,"height":31},{"x":0,"y":93,"fileNum":4133,"id":2164,"width":24,"height":31},{"x":24,"y":93,"fileNum":4133,"id":2165,"width":24,"height":31},{"x":48,"y":93,"fileNum":4133,"id":2166,"width":24,"height":31},{"x":72,"y":93,"fileNum":4133,"id":2167,"width":24,"height":31},{"x":96,"y":93,"fileNum":4133,"id":2168,"width":24,"height":31},{"x":120,"y":93,"fileNum":4133,"id":2169,"width":24,"height":31},{"x":144,"y":93,"fileNum":4133,"id":2170,"width":24,"height":31},{"x":168,"y":93,"fileNum":4133,"id":2171,"width":24,"height":31},{"x":0,"y":0,"fileNum":15064,"id":2172,"width":24,"height":100},{"x":0,"y":0,"fileNum":15065,"id":2173,"width":17,"height":72},{"x":0,"y":0,"fileNum":15066,"id":2174,"width":125,"height":91},{"x":0,"y":0,"fileNum":15067,"id":2175,"width":105,"height":139},{"x":0,"y":0,"fileNum":9021,"id":2176,"width":49,"height":86},{"x":48,"y":0,"fileNum":9021,"id":2177,"width":49,"height":86},{"x":0,"y":0,"fileNum":4134,"id":2178,"width":51,"height":35},{"x":51,"y":0,"fileNum":4134,"id":2179,"width":51,"height":35},{"x":102,"y":0,"fileNum":4134,"id":2180,"width":51,"height":35},{"x":153,"y":0,"fileNum":4134,"id":2181,"width":51,"height":35},{"x":204,"y":0,"fileNum":4134,"id":2182,"width":51,"height":35},{"x":255,"y":0,"fileNum":4134,"id":2183,"width":51,"height":35},{"x":306,"y":0,"fileNum":4134,"id":2184,"width":51,"height":35},{"x":357,"y":0,"fileNum":4134,"id":2185,"width":51,"height":35},{"x":0,"y":35,"fileNum":4134,"id":2186,"width":51,"height":35},{"x":51,"y":35,"fileNum":4134,"id":2187,"width":51,"height":35},{"x":102,"y":35,"fileNum":4134,"id":2188,"width":51,"height":35},{"x":153,"y":35,"fileNum":4134,"id":2189,"width":51,"height":35},{"x":204,"y":35,"fileNum":4134,"id":2190,"width":51,"height":35},{"x":255,"y":35,"fileNum":4134,"id":2191,"width":51,"height":35},{"x":306,"y":35,"fileNum":4134,"id":2192,"width":51,"height":35},{"x":357,"y":35,"fileNum":4134,"id":2193,"width":51,"height":35},{"x":0,"y":70,"fileNum":4134,"id":2194,"width":51,"height":35},{"x":51,"y":70,"fileNum":4134,"id":2195,"width":51,"height":35},{"x":102,"y":70,"fileNum":4134,"id":2196,"width":51,"height":35},{"x":153,"y":70,"fileNum":4134,"id":2197,"width":51,"height":35},{"x":204,"y":70,"fileNum":4134,"id":2198,"width":51,"height":35},{"x":255,"y":70,"fileNum":4134,"id":2199,"width":51,"height":35},{"x":306,"y":70,"fileNum":4134,"id":2200,"width":51,"height":35},{"x":357,"y":70,"fileNum":4134,"id":2201,"width":51,"height":35},{"x":0,"y":105,"fileNum":4134,"id":2202,"width":51,"height":35},{"x":51,"y":105,"fileNum":4134,"id":2203,"width":51,"height":35},{"x":102,"y":105,"fileNum":4134,"id":2204,"width":51,"height":35},{"x":153,"y":105,"fileNum":4134,"id":2205,"width":51,"height":35},{"x":204,"y":105,"fileNum":4134,"id":2206,"width":51,"height":35},{"x":255,"y":105,"fileNum":4134,"id":2207,"width":51,"height":35},{"x":306,"y":105,"fileNum":4134,"id":2208,"width":51,"height":35},{"x":357,"y":105,"fileNum":4134,"id":2209,"width":51,"height":35},{"x":0,"y":0,"fileNum":4135,"id":2210,"width":80,"height":54},{"x":80,"y":0,"fileNum":4135,"id":2211,"width":80,"height":54},{"x":160,"y":0,"fileNum":4135,"id":2212,"width":80,"height":54},{"x":240,"y":0,"fileNum":4135,"id":2213,"width":80,"height":54},{"x":320,"y":0,"fileNum":4135,"id":2214,"width":80,"height":54},{"x":400,"y":0,"fileNum":4135,"id":2215,"width":80,"height":54},{"x":480,"y":0,"fileNum":4135,"id":2216,"width":80,"height":54},{"x":560,"y":0,"fileNum":4135,"id":2217,"width":80,"height":54},{"x":0,"y":54,"fileNum":4135,"id":2218,"width":80,"height":54},{"x":80,"y":54,"fileNum":4135,"id":2219,"width":80,"height":54},{"x":160,"y":54,"fileNum":4135,"id":2220,"width":80,"height":54},{"x":240,"y":54,"fileNum":4135,"id":2221,"width":80,"height":54},{"x":320,"y":54,"fileNum":4135,"id":2222,"width":80,"height":54},{"x":400,"y":54,"fileNum":4135,"id":2223,"width":80,"height":54},{"x":480,"y":54,"fileNum":4135,"id":2224,"width":80,"height":54},{"x":560,"y":54,"fileNum":4135,"id":2225,"width":80,"height":54},{"x":0,"y":108,"fileNum":4135,"id":2226,"width":80,"height":54},{"x":80,"y":108,"fileNum":4135,"id":2227,"width":80,"height":54},{"x":160,"y":108,"fileNum":4135,"id":2228,"width":80,"height":54},{"x":240,"y":108,"fileNum":4135,"id":2229,"width":80,"height":54},{"x":320,"y":108,"fileNum":4135,"id":2230,"width":80,"height":54},{"x":400,"y":108,"fileNum":4135,"id":2231,"width":80,"height":54},{"x":480,"y":108,"fileNum":4135,"id":2232,"width":80,"height":54},{"x":560,"y":108,"fileNum":4135,"id":2233,"width":80,"height":54},{"x":0,"y":162,"fileNum":4135,"id":2234,"width":80,"height":54},{"x":80,"y":162,"fileNum":4135,"id":2235,"width":80,"height":54},{"x":160,"y":162,"fileNum":4135,"id":2236,"width":80,"height":54},{"x":240,"y":162,"fileNum":4135,"id":2237,"width":80,"height":54},{"x":320,"y":162,"fileNum":4135,"id":2238,"width":80,"height":54},{"x":400,"y":162,"fileNum":4135,"id":2239,"width":80,"height":54},{"x":480,"y":162,"fileNum":4135,"id":2240,"width":80,"height":54},{"x":560,"y":162,"fileNum":4135,"id":2241,"width":80,"height":54},{"x":0,"y":0,"fileNum":4076,"id":2242,"width":29,"height":32},{"x":29,"y":0,"fileNum":4076,"id":2243,"width":29,"height":32},{"x":58,"y":0,"fileNum":4076,"id":2244,"width":29,"height":32},{"x":0,"y":32,"fileNum":4076,"id":2245,"width":29,"height":32},{"x":29,"y":32,"fileNum":4076,"id":2246,"width":29,"height":32},{"x":58,"y":32,"fileNum":4076,"id":2247,"width":29,"height":32},{"x":0,"y":64,"fileNum":4076,"id":2248,"width":29,"height":32},{"x":29,"y":64,"fileNum":4076,"id":2249,"width":29,"height":32},{"x":58,"y":64,"fileNum":4076,"id":2250,"width":29,"height":32},{"x":0,"y":96,"fileNum":4076,"id":2251,"width":29,"height":32},{"x":29,"y":96,"fileNum":4076,"id":2252,"width":29,"height":32},{"x":58,"y":96,"fileNum":4076,"id":2253,"width":29,"height":32},{"x":0,"y":0,"fileNum":4077,"id":2254,"width":32,"height":25},{"x":31,"y":0,"fileNum":4077,"id":2255,"width":32,"height":25},{"x":0,"y":24,"fileNum":4077,"id":2256,"width":32,"height":25},{"x":31,"y":24,"fileNum":4077,"id":2257,"width":32,"height":25},{"x":0,"y":48,"fileNum":4077,"id":2258,"width":32,"height":25},{"x":31,"y":48,"fileNum":4077,"id":2259,"width":32,"height":25},{"x":0,"y":72,"fileNum":4077,"id":2260,"width":32,"height":25},{"x":31,"y":72,"fileNum":4077,"id":2261,"width":32,"height":25},{"x":0,"y":0,"fileNum":4078,"id":2262,"width":75,"height":50},{"x":74,"y":0,"fileNum":4078,"id":2263,"width":75,"height":50},{"x":148,"y":0,"fileNum":4078,"id":2264,"width":75,"height":50},{"x":222,"y":0,"fileNum":4078,"id":2265,"width":75,"height":50},{"x":0,"y":49,"fileNum":4078,"id":2266,"width":75,"height":50},{"x":74,"y":49,"fileNum":4078,"id":2267,"width":75,"height":50},{"x":148,"y":49,"fileNum":4078,"id":2268,"width":75,"height":50},{"x":222,"y":49,"fileNum":4078,"id":2269,"width":75,"height":50},{"x":0,"y":98,"fileNum":4078,"id":2270,"width":75,"height":50},{"x":74,"y":98,"fileNum":4078,"id":2271,"width":75,"height":50},{"x":148,"y":98,"fileNum":4078,"id":2272,"width":75,"height":50},{"x":222,"y":98,"fileNum":4078,"id":2273,"width":75,"height":50},{"x":0,"y":147,"fileNum":4078,"id":2274,"width":75,"height":50},{"x":74,"y":147,"fileNum":4078,"id":2275,"width":75,"height":50},{"x":148,"y":147,"fileNum":4078,"id":2276,"width":75,"height":50},{"x":222,"y":147,"fileNum":4078,"id":2277,"width":75,"height":50},{"x":0,"y":0,"fileNum":3084,"id":2278,"width":32,"height":32},{"x":32,"y":0,"fileNum":3084,"id":2279,"width":32,"height":32},{"x":64,"y":0,"fileNum":3084,"id":2280,"width":32,"height":32},{"x":96,"y":0,"fileNum":3084,"id":2281,"width":32,"height":32},{"x":0,"y":32,"fileNum":3084,"id":2282,"width":32,"height":32},{"x":32,"y":32,"fileNum":3084,"id":2283,"width":32,"height":32},{"x":64,"y":32,"fileNum":3084,"id":2284,"width":32,"height":32},{"x":96,"y":32,"fileNum":3084,"id":2285,"width":32,"height":32},{"x":0,"y":64,"fileNum":3084,"id":2286,"width":32,"height":32},{"x":32,"y":64,"fileNum":3084,"id":2287,"width":32,"height":32},{"x":64,"y":64,"fileNum":3084,"id":2288,"width":32,"height":32},{"x":96,"y":64,"fileNum":3084,"id":2289,"width":32,"height":32},{"x":0,"y":96,"fileNum":3084,"id":2290,"width":32,"height":32},{"x":32,"y":96,"fileNum":3084,"id":2291,"width":32,"height":32},{"x":64,"y":96,"fileNum":3084,"id":2292,"width":32,"height":32},{"x":96,"y":96,"fileNum":3084,"id":2293,"width":32,"height":32},{"x":0,"y":0,"fileNum":12063,"id":2294,"width":32,"height":32},{"x":32,"y":0,"fileNum":12063,"id":2295,"width":32,"height":32},{"x":64,"y":0,"fileNum":12063,"id":2296,"width":32,"height":32},{"x":96,"y":0,"fileNum":12063,"id":2297,"width":32,"height":32},{"x":0,"y":32,"fileNum":12063,"id":2298,"width":32,"height":32},{"x":32,"y":32,"fileNum":12063,"id":2299,"width":32,"height":32},{"x":64,"y":32,"fileNum":12063,"id":2300,"width":32,"height":32},{"x":96,"y":32,"fileNum":12063,"id":2301,"width":32,"height":32},{"x":0,"y":64,"fileNum":12063,"id":2302,"width":32,"height":32},{"x":32,"y":64,"fileNum":12063,"id":2303,"width":32,"height":32},{"x":64,"y":64,"fileNum":12063,"id":2304,"width":32,"height":32},{"x":96,"y":64,"fileNum":12063,"id":2305,"width":32,"height":32},{"x":0,"y":96,"fileNum":12063,"id":2306,"width":32,"height":32},{"x":32,"y":96,"fileNum":12063,"id":2307,"width":32,"height":32},{"x":64,"y":96,"fileNum":12063,"id":2308,"width":32,"height":32},{"x":96,"y":96,"fileNum":12063,"id":2309,"width":32,"height":32},{"x":0,"y":0,"fileNum":3100,"id":2310,"width":100,"height":54},{"x":100,"y":0,"fileNum":3100,"id":2311,"width":100,"height":54},{"x":200,"y":0,"fileNum":3100,"id":2312,"width":100,"height":54},{"x":300,"y":0,"fileNum":3100,"id":2313,"width":100,"height":54},{"x":400,"y":0,"fileNum":3100,"id":2314,"width":100,"height":54},{"x":500,"y":0,"fileNum":3100,"id":2315,"width":100,"height":54},{"x":0,"y":0,"fileNum":12043,"id":2317,"width":32,"height":32},{"x":32,"y":0,"fileNum":12043,"id":2318,"width":32,"height":32},{"x":64,"y":0,"fileNum":12043,"id":2319,"width":32,"height":32},{"x":96,"y":0,"fileNum":12043,"id":2320,"width":32,"height":32},{"x":0,"y":32,"fileNum":12043,"id":2321,"width":32,"height":32},{"x":32,"y":32,"fileNum":12043,"id":2322,"width":32,"height":32},{"x":64,"y":32,"fileNum":12043,"id":2323,"width":32,"height":32},{"x":96,"y":32,"fileNum":12043,"id":2324,"width":32,"height":32},{"x":0,"y":64,"fileNum":12043,"id":2325,"width":32,"height":32},{"x":32,"y":64,"fileNum":12043,"id":2326,"width":32,"height":32},{"x":64,"y":64,"fileNum":12043,"id":2327,"width":32,"height":32},{"x":96,"y":64,"fileNum":12043,"id":2328,"width":32,"height":32},{"x":0,"y":96,"fileNum":12043,"id":2329,"width":32,"height":32},{"x":32,"y":96,"fileNum":12043,"id":2330,"width":32,"height":32},{"x":64,"y":96,"fileNum":12043,"id":2331,"width":32,"height":32},{"x":96,"y":96,"fileNum":12043,"id":2332,"width":32,"height":32},{"x":0,"y":0,"fileNum":9009,"id":2333,"width":117,"height":128},{"x":117,"y":0,"fileNum":9009,"id":2334,"width":117,"height":128},{"x":0,"y":117,"fileNum":9009,"id":2335,"width":117,"height":128},{"x":117,"y":128,"fileNum":9009,"id":2336,"width":117,"height":128},{"x":0,"y":0,"fileNum":2109,"id":2337,"width":17,"height":50},{"x":17,"y":0,"fileNum":2109,"id":2338,"width":17,"height":50},{"x":34,"y":0,"fileNum":2109,"id":2339,"width":17,"height":50},{"x":51,"y":0,"fileNum":2109,"id":2340,"width":17,"height":50},{"x":0,"y":0,"fileNum":16072,"id":2341,"width":32,"height":32},{"x":0,"y":0,"fileNum":4081,"id":2342,"width":31,"height":25},{"x":31,"y":0,"fileNum":4081,"id":2343,"width":31,"height":25},{"x":62,"y":0,"fileNum":4081,"id":2344,"width":31,"height":25},{"x":0,"y":25,"fileNum":4081,"id":2345,"width":31,"height":25},{"x":31,"y":25,"fileNum":4081,"id":2346,"width":31,"height":25},{"x":62,"y":25,"fileNum":4081,"id":2347,"width":31,"height":25},{"x":0,"y":50,"fileNum":4081,"id":2348,"width":31,"height":25},{"x":31,"y":50,"fileNum":4081,"id":2349,"width":31,"height":25},{"x":62,"y":50,"fileNum":4081,"id":2350,"width":31,"height":25},{"x":0,"y":75,"fileNum":4081,"id":2351,"width":31,"height":25},{"x":31,"y":75,"fileNum":4081,"id":2352,"width":31,"height":25},{"x":62,"y":75,"fileNum":4081,"id":2353,"width":31,"height":25},{"x":0,"y":0,"fileNum":4082,"id":2354,"width":25,"height":32},{"x":24,"y":0,"fileNum":4082,"id":2355,"width":25,"height":32},{"x":48,"y":0,"fileNum":4082,"id":2356,"width":25,"height":32},{"x":71,"y":0,"fileNum":4082,"id":2357,"width":25,"height":32},{"x":94,"y":0,"fileNum":4082,"id":2358,"width":25,"height":32},{"x":117,"y":0,"fileNum":4082,"id":2359,"width":25,"height":32},{"x":141,"y":0,"fileNum":4082,"id":2360,"width":25,"height":32},{"x":164,"y":0,"fileNum":4082,"id":2361,"width":25,"height":32},{"x":0,"y":31,"fileNum":4082,"id":2362,"width":25,"height":32},{"x":24,"y":31,"fileNum":4082,"id":2363,"width":25,"height":32},{"x":48,"y":31,"fileNum":4082,"id":2364,"width":25,"height":32},{"x":71,"y":31,"fileNum":4082,"id":2365,"width":25,"height":32},{"x":94,"y":31,"fileNum":4082,"id":2366,"width":25,"height":32},{"x":117,"y":31,"fileNum":4082,"id":2367,"width":25,"height":32},{"x":141,"y":31,"fileNum":4082,"id":2368,"width":25,"height":32},{"x":164,"y":31,"fileNum":4082,"id":2369,"width":25,"height":32},{"x":0,"y":62,"fileNum":4082,"id":2370,"width":25,"height":32},{"x":24,"y":62,"fileNum":4082,"id":2371,"width":25,"height":32},{"x":48,"y":62,"fileNum":4082,"id":2372,"width":25,"height":32},{"x":71,"y":62,"fileNum":4082,"id":2373,"width":25,"height":32},{"x":94,"y":62,"fileNum":4082,"id":2374,"width":25,"height":32},{"x":117,"y":62,"fileNum":4082,"id":2375,"width":25,"height":32},{"x":141,"y":62,"fileNum":4082,"id":2376,"width":25,"height":32},{"x":164,"y":62,"fileNum":4082,"id":2377,"width":25,"height":32},{"x":0,"y":93,"fileNum":4082,"id":2378,"width":25,"height":32},{"x":24,"y":93,"fileNum":4082,"id":2379,"width":25,"height":32},{"x":48,"y":93,"fileNum":4082,"id":2380,"width":25,"height":32},{"x":71,"y":93,"fileNum":4082,"id":2381,"width":25,"height":32},{"x":94,"y":93,"fileNum":4082,"id":2382,"width":25,"height":32},{"x":117,"y":93,"fileNum":4082,"id":2383,"width":25,"height":32},{"x":141,"y":93,"fileNum":4082,"id":2384,"width":25,"height":32},{"x":164,"y":93,"fileNum":4082,"id":2385,"width":25,"height":32},{"x":0,"y":0,"fileNum":4083,"id":2386,"width":28,"height":51},{"x":28,"y":0,"fileNum":4083,"id":2387,"width":28,"height":51},{"x":56,"y":0,"fileNum":4083,"id":2388,"width":28,"height":51},{"x":84,"y":0,"fileNum":4083,"id":2389,"width":28,"height":51},{"x":112,"y":0,"fileNum":4083,"id":2390,"width":28,"height":51},{"x":140,"y":0,"fileNum":4083,"id":2391,"width":28,"height":51},{"x":168,"y":0,"fileNum":4083,"id":2392,"width":28,"height":51},{"x":196,"y":0,"fileNum":4083,"id":2393,"width":28,"height":51},{"x":0,"y":51,"fileNum":4083,"id":2394,"width":28,"height":51},{"x":28,"y":51,"fileNum":4083,"id":2395,"width":28,"height":51},{"x":56,"y":51,"fileNum":4083,"id":2396,"width":28,"height":51},{"x":84,"y":51,"fileNum":4083,"id":2397,"width":28,"height":51},{"x":112,"y":51,"fileNum":4083,"id":2398,"width":28,"height":51},{"x":140,"y":51,"fileNum":4083,"id":2399,"width":28,"height":51},{"x":168,"y":51,"fileNum":4083,"id":2400,"width":28,"height":51},{"x":196,"y":51,"fileNum":4083,"id":2401,"width":28,"height":51},{"x":0,"y":102,"fileNum":4083,"id":2402,"width":28,"height":51},{"x":28,"y":102,"fileNum":4083,"id":2403,"width":28,"height":51},{"x":56,"y":102,"fileNum":4083,"id":2404,"width":28,"height":51},{"x":84,"y":102,"fileNum":4083,"id":2405,"width":28,"height":51},{"x":112,"y":102,"fileNum":4083,"id":2406,"width":28,"height":51},{"x":140,"y":102,"fileNum":4083,"id":2407,"width":28,"height":51},{"x":168,"y":102,"fileNum":4083,"id":2408,"width":28,"height":51},{"x":196,"y":102,"fileNum":4083,"id":2409,"width":28,"height":51},{"x":0,"y":153,"fileNum":4083,"id":2410,"width":28,"height":51},{"x":28,"y":153,"fileNum":4083,"id":2411,"width":28,"height":51},{"x":56,"y":153,"fileNum":4083,"id":2412,"width":28,"height":51},{"x":84,"y":153,"fileNum":4083,"id":2413,"width":28,"height":51},{"x":112,"y":153,"fileNum":4083,"id":2414,"width":28,"height":51},{"x":140,"y":153,"fileNum":4083,"id":2415,"width":28,"height":51},{"x":168,"y":153,"fileNum":4083,"id":2416,"width":28,"height":51},{"x":196,"y":153,"fileNum":4083,"id":2417,"width":28,"height":51},{"x":0,"y":0,"fileNum":4084,"id":2418,"width":25,"height":48},{"x":24,"y":0,"fileNum":4084,"id":2419,"width":25,"height":48},{"x":47,"y":0,"fileNum":4084,"id":2420,"width":25,"height":48},{"x":70,"y":0,"fileNum":4084,"id":2421,"width":25,"height":48},{"x":94,"y":0,"fileNum":4084,"id":2422,"width":25,"height":48},{"x":118,"y":0,"fileNum":4084,"id":2423,"width":25,"height":48},{"x":141,"y":0,"fileNum":4084,"id":2424,"width":25,"height":48},{"x":165,"y":0,"fileNum":4084,"id":2425,"width":25,"height":48},{"x":0,"y":47,"fileNum":4084,"id":2426,"width":25,"height":48},{"x":24,"y":47,"fileNum":4084,"id":2427,"width":25,"height":48},{"x":47,"y":47,"fileNum":4084,"id":2428,"width":25,"height":48},{"x":70,"y":47,"fileNum":4084,"id":2429,"width":25,"height":48},{"x":94,"y":47,"fileNum":4084,"id":2430,"width":25,"height":48},{"x":118,"y":47,"fileNum":4084,"id":2431,"width":25,"height":48},{"x":141,"y":47,"fileNum":4084,"id":2432,"width":25,"height":48},{"x":165,"y":47,"fileNum":4084,"id":2433,"width":25,"height":48},{"x":0,"y":94,"fileNum":4084,"id":2434,"width":25,"height":48},{"x":24,"y":94,"fileNum":4084,"id":2435,"width":25,"height":48},{"x":47,"y":94,"fileNum":4084,"id":2436,"width":25,"height":48},{"x":70,"y":94,"fileNum":4084,"id":2437,"width":25,"height":48},{"x":94,"y":94,"fileNum":4084,"id":2438,"width":25,"height":48},{"x":118,"y":94,"fileNum":4084,"id":2439,"width":25,"height":48},{"x":141,"y":94,"fileNum":4084,"id":2440,"width":25,"height":48},{"x":165,"y":94,"fileNum":4084,"id":2441,"width":25,"height":48},{"x":0,"y":141,"fileNum":4084,"id":2442,"width":25,"height":48},{"x":24,"y":141,"fileNum":4084,"id":2443,"width":25,"height":48},{"x":47,"y":141,"fileNum":4084,"id":2444,"width":25,"height":48},{"x":70,"y":141,"fileNum":4084,"id":2445,"width":25,"height":48},{"x":94,"y":141,"fileNum":4084,"id":2446,"width":25,"height":48},{"x":118,"y":141,"fileNum":4084,"id":2447,"width":25,"height":48},{"x":141,"y":141,"fileNum":4084,"id":2448,"width":25,"height":48},{"x":165,"y":141,"fileNum":4084,"id":2449,"width":25,"height":48},{"x":0,"y":0,"fileNum":4085,"id":2450,"width":35,"height":48},{"x":34,"y":0,"fileNum":4085,"id":2451,"width":35,"height":48},{"x":68,"y":0,"fileNum":4085,"id":2452,"width":35,"height":48},{"x":0,"y":0,"fileNum":4086,"id":2453,"width":25,"height":48},{"x":24,"y":0,"fileNum":4086,"id":2454,"width":25,"height":48},{"x":48,"y":0,"fileNum":4086,"id":2455,"width":25,"height":48},{"x":0,"y":47,"fileNum":4086,"id":2456,"width":25,"height":48},{"x":24,"y":47,"fileNum":4086,"id":2457,"width":25,"height":48},{"x":48,"y":47,"fileNum":4086,"id":2458,"width":25,"height":48},{"x":0,"y":94,"fileNum":4086,"id":2459,"width":25,"height":48},{"x":24,"y":94,"fileNum":4086,"id":2460,"width":25,"height":48},{"x":48,"y":94,"fileNum":4086,"id":2461,"width":25,"height":48},{"x":0,"y":141,"fileNum":4086,"id":2462,"width":25,"height":48},{"x":24,"y":141,"fileNum":4086,"id":2463,"width":25,"height":48},{"x":48,"y":141,"fileNum":4086,"id":2464,"width":25,"height":48},{"x":0,"y":0,"fileNum":4087,"id":2465,"width":24,"height":48},{"x":23,"y":0,"fileNum":4087,"id":2466,"width":24,"height":48},{"x":47,"y":0,"fileNum":4087,"id":2467,"width":24,"height":48},{"x":0,"y":47,"fileNum":4087,"id":2468,"width":24,"height":48},{"x":23,"y":47,"fileNum":4087,"id":2469,"width":24,"height":48},{"x":47,"y":47,"fileNum":4087,"id":2470,"width":24,"height":48},{"x":0,"y":94,"fileNum":4087,"id":2471,"width":24,"height":48},{"x":23,"y":94,"fileNum":4087,"id":2472,"width":24,"height":48},{"x":47,"y":94,"fileNum":4087,"id":2473,"width":24,"height":48},{"x":0,"y":141,"fileNum":4087,"id":2474,"width":24,"height":48},{"x":23,"y":141,"fileNum":4087,"id":2475,"width":24,"height":48},{"x":47,"y":141,"fileNum":4087,"id":2476,"width":24,"height":48},{"x":0,"y":0,"fileNum":4088,"id":2477,"width":24,"height":46},{"x":24,"y":0,"fileNum":4088,"id":2478,"width":24,"height":46},{"x":48,"y":0,"fileNum":4088,"id":2479,"width":24,"height":46},{"x":72,"y":0,"fileNum":4088,"id":2480,"width":24,"height":46},{"x":96,"y":0,"fileNum":4088,"id":2481,"width":24,"height":46},{"x":120,"y":0,"fileNum":4088,"id":2482,"width":24,"height":46},{"x":144,"y":0,"fileNum":4088,"id":2483,"width":24,"height":46},{"x":168,"y":0,"fileNum":4088,"id":2484,"width":24,"height":46},{"x":0,"y":46,"fileNum":4088,"id":2485,"width":24,"height":46},{"x":24,"y":46,"fileNum":4088,"id":2486,"width":24,"height":46},{"x":48,"y":46,"fileNum":4088,"id":2487,"width":24,"height":46},{"x":72,"y":46,"fileNum":4088,"id":2488,"width":24,"height":46},{"x":96,"y":46,"fileNum":4088,"id":2489,"width":24,"height":46},{"x":120,"y":46,"fileNum":4088,"id":2490,"width":24,"height":46},{"x":144,"y":46,"fileNum":4088,"id":2491,"width":24,"height":46},{"x":168,"y":46,"fileNum":4088,"id":2492,"width":24,"height":46},{"x":0,"y":92,"fileNum":4088,"id":2493,"width":24,"height":46},{"x":24,"y":92,"fileNum":4088,"id":2494,"width":24,"height":46},{"x":48,"y":92,"fileNum":4088,"id":2495,"width":24,"height":46},{"x":72,"y":92,"fileNum":4088,"id":2496,"width":24,"height":46},{"x":96,"y":92,"fileNum":4088,"id":2497,"width":24,"height":46},{"x":120,"y":92,"fileNum":4088,"id":2498,"width":24,"height":46},{"x":144,"y":92,"fileNum":4088,"id":2499,"width":24,"height":46},{"x":168,"y":92,"fileNum":4088,"id":2500,"width":24,"height":46},{"x":0,"y":138,"fileNum":4088,"id":2501,"width":24,"height":46},{"x":24,"y":138,"fileNum":4088,"id":2502,"width":24,"height":46},{"x":48,"y":138,"fileNum":4088,"id":2503,"width":24,"height":46},{"x":72,"y":138,"fileNum":4088,"id":2504,"width":24,"height":46},{"x":96,"y":138,"fileNum":4088,"id":2505,"width":24,"height":46},{"x":120,"y":138,"fileNum":4088,"id":2506,"width":24,"height":46},{"x":144,"y":138,"fileNum":4088,"id":2507,"width":24,"height":46},{"x":168,"y":138,"fileNum":4088,"id":2508,"width":24,"height":46},{"x":0,"y":0,"fileNum":167,"id":2509,"width":25,"height":45},{"x":25,"y":0,"fileNum":167,"id":2510,"width":25,"height":45},{"x":50,"y":0,"fileNum":167,"id":2511,"width":25,"height":45},{"x":75,"y":0,"fileNum":167,"id":2512,"width":25,"height":45},{"x":100,"y":0,"fileNum":167,"id":2513,"width":25,"height":45},{"x":125,"y":0,"fileNum":167,"id":2514,"width":25,"height":45},{"x":0,"y":45,"fileNum":167,"id":2515,"width":25,"height":45},{"x":25,"y":45,"fileNum":167,"id":2516,"width":25,"height":45},{"x":50,"y":45,"fileNum":167,"id":2517,"width":25,"height":45},{"x":75,"y":45,"fileNum":167,"id":2518,"width":25,"height":45},{"x":100,"y":45,"fileNum":167,"id":2519,"width":25,"height":45},{"x":125,"y":45,"fileNum":167,"id":2520,"width":25,"height":45},{"x":0,"y":90,"fileNum":167,"id":2521,"width":25,"height":45},{"x":25,"y":90,"fileNum":167,"id":2522,"width":25,"height":45},{"x":50,"y":90,"fileNum":167,"id":2523,"width":25,"height":45},{"x":75,"y":90,"fileNum":167,"id":2524,"width":25,"height":45},{"x":100,"y":90,"fileNum":167,"id":2525,"width":25,"height":45},{"x":0,"y":135,"fileNum":167,"id":2526,"width":25,"height":45},{"x":25,"y":135,"fileNum":167,"id":2527,"width":25,"height":45},{"x":50,"y":135,"fileNum":167,"id":2528,"width":25,"height":45},{"x":75,"y":135,"fileNum":167,"id":2529,"width":25,"height":45},{"x":100,"y":135,"fileNum":167,"id":2530,"width":25,"height":45},{"x":0,"y":0,"fileNum":168,"id":2531,"width":25,"height":45},{"x":25,"y":0,"fileNum":168,"id":2532,"width":25,"height":45},{"x":50,"y":0,"fileNum":168,"id":2533,"width":25,"height":45},{"x":75,"y":0,"fileNum":168,"id":2534,"width":25,"height":45},{"x":100,"y":0,"fileNum":168,"id":2535,"width":25,"height":45},{"x":125,"y":0,"fileNum":168,"id":2536,"width":25,"height":45},{"x":0,"y":45,"fileNum":168,"id":2537,"width":25,"height":45},{"x":25,"y":45,"fileNum":168,"id":2538,"width":25,"height":45},{"x":50,"y":45,"fileNum":168,"id":2539,"width":25,"height":45},{"x":75,"y":45,"fileNum":168,"id":2540,"width":25,"height":45},{"x":100,"y":45,"fileNum":168,"id":2541,"width":25,"height":45},{"x":125,"y":45,"fileNum":168,"id":2542,"width":25,"height":45},{"x":0,"y":90,"fileNum":168,"id":2543,"width":25,"height":45},{"x":25,"y":90,"fileNum":168,"id":2544,"width":25,"height":45},{"x":50,"y":90,"fileNum":168,"id":2545,"width":25,"height":45},{"x":75,"y":90,"fileNum":168,"id":2546,"width":25,"height":45},{"x":100,"y":90,"fileNum":168,"id":2547,"width":25,"height":45},{"x":0,"y":135,"fileNum":168,"id":2548,"width":25,"height":45},{"x":25,"y":135,"fileNum":168,"id":2549,"width":25,"height":45},{"x":50,"y":135,"fileNum":168,"id":2550,"width":25,"height":45},{"x":75,"y":135,"fileNum":168,"id":2551,"width":25,"height":45},{"x":100,"y":135,"fileNum":168,"id":2552,"width":25,"height":45},{"x":0,"y":0,"fileNum":169,"id":2553,"width":25,"height":45},{"x":25,"y":0,"fileNum":169,"id":2554,"width":25,"height":45},{"x":50,"y":0,"fileNum":169,"id":2555,"width":25,"height":45},{"x":75,"y":0,"fileNum":169,"id":2556,"width":25,"height":45},{"x":100,"y":0,"fileNum":169,"id":2557,"width":25,"height":45},{"x":125,"y":0,"fileNum":169,"id":2558,"width":25,"height":45},{"x":0,"y":45,"fileNum":169,"id":2559,"width":25,"height":45},{"x":25,"y":45,"fileNum":169,"id":2560,"width":25,"height":45},{"x":50,"y":45,"fileNum":169,"id":2561,"width":25,"height":45},{"x":75,"y":45,"fileNum":169,"id":2562,"width":25,"height":45},{"x":100,"y":45,"fileNum":169,"id":2563,"width":25,"height":45},{"x":125,"y":45,"fileNum":169,"id":2564,"width":25,"height":45},{"x":0,"y":90,"fileNum":169,"id":2565,"width":25,"height":45},{"x":25,"y":90,"fileNum":169,"id":2566,"width":25,"height":45},{"x":50,"y":90,"fileNum":169,"id":2567,"width":25,"height":45},{"x":75,"y":90,"fileNum":169,"id":2568,"width":25,"height":45},{"x":100,"y":90,"fileNum":169,"id":2569,"width":25,"height":45},{"x":0,"y":135,"fileNum":169,"id":2570,"width":25,"height":45},{"x":25,"y":135,"fileNum":169,"id":2571,"width":25,"height":45},{"x":50,"y":135,"fileNum":169,"id":2572,"width":25,"height":45},{"x":75,"y":135,"fileNum":169,"id":2573,"width":25,"height":45},{"x":100,"y":135,"fileNum":169,"id":2574,"width":25,"height":45},{"x":0,"y":0,"fileNum":170,"id":2575,"width":25,"height":45},{"x":25,"y":0,"fileNum":170,"id":2576,"width":25,"height":45},{"x":50,"y":0,"fileNum":170,"id":2577,"width":25,"height":45},{"x":75,"y":0,"fileNum":170,"id":2578,"width":25,"height":45},{"x":100,"y":0,"fileNum":170,"id":2579,"width":25,"height":45},{"x":125,"y":0,"fileNum":170,"id":2580,"width":25,"height":45},{"x":0,"y":45,"fileNum":170,"id":2581,"width":25,"height":45},{"x":25,"y":45,"fileNum":170,"id":2582,"width":25,"height":45},{"x":50,"y":45,"fileNum":170,"id":2583,"width":25,"height":45},{"x":75,"y":45,"fileNum":170,"id":2584,"width":25,"height":45},{"x":100,"y":45,"fileNum":170,"id":2585,"width":25,"height":45},{"x":125,"y":45,"fileNum":170,"id":2586,"width":25,"height":45},{"x":0,"y":90,"fileNum":170,"id":2587,"width":25,"height":45},{"x":25,"y":90,"fileNum":170,"id":2588,"width":25,"height":45},{"x":50,"y":90,"fileNum":170,"id":2589,"width":25,"height":45},{"x":75,"y":90,"fileNum":170,"id":2590,"width":25,"height":45},{"x":100,"y":90,"fileNum":170,"id":2591,"width":25,"height":45},{"x":0,"y":135,"fileNum":170,"id":2592,"width":25,"height":45},{"x":25,"y":135,"fileNum":170,"id":2593,"width":25,"height":45},{"x":50,"y":135,"fileNum":170,"id":2594,"width":25,"height":45},{"x":75,"y":135,"fileNum":170,"id":2595,"width":25,"height":45},{"x":100,"y":135,"fileNum":170,"id":2596,"width":25,"height":45},{"x":0,"y":0,"fileNum":24000,"id":2597,"width":25,"height":45},{"x":25,"y":0,"fileNum":24000,"id":2598,"width":25,"height":45},{"x":50,"y":0,"fileNum":24000,"id":2599,"width":25,"height":45},{"x":75,"y":0,"fileNum":24000,"id":2600,"width":25,"height":45},{"x":100,"y":0,"fileNum":24000,"id":2601,"width":25,"height":45},{"x":125,"y":0,"fileNum":24000,"id":2602,"width":25,"height":45},{"x":0,"y":45,"fileNum":24000,"id":2603,"width":25,"height":45},{"x":25,"y":45,"fileNum":24000,"id":2604,"width":25,"height":45},{"x":50,"y":45,"fileNum":24000,"id":2605,"width":25,"height":45},{"x":75,"y":45,"fileNum":24000,"id":2606,"width":25,"height":45},{"x":100,"y":45,"fileNum":24000,"id":2607,"width":25,"height":45},{"x":125,"y":45,"fileNum":24000,"id":2608,"width":25,"height":45},{"x":0,"y":90,"fileNum":24000,"id":2609,"width":25,"height":45},{"x":25,"y":90,"fileNum":24000,"id":2610,"width":25,"height":45},{"x":50,"y":90,"fileNum":24000,"id":2611,"width":25,"height":45},{"x":75,"y":90,"fileNum":24000,"id":2612,"width":25,"height":45},{"x":100,"y":90,"fileNum":24000,"id":2613,"width":25,"height":45},{"x":0,"y":135,"fileNum":24000,"id":2614,"width":25,"height":45},{"x":25,"y":135,"fileNum":24000,"id":2615,"width":25,"height":45},{"x":50,"y":135,"fileNum":24000,"id":2616,"width":25,"height":45},{"x":75,"y":135,"fileNum":24000,"id":2617,"width":25,"height":45},{"x":100,"y":135,"fileNum":24000,"id":2618,"width":25,"height":45},{"x":0,"y":0,"fileNum":15055,"id":2619,"width":40,"height":55},{"x":39,"y":9,"fileNum":15055,"id":2620,"width":62,"height":45},{"x":3,"y":58,"fileNum":15055,"id":2621,"width":70,"height":50},{"x":5,"y":110,"fileNum":15055,"id":2622,"width":50,"height":35},{"x":2,"y":145,"fileNum":15055,"id":2623,"width":83,"height":60},{"x":0,"y":205,"fileNum":15055,"id":2624,"width":70,"height":50},{"x":2,"y":254,"fileNum":15055,"id":2625,"width":45,"height":51},{"x":50,"y":256,"fileNum":15055,"id":2626,"width":40,"height":55},{"x":2,"y":308,"fileNum":15055,"id":2627,"width":38,"height":60},{"x":45,"y":315,"fileNum":15055,"id":2628,"width":52,"height":57},{"x":3,"y":370,"fileNum":15055,"id":2629,"width":58,"height":44},{"x":0,"y":0,"fileNum":15070,"id":2630,"width":23,"height":43},{"x":23,"y":0,"fileNum":15070,"id":2631,"width":23,"height":43},{"x":46,"y":0,"fileNum":15070,"id":2632,"width":23,"height":43},{"x":69,"y":0,"fileNum":15070,"id":2633,"width":23,"height":43},{"x":0,"y":0,"fileNum":2110,"id":2635,"width":17,"height":50},{"x":17,"y":0,"fileNum":2110,"id":2636,"width":17,"height":50},{"x":34,"y":0,"fileNum":2110,"id":2637,"width":17,"height":50},{"x":51,"y":0,"fileNum":2110,"id":2638,"width":17,"height":50},{"x":0,"y":0,"fileNum":22072,"id":2639,"width":25,"height":102},{"x":0,"y":0,"fileNum":15229,"id":2640,"width":66,"height":71},{"x":0,"y":0,"fileNum":172,"id":2641,"width":25,"height":45},{"x":25,"y":0,"fileNum":172,"id":2642,"width":25,"height":45},{"x":50,"y":0,"fileNum":172,"id":2643,"width":25,"height":45},{"x":75,"y":0,"fileNum":172,"id":2644,"width":25,"height":45},{"x":100,"y":0,"fileNum":172,"id":2645,"width":25,"height":45},{"x":125,"y":0,"fileNum":172,"id":2646,"width":25,"height":45},{"x":0,"y":45,"fileNum":172,"id":2647,"width":25,"height":45},{"x":25,"y":45,"fileNum":172,"id":2648,"width":25,"height":45},{"x":50,"y":45,"fileNum":172,"id":2649,"width":25,"height":45},{"x":75,"y":45,"fileNum":172,"id":2650,"width":25,"height":45},{"x":100,"y":45,"fileNum":172,"id":2651,"width":25,"height":45},{"x":125,"y":45,"fileNum":172,"id":2652,"width":25,"height":45},{"x":0,"y":90,"fileNum":172,"id":2653,"width":25,"height":45},{"x":25,"y":90,"fileNum":172,"id":2654,"width":25,"height":45},{"x":50,"y":90,"fileNum":172,"id":2655,"width":25,"height":45},{"x":75,"y":90,"fileNum":172,"id":2656,"width":25,"height":45},{"x":100,"y":90,"fileNum":172,"id":2657,"width":25,"height":45},{"x":0,"y":135,"fileNum":172,"id":2658,"width":25,"height":45},{"x":25,"y":135,"fileNum":172,"id":2659,"width":25,"height":45},{"x":50,"y":135,"fileNum":172,"id":2660,"width":25,"height":45},{"x":75,"y":135,"fileNum":172,"id":2661,"width":25,"height":45},{"x":100,"y":135,"fileNum":172,"id":2662,"width":25,"height":45},{"x":0,"y":0,"fileNum":24001,"id":2663,"width":25,"height":45},{"x":25,"y":0,"fileNum":24001,"id":2664,"width":25,"height":45},{"x":50,"y":0,"fileNum":24001,"id":2665,"width":25,"height":45},{"x":75,"y":0,"fileNum":24001,"id":2666,"width":25,"height":45},{"x":100,"y":0,"fileNum":24001,"id":2667,"width":25,"height":45},{"x":125,"y":0,"fileNum":24001,"id":2668,"width":25,"height":45},{"x":0,"y":45,"fileNum":24001,"id":2669,"width":25,"height":45},{"x":25,"y":45,"fileNum":24001,"id":2670,"width":25,"height":45},{"x":50,"y":45,"fileNum":24001,"id":2671,"width":25,"height":45},{"x":75,"y":45,"fileNum":24001,"id":2672,"width":25,"height":45},{"x":100,"y":45,"fileNum":24001,"id":2673,"width":25,"height":45},{"x":125,"y":45,"fileNum":24001,"id":2674,"width":25,"height":45},{"x":0,"y":90,"fileNum":24001,"id":2675,"width":25,"height":45},{"x":25,"y":90,"fileNum":24001,"id":2676,"width":25,"height":45},{"x":50,"y":90,"fileNum":24001,"id":2677,"width":25,"height":45},{"x":75,"y":90,"fileNum":24001,"id":2678,"width":25,"height":45},{"x":100,"y":90,"fileNum":24001,"id":2679,"width":25,"height":45},{"x":0,"y":135,"fileNum":24001,"id":2680,"width":25,"height":45},{"x":25,"y":135,"fileNum":24001,"id":2681,"width":25,"height":45},{"x":50,"y":135,"fileNum":24001,"id":2682,"width":25,"height":45},{"x":75,"y":135,"fileNum":24001,"id":2683,"width":25,"height":45},{"x":100,"y":135,"fileNum":24001,"id":2684,"width":25,"height":45},{"x":0,"y":0,"fileNum":4089,"id":2685,"width":26,"height":46},{"x":25,"y":0,"fileNum":4089,"id":2686,"width":26,"height":46},{"x":50,"y":0,"fileNum":4089,"id":2687,"width":26,"height":46},{"x":74,"y":0,"fileNum":4089,"id":2688,"width":26,"height":46},{"x":98,"y":0,"fileNum":4089,"id":2689,"width":26,"height":46},{"x":123,"y":0,"fileNum":4089,"id":2690,"width":26,"height":46},{"x":0,"y":45,"fileNum":4089,"id":2691,"width":26,"height":46},{"x":25,"y":45,"fileNum":4089,"id":2692,"width":26,"height":46},{"x":50,"y":45,"fileNum":4089,"id":2693,"width":26,"height":46},{"x":74,"y":45,"fileNum":4089,"id":2694,"width":26,"height":46},{"x":98,"y":45,"fileNum":4089,"id":2695,"width":26,"height":46},{"x":123,"y":45,"fileNum":4089,"id":2696,"width":26,"height":46},{"x":0,"y":90,"fileNum":4089,"id":2697,"width":26,"height":46},{"x":25,"y":90,"fileNum":4089,"id":2698,"width":26,"height":46},{"x":50,"y":90,"fileNum":4089,"id":2699,"width":26,"height":46},{"x":74,"y":90,"fileNum":4089,"id":2700,"width":26,"height":46},{"x":98,"y":90,"fileNum":4089,"id":2701,"width":26,"height":46},{"x":123,"y":90,"fileNum":4089,"id":2702,"width":26,"height":46},{"x":0,"y":135,"fileNum":4089,"id":2703,"width":26,"height":46},{"x":25,"y":135,"fileNum":4089,"id":2704,"width":26,"height":46},{"x":50,"y":135,"fileNum":4089,"id":2705,"width":26,"height":46},{"x":74,"y":135,"fileNum":4089,"id":2706,"width":26,"height":46},{"x":98,"y":135,"fileNum":4089,"id":2707,"width":26,"height":46},{"x":123,"y":135,"fileNum":4089,"id":2708,"width":26,"height":46},{"x":0,"y":0,"fileNum":4090,"id":2709,"width":26,"height":46},{"x":25,"y":0,"fileNum":4090,"id":2710,"width":26,"height":46},{"x":50,"y":0,"fileNum":4090,"id":2711,"width":26,"height":46},{"x":0,"y":45,"fileNum":4090,"id":2712,"width":26,"height":46},{"x":25,"y":45,"fileNum":4090,"id":2713,"width":26,"height":46},{"x":50,"y":45,"fileNum":4090,"id":2714,"width":26,"height":46},{"x":0,"y":90,"fileNum":4090,"id":2715,"width":26,"height":46},{"x":25,"y":90,"fileNum":4090,"id":2716,"width":26,"height":46},{"x":50,"y":90,"fileNum":4090,"id":2717,"width":26,"height":46},{"x":0,"y":135,"fileNum":4090,"id":2718,"width":26,"height":46},{"x":25,"y":135,"fileNum":4090,"id":2719,"width":26,"height":46},{"x":50,"y":135,"fileNum":4090,"id":2720,"width":26,"height":46},{"x":0,"y":0,"fileNum":173,"id":2721,"width":25,"height":45},{"x":25,"y":0,"fileNum":173,"id":2722,"width":25,"height":45},{"x":50,"y":0,"fileNum":173,"id":2723,"width":25,"height":45},{"x":75,"y":0,"fileNum":173,"id":2724,"width":25,"height":45},{"x":100,"y":0,"fileNum":173,"id":2725,"width":25,"height":45},{"x":125,"y":0,"fileNum":173,"id":2726,"width":25,"height":45},{"x":0,"y":45,"fileNum":173,"id":2727,"width":25,"height":45},{"x":25,"y":45,"fileNum":173,"id":2728,"width":25,"height":45},{"x":50,"y":45,"fileNum":173,"id":2729,"width":25,"height":45},{"x":75,"y":45,"fileNum":173,"id":2730,"width":25,"height":45},{"x":100,"y":45,"fileNum":173,"id":2731,"width":25,"height":45},{"x":125,"y":45,"fileNum":173,"id":2732,"width":25,"height":45},{"x":0,"y":90,"fileNum":173,"id":2733,"width":25,"height":45},{"x":25,"y":90,"fileNum":173,"id":2734,"width":25,"height":45},{"x":50,"y":90,"fileNum":173,"id":2735,"width":25,"height":45},{"x":75,"y":90,"fileNum":173,"id":2736,"width":25,"height":45},{"x":100,"y":90,"fileNum":173,"id":2737,"width":25,"height":45},{"x":0,"y":135,"fileNum":173,"id":2738,"width":25,"height":45},{"x":25,"y":135,"fileNum":173,"id":2739,"width":25,"height":45},{"x":50,"y":135,"fileNum":173,"id":2740,"width":25,"height":45},{"x":75,"y":135,"fileNum":173,"id":2741,"width":25,"height":45},{"x":100,"y":135,"fileNum":173,"id":2742,"width":25,"height":45},{"x":0,"y":0,"fileNum":4091,"id":2743,"width":26,"height":46},{"x":25,"y":0,"fileNum":4091,"id":2744,"width":26,"height":46},{"x":50,"y":0,"fileNum":4091,"id":2745,"width":26,"height":46},{"x":75,"y":0,"fileNum":4091,"id":2746,"width":26,"height":46},{"x":100,"y":0,"fileNum":4091,"id":2747,"width":26,"height":46},{"x":123,"y":0,"fileNum":4091,"id":2748,"width":26,"height":46},{"x":148,"y":0,"fileNum":4091,"id":2749,"width":26,"height":46},{"x":0,"y":45,"fileNum":4091,"id":2750,"width":26,"height":46},{"x":25,"y":45,"fileNum":4091,"id":2751,"width":26,"height":46},{"x":50,"y":45,"fileNum":4091,"id":2752,"width":26,"height":46},{"x":75,"y":45,"fileNum":4091,"id":2753,"width":26,"height":46},{"x":100,"y":45,"fileNum":4091,"id":2754,"width":26,"height":46},{"x":123,"y":45,"fileNum":4091,"id":2755,"width":26,"height":46},{"x":148,"y":45,"fileNum":4091,"id":2756,"width":26,"height":46},{"x":0,"y":90,"fileNum":4091,"id":2757,"width":26,"height":46},{"x":25,"y":90,"fileNum":4091,"id":2758,"width":26,"height":46},{"x":50,"y":90,"fileNum":4091,"id":2759,"width":26,"height":46},{"x":75,"y":90,"fileNum":4091,"id":2760,"width":26,"height":46},{"x":100,"y":90,"fileNum":4091,"id":2761,"width":26,"height":46},{"x":123,"y":90,"fileNum":4091,"id":2762,"width":26,"height":46},{"x":148,"y":90,"fileNum":4091,"id":2763,"width":26,"height":46},{"x":0,"y":135,"fileNum":4091,"id":2764,"width":26,"height":46},{"x":25,"y":135,"fileNum":4091,"id":2765,"width":26,"height":46},{"x":50,"y":135,"fileNum":4091,"id":2766,"width":26,"height":46},{"x":75,"y":135,"fileNum":4091,"id":2767,"width":26,"height":46},{"x":100,"y":135,"fileNum":4091,"id":2768,"width":26,"height":46},{"x":123,"y":135,"fileNum":4091,"id":2769,"width":26,"height":46},{"x":148,"y":135,"fileNum":4091,"id":2770,"width":26,"height":46},{"x":0,"y":0,"fileNum":174,"id":2771,"width":25,"height":45},{"x":25,"y":0,"fileNum":174,"id":2772,"width":25,"height":45},{"x":50,"y":0,"fileNum":174,"id":2773,"width":25,"height":45},{"x":75,"y":0,"fileNum":174,"id":2774,"width":25,"height":45},{"x":100,"y":0,"fileNum":174,"id":2775,"width":25,"height":45},{"x":125,"y":0,"fileNum":174,"id":2776,"width":25,"height":45},{"x":0,"y":45,"fileNum":174,"id":2777,"width":25,"height":45},{"x":25,"y":45,"fileNum":174,"id":2778,"width":25,"height":45},{"x":50,"y":45,"fileNum":174,"id":2779,"width":25,"height":45},{"x":75,"y":45,"fileNum":174,"id":2780,"width":25,"height":45},{"x":100,"y":45,"fileNum":174,"id":2781,"width":25,"height":45},{"x":125,"y":45,"fileNum":174,"id":2782,"width":25,"height":45},{"x":0,"y":90,"fileNum":174,"id":2783,"width":25,"height":45},{"x":25,"y":90,"fileNum":174,"id":2784,"width":25,"height":45},{"x":50,"y":90,"fileNum":174,"id":2785,"width":25,"height":45},{"x":75,"y":90,"fileNum":174,"id":2786,"width":25,"height":45},{"x":100,"y":90,"fileNum":174,"id":2787,"width":25,"height":45},{"x":0,"y":135,"fileNum":174,"id":2788,"width":25,"height":45},{"x":25,"y":135,"fileNum":174,"id":2789,"width":25,"height":45},{"x":50,"y":135,"fileNum":174,"id":2790,"width":25,"height":45},{"x":75,"y":135,"fileNum":174,"id":2791,"width":25,"height":45},{"x":100,"y":135,"fileNum":174,"id":2792,"width":25,"height":45},{"x":0,"y":0,"fileNum":24002,"id":2793,"width":25,"height":45},{"x":25,"y":0,"fileNum":24002,"id":2794,"width":25,"height":45},{"x":50,"y":0,"fileNum":24002,"id":2795,"width":25,"height":45},{"x":75,"y":0,"fileNum":24002,"id":2796,"width":25,"height":45},{"x":100,"y":0,"fileNum":24002,"id":2797,"width":25,"height":45},{"x":125,"y":0,"fileNum":24002,"id":2798,"width":25,"height":45},{"x":0,"y":45,"fileNum":24002,"id":2799,"width":25,"height":45},{"x":25,"y":45,"fileNum":24002,"id":2800,"width":25,"height":45},{"x":50,"y":45,"fileNum":24002,"id":2801,"width":25,"height":45},{"x":75,"y":45,"fileNum":24002,"id":2802,"width":25,"height":45},{"x":100,"y":45,"fileNum":24002,"id":2803,"width":25,"height":45},{"x":125,"y":45,"fileNum":24002,"id":2804,"width":25,"height":45},{"x":0,"y":90,"fileNum":24002,"id":2805,"width":25,"height":45},{"x":25,"y":90,"fileNum":24002,"id":2806,"width":25,"height":45},{"x":50,"y":90,"fileNum":24002,"id":2807,"width":25,"height":45},{"x":75,"y":90,"fileNum":24002,"id":2808,"width":25,"height":45},{"x":100,"y":90,"fileNum":24002,"id":2809,"width":25,"height":45},{"x":0,"y":135,"fileNum":24002,"id":2810,"width":25,"height":45},{"x":25,"y":135,"fileNum":24002,"id":2811,"width":25,"height":45},{"x":50,"y":135,"fileNum":24002,"id":2812,"width":25,"height":45},{"x":75,"y":135,"fileNum":24002,"id":2813,"width":25,"height":45},{"x":100,"y":135,"fileNum":24002,"id":2814,"width":25,"height":45},{"x":0,"y":0,"fileNum":24003,"id":2815,"width":25,"height":45},{"x":25,"y":0,"fileNum":24003,"id":2816,"width":25,"height":45},{"x":50,"y":0,"fileNum":24003,"id":2817,"width":25,"height":45},{"x":75,"y":0,"fileNum":24003,"id":2818,"width":25,"height":45},{"x":100,"y":0,"fileNum":24003,"id":2819,"width":25,"height":45},{"x":125,"y":0,"fileNum":24003,"id":2820,"width":25,"height":45},{"x":0,"y":45,"fileNum":24003,"id":2821,"width":25,"height":45},{"x":25,"y":45,"fileNum":24003,"id":2822,"width":25,"height":45},{"x":50,"y":45,"fileNum":24003,"id":2823,"width":25,"height":45},{"x":75,"y":45,"fileNum":24003,"id":2824,"width":25,"height":45},{"x":100,"y":45,"fileNum":24003,"id":2825,"width":25,"height":45},{"x":125,"y":45,"fileNum":24003,"id":2826,"width":25,"height":45},{"x":0,"y":90,"fileNum":24003,"id":2827,"width":25,"height":45},{"x":25,"y":90,"fileNum":24003,"id":2828,"width":25,"height":45},{"x":50,"y":90,"fileNum":24003,"id":2829,"width":25,"height":45},{"x":75,"y":90,"fileNum":24003,"id":2830,"width":25,"height":45},{"x":100,"y":90,"fileNum":24003,"id":2831,"width":25,"height":45},{"x":0,"y":135,"fileNum":24003,"id":2832,"width":25,"height":45},{"x":25,"y":135,"fileNum":24003,"id":2833,"width":25,"height":45},{"x":50,"y":135,"fileNum":24003,"id":2834,"width":25,"height":45},{"x":75,"y":135,"fileNum":24003,"id":2835,"width":25,"height":45},{"x":100,"y":135,"fileNum":24003,"id":2836,"width":25,"height":45},{"x":0,"y":0,"fileNum":4092,"id":2837,"width":99,"height":50},{"x":99,"y":0,"fileNum":4092,"id":2838,"width":99,"height":50},{"x":198,"y":0,"fileNum":4092,"id":2839,"width":99,"height":50},{"x":297,"y":0,"fileNum":4092,"id":2840,"width":99,"height":50},{"x":396,"y":0,"fileNum":4092,"id":2841,"width":99,"height":50},{"x":495,"y":0,"fileNum":4092,"id":2842,"width":99,"height":50},{"x":0,"y":50,"fileNum":4092,"id":2843,"width":99,"height":50},{"x":99,"y":50,"fileNum":4092,"id":2844,"width":99,"height":50},{"x":198,"y":50,"fileNum":4092,"id":2845,"width":99,"height":50},{"x":297,"y":50,"fileNum":4092,"id":2846,"width":99,"height":50},{"x":396,"y":50,"fileNum":4092,"id":2847,"width":99,"height":50},{"x":495,"y":50,"fileNum":4092,"id":2848,"width":99,"height":50},{"x":0,"y":100,"fileNum":4092,"id":2849,"width":99,"height":50},{"x":99,"y":100,"fileNum":4092,"id":2850,"width":99,"height":50},{"x":198,"y":100,"fileNum":4092,"id":2851,"width":99,"height":50},{"x":297,"y":100,"fileNum":4092,"id":2852,"width":99,"height":50},{"x":396,"y":100,"fileNum":4092,"id":2853,"width":99,"height":50},{"x":495,"y":100,"fileNum":4092,"id":2854,"width":99,"height":50},{"x":0,"y":150,"fileNum":4092,"id":2855,"width":99,"height":50},{"x":99,"y":150,"fileNum":4092,"id":2856,"width":99,"height":50},{"x":198,"y":150,"fileNum":4092,"id":2857,"width":99,"height":50},{"x":297,"y":150,"fileNum":4092,"id":2858,"width":99,"height":50},{"x":396,"y":150,"fileNum":4092,"id":2859,"width":99,"height":50},{"x":495,"y":150,"fileNum":4092,"id":2860,"width":99,"height":50},{"x":0,"y":0,"fileNum":4093,"id":2861,"width":54,"height":35},{"x":52,"y":0,"fileNum":4093,"id":2862,"width":54,"height":35},{"x":106,"y":0,"fileNum":4093,"id":2863,"width":54,"height":35},{"x":159,"y":0,"fileNum":4093,"id":2864,"width":54,"height":35},{"x":0,"y":34,"fileNum":4093,"id":2865,"width":54,"height":35},{"x":52,"y":34,"fileNum":4093,"id":2866,"width":54,"height":35},{"x":106,"y":34,"fileNum":4093,"id":2867,"width":54,"height":35},{"x":159,"y":34,"fileNum":4093,"id":2868,"width":54,"height":35},{"x":0,"y":69,"fileNum":4093,"id":2869,"width":54,"height":35},{"x":52,"y":69,"fileNum":4093,"id":2870,"width":54,"height":35},{"x":106,"y":69,"fileNum":4093,"id":2871,"width":54,"height":35},{"x":159,"y":69,"fileNum":4093,"id":2872,"width":54,"height":35},{"x":0,"y":104,"fileNum":4093,"id":2873,"width":54,"height":35},{"x":52,"y":104,"fileNum":4093,"id":2874,"width":54,"height":35},{"x":106,"y":104,"fileNum":4093,"id":2875,"width":54,"height":35},{"x":159,"y":104,"fileNum":4093,"id":2876,"width":54,"height":35},{"x":0,"y":0,"fileNum":4094,"id":2877,"width":60,"height":50},{"x":59,"y":0,"fileNum":4094,"id":2878,"width":60,"height":50},{"x":118,"y":0,"fileNum":4094,"id":2879,"width":60,"height":50},{"x":177,"y":0,"fileNum":4094,"id":2880,"width":60,"height":50},{"x":236,"y":0,"fileNum":4094,"id":2881,"width":60,"height":50},{"x":295,"y":0,"fileNum":4094,"id":2882,"width":60,"height":50},{"x":354,"y":0,"fileNum":4094,"id":2883,"width":60,"height":50},{"x":413,"y":0,"fileNum":4094,"id":2884,"width":60,"height":50},{"x":0,"y":49,"fileNum":4094,"id":2885,"width":60,"height":50},{"x":59,"y":49,"fileNum":4094,"id":2886,"width":60,"height":50},{"x":118,"y":49,"fileNum":4094,"id":2887,"width":60,"height":50},{"x":177,"y":49,"fileNum":4094,"id":2888,"width":60,"height":50},{"x":236,"y":49,"fileNum":4094,"id":2889,"width":60,"height":50},{"x":295,"y":49,"fileNum":4094,"id":2890,"width":60,"height":50},{"x":354,"y":49,"fileNum":4094,"id":2891,"width":60,"height":50},{"x":413,"y":49,"fileNum":4094,"id":2892,"width":60,"height":50},{"x":0,"y":98,"fileNum":4094,"id":2893,"width":60,"height":50},{"x":59,"y":98,"fileNum":4094,"id":2894,"width":60,"height":50},{"x":118,"y":98,"fileNum":4094,"id":2895,"width":60,"height":50},{"x":177,"y":98,"fileNum":4094,"id":2896,"width":60,"height":50},{"x":236,"y":98,"fileNum":4094,"id":2897,"width":60,"height":50},{"x":295,"y":98,"fileNum":4094,"id":2898,"width":60,"height":50},{"x":354,"y":98,"fileNum":4094,"id":2899,"width":60,"height":50},{"x":413,"y":98,"fileNum":4094,"id":2900,"width":60,"height":50},{"x":0,"y":147,"fileNum":4094,"id":2901,"width":60,"height":50},{"x":59,"y":147,"fileNum":4094,"id":2902,"width":60,"height":50},{"x":118,"y":147,"fileNum":4094,"id":2903,"width":60,"height":50},{"x":177,"y":147,"fileNum":4094,"id":2904,"width":60,"height":50},{"x":236,"y":147,"fileNum":4094,"id":2905,"width":60,"height":50},{"x":295,"y":147,"fileNum":4094,"id":2906,"width":60,"height":50},{"x":354,"y":147,"fileNum":4094,"id":2907,"width":60,"height":50},{"x":413,"y":147,"fileNum":4094,"id":2908,"width":60,"height":50},{"x":0,"y":0,"fileNum":175,"id":2909,"width":25,"height":45},{"x":25,"y":0,"fileNum":175,"id":2910,"width":25,"height":45},{"x":50,"y":0,"fileNum":175,"id":2911,"width":25,"height":45},{"x":75,"y":0,"fileNum":175,"id":2912,"width":25,"height":45},{"x":100,"y":0,"fileNum":175,"id":2913,"width":25,"height":45},{"x":125,"y":0,"fileNum":175,"id":2914,"width":25,"height":45},{"x":0,"y":45,"fileNum":175,"id":2915,"width":25,"height":45},{"x":25,"y":45,"fileNum":175,"id":2916,"width":25,"height":45},{"x":50,"y":45,"fileNum":175,"id":2917,"width":25,"height":45},{"x":75,"y":45,"fileNum":175,"id":2918,"width":25,"height":45},{"x":100,"y":45,"fileNum":175,"id":2919,"width":25,"height":45},{"x":125,"y":45,"fileNum":175,"id":2920,"width":25,"height":45},{"x":0,"y":90,"fileNum":175,"id":2921,"width":25,"height":45},{"x":25,"y":90,"fileNum":175,"id":2922,"width":25,"height":45},{"x":50,"y":90,"fileNum":175,"id":2923,"width":25,"height":45},{"x":75,"y":90,"fileNum":175,"id":2924,"width":25,"height":45},{"x":100,"y":90,"fileNum":175,"id":2925,"width":25,"height":45},{"x":0,"y":135,"fileNum":175,"id":2926,"width":25,"height":45},{"x":25,"y":135,"fileNum":175,"id":2927,"width":25,"height":45},{"x":50,"y":135,"fileNum":175,"id":2928,"width":25,"height":45},{"x":75,"y":135,"fileNum":175,"id":2929,"width":25,"height":45},{"x":100,"y":135,"fileNum":175,"id":2930,"width":25,"height":45},{"x":0,"y":0,"fileNum":176,"id":2931,"width":25,"height":45},{"x":25,"y":0,"fileNum":176,"id":2932,"width":25,"height":45},{"x":50,"y":0,"fileNum":176,"id":2933,"width":25,"height":45},{"x":75,"y":0,"fileNum":176,"id":2934,"width":25,"height":45},{"x":100,"y":0,"fileNum":176,"id":2935,"width":25,"height":45},{"x":125,"y":0,"fileNum":176,"id":2936,"width":25,"height":45},{"x":0,"y":45,"fileNum":176,"id":2937,"width":25,"height":45},{"x":25,"y":45,"fileNum":176,"id":2938,"width":25,"height":45},{"x":50,"y":45,"fileNum":176,"id":2939,"width":25,"height":45},{"x":75,"y":45,"fileNum":176,"id":2940,"width":25,"height":45},{"x":100,"y":45,"fileNum":176,"id":2941,"width":25,"height":45},{"x":125,"y":45,"fileNum":176,"id":2942,"width":25,"height":45},{"x":0,"y":90,"fileNum":176,"id":2943,"width":25,"height":45},{"x":25,"y":90,"fileNum":176,"id":2944,"width":25,"height":45},{"x":50,"y":90,"fileNum":176,"id":2945,"width":25,"height":45},{"x":75,"y":90,"fileNum":176,"id":2946,"width":25,"height":45},{"x":100,"y":90,"fileNum":176,"id":2947,"width":25,"height":45},{"x":0,"y":135,"fileNum":176,"id":2948,"width":25,"height":45},{"x":25,"y":135,"fileNum":176,"id":2949,"width":25,"height":45},{"x":50,"y":135,"fileNum":176,"id":2950,"width":25,"height":45},{"x":75,"y":135,"fileNum":176,"id":2951,"width":25,"height":45},{"x":100,"y":135,"fileNum":176,"id":2952,"width":25,"height":45},{"x":0,"y":0,"fileNum":177,"id":2953,"width":25,"height":45},{"x":25,"y":0,"fileNum":177,"id":2954,"width":25,"height":45},{"x":50,"y":0,"fileNum":177,"id":2955,"width":25,"height":45},{"x":75,"y":0,"fileNum":177,"id":2956,"width":25,"height":45},{"x":100,"y":0,"fileNum":177,"id":2957,"width":25,"height":45},{"x":125,"y":0,"fileNum":177,"id":2958,"width":25,"height":45},{"x":0,"y":45,"fileNum":177,"id":2959,"width":25,"height":45},{"x":25,"y":45,"fileNum":177,"id":2960,"width":25,"height":45},{"x":50,"y":45,"fileNum":177,"id":2961,"width":25,"height":45},{"x":75,"y":45,"fileNum":177,"id":2962,"width":25,"height":45},{"x":100,"y":45,"fileNum":177,"id":2963,"width":25,"height":45},{"x":125,"y":45,"fileNum":177,"id":2964,"width":25,"height":45},{"x":0,"y":90,"fileNum":177,"id":2965,"width":25,"height":45},{"x":25,"y":90,"fileNum":177,"id":2966,"width":25,"height":45},{"x":50,"y":90,"fileNum":177,"id":2967,"width":25,"height":45},{"x":75,"y":90,"fileNum":177,"id":2968,"width":25,"height":45},{"x":100,"y":90,"fileNum":177,"id":2969,"width":25,"height":45},{"x":0,"y":135,"fileNum":177,"id":2970,"width":25,"height":45},{"x":25,"y":135,"fileNum":177,"id":2971,"width":25,"height":45},{"x":50,"y":135,"fileNum":177,"id":2972,"width":25,"height":45},{"x":75,"y":135,"fileNum":177,"id":2973,"width":25,"height":45},{"x":100,"y":135,"fileNum":177,"id":2974,"width":25,"height":45},{"x":0,"y":0,"fileNum":178,"id":2975,"width":25,"height":45},{"x":25,"y":0,"fileNum":178,"id":2976,"width":25,"height":45},{"x":50,"y":0,"fileNum":178,"id":2977,"width":25,"height":45},{"x":75,"y":0,"fileNum":178,"id":2978,"width":25,"height":45},{"x":100,"y":0,"fileNum":178,"id":2979,"width":25,"height":45},{"x":125,"y":0,"fileNum":178,"id":2980,"width":25,"height":45},{"x":0,"y":45,"fileNum":178,"id":2981,"width":25,"height":45},{"x":25,"y":45,"fileNum":178,"id":2982,"width":25,"height":45},{"x":50,"y":45,"fileNum":178,"id":2983,"width":25,"height":45},{"x":75,"y":45,"fileNum":178,"id":2984,"width":25,"height":45},{"x":100,"y":45,"fileNum":178,"id":2985,"width":25,"height":45},{"x":125,"y":45,"fileNum":178,"id":2986,"width":25,"height":45},{"x":0,"y":90,"fileNum":178,"id":2987,"width":25,"height":45},{"x":25,"y":90,"fileNum":178,"id":2988,"width":25,"height":45},{"x":50,"y":90,"fileNum":178,"id":2989,"width":25,"height":45},{"x":75,"y":90,"fileNum":178,"id":2990,"width":25,"height":45},{"x":100,"y":90,"fileNum":178,"id":2991,"width":25,"height":45},{"x":0,"y":0,"fileNum":2111,"id":2992,"width":17,"height":50},{"x":17,"y":0,"fileNum":2111,"id":2993,"width":17,"height":50},{"x":34,"y":0,"fileNum":2111,"id":2994,"width":17,"height":50},{"x":51,"y":0,"fileNum":2111,"id":2995,"width":17,"height":50},{"x":0,"y":0,"fileNum":2062,"id":2996,"width":17,"height":50},{"x":17,"y":0,"fileNum":2062,"id":2997,"width":17,"height":50},{"x":34,"y":0,"fileNum":2062,"id":2998,"width":17,"height":50},{"x":51,"y":0,"fileNum":2062,"id":2999,"width":17,"height":50},{"x":0,"y":0,"fileNum":2053,"id":3000,"width":17,"height":50},{"x":17,"y":0,"fileNum":2053,"id":3001,"width":17,"height":50},{"x":34,"y":0,"fileNum":2053,"id":3002,"width":17,"height":50},{"x":51,"y":0,"fileNum":2053,"id":3003,"width":17,"height":50},{"x":0,"y":0,"fileNum":2043,"id":3004,"width":17,"height":50},{"x":17,"y":0,"fileNum":2043,"id":3005,"width":17,"height":50},{"x":34,"y":0,"fileNum":2043,"id":3006,"width":17,"height":50},{"x":51,"y":0,"fileNum":2043,"id":3007,"width":17,"height":50},{"x":0,"y":0,"fileNum":2045,"id":3008,"width":17,"height":50},{"x":17,"y":0,"fileNum":2045,"id":3009,"width":17,"height":50},{"x":34,"y":0,"fileNum":2045,"id":3010,"width":17,"height":50},{"x":51,"y":0,"fileNum":2045,"id":3011,"width":17,"height":50},{"x":0,"y":0,"fileNum":2050,"id":3012,"width":17,"height":50},{"x":17,"y":0,"fileNum":2050,"id":3013,"width":17,"height":50},{"x":34,"y":0,"fileNum":2050,"id":3014,"width":17,"height":50},{"x":51,"y":0,"fileNum":2050,"id":3015,"width":17,"height":50},{"x":0,"y":0,"fileNum":2052,"id":3016,"width":17,"height":50},{"x":17,"y":0,"fileNum":2052,"id":3017,"width":17,"height":50},{"x":34,"y":0,"fileNum":2052,"id":3018,"width":17,"height":50},{"x":51,"y":0,"fileNum":2052,"id":3019,"width":17,"height":50},{"x":0,"y":0,"fileNum":2063,"id":3020,"width":17,"height":50},{"x":17,"y":0,"fileNum":2063,"id":3021,"width":17,"height":50},{"x":34,"y":0,"fileNum":2063,"id":3022,"width":17,"height":50},{"x":51,"y":0,"fileNum":2063,"id":3023,"width":17,"height":50},{"x":0,"y":0,"fileNum":2066,"id":3024,"width":17,"height":50},{"x":17,"y":0,"fileNum":2066,"id":3025,"width":17,"height":50},{"x":34,"y":0,"fileNum":2066,"id":3026,"width":17,"height":50},{"x":51,"y":0,"fileNum":2066,"id":3027,"width":17,"height":50},{"x":0,"y":0,"fileNum":2068,"id":3028,"width":17,"height":50},{"x":17,"y":0,"fileNum":2068,"id":3029,"width":17,"height":50},{"x":34,"y":0,"fileNum":2068,"id":3030,"width":17,"height":50},{"x":51,"y":0,"fileNum":2068,"id":3031,"width":17,"height":50},{"x":0,"y":0,"fileNum":2074,"id":3032,"width":17,"height":50},{"x":17,"y":0,"fileNum":2074,"id":3033,"width":17,"height":50},{"x":34,"y":0,"fileNum":2074,"id":3034,"width":17,"height":50},{"x":51,"y":0,"fileNum":2074,"id":3035,"width":17,"height":50},{"x":0,"y":0,"fileNum":2085,"id":3036,"width":17,"height":50},{"x":17,"y":0,"fileNum":2085,"id":3037,"width":17,"height":50},{"x":34,"y":0,"fileNum":2085,"id":3038,"width":17,"height":50},{"x":51,"y":0,"fileNum":2085,"id":3039,"width":17,"height":50},{"x":0,"y":0,"fileNum":2087,"id":3040,"width":17,"height":50},{"x":17,"y":0,"fileNum":2087,"id":3041,"width":17,"height":50},{"x":34,"y":0,"fileNum":2087,"id":3042,"width":17,"height":50},{"x":51,"y":0,"fileNum":2087,"id":3043,"width":17,"height":50},{"x":0,"y":0,"fileNum":2088,"id":3044,"width":17,"height":50},{"x":17,"y":0,"fileNum":2088,"id":3045,"width":17,"height":50},{"x":34,"y":0,"fileNum":2088,"id":3046,"width":17,"height":50},{"x":51,"y":0,"fileNum":2088,"id":3047,"width":17,"height":50},{"x":0,"y":0,"fileNum":2089,"id":3048,"width":17,"height":50},{"x":17,"y":0,"fileNum":2089,"id":3049,"width":17,"height":50},{"x":34,"y":0,"fileNum":2089,"id":3050,"width":17,"height":50},{"x":51,"y":0,"fileNum":2089,"id":3051,"width":17,"height":50},{"x":0,"y":0,"fileNum":2091,"id":3052,"width":17,"height":50},{"x":17,"y":0,"fileNum":2091,"id":3053,"width":17,"height":50},{"x":34,"y":0,"fileNum":2091,"id":3054,"width":17,"height":50},{"x":51,"y":0,"fileNum":2091,"id":3055,"width":17,"height":50},{"x":0,"y":0,"fileNum":17007,"id":3056,"width":97,"height":67},{"x":97,"y":0,"fileNum":17007,"id":3057,"width":97,"height":67},{"x":194,"y":0,"fileNum":17007,"id":3058,"width":97,"height":67},{"x":291,"y":0,"fileNum":17007,"id":3059,"width":97,"height":67},{"x":0,"y":67,"fileNum":17007,"id":3060,"width":97,"height":67},{"x":97,"y":67,"fileNum":17007,"id":3061,"width":97,"height":67},{"x":194,"y":67,"fileNum":17007,"id":3062,"width":97,"height":67},{"x":291,"y":67,"fileNum":17007,"id":3063,"width":97,"height":67},{"x":0,"y":134,"fileNum":17007,"id":3064,"width":65,"height":97},{"x":65,"y":134,"fileNum":17007,"id":3065,"width":65,"height":97},{"x":130,"y":134,"fileNum":17007,"id":3066,"width":65,"height":97},{"x":195,"y":134,"fileNum":17007,"id":3067,"width":65,"height":97},{"x":0,"y":231,"fileNum":17007,"id":3068,"width":65,"height":99},{"x":65,"y":231,"fileNum":17007,"id":3069,"width":65,"height":99},{"x":130,"y":231,"fileNum":17007,"id":3070,"width":65,"height":99},{"x":195,"y":231,"fileNum":17007,"id":3071,"width":65,"height":99},{"x":0,"y":0,"fileNum":104,"id":3076,"width":25,"height":45},{"x":25,"y":0,"fileNum":104,"id":3077,"width":25,"height":45},{"x":50,"y":0,"fileNum":104,"id":3078,"width":25,"height":45},{"x":75,"y":0,"fileNum":104,"id":3079,"width":25,"height":45},{"x":100,"y":0,"fileNum":104,"id":3080,"width":25,"height":45},{"x":125,"y":0,"fileNum":104,"id":3081,"width":25,"height":45},{"x":0,"y":45,"fileNum":104,"id":3082,"width":25,"height":45},{"x":25,"y":45,"fileNum":104,"id":3083,"width":25,"height":45},{"x":50,"y":45,"fileNum":104,"id":3084,"width":25,"height":45},{"x":75,"y":45,"fileNum":104,"id":3085,"width":25,"height":45},{"x":100,"y":45,"fileNum":104,"id":3086,"width":25,"height":45},{"x":125,"y":45,"fileNum":104,"id":3087,"width":25,"height":45},{"x":0,"y":90,"fileNum":104,"id":3088,"width":25,"height":45},{"x":25,"y":90,"fileNum":104,"id":3089,"width":25,"height":45},{"x":50,"y":90,"fileNum":104,"id":3090,"width":25,"height":45},{"x":75,"y":90,"fileNum":104,"id":3091,"width":25,"height":45},{"x":100,"y":90,"fileNum":104,"id":3092,"width":25,"height":45},{"x":0,"y":135,"fileNum":104,"id":3093,"width":25,"height":45},{"x":25,"y":135,"fileNum":104,"id":3094,"width":25,"height":45},{"x":50,"y":135,"fileNum":104,"id":3095,"width":25,"height":45},{"x":75,"y":135,"fileNum":104,"id":3096,"width":25,"height":45},{"x":100,"y":135,"fileNum":104,"id":3097,"width":25,"height":45},{"x":0,"y":0,"fileNum":104,"id":3098,"width":25,"height":45},{"x":0,"y":0,"fileNum":104,"id":3099,"width":25,"height":45},{"x":0,"y":0,"fileNum":104,"id":3100,"width":25,"height":45},{"x":0,"y":0,"fileNum":2048,"id":3101,"width":17,"height":50},{"x":17,"y":0,"fileNum":2048,"id":3102,"width":17,"height":50},{"x":34,"y":0,"fileNum":2048,"id":3103,"width":17,"height":50},{"x":51,"y":0,"fileNum":2048,"id":3104,"width":17,"height":50},{"x":0,"y":0,"fileNum":2055,"id":3105,"width":17,"height":50},{"x":17,"y":0,"fileNum":2055,"id":3106,"width":17,"height":50},{"x":34,"y":0,"fileNum":2055,"id":3107,"width":17,"height":50},{"x":51,"y":0,"fileNum":2055,"id":3108,"width":17,"height":50},{"x":0,"y":0,"fileNum":2065,"id":3109,"width":17,"height":16},{"x":17,"y":0,"fileNum":2065,"id":3110,"width":17,"height":16},{"x":34,"y":0,"fileNum":2065,"id":3111,"width":17,"height":16},{"x":51,"y":0,"fileNum":2065,"id":3112,"width":17,"height":16},{"x":0,"y":0,"fileNum":2076,"id":3113,"width":17,"height":50},{"x":17,"y":0,"fileNum":2076,"id":3114,"width":17,"height":50},{"x":34,"y":0,"fileNum":2076,"id":3115,"width":17,"height":50},{"x":51,"y":0,"fileNum":2076,"id":3116,"width":17,"height":50},{"x":0,"y":0,"fileNum":2077,"id":3117,"width":17,"height":50},{"x":17,"y":0,"fileNum":2077,"id":3118,"width":17,"height":50},{"x":34,"y":0,"fileNum":2077,"id":3119,"width":17,"height":50},{"x":51,"y":0,"fileNum":2077,"id":3120,"width":17,"height":50},{"x":0,"y":0,"fileNum":2082,"id":3121,"width":17,"height":50},{"x":17,"y":0,"fileNum":2082,"id":3122,"width":17,"height":50},{"x":34,"y":0,"fileNum":2082,"id":3123,"width":17,"height":50},{"x":51,"y":0,"fileNum":2082,"id":3124,"width":17,"height":50},{"x":0,"y":0,"fileNum":2084,"id":3125,"width":17,"height":50},{"x":17,"y":0,"fileNum":2084,"id":3126,"width":17,"height":50},{"x":34,"y":0,"fileNum":2084,"id":3127,"width":17,"height":50},{"x":51,"y":0,"fileNum":2084,"id":3128,"width":17,"height":50},{"x":0,"y":0,"fileNum":77,"id":3129,"width":25,"height":45},{"x":25,"y":0,"fileNum":77,"id":3130,"width":25,"height":45},{"x":50,"y":0,"fileNum":77,"id":3131,"width":25,"height":45},{"x":75,"y":0,"fileNum":77,"id":3132,"width":25,"height":45},{"x":100,"y":0,"fileNum":77,"id":3133,"width":25,"height":45},{"x":125,"y":0,"fileNum":77,"id":3134,"width":25,"height":45},{"x":0,"y":45,"fileNum":77,"id":3135,"width":25,"height":45},{"x":25,"y":45,"fileNum":77,"id":3136,"width":25,"height":45},{"x":50,"y":45,"fileNum":77,"id":3137,"width":25,"height":45},{"x":75,"y":45,"fileNum":77,"id":3138,"width":25,"height":45},{"x":100,"y":45,"fileNum":77,"id":3139,"width":25,"height":45},{"x":125,"y":45,"fileNum":77,"id":3140,"width":25,"height":45},{"x":0,"y":90,"fileNum":77,"id":3141,"width":25,"height":45},{"x":25,"y":90,"fileNum":77,"id":3142,"width":25,"height":45},{"x":50,"y":90,"fileNum":77,"id":3143,"width":25,"height":45},{"x":75,"y":90,"fileNum":77,"id":3144,"width":25,"height":45},{"x":100,"y":90,"fileNum":77,"id":3145,"width":25,"height":45},{"x":0,"y":135,"fileNum":77,"id":3146,"width":25,"height":45},{"x":25,"y":135,"fileNum":77,"id":3147,"width":25,"height":45},{"x":50,"y":135,"fileNum":77,"id":3148,"width":25,"height":45},{"x":75,"y":135,"fileNum":77,"id":3149,"width":25,"height":45},{"x":100,"y":135,"fileNum":77,"id":3150,"width":25,"height":45},{"x":0,"y":0,"fileNum":76,"id":3155,"width":32,"height":32},{"x":0,"y":0,"fileNum":78,"id":3156,"width":32,"height":32},{"x":0,"y":0,"fileNum":79,"id":3157,"width":25,"height":45},{"x":25,"y":0,"fileNum":79,"id":3158,"width":25,"height":45},{"x":50,"y":0,"fileNum":79,"id":3159,"width":25,"height":45},{"x":75,"y":0,"fileNum":79,"id":3160,"width":25,"height":45},{"x":100,"y":0,"fileNum":79,"id":3161,"width":25,"height":45},{"x":125,"y":0,"fileNum":79,"id":3162,"width":25,"height":45},{"x":0,"y":45,"fileNum":79,"id":3163,"width":25,"height":45},{"x":25,"y":45,"fileNum":79,"id":3164,"width":25,"height":45},{"x":50,"y":45,"fileNum":79,"id":3165,"width":25,"height":45},{"x":75,"y":45,"fileNum":79,"id":3166,"width":25,"height":45},{"x":100,"y":45,"fileNum":79,"id":3167,"width":25,"height":45},{"x":125,"y":45,"fileNum":79,"id":3168,"width":25,"height":45},{"x":0,"y":90,"fileNum":79,"id":3169,"width":25,"height":45},{"x":25,"y":90,"fileNum":79,"id":3170,"width":25,"height":45},{"x":50,"y":90,"fileNum":79,"id":3171,"width":25,"height":45},{"x":75,"y":90,"fileNum":79,"id":3172,"width":25,"height":45},{"x":100,"y":90,"fileNum":79,"id":3173,"width":25,"height":45},{"x":0,"y":135,"fileNum":79,"id":3174,"width":25,"height":45},{"x":25,"y":135,"fileNum":79,"id":3175,"width":25,"height":45},{"x":50,"y":135,"fileNum":79,"id":3176,"width":25,"height":45},{"x":75,"y":135,"fileNum":79,"id":3177,"width":25,"height":45},{"x":100,"y":135,"fileNum":79,"id":3178,"width":25,"height":45},{"x":0,"y":0,"fileNum":15200,"id":3187,"width":55,"height":134},{"x":114,"y":0,"fileNum":15200,"id":3188,"width":55,"height":134},{"x":171,"y":0,"fileNum":15200,"id":3189,"width":55,"height":134},{"x":228,"y":0,"fileNum":15200,"id":3190,"width":55,"height":134},{"x":285,"y":0,"fileNum":15200,"id":3191,"width":55,"height":134},{"x":342,"y":0,"fileNum":15200,"id":3192,"width":55,"height":134},{"x":399,"y":0,"fileNum":15200,"id":3193,"width":55,"height":134},{"x":456,"y":0,"fileNum":15200,"id":3194,"width":55,"height":134},{"x":513,"y":0,"fileNum":15200,"id":3195,"width":55,"height":134},{"x":570,"y":0,"fileNum":15200,"id":3196,"width":55,"height":134},{"x":0,"y":0,"fileNum":2112,"id":3198,"width":17,"height":50},{"x":17,"y":0,"fileNum":2112,"id":3199,"width":17,"height":50},{"x":34,"y":0,"fileNum":2112,"id":3200,"width":17,"height":50},{"x":51,"y":0,"fileNum":2112,"id":3201,"width":17,"height":50},{"x":0,"y":0,"fileNum":2042,"id":3202,"width":17,"height":50},{"x":17,"y":0,"fileNum":2042,"id":3203,"width":17,"height":50},{"x":34,"y":0,"fileNum":2042,"id":3204,"width":17,"height":50},{"x":51,"y":0,"fileNum":2042,"id":3205,"width":17,"height":50},{"x":0,"y":0,"fileNum":2057,"id":3206,"width":17,"height":50},{"x":17,"y":0,"fileNum":2057,"id":3207,"width":17,"height":50},{"x":34,"y":0,"fileNum":2057,"id":3208,"width":17,"height":50},{"x":51,"y":0,"fileNum":2057,"id":3209,"width":17,"height":50},{"x":0,"y":0,"fileNum":2078,"id":3210,"width":17,"height":50},{"x":17,"y":0,"fileNum":2078,"id":3211,"width":17,"height":50},{"x":34,"y":0,"fileNum":2078,"id":3212,"width":17,"height":50},{"x":51,"y":0,"fileNum":2078,"id":3213,"width":17,"height":50},{"x":0,"y":0,"fileNum":2079,"id":3214,"width":17,"height":50},{"x":17,"y":0,"fileNum":2079,"id":3215,"width":17,"height":50},{"x":34,"y":0,"fileNum":2079,"id":3216,"width":17,"height":50},{"x":51,"y":0,"fileNum":2079,"id":3217,"width":17,"height":50},{"x":0,"y":0,"fileNum":2080,"id":3218,"width":17,"height":50},{"x":17,"y":0,"fileNum":2080,"id":3219,"width":17,"height":50},{"x":34,"y":0,"fileNum":2080,"id":3220,"width":17,"height":50},{"x":51,"y":0,"fileNum":2080,"id":3221,"width":17,"height":50},{"x":0,"y":0,"fileNum":2081,"id":3222,"width":17,"height":50},{"x":17,"y":0,"fileNum":2081,"id":3223,"width":17,"height":50},{"x":34,"y":0,"fileNum":2081,"id":3224,"width":17,"height":50},{"x":51,"y":0,"fileNum":2081,"id":3225,"width":17,"height":50},{"x":0,"y":0,"fileNum":80,"id":3226,"width":32,"height":32},{"x":0,"y":0,"fileNum":81,"id":3227,"width":25,"height":45},{"x":25,"y":0,"fileNum":81,"id":3228,"width":25,"height":45},{"x":50,"y":0,"fileNum":81,"id":3229,"width":25,"height":45},{"x":75,"y":0,"fileNum":81,"id":3230,"width":25,"height":45},{"x":100,"y":0,"fileNum":81,"id":3231,"width":25,"height":45},{"x":125,"y":0,"fileNum":81,"id":3232,"width":25,"height":45},{"x":0,"y":45,"fileNum":81,"id":3233,"width":25,"height":45},{"x":25,"y":45,"fileNum":81,"id":3234,"width":25,"height":45},{"x":50,"y":45,"fileNum":81,"id":3235,"width":25,"height":45},{"x":75,"y":45,"fileNum":81,"id":3236,"width":25,"height":45},{"x":100,"y":45,"fileNum":81,"id":3237,"width":25,"height":45},{"x":125,"y":45,"fileNum":81,"id":3238,"width":25,"height":45},{"x":0,"y":90,"fileNum":81,"id":3239,"width":25,"height":45},{"x":25,"y":90,"fileNum":81,"id":3240,"width":25,"height":45},{"x":50,"y":90,"fileNum":81,"id":3241,"width":25,"height":45},{"x":75,"y":90,"fileNum":81,"id":3242,"width":25,"height":45},{"x":100,"y":90,"fileNum":81,"id":3243,"width":25,"height":45},{"x":0,"y":135,"fileNum":81,"id":3244,"width":25,"height":45},{"x":25,"y":135,"fileNum":81,"id":3245,"width":25,"height":45},{"x":50,"y":135,"fileNum":81,"id":3246,"width":25,"height":45},{"x":75,"y":135,"fileNum":81,"id":3247,"width":25,"height":45},{"x":100,"y":135,"fileNum":81,"id":3248,"width":25,"height":45},{"x":0,"y":0,"fileNum":82,"id":3253,"width":32,"height":32},{"x":0,"y":0,"fileNum":83,"id":3254,"width":25,"height":45},{"x":25,"y":0,"fileNum":83,"id":3255,"width":25,"height":45},{"x":50,"y":0,"fileNum":83,"id":3256,"width":25,"height":45},{"x":75,"y":0,"fileNum":83,"id":3257,"width":25,"height":45},{"x":100,"y":0,"fileNum":83,"id":3258,"width":25,"height":45},{"x":125,"y":0,"fileNum":83,"id":3259,"width":25,"height":45},{"x":0,"y":45,"fileNum":83,"id":3260,"width":25,"height":45},{"x":25,"y":45,"fileNum":83,"id":3261,"width":25,"height":45},{"x":50,"y":45,"fileNum":83,"id":3262,"width":25,"height":45},{"x":75,"y":45,"fileNum":83,"id":3263,"width":25,"height":45},{"x":100,"y":45,"fileNum":83,"id":3264,"width":25,"height":45},{"x":125,"y":45,"fileNum":83,"id":3265,"width":25,"height":45},{"x":0,"y":90,"fileNum":83,"id":3266,"width":25,"height":45},{"x":25,"y":90,"fileNum":83,"id":3267,"width":25,"height":45},{"x":50,"y":90,"fileNum":83,"id":3268,"width":25,"height":45},{"x":75,"y":90,"fileNum":83,"id":3269,"width":25,"height":45},{"x":100,"y":90,"fileNum":83,"id":3270,"width":25,"height":45},{"x":0,"y":135,"fileNum":83,"id":3271,"width":25,"height":45},{"x":25,"y":135,"fileNum":83,"id":3272,"width":25,"height":45},{"x":50,"y":135,"fileNum":83,"id":3273,"width":25,"height":45},{"x":75,"y":135,"fileNum":83,"id":3274,"width":25,"height":45},{"x":100,"y":135,"fileNum":83,"id":3275,"width":25,"height":45},{"x":0,"y":0,"fileNum":15201,"id":3280,"width":55,"height":100},{"x":56,"y":0,"fileNum":15201,"id":3281,"width":55,"height":100},{"x":112,"y":0,"fileNum":15201,"id":3282,"width":55,"height":100},{"x":168,"y":0,"fileNum":15201,"id":3283,"width":55,"height":100},{"x":224,"y":0,"fileNum":15201,"id":3284,"width":55,"height":100},{"x":280,"y":0,"fileNum":15201,"id":3285,"width":55,"height":100},{"x":336,"y":0,"fileNum":15201,"id":3286,"width":55,"height":100},{"x":392,"y":0,"fileNum":15201,"id":3287,"width":55,"height":100},{"x":448,"y":0,"fileNum":15201,"id":3288,"width":55,"height":100},{"x":504,"y":0,"fileNum":15201,"id":3289,"width":55,"height":100},{"x":560,"y":0,"fileNum":15201,"id":3290,"width":55,"height":100},{"x":616,"y":0,"fileNum":15201,"id":3291,"width":55,"height":100},{"x":672,"y":0,"fileNum":15201,"id":3292,"width":55,"height":100},{"x":728,"y":0,"fileNum":15201,"id":3293,"width":55,"height":100},{"x":784,"y":0,"fileNum":15201,"id":3294,"width":55,"height":100},{"x":840,"y":0,"fileNum":15201,"id":3295,"width":55,"height":100},{"x":896,"y":0,"fileNum":15201,"id":3296,"width":55,"height":100},{"x":952,"y":0,"fileNum":15201,"id":3297,"width":55,"height":100},{"x":1008,"y":0,"fileNum":15201,"id":3298,"width":55,"height":100},{"x":1064,"y":0,"fileNum":15201,"id":3299,"width":55,"height":100},{"x":0,"y":0,"fileNum":2047,"id":3301,"width":17,"height":50},{"x":17,"y":0,"fileNum":2047,"id":3302,"width":17,"height":50},{"x":34,"y":0,"fileNum":2047,"id":3303,"width":17,"height":50},{"x":51,"y":0,"fileNum":2047,"id":3304,"width":17,"height":50},{"x":0,"y":0,"fileNum":2096,"id":3305,"width":17,"height":50},{"x":17,"y":0,"fileNum":2096,"id":3306,"width":17,"height":50},{"x":34,"y":0,"fileNum":2096,"id":3307,"width":17,"height":50},{"x":51,"y":0,"fileNum":2096,"id":3308,"width":17,"height":50},{"x":0,"y":0,"fileNum":2096,"id":3309,"width":17,"height":16},{"x":0,"y":0,"fileNum":8208,"id":3310,"width":32,"height":32},{"x":32,"y":0,"fileNum":8208,"id":3311,"width":32,"height":32},{"x":64,"y":0,"fileNum":8208,"id":3312,"width":32,"height":32},{"x":96,"y":0,"fileNum":8208,"id":3313,"width":32,"height":32},{"x":0,"y":32,"fileNum":8208,"id":3314,"width":32,"height":32},{"x":32,"y":32,"fileNum":8208,"id":3315,"width":32,"height":32},{"x":64,"y":32,"fileNum":8208,"id":3316,"width":32,"height":32},{"x":96,"y":32,"fileNum":8208,"id":3317,"width":32,"height":32},{"x":0,"y":64,"fileNum":8208,"id":3318,"width":32,"height":32},{"x":32,"y":64,"fileNum":8208,"id":3319,"width":32,"height":32},{"x":64,"y":64,"fileNum":8208,"id":3320,"width":32,"height":32},{"x":96,"y":64,"fileNum":8208,"id":3321,"width":32,"height":32},{"x":0,"y":96,"fileNum":8208,"id":3322,"width":32,"height":32},{"x":32,"y":96,"fileNum":8208,"id":3323,"width":32,"height":32},{"x":64,"y":96,"fileNum":8208,"id":3324,"width":32,"height":32},{"x":96,"y":96,"fileNum":8208,"id":3325,"width":32,"height":32},{"x":0,"y":0,"fileNum":8209,"id":3326,"width":32,"height":32},{"x":32,"y":0,"fileNum":8209,"id":3327,"width":32,"height":32},{"x":64,"y":0,"fileNum":8209,"id":3328,"width":32,"height":32},{"x":96,"y":0,"fileNum":8209,"id":3329,"width":32,"height":32},{"x":0,"y":32,"fileNum":8209,"id":3330,"width":32,"height":32},{"x":32,"y":32,"fileNum":8209,"id":3331,"width":32,"height":32},{"x":64,"y":32,"fileNum":8209,"id":3332,"width":32,"height":32},{"x":96,"y":32,"fileNum":8209,"id":3333,"width":32,"height":32},{"x":0,"y":64,"fileNum":8209,"id":3334,"width":32,"height":32},{"x":32,"y":64,"fileNum":8209,"id":3335,"width":32,"height":32},{"x":64,"y":64,"fileNum":8209,"id":3336,"width":32,"height":32},{"x":96,"y":64,"fileNum":8209,"id":3337,"width":32,"height":32},{"x":0,"y":96,"fileNum":8209,"id":3338,"width":32,"height":32},{"x":32,"y":96,"fileNum":8209,"id":3339,"width":32,"height":32},{"x":64,"y":96,"fileNum":8209,"id":3340,"width":32,"height":32},{"x":96,"y":96,"fileNum":8209,"id":3341,"width":32,"height":32},{"x":0,"y":0,"fileNum":8210,"id":3342,"width":32,"height":32},{"x":32,"y":0,"fileNum":8210,"id":3343,"width":32,"height":32},{"x":64,"y":0,"fileNum":8210,"id":3344,"width":32,"height":32},{"x":96,"y":0,"fileNum":8210,"id":3345,"width":32,"height":32},{"x":0,"y":32,"fileNum":8210,"id":3346,"width":32,"height":32},{"x":32,"y":32,"fileNum":8210,"id":3347,"width":32,"height":32},{"x":64,"y":32,"fileNum":8210,"id":3348,"width":32,"height":32},{"x":96,"y":32,"fileNum":8210,"id":3349,"width":32,"height":32},{"x":0,"y":64,"fileNum":8210,"id":3350,"width":32,"height":32},{"x":32,"y":64,"fileNum":8210,"id":3351,"width":32,"height":32},{"x":64,"y":64,"fileNum":8210,"id":3352,"width":32,"height":32},{"x":96,"y":64,"fileNum":8210,"id":3353,"width":32,"height":32},{"x":0,"y":96,"fileNum":8210,"id":3354,"width":32,"height":32},{"x":32,"y":96,"fileNum":8210,"id":3355,"width":32,"height":32},{"x":64,"y":96,"fileNum":8210,"id":3356,"width":32,"height":32},{"x":96,"y":96,"fileNum":8210,"id":3357,"width":32,"height":32},{"x":0,"y":0,"fileNum":8211,"id":3358,"width":32,"height":32},{"x":32,"y":0,"fileNum":8211,"id":3359,"width":32,"height":32},{"x":64,"y":0,"fileNum":8211,"id":3360,"width":32,"height":32},{"x":96,"y":0,"fileNum":8211,"id":3361,"width":32,"height":32},{"x":0,"y":32,"fileNum":8211,"id":3362,"width":32,"height":32},{"x":32,"y":32,"fileNum":8211,"id":3363,"width":32,"height":32},{"x":64,"y":32,"fileNum":8211,"id":3364,"width":32,"height":32},{"x":96,"y":32,"fileNum":8211,"id":3365,"width":32,"height":32},{"x":0,"y":64,"fileNum":8211,"id":3366,"width":32,"height":32},{"x":32,"y":64,"fileNum":8211,"id":3367,"width":32,"height":32},{"x":64,"y":64,"fileNum":8211,"id":3368,"width":32,"height":32},{"x":96,"y":64,"fileNum":8211,"id":3369,"width":32,"height":32},{"x":0,"y":96,"fileNum":8211,"id":3370,"width":32,"height":32},{"x":32,"y":96,"fileNum":8211,"id":3371,"width":32,"height":32},{"x":64,"y":96,"fileNum":8211,"id":3372,"width":32,"height":32},{"x":96,"y":96,"fileNum":8211,"id":3373,"width":32,"height":32},{"x":0,"y":0,"fileNum":8212,"id":3374,"width":32,"height":32},{"x":32,"y":0,"fileNum":8212,"id":3375,"width":32,"height":32},{"x":64,"y":0,"fileNum":8212,"id":3376,"width":32,"height":32},{"x":96,"y":0,"fileNum":8212,"id":3377,"width":32,"height":32},{"x":0,"y":32,"fileNum":8212,"id":3378,"width":32,"height":32},{"x":32,"y":32,"fileNum":8212,"id":3379,"width":32,"height":32},{"x":64,"y":32,"fileNum":8212,"id":3380,"width":32,"height":32},{"x":96,"y":32,"fileNum":8212,"id":3381,"width":32,"height":32},{"x":0,"y":64,"fileNum":8212,"id":3382,"width":32,"height":32},{"x":32,"y":64,"fileNum":8212,"id":3383,"width":32,"height":32},{"x":64,"y":64,"fileNum":8212,"id":3384,"width":32,"height":32},{"x":96,"y":64,"fileNum":8212,"id":3385,"width":32,"height":32},{"x":0,"y":96,"fileNum":8212,"id":3386,"width":32,"height":32},{"x":32,"y":96,"fileNum":8212,"id":3387,"width":32,"height":32},{"x":64,"y":96,"fileNum":8212,"id":3388,"width":32,"height":32},{"x":96,"y":96,"fileNum":8212,"id":3389,"width":32,"height":32},{"x":0,"y":0,"fileNum":8213,"id":3390,"width":32,"height":32},{"x":32,"y":0,"fileNum":8213,"id":3391,"width":32,"height":32},{"x":64,"y":0,"fileNum":8213,"id":3392,"width":32,"height":32},{"x":96,"y":0,"fileNum":8213,"id":3393,"width":32,"height":32},{"x":0,"y":32,"fileNum":8213,"id":3394,"width":32,"height":32},{"x":32,"y":32,"fileNum":8213,"id":3395,"width":32,"height":32},{"x":64,"y":32,"fileNum":8213,"id":3396,"width":32,"height":32},{"x":96,"y":32,"fileNum":8213,"id":3397,"width":32,"height":32},{"x":0,"y":64,"fileNum":8213,"id":3398,"width":32,"height":32},{"x":32,"y":64,"fileNum":8213,"id":3399,"width":32,"height":32},{"x":64,"y":64,"fileNum":8213,"id":3400,"width":32,"height":32},{"x":96,"y":64,"fileNum":8213,"id":3401,"width":32,"height":32},{"x":0,"y":96,"fileNum":8213,"id":3402,"width":32,"height":32},{"x":32,"y":96,"fileNum":8213,"id":3403,"width":32,"height":32},{"x":64,"y":96,"fileNum":8213,"id":3404,"width":32,"height":32},{"x":96,"y":96,"fileNum":8213,"id":3405,"width":32,"height":32},{"x":0,"y":0,"fileNum":8214,"id":3406,"width":32,"height":32},{"x":32,"y":0,"fileNum":8214,"id":3407,"width":32,"height":32},{"x":64,"y":0,"fileNum":8214,"id":3408,"width":32,"height":32},{"x":96,"y":0,"fileNum":8214,"id":3409,"width":32,"height":32},{"x":0,"y":32,"fileNum":8214,"id":3410,"width":32,"height":32},{"x":32,"y":32,"fileNum":8214,"id":3411,"width":32,"height":32},{"x":64,"y":32,"fileNum":8214,"id":3412,"width":32,"height":32},{"x":96,"y":32,"fileNum":8214,"id":3413,"width":32,"height":32},{"x":0,"y":64,"fileNum":8214,"id":3414,"width":32,"height":32},{"x":32,"y":64,"fileNum":8214,"id":3415,"width":32,"height":32},{"x":64,"y":64,"fileNum":8214,"id":3416,"width":32,"height":32},{"x":96,"y":64,"fileNum":8214,"id":3417,"width":32,"height":32},{"x":0,"y":96,"fileNum":8214,"id":3418,"width":32,"height":32},{"x":32,"y":96,"fileNum":8214,"id":3419,"width":32,"height":32},{"x":64,"y":96,"fileNum":8214,"id":3420,"width":32,"height":32},{"x":96,"y":96,"fileNum":8214,"id":3421,"width":32,"height":32},{"x":0,"y":0,"fileNum":8215,"id":3422,"width":32,"height":32},{"x":32,"y":0,"fileNum":8215,"id":3423,"width":32,"height":32},{"x":64,"y":0,"fileNum":8215,"id":3424,"width":32,"height":32},{"x":96,"y":0,"fileNum":8215,"id":3425,"width":32,"height":32},{"x":0,"y":32,"fileNum":8215,"id":3426,"width":32,"height":32},{"x":32,"y":32,"fileNum":8215,"id":3427,"width":32,"height":32},{"x":64,"y":32,"fileNum":8215,"id":3428,"width":32,"height":32},{"x":96,"y":32,"fileNum":8215,"id":3429,"width":32,"height":32},{"x":0,"y":64,"fileNum":8215,"id":3430,"width":32,"height":32},{"x":32,"y":64,"fileNum":8215,"id":3431,"width":32,"height":32},{"x":64,"y":64,"fileNum":8215,"id":3432,"width":32,"height":32},{"x":96,"y":64,"fileNum":8215,"id":3433,"width":32,"height":32},{"x":0,"y":96,"fileNum":8215,"id":3434,"width":32,"height":32},{"x":32,"y":96,"fileNum":8215,"id":3435,"width":32,"height":32},{"x":64,"y":96,"fileNum":8215,"id":3436,"width":32,"height":32},{"x":96,"y":96,"fileNum":8215,"id":3437,"width":32,"height":32},{"x":0,"y":0,"fileNum":8216,"id":3438,"width":32,"height":32},{"x":32,"y":0,"fileNum":8216,"id":3439,"width":32,"height":32},{"x":64,"y":0,"fileNum":8216,"id":3440,"width":32,"height":32},{"x":96,"y":0,"fileNum":8216,"id":3441,"width":32,"height":32},{"x":0,"y":32,"fileNum":8216,"id":3442,"width":32,"height":32},{"x":32,"y":32,"fileNum":8216,"id":3443,"width":32,"height":32},{"x":64,"y":32,"fileNum":8216,"id":3444,"width":32,"height":32},{"x":96,"y":32,"fileNum":8216,"id":3445,"width":32,"height":32},{"x":0,"y":64,"fileNum":8216,"id":3446,"width":32,"height":32},{"x":32,"y":64,"fileNum":8216,"id":3447,"width":32,"height":32},{"x":64,"y":64,"fileNum":8216,"id":3448,"width":32,"height":32},{"x":96,"y":64,"fileNum":8216,"id":3449,"width":32,"height":32},{"x":0,"y":96,"fileNum":8216,"id":3450,"width":32,"height":32},{"x":32,"y":96,"fileNum":8216,"id":3451,"width":32,"height":32},{"x":64,"y":96,"fileNum":8216,"id":3452,"width":32,"height":32},{"x":96,"y":96,"fileNum":8216,"id":3453,"width":32,"height":32},{"x":0,"y":0,"fileNum":8217,"id":3454,"width":32,"height":32},{"x":32,"y":0,"fileNum":8217,"id":3455,"width":32,"height":32},{"x":64,"y":0,"fileNum":8217,"id":3456,"width":32,"height":32},{"x":96,"y":0,"fileNum":8217,"id":3457,"width":32,"height":32},{"x":0,"y":32,"fileNum":8217,"id":3458,"width":32,"height":32},{"x":32,"y":32,"fileNum":8217,"id":3459,"width":32,"height":32},{"x":64,"y":32,"fileNum":8217,"id":3460,"width":32,"height":32},{"x":96,"y":32,"fileNum":8217,"id":3461,"width":32,"height":32},{"x":0,"y":64,"fileNum":8217,"id":3462,"width":32,"height":32},{"x":32,"y":64,"fileNum":8217,"id":3463,"width":32,"height":32},{"x":64,"y":64,"fileNum":8217,"id":3464,"width":32,"height":32},{"x":96,"y":64,"fileNum":8217,"id":3465,"width":32,"height":32},{"x":0,"y":96,"fileNum":8217,"id":3466,"width":32,"height":32},{"x":32,"y":96,"fileNum":8217,"id":3467,"width":32,"height":32},{"x":64,"y":96,"fileNum":8217,"id":3468,"width":32,"height":32},{"x":96,"y":96,"fileNum":8217,"id":3469,"width":32,"height":32},{"x":0,"y":0,"fileNum":8218,"id":3470,"width":32,"height":32},{"x":32,"y":0,"fileNum":8218,"id":3471,"width":32,"height":32},{"x":64,"y":0,"fileNum":8218,"id":3472,"width":32,"height":32},{"x":96,"y":0,"fileNum":8218,"id":3473,"width":32,"height":32},{"x":0,"y":32,"fileNum":8218,"id":3474,"width":32,"height":32},{"x":32,"y":32,"fileNum":8218,"id":3475,"width":32,"height":32},{"x":64,"y":32,"fileNum":8218,"id":3476,"width":32,"height":32},{"x":96,"y":32,"fileNum":8218,"id":3477,"width":32,"height":32},{"x":0,"y":64,"fileNum":8218,"id":3478,"width":32,"height":32},{"x":32,"y":64,"fileNum":8218,"id":3479,"width":32,"height":32},{"x":64,"y":64,"fileNum":8218,"id":3480,"width":32,"height":32},{"x":96,"y":64,"fileNum":8218,"id":3481,"width":32,"height":32},{"x":0,"y":96,"fileNum":8218,"id":3482,"width":32,"height":32},{"x":32,"y":96,"fileNum":8218,"id":3483,"width":32,"height":32},{"x":64,"y":96,"fileNum":8218,"id":3484,"width":32,"height":32},{"x":96,"y":96,"fileNum":8218,"id":3485,"width":32,"height":32},{"x":0,"y":0,"fileNum":8219,"id":3486,"width":32,"height":32},{"x":32,"y":0,"fileNum":8219,"id":3487,"width":32,"height":32},{"x":64,"y":0,"fileNum":8219,"id":3488,"width":32,"height":32},{"x":96,"y":0,"fileNum":8219,"id":3489,"width":32,"height":32},{"x":0,"y":32,"fileNum":8219,"id":3490,"width":32,"height":32},{"x":32,"y":32,"fileNum":8219,"id":3491,"width":32,"height":32},{"x":64,"y":32,"fileNum":8219,"id":3492,"width":32,"height":32},{"x":96,"y":32,"fileNum":8219,"id":3493,"width":32,"height":32},{"x":0,"y":64,"fileNum":8219,"id":3494,"width":32,"height":32},{"x":32,"y":64,"fileNum":8219,"id":3495,"width":32,"height":32},{"x":64,"y":64,"fileNum":8219,"id":3496,"width":32,"height":32},{"x":96,"y":64,"fileNum":8219,"id":3497,"width":32,"height":32},{"x":0,"y":96,"fileNum":8219,"id":3498,"width":32,"height":32},{"x":32,"y":96,"fileNum":8219,"id":3499,"width":32,"height":32},{"x":64,"y":96,"fileNum":8219,"id":3500,"width":32,"height":32},{"x":96,"y":96,"fileNum":8219,"id":3501,"width":32,"height":32},{"x":0,"y":0,"fileNum":8220,"id":3502,"width":32,"height":32},{"x":32,"y":0,"fileNum":8220,"id":3503,"width":32,"height":32},{"x":64,"y":0,"fileNum":8220,"id":3504,"width":32,"height":32},{"x":96,"y":0,"fileNum":8220,"id":3505,"width":32,"height":32},{"x":0,"y":32,"fileNum":8220,"id":3506,"width":32,"height":32},{"x":32,"y":32,"fileNum":8220,"id":3507,"width":32,"height":32},{"x":64,"y":32,"fileNum":8220,"id":3508,"width":32,"height":32},{"x":96,"y":32,"fileNum":8220,"id":3509,"width":32,"height":32},{"x":0,"y":64,"fileNum":8220,"id":3510,"width":32,"height":32},{"x":32,"y":64,"fileNum":8220,"id":3511,"width":32,"height":32},{"x":64,"y":64,"fileNum":8220,"id":3512,"width":32,"height":32},{"x":96,"y":64,"fileNum":8220,"id":3513,"width":32,"height":32},{"x":0,"y":96,"fileNum":8220,"id":3514,"width":32,"height":32},{"x":32,"y":96,"fileNum":8220,"id":3515,"width":32,"height":32},{"x":64,"y":96,"fileNum":8220,"id":3516,"width":32,"height":32},{"x":96,"y":96,"fileNum":8220,"id":3517,"width":32,"height":32},{"x":0,"y":0,"fileNum":8221,"id":3518,"width":32,"height":32},{"x":32,"y":0,"fileNum":8221,"id":3519,"width":32,"height":32},{"x":64,"y":0,"fileNum":8221,"id":3520,"width":32,"height":32},{"x":96,"y":0,"fileNum":8221,"id":3521,"width":32,"height":32},{"x":0,"y":32,"fileNum":8221,"id":3522,"width":32,"height":32},{"x":32,"y":32,"fileNum":8221,"id":3523,"width":32,"height":32},{"x":64,"y":32,"fileNum":8221,"id":3524,"width":32,"height":32},{"x":96,"y":32,"fileNum":8221,"id":3525,"width":32,"height":32},{"x":0,"y":64,"fileNum":8221,"id":3526,"width":32,"height":32},{"x":32,"y":64,"fileNum":8221,"id":3527,"width":32,"height":32},{"x":64,"y":64,"fileNum":8221,"id":3528,"width":32,"height":32},{"x":96,"y":64,"fileNum":8221,"id":3529,"width":32,"height":32},{"x":0,"y":96,"fileNum":8221,"id":3530,"width":32,"height":32},{"x":32,"y":96,"fileNum":8221,"id":3531,"width":32,"height":32},{"x":64,"y":96,"fileNum":8221,"id":3532,"width":32,"height":32},{"x":96,"y":96,"fileNum":8221,"id":3533,"width":32,"height":32},{"x":0,"y":0,"fileNum":8222,"id":3534,"width":32,"height":32},{"x":32,"y":0,"fileNum":8222,"id":3535,"width":32,"height":32},{"x":64,"y":0,"fileNum":8222,"id":3536,"width":32,"height":32},{"x":96,"y":0,"fileNum":8222,"id":3537,"width":32,"height":32},{"x":0,"y":32,"fileNum":8222,"id":3538,"width":32,"height":32},{"x":32,"y":32,"fileNum":8222,"id":3539,"width":32,"height":32},{"x":64,"y":32,"fileNum":8222,"id":3540,"width":32,"height":32},{"x":96,"y":32,"fileNum":8222,"id":3541,"width":32,"height":32},{"x":0,"y":64,"fileNum":8222,"id":3542,"width":32,"height":32},{"x":32,"y":64,"fileNum":8222,"id":3543,"width":32,"height":32},{"x":64,"y":64,"fileNum":8222,"id":3544,"width":32,"height":32},{"x":96,"y":64,"fileNum":8222,"id":3545,"width":32,"height":32},{"x":0,"y":96,"fileNum":8222,"id":3546,"width":32,"height":32},{"x":32,"y":96,"fileNum":8222,"id":3547,"width":32,"height":32},{"x":64,"y":96,"fileNum":8222,"id":3548,"width":32,"height":32},{"x":96,"y":96,"fileNum":8222,"id":3549,"width":32,"height":32},{"x":0,"y":0,"fileNum":8223,"id":3550,"width":32,"height":32},{"x":32,"y":0,"fileNum":8223,"id":3551,"width":32,"height":32},{"x":64,"y":0,"fileNum":8223,"id":3552,"width":32,"height":32},{"x":96,"y":0,"fileNum":8223,"id":3553,"width":32,"height":32},{"x":0,"y":32,"fileNum":8223,"id":3554,"width":32,"height":32},{"x":32,"y":32,"fileNum":8223,"id":3555,"width":32,"height":32},{"x":64,"y":32,"fileNum":8223,"id":3556,"width":32,"height":32},{"x":96,"y":32,"fileNum":8223,"id":3557,"width":32,"height":32},{"x":0,"y":64,"fileNum":8223,"id":3558,"width":32,"height":32},{"x":32,"y":64,"fileNum":8223,"id":3559,"width":32,"height":32},{"x":64,"y":64,"fileNum":8223,"id":3560,"width":32,"height":32},{"x":96,"y":64,"fileNum":8223,"id":3561,"width":32,"height":32},{"x":0,"y":96,"fileNum":8223,"id":3562,"width":32,"height":32},{"x":32,"y":96,"fileNum":8223,"id":3563,"width":32,"height":32},{"x":64,"y":96,"fileNum":8223,"id":3564,"width":32,"height":32},{"x":96,"y":96,"fileNum":8223,"id":3565,"width":32,"height":32},{"x":0,"y":0,"fileNum":8224,"id":3566,"width":32,"height":32},{"x":32,"y":0,"fileNum":8224,"id":3567,"width":32,"height":32},{"x":64,"y":0,"fileNum":8224,"id":3568,"width":32,"height":32},{"x":96,"y":0,"fileNum":8224,"id":3569,"width":32,"height":32},{"x":0,"y":32,"fileNum":8224,"id":3570,"width":32,"height":32},{"x":32,"y":32,"fileNum":8224,"id":3571,"width":32,"height":32},{"x":64,"y":32,"fileNum":8224,"id":3572,"width":32,"height":32},{"x":96,"y":32,"fileNum":8224,"id":3573,"width":32,"height":32},{"x":0,"y":64,"fileNum":8224,"id":3574,"width":32,"height":32},{"x":32,"y":64,"fileNum":8224,"id":3575,"width":32,"height":32},{"x":64,"y":64,"fileNum":8224,"id":3576,"width":32,"height":32},{"x":96,"y":64,"fileNum":8224,"id":3577,"width":32,"height":32},{"x":0,"y":96,"fileNum":8224,"id":3578,"width":32,"height":32},{"x":32,"y":96,"fileNum":8224,"id":3579,"width":32,"height":32},{"x":64,"y":96,"fileNum":8224,"id":3580,"width":32,"height":32},{"x":96,"y":96,"fileNum":8224,"id":3581,"width":32,"height":32},{"x":0,"y":0,"fileNum":11026,"id":3582,"width":320,"height":384},{"x":0,"y":0,"fileNum":11027,"id":3583,"width":320,"height":160},{"x":0,"y":0,"fileNum":14032,"id":3584,"width":384,"height":480},{"x":0,"y":0,"fileNum":22000,"id":3585,"width":25,"height":45},{"x":25,"y":0,"fileNum":22000,"id":3586,"width":25,"height":45},{"x":50,"y":0,"fileNum":22000,"id":3587,"width":25,"height":45},{"x":75,"y":0,"fileNum":22000,"id":3588,"width":25,"height":45},{"x":100,"y":0,"fileNum":22000,"id":3589,"width":25,"height":45},{"x":125,"y":0,"fileNum":22000,"id":3590,"width":25,"height":45},{"x":0,"y":45,"fileNum":22000,"id":3591,"width":25,"height":45},{"x":25,"y":45,"fileNum":22000,"id":3592,"width":25,"height":45},{"x":50,"y":45,"fileNum":22000,"id":3593,"width":25,"height":45},{"x":75,"y":45,"fileNum":22000,"id":3594,"width":25,"height":45},{"x":100,"y":45,"fileNum":22000,"id":3595,"width":25,"height":45},{"x":125,"y":45,"fileNum":22000,"id":3596,"width":25,"height":45},{"x":0,"y":90,"fileNum":22000,"id":3597,"width":25,"height":45},{"x":25,"y":90,"fileNum":22000,"id":3598,"width":25,"height":45},{"x":50,"y":90,"fileNum":22000,"id":3599,"width":25,"height":45},{"x":75,"y":90,"fileNum":22000,"id":3600,"width":25,"height":45},{"x":100,"y":90,"fileNum":22000,"id":3601,"width":25,"height":45},{"x":0,"y":135,"fileNum":22000,"id":3602,"width":25,"height":45},{"x":25,"y":135,"fileNum":22000,"id":3603,"width":25,"height":45},{"x":50,"y":135,"fileNum":22000,"id":3604,"width":25,"height":45},{"x":75,"y":135,"fileNum":22000,"id":3605,"width":25,"height":45},{"x":100,"y":135,"fileNum":22000,"id":3606,"width":25,"height":45},{"x":0,"y":0,"fileNum":22044,"id":3611,"width":25,"height":45},{"x":25,"y":0,"fileNum":22044,"id":3612,"width":25,"height":45},{"x":50,"y":0,"fileNum":22044,"id":3613,"width":25,"height":45},{"x":75,"y":0,"fileNum":22044,"id":3614,"width":25,"height":45},{"x":100,"y":0,"fileNum":22044,"id":3615,"width":25,"height":45},{"x":125,"y":0,"fileNum":22044,"id":3616,"width":25,"height":45},{"x":0,"y":45,"fileNum":22044,"id":3617,"width":25,"height":45},{"x":25,"y":45,"fileNum":22044,"id":3618,"width":25,"height":45},{"x":50,"y":45,"fileNum":22044,"id":3619,"width":25,"height":45},{"x":75,"y":45,"fileNum":22044,"id":3620,"width":25,"height":45},{"x":100,"y":45,"fileNum":22044,"id":3621,"width":25,"height":45},{"x":125,"y":45,"fileNum":22044,"id":3622,"width":25,"height":45},{"x":0,"y":90,"fileNum":22044,"id":3623,"width":25,"height":45},{"x":25,"y":90,"fileNum":22044,"id":3624,"width":25,"height":45},{"x":50,"y":90,"fileNum":22044,"id":3625,"width":25,"height":45},{"x":75,"y":90,"fileNum":22044,"id":3626,"width":25,"height":45},{"x":100,"y":90,"fileNum":22044,"id":3627,"width":25,"height":45},{"x":0,"y":135,"fileNum":22044,"id":3628,"width":25,"height":45},{"x":25,"y":135,"fileNum":22044,"id":3629,"width":25,"height":45},{"x":50,"y":135,"fileNum":22044,"id":3630,"width":25,"height":45},{"x":75,"y":135,"fileNum":22044,"id":3631,"width":25,"height":45},{"x":100,"y":135,"fileNum":22044,"id":3632,"width":25,"height":45},{"x":0,"y":0,"fileNum":16015,"id":3637,"width":25,"height":45},{"x":25,"y":0,"fileNum":16015,"id":3638,"width":25,"height":45},{"x":50,"y":0,"fileNum":16015,"id":3639,"width":25,"height":45},{"x":75,"y":0,"fileNum":16015,"id":3640,"width":25,"height":45},{"x":100,"y":0,"fileNum":16015,"id":3641,"width":25,"height":45},{"x":125,"y":0,"fileNum":16015,"id":3642,"width":25,"height":45},{"x":0,"y":45,"fileNum":16015,"id":3643,"width":25,"height":45},{"x":25,"y":45,"fileNum":16015,"id":3644,"width":25,"height":45},{"x":50,"y":45,"fileNum":16015,"id":3645,"width":25,"height":45},{"x":75,"y":45,"fileNum":16015,"id":3646,"width":25,"height":45},{"x":100,"y":45,"fileNum":16015,"id":3647,"width":25,"height":45},{"x":125,"y":45,"fileNum":16015,"id":3648,"width":25,"height":45},{"x":0,"y":90,"fileNum":16015,"id":3649,"width":25,"height":45},{"x":25,"y":90,"fileNum":16015,"id":3650,"width":25,"height":45},{"x":50,"y":90,"fileNum":16015,"id":3651,"width":25,"height":45},{"x":75,"y":90,"fileNum":16015,"id":3652,"width":25,"height":45},{"x":100,"y":90,"fileNum":16015,"id":3653,"width":25,"height":45},{"x":0,"y":135,"fileNum":16015,"id":3654,"width":25,"height":45},{"x":25,"y":135,"fileNum":16015,"id":3655,"width":25,"height":45},{"x":50,"y":135,"fileNum":16015,"id":3656,"width":25,"height":45},{"x":75,"y":135,"fileNum":16015,"id":3657,"width":25,"height":45},{"x":100,"y":135,"fileNum":16015,"id":3658,"width":25,"height":45},{"x":0,"y":0,"fileNum":4072,"id":3663,"width":32,"height":39},{"x":32,"y":0,"fileNum":4072,"id":3664,"width":32,"height":39},{"x":64,"y":0,"fileNum":4072,"id":3665,"width":32,"height":39},{"x":96,"y":0,"fileNum":4072,"id":3666,"width":32,"height":39},{"x":128,"y":0,"fileNum":4072,"id":3667,"width":32,"height":39},{"x":160,"y":0,"fileNum":4072,"id":3668,"width":32,"height":39},{"x":0,"y":39,"fileNum":4072,"id":3669,"width":32,"height":39},{"x":32,"y":39,"fileNum":4072,"id":3670,"width":32,"height":39},{"x":64,"y":39,"fileNum":4072,"id":3671,"width":32,"height":39},{"x":96,"y":39,"fileNum":4072,"id":3672,"width":32,"height":39},{"x":128,"y":39,"fileNum":4072,"id":3673,"width":32,"height":39},{"x":160,"y":39,"fileNum":4072,"id":3674,"width":32,"height":39},{"x":0,"y":78,"fileNum":4072,"id":3675,"width":32,"height":39},{"x":32,"y":78,"fileNum":4072,"id":3676,"width":32,"height":39},{"x":64,"y":78,"fileNum":4072,"id":3677,"width":32,"height":39},{"x":96,"y":78,"fileNum":4072,"id":3678,"width":32,"height":39},{"x":128,"y":78,"fileNum":4072,"id":3679,"width":32,"height":39},{"x":0,"y":118,"fileNum":4072,"id":3680,"width":32,"height":39},{"x":32,"y":118,"fileNum":4072,"id":3681,"width":32,"height":39},{"x":64,"y":118,"fileNum":4072,"id":3682,"width":32,"height":39},{"x":96,"y":118,"fileNum":4072,"id":3683,"width":32,"height":39},{"x":128,"y":118,"fileNum":4072,"id":3684,"width":32,"height":39},{"x":0,"y":0,"fileNum":105,"id":3689,"width":25,"height":45},{"x":25,"y":0,"fileNum":105,"id":3690,"width":25,"height":45},{"x":50,"y":0,"fileNum":105,"id":3691,"width":25,"height":45},{"x":75,"y":0,"fileNum":105,"id":3692,"width":25,"height":45},{"x":100,"y":0,"fileNum":105,"id":3693,"width":25,"height":45},{"x":125,"y":0,"fileNum":105,"id":3694,"width":25,"height":45},{"x":0,"y":45,"fileNum":105,"id":3695,"width":25,"height":45},{"x":25,"y":45,"fileNum":105,"id":3696,"width":25,"height":45},{"x":50,"y":45,"fileNum":105,"id":3697,"width":25,"height":45},{"x":75,"y":45,"fileNum":105,"id":3698,"width":25,"height":45},{"x":100,"y":45,"fileNum":105,"id":3699,"width":25,"height":45},{"x":125,"y":45,"fileNum":105,"id":3700,"width":25,"height":45},{"x":0,"y":90,"fileNum":105,"id":3701,"width":25,"height":45},{"x":25,"y":90,"fileNum":105,"id":3702,"width":25,"height":45},{"x":50,"y":90,"fileNum":105,"id":3703,"width":25,"height":45},{"x":75,"y":90,"fileNum":105,"id":3704,"width":25,"height":45},{"x":100,"y":90,"fileNum":105,"id":3705,"width":25,"height":45},{"x":0,"y":135,"fileNum":105,"id":3706,"width":25,"height":45},{"x":25,"y":135,"fileNum":105,"id":3707,"width":25,"height":45},{"x":50,"y":135,"fileNum":105,"id":3708,"width":25,"height":45},{"x":75,"y":135,"fileNum":105,"id":3709,"width":25,"height":45},{"x":100,"y":135,"fileNum":105,"id":3710,"width":25,"height":45},{"x":0,"y":0,"fileNum":106,"id":3715,"width":32,"height":32},{"x":0,"y":0,"fileNum":7073,"id":3716,"width":64,"height":32},{"x":0,"y":0,"fileNum":4070,"id":3717,"width":25,"height":45},{"x":25,"y":0,"fileNum":4070,"id":3718,"width":25,"height":45},{"x":50,"y":0,"fileNum":4070,"id":3719,"width":25,"height":45},{"x":75,"y":0,"fileNum":4070,"id":3720,"width":25,"height":45},{"x":100,"y":0,"fileNum":4070,"id":3721,"width":25,"height":45},{"x":125,"y":0,"fileNum":4070,"id":3722,"width":25,"height":45},{"x":0,"y":45,"fileNum":4070,"id":3723,"width":25,"height":45},{"x":25,"y":45,"fileNum":4070,"id":3724,"width":25,"height":45},{"x":50,"y":45,"fileNum":4070,"id":3725,"width":25,"height":45},{"x":75,"y":45,"fileNum":4070,"id":3726,"width":25,"height":45},{"x":100,"y":45,"fileNum":4070,"id":3727,"width":25,"height":45},{"x":125,"y":45,"fileNum":4070,"id":3728,"width":25,"height":45},{"x":0,"y":90,"fileNum":4070,"id":3729,"width":25,"height":45},{"x":25,"y":90,"fileNum":4070,"id":3730,"width":25,"height":45},{"x":50,"y":90,"fileNum":4070,"id":3731,"width":25,"height":45},{"x":75,"y":90,"fileNum":4070,"id":3732,"width":25,"height":45},{"x":100,"y":90,"fileNum":4070,"id":3733,"width":25,"height":45},{"x":0,"y":135,"fileNum":4070,"id":3734,"width":25,"height":45},{"x":25,"y":135,"fileNum":4070,"id":3735,"width":25,"height":45},{"x":50,"y":135,"fileNum":4070,"id":3736,"width":25,"height":45},{"x":75,"y":135,"fileNum":4070,"id":3737,"width":25,"height":45},{"x":100,"y":135,"fileNum":4070,"id":3738,"width":25,"height":45},{"x":0,"y":0,"fileNum":4071,"id":3743,"width":25,"height":45},{"x":25,"y":0,"fileNum":4071,"id":3744,"width":25,"height":45},{"x":50,"y":0,"fileNum":4071,"id":3745,"width":25,"height":45},{"x":75,"y":0,"fileNum":4071,"id":3746,"width":25,"height":45},{"x":100,"y":0,"fileNum":4071,"id":3747,"width":25,"height":45},{"x":125,"y":0,"fileNum":4071,"id":3748,"width":25,"height":45},{"x":0,"y":45,"fileNum":4071,"id":3749,"width":25,"height":45},{"x":25,"y":45,"fileNum":4071,"id":3750,"width":25,"height":45},{"x":50,"y":45,"fileNum":4071,"id":3751,"width":25,"height":45},{"x":75,"y":45,"fileNum":4071,"id":3752,"width":25,"height":45},{"x":100,"y":45,"fileNum":4071,"id":3753,"width":25,"height":45},{"x":125,"y":45,"fileNum":4071,"id":3754,"width":25,"height":45},{"x":0,"y":90,"fileNum":4071,"id":3755,"width":25,"height":45},{"x":25,"y":90,"fileNum":4071,"id":3756,"width":25,"height":45},{"x":50,"y":90,"fileNum":4071,"id":3757,"width":25,"height":45},{"x":75,"y":90,"fileNum":4071,"id":3758,"width":25,"height":45},{"x":100,"y":90,"fileNum":4071,"id":3759,"width":25,"height":45},{"x":0,"y":135,"fileNum":4071,"id":3760,"width":25,"height":45},{"x":25,"y":135,"fileNum":4071,"id":3761,"width":25,"height":45},{"x":50,"y":135,"fileNum":4071,"id":3762,"width":25,"height":45},{"x":75,"y":135,"fileNum":4071,"id":3763,"width":25,"height":45},{"x":100,"y":135,"fileNum":4071,"id":3764,"width":25,"height":45},{"x":0,"y":0,"fileNum":4069,"id":3769,"width":25,"height":45},{"x":25,"y":0,"fileNum":4069,"id":3770,"width":25,"height":45},{"x":50,"y":0,"fileNum":4069,"id":3771,"width":25,"height":45},{"x":75,"y":0,"fileNum":4069,"id":3772,"width":25,"height":45},{"x":100,"y":0,"fileNum":4069,"id":3773,"width":25,"height":45},{"x":125,"y":0,"fileNum":4069,"id":3774,"width":25,"height":45},{"x":0,"y":45,"fileNum":4069,"id":3775,"width":25,"height":45},{"x":25,"y":45,"fileNum":4069,"id":3776,"width":25,"height":45},{"x":50,"y":45,"fileNum":4069,"id":3777,"width":25,"height":45},{"x":75,"y":45,"fileNum":4069,"id":3778,"width":25,"height":45},{"x":100,"y":45,"fileNum":4069,"id":3779,"width":25,"height":45},{"x":125,"y":45,"fileNum":4069,"id":3780,"width":25,"height":45},{"x":0,"y":90,"fileNum":4069,"id":3781,"width":25,"height":45},{"x":25,"y":90,"fileNum":4069,"id":3782,"width":25,"height":45},{"x":50,"y":90,"fileNum":4069,"id":3783,"width":25,"height":45},{"x":75,"y":90,"fileNum":4069,"id":3784,"width":25,"height":45},{"x":100,"y":90,"fileNum":4069,"id":3785,"width":25,"height":45},{"x":0,"y":135,"fileNum":4069,"id":3786,"width":25,"height":45},{"x":25,"y":135,"fileNum":4069,"id":3787,"width":25,"height":45},{"x":50,"y":135,"fileNum":4069,"id":3788,"width":25,"height":45},{"x":75,"y":135,"fileNum":4069,"id":3789,"width":25,"height":45},{"x":100,"y":135,"fileNum":4069,"id":3790,"width":25,"height":45},{"x":0,"y":0,"fileNum":2039,"id":3795,"width":17,"height":50},{"x":17,"y":0,"fileNum":2039,"id":3796,"width":17,"height":50},{"x":34,"y":0,"fileNum":2039,"id":3797,"width":17,"height":50},{"x":51,"y":0,"fileNum":2039,"id":3798,"width":17,"height":50},{"x":0,"y":0,"fileNum":2098,"id":3799,"width":17,"height":50},{"x":17,"y":0,"fileNum":2098,"id":3800,"width":17,"height":50},{"x":34,"y":0,"fileNum":2098,"id":3801,"width":17,"height":50},{"x":51,"y":0,"fileNum":2098,"id":3802,"width":17,"height":50},{"x":0,"y":0,"fileNum":2099,"id":3803,"width":17,"height":50},{"x":17,"y":0,"fileNum":2099,"id":3804,"width":17,"height":50},{"x":34,"y":0,"fileNum":2099,"id":3805,"width":17,"height":50},{"x":51,"y":0,"fileNum":2099,"id":3806,"width":17,"height":50},{"x":0,"y":0,"fileNum":2100,"id":3807,"width":17,"height":50},{"x":17,"y":0,"fileNum":2100,"id":3808,"width":17,"height":50},{"x":34,"y":0,"fileNum":2100,"id":3809,"width":17,"height":50},{"x":51,"y":0,"fileNum":2100,"id":3810,"width":17,"height":50},{"x":0,"y":0,"fileNum":2101,"id":3811,"width":17,"height":50},{"x":17,"y":0,"fileNum":2101,"id":3812,"width":17,"height":50},{"x":34,"y":0,"fileNum":2101,"id":3813,"width":17,"height":50},{"x":51,"y":0,"fileNum":2101,"id":3814,"width":17,"height":50},{"x":0,"y":0,"fileNum":2102,"id":3815,"width":17,"height":50},{"x":17,"y":0,"fileNum":2102,"id":3816,"width":17,"height":50},{"x":34,"y":0,"fileNum":2102,"id":3817,"width":17,"height":50},{"x":51,"y":0,"fileNum":2102,"id":3818,"width":17,"height":50},{"x":0,"y":0,"fileNum":2103,"id":3819,"width":17,"height":50},{"x":17,"y":0,"fileNum":2103,"id":3820,"width":17,"height":50},{"x":34,"y":0,"fileNum":2103,"id":3821,"width":17,"height":50},{"x":51,"y":0,"fileNum":2103,"id":3822,"width":17,"height":50},{"x":0,"y":0,"fileNum":2104,"id":3823,"width":17,"height":50},{"x":17,"y":0,"fileNum":2104,"id":3824,"width":17,"height":50},{"x":34,"y":0,"fileNum":2104,"id":3825,"width":17,"height":50},{"x":51,"y":0,"fileNum":2104,"id":3826,"width":17,"height":50},{"x":0,"y":0,"fileNum":2107,"id":3827,"width":17,"height":50},{"x":17,"y":0,"fileNum":2107,"id":3828,"width":17,"height":50},{"x":34,"y":0,"fileNum":2107,"id":3829,"width":17,"height":50},{"x":51,"y":0,"fileNum":2107,"id":3830,"width":17,"height":50},{"x":0,"y":0,"fileNum":4079,"id":3831,"width":25,"height":52},{"x":25,"y":0,"fileNum":4079,"id":3832,"width":25,"height":52},{"x":50,"y":0,"fileNum":4079,"id":3833,"width":25,"height":52},{"x":75,"y":0,"fileNum":4079,"id":3834,"width":25,"height":52},{"x":100,"y":0,"fileNum":4079,"id":3835,"width":25,"height":52},{"x":125,"y":0,"fileNum":4079,"id":3836,"width":25,"height":52},{"x":0,"y":52,"fileNum":4079,"id":3837,"width":25,"height":52},{"x":25,"y":52,"fileNum":4079,"id":3838,"width":25,"height":52},{"x":50,"y":52,"fileNum":4079,"id":3839,"width":25,"height":52},{"x":75,"y":52,"fileNum":4079,"id":3840,"width":25,"height":52},{"x":100,"y":52,"fileNum":4079,"id":3841,"width":25,"height":52},{"x":125,"y":52,"fileNum":4079,"id":3842,"width":25,"height":52},{"x":0,"y":104,"fileNum":4079,"id":3843,"width":25,"height":52},{"x":25,"y":104,"fileNum":4079,"id":3844,"width":25,"height":52},{"x":50,"y":104,"fileNum":4079,"id":3845,"width":25,"height":52},{"x":75,"y":104,"fileNum":4079,"id":3846,"width":25,"height":52},{"x":100,"y":104,"fileNum":4079,"id":3847,"width":25,"height":52},{"x":0,"y":156,"fileNum":4079,"id":3848,"width":25,"height":52},{"x":25,"y":156,"fileNum":4079,"id":3849,"width":25,"height":52},{"x":50,"y":156,"fileNum":4079,"id":3850,"width":25,"height":52},{"x":75,"y":156,"fileNum":4079,"id":3851,"width":25,"height":52},{"x":100,"y":156,"fileNum":4079,"id":3852,"width":25,"height":52},{"x":0,"y":0,"fileNum":15202,"id":3857,"width":55,"height":100},{"x":56,"y":0,"fileNum":15202,"id":3858,"width":55,"height":100},{"x":112,"y":0,"fileNum":15202,"id":3859,"width":55,"height":100},{"x":168,"y":0,"fileNum":15202,"id":3860,"width":55,"height":100},{"x":224,"y":0,"fileNum":15202,"id":3861,"width":55,"height":100},{"x":280,"y":0,"fileNum":15202,"id":3862,"width":55,"height":100},{"x":336,"y":0,"fileNum":15202,"id":3863,"width":55,"height":100},{"x":392,"y":0,"fileNum":15202,"id":3864,"width":55,"height":100},{"x":448,"y":0,"fileNum":15202,"id":3865,"width":55,"height":100},{"x":504,"y":0,"fileNum":15202,"id":3866,"width":55,"height":100},{"x":560,"y":0,"fileNum":15202,"id":3867,"width":55,"height":100},{"x":616,"y":0,"fileNum":15202,"id":3868,"width":55,"height":100},{"x":672,"y":0,"fileNum":15202,"id":3869,"width":55,"height":100},{"x":728,"y":0,"fileNum":15202,"id":3870,"width":55,"height":100},{"x":784,"y":0,"fileNum":15202,"id":3871,"width":55,"height":100},{"x":840,"y":0,"fileNum":15202,"id":3872,"width":55,"height":100},{"x":896,"y":0,"fileNum":15202,"id":3873,"width":55,"height":100},{"x":952,"y":0,"fileNum":15202,"id":3874,"width":55,"height":100},{"x":1008,"y":0,"fileNum":15202,"id":3875,"width":55,"height":100},{"x":1064,"y":0,"fileNum":15202,"id":3876,"width":55,"height":100},{"x":0,"y":0,"fileNum":406,"id":3878,"width":25,"height":45},{"x":25,"y":0,"fileNum":406,"id":3879,"width":25,"height":45},{"x":50,"y":0,"fileNum":406,"id":3880,"width":25,"height":45},{"x":75,"y":0,"fileNum":406,"id":3881,"width":25,"height":45},{"x":100,"y":0,"fileNum":406,"id":3882,"width":25,"height":45},{"x":125,"y":0,"fileNum":406,"id":3883,"width":25,"height":45},{"x":0,"y":45,"fileNum":406,"id":3884,"width":25,"height":45},{"x":25,"y":45,"fileNum":406,"id":3885,"width":25,"height":45},{"x":50,"y":45,"fileNum":406,"id":3886,"width":25,"height":45},{"x":75,"y":45,"fileNum":406,"id":3887,"width":25,"height":45},{"x":100,"y":45,"fileNum":406,"id":3888,"width":25,"height":45},{"x":125,"y":45,"fileNum":406,"id":3889,"width":25,"height":45},{"x":0,"y":90,"fileNum":406,"id":3890,"width":25,"height":45},{"x":25,"y":90,"fileNum":406,"id":3891,"width":25,"height":45},{"x":50,"y":90,"fileNum":406,"id":3892,"width":25,"height":45},{"x":75,"y":90,"fileNum":406,"id":3893,"width":25,"height":45},{"x":100,"y":90,"fileNum":406,"id":3894,"width":25,"height":45},{"x":0,"y":135,"fileNum":406,"id":3895,"width":25,"height":45},{"x":25,"y":135,"fileNum":406,"id":3896,"width":25,"height":45},{"x":50,"y":135,"fileNum":406,"id":3897,"width":25,"height":45},{"x":75,"y":135,"fileNum":406,"id":3898,"width":25,"height":45},{"x":100,"y":135,"fileNum":406,"id":3899,"width":25,"height":45},{"x":0,"y":0,"fileNum":407,"id":3904,"width":25,"height":45},{"x":25,"y":0,"fileNum":407,"id":3905,"width":25,"height":45},{"x":50,"y":0,"fileNum":407,"id":3906,"width":25,"height":45},{"x":75,"y":0,"fileNum":407,"id":3907,"width":25,"height":45},{"x":100,"y":0,"fileNum":407,"id":3908,"width":25,"height":45},{"x":125,"y":0,"fileNum":407,"id":3909,"width":25,"height":45},{"x":0,"y":45,"fileNum":407,"id":3910,"width":25,"height":45},{"x":25,"y":45,"fileNum":407,"id":3911,"width":25,"height":45},{"x":50,"y":45,"fileNum":407,"id":3912,"width":25,"height":45},{"x":75,"y":45,"fileNum":407,"id":3913,"width":25,"height":45},{"x":100,"y":45,"fileNum":407,"id":3914,"width":25,"height":45},{"x":125,"y":45,"fileNum":407,"id":3915,"width":25,"height":45},{"x":0,"y":90,"fileNum":407,"id":3916,"width":25,"height":45},{"x":25,"y":90,"fileNum":407,"id":3917,"width":25,"height":45},{"x":50,"y":90,"fileNum":407,"id":3918,"width":25,"height":45},{"x":75,"y":90,"fileNum":407,"id":3919,"width":25,"height":45},{"x":100,"y":90,"fileNum":407,"id":3920,"width":25,"height":45},{"x":0,"y":135,"fileNum":407,"id":3921,"width":25,"height":45},{"x":25,"y":135,"fileNum":407,"id":3922,"width":25,"height":45},{"x":50,"y":135,"fileNum":407,"id":3923,"width":25,"height":45},{"x":75,"y":135,"fileNum":407,"id":3924,"width":25,"height":45},{"x":100,"y":135,"fileNum":407,"id":3925,"width":25,"height":45},{"x":0,"y":0,"fileNum":409,"id":3930,"width":25,"height":45},{"x":25,"y":0,"fileNum":409,"id":3931,"width":25,"height":45},{"x":50,"y":0,"fileNum":409,"id":3932,"width":25,"height":45},{"x":75,"y":0,"fileNum":409,"id":3933,"width":25,"height":45},{"x":100,"y":0,"fileNum":409,"id":3934,"width":25,"height":45},{"x":125,"y":0,"fileNum":409,"id":3935,"width":25,"height":45},{"x":0,"y":45,"fileNum":409,"id":3936,"width":25,"height":45},{"x":25,"y":45,"fileNum":409,"id":3937,"width":25,"height":45},{"x":50,"y":45,"fileNum":409,"id":3938,"width":25,"height":45},{"x":75,"y":45,"fileNum":409,"id":3939,"width":25,"height":45},{"x":100,"y":45,"fileNum":409,"id":3940,"width":25,"height":45},{"x":125,"y":45,"fileNum":409,"id":3941,"width":25,"height":45},{"x":0,"y":90,"fileNum":409,"id":3942,"width":25,"height":45},{"x":25,"y":90,"fileNum":409,"id":3943,"width":25,"height":45},{"x":50,"y":90,"fileNum":409,"id":3944,"width":25,"height":45},{"x":75,"y":90,"fileNum":409,"id":3945,"width":25,"height":45},{"x":100,"y":90,"fileNum":409,"id":3946,"width":25,"height":45},{"x":0,"y":135,"fileNum":409,"id":3947,"width":25,"height":45},{"x":25,"y":135,"fileNum":409,"id":3948,"width":25,"height":45},{"x":50,"y":135,"fileNum":409,"id":3949,"width":25,"height":45},{"x":75,"y":135,"fileNum":409,"id":3950,"width":25,"height":45},{"x":100,"y":135,"fileNum":409,"id":3951,"width":25,"height":45},{"x":0,"y":0,"fileNum":410,"id":3956,"width":25,"height":45},{"x":25,"y":0,"fileNum":410,"id":3957,"width":25,"height":45},{"x":50,"y":0,"fileNum":410,"id":3958,"width":25,"height":45},{"x":75,"y":0,"fileNum":410,"id":3959,"width":25,"height":45},{"x":100,"y":0,"fileNum":410,"id":3960,"width":25,"height":45},{"x":125,"y":0,"fileNum":410,"id":3961,"width":25,"height":45},{"x":0,"y":45,"fileNum":410,"id":3962,"width":25,"height":45},{"x":25,"y":45,"fileNum":410,"id":3963,"width":25,"height":45},{"x":50,"y":45,"fileNum":410,"id":3964,"width":25,"height":45},{"x":75,"y":45,"fileNum":410,"id":3965,"width":25,"height":45},{"x":100,"y":45,"fileNum":410,"id":3966,"width":25,"height":45},{"x":125,"y":45,"fileNum":410,"id":3967,"width":25,"height":45},{"x":0,"y":90,"fileNum":410,"id":3968,"width":25,"height":45},{"x":25,"y":90,"fileNum":410,"id":3969,"width":25,"height":45},{"x":50,"y":90,"fileNum":410,"id":3970,"width":25,"height":45},{"x":75,"y":90,"fileNum":410,"id":3971,"width":25,"height":45},{"x":100,"y":90,"fileNum":410,"id":3972,"width":25,"height":45},{"x":0,"y":135,"fileNum":410,"id":3973,"width":25,"height":45},{"x":25,"y":135,"fileNum":410,"id":3974,"width":25,"height":45},{"x":50,"y":135,"fileNum":410,"id":3975,"width":25,"height":45},{"x":75,"y":135,"fileNum":410,"id":3976,"width":25,"height":45},{"x":100,"y":135,"fileNum":410,"id":3977,"width":25,"height":45},{"x":0,"y":0,"fileNum":15203,"id":3982,"width":50,"height":50},{"x":51,"y":0,"fileNum":15203,"id":3983,"width":50,"height":50},{"x":102,"y":0,"fileNum":15203,"id":3984,"width":50,"height":50},{"x":153,"y":0,"fileNum":15203,"id":3985,"width":50,"height":50},{"x":204,"y":0,"fileNum":15203,"id":3986,"width":50,"height":50},{"x":255,"y":0,"fileNum":15203,"id":3987,"width":50,"height":50},{"x":306,"y":0,"fileNum":15203,"id":3988,"width":50,"height":50},{"x":357,"y":0,"fileNum":15203,"id":3989,"width":50,"height":50},{"x":408,"y":0,"fileNum":15203,"id":3990,"width":50,"height":50},{"x":459,"y":0,"fileNum":15203,"id":3991,"width":50,"height":50},{"x":510,"y":0,"fileNum":15203,"id":3992,"width":50,"height":50},{"x":0,"y":0,"fileNum":12011,"id":3994,"width":64,"height":64},{"x":64,"y":0,"fileNum":12011,"id":3995,"width":64,"height":64},{"x":0,"y":64,"fileNum":12011,"id":3996,"width":64,"height":64},{"x":64,"y":64,"fileNum":12011,"id":3997,"width":64,"height":64},{"x":0,"y":128,"fileNum":12011,"id":3998,"width":64,"height":64},{"x":64,"y":128,"fileNum":12011,"id":3999,"width":64,"height":64},{"x":0,"y":135,"fileNum":178,"id":4000,"width":25,"height":45},{"x":25,"y":135,"fileNum":178,"id":4001,"width":25,"height":45},{"x":50,"y":135,"fileNum":178,"id":4002,"width":25,"height":45},{"x":75,"y":135,"fileNum":178,"id":4003,"width":25,"height":45},{"x":100,"y":135,"fileNum":178,"id":4004,"width":25,"height":45},{"x":0,"y":0,"fileNum":179,"id":4005,"width":25,"height":45},{"x":25,"y":0,"fileNum":179,"id":4006,"width":25,"height":45},{"x":50,"y":0,"fileNum":179,"id":4007,"width":25,"height":45},{"x":75,"y":0,"fileNum":179,"id":4008,"width":25,"height":45},{"x":100,"y":0,"fileNum":179,"id":4009,"width":25,"height":45},{"x":125,"y":0,"fileNum":179,"id":4010,"width":25,"height":45},{"x":0,"y":45,"fileNum":179,"id":4011,"width":25,"height":45},{"x":25,"y":45,"fileNum":179,"id":4012,"width":25,"height":45},{"x":50,"y":45,"fileNum":179,"id":4013,"width":25,"height":45},{"x":75,"y":45,"fileNum":179,"id":4014,"width":25,"height":45},{"x":100,"y":45,"fileNum":179,"id":4015,"width":25,"height":45},{"x":125,"y":45,"fileNum":179,"id":4016,"width":25,"height":45},{"x":0,"y":90,"fileNum":179,"id":4017,"width":25,"height":45},{"x":25,"y":90,"fileNum":179,"id":4018,"width":25,"height":45},{"x":50,"y":90,"fileNum":179,"id":4019,"width":25,"height":45},{"x":75,"y":90,"fileNum":179,"id":4020,"width":25,"height":45},{"x":100,"y":90,"fileNum":179,"id":4021,"width":25,"height":45},{"x":0,"y":135,"fileNum":179,"id":4022,"width":25,"height":45},{"x":25,"y":135,"fileNum":179,"id":4023,"width":25,"height":45},{"x":50,"y":135,"fileNum":179,"id":4024,"width":25,"height":45},{"x":75,"y":135,"fileNum":179,"id":4025,"width":25,"height":45},{"x":100,"y":135,"fileNum":179,"id":4026,"width":25,"height":45},{"x":0,"y":0,"fileNum":180,"id":4027,"width":25,"height":45},{"x":25,"y":0,"fileNum":180,"id":4028,"width":25,"height":45},{"x":50,"y":0,"fileNum":180,"id":4029,"width":25,"height":45},{"x":75,"y":0,"fileNum":180,"id":4030,"width":25,"height":45},{"x":100,"y":0,"fileNum":180,"id":4031,"width":25,"height":45},{"x":125,"y":0,"fileNum":180,"id":4032,"width":25,"height":45},{"x":0,"y":45,"fileNum":180,"id":4033,"width":25,"height":45},{"x":25,"y":45,"fileNum":180,"id":4034,"width":25,"height":45},{"x":50,"y":45,"fileNum":180,"id":4035,"width":25,"height":45},{"x":75,"y":45,"fileNum":180,"id":4036,"width":25,"height":45},{"x":100,"y":45,"fileNum":180,"id":4037,"width":25,"height":45},{"x":125,"y":45,"fileNum":180,"id":4038,"width":25,"height":45},{"x":0,"y":90,"fileNum":180,"id":4039,"width":25,"height":45},{"x":25,"y":90,"fileNum":180,"id":4040,"width":25,"height":45},{"x":50,"y":90,"fileNum":180,"id":4041,"width":25,"height":45},{"x":75,"y":90,"fileNum":180,"id":4042,"width":25,"height":45},{"x":100,"y":90,"fileNum":180,"id":4043,"width":25,"height":45},{"x":0,"y":135,"fileNum":180,"id":4044,"width":25,"height":45},{"x":25,"y":135,"fileNum":180,"id":4045,"width":25,"height":45},{"x":50,"y":135,"fileNum":180,"id":4046,"width":25,"height":45},{"x":75,"y":135,"fileNum":180,"id":4047,"width":25,"height":45},{"x":100,"y":135,"fileNum":180,"id":4048,"width":25,"height":45},{"x":0,"y":0,"fileNum":181,"id":4049,"width":25,"height":45},{"x":25,"y":0,"fileNum":181,"id":4050,"width":25,"height":45},{"x":50,"y":0,"fileNum":181,"id":4051,"width":25,"height":45},{"x":75,"y":0,"fileNum":181,"id":4052,"width":25,"height":45},{"x":100,"y":0,"fileNum":181,"id":4053,"width":25,"height":45},{"x":125,"y":0,"fileNum":181,"id":4054,"width":25,"height":45},{"x":0,"y":45,"fileNum":181,"id":4055,"width":25,"height":45},{"x":25,"y":45,"fileNum":181,"id":4056,"width":25,"height":45},{"x":50,"y":45,"fileNum":181,"id":4057,"width":25,"height":45},{"x":75,"y":45,"fileNum":181,"id":4058,"width":25,"height":45},{"x":100,"y":45,"fileNum":181,"id":4059,"width":25,"height":45},{"x":125,"y":45,"fileNum":181,"id":4060,"width":25,"height":45},{"x":0,"y":90,"fileNum":181,"id":4061,"width":25,"height":45},{"x":25,"y":90,"fileNum":181,"id":4062,"width":25,"height":45},{"x":50,"y":90,"fileNum":181,"id":4063,"width":25,"height":45},{"x":75,"y":90,"fileNum":181,"id":4064,"width":25,"height":45},{"x":100,"y":90,"fileNum":181,"id":4065,"width":25,"height":45},{"x":0,"y":135,"fileNum":181,"id":4066,"width":25,"height":45},{"x":25,"y":135,"fileNum":181,"id":4067,"width":25,"height":45},{"x":50,"y":135,"fileNum":181,"id":4068,"width":25,"height":45},{"x":75,"y":135,"fileNum":181,"id":4069,"width":25,"height":45},{"x":100,"y":135,"fileNum":181,"id":4070,"width":25,"height":45},{"x":0,"y":0,"fileNum":4095,"id":4071,"width":30,"height":20},{"x":29,"y":0,"fileNum":4095,"id":4072,"width":30,"height":20},{"x":58,"y":0,"fileNum":4095,"id":4073,"width":30,"height":20},{"x":87,"y":0,"fileNum":4095,"id":4074,"width":30,"height":20},{"x":0,"y":19,"fileNum":4095,"id":4075,"width":30,"height":20},{"x":29,"y":19,"fileNum":4095,"id":4076,"width":30,"height":20},{"x":58,"y":19,"fileNum":4095,"id":4077,"width":30,"height":20},{"x":87,"y":19,"fileNum":4095,"id":4078,"width":30,"height":20},{"x":0,"y":38,"fileNum":4095,"id":4079,"width":30,"height":20},{"x":29,"y":38,"fileNum":4095,"id":4080,"width":30,"height":20},{"x":58,"y":38,"fileNum":4095,"id":4081,"width":30,"height":20},{"x":87,"y":38,"fileNum":4095,"id":4082,"width":30,"height":20},{"x":0,"y":57,"fileNum":4095,"id":4083,"width":30,"height":20},{"x":29,"y":57,"fileNum":4095,"id":4084,"width":30,"height":20},{"x":58,"y":57,"fileNum":4095,"id":4085,"width":30,"height":20},{"x":87,"y":57,"fileNum":4095,"id":4086,"width":30,"height":20},{"x":0,"y":0,"fileNum":182,"id":4087,"width":25,"height":45},{"x":25,"y":0,"fileNum":182,"id":4088,"width":25,"height":45},{"x":50,"y":0,"fileNum":182,"id":4089,"width":25,"height":45},{"x":75,"y":0,"fileNum":182,"id":4090,"width":25,"height":45},{"x":100,"y":0,"fileNum":182,"id":4091,"width":25,"height":45},{"x":125,"y":0,"fileNum":182,"id":4092,"width":25,"height":45},{"x":0,"y":45,"fileNum":182,"id":4093,"width":25,"height":45},{"x":25,"y":45,"fileNum":182,"id":4094,"width":25,"height":45},{"x":50,"y":45,"fileNum":182,"id":4095,"width":25,"height":45},{"x":75,"y":45,"fileNum":182,"id":4096,"width":25,"height":45},{"x":100,"y":45,"fileNum":182,"id":4097,"width":25,"height":45},{"x":125,"y":45,"fileNum":182,"id":4098,"width":25,"height":45},{"x":0,"y":90,"fileNum":182,"id":4099,"width":25,"height":45},{"x":25,"y":90,"fileNum":182,"id":4100,"width":25,"height":45},{"x":50,"y":90,"fileNum":182,"id":4101,"width":25,"height":45},{"x":75,"y":90,"fileNum":182,"id":4102,"width":25,"height":45},{"x":100,"y":90,"fileNum":182,"id":4103,"width":25,"height":45},{"x":0,"y":135,"fileNum":182,"id":4104,"width":25,"height":45},{"x":25,"y":135,"fileNum":182,"id":4105,"width":25,"height":45},{"x":50,"y":135,"fileNum":182,"id":4106,"width":25,"height":45},{"x":75,"y":135,"fileNum":182,"id":4107,"width":25,"height":45},{"x":100,"y":135,"fileNum":182,"id":4108,"width":25,"height":45},{"x":0,"y":0,"fileNum":24005,"id":4109,"width":25,"height":45},{"x":25,"y":0,"fileNum":24005,"id":4110,"width":25,"height":45},{"x":50,"y":0,"fileNum":24005,"id":4111,"width":25,"height":45},{"x":75,"y":0,"fileNum":24005,"id":4112,"width":25,"height":45},{"x":100,"y":0,"fileNum":24005,"id":4113,"width":25,"height":45},{"x":125,"y":0,"fileNum":24005,"id":4114,"width":25,"height":45},{"x":0,"y":45,"fileNum":24005,"id":4115,"width":25,"height":45},{"x":25,"y":45,"fileNum":24005,"id":4116,"width":25,"height":45},{"x":50,"y":45,"fileNum":24005,"id":4117,"width":25,"height":45},{"x":75,"y":45,"fileNum":24005,"id":4118,"width":25,"height":45},{"x":100,"y":45,"fileNum":24005,"id":4119,"width":25,"height":45},{"x":125,"y":45,"fileNum":24005,"id":4120,"width":25,"height":45},{"x":0,"y":90,"fileNum":24005,"id":4121,"width":25,"height":45},{"x":25,"y":90,"fileNum":24005,"id":4122,"width":25,"height":45},{"x":50,"y":90,"fileNum":24005,"id":4123,"width":25,"height":45},{"x":75,"y":90,"fileNum":24005,"id":4124,"width":25,"height":45},{"x":100,"y":90,"fileNum":24005,"id":4125,"width":25,"height":45},{"x":0,"y":135,"fileNum":24005,"id":4126,"width":25,"height":45},{"x":25,"y":135,"fileNum":24005,"id":4127,"width":25,"height":45},{"x":50,"y":135,"fileNum":24005,"id":4128,"width":25,"height":45},{"x":75,"y":135,"fileNum":24005,"id":4129,"width":25,"height":45},{"x":100,"y":135,"fileNum":24005,"id":4130,"width":25,"height":45},{"x":0,"y":192,"fileNum":12011,"id":4131,"width":64,"height":64},{"x":64,"y":192,"fileNum":12011,"id":4132,"width":64,"height":64},{"x":128,"y":128,"fileNum":12011,"id":4133,"width":64,"height":64},{"x":192,"y":128,"fileNum":12011,"id":4134,"width":64,"height":64},{"x":0,"y":0,"fileNum":183,"id":4135,"width":25,"height":45},{"x":25,"y":0,"fileNum":183,"id":4136,"width":25,"height":45},{"x":50,"y":0,"fileNum":183,"id":4137,"width":25,"height":45},{"x":75,"y":0,"fileNum":183,"id":4138,"width":25,"height":45},{"x":100,"y":0,"fileNum":183,"id":4139,"width":25,"height":45},{"x":125,"y":0,"fileNum":183,"id":4140,"width":25,"height":45},{"x":0,"y":45,"fileNum":183,"id":4141,"width":25,"height":45},{"x":25,"y":45,"fileNum":183,"id":4142,"width":25,"height":45},{"x":50,"y":45,"fileNum":183,"id":4143,"width":25,"height":45},{"x":75,"y":45,"fileNum":183,"id":4144,"width":25,"height":45},{"x":100,"y":45,"fileNum":183,"id":4145,"width":25,"height":45},{"x":125,"y":45,"fileNum":183,"id":4146,"width":25,"height":45},{"x":0,"y":90,"fileNum":183,"id":4147,"width":25,"height":45},{"x":25,"y":90,"fileNum":183,"id":4148,"width":25,"height":45},{"x":50,"y":90,"fileNum":183,"id":4149,"width":25,"height":45},{"x":75,"y":90,"fileNum":183,"id":4150,"width":25,"height":45},{"x":100,"y":90,"fileNum":183,"id":4151,"width":25,"height":45},{"x":0,"y":135,"fileNum":183,"id":4152,"width":25,"height":45},{"x":25,"y":135,"fileNum":183,"id":4153,"width":25,"height":45},{"x":50,"y":135,"fileNum":183,"id":4154,"width":25,"height":45},{"x":75,"y":135,"fileNum":183,"id":4155,"width":25,"height":45},{"x":100,"y":135,"fileNum":183,"id":4156,"width":25,"height":45},{"x":0,"y":0,"fileNum":184,"id":4157,"width":25,"height":45},{"x":25,"y":0,"fileNum":184,"id":4158,"width":25,"height":45},{"x":50,"y":0,"fileNum":184,"id":4159,"width":25,"height":45},{"x":75,"y":0,"fileNum":184,"id":4160,"width":25,"height":45},{"x":100,"y":0,"fileNum":184,"id":4161,"width":25,"height":45},{"x":125,"y":0,"fileNum":184,"id":4162,"width":25,"height":45},{"x":0,"y":45,"fileNum":184,"id":4163,"width":25,"height":45},{"x":25,"y":45,"fileNum":184,"id":4164,"width":25,"height":45},{"x":50,"y":45,"fileNum":184,"id":4165,"width":25,"height":45},{"x":75,"y":45,"fileNum":184,"id":4166,"width":25,"height":45},{"x":100,"y":45,"fileNum":184,"id":4167,"width":25,"height":45},{"x":125,"y":45,"fileNum":184,"id":4168,"width":25,"height":45},{"x":0,"y":90,"fileNum":184,"id":4169,"width":25,"height":45},{"x":25,"y":90,"fileNum":184,"id":4170,"width":25,"height":45},{"x":50,"y":90,"fileNum":184,"id":4171,"width":25,"height":45},{"x":75,"y":90,"fileNum":184,"id":4172,"width":25,"height":45},{"x":100,"y":90,"fileNum":184,"id":4173,"width":25,"height":45},{"x":0,"y":135,"fileNum":184,"id":4174,"width":25,"height":45},{"x":25,"y":135,"fileNum":184,"id":4175,"width":25,"height":45},{"x":50,"y":135,"fileNum":184,"id":4176,"width":25,"height":45},{"x":75,"y":135,"fileNum":184,"id":4177,"width":25,"height":45},{"x":100,"y":135,"fileNum":184,"id":4178,"width":25,"height":45},{"x":0,"y":0,"fileNum":185,"id":4179,"width":25,"height":45},{"x":25,"y":0,"fileNum":185,"id":4180,"width":25,"height":45},{"x":50,"y":0,"fileNum":185,"id":4181,"width":25,"height":45},{"x":75,"y":0,"fileNum":185,"id":4182,"width":25,"height":45},{"x":100,"y":0,"fileNum":185,"id":4183,"width":25,"height":45},{"x":125,"y":0,"fileNum":185,"id":4184,"width":25,"height":45},{"x":0,"y":45,"fileNum":185,"id":4185,"width":25,"height":45},{"x":25,"y":45,"fileNum":185,"id":4186,"width":25,"height":45},{"x":50,"y":45,"fileNum":185,"id":4187,"width":25,"height":45},{"x":75,"y":45,"fileNum":185,"id":4188,"width":25,"height":45},{"x":100,"y":45,"fileNum":185,"id":4189,"width":25,"height":45},{"x":125,"y":45,"fileNum":185,"id":4190,"width":25,"height":45},{"x":0,"y":90,"fileNum":185,"id":4191,"width":25,"height":45},{"x":25,"y":90,"fileNum":185,"id":4192,"width":25,"height":45},{"x":50,"y":90,"fileNum":185,"id":4193,"width":25,"height":45},{"x":75,"y":90,"fileNum":185,"id":4194,"width":25,"height":45},{"x":100,"y":90,"fileNum":185,"id":4195,"width":25,"height":45},{"x":0,"y":135,"fileNum":185,"id":4196,"width":25,"height":45},{"x":25,"y":135,"fileNum":185,"id":4197,"width":25,"height":45},{"x":50,"y":135,"fileNum":185,"id":4198,"width":25,"height":45},{"x":75,"y":135,"fileNum":185,"id":4199,"width":25,"height":45},{"x":100,"y":135,"fileNum":185,"id":4200,"width":25,"height":45},{"x":0,"y":0,"fileNum":186,"id":4201,"width":25,"height":45},{"x":25,"y":0,"fileNum":186,"id":4202,"width":25,"height":45},{"x":50,"y":0,"fileNum":186,"id":4203,"width":25,"height":45},{"x":75,"y":0,"fileNum":186,"id":4204,"width":25,"height":45},{"x":100,"y":0,"fileNum":186,"id":4205,"width":25,"height":45},{"x":125,"y":0,"fileNum":186,"id":4206,"width":25,"height":45},{"x":0,"y":45,"fileNum":186,"id":4207,"width":25,"height":45},{"x":25,"y":45,"fileNum":186,"id":4208,"width":25,"height":45},{"x":50,"y":45,"fileNum":186,"id":4209,"width":25,"height":45},{"x":75,"y":45,"fileNum":186,"id":4210,"width":25,"height":45},{"x":100,"y":45,"fileNum":186,"id":4211,"width":25,"height":45},{"x":125,"y":45,"fileNum":186,"id":4212,"width":25,"height":45},{"x":0,"y":90,"fileNum":186,"id":4213,"width":25,"height":45},{"x":25,"y":90,"fileNum":186,"id":4214,"width":25,"height":45},{"x":50,"y":90,"fileNum":186,"id":4215,"width":25,"height":45},{"x":75,"y":90,"fileNum":186,"id":4216,"width":25,"height":45},{"x":100,"y":90,"fileNum":186,"id":4217,"width":25,"height":45},{"x":0,"y":135,"fileNum":186,"id":4218,"width":25,"height":45},{"x":25,"y":135,"fileNum":186,"id":4219,"width":25,"height":45},{"x":50,"y":135,"fileNum":186,"id":4220,"width":25,"height":45},{"x":75,"y":135,"fileNum":186,"id":4221,"width":25,"height":45},{"x":100,"y":135,"fileNum":186,"id":4222,"width":25,"height":45},{"x":0,"y":0,"fileNum":187,"id":4223,"width":25,"height":45},{"x":25,"y":0,"fileNum":187,"id":4224,"width":25,"height":45},{"x":50,"y":0,"fileNum":187,"id":4225,"width":25,"height":45},{"x":75,"y":0,"fileNum":187,"id":4226,"width":25,"height":45},{"x":100,"y":0,"fileNum":187,"id":4227,"width":25,"height":45},{"x":125,"y":0,"fileNum":187,"id":4228,"width":25,"height":45},{"x":0,"y":45,"fileNum":187,"id":4229,"width":25,"height":45},{"x":25,"y":45,"fileNum":187,"id":4230,"width":25,"height":45},{"x":50,"y":45,"fileNum":187,"id":4231,"width":25,"height":45},{"x":75,"y":45,"fileNum":187,"id":4232,"width":25,"height":45},{"x":100,"y":45,"fileNum":187,"id":4233,"width":25,"height":45},{"x":125,"y":45,"fileNum":187,"id":4234,"width":25,"height":45},{"x":0,"y":90,"fileNum":187,"id":4235,"width":25,"height":45},{"x":25,"y":90,"fileNum":187,"id":4236,"width":25,"height":45},{"x":50,"y":90,"fileNum":187,"id":4237,"width":25,"height":45},{"x":75,"y":90,"fileNum":187,"id":4238,"width":25,"height":45},{"x":100,"y":90,"fileNum":187,"id":4239,"width":25,"height":45},{"x":0,"y":135,"fileNum":187,"id":4240,"width":25,"height":45},{"x":25,"y":135,"fileNum":187,"id":4241,"width":25,"height":45},{"x":50,"y":135,"fileNum":187,"id":4242,"width":25,"height":45},{"x":75,"y":135,"fileNum":187,"id":4243,"width":25,"height":45},{"x":100,"y":135,"fileNum":187,"id":4244,"width":25,"height":45},{"x":0,"y":0,"fileNum":16018,"id":4245,"width":25,"height":45},{"x":25,"y":0,"fileNum":16018,"id":4246,"width":25,"height":45},{"x":50,"y":0,"fileNum":16018,"id":4247,"width":25,"height":45},{"x":75,"y":0,"fileNum":16018,"id":4248,"width":25,"height":45},{"x":100,"y":0,"fileNum":16018,"id":4249,"width":25,"height":45},{"x":125,"y":0,"fileNum":16018,"id":4250,"width":25,"height":45},{"x":0,"y":45,"fileNum":16018,"id":4251,"width":25,"height":45},{"x":25,"y":45,"fileNum":16018,"id":4252,"width":25,"height":45},{"x":50,"y":45,"fileNum":16018,"id":4253,"width":25,"height":45},{"x":75,"y":45,"fileNum":16018,"id":4254,"width":25,"height":45},{"x":100,"y":45,"fileNum":16018,"id":4255,"width":25,"height":45},{"x":125,"y":45,"fileNum":16018,"id":4256,"width":25,"height":45},{"x":0,"y":90,"fileNum":16018,"id":4257,"width":25,"height":45},{"x":25,"y":90,"fileNum":16018,"id":4258,"width":25,"height":45},{"x":50,"y":90,"fileNum":16018,"id":4259,"width":25,"height":45},{"x":75,"y":90,"fileNum":16018,"id":4260,"width":25,"height":45},{"x":100,"y":90,"fileNum":16018,"id":4261,"width":25,"height":45},{"x":0,"y":135,"fileNum":16018,"id":4262,"width":25,"height":45},{"x":25,"y":135,"fileNum":16018,"id":4263,"width":25,"height":45},{"x":50,"y":135,"fileNum":16018,"id":4264,"width":25,"height":45},{"x":75,"y":135,"fileNum":16018,"id":4265,"width":25,"height":45},{"x":100,"y":135,"fileNum":16018,"id":4266,"width":25,"height":45},{"x":0,"y":0,"fileNum":16019,"id":4267,"width":25,"height":45},{"x":25,"y":0,"fileNum":16019,"id":4268,"width":25,"height":45},{"x":50,"y":0,"fileNum":16019,"id":4269,"width":25,"height":45},{"x":75,"y":0,"fileNum":16019,"id":4270,"width":25,"height":45},{"x":100,"y":0,"fileNum":16019,"id":4271,"width":25,"height":45},{"x":125,"y":0,"fileNum":16019,"id":4272,"width":25,"height":45},{"x":0,"y":45,"fileNum":16019,"id":4273,"width":25,"height":45},{"x":25,"y":45,"fileNum":16019,"id":4274,"width":25,"height":45},{"x":50,"y":45,"fileNum":16019,"id":4275,"width":25,"height":45},{"x":75,"y":45,"fileNum":16019,"id":4276,"width":25,"height":45},{"x":100,"y":45,"fileNum":16019,"id":4277,"width":25,"height":45},{"x":125,"y":45,"fileNum":16019,"id":4278,"width":25,"height":45},{"x":0,"y":90,"fileNum":16019,"id":4279,"width":25,"height":45},{"x":25,"y":90,"fileNum":16019,"id":4280,"width":25,"height":45},{"x":50,"y":90,"fileNum":16019,"id":4281,"width":25,"height":45},{"x":75,"y":90,"fileNum":16019,"id":4282,"width":25,"height":45},{"x":100,"y":90,"fileNum":16019,"id":4283,"width":25,"height":45},{"x":0,"y":135,"fileNum":16019,"id":4284,"width":25,"height":45},{"x":25,"y":135,"fileNum":16019,"id":4285,"width":25,"height":45},{"x":50,"y":135,"fileNum":16019,"id":4286,"width":25,"height":45},{"x":75,"y":135,"fileNum":16019,"id":4287,"width":25,"height":45},{"x":100,"y":135,"fileNum":16019,"id":4288,"width":25,"height":45},{"x":0,"y":0,"fileNum":20009,"id":4289,"width":25,"height":45},{"x":25,"y":0,"fileNum":20009,"id":4290,"width":25,"height":45},{"x":50,"y":0,"fileNum":20009,"id":4291,"width":25,"height":45},{"x":75,"y":0,"fileNum":20009,"id":4292,"width":25,"height":45},{"x":100,"y":0,"fileNum":20009,"id":4293,"width":25,"height":45},{"x":125,"y":0,"fileNum":20009,"id":4294,"width":25,"height":45},{"x":0,"y":45,"fileNum":20009,"id":4295,"width":25,"height":45},{"x":25,"y":45,"fileNum":20009,"id":4296,"width":25,"height":45},{"x":50,"y":45,"fileNum":20009,"id":4297,"width":25,"height":45},{"x":75,"y":45,"fileNum":20009,"id":4298,"width":25,"height":45},{"x":100,"y":45,"fileNum":20009,"id":4299,"width":25,"height":45},{"x":125,"y":45,"fileNum":20009,"id":4300,"width":25,"height":45},{"x":0,"y":90,"fileNum":20009,"id":4301,"width":25,"height":45},{"x":25,"y":90,"fileNum":20009,"id":4302,"width":25,"height":45},{"x":50,"y":90,"fileNum":20009,"id":4303,"width":25,"height":45},{"x":75,"y":90,"fileNum":20009,"id":4304,"width":25,"height":45},{"x":100,"y":90,"fileNum":20009,"id":4305,"width":25,"height":45},{"x":0,"y":135,"fileNum":20009,"id":4306,"width":25,"height":45},{"x":25,"y":135,"fileNum":20009,"id":4307,"width":25,"height":45},{"x":50,"y":135,"fileNum":20009,"id":4308,"width":25,"height":45},{"x":75,"y":135,"fileNum":20009,"id":4309,"width":25,"height":45},{"x":100,"y":135,"fileNum":20009,"id":4310,"width":25,"height":45},{"x":0,"y":0,"fileNum":18006,"id":4311,"width":17,"height":16},{"x":17,"y":0,"fileNum":18006,"id":4312,"width":17,"height":16},{"x":128,"y":192,"fileNum":12011,"id":4313,"width":64,"height":64},{"x":34,"y":0,"fileNum":18006,"id":4314,"width":17,"height":16},{"x":51,"y":0,"fileNum":18006,"id":4315,"width":17,"height":16},{"x":0,"y":0,"fileNum":18007,"id":4316,"width":17,"height":16},{"x":17,"y":0,"fileNum":18007,"id":4317,"width":17,"height":16},{"x":34,"y":0,"fileNum":18007,"id":4318,"width":17,"height":16},{"x":51,"y":0,"fileNum":18007,"id":4319,"width":17,"height":16},{"x":0,"y":0,"fileNum":4096,"id":4320,"width":32,"height":25},{"x":31,"y":0,"fileNum":4096,"id":4321,"width":32,"height":25},{"x":0,"y":24,"fileNum":4096,"id":4322,"width":32,"height":25},{"x":31,"y":24,"fileNum":4096,"id":4323,"width":32,"height":25},{"x":2,"y":48,"fileNum":4096,"id":4324,"width":32,"height":25},{"x":32,"y":48,"fileNum":4096,"id":4325,"width":32,"height":25},{"x":0,"y":72,"fileNum":4096,"id":4326,"width":32,"height":25},{"x":31,"y":72,"fileNum":4096,"id":4327,"width":32,"height":25},{"x":0,"y":0,"fileNum":4097,"id":4328,"width":32,"height":25},{"x":31,"y":0,"fileNum":4097,"id":4329,"width":32,"height":25},{"x":0,"y":24,"fileNum":4097,"id":4330,"width":32,"height":25},{"x":31,"y":24,"fileNum":4097,"id":4331,"width":32,"height":25},{"x":1,"y":48,"fileNum":4097,"id":4332,"width":32,"height":25},{"x":32,"y":48,"fileNum":4097,"id":4333,"width":32,"height":25},{"x":0,"y":72,"fileNum":4097,"id":4334,"width":32,"height":25},{"x":31,"y":72,"fileNum":4097,"id":4335,"width":32,"height":25},{"x":0,"y":0,"fileNum":4098,"id":4336,"width":24,"height":48},{"x":24,"y":0,"fileNum":4098,"id":4337,"width":24,"height":48},{"x":47,"y":0,"fileNum":4098,"id":4338,"width":24,"height":48},{"x":70,"y":0,"fileNum":4098,"id":4339,"width":24,"height":48},{"x":94,"y":0,"fileNum":4098,"id":4340,"width":24,"height":48},{"x":119,"y":0,"fileNum":4098,"id":4341,"width":24,"height":48},{"x":143,"y":0,"fileNum":4098,"id":4342,"width":24,"height":48},{"x":166,"y":0,"fileNum":4098,"id":4343,"width":24,"height":48},{"x":0,"y":48,"fileNum":4098,"id":4344,"width":24,"height":48},{"x":24,"y":48,"fileNum":4098,"id":4345,"width":24,"height":48},{"x":47,"y":48,"fileNum":4098,"id":4346,"width":24,"height":48},{"x":70,"y":48,"fileNum":4098,"id":4347,"width":24,"height":48},{"x":94,"y":48,"fileNum":4098,"id":4348,"width":24,"height":48},{"x":118,"y":48,"fileNum":4098,"id":4349,"width":24,"height":48},{"x":142,"y":48,"fileNum":4098,"id":4350,"width":24,"height":48},{"x":166,"y":48,"fileNum":4098,"id":4351,"width":24,"height":48},{"x":0,"y":94,"fileNum":4098,"id":4352,"width":24,"height":48},{"x":23,"y":94,"fileNum":4098,"id":4353,"width":24,"height":48},{"x":46,"y":94,"fileNum":4098,"id":4354,"width":24,"height":48},{"x":70,"y":94,"fileNum":4098,"id":4355,"width":24,"height":48},{"x":94,"y":94,"fileNum":4098,"id":4356,"width":24,"height":48},{"x":117,"y":94,"fileNum":4098,"id":4357,"width":24,"height":48},{"x":141,"y":94,"fileNum":4098,"id":4358,"width":24,"height":48},{"x":165,"y":94,"fileNum":4098,"id":4359,"width":24,"height":48},{"x":0,"y":141,"fileNum":4098,"id":4360,"width":24,"height":48},{"x":23,"y":141,"fileNum":4098,"id":4361,"width":24,"height":48},{"x":47,"y":141,"fileNum":4098,"id":4362,"width":24,"height":48},{"x":70,"y":141,"fileNum":4098,"id":4363,"width":24,"height":48},{"x":94,"y":141,"fileNum":4098,"id":4364,"width":24,"height":48},{"x":118,"y":141,"fileNum":4098,"id":4365,"width":24,"height":48},{"x":143,"y":141,"fileNum":4098,"id":4366,"width":24,"height":48},{"x":166,"y":141,"fileNum":4098,"id":4367,"width":24,"height":48},{"x":0,"y":0,"fileNum":4099,"id":4368,"width":32,"height":25},{"x":31,"y":0,"fileNum":4099,"id":4369,"width":32,"height":25},{"x":62,"y":0,"fileNum":4099,"id":4370,"width":32,"height":25},{"x":0,"y":24,"fileNum":4099,"id":4371,"width":32,"height":25},{"x":31,"y":24,"fileNum":4099,"id":4372,"width":32,"height":25},{"x":62,"y":24,"fileNum":4099,"id":4373,"width":32,"height":25},{"x":0,"y":48,"fileNum":4099,"id":4374,"width":32,"height":25},{"x":31,"y":48,"fileNum":4099,"id":4375,"width":32,"height":25},{"x":62,"y":48,"fileNum":4099,"id":4376,"width":32,"height":25},{"x":0,"y":72,"fileNum":4099,"id":4377,"width":32,"height":25},{"x":31,"y":72,"fileNum":4099,"id":4378,"width":32,"height":25},{"x":62,"y":72,"fileNum":4099,"id":4379,"width":32,"height":25},{"x":0,"y":0,"fileNum":4100,"id":4380,"width":32,"height":25},{"x":31,"y":0,"fileNum":4100,"id":4381,"width":32,"height":25},{"x":62,"y":0,"fileNum":4100,"id":4382,"width":32,"height":25},{"x":0,"y":24,"fileNum":4100,"id":4383,"width":32,"height":25},{"x":31,"y":24,"fileNum":4100,"id":4384,"width":32,"height":25},{"x":62,"y":24,"fileNum":4100,"id":4385,"width":32,"height":25},{"x":0,"y":48,"fileNum":4100,"id":4386,"width":32,"height":25},{"x":31,"y":48,"fileNum":4100,"id":4387,"width":32,"height":25},{"x":62,"y":48,"fileNum":4100,"id":4388,"width":32,"height":25},{"x":0,"y":72,"fileNum":4100,"id":4389,"width":32,"height":25},{"x":31,"y":72,"fileNum":4100,"id":4390,"width":32,"height":25},{"x":62,"y":72,"fileNum":4100,"id":4391,"width":32,"height":25},{"x":0,"y":0,"fileNum":15121,"id":4392,"width":100,"height":100},{"x":100,"y":0,"fileNum":15121,"id":4393,"width":100,"height":100},{"x":200,"y":0,"fileNum":15121,"id":4394,"width":100,"height":100},{"x":300,"y":0,"fileNum":15121,"id":4395,"width":100,"height":100},{"x":1,"y":100,"fileNum":15121,"id":4396,"width":100,"height":100},{"x":100,"y":100,"fileNum":15121,"id":4397,"width":100,"height":100},{"x":200,"y":100,"fileNum":15121,"id":4398,"width":100,"height":100},{"x":300,"y":100,"fileNum":15121,"id":4399,"width":100,"height":100},{"x":0,"y":200,"fileNum":15121,"id":4400,"width":100,"height":100},{"x":100,"y":200,"fileNum":15121,"id":4401,"width":100,"height":100},{"x":200,"y":200,"fileNum":15121,"id":4402,"width":100,"height":100},{"x":300,"y":200,"fileNum":15121,"id":4403,"width":100,"height":100},{"x":0,"y":0,"fileNum":4106,"id":4404,"width":64,"height":64},{"x":64,"y":0,"fileNum":4106,"id":4405,"width":64,"height":64},{"x":128,"y":0,"fileNum":4106,"id":4406,"width":64,"height":64},{"x":192,"y":0,"fileNum":4106,"id":4407,"width":64,"height":64},{"x":0,"y":64,"fileNum":4106,"id":4408,"width":64,"height":64},{"x":64,"y":64,"fileNum":4106,"id":4409,"width":64,"height":64},{"x":128,"y":64,"fileNum":4106,"id":4410,"width":64,"height":64},{"x":192,"y":64,"fileNum":4106,"id":4411,"width":64,"height":64},{"x":0,"y":0,"fileNum":4107,"id":4412,"width":64,"height":64},{"x":64,"y":0,"fileNum":4107,"id":4413,"width":64,"height":64},{"x":128,"y":0,"fileNum":4107,"id":4414,"width":64,"height":64},{"x":192,"y":0,"fileNum":4107,"id":4415,"width":64,"height":64},{"x":0,"y":64,"fileNum":4107,"id":4416,"width":64,"height":64},{"x":64,"y":64,"fileNum":4107,"id":4417,"width":64,"height":64},{"x":128,"y":64,"fileNum":4107,"id":4418,"width":64,"height":64},{"x":192,"y":64,"fileNum":4107,"id":4419,"width":64,"height":64},{"x":0,"y":0,"fileNum":4108,"id":4420,"width":64,"height":64},{"x":64,"y":0,"fileNum":4108,"id":4421,"width":64,"height":64},{"x":128,"y":0,"fileNum":4108,"id":4422,"width":64,"height":64},{"x":192,"y":0,"fileNum":4108,"id":4423,"width":64,"height":64},{"x":0,"y":64,"fileNum":4108,"id":4424,"width":64,"height":64},{"x":64,"y":64,"fileNum":4108,"id":4425,"width":64,"height":64},{"x":128,"y":64,"fileNum":4108,"id":4426,"width":64,"height":64},{"x":192,"y":64,"fileNum":4108,"id":4427,"width":64,"height":64},{"x":0,"y":0,"fileNum":4109,"id":4428,"width":64,"height":64},{"x":64,"y":0,"fileNum":4109,"id":4429,"width":64,"height":64},{"x":128,"y":0,"fileNum":4109,"id":4430,"width":64,"height":64},{"x":192,"y":0,"fileNum":4109,"id":4431,"width":64,"height":64},{"x":0,"y":64,"fileNum":4109,"id":4432,"width":64,"height":64},{"x":64,"y":64,"fileNum":4109,"id":4433,"width":64,"height":64},{"x":128,"y":64,"fileNum":4109,"id":4434,"width":64,"height":64},{"x":192,"y":64,"fileNum":4109,"id":4435,"width":64,"height":64},{"x":0,"y":0,"fileNum":4110,"id":4436,"width":64,"height":64},{"x":64,"y":0,"fileNum":4110,"id":4437,"width":64,"height":64},{"x":128,"y":0,"fileNum":4110,"id":4438,"width":64,"height":64},{"x":0,"y":64,"fileNum":4110,"id":4439,"width":64,"height":64},{"x":64,"y":64,"fileNum":4110,"id":4440,"width":64,"height":64},{"x":128,"y":64,"fileNum":4110,"id":4441,"width":64,"height":64},{"x":0,"y":0,"fileNum":4112,"id":4442,"width":64,"height":64},{"x":64,"y":0,"fileNum":4112,"id":4443,"width":64,"height":64},{"x":128,"y":0,"fileNum":4112,"id":4444,"width":64,"height":64},{"x":0,"y":64,"fileNum":4112,"id":4445,"width":64,"height":64},{"x":64,"y":64,"fileNum":4112,"id":4446,"width":64,"height":64},{"x":128,"y":64,"fileNum":4112,"id":4447,"width":64,"height":64},{"x":2,"y":0,"fileNum":4113,"id":4448,"width":64,"height":64},{"x":66,"y":0,"fileNum":4113,"id":4449,"width":64,"height":64},{"x":131,"y":0,"fileNum":4113,"id":4450,"width":64,"height":64},{"x":2,"y":64,"fileNum":4113,"id":4451,"width":64,"height":64},{"x":66,"y":64,"fileNum":4113,"id":4452,"width":64,"height":64},{"x":131,"y":64,"fileNum":4113,"id":4453,"width":64,"height":64},{"x":0,"y":0,"fileNum":4114,"id":4454,"width":64,"height":64},{"x":64,"y":0,"fileNum":4114,"id":4455,"width":64,"height":64},{"x":128,"y":0,"fileNum":4114,"id":4456,"width":64,"height":64},{"x":0,"y":64,"fileNum":4114,"id":4457,"width":64,"height":64},{"x":64,"y":64,"fileNum":4114,"id":4458,"width":64,"height":64},{"x":128,"y":64,"fileNum":4114,"id":4459,"width":64,"height":64},{"x":0,"y":0,"fileNum":2092,"id":4460,"width":17,"height":50},{"x":17,"y":0,"fileNum":2092,"id":4461,"width":17,"height":50},{"x":34,"y":0,"fileNum":2092,"id":4462,"width":17,"height":50},{"x":51,"y":0,"fileNum":2092,"id":4463,"width":17,"height":50},{"x":0,"y":0,"fileNum":4068,"id":4464,"width":31,"height":25},{"x":31,"y":0,"fileNum":4068,"id":4465,"width":31,"height":25},{"x":62,"y":0,"fileNum":4068,"id":4466,"width":31,"height":25},{"x":0,"y":24,"fileNum":4068,"id":4467,"width":31,"height":25},{"x":31,"y":24,"fileNum":4068,"id":4468,"width":31,"height":25},{"x":62,"y":24,"fileNum":4068,"id":4469,"width":31,"height":25},{"x":0,"y":48,"fileNum":4068,"id":4470,"width":31,"height":25},{"x":31,"y":48,"fileNum":4068,"id":4471,"width":31,"height":25},{"x":62,"y":48,"fileNum":4068,"id":4472,"width":31,"height":25},{"x":0,"y":72,"fileNum":4068,"id":4473,"width":31,"height":25},{"x":31,"y":72,"fileNum":4068,"id":4474,"width":31,"height":25},{"x":62,"y":72,"fileNum":4068,"id":4475,"width":31,"height":25},{"x":0,"y":0,"fileNum":15008,"id":4480,"width":25,"height":50},{"x":25,"y":0,"fileNum":15008,"id":4481,"width":25,"height":50},{"x":50,"y":0,"fileNum":15008,"id":4482,"width":25,"height":50},{"x":75,"y":0,"fileNum":15008,"id":4483,"width":25,"height":50},{"x":0,"y":0,"fileNum":15009,"id":4484,"width":48,"height":32},{"x":47,"y":0,"fileNum":15009,"id":4485,"width":48,"height":32},{"x":93,"y":0,"fileNum":15009,"id":4486,"width":48,"height":32},{"x":142,"y":0,"fileNum":15009,"id":4487,"width":48,"height":32},{"x":0,"y":0,"fileNum":2094,"id":4490,"width":17,"height":50},{"x":17,"y":0,"fileNum":2094,"id":4491,"width":17,"height":50},{"x":34,"y":0,"fileNum":2094,"id":4492,"width":17,"height":50},{"x":51,"y":0,"fileNum":2094,"id":4493,"width":17,"height":50},{"x":0,"y":0,"fileNum":2095,"id":4494,"width":17,"height":50},{"x":17,"y":0,"fileNum":2095,"id":4495,"width":17,"height":50},{"x":34,"y":0,"fileNum":2095,"id":4496,"width":17,"height":50},{"x":51,"y":0,"fileNum":2095,"id":4497,"width":17,"height":50},{"x":0,"y":0,"fileNum":11000,"id":4498,"width":256,"height":96},{"x":0,"y":0,"fileNum":11001,"id":4499,"width":256,"height":160},{"x":0,"y":0,"fileNum":15075,"id":4500,"width":50,"height":59},{"x":0,"y":0,"fileNum":15076,"id":4501,"width":116,"height":65},{"x":0,"y":0,"fileNum":12013,"id":4502,"width":64,"height":64},{"x":0,"y":0,"fileNum":14000,"id":4503,"width":256,"height":185},{"x":0,"y":0,"fileNum":15077,"id":4504,"width":62,"height":65},{"x":192,"y":192,"fileNum":12011,"id":4505,"width":64,"height":64},{"x":128,"y":0,"fileNum":12012,"id":4506,"width":64,"height":64},{"x":192,"y":0,"fileNum":12012,"id":4507,"width":64,"height":64},{"x":128,"y":64,"fileNum":12012,"id":4508,"width":64,"height":64},{"x":192,"y":64,"fileNum":12012,"id":4509,"width":64,"height":64},{"x":0,"y":256,"fileNum":12012,"id":4510,"width":64,"height":64},{"x":64,"y":256,"fileNum":12012,"id":4511,"width":64,"height":128},{"x":0,"y":320,"fileNum":12012,"id":4512,"width":64,"height":64},{"x":64,"y":320,"fileNum":12012,"id":4513,"width":64,"height":64},{"x":128,"y":256,"fileNum":12012,"id":4514,"width":64,"height":64},{"x":192,"y":256,"fileNum":12012,"id":4515,"width":64,"height":64},{"x":0,"y":0,"fileNum":15123,"id":4540,"width":298,"height":154},{"x":0,"y":0,"fileNum":15124,"id":4541,"width":298,"height":154},{"x":0,"y":0,"fileNum":15125,"id":4542,"width":298,"height":154},{"x":0,"y":0,"fileNum":15126,"id":4543,"width":298,"height":154},{"x":0,"y":0,"fileNum":9018,"id":4545,"width":256,"height":256},{"x":0,"y":0,"fileNum":9019,"id":4546,"width":253,"height":391},{"x":29,"y":38,"fileNum":9020,"id":4547,"width":232,"height":146},{"x":128,"y":320,"fileNum":12012,"id":4597,"width":64,"height":64},{"x":192,"y":320,"fileNum":12012,"id":4598,"width":64,"height":64},{"x":0,"y":0,"fileNum":11047,"id":4599,"width":288,"height":256},{"x":0,"y":32,"fileNum":11048,"id":4600,"width":96,"height":192},{"x":0,"y":0,"fileNum":10004,"id":4664,"width":256,"height":194},{"x":0,"y":0,"fileNum":10005,"id":4665,"width":93,"height":182},{"x":93,"y":0,"fileNum":10005,"id":4666,"width":93,"height":182},{"x":0,"y":0,"fileNum":10006,"id":4667,"width":152,"height":221},{"x":0,"y":0,"fileNum":10007,"id":4668,"width":104,"height":179},{"x":0,"y":0,"fileNum":18019,"id":4694,"width":17,"height":16},{"x":17,"y":0,"fileNum":18019,"id":4695,"width":17,"height":16},{"x":34,"y":0,"fileNum":18019,"id":4696,"width":17,"height":16},{"x":51,"y":0,"fileNum":18019,"id":4697,"width":17,"height":16},{"x":0,"y":0,"fileNum":2128,"id":4750,"width":17,"height":50},{"x":17,"y":0,"fileNum":2128,"id":4751,"width":17,"height":50},{"x":34,"y":0,"fileNum":2128,"id":4752,"width":17,"height":50},{"x":51,"y":0,"fileNum":2128,"id":4753,"width":17,"height":50},{"x":0,"y":0,"fileNum":3072,"id":4782,"width":128,"height":128},{"x":0,"y":0,"fileNum":3073,"id":4783,"width":128,"height":128},{"x":0,"y":0,"fileNum":3074,"id":4784,"width":128,"height":128},{"x":0,"y":0,"fileNum":3075,"id":4785,"width":128,"height":128},{"x":0,"y":0,"fileNum":3076,"id":4786,"width":128,"height":128},{"x":0,"y":0,"fileNum":3077,"id":4787,"width":128,"height":128},{"x":0,"y":0,"fileNum":3078,"id":4788,"width":128,"height":128},{"x":0,"y":0,"fileNum":3079,"id":4789,"width":128,"height":128},{"x":0,"y":0,"fileNum":3080,"id":4790,"width":128,"height":128},{"x":0,"y":0,"fileNum":3081,"id":4791,"width":128,"height":128},{"x":0,"y":0,"fileNum":3083,"id":4792,"width":128,"height":128},{"x":0,"y":0,"fileNum":3085,"id":4793,"width":128,"height":128},{"x":0,"y":0,"fileNum":3086,"id":4794,"width":128,"height":128},{"x":0,"y":0,"fileNum":3087,"id":4795,"width":128,"height":128},{"x":0,"y":0,"fileNum":3088,"id":4796,"width":128,"height":128},{"x":0,"y":0,"fileNum":4126,"id":4798,"width":55,"height":50},{"x":55,"y":0,"fileNum":4126,"id":4799,"width":55,"height":50},{"x":110,"y":0,"fileNum":4126,"id":4800,"width":55,"height":50},{"x":165,"y":0,"fileNum":4126,"id":4801,"width":55,"height":50},{"x":220,"y":0,"fileNum":4126,"id":4802,"width":55,"height":50},{"x":275,"y":0,"fileNum":4126,"id":4803,"width":55,"height":50},{"x":330,"y":0,"fileNum":4126,"id":4804,"width":55,"height":50},{"x":385,"y":0,"fileNum":4126,"id":4805,"width":55,"height":50},{"x":0,"y":0,"fileNum":4127,"id":4806,"width":55,"height":50},{"x":55,"y":0,"fileNum":4127,"id":4807,"width":55,"height":50},{"x":110,"y":0,"fileNum":4127,"id":4808,"width":55,"height":50},{"x":165,"y":0,"fileNum":4127,"id":4809,"width":55,"height":50},{"x":220,"y":0,"fileNum":4127,"id":4810,"width":55,"height":50},{"x":275,"y":0,"fileNum":4127,"id":4811,"width":55,"height":50},{"x":330,"y":0,"fileNum":4127,"id":4812,"width":55,"height":50},{"x":385,"y":0,"fileNum":4127,"id":4813,"width":55,"height":50},{"x":0,"y":0,"fileNum":4128,"id":4814,"width":55,"height":50},{"x":55,"y":0,"fileNum":4128,"id":4815,"width":55,"height":50},{"x":110,"y":0,"fileNum":4128,"id":4816,"width":55,"height":50},{"x":165,"y":0,"fileNum":4128,"id":4817,"width":55,"height":50},{"x":220,"y":0,"fileNum":4128,"id":4818,"width":55,"height":50},{"x":275,"y":0,"fileNum":4128,"id":4819,"width":55,"height":50},{"x":330,"y":0,"fileNum":4128,"id":4820,"width":55,"height":50},{"x":385,"y":0,"fileNum":4128,"id":4821,"width":55,"height":50},{"x":0,"y":0,"fileNum":4129,"id":4822,"width":55,"height":50},{"x":55,"y":0,"fileNum":4129,"id":4823,"width":55,"height":50},{"x":110,"y":0,"fileNum":4129,"id":4824,"width":55,"height":50},{"x":165,"y":0,"fileNum":4129,"id":4825,"width":55,"height":50},{"x":220,"y":0,"fileNum":4129,"id":4826,"width":55,"height":50},{"x":275,"y":0,"fileNum":4129,"id":4827,"width":55,"height":50},{"x":330,"y":0,"fileNum":4129,"id":4828,"width":55,"height":50},{"x":385,"y":0,"fileNum":4129,"id":4829,"width":55,"height":50},{"x":0,"y":0,"fileNum":20002,"id":4834,"width":25,"height":45},{"x":25,"y":0,"fileNum":20002,"id":4835,"width":25,"height":45},{"x":50,"y":0,"fileNum":20002,"id":4836,"width":25,"height":45},{"x":75,"y":0,"fileNum":20002,"id":4837,"width":25,"height":45},{"x":100,"y":0,"fileNum":20002,"id":4838,"width":25,"height":45},{"x":125,"y":0,"fileNum":20002,"id":4839,"width":25,"height":45},{"x":0,"y":45,"fileNum":20002,"id":4840,"width":25,"height":45},{"x":25,"y":45,"fileNum":20002,"id":4841,"width":25,"height":45},{"x":50,"y":45,"fileNum":20002,"id":4842,"width":25,"height":45},{"x":75,"y":45,"fileNum":20002,"id":4843,"width":25,"height":45},{"x":100,"y":45,"fileNum":20002,"id":4844,"width":25,"height":45},{"x":125,"y":45,"fileNum":20002,"id":4845,"width":25,"height":45},{"x":0,"y":90,"fileNum":20002,"id":4846,"width":25,"height":45},{"x":25,"y":90,"fileNum":20002,"id":4847,"width":25,"height":45},{"x":50,"y":90,"fileNum":20002,"id":4848,"width":25,"height":45},{"x":75,"y":90,"fileNum":20002,"id":4849,"width":25,"height":45},{"x":100,"y":90,"fileNum":20002,"id":4850,"width":25,"height":45},{"x":0,"y":135,"fileNum":20002,"id":4851,"width":25,"height":45},{"x":25,"y":135,"fileNum":20002,"id":4852,"width":25,"height":45},{"x":50,"y":135,"fileNum":20002,"id":4853,"width":25,"height":45},{"x":75,"y":135,"fileNum":20002,"id":4854,"width":25,"height":45},{"x":100,"y":135,"fileNum":20002,"id":4855,"width":25,"height":45},{"x":0,"y":0,"fileNum":20010,"id":4860,"width":32,"height":32},{"x":0,"y":0,"fileNum":8036,"id":4861,"width":70,"height":54},{"x":0,"y":0,"fileNum":8028,"id":4862,"width":276,"height":197},{"x":0,"y":0,"fileNum":8029,"id":4863,"width":74,"height":130},{"x":0,"y":0,"fileNum":8030,"id":4864,"width":290,"height":197},{"x":0,"y":0,"fileNum":8031,"id":4865,"width":290,"height":69},{"x":0,"y":0,"fileNum":8032,"id":4866,"width":276,"height":68},{"x":0,"y":0,"fileNum":8033,"id":4867,"width":276,"height":214},{"x":0,"y":0,"fileNum":8034,"id":4868,"width":290,"height":214},{"x":0,"y":0,"fileNum":8035,"id":4869,"width":74,"height":137},{"x":0,"y":0,"fileNum":11004,"id":4870,"width":256,"height":96},{"x":0,"y":0,"fileNum":15081,"id":4871,"width":33,"height":45},{"x":0,"y":0,"fileNum":11005,"id":4872,"width":256,"height":185},{"x":0,"y":0,"fileNum":15082,"id":4873,"width":26,"height":100},{"x":0,"y":0,"fileNum":15083,"id":4874,"width":33,"height":18},{"x":0,"y":0,"fileNum":15084,"id":4875,"width":33,"height":18},{"x":0,"y":0,"fileNum":14002,"id":4876,"width":256,"height":186},{"x":0,"y":0,"fileNum":11006,"id":4877,"width":256,"height":96},{"x":0,"y":0,"fileNum":11007,"id":4878,"width":256,"height":160},{"x":0,"y":0,"fileNum":15085,"id":4879,"width":26,"height":100},{"x":0,"y":0,"fileNum":15086,"id":4880,"width":50,"height":36},{"x":0,"y":0,"fileNum":15087,"id":4881,"width":50,"height":43},{"x":0,"y":0,"fileNum":12015,"id":4882,"width":62,"height":62},{"x":0,"y":0,"fileNum":15088,"id":4883,"width":40,"height":50},{"x":0,"y":0,"fileNum":15089,"id":4884,"width":20,"height":55},{"x":0,"y":0,"fileNum":14003,"id":4885,"width":256,"height":184},{"x":0,"y":0,"fileNum":15090,"id":4886,"width":45,"height":37},{"x":0,"y":0,"fileNum":11008,"id":4887,"width":300,"height":96},{"x":0,"y":0,"fileNum":11009,"id":4888,"width":300,"height":160},{"x":0,"y":0,"fileNum":15091,"id":4889,"width":33,"height":45},{"x":0,"y":0,"fileNum":15092,"id":4890,"width":40,"height":76},{"x":0,"y":0,"fileNum":15093,"id":4891,"width":100,"height":77},{"x":0,"y":0,"fileNum":12016,"id":4892,"width":40,"height":40},{"x":0,"y":0,"fileNum":14004,"id":4893,"width":300,"height":180},{"x":0,"y":0,"fileNum":15094,"id":4894,"width":70,"height":80},{"x":0,"y":0,"fileNum":11010,"id":4895,"width":256,"height":96},{"x":0,"y":0,"fileNum":11011,"id":4896,"width":256,"height":195},{"x":0,"y":0,"fileNum":15095,"id":4897,"width":150,"height":75},{"x":0,"y":0,"fileNum":12017,"id":4898,"width":64,"height":64},{"x":0,"y":0,"fileNum":14005,"id":4899,"width":256,"height":214},{"x":0,"y":0,"fileNum":20003,"id":4900,"width":32,"height":32},{"x":0,"y":0,"fileNum":20004,"id":4901,"width":32,"height":32},{"x":0,"y":0,"fileNum":20005,"id":4902,"width":32,"height":32},{"x":0,"y":0,"fileNum":20006,"id":4903,"width":32,"height":32},{"x":0,"y":0,"fileNum":2129,"id":4904,"width":17,"height":50},{"x":17,"y":0,"fileNum":2129,"id":4905,"width":17,"height":50},{"x":34,"y":0,"fileNum":2129,"id":4906,"width":17,"height":50},{"x":51,"y":0,"fileNum":2129,"id":4907,"width":17,"height":50},{"x":0,"y":256,"fileNum":11047,"id":4908,"width":288,"height":32},{"x":0,"y":0,"fileNum":7074,"id":4909,"width":128,"height":64},{"x":0,"y":0,"fileNum":87,"id":4910,"width":32,"height":32},{"x":0,"y":0,"fileNum":86,"id":4911,"width":32,"height":32},{"x":0,"y":0,"fileNum":84,"id":4912,"width":32,"height":32},{"x":0,"y":0,"fileNum":85,"id":4913,"width":32,"height":32},{"x":0,"y":0,"fileNum":100,"id":4914,"width":32,"height":32},{"x":0,"y":0,"fileNum":88,"id":4915,"width":32,"height":32},{"x":0,"y":0,"fileNum":91,"id":4916,"width":32,"height":32},{"x":0,"y":0,"fileNum":93,"id":4917,"width":32,"height":32},{"x":0,"y":0,"fileNum":94,"id":4918,"width":32,"height":32},{"x":0,"y":0,"fileNum":92,"id":4919,"width":32,"height":32},{"x":0,"y":0,"fileNum":90,"id":4920,"width":32,"height":32},{"x":0,"y":0,"fileNum":99,"id":4921,"width":32,"height":32},{"x":0,"y":0,"fileNum":89,"id":4922,"width":32,"height":32},{"x":0,"y":0,"fileNum":7075,"id":4923,"width":64,"height":32},{"x":0,"y":0,"fileNum":95,"id":4924,"width":32,"height":32},{"x":0,"y":0,"fileNum":96,"id":4925,"width":32,"height":32},{"x":0,"y":0,"fileNum":97,"id":4926,"width":32,"height":32},{"x":0,"y":0,"fileNum":98,"id":4927,"width":32,"height":32},{"x":0,"y":0,"fileNum":15096,"id":4928,"width":30,"height":42},{"x":0,"y":0,"fileNum":15097,"id":4929,"width":34,"height":40},{"x":0,"y":0,"fileNum":15098,"id":4930,"width":34,"height":40},{"x":0,"y":0,"fileNum":15099,"id":4931,"width":34,"height":30},{"x":0,"y":0,"fileNum":15100,"id":4932,"width":34,"height":23},{"x":0,"y":0,"fileNum":11012,"id":4933,"width":500,"height":96},{"x":0,"y":0,"fileNum":11013,"id":4934,"width":500,"height":160},{"x":0,"y":0,"fileNum":15101,"id":4935,"width":150,"height":80},{"x":0,"y":0,"fileNum":12018,"id":4936,"width":32,"height":32},{"x":32,"y":0,"fileNum":12018,"id":4937,"width":32,"height":32},{"x":0,"y":32,"fileNum":12018,"id":4938,"width":32,"height":32},{"x":32,"y":32,"fileNum":12018,"id":4939,"width":32,"height":32},{"x":0,"y":0,"fileNum":14006,"id":4940,"width":256,"height":187},{"x":0,"y":0,"fileNum":4101,"id":4941,"width":64,"height":64},{"x":64,"y":0,"fileNum":4101,"id":4942,"width":64,"height":64},{"x":128,"y":0,"fileNum":4101,"id":4943,"width":64,"height":64},{"x":0,"y":64,"fileNum":4101,"id":4944,"width":64,"height":64},{"x":64,"y":64,"fileNum":4101,"id":4945,"width":64,"height":64},{"x":128,"y":64,"fileNum":4101,"id":4946,"width":64,"height":64},{"x":0,"y":0,"fileNum":4102,"id":4947,"width":64,"height":64},{"x":64,"y":0,"fileNum":4102,"id":4948,"width":64,"height":64},{"x":128,"y":0,"fileNum":4102,"id":4949,"width":64,"height":64},{"x":0,"y":64,"fileNum":4102,"id":4950,"width":64,"height":64},{"x":64,"y":64,"fileNum":4102,"id":4951,"width":64,"height":64},{"x":128,"y":64,"fileNum":4102,"id":4952,"width":64,"height":64},{"x":0,"y":0,"fileNum":4103,"id":4953,"width":64,"height":64},{"x":64,"y":0,"fileNum":4103,"id":4954,"width":64,"height":64},{"x":128,"y":0,"fileNum":4103,"id":4955,"width":64,"height":64},{"x":0,"y":64,"fileNum":4103,"id":4956,"width":64,"height":64},{"x":64,"y":64,"fileNum":4103,"id":4957,"width":64,"height":64},{"x":128,"y":64,"fileNum":4103,"id":4958,"width":64,"height":64},{"x":0,"y":0,"fileNum":4104,"id":4959,"width":64,"height":64},{"x":64,"y":0,"fileNum":4104,"id":4960,"width":64,"height":64},{"x":128,"y":0,"fileNum":4104,"id":4961,"width":64,"height":64},{"x":0,"y":64,"fileNum":4104,"id":4962,"width":64,"height":64},{"x":64,"y":64,"fileNum":4104,"id":4963,"width":64,"height":64},{"x":128,"y":64,"fileNum":4104,"id":4964,"width":64,"height":64},{"x":0,"y":0,"fileNum":15127,"id":4969,"width":31,"height":85},{"x":31,"y":0,"fileNum":15127,"id":4970,"width":31,"height":85},{"x":62,"y":0,"fileNum":15127,"id":4971,"width":31,"height":85},{"x":93,"y":0,"fileNum":15127,"id":4972,"width":31,"height":85},{"x":124,"y":0,"fileNum":15127,"id":4973,"width":31,"height":85},{"x":155,"y":0,"fileNum":15127,"id":4974,"width":31,"height":85},{"x":186,"y":0,"fileNum":15127,"id":4975,"width":31,"height":85},{"x":217,"y":0,"fileNum":15127,"id":4976,"width":31,"height":85},{"x":0,"y":0,"fileNum":25000,"id":4978,"width":28,"height":30},{"x":25,"y":0,"fileNum":25000,"id":4979,"width":28,"height":30},{"x":50,"y":0,"fileNum":25000,"id":4980,"width":28,"height":30},{"x":75,"y":0,"fileNum":25000,"id":4981,"width":28,"height":30},{"x":0,"y":0,"fileNum":25001,"id":4982,"width":28,"height":30},{"x":25,"y":0,"fileNum":25001,"id":4983,"width":28,"height":30},{"x":50,"y":0,"fileNum":25001,"id":4984,"width":28,"height":30},{"x":75,"y":0,"fileNum":25001,"id":4985,"width":28,"height":30},{"x":0,"y":0,"fileNum":7076,"id":4986,"width":128,"height":64},{"x":0,"y":0,"fileNum":7077,"id":4987,"width":320,"height":240},{"x":0,"y":0,"fileNum":12019,"id":4988,"width":32,"height":32},{"x":32,"y":0,"fileNum":12019,"id":4989,"width":32,"height":32},{"x":0,"y":32,"fileNum":12019,"id":4990,"width":32,"height":32},{"x":32,"y":32,"fileNum":12019,"id":4991,"width":32,"height":32},{"x":0,"y":0,"fileNum":15102,"id":4992,"width":60,"height":60},{"x":0,"y":0,"fileNum":15103,"id":4993,"width":40,"height":60},{"x":0,"y":0,"fileNum":15104,"id":4994,"width":40,"height":60},{"x":0,"y":0,"fileNum":2130,"id":4995,"width":17,"height":50},{"x":17,"y":0,"fileNum":2130,"id":4996,"width":17,"height":50},{"x":34,"y":0,"fileNum":2130,"id":4997,"width":17,"height":50},{"x":51,"y":0,"fileNum":2130,"id":4998,"width":17,"height":50},{"x":0,"y":0,"fileNum":16084,"id":4999,"width":32,"height":32},{"x":0,"y":0,"fileNum":61,"id":5000,"width":25,"height":45},{"x":25,"y":0,"fileNum":61,"id":5001,"width":25,"height":45},{"x":50,"y":0,"fileNum":61,"id":5002,"width":25,"height":45},{"x":75,"y":0,"fileNum":61,"id":5003,"width":25,"height":45},{"x":100,"y":0,"fileNum":61,"id":5004,"width":25,"height":45},{"x":125,"y":0,"fileNum":61,"id":5005,"width":25,"height":45},{"x":0,"y":45,"fileNum":61,"id":5006,"width":25,"height":45},{"x":25,"y":45,"fileNum":61,"id":5007,"width":25,"height":45},{"x":50,"y":45,"fileNum":61,"id":5008,"width":25,"height":45},{"x":75,"y":45,"fileNum":61,"id":5009,"width":25,"height":45},{"x":100,"y":45,"fileNum":61,"id":5010,"width":25,"height":45},{"x":125,"y":45,"fileNum":61,"id":5011,"width":25,"height":45},{"x":0,"y":90,"fileNum":61,"id":5012,"width":25,"height":45},{"x":25,"y":90,"fileNum":61,"id":5013,"width":25,"height":45},{"x":50,"y":90,"fileNum":61,"id":5014,"width":25,"height":45},{"x":75,"y":90,"fileNum":61,"id":5015,"width":25,"height":45},{"x":100,"y":90,"fileNum":61,"id":5016,"width":25,"height":45},{"x":0,"y":135,"fileNum":61,"id":5017,"width":25,"height":45},{"x":25,"y":135,"fileNum":61,"id":5018,"width":25,"height":45},{"x":50,"y":135,"fileNum":61,"id":5019,"width":25,"height":45},{"x":75,"y":135,"fileNum":61,"id":5020,"width":25,"height":45},{"x":100,"y":135,"fileNum":61,"id":5021,"width":25,"height":45},{"x":0,"y":0,"fileNum":2131,"id":5026,"width":17,"height":50},{"x":17,"y":0,"fileNum":2131,"id":5027,"width":17,"height":50},{"x":34,"y":0,"fileNum":2131,"id":5028,"width":17,"height":50},{"x":51,"y":0,"fileNum":2131,"id":5029,"width":17,"height":50},{"x":0,"y":0,"fileNum":62,"id":5030,"width":25,"height":45},{"x":25,"y":0,"fileNum":62,"id":5031,"width":25,"height":45},{"x":50,"y":0,"fileNum":62,"id":5032,"width":25,"height":45},{"x":75,"y":0,"fileNum":62,"id":5033,"width":25,"height":45},{"x":100,"y":0,"fileNum":62,"id":5034,"width":25,"height":45},{"x":125,"y":0,"fileNum":62,"id":5035,"width":25,"height":45},{"x":0,"y":45,"fileNum":62,"id":5036,"width":25,"height":45},{"x":25,"y":45,"fileNum":62,"id":5037,"width":25,"height":45},{"x":50,"y":45,"fileNum":62,"id":5038,"width":25,"height":45},{"x":75,"y":45,"fileNum":62,"id":5039,"width":25,"height":45},{"x":100,"y":45,"fileNum":62,"id":5040,"width":25,"height":45},{"x":125,"y":45,"fileNum":62,"id":5041,"width":25,"height":45},{"x":0,"y":90,"fileNum":62,"id":5042,"width":25,"height":45},{"x":25,"y":90,"fileNum":62,"id":5043,"width":25,"height":45},{"x":50,"y":90,"fileNum":62,"id":5044,"width":25,"height":45},{"x":75,"y":90,"fileNum":62,"id":5045,"width":25,"height":45},{"x":100,"y":90,"fileNum":62,"id":5046,"width":25,"height":45},{"x":0,"y":135,"fileNum":62,"id":5047,"width":25,"height":45},{"x":25,"y":135,"fileNum":62,"id":5048,"width":25,"height":45},{"x":50,"y":135,"fileNum":62,"id":5049,"width":25,"height":45},{"x":75,"y":135,"fileNum":62,"id":5050,"width":25,"height":45},{"x":100,"y":135,"fileNum":62,"id":5051,"width":25,"height":45},{"x":0,"y":0,"fileNum":2132,"id":5056,"width":17,"height":50},{"x":17,"y":0,"fileNum":2132,"id":5057,"width":17,"height":50},{"x":34,"y":0,"fileNum":2132,"id":5058,"width":17,"height":50},{"x":51,"y":0,"fileNum":2132,"id":5059,"width":17,"height":50},{"x":0,"y":0,"fileNum":59,"id":5060,"width":25,"height":45},{"x":25,"y":0,"fileNum":59,"id":5061,"width":25,"height":45},{"x":50,"y":0,"fileNum":59,"id":5062,"width":25,"height":45},{"x":75,"y":0,"fileNum":59,"id":5063,"width":25,"height":45},{"x":100,"y":0,"fileNum":59,"id":5064,"width":25,"height":45},{"x":125,"y":0,"fileNum":59,"id":5065,"width":25,"height":45},{"x":0,"y":45,"fileNum":59,"id":5066,"width":25,"height":45},{"x":25,"y":45,"fileNum":59,"id":5067,"width":25,"height":45},{"x":50,"y":45,"fileNum":59,"id":5068,"width":25,"height":45},{"x":75,"y":45,"fileNum":59,"id":5069,"width":25,"height":45},{"x":100,"y":45,"fileNum":59,"id":5070,"width":25,"height":45},{"x":125,"y":45,"fileNum":59,"id":5071,"width":25,"height":45},{"x":0,"y":90,"fileNum":59,"id":5072,"width":25,"height":45},{"x":25,"y":90,"fileNum":59,"id":5073,"width":25,"height":45},{"x":50,"y":90,"fileNum":59,"id":5074,"width":25,"height":45},{"x":75,"y":90,"fileNum":59,"id":5075,"width":25,"height":45},{"x":100,"y":90,"fileNum":59,"id":5076,"width":25,"height":45},{"x":0,"y":135,"fileNum":59,"id":5077,"width":25,"height":45},{"x":25,"y":135,"fileNum":59,"id":5078,"width":25,"height":45},{"x":50,"y":135,"fileNum":59,"id":5079,"width":25,"height":45},{"x":75,"y":135,"fileNum":59,"id":5080,"width":25,"height":45},{"x":100,"y":135,"fileNum":59,"id":5081,"width":25,"height":45},{"x":0,"y":0,"fileNum":2133,"id":5086,"width":17,"height":50},{"x":17,"y":0,"fileNum":2133,"id":5087,"width":17,"height":50},{"x":34,"y":0,"fileNum":2133,"id":5088,"width":17,"height":50},{"x":51,"y":0,"fileNum":2133,"id":5089,"width":17,"height":50},{"x":0,"y":0,"fileNum":75,"id":5090,"width":25,"height":45},{"x":25,"y":0,"fileNum":75,"id":5091,"width":25,"height":45},{"x":50,"y":0,"fileNum":75,"id":5092,"width":25,"height":45},{"x":75,"y":0,"fileNum":75,"id":5093,"width":25,"height":45},{"x":100,"y":0,"fileNum":75,"id":5094,"width":25,"height":45},{"x":125,"y":0,"fileNum":75,"id":5095,"width":25,"height":45},{"x":0,"y":45,"fileNum":75,"id":5096,"width":25,"height":45},{"x":25,"y":45,"fileNum":75,"id":5097,"width":25,"height":45},{"x":50,"y":45,"fileNum":75,"id":5098,"width":25,"height":45},{"x":75,"y":45,"fileNum":75,"id":5099,"width":25,"height":45},{"x":100,"y":45,"fileNum":75,"id":5100,"width":25,"height":45},{"x":125,"y":45,"fileNum":75,"id":5101,"width":25,"height":45},{"x":0,"y":90,"fileNum":75,"id":5102,"width":25,"height":45},{"x":25,"y":90,"fileNum":75,"id":5103,"width":25,"height":45},{"x":50,"y":90,"fileNum":75,"id":5104,"width":25,"height":45},{"x":75,"y":90,"fileNum":75,"id":5105,"width":25,"height":45},{"x":100,"y":90,"fileNum":75,"id":5106,"width":25,"height":45},{"x":0,"y":135,"fileNum":75,"id":5107,"width":25,"height":45},{"x":25,"y":135,"fileNum":75,"id":5108,"width":25,"height":45},{"x":50,"y":135,"fileNum":75,"id":5109,"width":25,"height":45},{"x":75,"y":135,"fileNum":75,"id":5110,"width":25,"height":45},{"x":100,"y":135,"fileNum":75,"id":5111,"width":25,"height":45},{"x":0,"y":0,"fileNum":2134,"id":5116,"width":17,"height":50},{"x":17,"y":0,"fileNum":2134,"id":5117,"width":17,"height":50},{"x":34,"y":0,"fileNum":2134,"id":5118,"width":17,"height":50},{"x":51,"y":0,"fileNum":2134,"id":5119,"width":17,"height":50},{"x":0,"y":0,"fileNum":63,"id":5120,"width":25,"height":45},{"x":25,"y":0,"fileNum":63,"id":5121,"width":25,"height":45},{"x":50,"y":0,"fileNum":63,"id":5122,"width":25,"height":45},{"x":75,"y":0,"fileNum":63,"id":5123,"width":25,"height":45},{"x":100,"y":0,"fileNum":63,"id":5124,"width":25,"height":45},{"x":125,"y":0,"fileNum":63,"id":5125,"width":25,"height":45},{"x":0,"y":45,"fileNum":63,"id":5126,"width":25,"height":45},{"x":25,"y":45,"fileNum":63,"id":5127,"width":25,"height":45},{"x":50,"y":45,"fileNum":63,"id":5128,"width":25,"height":45},{"x":75,"y":45,"fileNum":63,"id":5129,"width":25,"height":45},{"x":100,"y":45,"fileNum":63,"id":5130,"width":25,"height":45},{"x":125,"y":45,"fileNum":63,"id":5131,"width":25,"height":45},{"x":0,"y":90,"fileNum":63,"id":5132,"width":25,"height":45},{"x":25,"y":90,"fileNum":63,"id":5133,"width":25,"height":45},{"x":50,"y":90,"fileNum":63,"id":5134,"width":25,"height":45},{"x":75,"y":90,"fileNum":63,"id":5135,"width":25,"height":45},{"x":100,"y":90,"fileNum":63,"id":5136,"width":25,"height":45},{"x":0,"y":135,"fileNum":63,"id":5137,"width":25,"height":45},{"x":25,"y":135,"fileNum":63,"id":5138,"width":25,"height":45},{"x":50,"y":135,"fileNum":63,"id":5139,"width":25,"height":45},{"x":75,"y":135,"fileNum":63,"id":5140,"width":25,"height":45},{"x":100,"y":135,"fileNum":63,"id":5141,"width":25,"height":45},{"x":0,"y":0,"fileNum":2135,"id":5146,"width":17,"height":50},{"x":17,"y":0,"fileNum":2135,"id":5147,"width":17,"height":50},{"x":34,"y":0,"fileNum":2135,"id":5148,"width":17,"height":50},{"x":51,"y":0,"fileNum":2135,"id":5149,"width":17,"height":50},{"x":0,"y":0,"fileNum":66,"id":5150,"width":25,"height":45},{"x":25,"y":0,"fileNum":66,"id":5151,"width":25,"height":45},{"x":50,"y":0,"fileNum":66,"id":5152,"width":25,"height":45},{"x":75,"y":0,"fileNum":66,"id":5153,"width":25,"height":45},{"x":100,"y":0,"fileNum":66,"id":5154,"width":25,"height":45},{"x":125,"y":0,"fileNum":66,"id":5155,"width":25,"height":45},{"x":0,"y":45,"fileNum":66,"id":5156,"width":25,"height":45},{"x":25,"y":45,"fileNum":66,"id":5157,"width":25,"height":45},{"x":50,"y":45,"fileNum":66,"id":5158,"width":25,"height":45},{"x":75,"y":45,"fileNum":66,"id":5159,"width":25,"height":45},{"x":100,"y":45,"fileNum":66,"id":5160,"width":25,"height":45},{"x":125,"y":45,"fileNum":66,"id":5161,"width":25,"height":45},{"x":0,"y":90,"fileNum":66,"id":5162,"width":25,"height":45},{"x":25,"y":90,"fileNum":66,"id":5163,"width":25,"height":45},{"x":50,"y":90,"fileNum":66,"id":5164,"width":25,"height":45},{"x":75,"y":90,"fileNum":66,"id":5165,"width":25,"height":45},{"x":100,"y":90,"fileNum":66,"id":5166,"width":25,"height":45},{"x":0,"y":135,"fileNum":66,"id":5167,"width":25,"height":45},{"x":25,"y":135,"fileNum":66,"id":5168,"width":25,"height":45},{"x":50,"y":135,"fileNum":66,"id":5169,"width":25,"height":45},{"x":75,"y":135,"fileNum":66,"id":5170,"width":25,"height":45},{"x":100,"y":135,"fileNum":66,"id":5171,"width":25,"height":45},{"x":0,"y":0,"fileNum":2136,"id":5176,"width":17,"height":50},{"x":17,"y":0,"fileNum":2136,"id":5177,"width":17,"height":50},{"x":34,"y":0,"fileNum":2136,"id":5178,"width":17,"height":50},{"x":51,"y":0,"fileNum":2136,"id":5179,"width":17,"height":50},{"x":0,"y":0,"fileNum":68,"id":5180,"width":25,"height":45},{"x":25,"y":0,"fileNum":68,"id":5181,"width":25,"height":45},{"x":50,"y":0,"fileNum":68,"id":5182,"width":25,"height":45},{"x":75,"y":0,"fileNum":68,"id":5183,"width":25,"height":45},{"x":100,"y":0,"fileNum":68,"id":5184,"width":25,"height":45},{"x":125,"y":0,"fileNum":68,"id":5185,"width":25,"height":45},{"x":0,"y":45,"fileNum":68,"id":5186,"width":25,"height":45},{"x":25,"y":45,"fileNum":68,"id":5187,"width":25,"height":45},{"x":50,"y":45,"fileNum":68,"id":5188,"width":25,"height":45},{"x":75,"y":45,"fileNum":68,"id":5189,"width":25,"height":45},{"x":100,"y":45,"fileNum":68,"id":5190,"width":25,"height":45},{"x":125,"y":45,"fileNum":68,"id":5191,"width":25,"height":45},{"x":0,"y":90,"fileNum":68,"id":5192,"width":25,"height":45},{"x":25,"y":90,"fileNum":68,"id":5193,"width":25,"height":45},{"x":50,"y":90,"fileNum":68,"id":5194,"width":25,"height":45},{"x":75,"y":90,"fileNum":68,"id":5195,"width":25,"height":45},{"x":100,"y":90,"fileNum":68,"id":5196,"width":25,"height":45},{"x":0,"y":135,"fileNum":68,"id":5197,"width":25,"height":45},{"x":25,"y":135,"fileNum":68,"id":5198,"width":25,"height":45},{"x":50,"y":135,"fileNum":68,"id":5199,"width":25,"height":45},{"x":75,"y":135,"fileNum":68,"id":5200,"width":25,"height":45},{"x":100,"y":135,"fileNum":68,"id":5201,"width":25,"height":45},{"x":0,"y":0,"fileNum":2137,"id":5206,"width":17,"height":50},{"x":17,"y":0,"fileNum":2137,"id":5207,"width":17,"height":50},{"x":34,"y":0,"fileNum":2137,"id":5208,"width":17,"height":50},{"x":51,"y":0,"fileNum":2137,"id":5209,"width":17,"height":50},{"x":0,"y":0,"fileNum":69,"id":5210,"width":25,"height":45},{"x":25,"y":0,"fileNum":69,"id":5211,"width":25,"height":45},{"x":50,"y":0,"fileNum":69,"id":5212,"width":25,"height":45},{"x":75,"y":0,"fileNum":69,"id":5213,"width":25,"height":45},{"x":100,"y":0,"fileNum":69,"id":5214,"width":25,"height":45},{"x":125,"y":0,"fileNum":69,"id":5215,"width":25,"height":45},{"x":0,"y":45,"fileNum":69,"id":5216,"width":25,"height":45},{"x":25,"y":45,"fileNum":69,"id":5217,"width":25,"height":45},{"x":50,"y":45,"fileNum":69,"id":5218,"width":25,"height":45},{"x":75,"y":45,"fileNum":69,"id":5219,"width":25,"height":45},{"x":100,"y":45,"fileNum":69,"id":5220,"width":25,"height":45},{"x":125,"y":45,"fileNum":69,"id":5221,"width":25,"height":45},{"x":0,"y":90,"fileNum":69,"id":5222,"width":25,"height":45},{"x":25,"y":90,"fileNum":69,"id":5223,"width":25,"height":45},{"x":50,"y":90,"fileNum":69,"id":5224,"width":25,"height":45},{"x":75,"y":90,"fileNum":69,"id":5225,"width":25,"height":45},{"x":100,"y":90,"fileNum":69,"id":5226,"width":25,"height":45},{"x":0,"y":135,"fileNum":69,"id":5227,"width":25,"height":45},{"x":25,"y":135,"fileNum":69,"id":5228,"width":25,"height":45},{"x":50,"y":135,"fileNum":69,"id":5229,"width":25,"height":45},{"x":75,"y":135,"fileNum":69,"id":5230,"width":25,"height":45},{"x":100,"y":135,"fileNum":69,"id":5231,"width":25,"height":45},{"x":0,"y":0,"fileNum":2138,"id":5236,"width":17,"height":50},{"x":17,"y":0,"fileNum":2138,"id":5237,"width":17,"height":50},{"x":34,"y":0,"fileNum":2138,"id":5238,"width":17,"height":50},{"x":51,"y":0,"fileNum":2138,"id":5239,"width":17,"height":50},{"x":0,"y":0,"fileNum":67,"id":5240,"width":25,"height":45},{"x":25,"y":0,"fileNum":67,"id":5241,"width":25,"height":45},{"x":50,"y":0,"fileNum":67,"id":5242,"width":25,"height":45},{"x":75,"y":0,"fileNum":67,"id":5243,"width":25,"height":45},{"x":100,"y":0,"fileNum":67,"id":5244,"width":25,"height":45},{"x":125,"y":0,"fileNum":67,"id":5245,"width":25,"height":45},{"x":0,"y":45,"fileNum":67,"id":5246,"width":25,"height":45},{"x":25,"y":45,"fileNum":67,"id":5247,"width":25,"height":45},{"x":50,"y":45,"fileNum":67,"id":5248,"width":25,"height":45},{"x":75,"y":45,"fileNum":67,"id":5249,"width":25,"height":45},{"x":100,"y":45,"fileNum":67,"id":5250,"width":25,"height":45},{"x":125,"y":45,"fileNum":67,"id":5251,"width":25,"height":45},{"x":0,"y":90,"fileNum":67,"id":5252,"width":25,"height":45},{"x":25,"y":90,"fileNum":67,"id":5253,"width":25,"height":45},{"x":50,"y":90,"fileNum":67,"id":5254,"width":25,"height":45},{"x":75,"y":90,"fileNum":67,"id":5255,"width":25,"height":45},{"x":100,"y":90,"fileNum":67,"id":5256,"width":25,"height":45},{"x":0,"y":135,"fileNum":67,"id":5257,"width":25,"height":45},{"x":25,"y":135,"fileNum":67,"id":5258,"width":25,"height":45},{"x":50,"y":135,"fileNum":67,"id":5259,"width":25,"height":45},{"x":75,"y":135,"fileNum":67,"id":5260,"width":25,"height":45},{"x":100,"y":135,"fileNum":67,"id":5261,"width":25,"height":45},{"x":0,"y":0,"fileNum":2139,"id":5266,"width":17,"height":50},{"x":17,"y":0,"fileNum":2139,"id":5267,"width":17,"height":50},{"x":34,"y":0,"fileNum":2139,"id":5268,"width":17,"height":50},{"x":51,"y":0,"fileNum":2139,"id":5269,"width":17,"height":50},{"x":0,"y":0,"fileNum":65,"id":5270,"width":25,"height":45},{"x":25,"y":0,"fileNum":65,"id":5271,"width":25,"height":45},{"x":50,"y":0,"fileNum":65,"id":5272,"width":25,"height":45},{"x":75,"y":0,"fileNum":65,"id":5273,"width":25,"height":45},{"x":100,"y":0,"fileNum":65,"id":5274,"width":25,"height":45},{"x":125,"y":0,"fileNum":65,"id":5275,"width":25,"height":45},{"x":0,"y":45,"fileNum":65,"id":5276,"width":25,"height":45},{"x":25,"y":45,"fileNum":65,"id":5277,"width":25,"height":45},{"x":50,"y":45,"fileNum":65,"id":5278,"width":25,"height":45},{"x":75,"y":45,"fileNum":65,"id":5279,"width":25,"height":45},{"x":100,"y":45,"fileNum":65,"id":5280,"width":25,"height":45},{"x":125,"y":45,"fileNum":65,"id":5281,"width":25,"height":45},{"x":0,"y":90,"fileNum":65,"id":5282,"width":25,"height":45},{"x":25,"y":90,"fileNum":65,"id":5283,"width":25,"height":45},{"x":50,"y":90,"fileNum":65,"id":5284,"width":25,"height":45},{"x":75,"y":90,"fileNum":65,"id":5285,"width":25,"height":45},{"x":100,"y":90,"fileNum":65,"id":5286,"width":25,"height":45},{"x":0,"y":135,"fileNum":65,"id":5287,"width":25,"height":45},{"x":25,"y":135,"fileNum":65,"id":5288,"width":25,"height":45},{"x":50,"y":135,"fileNum":65,"id":5289,"width":25,"height":45},{"x":75,"y":135,"fileNum":65,"id":5290,"width":25,"height":45},{"x":100,"y":135,"fileNum":65,"id":5291,"width":25,"height":45},{"x":0,"y":0,"fileNum":2140,"id":5296,"width":17,"height":50},{"x":17,"y":0,"fileNum":2140,"id":5297,"width":17,"height":50},{"x":34,"y":0,"fileNum":2140,"id":5298,"width":17,"height":50},{"x":51,"y":0,"fileNum":2140,"id":5299,"width":17,"height":50},{"x":0,"y":0,"fileNum":64,"id":5300,"width":25,"height":45},{"x":25,"y":0,"fileNum":64,"id":5301,"width":25,"height":45},{"x":50,"y":0,"fileNum":64,"id":5302,"width":25,"height":45},{"x":75,"y":0,"fileNum":64,"id":5303,"width":25,"height":45},{"x":100,"y":0,"fileNum":64,"id":5304,"width":25,"height":45},{"x":125,"y":0,"fileNum":64,"id":5305,"width":25,"height":45},{"x":0,"y":45,"fileNum":64,"id":5306,"width":25,"height":45},{"x":25,"y":45,"fileNum":64,"id":5307,"width":25,"height":45},{"x":50,"y":45,"fileNum":64,"id":5308,"width":25,"height":45},{"x":75,"y":45,"fileNum":64,"id":5309,"width":25,"height":45},{"x":100,"y":45,"fileNum":64,"id":5310,"width":25,"height":45},{"x":125,"y":45,"fileNum":64,"id":5311,"width":25,"height":45},{"x":0,"y":90,"fileNum":64,"id":5312,"width":25,"height":45},{"x":25,"y":90,"fileNum":64,"id":5313,"width":25,"height":45},{"x":50,"y":90,"fileNum":64,"id":5314,"width":25,"height":45},{"x":75,"y":90,"fileNum":64,"id":5315,"width":25,"height":45},{"x":100,"y":90,"fileNum":64,"id":5316,"width":25,"height":45},{"x":0,"y":135,"fileNum":64,"id":5317,"width":25,"height":45},{"x":25,"y":135,"fileNum":64,"id":5318,"width":25,"height":45},{"x":50,"y":135,"fileNum":64,"id":5319,"width":25,"height":45},{"x":75,"y":135,"fileNum":64,"id":5320,"width":25,"height":45},{"x":100,"y":135,"fileNum":64,"id":5321,"width":25,"height":45},{"x":0,"y":0,"fileNum":477,"id":5326,"width":32,"height":32},{"x":0,"y":0,"fileNum":345,"id":5327,"width":25,"height":45},{"x":25,"y":0,"fileNum":345,"id":5328,"width":25,"height":45},{"x":50,"y":0,"fileNum":345,"id":5329,"width":25,"height":45},{"x":75,"y":0,"fileNum":345,"id":5330,"width":25,"height":45},{"x":100,"y":0,"fileNum":345,"id":5331,"width":25,"height":45},{"x":125,"y":0,"fileNum":345,"id":5332,"width":25,"height":45},{"x":0,"y":45,"fileNum":345,"id":5333,"width":25,"height":45},{"x":25,"y":45,"fileNum":345,"id":5334,"width":25,"height":45},{"x":50,"y":45,"fileNum":345,"id":5335,"width":25,"height":45},{"x":75,"y":45,"fileNum":345,"id":5336,"width":25,"height":45},{"x":100,"y":45,"fileNum":345,"id":5337,"width":25,"height":45},{"x":125,"y":45,"fileNum":345,"id":5338,"width":25,"height":45},{"x":0,"y":90,"fileNum":345,"id":5339,"width":25,"height":45},{"x":25,"y":90,"fileNum":345,"id":5340,"width":25,"height":45},{"x":50,"y":90,"fileNum":345,"id":5341,"width":25,"height":45},{"x":75,"y":90,"fileNum":345,"id":5342,"width":25,"height":45},{"x":100,"y":90,"fileNum":345,"id":5343,"width":25,"height":45},{"x":0,"y":135,"fileNum":345,"id":5344,"width":25,"height":45},{"x":25,"y":135,"fileNum":345,"id":5345,"width":25,"height":45},{"x":50,"y":135,"fileNum":345,"id":5346,"width":25,"height":45},{"x":75,"y":135,"fileNum":345,"id":5347,"width":25,"height":45},{"x":100,"y":135,"fileNum":345,"id":5348,"width":25,"height":45},{"x":0,"y":0,"fileNum":2141,"id":5353,"width":17,"height":50},{"x":17,"y":0,"fileNum":2141,"id":5354,"width":17,"height":50},{"x":34,"y":0,"fileNum":2141,"id":5355,"width":17,"height":50},{"x":51,"y":0,"fileNum":2141,"id":5356,"width":17,"height":50},{"x":0,"y":0,"fileNum":25002,"id":5357,"width":10,"height":17},{"x":0,"y":0,"fileNum":25003,"id":5358,"width":19,"height":17},{"x":0,"y":0,"fileNum":25004,"id":5359,"width":19,"height":17},{"x":0,"y":0,"fileNum":70,"id":5360,"width":25,"height":45},{"x":25,"y":0,"fileNum":70,"id":5361,"width":25,"height":45},{"x":50,"y":0,"fileNum":70,"id":5362,"width":25,"height":45},{"x":75,"y":0,"fileNum":70,"id":5363,"width":25,"height":45},{"x":100,"y":0,"fileNum":70,"id":5364,"width":25,"height":45},{"x":125,"y":0,"fileNum":70,"id":5365,"width":25,"height":45},{"x":0,"y":45,"fileNum":70,"id":5366,"width":25,"height":45},{"x":25,"y":45,"fileNum":70,"id":5367,"width":25,"height":45},{"x":50,"y":45,"fileNum":70,"id":5368,"width":25,"height":45},{"x":75,"y":45,"fileNum":70,"id":5369,"width":25,"height":45},{"x":100,"y":45,"fileNum":70,"id":5370,"width":25,"height":45},{"x":125,"y":45,"fileNum":70,"id":5371,"width":25,"height":45},{"x":0,"y":90,"fileNum":70,"id":5372,"width":25,"height":45},{"x":25,"y":90,"fileNum":70,"id":5373,"width":25,"height":45},{"x":50,"y":90,"fileNum":70,"id":5374,"width":25,"height":45},{"x":75,"y":90,"fileNum":70,"id":5375,"width":25,"height":45},{"x":100,"y":90,"fileNum":70,"id":5376,"width":25,"height":45},{"x":0,"y":135,"fileNum":70,"id":5377,"width":25,"height":45},{"x":25,"y":135,"fileNum":70,"id":5378,"width":25,"height":45},{"x":50,"y":135,"fileNum":70,"id":5379,"width":25,"height":45},{"x":75,"y":135,"fileNum":70,"id":5380,"width":25,"height":45},{"x":100,"y":135,"fileNum":70,"id":5381,"width":25,"height":45},{"x":0,"y":0,"fileNum":2142,"id":5386,"width":17,"height":50},{"x":17,"y":0,"fileNum":2142,"id":5387,"width":17,"height":50},{"x":34,"y":0,"fileNum":2142,"id":5388,"width":17,"height":50},{"x":51,"y":0,"fileNum":2142,"id":5389,"width":17,"height":50},{"x":0,"y":0,"fileNum":71,"id":5390,"width":25,"height":45},{"x":25,"y":0,"fileNum":71,"id":5391,"width":25,"height":45},{"x":50,"y":0,"fileNum":71,"id":5392,"width":25,"height":45},{"x":75,"y":0,"fileNum":71,"id":5393,"width":25,"height":45},{"x":100,"y":0,"fileNum":71,"id":5394,"width":25,"height":45},{"x":125,"y":0,"fileNum":71,"id":5395,"width":25,"height":45},{"x":0,"y":45,"fileNum":71,"id":5396,"width":25,"height":45},{"x":25,"y":45,"fileNum":71,"id":5397,"width":25,"height":45},{"x":50,"y":45,"fileNum":71,"id":5398,"width":25,"height":45},{"x":75,"y":45,"fileNum":71,"id":5399,"width":25,"height":45},{"x":100,"y":45,"fileNum":71,"id":5400,"width":25,"height":45},{"x":125,"y":45,"fileNum":71,"id":5401,"width":25,"height":45},{"x":0,"y":90,"fileNum":71,"id":5402,"width":25,"height":45},{"x":25,"y":90,"fileNum":71,"id":5403,"width":25,"height":45},{"x":50,"y":90,"fileNum":71,"id":5404,"width":25,"height":45},{"x":75,"y":90,"fileNum":71,"id":5405,"width":25,"height":45},{"x":100,"y":90,"fileNum":71,"id":5406,"width":25,"height":45},{"x":0,"y":135,"fileNum":71,"id":5407,"width":25,"height":45},{"x":25,"y":135,"fileNum":71,"id":5408,"width":25,"height":45},{"x":50,"y":135,"fileNum":71,"id":5409,"width":25,"height":45},{"x":75,"y":135,"fileNum":71,"id":5410,"width":25,"height":45},{"x":100,"y":135,"fileNum":71,"id":5411,"width":25,"height":45},{"x":0,"y":0,"fileNum":2143,"id":5416,"width":17,"height":50},{"x":17,"y":0,"fileNum":2143,"id":5417,"width":17,"height":50},{"x":34,"y":0,"fileNum":2143,"id":5418,"width":17,"height":50},{"x":51,"y":0,"fileNum":2143,"id":5419,"width":17,"height":50},{"x":0,"y":0,"fileNum":72,"id":5420,"width":25,"height":45},{"x":25,"y":0,"fileNum":72,"id":5421,"width":25,"height":45},{"x":50,"y":0,"fileNum":72,"id":5422,"width":25,"height":45},{"x":75,"y":0,"fileNum":72,"id":5423,"width":25,"height":45},{"x":100,"y":0,"fileNum":72,"id":5424,"width":25,"height":45},{"x":125,"y":0,"fileNum":72,"id":5425,"width":25,"height":45},{"x":0,"y":45,"fileNum":72,"id":5426,"width":25,"height":45},{"x":25,"y":45,"fileNum":72,"id":5427,"width":25,"height":45},{"x":50,"y":45,"fileNum":72,"id":5428,"width":25,"height":45},{"x":75,"y":45,"fileNum":72,"id":5429,"width":25,"height":45},{"x":100,"y":45,"fileNum":72,"id":5430,"width":25,"height":45},{"x":125,"y":45,"fileNum":72,"id":5431,"width":25,"height":45},{"x":0,"y":90,"fileNum":72,"id":5432,"width":25,"height":45},{"x":25,"y":90,"fileNum":72,"id":5433,"width":25,"height":45},{"x":50,"y":90,"fileNum":72,"id":5434,"width":25,"height":45},{"x":75,"y":90,"fileNum":72,"id":5435,"width":25,"height":45},{"x":100,"y":90,"fileNum":72,"id":5436,"width":25,"height":45},{"x":0,"y":135,"fileNum":72,"id":5437,"width":25,"height":45},{"x":25,"y":135,"fileNum":72,"id":5438,"width":25,"height":45},{"x":50,"y":135,"fileNum":72,"id":5439,"width":25,"height":45},{"x":75,"y":135,"fileNum":72,"id":5440,"width":25,"height":45},{"x":100,"y":135,"fileNum":72,"id":5441,"width":25,"height":45},{"x":0,"y":0,"fileNum":2144,"id":5446,"width":17,"height":50},{"x":17,"y":0,"fileNum":2144,"id":5447,"width":17,"height":50},{"x":34,"y":0,"fileNum":2144,"id":5448,"width":17,"height":50},{"x":51,"y":0,"fileNum":2144,"id":5449,"width":17,"height":50},{"x":0,"y":0,"fileNum":73,"id":5450,"width":25,"height":45},{"x":25,"y":0,"fileNum":73,"id":5451,"width":25,"height":45},{"x":50,"y":0,"fileNum":73,"id":5452,"width":25,"height":45},{"x":75,"y":0,"fileNum":73,"id":5453,"width":25,"height":45},{"x":100,"y":0,"fileNum":73,"id":5454,"width":25,"height":45},{"x":125,"y":0,"fileNum":73,"id":5455,"width":25,"height":45},{"x":0,"y":45,"fileNum":73,"id":5456,"width":25,"height":45},{"x":25,"y":45,"fileNum":73,"id":5457,"width":25,"height":45},{"x":50,"y":45,"fileNum":73,"id":5458,"width":25,"height":45},{"x":75,"y":45,"fileNum":73,"id":5459,"width":25,"height":45},{"x":100,"y":45,"fileNum":73,"id":5460,"width":25,"height":45},{"x":125,"y":45,"fileNum":73,"id":5461,"width":25,"height":45},{"x":0,"y":90,"fileNum":73,"id":5462,"width":25,"height":45},{"x":25,"y":90,"fileNum":73,"id":5463,"width":25,"height":45},{"x":50,"y":90,"fileNum":73,"id":5464,"width":25,"height":45},{"x":75,"y":90,"fileNum":73,"id":5465,"width":25,"height":45},{"x":100,"y":90,"fileNum":73,"id":5466,"width":25,"height":45},{"x":0,"y":135,"fileNum":73,"id":5467,"width":25,"height":45},{"x":25,"y":135,"fileNum":73,"id":5468,"width":25,"height":45},{"x":50,"y":135,"fileNum":73,"id":5469,"width":25,"height":45},{"x":75,"y":135,"fileNum":73,"id":5470,"width":25,"height":45},{"x":100,"y":135,"fileNum":73,"id":5471,"width":25,"height":45},{"x":0,"y":0,"fileNum":4131,"id":5476,"width":53,"height":35},{"x":53,"y":0,"fileNum":4131,"id":5477,"width":53,"height":35},{"x":106,"y":0,"fileNum":4131,"id":5478,"width":53,"height":35},{"x":159,"y":0,"fileNum":4131,"id":5479,"width":53,"height":35},{"x":0,"y":35,"fileNum":4131,"id":5480,"width":53,"height":35},{"x":53,"y":35,"fileNum":4131,"id":5481,"width":53,"height":35},{"x":106,"y":35,"fileNum":4131,"id":5482,"width":53,"height":35},{"x":159,"y":35,"fileNum":4131,"id":5483,"width":53,"height":35},{"x":0,"y":70,"fileNum":4131,"id":5484,"width":53,"height":35},{"x":53,"y":70,"fileNum":4131,"id":5485,"width":53,"height":35},{"x":106,"y":70,"fileNum":4131,"id":5486,"width":53,"height":35},{"x":159,"y":70,"fileNum":4131,"id":5487,"width":53,"height":35},{"x":0,"y":105,"fileNum":4131,"id":5488,"width":53,"height":35},{"x":53,"y":105,"fileNum":4131,"id":5489,"width":53,"height":35},{"x":106,"y":105,"fileNum":4131,"id":5490,"width":53,"height":35},{"x":159,"y":105,"fileNum":4131,"id":5491,"width":53,"height":35},{"x":0,"y":0,"fileNum":2145,"id":5496,"width":17,"height":50},{"x":17,"y":0,"fileNum":2145,"id":5497,"width":17,"height":50},{"x":34,"y":0,"fileNum":2145,"id":5498,"width":17,"height":50},{"x":51,"y":0,"fileNum":2145,"id":5499,"width":17,"height":50},{"x":0,"y":0,"fileNum":12046,"id":5500,"width":32,"height":32},{"x":32,"y":0,"fileNum":12046,"id":5501,"width":32,"height":32},{"x":0,"y":32,"fileNum":12046,"id":5502,"width":32,"height":32},{"x":32,"y":32,"fileNum":12046,"id":5503,"width":32,"height":32},{"x":0,"y":0,"fileNum":60,"id":5504,"width":25,"height":45},{"x":25,"y":0,"fileNum":60,"id":5505,"width":25,"height":45},{"x":50,"y":0,"fileNum":60,"id":5506,"width":25,"height":45},{"x":75,"y":0,"fileNum":60,"id":5507,"width":25,"height":45},{"x":100,"y":0,"fileNum":60,"id":5508,"width":25,"height":45},{"x":125,"y":0,"fileNum":60,"id":5509,"width":25,"height":45},{"x":0,"y":45,"fileNum":60,"id":5510,"width":25,"height":45},{"x":25,"y":45,"fileNum":60,"id":5511,"width":25,"height":45},{"x":50,"y":45,"fileNum":60,"id":5512,"width":25,"height":45},{"x":75,"y":45,"fileNum":60,"id":5513,"width":25,"height":45},{"x":100,"y":45,"fileNum":60,"id":5514,"width":25,"height":45},{"x":125,"y":45,"fileNum":60,"id":5515,"width":25,"height":45},{"x":0,"y":90,"fileNum":60,"id":5516,"width":25,"height":45},{"x":25,"y":90,"fileNum":60,"id":5517,"width":25,"height":45},{"x":50,"y":90,"fileNum":60,"id":5518,"width":25,"height":45},{"x":75,"y":90,"fileNum":60,"id":5519,"width":25,"height":45},{"x":100,"y":90,"fileNum":60,"id":5520,"width":25,"height":45},{"x":0,"y":135,"fileNum":60,"id":5521,"width":25,"height":45},{"x":25,"y":135,"fileNum":60,"id":5522,"width":25,"height":45},{"x":50,"y":135,"fileNum":60,"id":5523,"width":25,"height":45},{"x":75,"y":135,"fileNum":60,"id":5524,"width":25,"height":45},{"x":100,"y":135,"fileNum":60,"id":5525,"width":25,"height":45},{"x":0,"y":0,"fileNum":74,"id":5530,"width":25,"height":45},{"x":25,"y":0,"fileNum":74,"id":5531,"width":25,"height":45},{"x":50,"y":0,"fileNum":74,"id":5532,"width":25,"height":45},{"x":75,"y":0,"fileNum":74,"id":5533,"width":25,"height":45},{"x":100,"y":0,"fileNum":74,"id":5534,"width":25,"height":45},{"x":125,"y":0,"fileNum":74,"id":5535,"width":25,"height":45},{"x":0,"y":45,"fileNum":74,"id":5536,"width":25,"height":45},{"x":25,"y":45,"fileNum":74,"id":5537,"width":25,"height":45},{"x":50,"y":45,"fileNum":74,"id":5538,"width":25,"height":45},{"x":75,"y":45,"fileNum":74,"id":5539,"width":25,"height":45},{"x":100,"y":45,"fileNum":74,"id":5540,"width":25,"height":45},{"x":125,"y":45,"fileNum":74,"id":5541,"width":25,"height":45},{"x":0,"y":90,"fileNum":74,"id":5542,"width":25,"height":45},{"x":25,"y":90,"fileNum":74,"id":5543,"width":25,"height":45},{"x":50,"y":90,"fileNum":74,"id":5544,"width":25,"height":45},{"x":75,"y":90,"fileNum":74,"id":5545,"width":25,"height":45},{"x":100,"y":90,"fileNum":74,"id":5546,"width":25,"height":45},{"x":0,"y":135,"fileNum":74,"id":5547,"width":25,"height":45},{"x":25,"y":135,"fileNum":74,"id":5548,"width":25,"height":45},{"x":50,"y":135,"fileNum":74,"id":5549,"width":25,"height":45},{"x":75,"y":135,"fileNum":74,"id":5550,"width":25,"height":45},{"x":100,"y":135,"fileNum":74,"id":5551,"width":25,"height":45},{"x":0,"y":0,"fileNum":346,"id":5556,"width":32,"height":32},{"x":0,"y":0,"fileNum":422,"id":5557,"width":25,"height":45},{"x":25,"y":0,"fileNum":422,"id":5558,"width":25,"height":45},{"x":50,"y":0,"fileNum":422,"id":5559,"width":25,"height":45},{"x":75,"y":0,"fileNum":422,"id":5560,"width":25,"height":45},{"x":100,"y":0,"fileNum":422,"id":5561,"width":25,"height":45},{"x":125,"y":0,"fileNum":422,"id":5562,"width":25,"height":45},{"x":0,"y":45,"fileNum":422,"id":5563,"width":25,"height":45},{"x":25,"y":45,"fileNum":422,"id":5564,"width":25,"height":45},{"x":50,"y":45,"fileNum":422,"id":5565,"width":25,"height":45},{"x":75,"y":45,"fileNum":422,"id":5566,"width":25,"height":45},{"x":100,"y":45,"fileNum":422,"id":5567,"width":25,"height":45},{"x":125,"y":45,"fileNum":422,"id":5568,"width":25,"height":45},{"x":0,"y":90,"fileNum":422,"id":5569,"width":25,"height":45},{"x":25,"y":90,"fileNum":422,"id":5570,"width":25,"height":45},{"x":50,"y":90,"fileNum":422,"id":5571,"width":25,"height":45},{"x":75,"y":90,"fileNum":422,"id":5572,"width":25,"height":45},{"x":100,"y":90,"fileNum":422,"id":5573,"width":25,"height":45},{"x":0,"y":135,"fileNum":422,"id":5574,"width":25,"height":45},{"x":25,"y":135,"fileNum":422,"id":5575,"width":25,"height":45},{"x":50,"y":135,"fileNum":422,"id":5576,"width":25,"height":45},{"x":75,"y":135,"fileNum":422,"id":5577,"width":25,"height":45},{"x":100,"y":135,"fileNum":422,"id":5578,"width":25,"height":45},{"x":0,"y":0,"fileNum":2146,"id":5583,"width":17,"height":50},{"x":17,"y":0,"fileNum":2146,"id":5584,"width":17,"height":50},{"x":34,"y":0,"fileNum":2146,"id":5585,"width":17,"height":50},{"x":51,"y":0,"fileNum":2146,"id":5586,"width":17,"height":50},{"x":0,"y":0,"fileNum":17013,"id":5587,"width":32,"height":32},{"x":0,"y":0,"fileNum":11019,"id":5588,"width":256,"height":32},{"x":0,"y":0,"fileNum":11021,"id":5589,"width":256,"height":160},{"x":0,"y":0,"fileNum":11020,"id":5590,"width":256,"height":96},{"x":0,"y":0,"fileNum":14028,"id":5591,"width":256,"height":320},{"x":0,"y":0,"fileNum":11022,"id":5592,"width":96,"height":64},{"x":96,"y":0,"fileNum":11022,"id":5593,"width":96,"height":64},{"x":0,"y":0,"fileNum":17014,"id":5594,"width":32,"height":32},{"x":0,"y":0,"fileNum":16089,"id":5595,"width":32,"height":32},{"x":0,"y":0,"fileNum":11023,"id":5596,"width":320,"height":96},{"x":0,"y":0,"fileNum":11024,"id":5597,"width":320,"height":224},{"x":0,"y":0,"fileNum":14030,"id":5598,"width":320,"height":284},{"x":0,"y":0,"fileNum":11025,"id":5599,"width":96,"height":64},{"x":96,"y":0,"fileNum":11025,"id":5600,"width":96,"height":64},{"x":0,"y":0,"fileNum":14031,"id":5601,"width":256,"height":300},{"x":32,"y":0,"fileNum":12038,"id":5602,"width":32,"height":32},{"x":64,"y":0,"fileNum":12038,"id":5603,"width":32,"height":32},{"x":96,"y":0,"fileNum":12038,"id":5604,"width":32,"height":32},{"x":0,"y":32,"fileNum":12038,"id":5605,"width":32,"height":32},{"x":32,"y":32,"fileNum":12038,"id":5606,"width":32,"height":32},{"x":64,"y":32,"fileNum":12038,"id":5607,"width":32,"height":32},{"x":96,"y":32,"fileNum":12038,"id":5608,"width":32,"height":32},{"x":0,"y":64,"fileNum":12038,"id":5609,"width":32,"height":32},{"x":32,"y":64,"fileNum":12038,"id":5610,"width":32,"height":32},{"x":64,"y":64,"fileNum":12038,"id":5611,"width":32,"height":32},{"x":96,"y":64,"fileNum":12038,"id":5612,"width":32,"height":32},{"x":0,"y":96,"fileNum":12038,"id":5613,"width":32,"height":32},{"x":32,"y":96,"fileNum":12038,"id":5614,"width":32,"height":32},{"x":64,"y":96,"fileNum":12038,"id":5615,"width":32,"height":32},{"x":96,"y":96,"fileNum":12038,"id":5616,"width":32,"height":32},{"x":128,"y":0,"fileNum":12038,"id":5617,"width":32,"height":32},{"x":160,"y":0,"fileNum":12038,"id":5618,"width":32,"height":32},{"x":192,"y":0,"fileNum":12038,"id":5619,"width":32,"height":32},{"x":224,"y":0,"fileNum":12038,"id":5620,"width":32,"height":32},{"x":128,"y":32,"fileNum":12038,"id":5621,"width":32,"height":32},{"x":160,"y":32,"fileNum":12038,"id":5622,"width":32,"height":32},{"x":192,"y":32,"fileNum":12038,"id":5623,"width":32,"height":32},{"x":224,"y":32,"fileNum":12038,"id":5624,"width":32,"height":32},{"x":128,"y":64,"fileNum":12038,"id":5625,"width":32,"height":32},{"x":160,"y":64,"fileNum":12038,"id":5626,"width":32,"height":32},{"x":192,"y":64,"fileNum":12038,"id":5627,"width":32,"height":32},{"x":224,"y":64,"fileNum":12038,"id":5628,"width":32,"height":32},{"x":128,"y":96,"fileNum":12038,"id":5629,"width":32,"height":32},{"x":160,"y":96,"fileNum":12038,"id":5630,"width":32,"height":32},{"x":192,"y":96,"fileNum":12038,"id":5631,"width":32,"height":32},{"x":224,"y":96,"fileNum":12038,"id":5632,"width":32,"height":32},{"x":256,"y":0,"fileNum":12038,"id":5633,"width":32,"height":32},{"x":288,"y":0,"fileNum":12038,"id":5634,"width":32,"height":32},{"x":320,"y":0,"fileNum":12038,"id":5635,"width":32,"height":32},{"x":352,"y":0,"fileNum":12038,"id":5636,"width":32,"height":32},{"x":256,"y":32,"fileNum":12038,"id":5637,"width":32,"height":32},{"x":288,"y":32,"fileNum":12038,"id":5638,"width":32,"height":32},{"x":320,"y":32,"fileNum":12038,"id":5639,"width":32,"height":32},{"x":352,"y":32,"fileNum":12038,"id":5640,"width":32,"height":32},{"x":256,"y":64,"fileNum":12038,"id":5641,"width":32,"height":32},{"x":288,"y":64,"fileNum":12038,"id":5642,"width":32,"height":32},{"x":320,"y":64,"fileNum":12038,"id":5643,"width":32,"height":32},{"x":352,"y":64,"fileNum":12038,"id":5644,"width":32,"height":32},{"x":256,"y":96,"fileNum":12038,"id":5645,"width":32,"height":32},{"x":288,"y":96,"fileNum":12038,"id":5646,"width":32,"height":32},{"x":320,"y":96,"fileNum":12038,"id":5647,"width":32,"height":32},{"x":352,"y":96,"fileNum":12038,"id":5648,"width":32,"height":32},{"x":0,"y":128,"fileNum":12038,"id":5649,"width":32,"height":32},{"x":32,"y":128,"fileNum":12038,"id":5650,"width":32,"height":32},{"x":64,"y":128,"fileNum":12038,"id":5651,"width":32,"height":32},{"x":96,"y":128,"fileNum":12038,"id":5652,"width":32,"height":32},{"x":0,"y":160,"fileNum":12038,"id":5653,"width":32,"height":32},{"x":32,"y":160,"fileNum":12038,"id":5654,"width":32,"height":32},{"x":64,"y":160,"fileNum":12038,"id":5655,"width":32,"height":32},{"x":96,"y":160,"fileNum":12038,"id":5656,"width":32,"height":32},{"x":0,"y":192,"fileNum":12038,"id":5657,"width":32,"height":32},{"x":32,"y":192,"fileNum":12038,"id":5658,"width":32,"height":32},{"x":64,"y":192,"fileNum":12038,"id":5659,"width":32,"height":32},{"x":96,"y":192,"fileNum":12038,"id":5660,"width":32,"height":32},{"x":0,"y":224,"fileNum":12038,"id":5661,"width":32,"height":32},{"x":32,"y":224,"fileNum":12038,"id":5662,"width":32,"height":32},{"x":64,"y":224,"fileNum":12038,"id":5663,"width":32,"height":32},{"x":96,"y":224,"fileNum":12038,"id":5664,"width":32,"height":32},{"x":0,"y":0,"fileNum":12062,"id":5681,"width":32,"height":32},{"x":32,"y":0,"fileNum":12062,"id":5682,"width":32,"height":32},{"x":64,"y":0,"fileNum":12062,"id":5683,"width":32,"height":32},{"x":96,"y":0,"fileNum":12062,"id":5684,"width":32,"height":32},{"x":0,"y":32,"fileNum":12062,"id":5685,"width":32,"height":32},{"x":32,"y":32,"fileNum":12062,"id":5686,"width":32,"height":32},{"x":64,"y":32,"fileNum":12062,"id":5687,"width":32,"height":32},{"x":96,"y":32,"fileNum":12062,"id":5688,"width":32,"height":32},{"x":0,"y":64,"fileNum":12062,"id":5689,"width":32,"height":32},{"x":32,"y":64,"fileNum":12062,"id":5690,"width":32,"height":32},{"x":64,"y":64,"fileNum":12062,"id":5691,"width":32,"height":32},{"x":96,"y":64,"fileNum":12062,"id":5692,"width":32,"height":32},{"x":0,"y":96,"fileNum":12062,"id":5693,"width":32,"height":32},{"x":32,"y":96,"fileNum":12062,"id":5694,"width":32,"height":32},{"x":64,"y":96,"fileNum":12062,"id":5695,"width":32,"height":32},{"x":96,"y":96,"fileNum":12062,"id":5696,"width":32,"height":32},{"x":128,"y":0,"fileNum":12062,"id":5697,"width":32,"height":32},{"x":160,"y":0,"fileNum":12062,"id":5698,"width":32,"height":32},{"x":192,"y":0,"fileNum":12062,"id":5699,"width":32,"height":32},{"x":224,"y":0,"fileNum":12062,"id":5700,"width":32,"height":32},{"x":128,"y":32,"fileNum":12062,"id":5701,"width":32,"height":32},{"x":160,"y":32,"fileNum":12062,"id":5702,"width":32,"height":32},{"x":192,"y":32,"fileNum":12062,"id":5703,"width":32,"height":32},{"x":224,"y":32,"fileNum":12062,"id":5704,"width":32,"height":32},{"x":128,"y":64,"fileNum":12062,"id":5705,"width":32,"height":32},{"x":160,"y":64,"fileNum":12062,"id":5706,"width":32,"height":32},{"x":192,"y":64,"fileNum":12062,"id":5707,"width":32,"height":32},{"x":224,"y":64,"fileNum":12062,"id":5708,"width":32,"height":32},{"x":128,"y":96,"fileNum":12062,"id":5709,"width":32,"height":32},{"x":160,"y":96,"fileNum":12062,"id":5710,"width":32,"height":32},{"x":192,"y":96,"fileNum":12062,"id":5711,"width":32,"height":32},{"x":224,"y":96,"fileNum":12062,"id":5712,"width":32,"height":32},{"x":256,"y":0,"fileNum":12062,"id":5713,"width":32,"height":32},{"x":288,"y":0,"fileNum":12062,"id":5714,"width":32,"height":32},{"x":320,"y":0,"fileNum":12062,"id":5715,"width":32,"height":32},{"x":352,"y":0,"fileNum":12062,"id":5716,"width":32,"height":32},{"x":256,"y":32,"fileNum":12062,"id":5717,"width":32,"height":32},{"x":288,"y":32,"fileNum":12062,"id":5718,"width":32,"height":32},{"x":320,"y":32,"fileNum":12062,"id":5719,"width":32,"height":32},{"x":352,"y":32,"fileNum":12062,"id":5720,"width":32,"height":32},{"x":256,"y":64,"fileNum":12062,"id":5721,"width":32,"height":32},{"x":288,"y":64,"fileNum":12062,"id":5722,"width":32,"height":32},{"x":320,"y":64,"fileNum":12062,"id":5723,"width":32,"height":32},{"x":352,"y":64,"fileNum":12062,"id":5724,"width":32,"height":32},{"x":256,"y":96,"fileNum":12062,"id":5725,"width":32,"height":32},{"x":288,"y":96,"fileNum":12062,"id":5726,"width":32,"height":32},{"x":320,"y":96,"fileNum":12062,"id":5727,"width":32,"height":32},{"x":352,"y":96,"fileNum":12062,"id":5728,"width":32,"height":32},{"x":0,"y":0,"fileNum":22054,"id":5729,"width":32,"height":32},{"x":0,"y":0,"fileNum":22055,"id":5730,"width":32,"height":32},{"x":0,"y":0,"fileNum":22056,"id":5731,"width":32,"height":32},{"x":0,"y":0,"fileNum":22057,"id":5732,"width":32,"height":32},{"x":0,"y":0,"fileNum":22058,"id":5733,"width":32,"height":32},{"x":0,"y":0,"fileNum":22059,"id":5734,"width":32,"height":32},{"x":0,"y":0,"fileNum":22060,"id":5735,"width":32,"height":32},{"x":0,"y":0,"fileNum":22061,"id":5736,"width":32,"height":32},{"x":0,"y":0,"fileNum":22062,"id":5737,"width":32,"height":32},{"x":0,"y":0,"fileNum":22063,"id":5738,"width":32,"height":32},{"x":0,"y":0,"fileNum":22064,"id":5739,"width":32,"height":32},{"x":0,"y":0,"fileNum":22065,"id":5740,"width":32,"height":32},{"x":0,"y":0,"fileNum":22066,"id":5741,"width":32,"height":32},{"x":0,"y":0,"fileNum":22067,"id":5742,"width":32,"height":32},{"x":0,"y":0,"fileNum":22068,"id":5743,"width":32,"height":32},{"x":0,"y":0,"fileNum":22069,"id":5744,"width":32,"height":32},{"x":0,"y":0,"fileNum":22070,"id":5745,"width":32,"height":32},{"x":0,"y":0,"fileNum":22071,"id":5746,"width":32,"height":32},{"x":0,"y":0,"fileNum":15153,"id":5747,"width":93,"height":32},{"x":0,"y":0,"fileNum":16099,"id":5748,"width":32,"height":32},{"x":4,"y":0,"fileNum":15155,"id":5749,"width":32,"height":512},{"x":0,"y":0,"fileNum":15154,"id":5752,"width":64,"height":288},{"x":0,"y":0,"fileNum":15140,"id":5753,"width":64,"height":128},{"x":0,"y":0,"fileNum":15156,"id":5754,"width":128,"height":175},{"x":0,"y":0,"fileNum":12009,"id":5755,"width":100,"height":100},{"x":0,"y":0,"fileNum":2147,"id":5756,"width":17,"height":50},{"x":17,"y":0,"fileNum":2147,"id":5757,"width":17,"height":50},{"x":34,"y":0,"fileNum":2147,"id":5758,"width":17,"height":50},{"x":51,"y":0,"fileNum":2147,"id":5759,"width":17,"height":50},{"x":0,"y":0,"fileNum":12010,"id":5762,"width":37,"height":47},{"x":37,"y":0,"fileNum":12010,"id":5763,"width":33,"height":47},{"x":70,"y":0,"fileNum":12010,"id":5764,"width":30,"height":47},{"x":0,"y":47,"fileNum":12010,"id":5765,"width":31,"height":53},{"x":31,"y":47,"fileNum":12010,"id":5766,"width":69,"height":53},{"x":0,"y":0,"fileNum":2148,"id":5767,"width":17,"height":50},{"x":17,"y":0,"fileNum":2148,"id":5768,"width":17,"height":50},{"x":34,"y":0,"fileNum":2148,"id":5769,"width":17,"height":50},{"x":51,"y":0,"fileNum":2148,"id":5770,"width":17,"height":50},{"x":0,"y":0,"fileNum":8027,"id":5772,"width":80,"height":80},{"x":0,"y":0,"fileNum":12036,"id":5773,"width":32,"height":32},{"x":32,"y":0,"fileNum":12036,"id":5774,"width":32,"height":32},{"x":64,"y":0,"fileNum":12036,"id":5775,"width":32,"height":32},{"x":96,"y":0,"fileNum":12036,"id":5776,"width":32,"height":32},{"x":0,"y":32,"fileNum":12036,"id":5777,"width":32,"height":32},{"x":32,"y":32,"fileNum":12036,"id":5778,"width":32,"height":32},{"x":64,"y":32,"fileNum":12036,"id":5779,"width":32,"height":32},{"x":96,"y":32,"fileNum":12036,"id":5780,"width":32,"height":32},{"x":0,"y":64,"fileNum":12036,"id":5781,"width":32,"height":32},{"x":32,"y":64,"fileNum":12036,"id":5782,"width":32,"height":32},{"x":64,"y":64,"fileNum":12036,"id":5783,"width":32,"height":32},{"x":96,"y":64,"fileNum":12036,"id":5784,"width":32,"height":32},{"x":0,"y":96,"fileNum":12036,"id":5785,"width":32,"height":32},{"x":32,"y":96,"fileNum":12036,"id":5786,"width":32,"height":32},{"x":64,"y":96,"fileNum":12036,"id":5787,"width":32,"height":32},{"x":96,"y":96,"fileNum":12036,"id":5788,"width":32,"height":32},{"x":128,"y":0,"fileNum":12036,"id":5789,"width":32,"height":32},{"x":160,"y":0,"fileNum":12036,"id":5790,"width":32,"height":32},{"x":192,"y":0,"fileNum":12036,"id":5791,"width":32,"height":32},{"x":224,"y":0,"fileNum":12036,"id":5792,"width":32,"height":32},{"x":128,"y":32,"fileNum":12036,"id":5793,"width":32,"height":32},{"x":160,"y":32,"fileNum":12036,"id":5794,"width":32,"height":32},{"x":192,"y":32,"fileNum":12036,"id":5795,"width":32,"height":32},{"x":224,"y":32,"fileNum":12036,"id":5796,"width":32,"height":32},{"x":128,"y":64,"fileNum":12036,"id":5797,"width":32,"height":32},{"x":160,"y":64,"fileNum":12036,"id":5798,"width":32,"height":32},{"x":192,"y":64,"fileNum":12036,"id":5799,"width":32,"height":32},{"x":224,"y":64,"fileNum":12036,"id":5800,"width":32,"height":32},{"x":128,"y":96,"fileNum":12036,"id":5801,"width":32,"height":32},{"x":160,"y":96,"fileNum":12036,"id":5802,"width":32,"height":32},{"x":192,"y":96,"fileNum":12036,"id":5803,"width":32,"height":32},{"x":224,"y":96,"fileNum":12036,"id":5804,"width":32,"height":32},{"x":256,"y":0,"fileNum":12036,"id":5805,"width":32,"height":32},{"x":288,"y":0,"fileNum":12036,"id":5806,"width":32,"height":32},{"x":320,"y":0,"fileNum":12036,"id":5807,"width":32,"height":32},{"x":352,"y":0,"fileNum":12036,"id":5808,"width":32,"height":32},{"x":256,"y":32,"fileNum":12036,"id":5809,"width":32,"height":32},{"x":288,"y":32,"fileNum":12036,"id":5810,"width":32,"height":32},{"x":320,"y":32,"fileNum":12036,"id":5811,"width":32,"height":32},{"x":352,"y":32,"fileNum":12036,"id":5812,"width":32,"height":32},{"x":256,"y":64,"fileNum":12036,"id":5813,"width":32,"height":32},{"x":288,"y":64,"fileNum":12036,"id":5814,"width":32,"height":32},{"x":320,"y":64,"fileNum":12036,"id":5815,"width":32,"height":32},{"x":352,"y":64,"fileNum":12036,"id":5816,"width":32,"height":32},{"x":256,"y":96,"fileNum":12036,"id":5817,"width":32,"height":32},{"x":288,"y":96,"fileNum":12036,"id":5818,"width":32,"height":32},{"x":320,"y":96,"fileNum":12036,"id":5819,"width":32,"height":32},{"x":352,"y":96,"fileNum":12036,"id":5820,"width":32,"height":32},{"x":0,"y":128,"fileNum":12036,"id":5821,"width":32,"height":32},{"x":32,"y":128,"fileNum":12036,"id":5822,"width":32,"height":32},{"x":64,"y":128,"fileNum":12036,"id":5823,"width":32,"height":32},{"x":96,"y":128,"fileNum":12036,"id":5824,"width":32,"height":32},{"x":0,"y":160,"fileNum":12036,"id":5825,"width":32,"height":32},{"x":32,"y":160,"fileNum":12036,"id":5826,"width":32,"height":32},{"x":64,"y":160,"fileNum":12036,"id":5827,"width":32,"height":32},{"x":96,"y":160,"fileNum":12036,"id":5828,"width":32,"height":32},{"x":0,"y":192,"fileNum":12036,"id":5829,"width":32,"height":32},{"x":32,"y":192,"fileNum":12036,"id":5830,"width":32,"height":32},{"x":64,"y":192,"fileNum":12036,"id":5831,"width":32,"height":32},{"x":96,"y":192,"fileNum":12036,"id":5832,"width":32,"height":32},{"x":0,"y":224,"fileNum":12036,"id":5833,"width":32,"height":32},{"x":32,"y":224,"fileNum":12036,"id":5834,"width":32,"height":32},{"x":64,"y":224,"fileNum":12036,"id":5835,"width":32,"height":32},{"x":96,"y":224,"fileNum":12036,"id":5836,"width":32,"height":32},{"x":0,"y":0,"fileNum":8023,"id":5853,"width":32,"height":32},{"x":32,"y":0,"fileNum":8023,"id":5854,"width":32,"height":32},{"x":64,"y":0,"fileNum":8023,"id":5855,"width":32,"height":32},{"x":96,"y":0,"fileNum":8023,"id":5856,"width":32,"height":32},{"x":0,"y":32,"fileNum":8023,"id":5857,"width":32,"height":32},{"x":32,"y":32,"fileNum":8023,"id":5858,"width":32,"height":32},{"x":64,"y":32,"fileNum":8023,"id":5859,"width":32,"height":32},{"x":96,"y":32,"fileNum":8023,"id":5860,"width":32,"height":32},{"x":0,"y":64,"fileNum":8023,"id":5861,"width":32,"height":32},{"x":32,"y":64,"fileNum":8023,"id":5862,"width":32,"height":32},{"x":64,"y":64,"fileNum":8023,"id":5863,"width":32,"height":32},{"x":96,"y":64,"fileNum":8023,"id":5864,"width":32,"height":32},{"x":0,"y":96,"fileNum":8023,"id":5865,"width":32,"height":32},{"x":32,"y":96,"fileNum":8023,"id":5866,"width":32,"height":32},{"x":64,"y":96,"fileNum":8023,"id":5867,"width":32,"height":32},{"x":96,"y":96,"fileNum":8023,"id":5868,"width":32,"height":32},{"x":128,"y":0,"fileNum":8023,"id":5869,"width":32,"height":32},{"x":160,"y":0,"fileNum":8023,"id":5870,"width":32,"height":32},{"x":192,"y":0,"fileNum":8023,"id":5871,"width":32,"height":32},{"x":224,"y":0,"fileNum":8023,"id":5872,"width":32,"height":32},{"x":128,"y":32,"fileNum":8023,"id":5873,"width":32,"height":32},{"x":160,"y":32,"fileNum":8023,"id":5874,"width":32,"height":32},{"x":192,"y":32,"fileNum":8023,"id":5875,"width":32,"height":32},{"x":224,"y":32,"fileNum":8023,"id":5876,"width":32,"height":32},{"x":128,"y":64,"fileNum":8023,"id":5877,"width":32,"height":32},{"x":160,"y":64,"fileNum":8023,"id":5878,"width":32,"height":32},{"x":192,"y":64,"fileNum":8023,"id":5879,"width":32,"height":32},{"x":224,"y":64,"fileNum":8023,"id":5880,"width":32,"height":32},{"x":128,"y":96,"fileNum":8023,"id":5881,"width":32,"height":32},{"x":160,"y":96,"fileNum":8023,"id":5882,"width":32,"height":32},{"x":192,"y":96,"fileNum":8023,"id":5883,"width":32,"height":32},{"x":224,"y":96,"fileNum":8023,"id":5884,"width":32,"height":32},{"x":256,"y":0,"fileNum":8023,"id":5885,"width":32,"height":32},{"x":288,"y":0,"fileNum":8023,"id":5886,"width":32,"height":32},{"x":320,"y":0,"fileNum":8023,"id":5887,"width":32,"height":32},{"x":352,"y":0,"fileNum":8023,"id":5888,"width":32,"height":32},{"x":256,"y":32,"fileNum":8023,"id":5889,"width":32,"height":32},{"x":288,"y":32,"fileNum":8023,"id":5890,"width":32,"height":32},{"x":320,"y":32,"fileNum":8023,"id":5891,"width":32,"height":32},{"x":352,"y":32,"fileNum":8023,"id":5892,"width":32,"height":32},{"x":256,"y":64,"fileNum":8023,"id":5893,"width":32,"height":32},{"x":288,"y":64,"fileNum":8023,"id":5894,"width":32,"height":32},{"x":320,"y":64,"fileNum":8023,"id":5895,"width":32,"height":32},{"x":352,"y":64,"fileNum":8023,"id":5896,"width":32,"height":32},{"x":256,"y":96,"fileNum":8023,"id":5897,"width":32,"height":32},{"x":288,"y":96,"fileNum":8023,"id":5898,"width":32,"height":32},{"x":320,"y":96,"fileNum":8023,"id":5899,"width":32,"height":32},{"x":352,"y":96,"fileNum":8023,"id":5900,"width":32,"height":32},{"x":384,"y":0,"fileNum":8023,"id":5901,"width":32,"height":32},{"x":416,"y":0,"fileNum":8023,"id":5902,"width":32,"height":32},{"x":448,"y":0,"fileNum":8023,"id":5903,"width":32,"height":32},{"x":480,"y":0,"fileNum":8023,"id":5904,"width":32,"height":32},{"x":384,"y":32,"fileNum":8023,"id":5905,"width":32,"height":32},{"x":416,"y":32,"fileNum":8023,"id":5906,"width":32,"height":32},{"x":448,"y":32,"fileNum":8023,"id":5907,"width":32,"height":32},{"x":480,"y":32,"fileNum":8023,"id":5908,"width":32,"height":32},{"x":384,"y":64,"fileNum":8023,"id":5909,"width":32,"height":32},{"x":416,"y":64,"fileNum":8023,"id":5910,"width":32,"height":32},{"x":448,"y":64,"fileNum":8023,"id":5911,"width":32,"height":32},{"x":480,"y":64,"fileNum":8023,"id":5912,"width":32,"height":32},{"x":384,"y":96,"fileNum":8023,"id":5913,"width":32,"height":32},{"x":416,"y":96,"fileNum":8023,"id":5914,"width":32,"height":32},{"x":448,"y":96,"fileNum":8023,"id":5915,"width":32,"height":32},{"x":480,"y":96,"fileNum":8023,"id":5916,"width":32,"height":32},{"x":0,"y":0,"fileNum":3092,"id":5918,"width":95,"height":110},{"x":95,"y":0,"fileNum":3092,"id":5919,"width":95,"height":110},{"x":190,"y":0,"fileNum":3092,"id":5920,"width":95,"height":110},{"x":285,"y":0,"fileNum":3092,"id":5921,"width":95,"height":110},{"x":380,"y":0,"fileNum":3092,"id":5922,"width":95,"height":110},{"x":475,"y":0,"fileNum":3092,"id":5923,"width":95,"height":110},{"x":570,"y":0,"fileNum":3092,"id":5924,"width":95,"height":110},{"x":665,"y":0,"fileNum":3092,"id":5925,"width":95,"height":110},{"x":0,"y":110,"fileNum":3092,"id":5926,"width":95,"height":110},{"x":95,"y":110,"fileNum":3092,"id":5927,"width":95,"height":110},{"x":190,"y":110,"fileNum":3092,"id":5928,"width":95,"height":110},{"x":285,"y":110,"fileNum":3092,"id":5929,"width":95,"height":110},{"x":380,"y":110,"fileNum":3092,"id":5930,"width":95,"height":110},{"x":475,"y":110,"fileNum":3092,"id":5931,"width":95,"height":110},{"x":570,"y":110,"fileNum":3092,"id":5932,"width":95,"height":110},{"x":0,"y":220,"fileNum":3092,"id":5933,"width":95,"height":110},{"x":95,"y":220,"fileNum":3092,"id":5934,"width":95,"height":110},{"x":190,"y":220,"fileNum":3092,"id":5935,"width":95,"height":110},{"x":285,"y":220,"fileNum":3092,"id":5936,"width":95,"height":110},{"x":380,"y":220,"fileNum":3092,"id":5937,"width":95,"height":110},{"x":475,"y":220,"fileNum":3092,"id":5938,"width":95,"height":110},{"x":570,"y":220,"fileNum":3092,"id":5939,"width":95,"height":110},{"x":665,"y":220,"fileNum":3092,"id":5940,"width":95,"height":110},{"x":0,"y":0,"fileNum":3098,"id":5944,"width":96,"height":128},{"x":96,"y":0,"fileNum":3098,"id":5945,"width":96,"height":128},{"x":192,"y":0,"fileNum":3098,"id":5946,"width":96,"height":128},{"x":288,"y":0,"fileNum":3098,"id":5947,"width":96,"height":128},{"x":384,"y":0,"fileNum":3098,"id":5948,"width":96,"height":128},{"x":0,"y":128,"fileNum":3098,"id":5949,"width":96,"height":128},{"x":96,"y":128,"fileNum":3098,"id":5950,"width":96,"height":128},{"x":192,"y":128,"fileNum":3098,"id":5951,"width":96,"height":128},{"x":288,"y":128,"fileNum":3098,"id":5952,"width":96,"height":128},{"x":384,"y":128,"fileNum":3098,"id":5953,"width":96,"height":128},{"x":0,"y":0,"fileNum":313,"id":5955,"width":32,"height":32},{"x":0,"y":0,"fileNum":302,"id":5956,"width":25,"height":45},{"x":25,"y":0,"fileNum":302,"id":5957,"width":25,"height":45},{"x":50,"y":0,"fileNum":302,"id":5958,"width":25,"height":45},{"x":75,"y":0,"fileNum":302,"id":5959,"width":25,"height":45},{"x":100,"y":0,"fileNum":302,"id":5960,"width":25,"height":45},{"x":125,"y":0,"fileNum":302,"id":5961,"width":25,"height":45},{"x":0,"y":45,"fileNum":302,"id":5962,"width":25,"height":45},{"x":25,"y":45,"fileNum":302,"id":5963,"width":25,"height":45},{"x":50,"y":45,"fileNum":302,"id":5964,"width":25,"height":45},{"x":75,"y":45,"fileNum":302,"id":5965,"width":25,"height":45},{"x":100,"y":45,"fileNum":302,"id":5966,"width":25,"height":45},{"x":125,"y":45,"fileNum":302,"id":5967,"width":25,"height":45},{"x":0,"y":90,"fileNum":302,"id":5968,"width":25,"height":45},{"x":25,"y":90,"fileNum":302,"id":5969,"width":25,"height":45},{"x":50,"y":90,"fileNum":302,"id":5970,"width":25,"height":45},{"x":75,"y":90,"fileNum":302,"id":5971,"width":25,"height":45},{"x":100,"y":90,"fileNum":302,"id":5972,"width":25,"height":45},{"x":0,"y":135,"fileNum":302,"id":5973,"width":25,"height":45},{"x":25,"y":135,"fileNum":302,"id":5974,"width":25,"height":45},{"x":50,"y":135,"fileNum":302,"id":5975,"width":25,"height":45},{"x":75,"y":135,"fileNum":302,"id":5976,"width":25,"height":45},{"x":100,"y":135,"fileNum":302,"id":5977,"width":25,"height":45},{"x":0,"y":0,"fileNum":2149,"id":5982,"width":17,"height":50},{"x":17,"y":0,"fileNum":2149,"id":5983,"width":17,"height":50},{"x":34,"y":0,"fileNum":2149,"id":5984,"width":17,"height":50},{"x":51,"y":0,"fileNum":2149,"id":5985,"width":17,"height":50},{"x":0,"y":0,"fileNum":2150,"id":5986,"width":17,"height":50},{"x":17,"y":0,"fileNum":2150,"id":5987,"width":17,"height":50},{"x":34,"y":0,"fileNum":2150,"id":5988,"width":17,"height":50},{"x":51,"y":0,"fileNum":2150,"id":5989,"width":17,"height":50},{"x":0,"y":0,"fileNum":2151,"id":5990,"width":17,"height":50},{"x":17,"y":0,"fileNum":2151,"id":5991,"width":17,"height":50},{"x":34,"y":0,"fileNum":2151,"id":5992,"width":17,"height":50},{"x":51,"y":0,"fileNum":2151,"id":5993,"width":17,"height":50},{"x":0,"y":0,"fileNum":2152,"id":5994,"width":17,"height":50},{"x":17,"y":0,"fileNum":2152,"id":5995,"width":17,"height":50},{"x":34,"y":0,"fileNum":2152,"id":5996,"width":17,"height":50},{"x":51,"y":0,"fileNum":2152,"id":5997,"width":17,"height":50},{"x":0,"y":0,"fileNum":12052,"id":6000,"width":32,"height":32},{"x":32,"y":0,"fileNum":12052,"id":6001,"width":32,"height":32},{"x":64,"y":0,"fileNum":12052,"id":6002,"width":32,"height":32},{"x":96,"y":0,"fileNum":12052,"id":6003,"width":32,"height":32},{"x":0,"y":32,"fileNum":12052,"id":6004,"width":32,"height":32},{"x":32,"y":32,"fileNum":12052,"id":6005,"width":32,"height":32},{"x":64,"y":32,"fileNum":12052,"id":6006,"width":32,"height":32},{"x":96,"y":32,"fileNum":12052,"id":6007,"width":32,"height":32},{"x":0,"y":64,"fileNum":12052,"id":6008,"width":32,"height":32},{"x":32,"y":64,"fileNum":12052,"id":6009,"width":32,"height":32},{"x":64,"y":64,"fileNum":12052,"id":6010,"width":32,"height":32},{"x":96,"y":64,"fileNum":12052,"id":6011,"width":32,"height":32},{"x":0,"y":96,"fileNum":12052,"id":6012,"width":32,"height":32},{"x":32,"y":96,"fileNum":12052,"id":6013,"width":32,"height":32},{"x":64,"y":96,"fileNum":12052,"id":6014,"width":32,"height":32},{"x":96,"y":96,"fileNum":12052,"id":6015,"width":32,"height":32},{"x":128,"y":0,"fileNum":12052,"id":6016,"width":32,"height":32},{"x":160,"y":0,"fileNum":12052,"id":6017,"width":32,"height":32},{"x":192,"y":0,"fileNum":12052,"id":6018,"width":32,"height":32},{"x":224,"y":0,"fileNum":12052,"id":6019,"width":32,"height":32},{"x":128,"y":32,"fileNum":12052,"id":6020,"width":32,"height":32},{"x":160,"y":32,"fileNum":12052,"id":6021,"width":32,"height":32},{"x":192,"y":32,"fileNum":12052,"id":6022,"width":32,"height":32},{"x":224,"y":32,"fileNum":12052,"id":6023,"width":32,"height":32},{"x":128,"y":64,"fileNum":12052,"id":6024,"width":32,"height":32},{"x":160,"y":64,"fileNum":12052,"id":6025,"width":32,"height":32},{"x":192,"y":64,"fileNum":12052,"id":6026,"width":32,"height":32},{"x":224,"y":64,"fileNum":12052,"id":6027,"width":32,"height":32},{"x":128,"y":96,"fileNum":12052,"id":6028,"width":32,"height":32},{"x":160,"y":96,"fileNum":12052,"id":6029,"width":32,"height":32},{"x":192,"y":96,"fileNum":12052,"id":6030,"width":32,"height":32},{"x":224,"y":96,"fileNum":12052,"id":6031,"width":32,"height":32},{"x":256,"y":0,"fileNum":12052,"id":6032,"width":32,"height":32},{"x":288,"y":0,"fileNum":12052,"id":6033,"width":32,"height":32},{"x":320,"y":0,"fileNum":12052,"id":6034,"width":32,"height":32},{"x":352,"y":0,"fileNum":12052,"id":6035,"width":32,"height":32},{"x":256,"y":32,"fileNum":12052,"id":6036,"width":32,"height":32},{"x":288,"y":32,"fileNum":12052,"id":6037,"width":32,"height":32},{"x":320,"y":32,"fileNum":12052,"id":6038,"width":32,"height":32},{"x":352,"y":32,"fileNum":12052,"id":6039,"width":32,"height":32},{"x":256,"y":64,"fileNum":12052,"id":6040,"width":32,"height":32},{"x":288,"y":64,"fileNum":12052,"id":6041,"width":32,"height":32},{"x":320,"y":64,"fileNum":12052,"id":6042,"width":32,"height":32},{"x":352,"y":64,"fileNum":12052,"id":6043,"width":32,"height":32},{"x":256,"y":96,"fileNum":12052,"id":6044,"width":32,"height":32},{"x":288,"y":96,"fileNum":12052,"id":6045,"width":32,"height":32},{"x":320,"y":96,"fileNum":12052,"id":6046,"width":32,"height":32},{"x":352,"y":96,"fileNum":12052,"id":6047,"width":32,"height":32},{"x":384,"y":0,"fileNum":12052,"id":6048,"width":32,"height":32},{"x":416,"y":0,"fileNum":12052,"id":6049,"width":32,"height":32},{"x":448,"y":0,"fileNum":12052,"id":6050,"width":32,"height":32},{"x":480,"y":0,"fileNum":12052,"id":6051,"width":32,"height":32},{"x":384,"y":32,"fileNum":12052,"id":6052,"width":32,"height":32},{"x":416,"y":32,"fileNum":12052,"id":6053,"width":32,"height":32},{"x":448,"y":32,"fileNum":12052,"id":6054,"width":32,"height":32},{"x":480,"y":32,"fileNum":12052,"id":6055,"width":32,"height":32},{"x":384,"y":64,"fileNum":12052,"id":6056,"width":32,"height":32},{"x":416,"y":64,"fileNum":12052,"id":6057,"width":32,"height":32},{"x":448,"y":64,"fileNum":12052,"id":6058,"width":32,"height":32},{"x":480,"y":64,"fileNum":12052,"id":6059,"width":32,"height":32},{"x":384,"y":96,"fileNum":12052,"id":6060,"width":32,"height":32},{"x":416,"y":96,"fileNum":12052,"id":6061,"width":32,"height":32},{"x":448,"y":96,"fileNum":12052,"id":6062,"width":32,"height":32},{"x":480,"y":96,"fileNum":12052,"id":6063,"width":32,"height":32},{"x":0,"y":0,"fileNum":12053,"id":6064,"width":32,"height":32},{"x":32,"y":0,"fileNum":12053,"id":6065,"width":32,"height":32},{"x":64,"y":0,"fileNum":12053,"id":6066,"width":32,"height":32},{"x":96,"y":0,"fileNum":12053,"id":6067,"width":32,"height":32},{"x":0,"y":32,"fileNum":12053,"id":6068,"width":32,"height":32},{"x":32,"y":32,"fileNum":12053,"id":6069,"width":32,"height":32},{"x":64,"y":32,"fileNum":12053,"id":6070,"width":32,"height":32},{"x":96,"y":32,"fileNum":12053,"id":6071,"width":32,"height":32},{"x":0,"y":64,"fileNum":12053,"id":6072,"width":32,"height":32},{"x":32,"y":64,"fileNum":12053,"id":6073,"width":32,"height":32},{"x":64,"y":64,"fileNum":12053,"id":6074,"width":32,"height":32},{"x":96,"y":64,"fileNum":12053,"id":6075,"width":32,"height":32},{"x":0,"y":96,"fileNum":12053,"id":6076,"width":32,"height":32},{"x":32,"y":96,"fileNum":12053,"id":6077,"width":32,"height":32},{"x":64,"y":96,"fileNum":12053,"id":6078,"width":32,"height":32},{"x":96,"y":96,"fileNum":12053,"id":6079,"width":32,"height":32},{"x":128,"y":0,"fileNum":12053,"id":6080,"width":32,"height":32},{"x":160,"y":0,"fileNum":12053,"id":6081,"width":32,"height":32},{"x":192,"y":0,"fileNum":12053,"id":6082,"width":32,"height":32},{"x":224,"y":0,"fileNum":12053,"id":6083,"width":32,"height":32},{"x":128,"y":32,"fileNum":12053,"id":6084,"width":32,"height":32},{"x":160,"y":32,"fileNum":12053,"id":6085,"width":32,"height":32},{"x":192,"y":32,"fileNum":12053,"id":6086,"width":32,"height":32},{"x":224,"y":32,"fileNum":12053,"id":6087,"width":32,"height":32},{"x":128,"y":64,"fileNum":12053,"id":6088,"width":32,"height":32},{"x":160,"y":64,"fileNum":12053,"id":6089,"width":32,"height":32},{"x":192,"y":64,"fileNum":12053,"id":6090,"width":32,"height":32},{"x":224,"y":64,"fileNum":12053,"id":6091,"width":32,"height":32},{"x":128,"y":96,"fileNum":12053,"id":6092,"width":32,"height":32},{"x":160,"y":96,"fileNum":12053,"id":6093,"width":32,"height":32},{"x":192,"y":96,"fileNum":12053,"id":6094,"width":32,"height":32},{"x":224,"y":96,"fileNum":12053,"id":6095,"width":32,"height":32},{"x":256,"y":0,"fileNum":12053,"id":6096,"width":32,"height":32},{"x":288,"y":0,"fileNum":12053,"id":6097,"width":32,"height":32},{"x":320,"y":0,"fileNum":12053,"id":6098,"width":32,"height":32},{"x":352,"y":0,"fileNum":12053,"id":6099,"width":32,"height":32},{"x":256,"y":32,"fileNum":12053,"id":6100,"width":32,"height":32},{"x":288,"y":32,"fileNum":12053,"id":6101,"width":32,"height":32},{"x":320,"y":32,"fileNum":12053,"id":6102,"width":32,"height":32},{"x":352,"y":32,"fileNum":12053,"id":6103,"width":32,"height":32},{"x":256,"y":64,"fileNum":12053,"id":6104,"width":32,"height":32},{"x":288,"y":64,"fileNum":12053,"id":6105,"width":32,"height":32},{"x":320,"y":64,"fileNum":12053,"id":6106,"width":32,"height":32},{"x":352,"y":64,"fileNum":12053,"id":6107,"width":32,"height":32},{"x":256,"y":96,"fileNum":12053,"id":6108,"width":32,"height":32},{"x":288,"y":96,"fileNum":12053,"id":6109,"width":32,"height":32},{"x":320,"y":96,"fileNum":12053,"id":6110,"width":32,"height":32},{"x":352,"y":96,"fileNum":12053,"id":6111,"width":32,"height":32},{"x":384,"y":0,"fileNum":12053,"id":6112,"width":32,"height":32},{"x":416,"y":0,"fileNum":12053,"id":6113,"width":32,"height":32},{"x":448,"y":0,"fileNum":12053,"id":6114,"width":32,"height":32},{"x":480,"y":0,"fileNum":12053,"id":6115,"width":32,"height":32},{"x":384,"y":32,"fileNum":12053,"id":6116,"width":32,"height":32},{"x":416,"y":32,"fileNum":12053,"id":6117,"width":32,"height":32},{"x":448,"y":32,"fileNum":12053,"id":6118,"width":32,"height":32},{"x":480,"y":32,"fileNum":12053,"id":6119,"width":32,"height":32},{"x":384,"y":64,"fileNum":12053,"id":6120,"width":32,"height":32},{"x":416,"y":64,"fileNum":12053,"id":6121,"width":32,"height":32},{"x":448,"y":64,"fileNum":12053,"id":6122,"width":32,"height":32},{"x":480,"y":64,"fileNum":12053,"id":6123,"width":32,"height":32},{"x":384,"y":96,"fileNum":12053,"id":6124,"width":32,"height":32},{"x":416,"y":96,"fileNum":12053,"id":6125,"width":32,"height":32},{"x":448,"y":96,"fileNum":12053,"id":6126,"width":32,"height":32},{"x":480,"y":96,"fileNum":12053,"id":6127,"width":32,"height":32},{"x":0,"y":0,"fileNum":12054,"id":6128,"width":32,"height":32},{"x":32,"y":0,"fileNum":12054,"id":6129,"width":32,"height":32},{"x":64,"y":0,"fileNum":12054,"id":6130,"width":32,"height":32},{"x":96,"y":0,"fileNum":12054,"id":6131,"width":32,"height":32},{"x":0,"y":32,"fileNum":12054,"id":6132,"width":32,"height":32},{"x":32,"y":32,"fileNum":12054,"id":6133,"width":32,"height":32},{"x":64,"y":32,"fileNum":12054,"id":6134,"width":32,"height":32},{"x":96,"y":32,"fileNum":12054,"id":6135,"width":32,"height":32},{"x":0,"y":64,"fileNum":12054,"id":6136,"width":32,"height":32},{"x":32,"y":64,"fileNum":12054,"id":6137,"width":32,"height":32},{"x":64,"y":64,"fileNum":12054,"id":6138,"width":32,"height":32},{"x":96,"y":64,"fileNum":12054,"id":6139,"width":32,"height":32},{"x":0,"y":96,"fileNum":12054,"id":6140,"width":32,"height":32},{"x":32,"y":96,"fileNum":12054,"id":6141,"width":32,"height":32},{"x":64,"y":96,"fileNum":12054,"id":6142,"width":32,"height":32},{"x":96,"y":96,"fileNum":12054,"id":6143,"width":32,"height":32},{"x":128,"y":0,"fileNum":12054,"id":6144,"width":32,"height":32},{"x":160,"y":0,"fileNum":12054,"id":6145,"width":32,"height":32},{"x":192,"y":0,"fileNum":12054,"id":6146,"width":32,"height":32},{"x":224,"y":0,"fileNum":12054,"id":6147,"width":32,"height":32},{"x":128,"y":32,"fileNum":12054,"id":6148,"width":32,"height":32},{"x":160,"y":32,"fileNum":12054,"id":6149,"width":32,"height":32},{"x":192,"y":32,"fileNum":12054,"id":6150,"width":32,"height":32},{"x":224,"y":32,"fileNum":12054,"id":6151,"width":32,"height":32},{"x":128,"y":64,"fileNum":12054,"id":6152,"width":32,"height":32},{"x":160,"y":64,"fileNum":12054,"id":6153,"width":32,"height":32},{"x":192,"y":64,"fileNum":12054,"id":6154,"width":32,"height":32},{"x":224,"y":64,"fileNum":12054,"id":6155,"width":32,"height":32},{"x":128,"y":96,"fileNum":12054,"id":6156,"width":32,"height":32},{"x":160,"y":96,"fileNum":12054,"id":6157,"width":32,"height":32},{"x":192,"y":96,"fileNum":12054,"id":6158,"width":32,"height":32},{"x":224,"y":96,"fileNum":12054,"id":6159,"width":32,"height":32},{"x":256,"y":0,"fileNum":12054,"id":6160,"width":32,"height":32},{"x":288,"y":0,"fileNum":12054,"id":6161,"width":32,"height":32},{"x":320,"y":0,"fileNum":12054,"id":6162,"width":32,"height":32},{"x":352,"y":0,"fileNum":12054,"id":6163,"width":32,"height":32},{"x":256,"y":32,"fileNum":12054,"id":6164,"width":32,"height":32},{"x":288,"y":32,"fileNum":12054,"id":6165,"width":32,"height":32},{"x":320,"y":32,"fileNum":12054,"id":6166,"width":32,"height":32},{"x":352,"y":32,"fileNum":12054,"id":6167,"width":32,"height":32},{"x":256,"y":64,"fileNum":12054,"id":6168,"width":32,"height":32},{"x":288,"y":64,"fileNum":12054,"id":6169,"width":32,"height":32},{"x":320,"y":64,"fileNum":12054,"id":6170,"width":32,"height":32},{"x":352,"y":64,"fileNum":12054,"id":6171,"width":32,"height":32},{"x":256,"y":96,"fileNum":12054,"id":6172,"width":32,"height":32},{"x":288,"y":96,"fileNum":12054,"id":6173,"width":32,"height":32},{"x":320,"y":96,"fileNum":12054,"id":6174,"width":32,"height":32},{"x":352,"y":96,"fileNum":12054,"id":6175,"width":32,"height":32},{"x":384,"y":0,"fileNum":12054,"id":6176,"width":32,"height":32},{"x":416,"y":0,"fileNum":12054,"id":6177,"width":32,"height":32},{"x":448,"y":0,"fileNum":12054,"id":6178,"width":32,"height":32},{"x":480,"y":0,"fileNum":12054,"id":6179,"width":32,"height":32},{"x":384,"y":32,"fileNum":12054,"id":6180,"width":32,"height":32},{"x":416,"y":32,"fileNum":12054,"id":6181,"width":32,"height":32},{"x":448,"y":32,"fileNum":12054,"id":6182,"width":32,"height":32},{"x":480,"y":32,"fileNum":12054,"id":6183,"width":32,"height":32},{"x":384,"y":64,"fileNum":12054,"id":6184,"width":32,"height":32},{"x":416,"y":64,"fileNum":12054,"id":6185,"width":32,"height":32},{"x":448,"y":64,"fileNum":12054,"id":6186,"width":32,"height":32},{"x":480,"y":64,"fileNum":12054,"id":6187,"width":32,"height":32},{"x":384,"y":96,"fileNum":12054,"id":6188,"width":32,"height":32},{"x":416,"y":96,"fileNum":12054,"id":6189,"width":32,"height":32},{"x":448,"y":96,"fileNum":12054,"id":6190,"width":32,"height":32},{"x":480,"y":96,"fileNum":12054,"id":6191,"width":32,"height":32},{"x":0,"y":0,"fileNum":12055,"id":6192,"width":32,"height":32},{"x":32,"y":0,"fileNum":12055,"id":6193,"width":32,"height":32},{"x":64,"y":0,"fileNum":12055,"id":6194,"width":32,"height":32},{"x":96,"y":0,"fileNum":12055,"id":6195,"width":32,"height":32},{"x":0,"y":32,"fileNum":12055,"id":6196,"width":32,"height":32},{"x":32,"y":32,"fileNum":12055,"id":6197,"width":32,"height":32},{"x":64,"y":32,"fileNum":12055,"id":6198,"width":32,"height":32},{"x":96,"y":32,"fileNum":12055,"id":6199,"width":32,"height":32},{"x":0,"y":64,"fileNum":12055,"id":6200,"width":32,"height":32},{"x":32,"y":64,"fileNum":12055,"id":6201,"width":32,"height":32},{"x":64,"y":64,"fileNum":12055,"id":6202,"width":32,"height":32},{"x":96,"y":64,"fileNum":12055,"id":6203,"width":32,"height":32},{"x":0,"y":96,"fileNum":12055,"id":6204,"width":32,"height":32},{"x":32,"y":96,"fileNum":12055,"id":6205,"width":32,"height":32},{"x":64,"y":96,"fileNum":12055,"id":6206,"width":32,"height":32},{"x":96,"y":96,"fileNum":12055,"id":6207,"width":32,"height":32},{"x":128,"y":0,"fileNum":12055,"id":6208,"width":32,"height":32},{"x":160,"y":0,"fileNum":12055,"id":6209,"width":32,"height":32},{"x":192,"y":0,"fileNum":12055,"id":6210,"width":32,"height":32},{"x":224,"y":0,"fileNum":12055,"id":6211,"width":32,"height":32},{"x":128,"y":32,"fileNum":12055,"id":6212,"width":32,"height":32},{"x":160,"y":32,"fileNum":12055,"id":6213,"width":32,"height":32},{"x":192,"y":32,"fileNum":12055,"id":6214,"width":32,"height":32},{"x":224,"y":32,"fileNum":12055,"id":6215,"width":32,"height":32},{"x":128,"y":64,"fileNum":12055,"id":6216,"width":32,"height":32},{"x":160,"y":64,"fileNum":12055,"id":6217,"width":32,"height":32},{"x":192,"y":64,"fileNum":12055,"id":6218,"width":32,"height":32},{"x":224,"y":64,"fileNum":12055,"id":6219,"width":32,"height":32},{"x":128,"y":96,"fileNum":12055,"id":6220,"width":32,"height":32},{"x":160,"y":96,"fileNum":12055,"id":6221,"width":32,"height":32},{"x":192,"y":96,"fileNum":12055,"id":6222,"width":32,"height":32},{"x":224,"y":96,"fileNum":12055,"id":6223,"width":32,"height":32},{"x":256,"y":0,"fileNum":12055,"id":6224,"width":32,"height":32},{"x":288,"y":0,"fileNum":12055,"id":6225,"width":32,"height":32},{"x":320,"y":0,"fileNum":12055,"id":6226,"width":32,"height":32},{"x":352,"y":0,"fileNum":12055,"id":6227,"width":32,"height":32},{"x":256,"y":32,"fileNum":12055,"id":6228,"width":32,"height":32},{"x":288,"y":32,"fileNum":12055,"id":6229,"width":32,"height":32},{"x":320,"y":32,"fileNum":12055,"id":6230,"width":32,"height":32},{"x":352,"y":32,"fileNum":12055,"id":6231,"width":32,"height":32},{"x":256,"y":64,"fileNum":12055,"id":6232,"width":32,"height":32},{"x":288,"y":64,"fileNum":12055,"id":6233,"width":32,"height":32},{"x":320,"y":64,"fileNum":12055,"id":6234,"width":32,"height":32},{"x":352,"y":64,"fileNum":12055,"id":6235,"width":32,"height":32},{"x":256,"y":96,"fileNum":12055,"id":6236,"width":32,"height":32},{"x":288,"y":96,"fileNum":12055,"id":6237,"width":32,"height":32},{"x":320,"y":96,"fileNum":12055,"id":6238,"width":32,"height":32},{"x":352,"y":96,"fileNum":12055,"id":6239,"width":32,"height":32},{"x":384,"y":0,"fileNum":12055,"id":6240,"width":32,"height":32},{"x":416,"y":0,"fileNum":12055,"id":6241,"width":32,"height":32},{"x":448,"y":0,"fileNum":12055,"id":6242,"width":32,"height":32},{"x":480,"y":0,"fileNum":12055,"id":6243,"width":32,"height":32},{"x":384,"y":32,"fileNum":12055,"id":6244,"width":32,"height":32},{"x":416,"y":32,"fileNum":12055,"id":6245,"width":32,"height":32},{"x":448,"y":32,"fileNum":12055,"id":6246,"width":32,"height":32},{"x":480,"y":32,"fileNum":12055,"id":6247,"width":32,"height":32},{"x":384,"y":64,"fileNum":12055,"id":6248,"width":32,"height":32},{"x":416,"y":64,"fileNum":12055,"id":6249,"width":32,"height":32},{"x":448,"y":64,"fileNum":12055,"id":6250,"width":32,"height":32},{"x":480,"y":64,"fileNum":12055,"id":6251,"width":32,"height":32},{"x":384,"y":96,"fileNum":12055,"id":6252,"width":32,"height":32},{"x":416,"y":96,"fileNum":12055,"id":6253,"width":32,"height":32},{"x":448,"y":96,"fileNum":12055,"id":6254,"width":32,"height":32},{"x":480,"y":96,"fileNum":12055,"id":6255,"width":32,"height":32},{"x":0,"y":0,"fileNum":12056,"id":6256,"width":32,"height":32},{"x":32,"y":0,"fileNum":12056,"id":6257,"width":32,"height":32},{"x":64,"y":0,"fileNum":12056,"id":6258,"width":32,"height":32},{"x":96,"y":0,"fileNum":12056,"id":6259,"width":32,"height":32},{"x":0,"y":32,"fileNum":12056,"id":6260,"width":32,"height":32},{"x":32,"y":32,"fileNum":12056,"id":6261,"width":32,"height":32},{"x":64,"y":32,"fileNum":12056,"id":6262,"width":32,"height":32},{"x":96,"y":32,"fileNum":12056,"id":6263,"width":32,"height":32},{"x":0,"y":64,"fileNum":12056,"id":6264,"width":32,"height":32},{"x":32,"y":64,"fileNum":12056,"id":6265,"width":32,"height":32},{"x":64,"y":64,"fileNum":12056,"id":6266,"width":32,"height":32},{"x":96,"y":64,"fileNum":12056,"id":6267,"width":32,"height":32},{"x":0,"y":96,"fileNum":12056,"id":6268,"width":32,"height":32},{"x":32,"y":96,"fileNum":12056,"id":6269,"width":32,"height":32},{"x":64,"y":96,"fileNum":12056,"id":6270,"width":32,"height":32},{"x":96,"y":96,"fileNum":12056,"id":6271,"width":32,"height":32},{"x":128,"y":0,"fileNum":12056,"id":6272,"width":32,"height":32},{"x":160,"y":0,"fileNum":12056,"id":6273,"width":32,"height":32},{"x":192,"y":0,"fileNum":12056,"id":6274,"width":32,"height":32},{"x":224,"y":0,"fileNum":12056,"id":6275,"width":32,"height":32},{"x":128,"y":32,"fileNum":12056,"id":6276,"width":32,"height":32},{"x":160,"y":32,"fileNum":12056,"id":6277,"width":32,"height":32},{"x":192,"y":32,"fileNum":12056,"id":6278,"width":32,"height":32},{"x":224,"y":32,"fileNum":12056,"id":6279,"width":32,"height":32},{"x":128,"y":64,"fileNum":12056,"id":6280,"width":32,"height":32},{"x":160,"y":64,"fileNum":12056,"id":6281,"width":32,"height":32},{"x":192,"y":64,"fileNum":12056,"id":6282,"width":32,"height":32},{"x":224,"y":64,"fileNum":12056,"id":6283,"width":32,"height":32},{"x":128,"y":96,"fileNum":12056,"id":6284,"width":32,"height":32},{"x":160,"y":96,"fileNum":12056,"id":6285,"width":32,"height":32},{"x":192,"y":96,"fileNum":12056,"id":6286,"width":32,"height":32},{"x":224,"y":96,"fileNum":12056,"id":6287,"width":32,"height":32},{"x":256,"y":0,"fileNum":12056,"id":6288,"width":32,"height":32},{"x":288,"y":0,"fileNum":12056,"id":6289,"width":32,"height":32},{"x":320,"y":0,"fileNum":12056,"id":6290,"width":32,"height":32},{"x":352,"y":0,"fileNum":12056,"id":6291,"width":32,"height":32},{"x":256,"y":32,"fileNum":12056,"id":6292,"width":32,"height":32},{"x":288,"y":32,"fileNum":12056,"id":6293,"width":32,"height":32},{"x":320,"y":32,"fileNum":12056,"id":6294,"width":32,"height":32},{"x":352,"y":32,"fileNum":12056,"id":6295,"width":32,"height":32},{"x":256,"y":64,"fileNum":12056,"id":6296,"width":32,"height":32},{"x":288,"y":64,"fileNum":12056,"id":6297,"width":32,"height":32},{"x":320,"y":64,"fileNum":12056,"id":6298,"width":32,"height":32},{"x":352,"y":64,"fileNum":12056,"id":6299,"width":32,"height":32},{"x":256,"y":96,"fileNum":12056,"id":6300,"width":32,"height":32},{"x":288,"y":96,"fileNum":12056,"id":6301,"width":32,"height":32},{"x":320,"y":96,"fileNum":12056,"id":6302,"width":32,"height":32},{"x":352,"y":96,"fileNum":12056,"id":6303,"width":32,"height":32},{"x":0,"y":0,"fileNum":12057,"id":6304,"width":32,"height":32},{"x":32,"y":0,"fileNum":12057,"id":6305,"width":32,"height":32},{"x":64,"y":0,"fileNum":12057,"id":6306,"width":32,"height":32},{"x":96,"y":0,"fileNum":12057,"id":6307,"width":32,"height":32},{"x":0,"y":32,"fileNum":12057,"id":6308,"width":32,"height":32},{"x":32,"y":32,"fileNum":12057,"id":6309,"width":32,"height":32},{"x":64,"y":32,"fileNum":12057,"id":6310,"width":32,"height":32},{"x":96,"y":32,"fileNum":12057,"id":6311,"width":32,"height":32},{"x":0,"y":64,"fileNum":12057,"id":6312,"width":32,"height":32},{"x":32,"y":64,"fileNum":12057,"id":6313,"width":32,"height":32},{"x":64,"y":64,"fileNum":12057,"id":6314,"width":32,"height":32},{"x":96,"y":64,"fileNum":12057,"id":6315,"width":32,"height":32},{"x":0,"y":96,"fileNum":12057,"id":6316,"width":32,"height":32},{"x":32,"y":96,"fileNum":12057,"id":6317,"width":32,"height":32},{"x":64,"y":96,"fileNum":12057,"id":6318,"width":32,"height":32},{"x":96,"y":96,"fileNum":12057,"id":6319,"width":32,"height":32},{"x":128,"y":0,"fileNum":12057,"id":6320,"width":32,"height":32},{"x":160,"y":0,"fileNum":12057,"id":6321,"width":32,"height":32},{"x":192,"y":0,"fileNum":12057,"id":6322,"width":32,"height":32},{"x":224,"y":0,"fileNum":12057,"id":6323,"width":32,"height":32},{"x":128,"y":32,"fileNum":12057,"id":6324,"width":32,"height":32},{"x":160,"y":32,"fileNum":12057,"id":6325,"width":32,"height":32},{"x":192,"y":32,"fileNum":12057,"id":6326,"width":32,"height":32},{"x":224,"y":32,"fileNum":12057,"id":6327,"width":32,"height":32},{"x":128,"y":64,"fileNum":12057,"id":6328,"width":32,"height":32},{"x":160,"y":64,"fileNum":12057,"id":6329,"width":32,"height":32},{"x":192,"y":64,"fileNum":12057,"id":6330,"width":32,"height":32},{"x":224,"y":64,"fileNum":12057,"id":6331,"width":32,"height":32},{"x":128,"y":96,"fileNum":12057,"id":6332,"width":32,"height":32},{"x":160,"y":96,"fileNum":12057,"id":6333,"width":32,"height":32},{"x":192,"y":96,"fileNum":12057,"id":6334,"width":32,"height":32},{"x":224,"y":96,"fileNum":12057,"id":6335,"width":32,"height":32},{"x":256,"y":0,"fileNum":12057,"id":6336,"width":32,"height":32},{"x":288,"y":0,"fileNum":12057,"id":6337,"width":32,"height":32},{"x":320,"y":0,"fileNum":12057,"id":6338,"width":32,"height":32},{"x":352,"y":0,"fileNum":12057,"id":6339,"width":32,"height":32},{"x":256,"y":32,"fileNum":12057,"id":6340,"width":32,"height":32},{"x":288,"y":32,"fileNum":12057,"id":6341,"width":32,"height":32},{"x":320,"y":32,"fileNum":12057,"id":6342,"width":32,"height":32},{"x":352,"y":32,"fileNum":12057,"id":6343,"width":32,"height":32},{"x":256,"y":64,"fileNum":12057,"id":6344,"width":32,"height":32},{"x":288,"y":64,"fileNum":12057,"id":6345,"width":32,"height":32},{"x":320,"y":64,"fileNum":12057,"id":6346,"width":32,"height":32},{"x":352,"y":64,"fileNum":12057,"id":6347,"width":32,"height":32},{"x":256,"y":96,"fileNum":12057,"id":6348,"width":32,"height":32},{"x":288,"y":96,"fileNum":12057,"id":6349,"width":32,"height":32},{"x":320,"y":96,"fileNum":12057,"id":6350,"width":32,"height":32},{"x":352,"y":96,"fileNum":12057,"id":6351,"width":32,"height":32},{"x":0,"y":0,"fileNum":12058,"id":6352,"width":32,"height":32},{"x":32,"y":0,"fileNum":12058,"id":6353,"width":32,"height":32},{"x":64,"y":0,"fileNum":12058,"id":6354,"width":32,"height":32},{"x":96,"y":0,"fileNum":12058,"id":6355,"width":32,"height":32},{"x":0,"y":32,"fileNum":12058,"id":6356,"width":32,"height":32},{"x":32,"y":32,"fileNum":12058,"id":6357,"width":32,"height":32},{"x":64,"y":32,"fileNum":12058,"id":6358,"width":32,"height":32},{"x":96,"y":32,"fileNum":12058,"id":6359,"width":32,"height":32},{"x":0,"y":64,"fileNum":12058,"id":6360,"width":32,"height":32},{"x":32,"y":64,"fileNum":12058,"id":6361,"width":32,"height":32},{"x":64,"y":64,"fileNum":12058,"id":6362,"width":32,"height":32},{"x":96,"y":64,"fileNum":12058,"id":6363,"width":32,"height":32},{"x":0,"y":96,"fileNum":12058,"id":6364,"width":32,"height":32},{"x":32,"y":96,"fileNum":12058,"id":6365,"width":32,"height":32},{"x":64,"y":96,"fileNum":12058,"id":6366,"width":32,"height":32},{"x":96,"y":96,"fileNum":12058,"id":6367,"width":32,"height":32},{"x":128,"y":0,"fileNum":12058,"id":6368,"width":32,"height":32},{"x":160,"y":0,"fileNum":12058,"id":6369,"width":32,"height":32},{"x":192,"y":0,"fileNum":12058,"id":6370,"width":32,"height":32},{"x":224,"y":0,"fileNum":12058,"id":6371,"width":32,"height":32},{"x":128,"y":32,"fileNum":12058,"id":6372,"width":32,"height":32},{"x":160,"y":32,"fileNum":12058,"id":6373,"width":32,"height":32},{"x":192,"y":32,"fileNum":12058,"id":6374,"width":32,"height":32},{"x":224,"y":32,"fileNum":12058,"id":6375,"width":32,"height":32},{"x":128,"y":64,"fileNum":12058,"id":6376,"width":32,"height":32},{"x":160,"y":64,"fileNum":12058,"id":6377,"width":32,"height":32},{"x":192,"y":64,"fileNum":12058,"id":6378,"width":32,"height":32},{"x":224,"y":64,"fileNum":12058,"id":6379,"width":32,"height":32},{"x":128,"y":96,"fileNum":12058,"id":6380,"width":32,"height":32},{"x":160,"y":96,"fileNum":12058,"id":6381,"width":32,"height":32},{"x":192,"y":96,"fileNum":12058,"id":6382,"width":32,"height":32},{"x":224,"y":96,"fileNum":12058,"id":6383,"width":32,"height":32},{"x":256,"y":0,"fileNum":12058,"id":6384,"width":32,"height":32},{"x":288,"y":0,"fileNum":12058,"id":6385,"width":32,"height":32},{"x":320,"y":0,"fileNum":12058,"id":6386,"width":32,"height":32},{"x":352,"y":0,"fileNum":12058,"id":6387,"width":32,"height":32},{"x":256,"y":32,"fileNum":12058,"id":6388,"width":32,"height":32},{"x":288,"y":32,"fileNum":12058,"id":6389,"width":32,"height":32},{"x":320,"y":32,"fileNum":12058,"id":6390,"width":32,"height":32},{"x":352,"y":32,"fileNum":12058,"id":6391,"width":32,"height":32},{"x":256,"y":64,"fileNum":12058,"id":6392,"width":32,"height":32},{"x":288,"y":64,"fileNum":12058,"id":6393,"width":32,"height":32},{"x":320,"y":64,"fileNum":12058,"id":6394,"width":32,"height":32},{"x":352,"y":64,"fileNum":12058,"id":6395,"width":32,"height":32},{"x":256,"y":96,"fileNum":12058,"id":6396,"width":32,"height":32},{"x":288,"y":96,"fileNum":12058,"id":6397,"width":32,"height":32},{"x":320,"y":96,"fileNum":12058,"id":6398,"width":32,"height":32},{"x":352,"y":96,"fileNum":12058,"id":6399,"width":32,"height":32},{"x":0,"y":0,"fileNum":12059,"id":6400,"width":32,"height":32},{"x":32,"y":0,"fileNum":12059,"id":6401,"width":32,"height":32},{"x":64,"y":0,"fileNum":12059,"id":6402,"width":32,"height":32},{"x":96,"y":0,"fileNum":12059,"id":6403,"width":32,"height":32},{"x":0,"y":32,"fileNum":12059,"id":6404,"width":32,"height":32},{"x":32,"y":32,"fileNum":12059,"id":6405,"width":32,"height":32},{"x":64,"y":32,"fileNum":12059,"id":6406,"width":32,"height":32},{"x":96,"y":32,"fileNum":12059,"id":6407,"width":32,"height":32},{"x":0,"y":64,"fileNum":12059,"id":6408,"width":32,"height":32},{"x":32,"y":64,"fileNum":12059,"id":6409,"width":32,"height":32},{"x":64,"y":64,"fileNum":12059,"id":6410,"width":32,"height":32},{"x":96,"y":64,"fileNum":12059,"id":6411,"width":32,"height":32},{"x":0,"y":96,"fileNum":12059,"id":6412,"width":32,"height":32},{"x":32,"y":96,"fileNum":12059,"id":6413,"width":32,"height":32},{"x":64,"y":96,"fileNum":12059,"id":6414,"width":32,"height":32},{"x":96,"y":96,"fileNum":12059,"id":6415,"width":32,"height":32},{"x":128,"y":0,"fileNum":12059,"id":6416,"width":32,"height":32},{"x":160,"y":0,"fileNum":12059,"id":6417,"width":32,"height":32},{"x":192,"y":0,"fileNum":12059,"id":6418,"width":32,"height":32},{"x":224,"y":0,"fileNum":12059,"id":6419,"width":32,"height":32},{"x":128,"y":32,"fileNum":12059,"id":6420,"width":32,"height":32},{"x":160,"y":32,"fileNum":12059,"id":6421,"width":32,"height":32},{"x":192,"y":32,"fileNum":12059,"id":6422,"width":32,"height":32},{"x":224,"y":32,"fileNum":12059,"id":6423,"width":32,"height":32},{"x":128,"y":64,"fileNum":12059,"id":6424,"width":32,"height":32},{"x":160,"y":64,"fileNum":12059,"id":6425,"width":32,"height":32},{"x":192,"y":64,"fileNum":12059,"id":6426,"width":32,"height":32},{"x":224,"y":64,"fileNum":12059,"id":6427,"width":32,"height":32},{"x":128,"y":96,"fileNum":12059,"id":6428,"width":32,"height":32},{"x":160,"y":96,"fileNum":12059,"id":6429,"width":32,"height":32},{"x":192,"y":96,"fileNum":12059,"id":6430,"width":32,"height":32},{"x":224,"y":96,"fileNum":12059,"id":6431,"width":32,"height":32},{"x":256,"y":0,"fileNum":12059,"id":6432,"width":32,"height":32},{"x":288,"y":0,"fileNum":12059,"id":6433,"width":32,"height":32},{"x":320,"y":0,"fileNum":12059,"id":6434,"width":32,"height":32},{"x":352,"y":0,"fileNum":12059,"id":6435,"width":32,"height":32},{"x":256,"y":32,"fileNum":12059,"id":6436,"width":32,"height":32},{"x":288,"y":32,"fileNum":12059,"id":6437,"width":32,"height":32},{"x":320,"y":32,"fileNum":12059,"id":6438,"width":32,"height":32},{"x":352,"y":32,"fileNum":12059,"id":6439,"width":32,"height":32},{"x":256,"y":64,"fileNum":12059,"id":6440,"width":32,"height":32},{"x":288,"y":64,"fileNum":12059,"id":6441,"width":32,"height":32},{"x":320,"y":64,"fileNum":12059,"id":6442,"width":32,"height":32},{"x":352,"y":64,"fileNum":12059,"id":6443,"width":32,"height":32},{"x":256,"y":96,"fileNum":12059,"id":6444,"width":32,"height":32},{"x":288,"y":96,"fileNum":12059,"id":6445,"width":32,"height":32},{"x":320,"y":96,"fileNum":12059,"id":6446,"width":32,"height":32},{"x":352,"y":96,"fileNum":12059,"id":6447,"width":32,"height":32},{"x":384,"y":0,"fileNum":12059,"id":6448,"width":32,"height":32},{"x":416,"y":0,"fileNum":12059,"id":6449,"width":32,"height":32},{"x":448,"y":0,"fileNum":12059,"id":6450,"width":32,"height":32},{"x":480,"y":0,"fileNum":12059,"id":6451,"width":32,"height":32},{"x":384,"y":32,"fileNum":12059,"id":6452,"width":32,"height":32},{"x":416,"y":32,"fileNum":12059,"id":6453,"width":32,"height":32},{"x":448,"y":32,"fileNum":12059,"id":6454,"width":32,"height":32},{"x":480,"y":32,"fileNum":12059,"id":6455,"width":32,"height":32},{"x":384,"y":64,"fileNum":12059,"id":6456,"width":32,"height":32},{"x":416,"y":64,"fileNum":12059,"id":6457,"width":32,"height":32},{"x":448,"y":64,"fileNum":12059,"id":6458,"width":32,"height":32},{"x":480,"y":64,"fileNum":12059,"id":6459,"width":32,"height":32},{"x":384,"y":96,"fileNum":12059,"id":6460,"width":32,"height":32},{"x":416,"y":96,"fileNum":12059,"id":6461,"width":32,"height":32},{"x":448,"y":96,"fileNum":12059,"id":6462,"width":32,"height":32},{"x":480,"y":96,"fileNum":12059,"id":6463,"width":32,"height":32},{"x":0,"y":0,"fileNum":12060,"id":6464,"width":32,"height":32},{"x":32,"y":0,"fileNum":12060,"id":6465,"width":32,"height":32},{"x":64,"y":0,"fileNum":12060,"id":6466,"width":32,"height":32},{"x":96,"y":0,"fileNum":12060,"id":6467,"width":32,"height":32},{"x":0,"y":32,"fileNum":12060,"id":6468,"width":32,"height":32},{"x":32,"y":32,"fileNum":12060,"id":6469,"width":32,"height":32},{"x":64,"y":32,"fileNum":12060,"id":6470,"width":32,"height":32},{"x":96,"y":32,"fileNum":12060,"id":6471,"width":32,"height":32},{"x":0,"y":64,"fileNum":12060,"id":6472,"width":32,"height":32},{"x":32,"y":64,"fileNum":12060,"id":6473,"width":32,"height":32},{"x":64,"y":64,"fileNum":12060,"id":6474,"width":32,"height":32},{"x":96,"y":64,"fileNum":12060,"id":6475,"width":32,"height":32},{"x":0,"y":96,"fileNum":12060,"id":6476,"width":32,"height":32},{"x":32,"y":96,"fileNum":12060,"id":6477,"width":32,"height":32},{"x":64,"y":96,"fileNum":12060,"id":6478,"width":32,"height":32},{"x":96,"y":96,"fileNum":12060,"id":6479,"width":32,"height":32},{"x":128,"y":0,"fileNum":12060,"id":6480,"width":32,"height":32},{"x":160,"y":0,"fileNum":12060,"id":6481,"width":32,"height":32},{"x":192,"y":0,"fileNum":12060,"id":6482,"width":32,"height":32},{"x":224,"y":0,"fileNum":12060,"id":6483,"width":32,"height":32},{"x":128,"y":32,"fileNum":12060,"id":6484,"width":32,"height":32},{"x":160,"y":32,"fileNum":12060,"id":6485,"width":32,"height":32},{"x":192,"y":32,"fileNum":12060,"id":6486,"width":32,"height":32},{"x":224,"y":32,"fileNum":12060,"id":6487,"width":32,"height":32},{"x":128,"y":64,"fileNum":12060,"id":6488,"width":32,"height":32},{"x":160,"y":64,"fileNum":12060,"id":6489,"width":32,"height":32},{"x":192,"y":64,"fileNum":12060,"id":6490,"width":32,"height":32},{"x":224,"y":64,"fileNum":12060,"id":6491,"width":32,"height":32},{"x":128,"y":96,"fileNum":12060,"id":6492,"width":32,"height":32},{"x":160,"y":96,"fileNum":12060,"id":6493,"width":32,"height":32},{"x":192,"y":96,"fileNum":12060,"id":6494,"width":32,"height":32},{"x":224,"y":96,"fileNum":12060,"id":6495,"width":32,"height":32},{"x":256,"y":0,"fileNum":12060,"id":6496,"width":32,"height":32},{"x":288,"y":0,"fileNum":12060,"id":6497,"width":32,"height":32},{"x":320,"y":0,"fileNum":12060,"id":6498,"width":32,"height":32},{"x":352,"y":0,"fileNum":12060,"id":6499,"width":32,"height":32},{"x":256,"y":32,"fileNum":12060,"id":6500,"width":32,"height":32},{"x":288,"y":32,"fileNum":12060,"id":6501,"width":32,"height":32},{"x":320,"y":32,"fileNum":12060,"id":6502,"width":32,"height":32},{"x":352,"y":32,"fileNum":12060,"id":6503,"width":32,"height":32},{"x":256,"y":64,"fileNum":12060,"id":6504,"width":32,"height":32},{"x":288,"y":64,"fileNum":12060,"id":6505,"width":32,"height":32},{"x":320,"y":64,"fileNum":12060,"id":6506,"width":32,"height":32},{"x":352,"y":64,"fileNum":12060,"id":6507,"width":32,"height":32},{"x":256,"y":96,"fileNum":12060,"id":6508,"width":32,"height":32},{"x":288,"y":96,"fileNum":12060,"id":6509,"width":32,"height":32},{"x":320,"y":96,"fileNum":12060,"id":6510,"width":32,"height":32},{"x":352,"y":96,"fileNum":12060,"id":6511,"width":32,"height":32},{"x":384,"y":0,"fileNum":12060,"id":6512,"width":32,"height":32},{"x":416,"y":0,"fileNum":12060,"id":6513,"width":32,"height":32},{"x":448,"y":0,"fileNum":12060,"id":6514,"width":32,"height":32},{"x":480,"y":0,"fileNum":12060,"id":6515,"width":32,"height":32},{"x":384,"y":32,"fileNum":12060,"id":6516,"width":32,"height":32},{"x":416,"y":32,"fileNum":12060,"id":6517,"width":32,"height":32},{"x":448,"y":32,"fileNum":12060,"id":6518,"width":32,"height":32},{"x":480,"y":32,"fileNum":12060,"id":6519,"width":32,"height":32},{"x":384,"y":64,"fileNum":12060,"id":6520,"width":32,"height":32},{"x":416,"y":64,"fileNum":12060,"id":6521,"width":32,"height":32},{"x":448,"y":64,"fileNum":12060,"id":6522,"width":32,"height":32},{"x":480,"y":64,"fileNum":12060,"id":6523,"width":32,"height":32},{"x":384,"y":96,"fileNum":12060,"id":6524,"width":32,"height":32},{"x":416,"y":96,"fileNum":12060,"id":6525,"width":32,"height":32},{"x":448,"y":96,"fileNum":12060,"id":6526,"width":32,"height":32},{"x":480,"y":96,"fileNum":12060,"id":6527,"width":32,"height":32},{"x":0,"y":0,"fileNum":12061,"id":6528,"width":32,"height":32},{"x":32,"y":0,"fileNum":12061,"id":6529,"width":32,"height":32},{"x":64,"y":0,"fileNum":12061,"id":6530,"width":32,"height":32},{"x":96,"y":0,"fileNum":12061,"id":6531,"width":32,"height":32},{"x":0,"y":32,"fileNum":12061,"id":6532,"width":32,"height":32},{"x":32,"y":32,"fileNum":12061,"id":6533,"width":32,"height":32},{"x":64,"y":32,"fileNum":12061,"id":6534,"width":32,"height":32},{"x":96,"y":32,"fileNum":12061,"id":6535,"width":32,"height":32},{"x":0,"y":64,"fileNum":12061,"id":6536,"width":32,"height":32},{"x":32,"y":64,"fileNum":12061,"id":6537,"width":32,"height":32},{"x":64,"y":64,"fileNum":12061,"id":6538,"width":32,"height":32},{"x":96,"y":64,"fileNum":12061,"id":6539,"width":32,"height":32},{"x":0,"y":96,"fileNum":12061,"id":6540,"width":32,"height":32},{"x":32,"y":96,"fileNum":12061,"id":6541,"width":32,"height":32},{"x":64,"y":96,"fileNum":12061,"id":6542,"width":32,"height":32},{"x":96,"y":96,"fileNum":12061,"id":6543,"width":32,"height":32},{"x":384,"y":0,"fileNum":12056,"id":6544,"width":32,"height":32},{"x":416,"y":0,"fileNum":12056,"id":6545,"width":32,"height":32},{"x":448,"y":0,"fileNum":12056,"id":6546,"width":32,"height":32},{"x":480,"y":0,"fileNum":12056,"id":6547,"width":32,"height":32},{"x":384,"y":32,"fileNum":12056,"id":6548,"width":32,"height":32},{"x":416,"y":32,"fileNum":12056,"id":6549,"width":32,"height":32},{"x":448,"y":32,"fileNum":12056,"id":6550,"width":32,"height":32},{"x":480,"y":32,"fileNum":12056,"id":6551,"width":32,"height":32},{"x":384,"y":64,"fileNum":12056,"id":6552,"width":32,"height":32},{"x":416,"y":64,"fileNum":12056,"id":6553,"width":32,"height":32},{"x":448,"y":64,"fileNum":12056,"id":6554,"width":32,"height":32},{"x":480,"y":64,"fileNum":12056,"id":6555,"width":32,"height":32},{"x":384,"y":96,"fileNum":12056,"id":6556,"width":32,"height":32},{"x":416,"y":96,"fileNum":12056,"id":6557,"width":32,"height":32},{"x":448,"y":96,"fileNum":12056,"id":6558,"width":32,"height":32},{"x":480,"y":96,"fileNum":12056,"id":6559,"width":32,"height":32},{"x":0,"y":0,"fileNum":15078,"id":6560,"width":82,"height":40},{"x":0,"y":0,"fileNum":11002,"id":6561,"width":256,"height":96},{"x":0,"y":0,"fileNum":11003,"id":6562,"width":256,"height":160},{"x":0,"y":0,"fileNum":15079,"id":6563,"width":43,"height":50},{"x":0,"y":0,"fileNum":15080,"id":6564,"width":100,"height":50},{"x":0,"y":0,"fileNum":12014,"id":6565,"width":64,"height":64},{"x":0,"y":0,"fileNum":14001,"id":6566,"width":256,"height":186},{"x":0,"y":0,"fileNum":2153,"id":6567,"width":17,"height":50},{"x":17,"y":0,"fileNum":2153,"id":6568,"width":17,"height":50},{"x":34,"y":0,"fileNum":2153,"id":6569,"width":17,"height":50},{"x":51,"y":0,"fileNum":2153,"id":6570,"width":17,"height":50},{"x":0,"y":0,"fileNum":2154,"id":6571,"width":17,"height":50},{"x":17,"y":0,"fileNum":2154,"id":6572,"width":17,"height":50},{"x":34,"y":0,"fileNum":2154,"id":6573,"width":17,"height":50},{"x":51,"y":0,"fileNum":2154,"id":6574,"width":17,"height":50},{"x":0,"y":0,"fileNum":2,"id":6577,"width":32,"height":32},{"x":32,"y":0,"fileNum":2,"id":6578,"width":32,"height":32},{"x":64,"y":0,"fileNum":2,"id":6579,"width":32,"height":32},{"x":0,"y":0,"fileNum":8026,"id":6581,"width":32,"height":32},{"x":32,"y":0,"fileNum":8026,"id":6582,"width":32,"height":32},{"x":64,"y":0,"fileNum":8026,"id":6583,"width":32,"height":32},{"x":96,"y":0,"fileNum":8026,"id":6584,"width":32,"height":32},{"x":0,"y":32,"fileNum":8026,"id":6585,"width":32,"height":32},{"x":32,"y":32,"fileNum":8026,"id":6586,"width":32,"height":32},{"x":64,"y":32,"fileNum":8026,"id":6587,"width":32,"height":32},{"x":96,"y":32,"fileNum":8026,"id":6588,"width":32,"height":32},{"x":0,"y":64,"fileNum":8026,"id":6589,"width":32,"height":32},{"x":32,"y":64,"fileNum":8026,"id":6590,"width":32,"height":32},{"x":64,"y":64,"fileNum":8026,"id":6591,"width":32,"height":32},{"x":96,"y":64,"fileNum":8026,"id":6592,"width":32,"height":32},{"x":0,"y":96,"fileNum":8026,"id":6593,"width":32,"height":32},{"x":32,"y":96,"fileNum":8026,"id":6594,"width":32,"height":32},{"x":64,"y":96,"fileNum":8026,"id":6595,"width":32,"height":32},{"x":96,"y":96,"fileNum":8026,"id":6596,"width":32,"height":32},{"x":0,"y":0,"fileNum":8025,"id":6597,"width":32,"height":32},{"x":32,"y":0,"fileNum":8025,"id":6598,"width":32,"height":32},{"x":64,"y":0,"fileNum":8025,"id":6599,"width":32,"height":32},{"x":96,"y":0,"fileNum":8025,"id":6600,"width":32,"height":32},{"x":0,"y":32,"fileNum":8025,"id":6601,"width":32,"height":32},{"x":32,"y":32,"fileNum":8025,"id":6602,"width":32,"height":32},{"x":64,"y":32,"fileNum":8025,"id":6603,"width":32,"height":32},{"x":96,"y":32,"fileNum":8025,"id":6604,"width":32,"height":32},{"x":0,"y":64,"fileNum":8025,"id":6605,"width":32,"height":32},{"x":32,"y":64,"fileNum":8025,"id":6606,"width":32,"height":32},{"x":64,"y":64,"fileNum":8025,"id":6607,"width":32,"height":32},{"x":96,"y":64,"fileNum":8025,"id":6608,"width":32,"height":32},{"x":0,"y":96,"fileNum":8025,"id":6609,"width":32,"height":32},{"x":32,"y":96,"fileNum":8025,"id":6610,"width":32,"height":32},{"x":64,"y":96,"fileNum":8025,"id":6611,"width":32,"height":32},{"x":96,"y":96,"fileNum":8025,"id":6612,"width":32,"height":32},{"x":128,"y":0,"fileNum":8025,"id":6613,"width":32,"height":32},{"x":160,"y":0,"fileNum":8025,"id":6614,"width":32,"height":32},{"x":192,"y":0,"fileNum":8025,"id":6615,"width":32,"height":32},{"x":224,"y":0,"fileNum":8025,"id":6616,"width":32,"height":32},{"x":128,"y":32,"fileNum":8025,"id":6617,"width":32,"height":32},{"x":160,"y":32,"fileNum":8025,"id":6618,"width":32,"height":32},{"x":192,"y":32,"fileNum":8025,"id":6619,"width":32,"height":32},{"x":224,"y":32,"fileNum":8025,"id":6620,"width":32,"height":32},{"x":128,"y":64,"fileNum":8025,"id":6621,"width":32,"height":32},{"x":160,"y":64,"fileNum":8025,"id":6622,"width":32,"height":32},{"x":192,"y":64,"fileNum":8025,"id":6623,"width":32,"height":32},{"x":224,"y":64,"fileNum":8025,"id":6624,"width":32,"height":32},{"x":128,"y":96,"fileNum":8025,"id":6625,"width":32,"height":32},{"x":160,"y":96,"fileNum":8025,"id":6626,"width":32,"height":32},{"x":192,"y":96,"fileNum":8025,"id":6627,"width":32,"height":32},{"x":224,"y":96,"fileNum":8025,"id":6628,"width":32,"height":32},{"x":256,"y":0,"fileNum":8025,"id":6629,"width":32,"height":32},{"x":288,"y":0,"fileNum":8025,"id":6630,"width":32,"height":32},{"x":320,"y":0,"fileNum":8025,"id":6631,"width":32,"height":32},{"x":352,"y":0,"fileNum":8025,"id":6632,"width":32,"height":32},{"x":256,"y":32,"fileNum":8025,"id":6633,"width":32,"height":32},{"x":288,"y":32,"fileNum":8025,"id":6634,"width":32,"height":32},{"x":320,"y":32,"fileNum":8025,"id":6635,"width":32,"height":32},{"x":352,"y":32,"fileNum":8025,"id":6636,"width":32,"height":32},{"x":256,"y":64,"fileNum":8025,"id":6637,"width":32,"height":32},{"x":288,"y":64,"fileNum":8025,"id":6638,"width":32,"height":32},{"x":320,"y":64,"fileNum":8025,"id":6639,"width":32,"height":32},{"x":352,"y":64,"fileNum":8025,"id":6640,"width":32,"height":32},{"x":256,"y":96,"fileNum":8025,"id":6641,"width":32,"height":32},{"x":288,"y":96,"fileNum":8025,"id":6642,"width":32,"height":32},{"x":320,"y":96,"fileNum":8025,"id":6643,"width":32,"height":32},{"x":352,"y":96,"fileNum":8025,"id":6644,"width":32,"height":32},{"x":384,"y":0,"fileNum":8025,"id":6645,"width":32,"height":32},{"x":416,"y":0,"fileNum":8025,"id":6646,"width":32,"height":32},{"x":448,"y":0,"fileNum":8025,"id":6647,"width":32,"height":32},{"x":480,"y":0,"fileNum":8025,"id":6648,"width":32,"height":32},{"x":384,"y":32,"fileNum":8025,"id":6649,"width":32,"height":32},{"x":416,"y":32,"fileNum":8025,"id":6650,"width":32,"height":32},{"x":448,"y":32,"fileNum":8025,"id":6651,"width":32,"height":32},{"x":480,"y":32,"fileNum":8025,"id":6652,"width":32,"height":32},{"x":384,"y":64,"fileNum":8025,"id":6653,"width":32,"height":32},{"x":416,"y":64,"fileNum":8025,"id":6654,"width":32,"height":32},{"x":448,"y":64,"fileNum":8025,"id":6655,"width":32,"height":32},{"x":480,"y":64,"fileNum":8025,"id":6656,"width":32,"height":32},{"x":384,"y":96,"fileNum":8025,"id":6657,"width":32,"height":32},{"x":416,"y":96,"fileNum":8025,"id":6658,"width":32,"height":32},{"x":448,"y":96,"fileNum":8025,"id":6659,"width":32,"height":32},{"x":480,"y":96,"fileNum":8025,"id":6660,"width":32,"height":32},{"x":0,"y":0,"fileNum":8024,"id":6661,"width":32,"height":32},{"x":32,"y":0,"fileNum":8024,"id":6662,"width":32,"height":32},{"x":64,"y":0,"fileNum":8024,"id":6663,"width":32,"height":32},{"x":96,"y":0,"fileNum":8024,"id":6664,"width":32,"height":32},{"x":0,"y":32,"fileNum":8024,"id":6665,"width":32,"height":32},{"x":32,"y":32,"fileNum":8024,"id":6666,"width":32,"height":32},{"x":64,"y":32,"fileNum":8024,"id":6667,"width":32,"height":32},{"x":96,"y":32,"fileNum":8024,"id":6668,"width":32,"height":32},{"x":0,"y":64,"fileNum":8024,"id":6669,"width":32,"height":32},{"x":32,"y":64,"fileNum":8024,"id":6670,"width":32,"height":32},{"x":64,"y":64,"fileNum":8024,"id":6671,"width":32,"height":32},{"x":96,"y":64,"fileNum":8024,"id":6672,"width":32,"height":32},{"x":0,"y":96,"fileNum":8024,"id":6673,"width":32,"height":32},{"x":32,"y":96,"fileNum":8024,"id":6674,"width":32,"height":32},{"x":64,"y":96,"fileNum":8024,"id":6675,"width":32,"height":32},{"x":96,"y":96,"fileNum":8024,"id":6676,"width":32,"height":32},{"x":128,"y":0,"fileNum":8024,"id":6677,"width":32,"height":32},{"x":160,"y":0,"fileNum":8024,"id":6678,"width":32,"height":32},{"x":192,"y":0,"fileNum":8024,"id":6679,"width":32,"height":32},{"x":224,"y":0,"fileNum":8024,"id":6680,"width":32,"height":32},{"x":128,"y":32,"fileNum":8024,"id":6681,"width":32,"height":32},{"x":160,"y":32,"fileNum":8024,"id":6682,"width":32,"height":32},{"x":192,"y":32,"fileNum":8024,"id":6683,"width":32,"height":32},{"x":224,"y":32,"fileNum":8024,"id":6684,"width":32,"height":32},{"x":128,"y":64,"fileNum":8024,"id":6685,"width":32,"height":32},{"x":160,"y":64,"fileNum":8024,"id":6686,"width":32,"height":32},{"x":192,"y":64,"fileNum":8024,"id":6687,"width":32,"height":32},{"x":224,"y":64,"fileNum":8024,"id":6688,"width":32,"height":32},{"x":128,"y":96,"fileNum":8024,"id":6689,"width":32,"height":32},{"x":160,"y":96,"fileNum":8024,"id":6690,"width":32,"height":32},{"x":192,"y":96,"fileNum":8024,"id":6691,"width":32,"height":32},{"x":224,"y":96,"fileNum":8024,"id":6692,"width":32,"height":32},{"x":256,"y":0,"fileNum":8024,"id":6693,"width":32,"height":32},{"x":288,"y":0,"fileNum":8024,"id":6694,"width":32,"height":32},{"x":320,"y":0,"fileNum":8024,"id":6695,"width":32,"height":32},{"x":352,"y":0,"fileNum":8024,"id":6696,"width":32,"height":32},{"x":256,"y":32,"fileNum":8024,"id":6697,"width":32,"height":32},{"x":288,"y":32,"fileNum":8024,"id":6698,"width":32,"height":32},{"x":320,"y":32,"fileNum":8024,"id":6699,"width":32,"height":32},{"x":352,"y":32,"fileNum":8024,"id":6700,"width":32,"height":32},{"x":256,"y":64,"fileNum":8024,"id":6701,"width":32,"height":32},{"x":288,"y":64,"fileNum":8024,"id":6702,"width":32,"height":32},{"x":320,"y":64,"fileNum":8024,"id":6703,"width":32,"height":32},{"x":352,"y":64,"fileNum":8024,"id":6704,"width":32,"height":32},{"x":256,"y":96,"fileNum":8024,"id":6705,"width":32,"height":32},{"x":288,"y":96,"fileNum":8024,"id":6706,"width":32,"height":32},{"x":320,"y":96,"fileNum":8024,"id":6707,"width":32,"height":32},{"x":352,"y":96,"fileNum":8024,"id":6708,"width":32,"height":32},{"x":384,"y":0,"fileNum":8024,"id":6709,"width":32,"height":32},{"x":416,"y":0,"fileNum":8024,"id":6710,"width":32,"height":32},{"x":448,"y":0,"fileNum":8024,"id":6711,"width":32,"height":32},{"x":480,"y":0,"fileNum":8024,"id":6712,"width":32,"height":32},{"x":384,"y":32,"fileNum":8024,"id":6713,"width":32,"height":32},{"x":416,"y":32,"fileNum":8024,"id":6714,"width":32,"height":32},{"x":448,"y":32,"fileNum":8024,"id":6715,"width":32,"height":32},{"x":480,"y":32,"fileNum":8024,"id":6716,"width":32,"height":32},{"x":384,"y":64,"fileNum":8024,"id":6717,"width":32,"height":32},{"x":416,"y":64,"fileNum":8024,"id":6718,"width":32,"height":32},{"x":448,"y":64,"fileNum":8024,"id":6719,"width":32,"height":32},{"x":480,"y":64,"fileNum":8024,"id":6720,"width":32,"height":32},{"x":384,"y":96,"fileNum":8024,"id":6721,"width":32,"height":32},{"x":416,"y":96,"fileNum":8024,"id":6722,"width":32,"height":32},{"x":448,"y":96,"fileNum":8024,"id":6723,"width":32,"height":32},{"x":480,"y":96,"fileNum":8024,"id":6724,"width":32,"height":32},{"x":0,"y":0,"fileNum":12084,"id":6725,"width":32,"height":32},{"x":32,"y":0,"fileNum":12084,"id":6726,"width":32,"height":32},{"x":64,"y":0,"fileNum":12084,"id":6727,"width":32,"height":32},{"x":96,"y":0,"fileNum":12084,"id":6728,"width":32,"height":32},{"x":0,"y":32,"fileNum":12084,"id":6729,"width":32,"height":32},{"x":32,"y":32,"fileNum":12084,"id":6730,"width":32,"height":32},{"x":64,"y":32,"fileNum":12084,"id":6731,"width":32,"height":32},{"x":96,"y":32,"fileNum":12084,"id":6732,"width":32,"height":32},{"x":0,"y":64,"fileNum":12084,"id":6733,"width":32,"height":32},{"x":32,"y":64,"fileNum":12084,"id":6734,"width":32,"height":32},{"x":64,"y":64,"fileNum":12084,"id":6735,"width":32,"height":32},{"x":96,"y":64,"fileNum":12084,"id":6736,"width":32,"height":32},{"x":0,"y":96,"fileNum":12084,"id":6737,"width":32,"height":32},{"x":32,"y":96,"fileNum":12084,"id":6738,"width":32,"height":32},{"x":64,"y":96,"fileNum":12084,"id":6739,"width":32,"height":32},{"x":96,"y":96,"fileNum":12084,"id":6740,"width":32,"height":32},{"x":0,"y":0,"fileNum":12031,"id":6741,"width":32,"height":32},{"x":32,"y":0,"fileNum":12031,"id":6742,"width":32,"height":32},{"x":64,"y":0,"fileNum":12031,"id":6743,"width":32,"height":32},{"x":96,"y":0,"fileNum":12031,"id":6744,"width":32,"height":32},{"x":0,"y":32,"fileNum":12031,"id":6745,"width":32,"height":32},{"x":32,"y":32,"fileNum":12031,"id":6746,"width":32,"height":32},{"x":64,"y":32,"fileNum":12031,"id":6747,"width":32,"height":32},{"x":96,"y":32,"fileNum":12031,"id":6748,"width":32,"height":32},{"x":0,"y":64,"fileNum":12031,"id":6749,"width":32,"height":32},{"x":32,"y":64,"fileNum":12031,"id":6750,"width":32,"height":32},{"x":64,"y":64,"fileNum":12031,"id":6751,"width":32,"height":32},{"x":96,"y":64,"fileNum":12031,"id":6752,"width":32,"height":32},{"x":0,"y":96,"fileNum":12031,"id":6753,"width":32,"height":32},{"x":32,"y":96,"fileNum":12031,"id":6754,"width":32,"height":32},{"x":64,"y":96,"fileNum":12031,"id":6755,"width":32,"height":32},{"x":96,"y":96,"fileNum":12031,"id":6756,"width":32,"height":32},{"x":0,"y":0,"fileNum":15000,"id":6757,"width":40,"height":40},{"x":0,"y":0,"fileNum":58,"id":6758,"width":25,"height":45},{"x":25,"y":0,"fileNum":58,"id":6759,"width":25,"height":45},{"x":50,"y":0,"fileNum":58,"id":6760,"width":25,"height":45},{"x":75,"y":0,"fileNum":58,"id":6761,"width":25,"height":45},{"x":100,"y":0,"fileNum":58,"id":6762,"width":25,"height":45},{"x":125,"y":0,"fileNum":58,"id":6763,"width":25,"height":45},{"x":0,"y":45,"fileNum":58,"id":6765,"width":25,"height":45},{"x":25,"y":45,"fileNum":58,"id":6766,"width":25,"height":45},{"x":50,"y":45,"fileNum":58,"id":6767,"width":25,"height":45},{"x":75,"y":45,"fileNum":58,"id":6768,"width":25,"height":45},{"x":100,"y":45,"fileNum":58,"id":6769,"width":25,"height":45},{"x":125,"y":45,"fileNum":58,"id":6770,"width":25,"height":45},{"x":0,"y":90,"fileNum":58,"id":6772,"width":25,"height":45},{"x":25,"y":90,"fileNum":58,"id":6773,"width":25,"height":45},{"x":50,"y":90,"fileNum":58,"id":6774,"width":25,"height":45},{"x":75,"y":90,"fileNum":58,"id":6775,"width":25,"height":45},{"x":100,"y":90,"fileNum":58,"id":6776,"width":25,"height":45},{"x":0,"y":135,"fileNum":58,"id":6778,"width":25,"height":45},{"x":25,"y":135,"fileNum":58,"id":6779,"width":25,"height":45},{"x":50,"y":135,"fileNum":58,"id":6780,"width":25,"height":45},{"x":75,"y":135,"fileNum":58,"id":6781,"width":25,"height":45},{"x":100,"y":135,"fileNum":58,"id":6782,"width":25,"height":45},{"x":0,"y":0,"fileNum":4008,"id":6787,"width":50,"height":78},{"x":50,"y":0,"fileNum":4008,"id":6788,"width":50,"height":78},{"x":100,"y":0,"fileNum":4008,"id":6789,"width":50,"height":78},{"x":150,"y":0,"fileNum":4008,"id":6790,"width":50,"height":78},{"x":200,"y":0,"fileNum":4008,"id":6791,"width":50,"height":78},{"x":250,"y":0,"fileNum":4008,"id":6792,"width":50,"height":78},{"x":300,"y":0,"fileNum":4008,"id":6793,"width":50,"height":78},{"x":350,"y":0,"fileNum":4008,"id":6794,"width":50,"height":78},{"x":0,"y":78,"fileNum":4008,"id":6795,"width":50,"height":78},{"x":50,"y":78,"fileNum":4008,"id":6796,"width":50,"height":78},{"x":100,"y":78,"fileNum":4008,"id":6797,"width":50,"height":78},{"x":150,"y":78,"fileNum":4008,"id":6798,"width":50,"height":78},{"x":200,"y":78,"fileNum":4008,"id":6799,"width":50,"height":78},{"x":250,"y":78,"fileNum":4008,"id":6800,"width":50,"height":78},{"x":300,"y":78,"fileNum":4008,"id":6801,"width":50,"height":78},{"x":350,"y":78,"fileNum":4008,"id":6802,"width":50,"height":78},{"x":0,"y":156,"fileNum":4008,"id":6803,"width":50,"height":78},{"x":50,"y":156,"fileNum":4008,"id":6804,"width":50,"height":78},{"x":100,"y":156,"fileNum":4008,"id":6805,"width":50,"height":78},{"x":150,"y":156,"fileNum":4008,"id":6806,"width":50,"height":78},{"x":200,"y":156,"fileNum":4008,"id":6807,"width":50,"height":78},{"x":0,"y":234,"fileNum":4008,"id":6808,"width":50,"height":78},{"x":50,"y":234,"fileNum":4008,"id":6809,"width":50,"height":78},{"x":100,"y":234,"fileNum":4008,"id":6810,"width":50,"height":78},{"x":150,"y":234,"fileNum":4008,"id":6811,"width":50,"height":78},{"x":200,"y":234,"fileNum":4008,"id":6812,"width":50,"height":78},{"x":0,"y":0,"fileNum":2155,"id":6817,"width":17,"height":50},{"x":17,"y":0,"fileNum":2155,"id":6818,"width":17,"height":50},{"x":34,"y":0,"fileNum":2155,"id":6819,"width":17,"height":50},{"x":51,"y":0,"fileNum":2155,"id":6820,"width":17,"height":50},{"x":0,"y":0,"fileNum":4002,"id":6821,"width":57,"height":100},{"x":57,"y":0,"fileNum":4002,"id":6822,"width":57,"height":100},{"x":114,"y":0,"fileNum":4002,"id":6823,"width":57,"height":100},{"x":171,"y":0,"fileNum":4002,"id":6824,"width":57,"height":100},{"x":228,"y":0,"fileNum":4002,"id":6825,"width":57,"height":100},{"x":285,"y":0,"fileNum":4002,"id":6826,"width":57,"height":100},{"x":0,"y":100,"fileNum":4002,"id":6828,"width":57,"height":100},{"x":57,"y":100,"fileNum":4002,"id":6829,"width":57,"height":100},{"x":114,"y":100,"fileNum":4002,"id":6830,"width":57,"height":100},{"x":171,"y":100,"fileNum":4002,"id":6831,"width":57,"height":100},{"x":228,"y":100,"fileNum":4002,"id":6832,"width":57,"height":100},{"x":285,"y":100,"fileNum":4002,"id":6833,"width":57,"height":100},{"x":0,"y":200,"fileNum":4002,"id":6835,"width":57,"height":100},{"x":57,"y":200,"fileNum":4002,"id":6836,"width":57,"height":100},{"x":114,"y":200,"fileNum":4002,"id":6837,"width":57,"height":100},{"x":171,"y":200,"fileNum":4002,"id":6838,"width":57,"height":100},{"x":228,"y":200,"fileNum":4002,"id":6839,"width":57,"height":100},{"x":0,"y":300,"fileNum":4002,"id":6841,"width":57,"height":100},{"x":57,"y":300,"fileNum":4002,"id":6842,"width":57,"height":100},{"x":114,"y":300,"fileNum":4002,"id":6843,"width":57,"height":100},{"x":171,"y":300,"fileNum":4002,"id":6844,"width":57,"height":100},{"x":228,"y":300,"fileNum":4002,"id":6845,"width":57,"height":100},{"x":0,"y":0,"fileNum":4006,"id":6850,"width":57,"height":98},{"x":57,"y":0,"fileNum":4006,"id":6851,"width":57,"height":98},{"x":114,"y":0,"fileNum":4006,"id":6852,"width":57,"height":98},{"x":171,"y":0,"fileNum":4006,"id":6853,"width":57,"height":98},{"x":228,"y":0,"fileNum":4006,"id":6854,"width":57,"height":98},{"x":285,"y":0,"fileNum":4006,"id":6855,"width":57,"height":98},{"x":0,"y":98,"fileNum":4006,"id":6857,"width":57,"height":98},{"x":57,"y":98,"fileNum":4006,"id":6858,"width":57,"height":98},{"x":114,"y":98,"fileNum":4006,"id":6859,"width":57,"height":98},{"x":171,"y":98,"fileNum":4006,"id":6860,"width":57,"height":98},{"x":228,"y":98,"fileNum":4006,"id":6861,"width":57,"height":98},{"x":285,"y":98,"fileNum":4006,"id":6862,"width":57,"height":98},{"x":0,"y":196,"fileNum":4006,"id":6864,"width":57,"height":98},{"x":57,"y":196,"fileNum":4006,"id":6865,"width":57,"height":98},{"x":114,"y":196,"fileNum":4006,"id":6866,"width":57,"height":98},{"x":171,"y":196,"fileNum":4006,"id":6867,"width":57,"height":98},{"x":228,"y":196,"fileNum":4006,"id":6868,"width":57,"height":98},{"x":0,"y":294,"fileNum":4006,"id":6870,"width":57,"height":98},{"x":57,"y":294,"fileNum":4006,"id":6871,"width":57,"height":98},{"x":114,"y":294,"fileNum":4006,"id":6872,"width":57,"height":98},{"x":171,"y":294,"fileNum":4006,"id":6873,"width":57,"height":98},{"x":228,"y":294,"fileNum":4006,"id":6874,"width":57,"height":98},{"x":0,"y":0,"fileNum":4007,"id":6879,"width":31,"height":25},{"x":31,"y":0,"fileNum":4007,"id":6880,"width":31,"height":25},{"x":62,"y":0,"fileNum":4007,"id":6881,"width":31,"height":25},{"x":0,"y":25,"fileNum":4007,"id":6883,"width":31,"height":25},{"x":31,"y":25,"fileNum":4007,"id":6884,"width":31,"height":25},{"x":62,"y":25,"fileNum":4007,"id":6885,"width":31,"height":25},{"x":0,"y":50,"fileNum":4007,"id":6887,"width":31,"height":25},{"x":31,"y":50,"fileNum":4007,"id":6888,"width":31,"height":25},{"x":62,"y":50,"fileNum":4007,"id":6889,"width":31,"height":25},{"x":0,"y":75,"fileNum":4007,"id":6891,"width":31,"height":25},{"x":31,"y":75,"fileNum":4007,"id":6892,"width":31,"height":25},{"x":62,"y":75,"fileNum":4007,"id":6893,"width":31,"height":25},{"x":0,"y":0,"fileNum":4132,"id":6898,"width":48,"height":48},{"x":48,"y":0,"fileNum":4132,"id":6899,"width":48,"height":48},{"x":96,"y":0,"fileNum":4132,"id":6900,"width":48,"height":48},{"x":144,"y":0,"fileNum":4132,"id":6901,"width":48,"height":48},{"x":0,"y":48,"fileNum":4132,"id":6902,"width":48,"height":48},{"x":48,"y":48,"fileNum":4132,"id":6903,"width":48,"height":48},{"x":96,"y":48,"fileNum":4132,"id":6904,"width":48,"height":48},{"x":144,"y":48,"fileNum":4132,"id":6905,"width":48,"height":48},{"x":0,"y":96,"fileNum":4132,"id":6906,"width":48,"height":48},{"x":48,"y":96,"fileNum":4132,"id":6907,"width":48,"height":48},{"x":96,"y":96,"fileNum":4132,"id":6908,"width":48,"height":48},{"x":144,"y":96,"fileNum":4132,"id":6909,"width":48,"height":48},{"x":0,"y":144,"fileNum":4132,"id":6910,"width":48,"height":48},{"x":48,"y":144,"fileNum":4132,"id":6911,"width":48,"height":48},{"x":96,"y":144,"fileNum":4132,"id":6912,"width":48,"height":48},{"x":144,"y":144,"fileNum":4132,"id":6913,"width":48,"height":48},{"x":0,"y":0,"fileNum":4080,"id":6918,"width":25,"height":52},{"x":25,"y":0,"fileNum":4080,"id":6919,"width":25,"height":52},{"x":50,"y":0,"fileNum":4080,"id":6920,"width":25,"height":52},{"x":75,"y":0,"fileNum":4080,"id":6921,"width":25,"height":52},{"x":100,"y":0,"fileNum":4080,"id":6922,"width":25,"height":52},{"x":125,"y":0,"fileNum":4080,"id":6923,"width":25,"height":52},{"x":0,"y":52,"fileNum":4080,"id":6924,"width":25,"height":52},{"x":25,"y":52,"fileNum":4080,"id":6925,"width":25,"height":52},{"x":50,"y":52,"fileNum":4080,"id":6926,"width":25,"height":52},{"x":75,"y":52,"fileNum":4080,"id":6927,"width":25,"height":52},{"x":100,"y":52,"fileNum":4080,"id":6928,"width":25,"height":52},{"x":125,"y":52,"fileNum":4080,"id":6929,"width":25,"height":52},{"x":0,"y":104,"fileNum":4080,"id":6930,"width":25,"height":52},{"x":25,"y":104,"fileNum":4080,"id":6931,"width":25,"height":52},{"x":50,"y":104,"fileNum":4080,"id":6932,"width":25,"height":52},{"x":75,"y":104,"fileNum":4080,"id":6933,"width":25,"height":52},{"x":100,"y":104,"fileNum":4080,"id":6934,"width":25,"height":52},{"x":0,"y":156,"fileNum":4080,"id":6935,"width":25,"height":52},{"x":25,"y":156,"fileNum":4080,"id":6936,"width":25,"height":52},{"x":50,"y":156,"fileNum":4080,"id":6937,"width":25,"height":52},{"x":75,"y":156,"fileNum":4080,"id":6938,"width":25,"height":52},{"x":100,"y":156,"fileNum":4080,"id":6939,"width":25,"height":52},{"x":0,"y":0,"fileNum":2156,"id":6944,"width":17,"height":50},{"x":17,"y":0,"fileNum":2156,"id":6945,"width":17,"height":50},{"x":34,"y":0,"fileNum":2156,"id":6946,"width":17,"height":50},{"x":51,"y":0,"fileNum":2156,"id":6947,"width":17,"height":50},{"x":0,"y":0,"fileNum":2157,"id":6948,"width":17,"height":50},{"x":17,"y":0,"fileNum":2157,"id":6949,"width":17,"height":50},{"x":34,"y":0,"fileNum":2157,"id":6950,"width":17,"height":50},{"x":51,"y":0,"fileNum":2157,"id":6951,"width":17,"height":50},{"x":0,"y":0,"fileNum":2158,"id":6952,"width":17,"height":50},{"x":17,"y":0,"fileNum":2158,"id":6953,"width":17,"height":50},{"x":34,"y":0,"fileNum":2158,"id":6954,"width":17,"height":50},{"x":51,"y":0,"fileNum":2158,"id":6955,"width":17,"height":50},{"x":0,"y":0,"fileNum":2159,"id":6956,"width":17,"height":50},{"x":17,"y":0,"fileNum":2159,"id":6957,"width":17,"height":50},{"x":34,"y":0,"fileNum":2159,"id":6958,"width":17,"height":50},{"x":51,"y":0,"fileNum":2159,"id":6959,"width":17,"height":50},{"x":0,"y":0,"fileNum":2160,"id":6960,"width":17,"height":50},{"x":17,"y":0,"fileNum":2160,"id":6961,"width":17,"height":50},{"x":34,"y":0,"fileNum":2160,"id":6962,"width":17,"height":50},{"x":51,"y":0,"fileNum":2160,"id":6963,"width":17,"height":50},{"x":0,"y":0,"fileNum":188,"id":6967,"width":32,"height":32},{"x":0,"y":0,"fileNum":189,"id":6968,"width":25,"height":45},{"x":25,"y":0,"fileNum":189,"id":6969,"width":25,"height":45},{"x":50,"y":0,"fileNum":189,"id":6970,"width":25,"height":45},{"x":75,"y":0,"fileNum":189,"id":6971,"width":25,"height":45},{"x":100,"y":0,"fileNum":189,"id":6972,"width":25,"height":45},{"x":125,"y":0,"fileNum":189,"id":6973,"width":25,"height":45},{"x":0,"y":45,"fileNum":189,"id":6974,"width":25,"height":45},{"x":25,"y":45,"fileNum":189,"id":6975,"width":25,"height":45},{"x":50,"y":45,"fileNum":189,"id":6976,"width":25,"height":45},{"x":75,"y":45,"fileNum":189,"id":6977,"width":25,"height":45},{"x":100,"y":45,"fileNum":189,"id":6978,"width":25,"height":45},{"x":125,"y":45,"fileNum":189,"id":6979,"width":25,"height":45},{"x":0,"y":90,"fileNum":189,"id":6980,"width":25,"height":45},{"x":25,"y":90,"fileNum":189,"id":6981,"width":25,"height":45},{"x":50,"y":90,"fileNum":189,"id":6982,"width":25,"height":45},{"x":75,"y":90,"fileNum":189,"id":6983,"width":25,"height":45},{"x":100,"y":90,"fileNum":189,"id":6984,"width":25,"height":45},{"x":0,"y":135,"fileNum":189,"id":6985,"width":25,"height":45},{"x":25,"y":135,"fileNum":189,"id":6986,"width":25,"height":45},{"x":50,"y":135,"fileNum":189,"id":6987,"width":25,"height":45},{"x":75,"y":135,"fileNum":189,"id":6988,"width":25,"height":45},{"x":100,"y":135,"fileNum":189,"id":6989,"width":25,"height":45},{"x":0,"y":0,"fileNum":2161,"id":6994,"width":17,"height":50},{"x":17,"y":0,"fileNum":2161,"id":6995,"width":17,"height":50},{"x":34,"y":0,"fileNum":2161,"id":6996,"width":17,"height":50},{"x":51,"y":0,"fileNum":2161,"id":6997,"width":17,"height":50},{"x":0,"y":0,"fileNum":6070,"id":7000,"width":256,"height":256},{"x":0,"y":0,"fileNum":6071,"id":7001,"width":256,"height":256},{"x":0,"y":0,"fileNum":6072,"id":7002,"width":256,"height":256},{"x":0,"y":0,"fileNum":4030,"id":7003,"width":38,"height":56},{"x":38,"y":0,"fileNum":4030,"id":7004,"width":38,"height":56},{"x":76,"y":0,"fileNum":4030,"id":7005,"width":38,"height":56},{"x":114,"y":0,"fileNum":4030,"id":7006,"width":38,"height":56},{"x":152,"y":0,"fileNum":4030,"id":7007,"width":38,"height":56},{"x":190,"y":0,"fileNum":4030,"id":7008,"width":38,"height":56},{"x":0,"y":56,"fileNum":4030,"id":7010,"width":38,"height":56},{"x":38,"y":56,"fileNum":4030,"id":7011,"width":38,"height":56},{"x":76,"y":56,"fileNum":4030,"id":7012,"width":38,"height":56},{"x":114,"y":56,"fileNum":4030,"id":7013,"width":38,"height":56},{"x":152,"y":56,"fileNum":4030,"id":7014,"width":38,"height":56},{"x":190,"y":56,"fileNum":4030,"id":7015,"width":38,"height":56},{"x":0,"y":112,"fileNum":4030,"id":7017,"width":38,"height":56},{"x":38,"y":112,"fileNum":4030,"id":7018,"width":38,"height":56},{"x":76,"y":112,"fileNum":4030,"id":7019,"width":38,"height":56},{"x":114,"y":112,"fileNum":4030,"id":7020,"width":38,"height":56},{"x":152,"y":112,"fileNum":4030,"id":7021,"width":38,"height":56},{"x":190,"y":112,"fileNum":4030,"id":7022,"width":38,"height":56},{"x":0,"y":168,"fileNum":4030,"id":7024,"width":38,"height":56},{"x":38,"y":168,"fileNum":4030,"id":7025,"width":38,"height":56},{"x":76,"y":168,"fileNum":4030,"id":7026,"width":38,"height":56},{"x":114,"y":168,"fileNum":4030,"id":7027,"width":38,"height":56},{"x":152,"y":168,"fileNum":4030,"id":7028,"width":38,"height":56},{"x":190,"y":168,"fileNum":4030,"id":7029,"width":38,"height":56},{"x":0,"y":0,"fileNum":4032,"id":7034,"width":52,"height":81},{"x":52,"y":0,"fileNum":4032,"id":7035,"width":52,"height":81},{"x":104,"y":0,"fileNum":4032,"id":7036,"width":52,"height":81},{"x":156,"y":0,"fileNum":4032,"id":7037,"width":52,"height":81},{"x":208,"y":0,"fileNum":4032,"id":7038,"width":52,"height":81},{"x":260,"y":0,"fileNum":4032,"id":7039,"width":52,"height":81},{"x":0,"y":81,"fileNum":4032,"id":7041,"width":52,"height":81},{"x":52,"y":81,"fileNum":4032,"id":7042,"width":52,"height":81},{"x":104,"y":81,"fileNum":4032,"id":7043,"width":52,"height":81},{"x":156,"y":81,"fileNum":4032,"id":7044,"width":52,"height":81},{"x":207,"y":81,"fileNum":4032,"id":7045,"width":52,"height":81},{"x":260,"y":81,"fileNum":4032,"id":7046,"width":52,"height":81},{"x":0,"y":162,"fileNum":4032,"id":7048,"width":52,"height":81},{"x":52,"y":162,"fileNum":4032,"id":7049,"width":52,"height":81},{"x":104,"y":162,"fileNum":4032,"id":7050,"width":52,"height":81},{"x":156,"y":162,"fileNum":4032,"id":7051,"width":52,"height":81},{"x":208,"y":162,"fileNum":4032,"id":7052,"width":52,"height":81},{"x":260,"y":162,"fileNum":4032,"id":7053,"width":52,"height":81},{"x":0,"y":243,"fileNum":4032,"id":7055,"width":52,"height":81},{"x":52,"y":243,"fileNum":4032,"id":7056,"width":52,"height":81},{"x":104,"y":243,"fileNum":4032,"id":7057,"width":52,"height":81},{"x":156,"y":243,"fileNum":4032,"id":7058,"width":52,"height":81},{"x":208,"y":243,"fileNum":4032,"id":7059,"width":52,"height":81},{"x":260,"y":243,"fileNum":4032,"id":7060,"width":52,"height":81},{"x":0,"y":0,"fileNum":4033,"id":7065,"width":52,"height":81},{"x":52,"y":0,"fileNum":4033,"id":7066,"width":52,"height":81},{"x":104,"y":0,"fileNum":4033,"id":7067,"width":52,"height":81},{"x":156,"y":0,"fileNum":4033,"id":7068,"width":52,"height":81},{"x":208,"y":0,"fileNum":4033,"id":7069,"width":52,"height":81},{"x":260,"y":0,"fileNum":4033,"id":7070,"width":52,"height":81},{"x":0,"y":81,"fileNum":4033,"id":7072,"width":52,"height":81},{"x":52,"y":81,"fileNum":4033,"id":7073,"width":52,"height":81},{"x":104,"y":81,"fileNum":4033,"id":7074,"width":52,"height":81},{"x":156,"y":81,"fileNum":4033,"id":7075,"width":52,"height":81},{"x":207,"y":81,"fileNum":4033,"id":7076,"width":52,"height":81},{"x":260,"y":81,"fileNum":4033,"id":7077,"width":52,"height":81},{"x":0,"y":162,"fileNum":4033,"id":7079,"width":52,"height":81},{"x":52,"y":162,"fileNum":4033,"id":7080,"width":52,"height":81},{"x":104,"y":162,"fileNum":4033,"id":7081,"width":52,"height":81},{"x":156,"y":162,"fileNum":4033,"id":7082,"width":52,"height":81},{"x":208,"y":162,"fileNum":4033,"id":7083,"width":52,"height":81},{"x":260,"y":162,"fileNum":4033,"id":7084,"width":52,"height":81},{"x":0,"y":243,"fileNum":4033,"id":7086,"width":52,"height":81},{"x":52,"y":243,"fileNum":4033,"id":7087,"width":52,"height":81},{"x":104,"y":243,"fileNum":4033,"id":7088,"width":52,"height":81},{"x":156,"y":243,"fileNum":4033,"id":7089,"width":52,"height":81},{"x":208,"y":243,"fileNum":4033,"id":7090,"width":52,"height":81},{"x":260,"y":243,"fileNum":4033,"id":7091,"width":52,"height":81},{"x":0,"y":0,"fileNum":2162,"id":7096,"width":17,"height":50},{"x":17,"y":0,"fileNum":2162,"id":7097,"width":17,"height":50},{"x":34,"y":0,"fileNum":2162,"id":7098,"width":17,"height":50},{"x":51,"y":0,"fileNum":2162,"id":7099,"width":17,"height":50},{"x":0,"y":0,"fileNum":15190,"id":7100,"width":32,"height":32},{"x":32,"y":0,"fileNum":15190,"id":7101,"width":32,"height":32},{"x":64,"y":0,"fileNum":15190,"id":7102,"width":32,"height":32},{"x":0,"y":32,"fileNum":15190,"id":7103,"width":32,"height":32},{"x":32,"y":32,"fileNum":15190,"id":7104,"width":32,"height":32},{"x":64,"y":32,"fileNum":15190,"id":7105,"width":32,"height":32},{"x":0,"y":64,"fileNum":15190,"id":7106,"width":32,"height":32},{"x":32,"y":64,"fileNum":15190,"id":7107,"width":32,"height":32},{"x":64,"y":64,"fileNum":15190,"id":7108,"width":32,"height":32},{"x":96,"y":0,"fileNum":15190,"id":7109,"width":32,"height":32},{"x":128,"y":0,"fileNum":15190,"id":7110,"width":32,"height":32},{"x":160,"y":0,"fileNum":15190,"id":7111,"width":32,"height":32},{"x":96,"y":32,"fileNum":15190,"id":7112,"width":32,"height":32},{"x":128,"y":32,"fileNum":15190,"id":7113,"width":32,"height":32},{"x":160,"y":32,"fileNum":15190,"id":7114,"width":32,"height":32},{"x":96,"y":64,"fileNum":15190,"id":7115,"width":32,"height":32},{"x":128,"y":64,"fileNum":15190,"id":7116,"width":32,"height":32},{"x":160,"y":64,"fileNum":15190,"id":7117,"width":32,"height":32},{"x":192,"y":0,"fileNum":15190,"id":7118,"width":32,"height":32},{"x":224,"y":0,"fileNum":15190,"id":7119,"width":32,"height":32},{"x":256,"y":0,"fileNum":15190,"id":7120,"width":32,"height":32},{"x":192,"y":32,"fileNum":15190,"id":7121,"width":32,"height":32},{"x":224,"y":32,"fileNum":15190,"id":7122,"width":32,"height":32},{"x":256,"y":32,"fileNum":15190,"id":7123,"width":32,"height":32},{"x":192,"y":64,"fileNum":15190,"id":7124,"width":32,"height":32},{"x":224,"y":64,"fileNum":15190,"id":7125,"width":32,"height":32},{"x":256,"y":64,"fileNum":15190,"id":7126,"width":32,"height":32},{"x":288,"y":0,"fileNum":15190,"id":7127,"width":32,"height":32},{"x":320,"y":0,"fileNum":15190,"id":7128,"width":32,"height":32},{"x":288,"y":32,"fileNum":15190,"id":7129,"width":32,"height":32},{"x":320,"y":32,"fileNum":15190,"id":7130,"width":32,"height":32},{"x":288,"y":64,"fileNum":15190,"id":7131,"width":32,"height":32},{"x":320,"y":64,"fileNum":15190,"id":7132,"width":32,"height":32},{"x":352,"y":0,"fileNum":15190,"id":7133,"width":32,"height":32},{"x":352,"y":32,"fileNum":15190,"id":7134,"width":32,"height":32},{"x":384,"y":0,"fileNum":15190,"id":7135,"width":32,"height":32},{"x":384,"y":32,"fileNum":15190,"id":7136,"width":32,"height":32},{"x":352,"y":64,"fileNum":15190,"id":7137,"width":32,"height":32},{"x":384,"y":64,"fileNum":15190,"id":7138,"width":32,"height":32},{"x":416,"y":0,"fileNum":15190,"id":7139,"width":32,"height":32},{"x":448,"y":0,"fileNum":15190,"id":7140,"width":32,"height":32},{"x":416,"y":32,"fileNum":15190,"id":7141,"width":32,"height":32},{"x":448,"y":32,"fileNum":15190,"id":7142,"width":32,"height":32},{"x":416,"y":64,"fileNum":15190,"id":7143,"width":32,"height":32},{"x":448,"y":64,"fileNum":15190,"id":7144,"width":32,"height":32},{"x":0,"y":96,"fileNum":15190,"id":7145,"width":32,"height":32},{"x":32,"y":96,"fileNum":15190,"id":7146,"width":32,"height":32},{"x":64,"y":96,"fileNum":15190,"id":7147,"width":32,"height":32},{"x":96,"y":96,"fileNum":15190,"id":7148,"width":32,"height":32},{"x":128,"y":96,"fileNum":15190,"id":7149,"width":32,"height":32},{"x":160,"y":96,"fileNum":15190,"id":7150,"width":32,"height":32},{"x":192,"y":96,"fileNum":15190,"id":7151,"width":32,"height":32},{"x":224,"y":96,"fileNum":15190,"id":7152,"width":32,"height":32},{"x":256,"y":96,"fileNum":15190,"id":7153,"width":32,"height":32},{"x":288,"y":96,"fileNum":15190,"id":7154,"width":32,"height":32},{"x":320,"y":96,"fileNum":15190,"id":7155,"width":32,"height":32},{"x":352,"y":96,"fileNum":15190,"id":7156,"width":32,"height":32},{"x":384,"y":96,"fileNum":15190,"id":7157,"width":32,"height":32},{"x":416,"y":96,"fileNum":15190,"id":7158,"width":32,"height":32},{"x":448,"y":96,"fileNum":15190,"id":7159,"width":32,"height":32},{"x":480,"y":96,"fileNum":15190,"id":7160,"width":32,"height":32},{"x":480,"y":0,"fileNum":15190,"id":7161,"width":32,"height":32},{"x":480,"y":32,"fileNum":15190,"id":7162,"width":32,"height":32},{"x":0,"y":0,"fileNum":15191,"id":7163,"width":256,"height":32},{"x":0,"y":32,"fileNum":15191,"id":7164,"width":256,"height":32},{"x":0,"y":64,"fileNum":15191,"id":7165,"width":256,"height":32},{"x":0,"y":96,"fileNum":15191,"id":7166,"width":256,"height":32},{"x":0,"y":128,"fileNum":15191,"id":7167,"width":256,"height":32},{"x":0,"y":160,"fileNum":15191,"id":7168,"width":256,"height":32},{"x":0,"y":192,"fileNum":15191,"id":7169,"width":256,"height":32},{"x":0,"y":224,"fileNum":15191,"id":7170,"width":256,"height":32},{"x":0,"y":0,"fileNum":4034,"id":7171,"width":98,"height":85},{"x":98,"y":0,"fileNum":4034,"id":7172,"width":98,"height":85},{"x":196,"y":0,"fileNum":4034,"id":7173,"width":98,"height":85},{"x":294,"y":0,"fileNum":4034,"id":7174,"width":98,"height":85},{"x":392,"y":0,"fileNum":4034,"id":7175,"width":98,"height":85},{"x":0,"y":85,"fileNum":4034,"id":7177,"width":98,"height":85},{"x":98,"y":85,"fileNum":4034,"id":7178,"width":98,"height":85},{"x":196,"y":85,"fileNum":4034,"id":7179,"width":98,"height":85},{"x":294,"y":85,"fileNum":4034,"id":7180,"width":98,"height":85},{"x":392,"y":85,"fileNum":4034,"id":7181,"width":98,"height":85},{"x":0,"y":170,"fileNum":4034,"id":7183,"width":98,"height":85},{"x":98,"y":170,"fileNum":4034,"id":7184,"width":98,"height":85},{"x":196,"y":170,"fileNum":4034,"id":7185,"width":98,"height":85},{"x":294,"y":170,"fileNum":4034,"id":7186,"width":98,"height":85},{"x":392,"y":170,"fileNum":4034,"id":7187,"width":98,"height":85},{"x":0,"y":255,"fileNum":4034,"id":7189,"width":98,"height":85},{"x":98,"y":255,"fileNum":4034,"id":7190,"width":98,"height":85},{"x":196,"y":255,"fileNum":4034,"id":7191,"width":98,"height":85},{"x":294,"y":255,"fileNum":4034,"id":7192,"width":98,"height":85},{"x":392,"y":255,"fileNum":4034,"id":7193,"width":98,"height":85},{"x":0,"y":0,"fileNum":9007,"id":7198,"width":320,"height":128},{"x":0,"y":128,"fileNum":9007,"id":7199,"width":320,"height":128},{"x":0,"y":256,"fileNum":9007,"id":7200,"width":320,"height":128},{"x":0,"y":384,"fileNum":9007,"id":7201,"width":320,"height":32},{"x":0,"y":0,"fileNum":2163,"id":7202,"width":17,"height":50},{"x":17,"y":0,"fileNum":2163,"id":7203,"width":17,"height":50},{"x":34,"y":0,"fileNum":2163,"id":7204,"width":17,"height":50},{"x":51,"y":0,"fileNum":2163,"id":7205,"width":17,"height":50},{"x":0,"y":0,"fileNum":2164,"id":7206,"width":17,"height":50},{"x":17,"y":0,"fileNum":2164,"id":7207,"width":17,"height":50},{"x":34,"y":0,"fileNum":2164,"id":7208,"width":17,"height":50},{"x":51,"y":0,"fileNum":2164,"id":7209,"width":17,"height":50},{"x":0,"y":0,"fileNum":2165,"id":7210,"width":17,"height":50},{"x":17,"y":0,"fileNum":2165,"id":7211,"width":17,"height":50},{"x":34,"y":0,"fileNum":2165,"id":7212,"width":17,"height":50},{"x":51,"y":0,"fileNum":2165,"id":7213,"width":17,"height":50},{"x":0,"y":0,"fileNum":2166,"id":7214,"width":17,"height":50},{"x":17,"y":0,"fileNum":2166,"id":7215,"width":17,"height":50},{"x":34,"y":0,"fileNum":2166,"id":7216,"width":17,"height":50},{"x":51,"y":0,"fileNum":2166,"id":7217,"width":17,"height":50},{"x":0,"y":0,"fileNum":2167,"id":7218,"width":17,"height":50},{"x":17,"y":0,"fileNum":2167,"id":7219,"width":17,"height":50},{"x":34,"y":0,"fileNum":2167,"id":7220,"width":17,"height":50},{"x":51,"y":0,"fileNum":2167,"id":7221,"width":17,"height":50},{"x":0,"y":0,"fileNum":6073,"id":7222,"width":256,"height":320},{"x":0,"y":0,"fileNum":6074,"id":7223,"width":256,"height":320},{"x":0,"y":0,"fileNum":6076,"id":7224,"width":256,"height":320},{"x":0,"y":0,"fileNum":6075,"id":7225,"width":256,"height":320},{"x":0,"y":0,"fileNum":6077,"id":7226,"width":282,"height":320},{"x":0,"y":0,"fileNum":2168,"id":7227,"width":17,"height":50},{"x":17,"y":0,"fileNum":2168,"id":7228,"width":17,"height":50},{"x":34,"y":0,"fileNum":2168,"id":7229,"width":17,"height":50},{"x":51,"y":0,"fileNum":2168,"id":7230,"width":17,"height":50},{"x":0,"y":0,"fileNum":11017,"id":7231,"width":160,"height":128},{"x":0,"y":0,"fileNum":11018,"id":7232,"width":32,"height":160},{"x":0,"y":0,"fileNum":9008,"id":7233,"width":256,"height":256},{"x":0,"y":0,"fileNum":12045,"id":7234,"width":32,"height":32},{"x":32,"y":0,"fileNum":12045,"id":7235,"width":32,"height":32},{"x":64,"y":0,"fileNum":12045,"id":7236,"width":32,"height":32},{"x":96,"y":0,"fileNum":12045,"id":7237,"width":32,"height":32},{"x":0,"y":32,"fileNum":12045,"id":7238,"width":32,"height":32},{"x":32,"y":32,"fileNum":12045,"id":7239,"width":32,"height":32},{"x":64,"y":32,"fileNum":12045,"id":7240,"width":32,"height":32},{"x":96,"y":32,"fileNum":12045,"id":7241,"width":32,"height":32},{"x":0,"y":64,"fileNum":12045,"id":7242,"width":32,"height":32},{"x":32,"y":64,"fileNum":12045,"id":7243,"width":32,"height":32},{"x":64,"y":64,"fileNum":12045,"id":7244,"width":32,"height":32},{"x":96,"y":64,"fileNum":12045,"id":7245,"width":32,"height":32},{"x":0,"y":96,"fileNum":12045,"id":7246,"width":32,"height":32},{"x":32,"y":96,"fileNum":12045,"id":7247,"width":32,"height":32},{"x":64,"y":96,"fileNum":12045,"id":7248,"width":32,"height":32},{"x":96,"y":96,"fileNum":12045,"id":7249,"width":32,"height":32},{"x":0,"y":0,"fileNum":12047,"id":7250,"width":32,"height":32},{"x":32,"y":0,"fileNum":12047,"id":7251,"width":32,"height":32},{"x":64,"y":0,"fileNum":12047,"id":7252,"width":32,"height":32},{"x":96,"y":0,"fileNum":12047,"id":7253,"width":32,"height":32},{"x":0,"y":32,"fileNum":12047,"id":7254,"width":32,"height":32},{"x":32,"y":32,"fileNum":12047,"id":7255,"width":32,"height":32},{"x":64,"y":32,"fileNum":12047,"id":7256,"width":32,"height":32},{"x":96,"y":32,"fileNum":12047,"id":7257,"width":32,"height":32},{"x":0,"y":64,"fileNum":12047,"id":7258,"width":32,"height":32},{"x":32,"y":64,"fileNum":12047,"id":7259,"width":32,"height":32},{"x":64,"y":64,"fileNum":12047,"id":7260,"width":32,"height":32},{"x":96,"y":64,"fileNum":12047,"id":7261,"width":32,"height":32},{"x":0,"y":96,"fileNum":12047,"id":7262,"width":32,"height":32},{"x":32,"y":96,"fileNum":12047,"id":7263,"width":32,"height":32},{"x":64,"y":96,"fileNum":12047,"id":7264,"width":32,"height":32},{"x":96,"y":96,"fileNum":12047,"id":7265,"width":32,"height":32},{"x":0,"y":0,"fileNum":12049,"id":7266,"width":32,"height":32},{"x":32,"y":0,"fileNum":12049,"id":7267,"width":32,"height":32},{"x":64,"y":0,"fileNum":12049,"id":7268,"width":32,"height":32},{"x":96,"y":0,"fileNum":12049,"id":7269,"width":32,"height":32},{"x":0,"y":32,"fileNum":12049,"id":7270,"width":32,"height":32},{"x":32,"y":32,"fileNum":12049,"id":7271,"width":32,"height":32},{"x":64,"y":32,"fileNum":12049,"id":7272,"width":32,"height":32},{"x":96,"y":32,"fileNum":12049,"id":7273,"width":32,"height":32},{"x":0,"y":64,"fileNum":12049,"id":7274,"width":32,"height":32},{"x":32,"y":64,"fileNum":12049,"id":7275,"width":32,"height":32},{"x":64,"y":64,"fileNum":12049,"id":7276,"width":32,"height":32},{"x":96,"y":64,"fileNum":12049,"id":7277,"width":32,"height":32},{"x":0,"y":96,"fileNum":12049,"id":7278,"width":32,"height":32},{"x":32,"y":96,"fileNum":12049,"id":7279,"width":32,"height":32},{"x":64,"y":96,"fileNum":12049,"id":7280,"width":32,"height":32},{"x":96,"y":96,"fileNum":12049,"id":7281,"width":32,"height":32},{"x":0,"y":0,"fileNum":11033,"id":7282,"width":32,"height":160},{"x":0,"y":0,"fileNum":12083,"id":7283,"width":32,"height":32},{"x":32,"y":0,"fileNum":12083,"id":7284,"width":32,"height":32},{"x":0,"y":32,"fileNum":12083,"id":7285,"width":32,"height":32},{"x":32,"y":32,"fileNum":12083,"id":7286,"width":32,"height":32},{"x":64,"y":0,"fileNum":12083,"id":7287,"width":32,"height":32},{"x":96,"y":0,"fileNum":12083,"id":7288,"width":32,"height":32},{"x":64,"y":32,"fileNum":12083,"id":7289,"width":32,"height":32},{"x":96,"y":32,"fileNum":12083,"id":7290,"width":32,"height":32},{"x":0,"y":64,"fileNum":12083,"id":7291,"width":32,"height":32},{"x":32,"y":64,"fileNum":12083,"id":7292,"width":32,"height":32},{"x":0,"y":96,"fileNum":12083,"id":7293,"width":32,"height":32},{"x":32,"y":96,"fileNum":12083,"id":7294,"width":32,"height":32},{"x":64,"y":64,"fileNum":12083,"id":7295,"width":32,"height":32},{"x":96,"y":64,"fileNum":12083,"id":7296,"width":32,"height":32},{"x":64,"y":96,"fileNum":12083,"id":7297,"width":32,"height":32},{"x":96,"y":96,"fileNum":12083,"id":7298,"width":32,"height":32},{"x":0,"y":128,"fileNum":12083,"id":7299,"width":32,"height":32},{"x":32,"y":128,"fileNum":12083,"id":7300,"width":32,"height":32},{"x":0,"y":160,"fileNum":12083,"id":7301,"width":32,"height":32},{"x":32,"y":160,"fileNum":12083,"id":7302,"width":32,"height":32},{"x":64,"y":128,"fileNum":12083,"id":7303,"width":32,"height":32},{"x":96,"y":128,"fileNum":12083,"id":7304,"width":32,"height":32},{"x":64,"y":160,"fileNum":12083,"id":7305,"width":32,"height":32},{"x":96,"y":160,"fileNum":12083,"id":7306,"width":32,"height":32},{"x":192,"y":128,"fileNum":12083,"id":7307,"width":32,"height":32},{"x":224,"y":128,"fileNum":12083,"id":7308,"width":32,"height":32},{"x":192,"y":160,"fileNum":12083,"id":7309,"width":32,"height":32},{"x":224,"y":160,"fileNum":12083,"id":7310,"width":32,"height":32},{"x":0,"y":192,"fileNum":12083,"id":7311,"width":32,"height":32},{"x":32,"y":192,"fileNum":12083,"id":7312,"width":32,"height":32},{"x":0,"y":224,"fileNum":12083,"id":7313,"width":32,"height":32},{"x":32,"y":224,"fileNum":12083,"id":7314,"width":32,"height":32},{"x":64,"y":192,"fileNum":12083,"id":7315,"width":32,"height":32},{"x":96,"y":192,"fileNum":12083,"id":7316,"width":32,"height":32},{"x":64,"y":224,"fileNum":12083,"id":7317,"width":32,"height":32},{"x":96,"y":224,"fileNum":12083,"id":7318,"width":32,"height":32},{"x":128,"y":192,"fileNum":12083,"id":7319,"width":32,"height":32},{"x":160,"y":192,"fileNum":12083,"id":7320,"width":32,"height":32},{"x":128,"y":224,"fileNum":12083,"id":7321,"width":32,"height":32},{"x":160,"y":224,"fileNum":12083,"id":7322,"width":32,"height":32},{"x":128,"y":128,"fileNum":12083,"id":7323,"width":32,"height":32},{"x":160,"y":128,"fileNum":12083,"id":7324,"width":32,"height":32},{"x":128,"y":160,"fileNum":12083,"id":7325,"width":32,"height":32},{"x":160,"y":160,"fileNum":12083,"id":7326,"width":32,"height":32},{"x":192,"y":192,"fileNum":12083,"id":7327,"width":32,"height":32},{"x":224,"y":192,"fileNum":12083,"id":7328,"width":32,"height":32},{"x":192,"y":224,"fileNum":12083,"id":7329,"width":32,"height":32},{"x":224,"y":224,"fileNum":12083,"id":7330,"width":32,"height":32},{"x":128,"y":0,"fileNum":12083,"id":7331,"width":32,"height":32},{"x":160,"y":0,"fileNum":12083,"id":7332,"width":32,"height":32},{"x":128,"y":32,"fileNum":12083,"id":7333,"width":32,"height":32},{"x":160,"y":32,"fileNum":12083,"id":7334,"width":32,"height":32},{"x":192,"y":0,"fileNum":12083,"id":7335,"width":32,"height":32},{"x":224,"y":0,"fileNum":12083,"id":7336,"width":32,"height":32},{"x":192,"y":32,"fileNum":12083,"id":7337,"width":32,"height":32},{"x":224,"y":32,"fileNum":12083,"id":7338,"width":32,"height":32},{"x":128,"y":64,"fileNum":12083,"id":7339,"width":32,"height":32},{"x":160,"y":64,"fileNum":12083,"id":7340,"width":32,"height":32},{"x":128,"y":96,"fileNum":12083,"id":7341,"width":32,"height":32},{"x":160,"y":96,"fileNum":12083,"id":7342,"width":32,"height":32},{"x":192,"y":64,"fileNum":12083,"id":7343,"width":32,"height":32},{"x":224,"y":64,"fileNum":12083,"id":7344,"width":32,"height":32},{"x":192,"y":96,"fileNum":12083,"id":7345,"width":32,"height":32},{"x":224,"y":96,"fileNum":12083,"id":7346,"width":32,"height":32},{"x":0,"y":256,"fileNum":12083,"id":7347,"width":32,"height":32},{"x":32,"y":256,"fileNum":12083,"id":7348,"width":32,"height":32},{"x":0,"y":288,"fileNum":12083,"id":7349,"width":32,"height":32},{"x":32,"y":288,"fileNum":12083,"id":7350,"width":32,"height":32},{"x":64,"y":256,"fileNum":12083,"id":7351,"width":32,"height":32},{"x":96,"y":256,"fileNum":12083,"id":7352,"width":32,"height":32},{"x":64,"y":288,"fileNum":12083,"id":7353,"width":32,"height":32},{"x":96,"y":288,"fileNum":12083,"id":7354,"width":32,"height":32},{"x":128,"y":256,"fileNum":12083,"id":7355,"width":32,"height":32},{"x":160,"y":256,"fileNum":12083,"id":7356,"width":32,"height":32},{"x":128,"y":288,"fileNum":12083,"id":7357,"width":32,"height":32},{"x":160,"y":288,"fileNum":12083,"id":7358,"width":32,"height":32},{"x":192,"y":256,"fileNum":12083,"id":7359,"width":32,"height":32},{"x":224,"y":256,"fileNum":12083,"id":7360,"width":32,"height":32},{"x":192,"y":288,"fileNum":12083,"id":7361,"width":32,"height":32},{"x":224,"y":288,"fileNum":12083,"id":7362,"width":32,"height":32},{"x":0,"y":320,"fileNum":12083,"id":7363,"width":32,"height":32},{"x":32,"y":320,"fileNum":12083,"id":7364,"width":32,"height":32},{"x":0,"y":352,"fileNum":12083,"id":7365,"width":32,"height":32},{"x":32,"y":352,"fileNum":12083,"id":7366,"width":32,"height":32},{"x":64,"y":320,"fileNum":12083,"id":7367,"width":32,"height":32},{"x":96,"y":320,"fileNum":12083,"id":7368,"width":32,"height":32},{"x":64,"y":352,"fileNum":12083,"id":7369,"width":32,"height":32},{"x":96,"y":352,"fileNum":12083,"id":7370,"width":32,"height":32},{"x":128,"y":320,"fileNum":12083,"id":7371,"width":32,"height":32},{"x":160,"y":320,"fileNum":12083,"id":7372,"width":32,"height":32},{"x":128,"y":352,"fileNum":12083,"id":7373,"width":32,"height":32},{"x":160,"y":352,"fileNum":12083,"id":7374,"width":32,"height":32},{"x":192,"y":320,"fileNum":12083,"id":7375,"width":32,"height":32},{"x":224,"y":320,"fileNum":12083,"id":7376,"width":32,"height":32},{"x":192,"y":352,"fileNum":12083,"id":7377,"width":32,"height":32},{"x":224,"y":352,"fileNum":12083,"id":7378,"width":32,"height":32},{"x":96,"y":96,"fileNum":12064,"id":7379,"width":32,"height":32},{"x":128,"y":0,"fileNum":12064,"id":7380,"width":32,"height":32},{"x":160,"y":0,"fileNum":12064,"id":7381,"width":32,"height":32},{"x":192,"y":0,"fileNum":12064,"id":7382,"width":32,"height":32},{"x":224,"y":0,"fileNum":12064,"id":7383,"width":32,"height":32},{"x":128,"y":32,"fileNum":12064,"id":7384,"width":32,"height":32},{"x":160,"y":32,"fileNum":12064,"id":7385,"width":32,"height":32},{"x":192,"y":32,"fileNum":12064,"id":7386,"width":32,"height":32},{"x":224,"y":32,"fileNum":12064,"id":7387,"width":32,"height":32},{"x":128,"y":64,"fileNum":12064,"id":7388,"width":32,"height":32},{"x":160,"y":64,"fileNum":12064,"id":7389,"width":32,"height":32},{"x":192,"y":64,"fileNum":12064,"id":7390,"width":32,"height":32},{"x":224,"y":64,"fileNum":12064,"id":7391,"width":32,"height":32},{"x":128,"y":96,"fileNum":12064,"id":7392,"width":32,"height":32},{"x":160,"y":96,"fileNum":12064,"id":7393,"width":32,"height":32},{"x":192,"y":96,"fileNum":12064,"id":7394,"width":32,"height":32},{"x":224,"y":96,"fileNum":12064,"id":7395,"width":32,"height":32},{"x":256,"y":0,"fileNum":12064,"id":7396,"width":32,"height":32},{"x":288,"y":0,"fileNum":12064,"id":7397,"width":32,"height":32},{"x":320,"y":0,"fileNum":12064,"id":7398,"width":32,"height":32},{"x":352,"y":0,"fileNum":12064,"id":7399,"width":32,"height":32},{"x":256,"y":32,"fileNum":12064,"id":7400,"width":32,"height":32},{"x":288,"y":32,"fileNum":12064,"id":7401,"width":32,"height":32},{"x":320,"y":32,"fileNum":12064,"id":7402,"width":32,"height":32},{"x":352,"y":32,"fileNum":12064,"id":7403,"width":32,"height":32},{"x":256,"y":64,"fileNum":12064,"id":7404,"width":32,"height":32},{"x":288,"y":64,"fileNum":12064,"id":7405,"width":32,"height":32},{"x":320,"y":64,"fileNum":12064,"id":7406,"width":32,"height":32},{"x":352,"y":64,"fileNum":12064,"id":7407,"width":32,"height":32},{"x":256,"y":96,"fileNum":12064,"id":7408,"width":32,"height":32},{"x":288,"y":96,"fileNum":12064,"id":7409,"width":32,"height":32},{"x":320,"y":96,"fileNum":12064,"id":7410,"width":32,"height":32},{"x":352,"y":96,"fileNum":12064,"id":7411,"width":32,"height":32},{"x":384,"y":0,"fileNum":12064,"id":7412,"width":32,"height":32},{"x":416,"y":0,"fileNum":12064,"id":7413,"width":32,"height":32},{"x":448,"y":0,"fileNum":12064,"id":7414,"width":32,"height":32},{"x":480,"y":0,"fileNum":12064,"id":7415,"width":32,"height":32},{"x":384,"y":32,"fileNum":12064,"id":7416,"width":32,"height":32},{"x":416,"y":32,"fileNum":12064,"id":7417,"width":32,"height":32},{"x":448,"y":32,"fileNum":12064,"id":7418,"width":32,"height":32},{"x":480,"y":32,"fileNum":12064,"id":7419,"width":32,"height":32},{"x":384,"y":64,"fileNum":12064,"id":7420,"width":32,"height":32},{"x":416,"y":64,"fileNum":12064,"id":7421,"width":32,"height":32},{"x":448,"y":64,"fileNum":12064,"id":7422,"width":32,"height":32},{"x":480,"y":64,"fileNum":12064,"id":7423,"width":32,"height":32},{"x":384,"y":96,"fileNum":12064,"id":7424,"width":32,"height":32},{"x":416,"y":96,"fileNum":12064,"id":7425,"width":32,"height":32},{"x":448,"y":96,"fileNum":12064,"id":7426,"width":32,"height":32},{"x":480,"y":96,"fileNum":12064,"id":7427,"width":32,"height":32},{"x":0,"y":0,"fileNum":12065,"id":7428,"width":32,"height":32},{"x":32,"y":0,"fileNum":12065,"id":7429,"width":32,"height":32},{"x":64,"y":0,"fileNum":12065,"id":7430,"width":32,"height":32},{"x":96,"y":0,"fileNum":12065,"id":7431,"width":32,"height":32},{"x":0,"y":32,"fileNum":12065,"id":7432,"width":32,"height":32},{"x":32,"y":32,"fileNum":12065,"id":7433,"width":32,"height":32},{"x":64,"y":32,"fileNum":12065,"id":7434,"width":32,"height":32},{"x":96,"y":32,"fileNum":12065,"id":7435,"width":32,"height":32},{"x":0,"y":64,"fileNum":12065,"id":7436,"width":32,"height":32},{"x":32,"y":64,"fileNum":12065,"id":7437,"width":32,"height":32},{"x":64,"y":64,"fileNum":12065,"id":7438,"width":32,"height":32},{"x":96,"y":64,"fileNum":12065,"id":7439,"width":32,"height":32},{"x":0,"y":96,"fileNum":12065,"id":7440,"width":32,"height":32},{"x":32,"y":96,"fileNum":12065,"id":7441,"width":32,"height":32},{"x":64,"y":96,"fileNum":12065,"id":7442,"width":32,"height":32},{"x":96,"y":96,"fileNum":12065,"id":7443,"width":32,"height":32},{"x":128,"y":0,"fileNum":12065,"id":7444,"width":32,"height":32},{"x":160,"y":0,"fileNum":12065,"id":7445,"width":32,"height":32},{"x":192,"y":0,"fileNum":12065,"id":7446,"width":32,"height":32},{"x":224,"y":0,"fileNum":12065,"id":7447,"width":32,"height":32},{"x":128,"y":32,"fileNum":12065,"id":7448,"width":32,"height":32},{"x":160,"y":32,"fileNum":12065,"id":7449,"width":32,"height":32},{"x":192,"y":32,"fileNum":12065,"id":7450,"width":32,"height":32},{"x":224,"y":32,"fileNum":12065,"id":7451,"width":32,"height":32},{"x":128,"y":64,"fileNum":12065,"id":7452,"width":32,"height":32},{"x":160,"y":64,"fileNum":12065,"id":7453,"width":32,"height":32},{"x":192,"y":64,"fileNum":12065,"id":7454,"width":32,"height":32},{"x":224,"y":64,"fileNum":12065,"id":7455,"width":32,"height":32},{"x":128,"y":96,"fileNum":12065,"id":7456,"width":32,"height":32},{"x":160,"y":96,"fileNum":12065,"id":7457,"width":32,"height":32},{"x":192,"y":96,"fileNum":12065,"id":7458,"width":32,"height":32},{"x":224,"y":96,"fileNum":12065,"id":7459,"width":32,"height":32},{"x":256,"y":0,"fileNum":12065,"id":7460,"width":32,"height":32},{"x":288,"y":0,"fileNum":12065,"id":7461,"width":32,"height":32},{"x":320,"y":0,"fileNum":12065,"id":7462,"width":32,"height":32},{"x":352,"y":0,"fileNum":12065,"id":7463,"width":32,"height":32},{"x":256,"y":32,"fileNum":12065,"id":7464,"width":32,"height":32},{"x":288,"y":32,"fileNum":12065,"id":7465,"width":32,"height":32},{"x":320,"y":32,"fileNum":12065,"id":7466,"width":32,"height":32},{"x":352,"y":32,"fileNum":12065,"id":7467,"width":32,"height":32},{"x":256,"y":64,"fileNum":12065,"id":7468,"width":32,"height":32},{"x":288,"y":64,"fileNum":12065,"id":7469,"width":32,"height":32},{"x":320,"y":64,"fileNum":12065,"id":7470,"width":32,"height":32},{"x":352,"y":64,"fileNum":12065,"id":7471,"width":32,"height":32},{"x":256,"y":96,"fileNum":12065,"id":7472,"width":32,"height":32},{"x":288,"y":96,"fileNum":12065,"id":7473,"width":32,"height":32},{"x":320,"y":96,"fileNum":12065,"id":7474,"width":32,"height":32},{"x":352,"y":96,"fileNum":12065,"id":7475,"width":32,"height":32},{"x":384,"y":0,"fileNum":12065,"id":7476,"width":32,"height":32},{"x":416,"y":0,"fileNum":12065,"id":7477,"width":32,"height":32},{"x":448,"y":0,"fileNum":12065,"id":7478,"width":32,"height":32},{"x":480,"y":0,"fileNum":12065,"id":7479,"width":32,"height":32},{"x":384,"y":32,"fileNum":12065,"id":7480,"width":32,"height":32},{"x":416,"y":32,"fileNum":12065,"id":7481,"width":32,"height":32},{"x":448,"y":32,"fileNum":12065,"id":7482,"width":32,"height":32},{"x":480,"y":32,"fileNum":12065,"id":7483,"width":32,"height":32},{"x":384,"y":64,"fileNum":12065,"id":7484,"width":32,"height":32},{"x":416,"y":64,"fileNum":12065,"id":7485,"width":32,"height":32},{"x":448,"y":64,"fileNum":12065,"id":7486,"width":32,"height":32},{"x":480,"y":64,"fileNum":12065,"id":7487,"width":32,"height":32},{"x":384,"y":96,"fileNum":12065,"id":7488,"width":32,"height":32},{"x":416,"y":96,"fileNum":12065,"id":7489,"width":32,"height":32},{"x":448,"y":96,"fileNum":12065,"id":7490,"width":32,"height":32},{"x":480,"y":96,"fileNum":12065,"id":7491,"width":32,"height":32},{"x":0,"y":0,"fileNum":12066,"id":7492,"width":32,"height":32},{"x":32,"y":0,"fileNum":12066,"id":7493,"width":32,"height":32},{"x":64,"y":0,"fileNum":12066,"id":7494,"width":32,"height":32},{"x":96,"y":0,"fileNum":12066,"id":7495,"width":32,"height":32},{"x":0,"y":32,"fileNum":12066,"id":7496,"width":32,"height":32},{"x":32,"y":32,"fileNum":12066,"id":7497,"width":32,"height":32},{"x":64,"y":32,"fileNum":12066,"id":7498,"width":32,"height":32},{"x":96,"y":32,"fileNum":12066,"id":7499,"width":32,"height":32},{"x":0,"y":64,"fileNum":12066,"id":7500,"width":32,"height":32},{"x":32,"y":64,"fileNum":12066,"id":7501,"width":32,"height":32},{"x":64,"y":64,"fileNum":12066,"id":7502,"width":32,"height":32},{"x":96,"y":64,"fileNum":12066,"id":7503,"width":32,"height":32},{"x":0,"y":96,"fileNum":12066,"id":7504,"width":32,"height":32},{"x":32,"y":96,"fileNum":12066,"id":7505,"width":32,"height":32},{"x":64,"y":96,"fileNum":12066,"id":7506,"width":32,"height":32},{"x":96,"y":96,"fileNum":12066,"id":7507,"width":32,"height":32},{"x":0,"y":0,"fileNum":12067,"id":7508,"width":32,"height":32},{"x":32,"y":0,"fileNum":12067,"id":7509,"width":32,"height":32},{"x":64,"y":0,"fileNum":12067,"id":7510,"width":32,"height":32},{"x":96,"y":0,"fileNum":12067,"id":7511,"width":32,"height":32},{"x":0,"y":32,"fileNum":12067,"id":7512,"width":32,"height":32},{"x":32,"y":32,"fileNum":12067,"id":7513,"width":32,"height":32},{"x":64,"y":32,"fileNum":12067,"id":7514,"width":32,"height":32},{"x":96,"y":32,"fileNum":12067,"id":7515,"width":32,"height":32},{"x":0,"y":64,"fileNum":12067,"id":7516,"width":32,"height":32},{"x":32,"y":64,"fileNum":12067,"id":7517,"width":32,"height":32},{"x":64,"y":64,"fileNum":12067,"id":7518,"width":32,"height":32},{"x":96,"y":64,"fileNum":12067,"id":7519,"width":32,"height":32},{"x":0,"y":96,"fileNum":12067,"id":7520,"width":32,"height":32},{"x":32,"y":96,"fileNum":12067,"id":7521,"width":32,"height":32},{"x":64,"y":96,"fileNum":12067,"id":7522,"width":32,"height":32},{"x":96,"y":96,"fileNum":12067,"id":7523,"width":32,"height":32},{"x":128,"y":0,"fileNum":12067,"id":7524,"width":32,"height":32},{"x":160,"y":0,"fileNum":12067,"id":7525,"width":32,"height":32},{"x":192,"y":0,"fileNum":12067,"id":7526,"width":32,"height":32},{"x":224,"y":0,"fileNum":12067,"id":7527,"width":32,"height":32},{"x":128,"y":32,"fileNum":12067,"id":7528,"width":32,"height":32},{"x":160,"y":32,"fileNum":12067,"id":7529,"width":32,"height":32},{"x":192,"y":32,"fileNum":12067,"id":7530,"width":32,"height":32},{"x":224,"y":32,"fileNum":12067,"id":7531,"width":32,"height":32},{"x":128,"y":64,"fileNum":12067,"id":7532,"width":32,"height":32},{"x":160,"y":64,"fileNum":12067,"id":7533,"width":32,"height":32},{"x":192,"y":64,"fileNum":12067,"id":7534,"width":32,"height":32},{"x":224,"y":64,"fileNum":12067,"id":7535,"width":32,"height":32},{"x":128,"y":96,"fileNum":12067,"id":7536,"width":32,"height":32},{"x":160,"y":96,"fileNum":12067,"id":7537,"width":32,"height":32},{"x":192,"y":96,"fileNum":12067,"id":7538,"width":32,"height":32},{"x":224,"y":96,"fileNum":12067,"id":7539,"width":32,"height":32},{"x":256,"y":0,"fileNum":12067,"id":7540,"width":32,"height":32},{"x":288,"y":0,"fileNum":12067,"id":7541,"width":32,"height":32},{"x":320,"y":0,"fileNum":12067,"id":7542,"width":32,"height":32},{"x":352,"y":0,"fileNum":12067,"id":7543,"width":32,"height":32},{"x":256,"y":32,"fileNum":12067,"id":7544,"width":32,"height":32},{"x":288,"y":32,"fileNum":12067,"id":7545,"width":32,"height":32},{"x":320,"y":32,"fileNum":12067,"id":7546,"width":32,"height":32},{"x":352,"y":32,"fileNum":12067,"id":7547,"width":32,"height":32},{"x":256,"y":64,"fileNum":12067,"id":7548,"width":32,"height":32},{"x":288,"y":64,"fileNum":12067,"id":7549,"width":32,"height":32},{"x":320,"y":64,"fileNum":12067,"id":7550,"width":32,"height":32},{"x":352,"y":64,"fileNum":12067,"id":7551,"width":32,"height":32},{"x":256,"y":96,"fileNum":12067,"id":7552,"width":32,"height":32},{"x":288,"y":96,"fileNum":12067,"id":7553,"width":32,"height":32},{"x":320,"y":96,"fileNum":12067,"id":7554,"width":32,"height":32},{"x":352,"y":96,"fileNum":12067,"id":7555,"width":32,"height":32},{"x":384,"y":0,"fileNum":12067,"id":7556,"width":32,"height":32},{"x":416,"y":0,"fileNum":12067,"id":7557,"width":32,"height":32},{"x":448,"y":0,"fileNum":12067,"id":7558,"width":32,"height":32},{"x":480,"y":0,"fileNum":12067,"id":7559,"width":32,"height":32},{"x":384,"y":32,"fileNum":12067,"id":7560,"width":32,"height":32},{"x":416,"y":32,"fileNum":12067,"id":7561,"width":32,"height":32},{"x":448,"y":32,"fileNum":12067,"id":7562,"width":32,"height":32},{"x":480,"y":32,"fileNum":12067,"id":7563,"width":32,"height":32},{"x":384,"y":64,"fileNum":12067,"id":7564,"width":32,"height":32},{"x":416,"y":64,"fileNum":12067,"id":7565,"width":32,"height":32},{"x":448,"y":64,"fileNum":12067,"id":7566,"width":32,"height":32},{"x":480,"y":64,"fileNum":12067,"id":7567,"width":32,"height":32},{"x":384,"y":96,"fileNum":12067,"id":7568,"width":32,"height":32},{"x":416,"y":96,"fileNum":12067,"id":7569,"width":32,"height":32},{"x":448,"y":96,"fileNum":12067,"id":7570,"width":32,"height":32},{"x":480,"y":96,"fileNum":12067,"id":7571,"width":32,"height":32},{"x":0,"y":0,"fileNum":12068,"id":7572,"width":32,"height":32},{"x":32,"y":0,"fileNum":12068,"id":7573,"width":32,"height":32},{"x":64,"y":0,"fileNum":12068,"id":7574,"width":32,"height":32},{"x":96,"y":0,"fileNum":12068,"id":7575,"width":32,"height":32},{"x":0,"y":32,"fileNum":12068,"id":7576,"width":32,"height":32},{"x":32,"y":32,"fileNum":12068,"id":7577,"width":32,"height":32},{"x":64,"y":32,"fileNum":12068,"id":7578,"width":32,"height":32},{"x":96,"y":32,"fileNum":12068,"id":7579,"width":32,"height":32},{"x":0,"y":64,"fileNum":12068,"id":7580,"width":32,"height":32},{"x":32,"y":64,"fileNum":12068,"id":7581,"width":32,"height":32},{"x":64,"y":64,"fileNum":12068,"id":7582,"width":32,"height":32},{"x":96,"y":64,"fileNum":12068,"id":7583,"width":32,"height":32},{"x":0,"y":96,"fileNum":12068,"id":7584,"width":32,"height":32},{"x":32,"y":96,"fileNum":12068,"id":7585,"width":32,"height":32},{"x":64,"y":96,"fileNum":12068,"id":7586,"width":32,"height":32},{"x":96,"y":96,"fileNum":12068,"id":7587,"width":32,"height":32},{"x":128,"y":0,"fileNum":12068,"id":7588,"width":32,"height":32},{"x":160,"y":0,"fileNum":12068,"id":7589,"width":32,"height":32},{"x":192,"y":0,"fileNum":12068,"id":7590,"width":32,"height":32},{"x":224,"y":0,"fileNum":12068,"id":7591,"width":32,"height":32},{"x":128,"y":32,"fileNum":12068,"id":7592,"width":32,"height":32},{"x":160,"y":32,"fileNum":12068,"id":7593,"width":32,"height":32},{"x":192,"y":32,"fileNum":12068,"id":7594,"width":32,"height":32},{"x":224,"y":32,"fileNum":12068,"id":7595,"width":32,"height":32},{"x":128,"y":64,"fileNum":12068,"id":7596,"width":32,"height":32},{"x":160,"y":64,"fileNum":12068,"id":7597,"width":32,"height":32},{"x":192,"y":64,"fileNum":12068,"id":7598,"width":32,"height":32},{"x":224,"y":64,"fileNum":12068,"id":7599,"width":32,"height":32},{"x":128,"y":96,"fileNum":12068,"id":7600,"width":32,"height":32},{"x":160,"y":96,"fileNum":12068,"id":7601,"width":32,"height":32},{"x":192,"y":96,"fileNum":12068,"id":7602,"width":32,"height":32},{"x":224,"y":96,"fileNum":12068,"id":7603,"width":32,"height":32},{"x":256,"y":0,"fileNum":12068,"id":7604,"width":32,"height":32},{"x":288,"y":0,"fileNum":12068,"id":7605,"width":32,"height":32},{"x":320,"y":0,"fileNum":12068,"id":7606,"width":32,"height":32},{"x":352,"y":0,"fileNum":12068,"id":7607,"width":32,"height":32},{"x":256,"y":32,"fileNum":12068,"id":7608,"width":32,"height":32},{"x":288,"y":32,"fileNum":12068,"id":7609,"width":32,"height":32},{"x":320,"y":32,"fileNum":12068,"id":7610,"width":32,"height":32},{"x":352,"y":32,"fileNum":12068,"id":7611,"width":32,"height":32},{"x":256,"y":64,"fileNum":12068,"id":7612,"width":32,"height":32},{"x":288,"y":64,"fileNum":12068,"id":7613,"width":32,"height":32},{"x":320,"y":64,"fileNum":12068,"id":7614,"width":32,"height":32},{"x":352,"y":64,"fileNum":12068,"id":7615,"width":32,"height":32},{"x":256,"y":96,"fileNum":12068,"id":7616,"width":32,"height":32},{"x":288,"y":96,"fileNum":12068,"id":7617,"width":32,"height":32},{"x":320,"y":96,"fileNum":12068,"id":7618,"width":32,"height":32},{"x":352,"y":96,"fileNum":12068,"id":7619,"width":32,"height":32},{"x":384,"y":0,"fileNum":12068,"id":7620,"width":32,"height":32},{"x":416,"y":0,"fileNum":12068,"id":7621,"width":32,"height":32},{"x":448,"y":0,"fileNum":12068,"id":7622,"width":32,"height":32},{"x":480,"y":0,"fileNum":12068,"id":7623,"width":32,"height":32},{"x":384,"y":32,"fileNum":12068,"id":7624,"width":32,"height":32},{"x":416,"y":32,"fileNum":12068,"id":7625,"width":32,"height":32},{"x":448,"y":32,"fileNum":12068,"id":7626,"width":32,"height":32},{"x":480,"y":32,"fileNum":12068,"id":7627,"width":32,"height":32},{"x":384,"y":64,"fileNum":12068,"id":7628,"width":32,"height":32},{"x":416,"y":64,"fileNum":12068,"id":7629,"width":32,"height":32},{"x":448,"y":64,"fileNum":12068,"id":7630,"width":32,"height":32},{"x":480,"y":64,"fileNum":12068,"id":7631,"width":32,"height":32},{"x":384,"y":96,"fileNum":12068,"id":7632,"width":32,"height":32},{"x":416,"y":96,"fileNum":12068,"id":7633,"width":32,"height":32},{"x":448,"y":96,"fileNum":12068,"id":7634,"width":32,"height":32},{"x":480,"y":96,"fileNum":12068,"id":7635,"width":32,"height":32},{"x":0,"y":0,"fileNum":12069,"id":7636,"width":32,"height":32},{"x":32,"y":0,"fileNum":12069,"id":7637,"width":32,"height":32},{"x":64,"y":0,"fileNum":12069,"id":7638,"width":32,"height":32},{"x":96,"y":0,"fileNum":12069,"id":7639,"width":32,"height":32},{"x":0,"y":32,"fileNum":12069,"id":7640,"width":32,"height":32},{"x":32,"y":32,"fileNum":12069,"id":7641,"width":32,"height":32},{"x":64,"y":32,"fileNum":12069,"id":7642,"width":32,"height":32},{"x":96,"y":32,"fileNum":12069,"id":7643,"width":32,"height":32},{"x":0,"y":64,"fileNum":12069,"id":7644,"width":32,"height":32},{"x":32,"y":64,"fileNum":12069,"id":7645,"width":32,"height":32},{"x":64,"y":64,"fileNum":12069,"id":7646,"width":32,"height":32},{"x":96,"y":64,"fileNum":12069,"id":7647,"width":32,"height":32},{"x":0,"y":96,"fileNum":12069,"id":7648,"width":32,"height":32},{"x":32,"y":96,"fileNum":12069,"id":7649,"width":32,"height":32},{"x":64,"y":96,"fileNum":12069,"id":7650,"width":32,"height":32},{"x":96,"y":96,"fileNum":12069,"id":7651,"width":32,"height":32},{"x":128,"y":0,"fileNum":12069,"id":7652,"width":32,"height":32},{"x":160,"y":0,"fileNum":12069,"id":7653,"width":32,"height":32},{"x":192,"y":0,"fileNum":12069,"id":7654,"width":32,"height":32},{"x":224,"y":0,"fileNum":12069,"id":7655,"width":32,"height":32},{"x":128,"y":32,"fileNum":12069,"id":7656,"width":32,"height":32},{"x":160,"y":32,"fileNum":12069,"id":7657,"width":32,"height":32},{"x":192,"y":32,"fileNum":12069,"id":7658,"width":32,"height":32},{"x":224,"y":32,"fileNum":12069,"id":7659,"width":32,"height":32},{"x":128,"y":64,"fileNum":12069,"id":7660,"width":32,"height":32},{"x":160,"y":64,"fileNum":12069,"id":7661,"width":32,"height":32},{"x":192,"y":64,"fileNum":12069,"id":7662,"width":32,"height":32},{"x":224,"y":64,"fileNum":12069,"id":7663,"width":32,"height":32},{"x":128,"y":96,"fileNum":12069,"id":7664,"width":32,"height":32},{"x":160,"y":96,"fileNum":12069,"id":7665,"width":32,"height":32},{"x":192,"y":96,"fileNum":12069,"id":7666,"width":32,"height":32},{"x":224,"y":96,"fileNum":12069,"id":7667,"width":32,"height":32},{"x":256,"y":0,"fileNum":12069,"id":7668,"width":32,"height":32},{"x":288,"y":0,"fileNum":12069,"id":7669,"width":32,"height":32},{"x":320,"y":0,"fileNum":12069,"id":7670,"width":32,"height":32},{"x":352,"y":0,"fileNum":12069,"id":7671,"width":32,"height":32},{"x":256,"y":32,"fileNum":12069,"id":7672,"width":32,"height":32},{"x":288,"y":32,"fileNum":12069,"id":7673,"width":32,"height":32},{"x":320,"y":32,"fileNum":12069,"id":7674,"width":32,"height":32},{"x":352,"y":32,"fileNum":12069,"id":7675,"width":32,"height":32},{"x":256,"y":64,"fileNum":12069,"id":7676,"width":32,"height":32},{"x":288,"y":64,"fileNum":12069,"id":7677,"width":32,"height":32},{"x":320,"y":64,"fileNum":12069,"id":7678,"width":32,"height":32},{"x":352,"y":64,"fileNum":12069,"id":7679,"width":32,"height":32},{"x":256,"y":96,"fileNum":12069,"id":7680,"width":32,"height":32},{"x":288,"y":96,"fileNum":12069,"id":7681,"width":32,"height":32},{"x":320,"y":96,"fileNum":12069,"id":7682,"width":32,"height":32},{"x":352,"y":96,"fileNum":12069,"id":7683,"width":32,"height":32},{"x":0,"y":0,"fileNum":2169,"id":7684,"width":17,"height":50},{"x":17,"y":0,"fileNum":2169,"id":7685,"width":17,"height":50},{"x":34,"y":0,"fileNum":2169,"id":7686,"width":17,"height":50},{"x":51,"y":0,"fileNum":2169,"id":7687,"width":17,"height":50},{"x":384,"y":0,"fileNum":12069,"id":7688,"width":32,"height":32},{"x":416,"y":0,"fileNum":12069,"id":7689,"width":32,"height":32},{"x":448,"y":0,"fileNum":12069,"id":7690,"width":32,"height":32},{"x":480,"y":0,"fileNum":12069,"id":7691,"width":32,"height":32},{"x":384,"y":32,"fileNum":12069,"id":7692,"width":32,"height":32},{"x":416,"y":32,"fileNum":12069,"id":7693,"width":32,"height":32},{"x":448,"y":32,"fileNum":12069,"id":7694,"width":32,"height":32},{"x":480,"y":32,"fileNum":12069,"id":7695,"width":32,"height":32},{"x":384,"y":64,"fileNum":12069,"id":7696,"width":32,"height":32},{"x":416,"y":64,"fileNum":12069,"id":7697,"width":32,"height":32},{"x":448,"y":64,"fileNum":12069,"id":7698,"width":32,"height":32},{"x":480,"y":64,"fileNum":12069,"id":7699,"width":32,"height":32},{"x":384,"y":96,"fileNum":12069,"id":7700,"width":32,"height":32},{"x":416,"y":96,"fileNum":12069,"id":7701,"width":32,"height":32},{"x":448,"y":96,"fileNum":12069,"id":7702,"width":32,"height":32},{"x":480,"y":96,"fileNum":12069,"id":7703,"width":32,"height":32},{"x":0,"y":0,"fileNum":12070,"id":7704,"width":32,"height":32},{"x":32,"y":0,"fileNum":12070,"id":7705,"width":32,"height":32},{"x":64,"y":0,"fileNum":12070,"id":7706,"width":32,"height":32},{"x":96,"y":0,"fileNum":12070,"id":7707,"width":32,"height":32},{"x":0,"y":32,"fileNum":12070,"id":7708,"width":32,"height":32},{"x":32,"y":32,"fileNum":12070,"id":7709,"width":32,"height":32},{"x":64,"y":32,"fileNum":12070,"id":7710,"width":32,"height":32},{"x":96,"y":32,"fileNum":12070,"id":7711,"width":32,"height":32},{"x":0,"y":64,"fileNum":12070,"id":7712,"width":32,"height":32},{"x":32,"y":64,"fileNum":12070,"id":7713,"width":32,"height":32},{"x":64,"y":64,"fileNum":12070,"id":7714,"width":32,"height":32},{"x":96,"y":64,"fileNum":12070,"id":7715,"width":32,"height":32},{"x":0,"y":96,"fileNum":12070,"id":7716,"width":32,"height":32},{"x":32,"y":96,"fileNum":12070,"id":7717,"width":32,"height":32},{"x":64,"y":96,"fileNum":12070,"id":7718,"width":32,"height":32},{"x":96,"y":96,"fileNum":12070,"id":7719,"width":32,"height":32},{"x":0,"y":0,"fileNum":12071,"id":7720,"width":32,"height":32},{"x":32,"y":0,"fileNum":12071,"id":7721,"width":32,"height":32},{"x":64,"y":0,"fileNum":12071,"id":7722,"width":32,"height":32},{"x":96,"y":0,"fileNum":12071,"id":7723,"width":32,"height":32},{"x":0,"y":32,"fileNum":12071,"id":7724,"width":32,"height":32},{"x":32,"y":32,"fileNum":12071,"id":7725,"width":32,"height":32},{"x":64,"y":32,"fileNum":12071,"id":7726,"width":32,"height":32},{"x":96,"y":32,"fileNum":12071,"id":7727,"width":32,"height":32},{"x":0,"y":64,"fileNum":12071,"id":7728,"width":32,"height":32},{"x":32,"y":64,"fileNum":12071,"id":7729,"width":32,"height":32},{"x":64,"y":64,"fileNum":12071,"id":7730,"width":32,"height":32},{"x":96,"y":64,"fileNum":12071,"id":7731,"width":32,"height":32},{"x":0,"y":96,"fileNum":12071,"id":7732,"width":32,"height":32},{"x":32,"y":96,"fileNum":12071,"id":7733,"width":32,"height":32},{"x":64,"y":96,"fileNum":12071,"id":7734,"width":32,"height":32},{"x":96,"y":96,"fileNum":12071,"id":7735,"width":32,"height":32},{"x":0,"y":0,"fileNum":12072,"id":7736,"width":32,"height":32},{"x":32,"y":0,"fileNum":12072,"id":7737,"width":32,"height":32},{"x":64,"y":0,"fileNum":12072,"id":7738,"width":32,"height":32},{"x":96,"y":0,"fileNum":12072,"id":7739,"width":32,"height":32},{"x":0,"y":32,"fileNum":12072,"id":7740,"width":32,"height":32},{"x":32,"y":32,"fileNum":12072,"id":7741,"width":32,"height":32},{"x":64,"y":32,"fileNum":12072,"id":7742,"width":32,"height":32},{"x":96,"y":32,"fileNum":12072,"id":7743,"width":32,"height":32},{"x":0,"y":64,"fileNum":12072,"id":7744,"width":32,"height":32},{"x":32,"y":64,"fileNum":12072,"id":7745,"width":32,"height":32},{"x":64,"y":64,"fileNum":12072,"id":7746,"width":32,"height":32},{"x":96,"y":64,"fileNum":12072,"id":7747,"width":32,"height":32},{"x":0,"y":96,"fileNum":12072,"id":7748,"width":32,"height":32},{"x":32,"y":96,"fileNum":12072,"id":7749,"width":32,"height":32},{"x":64,"y":96,"fileNum":12072,"id":7750,"width":32,"height":32},{"x":96,"y":96,"fileNum":12072,"id":7751,"width":32,"height":32},{"x":128,"y":0,"fileNum":12072,"id":7752,"width":32,"height":32},{"x":160,"y":0,"fileNum":12072,"id":7753,"width":32,"height":32},{"x":192,"y":0,"fileNum":12072,"id":7754,"width":32,"height":32},{"x":224,"y":0,"fileNum":12072,"id":7755,"width":32,"height":32},{"x":128,"y":32,"fileNum":12072,"id":7756,"width":32,"height":32},{"x":160,"y":32,"fileNum":12072,"id":7757,"width":32,"height":32},{"x":192,"y":32,"fileNum":12072,"id":7758,"width":32,"height":32},{"x":224,"y":32,"fileNum":12072,"id":7759,"width":32,"height":32},{"x":128,"y":64,"fileNum":12072,"id":7760,"width":32,"height":32},{"x":160,"y":64,"fileNum":12072,"id":7761,"width":32,"height":32},{"x":192,"y":64,"fileNum":12072,"id":7762,"width":32,"height":32},{"x":224,"y":64,"fileNum":12072,"id":7763,"width":32,"height":32},{"x":128,"y":96,"fileNum":12072,"id":7764,"width":32,"height":32},{"x":160,"y":96,"fileNum":12072,"id":7765,"width":32,"height":32},{"x":192,"y":96,"fileNum":12072,"id":7766,"width":32,"height":32},{"x":224,"y":96,"fileNum":12072,"id":7767,"width":32,"height":32},{"x":256,"y":0,"fileNum":12072,"id":7768,"width":32,"height":32},{"x":288,"y":0,"fileNum":12072,"id":7769,"width":32,"height":32},{"x":320,"y":0,"fileNum":12072,"id":7770,"width":32,"height":32},{"x":352,"y":0,"fileNum":12072,"id":7771,"width":32,"height":32},{"x":256,"y":32,"fileNum":12072,"id":7772,"width":32,"height":32},{"x":288,"y":32,"fileNum":12072,"id":7773,"width":32,"height":32},{"x":320,"y":32,"fileNum":12072,"id":7774,"width":32,"height":32},{"x":352,"y":32,"fileNum":12072,"id":7775,"width":32,"height":32},{"x":256,"y":64,"fileNum":12072,"id":7776,"width":32,"height":32},{"x":288,"y":64,"fileNum":12072,"id":7777,"width":32,"height":32},{"x":320,"y":64,"fileNum":12072,"id":7778,"width":32,"height":32},{"x":352,"y":64,"fileNum":12072,"id":7779,"width":32,"height":32},{"x":256,"y":96,"fileNum":12072,"id":7780,"width":32,"height":32},{"x":288,"y":96,"fileNum":12072,"id":7781,"width":32,"height":32},{"x":320,"y":96,"fileNum":12072,"id":7782,"width":32,"height":32},{"x":352,"y":96,"fileNum":12072,"id":7783,"width":32,"height":32},{"x":384,"y":0,"fileNum":12072,"id":7784,"width":32,"height":32},{"x":416,"y":0,"fileNum":12072,"id":7785,"width":32,"height":32},{"x":448,"y":0,"fileNum":12072,"id":7786,"width":32,"height":32},{"x":480,"y":0,"fileNum":12072,"id":7787,"width":32,"height":32},{"x":384,"y":32,"fileNum":12072,"id":7788,"width":32,"height":32},{"x":416,"y":32,"fileNum":12072,"id":7789,"width":32,"height":32},{"x":448,"y":32,"fileNum":12072,"id":7790,"width":32,"height":32},{"x":480,"y":32,"fileNum":12072,"id":7791,"width":32,"height":32},{"x":384,"y":64,"fileNum":12072,"id":7792,"width":32,"height":32},{"x":416,"y":64,"fileNum":12072,"id":7793,"width":32,"height":32},{"x":448,"y":64,"fileNum":12072,"id":7794,"width":32,"height":32},{"x":480,"y":64,"fileNum":12072,"id":7795,"width":32,"height":32},{"x":384,"y":96,"fileNum":12072,"id":7796,"width":32,"height":32},{"x":416,"y":96,"fileNum":12072,"id":7797,"width":32,"height":32},{"x":448,"y":96,"fileNum":12072,"id":7798,"width":32,"height":32},{"x":480,"y":96,"fileNum":12072,"id":7799,"width":32,"height":32},{"x":0,"y":0,"fileNum":12073,"id":7800,"width":32,"height":32},{"x":32,"y":0,"fileNum":12073,"id":7801,"width":32,"height":32},{"x":64,"y":0,"fileNum":12073,"id":7802,"width":32,"height":32},{"x":96,"y":0,"fileNum":12073,"id":7803,"width":32,"height":32},{"x":0,"y":32,"fileNum":12073,"id":7804,"width":32,"height":32},{"x":32,"y":32,"fileNum":12073,"id":7805,"width":32,"height":32},{"x":64,"y":32,"fileNum":12073,"id":7806,"width":32,"height":32},{"x":96,"y":32,"fileNum":12073,"id":7807,"width":32,"height":32},{"x":0,"y":64,"fileNum":12073,"id":7808,"width":32,"height":32},{"x":32,"y":64,"fileNum":12073,"id":7809,"width":32,"height":32},{"x":64,"y":64,"fileNum":12073,"id":7810,"width":32,"height":32},{"x":96,"y":64,"fileNum":12073,"id":7811,"width":32,"height":32},{"x":0,"y":96,"fileNum":12073,"id":7812,"width":32,"height":32},{"x":32,"y":96,"fileNum":12073,"id":7813,"width":32,"height":32},{"x":64,"y":96,"fileNum":12073,"id":7814,"width":32,"height":32},{"x":96,"y":96,"fileNum":12073,"id":7815,"width":32,"height":32},{"x":128,"y":0,"fileNum":12073,"id":7816,"width":32,"height":32},{"x":160,"y":0,"fileNum":12073,"id":7817,"width":32,"height":32},{"x":192,"y":0,"fileNum":12073,"id":7818,"width":32,"height":32},{"x":224,"y":0,"fileNum":12073,"id":7819,"width":32,"height":32},{"x":128,"y":32,"fileNum":12073,"id":7820,"width":32,"height":32},{"x":160,"y":32,"fileNum":12073,"id":7821,"width":32,"height":32},{"x":192,"y":32,"fileNum":12073,"id":7822,"width":32,"height":32},{"x":224,"y":32,"fileNum":12073,"id":7823,"width":32,"height":32},{"x":128,"y":64,"fileNum":12073,"id":7824,"width":32,"height":32},{"x":160,"y":64,"fileNum":12073,"id":7825,"width":32,"height":32},{"x":192,"y":64,"fileNum":12073,"id":7826,"width":32,"height":32},{"x":224,"y":64,"fileNum":12073,"id":7827,"width":32,"height":32},{"x":128,"y":96,"fileNum":12073,"id":7828,"width":32,"height":32},{"x":160,"y":96,"fileNum":12073,"id":7829,"width":32,"height":32},{"x":192,"y":96,"fileNum":12073,"id":7830,"width":32,"height":32},{"x":224,"y":96,"fileNum":12073,"id":7831,"width":32,"height":32},{"x":256,"y":0,"fileNum":12073,"id":7832,"width":32,"height":32},{"x":288,"y":0,"fileNum":12073,"id":7833,"width":32,"height":32},{"x":320,"y":0,"fileNum":12073,"id":7834,"width":32,"height":32},{"x":352,"y":0,"fileNum":12073,"id":7835,"width":32,"height":32},{"x":256,"y":32,"fileNum":12073,"id":7836,"width":32,"height":32},{"x":288,"y":32,"fileNum":12073,"id":7837,"width":32,"height":32},{"x":320,"y":32,"fileNum":12073,"id":7838,"width":32,"height":32},{"x":352,"y":32,"fileNum":12073,"id":7839,"width":32,"height":32},{"x":256,"y":64,"fileNum":12073,"id":7840,"width":32,"height":32},{"x":288,"y":64,"fileNum":12073,"id":7841,"width":32,"height":32},{"x":320,"y":64,"fileNum":12073,"id":7842,"width":32,"height":32},{"x":352,"y":64,"fileNum":12073,"id":7843,"width":32,"height":32},{"x":256,"y":96,"fileNum":12073,"id":7844,"width":32,"height":32},{"x":288,"y":96,"fileNum":12073,"id":7845,"width":32,"height":32},{"x":320,"y":96,"fileNum":12073,"id":7846,"width":32,"height":32},{"x":352,"y":96,"fileNum":12073,"id":7847,"width":32,"height":32},{"x":384,"y":0,"fileNum":12073,"id":7848,"width":32,"height":32},{"x":416,"y":0,"fileNum":12073,"id":7849,"width":32,"height":32},{"x":448,"y":0,"fileNum":12073,"id":7850,"width":32,"height":32},{"x":480,"y":0,"fileNum":12073,"id":7851,"width":32,"height":32},{"x":384,"y":32,"fileNum":12073,"id":7852,"width":32,"height":32},{"x":416,"y":32,"fileNum":12073,"id":7853,"width":32,"height":32},{"x":448,"y":32,"fileNum":12073,"id":7854,"width":32,"height":32},{"x":480,"y":32,"fileNum":12073,"id":7855,"width":32,"height":32},{"x":384,"y":64,"fileNum":12073,"id":7856,"width":32,"height":32},{"x":416,"y":64,"fileNum":12073,"id":7857,"width":32,"height":32},{"x":448,"y":64,"fileNum":12073,"id":7858,"width":32,"height":32},{"x":480,"y":64,"fileNum":12073,"id":7859,"width":32,"height":32},{"x":384,"y":96,"fileNum":12073,"id":7860,"width":32,"height":32},{"x":416,"y":96,"fileNum":12073,"id":7861,"width":32,"height":32},{"x":448,"y":96,"fileNum":12073,"id":7862,"width":32,"height":32},{"x":480,"y":96,"fileNum":12073,"id":7863,"width":32,"height":32},{"x":0,"y":0,"fileNum":12074,"id":7864,"width":32,"height":32},{"x":32,"y":0,"fileNum":12074,"id":7865,"width":32,"height":32},{"x":64,"y":0,"fileNum":12074,"id":7866,"width":32,"height":32},{"x":96,"y":0,"fileNum":12074,"id":7867,"width":32,"height":32},{"x":0,"y":32,"fileNum":12074,"id":7868,"width":32,"height":32},{"x":32,"y":32,"fileNum":12074,"id":7869,"width":32,"height":32},{"x":64,"y":32,"fileNum":12074,"id":7870,"width":32,"height":32},{"x":96,"y":32,"fileNum":12074,"id":7871,"width":32,"height":32},{"x":0,"y":64,"fileNum":12074,"id":7872,"width":32,"height":32},{"x":32,"y":64,"fileNum":12074,"id":7873,"width":32,"height":32},{"x":64,"y":64,"fileNum":12074,"id":7874,"width":32,"height":32},{"x":96,"y":64,"fileNum":12074,"id":7875,"width":32,"height":32},{"x":0,"y":96,"fileNum":12074,"id":7876,"width":32,"height":32},{"x":32,"y":96,"fileNum":12074,"id":7877,"width":32,"height":32},{"x":64,"y":96,"fileNum":12074,"id":7878,"width":32,"height":32},{"x":96,"y":96,"fileNum":12074,"id":7879,"width":32,"height":32},{"x":128,"y":0,"fileNum":12074,"id":7880,"width":32,"height":32},{"x":160,"y":0,"fileNum":12074,"id":7881,"width":32,"height":32},{"x":192,"y":0,"fileNum":12074,"id":7882,"width":32,"height":32},{"x":224,"y":0,"fileNum":12074,"id":7883,"width":32,"height":32},{"x":128,"y":32,"fileNum":12074,"id":7884,"width":32,"height":32},{"x":160,"y":32,"fileNum":12074,"id":7885,"width":32,"height":32},{"x":192,"y":32,"fileNum":12074,"id":7886,"width":32,"height":32},{"x":224,"y":32,"fileNum":12074,"id":7887,"width":32,"height":32},{"x":128,"y":64,"fileNum":12074,"id":7888,"width":32,"height":32},{"x":160,"y":64,"fileNum":12074,"id":7889,"width":32,"height":32},{"x":192,"y":64,"fileNum":12074,"id":7890,"width":32,"height":32},{"x":224,"y":64,"fileNum":12074,"id":7891,"width":32,"height":32},{"x":128,"y":96,"fileNum":12074,"id":7892,"width":32,"height":32},{"x":160,"y":96,"fileNum":12074,"id":7893,"width":32,"height":32},{"x":192,"y":96,"fileNum":12074,"id":7894,"width":32,"height":32},{"x":224,"y":96,"fileNum":12074,"id":7895,"width":32,"height":32},{"x":256,"y":0,"fileNum":12074,"id":7896,"width":32,"height":32},{"x":288,"y":0,"fileNum":12074,"id":7897,"width":32,"height":32},{"x":320,"y":0,"fileNum":12074,"id":7898,"width":32,"height":32},{"x":352,"y":0,"fileNum":12074,"id":7899,"width":32,"height":32},{"x":256,"y":32,"fileNum":12074,"id":7900,"width":32,"height":32},{"x":288,"y":32,"fileNum":12074,"id":7901,"width":32,"height":32},{"x":320,"y":32,"fileNum":12074,"id":7902,"width":32,"height":32},{"x":352,"y":32,"fileNum":12074,"id":7903,"width":32,"height":32},{"x":256,"y":64,"fileNum":12074,"id":7904,"width":32,"height":32},{"x":288,"y":64,"fileNum":12074,"id":7905,"width":32,"height":32},{"x":320,"y":64,"fileNum":12074,"id":7906,"width":32,"height":32},{"x":352,"y":64,"fileNum":12074,"id":7907,"width":32,"height":32},{"x":256,"y":96,"fileNum":12074,"id":7908,"width":32,"height":32},{"x":288,"y":96,"fileNum":12074,"id":7909,"width":32,"height":32},{"x":320,"y":96,"fileNum":12074,"id":7910,"width":32,"height":32},{"x":352,"y":96,"fileNum":12074,"id":7911,"width":32,"height":32},{"x":384,"y":0,"fileNum":12074,"id":7912,"width":32,"height":32},{"x":416,"y":0,"fileNum":12074,"id":7913,"width":32,"height":32},{"x":448,"y":0,"fileNum":12074,"id":7914,"width":32,"height":32},{"x":480,"y":0,"fileNum":12074,"id":7915,"width":32,"height":32},{"x":384,"y":32,"fileNum":12074,"id":7916,"width":32,"height":32},{"x":416,"y":32,"fileNum":12074,"id":7917,"width":32,"height":32},{"x":448,"y":32,"fileNum":12074,"id":7918,"width":32,"height":32},{"x":480,"y":32,"fileNum":12074,"id":7919,"width":32,"height":32},{"x":384,"y":64,"fileNum":12074,"id":7920,"width":32,"height":32},{"x":416,"y":64,"fileNum":12074,"id":7921,"width":32,"height":32},{"x":448,"y":64,"fileNum":12074,"id":7922,"width":32,"height":32},{"x":480,"y":64,"fileNum":12074,"id":7923,"width":32,"height":32},{"x":384,"y":96,"fileNum":12074,"id":7924,"width":32,"height":32},{"x":416,"y":96,"fileNum":12074,"id":7925,"width":32,"height":32},{"x":448,"y":96,"fileNum":12074,"id":7926,"width":32,"height":32},{"x":480,"y":96,"fileNum":12074,"id":7927,"width":32,"height":32},{"x":0,"y":0,"fileNum":12075,"id":7928,"width":32,"height":32},{"x":32,"y":0,"fileNum":12075,"id":7929,"width":32,"height":32},{"x":64,"y":0,"fileNum":12075,"id":7930,"width":32,"height":32},{"x":96,"y":0,"fileNum":12075,"id":7931,"width":32,"height":32},{"x":0,"y":32,"fileNum":12075,"id":7932,"width":32,"height":32},{"x":32,"y":32,"fileNum":12075,"id":7933,"width":32,"height":32},{"x":64,"y":32,"fileNum":12075,"id":7934,"width":32,"height":32},{"x":96,"y":32,"fileNum":12075,"id":7935,"width":32,"height":32},{"x":0,"y":64,"fileNum":12075,"id":7936,"width":32,"height":32},{"x":32,"y":64,"fileNum":12075,"id":7937,"width":32,"height":32},{"x":64,"y":64,"fileNum":12075,"id":7938,"width":32,"height":32},{"x":96,"y":64,"fileNum":12075,"id":7939,"width":32,"height":32},{"x":0,"y":96,"fileNum":12075,"id":7940,"width":32,"height":32},{"x":32,"y":96,"fileNum":12075,"id":7941,"width":32,"height":32},{"x":64,"y":96,"fileNum":12075,"id":7942,"width":32,"height":32},{"x":96,"y":96,"fileNum":12075,"id":7943,"width":32,"height":32},{"x":128,"y":0,"fileNum":12075,"id":7944,"width":32,"height":32},{"x":160,"y":0,"fileNum":12075,"id":7945,"width":32,"height":32},{"x":192,"y":0,"fileNum":12075,"id":7946,"width":32,"height":32},{"x":224,"y":0,"fileNum":12075,"id":7947,"width":32,"height":32},{"x":128,"y":32,"fileNum":12075,"id":7948,"width":32,"height":32},{"x":160,"y":32,"fileNum":12075,"id":7949,"width":32,"height":32},{"x":192,"y":32,"fileNum":12075,"id":7950,"width":32,"height":32},{"x":224,"y":32,"fileNum":12075,"id":7951,"width":32,"height":32},{"x":128,"y":64,"fileNum":12075,"id":7952,"width":32,"height":32},{"x":160,"y":64,"fileNum":12075,"id":7953,"width":32,"height":32},{"x":192,"y":64,"fileNum":12075,"id":7954,"width":32,"height":32},{"x":224,"y":64,"fileNum":12075,"id":7955,"width":32,"height":32},{"x":128,"y":96,"fileNum":12075,"id":7956,"width":32,"height":32},{"x":160,"y":96,"fileNum":12075,"id":7957,"width":32,"height":32},{"x":192,"y":96,"fileNum":12075,"id":7958,"width":32,"height":32},{"x":224,"y":96,"fileNum":12075,"id":7959,"width":32,"height":32},{"x":0,"y":0,"fileNum":12076,"id":7960,"width":32,"height":32},{"x":32,"y":0,"fileNum":12076,"id":7961,"width":32,"height":32},{"x":64,"y":0,"fileNum":12076,"id":7962,"width":32,"height":32},{"x":96,"y":0,"fileNum":12076,"id":7963,"width":32,"height":32},{"x":0,"y":32,"fileNum":12076,"id":7964,"width":32,"height":32},{"x":32,"y":32,"fileNum":12076,"id":7965,"width":32,"height":32},{"x":64,"y":32,"fileNum":12076,"id":7966,"width":32,"height":32},{"x":96,"y":32,"fileNum":12076,"id":7967,"width":32,"height":32},{"x":0,"y":64,"fileNum":12076,"id":7968,"width":32,"height":32},{"x":32,"y":64,"fileNum":12076,"id":7969,"width":32,"height":32},{"x":64,"y":64,"fileNum":12076,"id":7970,"width":32,"height":32},{"x":96,"y":64,"fileNum":12076,"id":7971,"width":32,"height":32},{"x":0,"y":96,"fileNum":12076,"id":7972,"width":32,"height":32},{"x":32,"y":96,"fileNum":12076,"id":7973,"width":32,"height":32},{"x":64,"y":96,"fileNum":12076,"id":7974,"width":32,"height":32},{"x":96,"y":96,"fileNum":12076,"id":7975,"width":32,"height":32},{"x":128,"y":0,"fileNum":12076,"id":7976,"width":32,"height":32},{"x":160,"y":0,"fileNum":12076,"id":7977,"width":32,"height":32},{"x":192,"y":0,"fileNum":12076,"id":7978,"width":32,"height":32},{"x":224,"y":0,"fileNum":12076,"id":7979,"width":32,"height":32},{"x":128,"y":32,"fileNum":12076,"id":7980,"width":32,"height":32},{"x":160,"y":32,"fileNum":12076,"id":7981,"width":32,"height":32},{"x":192,"y":32,"fileNum":12076,"id":7982,"width":32,"height":32},{"x":224,"y":32,"fileNum":12076,"id":7983,"width":32,"height":32},{"x":128,"y":64,"fileNum":12076,"id":7984,"width":32,"height":32},{"x":160,"y":64,"fileNum":12076,"id":7985,"width":32,"height":32},{"x":192,"y":64,"fileNum":12076,"id":7986,"width":32,"height":32},{"x":224,"y":64,"fileNum":12076,"id":7987,"width":32,"height":32},{"x":128,"y":96,"fileNum":12076,"id":7988,"width":32,"height":32},{"x":160,"y":96,"fileNum":12076,"id":7989,"width":32,"height":32},{"x":192,"y":96,"fileNum":12076,"id":7990,"width":32,"height":32},{"x":224,"y":96,"fileNum":12076,"id":7991,"width":32,"height":32},{"x":256,"y":0,"fileNum":12076,"id":7992,"width":32,"height":32},{"x":288,"y":0,"fileNum":12076,"id":7993,"width":32,"height":32},{"x":320,"y":0,"fileNum":12076,"id":7994,"width":32,"height":32},{"x":352,"y":0,"fileNum":12076,"id":7995,"width":32,"height":32},{"x":256,"y":32,"fileNum":12076,"id":7996,"width":32,"height":32},{"x":288,"y":32,"fileNum":12076,"id":7997,"width":32,"height":32},{"x":320,"y":32,"fileNum":12076,"id":7998,"width":32,"height":32},{"x":352,"y":32,"fileNum":12076,"id":7999,"width":32,"height":32},{"x":256,"y":64,"fileNum":12076,"id":8000,"width":32,"height":32},{"x":288,"y":64,"fileNum":12076,"id":8001,"width":32,"height":32},{"x":320,"y":64,"fileNum":12076,"id":8002,"width":32,"height":32},{"x":352,"y":64,"fileNum":12076,"id":8003,"width":32,"height":32},{"x":256,"y":96,"fileNum":12076,"id":8004,"width":32,"height":32},{"x":288,"y":96,"fileNum":12076,"id":8005,"width":32,"height":32},{"x":320,"y":96,"fileNum":12076,"id":8006,"width":32,"height":32},{"x":352,"y":96,"fileNum":12076,"id":8007,"width":32,"height":32},{"x":384,"y":0,"fileNum":12076,"id":8008,"width":32,"height":32},{"x":416,"y":0,"fileNum":12076,"id":8009,"width":32,"height":32},{"x":448,"y":0,"fileNum":12076,"id":8010,"width":32,"height":32},{"x":480,"y":0,"fileNum":12076,"id":8011,"width":32,"height":32},{"x":384,"y":32,"fileNum":12076,"id":8012,"width":32,"height":32},{"x":416,"y":32,"fileNum":12076,"id":8013,"width":32,"height":32},{"x":448,"y":32,"fileNum":12076,"id":8014,"width":32,"height":32},{"x":480,"y":32,"fileNum":12076,"id":8015,"width":32,"height":32},{"x":384,"y":64,"fileNum":12076,"id":8016,"width":32,"height":32},{"x":416,"y":64,"fileNum":12076,"id":8017,"width":32,"height":32},{"x":448,"y":64,"fileNum":12076,"id":8018,"width":32,"height":32},{"x":480,"y":64,"fileNum":12076,"id":8019,"width":32,"height":32},{"x":384,"y":96,"fileNum":12076,"id":8020,"width":32,"height":32},{"x":416,"y":96,"fileNum":12076,"id":8021,"width":32,"height":32},{"x":448,"y":96,"fileNum":12076,"id":8022,"width":32,"height":32},{"x":480,"y":96,"fileNum":12076,"id":8023,"width":32,"height":32},{"x":0,"y":0,"fileNum":12077,"id":8024,"width":32,"height":32},{"x":32,"y":0,"fileNum":12077,"id":8025,"width":32,"height":32},{"x":64,"y":0,"fileNum":12077,"id":8026,"width":32,"height":32},{"x":96,"y":0,"fileNum":12077,"id":8027,"width":32,"height":32},{"x":0,"y":32,"fileNum":12077,"id":8028,"width":32,"height":32},{"x":32,"y":32,"fileNum":12077,"id":8029,"width":32,"height":32},{"x":64,"y":32,"fileNum":12077,"id":8030,"width":32,"height":32},{"x":96,"y":32,"fileNum":12077,"id":8031,"width":32,"height":32},{"x":0,"y":64,"fileNum":12077,"id":8032,"width":32,"height":32},{"x":32,"y":64,"fileNum":12077,"id":8033,"width":32,"height":32},{"x":64,"y":64,"fileNum":12077,"id":8034,"width":32,"height":32},{"x":96,"y":64,"fileNum":12077,"id":8035,"width":32,"height":32},{"x":0,"y":96,"fileNum":12077,"id":8036,"width":32,"height":32},{"x":32,"y":96,"fileNum":12077,"id":8037,"width":32,"height":32},{"x":64,"y":96,"fileNum":12077,"id":8038,"width":32,"height":32},{"x":96,"y":96,"fileNum":12077,"id":8039,"width":32,"height":32},{"x":128,"y":0,"fileNum":12077,"id":8040,"width":32,"height":32},{"x":160,"y":0,"fileNum":12077,"id":8041,"width":32,"height":32},{"x":192,"y":0,"fileNum":12077,"id":8042,"width":32,"height":32},{"x":224,"y":0,"fileNum":12077,"id":8043,"width":32,"height":32},{"x":128,"y":32,"fileNum":12077,"id":8044,"width":32,"height":32},{"x":160,"y":32,"fileNum":12077,"id":8045,"width":32,"height":32},{"x":192,"y":32,"fileNum":12077,"id":8046,"width":32,"height":32},{"x":224,"y":32,"fileNum":12077,"id":8047,"width":32,"height":32},{"x":128,"y":64,"fileNum":12077,"id":8048,"width":32,"height":32},{"x":160,"y":64,"fileNum":12077,"id":8049,"width":32,"height":32},{"x":192,"y":64,"fileNum":12077,"id":8050,"width":32,"height":32},{"x":224,"y":64,"fileNum":12077,"id":8051,"width":32,"height":32},{"x":128,"y":96,"fileNum":12077,"id":8052,"width":32,"height":32},{"x":160,"y":96,"fileNum":12077,"id":8053,"width":32,"height":32},{"x":192,"y":96,"fileNum":12077,"id":8054,"width":32,"height":32},{"x":224,"y":96,"fileNum":12077,"id":8055,"width":32,"height":32},{"x":256,"y":0,"fileNum":12077,"id":8056,"width":32,"height":32},{"x":288,"y":0,"fileNum":12077,"id":8057,"width":32,"height":32},{"x":320,"y":0,"fileNum":12077,"id":8058,"width":32,"height":32},{"x":352,"y":0,"fileNum":12077,"id":8059,"width":32,"height":32},{"x":256,"y":32,"fileNum":12077,"id":8060,"width":32,"height":32},{"x":288,"y":32,"fileNum":12077,"id":8061,"width":32,"height":32},{"x":320,"y":32,"fileNum":12077,"id":8062,"width":32,"height":32},{"x":352,"y":32,"fileNum":12077,"id":8063,"width":32,"height":32},{"x":256,"y":64,"fileNum":12077,"id":8064,"width":32,"height":32},{"x":288,"y":64,"fileNum":12077,"id":8065,"width":32,"height":32},{"x":320,"y":64,"fileNum":12077,"id":8066,"width":32,"height":32},{"x":352,"y":64,"fileNum":12077,"id":8067,"width":32,"height":32},{"x":256,"y":96,"fileNum":12077,"id":8068,"width":32,"height":32},{"x":288,"y":96,"fileNum":12077,"id":8069,"width":32,"height":32},{"x":320,"y":96,"fileNum":12077,"id":8070,"width":32,"height":32},{"x":352,"y":96,"fileNum":12077,"id":8071,"width":32,"height":32},{"x":384,"y":0,"fileNum":12077,"id":8072,"width":32,"height":32},{"x":416,"y":0,"fileNum":12077,"id":8073,"width":32,"height":32},{"x":448,"y":0,"fileNum":12077,"id":8074,"width":32,"height":32},{"x":480,"y":0,"fileNum":12077,"id":8075,"width":32,"height":32},{"x":384,"y":32,"fileNum":12077,"id":8076,"width":32,"height":32},{"x":416,"y":32,"fileNum":12077,"id":8077,"width":32,"height":32},{"x":448,"y":32,"fileNum":12077,"id":8078,"width":32,"height":32},{"x":480,"y":32,"fileNum":12077,"id":8079,"width":32,"height":32},{"x":384,"y":64,"fileNum":12077,"id":8080,"width":32,"height":32},{"x":416,"y":64,"fileNum":12077,"id":8081,"width":32,"height":32},{"x":448,"y":64,"fileNum":12077,"id":8082,"width":32,"height":32},{"x":480,"y":64,"fileNum":12077,"id":8083,"width":32,"height":32},{"x":384,"y":96,"fileNum":12077,"id":8084,"width":32,"height":32},{"x":416,"y":96,"fileNum":12077,"id":8085,"width":32,"height":32},{"x":448,"y":96,"fileNum":12077,"id":8086,"width":32,"height":32},{"x":480,"y":96,"fileNum":12077,"id":8087,"width":32,"height":32},{"x":0,"y":0,"fileNum":12078,"id":8088,"width":32,"height":32},{"x":32,"y":0,"fileNum":12078,"id":8089,"width":32,"height":32},{"x":64,"y":0,"fileNum":12078,"id":8090,"width":32,"height":32},{"x":96,"y":0,"fileNum":12078,"id":8091,"width":32,"height":32},{"x":0,"y":32,"fileNum":12078,"id":8092,"width":32,"height":32},{"x":32,"y":32,"fileNum":12078,"id":8093,"width":32,"height":32},{"x":64,"y":32,"fileNum":12078,"id":8094,"width":32,"height":32},{"x":96,"y":32,"fileNum":12078,"id":8095,"width":32,"height":32},{"x":0,"y":64,"fileNum":12078,"id":8096,"width":32,"height":32},{"x":32,"y":64,"fileNum":12078,"id":8097,"width":32,"height":32},{"x":64,"y":64,"fileNum":12078,"id":8098,"width":32,"height":32},{"x":96,"y":64,"fileNum":12078,"id":8099,"width":32,"height":32},{"x":0,"y":96,"fileNum":12078,"id":8100,"width":32,"height":32},{"x":32,"y":96,"fileNum":12078,"id":8101,"width":32,"height":32},{"x":64,"y":96,"fileNum":12078,"id":8102,"width":32,"height":32},{"x":96,"y":96,"fileNum":12078,"id":8103,"width":32,"height":32},{"x":128,"y":0,"fileNum":12078,"id":8104,"width":32,"height":32},{"x":160,"y":0,"fileNum":12078,"id":8105,"width":32,"height":32},{"x":192,"y":0,"fileNum":12078,"id":8106,"width":32,"height":32},{"x":224,"y":0,"fileNum":12078,"id":8107,"width":32,"height":32},{"x":128,"y":32,"fileNum":12078,"id":8108,"width":32,"height":32},{"x":160,"y":32,"fileNum":12078,"id":8109,"width":32,"height":32},{"x":192,"y":32,"fileNum":12078,"id":8110,"width":32,"height":32},{"x":224,"y":32,"fileNum":12078,"id":8111,"width":32,"height":32},{"x":128,"y":64,"fileNum":12078,"id":8112,"width":32,"height":32},{"x":160,"y":64,"fileNum":12078,"id":8113,"width":32,"height":32},{"x":192,"y":64,"fileNum":12078,"id":8114,"width":32,"height":32},{"x":224,"y":64,"fileNum":12078,"id":8115,"width":32,"height":32},{"x":128,"y":96,"fileNum":12078,"id":8116,"width":32,"height":32},{"x":160,"y":96,"fileNum":12078,"id":8117,"width":32,"height":32},{"x":192,"y":96,"fileNum":12078,"id":8118,"width":32,"height":32},{"x":224,"y":96,"fileNum":12078,"id":8119,"width":32,"height":32},{"x":256,"y":0,"fileNum":12078,"id":8120,"width":32,"height":32},{"x":288,"y":0,"fileNum":12078,"id":8121,"width":32,"height":32},{"x":320,"y":0,"fileNum":12078,"id":8122,"width":32,"height":32},{"x":352,"y":0,"fileNum":12078,"id":8123,"width":32,"height":32},{"x":256,"y":32,"fileNum":12078,"id":8124,"width":32,"height":32},{"x":288,"y":32,"fileNum":12078,"id":8125,"width":32,"height":32},{"x":320,"y":32,"fileNum":12078,"id":8126,"width":32,"height":32},{"x":352,"y":32,"fileNum":12078,"id":8127,"width":32,"height":32},{"x":256,"y":64,"fileNum":12078,"id":8128,"width":32,"height":32},{"x":288,"y":64,"fileNum":12078,"id":8129,"width":32,"height":32},{"x":320,"y":64,"fileNum":12078,"id":8130,"width":32,"height":32},{"x":352,"y":64,"fileNum":12078,"id":8131,"width":32,"height":32},{"x":256,"y":96,"fileNum":12078,"id":8132,"width":32,"height":32},{"x":288,"y":96,"fileNum":12078,"id":8133,"width":32,"height":32},{"x":320,"y":96,"fileNum":12078,"id":8134,"width":32,"height":32},{"x":384,"y":0,"fileNum":12078,"id":8135,"width":32,"height":32},{"x":416,"y":0,"fileNum":12078,"id":8136,"width":32,"height":32},{"x":448,"y":0,"fileNum":12078,"id":8137,"width":32,"height":32},{"x":480,"y":0,"fileNum":12078,"id":8138,"width":32,"height":32},{"x":384,"y":32,"fileNum":12078,"id":8139,"width":32,"height":32},{"x":416,"y":32,"fileNum":12078,"id":8140,"width":32,"height":32},{"x":448,"y":32,"fileNum":12078,"id":8141,"width":32,"height":32},{"x":480,"y":32,"fileNum":12078,"id":8142,"width":32,"height":32},{"x":384,"y":64,"fileNum":12078,"id":8143,"width":32,"height":32},{"x":416,"y":64,"fileNum":12078,"id":8144,"width":32,"height":32},{"x":448,"y":64,"fileNum":12078,"id":8145,"width":32,"height":32},{"x":480,"y":64,"fileNum":12078,"id":8146,"width":32,"height":32},{"x":384,"y":96,"fileNum":12078,"id":8147,"width":32,"height":32},{"x":416,"y":96,"fileNum":12078,"id":8148,"width":32,"height":32},{"x":448,"y":96,"fileNum":12078,"id":8149,"width":32,"height":32},{"x":480,"y":96,"fileNum":12078,"id":8150,"width":32,"height":32},{"x":0,"y":0,"fileNum":12079,"id":8151,"width":32,"height":32},{"x":32,"y":0,"fileNum":12079,"id":8152,"width":32,"height":32},{"x":64,"y":0,"fileNum":12079,"id":8153,"width":32,"height":32},{"x":96,"y":0,"fileNum":12079,"id":8154,"width":32,"height":32},{"x":0,"y":32,"fileNum":12079,"id":8155,"width":32,"height":32},{"x":32,"y":32,"fileNum":12079,"id":8156,"width":32,"height":32},{"x":64,"y":32,"fileNum":12079,"id":8157,"width":32,"height":32},{"x":96,"y":32,"fileNum":12079,"id":8158,"width":32,"height":32},{"x":0,"y":64,"fileNum":12079,"id":8159,"width":32,"height":32},{"x":32,"y":64,"fileNum":12079,"id":8160,"width":32,"height":32},{"x":64,"y":64,"fileNum":12079,"id":8161,"width":32,"height":32},{"x":96,"y":64,"fileNum":12079,"id":8162,"width":32,"height":32},{"x":0,"y":96,"fileNum":12079,"id":8163,"width":32,"height":32},{"x":32,"y":96,"fileNum":12079,"id":8164,"width":32,"height":32},{"x":64,"y":96,"fileNum":12079,"id":8165,"width":32,"height":32},{"x":96,"y":96,"fileNum":12079,"id":8166,"width":32,"height":32},{"x":0,"y":0,"fileNum":15197,"id":8167,"width":64,"height":384},{"x":0,"y":0,"fileNum":15196,"id":8168,"width":288,"height":96},{"x":256,"y":0,"fileNum":12075,"id":8169,"width":32,"height":32},{"x":288,"y":0,"fileNum":12075,"id":8170,"width":32,"height":32},{"x":320,"y":0,"fileNum":12075,"id":8171,"width":32,"height":32},{"x":352,"y":0,"fileNum":12075,"id":8172,"width":32,"height":32},{"x":256,"y":32,"fileNum":12075,"id":8173,"width":32,"height":32},{"x":288,"y":32,"fileNum":12075,"id":8174,"width":32,"height":32},{"x":320,"y":32,"fileNum":12075,"id":8175,"width":32,"height":32},{"x":352,"y":32,"fileNum":12075,"id":8176,"width":32,"height":32},{"x":256,"y":64,"fileNum":12075,"id":8177,"width":32,"height":32},{"x":288,"y":64,"fileNum":12075,"id":8178,"width":32,"height":32},{"x":320,"y":64,"fileNum":12075,"id":8179,"width":32,"height":32},{"x":352,"y":64,"fileNum":12075,"id":8180,"width":32,"height":32},{"x":256,"y":96,"fileNum":12075,"id":8181,"width":32,"height":32},{"x":288,"y":96,"fileNum":12075,"id":8182,"width":32,"height":32},{"x":320,"y":96,"fileNum":12075,"id":8183,"width":32,"height":32},{"x":352,"y":96,"fileNum":12075,"id":8184,"width":32,"height":32},{"x":384,"y":0,"fileNum":12075,"id":8185,"width":32,"height":32},{"x":416,"y":0,"fileNum":12075,"id":8186,"width":32,"height":32},{"x":448,"y":0,"fileNum":12075,"id":8187,"width":32,"height":32},{"x":480,"y":0,"fileNum":12075,"id":8188,"width":32,"height":32},{"x":384,"y":32,"fileNum":12075,"id":8189,"width":32,"height":32},{"x":416,"y":32,"fileNum":12075,"id":8190,"width":32,"height":32},{"x":448,"y":32,"fileNum":12075,"id":8191,"width":32,"height":32},{"x":480,"y":32,"fileNum":12075,"id":8192,"width":32,"height":32},{"x":384,"y":64,"fileNum":12075,"id":8193,"width":32,"height":32},{"x":416,"y":64,"fileNum":12075,"id":8194,"width":32,"height":32},{"x":448,"y":64,"fileNum":12075,"id":8195,"width":32,"height":32},{"x":480,"y":64,"fileNum":12075,"id":8196,"width":32,"height":32},{"x":384,"y":96,"fileNum":12075,"id":8197,"width":32,"height":32},{"x":416,"y":96,"fileNum":12075,"id":8198,"width":32,"height":32},{"x":448,"y":96,"fileNum":12075,"id":8199,"width":32,"height":32},{"x":480,"y":96,"fileNum":12075,"id":8200,"width":32,"height":32},{"x":0,"y":0,"fileNum":8143,"id":8201,"width":32,"height":32},{"x":32,"y":0,"fileNum":8143,"id":8202,"width":32,"height":32},{"x":64,"y":0,"fileNum":8143,"id":8203,"width":32,"height":32},{"x":96,"y":0,"fileNum":8143,"id":8204,"width":32,"height":32},{"x":0,"y":32,"fileNum":8143,"id":8205,"width":32,"height":32},{"x":32,"y":32,"fileNum":8143,"id":8206,"width":32,"height":32},{"x":64,"y":32,"fileNum":8143,"id":8207,"width":32,"height":32},{"x":96,"y":32,"fileNum":8143,"id":8208,"width":32,"height":32},{"x":0,"y":64,"fileNum":8143,"id":8209,"width":32,"height":32},{"x":32,"y":64,"fileNum":8143,"id":8210,"width":32,"height":32},{"x":64,"y":64,"fileNum":8143,"id":8211,"width":32,"height":32},{"x":96,"y":64,"fileNum":8143,"id":8212,"width":32,"height":32},{"x":0,"y":96,"fileNum":8143,"id":8213,"width":32,"height":32},{"x":32,"y":96,"fileNum":8143,"id":8214,"width":32,"height":32},{"x":64,"y":96,"fileNum":8143,"id":8215,"width":32,"height":32},{"x":96,"y":96,"fileNum":8143,"id":8216,"width":32,"height":32},{"x":0,"y":0,"fileNum":8144,"id":8217,"width":32,"height":32},{"x":32,"y":0,"fileNum":8144,"id":8218,"width":32,"height":32},{"x":64,"y":0,"fileNum":8144,"id":8219,"width":32,"height":32},{"x":96,"y":0,"fileNum":8144,"id":8220,"width":32,"height":32},{"x":0,"y":32,"fileNum":8144,"id":8221,"width":32,"height":32},{"x":32,"y":32,"fileNum":8144,"id":8222,"width":32,"height":32},{"x":64,"y":32,"fileNum":8144,"id":8223,"width":32,"height":32},{"x":96,"y":32,"fileNum":8144,"id":8224,"width":32,"height":32},{"x":0,"y":64,"fileNum":8144,"id":8225,"width":32,"height":32},{"x":32,"y":64,"fileNum":8144,"id":8226,"width":32,"height":32},{"x":64,"y":64,"fileNum":8144,"id":8227,"width":32,"height":32},{"x":96,"y":64,"fileNum":8144,"id":8228,"width":32,"height":32},{"x":0,"y":96,"fileNum":8144,"id":8229,"width":32,"height":32},{"x":32,"y":96,"fileNum":8144,"id":8230,"width":32,"height":32},{"x":64,"y":96,"fileNum":8144,"id":8231,"width":32,"height":32},{"x":96,"y":96,"fileNum":8144,"id":8232,"width":32,"height":32},{"x":0,"y":0,"fileNum":8145,"id":8233,"width":32,"height":32},{"x":32,"y":0,"fileNum":8145,"id":8234,"width":32,"height":32},{"x":64,"y":0,"fileNum":8145,"id":8235,"width":32,"height":32},{"x":96,"y":0,"fileNum":8145,"id":8236,"width":32,"height":32},{"x":0,"y":32,"fileNum":8145,"id":8237,"width":32,"height":32},{"x":32,"y":32,"fileNum":8145,"id":8238,"width":32,"height":32},{"x":64,"y":32,"fileNum":8145,"id":8239,"width":32,"height":32},{"x":96,"y":32,"fileNum":8145,"id":8240,"width":32,"height":32},{"x":0,"y":64,"fileNum":8145,"id":8241,"width":32,"height":32},{"x":32,"y":64,"fileNum":8145,"id":8242,"width":32,"height":32},{"x":64,"y":64,"fileNum":8145,"id":8243,"width":32,"height":32},{"x":96,"y":64,"fileNum":8145,"id":8244,"width":32,"height":32},{"x":0,"y":96,"fileNum":8145,"id":8245,"width":32,"height":32},{"x":32,"y":96,"fileNum":8145,"id":8246,"width":32,"height":32},{"x":64,"y":96,"fileNum":8145,"id":8247,"width":32,"height":32},{"x":96,"y":96,"fileNum":8145,"id":8248,"width":32,"height":32},{"x":0,"y":0,"fileNum":8146,"id":8249,"width":32,"height":32},{"x":32,"y":0,"fileNum":8146,"id":8250,"width":32,"height":32},{"x":64,"y":0,"fileNum":8146,"id":8251,"width":32,"height":32},{"x":96,"y":0,"fileNum":8146,"id":8252,"width":32,"height":32},{"x":0,"y":32,"fileNum":8146,"id":8253,"width":32,"height":32},{"x":32,"y":32,"fileNum":8146,"id":8254,"width":32,"height":32},{"x":64,"y":32,"fileNum":8146,"id":8255,"width":32,"height":32},{"x":96,"y":32,"fileNum":8146,"id":8256,"width":32,"height":32},{"x":0,"y":64,"fileNum":8146,"id":8257,"width":32,"height":32},{"x":32,"y":64,"fileNum":8146,"id":8258,"width":32,"height":32},{"x":64,"y":64,"fileNum":8146,"id":8259,"width":32,"height":32},{"x":96,"y":64,"fileNum":8146,"id":8260,"width":32,"height":32},{"x":0,"y":96,"fileNum":8146,"id":8261,"width":32,"height":32},{"x":32,"y":96,"fileNum":8146,"id":8262,"width":32,"height":32},{"x":64,"y":96,"fileNum":8146,"id":8263,"width":32,"height":32},{"x":96,"y":96,"fileNum":8146,"id":8264,"width":32,"height":32},{"x":0,"y":0,"fileNum":8147,"id":8265,"width":32,"height":32},{"x":32,"y":0,"fileNum":8147,"id":8266,"width":32,"height":32},{"x":64,"y":0,"fileNum":8147,"id":8267,"width":32,"height":32},{"x":96,"y":0,"fileNum":8147,"id":8268,"width":32,"height":32},{"x":0,"y":32,"fileNum":8147,"id":8269,"width":32,"height":32},{"x":32,"y":32,"fileNum":8147,"id":8270,"width":32,"height":32},{"x":64,"y":32,"fileNum":8147,"id":8271,"width":32,"height":32},{"x":96,"y":32,"fileNum":8147,"id":8272,"width":32,"height":32},{"x":0,"y":64,"fileNum":8147,"id":8273,"width":32,"height":32},{"x":32,"y":64,"fileNum":8147,"id":8274,"width":32,"height":32},{"x":64,"y":64,"fileNum":8147,"id":8275,"width":32,"height":32},{"x":96,"y":64,"fileNum":8147,"id":8276,"width":32,"height":32},{"x":0,"y":96,"fileNum":8147,"id":8277,"width":32,"height":32},{"x":32,"y":96,"fileNum":8147,"id":8278,"width":32,"height":32},{"x":64,"y":96,"fileNum":8147,"id":8279,"width":32,"height":32},{"x":96,"y":96,"fileNum":8147,"id":8280,"width":32,"height":32},{"x":0,"y":0,"fileNum":8148,"id":8281,"width":32,"height":32},{"x":32,"y":0,"fileNum":8148,"id":8282,"width":32,"height":32},{"x":64,"y":0,"fileNum":8148,"id":8283,"width":32,"height":32},{"x":96,"y":0,"fileNum":8148,"id":8284,"width":32,"height":32},{"x":0,"y":32,"fileNum":8148,"id":8285,"width":32,"height":32},{"x":32,"y":32,"fileNum":8148,"id":8286,"width":32,"height":32},{"x":64,"y":32,"fileNum":8148,"id":8287,"width":32,"height":32},{"x":96,"y":32,"fileNum":8148,"id":8288,"width":32,"height":32},{"x":0,"y":64,"fileNum":8148,"id":8289,"width":32,"height":32},{"x":32,"y":64,"fileNum":8148,"id":8290,"width":32,"height":32},{"x":64,"y":64,"fileNum":8148,"id":8291,"width":32,"height":32},{"x":96,"y":64,"fileNum":8148,"id":8292,"width":32,"height":32},{"x":0,"y":96,"fileNum":8148,"id":8293,"width":32,"height":32},{"x":32,"y":96,"fileNum":8148,"id":8294,"width":32,"height":32},{"x":64,"y":96,"fileNum":8148,"id":8295,"width":32,"height":32},{"x":96,"y":96,"fileNum":8148,"id":8296,"width":32,"height":32},{"x":0,"y":0,"fileNum":8149,"id":8297,"width":32,"height":32},{"x":32,"y":0,"fileNum":8149,"id":8298,"width":32,"height":32},{"x":64,"y":0,"fileNum":8149,"id":8299,"width":32,"height":32},{"x":96,"y":0,"fileNum":8149,"id":8300,"width":32,"height":32},{"x":0,"y":32,"fileNum":8149,"id":8301,"width":32,"height":32},{"x":32,"y":32,"fileNum":8149,"id":8302,"width":32,"height":32},{"x":64,"y":32,"fileNum":8149,"id":8303,"width":32,"height":32},{"x":96,"y":32,"fileNum":8149,"id":8304,"width":32,"height":32},{"x":0,"y":64,"fileNum":8149,"id":8305,"width":32,"height":32},{"x":32,"y":64,"fileNum":8149,"id":8306,"width":32,"height":32},{"x":64,"y":64,"fileNum":8149,"id":8307,"width":32,"height":32},{"x":96,"y":64,"fileNum":8149,"id":8308,"width":32,"height":32},{"x":0,"y":96,"fileNum":8149,"id":8309,"width":32,"height":32},{"x":32,"y":96,"fileNum":8149,"id":8310,"width":32,"height":32},{"x":64,"y":96,"fileNum":8149,"id":8311,"width":32,"height":32},{"x":96,"y":96,"fileNum":8149,"id":8312,"width":32,"height":32},{"x":0,"y":0,"fileNum":8150,"id":8313,"width":32,"height":32},{"x":32,"y":0,"fileNum":8150,"id":8314,"width":32,"height":32},{"x":64,"y":0,"fileNum":8150,"id":8315,"width":32,"height":32},{"x":96,"y":0,"fileNum":8150,"id":8316,"width":32,"height":32},{"x":0,"y":32,"fileNum":8150,"id":8317,"width":32,"height":32},{"x":32,"y":32,"fileNum":8150,"id":8318,"width":32,"height":32},{"x":64,"y":32,"fileNum":8150,"id":8319,"width":32,"height":32},{"x":96,"y":32,"fileNum":8150,"id":8320,"width":32,"height":32},{"x":0,"y":64,"fileNum":8150,"id":8321,"width":32,"height":32},{"x":32,"y":64,"fileNum":8150,"id":8322,"width":32,"height":32},{"x":64,"y":64,"fileNum":8150,"id":8323,"width":32,"height":32},{"x":96,"y":64,"fileNum":8150,"id":8324,"width":32,"height":32},{"x":0,"y":96,"fileNum":8150,"id":8325,"width":32,"height":32},{"x":32,"y":96,"fileNum":8150,"id":8326,"width":32,"height":32},{"x":64,"y":96,"fileNum":8150,"id":8327,"width":32,"height":32},{"x":96,"y":96,"fileNum":8150,"id":8328,"width":32,"height":32},{"x":0,"y":0,"fileNum":8151,"id":8329,"width":32,"height":32},{"x":32,"y":0,"fileNum":8151,"id":8330,"width":32,"height":32},{"x":64,"y":0,"fileNum":8151,"id":8331,"width":32,"height":32},{"x":96,"y":0,"fileNum":8151,"id":8332,"width":32,"height":32},{"x":0,"y":32,"fileNum":8151,"id":8333,"width":32,"height":32},{"x":32,"y":32,"fileNum":8151,"id":8334,"width":32,"height":32},{"x":64,"y":32,"fileNum":8151,"id":8335,"width":32,"height":32},{"x":96,"y":32,"fileNum":8151,"id":8336,"width":32,"height":32},{"x":0,"y":64,"fileNum":8151,"id":8337,"width":32,"height":32},{"x":32,"y":64,"fileNum":8151,"id":8338,"width":32,"height":32},{"x":64,"y":64,"fileNum":8151,"id":8339,"width":32,"height":32},{"x":96,"y":64,"fileNum":8151,"id":8340,"width":32,"height":32},{"x":0,"y":96,"fileNum":8151,"id":8341,"width":32,"height":32},{"x":32,"y":96,"fileNum":8151,"id":8342,"width":32,"height":32},{"x":64,"y":96,"fileNum":8151,"id":8343,"width":32,"height":32},{"x":96,"y":96,"fileNum":8151,"id":8344,"width":32,"height":32},{"x":0,"y":0,"fileNum":8152,"id":8345,"width":32,"height":32},{"x":32,"y":0,"fileNum":8152,"id":8346,"width":32,"height":32},{"x":64,"y":0,"fileNum":8152,"id":8347,"width":32,"height":32},{"x":96,"y":0,"fileNum":8152,"id":8348,"width":32,"height":32},{"x":0,"y":32,"fileNum":8152,"id":8349,"width":32,"height":32},{"x":32,"y":32,"fileNum":8152,"id":8350,"width":32,"height":32},{"x":64,"y":32,"fileNum":8152,"id":8351,"width":32,"height":32},{"x":96,"y":32,"fileNum":8152,"id":8352,"width":32,"height":32},{"x":0,"y":64,"fileNum":8152,"id":8353,"width":32,"height":32},{"x":32,"y":64,"fileNum":8152,"id":8354,"width":32,"height":32},{"x":64,"y":64,"fileNum":8152,"id":8355,"width":32,"height":32},{"x":96,"y":64,"fileNum":8152,"id":8356,"width":32,"height":32},{"x":0,"y":96,"fileNum":8152,"id":8357,"width":32,"height":32},{"x":32,"y":96,"fileNum":8152,"id":8358,"width":32,"height":32},{"x":64,"y":96,"fileNum":8152,"id":8359,"width":32,"height":32},{"x":96,"y":96,"fileNum":8152,"id":8360,"width":32,"height":32},{"x":0,"y":0,"fileNum":8153,"id":8361,"width":32,"height":32},{"x":32,"y":0,"fileNum":8153,"id":8362,"width":32,"height":32},{"x":64,"y":0,"fileNum":8153,"id":8363,"width":32,"height":32},{"x":96,"y":0,"fileNum":8153,"id":8364,"width":32,"height":32},{"x":0,"y":32,"fileNum":8153,"id":8365,"width":32,"height":32},{"x":32,"y":32,"fileNum":8153,"id":8366,"width":32,"height":32},{"x":64,"y":32,"fileNum":8153,"id":8367,"width":32,"height":32},{"x":96,"y":32,"fileNum":8153,"id":8368,"width":32,"height":32},{"x":0,"y":64,"fileNum":8153,"id":8369,"width":32,"height":32},{"x":32,"y":64,"fileNum":8153,"id":8370,"width":32,"height":32},{"x":64,"y":64,"fileNum":8153,"id":8371,"width":32,"height":32},{"x":96,"y":64,"fileNum":8153,"id":8372,"width":32,"height":32},{"x":0,"y":96,"fileNum":8153,"id":8373,"width":32,"height":32},{"x":32,"y":96,"fileNum":8153,"id":8374,"width":32,"height":32},{"x":64,"y":96,"fileNum":8153,"id":8375,"width":32,"height":32},{"x":96,"y":96,"fileNum":8153,"id":8376,"width":32,"height":32},{"x":0,"y":0,"fileNum":8154,"id":8377,"width":32,"height":32},{"x":32,"y":0,"fileNum":8154,"id":8378,"width":32,"height":32},{"x":64,"y":0,"fileNum":8154,"id":8379,"width":32,"height":32},{"x":96,"y":0,"fileNum":8154,"id":8380,"width":32,"height":32},{"x":0,"y":32,"fileNum":8154,"id":8381,"width":32,"height":32},{"x":32,"y":32,"fileNum":8154,"id":8382,"width":32,"height":32},{"x":64,"y":32,"fileNum":8154,"id":8383,"width":32,"height":32},{"x":96,"y":32,"fileNum":8154,"id":8384,"width":32,"height":32},{"x":0,"y":64,"fileNum":8154,"id":8385,"width":32,"height":32},{"x":32,"y":64,"fileNum":8154,"id":8386,"width":32,"height":32},{"x":64,"y":64,"fileNum":8154,"id":8387,"width":32,"height":32},{"x":96,"y":64,"fileNum":8154,"id":8388,"width":32,"height":32},{"x":0,"y":96,"fileNum":8154,"id":8389,"width":32,"height":32},{"x":32,"y":96,"fileNum":8154,"id":8390,"width":32,"height":32},{"x":64,"y":96,"fileNum":8154,"id":8391,"width":32,"height":32},{"x":96,"y":96,"fileNum":8154,"id":8392,"width":32,"height":32},{"x":0,"y":0,"fileNum":8155,"id":8393,"width":32,"height":32},{"x":32,"y":0,"fileNum":8155,"id":8394,"width":32,"height":32},{"x":64,"y":0,"fileNum":8155,"id":8395,"width":32,"height":32},{"x":96,"y":0,"fileNum":8155,"id":8396,"width":32,"height":32},{"x":0,"y":32,"fileNum":8155,"id":8397,"width":32,"height":32},{"x":32,"y":32,"fileNum":8155,"id":8398,"width":32,"height":32},{"x":64,"y":32,"fileNum":8155,"id":8399,"width":32,"height":32},{"x":96,"y":32,"fileNum":8155,"id":8400,"width":32,"height":32},{"x":0,"y":64,"fileNum":8155,"id":8401,"width":32,"height":32},{"x":32,"y":64,"fileNum":8155,"id":8402,"width":32,"height":32},{"x":64,"y":64,"fileNum":8155,"id":8403,"width":32,"height":32},{"x":96,"y":64,"fileNum":8155,"id":8404,"width":32,"height":32},{"x":0,"y":96,"fileNum":8155,"id":8405,"width":32,"height":32},{"x":32,"y":96,"fileNum":8155,"id":8406,"width":32,"height":32},{"x":64,"y":96,"fileNum":8155,"id":8407,"width":32,"height":32},{"x":96,"y":96,"fileNum":8155,"id":8408,"width":32,"height":32},{"x":0,"y":0,"fileNum":8156,"id":8409,"width":32,"height":32},{"x":32,"y":0,"fileNum":8156,"id":8410,"width":32,"height":32},{"x":64,"y":0,"fileNum":8156,"id":8411,"width":32,"height":32},{"x":96,"y":0,"fileNum":8156,"id":8412,"width":32,"height":32},{"x":0,"y":32,"fileNum":8156,"id":8413,"width":32,"height":32},{"x":32,"y":32,"fileNum":8156,"id":8414,"width":32,"height":32},{"x":64,"y":32,"fileNum":8156,"id":8415,"width":32,"height":32},{"x":96,"y":32,"fileNum":8156,"id":8416,"width":32,"height":32},{"x":0,"y":64,"fileNum":8156,"id":8417,"width":32,"height":32},{"x":32,"y":64,"fileNum":8156,"id":8418,"width":32,"height":32},{"x":64,"y":64,"fileNum":8156,"id":8419,"width":32,"height":32},{"x":96,"y":64,"fileNum":8156,"id":8420,"width":32,"height":32},{"x":0,"y":96,"fileNum":8156,"id":8421,"width":32,"height":32},{"x":32,"y":96,"fileNum":8156,"id":8422,"width":32,"height":32},{"x":64,"y":96,"fileNum":8156,"id":8423,"width":32,"height":32},{"x":96,"y":96,"fileNum":8156,"id":8424,"width":32,"height":32},{"x":0,"y":0,"fileNum":8157,"id":8425,"width":32,"height":32},{"x":32,"y":0,"fileNum":8157,"id":8426,"width":32,"height":32},{"x":64,"y":0,"fileNum":8157,"id":8427,"width":32,"height":32},{"x":96,"y":0,"fileNum":8157,"id":8428,"width":32,"height":32},{"x":0,"y":32,"fileNum":8157,"id":8429,"width":32,"height":32},{"x":32,"y":32,"fileNum":8157,"id":8430,"width":32,"height":32},{"x":64,"y":32,"fileNum":8157,"id":8431,"width":32,"height":32},{"x":96,"y":32,"fileNum":8157,"id":8432,"width":32,"height":32},{"x":0,"y":64,"fileNum":8157,"id":8433,"width":32,"height":32},{"x":32,"y":64,"fileNum":8157,"id":8434,"width":32,"height":32},{"x":64,"y":64,"fileNum":8157,"id":8435,"width":32,"height":32},{"x":96,"y":64,"fileNum":8157,"id":8436,"width":32,"height":32},{"x":0,"y":96,"fileNum":8157,"id":8437,"width":32,"height":32},{"x":32,"y":96,"fileNum":8157,"id":8438,"width":32,"height":32},{"x":64,"y":96,"fileNum":8157,"id":8439,"width":32,"height":32},{"x":96,"y":96,"fileNum":8157,"id":8440,"width":32,"height":32},{"x":0,"y":0,"fileNum":8158,"id":8441,"width":32,"height":32},{"x":32,"y":0,"fileNum":8158,"id":8442,"width":32,"height":32},{"x":64,"y":0,"fileNum":8158,"id":8443,"width":32,"height":32},{"x":96,"y":0,"fileNum":8158,"id":8444,"width":32,"height":32},{"x":0,"y":32,"fileNum":8158,"id":8445,"width":32,"height":32},{"x":32,"y":32,"fileNum":8158,"id":8446,"width":32,"height":32},{"x":64,"y":32,"fileNum":8158,"id":8447,"width":32,"height":32},{"x":96,"y":32,"fileNum":8158,"id":8448,"width":32,"height":32},{"x":0,"y":64,"fileNum":8158,"id":8449,"width":32,"height":32},{"x":32,"y":64,"fileNum":8158,"id":8450,"width":32,"height":32},{"x":64,"y":64,"fileNum":8158,"id":8451,"width":32,"height":32},{"x":96,"y":64,"fileNum":8158,"id":8452,"width":32,"height":32},{"x":0,"y":96,"fileNum":8158,"id":8453,"width":32,"height":32},{"x":32,"y":96,"fileNum":8158,"id":8454,"width":32,"height":32},{"x":64,"y":96,"fileNum":8158,"id":8455,"width":32,"height":32},{"x":96,"y":96,"fileNum":8158,"id":8456,"width":32,"height":32},{"x":0,"y":0,"fileNum":8159,"id":8457,"width":32,"height":47},{"x":32,"y":0,"fileNum":8159,"id":8458,"width":32,"height":47},{"x":64,"y":0,"fileNum":8159,"id":8459,"width":32,"height":47},{"x":96,"y":0,"fileNum":8159,"id":8460,"width":32,"height":47},{"x":0,"y":47,"fileNum":8159,"id":8461,"width":32,"height":47},{"x":32,"y":47,"fileNum":8159,"id":8462,"width":32,"height":47},{"x":64,"y":47,"fileNum":8159,"id":8463,"width":32,"height":47},{"x":96,"y":47,"fileNum":8159,"id":8464,"width":32,"height":47},{"x":0,"y":94,"fileNum":8159,"id":8465,"width":32,"height":47},{"x":32,"y":94,"fileNum":8159,"id":8466,"width":32,"height":47},{"x":64,"y":94,"fileNum":8159,"id":8467,"width":32,"height":47},{"x":96,"y":94,"fileNum":8159,"id":8468,"width":32,"height":47},{"x":0,"y":141,"fileNum":8159,"id":8469,"width":32,"height":47},{"x":32,"y":141,"fileNum":8159,"id":8470,"width":32,"height":47},{"x":64,"y":141,"fileNum":8159,"id":8471,"width":32,"height":47},{"x":96,"y":141,"fileNum":8159,"id":8472,"width":32,"height":47},{"x":0,"y":0,"fileNum":8160,"id":8473,"width":32,"height":32},{"x":32,"y":0,"fileNum":8160,"id":8474,"width":32,"height":32},{"x":64,"y":0,"fileNum":8160,"id":8475,"width":32,"height":32},{"x":96,"y":0,"fileNum":8160,"id":8476,"width":32,"height":32},{"x":0,"y":32,"fileNum":8160,"id":8477,"width":32,"height":32},{"x":32,"y":32,"fileNum":8160,"id":8478,"width":32,"height":32},{"x":64,"y":32,"fileNum":8160,"id":8479,"width":32,"height":32},{"x":96,"y":32,"fileNum":8160,"id":8480,"width":32,"height":32},{"x":0,"y":64,"fileNum":8160,"id":8481,"width":32,"height":32},{"x":32,"y":64,"fileNum":8160,"id":8482,"width":32,"height":32},{"x":64,"y":64,"fileNum":8160,"id":8483,"width":32,"height":32},{"x":96,"y":64,"fileNum":8160,"id":8484,"width":32,"height":32},{"x":0,"y":96,"fileNum":8160,"id":8485,"width":32,"height":32},{"x":32,"y":96,"fileNum":8160,"id":8486,"width":32,"height":32},{"x":64,"y":96,"fileNum":8160,"id":8487,"width":32,"height":32},{"x":96,"y":96,"fileNum":8160,"id":8488,"width":32,"height":32},{"x":0,"y":0,"fileNum":8161,"id":8489,"width":32,"height":32},{"x":32,"y":0,"fileNum":8161,"id":8490,"width":32,"height":32},{"x":64,"y":0,"fileNum":8161,"id":8491,"width":32,"height":32},{"x":96,"y":0,"fileNum":8161,"id":8492,"width":32,"height":32},{"x":0,"y":32,"fileNum":8161,"id":8493,"width":32,"height":32},{"x":32,"y":32,"fileNum":8161,"id":8494,"width":32,"height":32},{"x":64,"y":32,"fileNum":8161,"id":8495,"width":32,"height":32},{"x":96,"y":32,"fileNum":8161,"id":8496,"width":32,"height":32},{"x":0,"y":64,"fileNum":8161,"id":8497,"width":32,"height":32},{"x":32,"y":64,"fileNum":8161,"id":8498,"width":32,"height":32},{"x":64,"y":64,"fileNum":8161,"id":8499,"width":32,"height":32},{"x":96,"y":64,"fileNum":8161,"id":8500,"width":32,"height":32},{"x":0,"y":96,"fileNum":8161,"id":8501,"width":32,"height":32},{"x":32,"y":96,"fileNum":8161,"id":8502,"width":32,"height":32},{"x":64,"y":96,"fileNum":8161,"id":8503,"width":32,"height":32},{"x":96,"y":96,"fileNum":8161,"id":8504,"width":32,"height":32},{"x":0,"y":0,"fileNum":8162,"id":8505,"width":32,"height":32},{"x":32,"y":0,"fileNum":8162,"id":8506,"width":32,"height":32},{"x":64,"y":0,"fileNum":8162,"id":8507,"width":32,"height":32},{"x":96,"y":0,"fileNum":8162,"id":8508,"width":32,"height":32},{"x":0,"y":32,"fileNum":8162,"id":8509,"width":32,"height":32},{"x":32,"y":32,"fileNum":8162,"id":8510,"width":32,"height":32},{"x":64,"y":32,"fileNum":8162,"id":8511,"width":32,"height":32},{"x":96,"y":32,"fileNum":8162,"id":8512,"width":32,"height":32},{"x":0,"y":64,"fileNum":8162,"id":8513,"width":32,"height":32},{"x":32,"y":64,"fileNum":8162,"id":8514,"width":32,"height":32},{"x":64,"y":64,"fileNum":8162,"id":8515,"width":32,"height":32},{"x":96,"y":64,"fileNum":8162,"id":8516,"width":32,"height":32},{"x":0,"y":96,"fileNum":8162,"id":8517,"width":32,"height":32},{"x":32,"y":96,"fileNum":8162,"id":8518,"width":32,"height":32},{"x":64,"y":96,"fileNum":8162,"id":8519,"width":32,"height":32},{"x":96,"y":96,"fileNum":8162,"id":8520,"width":32,"height":32},{"x":0,"y":0,"fileNum":4039,"id":8521,"width":57,"height":48},{"x":57,"y":0,"fileNum":4039,"id":8522,"width":57,"height":48},{"x":114,"y":0,"fileNum":4039,"id":8523,"width":57,"height":48},{"x":171,"y":0,"fileNum":4039,"id":8524,"width":57,"height":48},{"x":228,"y":0,"fileNum":4039,"id":8525,"width":57,"height":48},{"x":285,"y":0,"fileNum":4039,"id":8526,"width":57,"height":48},{"x":342,"y":0,"fileNum":4039,"id":8527,"width":57,"height":48},{"x":0,"y":48,"fileNum":4039,"id":8528,"width":57,"height":48},{"x":57,"y":48,"fileNum":4039,"id":8529,"width":57,"height":48},{"x":114,"y":48,"fileNum":4039,"id":8530,"width":57,"height":48},{"x":171,"y":48,"fileNum":4039,"id":8531,"width":57,"height":48},{"x":228,"y":48,"fileNum":4039,"id":8532,"width":57,"height":48},{"x":285,"y":48,"fileNum":4039,"id":8533,"width":57,"height":48},{"x":342,"y":48,"fileNum":4039,"id":8534,"width":57,"height":48},{"x":0,"y":96,"fileNum":4039,"id":8535,"width":57,"height":48},{"x":57,"y":96,"fileNum":4039,"id":8536,"width":57,"height":48},{"x":114,"y":96,"fileNum":4039,"id":8537,"width":57,"height":48},{"x":171,"y":96,"fileNum":4039,"id":8538,"width":57,"height":48},{"x":228,"y":96,"fileNum":4039,"id":8539,"width":57,"height":48},{"x":285,"y":96,"fileNum":4039,"id":8540,"width":57,"height":48},{"x":342,"y":96,"fileNum":4039,"id":8541,"width":57,"height":48},{"x":0,"y":144,"fileNum":4039,"id":8542,"width":57,"height":48},{"x":57,"y":144,"fileNum":4039,"id":8543,"width":57,"height":48},{"x":114,"y":144,"fileNum":4039,"id":8544,"width":57,"height":48},{"x":171,"y":144,"fileNum":4039,"id":8545,"width":57,"height":48},{"x":228,"y":144,"fileNum":4039,"id":8546,"width":57,"height":48},{"x":285,"y":144,"fileNum":4039,"id":8547,"width":57,"height":48},{"x":342,"y":144,"fileNum":4039,"id":8548,"width":57,"height":48},{"x":0,"y":0,"fileNum":4051,"id":8556,"width":89,"height":60},{"x":89,"y":0,"fileNum":4051,"id":8557,"width":89,"height":60},{"x":178,"y":0,"fileNum":4051,"id":8558,"width":89,"height":60},{"x":267,"y":0,"fileNum":4051,"id":8559,"width":89,"height":60},{"x":356,"y":0,"fileNum":4051,"id":8560,"width":89,"height":60},{"x":0,"y":60,"fileNum":4051,"id":8562,"width":89,"height":60},{"x":89,"y":60,"fileNum":4051,"id":8563,"width":89,"height":60},{"x":178,"y":60,"fileNum":4051,"id":8564,"width":89,"height":60},{"x":267,"y":60,"fileNum":4051,"id":8565,"width":89,"height":60},{"x":356,"y":60,"fileNum":4051,"id":8566,"width":89,"height":60},{"x":0,"y":120,"fileNum":4051,"id":8568,"width":89,"height":60},{"x":89,"y":120,"fileNum":4051,"id":8569,"width":89,"height":60},{"x":178,"y":120,"fileNum":4051,"id":8570,"width":89,"height":60},{"x":267,"y":120,"fileNum":4051,"id":8571,"width":89,"height":60},{"x":356,"y":120,"fileNum":4051,"id":8572,"width":89,"height":60},{"x":0,"y":180,"fileNum":4051,"id":8574,"width":89,"height":60},{"x":89,"y":180,"fileNum":4051,"id":8575,"width":89,"height":60},{"x":178,"y":180,"fileNum":4051,"id":8576,"width":89,"height":60},{"x":267,"y":180,"fileNum":4051,"id":8577,"width":89,"height":60},{"x":356,"y":180,"fileNum":4051,"id":8578,"width":89,"height":60},{"x":0,"y":0,"fileNum":4052,"id":8583,"width":50,"height":50},{"x":50,"y":0,"fileNum":4052,"id":8584,"width":50,"height":50},{"x":100,"y":0,"fileNum":4052,"id":8585,"width":50,"height":50},{"x":0,"y":50,"fileNum":4052,"id":8587,"width":50,"height":50},{"x":50,"y":50,"fileNum":4052,"id":8588,"width":50,"height":50},{"x":100,"y":50,"fileNum":4052,"id":8589,"width":50,"height":50},{"x":0,"y":100,"fileNum":4052,"id":8591,"width":50,"height":50},{"x":50,"y":100,"fileNum":4052,"id":8592,"width":50,"height":50},{"x":100,"y":100,"fileNum":4052,"id":8593,"width":50,"height":50},{"x":0,"y":150,"fileNum":4052,"id":8595,"width":50,"height":50},{"x":50,"y":150,"fileNum":4052,"id":8596,"width":50,"height":50},{"x":100,"y":150,"fileNum":4052,"id":8597,"width":50,"height":50},{"x":0,"y":0,"fileNum":2170,"id":8602,"width":17,"height":50},{"x":17,"y":0,"fileNum":2170,"id":8603,"width":17,"height":50},{"x":34,"y":0,"fileNum":2170,"id":8604,"width":17,"height":50},{"x":51,"y":0,"fileNum":2170,"id":8605,"width":17,"height":50},{"x":0,"y":0,"fileNum":15181,"id":8608,"width":64,"height":64},{"x":64,"y":0,"fileNum":15181,"id":8609,"width":64,"height":64},{"x":128,"y":0,"fileNum":15181,"id":8610,"width":32,"height":32},{"x":128,"y":32,"fileNum":15181,"id":8611,"width":32,"height":32},{"x":0,"y":0,"fileNum":15183,"id":8612,"width":64,"height":64},{"x":64,"y":0,"fileNum":15183,"id":8613,"width":64,"height":64},{"x":128,"y":0,"fileNum":15183,"id":8614,"width":32,"height":32},{"x":128,"y":32,"fileNum":15183,"id":8615,"width":32,"height":32},{"x":0,"y":0,"fileNum":15182,"id":8616,"width":64,"height":64},{"x":64,"y":0,"fileNum":15182,"id":8617,"width":64,"height":64},{"x":128,"y":0,"fileNum":15182,"id":8618,"width":32,"height":32},{"x":128,"y":32,"fileNum":15182,"id":8619,"width":32,"height":32},{"x":0,"y":0,"fileNum":11036,"id":8620,"width":32,"height":32},{"x":32,"y":0,"fileNum":11036,"id":8621,"width":32,"height":32},{"x":64,"y":0,"fileNum":11036,"id":8622,"width":32,"height":32},{"x":0,"y":32,"fileNum":11036,"id":8623,"width":32,"height":32},{"x":32,"y":32,"fileNum":11036,"id":8624,"width":32,"height":32},{"x":64,"y":32,"fileNum":11036,"id":8625,"width":32,"height":32},{"x":0,"y":64,"fileNum":11036,"id":8626,"width":32,"height":32},{"x":32,"y":64,"fileNum":11036,"id":8627,"width":32,"height":32},{"x":64,"y":64,"fileNum":11036,"id":8628,"width":32,"height":32},{"x":0,"y":0,"fileNum":12080,"id":8629,"width":32,"height":32},{"x":32,"y":0,"fileNum":12080,"id":8630,"width":32,"height":32},{"x":0,"y":32,"fileNum":12080,"id":8631,"width":32,"height":32},{"x":32,"y":32,"fileNum":12080,"id":8632,"width":32,"height":32},{"x":0,"y":0,"fileNum":12081,"id":8633,"width":32,"height":32},{"x":32,"y":0,"fileNum":12081,"id":8634,"width":32,"height":32},{"x":0,"y":32,"fileNum":12081,"id":8635,"width":32,"height":32},{"x":32,"y":32,"fileNum":12081,"id":8636,"width":32,"height":32},{"x":0,"y":0,"fileNum":11038,"id":8637,"width":32,"height":32},{"x":0,"y":0,"fileNum":11039,"id":8638,"width":32,"height":32},{"x":32,"y":0,"fileNum":11039,"id":8639,"width":32,"height":32},{"x":64,"y":0,"fileNum":11039,"id":8640,"width":32,"height":32},{"x":0,"y":32,"fileNum":11039,"id":8641,"width":32,"height":32},{"x":32,"y":32,"fileNum":11039,"id":8642,"width":32,"height":32},{"x":64,"y":32,"fileNum":11039,"id":8643,"width":32,"height":32},{"x":0,"y":64,"fileNum":11039,"id":8644,"width":32,"height":32},{"x":32,"y":64,"fileNum":11039,"id":8645,"width":32,"height":32},{"x":64,"y":64,"fileNum":11039,"id":8646,"width":32,"height":32},{"x":0,"y":0,"fileNum":11040,"id":8647,"width":32,"height":32},{"x":32,"y":0,"fileNum":11040,"id":8648,"width":32,"height":32},{"x":64,"y":0,"fileNum":11040,"id":8649,"width":32,"height":32},{"x":0,"y":32,"fileNum":11040,"id":8650,"width":32,"height":32},{"x":32,"y":32,"fileNum":11040,"id":8651,"width":32,"height":32},{"x":64,"y":32,"fileNum":11040,"id":8652,"width":32,"height":32},{"x":0,"y":64,"fileNum":11040,"id":8653,"width":32,"height":32},{"x":32,"y":64,"fileNum":11040,"id":8654,"width":32,"height":32},{"x":64,"y":64,"fileNum":11040,"id":8655,"width":32,"height":32},{"x":0,"y":0,"fileNum":11041,"id":8656,"width":32,"height":32},{"x":32,"y":0,"fileNum":11041,"id":8657,"width":32,"height":32},{"x":64,"y":0,"fileNum":11041,"id":8658,"width":32,"height":32},{"x":0,"y":32,"fileNum":11041,"id":8659,"width":32,"height":32},{"x":32,"y":32,"fileNum":11041,"id":8660,"width":32,"height":32},{"x":64,"y":32,"fileNum":11041,"id":8661,"width":32,"height":32},{"x":0,"y":64,"fileNum":11041,"id":8662,"width":32,"height":32},{"x":32,"y":64,"fileNum":11041,"id":8663,"width":32,"height":32},{"x":64,"y":64,"fileNum":11041,"id":8664,"width":32,"height":32},{"x":0,"y":0,"fileNum":11042,"id":8665,"width":32,"height":32},{"x":32,"y":0,"fileNum":11042,"id":8666,"width":32,"height":32},{"x":64,"y":0,"fileNum":11042,"id":8667,"width":32,"height":32},{"x":0,"y":32,"fileNum":11042,"id":8668,"width":32,"height":32},{"x":32,"y":32,"fileNum":11042,"id":8669,"width":32,"height":32},{"x":64,"y":32,"fileNum":11042,"id":8670,"width":32,"height":32},{"x":0,"y":64,"fileNum":11042,"id":8671,"width":32,"height":32},{"x":32,"y":64,"fileNum":11042,"id":8672,"width":32,"height":32},{"x":64,"y":64,"fileNum":11042,"id":8673,"width":32,"height":32},{"x":0,"y":0,"fileNum":11043,"id":8674,"width":32,"height":32},{"x":32,"y":0,"fileNum":11043,"id":8675,"width":32,"height":32},{"x":64,"y":0,"fileNum":11043,"id":8676,"width":32,"height":32},{"x":0,"y":32,"fileNum":11043,"id":8677,"width":32,"height":32},{"x":32,"y":32,"fileNum":11043,"id":8678,"width":32,"height":32},{"x":64,"y":32,"fileNum":11043,"id":8679,"width":32,"height":32},{"x":0,"y":64,"fileNum":11043,"id":8680,"width":32,"height":32},{"x":32,"y":64,"fileNum":11043,"id":8681,"width":32,"height":32},{"x":64,"y":64,"fileNum":11043,"id":8682,"width":32,"height":32},{"x":0,"y":0,"fileNum":11037,"id":8684,"width":96,"height":96},{"x":96,"y":0,"fileNum":11037,"id":8685,"width":96,"height":96},{"x":0,"y":0,"fileNum":12040,"id":8686,"width":32,"height":32},{"x":32,"y":0,"fileNum":12040,"id":8687,"width":32,"height":32},{"x":0,"y":32,"fileNum":12040,"id":8688,"width":32,"height":32},{"x":32,"y":32,"fileNum":12040,"id":8689,"width":32,"height":32},{"x":64,"y":0,"fileNum":12040,"id":8690,"width":32,"height":32},{"x":96,"y":0,"fileNum":12040,"id":8691,"width":32,"height":32},{"x":64,"y":32,"fileNum":12040,"id":8692,"width":32,"height":32},{"x":96,"y":32,"fileNum":12040,"id":8693,"width":32,"height":32},{"x":128,"y":0,"fileNum":12040,"id":8694,"width":32,"height":32},{"x":160,"y":0,"fileNum":12040,"id":8695,"width":32,"height":32},{"x":128,"y":32,"fileNum":12040,"id":8696,"width":32,"height":32},{"x":160,"y":32,"fileNum":12040,"id":8697,"width":32,"height":32},{"x":192,"y":0,"fileNum":12040,"id":8698,"width":32,"height":32},{"x":224,"y":0,"fileNum":12040,"id":8699,"width":32,"height":32},{"x":192,"y":32,"fileNum":12040,"id":8700,"width":32,"height":32},{"x":224,"y":32,"fileNum":12040,"id":8701,"width":32,"height":32},{"x":256,"y":0,"fileNum":12040,"id":8702,"width":32,"height":32},{"x":288,"y":0,"fileNum":12040,"id":8703,"width":32,"height":32},{"x":256,"y":32,"fileNum":12040,"id":8704,"width":32,"height":32},{"x":288,"y":32,"fileNum":12040,"id":8705,"width":32,"height":32},{"x":320,"y":0,"fileNum":12040,"id":8706,"width":32,"height":32},{"x":352,"y":0,"fileNum":12040,"id":8707,"width":32,"height":32},{"x":320,"y":32,"fileNum":12040,"id":8708,"width":32,"height":32},{"x":352,"y":32,"fileNum":12040,"id":8709,"width":32,"height":32},{"x":384,"y":0,"fileNum":12040,"id":8710,"width":32,"height":32},{"x":416,"y":0,"fileNum":12040,"id":8711,"width":32,"height":32},{"x":384,"y":32,"fileNum":12040,"id":8712,"width":32,"height":32},{"x":416,"y":32,"fileNum":12040,"id":8713,"width":32,"height":32},{"x":448,"y":0,"fileNum":12040,"id":8714,"width":32,"height":32},{"x":480,"y":0,"fileNum":12040,"id":8715,"width":32,"height":32},{"x":448,"y":32,"fileNum":12040,"id":8716,"width":32,"height":32},{"x":480,"y":32,"fileNum":12040,"id":8717,"width":32,"height":32},{"x":512,"y":0,"fileNum":12040,"id":8718,"width":32,"height":32},{"x":544,"y":0,"fileNum":12040,"id":8719,"width":32,"height":32},{"x":512,"y":32,"fileNum":12040,"id":8720,"width":32,"height":32},{"x":544,"y":32,"fileNum":12040,"id":8721,"width":32,"height":32},{"x":576,"y":0,"fileNum":12040,"id":8722,"width":32,"height":32},{"x":608,"y":0,"fileNum":12040,"id":8723,"width":32,"height":32},{"x":576,"y":32,"fileNum":12040,"id":8724,"width":32,"height":32},{"x":608,"y":32,"fileNum":12040,"id":8725,"width":32,"height":32},{"x":0,"y":64,"fileNum":12040,"id":8726,"width":32,"height":32},{"x":32,"y":64,"fileNum":12040,"id":8727,"width":32,"height":32},{"x":0,"y":96,"fileNum":12040,"id":8728,"width":32,"height":32},{"x":32,"y":96,"fileNum":12040,"id":8729,"width":32,"height":32},{"x":64,"y":64,"fileNum":12040,"id":8730,"width":32,"height":32},{"x":96,"y":64,"fileNum":12040,"id":8731,"width":32,"height":32},{"x":64,"y":96,"fileNum":12040,"id":8732,"width":32,"height":32},{"x":96,"y":96,"fileNum":12040,"id":8733,"width":32,"height":32},{"x":128,"y":64,"fileNum":12040,"id":8734,"width":32,"height":32},{"x":160,"y":64,"fileNum":12040,"id":8735,"width":32,"height":32},{"x":128,"y":96,"fileNum":12040,"id":8736,"width":32,"height":32},{"x":160,"y":96,"fileNum":12040,"id":8737,"width":32,"height":32},{"x":192,"y":64,"fileNum":12040,"id":8738,"width":32,"height":32},{"x":224,"y":64,"fileNum":12040,"id":8739,"width":32,"height":32},{"x":192,"y":96,"fileNum":12040,"id":8740,"width":32,"height":32},{"x":224,"y":96,"fileNum":12040,"id":8741,"width":32,"height":32},{"x":256,"y":64,"fileNum":12040,"id":8742,"width":32,"height":32},{"x":288,"y":64,"fileNum":12040,"id":8743,"width":32,"height":32},{"x":256,"y":96,"fileNum":12040,"id":8744,"width":32,"height":32},{"x":288,"y":96,"fileNum":12040,"id":8745,"width":32,"height":32},{"x":320,"y":64,"fileNum":12040,"id":8746,"width":32,"height":32},{"x":352,"y":64,"fileNum":12040,"id":8747,"width":32,"height":32},{"x":320,"y":96,"fileNum":12040,"id":8748,"width":32,"height":32},{"x":352,"y":96,"fileNum":12040,"id":8749,"width":32,"height":32},{"x":384,"y":64,"fileNum":12040,"id":8750,"width":32,"height":32},{"x":416,"y":64,"fileNum":12040,"id":8751,"width":32,"height":32},{"x":384,"y":96,"fileNum":12040,"id":8752,"width":32,"height":32},{"x":416,"y":96,"fileNum":12040,"id":8753,"width":32,"height":32},{"x":448,"y":64,"fileNum":12040,"id":8754,"width":32,"height":32},{"x":480,"y":64,"fileNum":12040,"id":8755,"width":32,"height":32},{"x":448,"y":96,"fileNum":12040,"id":8756,"width":32,"height":32},{"x":480,"y":96,"fileNum":12040,"id":8757,"width":32,"height":32},{"x":512,"y":64,"fileNum":12040,"id":8758,"width":32,"height":32},{"x":544,"y":64,"fileNum":12040,"id":8759,"width":32,"height":32},{"x":512,"y":96,"fileNum":12040,"id":8760,"width":32,"height":32},{"x":544,"y":96,"fileNum":12040,"id":8761,"width":32,"height":32},{"x":576,"y":64,"fileNum":12040,"id":8762,"width":32,"height":32},{"x":608,"y":64,"fileNum":12040,"id":8763,"width":32,"height":32},{"x":576,"y":96,"fileNum":12040,"id":8764,"width":32,"height":32},{"x":608,"y":96,"fileNum":12040,"id":8765,"width":32,"height":32},{"x":0,"y":128,"fileNum":12040,"id":8766,"width":32,"height":32},{"x":32,"y":128,"fileNum":12040,"id":8767,"width":32,"height":32},{"x":0,"y":160,"fileNum":12040,"id":8768,"width":32,"height":32},{"x":32,"y":160,"fileNum":12040,"id":8769,"width":32,"height":32},{"x":64,"y":128,"fileNum":12040,"id":8770,"width":32,"height":32},{"x":96,"y":128,"fileNum":12040,"id":8771,"width":32,"height":32},{"x":64,"y":160,"fileNum":12040,"id":8772,"width":32,"height":32},{"x":96,"y":160,"fileNum":12040,"id":8773,"width":32,"height":32},{"x":128,"y":128,"fileNum":12040,"id":8774,"width":32,"height":32},{"x":160,"y":128,"fileNum":12040,"id":8775,"width":32,"height":32},{"x":128,"y":160,"fileNum":12040,"id":8776,"width":32,"height":32},{"x":160,"y":160,"fileNum":12040,"id":8777,"width":32,"height":32},{"x":192,"y":128,"fileNum":12040,"id":8778,"width":32,"height":32},{"x":224,"y":128,"fileNum":12040,"id":8779,"width":32,"height":32},{"x":192,"y":160,"fileNum":12040,"id":8780,"width":32,"height":32},{"x":224,"y":160,"fileNum":12040,"id":8781,"width":32,"height":32},{"x":256,"y":128,"fileNum":12040,"id":8782,"width":32,"height":32},{"x":288,"y":128,"fileNum":12040,"id":8783,"width":32,"height":32},{"x":256,"y":160,"fileNum":12040,"id":8784,"width":32,"height":32},{"x":288,"y":160,"fileNum":12040,"id":8785,"width":32,"height":32},{"x":320,"y":128,"fileNum":12040,"id":8786,"width":32,"height":32},{"x":352,"y":128,"fileNum":12040,"id":8787,"width":32,"height":32},{"x":320,"y":160,"fileNum":12040,"id":8788,"width":32,"height":32},{"x":352,"y":160,"fileNum":12040,"id":8789,"width":32,"height":32},{"x":384,"y":128,"fileNum":12040,"id":8790,"width":32,"height":32},{"x":416,"y":128,"fileNum":12040,"id":8791,"width":32,"height":32},{"x":384,"y":160,"fileNum":12040,"id":8792,"width":32,"height":32},{"x":416,"y":160,"fileNum":12040,"id":8793,"width":32,"height":32},{"x":448,"y":128,"fileNum":12040,"id":8794,"width":32,"height":32},{"x":480,"y":128,"fileNum":12040,"id":8795,"width":32,"height":32},{"x":448,"y":160,"fileNum":12040,"id":8796,"width":32,"height":32},{"x":480,"y":160,"fileNum":12040,"id":8797,"width":32,"height":32},{"x":512,"y":128,"fileNum":12040,"id":8798,"width":32,"height":32},{"x":544,"y":128,"fileNum":12040,"id":8799,"width":32,"height":32},{"x":512,"y":160,"fileNum":12040,"id":8800,"width":32,"height":32},{"x":544,"y":160,"fileNum":12040,"id":8801,"width":32,"height":32},{"x":576,"y":128,"fileNum":12040,"id":8802,"width":32,"height":32},{"x":608,"y":128,"fileNum":12040,"id":8803,"width":32,"height":32},{"x":576,"y":160,"fileNum":12040,"id":8804,"width":32,"height":32},{"x":608,"y":160,"fileNum":12040,"id":8805,"width":32,"height":32},{"x":0,"y":192,"fileNum":12040,"id":8806,"width":32,"height":32},{"x":32,"y":192,"fileNum":12040,"id":8807,"width":32,"height":32},{"x":0,"y":224,"fileNum":12040,"id":8808,"width":32,"height":32},{"x":32,"y":224,"fileNum":12040,"id":8809,"width":32,"height":32},{"x":64,"y":192,"fileNum":12040,"id":8810,"width":32,"height":32},{"x":96,"y":192,"fileNum":12040,"id":8811,"width":32,"height":32},{"x":64,"y":224,"fileNum":12040,"id":8812,"width":32,"height":32},{"x":96,"y":224,"fileNum":12040,"id":8813,"width":32,"height":32},{"x":128,"y":192,"fileNum":12040,"id":8814,"width":32,"height":32},{"x":160,"y":192,"fileNum":12040,"id":8815,"width":32,"height":32},{"x":128,"y":224,"fileNum":12040,"id":8816,"width":32,"height":32},{"x":160,"y":224,"fileNum":12040,"id":8817,"width":32,"height":32},{"x":192,"y":192,"fileNum":12040,"id":8818,"width":32,"height":32},{"x":224,"y":192,"fileNum":12040,"id":8819,"width":32,"height":32},{"x":192,"y":224,"fileNum":12040,"id":8820,"width":32,"height":32},{"x":224,"y":224,"fileNum":12040,"id":8821,"width":32,"height":32},{"x":256,"y":192,"fileNum":12040,"id":8822,"width":32,"height":32},{"x":288,"y":192,"fileNum":12040,"id":8823,"width":32,"height":32},{"x":256,"y":224,"fileNum":12040,"id":8824,"width":32,"height":32},{"x":288,"y":224,"fileNum":12040,"id":8825,"width":32,"height":32},{"x":320,"y":192,"fileNum":12040,"id":8826,"width":32,"height":32},{"x":352,"y":192,"fileNum":12040,"id":8827,"width":32,"height":32},{"x":320,"y":224,"fileNum":12040,"id":8828,"width":32,"height":32},{"x":352,"y":224,"fileNum":12040,"id":8829,"width":32,"height":32},{"x":384,"y":192,"fileNum":12040,"id":8830,"width":32,"height":32},{"x":416,"y":192,"fileNum":12040,"id":8831,"width":32,"height":32},{"x":384,"y":224,"fileNum":12040,"id":8832,"width":32,"height":32},{"x":416,"y":224,"fileNum":12040,"id":8833,"width":32,"height":32},{"x":448,"y":192,"fileNum":12040,"id":8834,"width":32,"height":32},{"x":480,"y":192,"fileNum":12040,"id":8835,"width":32,"height":32},{"x":448,"y":224,"fileNum":12040,"id":8836,"width":32,"height":32},{"x":480,"y":224,"fileNum":12040,"id":8837,"width":32,"height":32},{"x":512,"y":192,"fileNum":12040,"id":8838,"width":32,"height":32},{"x":544,"y":192,"fileNum":12040,"id":8839,"width":32,"height":32},{"x":512,"y":224,"fileNum":12040,"id":8840,"width":32,"height":32},{"x":544,"y":224,"fileNum":12040,"id":8841,"width":32,"height":32},{"x":576,"y":192,"fileNum":12040,"id":8842,"width":32,"height":32},{"x":608,"y":192,"fileNum":12040,"id":8843,"width":32,"height":32},{"x":576,"y":224,"fileNum":12040,"id":8844,"width":32,"height":32},{"x":608,"y":224,"fileNum":12040,"id":8845,"width":32,"height":32},{"x":0,"y":256,"fileNum":12040,"id":8846,"width":32,"height":32},{"x":32,"y":256,"fileNum":12040,"id":8847,"width":32,"height":32},{"x":0,"y":288,"fileNum":12040,"id":8848,"width":32,"height":32},{"x":32,"y":288,"fileNum":12040,"id":8849,"width":32,"height":32},{"x":64,"y":256,"fileNum":12040,"id":8850,"width":32,"height":32},{"x":96,"y":256,"fileNum":12040,"id":8851,"width":32,"height":32},{"x":64,"y":288,"fileNum":12040,"id":8852,"width":32,"height":32},{"x":96,"y":288,"fileNum":12040,"id":8853,"width":32,"height":32},{"x":128,"y":256,"fileNum":12040,"id":8854,"width":32,"height":32},{"x":160,"y":256,"fileNum":12040,"id":8855,"width":32,"height":32},{"x":128,"y":288,"fileNum":12040,"id":8856,"width":32,"height":32},{"x":160,"y":288,"fileNum":12040,"id":8857,"width":32,"height":32},{"x":192,"y":256,"fileNum":12040,"id":8858,"width":32,"height":32},{"x":224,"y":256,"fileNum":12040,"id":8859,"width":32,"height":32},{"x":192,"y":288,"fileNum":12040,"id":8860,"width":32,"height":32},{"x":224,"y":288,"fileNum":12040,"id":8861,"width":32,"height":32},{"x":256,"y":256,"fileNum":12040,"id":8862,"width":32,"height":32},{"x":288,"y":256,"fileNum":12040,"id":8863,"width":32,"height":32},{"x":256,"y":288,"fileNum":12040,"id":8864,"width":32,"height":32},{"x":288,"y":288,"fileNum":12040,"id":8865,"width":32,"height":32},{"x":320,"y":256,"fileNum":12040,"id":8866,"width":32,"height":32},{"x":352,"y":256,"fileNum":12040,"id":8867,"width":32,"height":32},{"x":320,"y":288,"fileNum":12040,"id":8868,"width":32,"height":32},{"x":352,"y":288,"fileNum":12040,"id":8869,"width":32,"height":32},{"x":384,"y":256,"fileNum":12040,"id":8870,"width":32,"height":32},{"x":416,"y":256,"fileNum":12040,"id":8871,"width":32,"height":32},{"x":384,"y":288,"fileNum":12040,"id":8872,"width":32,"height":32},{"x":416,"y":288,"fileNum":12040,"id":8873,"width":32,"height":32},{"x":448,"y":256,"fileNum":12040,"id":8874,"width":32,"height":32},{"x":480,"y":256,"fileNum":12040,"id":8875,"width":32,"height":32},{"x":448,"y":288,"fileNum":12040,"id":8876,"width":32,"height":32},{"x":480,"y":288,"fileNum":12040,"id":8877,"width":32,"height":32},{"x":512,"y":256,"fileNum":12040,"id":8878,"width":32,"height":32},{"x":544,"y":256,"fileNum":12040,"id":8879,"width":32,"height":32},{"x":512,"y":288,"fileNum":12040,"id":8880,"width":32,"height":32},{"x":544,"y":288,"fileNum":12040,"id":8881,"width":32,"height":32},{"x":576,"y":256,"fileNum":12040,"id":8882,"width":32,"height":32},{"x":608,"y":256,"fileNum":12040,"id":8883,"width":32,"height":32},{"x":576,"y":288,"fileNum":12040,"id":8884,"width":32,"height":32},{"x":608,"y":288,"fileNum":12040,"id":8885,"width":32,"height":32},{"x":0,"y":320,"fileNum":12040,"id":8886,"width":32,"height":32},{"x":32,"y":320,"fileNum":12040,"id":8887,"width":32,"height":32},{"x":0,"y":352,"fileNum":12040,"id":8888,"width":32,"height":32},{"x":32,"y":352,"fileNum":12040,"id":8889,"width":32,"height":32},{"x":64,"y":320,"fileNum":12040,"id":8890,"width":32,"height":32},{"x":96,"y":320,"fileNum":12040,"id":8891,"width":32,"height":32},{"x":64,"y":352,"fileNum":12040,"id":8892,"width":32,"height":32},{"x":96,"y":352,"fileNum":12040,"id":8893,"width":32,"height":32},{"x":128,"y":320,"fileNum":12040,"id":8894,"width":32,"height":32},{"x":160,"y":320,"fileNum":12040,"id":8895,"width":32,"height":32},{"x":128,"y":352,"fileNum":12040,"id":8896,"width":32,"height":32},{"x":160,"y":352,"fileNum":12040,"id":8897,"width":32,"height":32},{"x":192,"y":320,"fileNum":12040,"id":8898,"width":32,"height":32},{"x":224,"y":320,"fileNum":12040,"id":8899,"width":32,"height":32},{"x":192,"y":352,"fileNum":12040,"id":8900,"width":32,"height":32},{"x":224,"y":352,"fileNum":12040,"id":8901,"width":32,"height":32},{"x":256,"y":320,"fileNum":12040,"id":8902,"width":32,"height":32},{"x":288,"y":320,"fileNum":12040,"id":8903,"width":32,"height":32},{"x":256,"y":352,"fileNum":12040,"id":8904,"width":32,"height":32},{"x":288,"y":352,"fileNum":12040,"id":8905,"width":32,"height":32},{"x":320,"y":320,"fileNum":12040,"id":8906,"width":32,"height":32},{"x":352,"y":320,"fileNum":12040,"id":8907,"width":32,"height":32},{"x":320,"y":352,"fileNum":12040,"id":8908,"width":32,"height":32},{"x":352,"y":352,"fileNum":12040,"id":8909,"width":32,"height":32},{"x":384,"y":320,"fileNum":12040,"id":8910,"width":32,"height":32},{"x":416,"y":320,"fileNum":12040,"id":8911,"width":32,"height":32},{"x":384,"y":352,"fileNum":12040,"id":8912,"width":32,"height":32},{"x":416,"y":352,"fileNum":12040,"id":8913,"width":32,"height":32},{"x":448,"y":320,"fileNum":12040,"id":8914,"width":32,"height":32},{"x":480,"y":320,"fileNum":12040,"id":8915,"width":32,"height":32},{"x":448,"y":352,"fileNum":12040,"id":8916,"width":32,"height":32},{"x":480,"y":352,"fileNum":12040,"id":8917,"width":32,"height":32},{"x":512,"y":320,"fileNum":12040,"id":8918,"width":32,"height":32},{"x":544,"y":320,"fileNum":12040,"id":8919,"width":32,"height":32},{"x":512,"y":352,"fileNum":12040,"id":8920,"width":32,"height":32},{"x":544,"y":352,"fileNum":12040,"id":8921,"width":32,"height":32},{"x":576,"y":320,"fileNum":12040,"id":8922,"width":32,"height":32},{"x":608,"y":320,"fileNum":12040,"id":8923,"width":32,"height":32},{"x":576,"y":352,"fileNum":12040,"id":8924,"width":32,"height":32},{"x":608,"y":352,"fileNum":12040,"id":8925,"width":32,"height":32},{"x":0,"y":384,"fileNum":12040,"id":8926,"width":32,"height":32},{"x":32,"y":384,"fileNum":12040,"id":8927,"width":32,"height":32},{"x":0,"y":416,"fileNum":12040,"id":8928,"width":32,"height":32},{"x":32,"y":416,"fileNum":12040,"id":8929,"width":32,"height":32},{"x":64,"y":384,"fileNum":12040,"id":8930,"width":32,"height":32},{"x":96,"y":384,"fileNum":12040,"id":8931,"width":32,"height":32},{"x":64,"y":416,"fileNum":12040,"id":8932,"width":32,"height":32},{"x":96,"y":416,"fileNum":12040,"id":8933,"width":32,"height":32},{"x":128,"y":384,"fileNum":12040,"id":8934,"width":32,"height":32},{"x":160,"y":384,"fileNum":12040,"id":8935,"width":32,"height":32},{"x":128,"y":416,"fileNum":12040,"id":8936,"width":32,"height":32},{"x":160,"y":416,"fileNum":12040,"id":8937,"width":32,"height":32},{"x":192,"y":384,"fileNum":12040,"id":8938,"width":32,"height":32},{"x":224,"y":384,"fileNum":12040,"id":8939,"width":32,"height":32},{"x":192,"y":416,"fileNum":12040,"id":8940,"width":32,"height":32},{"x":224,"y":416,"fileNum":12040,"id":8941,"width":32,"height":32},{"x":256,"y":384,"fileNum":12040,"id":8942,"width":32,"height":32},{"x":288,"y":384,"fileNum":12040,"id":8943,"width":32,"height":32},{"x":256,"y":416,"fileNum":12040,"id":8944,"width":32,"height":32},{"x":288,"y":416,"fileNum":12040,"id":8945,"width":32,"height":32},{"x":320,"y":384,"fileNum":12040,"id":8946,"width":32,"height":32},{"x":352,"y":384,"fileNum":12040,"id":8947,"width":32,"height":32},{"x":320,"y":416,"fileNum":12040,"id":8948,"width":32,"height":32},{"x":352,"y":416,"fileNum":12040,"id":8949,"width":32,"height":32},{"x":384,"y":384,"fileNum":12040,"id":8950,"width":32,"height":32},{"x":416,"y":384,"fileNum":12040,"id":8951,"width":32,"height":32},{"x":384,"y":416,"fileNum":12040,"id":8952,"width":32,"height":32},{"x":416,"y":416,"fileNum":12040,"id":8953,"width":32,"height":32},{"x":448,"y":384,"fileNum":12040,"id":8954,"width":32,"height":32},{"x":480,"y":384,"fileNum":12040,"id":8955,"width":32,"height":32},{"x":448,"y":416,"fileNum":12040,"id":8956,"width":32,"height":32},{"x":480,"y":416,"fileNum":12040,"id":8957,"width":32,"height":32},{"x":512,"y":384,"fileNum":12040,"id":8958,"width":32,"height":32},{"x":544,"y":384,"fileNum":12040,"id":8959,"width":32,"height":32},{"x":512,"y":416,"fileNum":12040,"id":8960,"width":32,"height":32},{"x":544,"y":416,"fileNum":12040,"id":8961,"width":32,"height":32},{"x":576,"y":384,"fileNum":12040,"id":8962,"width":32,"height":32},{"x":608,"y":384,"fileNum":12040,"id":8963,"width":32,"height":32},{"x":576,"y":416,"fileNum":12040,"id":8964,"width":32,"height":32},{"x":608,"y":416,"fileNum":12040,"id":8965,"width":32,"height":32},{"x":0,"y":448,"fileNum":12040,"id":8966,"width":32,"height":32},{"x":32,"y":448,"fileNum":12040,"id":8967,"width":32,"height":32},{"x":0,"y":480,"fileNum":12040,"id":8968,"width":32,"height":32},{"x":32,"y":480,"fileNum":12040,"id":8969,"width":32,"height":32},{"x":64,"y":448,"fileNum":12040,"id":8970,"width":32,"height":32},{"x":96,"y":448,"fileNum":12040,"id":8971,"width":32,"height":32},{"x":64,"y":480,"fileNum":12040,"id":8972,"width":32,"height":32},{"x":96,"y":480,"fileNum":12040,"id":8973,"width":32,"height":32},{"x":128,"y":448,"fileNum":12040,"id":8974,"width":32,"height":32},{"x":160,"y":448,"fileNum":12040,"id":8975,"width":32,"height":32},{"x":128,"y":480,"fileNum":12040,"id":8976,"width":32,"height":32},{"x":160,"y":480,"fileNum":12040,"id":8977,"width":32,"height":32},{"x":192,"y":448,"fileNum":12040,"id":8978,"width":32,"height":32},{"x":224,"y":448,"fileNum":12040,"id":8979,"width":32,"height":32},{"x":192,"y":480,"fileNum":12040,"id":8980,"width":32,"height":32},{"x":224,"y":480,"fileNum":12040,"id":8981,"width":32,"height":32},{"x":256,"y":448,"fileNum":12040,"id":8982,"width":32,"height":32},{"x":288,"y":448,"fileNum":12040,"id":8983,"width":32,"height":32},{"x":256,"y":480,"fileNum":12040,"id":8984,"width":32,"height":32},{"x":288,"y":480,"fileNum":12040,"id":8985,"width":32,"height":32},{"x":320,"y":448,"fileNum":12040,"id":8986,"width":32,"height":32},{"x":352,"y":448,"fileNum":12040,"id":8987,"width":32,"height":32},{"x":320,"y":480,"fileNum":12040,"id":8988,"width":32,"height":32},{"x":352,"y":480,"fileNum":12040,"id":8989,"width":32,"height":32},{"x":384,"y":448,"fileNum":12040,"id":8990,"width":32,"height":32},{"x":416,"y":448,"fileNum":12040,"id":8991,"width":32,"height":32},{"x":384,"y":480,"fileNum":12040,"id":8992,"width":32,"height":32},{"x":416,"y":480,"fileNum":12040,"id":8993,"width":32,"height":32},{"x":448,"y":448,"fileNum":12040,"id":8994,"width":32,"height":32},{"x":480,"y":448,"fileNum":12040,"id":8995,"width":32,"height":32},{"x":448,"y":480,"fileNum":12040,"id":8996,"width":32,"height":32},{"x":480,"y":480,"fileNum":12040,"id":8997,"width":32,"height":32},{"x":512,"y":448,"fileNum":12040,"id":8998,"width":32,"height":32},{"x":544,"y":448,"fileNum":12040,"id":8999,"width":32,"height":32},{"x":512,"y":480,"fileNum":12040,"id":9000,"width":32,"height":32},{"x":544,"y":480,"fileNum":12040,"id":9001,"width":32,"height":32},{"x":576,"y":448,"fileNum":12040,"id":9002,"width":32,"height":32},{"x":608,"y":448,"fileNum":12040,"id":9003,"width":32,"height":32},{"x":576,"y":480,"fileNum":12040,"id":9004,"width":32,"height":32},{"x":608,"y":480,"fileNum":12040,"id":9005,"width":32,"height":32},{"x":0,"y":512,"fileNum":12040,"id":9006,"width":32,"height":32},{"x":32,"y":512,"fileNum":12040,"id":9007,"width":32,"height":32},{"x":0,"y":544,"fileNum":12040,"id":9008,"width":32,"height":32},{"x":32,"y":544,"fileNum":12040,"id":9009,"width":32,"height":32},{"x":64,"y":512,"fileNum":12040,"id":9010,"width":32,"height":32},{"x":96,"y":512,"fileNum":12040,"id":9011,"width":32,"height":32},{"x":64,"y":544,"fileNum":12040,"id":9012,"width":32,"height":32},{"x":96,"y":544,"fileNum":12040,"id":9013,"width":32,"height":32},{"x":128,"y":512,"fileNum":12040,"id":9014,"width":32,"height":32},{"x":160,"y":512,"fileNum":12040,"id":9015,"width":32,"height":32},{"x":128,"y":544,"fileNum":12040,"id":9016,"width":32,"height":32},{"x":160,"y":544,"fileNum":12040,"id":9017,"width":32,"height":32},{"x":192,"y":512,"fileNum":12040,"id":9018,"width":32,"height":32},{"x":224,"y":512,"fileNum":12040,"id":9019,"width":32,"height":32},{"x":192,"y":544,"fileNum":12040,"id":9020,"width":32,"height":32},{"x":224,"y":544,"fileNum":12040,"id":9021,"width":32,"height":32},{"x":256,"y":512,"fileNum":12040,"id":9022,"width":32,"height":32},{"x":288,"y":512,"fileNum":12040,"id":9023,"width":32,"height":32},{"x":256,"y":544,"fileNum":12040,"id":9024,"width":32,"height":32},{"x":288,"y":544,"fileNum":12040,"id":9025,"width":32,"height":32},{"x":320,"y":512,"fileNum":12040,"id":9026,"width":32,"height":32},{"x":352,"y":512,"fileNum":12040,"id":9027,"width":32,"height":32},{"x":320,"y":544,"fileNum":12040,"id":9028,"width":32,"height":32},{"x":352,"y":544,"fileNum":12040,"id":9029,"width":32,"height":32},{"x":384,"y":512,"fileNum":12040,"id":9030,"width":32,"height":32},{"x":416,"y":512,"fileNum":12040,"id":9031,"width":32,"height":32},{"x":384,"y":544,"fileNum":12040,"id":9032,"width":32,"height":32},{"x":416,"y":544,"fileNum":12040,"id":9033,"width":32,"height":32},{"x":448,"y":512,"fileNum":12040,"id":9034,"width":32,"height":32},{"x":480,"y":512,"fileNum":12040,"id":9035,"width":32,"height":32},{"x":448,"y":544,"fileNum":12040,"id":9036,"width":32,"height":32},{"x":480,"y":544,"fileNum":12040,"id":9037,"width":32,"height":32},{"x":512,"y":512,"fileNum":12040,"id":9038,"width":32,"height":32},{"x":544,"y":512,"fileNum":12040,"id":9039,"width":32,"height":32},{"x":512,"y":544,"fileNum":12040,"id":9040,"width":32,"height":32},{"x":544,"y":544,"fileNum":12040,"id":9041,"width":32,"height":32},{"x":576,"y":512,"fileNum":12040,"id":9042,"width":32,"height":32},{"x":608,"y":512,"fileNum":12040,"id":9043,"width":32,"height":32},{"x":576,"y":544,"fileNum":12040,"id":9044,"width":32,"height":32},{"x":608,"y":544,"fileNum":12040,"id":9045,"width":32,"height":32},{"x":0,"y":576,"fileNum":12040,"id":9046,"width":32,"height":32},{"x":32,"y":576,"fileNum":12040,"id":9047,"width":32,"height":32},{"x":0,"y":608,"fileNum":12040,"id":9048,"width":32,"height":32},{"x":32,"y":608,"fileNum":12040,"id":9049,"width":32,"height":32},{"x":64,"y":576,"fileNum":12040,"id":9050,"width":32,"height":32},{"x":96,"y":576,"fileNum":12040,"id":9051,"width":32,"height":32},{"x":64,"y":608,"fileNum":12040,"id":9052,"width":32,"height":32},{"x":96,"y":608,"fileNum":12040,"id":9053,"width":32,"height":32},{"x":128,"y":576,"fileNum":12040,"id":9054,"width":32,"height":32},{"x":160,"y":576,"fileNum":12040,"id":9055,"width":32,"height":32},{"x":128,"y":608,"fileNum":12040,"id":9056,"width":32,"height":32},{"x":160,"y":608,"fileNum":12040,"id":9057,"width":32,"height":32},{"x":192,"y":576,"fileNum":12040,"id":9058,"width":32,"height":32},{"x":224,"y":576,"fileNum":12040,"id":9059,"width":32,"height":32},{"x":192,"y":608,"fileNum":12040,"id":9060,"width":32,"height":32},{"x":224,"y":608,"fileNum":12040,"id":9061,"width":32,"height":32},{"x":256,"y":576,"fileNum":12040,"id":9062,"width":32,"height":32},{"x":288,"y":576,"fileNum":12040,"id":9063,"width":32,"height":32},{"x":256,"y":608,"fileNum":12040,"id":9064,"width":32,"height":32},{"x":288,"y":608,"fileNum":12040,"id":9065,"width":32,"height":32},{"x":320,"y":576,"fileNum":12040,"id":9066,"width":32,"height":32},{"x":352,"y":576,"fileNum":12040,"id":9067,"width":32,"height":32},{"x":320,"y":608,"fileNum":12040,"id":9068,"width":32,"height":32},{"x":352,"y":608,"fileNum":12040,"id":9069,"width":32,"height":32},{"x":384,"y":576,"fileNum":12040,"id":9070,"width":32,"height":32},{"x":416,"y":576,"fileNum":12040,"id":9071,"width":32,"height":32},{"x":384,"y":608,"fileNum":12040,"id":9072,"width":32,"height":32},{"x":416,"y":608,"fileNum":12040,"id":9073,"width":32,"height":32},{"x":448,"y":576,"fileNum":12040,"id":9074,"width":32,"height":32},{"x":480,"y":576,"fileNum":12040,"id":9075,"width":32,"height":32},{"x":448,"y":608,"fileNum":12040,"id":9076,"width":32,"height":32},{"x":480,"y":608,"fileNum":12040,"id":9077,"width":32,"height":32},{"x":512,"y":576,"fileNum":12040,"id":9078,"width":32,"height":32},{"x":544,"y":576,"fileNum":12040,"id":9079,"width":32,"height":32},{"x":512,"y":608,"fileNum":12040,"id":9080,"width":32,"height":32},{"x":544,"y":608,"fileNum":12040,"id":9081,"width":32,"height":32},{"x":576,"y":576,"fileNum":12040,"id":9082,"width":32,"height":32},{"x":608,"y":576,"fileNum":12040,"id":9083,"width":32,"height":32},{"x":576,"y":608,"fileNum":12040,"id":9084,"width":32,"height":32},{"x":608,"y":608,"fileNum":12040,"id":9085,"width":32,"height":32},{"x":0,"y":0,"fileNum":11044,"id":9087,"width":32,"height":32},{"x":32,"y":0,"fileNum":11044,"id":9088,"width":32,"height":32},{"x":64,"y":0,"fileNum":11044,"id":9089,"width":32,"height":32},{"x":0,"y":32,"fileNum":11044,"id":9090,"width":32,"height":32},{"x":32,"y":32,"fileNum":11044,"id":9091,"width":32,"height":32},{"x":64,"y":32,"fileNum":11044,"id":9092,"width":32,"height":32},{"x":0,"y":64,"fileNum":11044,"id":9093,"width":32,"height":32},{"x":32,"y":64,"fileNum":11044,"id":9094,"width":32,"height":32},{"x":64,"y":64,"fileNum":11044,"id":9095,"width":32,"height":32},{"x":96,"y":0,"fileNum":11044,"id":9096,"width":32,"height":32},{"x":128,"y":0,"fileNum":11044,"id":9097,"width":32,"height":32},{"x":160,"y":0,"fileNum":11044,"id":9098,"width":32,"height":32},{"x":96,"y":32,"fileNum":11044,"id":9099,"width":32,"height":32},{"x":128,"y":32,"fileNum":11044,"id":9100,"width":32,"height":32},{"x":160,"y":32,"fileNum":11044,"id":9101,"width":32,"height":32},{"x":96,"y":64,"fileNum":11044,"id":9102,"width":32,"height":32},{"x":128,"y":64,"fileNum":11044,"id":9103,"width":32,"height":32},{"x":160,"y":64,"fileNum":11044,"id":9104,"width":32,"height":32},{"x":192,"y":0,"fileNum":11044,"id":9105,"width":32,"height":32},{"x":224,"y":0,"fileNum":11044,"id":9106,"width":32,"height":32},{"x":256,"y":0,"fileNum":11044,"id":9107,"width":32,"height":32},{"x":192,"y":32,"fileNum":11044,"id":9108,"width":32,"height":32},{"x":224,"y":32,"fileNum":11044,"id":9109,"width":32,"height":32},{"x":256,"y":32,"fileNum":11044,"id":9110,"width":32,"height":32},{"x":192,"y":64,"fileNum":11044,"id":9111,"width":32,"height":32},{"x":224,"y":64,"fileNum":11044,"id":9112,"width":32,"height":32},{"x":256,"y":64,"fileNum":11044,"id":9113,"width":32,"height":32},{"x":0,"y":96,"fileNum":11044,"id":9114,"width":32,"height":32},{"x":32,"y":96,"fileNum":11044,"id":9115,"width":32,"height":32},{"x":64,"y":96,"fileNum":11044,"id":9116,"width":32,"height":32},{"x":0,"y":128,"fileNum":11044,"id":9117,"width":32,"height":32},{"x":32,"y":128,"fileNum":11044,"id":9118,"width":32,"height":32},{"x":64,"y":128,"fileNum":11044,"id":9119,"width":32,"height":32},{"x":0,"y":160,"fileNum":11044,"id":9120,"width":32,"height":32},{"x":32,"y":160,"fileNum":11044,"id":9121,"width":32,"height":32},{"x":64,"y":160,"fileNum":11044,"id":9122,"width":32,"height":32},{"x":96,"y":96,"fileNum":11044,"id":9123,"width":32,"height":32},{"x":128,"y":96,"fileNum":11044,"id":9124,"width":32,"height":32},{"x":160,"y":96,"fileNum":11044,"id":9125,"width":32,"height":32},{"x":96,"y":128,"fileNum":11044,"id":9126,"width":32,"height":32},{"x":128,"y":128,"fileNum":11044,"id":9127,"width":32,"height":32},{"x":160,"y":128,"fileNum":11044,"id":9128,"width":32,"height":32},{"x":96,"y":160,"fileNum":11044,"id":9129,"width":32,"height":32},{"x":128,"y":160,"fileNum":11044,"id":9130,"width":32,"height":32},{"x":160,"y":160,"fileNum":11044,"id":9131,"width":32,"height":32},{"x":192,"y":96,"fileNum":11044,"id":9132,"width":32,"height":32},{"x":224,"y":96,"fileNum":11044,"id":9133,"width":32,"height":32},{"x":256,"y":96,"fileNum":11044,"id":9134,"width":32,"height":32},{"x":192,"y":128,"fileNum":11044,"id":9135,"width":32,"height":32},{"x":224,"y":128,"fileNum":11044,"id":9136,"width":32,"height":32},{"x":256,"y":128,"fileNum":11044,"id":9137,"width":32,"height":32},{"x":192,"y":160,"fileNum":11044,"id":9138,"width":32,"height":32},{"x":224,"y":160,"fileNum":11044,"id":9139,"width":32,"height":32},{"x":256,"y":160,"fileNum":11044,"id":9140,"width":32,"height":32},{"x":0,"y":0,"fileNum":14036,"id":9141,"width":32,"height":32},{"x":32,"y":0,"fileNum":14036,"id":9142,"width":32,"height":32},{"x":0,"y":32,"fileNum":14036,"id":9143,"width":32,"height":32},{"x":32,"y":32,"fileNum":14036,"id":9144,"width":32,"height":32},{"x":64,"y":0,"fileNum":14036,"id":9145,"width":32,"height":32},{"x":96,"y":0,"fileNum":14036,"id":9146,"width":32,"height":32},{"x":64,"y":32,"fileNum":14036,"id":9147,"width":32,"height":32},{"x":96,"y":32,"fileNum":14036,"id":9148,"width":32,"height":32},{"x":128,"y":0,"fileNum":14036,"id":9149,"width":32,"height":32},{"x":160,"y":0,"fileNum":14036,"id":9150,"width":32,"height":32},{"x":128,"y":32,"fileNum":14036,"id":9151,"width":32,"height":32},{"x":160,"y":32,"fileNum":14036,"id":9152,"width":32,"height":32},{"x":192,"y":0,"fileNum":14036,"id":9153,"width":32,"height":32},{"x":224,"y":0,"fileNum":14036,"id":9154,"width":32,"height":32},{"x":192,"y":32,"fileNum":14036,"id":9155,"width":32,"height":32},{"x":224,"y":32,"fileNum":14036,"id":9156,"width":32,"height":32},{"x":0,"y":0,"fileNum":14037,"id":9157,"width":32,"height":32},{"x":32,"y":0,"fileNum":14037,"id":9158,"width":32,"height":32},{"x":0,"y":32,"fileNum":14037,"id":9159,"width":32,"height":32},{"x":32,"y":32,"fileNum":14037,"id":9160,"width":32,"height":32},{"x":64,"y":0,"fileNum":14037,"id":9161,"width":32,"height":32},{"x":96,"y":0,"fileNum":14037,"id":9162,"width":32,"height":32},{"x":64,"y":32,"fileNum":14037,"id":9163,"width":32,"height":32},{"x":96,"y":32,"fileNum":14037,"id":9164,"width":32,"height":32},{"x":128,"y":0,"fileNum":14037,"id":9165,"width":32,"height":32},{"x":160,"y":0,"fileNum":14037,"id":9166,"width":32,"height":32},{"x":128,"y":32,"fileNum":14037,"id":9167,"width":32,"height":32},{"x":160,"y":32,"fileNum":14037,"id":9168,"width":32,"height":32},{"x":192,"y":0,"fileNum":14037,"id":9169,"width":32,"height":32},{"x":224,"y":0,"fileNum":14037,"id":9170,"width":32,"height":32},{"x":192,"y":32,"fileNum":14037,"id":9171,"width":32,"height":32},{"x":224,"y":32,"fileNum":14037,"id":9172,"width":32,"height":32},{"x":0,"y":0,"fileNum":14038,"id":9173,"width":32,"height":32},{"x":32,"y":0,"fileNum":14038,"id":9174,"width":32,"height":32},{"x":0,"y":32,"fileNum":14038,"id":9175,"width":32,"height":32},{"x":32,"y":32,"fileNum":14038,"id":9176,"width":32,"height":32},{"x":64,"y":0,"fileNum":14038,"id":9177,"width":32,"height":32},{"x":96,"y":0,"fileNum":14038,"id":9178,"width":32,"height":32},{"x":64,"y":32,"fileNum":14038,"id":9179,"width":32,"height":32},{"x":96,"y":32,"fileNum":14038,"id":9180,"width":32,"height":32},{"x":128,"y":0,"fileNum":14038,"id":9181,"width":32,"height":32},{"x":160,"y":0,"fileNum":14038,"id":9182,"width":32,"height":32},{"x":128,"y":32,"fileNum":14038,"id":9183,"width":32,"height":32},{"x":160,"y":32,"fileNum":14038,"id":9184,"width":32,"height":32},{"x":192,"y":0,"fileNum":14038,"id":9185,"width":32,"height":32},{"x":224,"y":0,"fileNum":14038,"id":9186,"width":32,"height":32},{"x":192,"y":32,"fileNum":14038,"id":9187,"width":32,"height":32},{"x":224,"y":32,"fileNum":14038,"id":9188,"width":32,"height":32},{"x":0,"y":0,"fileNum":14039,"id":9189,"width":32,"height":32},{"x":32,"y":0,"fileNum":14039,"id":9190,"width":32,"height":32},{"x":0,"y":32,"fileNum":14039,"id":9191,"width":32,"height":32},{"x":32,"y":32,"fileNum":14039,"id":9192,"width":32,"height":32},{"x":0,"y":0,"fileNum":11045,"id":9193,"width":96,"height":96},{"x":96,"y":0,"fileNum":11045,"id":9194,"width":96,"height":96},{"x":192,"y":0,"fileNum":11045,"id":9195,"width":96,"height":96},{"x":0,"y":96,"fileNum":11045,"id":9196,"width":96,"height":96},{"x":96,"y":96,"fileNum":11045,"id":9197,"width":96,"height":96},{"x":192,"y":96,"fileNum":11045,"id":9198,"width":96,"height":96},{"x":0,"y":0,"fileNum":11046,"id":9199,"width":96,"height":96},{"x":96,"y":0,"fileNum":11046,"id":9200,"width":96,"height":96},{"x":192,"y":0,"fileNum":11046,"id":9201,"width":96,"height":96},{"x":0,"y":96,"fileNum":11046,"id":9202,"width":96,"height":96},{"x":96,"y":96,"fileNum":11046,"id":9203,"width":96,"height":96},{"x":192,"y":96,"fileNum":11046,"id":9204,"width":96,"height":96},{"x":0,"y":0,"fileNum":10009,"id":9205,"width":204,"height":192},{"x":0,"y":192,"fileNum":10009,"id":9206,"width":204,"height":160},{"x":0,"y":0,"fileNum":2171,"id":9207,"width":17,"height":50},{"x":17,"y":0,"fileNum":2171,"id":9208,"width":17,"height":50},{"x":34,"y":0,"fileNum":2171,"id":9209,"width":17,"height":50},{"x":51,"y":0,"fileNum":2171,"id":9210,"width":17,"height":50},{"x":0,"y":0,"fileNum":2172,"id":9211,"width":17,"height":50},{"x":17,"y":0,"fileNum":2172,"id":9212,"width":17,"height":50},{"x":34,"y":0,"fileNum":2172,"id":9213,"width":17,"height":50},{"x":51,"y":0,"fileNum":2172,"id":9214,"width":17,"height":50},{"x":0,"y":0,"fileNum":2173,"id":9215,"width":17,"height":50},{"x":17,"y":0,"fileNum":2173,"id":9216,"width":17,"height":50},{"x":34,"y":0,"fileNum":2173,"id":9217,"width":17,"height":50},{"x":51,"y":0,"fileNum":2173,"id":9218,"width":17,"height":50},{"x":0,"y":0,"fileNum":10009,"id":9219,"width":204,"height":201},{"x":0,"y":0,"fileNum":8111,"id":9220,"width":32,"height":32},{"x":32,"y":0,"fileNum":8111,"id":9221,"width":32,"height":32},{"x":64,"y":0,"fileNum":8111,"id":9222,"width":32,"height":32},{"x":96,"y":0,"fileNum":8111,"id":9223,"width":32,"height":32},{"x":0,"y":32,"fileNum":8111,"id":9224,"width":32,"height":32},{"x":32,"y":32,"fileNum":8111,"id":9225,"width":32,"height":32},{"x":64,"y":32,"fileNum":8111,"id":9226,"width":32,"height":32},{"x":96,"y":32,"fileNum":8111,"id":9227,"width":32,"height":32},{"x":0,"y":64,"fileNum":8111,"id":9228,"width":32,"height":32},{"x":32,"y":64,"fileNum":8111,"id":9229,"width":32,"height":32},{"x":64,"y":64,"fileNum":8111,"id":9230,"width":32,"height":32},{"x":96,"y":64,"fileNum":8111,"id":9231,"width":32,"height":32},{"x":0,"y":96,"fileNum":8111,"id":9232,"width":32,"height":32},{"x":32,"y":96,"fileNum":8111,"id":9233,"width":32,"height":32},{"x":64,"y":96,"fileNum":8111,"id":9234,"width":32,"height":32},{"x":96,"y":96,"fileNum":8111,"id":9235,"width":32,"height":32},{"x":128,"y":0,"fileNum":8111,"id":9236,"width":32,"height":32},{"x":160,"y":0,"fileNum":8111,"id":9237,"width":32,"height":32},{"x":192,"y":0,"fileNum":8111,"id":9238,"width":32,"height":32},{"x":224,"y":0,"fileNum":8111,"id":9239,"width":32,"height":32},{"x":128,"y":32,"fileNum":8111,"id":9240,"width":32,"height":32},{"x":160,"y":32,"fileNum":8111,"id":9241,"width":32,"height":32},{"x":192,"y":32,"fileNum":8111,"id":9242,"width":32,"height":32},{"x":224,"y":32,"fileNum":8111,"id":9243,"width":32,"height":32},{"x":128,"y":64,"fileNum":8111,"id":9244,"width":32,"height":32},{"x":160,"y":64,"fileNum":8111,"id":9245,"width":32,"height":32},{"x":192,"y":64,"fileNum":8111,"id":9246,"width":32,"height":32},{"x":224,"y":64,"fileNum":8111,"id":9247,"width":32,"height":32},{"x":128,"y":96,"fileNum":8111,"id":9248,"width":32,"height":32},{"x":160,"y":96,"fileNum":8111,"id":9249,"width":32,"height":32},{"x":192,"y":96,"fileNum":8111,"id":9250,"width":32,"height":32},{"x":224,"y":96,"fileNum":8111,"id":9251,"width":32,"height":32},{"x":256,"y":0,"fileNum":8111,"id":9252,"width":32,"height":32},{"x":288,"y":0,"fileNum":8111,"id":9253,"width":32,"height":32},{"x":320,"y":0,"fileNum":8111,"id":9254,"width":32,"height":32},{"x":352,"y":0,"fileNum":8111,"id":9255,"width":32,"height":32},{"x":256,"y":32,"fileNum":8111,"id":9256,"width":32,"height":32},{"x":288,"y":32,"fileNum":8111,"id":9257,"width":32,"height":32},{"x":320,"y":32,"fileNum":8111,"id":9258,"width":32,"height":32},{"x":352,"y":32,"fileNum":8111,"id":9259,"width":32,"height":32},{"x":256,"y":64,"fileNum":8111,"id":9260,"width":32,"height":32},{"x":288,"y":64,"fileNum":8111,"id":9261,"width":32,"height":32},{"x":320,"y":64,"fileNum":8111,"id":9262,"width":32,"height":32},{"x":352,"y":64,"fileNum":8111,"id":9263,"width":32,"height":32},{"x":256,"y":96,"fileNum":8111,"id":9264,"width":32,"height":32},{"x":288,"y":96,"fileNum":8111,"id":9265,"width":32,"height":32},{"x":320,"y":96,"fileNum":8111,"id":9266,"width":32,"height":32},{"x":352,"y":96,"fileNum":8111,"id":9267,"width":32,"height":32},{"x":384,"y":0,"fileNum":8111,"id":9268,"width":32,"height":32},{"x":416,"y":0,"fileNum":8111,"id":9269,"width":32,"height":32},{"x":448,"y":0,"fileNum":8111,"id":9270,"width":32,"height":32},{"x":480,"y":0,"fileNum":8111,"id":9271,"width":32,"height":32},{"x":384,"y":32,"fileNum":8111,"id":9272,"width":32,"height":32},{"x":416,"y":32,"fileNum":8111,"id":9273,"width":32,"height":32},{"x":448,"y":32,"fileNum":8111,"id":9274,"width":32,"height":32},{"x":480,"y":32,"fileNum":8111,"id":9275,"width":32,"height":32},{"x":384,"y":64,"fileNum":8111,"id":9276,"width":32,"height":32},{"x":416,"y":64,"fileNum":8111,"id":9277,"width":32,"height":32},{"x":448,"y":64,"fileNum":8111,"id":9278,"width":32,"height":32},{"x":480,"y":64,"fileNum":8111,"id":9279,"width":32,"height":32},{"x":384,"y":96,"fileNum":8111,"id":9280,"width":32,"height":32},{"x":416,"y":96,"fileNum":8111,"id":9281,"width":32,"height":32},{"x":448,"y":96,"fileNum":8111,"id":9282,"width":32,"height":32},{"x":480,"y":96,"fileNum":8111,"id":9283,"width":32,"height":32},{"x":0,"y":0,"fileNum":8112,"id":9284,"width":32,"height":32},{"x":32,"y":0,"fileNum":8112,"id":9285,"width":32,"height":32},{"x":64,"y":0,"fileNum":8112,"id":9286,"width":32,"height":32},{"x":96,"y":0,"fileNum":8112,"id":9287,"width":32,"height":32},{"x":0,"y":32,"fileNum":8112,"id":9288,"width":32,"height":32},{"x":32,"y":32,"fileNum":8112,"id":9289,"width":32,"height":32},{"x":64,"y":32,"fileNum":8112,"id":9290,"width":32,"height":32},{"x":96,"y":32,"fileNum":8112,"id":9291,"width":32,"height":32},{"x":0,"y":64,"fileNum":8112,"id":9292,"width":32,"height":32},{"x":32,"y":64,"fileNum":8112,"id":9293,"width":32,"height":32},{"x":64,"y":64,"fileNum":8112,"id":9294,"width":32,"height":32},{"x":96,"y":64,"fileNum":8112,"id":9295,"width":32,"height":32},{"x":0,"y":96,"fileNum":8112,"id":9296,"width":32,"height":32},{"x":32,"y":96,"fileNum":8112,"id":9297,"width":32,"height":32},{"x":64,"y":96,"fileNum":8112,"id":9298,"width":32,"height":32},{"x":96,"y":96,"fileNum":8112,"id":9299,"width":32,"height":32},{"x":128,"y":0,"fileNum":8112,"id":9300,"width":32,"height":32},{"x":160,"y":0,"fileNum":8112,"id":9301,"width":32,"height":32},{"x":192,"y":0,"fileNum":8112,"id":9302,"width":32,"height":32},{"x":224,"y":0,"fileNum":8112,"id":9303,"width":32,"height":32},{"x":128,"y":32,"fileNum":8112,"id":9304,"width":32,"height":32},{"x":160,"y":32,"fileNum":8112,"id":9305,"width":32,"height":32},{"x":192,"y":32,"fileNum":8112,"id":9306,"width":32,"height":32},{"x":224,"y":32,"fileNum":8112,"id":9307,"width":32,"height":32},{"x":128,"y":64,"fileNum":8112,"id":9308,"width":32,"height":32},{"x":160,"y":64,"fileNum":8112,"id":9309,"width":32,"height":32},{"x":192,"y":64,"fileNum":8112,"id":9310,"width":32,"height":32},{"x":224,"y":64,"fileNum":8112,"id":9311,"width":32,"height":32},{"x":128,"y":96,"fileNum":8112,"id":9312,"width":32,"height":32},{"x":160,"y":96,"fileNum":8112,"id":9313,"width":32,"height":32},{"x":192,"y":96,"fileNum":8112,"id":9314,"width":32,"height":32},{"x":224,"y":96,"fileNum":8112,"id":9315,"width":32,"height":32},{"x":256,"y":0,"fileNum":8112,"id":9316,"width":32,"height":32},{"x":288,"y":0,"fileNum":8112,"id":9317,"width":32,"height":32},{"x":320,"y":0,"fileNum":8112,"id":9318,"width":32,"height":32},{"x":352,"y":0,"fileNum":8112,"id":9319,"width":32,"height":32},{"x":256,"y":32,"fileNum":8112,"id":9320,"width":32,"height":32},{"x":288,"y":32,"fileNum":8112,"id":9321,"width":32,"height":32},{"x":320,"y":32,"fileNum":8112,"id":9322,"width":32,"height":32},{"x":352,"y":32,"fileNum":8112,"id":9323,"width":32,"height":32},{"x":256,"y":64,"fileNum":8112,"id":9324,"width":32,"height":32},{"x":288,"y":64,"fileNum":8112,"id":9325,"width":32,"height":32},{"x":320,"y":64,"fileNum":8112,"id":9326,"width":32,"height":32},{"x":352,"y":64,"fileNum":8112,"id":9327,"width":32,"height":32},{"x":256,"y":96,"fileNum":8112,"id":9328,"width":32,"height":32},{"x":288,"y":96,"fileNum":8112,"id":9329,"width":32,"height":32},{"x":320,"y":96,"fileNum":8112,"id":9330,"width":32,"height":32},{"x":352,"y":96,"fileNum":8112,"id":9331,"width":32,"height":32},{"x":384,"y":0,"fileNum":8112,"id":9332,"width":32,"height":32},{"x":416,"y":0,"fileNum":8112,"id":9333,"width":32,"height":32},{"x":448,"y":0,"fileNum":8112,"id":9334,"width":32,"height":32},{"x":480,"y":0,"fileNum":8112,"id":9335,"width":32,"height":32},{"x":384,"y":32,"fileNum":8112,"id":9336,"width":32,"height":32},{"x":416,"y":32,"fileNum":8112,"id":9337,"width":32,"height":32},{"x":448,"y":32,"fileNum":8112,"id":9338,"width":32,"height":32},{"x":480,"y":32,"fileNum":8112,"id":9339,"width":32,"height":32},{"x":384,"y":64,"fileNum":8112,"id":9340,"width":32,"height":32},{"x":416,"y":64,"fileNum":8112,"id":9341,"width":32,"height":32},{"x":448,"y":64,"fileNum":8112,"id":9342,"width":32,"height":32},{"x":480,"y":64,"fileNum":8112,"id":9343,"width":32,"height":32},{"x":384,"y":96,"fileNum":8112,"id":9344,"width":32,"height":32},{"x":416,"y":96,"fileNum":8112,"id":9345,"width":32,"height":32},{"x":448,"y":96,"fileNum":8112,"id":9346,"width":32,"height":32},{"x":480,"y":96,"fileNum":8112,"id":9347,"width":32,"height":32},{"x":0,"y":0,"fileNum":8113,"id":9348,"width":32,"height":32},{"x":32,"y":0,"fileNum":8113,"id":9349,"width":32,"height":32},{"x":64,"y":0,"fileNum":8113,"id":9350,"width":32,"height":32},{"x":96,"y":0,"fileNum":8113,"id":9351,"width":32,"height":32},{"x":0,"y":32,"fileNum":8113,"id":9352,"width":32,"height":32},{"x":32,"y":32,"fileNum":8113,"id":9353,"width":32,"height":32},{"x":64,"y":32,"fileNum":8113,"id":9354,"width":32,"height":32},{"x":96,"y":32,"fileNum":8113,"id":9355,"width":32,"height":32},{"x":0,"y":64,"fileNum":8113,"id":9356,"width":32,"height":32},{"x":32,"y":64,"fileNum":8113,"id":9357,"width":32,"height":32},{"x":64,"y":64,"fileNum":8113,"id":9358,"width":32,"height":32},{"x":96,"y":64,"fileNum":8113,"id":9359,"width":32,"height":32},{"x":0,"y":96,"fileNum":8113,"id":9360,"width":32,"height":32},{"x":32,"y":96,"fileNum":8113,"id":9361,"width":32,"height":32},{"x":64,"y":96,"fileNum":8113,"id":9362,"width":32,"height":32},{"x":96,"y":96,"fileNum":8113,"id":9363,"width":32,"height":32},{"x":128,"y":0,"fileNum":8113,"id":9364,"width":32,"height":32},{"x":160,"y":0,"fileNum":8113,"id":9365,"width":32,"height":32},{"x":192,"y":0,"fileNum":8113,"id":9366,"width":32,"height":32},{"x":224,"y":0,"fileNum":8113,"id":9367,"width":32,"height":32},{"x":128,"y":32,"fileNum":8113,"id":9368,"width":32,"height":32},{"x":160,"y":32,"fileNum":8113,"id":9369,"width":32,"height":32},{"x":192,"y":32,"fileNum":8113,"id":9370,"width":32,"height":32},{"x":224,"y":32,"fileNum":8113,"id":9371,"width":32,"height":32},{"x":128,"y":64,"fileNum":8113,"id":9372,"width":32,"height":32},{"x":160,"y":64,"fileNum":8113,"id":9373,"width":32,"height":32},{"x":192,"y":64,"fileNum":8113,"id":9374,"width":32,"height":32},{"x":224,"y":64,"fileNum":8113,"id":9375,"width":32,"height":32},{"x":128,"y":96,"fileNum":8113,"id":9376,"width":32,"height":32},{"x":160,"y":96,"fileNum":8113,"id":9377,"width":32,"height":32},{"x":192,"y":96,"fileNum":8113,"id":9378,"width":32,"height":32},{"x":224,"y":96,"fileNum":8113,"id":9379,"width":32,"height":32},{"x":256,"y":0,"fileNum":8113,"id":9380,"width":32,"height":32},{"x":288,"y":0,"fileNum":8113,"id":9381,"width":32,"height":32},{"x":320,"y":0,"fileNum":8113,"id":9382,"width":32,"height":32},{"x":352,"y":0,"fileNum":8113,"id":9383,"width":32,"height":32},{"x":256,"y":32,"fileNum":8113,"id":9384,"width":32,"height":32},{"x":288,"y":32,"fileNum":8113,"id":9385,"width":32,"height":32},{"x":320,"y":32,"fileNum":8113,"id":9386,"width":32,"height":32},{"x":352,"y":32,"fileNum":8113,"id":9387,"width":32,"height":32},{"x":256,"y":64,"fileNum":8113,"id":9388,"width":32,"height":32},{"x":288,"y":64,"fileNum":8113,"id":9389,"width":32,"height":32},{"x":320,"y":64,"fileNum":8113,"id":9390,"width":32,"height":32},{"x":352,"y":64,"fileNum":8113,"id":9391,"width":32,"height":32},{"x":256,"y":96,"fileNum":8113,"id":9392,"width":32,"height":32},{"x":288,"y":96,"fileNum":8113,"id":9393,"width":32,"height":32},{"x":320,"y":96,"fileNum":8113,"id":9394,"width":32,"height":32},{"x":352,"y":96,"fileNum":8113,"id":9395,"width":32,"height":32},{"x":384,"y":0,"fileNum":8113,"id":9396,"width":32,"height":32},{"x":416,"y":0,"fileNum":8113,"id":9397,"width":32,"height":32},{"x":448,"y":0,"fileNum":8113,"id":9398,"width":32,"height":32},{"x":480,"y":0,"fileNum":8113,"id":9399,"width":32,"height":32},{"x":384,"y":32,"fileNum":8113,"id":9400,"width":32,"height":32},{"x":416,"y":32,"fileNum":8113,"id":9401,"width":32,"height":32},{"x":448,"y":32,"fileNum":8113,"id":9402,"width":32,"height":32},{"x":480,"y":32,"fileNum":8113,"id":9403,"width":32,"height":32},{"x":384,"y":64,"fileNum":8113,"id":9404,"width":32,"height":32},{"x":416,"y":64,"fileNum":8113,"id":9405,"width":32,"height":32},{"x":448,"y":64,"fileNum":8113,"id":9406,"width":32,"height":32},{"x":480,"y":64,"fileNum":8113,"id":9407,"width":32,"height":32},{"x":384,"y":96,"fileNum":8113,"id":9408,"width":32,"height":32},{"x":416,"y":96,"fileNum":8113,"id":9409,"width":32,"height":32},{"x":448,"y":96,"fileNum":8113,"id":9410,"width":32,"height":32},{"x":480,"y":96,"fileNum":8113,"id":9411,"width":32,"height":32},{"x":0,"y":0,"fileNum":8113,"id":9412,"width":32,"height":32},{"x":32,"y":0,"fileNum":8113,"id":9413,"width":32,"height":32},{"x":64,"y":0,"fileNum":8113,"id":9414,"width":32,"height":32},{"x":96,"y":0,"fileNum":8113,"id":9415,"width":32,"height":32},{"x":0,"y":32,"fileNum":8113,"id":9416,"width":32,"height":32},{"x":32,"y":32,"fileNum":8113,"id":9417,"width":32,"height":32},{"x":64,"y":32,"fileNum":8113,"id":9418,"width":32,"height":32},{"x":96,"y":32,"fileNum":8113,"id":9419,"width":32,"height":32},{"x":0,"y":64,"fileNum":8113,"id":9420,"width":32,"height":32},{"x":32,"y":64,"fileNum":8113,"id":9421,"width":32,"height":32},{"x":64,"y":64,"fileNum":8113,"id":9422,"width":32,"height":32},{"x":96,"y":64,"fileNum":8113,"id":9423,"width":32,"height":32},{"x":0,"y":96,"fileNum":8113,"id":9424,"width":32,"height":32},{"x":32,"y":96,"fileNum":8113,"id":9425,"width":32,"height":32},{"x":64,"y":96,"fileNum":8113,"id":9426,"width":32,"height":32},{"x":96,"y":96,"fileNum":8113,"id":9427,"width":32,"height":32},{"x":0,"y":0,"fileNum":8114,"id":9428,"width":32,"height":32},{"x":32,"y":0,"fileNum":8114,"id":9429,"width":32,"height":32},{"x":64,"y":0,"fileNum":8114,"id":9430,"width":32,"height":32},{"x":96,"y":0,"fileNum":8114,"id":9431,"width":32,"height":32},{"x":0,"y":32,"fileNum":8114,"id":9432,"width":32,"height":32},{"x":32,"y":32,"fileNum":8114,"id":9433,"width":32,"height":32},{"x":64,"y":32,"fileNum":8114,"id":9434,"width":32,"height":32},{"x":96,"y":32,"fileNum":8114,"id":9435,"width":32,"height":32},{"x":0,"y":64,"fileNum":8114,"id":9436,"width":32,"height":32},{"x":32,"y":64,"fileNum":8114,"id":9437,"width":32,"height":32},{"x":64,"y":64,"fileNum":8114,"id":9438,"width":32,"height":32},{"x":96,"y":64,"fileNum":8114,"id":9439,"width":32,"height":32},{"x":0,"y":96,"fileNum":8114,"id":9440,"width":32,"height":32},{"x":32,"y":96,"fileNum":8114,"id":9441,"width":32,"height":32},{"x":64,"y":96,"fileNum":8114,"id":9442,"width":32,"height":32},{"x":96,"y":96,"fileNum":8114,"id":9443,"width":32,"height":32},{"x":0,"y":0,"fileNum":4054,"id":9444,"width":50,"height":70},{"x":50,"y":0,"fileNum":4054,"id":9445,"width":50,"height":70},{"x":100,"y":0,"fileNum":4054,"id":9446,"width":50,"height":70},{"x":0,"y":70,"fileNum":4054,"id":9448,"width":50,"height":70},{"x":50,"y":70,"fileNum":4054,"id":9449,"width":50,"height":70},{"x":100,"y":70,"fileNum":4054,"id":9450,"width":50,"height":70},{"x":0,"y":140,"fileNum":4054,"id":9452,"width":50,"height":70},{"x":50,"y":140,"fileNum":4054,"id":9453,"width":50,"height":70},{"x":100,"y":140,"fileNum":4054,"id":9454,"width":50,"height":70},{"x":0,"y":210,"fileNum":4054,"id":9456,"width":50,"height":70},{"x":50,"y":210,"fileNum":4054,"id":9457,"width":50,"height":70},{"x":100,"y":210,"fileNum":4054,"id":9458,"width":50,"height":70},{"x":0,"y":0,"fileNum":9015,"id":9463,"width":44,"height":64},{"x":44,"y":0,"fileNum":9015,"id":9464,"width":44,"height":64},{"x":88,"y":0,"fileNum":9015,"id":9465,"width":44,"height":64},{"x":132,"y":0,"fileNum":9015,"id":9466,"width":44,"height":64},{"x":176,"y":0,"fileNum":9015,"id":9467,"width":44,"height":64},{"x":220,"y":0,"fileNum":9015,"id":9468,"width":44,"height":64},{"x":264,"y":0,"fileNum":9015,"id":9469,"width":44,"height":64},{"x":308,"y":0,"fileNum":9015,"id":9470,"width":44,"height":64},{"x":0,"y":0,"fileNum":2113,"id":9472,"width":17,"height":50},{"x":17,"y":0,"fileNum":2113,"id":9473,"width":17,"height":50},{"x":34,"y":0,"fileNum":2113,"id":9474,"width":17,"height":50},{"x":51,"y":0,"fileNum":2113,"id":9475,"width":17,"height":50},{"x":0,"y":0,"fileNum":2114,"id":9476,"width":17,"height":50},{"x":17,"y":0,"fileNum":2114,"id":9477,"width":17,"height":50},{"x":34,"y":0,"fileNum":2114,"id":9478,"width":17,"height":50},{"x":51,"y":0,"fileNum":2114,"id":9479,"width":17,"height":50},{"x":0,"y":0,"fileNum":2115,"id":9480,"width":17,"height":50},{"x":17,"y":0,"fileNum":2115,"id":9481,"width":17,"height":50},{"x":34,"y":0,"fileNum":2115,"id":9482,"width":17,"height":50},{"x":51,"y":0,"fileNum":2115,"id":9483,"width":17,"height":50},{"x":0,"y":0,"fileNum":2116,"id":9484,"width":17,"height":50},{"x":17,"y":0,"fileNum":2116,"id":9485,"width":17,"height":50},{"x":34,"y":0,"fileNum":2116,"id":9486,"width":17,"height":50},{"x":51,"y":0,"fileNum":2116,"id":9487,"width":17,"height":50},{"x":0,"y":0,"fileNum":2117,"id":9488,"width":17,"height":50},{"x":17,"y":0,"fileNum":2117,"id":9489,"width":17,"height":50},{"x":34,"y":0,"fileNum":2117,"id":9490,"width":17,"height":50},{"x":51,"y":0,"fileNum":2117,"id":9491,"width":17,"height":50},{"x":0,"y":0,"fileNum":2118,"id":9492,"width":17,"height":50},{"x":17,"y":0,"fileNum":2118,"id":9493,"width":17,"height":50},{"x":34,"y":0,"fileNum":2118,"id":9494,"width":17,"height":50},{"x":51,"y":0,"fileNum":2118,"id":9495,"width":17,"height":50},{"x":0,"y":0,"fileNum":2119,"id":9496,"width":17,"height":50},{"x":17,"y":0,"fileNum":2119,"id":9497,"width":17,"height":50},{"x":34,"y":0,"fileNum":2119,"id":9498,"width":17,"height":50},{"x":51,"y":0,"fileNum":2119,"id":9499,"width":17,"height":50},{"x":0,"y":0,"fileNum":2120,"id":9500,"width":17,"height":50},{"x":17,"y":0,"fileNum":2120,"id":9501,"width":17,"height":50},{"x":34,"y":0,"fileNum":2120,"id":9502,"width":17,"height":50},{"x":51,"y":0,"fileNum":2120,"id":9503,"width":17,"height":50},{"x":0,"y":0,"fileNum":2121,"id":9504,"width":17,"height":50},{"x":17,"y":0,"fileNum":2121,"id":9505,"width":17,"height":50},{"x":34,"y":0,"fileNum":2121,"id":9506,"width":17,"height":50},{"x":51,"y":0,"fileNum":2121,"id":9507,"width":17,"height":50},{"x":0,"y":0,"fileNum":2122,"id":9508,"width":17,"height":50},{"x":17,"y":0,"fileNum":2122,"id":9509,"width":17,"height":50},{"x":34,"y":0,"fileNum":2122,"id":9510,"width":17,"height":50},{"x":51,"y":0,"fileNum":2122,"id":9511,"width":17,"height":50},{"x":0,"y":0,"fileNum":2123,"id":9512,"width":17,"height":50},{"x":17,"y":0,"fileNum":2123,"id":9513,"width":17,"height":50},{"x":34,"y":0,"fileNum":2123,"id":9514,"width":17,"height":50},{"x":51,"y":0,"fileNum":2123,"id":9515,"width":17,"height":50},{"x":0,"y":0,"fileNum":2124,"id":9516,"width":17,"height":50},{"x":17,"y":0,"fileNum":2124,"id":9517,"width":17,"height":50},{"x":34,"y":0,"fileNum":2124,"id":9518,"width":17,"height":50},{"x":51,"y":0,"fileNum":2124,"id":9519,"width":17,"height":50},{"x":0,"y":0,"fileNum":18023,"id":9520,"width":17,"height":16},{"x":17,"y":0,"fileNum":18023,"id":9521,"width":17,"height":16},{"x":34,"y":0,"fileNum":18023,"id":9522,"width":17,"height":16},{"x":51,"y":0,"fileNum":18023,"id":9523,"width":17,"height":16},{"x":0,"y":0,"fileNum":2125,"id":9524,"width":17,"height":50},{"x":17,"y":0,"fileNum":2125,"id":9525,"width":17,"height":50},{"x":34,"y":0,"fileNum":2125,"id":9526,"width":17,"height":50},{"x":51,"y":0,"fileNum":2125,"id":9527,"width":17,"height":50},{"x":0,"y":0,"fileNum":126,"id":9529,"width":32,"height":32},{"x":0,"y":0,"fileNum":127,"id":9530,"width":25,"height":45},{"x":25,"y":0,"fileNum":127,"id":9531,"width":25,"height":45},{"x":50,"y":0,"fileNum":127,"id":9532,"width":25,"height":45},{"x":75,"y":0,"fileNum":127,"id":9533,"width":25,"height":45},{"x":100,"y":0,"fileNum":127,"id":9534,"width":25,"height":45},{"x":125,"y":0,"fileNum":127,"id":9535,"width":25,"height":45},{"x":0,"y":45,"fileNum":127,"id":9536,"width":25,"height":45},{"x":25,"y":45,"fileNum":127,"id":9537,"width":25,"height":45},{"x":50,"y":45,"fileNum":127,"id":9538,"width":25,"height":45},{"x":75,"y":45,"fileNum":127,"id":9539,"width":25,"height":45},{"x":100,"y":45,"fileNum":127,"id":9540,"width":25,"height":45},{"x":125,"y":45,"fileNum":127,"id":9541,"width":25,"height":45},{"x":0,"y":90,"fileNum":127,"id":9542,"width":25,"height":45},{"x":25,"y":90,"fileNum":127,"id":9543,"width":25,"height":45},{"x":50,"y":90,"fileNum":127,"id":9544,"width":25,"height":45},{"x":75,"y":90,"fileNum":127,"id":9545,"width":25,"height":45},{"x":100,"y":90,"fileNum":127,"id":9546,"width":25,"height":45},{"x":0,"y":135,"fileNum":127,"id":9547,"width":25,"height":45},{"x":25,"y":135,"fileNum":127,"id":9548,"width":25,"height":45},{"x":50,"y":135,"fileNum":127,"id":9549,"width":25,"height":45},{"x":75,"y":135,"fileNum":127,"id":9550,"width":25,"height":45},{"x":100,"y":135,"fileNum":127,"id":9551,"width":25,"height":45},{"x":0,"y":0,"fileNum":8142,"id":9556,"width":100,"height":81},{"x":100,"y":0,"fileNum":8142,"id":9557,"width":100,"height":81},{"x":200,"y":0,"fileNum":8142,"id":9558,"width":100,"height":81},{"x":0,"y":0,"fileNum":15113,"id":9559,"width":140,"height":55},{"x":0,"y":0,"fileNum":3097,"id":9560,"width":75,"height":90},{"x":0,"y":90,"fileNum":3097,"id":9561,"width":75,"height":90},{"x":0,"y":180,"fileNum":3097,"id":9562,"width":75,"height":90},{"x":0,"y":270,"fileNum":3097,"id":9563,"width":75,"height":90},{"x":0,"y":360,"fileNum":3097,"id":9564,"width":75,"height":90},{"x":0,"y":450,"fileNum":3097,"id":9565,"width":75,"height":90},{"x":0,"y":540,"fileNum":3097,"id":9566,"width":75,"height":90},{"x":0,"y":630,"fileNum":3097,"id":9567,"width":75,"height":90},{"x":0,"y":0,"fileNum":10002,"id":9569,"width":130,"height":145},{"x":0,"y":0,"fileNum":15114,"id":9570,"width":100,"height":150},{"x":100,"y":0,"fileNum":15114,"id":9571,"width":100,"height":150},{"x":200,"y":0,"fileNum":15114,"id":9572,"width":100,"height":150},{"x":0,"y":150,"fileNum":15114,"id":9573,"width":100,"height":150},{"x":100,"y":150,"fileNum":15114,"id":9574,"width":100,"height":150},{"x":200,"y":150,"fileNum":15114,"id":9575,"width":100,"height":150},{"x":0,"y":0,"fileNum":2174,"id":9576,"width":17,"height":50},{"x":17,"y":0,"fileNum":2174,"id":9577,"width":17,"height":50},{"x":34,"y":0,"fileNum":2174,"id":9578,"width":17,"height":50},{"x":51,"y":0,"fileNum":2174,"id":9579,"width":17,"height":50},{"x":0,"y":0,"fileNum":15115,"id":9580,"width":300,"height":500},{"x":0,"y":0,"fileNum":130,"id":9581,"width":32,"height":32},{"x":0,"y":0,"fileNum":129,"id":9582,"width":25,"height":45},{"x":25,"y":0,"fileNum":129,"id":9583,"width":25,"height":45},{"x":50,"y":0,"fileNum":129,"id":9584,"width":25,"height":45},{"x":75,"y":0,"fileNum":129,"id":9585,"width":25,"height":45},{"x":100,"y":0,"fileNum":129,"id":9586,"width":25,"height":45},{"x":125,"y":0,"fileNum":129,"id":9587,"width":25,"height":45},{"x":0,"y":45,"fileNum":129,"id":9588,"width":25,"height":45},{"x":25,"y":45,"fileNum":129,"id":9589,"width":25,"height":45},{"x":50,"y":45,"fileNum":129,"id":9590,"width":25,"height":45},{"x":75,"y":45,"fileNum":129,"id":9591,"width":25,"height":45},{"x":100,"y":45,"fileNum":129,"id":9592,"width":25,"height":45},{"x":125,"y":45,"fileNum":129,"id":9593,"width":25,"height":45},{"x":0,"y":90,"fileNum":129,"id":9594,"width":25,"height":45},{"x":25,"y":90,"fileNum":129,"id":9595,"width":25,"height":45},{"x":50,"y":90,"fileNum":129,"id":9596,"width":25,"height":45},{"x":75,"y":90,"fileNum":129,"id":9597,"width":25,"height":45},{"x":100,"y":90,"fileNum":129,"id":9598,"width":25,"height":45},{"x":0,"y":135,"fileNum":129,"id":9599,"width":25,"height":45},{"x":25,"y":135,"fileNum":129,"id":9600,"width":25,"height":45},{"x":50,"y":135,"fileNum":129,"id":9601,"width":25,"height":45},{"x":75,"y":135,"fileNum":129,"id":9602,"width":25,"height":45},{"x":100,"y":135,"fileNum":129,"id":9603,"width":25,"height":45},{"x":0,"y":0,"fileNum":2175,"id":9608,"width":17,"height":50},{"x":17,"y":0,"fileNum":2175,"id":9609,"width":17,"height":50},{"x":34,"y":0,"fileNum":2175,"id":9610,"width":17,"height":50},{"x":51,"y":0,"fileNum":2175,"id":9611,"width":17,"height":50},{"x":0,"y":0,"fileNum":2176,"id":9612,"width":17,"height":50},{"x":17,"y":0,"fileNum":2176,"id":9613,"width":17,"height":50},{"x":34,"y":0,"fileNum":2176,"id":9614,"width":17,"height":50},{"x":51,"y":0,"fileNum":2176,"id":9615,"width":17,"height":50},{"x":0,"y":0,"fileNum":2177,"id":9616,"width":17,"height":50},{"x":17,"y":0,"fileNum":2177,"id":9617,"width":17,"height":50},{"x":34,"y":0,"fileNum":2177,"id":9618,"width":17,"height":50},{"x":51,"y":0,"fileNum":2177,"id":9619,"width":17,"height":50},{"x":0,"y":0,"fileNum":2178,"id":9620,"width":17,"height":50},{"x":17,"y":0,"fileNum":2178,"id":9621,"width":17,"height":50},{"x":34,"y":0,"fileNum":2178,"id":9622,"width":17,"height":50},{"x":51,"y":0,"fileNum":2178,"id":9623,"width":17,"height":50},{"x":0,"y":0,"fileNum":2179,"id":9624,"width":17,"height":50},{"x":17,"y":0,"fileNum":2179,"id":9625,"width":17,"height":50},{"x":34,"y":0,"fileNum":2179,"id":9626,"width":17,"height":50},{"x":51,"y":0,"fileNum":2179,"id":9627,"width":17,"height":50},{"x":0,"y":0,"fileNum":2180,"id":9628,"width":17,"height":50},{"x":17,"y":0,"fileNum":2180,"id":9629,"width":17,"height":50},{"x":34,"y":0,"fileNum":2180,"id":9630,"width":17,"height":50},{"x":51,"y":0,"fileNum":2180,"id":9631,"width":17,"height":50},{"x":0,"y":0,"fileNum":131,"id":9632,"width":32,"height":32},{"x":0,"y":0,"fileNum":132,"id":9633,"width":25,"height":45},{"x":25,"y":0,"fileNum":132,"id":9634,"width":25,"height":45},{"x":50,"y":0,"fileNum":132,"id":9635,"width":25,"height":45},{"x":75,"y":0,"fileNum":132,"id":9636,"width":25,"height":45},{"x":100,"y":0,"fileNum":132,"id":9637,"width":25,"height":45},{"x":125,"y":0,"fileNum":132,"id":9638,"width":25,"height":45},{"x":0,"y":45,"fileNum":132,"id":9639,"width":25,"height":45},{"x":25,"y":45,"fileNum":132,"id":9640,"width":25,"height":45},{"x":50,"y":45,"fileNum":132,"id":9641,"width":25,"height":45},{"x":75,"y":45,"fileNum":132,"id":9642,"width":25,"height":45},{"x":100,"y":45,"fileNum":132,"id":9643,"width":25,"height":45},{"x":125,"y":45,"fileNum":132,"id":9644,"width":25,"height":45},{"x":0,"y":90,"fileNum":132,"id":9645,"width":25,"height":45},{"x":25,"y":90,"fileNum":132,"id":9646,"width":25,"height":45},{"x":50,"y":90,"fileNum":132,"id":9647,"width":25,"height":45},{"x":75,"y":90,"fileNum":132,"id":9648,"width":25,"height":45},{"x":100,"y":90,"fileNum":132,"id":9649,"width":25,"height":45},{"x":0,"y":135,"fileNum":132,"id":9650,"width":25,"height":45},{"x":25,"y":135,"fileNum":132,"id":9651,"width":25,"height":45},{"x":50,"y":135,"fileNum":132,"id":9652,"width":25,"height":45},{"x":75,"y":135,"fileNum":132,"id":9653,"width":25,"height":45},{"x":100,"y":135,"fileNum":132,"id":9654,"width":25,"height":45},{"x":0,"y":0,"fileNum":133,"id":9659,"width":32,"height":32},{"x":0,"y":0,"fileNum":134,"id":9660,"width":25,"height":45},{"x":25,"y":0,"fileNum":134,"id":9661,"width":25,"height":45},{"x":50,"y":0,"fileNum":134,"id":9662,"width":25,"height":45},{"x":75,"y":0,"fileNum":134,"id":9663,"width":25,"height":45},{"x":100,"y":0,"fileNum":134,"id":9664,"width":25,"height":45},{"x":125,"y":0,"fileNum":134,"id":9665,"width":25,"height":45},{"x":0,"y":45,"fileNum":134,"id":9666,"width":25,"height":45},{"x":25,"y":45,"fileNum":134,"id":9667,"width":25,"height":45},{"x":50,"y":45,"fileNum":134,"id":9668,"width":25,"height":45},{"x":75,"y":45,"fileNum":134,"id":9669,"width":25,"height":45},{"x":100,"y":45,"fileNum":134,"id":9670,"width":25,"height":45},{"x":125,"y":45,"fileNum":134,"id":9671,"width":25,"height":45},{"x":0,"y":90,"fileNum":134,"id":9672,"width":25,"height":45},{"x":25,"y":90,"fileNum":134,"id":9673,"width":25,"height":45},{"x":50,"y":90,"fileNum":134,"id":9674,"width":25,"height":45},{"x":75,"y":90,"fileNum":134,"id":9675,"width":25,"height":45},{"x":100,"y":90,"fileNum":134,"id":9676,"width":25,"height":45},{"x":0,"y":135,"fileNum":134,"id":9677,"width":25,"height":45},{"x":25,"y":135,"fileNum":134,"id":9678,"width":25,"height":45},{"x":50,"y":135,"fileNum":134,"id":9679,"width":25,"height":45},{"x":75,"y":135,"fileNum":134,"id":9680,"width":25,"height":45},{"x":100,"y":135,"fileNum":134,"id":9681,"width":25,"height":45},{"x":0,"y":0,"fileNum":135,"id":9686,"width":32,"height":32},{"x":0,"y":0,"fileNum":136,"id":9687,"width":25,"height":45},{"x":25,"y":0,"fileNum":136,"id":9688,"width":25,"height":45},{"x":50,"y":0,"fileNum":136,"id":9689,"width":25,"height":45},{"x":75,"y":0,"fileNum":136,"id":9690,"width":25,"height":45},{"x":100,"y":0,"fileNum":136,"id":9691,"width":25,"height":45},{"x":125,"y":0,"fileNum":136,"id":9692,"width":25,"height":45},{"x":0,"y":45,"fileNum":136,"id":9693,"width":25,"height":45},{"x":25,"y":45,"fileNum":136,"id":9694,"width":25,"height":45},{"x":50,"y":45,"fileNum":136,"id":9695,"width":25,"height":45},{"x":75,"y":45,"fileNum":136,"id":9696,"width":25,"height":45},{"x":100,"y":45,"fileNum":136,"id":9697,"width":25,"height":45},{"x":125,"y":45,"fileNum":136,"id":9698,"width":25,"height":45},{"x":0,"y":90,"fileNum":136,"id":9699,"width":25,"height":45},{"x":25,"y":90,"fileNum":136,"id":9700,"width":25,"height":45},{"x":50,"y":90,"fileNum":136,"id":9701,"width":25,"height":45},{"x":75,"y":90,"fileNum":136,"id":9702,"width":25,"height":45},{"x":100,"y":90,"fileNum":136,"id":9703,"width":25,"height":45},{"x":0,"y":135,"fileNum":136,"id":9704,"width":25,"height":45},{"x":25,"y":135,"fileNum":136,"id":9705,"width":25,"height":45},{"x":50,"y":135,"fileNum":136,"id":9706,"width":25,"height":45},{"x":75,"y":135,"fileNum":136,"id":9707,"width":25,"height":45},{"x":100,"y":135,"fileNum":136,"id":9708,"width":25,"height":45},{"x":0,"y":0,"fileNum":137,"id":9713,"width":32,"height":32},{"x":0,"y":0,"fileNum":138,"id":9714,"width":25,"height":45},{"x":25,"y":0,"fileNum":138,"id":9715,"width":25,"height":45},{"x":50,"y":0,"fileNum":138,"id":9716,"width":25,"height":45},{"x":75,"y":0,"fileNum":138,"id":9717,"width":25,"height":45},{"x":100,"y":0,"fileNum":138,"id":9718,"width":25,"height":45},{"x":125,"y":0,"fileNum":138,"id":9719,"width":25,"height":45},{"x":0,"y":45,"fileNum":138,"id":9720,"width":25,"height":45},{"x":25,"y":45,"fileNum":138,"id":9721,"width":25,"height":45},{"x":50,"y":45,"fileNum":138,"id":9722,"width":25,"height":45},{"x":75,"y":45,"fileNum":138,"id":9723,"width":25,"height":45},{"x":100,"y":45,"fileNum":138,"id":9724,"width":25,"height":45},{"x":125,"y":45,"fileNum":138,"id":9725,"width":25,"height":45},{"x":0,"y":90,"fileNum":138,"id":9726,"width":25,"height":45},{"x":25,"y":90,"fileNum":138,"id":9727,"width":25,"height":45},{"x":50,"y":90,"fileNum":138,"id":9728,"width":25,"height":45},{"x":75,"y":90,"fileNum":138,"id":9729,"width":25,"height":45},{"x":100,"y":90,"fileNum":138,"id":9730,"width":25,"height":45},{"x":0,"y":135,"fileNum":138,"id":9731,"width":25,"height":45},{"x":25,"y":135,"fileNum":138,"id":9732,"width":25,"height":45},{"x":50,"y":135,"fileNum":138,"id":9733,"width":25,"height":45},{"x":75,"y":135,"fileNum":138,"id":9734,"width":25,"height":45},{"x":100,"y":135,"fileNum":138,"id":9735,"width":25,"height":45},{"x":0,"y":0,"fileNum":139,"id":9740,"width":32,"height":32},{"x":0,"y":0,"fileNum":140,"id":9741,"width":25,"height":45},{"x":25,"y":0,"fileNum":140,"id":9742,"width":25,"height":45},{"x":50,"y":0,"fileNum":140,"id":9743,"width":25,"height":45},{"x":75,"y":0,"fileNum":140,"id":9744,"width":25,"height":45},{"x":100,"y":0,"fileNum":140,"id":9745,"width":25,"height":45},{"x":125,"y":0,"fileNum":140,"id":9746,"width":25,"height":45},{"x":0,"y":45,"fileNum":140,"id":9747,"width":25,"height":45},{"x":25,"y":45,"fileNum":140,"id":9748,"width":25,"height":45},{"x":50,"y":45,"fileNum":140,"id":9749,"width":25,"height":45},{"x":75,"y":45,"fileNum":140,"id":9750,"width":25,"height":45},{"x":100,"y":45,"fileNum":140,"id":9751,"width":25,"height":45},{"x":125,"y":45,"fileNum":140,"id":9752,"width":25,"height":45},{"x":0,"y":90,"fileNum":140,"id":9753,"width":25,"height":45},{"x":25,"y":90,"fileNum":140,"id":9754,"width":25,"height":45},{"x":50,"y":90,"fileNum":140,"id":9755,"width":25,"height":45},{"x":75,"y":90,"fileNum":140,"id":9756,"width":25,"height":45},{"x":100,"y":90,"fileNum":140,"id":9757,"width":25,"height":45},{"x":0,"y":135,"fileNum":140,"id":9758,"width":25,"height":45},{"x":25,"y":135,"fileNum":140,"id":9759,"width":25,"height":45},{"x":50,"y":135,"fileNum":140,"id":9760,"width":25,"height":45},{"x":75,"y":135,"fileNum":140,"id":9761,"width":25,"height":45},{"x":100,"y":135,"fileNum":140,"id":9762,"width":25,"height":45},{"x":0,"y":0,"fileNum":141,"id":9767,"width":32,"height":32},{"x":0,"y":0,"fileNum":142,"id":9768,"width":25,"height":45},{"x":25,"y":0,"fileNum":142,"id":9769,"width":25,"height":45},{"x":50,"y":0,"fileNum":142,"id":9770,"width":25,"height":45},{"x":75,"y":0,"fileNum":142,"id":9771,"width":25,"height":45},{"x":100,"y":0,"fileNum":142,"id":9772,"width":25,"height":45},{"x":125,"y":0,"fileNum":142,"id":9773,"width":25,"height":45},{"x":0,"y":45,"fileNum":142,"id":9774,"width":25,"height":45},{"x":25,"y":45,"fileNum":142,"id":9775,"width":25,"height":45},{"x":50,"y":45,"fileNum":142,"id":9776,"width":25,"height":45},{"x":75,"y":45,"fileNum":142,"id":9777,"width":25,"height":45},{"x":100,"y":45,"fileNum":142,"id":9778,"width":25,"height":45},{"x":125,"y":45,"fileNum":142,"id":9779,"width":25,"height":45},{"x":0,"y":90,"fileNum":142,"id":9780,"width":25,"height":45},{"x":25,"y":90,"fileNum":142,"id":9781,"width":25,"height":45},{"x":50,"y":90,"fileNum":142,"id":9782,"width":25,"height":45},{"x":75,"y":90,"fileNum":142,"id":9783,"width":25,"height":45},{"x":100,"y":90,"fileNum":142,"id":9784,"width":25,"height":45},{"x":0,"y":135,"fileNum":142,"id":9785,"width":25,"height":45},{"x":25,"y":135,"fileNum":142,"id":9786,"width":25,"height":45},{"x":50,"y":135,"fileNum":142,"id":9787,"width":25,"height":45},{"x":75,"y":135,"fileNum":142,"id":9788,"width":25,"height":45},{"x":100,"y":135,"fileNum":142,"id":9789,"width":25,"height":45},{"x":0,"y":0,"fileNum":143,"id":9794,"width":33,"height":65},{"x":33,"y":0,"fileNum":143,"id":9795,"width":33,"height":65},{"x":66,"y":0,"fileNum":143,"id":9796,"width":33,"height":65},{"x":99,"y":0,"fileNum":143,"id":9797,"width":33,"height":65},{"x":132,"y":0,"fileNum":143,"id":9798,"width":33,"height":65},{"x":165,"y":0,"fileNum":143,"id":9799,"width":33,"height":65},{"x":198,"y":0,"fileNum":143,"id":9800,"width":33,"height":65},{"x":0,"y":65,"fileNum":143,"id":9801,"width":33,"height":65},{"x":33,"y":65,"fileNum":143,"id":9802,"width":33,"height":65},{"x":66,"y":65,"fileNum":143,"id":9803,"width":33,"height":65},{"x":99,"y":65,"fileNum":143,"id":9804,"width":33,"height":65},{"x":132,"y":65,"fileNum":143,"id":9805,"width":33,"height":65},{"x":165,"y":65,"fileNum":143,"id":9806,"width":33,"height":65},{"x":198,"y":65,"fileNum":143,"id":9807,"width":33,"height":65},{"x":0,"y":130,"fileNum":143,"id":9808,"width":33,"height":65},{"x":33,"y":130,"fileNum":143,"id":9809,"width":33,"height":65},{"x":66,"y":130,"fileNum":143,"id":9810,"width":33,"height":65},{"x":99,"y":130,"fileNum":143,"id":9811,"width":33,"height":65},{"x":132,"y":130,"fileNum":143,"id":9812,"width":33,"height":65},{"x":165,"y":130,"fileNum":143,"id":9813,"width":33,"height":65},{"x":0,"y":195,"fileNum":143,"id":9814,"width":33,"height":65},{"x":33,"y":195,"fileNum":143,"id":9815,"width":33,"height":65},{"x":66,"y":195,"fileNum":143,"id":9816,"width":33,"height":65},{"x":99,"y":195,"fileNum":143,"id":9817,"width":33,"height":65},{"x":132,"y":195,"fileNum":143,"id":9818,"width":33,"height":65},{"x":165,"y":195,"fileNum":143,"id":9819,"width":33,"height":65},{"x":0,"y":0,"fileNum":4040,"id":9824,"width":33,"height":33},{"x":33,"y":0,"fileNum":4040,"id":9825,"width":33,"height":33},{"x":66,"y":0,"fileNum":4040,"id":9826,"width":33,"height":33},{"x":99,"y":0,"fileNum":4040,"id":9827,"width":33,"height":33},{"x":132,"y":0,"fileNum":4040,"id":9828,"width":33,"height":33},{"x":165,"y":0,"fileNum":4040,"id":9829,"width":33,"height":33},{"x":0,"y":33,"fileNum":4040,"id":9830,"width":33,"height":33},{"x":33,"y":33,"fileNum":4040,"id":9831,"width":33,"height":33},{"x":66,"y":33,"fileNum":4040,"id":9832,"width":33,"height":33},{"x":99,"y":33,"fileNum":4040,"id":9833,"width":33,"height":33},{"x":132,"y":33,"fileNum":4040,"id":9834,"width":33,"height":33},{"x":165,"y":33,"fileNum":4040,"id":9835,"width":33,"height":33},{"x":0,"y":66,"fileNum":4040,"id":9836,"width":33,"height":33},{"x":33,"y":66,"fileNum":4040,"id":9837,"width":33,"height":33},{"x":66,"y":66,"fileNum":4040,"id":9838,"width":33,"height":33},{"x":99,"y":66,"fileNum":4040,"id":9839,"width":33,"height":33},{"x":132,"y":66,"fileNum":4040,"id":9840,"width":33,"height":33},{"x":165,"y":66,"fileNum":4040,"id":9841,"width":33,"height":33},{"x":0,"y":99,"fileNum":4040,"id":9842,"width":33,"height":33},{"x":33,"y":99,"fileNum":4040,"id":9843,"width":33,"height":33},{"x":66,"y":99,"fileNum":4040,"id":9844,"width":33,"height":33},{"x":99,"y":99,"fileNum":4040,"id":9845,"width":33,"height":33},{"x":132,"y":99,"fileNum":4040,"id":9846,"width":33,"height":33},{"x":0,"y":0,"fileNum":4050,"id":9852,"width":33,"height":33},{"x":33,"y":0,"fileNum":4050,"id":9853,"width":33,"height":33},{"x":66,"y":0,"fileNum":4050,"id":9854,"width":33,"height":33},{"x":99,"y":0,"fileNum":4050,"id":9855,"width":33,"height":33},{"x":132,"y":0,"fileNum":4050,"id":9856,"width":33,"height":33},{"x":165,"y":0,"fileNum":4050,"id":9857,"width":33,"height":33},{"x":198,"y":0,"fileNum":4050,"id":9858,"width":33,"height":33},{"x":0,"y":33,"fileNum":4050,"id":9859,"width":33,"height":33},{"x":33,"y":33,"fileNum":4050,"id":9860,"width":33,"height":33},{"x":66,"y":33,"fileNum":4050,"id":9861,"width":33,"height":33},{"x":99,"y":33,"fileNum":4050,"id":9862,"width":33,"height":33},{"x":132,"y":33,"fileNum":4050,"id":9863,"width":33,"height":33},{"x":165,"y":33,"fileNum":4050,"id":9864,"width":33,"height":33},{"x":198,"y":33,"fileNum":4050,"id":9865,"width":33,"height":33},{"x":0,"y":66,"fileNum":4050,"id":9866,"width":33,"height":33},{"x":33,"y":66,"fileNum":4050,"id":9867,"width":33,"height":33},{"x":66,"y":66,"fileNum":4050,"id":9868,"width":33,"height":33},{"x":99,"y":66,"fileNum":4050,"id":9869,"width":33,"height":33},{"x":132,"y":66,"fileNum":4050,"id":9870,"width":33,"height":33},{"x":165,"y":66,"fileNum":4050,"id":9871,"width":33,"height":33},{"x":0,"y":99,"fileNum":4050,"id":9873,"width":33,"height":33},{"x":33,"y":99,"fileNum":4050,"id":9874,"width":33,"height":33},{"x":66,"y":99,"fileNum":4050,"id":9875,"width":33,"height":33},{"x":99,"y":99,"fileNum":4050,"id":9876,"width":33,"height":33},{"x":132,"y":99,"fileNum":4050,"id":9877,"width":33,"height":33},{"x":165,"y":99,"fileNum":4050,"id":9878,"width":33,"height":33},{"x":0,"y":0,"fileNum":144,"id":9884,"width":25,"height":45},{"x":25,"y":0,"fileNum":144,"id":9885,"width":25,"height":45},{"x":50,"y":0,"fileNum":144,"id":9886,"width":25,"height":45},{"x":75,"y":0,"fileNum":144,"id":9887,"width":25,"height":45},{"x":100,"y":0,"fileNum":144,"id":9888,"width":25,"height":45},{"x":125,"y":0,"fileNum":144,"id":9889,"width":25,"height":45},{"x":0,"y":45,"fileNum":144,"id":9890,"width":25,"height":45},{"x":25,"y":45,"fileNum":144,"id":9891,"width":25,"height":45},{"x":50,"y":45,"fileNum":144,"id":9892,"width":25,"height":45},{"x":75,"y":45,"fileNum":144,"id":9893,"width":25,"height":45},{"x":100,"y":45,"fileNum":144,"id":9894,"width":25,"height":45},{"x":125,"y":45,"fileNum":144,"id":9895,"width":25,"height":45},{"x":0,"y":90,"fileNum":144,"id":9896,"width":25,"height":45},{"x":25,"y":90,"fileNum":144,"id":9897,"width":25,"height":45},{"x":50,"y":90,"fileNum":144,"id":9898,"width":25,"height":45},{"x":75,"y":90,"fileNum":144,"id":9899,"width":25,"height":45},{"x":100,"y":90,"fileNum":144,"id":9900,"width":25,"height":45},{"x":0,"y":135,"fileNum":144,"id":9901,"width":25,"height":45},{"x":25,"y":135,"fileNum":144,"id":9902,"width":25,"height":45},{"x":50,"y":135,"fileNum":144,"id":9903,"width":25,"height":45},{"x":75,"y":135,"fileNum":144,"id":9904,"width":25,"height":45},{"x":100,"y":135,"fileNum":144,"id":9905,"width":25,"height":45},{"x":0,"y":0,"fileNum":146,"id":9910,"width":32,"height":32},{"x":0,"y":0,"fileNum":145,"id":9911,"width":25,"height":45},{"x":25,"y":0,"fileNum":145,"id":9912,"width":25,"height":45},{"x":50,"y":0,"fileNum":145,"id":9913,"width":25,"height":45},{"x":75,"y":0,"fileNum":145,"id":9914,"width":25,"height":45},{"x":100,"y":0,"fileNum":145,"id":9915,"width":25,"height":45},{"x":125,"y":0,"fileNum":145,"id":9916,"width":25,"height":45},{"x":0,"y":45,"fileNum":145,"id":9917,"width":25,"height":45},{"x":25,"y":45,"fileNum":145,"id":9918,"width":25,"height":45},{"x":50,"y":45,"fileNum":145,"id":9919,"width":25,"height":45},{"x":75,"y":45,"fileNum":145,"id":9920,"width":25,"height":45},{"x":100,"y":45,"fileNum":145,"id":9921,"width":25,"height":45},{"x":125,"y":45,"fileNum":145,"id":9922,"width":25,"height":45},{"x":0,"y":90,"fileNum":145,"id":9923,"width":25,"height":45},{"x":25,"y":90,"fileNum":145,"id":9924,"width":25,"height":45},{"x":50,"y":90,"fileNum":145,"id":9925,"width":25,"height":45},{"x":75,"y":90,"fileNum":145,"id":9926,"width":25,"height":45},{"x":100,"y":90,"fileNum":145,"id":9927,"width":25,"height":45},{"x":0,"y":135,"fileNum":145,"id":9928,"width":25,"height":45},{"x":25,"y":135,"fileNum":145,"id":9929,"width":25,"height":45},{"x":50,"y":135,"fileNum":145,"id":9930,"width":25,"height":45},{"x":75,"y":135,"fileNum":145,"id":9931,"width":25,"height":45},{"x":100,"y":135,"fileNum":145,"id":9932,"width":25,"height":45},{"x":0,"y":0,"fileNum":148,"id":9937,"width":32,"height":32},{"x":0,"y":0,"fileNum":147,"id":9938,"width":25,"height":45},{"x":25,"y":0,"fileNum":147,"id":9939,"width":25,"height":45},{"x":50,"y":0,"fileNum":147,"id":9940,"width":25,"height":45},{"x":75,"y":0,"fileNum":147,"id":9941,"width":25,"height":45},{"x":100,"y":0,"fileNum":147,"id":9942,"width":25,"height":45},{"x":125,"y":0,"fileNum":147,"id":9943,"width":25,"height":45},{"x":0,"y":45,"fileNum":147,"id":9944,"width":25,"height":45},{"x":25,"y":45,"fileNum":147,"id":9945,"width":25,"height":45},{"x":50,"y":45,"fileNum":147,"id":9946,"width":25,"height":45},{"x":75,"y":45,"fileNum":147,"id":9947,"width":25,"height":45},{"x":100,"y":45,"fileNum":147,"id":9948,"width":25,"height":45},{"x":125,"y":45,"fileNum":147,"id":9949,"width":25,"height":45},{"x":0,"y":90,"fileNum":147,"id":9950,"width":25,"height":45},{"x":25,"y":90,"fileNum":147,"id":9951,"width":25,"height":45},{"x":50,"y":90,"fileNum":147,"id":9952,"width":25,"height":45},{"x":75,"y":90,"fileNum":147,"id":9953,"width":25,"height":45},{"x":100,"y":90,"fileNum":147,"id":9954,"width":25,"height":45},{"x":0,"y":135,"fileNum":147,"id":9955,"width":25,"height":45},{"x":25,"y":135,"fileNum":147,"id":9956,"width":25,"height":45},{"x":50,"y":135,"fileNum":147,"id":9957,"width":25,"height":45},{"x":75,"y":135,"fileNum":147,"id":9958,"width":25,"height":45},{"x":100,"y":135,"fileNum":147,"id":9959,"width":25,"height":45},{"x":0,"y":0,"fileNum":150,"id":9964,"width":32,"height":32},{"x":0,"y":0,"fileNum":149,"id":9965,"width":25,"height":45},{"x":25,"y":0,"fileNum":149,"id":9966,"width":25,"height":45},{"x":50,"y":0,"fileNum":149,"id":9967,"width":25,"height":45},{"x":75,"y":0,"fileNum":149,"id":9968,"width":25,"height":45},{"x":100,"y":0,"fileNum":149,"id":9969,"width":25,"height":45},{"x":125,"y":0,"fileNum":149,"id":9970,"width":25,"height":45},{"x":0,"y":45,"fileNum":149,"id":9971,"width":25,"height":45},{"x":25,"y":45,"fileNum":149,"id":9972,"width":25,"height":45},{"x":50,"y":45,"fileNum":149,"id":9973,"width":25,"height":45},{"x":75,"y":45,"fileNum":149,"id":9974,"width":25,"height":45},{"x":100,"y":45,"fileNum":149,"id":9975,"width":25,"height":45},{"x":125,"y":45,"fileNum":149,"id":9976,"width":25,"height":45},{"x":0,"y":90,"fileNum":149,"id":9977,"width":25,"height":45},{"x":25,"y":90,"fileNum":149,"id":9978,"width":25,"height":45},{"x":50,"y":90,"fileNum":149,"id":9979,"width":25,"height":45},{"x":75,"y":90,"fileNum":149,"id":9980,"width":25,"height":45},{"x":100,"y":90,"fileNum":149,"id":9981,"width":25,"height":45},{"x":0,"y":135,"fileNum":149,"id":9982,"width":25,"height":45},{"x":25,"y":135,"fileNum":149,"id":9983,"width":25,"height":45},{"x":50,"y":135,"fileNum":149,"id":9984,"width":25,"height":45},{"x":75,"y":135,"fileNum":149,"id":9985,"width":25,"height":45},{"x":100,"y":135,"fileNum":149,"id":9986,"width":25,"height":45},{"x":0,"y":0,"fileNum":2181,"id":9991,"width":17,"height":50},{"x":17,"y":0,"fileNum":2181,"id":9992,"width":17,"height":50},{"x":34,"y":0,"fileNum":2181,"id":9993,"width":17,"height":50},{"x":51,"y":0,"fileNum":2181,"id":9994,"width":17,"height":50},{"x":0,"y":0,"fileNum":2182,"id":9995,"width":17,"height":50},{"x":17,"y":0,"fileNum":2182,"id":9996,"width":17,"height":50},{"x":34,"y":0,"fileNum":2182,"id":9997,"width":17,"height":50},{"x":51,"y":0,"fileNum":2182,"id":9998,"width":17,"height":50},{"x":0,"y":0,"fileNum":4115,"id":10000,"width":25,"height":32},{"x":24,"y":0,"fileNum":4115,"id":10001,"width":25,"height":32},{"x":48,"y":0,"fileNum":4115,"id":10002,"width":25,"height":32},{"x":71,"y":0,"fileNum":4115,"id":10003,"width":25,"height":32},{"x":94,"y":0,"fileNum":4115,"id":10004,"width":25,"height":32},{"x":117,"y":0,"fileNum":4115,"id":10005,"width":25,"height":32},{"x":141,"y":0,"fileNum":4115,"id":10006,"width":25,"height":32},{"x":164,"y":0,"fileNum":4115,"id":10007,"width":25,"height":32},{"x":0,"y":31,"fileNum":4115,"id":10008,"width":25,"height":32},{"x":24,"y":31,"fileNum":4115,"id":10009,"width":25,"height":32},{"x":48,"y":31,"fileNum":4115,"id":10010,"width":25,"height":32},{"x":71,"y":31,"fileNum":4115,"id":10011,"width":25,"height":32},{"x":94,"y":31,"fileNum":4115,"id":10012,"width":25,"height":32},{"x":117,"y":31,"fileNum":4115,"id":10013,"width":25,"height":32},{"x":141,"y":31,"fileNum":4115,"id":10014,"width":25,"height":32},{"x":164,"y":31,"fileNum":4115,"id":10015,"width":25,"height":32},{"x":0,"y":62,"fileNum":4115,"id":10016,"width":25,"height":32},{"x":24,"y":62,"fileNum":4115,"id":10017,"width":25,"height":32},{"x":48,"y":62,"fileNum":4115,"id":10018,"width":25,"height":32},{"x":71,"y":62,"fileNum":4115,"id":10019,"width":25,"height":32},{"x":94,"y":62,"fileNum":4115,"id":10020,"width":25,"height":32},{"x":117,"y":62,"fileNum":4115,"id":10021,"width":25,"height":32},{"x":141,"y":62,"fileNum":4115,"id":10022,"width":25,"height":32},{"x":164,"y":62,"fileNum":4115,"id":10023,"width":25,"height":32},{"x":0,"y":93,"fileNum":4115,"id":10024,"width":25,"height":32},{"x":24,"y":93,"fileNum":4115,"id":10025,"width":25,"height":32},{"x":48,"y":93,"fileNum":4115,"id":10026,"width":25,"height":32},{"x":71,"y":93,"fileNum":4115,"id":10027,"width":25,"height":32},{"x":94,"y":93,"fileNum":4115,"id":10028,"width":25,"height":32},{"x":117,"y":93,"fileNum":4115,"id":10029,"width":25,"height":32},{"x":141,"y":93,"fileNum":4115,"id":10030,"width":25,"height":32},{"x":164,"y":93,"fileNum":4115,"id":10031,"width":25,"height":32},{"x":0,"y":0,"fileNum":4116,"id":10036,"width":57,"height":98},{"x":57,"y":0,"fileNum":4116,"id":10037,"width":57,"height":98},{"x":114,"y":0,"fileNum":4116,"id":10038,"width":57,"height":98},{"x":171,"y":0,"fileNum":4116,"id":10039,"width":57,"height":98},{"x":228,"y":0,"fileNum":4116,"id":10040,"width":57,"height":98},{"x":285,"y":0,"fileNum":4116,"id":10041,"width":57,"height":98},{"x":0,"y":98,"fileNum":4116,"id":10042,"width":57,"height":98},{"x":57,"y":98,"fileNum":4116,"id":10043,"width":57,"height":98},{"x":114,"y":98,"fileNum":4116,"id":10044,"width":57,"height":98},{"x":171,"y":98,"fileNum":4116,"id":10045,"width":57,"height":98},{"x":228,"y":98,"fileNum":4116,"id":10046,"width":57,"height":98},{"x":285,"y":98,"fileNum":4116,"id":10047,"width":57,"height":98},{"x":0,"y":196,"fileNum":4116,"id":10048,"width":57,"height":98},{"x":57,"y":196,"fileNum":4116,"id":10049,"width":57,"height":98},{"x":114,"y":196,"fileNum":4116,"id":10050,"width":57,"height":98},{"x":171,"y":196,"fileNum":4116,"id":10051,"width":57,"height":98},{"x":228,"y":196,"fileNum":4116,"id":10052,"width":57,"height":98},{"x":0,"y":294,"fileNum":4116,"id":10053,"width":57,"height":98},{"x":57,"y":294,"fileNum":4116,"id":10054,"width":57,"height":98},{"x":114,"y":294,"fileNum":4116,"id":10055,"width":57,"height":98},{"x":171,"y":294,"fileNum":4116,"id":10056,"width":57,"height":98},{"x":228,"y":294,"fileNum":4116,"id":10057,"width":57,"height":98},{"x":0,"y":0,"fileNum":194,"id":10064,"width":25,"height":45},{"x":25,"y":0,"fileNum":194,"id":10065,"width":25,"height":45},{"x":50,"y":0,"fileNum":194,"id":10066,"width":25,"height":45},{"x":75,"y":0,"fileNum":194,"id":10067,"width":25,"height":45},{"x":100,"y":0,"fileNum":194,"id":10068,"width":25,"height":45},{"x":125,"y":0,"fileNum":194,"id":10069,"width":25,"height":45},{"x":0,"y":45,"fileNum":194,"id":10070,"width":25,"height":45},{"x":25,"y":45,"fileNum":194,"id":10071,"width":25,"height":45},{"x":50,"y":45,"fileNum":194,"id":10072,"width":25,"height":45},{"x":75,"y":45,"fileNum":194,"id":10073,"width":25,"height":45},{"x":100,"y":45,"fileNum":194,"id":10074,"width":25,"height":45},{"x":125,"y":45,"fileNum":194,"id":10075,"width":25,"height":45},{"x":0,"y":90,"fileNum":194,"id":10076,"width":25,"height":45},{"x":25,"y":90,"fileNum":194,"id":10077,"width":25,"height":45},{"x":50,"y":90,"fileNum":194,"id":10078,"width":25,"height":45},{"x":75,"y":90,"fileNum":194,"id":10079,"width":25,"height":45},{"x":100,"y":90,"fileNum":194,"id":10080,"width":25,"height":45},{"x":0,"y":135,"fileNum":194,"id":10081,"width":25,"height":45},{"x":25,"y":135,"fileNum":194,"id":10082,"width":25,"height":45},{"x":50,"y":135,"fileNum":194,"id":10083,"width":25,"height":45},{"x":75,"y":135,"fileNum":194,"id":10084,"width":25,"height":45},{"x":100,"y":135,"fileNum":194,"id":10085,"width":25,"height":45},{"x":0,"y":0,"fileNum":195,"id":10090,"width":25,"height":45},{"x":25,"y":0,"fileNum":195,"id":10091,"width":25,"height":45},{"x":50,"y":0,"fileNum":195,"id":10092,"width":25,"height":45},{"x":75,"y":0,"fileNum":195,"id":10093,"width":25,"height":45},{"x":100,"y":0,"fileNum":195,"id":10094,"width":25,"height":45},{"x":125,"y":0,"fileNum":195,"id":10095,"width":25,"height":45},{"x":0,"y":45,"fileNum":195,"id":10096,"width":25,"height":45},{"x":25,"y":45,"fileNum":195,"id":10097,"width":25,"height":45},{"x":50,"y":45,"fileNum":195,"id":10098,"width":25,"height":45},{"x":75,"y":45,"fileNum":195,"id":10099,"width":25,"height":45},{"x":100,"y":45,"fileNum":195,"id":10100,"width":25,"height":45},{"x":125,"y":45,"fileNum":195,"id":10101,"width":25,"height":45},{"x":0,"y":90,"fileNum":195,"id":10102,"width":25,"height":45},{"x":25,"y":90,"fileNum":195,"id":10103,"width":25,"height":45},{"x":50,"y":90,"fileNum":195,"id":10104,"width":25,"height":45},{"x":75,"y":90,"fileNum":195,"id":10105,"width":25,"height":45},{"x":100,"y":90,"fileNum":195,"id":10106,"width":25,"height":45},{"x":0,"y":135,"fileNum":195,"id":10107,"width":25,"height":45},{"x":25,"y":135,"fileNum":195,"id":10108,"width":25,"height":45},{"x":50,"y":135,"fileNum":195,"id":10109,"width":25,"height":45},{"x":75,"y":135,"fileNum":195,"id":10110,"width":25,"height":45},{"x":100,"y":135,"fileNum":195,"id":10111,"width":25,"height":45},{"x":0,"y":0,"fileNum":196,"id":10116,"width":25,"height":45},{"x":25,"y":0,"fileNum":196,"id":10117,"width":25,"height":45},{"x":50,"y":0,"fileNum":196,"id":10118,"width":25,"height":45},{"x":75,"y":0,"fileNum":196,"id":10119,"width":25,"height":45},{"x":100,"y":0,"fileNum":196,"id":10120,"width":25,"height":45},{"x":125,"y":0,"fileNum":196,"id":10121,"width":25,"height":45},{"x":0,"y":45,"fileNum":196,"id":10122,"width":25,"height":45},{"x":25,"y":45,"fileNum":196,"id":10123,"width":25,"height":45},{"x":50,"y":45,"fileNum":196,"id":10124,"width":25,"height":45},{"x":75,"y":45,"fileNum":196,"id":10125,"width":25,"height":45},{"x":100,"y":45,"fileNum":196,"id":10126,"width":25,"height":45},{"x":125,"y":45,"fileNum":196,"id":10127,"width":25,"height":45},{"x":0,"y":90,"fileNum":196,"id":10128,"width":25,"height":45},{"x":25,"y":90,"fileNum":196,"id":10129,"width":25,"height":45},{"x":50,"y":90,"fileNum":196,"id":10130,"width":25,"height":45},{"x":75,"y":90,"fileNum":196,"id":10131,"width":25,"height":45},{"x":100,"y":90,"fileNum":196,"id":10132,"width":25,"height":45},{"x":0,"y":135,"fileNum":196,"id":10133,"width":25,"height":45},{"x":25,"y":135,"fileNum":196,"id":10134,"width":25,"height":45},{"x":50,"y":135,"fileNum":196,"id":10135,"width":25,"height":45},{"x":75,"y":135,"fileNum":196,"id":10136,"width":25,"height":45},{"x":100,"y":135,"fileNum":196,"id":10137,"width":25,"height":45},{"x":0,"y":0,"fileNum":197,"id":10142,"width":25,"height":45},{"x":25,"y":0,"fileNum":197,"id":10143,"width":25,"height":45},{"x":50,"y":0,"fileNum":197,"id":10144,"width":25,"height":45},{"x":75,"y":0,"fileNum":197,"id":10145,"width":25,"height":45},{"x":100,"y":0,"fileNum":197,"id":10146,"width":25,"height":45},{"x":125,"y":0,"fileNum":197,"id":10147,"width":25,"height":45},{"x":0,"y":45,"fileNum":197,"id":10148,"width":25,"height":45},{"x":25,"y":45,"fileNum":197,"id":10149,"width":25,"height":45},{"x":50,"y":45,"fileNum":197,"id":10150,"width":25,"height":45},{"x":75,"y":45,"fileNum":197,"id":10151,"width":25,"height":45},{"x":100,"y":45,"fileNum":197,"id":10152,"width":25,"height":45},{"x":125,"y":45,"fileNum":197,"id":10153,"width":25,"height":45},{"x":0,"y":90,"fileNum":197,"id":10154,"width":25,"height":45},{"x":25,"y":90,"fileNum":197,"id":10155,"width":25,"height":45},{"x":50,"y":90,"fileNum":197,"id":10156,"width":25,"height":45},{"x":75,"y":90,"fileNum":197,"id":10157,"width":25,"height":45},{"x":100,"y":90,"fileNum":197,"id":10158,"width":25,"height":45},{"x":0,"y":135,"fileNum":197,"id":10159,"width":25,"height":45},{"x":25,"y":135,"fileNum":197,"id":10160,"width":25,"height":45},{"x":50,"y":135,"fileNum":197,"id":10161,"width":25,"height":45},{"x":75,"y":135,"fileNum":197,"id":10162,"width":25,"height":45},{"x":100,"y":135,"fileNum":197,"id":10163,"width":25,"height":45},{"x":0,"y":0,"fileNum":198,"id":10168,"width":25,"height":45},{"x":25,"y":0,"fileNum":198,"id":10169,"width":25,"height":45},{"x":50,"y":0,"fileNum":198,"id":10170,"width":25,"height":45},{"x":75,"y":0,"fileNum":198,"id":10171,"width":25,"height":45},{"x":100,"y":0,"fileNum":198,"id":10172,"width":25,"height":45},{"x":125,"y":0,"fileNum":198,"id":10173,"width":25,"height":45},{"x":0,"y":45,"fileNum":198,"id":10174,"width":25,"height":45},{"x":25,"y":45,"fileNum":198,"id":10175,"width":25,"height":45},{"x":50,"y":45,"fileNum":198,"id":10176,"width":25,"height":45},{"x":75,"y":45,"fileNum":198,"id":10177,"width":25,"height":45},{"x":100,"y":45,"fileNum":198,"id":10178,"width":25,"height":45},{"x":125,"y":45,"fileNum":198,"id":10179,"width":25,"height":45},{"x":0,"y":90,"fileNum":198,"id":10180,"width":25,"height":45},{"x":25,"y":90,"fileNum":198,"id":10181,"width":25,"height":45},{"x":50,"y":90,"fileNum":198,"id":10182,"width":25,"height":45},{"x":75,"y":90,"fileNum":198,"id":10183,"width":25,"height":45},{"x":100,"y":90,"fileNum":198,"id":10184,"width":25,"height":45},{"x":0,"y":135,"fileNum":198,"id":10185,"width":25,"height":45},{"x":25,"y":135,"fileNum":198,"id":10186,"width":25,"height":45},{"x":50,"y":135,"fileNum":198,"id":10187,"width":25,"height":45},{"x":75,"y":135,"fileNum":198,"id":10188,"width":25,"height":45},{"x":100,"y":135,"fileNum":198,"id":10189,"width":25,"height":45},{"x":0,"y":0,"fileNum":4119,"id":10194,"width":285,"height":232},{"x":285,"y":0,"fileNum":4119,"id":10195,"width":285,"height":232},{"x":570,"y":0,"fileNum":4119,"id":10196,"width":285,"height":232},{"x":0,"y":232,"fileNum":4119,"id":10197,"width":285,"height":232},{"x":285,"y":232,"fileNum":4119,"id":10198,"width":285,"height":232},{"x":570,"y":232,"fileNum":4119,"id":10199,"width":285,"height":232},{"x":0,"y":464,"fileNum":4119,"id":10200,"width":285,"height":232},{"x":285,"y":464,"fileNum":4119,"id":10201,"width":285,"height":232},{"x":570,"y":464,"fileNum":4119,"id":10202,"width":285,"height":232},{"x":0,"y":696,"fileNum":4119,"id":10203,"width":285,"height":232},{"x":285,"y":696,"fileNum":4119,"id":10204,"width":285,"height":232},{"x":570,"y":696,"fileNum":4119,"id":10205,"width":285,"height":232},{"x":0,"y":0,"fileNum":4120,"id":10206,"width":288,"height":282},{"x":288,"y":0,"fileNum":4120,"id":10207,"width":288,"height":282},{"x":576,"y":0,"fileNum":4120,"id":10208,"width":288,"height":282},{"x":0,"y":282,"fileNum":4120,"id":10209,"width":288,"height":282},{"x":288,"y":282,"fileNum":4120,"id":10210,"width":288,"height":282},{"x":576,"y":282,"fileNum":4120,"id":10211,"width":288,"height":282},{"x":0,"y":564,"fileNum":4120,"id":10212,"width":288,"height":282},{"x":288,"y":564,"fileNum":4120,"id":10213,"width":288,"height":282},{"x":576,"y":564,"fileNum":4120,"id":10214,"width":288,"height":282},{"x":0,"y":846,"fileNum":4120,"id":10215,"width":288,"height":282},{"x":288,"y":846,"fileNum":4120,"id":10216,"width":288,"height":282},{"x":576,"y":846,"fileNum":4120,"id":10217,"width":288,"height":282},{"x":0,"y":0,"fileNum":4117,"id":10218,"width":373,"height":236},{"x":373,"y":0,"fileNum":4117,"id":10219,"width":373,"height":236},{"x":746,"y":0,"fileNum":4117,"id":10220,"width":373,"height":236},{"x":0,"y":236,"fileNum":4117,"id":10221,"width":373,"height":236},{"x":373,"y":236,"fileNum":4117,"id":10222,"width":373,"height":236},{"x":746,"y":236,"fileNum":4117,"id":10223,"width":373,"height":236},{"x":0,"y":472,"fileNum":4117,"id":10224,"width":373,"height":236},{"x":373,"y":472,"fileNum":4117,"id":10225,"width":373,"height":236},{"x":746,"y":472,"fileNum":4117,"id":10226,"width":373,"height":236},{"x":0,"y":708,"fileNum":4117,"id":10227,"width":373,"height":236},{"x":373,"y":708,"fileNum":4117,"id":10228,"width":373,"height":236},{"x":746,"y":708,"fileNum":4117,"id":10229,"width":373,"height":236},{"x":0,"y":0,"fileNum":4118,"id":10230,"width":373,"height":236},{"x":373,"y":0,"fileNum":4118,"id":10231,"width":373,"height":236},{"x":746,"y":0,"fileNum":4118,"id":10232,"width":373,"height":236},{"x":0,"y":236,"fileNum":4118,"id":10233,"width":373,"height":236},{"x":373,"y":236,"fileNum":4118,"id":10234,"width":373,"height":236},{"x":746,"y":236,"fileNum":4118,"id":10235,"width":373,"height":236},{"x":0,"y":472,"fileNum":4118,"id":10236,"width":373,"height":236},{"x":373,"y":472,"fileNum":4118,"id":10237,"width":373,"height":236},{"x":746,"y":472,"fileNum":4118,"id":10238,"width":373,"height":236},{"x":0,"y":708,"fileNum":4118,"id":10239,"width":373,"height":236},{"x":373,"y":708,"fileNum":4118,"id":10240,"width":373,"height":236},{"x":746,"y":708,"fileNum":4118,"id":10241,"width":373,"height":236},{"x":0,"y":0,"fileNum":16059,"id":10246,"width":25,"height":45},{"x":25,"y":0,"fileNum":16059,"id":10247,"width":25,"height":45},{"x":50,"y":0,"fileNum":16059,"id":10248,"width":25,"height":45},{"x":75,"y":0,"fileNum":16059,"id":10249,"width":25,"height":45},{"x":100,"y":0,"fileNum":16059,"id":10250,"width":25,"height":45},{"x":125,"y":0,"fileNum":16059,"id":10251,"width":25,"height":45},{"x":0,"y":45,"fileNum":16059,"id":10252,"width":25,"height":45},{"x":25,"y":45,"fileNum":16059,"id":10253,"width":25,"height":45},{"x":50,"y":45,"fileNum":16059,"id":10254,"width":25,"height":45},{"x":75,"y":45,"fileNum":16059,"id":10255,"width":25,"height":45},{"x":100,"y":45,"fileNum":16059,"id":10256,"width":25,"height":45},{"x":125,"y":45,"fileNum":16059,"id":10257,"width":25,"height":45},{"x":0,"y":90,"fileNum":16059,"id":10258,"width":25,"height":45},{"x":25,"y":90,"fileNum":16059,"id":10259,"width":25,"height":45},{"x":50,"y":90,"fileNum":16059,"id":10260,"width":25,"height":45},{"x":75,"y":90,"fileNum":16059,"id":10261,"width":25,"height":45},{"x":100,"y":90,"fileNum":16059,"id":10262,"width":25,"height":45},{"x":0,"y":135,"fileNum":16059,"id":10263,"width":25,"height":45},{"x":25,"y":135,"fileNum":16059,"id":10264,"width":25,"height":45},{"x":50,"y":135,"fileNum":16059,"id":10265,"width":25,"height":45},{"x":75,"y":135,"fileNum":16059,"id":10266,"width":25,"height":45},{"x":100,"y":135,"fileNum":16059,"id":10267,"width":25,"height":45},{"x":0,"y":0,"fileNum":16060,"id":10272,"width":25,"height":45},{"x":25,"y":0,"fileNum":16060,"id":10273,"width":25,"height":45},{"x":50,"y":0,"fileNum":16060,"id":10274,"width":25,"height":45},{"x":75,"y":0,"fileNum":16060,"id":10275,"width":25,"height":45},{"x":100,"y":0,"fileNum":16060,"id":10276,"width":25,"height":45},{"x":125,"y":0,"fileNum":16060,"id":10277,"width":25,"height":45},{"x":0,"y":45,"fileNum":16060,"id":10278,"width":25,"height":45},{"x":25,"y":45,"fileNum":16060,"id":10279,"width":25,"height":45},{"x":50,"y":45,"fileNum":16060,"id":10280,"width":25,"height":45},{"x":75,"y":45,"fileNum":16060,"id":10281,"width":25,"height":45},{"x":100,"y":45,"fileNum":16060,"id":10282,"width":25,"height":45},{"x":125,"y":45,"fileNum":16060,"id":10283,"width":25,"height":45},{"x":0,"y":90,"fileNum":16060,"id":10284,"width":25,"height":45},{"x":25,"y":90,"fileNum":16060,"id":10285,"width":25,"height":45},{"x":50,"y":90,"fileNum":16060,"id":10286,"width":25,"height":45},{"x":75,"y":90,"fileNum":16060,"id":10287,"width":25,"height":45},{"x":100,"y":90,"fileNum":16060,"id":10288,"width":25,"height":45},{"x":0,"y":135,"fileNum":16060,"id":10289,"width":25,"height":45},{"x":25,"y":135,"fileNum":16060,"id":10290,"width":25,"height":45},{"x":50,"y":135,"fileNum":16060,"id":10291,"width":25,"height":45},{"x":75,"y":135,"fileNum":16060,"id":10292,"width":25,"height":45},{"x":100,"y":135,"fileNum":16060,"id":10293,"width":25,"height":45},{"x":0,"y":0,"fileNum":16061,"id":10298,"width":25,"height":45},{"x":25,"y":0,"fileNum":16061,"id":10299,"width":25,"height":45},{"x":50,"y":0,"fileNum":16061,"id":10300,"width":25,"height":45},{"x":75,"y":0,"fileNum":16061,"id":10301,"width":25,"height":45},{"x":100,"y":0,"fileNum":16061,"id":10302,"width":25,"height":45},{"x":125,"y":0,"fileNum":16061,"id":10303,"width":25,"height":45},{"x":0,"y":45,"fileNum":16061,"id":10304,"width":25,"height":45},{"x":25,"y":45,"fileNum":16061,"id":10305,"width":25,"height":45},{"x":50,"y":45,"fileNum":16061,"id":10306,"width":25,"height":45},{"x":75,"y":45,"fileNum":16061,"id":10307,"width":25,"height":45},{"x":100,"y":45,"fileNum":16061,"id":10308,"width":25,"height":45},{"x":125,"y":45,"fileNum":16061,"id":10309,"width":25,"height":45},{"x":0,"y":90,"fileNum":16061,"id":10310,"width":25,"height":45},{"x":25,"y":90,"fileNum":16061,"id":10311,"width":25,"height":45},{"x":50,"y":90,"fileNum":16061,"id":10312,"width":25,"height":45},{"x":75,"y":90,"fileNum":16061,"id":10313,"width":25,"height":45},{"x":100,"y":90,"fileNum":16061,"id":10314,"width":25,"height":45},{"x":0,"y":135,"fileNum":16061,"id":10315,"width":25,"height":45},{"x":25,"y":135,"fileNum":16061,"id":10316,"width":25,"height":45},{"x":50,"y":135,"fileNum":16061,"id":10317,"width":25,"height":45},{"x":75,"y":135,"fileNum":16061,"id":10318,"width":25,"height":45},{"x":100,"y":135,"fileNum":16061,"id":10319,"width":25,"height":45},{"x":0,"y":0,"fileNum":4121,"id":10324,"width":50,"height":75},{"x":50,"y":0,"fileNum":4121,"id":10325,"width":50,"height":75},{"x":100,"y":0,"fileNum":4121,"id":10326,"width":50,"height":75},{"x":150,"y":0,"fileNum":4121,"id":10327,"width":50,"height":75},{"x":200,"y":0,"fileNum":4121,"id":10328,"width":50,"height":75},{"x":250,"y":0,"fileNum":4121,"id":10329,"width":50,"height":75},{"x":300,"y":0,"fileNum":4121,"id":10330,"width":50,"height":75},{"x":350,"y":0,"fileNum":4121,"id":10331,"width":50,"height":75},{"x":400,"y":0,"fileNum":4121,"id":10332,"width":50,"height":75},{"x":0,"y":75,"fileNum":4121,"id":10333,"width":50,"height":75},{"x":50,"y":75,"fileNum":4121,"id":10334,"width":50,"height":75},{"x":100,"y":75,"fileNum":4121,"id":10335,"width":50,"height":75},{"x":150,"y":75,"fileNum":4121,"id":10336,"width":50,"height":75},{"x":200,"y":75,"fileNum":4121,"id":10337,"width":50,"height":75},{"x":250,"y":75,"fileNum":4121,"id":10338,"width":50,"height":75},{"x":300,"y":75,"fileNum":4121,"id":10339,"width":50,"height":75},{"x":350,"y":75,"fileNum":4121,"id":10340,"width":50,"height":75},{"x":400,"y":75,"fileNum":4121,"id":10341,"width":50,"height":75},{"x":0,"y":150,"fileNum":4121,"id":10342,"width":59,"height":75},{"x":59,"y":150,"fileNum":4121,"id":10343,"width":59,"height":75},{"x":118,"y":150,"fileNum":4121,"id":10344,"width":59,"height":75},{"x":177,"y":150,"fileNum":4121,"id":10345,"width":59,"height":75},{"x":236,"y":150,"fileNum":4121,"id":10346,"width":59,"height":75},{"x":295,"y":150,"fileNum":4121,"id":10347,"width":59,"height":75},{"x":354,"y":150,"fileNum":4121,"id":10348,"width":59,"height":75},{"x":413,"y":150,"fileNum":4121,"id":10349,"width":59,"height":75},{"x":472,"y":150,"fileNum":4121,"id":10350,"width":59,"height":75},{"x":0,"y":225,"fileNum":4121,"id":10351,"width":59,"height":75},{"x":59,"y":225,"fileNum":4121,"id":10352,"width":59,"height":75},{"x":118,"y":225,"fileNum":4121,"id":10353,"width":59,"height":75},{"x":177,"y":225,"fileNum":4121,"id":10354,"width":59,"height":75},{"x":236,"y":225,"fileNum":4121,"id":10355,"width":59,"height":75},{"x":295,"y":225,"fileNum":4121,"id":10356,"width":59,"height":75},{"x":354,"y":225,"fileNum":4121,"id":10357,"width":59,"height":75},{"x":413,"y":225,"fileNum":4121,"id":10358,"width":59,"height":75},{"x":472,"y":225,"fileNum":4121,"id":10359,"width":59,"height":75},{"x":0,"y":0,"fileNum":17008,"id":10364,"width":96,"height":66},{"x":96,"y":0,"fileNum":17008,"id":10365,"width":96,"height":66},{"x":192,"y":0,"fileNum":17008,"id":10366,"width":96,"height":66},{"x":288,"y":0,"fileNum":17008,"id":10367,"width":96,"height":66},{"x":0,"y":66,"fileNum":17008,"id":10368,"width":96,"height":66},{"x":96,"y":66,"fileNum":17008,"id":10369,"width":96,"height":66},{"x":192,"y":66,"fileNum":17008,"id":10370,"width":96,"height":66},{"x":288,"y":66,"fileNum":17008,"id":10371,"width":96,"height":66},{"x":0,"y":132,"fileNum":17008,"id":10372,"width":66,"height":94},{"x":66,"y":132,"fileNum":17008,"id":10373,"width":66,"height":94},{"x":132,"y":132,"fileNum":17008,"id":10374,"width":66,"height":94},{"x":198,"y":132,"fileNum":17008,"id":10375,"width":66,"height":94},{"x":0,"y":226,"fileNum":17008,"id":10376,"width":66,"height":94},{"x":66,"y":226,"fileNum":17008,"id":10377,"width":66,"height":94},{"x":132,"y":227,"fileNum":17008,"id":10378,"width":66,"height":94},{"x":198,"y":226,"fileNum":17008,"id":10379,"width":66,"height":94},{"x":0,"y":0,"fileNum":17009,"id":10384,"width":97,"height":67},{"x":97,"y":0,"fileNum":17009,"id":10385,"width":97,"height":67},{"x":194,"y":0,"fileNum":17009,"id":10386,"width":97,"height":67},{"x":291,"y":0,"fileNum":17009,"id":10387,"width":97,"height":67},{"x":0,"y":67,"fileNum":17009,"id":10388,"width":97,"height":67},{"x":97,"y":67,"fileNum":17009,"id":10389,"width":97,"height":67},{"x":194,"y":67,"fileNum":17009,"id":10390,"width":97,"height":67},{"x":291,"y":67,"fileNum":17009,"id":10391,"width":97,"height":67},{"x":0,"y":134,"fileNum":17009,"id":10392,"width":65,"height":97},{"x":65,"y":134,"fileNum":17009,"id":10393,"width":65,"height":97},{"x":130,"y":134,"fileNum":17009,"id":10394,"width":65,"height":97},{"x":195,"y":134,"fileNum":17009,"id":10395,"width":65,"height":97},{"x":0,"y":231,"fileNum":17009,"id":10396,"width":65,"height":99},{"x":65,"y":231,"fileNum":17009,"id":10397,"width":65,"height":99},{"x":130,"y":231,"fileNum":17009,"id":10398,"width":65,"height":99},{"x":195,"y":231,"fileNum":17009,"id":10399,"width":65,"height":99},{"x":0,"y":0,"fileNum":17010,"id":10404,"width":97,"height":67},{"x":97,"y":0,"fileNum":17010,"id":10405,"width":97,"height":67},{"x":194,"y":0,"fileNum":17010,"id":10406,"width":97,"height":67},{"x":291,"y":0,"fileNum":17010,"id":10407,"width":97,"height":67},{"x":0,"y":67,"fileNum":17010,"id":10408,"width":97,"height":67},{"x":97,"y":67,"fileNum":17010,"id":10409,"width":97,"height":67},{"x":194,"y":67,"fileNum":17010,"id":10410,"width":97,"height":67},{"x":291,"y":67,"fileNum":17010,"id":10411,"width":97,"height":67},{"x":0,"y":134,"fileNum":17010,"id":10412,"width":65,"height":97},{"x":65,"y":134,"fileNum":17010,"id":10413,"width":65,"height":97},{"x":130,"y":134,"fileNum":17010,"id":10414,"width":65,"height":97},{"x":195,"y":134,"fileNum":17010,"id":10415,"width":65,"height":97},{"x":0,"y":231,"fileNum":17010,"id":10416,"width":65,"height":99},{"x":65,"y":231,"fileNum":17010,"id":10417,"width":65,"height":99},{"x":130,"y":231,"fileNum":17010,"id":10418,"width":65,"height":99},{"x":195,"y":231,"fileNum":17010,"id":10419,"width":65,"height":99},{"x":0,"y":0,"fileNum":17011,"id":10424,"width":97,"height":67},{"x":97,"y":0,"fileNum":17011,"id":10425,"width":97,"height":67},{"x":194,"y":0,"fileNum":17011,"id":10426,"width":97,"height":67},{"x":291,"y":0,"fileNum":17011,"id":10427,"width":97,"height":67},{"x":0,"y":67,"fileNum":17011,"id":10428,"width":97,"height":67},{"x":97,"y":67,"fileNum":17011,"id":10429,"width":97,"height":67},{"x":194,"y":67,"fileNum":17011,"id":10430,"width":97,"height":67},{"x":291,"y":67,"fileNum":17011,"id":10431,"width":97,"height":67},{"x":0,"y":134,"fileNum":17011,"id":10432,"width":65,"height":97},{"x":65,"y":134,"fileNum":17011,"id":10433,"width":65,"height":97},{"x":130,"y":134,"fileNum":17011,"id":10434,"width":65,"height":97},{"x":195,"y":134,"fileNum":17011,"id":10435,"width":65,"height":97},{"x":0,"y":231,"fileNum":17011,"id":10436,"width":65,"height":99},{"x":65,"y":231,"fileNum":17011,"id":10437,"width":65,"height":99},{"x":130,"y":231,"fileNum":17011,"id":10438,"width":65,"height":99},{"x":195,"y":231,"fileNum":17011,"id":10439,"width":65,"height":99},{"x":0,"y":0,"fileNum":16064,"id":10444,"width":25,"height":45},{"x":25,"y":0,"fileNum":16064,"id":10445,"width":25,"height":45},{"x":50,"y":0,"fileNum":16064,"id":10446,"width":25,"height":45},{"x":75,"y":0,"fileNum":16064,"id":10447,"width":25,"height":45},{"x":100,"y":0,"fileNum":16064,"id":10448,"width":25,"height":45},{"x":125,"y":0,"fileNum":16064,"id":10449,"width":25,"height":45},{"x":0,"y":45,"fileNum":16064,"id":10450,"width":25,"height":45},{"x":25,"y":45,"fileNum":16064,"id":10451,"width":25,"height":45},{"x":50,"y":45,"fileNum":16064,"id":10452,"width":25,"height":45},{"x":75,"y":45,"fileNum":16064,"id":10453,"width":25,"height":45},{"x":100,"y":45,"fileNum":16064,"id":10454,"width":25,"height":45},{"x":125,"y":45,"fileNum":16064,"id":10455,"width":25,"height":45},{"x":0,"y":90,"fileNum":16064,"id":10456,"width":25,"height":45},{"x":25,"y":90,"fileNum":16064,"id":10457,"width":25,"height":45},{"x":50,"y":90,"fileNum":16064,"id":10458,"width":25,"height":45},{"x":75,"y":90,"fileNum":16064,"id":10459,"width":25,"height":45},{"x":100,"y":90,"fileNum":16064,"id":10460,"width":25,"height":45},{"x":0,"y":135,"fileNum":16064,"id":10461,"width":25,"height":45},{"x":25,"y":135,"fileNum":16064,"id":10462,"width":25,"height":45},{"x":50,"y":135,"fileNum":16064,"id":10463,"width":25,"height":45},{"x":75,"y":135,"fileNum":16064,"id":10464,"width":25,"height":45},{"x":100,"y":135,"fileNum":16064,"id":10465,"width":25,"height":45},{"x":0,"y":0,"fileNum":4138,"id":10470,"width":24,"height":31},{"x":24,"y":0,"fileNum":4138,"id":10471,"width":24,"height":31},{"x":48,"y":0,"fileNum":4138,"id":10472,"width":24,"height":31},{"x":72,"y":0,"fileNum":4138,"id":10473,"width":24,"height":31},{"x":96,"y":0,"fileNum":4138,"id":10474,"width":24,"height":31},{"x":120,"y":0,"fileNum":4138,"id":10475,"width":24,"height":31},{"x":144,"y":0,"fileNum":4138,"id":10476,"width":24,"height":31},{"x":168,"y":0,"fileNum":4138,"id":10477,"width":24,"height":31},{"x":0,"y":31,"fileNum":4138,"id":10478,"width":24,"height":31},{"x":24,"y":31,"fileNum":4138,"id":10479,"width":24,"height":31},{"x":48,"y":31,"fileNum":4138,"id":10480,"width":24,"height":31},{"x":72,"y":31,"fileNum":4138,"id":10481,"width":24,"height":31},{"x":96,"y":31,"fileNum":4138,"id":10482,"width":24,"height":31},{"x":120,"y":31,"fileNum":4138,"id":10483,"width":24,"height":31},{"x":144,"y":31,"fileNum":4138,"id":10484,"width":24,"height":31},{"x":168,"y":31,"fileNum":4138,"id":10485,"width":24,"height":31},{"x":0,"y":62,"fileNum":4138,"id":10486,"width":24,"height":31},{"x":24,"y":62,"fileNum":4138,"id":10487,"width":24,"height":31},{"x":48,"y":62,"fileNum":4138,"id":10488,"width":24,"height":31},{"x":72,"y":62,"fileNum":4138,"id":10489,"width":24,"height":31},{"x":96,"y":62,"fileNum":4138,"id":10490,"width":24,"height":31},{"x":120,"y":62,"fileNum":4138,"id":10491,"width":24,"height":31},{"x":144,"y":62,"fileNum":4138,"id":10492,"width":24,"height":31},{"x":168,"y":62,"fileNum":4138,"id":10493,"width":24,"height":31},{"x":0,"y":93,"fileNum":4138,"id":10494,"width":24,"height":31},{"x":24,"y":93,"fileNum":4138,"id":10495,"width":24,"height":31},{"x":48,"y":93,"fileNum":4138,"id":10496,"width":24,"height":31},{"x":72,"y":93,"fileNum":4138,"id":10497,"width":24,"height":31},{"x":96,"y":93,"fileNum":4138,"id":10498,"width":24,"height":31},{"x":120,"y":93,"fileNum":4138,"id":10499,"width":24,"height":31},{"x":144,"y":93,"fileNum":4138,"id":10500,"width":24,"height":31},{"x":168,"y":93,"fileNum":4138,"id":10501,"width":24,"height":31},{"x":0,"y":0,"fileNum":348,"id":10506,"width":25,"height":45},{"x":25,"y":0,"fileNum":348,"id":10507,"width":25,"height":45},{"x":50,"y":0,"fileNum":348,"id":10508,"width":25,"height":45},{"x":75,"y":0,"fileNum":348,"id":10509,"width":25,"height":45},{"x":100,"y":0,"fileNum":348,"id":10510,"width":25,"height":45},{"x":125,"y":0,"fileNum":348,"id":10511,"width":25,"height":45},{"x":0,"y":45,"fileNum":348,"id":10512,"width":25,"height":45},{"x":25,"y":45,"fileNum":348,"id":10513,"width":25,"height":45},{"x":50,"y":45,"fileNum":348,"id":10514,"width":25,"height":45},{"x":75,"y":45,"fileNum":348,"id":10515,"width":25,"height":45},{"x":100,"y":45,"fileNum":348,"id":10516,"width":25,"height":45},{"x":125,"y":45,"fileNum":348,"id":10517,"width":25,"height":45},{"x":0,"y":90,"fileNum":348,"id":10518,"width":25,"height":45},{"x":25,"y":90,"fileNum":348,"id":10519,"width":25,"height":45},{"x":50,"y":90,"fileNum":348,"id":10520,"width":25,"height":45},{"x":75,"y":90,"fileNum":348,"id":10521,"width":25,"height":45},{"x":100,"y":90,"fileNum":348,"id":10522,"width":25,"height":45},{"x":0,"y":135,"fileNum":348,"id":10523,"width":25,"height":45},{"x":25,"y":135,"fileNum":348,"id":10524,"width":25,"height":45},{"x":50,"y":135,"fileNum":348,"id":10525,"width":25,"height":45},{"x":75,"y":135,"fileNum":348,"id":10526,"width":25,"height":45},{"x":100,"y":135,"fileNum":348,"id":10527,"width":25,"height":45},{"x":0,"y":0,"fileNum":350,"id":10532,"width":25,"height":45},{"x":25,"y":0,"fileNum":350,"id":10533,"width":25,"height":45},{"x":50,"y":0,"fileNum":350,"id":10534,"width":25,"height":45},{"x":75,"y":0,"fileNum":350,"id":10535,"width":25,"height":45},{"x":100,"y":0,"fileNum":350,"id":10536,"width":25,"height":45},{"x":125,"y":0,"fileNum":350,"id":10537,"width":25,"height":45},{"x":0,"y":45,"fileNum":350,"id":10538,"width":25,"height":45},{"x":25,"y":45,"fileNum":350,"id":10539,"width":25,"height":45},{"x":50,"y":45,"fileNum":350,"id":10540,"width":25,"height":45},{"x":75,"y":45,"fileNum":350,"id":10541,"width":25,"height":45},{"x":100,"y":45,"fileNum":350,"id":10542,"width":25,"height":45},{"x":125,"y":45,"fileNum":350,"id":10543,"width":25,"height":45},{"x":0,"y":90,"fileNum":350,"id":10544,"width":25,"height":45},{"x":25,"y":90,"fileNum":350,"id":10545,"width":25,"height":45},{"x":50,"y":90,"fileNum":350,"id":10546,"width":25,"height":45},{"x":75,"y":90,"fileNum":350,"id":10547,"width":25,"height":45},{"x":100,"y":90,"fileNum":350,"id":10548,"width":25,"height":45},{"x":0,"y":135,"fileNum":350,"id":10549,"width":25,"height":45},{"x":25,"y":135,"fileNum":350,"id":10550,"width":25,"height":45},{"x":50,"y":135,"fileNum":350,"id":10551,"width":25,"height":45},{"x":75,"y":135,"fileNum":350,"id":10552,"width":25,"height":45},{"x":100,"y":135,"fileNum":350,"id":10553,"width":25,"height":45},{"x":0,"y":0,"fileNum":351,"id":10558,"width":25,"height":45},{"x":25,"y":0,"fileNum":351,"id":10559,"width":25,"height":45},{"x":50,"y":0,"fileNum":351,"id":10560,"width":25,"height":45},{"x":75,"y":0,"fileNum":351,"id":10561,"width":25,"height":45},{"x":100,"y":0,"fileNum":351,"id":10562,"width":25,"height":45},{"x":125,"y":0,"fileNum":351,"id":10563,"width":25,"height":45},{"x":0,"y":45,"fileNum":351,"id":10564,"width":25,"height":45},{"x":25,"y":45,"fileNum":351,"id":10565,"width":25,"height":45},{"x":50,"y":45,"fileNum":351,"id":10566,"width":25,"height":45},{"x":75,"y":45,"fileNum":351,"id":10567,"width":25,"height":45},{"x":100,"y":45,"fileNum":351,"id":10568,"width":25,"height":45},{"x":125,"y":45,"fileNum":351,"id":10569,"width":25,"height":45},{"x":0,"y":90,"fileNum":351,"id":10570,"width":25,"height":45},{"x":25,"y":90,"fileNum":351,"id":10571,"width":25,"height":45},{"x":50,"y":90,"fileNum":351,"id":10572,"width":25,"height":45},{"x":75,"y":90,"fileNum":351,"id":10573,"width":25,"height":45},{"x":100,"y":90,"fileNum":351,"id":10574,"width":25,"height":45},{"x":0,"y":135,"fileNum":351,"id":10575,"width":25,"height":45},{"x":25,"y":135,"fileNum":351,"id":10576,"width":25,"height":45},{"x":50,"y":135,"fileNum":351,"id":10577,"width":25,"height":45},{"x":75,"y":135,"fileNum":351,"id":10578,"width":25,"height":45},{"x":100,"y":135,"fileNum":351,"id":10579,"width":25,"height":45},{"x":0,"y":0,"fileNum":352,"id":10584,"width":25,"height":45},{"x":25,"y":0,"fileNum":352,"id":10585,"width":25,"height":45},{"x":50,"y":0,"fileNum":352,"id":10586,"width":25,"height":45},{"x":75,"y":0,"fileNum":352,"id":10587,"width":25,"height":45},{"x":100,"y":0,"fileNum":352,"id":10588,"width":25,"height":45},{"x":125,"y":0,"fileNum":352,"id":10589,"width":25,"height":45},{"x":0,"y":45,"fileNum":352,"id":10590,"width":25,"height":45},{"x":25,"y":45,"fileNum":352,"id":10591,"width":25,"height":45},{"x":50,"y":45,"fileNum":352,"id":10592,"width":25,"height":45},{"x":75,"y":45,"fileNum":352,"id":10593,"width":25,"height":45},{"x":100,"y":45,"fileNum":352,"id":10594,"width":25,"height":45},{"x":125,"y":45,"fileNum":352,"id":10595,"width":25,"height":45},{"x":0,"y":90,"fileNum":352,"id":10596,"width":25,"height":45},{"x":25,"y":90,"fileNum":352,"id":10597,"width":25,"height":45},{"x":50,"y":90,"fileNum":352,"id":10598,"width":25,"height":45},{"x":75,"y":90,"fileNum":352,"id":10599,"width":25,"height":45},{"x":100,"y":90,"fileNum":352,"id":10600,"width":25,"height":45},{"x":0,"y":135,"fileNum":352,"id":10601,"width":25,"height":45},{"x":25,"y":135,"fileNum":352,"id":10602,"width":25,"height":45},{"x":50,"y":135,"fileNum":352,"id":10603,"width":25,"height":45},{"x":75,"y":135,"fileNum":352,"id":10604,"width":25,"height":45},{"x":100,"y":135,"fileNum":352,"id":10605,"width":25,"height":45},{"x":0,"y":0,"fileNum":353,"id":10610,"width":25,"height":45},{"x":25,"y":0,"fileNum":353,"id":10611,"width":25,"height":45},{"x":50,"y":0,"fileNum":353,"id":10612,"width":25,"height":45},{"x":75,"y":0,"fileNum":353,"id":10613,"width":25,"height":45},{"x":100,"y":0,"fileNum":353,"id":10614,"width":25,"height":45},{"x":125,"y":0,"fileNum":353,"id":10615,"width":25,"height":45},{"x":0,"y":45,"fileNum":353,"id":10616,"width":25,"height":45},{"x":25,"y":45,"fileNum":353,"id":10617,"width":25,"height":45},{"x":50,"y":45,"fileNum":353,"id":10618,"width":25,"height":45},{"x":75,"y":45,"fileNum":353,"id":10619,"width":25,"height":45},{"x":100,"y":45,"fileNum":353,"id":10620,"width":25,"height":45},{"x":125,"y":45,"fileNum":353,"id":10621,"width":25,"height":45},{"x":0,"y":90,"fileNum":353,"id":10622,"width":25,"height":45},{"x":25,"y":90,"fileNum":353,"id":10623,"width":25,"height":45},{"x":50,"y":90,"fileNum":353,"id":10624,"width":25,"height":45},{"x":75,"y":90,"fileNum":353,"id":10625,"width":25,"height":45},{"x":100,"y":90,"fileNum":353,"id":10626,"width":25,"height":45},{"x":0,"y":135,"fileNum":353,"id":10627,"width":25,"height":45},{"x":25,"y":135,"fileNum":353,"id":10628,"width":25,"height":45},{"x":50,"y":135,"fileNum":353,"id":10629,"width":25,"height":45},{"x":75,"y":135,"fileNum":353,"id":10630,"width":25,"height":45},{"x":100,"y":135,"fileNum":353,"id":10631,"width":25,"height":45},{"x":0,"y":0,"fileNum":354,"id":10636,"width":25,"height":45},{"x":25,"y":0,"fileNum":354,"id":10637,"width":25,"height":45},{"x":50,"y":0,"fileNum":354,"id":10638,"width":25,"height":45},{"x":75,"y":0,"fileNum":354,"id":10639,"width":25,"height":45},{"x":100,"y":0,"fileNum":354,"id":10640,"width":25,"height":45},{"x":125,"y":0,"fileNum":354,"id":10641,"width":25,"height":45},{"x":0,"y":45,"fileNum":354,"id":10642,"width":25,"height":45},{"x":25,"y":45,"fileNum":354,"id":10643,"width":25,"height":45},{"x":50,"y":45,"fileNum":354,"id":10644,"width":25,"height":45},{"x":75,"y":45,"fileNum":354,"id":10645,"width":25,"height":45},{"x":100,"y":45,"fileNum":354,"id":10646,"width":25,"height":45},{"x":125,"y":45,"fileNum":354,"id":10647,"width":25,"height":45},{"x":0,"y":90,"fileNum":354,"id":10648,"width":25,"height":45},{"x":25,"y":90,"fileNum":354,"id":10649,"width":25,"height":45},{"x":50,"y":90,"fileNum":354,"id":10650,"width":25,"height":45},{"x":75,"y":90,"fileNum":354,"id":10651,"width":25,"height":45},{"x":100,"y":90,"fileNum":354,"id":10652,"width":25,"height":45},{"x":0,"y":135,"fileNum":354,"id":10653,"width":25,"height":45},{"x":25,"y":135,"fileNum":354,"id":10654,"width":25,"height":45},{"x":50,"y":135,"fileNum":354,"id":10655,"width":25,"height":45},{"x":75,"y":135,"fileNum":354,"id":10656,"width":25,"height":45},{"x":100,"y":135,"fileNum":354,"id":10657,"width":25,"height":45},{"x":0,"y":0,"fileNum":355,"id":10662,"width":25,"height":45},{"x":25,"y":0,"fileNum":355,"id":10663,"width":25,"height":45},{"x":50,"y":0,"fileNum":355,"id":10664,"width":25,"height":45},{"x":75,"y":0,"fileNum":355,"id":10665,"width":25,"height":45},{"x":100,"y":0,"fileNum":355,"id":10666,"width":25,"height":45},{"x":125,"y":0,"fileNum":355,"id":10667,"width":25,"height":45},{"x":0,"y":45,"fileNum":355,"id":10668,"width":25,"height":45},{"x":25,"y":45,"fileNum":355,"id":10669,"width":25,"height":45},{"x":50,"y":45,"fileNum":355,"id":10670,"width":25,"height":45},{"x":75,"y":45,"fileNum":355,"id":10671,"width":25,"height":45},{"x":100,"y":45,"fileNum":355,"id":10672,"width":25,"height":45},{"x":125,"y":45,"fileNum":355,"id":10673,"width":25,"height":45},{"x":0,"y":90,"fileNum":355,"id":10674,"width":25,"height":45},{"x":25,"y":90,"fileNum":355,"id":10675,"width":25,"height":45},{"x":50,"y":90,"fileNum":355,"id":10676,"width":25,"height":45},{"x":75,"y":90,"fileNum":355,"id":10677,"width":25,"height":45},{"x":100,"y":90,"fileNum":355,"id":10678,"width":25,"height":45},{"x":0,"y":135,"fileNum":355,"id":10679,"width":25,"height":45},{"x":25,"y":135,"fileNum":355,"id":10680,"width":25,"height":45},{"x":50,"y":135,"fileNum":355,"id":10681,"width":25,"height":45},{"x":75,"y":135,"fileNum":355,"id":10682,"width":25,"height":45},{"x":100,"y":135,"fileNum":355,"id":10683,"width":25,"height":45},{"x":0,"y":0,"fileNum":356,"id":10688,"width":25,"height":45},{"x":25,"y":0,"fileNum":356,"id":10689,"width":25,"height":45},{"x":50,"y":0,"fileNum":356,"id":10690,"width":25,"height":45},{"x":75,"y":0,"fileNum":356,"id":10691,"width":25,"height":45},{"x":100,"y":0,"fileNum":356,"id":10692,"width":25,"height":45},{"x":125,"y":0,"fileNum":356,"id":10693,"width":25,"height":45},{"x":0,"y":45,"fileNum":356,"id":10694,"width":25,"height":45},{"x":25,"y":45,"fileNum":356,"id":10695,"width":25,"height":45},{"x":50,"y":45,"fileNum":356,"id":10696,"width":25,"height":45},{"x":75,"y":45,"fileNum":356,"id":10697,"width":25,"height":45},{"x":100,"y":45,"fileNum":356,"id":10698,"width":25,"height":45},{"x":125,"y":45,"fileNum":356,"id":10699,"width":25,"height":45},{"x":0,"y":90,"fileNum":356,"id":10700,"width":25,"height":45},{"x":25,"y":90,"fileNum":356,"id":10701,"width":25,"height":45},{"x":50,"y":90,"fileNum":356,"id":10702,"width":25,"height":45},{"x":75,"y":90,"fileNum":356,"id":10703,"width":25,"height":45},{"x":100,"y":90,"fileNum":356,"id":10704,"width":25,"height":45},{"x":0,"y":135,"fileNum":356,"id":10705,"width":25,"height":45},{"x":25,"y":135,"fileNum":356,"id":10706,"width":25,"height":45},{"x":50,"y":135,"fileNum":356,"id":10707,"width":25,"height":45},{"x":75,"y":135,"fileNum":356,"id":10708,"width":25,"height":45},{"x":100,"y":135,"fileNum":356,"id":10709,"width":25,"height":45},{"x":0,"y":0,"fileNum":357,"id":10714,"width":25,"height":45},{"x":25,"y":0,"fileNum":357,"id":10715,"width":25,"height":45},{"x":50,"y":0,"fileNum":357,"id":10716,"width":25,"height":45},{"x":75,"y":0,"fileNum":357,"id":10717,"width":25,"height":45},{"x":100,"y":0,"fileNum":357,"id":10718,"width":25,"height":45},{"x":125,"y":0,"fileNum":357,"id":10719,"width":25,"height":45},{"x":0,"y":45,"fileNum":357,"id":10720,"width":25,"height":45},{"x":25,"y":45,"fileNum":357,"id":10721,"width":25,"height":45},{"x":50,"y":45,"fileNum":357,"id":10722,"width":25,"height":45},{"x":75,"y":45,"fileNum":357,"id":10723,"width":25,"height":45},{"x":100,"y":45,"fileNum":357,"id":10724,"width":25,"height":45},{"x":125,"y":45,"fileNum":357,"id":10725,"width":25,"height":45},{"x":0,"y":90,"fileNum":357,"id":10726,"width":25,"height":45},{"x":25,"y":90,"fileNum":357,"id":10727,"width":25,"height":45},{"x":50,"y":90,"fileNum":357,"id":10728,"width":25,"height":45},{"x":75,"y":90,"fileNum":357,"id":10729,"width":25,"height":45},{"x":100,"y":90,"fileNum":357,"id":10730,"width":25,"height":45},{"x":0,"y":135,"fileNum":357,"id":10731,"width":25,"height":45},{"x":25,"y":135,"fileNum":357,"id":10732,"width":25,"height":45},{"x":50,"y":135,"fileNum":357,"id":10733,"width":25,"height":45},{"x":75,"y":135,"fileNum":357,"id":10734,"width":25,"height":45},{"x":100,"y":135,"fileNum":357,"id":10735,"width":25,"height":45},{"x":0,"y":0,"fileNum":358,"id":10740,"width":25,"height":45},{"x":25,"y":0,"fileNum":358,"id":10741,"width":25,"height":45},{"x":50,"y":0,"fileNum":358,"id":10742,"width":25,"height":45},{"x":75,"y":0,"fileNum":358,"id":10743,"width":25,"height":45},{"x":100,"y":0,"fileNum":358,"id":10744,"width":25,"height":45},{"x":125,"y":0,"fileNum":358,"id":10745,"width":25,"height":45},{"x":0,"y":45,"fileNum":358,"id":10746,"width":25,"height":45},{"x":25,"y":45,"fileNum":358,"id":10747,"width":25,"height":45},{"x":50,"y":45,"fileNum":358,"id":10748,"width":25,"height":45},{"x":75,"y":45,"fileNum":358,"id":10749,"width":25,"height":45},{"x":100,"y":45,"fileNum":358,"id":10750,"width":25,"height":45},{"x":125,"y":45,"fileNum":358,"id":10751,"width":25,"height":45},{"x":0,"y":90,"fileNum":358,"id":10752,"width":25,"height":45},{"x":25,"y":90,"fileNum":358,"id":10753,"width":25,"height":45},{"x":50,"y":90,"fileNum":358,"id":10754,"width":25,"height":45},{"x":75,"y":90,"fileNum":358,"id":10755,"width":25,"height":45},{"x":100,"y":90,"fileNum":358,"id":10756,"width":25,"height":45},{"x":0,"y":135,"fileNum":358,"id":10757,"width":25,"height":45},{"x":25,"y":135,"fileNum":358,"id":10758,"width":25,"height":45},{"x":50,"y":135,"fileNum":358,"id":10759,"width":25,"height":45},{"x":75,"y":135,"fileNum":358,"id":10760,"width":25,"height":45},{"x":100,"y":135,"fileNum":358,"id":10761,"width":25,"height":45},{"x":0,"y":0,"fileNum":4140,"id":10766,"width":49,"height":200},{"x":49,"y":0,"fileNum":4140,"id":10767,"width":49,"height":200},{"x":98,"y":0,"fileNum":4140,"id":10768,"width":49,"height":200},{"x":147,"y":0,"fileNum":4140,"id":10769,"width":49,"height":200},{"x":196,"y":0,"fileNum":4140,"id":10770,"width":49,"height":200},{"x":0,"y":0,"fileNum":4141,"id":10771,"width":49,"height":200},{"x":49,"y":0,"fileNum":4141,"id":10772,"width":49,"height":200},{"x":98,"y":0,"fileNum":4141,"id":10773,"width":49,"height":200},{"x":147,"y":0,"fileNum":4141,"id":10774,"width":49,"height":200},{"x":196,"y":0,"fileNum":4141,"id":10775,"width":49,"height":200},{"x":0,"y":0,"fileNum":4139,"id":10776,"width":328,"height":65},{"x":0,"y":65,"fileNum":4139,"id":10777,"width":328,"height":65},{"x":0,"y":130,"fileNum":4139,"id":10778,"width":328,"height":65},{"x":0,"y":195,"fileNum":4139,"id":10779,"width":328,"height":65},{"x":0,"y":260,"fileNum":4139,"id":10780,"width":328,"height":65},{"x":0,"y":0,"fileNum":4142,"id":10781,"width":328,"height":65},{"x":0,"y":65,"fileNum":4142,"id":10782,"width":328,"height":65},{"x":0,"y":130,"fileNum":4142,"id":10783,"width":328,"height":65},{"x":0,"y":195,"fileNum":4142,"id":10784,"width":328,"height":65},{"x":0,"y":260,"fileNum":4142,"id":10785,"width":328,"height":65},{"x":0,"y":0,"fileNum":360,"id":10790,"width":25,"height":45},{"x":25,"y":0,"fileNum":360,"id":10791,"width":25,"height":45},{"x":50,"y":0,"fileNum":360,"id":10792,"width":25,"height":45},{"x":75,"y":0,"fileNum":360,"id":10793,"width":25,"height":45},{"x":100,"y":0,"fileNum":360,"id":10794,"width":25,"height":45},{"x":125,"y":0,"fileNum":360,"id":10795,"width":25,"height":45},{"x":0,"y":45,"fileNum":360,"id":10796,"width":25,"height":45},{"x":25,"y":45,"fileNum":360,"id":10797,"width":25,"height":45},{"x":50,"y":45,"fileNum":360,"id":10798,"width":25,"height":45},{"x":75,"y":45,"fileNum":360,"id":10799,"width":25,"height":45},{"x":100,"y":45,"fileNum":360,"id":10800,"width":25,"height":45},{"x":125,"y":45,"fileNum":360,"id":10801,"width":25,"height":45},{"x":0,"y":90,"fileNum":360,"id":10802,"width":25,"height":45},{"x":25,"y":90,"fileNum":360,"id":10803,"width":25,"height":45},{"x":50,"y":90,"fileNum":360,"id":10804,"width":25,"height":45},{"x":75,"y":90,"fileNum":360,"id":10805,"width":25,"height":45},{"x":100,"y":90,"fileNum":360,"id":10806,"width":25,"height":45},{"x":0,"y":135,"fileNum":360,"id":10807,"width":25,"height":45},{"x":25,"y":135,"fileNum":360,"id":10808,"width":25,"height":45},{"x":50,"y":135,"fileNum":360,"id":10809,"width":25,"height":45},{"x":75,"y":135,"fileNum":360,"id":10810,"width":25,"height":45},{"x":100,"y":135,"fileNum":360,"id":10811,"width":25,"height":45},{"x":0,"y":0,"fileNum":361,"id":10816,"width":25,"height":45},{"x":25,"y":0,"fileNum":361,"id":10817,"width":25,"height":45},{"x":50,"y":0,"fileNum":361,"id":10818,"width":25,"height":45},{"x":75,"y":0,"fileNum":361,"id":10819,"width":25,"height":45},{"x":100,"y":0,"fileNum":361,"id":10820,"width":25,"height":45},{"x":125,"y":0,"fileNum":361,"id":10821,"width":25,"height":45},{"x":0,"y":45,"fileNum":361,"id":10822,"width":25,"height":45},{"x":25,"y":45,"fileNum":361,"id":10823,"width":25,"height":45},{"x":50,"y":45,"fileNum":361,"id":10824,"width":25,"height":45},{"x":75,"y":45,"fileNum":361,"id":10825,"width":25,"height":45},{"x":100,"y":45,"fileNum":361,"id":10826,"width":25,"height":45},{"x":125,"y":45,"fileNum":361,"id":10827,"width":25,"height":45},{"x":0,"y":90,"fileNum":361,"id":10828,"width":25,"height":45},{"x":25,"y":90,"fileNum":361,"id":10829,"width":25,"height":45},{"x":50,"y":90,"fileNum":361,"id":10830,"width":25,"height":45},{"x":75,"y":90,"fileNum":361,"id":10831,"width":25,"height":45},{"x":100,"y":90,"fileNum":361,"id":10832,"width":25,"height":45},{"x":0,"y":135,"fileNum":361,"id":10833,"width":25,"height":45},{"x":25,"y":135,"fileNum":361,"id":10834,"width":25,"height":45},{"x":50,"y":135,"fileNum":361,"id":10835,"width":25,"height":45},{"x":75,"y":135,"fileNum":361,"id":10836,"width":25,"height":45},{"x":100,"y":135,"fileNum":361,"id":10837,"width":25,"height":45},{"x":0,"y":0,"fileNum":362,"id":10842,"width":25,"height":45},{"x":25,"y":0,"fileNum":362,"id":10843,"width":25,"height":45},{"x":50,"y":0,"fileNum":362,"id":10844,"width":25,"height":45},{"x":75,"y":0,"fileNum":362,"id":10845,"width":25,"height":45},{"x":100,"y":0,"fileNum":362,"id":10846,"width":25,"height":45},{"x":125,"y":0,"fileNum":362,"id":10847,"width":25,"height":45},{"x":0,"y":45,"fileNum":362,"id":10848,"width":25,"height":45},{"x":25,"y":45,"fileNum":362,"id":10849,"width":25,"height":45},{"x":50,"y":45,"fileNum":362,"id":10850,"width":25,"height":45},{"x":75,"y":45,"fileNum":362,"id":10851,"width":25,"height":45},{"x":100,"y":45,"fileNum":362,"id":10852,"width":25,"height":45},{"x":125,"y":45,"fileNum":362,"id":10853,"width":25,"height":45},{"x":0,"y":90,"fileNum":362,"id":10854,"width":25,"height":45},{"x":25,"y":90,"fileNum":362,"id":10855,"width":25,"height":45},{"x":50,"y":90,"fileNum":362,"id":10856,"width":25,"height":45},{"x":75,"y":90,"fileNum":362,"id":10857,"width":25,"height":45},{"x":100,"y":90,"fileNum":362,"id":10858,"width":25,"height":45},{"x":0,"y":135,"fileNum":362,"id":10859,"width":25,"height":45},{"x":25,"y":135,"fileNum":362,"id":10860,"width":25,"height":45},{"x":50,"y":135,"fileNum":362,"id":10861,"width":25,"height":45},{"x":75,"y":135,"fileNum":362,"id":10862,"width":25,"height":45},{"x":100,"y":135,"fileNum":362,"id":10863,"width":25,"height":45},{"x":0,"y":0,"fileNum":2183,"id":10868,"width":17,"height":50},{"x":17,"y":0,"fileNum":2183,"id":10869,"width":17,"height":50},{"x":34,"y":0,"fileNum":2183,"id":10870,"width":17,"height":50},{"x":51,"y":0,"fileNum":2183,"id":10871,"width":17,"height":50},{"x":0,"y":0,"fileNum":2184,"id":10872,"width":17,"height":50},{"x":17,"y":0,"fileNum":2184,"id":10873,"width":17,"height":50},{"x":34,"y":0,"fileNum":2184,"id":10874,"width":17,"height":50},{"x":51,"y":0,"fileNum":2184,"id":10875,"width":17,"height":50},{"x":0,"y":0,"fileNum":2185,"id":10876,"width":17,"height":50},{"x":17,"y":0,"fileNum":2185,"id":10877,"width":17,"height":50},{"x":34,"y":0,"fileNum":2185,"id":10878,"width":17,"height":50},{"x":51,"y":0,"fileNum":2185,"id":10879,"width":17,"height":50},{"x":0,"y":0,"fileNum":2186,"id":10880,"width":17,"height":50},{"x":17,"y":0,"fileNum":2186,"id":10881,"width":17,"height":50},{"x":34,"y":0,"fileNum":2186,"id":10882,"width":17,"height":50},{"x":51,"y":0,"fileNum":2186,"id":10883,"width":17,"height":50},{"x":0,"y":0,"fileNum":2187,"id":10884,"width":17,"height":50},{"x":17,"y":0,"fileNum":2187,"id":10885,"width":17,"height":50},{"x":34,"y":0,"fileNum":2187,"id":10886,"width":17,"height":50},{"x":51,"y":0,"fileNum":2187,"id":10887,"width":17,"height":50},{"x":0,"y":0,"fileNum":2188,"id":10888,"width":17,"height":50},{"x":17,"y":0,"fileNum":2188,"id":10889,"width":17,"height":50},{"x":34,"y":0,"fileNum":2188,"id":10890,"width":17,"height":50},{"x":51,"y":0,"fileNum":2188,"id":10891,"width":17,"height":50},{"x":0,"y":0,"fileNum":364,"id":10893,"width":25,"height":45},{"x":25,"y":0,"fileNum":364,"id":10894,"width":25,"height":45},{"x":50,"y":0,"fileNum":364,"id":10895,"width":25,"height":45},{"x":75,"y":0,"fileNum":364,"id":10896,"width":25,"height":45},{"x":100,"y":0,"fileNum":364,"id":10897,"width":25,"height":45},{"x":125,"y":0,"fileNum":364,"id":10898,"width":25,"height":45},{"x":0,"y":45,"fileNum":364,"id":10899,"width":25,"height":45},{"x":25,"y":45,"fileNum":364,"id":10900,"width":25,"height":45},{"x":50,"y":45,"fileNum":364,"id":10901,"width":25,"height":45},{"x":75,"y":45,"fileNum":364,"id":10902,"width":25,"height":45},{"x":100,"y":45,"fileNum":364,"id":10903,"width":25,"height":45},{"x":125,"y":45,"fileNum":364,"id":10904,"width":25,"height":45},{"x":0,"y":90,"fileNum":364,"id":10905,"width":25,"height":45},{"x":25,"y":90,"fileNum":364,"id":10906,"width":25,"height":45},{"x":50,"y":90,"fileNum":364,"id":10907,"width":25,"height":45},{"x":75,"y":90,"fileNum":364,"id":10908,"width":25,"height":45},{"x":100,"y":90,"fileNum":364,"id":10909,"width":25,"height":45},{"x":0,"y":135,"fileNum":364,"id":10910,"width":25,"height":45},{"x":25,"y":135,"fileNum":364,"id":10911,"width":25,"height":45},{"x":50,"y":135,"fileNum":364,"id":10912,"width":25,"height":45},{"x":75,"y":135,"fileNum":364,"id":10913,"width":25,"height":45},{"x":100,"y":135,"fileNum":364,"id":10914,"width":25,"height":45},{"x":0,"y":0,"fileNum":365,"id":10919,"width":25,"height":45},{"x":25,"y":0,"fileNum":365,"id":10920,"width":25,"height":45},{"x":50,"y":0,"fileNum":365,"id":10921,"width":25,"height":45},{"x":75,"y":0,"fileNum":365,"id":10922,"width":25,"height":45},{"x":100,"y":0,"fileNum":365,"id":10923,"width":25,"height":45},{"x":125,"y":0,"fileNum":365,"id":10924,"width":25,"height":45},{"x":0,"y":45,"fileNum":365,"id":10925,"width":25,"height":45},{"x":25,"y":45,"fileNum":365,"id":10926,"width":25,"height":45},{"x":50,"y":45,"fileNum":365,"id":10927,"width":25,"height":45},{"x":75,"y":45,"fileNum":365,"id":10928,"width":25,"height":45},{"x":100,"y":45,"fileNum":365,"id":10929,"width":25,"height":45},{"x":125,"y":45,"fileNum":365,"id":10930,"width":25,"height":45},{"x":0,"y":90,"fileNum":365,"id":10931,"width":25,"height":45},{"x":25,"y":90,"fileNum":365,"id":10932,"width":25,"height":45},{"x":50,"y":90,"fileNum":365,"id":10933,"width":25,"height":45},{"x":75,"y":90,"fileNum":365,"id":10934,"width":25,"height":45},{"x":100,"y":90,"fileNum":365,"id":10935,"width":25,"height":45},{"x":0,"y":135,"fileNum":365,"id":10936,"width":25,"height":45},{"x":25,"y":135,"fileNum":365,"id":10937,"width":25,"height":45},{"x":50,"y":135,"fileNum":365,"id":10938,"width":25,"height":45},{"x":75,"y":135,"fileNum":365,"id":10939,"width":25,"height":45},{"x":100,"y":135,"fileNum":365,"id":10940,"width":25,"height":45},{"x":0,"y":0,"fileNum":366,"id":10945,"width":25,"height":45},{"x":25,"y":0,"fileNum":366,"id":10946,"width":25,"height":45},{"x":50,"y":0,"fileNum":366,"id":10947,"width":25,"height":45},{"x":75,"y":0,"fileNum":366,"id":10948,"width":25,"height":45},{"x":100,"y":0,"fileNum":366,"id":10949,"width":25,"height":45},{"x":125,"y":0,"fileNum":366,"id":10950,"width":25,"height":45},{"x":0,"y":45,"fileNum":366,"id":10951,"width":25,"height":45},{"x":25,"y":45,"fileNum":366,"id":10952,"width":25,"height":45},{"x":50,"y":45,"fileNum":366,"id":10953,"width":25,"height":45},{"x":75,"y":45,"fileNum":366,"id":10954,"width":25,"height":45},{"x":100,"y":45,"fileNum":366,"id":10955,"width":25,"height":45},{"x":125,"y":45,"fileNum":366,"id":10956,"width":25,"height":45},{"x":0,"y":90,"fileNum":366,"id":10957,"width":25,"height":45},{"x":25,"y":90,"fileNum":366,"id":10958,"width":25,"height":45},{"x":50,"y":90,"fileNum":366,"id":10959,"width":25,"height":45},{"x":75,"y":90,"fileNum":366,"id":10960,"width":25,"height":45},{"x":100,"y":90,"fileNum":366,"id":10961,"width":25,"height":45},{"x":0,"y":135,"fileNum":366,"id":10962,"width":25,"height":45},{"x":25,"y":135,"fileNum":366,"id":10963,"width":25,"height":45},{"x":50,"y":135,"fileNum":366,"id":10964,"width":25,"height":45},{"x":75,"y":135,"fileNum":366,"id":10965,"width":25,"height":45},{"x":100,"y":135,"fileNum":366,"id":10966,"width":25,"height":45},{"x":0,"y":0,"fileNum":368,"id":10971,"width":25,"height":45},{"x":25,"y":0,"fileNum":368,"id":10972,"width":25,"height":45},{"x":50,"y":0,"fileNum":368,"id":10973,"width":25,"height":45},{"x":75,"y":0,"fileNum":368,"id":10974,"width":25,"height":45},{"x":100,"y":0,"fileNum":368,"id":10975,"width":25,"height":45},{"x":125,"y":0,"fileNum":368,"id":10976,"width":25,"height":45},{"x":0,"y":45,"fileNum":368,"id":10977,"width":25,"height":45},{"x":25,"y":45,"fileNum":368,"id":10978,"width":25,"height":45},{"x":50,"y":45,"fileNum":368,"id":10979,"width":25,"height":45},{"x":75,"y":45,"fileNum":368,"id":10980,"width":25,"height":45},{"x":100,"y":45,"fileNum":368,"id":10981,"width":25,"height":45},{"x":125,"y":45,"fileNum":368,"id":10982,"width":25,"height":45},{"x":0,"y":90,"fileNum":368,"id":10983,"width":25,"height":45},{"x":25,"y":90,"fileNum":368,"id":10984,"width":25,"height":45},{"x":50,"y":90,"fileNum":368,"id":10985,"width":25,"height":45},{"x":75,"y":90,"fileNum":368,"id":10986,"width":25,"height":45},{"x":100,"y":90,"fileNum":368,"id":10987,"width":25,"height":45},{"x":0,"y":135,"fileNum":368,"id":10988,"width":25,"height":45},{"x":25,"y":135,"fileNum":368,"id":10989,"width":25,"height":45},{"x":50,"y":135,"fileNum":368,"id":10990,"width":25,"height":45},{"x":75,"y":135,"fileNum":368,"id":10991,"width":25,"height":45},{"x":100,"y":135,"fileNum":368,"id":10992,"width":25,"height":45},{"x":0,"y":0,"fileNum":369,"id":10997,"width":25,"height":45},{"x":25,"y":0,"fileNum":369,"id":10998,"width":25,"height":45},{"x":50,"y":0,"fileNum":369,"id":10999,"width":25,"height":45},{"x":75,"y":0,"fileNum":369,"id":11000,"width":25,"height":45},{"x":100,"y":0,"fileNum":369,"id":11001,"width":25,"height":45},{"x":125,"y":0,"fileNum":369,"id":11002,"width":25,"height":45},{"x":0,"y":45,"fileNum":369,"id":11003,"width":25,"height":45},{"x":25,"y":45,"fileNum":369,"id":11004,"width":25,"height":45},{"x":50,"y":45,"fileNum":369,"id":11005,"width":25,"height":45},{"x":75,"y":45,"fileNum":369,"id":11006,"width":25,"height":45},{"x":100,"y":45,"fileNum":369,"id":11007,"width":25,"height":45},{"x":125,"y":45,"fileNum":369,"id":11008,"width":25,"height":45},{"x":0,"y":90,"fileNum":369,"id":11009,"width":25,"height":45},{"x":25,"y":90,"fileNum":369,"id":11010,"width":25,"height":45},{"x":50,"y":90,"fileNum":369,"id":11011,"width":25,"height":45},{"x":75,"y":90,"fileNum":369,"id":11012,"width":25,"height":45},{"x":100,"y":90,"fileNum":369,"id":11013,"width":25,"height":45},{"x":0,"y":135,"fileNum":369,"id":11014,"width":25,"height":45},{"x":25,"y":135,"fileNum":369,"id":11015,"width":25,"height":45},{"x":50,"y":135,"fileNum":369,"id":11016,"width":25,"height":45},{"x":75,"y":135,"fileNum":369,"id":11017,"width":25,"height":45},{"x":100,"y":135,"fileNum":369,"id":11018,"width":25,"height":45},{"x":0,"y":0,"fileNum":370,"id":11023,"width":25,"height":45},{"x":25,"y":0,"fileNum":370,"id":11024,"width":25,"height":45},{"x":50,"y":0,"fileNum":370,"id":11025,"width":25,"height":45},{"x":75,"y":0,"fileNum":370,"id":11026,"width":25,"height":45},{"x":100,"y":0,"fileNum":370,"id":11027,"width":25,"height":45},{"x":125,"y":0,"fileNum":370,"id":11028,"width":25,"height":45},{"x":0,"y":45,"fileNum":370,"id":11029,"width":25,"height":45},{"x":25,"y":45,"fileNum":370,"id":11030,"width":25,"height":45},{"x":50,"y":45,"fileNum":370,"id":11031,"width":25,"height":45},{"x":75,"y":45,"fileNum":370,"id":11032,"width":25,"height":45},{"x":100,"y":45,"fileNum":370,"id":11033,"width":25,"height":45},{"x":125,"y":45,"fileNum":370,"id":11034,"width":25,"height":45},{"x":0,"y":90,"fileNum":370,"id":11035,"width":25,"height":45},{"x":25,"y":90,"fileNum":370,"id":11036,"width":25,"height":45},{"x":50,"y":90,"fileNum":370,"id":11037,"width":25,"height":45},{"x":75,"y":90,"fileNum":370,"id":11038,"width":25,"height":45},{"x":100,"y":90,"fileNum":370,"id":11039,"width":25,"height":45},{"x":0,"y":135,"fileNum":370,"id":11040,"width":25,"height":45},{"x":25,"y":135,"fileNum":370,"id":11041,"width":25,"height":45},{"x":50,"y":135,"fileNum":370,"id":11042,"width":25,"height":45},{"x":75,"y":135,"fileNum":370,"id":11043,"width":25,"height":45},{"x":100,"y":135,"fileNum":370,"id":11044,"width":25,"height":45},{"x":0,"y":0,"fileNum":371,"id":11049,"width":25,"height":45},{"x":25,"y":0,"fileNum":371,"id":11050,"width":25,"height":45},{"x":50,"y":0,"fileNum":371,"id":11051,"width":25,"height":45},{"x":75,"y":0,"fileNum":371,"id":11052,"width":25,"height":45},{"x":100,"y":0,"fileNum":371,"id":11053,"width":25,"height":45},{"x":125,"y":0,"fileNum":371,"id":11054,"width":25,"height":45},{"x":0,"y":45,"fileNum":371,"id":11055,"width":25,"height":45},{"x":25,"y":45,"fileNum":371,"id":11056,"width":25,"height":45},{"x":50,"y":45,"fileNum":371,"id":11057,"width":25,"height":45},{"x":75,"y":45,"fileNum":371,"id":11058,"width":25,"height":45},{"x":100,"y":45,"fileNum":371,"id":11059,"width":25,"height":45},{"x":125,"y":45,"fileNum":371,"id":11060,"width":25,"height":45},{"x":0,"y":90,"fileNum":371,"id":11061,"width":25,"height":45},{"x":25,"y":90,"fileNum":371,"id":11062,"width":25,"height":45},{"x":50,"y":90,"fileNum":371,"id":11063,"width":25,"height":45},{"x":75,"y":90,"fileNum":371,"id":11064,"width":25,"height":45},{"x":100,"y":90,"fileNum":371,"id":11065,"width":25,"height":45},{"x":0,"y":135,"fileNum":371,"id":11066,"width":25,"height":45},{"x":25,"y":135,"fileNum":371,"id":11067,"width":25,"height":45},{"x":50,"y":135,"fileNum":371,"id":11068,"width":25,"height":45},{"x":75,"y":135,"fileNum":371,"id":11069,"width":25,"height":45},{"x":100,"y":135,"fileNum":371,"id":11070,"width":25,"height":45},{"x":0,"y":0,"fileNum":372,"id":11075,"width":25,"height":45},{"x":25,"y":0,"fileNum":372,"id":11076,"width":25,"height":45},{"x":50,"y":0,"fileNum":372,"id":11077,"width":25,"height":45},{"x":75,"y":0,"fileNum":372,"id":11078,"width":25,"height":45},{"x":100,"y":0,"fileNum":372,"id":11079,"width":25,"height":45},{"x":125,"y":0,"fileNum":372,"id":11080,"width":25,"height":45},{"x":0,"y":45,"fileNum":372,"id":11081,"width":25,"height":45},{"x":25,"y":45,"fileNum":372,"id":11082,"width":25,"height":45},{"x":50,"y":45,"fileNum":372,"id":11083,"width":25,"height":45},{"x":75,"y":45,"fileNum":372,"id":11084,"width":25,"height":45},{"x":100,"y":45,"fileNum":372,"id":11085,"width":25,"height":45},{"x":125,"y":45,"fileNum":372,"id":11086,"width":25,"height":45},{"x":0,"y":90,"fileNum":372,"id":11087,"width":25,"height":45},{"x":25,"y":90,"fileNum":372,"id":11088,"width":25,"height":45},{"x":50,"y":90,"fileNum":372,"id":11089,"width":25,"height":45},{"x":75,"y":90,"fileNum":372,"id":11090,"width":25,"height":45},{"x":100,"y":90,"fileNum":372,"id":11091,"width":25,"height":45},{"x":0,"y":135,"fileNum":372,"id":11092,"width":25,"height":45},{"x":25,"y":135,"fileNum":372,"id":11093,"width":25,"height":45},{"x":50,"y":135,"fileNum":372,"id":11094,"width":25,"height":45},{"x":75,"y":135,"fileNum":372,"id":11095,"width":25,"height":45},{"x":100,"y":135,"fileNum":372,"id":11096,"width":25,"height":45},{"x":0,"y":0,"fileNum":373,"id":11101,"width":25,"height":45},{"x":25,"y":0,"fileNum":373,"id":11102,"width":25,"height":45},{"x":50,"y":0,"fileNum":373,"id":11103,"width":25,"height":45},{"x":75,"y":0,"fileNum":373,"id":11104,"width":25,"height":45},{"x":100,"y":0,"fileNum":373,"id":11105,"width":25,"height":45},{"x":125,"y":0,"fileNum":373,"id":11106,"width":25,"height":45},{"x":0,"y":45,"fileNum":373,"id":11107,"width":25,"height":45},{"x":25,"y":45,"fileNum":373,"id":11108,"width":25,"height":45},{"x":50,"y":45,"fileNum":373,"id":11109,"width":25,"height":45},{"x":75,"y":45,"fileNum":373,"id":11110,"width":25,"height":45},{"x":100,"y":45,"fileNum":373,"id":11111,"width":25,"height":45},{"x":125,"y":45,"fileNum":373,"id":11112,"width":25,"height":45},{"x":0,"y":90,"fileNum":373,"id":11113,"width":25,"height":45},{"x":25,"y":90,"fileNum":373,"id":11114,"width":25,"height":45},{"x":50,"y":90,"fileNum":373,"id":11115,"width":25,"height":45},{"x":75,"y":90,"fileNum":373,"id":11116,"width":25,"height":45},{"x":100,"y":90,"fileNum":373,"id":11117,"width":25,"height":45},{"x":0,"y":135,"fileNum":373,"id":11118,"width":25,"height":45},{"x":25,"y":135,"fileNum":373,"id":11119,"width":25,"height":45},{"x":50,"y":135,"fileNum":373,"id":11120,"width":25,"height":45},{"x":75,"y":135,"fileNum":373,"id":11121,"width":25,"height":45},{"x":100,"y":135,"fileNum":373,"id":11122,"width":25,"height":45},{"x":0,"y":0,"fileNum":374,"id":11127,"width":25,"height":45},{"x":25,"y":0,"fileNum":374,"id":11128,"width":25,"height":45},{"x":50,"y":0,"fileNum":374,"id":11129,"width":25,"height":45},{"x":75,"y":0,"fileNum":374,"id":11130,"width":25,"height":45},{"x":100,"y":0,"fileNum":374,"id":11131,"width":25,"height":45},{"x":125,"y":0,"fileNum":374,"id":11132,"width":25,"height":45},{"x":0,"y":45,"fileNum":374,"id":11133,"width":25,"height":45},{"x":25,"y":45,"fileNum":374,"id":11134,"width":25,"height":45},{"x":50,"y":45,"fileNum":374,"id":11135,"width":25,"height":45},{"x":75,"y":45,"fileNum":374,"id":11136,"width":25,"height":45},{"x":100,"y":45,"fileNum":374,"id":11137,"width":25,"height":45},{"x":125,"y":45,"fileNum":374,"id":11138,"width":25,"height":45},{"x":0,"y":90,"fileNum":374,"id":11139,"width":25,"height":45},{"x":25,"y":90,"fileNum":374,"id":11140,"width":25,"height":45},{"x":50,"y":90,"fileNum":374,"id":11141,"width":25,"height":45},{"x":75,"y":90,"fileNum":374,"id":11142,"width":25,"height":45},{"x":100,"y":90,"fileNum":374,"id":11143,"width":25,"height":45},{"x":0,"y":135,"fileNum":374,"id":11144,"width":25,"height":45},{"x":25,"y":135,"fileNum":374,"id":11145,"width":25,"height":45},{"x":50,"y":135,"fileNum":374,"id":11146,"width":25,"height":45},{"x":75,"y":135,"fileNum":374,"id":11147,"width":25,"height":45},{"x":100,"y":135,"fileNum":374,"id":11148,"width":25,"height":45},{"x":0,"y":0,"fileNum":375,"id":11153,"width":25,"height":45},{"x":25,"y":0,"fileNum":375,"id":11154,"width":25,"height":45},{"x":50,"y":0,"fileNum":375,"id":11155,"width":25,"height":45},{"x":75,"y":0,"fileNum":375,"id":11156,"width":25,"height":45},{"x":100,"y":0,"fileNum":375,"id":11157,"width":25,"height":45},{"x":125,"y":0,"fileNum":375,"id":11158,"width":25,"height":45},{"x":0,"y":45,"fileNum":375,"id":11159,"width":25,"height":45},{"x":25,"y":45,"fileNum":375,"id":11160,"width":25,"height":45},{"x":50,"y":45,"fileNum":375,"id":11161,"width":25,"height":45},{"x":75,"y":45,"fileNum":375,"id":11162,"width":25,"height":45},{"x":100,"y":45,"fileNum":375,"id":11163,"width":25,"height":45},{"x":125,"y":45,"fileNum":375,"id":11164,"width":25,"height":45},{"x":0,"y":90,"fileNum":375,"id":11165,"width":25,"height":45},{"x":25,"y":90,"fileNum":375,"id":11166,"width":25,"height":45},{"x":50,"y":90,"fileNum":375,"id":11167,"width":25,"height":45},{"x":75,"y":90,"fileNum":375,"id":11168,"width":25,"height":45},{"x":100,"y":90,"fileNum":375,"id":11169,"width":25,"height":45},{"x":0,"y":135,"fileNum":375,"id":11170,"width":25,"height":45},{"x":25,"y":135,"fileNum":375,"id":11171,"width":25,"height":45},{"x":50,"y":135,"fileNum":375,"id":11172,"width":25,"height":45},{"x":75,"y":135,"fileNum":375,"id":11173,"width":25,"height":45},{"x":100,"y":135,"fileNum":375,"id":11174,"width":25,"height":45},{"x":0,"y":0,"fileNum":376,"id":11179,"width":25,"height":45},{"x":25,"y":0,"fileNum":376,"id":11180,"width":25,"height":45},{"x":50,"y":0,"fileNum":376,"id":11181,"width":25,"height":45},{"x":75,"y":0,"fileNum":376,"id":11182,"width":25,"height":45},{"x":100,"y":0,"fileNum":376,"id":11183,"width":25,"height":45},{"x":125,"y":0,"fileNum":376,"id":11184,"width":25,"height":45},{"x":0,"y":45,"fileNum":376,"id":11185,"width":25,"height":45},{"x":25,"y":45,"fileNum":376,"id":11186,"width":25,"height":45},{"x":50,"y":45,"fileNum":376,"id":11187,"width":25,"height":45},{"x":75,"y":45,"fileNum":376,"id":11188,"width":25,"height":45},{"x":100,"y":45,"fileNum":376,"id":11189,"width":25,"height":45},{"x":125,"y":45,"fileNum":376,"id":11190,"width":25,"height":45},{"x":0,"y":90,"fileNum":376,"id":11191,"width":25,"height":45},{"x":25,"y":90,"fileNum":376,"id":11192,"width":25,"height":45},{"x":50,"y":90,"fileNum":376,"id":11193,"width":25,"height":45},{"x":75,"y":90,"fileNum":376,"id":11194,"width":25,"height":45},{"x":100,"y":90,"fileNum":376,"id":11195,"width":25,"height":45},{"x":0,"y":135,"fileNum":376,"id":11196,"width":25,"height":45},{"x":25,"y":135,"fileNum":376,"id":11197,"width":25,"height":45},{"x":50,"y":135,"fileNum":376,"id":11198,"width":25,"height":45},{"x":75,"y":135,"fileNum":376,"id":11199,"width":25,"height":45},{"x":100,"y":135,"fileNum":376,"id":11200,"width":25,"height":45},{"x":0,"y":0,"fileNum":377,"id":11205,"width":25,"height":45},{"x":25,"y":0,"fileNum":377,"id":11206,"width":25,"height":45},{"x":50,"y":0,"fileNum":377,"id":11207,"width":25,"height":45},{"x":75,"y":0,"fileNum":377,"id":11208,"width":25,"height":45},{"x":100,"y":0,"fileNum":377,"id":11209,"width":25,"height":45},{"x":125,"y":0,"fileNum":377,"id":11210,"width":25,"height":45},{"x":0,"y":45,"fileNum":377,"id":11211,"width":25,"height":45},{"x":25,"y":45,"fileNum":377,"id":11212,"width":25,"height":45},{"x":50,"y":45,"fileNum":377,"id":11213,"width":25,"height":45},{"x":75,"y":45,"fileNum":377,"id":11214,"width":25,"height":45},{"x":100,"y":45,"fileNum":377,"id":11215,"width":25,"height":45},{"x":125,"y":45,"fileNum":377,"id":11216,"width":25,"height":45},{"x":0,"y":90,"fileNum":377,"id":11217,"width":25,"height":45},{"x":25,"y":90,"fileNum":377,"id":11218,"width":25,"height":45},{"x":50,"y":90,"fileNum":377,"id":11219,"width":25,"height":45},{"x":75,"y":90,"fileNum":377,"id":11220,"width":25,"height":45},{"x":100,"y":90,"fileNum":377,"id":11221,"width":25,"height":45},{"x":0,"y":135,"fileNum":377,"id":11222,"width":25,"height":45},{"x":25,"y":135,"fileNum":377,"id":11223,"width":25,"height":45},{"x":50,"y":135,"fileNum":377,"id":11224,"width":25,"height":45},{"x":75,"y":135,"fileNum":377,"id":11225,"width":25,"height":45},{"x":100,"y":135,"fileNum":377,"id":11226,"width":25,"height":45},{"x":0,"y":0,"fileNum":379,"id":11231,"width":25,"height":45},{"x":25,"y":0,"fileNum":379,"id":11232,"width":25,"height":45},{"x":50,"y":0,"fileNum":379,"id":11233,"width":25,"height":45},{"x":75,"y":0,"fileNum":379,"id":11234,"width":25,"height":45},{"x":100,"y":0,"fileNum":379,"id":11235,"width":25,"height":45},{"x":125,"y":0,"fileNum":379,"id":11236,"width":25,"height":45},{"x":0,"y":45,"fileNum":379,"id":11237,"width":25,"height":45},{"x":25,"y":45,"fileNum":379,"id":11238,"width":25,"height":45},{"x":50,"y":45,"fileNum":379,"id":11239,"width":25,"height":45},{"x":75,"y":45,"fileNum":379,"id":11240,"width":25,"height":45},{"x":100,"y":45,"fileNum":379,"id":11241,"width":25,"height":45},{"x":125,"y":45,"fileNum":379,"id":11242,"width":25,"height":45},{"x":0,"y":90,"fileNum":379,"id":11243,"width":25,"height":45},{"x":25,"y":90,"fileNum":379,"id":11244,"width":25,"height":45},{"x":50,"y":90,"fileNum":379,"id":11245,"width":25,"height":45},{"x":75,"y":90,"fileNum":379,"id":11246,"width":25,"height":45},{"x":100,"y":90,"fileNum":379,"id":11247,"width":25,"height":45},{"x":0,"y":135,"fileNum":379,"id":11248,"width":25,"height":45},{"x":25,"y":135,"fileNum":379,"id":11249,"width":25,"height":45},{"x":50,"y":135,"fileNum":379,"id":11250,"width":25,"height":45},{"x":75,"y":135,"fileNum":379,"id":11251,"width":25,"height":45},{"x":100,"y":135,"fileNum":379,"id":11252,"width":25,"height":45},{"x":0,"y":0,"fileNum":380,"id":11257,"width":25,"height":45},{"x":25,"y":0,"fileNum":380,"id":11258,"width":25,"height":45},{"x":50,"y":0,"fileNum":380,"id":11259,"width":25,"height":45},{"x":75,"y":0,"fileNum":380,"id":11260,"width":25,"height":45},{"x":100,"y":0,"fileNum":380,"id":11261,"width":25,"height":45},{"x":125,"y":0,"fileNum":380,"id":11262,"width":25,"height":45},{"x":0,"y":45,"fileNum":380,"id":11263,"width":25,"height":45},{"x":25,"y":45,"fileNum":380,"id":11264,"width":25,"height":45},{"x":50,"y":45,"fileNum":380,"id":11265,"width":25,"height":45},{"x":75,"y":45,"fileNum":380,"id":11266,"width":25,"height":45},{"x":100,"y":45,"fileNum":380,"id":11267,"width":25,"height":45},{"x":125,"y":45,"fileNum":380,"id":11268,"width":25,"height":45},{"x":0,"y":90,"fileNum":380,"id":11269,"width":25,"height":45},{"x":25,"y":90,"fileNum":380,"id":11270,"width":25,"height":45},{"x":50,"y":90,"fileNum":380,"id":11271,"width":25,"height":45},{"x":75,"y":90,"fileNum":380,"id":11272,"width":25,"height":45},{"x":100,"y":90,"fileNum":380,"id":11273,"width":25,"height":45},{"x":0,"y":135,"fileNum":380,"id":11274,"width":25,"height":45},{"x":25,"y":135,"fileNum":380,"id":11275,"width":25,"height":45},{"x":50,"y":135,"fileNum":380,"id":11276,"width":25,"height":45},{"x":75,"y":135,"fileNum":380,"id":11277,"width":25,"height":45},{"x":100,"y":135,"fileNum":380,"id":11278,"width":25,"height":45},{"x":0,"y":0,"fileNum":381,"id":11283,"width":25,"height":45},{"x":25,"y":0,"fileNum":381,"id":11284,"width":25,"height":45},{"x":50,"y":0,"fileNum":381,"id":11285,"width":25,"height":45},{"x":75,"y":0,"fileNum":381,"id":11286,"width":25,"height":45},{"x":100,"y":0,"fileNum":381,"id":11287,"width":25,"height":45},{"x":125,"y":0,"fileNum":381,"id":11288,"width":25,"height":45},{"x":0,"y":45,"fileNum":381,"id":11289,"width":25,"height":45},{"x":25,"y":45,"fileNum":381,"id":11290,"width":25,"height":45},{"x":50,"y":45,"fileNum":381,"id":11291,"width":25,"height":45},{"x":75,"y":45,"fileNum":381,"id":11292,"width":25,"height":45},{"x":100,"y":45,"fileNum":381,"id":11293,"width":25,"height":45},{"x":125,"y":45,"fileNum":381,"id":11294,"width":25,"height":45},{"x":0,"y":90,"fileNum":381,"id":11295,"width":25,"height":45},{"x":25,"y":90,"fileNum":381,"id":11296,"width":25,"height":45},{"x":50,"y":90,"fileNum":381,"id":11297,"width":25,"height":45},{"x":75,"y":90,"fileNum":381,"id":11298,"width":25,"height":45},{"x":100,"y":90,"fileNum":381,"id":11299,"width":25,"height":45},{"x":0,"y":135,"fileNum":381,"id":11300,"width":25,"height":45},{"x":25,"y":135,"fileNum":381,"id":11301,"width":25,"height":45},{"x":50,"y":135,"fileNum":381,"id":11302,"width":25,"height":45},{"x":75,"y":135,"fileNum":381,"id":11303,"width":25,"height":45},{"x":100,"y":135,"fileNum":381,"id":11304,"width":25,"height":45},{"x":0,"y":0,"fileNum":382,"id":11309,"width":25,"height":45},{"x":25,"y":0,"fileNum":382,"id":11310,"width":25,"height":45},{"x":50,"y":0,"fileNum":382,"id":11311,"width":25,"height":45},{"x":75,"y":0,"fileNum":382,"id":11312,"width":25,"height":45},{"x":100,"y":0,"fileNum":382,"id":11313,"width":25,"height":45},{"x":125,"y":0,"fileNum":382,"id":11314,"width":25,"height":45},{"x":0,"y":45,"fileNum":382,"id":11315,"width":25,"height":45},{"x":25,"y":45,"fileNum":382,"id":11316,"width":25,"height":45},{"x":50,"y":45,"fileNum":382,"id":11317,"width":25,"height":45},{"x":75,"y":45,"fileNum":382,"id":11318,"width":25,"height":45},{"x":100,"y":45,"fileNum":382,"id":11319,"width":25,"height":45},{"x":125,"y":45,"fileNum":382,"id":11320,"width":25,"height":45},{"x":0,"y":90,"fileNum":382,"id":11321,"width":25,"height":45},{"x":25,"y":90,"fileNum":382,"id":11322,"width":25,"height":45},{"x":50,"y":90,"fileNum":382,"id":11323,"width":25,"height":45},{"x":75,"y":90,"fileNum":382,"id":11324,"width":25,"height":45},{"x":100,"y":90,"fileNum":382,"id":11325,"width":25,"height":45},{"x":0,"y":135,"fileNum":382,"id":11326,"width":25,"height":45},{"x":25,"y":135,"fileNum":382,"id":11327,"width":25,"height":45},{"x":50,"y":135,"fileNum":382,"id":11328,"width":25,"height":45},{"x":75,"y":135,"fileNum":382,"id":11329,"width":25,"height":45},{"x":100,"y":135,"fileNum":382,"id":11330,"width":25,"height":45},{"x":0,"y":0,"fileNum":383,"id":11335,"width":25,"height":45},{"x":25,"y":0,"fileNum":383,"id":11336,"width":25,"height":45},{"x":50,"y":0,"fileNum":383,"id":11337,"width":25,"height":45},{"x":75,"y":0,"fileNum":383,"id":11338,"width":25,"height":45},{"x":100,"y":0,"fileNum":383,"id":11339,"width":25,"height":45},{"x":125,"y":0,"fileNum":383,"id":11340,"width":25,"height":45},{"x":0,"y":45,"fileNum":383,"id":11341,"width":25,"height":45},{"x":25,"y":45,"fileNum":383,"id":11342,"width":25,"height":45},{"x":50,"y":45,"fileNum":383,"id":11343,"width":25,"height":45},{"x":75,"y":45,"fileNum":383,"id":11344,"width":25,"height":45},{"x":100,"y":45,"fileNum":383,"id":11345,"width":25,"height":45},{"x":125,"y":45,"fileNum":383,"id":11346,"width":25,"height":45},{"x":0,"y":90,"fileNum":383,"id":11347,"width":25,"height":45},{"x":25,"y":90,"fileNum":383,"id":11348,"width":25,"height":45},{"x":50,"y":90,"fileNum":383,"id":11349,"width":25,"height":45},{"x":75,"y":90,"fileNum":383,"id":11350,"width":25,"height":45},{"x":100,"y":90,"fileNum":383,"id":11351,"width":25,"height":45},{"x":0,"y":135,"fileNum":383,"id":11352,"width":25,"height":45},{"x":25,"y":135,"fileNum":383,"id":11353,"width":25,"height":45},{"x":50,"y":135,"fileNum":383,"id":11354,"width":25,"height":45},{"x":75,"y":135,"fileNum":383,"id":11355,"width":25,"height":45},{"x":100,"y":135,"fileNum":383,"id":11356,"width":25,"height":45},{"x":0,"y":0,"fileNum":384,"id":11361,"width":25,"height":45},{"x":25,"y":0,"fileNum":384,"id":11362,"width":25,"height":45},{"x":50,"y":0,"fileNum":384,"id":11363,"width":25,"height":45},{"x":75,"y":0,"fileNum":384,"id":11364,"width":25,"height":45},{"x":100,"y":0,"fileNum":384,"id":11365,"width":25,"height":45},{"x":125,"y":0,"fileNum":384,"id":11366,"width":25,"height":45},{"x":0,"y":45,"fileNum":384,"id":11367,"width":25,"height":45},{"x":25,"y":45,"fileNum":384,"id":11368,"width":25,"height":45},{"x":50,"y":45,"fileNum":384,"id":11369,"width":25,"height":45},{"x":75,"y":45,"fileNum":384,"id":11370,"width":25,"height":45},{"x":100,"y":45,"fileNum":384,"id":11371,"width":25,"height":45},{"x":125,"y":45,"fileNum":384,"id":11372,"width":25,"height":45},{"x":0,"y":90,"fileNum":384,"id":11373,"width":25,"height":45},{"x":25,"y":90,"fileNum":384,"id":11374,"width":25,"height":45},{"x":50,"y":90,"fileNum":384,"id":11375,"width":25,"height":45},{"x":75,"y":90,"fileNum":384,"id":11376,"width":25,"height":45},{"x":100,"y":90,"fileNum":384,"id":11377,"width":25,"height":45},{"x":0,"y":135,"fileNum":384,"id":11378,"width":25,"height":45},{"x":25,"y":135,"fileNum":384,"id":11379,"width":25,"height":45},{"x":50,"y":135,"fileNum":384,"id":11380,"width":25,"height":45},{"x":75,"y":135,"fileNum":384,"id":11381,"width":25,"height":45},{"x":100,"y":135,"fileNum":384,"id":11382,"width":25,"height":45},{"x":0,"y":0,"fileNum":385,"id":11387,"width":25,"height":45},{"x":25,"y":0,"fileNum":385,"id":11388,"width":25,"height":45},{"x":50,"y":0,"fileNum":385,"id":11389,"width":25,"height":45},{"x":75,"y":0,"fileNum":385,"id":11390,"width":25,"height":45},{"x":100,"y":0,"fileNum":385,"id":11391,"width":25,"height":45},{"x":125,"y":0,"fileNum":385,"id":11392,"width":25,"height":45},{"x":0,"y":45,"fileNum":385,"id":11393,"width":25,"height":45},{"x":25,"y":45,"fileNum":385,"id":11394,"width":25,"height":45},{"x":50,"y":45,"fileNum":385,"id":11395,"width":25,"height":45},{"x":75,"y":45,"fileNum":385,"id":11396,"width":25,"height":45},{"x":100,"y":45,"fileNum":385,"id":11397,"width":25,"height":45},{"x":125,"y":45,"fileNum":385,"id":11398,"width":25,"height":45},{"x":0,"y":90,"fileNum":385,"id":11399,"width":25,"height":45},{"x":25,"y":90,"fileNum":385,"id":11400,"width":25,"height":45},{"x":50,"y":90,"fileNum":385,"id":11401,"width":25,"height":45},{"x":75,"y":90,"fileNum":385,"id":11402,"width":25,"height":45},{"x":100,"y":90,"fileNum":385,"id":11403,"width":25,"height":45},{"x":0,"y":135,"fileNum":385,"id":11404,"width":25,"height":45},{"x":25,"y":135,"fileNum":385,"id":11405,"width":25,"height":45},{"x":50,"y":135,"fileNum":385,"id":11406,"width":25,"height":45},{"x":75,"y":135,"fileNum":385,"id":11407,"width":25,"height":45},{"x":100,"y":135,"fileNum":385,"id":11408,"width":25,"height":45},{"x":0,"y":0,"fileNum":386,"id":11413,"width":25,"height":45},{"x":25,"y":0,"fileNum":386,"id":11414,"width":25,"height":45},{"x":50,"y":0,"fileNum":386,"id":11415,"width":25,"height":45},{"x":75,"y":0,"fileNum":386,"id":11416,"width":25,"height":45},{"x":100,"y":0,"fileNum":386,"id":11417,"width":25,"height":45},{"x":125,"y":0,"fileNum":386,"id":11418,"width":25,"height":45},{"x":0,"y":45,"fileNum":386,"id":11419,"width":25,"height":45},{"x":25,"y":45,"fileNum":386,"id":11420,"width":25,"height":45},{"x":50,"y":45,"fileNum":386,"id":11421,"width":25,"height":45},{"x":75,"y":45,"fileNum":386,"id":11422,"width":25,"height":45},{"x":100,"y":45,"fileNum":386,"id":11423,"width":25,"height":45},{"x":125,"y":45,"fileNum":386,"id":11424,"width":25,"height":45},{"x":0,"y":90,"fileNum":386,"id":11425,"width":25,"height":45},{"x":25,"y":90,"fileNum":386,"id":11426,"width":25,"height":45},{"x":50,"y":90,"fileNum":386,"id":11427,"width":25,"height":45},{"x":75,"y":90,"fileNum":386,"id":11428,"width":25,"height":45},{"x":100,"y":90,"fileNum":386,"id":11429,"width":25,"height":45},{"x":0,"y":135,"fileNum":386,"id":11430,"width":25,"height":45},{"x":25,"y":135,"fileNum":386,"id":11431,"width":25,"height":45},{"x":50,"y":135,"fileNum":386,"id":11432,"width":25,"height":45},{"x":75,"y":135,"fileNum":386,"id":11433,"width":25,"height":45},{"x":100,"y":135,"fileNum":386,"id":11434,"width":25,"height":45},{"x":0,"y":0,"fileNum":387,"id":11439,"width":25,"height":45},{"x":25,"y":0,"fileNum":387,"id":11440,"width":25,"height":45},{"x":50,"y":0,"fileNum":387,"id":11441,"width":25,"height":45},{"x":75,"y":0,"fileNum":387,"id":11442,"width":25,"height":45},{"x":100,"y":0,"fileNum":387,"id":11443,"width":25,"height":45},{"x":125,"y":0,"fileNum":387,"id":11444,"width":25,"height":45},{"x":0,"y":45,"fileNum":387,"id":11445,"width":25,"height":45},{"x":25,"y":45,"fileNum":387,"id":11446,"width":25,"height":45},{"x":50,"y":45,"fileNum":387,"id":11447,"width":25,"height":45},{"x":75,"y":45,"fileNum":387,"id":11448,"width":25,"height":45},{"x":100,"y":45,"fileNum":387,"id":11449,"width":25,"height":45},{"x":125,"y":45,"fileNum":387,"id":11450,"width":25,"height":45},{"x":0,"y":90,"fileNum":387,"id":11451,"width":25,"height":45},{"x":25,"y":90,"fileNum":387,"id":11452,"width":25,"height":45},{"x":50,"y":90,"fileNum":387,"id":11453,"width":25,"height":45},{"x":75,"y":90,"fileNum":387,"id":11454,"width":25,"height":45},{"x":100,"y":90,"fileNum":387,"id":11455,"width":25,"height":45},{"x":0,"y":135,"fileNum":387,"id":11456,"width":25,"height":45},{"x":25,"y":135,"fileNum":387,"id":11457,"width":25,"height":45},{"x":50,"y":135,"fileNum":387,"id":11458,"width":25,"height":45},{"x":75,"y":135,"fileNum":387,"id":11459,"width":25,"height":45},{"x":100,"y":135,"fileNum":387,"id":11460,"width":25,"height":45},{"x":0,"y":0,"fileNum":388,"id":11465,"width":25,"height":45},{"x":25,"y":0,"fileNum":388,"id":11466,"width":25,"height":45},{"x":50,"y":0,"fileNum":388,"id":11467,"width":25,"height":45},{"x":75,"y":0,"fileNum":388,"id":11468,"width":25,"height":45},{"x":100,"y":0,"fileNum":388,"id":11469,"width":25,"height":45},{"x":125,"y":0,"fileNum":388,"id":11470,"width":25,"height":45},{"x":0,"y":45,"fileNum":388,"id":11471,"width":25,"height":45},{"x":25,"y":45,"fileNum":388,"id":11472,"width":25,"height":45},{"x":50,"y":45,"fileNum":388,"id":11473,"width":25,"height":45},{"x":75,"y":45,"fileNum":388,"id":11474,"width":25,"height":45},{"x":100,"y":45,"fileNum":388,"id":11475,"width":25,"height":45},{"x":125,"y":45,"fileNum":388,"id":11476,"width":25,"height":45},{"x":0,"y":90,"fileNum":388,"id":11477,"width":25,"height":45},{"x":25,"y":90,"fileNum":388,"id":11478,"width":25,"height":45},{"x":50,"y":90,"fileNum":388,"id":11479,"width":25,"height":45},{"x":75,"y":90,"fileNum":388,"id":11480,"width":25,"height":45},{"x":100,"y":90,"fileNum":388,"id":11481,"width":25,"height":45},{"x":0,"y":135,"fileNum":388,"id":11482,"width":25,"height":45},{"x":25,"y":135,"fileNum":388,"id":11483,"width":25,"height":45},{"x":50,"y":135,"fileNum":388,"id":11484,"width":25,"height":45},{"x":75,"y":135,"fileNum":388,"id":11485,"width":25,"height":45},{"x":100,"y":135,"fileNum":388,"id":11486,"width":25,"height":45},{"x":0,"y":0,"fileNum":390,"id":11491,"width":25,"height":45},{"x":25,"y":0,"fileNum":390,"id":11492,"width":25,"height":45},{"x":50,"y":0,"fileNum":390,"id":11493,"width":25,"height":45},{"x":75,"y":0,"fileNum":390,"id":11494,"width":25,"height":45},{"x":100,"y":0,"fileNum":390,"id":11495,"width":25,"height":45},{"x":125,"y":0,"fileNum":390,"id":11496,"width":25,"height":45},{"x":0,"y":45,"fileNum":390,"id":11497,"width":25,"height":45},{"x":25,"y":45,"fileNum":390,"id":11498,"width":25,"height":45},{"x":50,"y":45,"fileNum":390,"id":11499,"width":25,"height":45},{"x":75,"y":45,"fileNum":390,"id":11500,"width":25,"height":45},{"x":100,"y":45,"fileNum":390,"id":11501,"width":25,"height":45},{"x":125,"y":45,"fileNum":390,"id":11502,"width":25,"height":45},{"x":0,"y":90,"fileNum":390,"id":11503,"width":25,"height":45},{"x":25,"y":90,"fileNum":390,"id":11504,"width":25,"height":45},{"x":50,"y":90,"fileNum":390,"id":11505,"width":25,"height":45},{"x":75,"y":90,"fileNum":390,"id":11506,"width":25,"height":45},{"x":100,"y":90,"fileNum":390,"id":11507,"width":25,"height":45},{"x":0,"y":135,"fileNum":390,"id":11508,"width":25,"height":45},{"x":25,"y":135,"fileNum":390,"id":11509,"width":25,"height":45},{"x":50,"y":135,"fileNum":390,"id":11510,"width":25,"height":45},{"x":75,"y":135,"fileNum":390,"id":11511,"width":25,"height":45},{"x":100,"y":135,"fileNum":390,"id":11512,"width":25,"height":45},{"x":0,"y":0,"fileNum":391,"id":11517,"width":25,"height":45},{"x":25,"y":0,"fileNum":391,"id":11518,"width":25,"height":45},{"x":50,"y":0,"fileNum":391,"id":11519,"width":25,"height":45},{"x":75,"y":0,"fileNum":391,"id":11520,"width":25,"height":45},{"x":100,"y":0,"fileNum":391,"id":11521,"width":25,"height":45},{"x":125,"y":0,"fileNum":391,"id":11522,"width":25,"height":45},{"x":0,"y":45,"fileNum":391,"id":11523,"width":25,"height":45},{"x":25,"y":45,"fileNum":391,"id":11524,"width":25,"height":45},{"x":50,"y":45,"fileNum":391,"id":11525,"width":25,"height":45},{"x":75,"y":45,"fileNum":391,"id":11526,"width":25,"height":45},{"x":100,"y":45,"fileNum":391,"id":11527,"width":25,"height":45},{"x":125,"y":45,"fileNum":391,"id":11528,"width":25,"height":45},{"x":0,"y":90,"fileNum":391,"id":11529,"width":25,"height":45},{"x":25,"y":90,"fileNum":391,"id":11530,"width":25,"height":45},{"x":50,"y":90,"fileNum":391,"id":11531,"width":25,"height":45},{"x":75,"y":90,"fileNum":391,"id":11532,"width":25,"height":45},{"x":100,"y":90,"fileNum":391,"id":11533,"width":25,"height":45},{"x":0,"y":135,"fileNum":391,"id":11534,"width":25,"height":45},{"x":25,"y":135,"fileNum":391,"id":11535,"width":25,"height":45},{"x":50,"y":135,"fileNum":391,"id":11536,"width":25,"height":45},{"x":75,"y":135,"fileNum":391,"id":11537,"width":25,"height":45},{"x":100,"y":135,"fileNum":391,"id":11538,"width":25,"height":45},{"x":0,"y":0,"fileNum":392,"id":11543,"width":25,"height":45},{"x":25,"y":0,"fileNum":392,"id":11544,"width":25,"height":45},{"x":50,"y":0,"fileNum":392,"id":11545,"width":25,"height":45},{"x":75,"y":0,"fileNum":392,"id":11546,"width":25,"height":45},{"x":100,"y":0,"fileNum":392,"id":11547,"width":25,"height":45},{"x":125,"y":0,"fileNum":392,"id":11548,"width":25,"height":45},{"x":0,"y":45,"fileNum":392,"id":11549,"width":25,"height":45},{"x":25,"y":45,"fileNum":392,"id":11550,"width":25,"height":45},{"x":50,"y":45,"fileNum":392,"id":11551,"width":25,"height":45},{"x":75,"y":45,"fileNum":392,"id":11552,"width":25,"height":45},{"x":100,"y":45,"fileNum":392,"id":11553,"width":25,"height":45},{"x":125,"y":45,"fileNum":392,"id":11554,"width":25,"height":45},{"x":0,"y":90,"fileNum":392,"id":11555,"width":25,"height":45},{"x":25,"y":90,"fileNum":392,"id":11556,"width":25,"height":45},{"x":50,"y":90,"fileNum":392,"id":11557,"width":25,"height":45},{"x":75,"y":90,"fileNum":392,"id":11558,"width":25,"height":45},{"x":100,"y":90,"fileNum":392,"id":11559,"width":25,"height":45},{"x":0,"y":135,"fileNum":392,"id":11560,"width":25,"height":45},{"x":25,"y":135,"fileNum":392,"id":11561,"width":25,"height":45},{"x":50,"y":135,"fileNum":392,"id":11562,"width":25,"height":45},{"x":75,"y":135,"fileNum":392,"id":11563,"width":25,"height":45},{"x":100,"y":135,"fileNum":392,"id":11564,"width":25,"height":45},{"x":0,"y":0,"fileNum":393,"id":11569,"width":25,"height":45},{"x":25,"y":0,"fileNum":393,"id":11570,"width":25,"height":45},{"x":50,"y":0,"fileNum":393,"id":11571,"width":25,"height":45},{"x":75,"y":0,"fileNum":393,"id":11572,"width":25,"height":45},{"x":100,"y":0,"fileNum":393,"id":11573,"width":25,"height":45},{"x":125,"y":0,"fileNum":393,"id":11574,"width":25,"height":45},{"x":0,"y":45,"fileNum":393,"id":11575,"width":25,"height":45},{"x":25,"y":45,"fileNum":393,"id":11576,"width":25,"height":45},{"x":50,"y":45,"fileNum":393,"id":11577,"width":25,"height":45},{"x":75,"y":45,"fileNum":393,"id":11578,"width":25,"height":45},{"x":100,"y":45,"fileNum":393,"id":11579,"width":25,"height":45},{"x":125,"y":45,"fileNum":393,"id":11580,"width":25,"height":45},{"x":0,"y":90,"fileNum":393,"id":11581,"width":25,"height":45},{"x":25,"y":90,"fileNum":393,"id":11582,"width":25,"height":45},{"x":50,"y":90,"fileNum":393,"id":11583,"width":25,"height":45},{"x":75,"y":90,"fileNum":393,"id":11584,"width":25,"height":45},{"x":100,"y":90,"fileNum":393,"id":11585,"width":25,"height":45},{"x":0,"y":135,"fileNum":393,"id":11586,"width":25,"height":45},{"x":25,"y":135,"fileNum":393,"id":11587,"width":25,"height":45},{"x":50,"y":135,"fileNum":393,"id":11588,"width":25,"height":45},{"x":75,"y":135,"fileNum":393,"id":11589,"width":25,"height":45},{"x":100,"y":135,"fileNum":393,"id":11590,"width":25,"height":45},{"x":0,"y":0,"fileNum":394,"id":11595,"width":25,"height":45},{"x":25,"y":0,"fileNum":394,"id":11596,"width":25,"height":45},{"x":50,"y":0,"fileNum":394,"id":11597,"width":25,"height":45},{"x":75,"y":0,"fileNum":394,"id":11598,"width":25,"height":45},{"x":100,"y":0,"fileNum":394,"id":11599,"width":25,"height":45},{"x":125,"y":0,"fileNum":394,"id":11600,"width":25,"height":45},{"x":0,"y":45,"fileNum":394,"id":11601,"width":25,"height":45},{"x":25,"y":45,"fileNum":394,"id":11602,"width":25,"height":45},{"x":50,"y":45,"fileNum":394,"id":11603,"width":25,"height":45},{"x":75,"y":45,"fileNum":394,"id":11604,"width":25,"height":45},{"x":100,"y":45,"fileNum":394,"id":11605,"width":25,"height":45},{"x":125,"y":45,"fileNum":394,"id":11606,"width":25,"height":45},{"x":0,"y":90,"fileNum":394,"id":11607,"width":25,"height":45},{"x":25,"y":90,"fileNum":394,"id":11608,"width":25,"height":45},{"x":50,"y":90,"fileNum":394,"id":11609,"width":25,"height":45},{"x":75,"y":90,"fileNum":394,"id":11610,"width":25,"height":45},{"x":100,"y":90,"fileNum":394,"id":11611,"width":25,"height":45},{"x":0,"y":135,"fileNum":394,"id":11612,"width":25,"height":45},{"x":25,"y":135,"fileNum":394,"id":11613,"width":25,"height":45},{"x":50,"y":135,"fileNum":394,"id":11614,"width":25,"height":45},{"x":75,"y":135,"fileNum":394,"id":11615,"width":25,"height":45},{"x":100,"y":135,"fileNum":394,"id":11616,"width":25,"height":45},{"x":0,"y":0,"fileNum":395,"id":11621,"width":25,"height":45},{"x":25,"y":0,"fileNum":395,"id":11622,"width":25,"height":45},{"x":50,"y":0,"fileNum":395,"id":11623,"width":25,"height":45},{"x":75,"y":0,"fileNum":395,"id":11624,"width":25,"height":45},{"x":100,"y":0,"fileNum":395,"id":11625,"width":25,"height":45},{"x":125,"y":0,"fileNum":395,"id":11626,"width":25,"height":45},{"x":0,"y":45,"fileNum":395,"id":11627,"width":25,"height":45},{"x":25,"y":45,"fileNum":395,"id":11628,"width":25,"height":45},{"x":50,"y":45,"fileNum":395,"id":11629,"width":25,"height":45},{"x":75,"y":45,"fileNum":395,"id":11630,"width":25,"height":45},{"x":100,"y":45,"fileNum":395,"id":11631,"width":25,"height":45},{"x":125,"y":45,"fileNum":395,"id":11632,"width":25,"height":45},{"x":0,"y":90,"fileNum":395,"id":11633,"width":25,"height":45},{"x":25,"y":90,"fileNum":395,"id":11634,"width":25,"height":45},{"x":50,"y":90,"fileNum":395,"id":11635,"width":25,"height":45},{"x":75,"y":90,"fileNum":395,"id":11636,"width":25,"height":45},{"x":100,"y":90,"fileNum":395,"id":11637,"width":25,"height":45},{"x":0,"y":135,"fileNum":395,"id":11638,"width":25,"height":45},{"x":25,"y":135,"fileNum":395,"id":11639,"width":25,"height":45},{"x":50,"y":135,"fileNum":395,"id":11640,"width":25,"height":45},{"x":75,"y":135,"fileNum":395,"id":11641,"width":25,"height":45},{"x":100,"y":135,"fileNum":395,"id":11642,"width":25,"height":45},{"x":0,"y":0,"fileNum":396,"id":11647,"width":25,"height":45},{"x":25,"y":0,"fileNum":396,"id":11648,"width":25,"height":45},{"x":50,"y":0,"fileNum":396,"id":11649,"width":25,"height":45},{"x":75,"y":0,"fileNum":396,"id":11650,"width":25,"height":45},{"x":100,"y":0,"fileNum":396,"id":11651,"width":25,"height":45},{"x":125,"y":0,"fileNum":396,"id":11652,"width":25,"height":45},{"x":0,"y":45,"fileNum":396,"id":11653,"width":25,"height":45},{"x":25,"y":45,"fileNum":396,"id":11654,"width":25,"height":45},{"x":50,"y":45,"fileNum":396,"id":11655,"width":25,"height":45},{"x":75,"y":45,"fileNum":396,"id":11656,"width":25,"height":45},{"x":100,"y":45,"fileNum":396,"id":11657,"width":25,"height":45},{"x":125,"y":45,"fileNum":396,"id":11658,"width":25,"height":45},{"x":0,"y":90,"fileNum":396,"id":11659,"width":25,"height":45},{"x":25,"y":90,"fileNum":396,"id":11660,"width":25,"height":45},{"x":50,"y":90,"fileNum":396,"id":11661,"width":25,"height":45},{"x":75,"y":90,"fileNum":396,"id":11662,"width":25,"height":45},{"x":100,"y":90,"fileNum":396,"id":11663,"width":25,"height":45},{"x":0,"y":135,"fileNum":396,"id":11664,"width":25,"height":45},{"x":25,"y":135,"fileNum":396,"id":11665,"width":25,"height":45},{"x":50,"y":135,"fileNum":396,"id":11666,"width":25,"height":45},{"x":75,"y":135,"fileNum":396,"id":11667,"width":25,"height":45},{"x":100,"y":135,"fileNum":396,"id":11668,"width":25,"height":45},{"x":0,"y":0,"fileNum":397,"id":11673,"width":25,"height":45},{"x":25,"y":0,"fileNum":397,"id":11674,"width":25,"height":45},{"x":50,"y":0,"fileNum":397,"id":11675,"width":25,"height":45},{"x":75,"y":0,"fileNum":397,"id":11676,"width":25,"height":45},{"x":100,"y":0,"fileNum":397,"id":11677,"width":25,"height":45},{"x":125,"y":0,"fileNum":397,"id":11678,"width":25,"height":45},{"x":0,"y":45,"fileNum":397,"id":11679,"width":25,"height":45},{"x":25,"y":45,"fileNum":397,"id":11680,"width":25,"height":45},{"x":50,"y":45,"fileNum":397,"id":11681,"width":25,"height":45},{"x":75,"y":45,"fileNum":397,"id":11682,"width":25,"height":45},{"x":100,"y":45,"fileNum":397,"id":11683,"width":25,"height":45},{"x":125,"y":45,"fileNum":397,"id":11684,"width":25,"height":45},{"x":0,"y":90,"fileNum":397,"id":11685,"width":25,"height":45},{"x":25,"y":90,"fileNum":397,"id":11686,"width":25,"height":45},{"x":50,"y":90,"fileNum":397,"id":11687,"width":25,"height":45},{"x":75,"y":90,"fileNum":397,"id":11688,"width":25,"height":45},{"x":100,"y":90,"fileNum":397,"id":11689,"width":25,"height":45},{"x":0,"y":135,"fileNum":397,"id":11690,"width":25,"height":45},{"x":25,"y":135,"fileNum":397,"id":11691,"width":25,"height":45},{"x":50,"y":135,"fileNum":397,"id":11692,"width":25,"height":45},{"x":75,"y":135,"fileNum":397,"id":11693,"width":25,"height":45},{"x":100,"y":135,"fileNum":397,"id":11694,"width":25,"height":45},{"x":0,"y":0,"fileNum":398,"id":11699,"width":25,"height":45},{"x":25,"y":0,"fileNum":398,"id":11700,"width":25,"height":45},{"x":50,"y":0,"fileNum":398,"id":11701,"width":25,"height":45},{"x":75,"y":0,"fileNum":398,"id":11702,"width":25,"height":45},{"x":100,"y":0,"fileNum":398,"id":11703,"width":25,"height":45},{"x":125,"y":0,"fileNum":398,"id":11704,"width":25,"height":45},{"x":0,"y":45,"fileNum":398,"id":11705,"width":25,"height":45},{"x":25,"y":45,"fileNum":398,"id":11706,"width":25,"height":45},{"x":50,"y":45,"fileNum":398,"id":11707,"width":25,"height":45},{"x":75,"y":45,"fileNum":398,"id":11708,"width":25,"height":45},{"x":100,"y":45,"fileNum":398,"id":11709,"width":25,"height":45},{"x":125,"y":45,"fileNum":398,"id":11710,"width":25,"height":45},{"x":0,"y":90,"fileNum":398,"id":11711,"width":25,"height":45},{"x":25,"y":90,"fileNum":398,"id":11712,"width":25,"height":45},{"x":50,"y":90,"fileNum":398,"id":11713,"width":25,"height":45},{"x":75,"y":90,"fileNum":398,"id":11714,"width":25,"height":45},{"x":100,"y":90,"fileNum":398,"id":11715,"width":25,"height":45},{"x":0,"y":135,"fileNum":398,"id":11716,"width":25,"height":45},{"x":25,"y":135,"fileNum":398,"id":11717,"width":25,"height":45},{"x":50,"y":135,"fileNum":398,"id":11718,"width":25,"height":45},{"x":75,"y":135,"fileNum":398,"id":11719,"width":25,"height":45},{"x":100,"y":135,"fileNum":398,"id":11720,"width":25,"height":45},{"x":0,"y":0,"fileNum":399,"id":11725,"width":25,"height":45},{"x":25,"y":0,"fileNum":399,"id":11726,"width":25,"height":45},{"x":50,"y":0,"fileNum":399,"id":11727,"width":25,"height":45},{"x":75,"y":0,"fileNum":399,"id":11728,"width":25,"height":45},{"x":100,"y":0,"fileNum":399,"id":11729,"width":25,"height":45},{"x":125,"y":0,"fileNum":399,"id":11730,"width":25,"height":45},{"x":0,"y":45,"fileNum":399,"id":11731,"width":25,"height":45},{"x":25,"y":45,"fileNum":399,"id":11732,"width":25,"height":45},{"x":50,"y":45,"fileNum":399,"id":11733,"width":25,"height":45},{"x":75,"y":45,"fileNum":399,"id":11734,"width":25,"height":45},{"x":100,"y":45,"fileNum":399,"id":11735,"width":25,"height":45},{"x":125,"y":45,"fileNum":399,"id":11736,"width":25,"height":45},{"x":0,"y":90,"fileNum":399,"id":11737,"width":25,"height":45},{"x":25,"y":90,"fileNum":399,"id":11738,"width":25,"height":45},{"x":50,"y":90,"fileNum":399,"id":11739,"width":25,"height":45},{"x":75,"y":90,"fileNum":399,"id":11740,"width":25,"height":45},{"x":100,"y":90,"fileNum":399,"id":11741,"width":25,"height":45},{"x":0,"y":135,"fileNum":399,"id":11742,"width":25,"height":45},{"x":25,"y":135,"fileNum":399,"id":11743,"width":25,"height":45},{"x":50,"y":135,"fileNum":399,"id":11744,"width":25,"height":45},{"x":75,"y":135,"fileNum":399,"id":11745,"width":25,"height":45},{"x":100,"y":135,"fileNum":399,"id":11746,"width":25,"height":45},{"x":0,"y":0,"fileNum":401,"id":11751,"width":25,"height":45},{"x":25,"y":0,"fileNum":401,"id":11752,"width":25,"height":45},{"x":50,"y":0,"fileNum":401,"id":11753,"width":25,"height":45},{"x":75,"y":0,"fileNum":401,"id":11754,"width":25,"height":45},{"x":100,"y":0,"fileNum":401,"id":11755,"width":25,"height":45},{"x":125,"y":0,"fileNum":401,"id":11756,"width":25,"height":45},{"x":0,"y":45,"fileNum":401,"id":11757,"width":25,"height":45},{"x":25,"y":45,"fileNum":401,"id":11758,"width":25,"height":45},{"x":50,"y":45,"fileNum":401,"id":11759,"width":25,"height":45},{"x":75,"y":45,"fileNum":401,"id":11760,"width":25,"height":45},{"x":100,"y":45,"fileNum":401,"id":11761,"width":25,"height":45},{"x":125,"y":45,"fileNum":401,"id":11762,"width":25,"height":45},{"x":0,"y":90,"fileNum":401,"id":11763,"width":25,"height":45},{"x":25,"y":90,"fileNum":401,"id":11764,"width":25,"height":45},{"x":50,"y":90,"fileNum":401,"id":11765,"width":25,"height":45},{"x":75,"y":90,"fileNum":401,"id":11766,"width":25,"height":45},{"x":100,"y":90,"fileNum":401,"id":11767,"width":25,"height":45},{"x":0,"y":135,"fileNum":401,"id":11768,"width":25,"height":45},{"x":25,"y":135,"fileNum":401,"id":11769,"width":25,"height":45},{"x":50,"y":135,"fileNum":401,"id":11770,"width":25,"height":45},{"x":75,"y":135,"fileNum":401,"id":11771,"width":25,"height":45},{"x":100,"y":135,"fileNum":401,"id":11772,"width":25,"height":45},{"x":0,"y":0,"fileNum":402,"id":11777,"width":25,"height":45},{"x":25,"y":0,"fileNum":402,"id":11778,"width":25,"height":45},{"x":50,"y":0,"fileNum":402,"id":11779,"width":25,"height":45},{"x":75,"y":0,"fileNum":402,"id":11780,"width":25,"height":45},{"x":100,"y":0,"fileNum":402,"id":11781,"width":25,"height":45},{"x":125,"y":0,"fileNum":402,"id":11782,"width":25,"height":45},{"x":0,"y":45,"fileNum":402,"id":11783,"width":25,"height":45},{"x":25,"y":45,"fileNum":402,"id":11784,"width":25,"height":45},{"x":50,"y":45,"fileNum":402,"id":11785,"width":25,"height":45},{"x":75,"y":45,"fileNum":402,"id":11786,"width":25,"height":45},{"x":100,"y":45,"fileNum":402,"id":11787,"width":25,"height":45},{"x":125,"y":45,"fileNum":402,"id":11788,"width":25,"height":45},{"x":0,"y":90,"fileNum":402,"id":11789,"width":25,"height":45},{"x":25,"y":90,"fileNum":402,"id":11790,"width":25,"height":45},{"x":50,"y":90,"fileNum":402,"id":11791,"width":25,"height":45},{"x":75,"y":90,"fileNum":402,"id":11792,"width":25,"height":45},{"x":100,"y":90,"fileNum":402,"id":11793,"width":25,"height":45},{"x":0,"y":135,"fileNum":402,"id":11794,"width":25,"height":45},{"x":25,"y":135,"fileNum":402,"id":11795,"width":25,"height":45},{"x":50,"y":135,"fileNum":402,"id":11796,"width":25,"height":45},{"x":75,"y":135,"fileNum":402,"id":11797,"width":25,"height":45},{"x":100,"y":135,"fileNum":402,"id":11798,"width":25,"height":45},{"x":0,"y":0,"fileNum":403,"id":11803,"width":25,"height":45},{"x":25,"y":0,"fileNum":403,"id":11804,"width":25,"height":45},{"x":50,"y":0,"fileNum":403,"id":11805,"width":25,"height":45},{"x":75,"y":0,"fileNum":403,"id":11806,"width":25,"height":45},{"x":100,"y":0,"fileNum":403,"id":11807,"width":25,"height":45},{"x":125,"y":0,"fileNum":403,"id":11808,"width":25,"height":45},{"x":0,"y":45,"fileNum":403,"id":11809,"width":25,"height":45},{"x":25,"y":45,"fileNum":403,"id":11810,"width":25,"height":45},{"x":50,"y":45,"fileNum":403,"id":11811,"width":25,"height":45},{"x":75,"y":45,"fileNum":403,"id":11812,"width":25,"height":45},{"x":100,"y":45,"fileNum":403,"id":11813,"width":25,"height":45},{"x":125,"y":45,"fileNum":403,"id":11814,"width":25,"height":45},{"x":0,"y":90,"fileNum":403,"id":11815,"width":25,"height":45},{"x":25,"y":90,"fileNum":403,"id":11816,"width":25,"height":45},{"x":50,"y":90,"fileNum":403,"id":11817,"width":25,"height":45},{"x":75,"y":90,"fileNum":403,"id":11818,"width":25,"height":45},{"x":100,"y":90,"fileNum":403,"id":11819,"width":25,"height":45},{"x":0,"y":135,"fileNum":403,"id":11820,"width":25,"height":45},{"x":25,"y":135,"fileNum":403,"id":11821,"width":25,"height":45},{"x":50,"y":135,"fileNum":403,"id":11822,"width":25,"height":45},{"x":75,"y":135,"fileNum":403,"id":11823,"width":25,"height":45},{"x":100,"y":135,"fileNum":403,"id":11824,"width":25,"height":45},{"x":0,"y":0,"fileNum":404,"id":11829,"width":25,"height":45},{"x":25,"y":0,"fileNum":404,"id":11830,"width":25,"height":45},{"x":50,"y":0,"fileNum":404,"id":11831,"width":25,"height":45},{"x":75,"y":0,"fileNum":404,"id":11832,"width":25,"height":45},{"x":100,"y":0,"fileNum":404,"id":11833,"width":25,"height":45},{"x":125,"y":0,"fileNum":404,"id":11834,"width":25,"height":45},{"x":0,"y":45,"fileNum":404,"id":11835,"width":25,"height":45},{"x":25,"y":45,"fileNum":404,"id":11836,"width":25,"height":45},{"x":50,"y":45,"fileNum":404,"id":11837,"width":25,"height":45},{"x":75,"y":45,"fileNum":404,"id":11838,"width":25,"height":45},{"x":100,"y":45,"fileNum":404,"id":11839,"width":25,"height":45},{"x":125,"y":45,"fileNum":404,"id":11840,"width":25,"height":45},{"x":0,"y":90,"fileNum":404,"id":11841,"width":25,"height":45},{"x":25,"y":90,"fileNum":404,"id":11842,"width":25,"height":45},{"x":50,"y":90,"fileNum":404,"id":11843,"width":25,"height":45},{"x":75,"y":90,"fileNum":404,"id":11844,"width":25,"height":45},{"x":100,"y":90,"fileNum":404,"id":11845,"width":25,"height":45},{"x":0,"y":135,"fileNum":404,"id":11846,"width":25,"height":45},{"x":25,"y":135,"fileNum":404,"id":11847,"width":25,"height":45},{"x":50,"y":135,"fileNum":404,"id":11848,"width":25,"height":45},{"x":75,"y":135,"fileNum":404,"id":11849,"width":25,"height":45},{"x":100,"y":135,"fileNum":404,"id":11850,"width":25,"height":45},{"x":0,"y":0,"fileNum":405,"id":11855,"width":25,"height":45},{"x":25,"y":0,"fileNum":405,"id":11856,"width":25,"height":45},{"x":50,"y":0,"fileNum":405,"id":11857,"width":25,"height":45},{"x":75,"y":0,"fileNum":405,"id":11858,"width":25,"height":45},{"x":100,"y":0,"fileNum":405,"id":11859,"width":25,"height":45},{"x":125,"y":0,"fileNum":405,"id":11860,"width":25,"height":45},{"x":0,"y":45,"fileNum":405,"id":11861,"width":25,"height":45},{"x":25,"y":45,"fileNum":405,"id":11862,"width":25,"height":45},{"x":50,"y":45,"fileNum":405,"id":11863,"width":25,"height":45},{"x":75,"y":45,"fileNum":405,"id":11864,"width":25,"height":45},{"x":100,"y":45,"fileNum":405,"id":11865,"width":25,"height":45},{"x":125,"y":45,"fileNum":405,"id":11866,"width":25,"height":45},{"x":0,"y":90,"fileNum":405,"id":11867,"width":25,"height":45},{"x":25,"y":90,"fileNum":405,"id":11868,"width":25,"height":45},{"x":50,"y":90,"fileNum":405,"id":11869,"width":25,"height":45},{"x":75,"y":90,"fileNum":405,"id":11870,"width":25,"height":45},{"x":100,"y":90,"fileNum":405,"id":11871,"width":25,"height":45},{"x":0,"y":135,"fileNum":405,"id":11872,"width":25,"height":45},{"x":25,"y":135,"fileNum":405,"id":11873,"width":25,"height":45},{"x":50,"y":135,"fileNum":405,"id":11874,"width":25,"height":45},{"x":75,"y":135,"fileNum":405,"id":11875,"width":25,"height":45},{"x":100,"y":135,"fileNum":405,"id":11876,"width":25,"height":45},{"x":0,"y":0,"fileNum":4143,"id":11881,"width":140,"height":170},{"x":140,"y":0,"fileNum":4143,"id":11882,"width":140,"height":170},{"x":280,"y":0,"fileNum":4143,"id":11883,"width":140,"height":170},{"x":420,"y":0,"fileNum":4143,"id":11884,"width":140,"height":170},{"x":560,"y":0,"fileNum":4143,"id":11885,"width":140,"height":170},{"x":700,"y":0,"fileNum":4143,"id":11886,"width":140,"height":170},{"x":840,"y":0,"fileNum":4143,"id":11887,"width":140,"height":170},{"x":980,"y":0,"fileNum":4143,"id":11888,"width":140,"height":170},{"x":0,"y":170,"fileNum":4143,"id":11889,"width":140,"height":170},{"x":140,"y":170,"fileNum":4143,"id":11890,"width":140,"height":170},{"x":280,"y":170,"fileNum":4143,"id":11891,"width":140,"height":170},{"x":420,"y":170,"fileNum":4143,"id":11892,"width":140,"height":170},{"x":560,"y":170,"fileNum":4143,"id":11893,"width":140,"height":170},{"x":700,"y":170,"fileNum":4143,"id":11894,"width":140,"height":170},{"x":840,"y":170,"fileNum":4143,"id":11895,"width":140,"height":170},{"x":980,"y":170,"fileNum":4143,"id":11896,"width":140,"height":170},{"x":0,"y":510,"fileNum":4143,"id":11897,"width":140,"height":170},{"x":140,"y":510,"fileNum":4143,"id":11898,"width":140,"height":170},{"x":280,"y":510,"fileNum":4143,"id":11899,"width":140,"height":170},{"x":420,"y":510,"fileNum":4143,"id":11900,"width":140,"height":170},{"x":560,"y":510,"fileNum":4143,"id":11901,"width":140,"height":170},{"x":698,"y":510,"fileNum":4143,"id":11902,"width":140,"height":170},{"x":840,"y":510,"fileNum":4143,"id":11903,"width":140,"height":170},{"x":980,"y":510,"fileNum":4143,"id":11904,"width":140,"height":170},{"x":0,"y":340,"fileNum":4143,"id":11905,"width":140,"height":170},{"x":140,"y":340,"fileNum":4143,"id":11906,"width":140,"height":170},{"x":280,"y":341,"fileNum":4143,"id":11907,"width":140,"height":170},{"x":421,"y":340,"fileNum":4143,"id":11908,"width":140,"height":170},{"x":560,"y":340,"fileNum":4143,"id":11909,"width":140,"height":170},{"x":700,"y":340,"fileNum":4143,"id":11910,"width":140,"height":170},{"x":840,"y":340,"fileNum":4143,"id":11911,"width":140,"height":170},{"x":980,"y":340,"fileNum":4143,"id":11912,"width":140,"height":170},{"x":0,"y":0,"fileNum":363,"id":11917,"width":25,"height":45},{"x":25,"y":0,"fileNum":363,"id":11918,"width":25,"height":45},{"x":50,"y":0,"fileNum":363,"id":11919,"width":25,"height":45},{"x":75,"y":0,"fileNum":363,"id":11920,"width":25,"height":45},{"x":100,"y":0,"fileNum":363,"id":11921,"width":25,"height":45},{"x":125,"y":0,"fileNum":363,"id":11922,"width":25,"height":45},{"x":0,"y":45,"fileNum":363,"id":11923,"width":25,"height":45},{"x":25,"y":45,"fileNum":363,"id":11924,"width":25,"height":45},{"x":50,"y":45,"fileNum":363,"id":11925,"width":25,"height":45},{"x":75,"y":45,"fileNum":363,"id":11926,"width":25,"height":45},{"x":100,"y":45,"fileNum":363,"id":11927,"width":25,"height":45},{"x":125,"y":45,"fileNum":363,"id":11928,"width":25,"height":45},{"x":0,"y":90,"fileNum":363,"id":11929,"width":25,"height":45},{"x":25,"y":90,"fileNum":363,"id":11930,"width":25,"height":45},{"x":50,"y":90,"fileNum":363,"id":11931,"width":25,"height":45},{"x":75,"y":90,"fileNum":363,"id":11932,"width":25,"height":45},{"x":100,"y":90,"fileNum":363,"id":11933,"width":25,"height":45},{"x":0,"y":135,"fileNum":363,"id":11934,"width":25,"height":45},{"x":25,"y":135,"fileNum":363,"id":11935,"width":25,"height":45},{"x":50,"y":135,"fileNum":363,"id":11936,"width":25,"height":45},{"x":75,"y":135,"fileNum":363,"id":11937,"width":25,"height":45},{"x":100,"y":135,"fileNum":363,"id":11938,"width":25,"height":45},{"x":0,"y":0,"fileNum":4144,"id":11943,"width":140,"height":170},{"x":140,"y":0,"fileNum":4144,"id":11944,"width":140,"height":170},{"x":280,"y":0,"fileNum":4144,"id":11945,"width":140,"height":170},{"x":420,"y":0,"fileNum":4144,"id":11946,"width":140,"height":170},{"x":560,"y":0,"fileNum":4144,"id":11947,"width":140,"height":170},{"x":700,"y":0,"fileNum":4144,"id":11948,"width":140,"height":170},{"x":840,"y":0,"fileNum":4144,"id":11949,"width":140,"height":170},{"x":980,"y":0,"fileNum":4144,"id":11950,"width":140,"height":170},{"x":0,"y":170,"fileNum":4144,"id":11951,"width":140,"height":170},{"x":140,"y":170,"fileNum":4144,"id":11952,"width":140,"height":170},{"x":280,"y":170,"fileNum":4144,"id":11953,"width":140,"height":170},{"x":420,"y":170,"fileNum":4144,"id":11954,"width":140,"height":170},{"x":560,"y":170,"fileNum":4144,"id":11955,"width":140,"height":170},{"x":700,"y":170,"fileNum":4144,"id":11956,"width":140,"height":170},{"x":840,"y":170,"fileNum":4144,"id":11957,"width":140,"height":170},{"x":980,"y":170,"fileNum":4144,"id":11958,"width":140,"height":170},{"x":0,"y":510,"fileNum":4144,"id":11959,"width":140,"height":170},{"x":140,"y":510,"fileNum":4144,"id":11960,"width":140,"height":170},{"x":280,"y":510,"fileNum":4144,"id":11961,"width":140,"height":170},{"x":420,"y":510,"fileNum":4144,"id":11962,"width":140,"height":170},{"x":560,"y":510,"fileNum":4144,"id":11963,"width":140,"height":170},{"x":700,"y":510,"fileNum":4144,"id":11964,"width":140,"height":170},{"x":840,"y":510,"fileNum":4144,"id":11965,"width":140,"height":170},{"x":980,"y":510,"fileNum":4144,"id":11966,"width":140,"height":170},{"x":0,"y":340,"fileNum":4144,"id":11967,"width":140,"height":170},{"x":140,"y":340,"fileNum":4144,"id":11968,"width":140,"height":170},{"x":280,"y":342,"fileNum":4144,"id":11969,"width":140,"height":170},{"x":422,"y":340,"fileNum":4144,"id":11970,"width":140,"height":170},{"x":560,"y":340,"fileNum":4144,"id":11971,"width":140,"height":170},{"x":700,"y":340,"fileNum":4144,"id":11972,"width":140,"height":170},{"x":840,"y":340,"fileNum":4144,"id":11973,"width":140,"height":170},{"x":980,"y":340,"fileNum":4144,"id":11974,"width":140,"height":170},{"x":0,"y":0,"fileNum":22006,"id":11979,"width":32,"height":32},{"x":0,"y":0,"fileNum":22007,"id":11980,"width":32,"height":32},{"x":0,"y":0,"fileNum":2189,"id":11981,"width":17,"height":50},{"x":17,"y":0,"fileNum":2189,"id":11982,"width":17,"height":50},{"x":34,"y":0,"fileNum":2189,"id":11983,"width":17,"height":50},{"x":51,"y":0,"fileNum":2189,"id":11984,"width":17,"height":50},{"x":0,"y":0,"fileNum":2190,"id":11985,"width":17,"height":50},{"x":17,"y":0,"fileNum":2190,"id":11986,"width":17,"height":50},{"x":34,"y":0,"fileNum":2190,"id":11987,"width":17,"height":50},{"x":51,"y":0,"fileNum":2190,"id":11988,"width":17,"height":50},{"x":0,"y":0,"fileNum":2191,"id":11989,"width":17,"height":50},{"x":17,"y":0,"fileNum":2191,"id":11990,"width":17,"height":50},{"x":34,"y":0,"fileNum":2191,"id":11991,"width":17,"height":50},{"x":51,"y":0,"fileNum":2191,"id":11992,"width":17,"height":50},{"x":0,"y":0,"fileNum":2192,"id":11993,"width":17,"height":50},{"x":17,"y":0,"fileNum":2192,"id":11994,"width":17,"height":50},{"x":34,"y":0,"fileNum":2192,"id":11995,"width":17,"height":50},{"x":51,"y":0,"fileNum":2192,"id":11996,"width":17,"height":50},{"x":0,"y":0,"fileNum":2126,"id":12000,"width":17,"height":50},{"x":16,"y":0,"fileNum":2126,"id":12001,"width":17,"height":50},{"x":34,"y":0,"fileNum":2126,"id":12002,"width":17,"height":50},{"x":51,"y":0,"fileNum":2126,"id":12003,"width":17,"height":50},{"x":0,"y":0,"fileNum":4146,"id":12004,"width":29,"height":32},{"x":29,"y":0,"fileNum":4146,"id":12005,"width":29,"height":32},{"x":58,"y":0,"fileNum":4146,"id":12006,"width":29,"height":32},{"x":0,"y":32,"fileNum":4146,"id":12007,"width":29,"height":32},{"x":29,"y":32,"fileNum":4146,"id":12008,"width":29,"height":32},{"x":58,"y":32,"fileNum":4146,"id":12009,"width":29,"height":32},{"x":0,"y":64,"fileNum":4146,"id":12010,"width":29,"height":32},{"x":29,"y":64,"fileNum":4146,"id":12011,"width":29,"height":32},{"x":58,"y":64,"fileNum":4146,"id":12012,"width":29,"height":32},{"x":0,"y":96,"fileNum":4146,"id":12013,"width":29,"height":32},{"x":29,"y":96,"fileNum":4146,"id":12014,"width":29,"height":32},{"x":58,"y":96,"fileNum":4146,"id":12015,"width":29,"height":32},{"x":0,"y":0,"fileNum":4147,"id":12020,"width":32,"height":25},{"x":31,"y":0,"fileNum":4147,"id":12021,"width":32,"height":25},{"x":0,"y":24,"fileNum":4147,"id":12022,"width":32,"height":25},{"x":31,"y":24,"fileNum":4147,"id":12023,"width":32,"height":25},{"x":0,"y":48,"fileNum":4147,"id":12024,"width":32,"height":25},{"x":31,"y":48,"fileNum":4147,"id":12025,"width":32,"height":25},{"x":0,"y":72,"fileNum":4147,"id":12026,"width":32,"height":25},{"x":31,"y":72,"fileNum":4147,"id":12027,"width":32,"height":25},{"x":0,"y":0,"fileNum":4148,"id":12032,"width":75,"height":50},{"x":74,"y":0,"fileNum":4148,"id":12033,"width":75,"height":50},{"x":148,"y":0,"fileNum":4148,"id":12034,"width":75,"height":50},{"x":222,"y":0,"fileNum":4148,"id":12035,"width":75,"height":50},{"x":0,"y":49,"fileNum":4148,"id":12036,"width":75,"height":50},{"x":74,"y":49,"fileNum":4148,"id":12037,"width":75,"height":50},{"x":148,"y":49,"fileNum":4148,"id":12038,"width":75,"height":50},{"x":222,"y":49,"fileNum":4148,"id":12039,"width":75,"height":50},{"x":0,"y":98,"fileNum":4148,"id":12040,"width":75,"height":50},{"x":74,"y":98,"fileNum":4148,"id":12041,"width":75,"height":50},{"x":148,"y":98,"fileNum":4148,"id":12042,"width":75,"height":50},{"x":222,"y":98,"fileNum":4148,"id":12043,"width":75,"height":50},{"x":0,"y":147,"fileNum":4148,"id":12044,"width":75,"height":50},{"x":74,"y":147,"fileNum":4148,"id":12045,"width":75,"height":50},{"x":148,"y":147,"fileNum":4148,"id":12046,"width":75,"height":50},{"x":222,"y":147,"fileNum":4148,"id":12047,"width":75,"height":50},{"x":0,"y":0,"fileNum":4149,"id":12052,"width":75,"height":50},{"x":74,"y":0,"fileNum":4149,"id":12053,"width":75,"height":50},{"x":148,"y":0,"fileNum":4149,"id":12054,"width":75,"height":50},{"x":222,"y":0,"fileNum":4149,"id":12055,"width":75,"height":50},{"x":0,"y":49,"fileNum":4149,"id":12056,"width":75,"height":50},{"x":74,"y":49,"fileNum":4149,"id":12057,"width":75,"height":50},{"x":148,"y":49,"fileNum":4149,"id":12058,"width":75,"height":50},{"x":222,"y":49,"fileNum":4149,"id":12059,"width":75,"height":50},{"x":0,"y":100,"fileNum":4149,"id":12060,"width":75,"height":50},{"x":74,"y":100,"fileNum":4149,"id":12061,"width":75,"height":50},{"x":148,"y":100,"fileNum":4149,"id":12062,"width":75,"height":50},{"x":222,"y":100,"fileNum":4149,"id":12063,"width":75,"height":50},{"x":0,"y":147,"fileNum":4149,"id":12064,"width":75,"height":50},{"x":74,"y":147,"fileNum":4149,"id":12065,"width":75,"height":50},{"x":148,"y":147,"fileNum":4149,"id":12066,"width":75,"height":50},{"x":222,"y":147,"fileNum":4149,"id":12067,"width":75,"height":50},{"x":0,"y":0,"fileNum":4150,"id":12072,"width":27,"height":52},{"x":27,"y":0,"fileNum":4150,"id":12073,"width":27,"height":52},{"x":54,"y":0,"fileNum":4150,"id":12074,"width":27,"height":52},{"x":81,"y":0,"fileNum":4150,"id":12075,"width":27,"height":52},{"x":108,"y":0,"fileNum":4150,"id":12076,"width":27,"height":52},{"x":135,"y":0,"fileNum":4150,"id":12077,"width":27,"height":52},{"x":162,"y":0,"fileNum":4150,"id":12078,"width":27,"height":52},{"x":189,"y":0,"fileNum":4150,"id":12079,"width":27,"height":52},{"x":0,"y":52,"fileNum":4150,"id":12080,"width":27,"height":52},{"x":27,"y":52,"fileNum":4150,"id":12081,"width":27,"height":52},{"x":54,"y":52,"fileNum":4150,"id":12082,"width":27,"height":52},{"x":81,"y":52,"fileNum":4150,"id":12083,"width":27,"height":52},{"x":108,"y":52,"fileNum":4150,"id":12084,"width":27,"height":52},{"x":135,"y":52,"fileNum":4150,"id":12085,"width":27,"height":52},{"x":162,"y":52,"fileNum":4150,"id":12086,"width":27,"height":52},{"x":189,"y":52,"fileNum":4150,"id":12087,"width":27,"height":52},{"x":0,"y":104,"fileNum":4150,"id":12088,"width":27,"height":52},{"x":27,"y":104,"fileNum":4150,"id":12089,"width":27,"height":52},{"x":54,"y":104,"fileNum":4150,"id":12090,"width":27,"height":52},{"x":81,"y":104,"fileNum":4150,"id":12091,"width":27,"height":52},{"x":108,"y":104,"fileNum":4150,"id":12092,"width":27,"height":52},{"x":135,"y":104,"fileNum":4150,"id":12093,"width":27,"height":52},{"x":162,"y":104,"fileNum":4150,"id":12094,"width":27,"height":52},{"x":189,"y":104,"fileNum":4150,"id":12095,"width":27,"height":52},{"x":0,"y":156,"fileNum":4150,"id":12096,"width":27,"height":52},{"x":27,"y":156,"fileNum":4150,"id":12097,"width":27,"height":52},{"x":54,"y":156,"fileNum":4150,"id":12098,"width":27,"height":52},{"x":81,"y":156,"fileNum":4150,"id":12099,"width":27,"height":52},{"x":108,"y":156,"fileNum":4150,"id":12100,"width":27,"height":52},{"x":135,"y":156,"fileNum":4150,"id":12101,"width":27,"height":52},{"x":162,"y":156,"fileNum":4150,"id":12102,"width":27,"height":52},{"x":189,"y":156,"fileNum":4150,"id":12103,"width":27,"height":52},{"x":0,"y":0,"fileNum":4151,"id":12108,"width":52,"height":35},{"x":52,"y":0,"fileNum":4151,"id":12109,"width":52,"height":35},{"x":104,"y":0,"fileNum":4151,"id":12110,"width":52,"height":35},{"x":156,"y":0,"fileNum":4151,"id":12111,"width":52,"height":35},{"x":208,"y":0,"fileNum":4151,"id":12112,"width":52,"height":35},{"x":260,"y":0,"fileNum":4151,"id":12113,"width":52,"height":35},{"x":312,"y":0,"fileNum":4151,"id":12114,"width":52,"height":35},{"x":364,"y":0,"fileNum":4151,"id":12115,"width":52,"height":35},{"x":0,"y":35,"fileNum":4151,"id":12116,"width":52,"height":35},{"x":52,"y":35,"fileNum":4151,"id":12117,"width":52,"height":35},{"x":104,"y":35,"fileNum":4151,"id":12118,"width":52,"height":35},{"x":156,"y":35,"fileNum":4151,"id":12119,"width":52,"height":35},{"x":208,"y":35,"fileNum":4151,"id":12120,"width":52,"height":35},{"x":260,"y":35,"fileNum":4151,"id":12121,"width":52,"height":35},{"x":312,"y":35,"fileNum":4151,"id":12122,"width":52,"height":35},{"x":364,"y":35,"fileNum":4151,"id":12123,"width":52,"height":35},{"x":0,"y":70,"fileNum":4151,"id":12124,"width":52,"height":35},{"x":52,"y":70,"fileNum":4151,"id":12125,"width":52,"height":35},{"x":104,"y":70,"fileNum":4151,"id":12126,"width":52,"height":35},{"x":156,"y":70,"fileNum":4151,"id":12127,"width":52,"height":35},{"x":208,"y":70,"fileNum":4151,"id":12128,"width":52,"height":35},{"x":260,"y":70,"fileNum":4151,"id":12129,"width":52,"height":35},{"x":312,"y":70,"fileNum":4151,"id":12130,"width":52,"height":35},{"x":364,"y":70,"fileNum":4151,"id":12131,"width":52,"height":35},{"x":0,"y":105,"fileNum":4151,"id":12132,"width":52,"height":35},{"x":52,"y":105,"fileNum":4151,"id":12133,"width":52,"height":35},{"x":104,"y":105,"fileNum":4151,"id":12134,"width":52,"height":35},{"x":156,"y":105,"fileNum":4151,"id":12135,"width":52,"height":35},{"x":208,"y":105,"fileNum":4151,"id":12136,"width":52,"height":35},{"x":260,"y":105,"fileNum":4151,"id":12137,"width":52,"height":35},{"x":312,"y":105,"fileNum":4151,"id":12138,"width":52,"height":35},{"x":364,"y":105,"fileNum":4151,"id":12139,"width":52,"height":35},{"x":0,"y":0,"fileNum":4152,"id":12144,"width":49,"height":75},{"x":49,"y":0,"fileNum":4152,"id":12145,"width":49,"height":75},{"x":98,"y":0,"fileNum":4152,"id":12146,"width":49,"height":75},{"x":147,"y":0,"fileNum":4152,"id":12147,"width":49,"height":75},{"x":196,"y":0,"fileNum":4152,"id":12148,"width":49,"height":75},{"x":245,"y":0,"fileNum":4152,"id":12149,"width":49,"height":75},{"x":294,"y":0,"fileNum":4152,"id":12150,"width":49,"height":75},{"x":343,"y":0,"fileNum":4152,"id":12151,"width":49,"height":75},{"x":392,"y":0,"fileNum":4152,"id":12152,"width":49,"height":75},{"x":0,"y":75,"fileNum":4152,"id":12153,"width":49,"height":75},{"x":49,"y":75,"fileNum":4152,"id":12154,"width":49,"height":75},{"x":98,"y":75,"fileNum":4152,"id":12155,"width":49,"height":75},{"x":147,"y":75,"fileNum":4152,"id":12156,"width":49,"height":75},{"x":196,"y":75,"fileNum":4152,"id":12157,"width":49,"height":75},{"x":245,"y":75,"fileNum":4152,"id":12158,"width":49,"height":75},{"x":294,"y":75,"fileNum":4152,"id":12159,"width":49,"height":75},{"x":343,"y":75,"fileNum":4152,"id":12160,"width":49,"height":75},{"x":392,"y":75,"fileNum":4152,"id":12161,"width":49,"height":75},{"x":0,"y":150,"fileNum":4152,"id":12162,"width":59,"height":75},{"x":59,"y":150,"fileNum":4152,"id":12163,"width":59,"height":75},{"x":118,"y":150,"fileNum":4152,"id":12164,"width":59,"height":75},{"x":177,"y":150,"fileNum":4152,"id":12165,"width":59,"height":75},{"x":236,"y":150,"fileNum":4152,"id":12166,"width":59,"height":75},{"x":295,"y":150,"fileNum":4152,"id":12167,"width":59,"height":75},{"x":354,"y":150,"fileNum":4152,"id":12168,"width":59,"height":75},{"x":413,"y":150,"fileNum":4152,"id":12169,"width":59,"height":75},{"x":472,"y":150,"fileNum":4152,"id":12170,"width":59,"height":75},{"x":0,"y":225,"fileNum":4152,"id":12171,"width":59,"height":75},{"x":59,"y":225,"fileNum":4152,"id":12172,"width":59,"height":75},{"x":118,"y":225,"fileNum":4152,"id":12173,"width":59,"height":75},{"x":177,"y":225,"fileNum":4152,"id":12174,"width":59,"height":75},{"x":236,"y":225,"fileNum":4152,"id":12175,"width":59,"height":75},{"x":295,"y":225,"fileNum":4152,"id":12176,"width":59,"height":75},{"x":354,"y":225,"fileNum":4152,"id":12177,"width":59,"height":75},{"x":413,"y":225,"fileNum":4152,"id":12178,"width":59,"height":75},{"x":475,"y":225,"fileNum":4152,"id":12179,"width":59,"height":75},{"x":0,"y":0,"fileNum":4153,"id":12184,"width":48,"height":64},{"x":48,"y":0,"fileNum":4153,"id":12185,"width":48,"height":64},{"x":96,"y":0,"fileNum":4153,"id":12186,"width":48,"height":64},{"x":144,"y":0,"fileNum":4153,"id":12187,"width":48,"height":64},{"x":192,"y":0,"fileNum":4153,"id":12188,"width":48,"height":64},{"x":240,"y":0,"fileNum":4153,"id":12189,"width":48,"height":64},{"x":288,"y":0,"fileNum":4153,"id":12190,"width":48,"height":64},{"x":336,"y":0,"fileNum":4153,"id":12191,"width":48,"height":64},{"x":0,"y":64,"fileNum":4153,"id":12192,"width":48,"height":64},{"x":48,"y":64,"fileNum":4153,"id":12193,"width":48,"height":64},{"x":96,"y":64,"fileNum":4153,"id":12194,"width":48,"height":64},{"x":144,"y":64,"fileNum":4153,"id":12195,"width":48,"height":64},{"x":192,"y":64,"fileNum":4153,"id":12196,"width":48,"height":64},{"x":240,"y":64,"fileNum":4153,"id":12197,"width":48,"height":64},{"x":288,"y":64,"fileNum":4153,"id":12198,"width":48,"height":64},{"x":336,"y":64,"fileNum":4153,"id":12199,"width":48,"height":64},{"x":0,"y":128,"fileNum":4153,"id":12200,"width":48,"height":64},{"x":48,"y":128,"fileNum":4153,"id":12201,"width":48,"height":64},{"x":96,"y":128,"fileNum":4153,"id":12202,"width":48,"height":64},{"x":144,"y":128,"fileNum":4153,"id":12203,"width":48,"height":64},{"x":192,"y":128,"fileNum":4153,"id":12204,"width":48,"height":64},{"x":240,"y":128,"fileNum":4153,"id":12205,"width":48,"height":64},{"x":288,"y":128,"fileNum":4153,"id":12206,"width":48,"height":64},{"x":336,"y":128,"fileNum":4153,"id":12207,"width":48,"height":64},{"x":0,"y":192,"fileNum":4153,"id":12208,"width":48,"height":64},{"x":48,"y":192,"fileNum":4153,"id":12209,"width":48,"height":64},{"x":96,"y":192,"fileNum":4153,"id":12210,"width":48,"height":64},{"x":144,"y":192,"fileNum":4153,"id":12211,"width":48,"height":64},{"x":192,"y":192,"fileNum":4153,"id":12212,"width":48,"height":64},{"x":240,"y":192,"fileNum":4153,"id":12213,"width":48,"height":64},{"x":288,"y":192,"fileNum":4153,"id":12214,"width":48,"height":64},{"x":336,"y":192,"fileNum":4153,"id":12215,"width":48,"height":64},{"x":0,"y":0,"fileNum":4154,"id":12220,"width":48,"height":64},{"x":48,"y":0,"fileNum":4154,"id":12221,"width":48,"height":64},{"x":96,"y":0,"fileNum":4154,"id":12222,"width":48,"height":64},{"x":144,"y":0,"fileNum":4154,"id":12223,"width":48,"height":64},{"x":192,"y":0,"fileNum":4154,"id":12224,"width":48,"height":64},{"x":240,"y":0,"fileNum":4154,"id":12225,"width":48,"height":64},{"x":288,"y":0,"fileNum":4154,"id":12226,"width":48,"height":64},{"x":336,"y":0,"fileNum":4154,"id":12227,"width":48,"height":64},{"x":0,"y":64,"fileNum":4154,"id":12228,"width":48,"height":64},{"x":48,"y":64,"fileNum":4154,"id":12229,"width":48,"height":64},{"x":96,"y":64,"fileNum":4154,"id":12230,"width":48,"height":64},{"x":144,"y":64,"fileNum":4154,"id":12231,"width":48,"height":64},{"x":192,"y":64,"fileNum":4154,"id":12232,"width":48,"height":64},{"x":240,"y":64,"fileNum":4154,"id":12233,"width":48,"height":64},{"x":288,"y":64,"fileNum":4154,"id":12234,"width":48,"height":64},{"x":336,"y":64,"fileNum":4154,"id":12235,"width":48,"height":64},{"x":0,"y":128,"fileNum":4154,"id":12236,"width":48,"height":64},{"x":48,"y":128,"fileNum":4154,"id":12237,"width":48,"height":64},{"x":96,"y":128,"fileNum":4154,"id":12238,"width":48,"height":64},{"x":144,"y":128,"fileNum":4154,"id":12239,"width":48,"height":64},{"x":192,"y":128,"fileNum":4154,"id":12240,"width":48,"height":64},{"x":240,"y":128,"fileNum":4154,"id":12241,"width":48,"height":64},{"x":288,"y":128,"fileNum":4154,"id":12242,"width":48,"height":64},{"x":336,"y":128,"fileNum":4154,"id":12243,"width":48,"height":64},{"x":0,"y":192,"fileNum":4154,"id":12244,"width":48,"height":64},{"x":48,"y":192,"fileNum":4154,"id":12245,"width":48,"height":64},{"x":96,"y":192,"fileNum":4154,"id":12246,"width":48,"height":64},{"x":144,"y":192,"fileNum":4154,"id":12247,"width":48,"height":64},{"x":192,"y":192,"fileNum":4154,"id":12248,"width":48,"height":64},{"x":240,"y":192,"fileNum":4154,"id":12249,"width":48,"height":64},{"x":288,"y":192,"fileNum":4154,"id":12250,"width":48,"height":64},{"x":336,"y":192,"fileNum":4154,"id":12251,"width":48,"height":64},{"x":0,"y":0,"fileNum":4155,"id":12256,"width":48,"height":64},{"x":48,"y":0,"fileNum":4155,"id":12257,"width":48,"height":64},{"x":96,"y":0,"fileNum":4155,"id":12258,"width":48,"height":64},{"x":144,"y":0,"fileNum":4155,"id":12259,"width":48,"height":64},{"x":191,"y":0,"fileNum":4155,"id":12260,"width":48,"height":64},{"x":240,"y":0,"fileNum":4155,"id":12261,"width":48,"height":64},{"x":288,"y":0,"fileNum":4155,"id":12262,"width":48,"height":64},{"x":336,"y":0,"fileNum":4155,"id":12263,"width":48,"height":64},{"x":0,"y":64,"fileNum":4155,"id":12264,"width":48,"height":64},{"x":48,"y":64,"fileNum":4155,"id":12265,"width":48,"height":64},{"x":96,"y":64,"fileNum":4155,"id":12266,"width":48,"height":64},{"x":144,"y":64,"fileNum":4155,"id":12267,"width":48,"height":64},{"x":192,"y":64,"fileNum":4155,"id":12268,"width":48,"height":64},{"x":240,"y":64,"fileNum":4155,"id":12269,"width":48,"height":64},{"x":288,"y":64,"fileNum":4155,"id":12270,"width":48,"height":64},{"x":336,"y":64,"fileNum":4155,"id":12271,"width":48,"height":64},{"x":0,"y":129,"fileNum":4155,"id":12272,"width":48,"height":64},{"x":48,"y":129,"fileNum":4155,"id":12273,"width":48,"height":64},{"x":96,"y":129,"fileNum":4155,"id":12274,"width":48,"height":64},{"x":144,"y":129,"fileNum":4155,"id":12275,"width":48,"height":64},{"x":192,"y":129,"fileNum":4155,"id":12276,"width":48,"height":64},{"x":240,"y":129,"fileNum":4155,"id":12277,"width":48,"height":64},{"x":288,"y":129,"fileNum":4155,"id":12278,"width":48,"height":64},{"x":336,"y":129,"fileNum":4155,"id":12279,"width":48,"height":64},{"x":0,"y":192,"fileNum":4155,"id":12280,"width":48,"height":64},{"x":48,"y":192,"fileNum":4155,"id":12281,"width":48,"height":64},{"x":96,"y":192,"fileNum":4155,"id":12282,"width":48,"height":64},{"x":144,"y":192,"fileNum":4155,"id":12283,"width":48,"height":64},{"x":192,"y":192,"fileNum":4155,"id":12284,"width":48,"height":64},{"x":240,"y":192,"fileNum":4155,"id":12285,"width":48,"height":64},{"x":288,"y":192,"fileNum":4155,"id":12286,"width":48,"height":64},{"x":336,"y":192,"fileNum":4155,"id":12287,"width":48,"height":64},{"x":0,"y":0,"fileNum":4130,"id":12292,"width":42,"height":55},{"x":42,"y":0,"fileNum":4130,"id":12293,"width":42,"height":55},{"x":84,"y":0,"fileNum":4130,"id":12294,"width":42,"height":55},{"x":126,"y":0,"fileNum":4130,"id":12295,"width":42,"height":55},{"x":168,"y":0,"fileNum":4130,"id":12296,"width":42,"height":55},{"x":0,"y":55,"fileNum":4130,"id":12298,"width":42,"height":55},{"x":42,"y":55,"fileNum":4130,"id":12299,"width":42,"height":55},{"x":84,"y":55,"fileNum":4130,"id":12300,"width":42,"height":55},{"x":126,"y":55,"fileNum":4130,"id":12301,"width":42,"height":55},{"x":168,"y":55,"fileNum":4130,"id":12302,"width":42,"height":55},{"x":0,"y":0,"fileNum":6079,"id":12305,"width":256,"height":256},{"x":0,"y":0,"fileNum":6080,"id":12306,"width":256,"height":256},{"x":0,"y":0,"fileNum":6080,"id":12307,"width":1,"height":1},{"x":0,"y":0,"fileNum":6080,"id":12308,"width":1,"height":1},{"x":0,"y":0,"fileNum":6082,"id":12309,"width":128,"height":128},{"x":0,"y":0,"fileNum":6081,"id":12310,"width":128,"height":128},{"x":0,"y":110,"fileNum":4130,"id":12311,"width":42,"height":55},{"x":42,"y":110,"fileNum":4130,"id":12312,"width":42,"height":55},{"x":84,"y":110,"fileNum":4130,"id":12313,"width":42,"height":55},{"x":126,"y":110,"fileNum":4130,"id":12314,"width":42,"height":55},{"x":168,"y":110,"fileNum":4130,"id":12315,"width":42,"height":55},{"x":0,"y":165,"fileNum":4130,"id":12317,"width":42,"height":55},{"x":42,"y":165,"fileNum":4130,"id":12318,"width":42,"height":55},{"x":84,"y":165,"fileNum":4130,"id":12319,"width":42,"height":55},{"x":126,"y":165,"fileNum":4130,"id":12320,"width":42,"height":55},{"x":168,"y":165,"fileNum":4130,"id":12321,"width":42,"height":55},{"x":0,"y":0,"fileNum":8184,"id":12328,"width":128,"height":128},{"x":0,"y":0,"fileNum":8185,"id":12329,"width":128,"height":128},{"x":0,"y":0,"fileNum":8186,"id":12330,"width":128,"height":128},{"x":0,"y":0,"fileNum":8187,"id":12331,"width":128,"height":128},{"x":0,"y":0,"fileNum":8188,"id":12332,"width":128,"height":128},{"x":0,"y":0,"fileNum":8189,"id":12333,"width":128,"height":128},{"x":0,"y":0,"fileNum":6064,"id":12334,"width":256,"height":295},{"x":0,"y":0,"fileNum":2108,"id":12335,"width":17,"height":50},{"x":17,"y":0,"fileNum":2108,"id":12336,"width":17,"height":50},{"x":34,"y":0,"fileNum":2108,"id":12337,"width":17,"height":50},{"x":51,"y":0,"fileNum":2108,"id":12338,"width":17,"height":50},{"x":0,"y":0,"fileNum":15210,"id":12340,"width":64,"height":64},{"x":0,"y":0,"fileNum":15211,"id":12341,"width":64,"height":64},{"x":0,"y":0,"fileNum":15212,"id":12342,"width":64,"height":64},{"x":0,"y":0,"fileNum":15213,"id":12343,"width":64,"height":64},{"x":0,"y":0,"fileNum":15214,"id":12344,"width":64,"height":64},{"x":0,"y":0,"fileNum":15215,"id":12345,"width":64,"height":64},{"x":0,"y":0,"fileNum":15216,"id":12346,"width":64,"height":64},{"x":0,"y":0,"fileNum":2193,"id":12347,"width":17,"height":50},{"x":17,"y":0,"fileNum":2193,"id":12348,"width":17,"height":50},{"x":34,"y":0,"fileNum":2193,"id":12349,"width":17,"height":50},{"x":51,"y":0,"fileNum":2193,"id":12350,"width":17,"height":50},{"x":0,"y":0,"fileNum":2194,"id":12351,"width":17,"height":50},{"x":17,"y":0,"fileNum":2194,"id":12352,"width":17,"height":50},{"x":34,"y":0,"fileNum":2194,"id":12353,"width":17,"height":50},{"x":51,"y":0,"fileNum":2194,"id":12354,"width":17,"height":50},{"x":0,"y":0,"fileNum":12085,"id":12358,"width":32,"height":32},{"x":32,"y":0,"fileNum":12085,"id":12359,"width":32,"height":32},{"x":0,"y":32,"fileNum":12085,"id":12360,"width":32,"height":32},{"x":32,"y":32,"fileNum":12085,"id":12361,"width":32,"height":32},{"x":0,"y":0,"fileNum":12086,"id":12362,"width":32,"height":32},{"x":32,"y":0,"fileNum":12086,"id":12363,"width":32,"height":32},{"x":0,"y":32,"fileNum":12086,"id":12364,"width":32,"height":32},{"x":32,"y":32,"fileNum":12086,"id":12365,"width":32,"height":32},{"x":0,"y":0,"fileNum":12087,"id":12366,"width":32,"height":32},{"x":32,"y":0,"fileNum":12087,"id":12367,"width":32,"height":32},{"x":0,"y":32,"fileNum":12087,"id":12368,"width":32,"height":32},{"x":32,"y":32,"fileNum":12087,"id":12369,"width":32,"height":32},{"x":0,"y":0,"fileNum":12088,"id":12370,"width":32,"height":32},{"x":32,"y":0,"fileNum":12088,"id":12371,"width":32,"height":32},{"x":0,"y":32,"fileNum":12088,"id":12372,"width":32,"height":32},{"x":32,"y":32,"fileNum":12088,"id":12373,"width":32,"height":32},{"x":0,"y":0,"fileNum":12089,"id":12374,"width":32,"height":32},{"x":32,"y":0,"fileNum":12089,"id":12375,"width":32,"height":32},{"x":0,"y":32,"fileNum":12089,"id":12376,"width":32,"height":32},{"x":32,"y":32,"fileNum":12089,"id":12377,"width":32,"height":32},{"x":0,"y":0,"fileNum":12090,"id":12378,"width":32,"height":32},{"x":32,"y":0,"fileNum":12090,"id":12379,"width":32,"height":32},{"x":0,"y":32,"fileNum":12090,"id":12380,"width":32,"height":32},{"x":32,"y":32,"fileNum":12090,"id":12381,"width":32,"height":32},{"x":0,"y":0,"fileNum":12091,"id":12382,"width":32,"height":32},{"x":32,"y":0,"fileNum":12091,"id":12383,"width":32,"height":32},{"x":0,"y":32,"fileNum":12091,"id":12384,"width":32,"height":32},{"x":32,"y":32,"fileNum":12091,"id":12385,"width":32,"height":32},{"x":0,"y":0,"fileNum":12092,"id":12386,"width":32,"height":32},{"x":32,"y":0,"fileNum":12092,"id":12387,"width":32,"height":32},{"x":0,"y":32,"fileNum":12092,"id":12388,"width":32,"height":32},{"x":32,"y":32,"fileNum":12092,"id":12389,"width":32,"height":32},{"x":0,"y":0,"fileNum":2195,"id":12390,"width":17,"height":50},{"x":17,"y":0,"fileNum":2195,"id":12391,"width":17,"height":50},{"x":34,"y":0,"fileNum":2195,"id":12392,"width":17,"height":50},{"x":51,"y":0,"fileNum":2195,"id":12393,"width":17,"height":50},{"x":0,"y":0,"fileNum":2196,"id":12394,"width":17,"height":50},{"x":17,"y":0,"fileNum":2196,"id":12395,"width":17,"height":50},{"x":34,"y":0,"fileNum":2196,"id":12396,"width":17,"height":50},{"x":51,"y":0,"fileNum":2196,"id":12397,"width":17,"height":50},{"x":0,"y":0,"fileNum":15217,"id":12400,"width":32,"height":32},{"x":32,"y":0,"fileNum":15217,"id":12401,"width":32,"height":32},{"x":0,"y":0,"fileNum":15218,"id":12402,"width":32,"height":32},{"x":32,"y":0,"fileNum":15218,"id":12403,"width":32,"height":32},{"x":0,"y":0,"fileNum":15219,"id":12404,"width":32,"height":32},{"x":32,"y":0,"fileNum":15219,"id":12405,"width":32,"height":32},{"x":0,"y":0,"fileNum":15220,"id":12406,"width":32,"height":32},{"x":0,"y":32,"fileNum":15220,"id":12407,"width":32,"height":32},{"x":0,"y":0,"fileNum":15221,"id":12408,"width":32,"height":32},{"x":0,"y":32,"fileNum":15221,"id":12409,"width":32,"height":32},{"x":0,"y":0,"fileNum":15222,"id":12410,"width":32,"height":32},{"x":0,"y":32,"fileNum":15222,"id":12411,"width":32,"height":32},{"x":0,"y":0,"fileNum":15223,"id":12412,"width":32,"height":32},{"x":0,"y":32,"fileNum":15223,"id":12413,"width":32,"height":32},{"x":0,"y":0,"fileNum":15224,"id":12414,"width":32,"height":32},{"x":0,"y":32,"fileNum":15224,"id":12415,"width":32,"height":32},{"x":0,"y":0,"fileNum":15225,"id":12416,"width":32,"height":32},{"x":0,"y":32,"fileNum":15225,"id":12417,"width":32,"height":32},{"x":0,"y":0,"fileNum":15226,"id":12418,"width":32,"height":32},{"x":0,"y":32,"fileNum":15226,"id":12419,"width":32,"height":32},{"x":0,"y":0,"fileNum":15227,"id":12420,"width":32,"height":32},{"x":0,"y":32,"fileNum":15227,"id":12421,"width":32,"height":32},{"x":0,"y":0,"fileNum":15205,"id":12422,"width":32,"height":32},{"x":32,"y":0,"fileNum":15205,"id":12423,"width":32,"height":32},{"x":64,"y":0,"fileNum":15205,"id":12424,"width":32,"height":32},{"x":96,"y":0,"fileNum":15205,"id":12425,"width":32,"height":32},{"x":0,"y":0,"fileNum":6079,"id":12426,"width":256,"height":256},{"x":0,"y":0,"fileNum":15206,"id":12428,"width":160,"height":128},{"x":0,"y":0,"fileNum":15207,"id":12429,"width":64,"height":64},{"x":0,"y":0,"fileNum":15208,"id":12432,"width":64,"height":64},{"x":0,"y":32,"fileNum":15209,"id":12433,"width":256,"height":32},{"x":0,"y":64,"fileNum":15209,"id":12434,"width":256,"height":32},{"x":0,"y":96,"fileNum":15209,"id":12435,"width":256,"height":32},{"x":0,"y":128,"fileNum":15209,"id":12436,"width":256,"height":32},{"x":0,"y":160,"fileNum":15209,"id":12437,"width":256,"height":32},{"x":0,"y":192,"fileNum":15209,"id":12438,"width":256,"height":32},{"x":0,"y":0,"fileNum":8176,"id":12439,"width":32,"height":32},{"x":32,"y":0,"fileNum":8176,"id":12440,"width":32,"height":32},{"x":64,"y":0,"fileNum":8176,"id":12441,"width":32,"height":32},{"x":96,"y":0,"fileNum":8176,"id":12442,"width":32,"height":32},{"x":0,"y":32,"fileNum":8176,"id":12443,"width":32,"height":32},{"x":32,"y":32,"fileNum":8176,"id":12444,"width":32,"height":32},{"x":64,"y":32,"fileNum":8176,"id":12445,"width":32,"height":32},{"x":96,"y":32,"fileNum":8176,"id":12446,"width":32,"height":32},{"x":0,"y":64,"fileNum":8176,"id":12447,"width":32,"height":32},{"x":32,"y":64,"fileNum":8176,"id":12448,"width":32,"height":32},{"x":64,"y":64,"fileNum":8176,"id":12449,"width":32,"height":32},{"x":96,"y":64,"fileNum":8176,"id":12450,"width":32,"height":32},{"x":0,"y":96,"fileNum":8176,"id":12451,"width":32,"height":32},{"x":32,"y":96,"fileNum":8176,"id":12452,"width":32,"height":32},{"x":64,"y":96,"fileNum":8176,"id":12453,"width":32,"height":32},{"x":96,"y":96,"fileNum":8176,"id":12454,"width":32,"height":32},{"x":0,"y":0,"fileNum":8177,"id":12455,"width":32,"height":32},{"x":32,"y":0,"fileNum":8177,"id":12456,"width":32,"height":32},{"x":64,"y":0,"fileNum":8177,"id":12457,"width":32,"height":32},{"x":96,"y":0,"fileNum":8177,"id":12458,"width":32,"height":32},{"x":0,"y":32,"fileNum":8177,"id":12459,"width":32,"height":32},{"x":32,"y":32,"fileNum":8177,"id":12460,"width":32,"height":32},{"x":64,"y":32,"fileNum":8177,"id":12461,"width":32,"height":32},{"x":96,"y":32,"fileNum":8177,"id":12462,"width":32,"height":32},{"x":0,"y":64,"fileNum":8177,"id":12463,"width":32,"height":32},{"x":32,"y":64,"fileNum":8177,"id":12464,"width":32,"height":32},{"x":64,"y":64,"fileNum":8177,"id":12465,"width":32,"height":32},{"x":96,"y":64,"fileNum":8177,"id":12466,"width":32,"height":32},{"x":0,"y":96,"fileNum":8177,"id":12467,"width":32,"height":32},{"x":32,"y":96,"fileNum":8177,"id":12468,"width":32,"height":32},{"x":64,"y":96,"fileNum":8177,"id":12469,"width":32,"height":32},{"x":96,"y":96,"fileNum":8177,"id":12470,"width":32,"height":32},{"x":0,"y":0,"fileNum":8178,"id":12471,"width":32,"height":32},{"x":32,"y":0,"fileNum":8178,"id":12472,"width":32,"height":32},{"x":64,"y":0,"fileNum":8178,"id":12473,"width":32,"height":32},{"x":96,"y":0,"fileNum":8178,"id":12474,"width":32,"height":32},{"x":0,"y":32,"fileNum":8178,"id":12475,"width":32,"height":32},{"x":32,"y":32,"fileNum":8178,"id":12476,"width":32,"height":32},{"x":64,"y":32,"fileNum":8178,"id":12477,"width":32,"height":32},{"x":96,"y":32,"fileNum":8178,"id":12478,"width":32,"height":32},{"x":0,"y":64,"fileNum":8178,"id":12479,"width":32,"height":32},{"x":32,"y":64,"fileNum":8178,"id":12480,"width":32,"height":32},{"x":64,"y":64,"fileNum":8178,"id":12481,"width":32,"height":32},{"x":96,"y":64,"fileNum":8178,"id":12482,"width":32,"height":32},{"x":0,"y":96,"fileNum":8178,"id":12483,"width":32,"height":32},{"x":32,"y":96,"fileNum":8178,"id":12484,"width":32,"height":32},{"x":64,"y":96,"fileNum":8178,"id":12485,"width":32,"height":32},{"x":96,"y":96,"fileNum":8178,"id":12486,"width":32,"height":32},{"x":0,"y":0,"fileNum":8179,"id":12487,"width":32,"height":32},{"x":32,"y":0,"fileNum":8179,"id":12488,"width":32,"height":32},{"x":64,"y":0,"fileNum":8179,"id":12489,"width":32,"height":32},{"x":96,"y":0,"fileNum":8179,"id":12490,"width":32,"height":32},{"x":0,"y":32,"fileNum":8179,"id":12491,"width":32,"height":32},{"x":32,"y":32,"fileNum":8179,"id":12492,"width":32,"height":32},{"x":64,"y":32,"fileNum":8179,"id":12493,"width":32,"height":32},{"x":96,"y":32,"fileNum":8179,"id":12494,"width":32,"height":32},{"x":0,"y":64,"fileNum":8179,"id":12495,"width":32,"height":32},{"x":32,"y":64,"fileNum":8179,"id":12496,"width":32,"height":32},{"x":64,"y":64,"fileNum":8179,"id":12497,"width":32,"height":32},{"x":96,"y":64,"fileNum":8179,"id":12498,"width":32,"height":32},{"x":0,"y":96,"fileNum":8179,"id":12499,"width":32,"height":32},{"x":32,"y":96,"fileNum":8179,"id":12500,"width":32,"height":32},{"x":64,"y":96,"fileNum":8179,"id":12501,"width":32,"height":32},{"x":96,"y":96,"fileNum":8179,"id":12502,"width":32,"height":32},{"x":0,"y":0,"fileNum":8180,"id":12503,"width":32,"height":32},{"x":32,"y":0,"fileNum":8180,"id":12504,"width":32,"height":32},{"x":64,"y":0,"fileNum":8180,"id":12505,"width":32,"height":32},{"x":96,"y":0,"fileNum":8180,"id":12506,"width":32,"height":32},{"x":0,"y":32,"fileNum":8180,"id":12507,"width":32,"height":32},{"x":32,"y":32,"fileNum":8180,"id":12508,"width":32,"height":32},{"x":64,"y":32,"fileNum":8180,"id":12509,"width":32,"height":32},{"x":96,"y":32,"fileNum":8180,"id":12510,"width":32,"height":32},{"x":0,"y":64,"fileNum":8180,"id":12511,"width":32,"height":32},{"x":32,"y":64,"fileNum":8180,"id":12512,"width":32,"height":32},{"x":64,"y":64,"fileNum":8180,"id":12513,"width":32,"height":32},{"x":96,"y":64,"fileNum":8180,"id":12514,"width":32,"height":32},{"x":0,"y":96,"fileNum":8180,"id":12515,"width":32,"height":32},{"x":32,"y":96,"fileNum":8180,"id":12516,"width":32,"height":32},{"x":64,"y":96,"fileNum":8180,"id":12517,"width":32,"height":32},{"x":96,"y":96,"fileNum":8180,"id":12518,"width":32,"height":32},{"x":0,"y":0,"fileNum":8181,"id":12519,"width":32,"height":32},{"x":32,"y":0,"fileNum":8181,"id":12520,"width":32,"height":32},{"x":64,"y":0,"fileNum":8181,"id":12521,"width":32,"height":32},{"x":96,"y":0,"fileNum":8181,"id":12522,"width":32,"height":32},{"x":0,"y":32,"fileNum":8181,"id":12523,"width":32,"height":32},{"x":32,"y":32,"fileNum":8181,"id":12524,"width":32,"height":32},{"x":64,"y":32,"fileNum":8181,"id":12525,"width":32,"height":32},{"x":96,"y":32,"fileNum":8181,"id":12526,"width":32,"height":32},{"x":0,"y":64,"fileNum":8181,"id":12527,"width":32,"height":32},{"x":32,"y":64,"fileNum":8181,"id":12528,"width":32,"height":32},{"x":64,"y":64,"fileNum":8181,"id":12529,"width":32,"height":32},{"x":96,"y":64,"fileNum":8181,"id":12530,"width":32,"height":32},{"x":0,"y":96,"fileNum":8181,"id":12531,"width":32,"height":32},{"x":32,"y":96,"fileNum":8181,"id":12532,"width":32,"height":32},{"x":64,"y":96,"fileNum":8181,"id":12533,"width":32,"height":32},{"x":96,"y":96,"fileNum":8181,"id":12534,"width":32,"height":32},{"x":0,"y":0,"fileNum":8182,"id":12535,"width":32,"height":32},{"x":32,"y":0,"fileNum":8182,"id":12536,"width":32,"height":32},{"x":64,"y":0,"fileNum":8182,"id":12537,"width":32,"height":32},{"x":96,"y":0,"fileNum":8182,"id":12538,"width":32,"height":32},{"x":0,"y":32,"fileNum":8182,"id":12539,"width":32,"height":32},{"x":32,"y":32,"fileNum":8182,"id":12540,"width":32,"height":32},{"x":64,"y":32,"fileNum":8182,"id":12541,"width":32,"height":32},{"x":96,"y":32,"fileNum":8182,"id":12542,"width":32,"height":32},{"x":0,"y":64,"fileNum":8182,"id":12543,"width":32,"height":32},{"x":32,"y":64,"fileNum":8182,"id":12544,"width":32,"height":32},{"x":64,"y":64,"fileNum":8182,"id":12545,"width":32,"height":32},{"x":96,"y":64,"fileNum":8182,"id":12546,"width":32,"height":32},{"x":0,"y":96,"fileNum":8182,"id":12547,"width":32,"height":32},{"x":32,"y":96,"fileNum":8182,"id":12548,"width":32,"height":32},{"x":64,"y":96,"fileNum":8182,"id":12549,"width":32,"height":32},{"x":96,"y":96,"fileNum":8182,"id":12550,"width":32,"height":32},{"x":0,"y":0,"fileNum":8183,"id":12551,"width":32,"height":32},{"x":32,"y":0,"fileNum":8183,"id":12552,"width":32,"height":32},{"x":64,"y":0,"fileNum":8183,"id":12553,"width":32,"height":32},{"x":96,"y":0,"fileNum":8183,"id":12554,"width":32,"height":32},{"x":0,"y":32,"fileNum":8183,"id":12555,"width":32,"height":32},{"x":32,"y":32,"fileNum":8183,"id":12556,"width":32,"height":32},{"x":64,"y":32,"fileNum":8183,"id":12557,"width":32,"height":32},{"x":96,"y":32,"fileNum":8183,"id":12558,"width":32,"height":32},{"x":0,"y":64,"fileNum":8183,"id":12559,"width":32,"height":32},{"x":32,"y":64,"fileNum":8183,"id":12560,"width":32,"height":32},{"x":64,"y":64,"fileNum":8183,"id":12561,"width":32,"height":32},{"x":96,"y":64,"fileNum":8183,"id":12562,"width":32,"height":32},{"x":0,"y":96,"fileNum":8183,"id":12563,"width":32,"height":32},{"x":32,"y":96,"fileNum":8183,"id":12564,"width":32,"height":32},{"x":64,"y":96,"fileNum":8183,"id":12565,"width":32,"height":32},{"x":96,"y":96,"fileNum":8183,"id":12566,"width":32,"height":32},{"x":0,"y":0,"fileNum":8184,"id":12567,"width":32,"height":32},{"x":32,"y":0,"fileNum":8184,"id":12568,"width":32,"height":32},{"x":64,"y":0,"fileNum":8184,"id":12569,"width":32,"height":32},{"x":96,"y":0,"fileNum":8184,"id":12570,"width":32,"height":32},{"x":0,"y":32,"fileNum":8184,"id":12571,"width":32,"height":32},{"x":32,"y":32,"fileNum":8184,"id":12572,"width":32,"height":32},{"x":64,"y":32,"fileNum":8184,"id":12573,"width":32,"height":32},{"x":96,"y":32,"fileNum":8184,"id":12574,"width":32,"height":32},{"x":0,"y":64,"fileNum":8184,"id":12575,"width":32,"height":32},{"x":32,"y":64,"fileNum":8184,"id":12576,"width":32,"height":32},{"x":64,"y":64,"fileNum":8184,"id":12577,"width":32,"height":32},{"x":96,"y":64,"fileNum":8184,"id":12578,"width":32,"height":32},{"x":0,"y":96,"fileNum":8184,"id":12579,"width":32,"height":32},{"x":32,"y":96,"fileNum":8184,"id":12580,"width":32,"height":32},{"x":64,"y":96,"fileNum":8184,"id":12581,"width":32,"height":32},{"x":96,"y":96,"fileNum":8184,"id":12582,"width":32,"height":32},{"x":0,"y":0,"fileNum":8185,"id":12583,"width":32,"height":32},{"x":32,"y":0,"fileNum":8185,"id":12584,"width":32,"height":32},{"x":64,"y":0,"fileNum":8185,"id":12585,"width":32,"height":32},{"x":96,"y":0,"fileNum":8185,"id":12586,"width":32,"height":32},{"x":0,"y":32,"fileNum":8185,"id":12587,"width":32,"height":32},{"x":32,"y":32,"fileNum":8185,"id":12588,"width":32,"height":32},{"x":64,"y":32,"fileNum":8185,"id":12589,"width":32,"height":32},{"x":96,"y":32,"fileNum":8185,"id":12590,"width":32,"height":32},{"x":0,"y":64,"fileNum":8185,"id":12591,"width":32,"height":32},{"x":32,"y":64,"fileNum":8185,"id":12592,"width":32,"height":32},{"x":64,"y":64,"fileNum":8185,"id":12593,"width":32,"height":32},{"x":96,"y":64,"fileNum":8185,"id":12594,"width":32,"height":32},{"x":0,"y":96,"fileNum":8185,"id":12595,"width":32,"height":32},{"x":32,"y":96,"fileNum":8185,"id":12596,"width":32,"height":32},{"x":64,"y":96,"fileNum":8185,"id":12597,"width":32,"height":32},{"x":96,"y":96,"fileNum":8185,"id":12598,"width":32,"height":32},{"x":0,"y":0,"fileNum":8186,"id":12599,"width":32,"height":32},{"x":32,"y":0,"fileNum":8186,"id":12600,"width":32,"height":32},{"x":64,"y":0,"fileNum":8186,"id":12601,"width":32,"height":32},{"x":96,"y":0,"fileNum":8186,"id":12602,"width":32,"height":32},{"x":0,"y":32,"fileNum":8186,"id":12603,"width":32,"height":32},{"x":32,"y":32,"fileNum":8186,"id":12604,"width":32,"height":32},{"x":64,"y":32,"fileNum":8186,"id":12605,"width":32,"height":32},{"x":96,"y":32,"fileNum":8186,"id":12606,"width":32,"height":32},{"x":0,"y":64,"fileNum":8186,"id":12607,"width":32,"height":32},{"x":32,"y":64,"fileNum":8186,"id":12608,"width":32,"height":32},{"x":64,"y":64,"fileNum":8186,"id":12609,"width":32,"height":32},{"x":96,"y":64,"fileNum":8186,"id":12610,"width":32,"height":32},{"x":0,"y":96,"fileNum":8186,"id":12611,"width":32,"height":32},{"x":32,"y":96,"fileNum":8186,"id":12612,"width":32,"height":32},{"x":64,"y":96,"fileNum":8186,"id":12613,"width":32,"height":32},{"x":96,"y":96,"fileNum":8186,"id":12614,"width":32,"height":32},{"x":0,"y":0,"fileNum":8187,"id":12615,"width":32,"height":32},{"x":32,"y":0,"fileNum":8187,"id":12616,"width":32,"height":32},{"x":64,"y":0,"fileNum":8187,"id":12617,"width":32,"height":32},{"x":96,"y":0,"fileNum":8187,"id":12618,"width":32,"height":32},{"x":0,"y":32,"fileNum":8187,"id":12619,"width":32,"height":32},{"x":32,"y":32,"fileNum":8187,"id":12620,"width":32,"height":32},{"x":64,"y":32,"fileNum":8187,"id":12621,"width":32,"height":32},{"x":96,"y":32,"fileNum":8187,"id":12622,"width":32,"height":32},{"x":0,"y":64,"fileNum":8187,"id":12623,"width":32,"height":32},{"x":32,"y":64,"fileNum":8187,"id":12624,"width":32,"height":32},{"x":64,"y":64,"fileNum":8187,"id":12625,"width":32,"height":32},{"x":96,"y":64,"fileNum":8187,"id":12626,"width":32,"height":32},{"x":0,"y":96,"fileNum":8187,"id":12627,"width":32,"height":32},{"x":32,"y":96,"fileNum":8187,"id":12628,"width":32,"height":32},{"x":64,"y":96,"fileNum":8187,"id":12629,"width":32,"height":32},{"x":96,"y":96,"fileNum":8187,"id":12630,"width":32,"height":32},{"x":0,"y":0,"fileNum":8188,"id":12631,"width":32,"height":32},{"x":32,"y":0,"fileNum":8188,"id":12632,"width":32,"height":32},{"x":64,"y":0,"fileNum":8188,"id":12633,"width":32,"height":32},{"x":96,"y":0,"fileNum":8188,"id":12634,"width":32,"height":32},{"x":0,"y":32,"fileNum":8188,"id":12635,"width":32,"height":32},{"x":32,"y":32,"fileNum":8188,"id":12636,"width":32,"height":32},{"x":64,"y":32,"fileNum":8188,"id":12637,"width":32,"height":32},{"x":96,"y":32,"fileNum":8188,"id":12638,"width":32,"height":32},{"x":0,"y":64,"fileNum":8188,"id":12639,"width":32,"height":32},{"x":32,"y":64,"fileNum":8188,"id":12640,"width":32,"height":32},{"x":64,"y":64,"fileNum":8188,"id":12641,"width":32,"height":32},{"x":96,"y":64,"fileNum":8188,"id":12642,"width":32,"height":32},{"x":0,"y":96,"fileNum":8188,"id":12643,"width":32,"height":32},{"x":32,"y":96,"fileNum":8188,"id":12644,"width":32,"height":32},{"x":64,"y":96,"fileNum":8188,"id":12645,"width":32,"height":32},{"x":96,"y":96,"fileNum":8188,"id":12646,"width":32,"height":32},{"x":0,"y":0,"fileNum":8189,"id":12647,"width":32,"height":32},{"x":32,"y":0,"fileNum":8189,"id":12648,"width":32,"height":32},{"x":64,"y":0,"fileNum":8189,"id":12649,"width":32,"height":32},{"x":96,"y":0,"fileNum":8189,"id":12650,"width":32,"height":32},{"x":0,"y":32,"fileNum":8189,"id":12651,"width":32,"height":32},{"x":32,"y":32,"fileNum":8189,"id":12652,"width":32,"height":32},{"x":64,"y":32,"fileNum":8189,"id":12653,"width":32,"height":32},{"x":96,"y":32,"fileNum":8189,"id":12654,"width":32,"height":32},{"x":0,"y":64,"fileNum":8189,"id":12655,"width":32,"height":32},{"x":32,"y":64,"fileNum":8189,"id":12656,"width":32,"height":32},{"x":64,"y":64,"fileNum":8189,"id":12657,"width":32,"height":32},{"x":96,"y":64,"fileNum":8189,"id":12658,"width":32,"height":32},{"x":0,"y":96,"fileNum":8189,"id":12659,"width":32,"height":32},{"x":32,"y":96,"fileNum":8189,"id":12660,"width":32,"height":32},{"x":64,"y":96,"fileNum":8189,"id":12661,"width":32,"height":32},{"x":96,"y":96,"fileNum":8189,"id":12662,"width":32,"height":32},{"x":0,"y":0,"fileNum":4145,"id":12663,"width":140,"height":170},{"x":140,"y":0,"fileNum":4145,"id":12664,"width":140,"height":170},{"x":280,"y":0,"fileNum":4145,"id":12665,"width":140,"height":170},{"x":420,"y":0,"fileNum":4145,"id":12666,"width":140,"height":170},{"x":560,"y":0,"fileNum":4145,"id":12667,"width":140,"height":170},{"x":700,"y":0,"fileNum":4145,"id":12668,"width":140,"height":170},{"x":840,"y":0,"fileNum":4145,"id":12669,"width":140,"height":170},{"x":980,"y":0,"fileNum":4145,"id":12670,"width":140,"height":170},{"x":0,"y":170,"fileNum":4145,"id":12671,"width":140,"height":170},{"x":140,"y":170,"fileNum":4145,"id":12672,"width":140,"height":170},{"x":280,"y":170,"fileNum":4145,"id":12673,"width":140,"height":170},{"x":420,"y":170,"fileNum":4145,"id":12674,"width":140,"height":170},{"x":560,"y":170,"fileNum":4145,"id":12675,"width":140,"height":170},{"x":700,"y":170,"fileNum":4145,"id":12676,"width":140,"height":170},{"x":840,"y":170,"fileNum":4145,"id":12677,"width":140,"height":170},{"x":980,"y":170,"fileNum":4145,"id":12678,"width":140,"height":170},{"x":0,"y":510,"fileNum":4145,"id":12679,"width":140,"height":170},{"x":140,"y":510,"fileNum":4145,"id":12680,"width":140,"height":170},{"x":280,"y":510,"fileNum":4145,"id":12681,"width":140,"height":170},{"x":420,"y":510,"fileNum":4145,"id":12682,"width":140,"height":170},{"x":560,"y":510,"fileNum":4145,"id":12683,"width":140,"height":170},{"x":700,"y":510,"fileNum":4145,"id":12684,"width":140,"height":170},{"x":840,"y":510,"fileNum":4145,"id":12685,"width":140,"height":170},{"x":980,"y":510,"fileNum":4145,"id":12686,"width":140,"height":170},{"x":0,"y":340,"fileNum":4145,"id":12687,"width":140,"height":170},{"x":140,"y":340,"fileNum":4145,"id":12688,"width":140,"height":170},{"x":280,"y":340,"fileNum":4145,"id":12689,"width":140,"height":170},{"x":420,"y":340,"fileNum":4145,"id":12690,"width":140,"height":170},{"x":560,"y":340,"fileNum":4145,"id":12691,"width":140,"height":170},{"x":700,"y":340,"fileNum":4145,"id":12692,"width":140,"height":170},{"x":840,"y":340,"fileNum":4145,"id":12693,"width":140,"height":170},{"x":980,"y":340,"fileNum":4145,"id":12694,"width":140,"height":170},{"x":0,"y":0,"fileNum":15074,"id":12700,"width":32,"height":32},{"x":0,"y":0,"fileNum":13007,"id":12703,"width":180,"height":210},{"x":0,"y":0,"fileNum":13008,"id":12704,"width":76,"height":68},{"x":0,"y":0,"fileNum":13009,"id":12705,"width":45,"height":100},{"x":0,"y":0,"fileNum":15116,"id":12706,"width":32,"height":49},{"x":0,"y":0,"fileNum":15117,"id":12707,"width":41,"height":54},{"x":0,"y":0,"fileNum":15118,"id":12708,"width":66,"height":71},{"x":0,"y":0,"fileNum":13010,"id":12709,"width":44,"height":50},{"x":0,"y":0,"fileNum":15119,"id":12710,"width":61,"height":75},{"x":0,"y":0,"fileNum":15120,"id":12711,"width":61,"height":75},{"x":0,"y":0,"fileNum":12044,"id":12712,"width":32,"height":32},{"x":32,"y":0,"fileNum":12044,"id":12713,"width":32,"height":32},{"x":0,"y":32,"fileNum":12044,"id":12714,"width":32,"height":32},{"x":32,"y":32,"fileNum":12044,"id":12715,"width":32,"height":32},{"x":0,"y":0,"fileNum":13011,"id":12716,"width":54,"height":43},{"x":0,"y":0,"fileNum":13012,"id":12717,"width":51,"height":43},{"x":0,"y":0,"fileNum":13013,"id":12718,"width":53,"height":48},{"x":0,"y":0,"fileNum":13014,"id":12719,"width":47,"height":46},{"x":0,"y":0,"fileNum":15130,"id":12720,"width":35,"height":35},{"x":0,"y":0,"fileNum":15131,"id":12721,"width":35,"height":35},{"x":0,"y":0,"fileNum":15132,"id":12722,"width":35,"height":35},{"x":0,"y":0,"fileNum":15133,"id":12723,"width":80,"height":51},{"x":0,"y":0,"fileNum":15136,"id":12724,"width":32,"height":35},{"x":0,"y":0,"fileNum":15139,"id":12725,"width":32,"height":32},{"x":0,"y":0,"fileNum":15142,"id":12726,"width":32,"height":32},{"x":0,"y":0,"fileNum":15145,"id":12727,"width":32,"height":32},{"x":0,"y":0,"fileNum":4111,"id":12728,"width":65,"height":66},{"x":65,"y":0,"fileNum":4111,"id":12729,"width":65,"height":66},{"x":130,"y":0,"fileNum":4111,"id":12730,"width":65,"height":66},{"x":195,"y":0,"fileNum":4111,"id":12731,"width":65,"height":66},{"x":260,"y":0,"fileNum":4111,"id":12732,"width":65,"height":66},{"x":0,"y":65,"fileNum":4111,"id":12733,"width":65,"height":66},{"x":65,"y":65,"fileNum":4111,"id":12734,"width":65,"height":66},{"x":130,"y":65,"fileNum":4111,"id":12735,"width":65,"height":66},{"x":195,"y":65,"fileNum":4111,"id":12736,"width":65,"height":66},{"x":260,"y":65,"fileNum":4111,"id":12737,"width":65,"height":66},{"x":0,"y":132,"fileNum":4111,"id":12738,"width":65,"height":66},{"x":65,"y":132,"fileNum":4111,"id":12739,"width":65,"height":66},{"x":130,"y":132,"fileNum":4111,"id":12740,"width":65,"height":66},{"x":195,"y":132,"fileNum":4111,"id":12741,"width":65,"height":66},{"x":260,"y":132,"fileNum":4111,"id":12742,"width":65,"height":66},{"x":0,"y":198,"fileNum":4111,"id":12743,"width":65,"height":66},{"x":65,"y":198,"fileNum":4111,"id":12744,"width":65,"height":66},{"x":130,"y":198,"fileNum":4111,"id":12745,"width":65,"height":66},{"x":195,"y":198,"fileNum":4111,"id":12746,"width":65,"height":66},{"x":260,"y":198,"fileNum":4111,"id":12747,"width":65,"height":66},{"x":0,"y":0,"fileNum":229,"id":12752,"width":32,"height":32},{"x":0,"y":0,"fileNum":218,"id":12753,"width":25,"height":45},{"x":25,"y":0,"fileNum":218,"id":12754,"width":25,"height":45},{"x":50,"y":0,"fileNum":218,"id":12755,"width":25,"height":45},{"x":75,"y":0,"fileNum":218,"id":12756,"width":25,"height":45},{"x":100,"y":0,"fileNum":218,"id":12757,"width":25,"height":45},{"x":125,"y":0,"fileNum":218,"id":12758,"width":25,"height":45},{"x":0,"y":45,"fileNum":218,"id":12759,"width":25,"height":45},{"x":25,"y":45,"fileNum":218,"id":12760,"width":25,"height":45},{"x":50,"y":45,"fileNum":218,"id":12761,"width":25,"height":45},{"x":75,"y":45,"fileNum":218,"id":12762,"width":25,"height":45},{"x":100,"y":45,"fileNum":218,"id":12763,"width":25,"height":45},{"x":125,"y":45,"fileNum":218,"id":12764,"width":25,"height":45},{"x":0,"y":90,"fileNum":218,"id":12765,"width":25,"height":45},{"x":25,"y":90,"fileNum":218,"id":12766,"width":25,"height":45},{"x":50,"y":90,"fileNum":218,"id":12767,"width":25,"height":45},{"x":75,"y":90,"fileNum":218,"id":12768,"width":25,"height":45},{"x":100,"y":90,"fileNum":218,"id":12769,"width":25,"height":45},{"x":0,"y":135,"fileNum":218,"id":12770,"width":25,"height":45},{"x":25,"y":135,"fileNum":218,"id":12771,"width":25,"height":45},{"x":50,"y":135,"fileNum":218,"id":12772,"width":25,"height":45},{"x":75,"y":135,"fileNum":218,"id":12773,"width":25,"height":45},{"x":100,"y":135,"fileNum":218,"id":12774,"width":25,"height":45},{"x":0,"y":0,"fileNum":207,"id":12779,"width":32,"height":32},{"x":0,"y":0,"fileNum":203,"id":12780,"width":25,"height":45},{"x":25,"y":0,"fileNum":203,"id":12781,"width":25,"height":45},{"x":50,"y":0,"fileNum":203,"id":12782,"width":25,"height":45},{"x":75,"y":0,"fileNum":203,"id":12783,"width":25,"height":45},{"x":100,"y":0,"fileNum":203,"id":12784,"width":25,"height":45},{"x":125,"y":0,"fileNum":203,"id":12785,"width":25,"height":45},{"x":0,"y":45,"fileNum":203,"id":12786,"width":25,"height":45},{"x":25,"y":45,"fileNum":203,"id":12787,"width":25,"height":45},{"x":50,"y":45,"fileNum":203,"id":12788,"width":25,"height":45},{"x":75,"y":45,"fileNum":203,"id":12789,"width":25,"height":45},{"x":100,"y":45,"fileNum":203,"id":12790,"width":25,"height":45},{"x":125,"y":45,"fileNum":203,"id":12791,"width":25,"height":45},{"x":0,"y":90,"fileNum":203,"id":12792,"width":25,"height":45},{"x":25,"y":90,"fileNum":203,"id":12793,"width":25,"height":45},{"x":50,"y":90,"fileNum":203,"id":12794,"width":25,"height":45},{"x":75,"y":90,"fileNum":203,"id":12795,"width":25,"height":45},{"x":100,"y":90,"fileNum":203,"id":12796,"width":25,"height":45},{"x":0,"y":135,"fileNum":203,"id":12797,"width":25,"height":45},{"x":25,"y":135,"fileNum":203,"id":12798,"width":25,"height":45},{"x":50,"y":135,"fileNum":203,"id":12799,"width":25,"height":45},{"x":75,"y":135,"fileNum":203,"id":12800,"width":25,"height":45},{"x":100,"y":135,"fileNum":203,"id":12801,"width":25,"height":45},{"x":0,"y":0,"fileNum":152,"id":12806,"width":32,"height":32},{"x":0,"y":0,"fileNum":151,"id":12807,"width":25,"height":45},{"x":25,"y":0,"fileNum":151,"id":12808,"width":25,"height":45},{"x":50,"y":0,"fileNum":151,"id":12809,"width":25,"height":45},{"x":75,"y":0,"fileNum":151,"id":12810,"width":25,"height":45},{"x":100,"y":0,"fileNum":151,"id":12811,"width":25,"height":45},{"x":125,"y":0,"fileNum":151,"id":12812,"width":25,"height":45},{"x":0,"y":45,"fileNum":151,"id":12813,"width":25,"height":45},{"x":25,"y":45,"fileNum":151,"id":12814,"width":25,"height":45},{"x":50,"y":45,"fileNum":151,"id":12815,"width":25,"height":45},{"x":75,"y":45,"fileNum":151,"id":12816,"width":25,"height":45},{"x":100,"y":45,"fileNum":151,"id":12817,"width":25,"height":45},{"x":125,"y":45,"fileNum":151,"id":12818,"width":25,"height":45},{"x":0,"y":90,"fileNum":151,"id":12819,"width":25,"height":45},{"x":25,"y":90,"fileNum":151,"id":12820,"width":25,"height":45},{"x":50,"y":90,"fileNum":151,"id":12821,"width":25,"height":45},{"x":75,"y":90,"fileNum":151,"id":12822,"width":25,"height":45},{"x":100,"y":90,"fileNum":151,"id":12823,"width":25,"height":45},{"x":0,"y":135,"fileNum":151,"id":12824,"width":25,"height":45},{"x":25,"y":135,"fileNum":151,"id":12825,"width":25,"height":45},{"x":50,"y":135,"fileNum":151,"id":12826,"width":25,"height":45},{"x":75,"y":135,"fileNum":151,"id":12827,"width":25,"height":45},{"x":100,"y":135,"fileNum":151,"id":12828,"width":25,"height":45},{"x":0,"y":0,"fileNum":154,"id":12833,"width":32,"height":32},{"x":0,"y":0,"fileNum":153,"id":12834,"width":25,"height":45},{"x":25,"y":0,"fileNum":153,"id":12835,"width":25,"height":45},{"x":50,"y":0,"fileNum":153,"id":12836,"width":25,"height":45},{"x":75,"y":0,"fileNum":153,"id":12837,"width":25,"height":45},{"x":100,"y":0,"fileNum":153,"id":12838,"width":25,"height":45},{"x":125,"y":0,"fileNum":153,"id":12839,"width":25,"height":45},{"x":0,"y":45,"fileNum":153,"id":12840,"width":25,"height":45},{"x":25,"y":45,"fileNum":153,"id":12841,"width":25,"height":45},{"x":50,"y":45,"fileNum":153,"id":12842,"width":25,"height":45},{"x":75,"y":45,"fileNum":153,"id":12843,"width":25,"height":45},{"x":100,"y":45,"fileNum":153,"id":12844,"width":25,"height":45},{"x":125,"y":45,"fileNum":153,"id":12845,"width":25,"height":45},{"x":0,"y":90,"fileNum":153,"id":12846,"width":25,"height":45},{"x":25,"y":90,"fileNum":153,"id":12847,"width":25,"height":45},{"x":50,"y":90,"fileNum":153,"id":12848,"width":25,"height":45},{"x":75,"y":90,"fileNum":153,"id":12849,"width":25,"height":45},{"x":100,"y":90,"fileNum":153,"id":12850,"width":25,"height":45},{"x":0,"y":135,"fileNum":153,"id":12851,"width":25,"height":45},{"x":25,"y":135,"fileNum":153,"id":12852,"width":25,"height":45},{"x":50,"y":135,"fileNum":153,"id":12853,"width":25,"height":45},{"x":75,"y":135,"fileNum":153,"id":12854,"width":25,"height":45},{"x":100,"y":135,"fileNum":153,"id":12855,"width":25,"height":45},{"x":0,"y":0,"fileNum":156,"id":12860,"width":32,"height":32},{"x":0,"y":0,"fileNum":155,"id":12861,"width":25,"height":45},{"x":25,"y":0,"fileNum":155,"id":12862,"width":25,"height":45},{"x":50,"y":0,"fileNum":155,"id":12863,"width":25,"height":45},{"x":75,"y":0,"fileNum":155,"id":12864,"width":25,"height":45},{"x":100,"y":0,"fileNum":155,"id":12865,"width":25,"height":45},{"x":125,"y":0,"fileNum":155,"id":12866,"width":25,"height":45},{"x":0,"y":45,"fileNum":155,"id":12867,"width":25,"height":45},{"x":25,"y":45,"fileNum":155,"id":12868,"width":25,"height":45},{"x":50,"y":45,"fileNum":155,"id":12869,"width":25,"height":45},{"x":75,"y":45,"fileNum":155,"id":12870,"width":25,"height":45},{"x":100,"y":45,"fileNum":155,"id":12871,"width":25,"height":45},{"x":125,"y":45,"fileNum":155,"id":12872,"width":25,"height":45},{"x":0,"y":90,"fileNum":155,"id":12873,"width":25,"height":45},{"x":25,"y":90,"fileNum":155,"id":12874,"width":25,"height":45},{"x":50,"y":90,"fileNum":155,"id":12875,"width":25,"height":45},{"x":75,"y":90,"fileNum":155,"id":12876,"width":25,"height":45},{"x":100,"y":90,"fileNum":155,"id":12877,"width":25,"height":45},{"x":0,"y":135,"fileNum":155,"id":12878,"width":25,"height":45},{"x":25,"y":135,"fileNum":155,"id":12879,"width":25,"height":45},{"x":50,"y":135,"fileNum":155,"id":12880,"width":25,"height":45},{"x":75,"y":135,"fileNum":155,"id":12881,"width":25,"height":45},{"x":100,"y":135,"fileNum":155,"id":12882,"width":25,"height":45},{"x":0,"y":0,"fileNum":158,"id":12887,"width":32,"height":32},{"x":0,"y":0,"fileNum":157,"id":12888,"width":25,"height":45},{"x":25,"y":0,"fileNum":157,"id":12889,"width":25,"height":45},{"x":50,"y":0,"fileNum":157,"id":12890,"width":25,"height":45},{"x":75,"y":0,"fileNum":157,"id":12891,"width":25,"height":45},{"x":100,"y":0,"fileNum":157,"id":12892,"width":25,"height":45},{"x":125,"y":0,"fileNum":157,"id":12893,"width":25,"height":45},{"x":0,"y":45,"fileNum":157,"id":12894,"width":25,"height":45},{"x":25,"y":45,"fileNum":157,"id":12895,"width":25,"height":45},{"x":50,"y":45,"fileNum":157,"id":12896,"width":25,"height":45},{"x":75,"y":45,"fileNum":157,"id":12897,"width":25,"height":45},{"x":100,"y":45,"fileNum":157,"id":12898,"width":25,"height":45},{"x":125,"y":45,"fileNum":157,"id":12899,"width":25,"height":45},{"x":0,"y":90,"fileNum":157,"id":12900,"width":25,"height":45},{"x":25,"y":90,"fileNum":157,"id":12901,"width":25,"height":45},{"x":50,"y":90,"fileNum":157,"id":12902,"width":25,"height":45},{"x":75,"y":90,"fileNum":157,"id":12903,"width":25,"height":45},{"x":100,"y":90,"fileNum":157,"id":12904,"width":25,"height":45},{"x":0,"y":135,"fileNum":157,"id":12905,"width":25,"height":45},{"x":25,"y":135,"fileNum":157,"id":12906,"width":25,"height":45},{"x":50,"y":135,"fileNum":157,"id":12907,"width":25,"height":45},{"x":75,"y":135,"fileNum":157,"id":12908,"width":25,"height":45},{"x":100,"y":135,"fileNum":157,"id":12909,"width":25,"height":45},{"x":0,"y":0,"fileNum":160,"id":12914,"width":32,"height":32},{"x":0,"y":0,"fileNum":159,"id":12915,"width":25,"height":45},{"x":25,"y":0,"fileNum":159,"id":12916,"width":25,"height":45},{"x":50,"y":0,"fileNum":159,"id":12917,"width":25,"height":45},{"x":75,"y":0,"fileNum":159,"id":12918,"width":25,"height":45},{"x":100,"y":0,"fileNum":159,"id":12919,"width":25,"height":45},{"x":125,"y":0,"fileNum":159,"id":12920,"width":25,"height":45},{"x":0,"y":45,"fileNum":159,"id":12921,"width":25,"height":45},{"x":25,"y":45,"fileNum":159,"id":12922,"width":25,"height":45},{"x":50,"y":45,"fileNum":159,"id":12923,"width":25,"height":45},{"x":75,"y":45,"fileNum":159,"id":12924,"width":25,"height":45},{"x":100,"y":45,"fileNum":159,"id":12925,"width":25,"height":45},{"x":125,"y":45,"fileNum":159,"id":12926,"width":25,"height":45},{"x":0,"y":90,"fileNum":159,"id":12927,"width":25,"height":45},{"x":25,"y":90,"fileNum":159,"id":12928,"width":25,"height":45},{"x":50,"y":90,"fileNum":159,"id":12929,"width":25,"height":45},{"x":75,"y":90,"fileNum":159,"id":12930,"width":25,"height":45},{"x":100,"y":90,"fileNum":159,"id":12931,"width":25,"height":45},{"x":0,"y":135,"fileNum":159,"id":12932,"width":25,"height":45},{"x":25,"y":135,"fileNum":159,"id":12933,"width":25,"height":45},{"x":50,"y":135,"fileNum":159,"id":12934,"width":25,"height":45},{"x":75,"y":135,"fileNum":159,"id":12935,"width":25,"height":45},{"x":100,"y":135,"fileNum":159,"id":12936,"width":25,"height":45},{"x":0,"y":0,"fileNum":4066,"id":12941,"width":57,"height":99},{"x":57,"y":0,"fileNum":4066,"id":12942,"width":57,"height":99},{"x":114,"y":0,"fileNum":4066,"id":12943,"width":57,"height":99},{"x":171,"y":0,"fileNum":4066,"id":12944,"width":57,"height":99},{"x":228,"y":0,"fileNum":4066,"id":12945,"width":57,"height":99},{"x":285,"y":0,"fileNum":4066,"id":12946,"width":57,"height":99},{"x":0,"y":99,"fileNum":4066,"id":12947,"width":57,"height":99},{"x":57,"y":99,"fileNum":4066,"id":12948,"width":57,"height":99},{"x":114,"y":99,"fileNum":4066,"id":12949,"width":57,"height":99},{"x":171,"y":99,"fileNum":4066,"id":12950,"width":57,"height":99},{"x":228,"y":99,"fileNum":4066,"id":12951,"width":57,"height":99},{"x":285,"y":99,"fileNum":4066,"id":12952,"width":57,"height":99},{"x":0,"y":198,"fileNum":4066,"id":12953,"width":57,"height":99},{"x":57,"y":198,"fileNum":4066,"id":12954,"width":57,"height":99},{"x":114,"y":198,"fileNum":4066,"id":12955,"width":57,"height":99},{"x":171,"y":198,"fileNum":4066,"id":12956,"width":57,"height":99},{"x":228,"y":198,"fileNum":4066,"id":12957,"width":57,"height":99},{"x":0,"y":297,"fileNum":4066,"id":12958,"width":57,"height":99},{"x":57,"y":297,"fileNum":4066,"id":12959,"width":57,"height":99},{"x":114,"y":297,"fileNum":4066,"id":12960,"width":57,"height":99},{"x":171,"y":297,"fileNum":4066,"id":12961,"width":57,"height":99},{"x":228,"y":297,"fileNum":4066,"id":12962,"width":57,"height":99},{"x":0,"y":0,"fileNum":22005,"id":12967,"width":32,"height":32},{"x":0,"y":0,"fileNum":22004,"id":12968,"width":25,"height":45},{"x":25,"y":0,"fileNum":22004,"id":12969,"width":25,"height":45},{"x":50,"y":0,"fileNum":22004,"id":12970,"width":25,"height":45},{"x":75,"y":0,"fileNum":22004,"id":12971,"width":25,"height":45},{"x":100,"y":0,"fileNum":22004,"id":12972,"width":25,"height":45},{"x":125,"y":0,"fileNum":22004,"id":12973,"width":25,"height":45},{"x":0,"y":45,"fileNum":22004,"id":12974,"width":25,"height":45},{"x":25,"y":45,"fileNum":22004,"id":12975,"width":25,"height":45},{"x":50,"y":45,"fileNum":22004,"id":12976,"width":25,"height":45},{"x":75,"y":45,"fileNum":22004,"id":12977,"width":25,"height":45},{"x":100,"y":45,"fileNum":22004,"id":12978,"width":25,"height":45},{"x":125,"y":45,"fileNum":22004,"id":12979,"width":25,"height":45},{"x":0,"y":90,"fileNum":22004,"id":12980,"width":25,"height":45},{"x":25,"y":90,"fileNum":22004,"id":12981,"width":25,"height":45},{"x":50,"y":90,"fileNum":22004,"id":12982,"width":25,"height":45},{"x":75,"y":90,"fileNum":22004,"id":12983,"width":25,"height":45},{"x":100,"y":90,"fileNum":22004,"id":12984,"width":25,"height":45},{"x":0,"y":135,"fileNum":22004,"id":12985,"width":25,"height":45},{"x":25,"y":135,"fileNum":22004,"id":12986,"width":25,"height":45},{"x":50,"y":135,"fileNum":22004,"id":12987,"width":25,"height":45},{"x":75,"y":135,"fileNum":22004,"id":12988,"width":25,"height":45},{"x":100,"y":135,"fileNum":22004,"id":12989,"width":25,"height":45},{"x":0,"y":0,"fileNum":2197,"id":12994,"width":17,"height":50},{"x":17,"y":0,"fileNum":2197,"id":12995,"width":17,"height":50},{"x":34,"y":0,"fileNum":2197,"id":12996,"width":17,"height":50},{"x":51,"y":0,"fileNum":2197,"id":12997,"width":17,"height":50},{"x":0,"y":0,"fileNum":2198,"id":12998,"width":17,"height":50},{"x":17,"y":0,"fileNum":2198,"id":12999,"width":17,"height":50},{"x":34,"y":0,"fileNum":2198,"id":13000,"width":17,"height":50},{"x":51,"y":0,"fileNum":2198,"id":13001,"width":17,"height":50},{"x":0,"y":0,"fileNum":2044,"id":13003,"width":17,"height":50},{"x":17,"y":0,"fileNum":2044,"id":13004,"width":17,"height":50},{"x":34,"y":0,"fileNum":2044,"id":13005,"width":17,"height":50},{"x":51,"y":0,"fileNum":2044,"id":13006,"width":17,"height":50},{"x":0,"y":0,"fileNum":2046,"id":13007,"width":17,"height":50},{"x":17,"y":0,"fileNum":2046,"id":13008,"width":17,"height":50},{"x":34,"y":0,"fileNum":2046,"id":13009,"width":17,"height":50},{"x":51,"y":0,"fileNum":2046,"id":13010,"width":17,"height":50},{"x":0,"y":0,"fileNum":2049,"id":13011,"width":17,"height":50},{"x":17,"y":0,"fileNum":2049,"id":13012,"width":17,"height":50},{"x":34,"y":0,"fileNum":2049,"id":13013,"width":17,"height":50},{"x":51,"y":0,"fileNum":2049,"id":13014,"width":17,"height":50},{"x":0,"y":0,"fileNum":2051,"id":13015,"width":17,"height":50},{"x":17,"y":0,"fileNum":2051,"id":13016,"width":17,"height":50},{"x":34,"y":0,"fileNum":2051,"id":13017,"width":17,"height":50},{"x":51,"y":0,"fileNum":2051,"id":13018,"width":17,"height":50},{"x":0,"y":0,"fileNum":2054,"id":13019,"width":17,"height":50},{"x":17,"y":0,"fileNum":2054,"id":13020,"width":17,"height":50},{"x":34,"y":0,"fileNum":2054,"id":13021,"width":17,"height":50},{"x":51,"y":0,"fileNum":2054,"id":13022,"width":17,"height":50},{"x":0,"y":0,"fileNum":2056,"id":13023,"width":17,"height":50},{"x":17,"y":0,"fileNum":2056,"id":13024,"width":17,"height":50},{"x":34,"y":0,"fileNum":2056,"id":13025,"width":17,"height":50},{"x":51,"y":0,"fileNum":2056,"id":13026,"width":17,"height":50},{"x":0,"y":0,"fileNum":2064,"id":13027,"width":17,"height":50},{"x":17,"y":0,"fileNum":2064,"id":13028,"width":17,"height":50},{"x":34,"y":0,"fileNum":2064,"id":13029,"width":17,"height":50},{"x":51,"y":0,"fileNum":2064,"id":13030,"width":17,"height":50},{"x":0,"y":0,"fileNum":2067,"id":13031,"width":17,"height":50},{"x":17,"y":0,"fileNum":2067,"id":13032,"width":17,"height":50},{"x":34,"y":0,"fileNum":2067,"id":13033,"width":17,"height":50},{"x":51,"y":0,"fileNum":2067,"id":13034,"width":17,"height":50},{"x":0,"y":0,"fileNum":2069,"id":13035,"width":17,"height":50},{"x":17,"y":0,"fileNum":2069,"id":13036,"width":17,"height":50},{"x":34,"y":0,"fileNum":2069,"id":13037,"width":17,"height":50},{"x":51,"y":0,"fileNum":2069,"id":13038,"width":17,"height":50},{"x":0,"y":0,"fileNum":2075,"id":13039,"width":17,"height":50},{"x":17,"y":0,"fileNum":2075,"id":13040,"width":17,"height":50},{"x":34,"y":0,"fileNum":2075,"id":13041,"width":17,"height":50},{"x":51,"y":0,"fileNum":2075,"id":13042,"width":17,"height":50},{"x":0,"y":0,"fileNum":2083,"id":13043,"width":17,"height":50},{"x":17,"y":0,"fileNum":2083,"id":13044,"width":17,"height":50},{"x":34,"y":0,"fileNum":2083,"id":13045,"width":17,"height":50},{"x":51,"y":0,"fileNum":2083,"id":13046,"width":17,"height":50},{"x":0,"y":0,"fileNum":2086,"id":13047,"width":17,"height":50},{"x":17,"y":0,"fileNum":2086,"id":13048,"width":17,"height":50},{"x":34,"y":0,"fileNum":2086,"id":13049,"width":17,"height":50},{"x":51,"y":0,"fileNum":2086,"id":13050,"width":17,"height":50},{"x":0,"y":0,"fileNum":2090,"id":13051,"width":17,"height":50},{"x":17,"y":0,"fileNum":2090,"id":13052,"width":17,"height":50},{"x":34,"y":0,"fileNum":2090,"id":13053,"width":17,"height":50},{"x":51,"y":0,"fileNum":2090,"id":13054,"width":17,"height":50},{"x":0,"y":0,"fileNum":2097,"id":13055,"width":17,"height":50},{"x":17,"y":0,"fileNum":2097,"id":13056,"width":17,"height":50},{"x":34,"y":0,"fileNum":2097,"id":13057,"width":17,"height":50},{"x":51,"y":0,"fileNum":2097,"id":13058,"width":17,"height":50},{"x":0,"y":0,"fileNum":2059,"id":13059,"width":17,"height":50},{"x":17,"y":0,"fileNum":2059,"id":13060,"width":17,"height":50},{"x":34,"y":0,"fileNum":2059,"id":13061,"width":17,"height":50},{"x":51,"y":0,"fileNum":2059,"id":13062,"width":17,"height":50},{"x":0,"y":0,"fileNum":2060,"id":13063,"width":17,"height":50},{"x":17,"y":0,"fileNum":2060,"id":13064,"width":17,"height":50},{"x":34,"y":0,"fileNum":2060,"id":13065,"width":17,"height":50},{"x":51,"y":0,"fileNum":2060,"id":13066,"width":17,"height":50},{"x":0,"y":0,"fileNum":2061,"id":13067,"width":17,"height":50},{"x":17,"y":0,"fileNum":2061,"id":13068,"width":17,"height":50},{"x":34,"y":0,"fileNum":2061,"id":13069,"width":17,"height":50},{"x":51,"y":0,"fileNum":2061,"id":13070,"width":17,"height":50},{"x":0,"y":0,"fileNum":2058,"id":13071,"width":17,"height":50},{"x":17,"y":0,"fileNum":2058,"id":13072,"width":17,"height":50},{"x":34,"y":0,"fileNum":2058,"id":13073,"width":17,"height":50},{"x":51,"y":0,"fileNum":2058,"id":13074,"width":17,"height":50},{"x":0,"y":0,"fileNum":2105,"id":13075,"width":17,"height":50},{"x":17,"y":0,"fileNum":2105,"id":13076,"width":17,"height":50},{"x":34,"y":0,"fileNum":2105,"id":13077,"width":17,"height":50},{"x":51,"y":0,"fileNum":2105,"id":13078,"width":17,"height":50},{"x":0,"y":0,"fileNum":2106,"id":13079,"width":17,"height":50},{"x":17,"y":0,"fileNum":2106,"id":13080,"width":17,"height":50},{"x":34,"y":0,"fileNum":2106,"id":13081,"width":17,"height":50},{"x":51,"y":0,"fileNum":2106,"id":13082,"width":17,"height":50},{"x":0,"y":0,"fileNum":2072,"id":13083,"width":17,"height":50},{"x":17,"y":0,"fileNum":2072,"id":13084,"width":17,"height":50},{"x":34,"y":0,"fileNum":2072,"id":13085,"width":17,"height":50},{"x":51,"y":0,"fileNum":2072,"id":13086,"width":17,"height":50},{"x":0,"y":0,"fileNum":2071,"id":13087,"width":17,"height":50},{"x":17,"y":0,"fileNum":2071,"id":13088,"width":17,"height":50},{"x":34,"y":0,"fileNum":2071,"id":13089,"width":17,"height":50},{"x":51,"y":0,"fileNum":2071,"id":13090,"width":17,"height":50},{"x":0,"y":0,"fileNum":2073,"id":13091,"width":17,"height":50},{"x":17,"y":0,"fileNum":2073,"id":13092,"width":17,"height":50},{"x":34,"y":0,"fileNum":2073,"id":13093,"width":17,"height":50},{"x":51,"y":0,"fileNum":2073,"id":13094,"width":17,"height":50},{"x":0,"y":0,"fileNum":2070,"id":13095,"width":17,"height":50},{"x":17,"y":0,"fileNum":2070,"id":13096,"width":17,"height":50},{"x":34,"y":0,"fileNum":2070,"id":13097,"width":17,"height":50},{"x":51,"y":0,"fileNum":2070,"id":13098,"width":17,"height":50},{"x":0,"y":0,"fileNum":2093,"id":13099,"width":17,"height":50},{"x":17,"y":0,"fileNum":2093,"id":13100,"width":17,"height":50},{"x":34,"y":0,"fileNum":2093,"id":13101,"width":17,"height":50},{"x":51,"y":0,"fileNum":2093,"id":13102,"width":17,"height":50},{"x":0,"y":0,"fileNum":2001,"id":13103,"width":17,"height":50},{"x":17,"y":0,"fileNum":2001,"id":13104,"width":17,"height":50},{"x":34,"y":0,"fileNum":2001,"id":13105,"width":17,"height":50},{"x":51,"y":0,"fileNum":2001,"id":13106,"width":17,"height":50},{"x":0,"y":0,"fileNum":2002,"id":13107,"width":17,"height":50},{"x":17,"y":0,"fileNum":2002,"id":13108,"width":17,"height":50},{"x":34,"y":0,"fileNum":2002,"id":13109,"width":17,"height":50},{"x":51,"y":0,"fileNum":2002,"id":13110,"width":17,"height":50},{"x":0,"y":0,"fileNum":2003,"id":13111,"width":17,"height":50},{"x":17,"y":0,"fileNum":2003,"id":13112,"width":17,"height":50},{"x":34,"y":0,"fileNum":2003,"id":13113,"width":17,"height":50},{"x":51,"y":0,"fileNum":2003,"id":13114,"width":17,"height":50},{"x":0,"y":0,"fileNum":2004,"id":13115,"width":17,"height":50},{"x":17,"y":0,"fileNum":2004,"id":13116,"width":17,"height":50},{"x":34,"y":0,"fileNum":2004,"id":13117,"width":17,"height":50},{"x":51,"y":0,"fileNum":2004,"id":13118,"width":17,"height":50},{"x":0,"y":0,"fileNum":2005,"id":13119,"width":17,"height":50},{"x":17,"y":0,"fileNum":2005,"id":13120,"width":17,"height":50},{"x":34,"y":0,"fileNum":2005,"id":13121,"width":17,"height":50},{"x":51,"y":0,"fileNum":2005,"id":13122,"width":17,"height":50},{"x":0,"y":0,"fileNum":2006,"id":13123,"width":17,"height":50},{"x":17,"y":0,"fileNum":2006,"id":13124,"width":17,"height":50},{"x":34,"y":0,"fileNum":2006,"id":13125,"width":17,"height":50},{"x":51,"y":0,"fileNum":2006,"id":13126,"width":17,"height":50},{"x":0,"y":0,"fileNum":2007,"id":13127,"width":17,"height":50},{"x":17,"y":0,"fileNum":2007,"id":13128,"width":17,"height":50},{"x":34,"y":0,"fileNum":2007,"id":13129,"width":17,"height":50},{"x":51,"y":0,"fileNum":2007,"id":13130,"width":17,"height":50},{"x":0,"y":0,"fileNum":2008,"id":13131,"width":17,"height":50},{"x":17,"y":0,"fileNum":2008,"id":13132,"width":17,"height":50},{"x":34,"y":0,"fileNum":2008,"id":13133,"width":17,"height":50},{"x":51,"y":0,"fileNum":2008,"id":13134,"width":17,"height":50},{"x":0,"y":0,"fileNum":2009,"id":13135,"width":17,"height":50},{"x":17,"y":0,"fileNum":2009,"id":13136,"width":17,"height":50},{"x":34,"y":0,"fileNum":2009,"id":13137,"width":17,"height":50},{"x":51,"y":0,"fileNum":2009,"id":13138,"width":17,"height":50},{"x":0,"y":0,"fileNum":2010,"id":13139,"width":17,"height":50},{"x":17,"y":0,"fileNum":2010,"id":13140,"width":17,"height":50},{"x":34,"y":0,"fileNum":2010,"id":13141,"width":17,"height":50},{"x":51,"y":0,"fileNum":2010,"id":13142,"width":17,"height":50},{"x":0,"y":0,"fileNum":2011,"id":13143,"width":17,"height":50},{"x":17,"y":0,"fileNum":2011,"id":13144,"width":17,"height":50},{"x":34,"y":0,"fileNum":2011,"id":13145,"width":17,"height":50},{"x":51,"y":0,"fileNum":2011,"id":13146,"width":17,"height":50},{"x":0,"y":0,"fileNum":2012,"id":13147,"width":17,"height":50},{"x":17,"y":0,"fileNum":2012,"id":13148,"width":17,"height":50},{"x":34,"y":0,"fileNum":2012,"id":13149,"width":17,"height":50},{"x":51,"y":0,"fileNum":2012,"id":13150,"width":17,"height":50},{"x":0,"y":0,"fileNum":2013,"id":13151,"width":17,"height":50},{"x":17,"y":0,"fileNum":2013,"id":13152,"width":17,"height":50},{"x":34,"y":0,"fileNum":2013,"id":13153,"width":17,"height":50},{"x":51,"y":0,"fileNum":2013,"id":13154,"width":17,"height":50},{"x":0,"y":0,"fileNum":2014,"id":13155,"width":17,"height":50},{"x":17,"y":0,"fileNum":2014,"id":13156,"width":17,"height":50},{"x":34,"y":0,"fileNum":2014,"id":13157,"width":17,"height":50},{"x":51,"y":0,"fileNum":2014,"id":13158,"width":17,"height":50},{"x":0,"y":0,"fileNum":2015,"id":13159,"width":17,"height":50},{"x":17,"y":0,"fileNum":2015,"id":13160,"width":17,"height":50},{"x":34,"y":0,"fileNum":2015,"id":13161,"width":17,"height":50},{"x":51,"y":0,"fileNum":2015,"id":13162,"width":17,"height":50},{"x":0,"y":0,"fileNum":2016,"id":13163,"width":17,"height":50},{"x":17,"y":0,"fileNum":2016,"id":13164,"width":17,"height":50},{"x":34,"y":0,"fileNum":2016,"id":13165,"width":17,"height":50},{"x":51,"y":0,"fileNum":2016,"id":13166,"width":17,"height":50},{"x":0,"y":0,"fileNum":2017,"id":13167,"width":17,"height":50},{"x":17,"y":0,"fileNum":2017,"id":13168,"width":17,"height":50},{"x":34,"y":0,"fileNum":2017,"id":13169,"width":17,"height":50},{"x":51,"y":0,"fileNum":2017,"id":13170,"width":17,"height":50},{"x":0,"y":0,"fileNum":2018,"id":13171,"width":17,"height":50},{"x":17,"y":0,"fileNum":2018,"id":13172,"width":17,"height":50},{"x":34,"y":0,"fileNum":2018,"id":13173,"width":17,"height":50},{"x":51,"y":0,"fileNum":2018,"id":13174,"width":17,"height":50},{"x":0,"y":0,"fileNum":2019,"id":13175,"width":17,"height":50},{"x":17,"y":0,"fileNum":2019,"id":13176,"width":17,"height":50},{"x":34,"y":0,"fileNum":2019,"id":13177,"width":17,"height":50},{"x":51,"y":0,"fileNum":2019,"id":13178,"width":17,"height":50},{"x":0,"y":0,"fileNum":2020,"id":13179,"width":17,"height":50},{"x":17,"y":0,"fileNum":2020,"id":13180,"width":17,"height":50},{"x":34,"y":0,"fileNum":2020,"id":13181,"width":17,"height":50},{"x":51,"y":0,"fileNum":2020,"id":13182,"width":17,"height":50},{"x":0,"y":0,"fileNum":2021,"id":13183,"width":17,"height":50},{"x":17,"y":0,"fileNum":2021,"id":13184,"width":17,"height":50},{"x":34,"y":0,"fileNum":2021,"id":13185,"width":17,"height":50},{"x":51,"y":0,"fileNum":2021,"id":13186,"width":17,"height":50},{"x":0,"y":0,"fileNum":2022,"id":13187,"width":17,"height":50},{"x":17,"y":0,"fileNum":2022,"id":13188,"width":17,"height":50},{"x":34,"y":0,"fileNum":2022,"id":13189,"width":17,"height":50},{"x":51,"y":0,"fileNum":2022,"id":13190,"width":17,"height":50},{"x":0,"y":0,"fileNum":2023,"id":13191,"width":17,"height":50},{"x":17,"y":0,"fileNum":2023,"id":13192,"width":17,"height":50},{"x":34,"y":0,"fileNum":2023,"id":13193,"width":17,"height":50},{"x":51,"y":0,"fileNum":2023,"id":13194,"width":17,"height":50},{"x":0,"y":0,"fileNum":2024,"id":13195,"width":17,"height":50},{"x":17,"y":0,"fileNum":2024,"id":13196,"width":17,"height":50},{"x":34,"y":0,"fileNum":2024,"id":13197,"width":17,"height":50},{"x":51,"y":0,"fileNum":2024,"id":13198,"width":17,"height":50},{"x":0,"y":0,"fileNum":2025,"id":13199,"width":17,"height":50},{"x":17,"y":0,"fileNum":2025,"id":13200,"width":17,"height":50},{"x":34,"y":0,"fileNum":2025,"id":13201,"width":17,"height":50},{"x":51,"y":0,"fileNum":2025,"id":13202,"width":17,"height":50},{"x":0,"y":0,"fileNum":2026,"id":13203,"width":17,"height":50},{"x":17,"y":0,"fileNum":2026,"id":13204,"width":17,"height":50},{"x":34,"y":0,"fileNum":2026,"id":13205,"width":17,"height":50},{"x":51,"y":0,"fileNum":2026,"id":13206,"width":17,"height":50},{"x":0,"y":0,"fileNum":2027,"id":13207,"width":17,"height":50},{"x":17,"y":0,"fileNum":2027,"id":13208,"width":17,"height":50},{"x":34,"y":0,"fileNum":2027,"id":13209,"width":17,"height":50},{"x":51,"y":0,"fileNum":2027,"id":13210,"width":17,"height":50},{"x":0,"y":0,"fileNum":2028,"id":13211,"width":17,"height":50},{"x":17,"y":0,"fileNum":2028,"id":13212,"width":17,"height":50},{"x":34,"y":0,"fileNum":2028,"id":13213,"width":17,"height":50},{"x":51,"y":0,"fileNum":2028,"id":13214,"width":17,"height":50},{"x":0,"y":0,"fileNum":2029,"id":13215,"width":17,"height":50},{"x":17,"y":0,"fileNum":2029,"id":13216,"width":17,"height":50},{"x":34,"y":0,"fileNum":2029,"id":13217,"width":17,"height":50},{"x":51,"y":0,"fileNum":2029,"id":13218,"width":17,"height":50},{"x":0,"y":0,"fileNum":2030,"id":13219,"width":17,"height":50},{"x":17,"y":0,"fileNum":2030,"id":13220,"width":17,"height":50},{"x":34,"y":0,"fileNum":2030,"id":13221,"width":17,"height":50},{"x":51,"y":0,"fileNum":2030,"id":13222,"width":17,"height":50},{"x":0,"y":0,"fileNum":2031,"id":13223,"width":17,"height":50},{"x":17,"y":0,"fileNum":2031,"id":13224,"width":17,"height":50},{"x":34,"y":0,"fileNum":2031,"id":13225,"width":17,"height":50},{"x":51,"y":0,"fileNum":2031,"id":13226,"width":17,"height":50},{"x":0,"y":0,"fileNum":2032,"id":13227,"width":17,"height":50},{"x":17,"y":0,"fileNum":2032,"id":13228,"width":17,"height":50},{"x":34,"y":0,"fileNum":2032,"id":13229,"width":17,"height":50},{"x":51,"y":0,"fileNum":2032,"id":13230,"width":17,"height":50},{"x":0,"y":0,"fileNum":2033,"id":13231,"width":17,"height":50},{"x":17,"y":0,"fileNum":2033,"id":13232,"width":17,"height":50},{"x":34,"y":0,"fileNum":2033,"id":13233,"width":17,"height":50},{"x":51,"y":0,"fileNum":2033,"id":13234,"width":17,"height":50},{"x":0,"y":0,"fileNum":2034,"id":13235,"width":17,"height":50},{"x":17,"y":0,"fileNum":2034,"id":13236,"width":17,"height":50},{"x":34,"y":0,"fileNum":2034,"id":13237,"width":17,"height":50},{"x":51,"y":0,"fileNum":2034,"id":13238,"width":17,"height":50},{"x":0,"y":0,"fileNum":2035,"id":13239,"width":17,"height":50},{"x":17,"y":0,"fileNum":2035,"id":13240,"width":17,"height":50},{"x":34,"y":0,"fileNum":2035,"id":13241,"width":17,"height":50},{"x":51,"y":0,"fileNum":2035,"id":13242,"width":17,"height":50},{"x":0,"y":0,"fileNum":2036,"id":13243,"width":17,"height":50},{"x":17,"y":0,"fileNum":2036,"id":13244,"width":17,"height":50},{"x":34,"y":0,"fileNum":2036,"id":13245,"width":17,"height":50},{"x":51,"y":0,"fileNum":2036,"id":13246,"width":17,"height":50},{"x":0,"y":0,"fileNum":2037,"id":13247,"width":17,"height":50},{"x":17,"y":0,"fileNum":2037,"id":13248,"width":17,"height":50},{"x":34,"y":0,"fileNum":2037,"id":13249,"width":17,"height":50},{"x":51,"y":0,"fileNum":2037,"id":13250,"width":17,"height":50},{"x":0,"y":0,"fileNum":2038,"id":13251,"width":17,"height":50},{"x":17,"y":0,"fileNum":2038,"id":13252,"width":17,"height":50},{"x":34,"y":0,"fileNum":2038,"id":13253,"width":17,"height":50},{"x":51,"y":0,"fileNum":2038,"id":13254,"width":17,"height":50},{"x":0,"y":0,"fileNum":20007,"id":13255,"width":32,"height":32},{"x":0,"y":0,"fileNum":20008,"id":13256,"width":25,"height":45},{"x":25,"y":0,"fileNum":20008,"id":13257,"width":25,"height":45},{"x":50,"y":0,"fileNum":20008,"id":13258,"width":25,"height":45},{"x":75,"y":0,"fileNum":20008,"id":13259,"width":25,"height":45},{"x":100,"y":0,"fileNum":20008,"id":13260,"width":25,"height":45},{"x":125,"y":0,"fileNum":20008,"id":13261,"width":25,"height":45},{"x":0,"y":45,"fileNum":20008,"id":13262,"width":25,"height":45},{"x":25,"y":45,"fileNum":20008,"id":13263,"width":25,"height":45},{"x":50,"y":45,"fileNum":20008,"id":13264,"width":25,"height":45},{"x":75,"y":45,"fileNum":20008,"id":13265,"width":25,"height":45},{"x":100,"y":45,"fileNum":20008,"id":13266,"width":25,"height":45},{"x":125,"y":45,"fileNum":20008,"id":13267,"width":25,"height":45},{"x":0,"y":90,"fileNum":20008,"id":13268,"width":25,"height":45},{"x":25,"y":90,"fileNum":20008,"id":13269,"width":25,"height":45},{"x":50,"y":90,"fileNum":20008,"id":13270,"width":25,"height":45},{"x":75,"y":90,"fileNum":20008,"id":13271,"width":25,"height":45},{"x":100,"y":90,"fileNum":20008,"id":13272,"width":25,"height":45},{"x":0,"y":135,"fileNum":20008,"id":13273,"width":25,"height":45},{"x":25,"y":135,"fileNum":20008,"id":13274,"width":25,"height":45},{"x":50,"y":135,"fileNum":20008,"id":13275,"width":25,"height":45},{"x":75,"y":135,"fileNum":20008,"id":13276,"width":25,"height":45},{"x":100,"y":135,"fileNum":20008,"id":13277,"width":25,"height":45},{"x":0,"y":0,"fileNum":102,"id":13282,"width":32,"height":32},{"x":0,"y":0,"fileNum":103,"id":13283,"width":25,"height":45},{"x":25,"y":0,"fileNum":103,"id":13284,"width":25,"height":45},{"x":50,"y":0,"fileNum":103,"id":13285,"width":25,"height":45},{"x":75,"y":0,"fileNum":103,"id":13286,"width":25,"height":45},{"x":100,"y":0,"fileNum":103,"id":13287,"width":25,"height":45},{"x":125,"y":0,"fileNum":103,"id":13288,"width":25,"height":45},{"x":0,"y":45,"fileNum":103,"id":13289,"width":25,"height":45},{"x":25,"y":45,"fileNum":103,"id":13290,"width":25,"height":45},{"x":50,"y":45,"fileNum":103,"id":13291,"width":25,"height":45},{"x":75,"y":45,"fileNum":103,"id":13292,"width":25,"height":45},{"x":100,"y":45,"fileNum":103,"id":13293,"width":25,"height":45},{"x":125,"y":45,"fileNum":103,"id":13294,"width":25,"height":45},{"x":0,"y":90,"fileNum":103,"id":13295,"width":25,"height":45},{"x":25,"y":90,"fileNum":103,"id":13296,"width":25,"height":45},{"x":50,"y":90,"fileNum":103,"id":13297,"width":25,"height":45},{"x":75,"y":90,"fileNum":103,"id":13298,"width":25,"height":45},{"x":100,"y":90,"fileNum":103,"id":13299,"width":25,"height":45},{"x":0,"y":135,"fileNum":103,"id":13300,"width":25,"height":45},{"x":25,"y":135,"fileNum":103,"id":13301,"width":25,"height":45},{"x":50,"y":135,"fileNum":103,"id":13302,"width":25,"height":45},{"x":75,"y":135,"fileNum":103,"id":13303,"width":25,"height":45},{"x":100,"y":135,"fileNum":103,"id":13304,"width":25,"height":45},{"x":0,"y":0,"fileNum":16012,"id":13309,"width":25,"height":45},{"x":25,"y":0,"fileNum":16012,"id":13310,"width":25,"height":45},{"x":50,"y":0,"fileNum":16012,"id":13311,"width":25,"height":45},{"x":75,"y":0,"fileNum":16012,"id":13312,"width":25,"height":45},{"x":100,"y":0,"fileNum":16012,"id":13313,"width":25,"height":45},{"x":125,"y":0,"fileNum":16012,"id":13314,"width":25,"height":45},{"x":0,"y":45,"fileNum":16012,"id":13315,"width":25,"height":45},{"x":25,"y":45,"fileNum":16012,"id":13316,"width":25,"height":45},{"x":50,"y":45,"fileNum":16012,"id":13317,"width":25,"height":45},{"x":75,"y":45,"fileNum":16012,"id":13318,"width":25,"height":45},{"x":100,"y":45,"fileNum":16012,"id":13319,"width":25,"height":45},{"x":125,"y":45,"fileNum":16012,"id":13320,"width":25,"height":45},{"x":0,"y":90,"fileNum":16012,"id":13321,"width":25,"height":45},{"x":25,"y":90,"fileNum":16012,"id":13322,"width":25,"height":45},{"x":50,"y":90,"fileNum":16012,"id":13323,"width":25,"height":45},{"x":75,"y":90,"fileNum":16012,"id":13324,"width":25,"height":45},{"x":100,"y":90,"fileNum":16012,"id":13325,"width":25,"height":45},{"x":0,"y":135,"fileNum":16012,"id":13326,"width":25,"height":45},{"x":25,"y":135,"fileNum":16012,"id":13327,"width":25,"height":45},{"x":50,"y":135,"fileNum":16012,"id":13328,"width":25,"height":45},{"x":75,"y":135,"fileNum":16012,"id":13329,"width":25,"height":45},{"x":100,"y":135,"fileNum":16012,"id":13330,"width":25,"height":45},{"x":0,"y":0,"fileNum":16013,"id":13335,"width":25,"height":45},{"x":25,"y":0,"fileNum":16013,"id":13336,"width":25,"height":45},{"x":50,"y":0,"fileNum":16013,"id":13337,"width":25,"height":45},{"x":75,"y":0,"fileNum":16013,"id":13338,"width":25,"height":45},{"x":100,"y":0,"fileNum":16013,"id":13339,"width":25,"height":45},{"x":125,"y":0,"fileNum":16013,"id":13340,"width":25,"height":45},{"x":0,"y":45,"fileNum":16013,"id":13341,"width":25,"height":45},{"x":25,"y":45,"fileNum":16013,"id":13342,"width":25,"height":45},{"x":50,"y":45,"fileNum":16013,"id":13343,"width":25,"height":45},{"x":75,"y":45,"fileNum":16013,"id":13344,"width":25,"height":45},{"x":100,"y":45,"fileNum":16013,"id":13345,"width":25,"height":45},{"x":125,"y":45,"fileNum":16013,"id":13346,"width":25,"height":45},{"x":0,"y":90,"fileNum":16013,"id":13347,"width":25,"height":45},{"x":25,"y":90,"fileNum":16013,"id":13348,"width":25,"height":45},{"x":50,"y":90,"fileNum":16013,"id":13349,"width":25,"height":45},{"x":75,"y":90,"fileNum":16013,"id":13350,"width":25,"height":45},{"x":100,"y":90,"fileNum":16013,"id":13351,"width":25,"height":45},{"x":0,"y":135,"fileNum":16013,"id":13352,"width":25,"height":45},{"x":25,"y":135,"fileNum":16013,"id":13353,"width":25,"height":45},{"x":50,"y":135,"fileNum":16013,"id":13354,"width":25,"height":45},{"x":75,"y":135,"fileNum":16013,"id":13355,"width":25,"height":45},{"x":100,"y":135,"fileNum":16013,"id":13356,"width":25,"height":45},{"x":0,"y":0,"fileNum":16014,"id":13361,"width":25,"height":45},{"x":25,"y":0,"fileNum":16014,"id":13362,"width":25,"height":45},{"x":50,"y":0,"fileNum":16014,"id":13363,"width":25,"height":45},{"x":75,"y":0,"fileNum":16014,"id":13364,"width":25,"height":45},{"x":100,"y":0,"fileNum":16014,"id":13365,"width":25,"height":45},{"x":125,"y":0,"fileNum":16014,"id":13366,"width":25,"height":45},{"x":0,"y":45,"fileNum":16014,"id":13367,"width":25,"height":45},{"x":25,"y":45,"fileNum":16014,"id":13368,"width":25,"height":45},{"x":50,"y":45,"fileNum":16014,"id":13369,"width":25,"height":45},{"x":75,"y":45,"fileNum":16014,"id":13370,"width":25,"height":45},{"x":100,"y":45,"fileNum":16014,"id":13371,"width":25,"height":45},{"x":125,"y":45,"fileNum":16014,"id":13372,"width":25,"height":45},{"x":0,"y":90,"fileNum":16014,"id":13373,"width":25,"height":45},{"x":25,"y":90,"fileNum":16014,"id":13374,"width":25,"height":45},{"x":50,"y":90,"fileNum":16014,"id":13375,"width":25,"height":45},{"x":75,"y":90,"fileNum":16014,"id":13376,"width":25,"height":45},{"x":100,"y":90,"fileNum":16014,"id":13377,"width":25,"height":45},{"x":0,"y":135,"fileNum":16014,"id":13378,"width":25,"height":45},{"x":25,"y":135,"fileNum":16014,"id":13379,"width":25,"height":45},{"x":50,"y":135,"fileNum":16014,"id":13380,"width":25,"height":45},{"x":75,"y":135,"fileNum":16014,"id":13381,"width":25,"height":45},{"x":100,"y":135,"fileNum":16014,"id":13382,"width":25,"height":45},{"x":0,"y":0,"fileNum":12082,"id":13387,"width":32,"height":32},{"x":32,"y":0,"fileNum":12082,"id":13388,"width":32,"height":32},{"x":0,"y":32,"fileNum":12082,"id":13389,"width":32,"height":32},{"x":32,"y":32,"fileNum":12082,"id":13390,"width":32,"height":32},{"x":64,"y":0,"fileNum":12082,"id":13391,"width":32,"height":32},{"x":96,"y":0,"fileNum":12082,"id":13392,"width":32,"height":32},{"x":64,"y":32,"fileNum":12082,"id":13393,"width":32,"height":32},{"x":96,"y":32,"fileNum":12082,"id":13394,"width":32,"height":32},{"x":0,"y":64,"fileNum":12082,"id":13395,"width":32,"height":32},{"x":32,"y":64,"fileNum":12082,"id":13396,"width":32,"height":32},{"x":0,"y":96,"fileNum":12082,"id":13397,"width":32,"height":32},{"x":32,"y":96,"fileNum":12082,"id":13398,"width":32,"height":32},{"x":64,"y":64,"fileNum":12082,"id":13399,"width":32,"height":32},{"x":96,"y":64,"fileNum":12082,"id":13400,"width":32,"height":32},{"x":64,"y":96,"fileNum":12082,"id":13401,"width":32,"height":32},{"x":96,"y":96,"fileNum":12082,"id":13402,"width":32,"height":32},{"x":0,"y":128,"fileNum":12082,"id":13403,"width":32,"height":32},{"x":32,"y":128,"fileNum":12082,"id":13404,"width":32,"height":32},{"x":0,"y":160,"fileNum":12082,"id":13405,"width":32,"height":32},{"x":32,"y":160,"fileNum":12082,"id":13406,"width":32,"height":32},{"x":64,"y":128,"fileNum":12082,"id":13407,"width":32,"height":32},{"x":96,"y":128,"fileNum":12082,"id":13408,"width":32,"height":32},{"x":64,"y":160,"fileNum":12082,"id":13409,"width":32,"height":32},{"x":96,"y":160,"fileNum":12082,"id":13410,"width":32,"height":32},{"x":192,"y":128,"fileNum":12082,"id":13411,"width":32,"height":32},{"x":224,"y":128,"fileNum":12082,"id":13412,"width":32,"height":32},{"x":192,"y":160,"fileNum":12082,"id":13413,"width":32,"height":32},{"x":224,"y":160,"fileNum":12082,"id":13414,"width":32,"height":32},{"x":0,"y":192,"fileNum":12082,"id":13415,"width":32,"height":32},{"x":32,"y":192,"fileNum":12082,"id":13416,"width":32,"height":32},{"x":0,"y":224,"fileNum":12082,"id":13417,"width":32,"height":32},{"x":32,"y":224,"fileNum":12082,"id":13418,"width":32,"height":32},{"x":64,"y":192,"fileNum":12082,"id":13419,"width":32,"height":32},{"x":96,"y":192,"fileNum":12082,"id":13420,"width":32,"height":32},{"x":64,"y":224,"fileNum":12082,"id":13421,"width":32,"height":32},{"x":96,"y":224,"fileNum":12082,"id":13422,"width":32,"height":32},{"x":128,"y":192,"fileNum":12082,"id":13423,"width":32,"height":32},{"x":160,"y":192,"fileNum":12082,"id":13424,"width":32,"height":32},{"x":128,"y":224,"fileNum":12082,"id":13425,"width":32,"height":32},{"x":160,"y":224,"fileNum":12082,"id":13426,"width":32,"height":32},{"x":128,"y":128,"fileNum":12082,"id":13427,"width":32,"height":32},{"x":160,"y":128,"fileNum":12082,"id":13428,"width":32,"height":32},{"x":128,"y":160,"fileNum":12082,"id":13429,"width":32,"height":32},{"x":160,"y":160,"fileNum":12082,"id":13430,"width":32,"height":32},{"x":192,"y":192,"fileNum":12082,"id":13431,"width":32,"height":32},{"x":224,"y":192,"fileNum":12082,"id":13432,"width":32,"height":32},{"x":192,"y":224,"fileNum":12082,"id":13433,"width":32,"height":32},{"x":224,"y":224,"fileNum":12082,"id":13434,"width":32,"height":32},{"x":128,"y":0,"fileNum":12082,"id":13435,"width":32,"height":32},{"x":160,"y":0,"fileNum":12082,"id":13436,"width":32,"height":32},{"x":128,"y":32,"fileNum":12082,"id":13437,"width":32,"height":32},{"x":160,"y":32,"fileNum":12082,"id":13438,"width":32,"height":32},{"x":192,"y":0,"fileNum":12082,"id":13439,"width":32,"height":32},{"x":224,"y":0,"fileNum":12082,"id":13440,"width":32,"height":32},{"x":192,"y":32,"fileNum":12082,"id":13441,"width":32,"height":32},{"x":224,"y":32,"fileNum":12082,"id":13442,"width":32,"height":32},{"x":128,"y":64,"fileNum":12082,"id":13443,"width":32,"height":32},{"x":160,"y":64,"fileNum":12082,"id":13444,"width":32,"height":32},{"x":128,"y":96,"fileNum":12082,"id":13445,"width":32,"height":32},{"x":160,"y":96,"fileNum":12082,"id":13446,"width":32,"height":32},{"x":192,"y":64,"fileNum":12082,"id":13447,"width":32,"height":32},{"x":224,"y":64,"fileNum":12082,"id":13448,"width":32,"height":32},{"x":192,"y":96,"fileNum":12082,"id":13449,"width":32,"height":32},{"x":224,"y":96,"fileNum":12082,"id":13450,"width":32,"height":32},{"x":0,"y":256,"fileNum":12082,"id":13451,"width":32,"height":32},{"x":32,"y":256,"fileNum":12082,"id":13452,"width":32,"height":32},{"x":0,"y":288,"fileNum":12082,"id":13453,"width":32,"height":32},{"x":32,"y":288,"fileNum":12082,"id":13454,"width":32,"height":32},{"x":64,"y":256,"fileNum":12082,"id":13455,"width":32,"height":32},{"x":96,"y":256,"fileNum":12082,"id":13456,"width":32,"height":32},{"x":64,"y":288,"fileNum":12082,"id":13457,"width":32,"height":32},{"x":96,"y":288,"fileNum":12082,"id":13458,"width":32,"height":32},{"x":128,"y":256,"fileNum":12082,"id":13459,"width":32,"height":32},{"x":160,"y":256,"fileNum":12082,"id":13460,"width":32,"height":32},{"x":128,"y":288,"fileNum":12082,"id":13461,"width":32,"height":32},{"x":160,"y":288,"fileNum":12082,"id":13462,"width":32,"height":32},{"x":192,"y":256,"fileNum":12082,"id":13463,"width":32,"height":32},{"x":224,"y":256,"fileNum":12082,"id":13464,"width":32,"height":32},{"x":192,"y":288,"fileNum":12082,"id":13465,"width":32,"height":32},{"x":224,"y":288,"fileNum":12082,"id":13466,"width":32,"height":32},{"x":0,"y":320,"fileNum":12082,"id":13467,"width":32,"height":32},{"x":32,"y":320,"fileNum":12082,"id":13468,"width":32,"height":32},{"x":0,"y":352,"fileNum":12082,"id":13469,"width":32,"height":32},{"x":32,"y":352,"fileNum":12082,"id":13470,"width":32,"height":32},{"x":64,"y":320,"fileNum":12082,"id":13471,"width":32,"height":32},{"x":96,"y":320,"fileNum":12082,"id":13472,"width":32,"height":32},{"x":64,"y":352,"fileNum":12082,"id":13473,"width":32,"height":32},{"x":96,"y":352,"fileNum":12082,"id":13474,"width":32,"height":32},{"x":128,"y":320,"fileNum":12082,"id":13475,"width":32,"height":32},{"x":160,"y":320,"fileNum":12082,"id":13476,"width":32,"height":32},{"x":128,"y":352,"fileNum":12082,"id":13477,"width":32,"height":32},{"x":160,"y":352,"fileNum":12082,"id":13478,"width":32,"height":32},{"x":192,"y":320,"fileNum":12082,"id":13479,"width":32,"height":32},{"x":224,"y":320,"fileNum":12082,"id":13480,"width":32,"height":32},{"x":192,"y":352,"fileNum":12082,"id":13481,"width":32,"height":32},{"x":224,"y":352,"fileNum":12082,"id":13482,"width":32,"height":32},{"x":0,"y":0,"fileNum":12037,"id":13483,"width":32,"height":32},{"x":32,"y":0,"fileNum":12037,"id":13484,"width":32,"height":32},{"x":64,"y":0,"fileNum":12037,"id":13485,"width":32,"height":32},{"x":96,"y":0,"fileNum":12037,"id":13486,"width":32,"height":32},{"x":0,"y":32,"fileNum":12037,"id":13487,"width":32,"height":32},{"x":32,"y":32,"fileNum":12037,"id":13488,"width":32,"height":32},{"x":64,"y":32,"fileNum":12037,"id":13489,"width":32,"height":32},{"x":96,"y":32,"fileNum":12037,"id":13490,"width":32,"height":32},{"x":0,"y":64,"fileNum":12037,"id":13491,"width":32,"height":32},{"x":32,"y":64,"fileNum":12037,"id":13492,"width":32,"height":32},{"x":64,"y":64,"fileNum":12037,"id":13493,"width":32,"height":32},{"x":96,"y":64,"fileNum":12037,"id":13494,"width":32,"height":32},{"x":0,"y":96,"fileNum":12037,"id":13495,"width":32,"height":32},{"x":32,"y":96,"fileNum":12037,"id":13496,"width":32,"height":32},{"x":64,"y":96,"fileNum":12037,"id":13497,"width":32,"height":32},{"x":96,"y":96,"fileNum":12037,"id":13498,"width":32,"height":32},{"x":128,"y":0,"fileNum":12037,"id":13499,"width":32,"height":32},{"x":160,"y":0,"fileNum":12037,"id":13500,"width":32,"height":32},{"x":192,"y":0,"fileNum":12037,"id":13501,"width":32,"height":32},{"x":224,"y":0,"fileNum":12037,"id":13502,"width":32,"height":32},{"x":128,"y":32,"fileNum":12037,"id":13503,"width":32,"height":32},{"x":160,"y":32,"fileNum":12037,"id":13504,"width":32,"height":32},{"x":192,"y":32,"fileNum":12037,"id":13505,"width":32,"height":32},{"x":224,"y":32,"fileNum":12037,"id":13506,"width":32,"height":32},{"x":128,"y":64,"fileNum":12037,"id":13507,"width":32,"height":32},{"x":160,"y":64,"fileNum":12037,"id":13508,"width":32,"height":32},{"x":192,"y":64,"fileNum":12037,"id":13509,"width":32,"height":32},{"x":224,"y":64,"fileNum":12037,"id":13510,"width":32,"height":32},{"x":128,"y":96,"fileNum":12037,"id":13511,"width":32,"height":32},{"x":160,"y":96,"fileNum":12037,"id":13512,"width":32,"height":32},{"x":192,"y":96,"fileNum":12037,"id":13513,"width":32,"height":32},{"x":224,"y":96,"fileNum":12037,"id":13514,"width":32,"height":32},{"x":256,"y":0,"fileNum":12037,"id":13515,"width":32,"height":32},{"x":288,"y":0,"fileNum":12037,"id":13516,"width":32,"height":32},{"x":320,"y":0,"fileNum":12037,"id":13517,"width":32,"height":32},{"x":352,"y":0,"fileNum":12037,"id":13518,"width":32,"height":32},{"x":256,"y":32,"fileNum":12037,"id":13519,"width":32,"height":32},{"x":288,"y":32,"fileNum":12037,"id":13520,"width":32,"height":32},{"x":320,"y":32,"fileNum":12037,"id":13521,"width":32,"height":32},{"x":352,"y":32,"fileNum":12037,"id":13522,"width":32,"height":32},{"x":256,"y":64,"fileNum":12037,"id":13523,"width":32,"height":32},{"x":288,"y":64,"fileNum":12037,"id":13524,"width":32,"height":32},{"x":320,"y":64,"fileNum":12037,"id":13525,"width":32,"height":32},{"x":352,"y":64,"fileNum":12037,"id":13526,"width":32,"height":32},{"x":256,"y":96,"fileNum":12037,"id":13527,"width":32,"height":32},{"x":288,"y":96,"fileNum":12037,"id":13528,"width":32,"height":32},{"x":320,"y":96,"fileNum":12037,"id":13529,"width":32,"height":32},{"x":352,"y":96,"fileNum":12037,"id":13530,"width":32,"height":32},{"x":0,"y":128,"fileNum":12037,"id":13531,"width":32,"height":32},{"x":32,"y":128,"fileNum":12037,"id":13532,"width":32,"height":32},{"x":64,"y":128,"fileNum":12037,"id":13533,"width":32,"height":32},{"x":96,"y":128,"fileNum":12037,"id":13534,"width":32,"height":32},{"x":0,"y":160,"fileNum":12037,"id":13535,"width":32,"height":32},{"x":32,"y":160,"fileNum":12037,"id":13536,"width":32,"height":32},{"x":64,"y":160,"fileNum":12037,"id":13537,"width":32,"height":32},{"x":96,"y":160,"fileNum":12037,"id":13538,"width":32,"height":32},{"x":0,"y":192,"fileNum":12037,"id":13539,"width":32,"height":32},{"x":32,"y":192,"fileNum":12037,"id":13540,"width":32,"height":32},{"x":64,"y":192,"fileNum":12037,"id":13541,"width":32,"height":32},{"x":96,"y":192,"fileNum":12037,"id":13542,"width":32,"height":32},{"x":0,"y":224,"fileNum":12037,"id":13543,"width":32,"height":32},{"x":32,"y":224,"fileNum":12037,"id":13544,"width":32,"height":32},{"x":64,"y":224,"fileNum":12037,"id":13545,"width":32,"height":32},{"x":96,"y":224,"fileNum":12037,"id":13546,"width":32,"height":32},{"x":0,"y":0,"fileNum":161,"id":13563,"width":25,"height":45},{"x":25,"y":0,"fileNum":161,"id":13564,"width":25,"height":45},{"x":50,"y":0,"fileNum":161,"id":13565,"width":25,"height":45},{"x":75,"y":0,"fileNum":161,"id":13566,"width":25,"height":45},{"x":100,"y":0,"fileNum":161,"id":13567,"width":25,"height":45},{"x":125,"y":0,"fileNum":161,"id":13568,"width":25,"height":45},{"x":0,"y":45,"fileNum":161,"id":13569,"width":25,"height":45},{"x":25,"y":45,"fileNum":161,"id":13570,"width":25,"height":45},{"x":50,"y":45,"fileNum":161,"id":13571,"width":25,"height":45},{"x":75,"y":45,"fileNum":161,"id":13572,"width":25,"height":45},{"x":100,"y":45,"fileNum":161,"id":13573,"width":25,"height":45},{"x":125,"y":45,"fileNum":161,"id":13574,"width":25,"height":45},{"x":0,"y":90,"fileNum":161,"id":13575,"width":25,"height":45},{"x":25,"y":90,"fileNum":161,"id":13576,"width":25,"height":45},{"x":50,"y":90,"fileNum":161,"id":13577,"width":25,"height":45},{"x":75,"y":90,"fileNum":161,"id":13578,"width":25,"height":45},{"x":100,"y":90,"fileNum":161,"id":13579,"width":25,"height":45},{"x":0,"y":135,"fileNum":161,"id":13580,"width":25,"height":45},{"x":25,"y":135,"fileNum":161,"id":13581,"width":25,"height":45},{"x":50,"y":135,"fileNum":161,"id":13582,"width":25,"height":45},{"x":75,"y":135,"fileNum":161,"id":13583,"width":25,"height":45},{"x":100,"y":135,"fileNum":161,"id":13584,"width":25,"height":45},{"x":0,"y":0,"fileNum":162,"id":13589,"width":32,"height":32},{"x":0,"y":0,"fileNum":296,"id":13590,"width":32,"height":32},{"x":0,"y":0,"fileNum":297,"id":13591,"width":25,"height":45},{"x":25,"y":0,"fileNum":297,"id":13592,"width":25,"height":45},{"x":50,"y":0,"fileNum":297,"id":13593,"width":25,"height":45},{"x":75,"y":0,"fileNum":297,"id":13594,"width":25,"height":45},{"x":100,"y":0,"fileNum":297,"id":13595,"width":25,"height":45},{"x":125,"y":0,"fileNum":297,"id":13596,"width":25,"height":45},{"x":0,"y":45,"fileNum":297,"id":13597,"width":25,"height":45},{"x":25,"y":45,"fileNum":297,"id":13598,"width":25,"height":45},{"x":50,"y":45,"fileNum":297,"id":13599,"width":25,"height":45},{"x":75,"y":45,"fileNum":297,"id":13600,"width":25,"height":45},{"x":100,"y":45,"fileNum":297,"id":13601,"width":25,"height":45},{"x":125,"y":45,"fileNum":297,"id":13602,"width":25,"height":45},{"x":0,"y":90,"fileNum":297,"id":13603,"width":25,"height":45},{"x":25,"y":90,"fileNum":297,"id":13604,"width":25,"height":45},{"x":50,"y":90,"fileNum":297,"id":13605,"width":25,"height":45},{"x":75,"y":90,"fileNum":297,"id":13606,"width":25,"height":45},{"x":100,"y":90,"fileNum":297,"id":13607,"width":25,"height":45},{"x":0,"y":135,"fileNum":297,"id":13608,"width":25,"height":45},{"x":25,"y":135,"fileNum":297,"id":13609,"width":25,"height":45},{"x":50,"y":135,"fileNum":297,"id":13610,"width":25,"height":45},{"x":75,"y":135,"fileNum":297,"id":13611,"width":25,"height":45},{"x":100,"y":135,"fileNum":297,"id":13612,"width":25,"height":45},{"x":0,"y":0,"fileNum":334,"id":13617,"width":25,"height":45},{"x":25,"y":0,"fileNum":334,"id":13618,"width":25,"height":45},{"x":50,"y":0,"fileNum":334,"id":13619,"width":25,"height":45},{"x":75,"y":0,"fileNum":334,"id":13620,"width":25,"height":45},{"x":100,"y":0,"fileNum":334,"id":13621,"width":25,"height":45},{"x":125,"y":0,"fileNum":334,"id":13622,"width":25,"height":45},{"x":0,"y":45,"fileNum":334,"id":13623,"width":25,"height":45},{"x":25,"y":45,"fileNum":334,"id":13624,"width":25,"height":45},{"x":50,"y":45,"fileNum":334,"id":13625,"width":25,"height":45},{"x":75,"y":45,"fileNum":334,"id":13626,"width":25,"height":45},{"x":100,"y":45,"fileNum":334,"id":13627,"width":25,"height":45},{"x":125,"y":45,"fileNum":334,"id":13628,"width":25,"height":45},{"x":0,"y":90,"fileNum":334,"id":13629,"width":25,"height":45},{"x":25,"y":90,"fileNum":334,"id":13630,"width":25,"height":45},{"x":50,"y":90,"fileNum":334,"id":13631,"width":25,"height":45},{"x":75,"y":90,"fileNum":334,"id":13632,"width":25,"height":45},{"x":100,"y":90,"fileNum":334,"id":13633,"width":25,"height":45},{"x":0,"y":135,"fileNum":334,"id":13634,"width":25,"height":45},{"x":25,"y":135,"fileNum":334,"id":13635,"width":25,"height":45},{"x":50,"y":135,"fileNum":334,"id":13636,"width":25,"height":45},{"x":75,"y":135,"fileNum":334,"id":13637,"width":25,"height":45},{"x":100,"y":135,"fileNum":334,"id":13638,"width":25,"height":45},{"x":0,"y":0,"fileNum":423,"id":13639,"width":32,"height":32},{"x":0,"y":0,"fileNum":429,"id":13644,"width":25,"height":45},{"x":25,"y":0,"fileNum":429,"id":13645,"width":25,"height":45},{"x":50,"y":0,"fileNum":429,"id":13646,"width":25,"height":45},{"x":75,"y":0,"fileNum":429,"id":13647,"width":25,"height":45},{"x":100,"y":0,"fileNum":429,"id":13648,"width":25,"height":45},{"x":125,"y":0,"fileNum":429,"id":13649,"width":25,"height":45},{"x":0,"y":45,"fileNum":429,"id":13650,"width":25,"height":45},{"x":25,"y":45,"fileNum":429,"id":13651,"width":25,"height":45},{"x":50,"y":45,"fileNum":429,"id":13652,"width":25,"height":45},{"x":75,"y":45,"fileNum":429,"id":13653,"width":25,"height":45},{"x":100,"y":45,"fileNum":429,"id":13654,"width":25,"height":45},{"x":125,"y":45,"fileNum":429,"id":13655,"width":25,"height":45},{"x":0,"y":90,"fileNum":429,"id":13656,"width":25,"height":45},{"x":25,"y":90,"fileNum":429,"id":13657,"width":25,"height":45},{"x":50,"y":90,"fileNum":429,"id":13658,"width":25,"height":45},{"x":75,"y":90,"fileNum":429,"id":13659,"width":25,"height":45},{"x":100,"y":90,"fileNum":429,"id":13660,"width":25,"height":45},{"x":0,"y":135,"fileNum":429,"id":13661,"width":25,"height":45},{"x":25,"y":135,"fileNum":429,"id":13662,"width":25,"height":45},{"x":50,"y":135,"fileNum":429,"id":13663,"width":25,"height":45},{"x":75,"y":135,"fileNum":429,"id":13664,"width":25,"height":45},{"x":100,"y":135,"fileNum":429,"id":13665,"width":25,"height":45},{"x":0,"y":0,"fileNum":435,"id":13666,"width":32,"height":32},{"x":0,"y":0,"fileNum":446,"id":13671,"width":25,"height":45},{"x":25,"y":0,"fileNum":446,"id":13672,"width":25,"height":45},{"x":50,"y":0,"fileNum":446,"id":13673,"width":25,"height":45},{"x":75,"y":0,"fileNum":446,"id":13674,"width":25,"height":45},{"x":100,"y":0,"fileNum":446,"id":13675,"width":25,"height":45},{"x":125,"y":0,"fileNum":446,"id":13676,"width":25,"height":45},{"x":0,"y":45,"fileNum":446,"id":13677,"width":25,"height":45},{"x":25,"y":45,"fileNum":446,"id":13678,"width":25,"height":45},{"x":50,"y":45,"fileNum":446,"id":13679,"width":25,"height":45},{"x":75,"y":45,"fileNum":446,"id":13680,"width":25,"height":45},{"x":100,"y":45,"fileNum":446,"id":13681,"width":25,"height":45},{"x":125,"y":45,"fileNum":446,"id":13682,"width":25,"height":45},{"x":0,"y":90,"fileNum":446,"id":13683,"width":25,"height":45},{"x":25,"y":90,"fileNum":446,"id":13684,"width":25,"height":45},{"x":50,"y":90,"fileNum":446,"id":13685,"width":25,"height":45},{"x":75,"y":90,"fileNum":446,"id":13686,"width":25,"height":45},{"x":100,"y":90,"fileNum":446,"id":13687,"width":25,"height":45},{"x":0,"y":135,"fileNum":446,"id":13688,"width":25,"height":45},{"x":25,"y":135,"fileNum":446,"id":13689,"width":25,"height":45},{"x":50,"y":135,"fileNum":446,"id":13690,"width":25,"height":45},{"x":75,"y":135,"fileNum":446,"id":13691,"width":25,"height":45},{"x":100,"y":135,"fileNum":446,"id":13692,"width":25,"height":45},{"x":0,"y":0,"fileNum":457,"id":13693,"width":32,"height":32},{"x":0,"y":0,"fileNum":468,"id":13698,"width":25,"height":45},{"x":25,"y":0,"fileNum":468,"id":13699,"width":25,"height":45},{"x":50,"y":0,"fileNum":468,"id":13700,"width":25,"height":45},{"x":75,"y":0,"fileNum":468,"id":13701,"width":25,"height":45},{"x":100,"y":0,"fileNum":468,"id":13702,"width":25,"height":45},{"x":125,"y":0,"fileNum":468,"id":13703,"width":25,"height":45},{"x":0,"y":45,"fileNum":468,"id":13704,"width":25,"height":45},{"x":25,"y":45,"fileNum":468,"id":13705,"width":25,"height":45},{"x":50,"y":45,"fileNum":468,"id":13706,"width":25,"height":45},{"x":75,"y":45,"fileNum":468,"id":13707,"width":25,"height":45},{"x":100,"y":45,"fileNum":468,"id":13708,"width":25,"height":45},{"x":125,"y":45,"fileNum":468,"id":13709,"width":25,"height":45},{"x":0,"y":90,"fileNum":468,"id":13710,"width":25,"height":45},{"x":25,"y":90,"fileNum":468,"id":13711,"width":25,"height":45},{"x":50,"y":90,"fileNum":468,"id":13712,"width":25,"height":45},{"x":75,"y":90,"fileNum":468,"id":13713,"width":25,"height":45},{"x":100,"y":90,"fileNum":468,"id":13714,"width":25,"height":45},{"x":0,"y":135,"fileNum":468,"id":13715,"width":25,"height":45},{"x":25,"y":135,"fileNum":468,"id":13716,"width":25,"height":45},{"x":50,"y":135,"fileNum":468,"id":13717,"width":25,"height":45},{"x":75,"y":135,"fileNum":468,"id":13718,"width":25,"height":45},{"x":100,"y":135,"fileNum":468,"id":13719,"width":25,"height":45},{"x":0,"y":0,"fileNum":478,"id":13720,"width":32,"height":32},{"x":0,"y":0,"fileNum":488,"id":13725,"width":25,"height":45},{"x":25,"y":0,"fileNum":488,"id":13726,"width":25,"height":45},{"x":50,"y":0,"fileNum":488,"id":13727,"width":25,"height":45},{"x":75,"y":0,"fileNum":488,"id":13728,"width":25,"height":45},{"x":100,"y":0,"fileNum":488,"id":13729,"width":25,"height":45},{"x":125,"y":0,"fileNum":488,"id":13730,"width":25,"height":45},{"x":0,"y":45,"fileNum":488,"id":13731,"width":25,"height":45},{"x":25,"y":45,"fileNum":488,"id":13732,"width":25,"height":45},{"x":50,"y":45,"fileNum":488,"id":13733,"width":25,"height":45},{"x":75,"y":45,"fileNum":488,"id":13734,"width":25,"height":45},{"x":100,"y":45,"fileNum":488,"id":13735,"width":25,"height":45},{"x":125,"y":45,"fileNum":488,"id":13736,"width":25,"height":45},{"x":0,"y":90,"fileNum":488,"id":13737,"width":25,"height":45},{"x":25,"y":90,"fileNum":488,"id":13738,"width":25,"height":45},{"x":50,"y":90,"fileNum":488,"id":13739,"width":25,"height":45},{"x":75,"y":90,"fileNum":488,"id":13740,"width":25,"height":45},{"x":100,"y":90,"fileNum":488,"id":13741,"width":25,"height":45},{"x":0,"y":135,"fileNum":488,"id":13742,"width":25,"height":45},{"x":25,"y":135,"fileNum":488,"id":13743,"width":25,"height":45},{"x":50,"y":135,"fileNum":488,"id":13744,"width":25,"height":45},{"x":75,"y":135,"fileNum":488,"id":13745,"width":25,"height":45},{"x":100,"y":135,"fileNum":488,"id":13746,"width":25,"height":45},{"x":0,"y":0,"fileNum":509,"id":13751,"width":25,"height":45},{"x":25,"y":0,"fileNum":509,"id":13752,"width":25,"height":45},{"x":50,"y":0,"fileNum":509,"id":13753,"width":25,"height":45},{"x":75,"y":0,"fileNum":509,"id":13754,"width":25,"height":45},{"x":100,"y":0,"fileNum":509,"id":13755,"width":25,"height":45},{"x":125,"y":0,"fileNum":509,"id":13756,"width":25,"height":45},{"x":0,"y":45,"fileNum":509,"id":13757,"width":25,"height":45},{"x":25,"y":45,"fileNum":509,"id":13758,"width":25,"height":45},{"x":50,"y":45,"fileNum":509,"id":13759,"width":25,"height":45},{"x":75,"y":45,"fileNum":509,"id":13760,"width":25,"height":45},{"x":100,"y":45,"fileNum":509,"id":13761,"width":25,"height":45},{"x":125,"y":45,"fileNum":509,"id":13762,"width":25,"height":45},{"x":0,"y":90,"fileNum":509,"id":13763,"width":25,"height":45},{"x":25,"y":90,"fileNum":509,"id":13764,"width":25,"height":45},{"x":50,"y":90,"fileNum":509,"id":13765,"width":25,"height":45},{"x":75,"y":90,"fileNum":509,"id":13766,"width":25,"height":45},{"x":100,"y":90,"fileNum":509,"id":13767,"width":25,"height":45},{"x":0,"y":135,"fileNum":509,"id":13768,"width":25,"height":45},{"x":25,"y":135,"fileNum":509,"id":13769,"width":25,"height":45},{"x":50,"y":135,"fileNum":509,"id":13770,"width":25,"height":45},{"x":75,"y":135,"fileNum":509,"id":13771,"width":25,"height":45},{"x":100,"y":135,"fileNum":509,"id":13772,"width":25,"height":45},{"x":0,"y":0,"fileNum":520,"id":13773,"width":32,"height":32},{"x":0,"y":0,"fileNum":531,"id":13778,"width":25,"height":45},{"x":25,"y":0,"fileNum":531,"id":13779,"width":25,"height":45},{"x":50,"y":0,"fileNum":531,"id":13780,"width":25,"height":45},{"x":75,"y":0,"fileNum":531,"id":13781,"width":25,"height":45},{"x":100,"y":0,"fileNum":531,"id":13782,"width":25,"height":45},{"x":125,"y":0,"fileNum":531,"id":13783,"width":25,"height":45},{"x":0,"y":45,"fileNum":531,"id":13784,"width":25,"height":45},{"x":25,"y":45,"fileNum":531,"id":13785,"width":25,"height":45},{"x":50,"y":45,"fileNum":531,"id":13786,"width":25,"height":45},{"x":75,"y":45,"fileNum":531,"id":13787,"width":25,"height":45},{"x":100,"y":45,"fileNum":531,"id":13788,"width":25,"height":45},{"x":125,"y":45,"fileNum":531,"id":13789,"width":25,"height":45},{"x":0,"y":90,"fileNum":531,"id":13790,"width":25,"height":45},{"x":25,"y":90,"fileNum":531,"id":13791,"width":25,"height":45},{"x":50,"y":90,"fileNum":531,"id":13792,"width":25,"height":45},{"x":75,"y":90,"fileNum":531,"id":13793,"width":25,"height":45},{"x":100,"y":90,"fileNum":531,"id":13794,"width":25,"height":45},{"x":0,"y":135,"fileNum":531,"id":13795,"width":25,"height":45},{"x":25,"y":135,"fileNum":531,"id":13796,"width":25,"height":45},{"x":50,"y":135,"fileNum":531,"id":13797,"width":25,"height":45},{"x":75,"y":135,"fileNum":531,"id":13798,"width":25,"height":45},{"x":100,"y":135,"fileNum":531,"id":13799,"width":25,"height":45},{"x":0,"y":0,"fileNum":542,"id":13800,"width":32,"height":32},{"x":0,"y":0,"fileNum":553,"id":13805,"width":25,"height":45},{"x":25,"y":0,"fileNum":553,"id":13806,"width":25,"height":45},{"x":50,"y":0,"fileNum":553,"id":13807,"width":25,"height":45},{"x":75,"y":0,"fileNum":553,"id":13808,"width":25,"height":45},{"x":100,"y":0,"fileNum":553,"id":13809,"width":25,"height":45},{"x":125,"y":0,"fileNum":553,"id":13810,"width":25,"height":45},{"x":0,"y":45,"fileNum":553,"id":13811,"width":25,"height":45},{"x":25,"y":45,"fileNum":553,"id":13812,"width":25,"height":45},{"x":50,"y":45,"fileNum":553,"id":13813,"width":25,"height":45},{"x":75,"y":45,"fileNum":553,"id":13814,"width":25,"height":45},{"x":100,"y":45,"fileNum":553,"id":13815,"width":25,"height":45},{"x":125,"y":45,"fileNum":553,"id":13816,"width":25,"height":45},{"x":0,"y":90,"fileNum":553,"id":13817,"width":25,"height":45},{"x":25,"y":90,"fileNum":553,"id":13818,"width":25,"height":45},{"x":50,"y":90,"fileNum":553,"id":13819,"width":25,"height":45},{"x":75,"y":90,"fileNum":553,"id":13820,"width":25,"height":45},{"x":100,"y":90,"fileNum":553,"id":13821,"width":25,"height":45},{"x":0,"y":135,"fileNum":553,"id":13822,"width":25,"height":45},{"x":25,"y":135,"fileNum":553,"id":13823,"width":25,"height":45},{"x":50,"y":135,"fileNum":553,"id":13824,"width":25,"height":45},{"x":75,"y":135,"fileNum":553,"id":13825,"width":25,"height":45},{"x":100,"y":135,"fileNum":553,"id":13826,"width":25,"height":45},{"x":0,"y":0,"fileNum":564,"id":13827,"width":32,"height":32},{"x":0,"y":0,"fileNum":575,"id":13832,"width":25,"height":45},{"x":25,"y":0,"fileNum":575,"id":13833,"width":25,"height":45},{"x":50,"y":0,"fileNum":575,"id":13834,"width":25,"height":45},{"x":75,"y":0,"fileNum":575,"id":13835,"width":25,"height":45},{"x":100,"y":0,"fileNum":575,"id":13836,"width":25,"height":45},{"x":125,"y":0,"fileNum":575,"id":13837,"width":25,"height":45},{"x":0,"y":45,"fileNum":575,"id":13838,"width":25,"height":45},{"x":25,"y":45,"fileNum":575,"id":13839,"width":25,"height":45},{"x":50,"y":45,"fileNum":575,"id":13840,"width":25,"height":45},{"x":75,"y":45,"fileNum":575,"id":13841,"width":25,"height":45},{"x":100,"y":45,"fileNum":575,"id":13842,"width":25,"height":45},{"x":125,"y":45,"fileNum":575,"id":13843,"width":25,"height":45},{"x":0,"y":90,"fileNum":575,"id":13844,"width":25,"height":45},{"x":25,"y":90,"fileNum":575,"id":13845,"width":25,"height":45},{"x":50,"y":90,"fileNum":575,"id":13846,"width":25,"height":45},{"x":75,"y":90,"fileNum":575,"id":13847,"width":25,"height":45},{"x":100,"y":90,"fileNum":575,"id":13848,"width":25,"height":45},{"x":0,"y":135,"fileNum":575,"id":13849,"width":25,"height":45},{"x":25,"y":135,"fileNum":575,"id":13850,"width":25,"height":45},{"x":50,"y":135,"fileNum":575,"id":13851,"width":25,"height":45},{"x":75,"y":135,"fileNum":575,"id":13852,"width":25,"height":45},{"x":100,"y":135,"fileNum":575,"id":13853,"width":25,"height":45},{"x":0,"y":0,"fileNum":101,"id":13854,"width":32,"height":32},{"x":0,"y":0,"fileNum":124,"id":13859,"width":25,"height":45},{"x":25,"y":0,"fileNum":124,"id":13860,"width":25,"height":45},{"x":50,"y":0,"fileNum":124,"id":13861,"width":25,"height":45},{"x":75,"y":0,"fileNum":124,"id":13862,"width":25,"height":45},{"x":100,"y":0,"fileNum":124,"id":13863,"width":25,"height":45},{"x":125,"y":0,"fileNum":124,"id":13864,"width":25,"height":45},{"x":0,"y":45,"fileNum":124,"id":13865,"width":25,"height":45},{"x":25,"y":45,"fileNum":124,"id":13866,"width":25,"height":45},{"x":50,"y":45,"fileNum":124,"id":13867,"width":25,"height":45},{"x":75,"y":45,"fileNum":124,"id":13868,"width":25,"height":45},{"x":100,"y":45,"fileNum":124,"id":13869,"width":25,"height":45},{"x":125,"y":45,"fileNum":124,"id":13870,"width":25,"height":45},{"x":0,"y":90,"fileNum":124,"id":13871,"width":25,"height":45},{"x":25,"y":90,"fileNum":124,"id":13872,"width":25,"height":45},{"x":50,"y":90,"fileNum":124,"id":13873,"width":25,"height":45},{"x":75,"y":90,"fileNum":124,"id":13874,"width":25,"height":45},{"x":100,"y":90,"fileNum":124,"id":13875,"width":25,"height":45},{"x":0,"y":135,"fileNum":124,"id":13876,"width":25,"height":45},{"x":25,"y":135,"fileNum":124,"id":13877,"width":25,"height":45},{"x":50,"y":135,"fileNum":124,"id":13878,"width":25,"height":45},{"x":75,"y":135,"fileNum":124,"id":13879,"width":25,"height":45},{"x":100,"y":135,"fileNum":124,"id":13880,"width":25,"height":45},{"x":0,"y":0,"fileNum":125,"id":13881,"width":32,"height":32},{"x":0,"y":0,"fileNum":24006,"id":13886,"width":25,"height":45},{"x":25,"y":0,"fileNum":24006,"id":13887,"width":25,"height":45},{"x":50,"y":0,"fileNum":24006,"id":13888,"width":25,"height":45},{"x":75,"y":0,"fileNum":24006,"id":13889,"width":25,"height":45},{"x":100,"y":0,"fileNum":24006,"id":13890,"width":25,"height":45},{"x":125,"y":0,"fileNum":24006,"id":13891,"width":25,"height":45},{"x":0,"y":45,"fileNum":24006,"id":13892,"width":25,"height":45},{"x":25,"y":45,"fileNum":24006,"id":13893,"width":25,"height":45},{"x":50,"y":45,"fileNum":24006,"id":13894,"width":25,"height":45},{"x":75,"y":45,"fileNum":24006,"id":13895,"width":25,"height":45},{"x":100,"y":45,"fileNum":24006,"id":13896,"width":25,"height":45},{"x":125,"y":45,"fileNum":24006,"id":13897,"width":25,"height":45},{"x":0,"y":90,"fileNum":24006,"id":13898,"width":25,"height":45},{"x":25,"y":90,"fileNum":24006,"id":13899,"width":25,"height":45},{"x":50,"y":90,"fileNum":24006,"id":13900,"width":25,"height":45},{"x":75,"y":90,"fileNum":24006,"id":13901,"width":25,"height":45},{"x":100,"y":90,"fileNum":24006,"id":13902,"width":25,"height":45},{"x":0,"y":135,"fileNum":24006,"id":13903,"width":25,"height":45},{"x":25,"y":135,"fileNum":24006,"id":13904,"width":25,"height":45},{"x":50,"y":135,"fileNum":24006,"id":13905,"width":25,"height":45},{"x":75,"y":135,"fileNum":24006,"id":13906,"width":25,"height":45},{"x":100,"y":135,"fileNum":24006,"id":13907,"width":25,"height":45},{"x":0,"y":0,"fileNum":12041,"id":13912,"width":37,"height":38},{"x":37,"y":0,"fileNum":12041,"id":13913,"width":37,"height":38},{"x":74,"y":0,"fileNum":12041,"id":13914,"width":37,"height":38},{"x":111,"y":0,"fileNum":12041,"id":13915,"width":37,"height":38},{"x":148,"y":0,"fileNum":12041,"id":13916,"width":37,"height":38},{"x":185,"y":0,"fileNum":12041,"id":13917,"width":37,"height":38},{"x":0,"y":38,"fileNum":12041,"id":13918,"width":37,"height":38},{"x":37,"y":38,"fileNum":12041,"id":13919,"width":37,"height":38},{"x":74,"y":38,"fileNum":12041,"id":13920,"width":37,"height":38},{"x":111,"y":38,"fileNum":12041,"id":13921,"width":37,"height":38},{"x":148,"y":38,"fileNum":12041,"id":13922,"width":37,"height":38},{"x":185,"y":38,"fileNum":12041,"id":13923,"width":37,"height":38},{"x":0,"y":0,"fileNum":16033,"id":13926,"width":25,"height":45},{"x":25,"y":0,"fileNum":16033,"id":13927,"width":25,"height":45},{"x":50,"y":0,"fileNum":16033,"id":13928,"width":25,"height":45},{"x":75,"y":0,"fileNum":16033,"id":13929,"width":25,"height":45},{"x":100,"y":0,"fileNum":16033,"id":13930,"width":25,"height":45},{"x":125,"y":0,"fileNum":16033,"id":13931,"width":25,"height":45},{"x":0,"y":45,"fileNum":16033,"id":13932,"width":25,"height":45},{"x":25,"y":45,"fileNum":16033,"id":13933,"width":25,"height":45},{"x":50,"y":45,"fileNum":16033,"id":13934,"width":25,"height":45},{"x":75,"y":45,"fileNum":16033,"id":13935,"width":25,"height":45},{"x":100,"y":45,"fileNum":16033,"id":13936,"width":25,"height":45},{"x":125,"y":45,"fileNum":16033,"id":13937,"width":25,"height":45},{"x":0,"y":90,"fileNum":16033,"id":13938,"width":25,"height":45},{"x":25,"y":90,"fileNum":16033,"id":13939,"width":25,"height":45},{"x":50,"y":90,"fileNum":16033,"id":13940,"width":25,"height":45},{"x":75,"y":90,"fileNum":16033,"id":13941,"width":25,"height":45},{"x":100,"y":90,"fileNum":16033,"id":13942,"width":25,"height":45},{"x":0,"y":135,"fileNum":16033,"id":13943,"width":25,"height":45},{"x":25,"y":135,"fileNum":16033,"id":13944,"width":25,"height":45},{"x":50,"y":135,"fileNum":16033,"id":13945,"width":25,"height":45},{"x":75,"y":135,"fileNum":16033,"id":13946,"width":25,"height":45},{"x":100,"y":135,"fileNum":16033,"id":13947,"width":25,"height":45},{"x":0,"y":0,"fileNum":11029,"id":13952,"width":256,"height":160},{"x":0,"y":0,"fileNum":14033,"id":13953,"width":256,"height":196},{"x":0,"y":0,"fileNum":8175,"id":13954,"width":128,"height":80},{"x":128,"y":0,"fileNum":8175,"id":13955,"width":128,"height":80},{"x":0,"y":80,"fileNum":8175,"id":13956,"width":128,"height":80},{"x":128,"y":80,"fileNum":8175,"id":13957,"width":128,"height":80},{"x":0,"y":0,"fileNum":8163,"id":13958,"width":160,"height":146},{"x":0,"y":0,"fileNum":2000,"id":13959,"width":17,"height":50},{"x":17,"y":0,"fileNum":2000,"id":13960,"width":17,"height":50},{"x":34,"y":0,"fileNum":2000,"id":13961,"width":17,"height":50},{"x":51,"y":0,"fileNum":2000,"id":13962,"width":17,"height":50},{"x":0,"y":0,"fileNum":10003,"id":13963,"width":120,"height":222},{"x":0,"y":0,"fileNum":171,"id":13964,"width":25,"height":45},{"x":25,"y":0,"fileNum":171,"id":13965,"width":25,"height":45},{"x":50,"y":0,"fileNum":171,"id":13966,"width":25,"height":45},{"x":75,"y":0,"fileNum":171,"id":13967,"width":25,"height":45},{"x":100,"y":0,"fileNum":171,"id":13968,"width":25,"height":45},{"x":125,"y":0,"fileNum":171,"id":13969,"width":25,"height":45},{"x":0,"y":45,"fileNum":171,"id":13970,"width":25,"height":45},{"x":25,"y":45,"fileNum":171,"id":13971,"width":25,"height":45},{"x":50,"y":45,"fileNum":171,"id":13972,"width":25,"height":45},{"x":75,"y":45,"fileNum":171,"id":13973,"width":25,"height":45},{"x":100,"y":45,"fileNum":171,"id":13974,"width":25,"height":45},{"x":125,"y":45,"fileNum":171,"id":13975,"width":25,"height":45},{"x":0,"y":90,"fileNum":171,"id":13976,"width":25,"height":45},{"x":25,"y":90,"fileNum":171,"id":13977,"width":25,"height":45},{"x":50,"y":90,"fileNum":171,"id":13978,"width":25,"height":45},{"x":75,"y":90,"fileNum":171,"id":13979,"width":25,"height":45},{"x":100,"y":90,"fileNum":171,"id":13980,"width":25,"height":45},{"x":0,"y":135,"fileNum":171,"id":13981,"width":25,"height":45},{"x":25,"y":135,"fileNum":171,"id":13982,"width":25,"height":45},{"x":50,"y":135,"fileNum":171,"id":13983,"width":25,"height":45},{"x":75,"y":135,"fileNum":171,"id":13984,"width":25,"height":45},{"x":100,"y":135,"fileNum":171,"id":13985,"width":25,"height":45},{"x":0,"y":0,"fileNum":2199,"id":13990,"width":17,"height":50},{"x":17,"y":0,"fileNum":2199,"id":13991,"width":17,"height":50},{"x":34,"y":0,"fileNum":2199,"id":13992,"width":17,"height":50},{"x":51,"y":0,"fileNum":2199,"id":13993,"width":17,"height":50},{"x":0,"y":0,"fileNum":2200,"id":13994,"width":17,"height":50},{"x":17,"y":0,"fileNum":2200,"id":13995,"width":17,"height":50},{"x":34,"y":0,"fileNum":2200,"id":13996,"width":17,"height":50},{"x":51,"y":0,"fileNum":2200,"id":13997,"width":17,"height":50},{"x":0,"y":0,"fileNum":24004,"id":14000,"width":25,"height":45},{"x":25,"y":0,"fileNum":24004,"id":14001,"width":25,"height":45},{"x":50,"y":0,"fileNum":24004,"id":14002,"width":25,"height":45},{"x":75,"y":0,"fileNum":24004,"id":14003,"width":25,"height":45},{"x":100,"y":0,"fileNum":24004,"id":14004,"width":25,"height":45},{"x":125,"y":0,"fileNum":24004,"id":14005,"width":25,"height":45},{"x":0,"y":45,"fileNum":24004,"id":14006,"width":25,"height":45},{"x":25,"y":45,"fileNum":24004,"id":14007,"width":25,"height":45},{"x":50,"y":45,"fileNum":24004,"id":14008,"width":25,"height":45},{"x":75,"y":45,"fileNum":24004,"id":14009,"width":25,"height":45},{"x":100,"y":45,"fileNum":24004,"id":14010,"width":25,"height":45},{"x":125,"y":45,"fileNum":24004,"id":14011,"width":25,"height":45},{"x":0,"y":90,"fileNum":24004,"id":14012,"width":25,"height":45},{"x":25,"y":90,"fileNum":24004,"id":14013,"width":25,"height":45},{"x":50,"y":90,"fileNum":24004,"id":14014,"width":25,"height":45},{"x":75,"y":90,"fileNum":24004,"id":14015,"width":25,"height":45},{"x":100,"y":90,"fileNum":24004,"id":14016,"width":25,"height":45},{"x":0,"y":135,"fileNum":24004,"id":14017,"width":25,"height":45},{"x":25,"y":135,"fileNum":24004,"id":14018,"width":25,"height":45},{"x":50,"y":135,"fileNum":24004,"id":14019,"width":25,"height":45},{"x":75,"y":135,"fileNum":24004,"id":14020,"width":25,"height":45},{"x":100,"y":135,"fileNum":24004,"id":14021,"width":25,"height":45},{"x":0,"y":0,"fileNum":199,"id":14026,"width":31,"height":48},{"x":31,"y":0,"fileNum":199,"id":14027,"width":31,"height":48},{"x":62,"y":0,"fileNum":199,"id":14028,"width":31,"height":48},{"x":93,"y":0,"fileNum":199,"id":14029,"width":31,"height":48},{"x":124,"y":0,"fileNum":199,"id":14030,"width":31,"height":48},{"x":155,"y":0,"fileNum":199,"id":14031,"width":31,"height":48},{"x":0,"y":48,"fileNum":199,"id":14032,"width":31,"height":48},{"x":31,"y":48,"fileNum":199,"id":14033,"width":31,"height":48},{"x":62,"y":48,"fileNum":199,"id":14034,"width":31,"height":48},{"x":93,"y":48,"fileNum":199,"id":14035,"width":31,"height":48},{"x":124,"y":48,"fileNum":199,"id":14036,"width":31,"height":48},{"x":155,"y":48,"fileNum":199,"id":14037,"width":31,"height":48},{"x":0,"y":96,"fileNum":199,"id":14038,"width":31,"height":48},{"x":31,"y":96,"fileNum":199,"id":14039,"width":31,"height":48},{"x":62,"y":96,"fileNum":199,"id":14040,"width":31,"height":48},{"x":93,"y":96,"fileNum":199,"id":14041,"width":31,"height":48},{"x":124,"y":96,"fileNum":199,"id":14042,"width":31,"height":48},{"x":0,"y":144,"fileNum":199,"id":14043,"width":31,"height":48},{"x":31,"y":144,"fileNum":199,"id":14044,"width":31,"height":48},{"x":62,"y":144,"fileNum":199,"id":14045,"width":31,"height":48},{"x":93,"y":144,"fileNum":199,"id":14046,"width":31,"height":48},{"x":124,"y":144,"fileNum":199,"id":14047,"width":31,"height":48},{"x":0,"y":0,"fileNum":128,"id":14052,"width":32,"height":32},{"x":0,"y":0,"fileNum":200,"id":14053,"width":25,"height":45},{"x":25,"y":0,"fileNum":200,"id":14054,"width":25,"height":45},{"x":50,"y":0,"fileNum":200,"id":14055,"width":25,"height":45},{"x":75,"y":0,"fileNum":200,"id":14056,"width":25,"height":45},{"x":100,"y":0,"fileNum":200,"id":14057,"width":25,"height":45},{"x":125,"y":0,"fileNum":200,"id":14058,"width":25,"height":45},{"x":0,"y":45,"fileNum":200,"id":14059,"width":25,"height":45},{"x":25,"y":45,"fileNum":200,"id":14060,"width":25,"height":45},{"x":50,"y":45,"fileNum":200,"id":14061,"width":25,"height":45},{"x":75,"y":45,"fileNum":200,"id":14062,"width":25,"height":45},{"x":100,"y":45,"fileNum":200,"id":14063,"width":25,"height":45},{"x":125,"y":45,"fileNum":200,"id":14064,"width":25,"height":45},{"x":0,"y":90,"fileNum":200,"id":14065,"width":25,"height":45},{"x":25,"y":90,"fileNum":200,"id":14066,"width":25,"height":45},{"x":50,"y":90,"fileNum":200,"id":14067,"width":25,"height":45},{"x":75,"y":90,"fileNum":200,"id":14068,"width":25,"height":45},{"x":100,"y":90,"fileNum":200,"id":14069,"width":25,"height":45},{"x":0,"y":135,"fileNum":200,"id":14070,"width":25,"height":45},{"x":25,"y":135,"fileNum":200,"id":14071,"width":25,"height":45},{"x":50,"y":135,"fileNum":200,"id":14072,"width":25,"height":45},{"x":75,"y":135,"fileNum":200,"id":14073,"width":25,"height":45},{"x":100,"y":135,"fileNum":200,"id":14074,"width":25,"height":45},{"x":0,"y":0,"fileNum":204,"id":14079,"width":32,"height":32},{"x":0,"y":0,"fileNum":201,"id":14080,"width":25,"height":45},{"x":25,"y":0,"fileNum":201,"id":14081,"width":25,"height":45},{"x":50,"y":0,"fileNum":201,"id":14082,"width":25,"height":45},{"x":75,"y":0,"fileNum":201,"id":14083,"width":25,"height":45},{"x":100,"y":0,"fileNum":201,"id":14084,"width":25,"height":45},{"x":125,"y":0,"fileNum":201,"id":14085,"width":25,"height":45},{"x":0,"y":45,"fileNum":201,"id":14086,"width":25,"height":45},{"x":25,"y":45,"fileNum":201,"id":14087,"width":25,"height":45},{"x":50,"y":45,"fileNum":201,"id":14088,"width":25,"height":45},{"x":75,"y":45,"fileNum":201,"id":14089,"width":25,"height":45},{"x":100,"y":45,"fileNum":201,"id":14090,"width":25,"height":45},{"x":125,"y":45,"fileNum":201,"id":14091,"width":25,"height":45},{"x":0,"y":90,"fileNum":201,"id":14092,"width":25,"height":45},{"x":25,"y":90,"fileNum":201,"id":14093,"width":25,"height":45},{"x":50,"y":90,"fileNum":201,"id":14094,"width":25,"height":45},{"x":75,"y":90,"fileNum":201,"id":14095,"width":25,"height":45},{"x":100,"y":90,"fileNum":201,"id":14096,"width":25,"height":45},{"x":0,"y":135,"fileNum":201,"id":14097,"width":25,"height":45},{"x":25,"y":135,"fileNum":201,"id":14098,"width":25,"height":45},{"x":50,"y":135,"fileNum":201,"id":14099,"width":25,"height":45},{"x":75,"y":135,"fileNum":201,"id":14100,"width":25,"height":45},{"x":100,"y":135,"fileNum":201,"id":14101,"width":25,"height":45},{"x":0,"y":0,"fileNum":202,"id":14106,"width":25,"height":45},{"x":25,"y":0,"fileNum":202,"id":14107,"width":25,"height":45},{"x":50,"y":0,"fileNum":202,"id":14108,"width":25,"height":45},{"x":75,"y":0,"fileNum":202,"id":14109,"width":25,"height":45},{"x":100,"y":0,"fileNum":202,"id":14110,"width":25,"height":45},{"x":125,"y":0,"fileNum":202,"id":14111,"width":25,"height":45},{"x":0,"y":45,"fileNum":202,"id":14112,"width":25,"height":45},{"x":25,"y":45,"fileNum":202,"id":14113,"width":25,"height":45},{"x":50,"y":45,"fileNum":202,"id":14114,"width":25,"height":45},{"x":75,"y":45,"fileNum":202,"id":14115,"width":25,"height":45},{"x":100,"y":45,"fileNum":202,"id":14116,"width":25,"height":45},{"x":125,"y":45,"fileNum":202,"id":14117,"width":25,"height":45},{"x":0,"y":90,"fileNum":202,"id":14118,"width":25,"height":45},{"x":25,"y":90,"fileNum":202,"id":14119,"width":25,"height":45},{"x":50,"y":90,"fileNum":202,"id":14120,"width":25,"height":45},{"x":75,"y":90,"fileNum":202,"id":14121,"width":25,"height":45},{"x":100,"y":90,"fileNum":202,"id":14122,"width":25,"height":45},{"x":0,"y":135,"fileNum":202,"id":14123,"width":25,"height":45},{"x":25,"y":135,"fileNum":202,"id":14124,"width":25,"height":45},{"x":50,"y":135,"fileNum":202,"id":14125,"width":25,"height":45},{"x":75,"y":135,"fileNum":202,"id":14126,"width":25,"height":45},{"x":100,"y":135,"fileNum":202,"id":14127,"width":25,"height":45},{"x":0,"y":0,"fileNum":24008,"id":14132,"width":25,"height":45},{"x":25,"y":0,"fileNum":24008,"id":14133,"width":25,"height":45},{"x":50,"y":0,"fileNum":24008,"id":14134,"width":25,"height":45},{"x":75,"y":0,"fileNum":24008,"id":14135,"width":25,"height":45},{"x":100,"y":0,"fileNum":24008,"id":14136,"width":25,"height":45},{"x":125,"y":0,"fileNum":24008,"id":14137,"width":25,"height":45},{"x":0,"y":45,"fileNum":24008,"id":14138,"width":25,"height":45},{"x":25,"y":45,"fileNum":24008,"id":14139,"width":25,"height":45},{"x":50,"y":45,"fileNum":24008,"id":14140,"width":25,"height":45},{"x":75,"y":45,"fileNum":24008,"id":14141,"width":25,"height":45},{"x":100,"y":45,"fileNum":24008,"id":14142,"width":25,"height":45},{"x":125,"y":45,"fileNum":24008,"id":14143,"width":25,"height":45},{"x":0,"y":90,"fileNum":24008,"id":14144,"width":25,"height":45},{"x":25,"y":90,"fileNum":24008,"id":14145,"width":25,"height":45},{"x":50,"y":90,"fileNum":24008,"id":14146,"width":25,"height":45},{"x":75,"y":90,"fileNum":24008,"id":14147,"width":25,"height":45},{"x":100,"y":90,"fileNum":24008,"id":14148,"width":25,"height":45},{"x":0,"y":135,"fileNum":24008,"id":14149,"width":25,"height":45},{"x":25,"y":135,"fileNum":24008,"id":14150,"width":25,"height":45},{"x":50,"y":135,"fileNum":24008,"id":14151,"width":25,"height":45},{"x":75,"y":135,"fileNum":24008,"id":14152,"width":25,"height":45},{"x":100,"y":135,"fileNum":24008,"id":14153,"width":25,"height":45},{"x":0,"y":0,"fileNum":24009,"id":14158,"width":25,"height":45},{"x":25,"y":0,"fileNum":24009,"id":14159,"width":25,"height":45},{"x":50,"y":0,"fileNum":24009,"id":14160,"width":25,"height":45},{"x":75,"y":0,"fileNum":24009,"id":14161,"width":25,"height":45},{"x":100,"y":0,"fileNum":24009,"id":14162,"width":25,"height":45},{"x":125,"y":0,"fileNum":24009,"id":14163,"width":25,"height":45},{"x":0,"y":45,"fileNum":24009,"id":14164,"width":25,"height":45},{"x":25,"y":45,"fileNum":24009,"id":14165,"width":25,"height":45},{"x":50,"y":45,"fileNum":24009,"id":14166,"width":25,"height":45},{"x":75,"y":45,"fileNum":24009,"id":14167,"width":25,"height":45},{"x":100,"y":45,"fileNum":24009,"id":14168,"width":25,"height":45},{"x":125,"y":45,"fileNum":24009,"id":14169,"width":25,"height":45},{"x":0,"y":90,"fileNum":24009,"id":14170,"width":25,"height":45},{"x":25,"y":90,"fileNum":24009,"id":14171,"width":25,"height":45},{"x":50,"y":90,"fileNum":24009,"id":14172,"width":25,"height":45},{"x":75,"y":90,"fileNum":24009,"id":14173,"width":25,"height":45},{"x":100,"y":90,"fileNum":24009,"id":14174,"width":25,"height":45},{"x":0,"y":135,"fileNum":24009,"id":14175,"width":25,"height":45},{"x":25,"y":135,"fileNum":24009,"id":14176,"width":25,"height":45},{"x":50,"y":135,"fileNum":24009,"id":14177,"width":25,"height":45},{"x":75,"y":135,"fileNum":24009,"id":14178,"width":25,"height":45},{"x":100,"y":135,"fileNum":24009,"id":14179,"width":25,"height":45},{"x":0,"y":0,"fileNum":15128,"id":14184,"width":25,"height":123},{"x":0,"y":0,"fileNum":15129,"id":14185,"width":25,"height":124},{"x":0,"y":0,"fileNum":2201,"id":14186,"width":17,"height":50},{"x":17,"y":0,"fileNum":2201,"id":14187,"width":17,"height":50},{"x":34,"y":0,"fileNum":2201,"id":14188,"width":17,"height":50},{"x":51,"y":0,"fileNum":2201,"id":14189,"width":17,"height":50},{"x":0,"y":0,"fileNum":2202,"id":14190,"width":17,"height":50},{"x":17,"y":0,"fileNum":2202,"id":14191,"width":17,"height":50},{"x":34,"y":0,"fileNum":2202,"id":14192,"width":17,"height":50},{"x":51,"y":0,"fileNum":2202,"id":14193,"width":17,"height":50},{"x":0,"y":0,"fileNum":209,"id":14196,"width":32,"height":32},{"x":0,"y":0,"fileNum":208,"id":14197,"width":25,"height":45},{"x":25,"y":0,"fileNum":208,"id":14198,"width":25,"height":45},{"x":50,"y":0,"fileNum":208,"id":14199,"width":25,"height":45},{"x":75,"y":0,"fileNum":208,"id":14200,"width":25,"height":45},{"x":100,"y":0,"fileNum":208,"id":14201,"width":25,"height":45},{"x":125,"y":0,"fileNum":208,"id":14202,"width":25,"height":45},{"x":0,"y":45,"fileNum":208,"id":14203,"width":25,"height":45},{"x":25,"y":45,"fileNum":208,"id":14204,"width":25,"height":45},{"x":50,"y":45,"fileNum":208,"id":14205,"width":25,"height":45},{"x":75,"y":45,"fileNum":208,"id":14206,"width":25,"height":45},{"x":100,"y":45,"fileNum":208,"id":14207,"width":25,"height":45},{"x":125,"y":45,"fileNum":208,"id":14208,"width":25,"height":45},{"x":0,"y":90,"fileNum":208,"id":14209,"width":25,"height":45},{"x":25,"y":90,"fileNum":208,"id":14210,"width":25,"height":45},{"x":50,"y":90,"fileNum":208,"id":14211,"width":25,"height":45},{"x":75,"y":90,"fileNum":208,"id":14212,"width":25,"height":45},{"x":100,"y":90,"fileNum":208,"id":14213,"width":25,"height":45},{"x":0,"y":135,"fileNum":208,"id":14214,"width":25,"height":45},{"x":25,"y":135,"fileNum":208,"id":14215,"width":25,"height":45},{"x":50,"y":135,"fileNum":208,"id":14216,"width":25,"height":45},{"x":75,"y":135,"fileNum":208,"id":14217,"width":25,"height":45},{"x":100,"y":135,"fileNum":208,"id":14218,"width":25,"height":45},{"x":0,"y":0,"fileNum":211,"id":14223,"width":32,"height":32},{"x":0,"y":0,"fileNum":210,"id":14224,"width":25,"height":45},{"x":25,"y":0,"fileNum":210,"id":14225,"width":25,"height":45},{"x":50,"y":0,"fileNum":210,"id":14226,"width":25,"height":45},{"x":75,"y":0,"fileNum":210,"id":14227,"width":25,"height":45},{"x":100,"y":0,"fileNum":210,"id":14228,"width":25,"height":45},{"x":125,"y":0,"fileNum":210,"id":14229,"width":25,"height":45},{"x":0,"y":45,"fileNum":210,"id":14230,"width":25,"height":45},{"x":25,"y":45,"fileNum":210,"id":14231,"width":25,"height":45},{"x":50,"y":45,"fileNum":210,"id":14232,"width":25,"height":45},{"x":75,"y":45,"fileNum":210,"id":14233,"width":25,"height":45},{"x":100,"y":45,"fileNum":210,"id":14234,"width":25,"height":45},{"x":125,"y":45,"fileNum":210,"id":14235,"width":25,"height":45},{"x":0,"y":90,"fileNum":210,"id":14236,"width":25,"height":45},{"x":25,"y":90,"fileNum":210,"id":14237,"width":25,"height":45},{"x":50,"y":90,"fileNum":210,"id":14238,"width":25,"height":45},{"x":75,"y":90,"fileNum":210,"id":14239,"width":25,"height":45},{"x":100,"y":90,"fileNum":210,"id":14240,"width":25,"height":45},{"x":0,"y":135,"fileNum":210,"id":14241,"width":25,"height":45},{"x":25,"y":135,"fileNum":210,"id":14242,"width":25,"height":45},{"x":50,"y":135,"fileNum":210,"id":14243,"width":25,"height":45},{"x":75,"y":135,"fileNum":210,"id":14244,"width":25,"height":45},{"x":100,"y":135,"fileNum":210,"id":14245,"width":25,"height":45},{"x":0,"y":0,"fileNum":213,"id":14250,"width":32,"height":32},{"x":0,"y":0,"fileNum":212,"id":14251,"width":25,"height":45},{"x":25,"y":0,"fileNum":212,"id":14252,"width":25,"height":45},{"x":50,"y":0,"fileNum":212,"id":14253,"width":25,"height":45},{"x":75,"y":0,"fileNum":212,"id":14254,"width":25,"height":45},{"x":100,"y":0,"fileNum":212,"id":14255,"width":25,"height":45},{"x":125,"y":0,"fileNum":212,"id":14256,"width":25,"height":45},{"x":0,"y":45,"fileNum":212,"id":14257,"width":25,"height":45},{"x":25,"y":45,"fileNum":212,"id":14258,"width":25,"height":45},{"x":50,"y":45,"fileNum":212,"id":14259,"width":25,"height":45},{"x":75,"y":45,"fileNum":212,"id":14260,"width":25,"height":45},{"x":100,"y":45,"fileNum":212,"id":14261,"width":25,"height":45},{"x":125,"y":45,"fileNum":212,"id":14262,"width":25,"height":45},{"x":0,"y":90,"fileNum":212,"id":14263,"width":25,"height":45},{"x":25,"y":90,"fileNum":212,"id":14264,"width":25,"height":45},{"x":50,"y":90,"fileNum":212,"id":14265,"width":25,"height":45},{"x":75,"y":90,"fileNum":212,"id":14266,"width":25,"height":45},{"x":100,"y":90,"fileNum":212,"id":14267,"width":25,"height":45},{"x":0,"y":135,"fileNum":212,"id":14268,"width":25,"height":45},{"x":25,"y":135,"fileNum":212,"id":14269,"width":25,"height":45},{"x":50,"y":135,"fileNum":212,"id":14270,"width":25,"height":45},{"x":75,"y":135,"fileNum":212,"id":14271,"width":25,"height":45},{"x":100,"y":135,"fileNum":212,"id":14272,"width":25,"height":45},{"x":0,"y":0,"fileNum":215,"id":14277,"width":32,"height":32},{"x":0,"y":0,"fileNum":214,"id":14278,"width":25,"height":45},{"x":25,"y":0,"fileNum":214,"id":14279,"width":25,"height":45},{"x":50,"y":0,"fileNum":214,"id":14280,"width":25,"height":45},{"x":75,"y":0,"fileNum":214,"id":14281,"width":25,"height":45},{"x":100,"y":0,"fileNum":214,"id":14282,"width":25,"height":45},{"x":125,"y":0,"fileNum":214,"id":14283,"width":25,"height":45},{"x":0,"y":45,"fileNum":214,"id":14284,"width":25,"height":45},{"x":25,"y":45,"fileNum":214,"id":14285,"width":25,"height":45},{"x":50,"y":45,"fileNum":214,"id":14286,"width":25,"height":45},{"x":75,"y":45,"fileNum":214,"id":14287,"width":25,"height":45},{"x":100,"y":45,"fileNum":214,"id":14288,"width":25,"height":45},{"x":125,"y":45,"fileNum":214,"id":14289,"width":25,"height":45},{"x":0,"y":90,"fileNum":214,"id":14290,"width":25,"height":45},{"x":25,"y":90,"fileNum":214,"id":14291,"width":25,"height":45},{"x":50,"y":90,"fileNum":214,"id":14292,"width":25,"height":45},{"x":75,"y":90,"fileNum":214,"id":14293,"width":25,"height":45},{"x":100,"y":90,"fileNum":214,"id":14294,"width":25,"height":45},{"x":0,"y":135,"fileNum":214,"id":14295,"width":25,"height":45},{"x":25,"y":135,"fileNum":214,"id":14296,"width":25,"height":45},{"x":50,"y":135,"fileNum":214,"id":14297,"width":25,"height":45},{"x":75,"y":135,"fileNum":214,"id":14298,"width":25,"height":45},{"x":100,"y":135,"fileNum":214,"id":14299,"width":25,"height":45},{"x":0,"y":0,"fileNum":217,"id":14304,"width":32,"height":32},{"x":0,"y":0,"fileNum":216,"id":14305,"width":25,"height":45},{"x":25,"y":0,"fileNum":216,"id":14306,"width":25,"height":45},{"x":50,"y":0,"fileNum":216,"id":14307,"width":25,"height":45},{"x":75,"y":0,"fileNum":216,"id":14308,"width":25,"height":45},{"x":100,"y":0,"fileNum":216,"id":14309,"width":25,"height":45},{"x":125,"y":0,"fileNum":216,"id":14310,"width":25,"height":45},{"x":0,"y":45,"fileNum":216,"id":14311,"width":25,"height":45},{"x":25,"y":45,"fileNum":216,"id":14312,"width":25,"height":45},{"x":50,"y":45,"fileNum":216,"id":14313,"width":25,"height":45},{"x":75,"y":45,"fileNum":216,"id":14314,"width":25,"height":45},{"x":100,"y":45,"fileNum":216,"id":14315,"width":25,"height":45},{"x":125,"y":45,"fileNum":216,"id":14316,"width":25,"height":45},{"x":0,"y":90,"fileNum":216,"id":14317,"width":25,"height":45},{"x":25,"y":90,"fileNum":216,"id":14318,"width":25,"height":45},{"x":50,"y":90,"fileNum":216,"id":14319,"width":25,"height":45},{"x":75,"y":90,"fileNum":216,"id":14320,"width":25,"height":45},{"x":100,"y":90,"fileNum":216,"id":14321,"width":25,"height":45},{"x":0,"y":135,"fileNum":216,"id":14322,"width":25,"height":45},{"x":25,"y":135,"fileNum":216,"id":14323,"width":25,"height":45},{"x":50,"y":135,"fileNum":216,"id":14324,"width":25,"height":45},{"x":75,"y":135,"fileNum":216,"id":14325,"width":25,"height":45},{"x":100,"y":135,"fileNum":216,"id":14326,"width":25,"height":45},{"x":0,"y":0,"fileNum":220,"id":14331,"width":32,"height":32},{"x":0,"y":0,"fileNum":219,"id":14332,"width":25,"height":45},{"x":25,"y":0,"fileNum":219,"id":14333,"width":25,"height":45},{"x":50,"y":0,"fileNum":219,"id":14334,"width":25,"height":45},{"x":75,"y":0,"fileNum":219,"id":14335,"width":25,"height":45},{"x":100,"y":0,"fileNum":219,"id":14336,"width":25,"height":45},{"x":125,"y":0,"fileNum":219,"id":14337,"width":25,"height":45},{"x":0,"y":45,"fileNum":219,"id":14338,"width":25,"height":45},{"x":25,"y":45,"fileNum":219,"id":14339,"width":25,"height":45},{"x":50,"y":45,"fileNum":219,"id":14340,"width":25,"height":45},{"x":75,"y":45,"fileNum":219,"id":14341,"width":25,"height":45},{"x":100,"y":45,"fileNum":219,"id":14342,"width":25,"height":45},{"x":125,"y":45,"fileNum":219,"id":14343,"width":25,"height":45},{"x":0,"y":90,"fileNum":219,"id":14344,"width":25,"height":45},{"x":25,"y":90,"fileNum":219,"id":14345,"width":25,"height":45},{"x":50,"y":90,"fileNum":219,"id":14346,"width":25,"height":45},{"x":75,"y":90,"fileNum":219,"id":14347,"width":25,"height":45},{"x":100,"y":90,"fileNum":219,"id":14348,"width":25,"height":45},{"x":0,"y":135,"fileNum":219,"id":14349,"width":25,"height":45},{"x":25,"y":135,"fileNum":219,"id":14350,"width":25,"height":45},{"x":50,"y":135,"fileNum":219,"id":14351,"width":25,"height":45},{"x":75,"y":135,"fileNum":219,"id":14352,"width":25,"height":45},{"x":100,"y":135,"fileNum":219,"id":14353,"width":25,"height":45},{"x":0,"y":0,"fileNum":222,"id":14358,"width":32,"height":32},{"x":0,"y":0,"fileNum":221,"id":14359,"width":25,"height":45},{"x":25,"y":0,"fileNum":221,"id":14360,"width":25,"height":45},{"x":50,"y":0,"fileNum":221,"id":14361,"width":25,"height":45},{"x":75,"y":0,"fileNum":221,"id":14362,"width":25,"height":45},{"x":100,"y":0,"fileNum":221,"id":14363,"width":25,"height":45},{"x":125,"y":0,"fileNum":221,"id":14364,"width":25,"height":45},{"x":0,"y":45,"fileNum":221,"id":14365,"width":25,"height":45},{"x":25,"y":45,"fileNum":221,"id":14366,"width":25,"height":45},{"x":50,"y":45,"fileNum":221,"id":14367,"width":25,"height":45},{"x":75,"y":45,"fileNum":221,"id":14368,"width":25,"height":45},{"x":100,"y":45,"fileNum":221,"id":14369,"width":25,"height":45},{"x":125,"y":45,"fileNum":221,"id":14370,"width":25,"height":45},{"x":0,"y":90,"fileNum":221,"id":14371,"width":25,"height":45},{"x":25,"y":90,"fileNum":221,"id":14372,"width":25,"height":45},{"x":50,"y":90,"fileNum":221,"id":14373,"width":25,"height":45},{"x":75,"y":90,"fileNum":221,"id":14374,"width":25,"height":45},{"x":100,"y":90,"fileNum":221,"id":14375,"width":25,"height":45},{"x":0,"y":135,"fileNum":221,"id":14376,"width":25,"height":45},{"x":25,"y":135,"fileNum":221,"id":14377,"width":25,"height":45},{"x":50,"y":135,"fileNum":221,"id":14378,"width":25,"height":45},{"x":75,"y":135,"fileNum":221,"id":14379,"width":25,"height":45},{"x":100,"y":135,"fileNum":221,"id":14380,"width":25,"height":45},{"x":0,"y":0,"fileNum":224,"id":14385,"width":32,"height":32},{"x":0,"y":0,"fileNum":223,"id":14386,"width":25,"height":45},{"x":25,"y":0,"fileNum":223,"id":14387,"width":25,"height":45},{"x":50,"y":0,"fileNum":223,"id":14388,"width":25,"height":45},{"x":75,"y":0,"fileNum":223,"id":14389,"width":25,"height":45},{"x":100,"y":0,"fileNum":223,"id":14390,"width":25,"height":45},{"x":125,"y":0,"fileNum":223,"id":14391,"width":25,"height":45},{"x":0,"y":45,"fileNum":223,"id":14392,"width":25,"height":45},{"x":25,"y":45,"fileNum":223,"id":14393,"width":25,"height":45},{"x":50,"y":45,"fileNum":223,"id":14394,"width":25,"height":45},{"x":75,"y":45,"fileNum":223,"id":14395,"width":25,"height":45},{"x":100,"y":45,"fileNum":223,"id":14396,"width":25,"height":45},{"x":125,"y":45,"fileNum":223,"id":14397,"width":25,"height":45},{"x":0,"y":90,"fileNum":223,"id":14398,"width":25,"height":45},{"x":25,"y":90,"fileNum":223,"id":14399,"width":25,"height":45},{"x":50,"y":90,"fileNum":223,"id":14400,"width":25,"height":45},{"x":75,"y":90,"fileNum":223,"id":14401,"width":25,"height":45},{"x":100,"y":90,"fileNum":223,"id":14402,"width":25,"height":45},{"x":0,"y":135,"fileNum":223,"id":14403,"width":25,"height":45},{"x":25,"y":135,"fileNum":223,"id":14404,"width":25,"height":45},{"x":50,"y":135,"fileNum":223,"id":14405,"width":25,"height":45},{"x":75,"y":135,"fileNum":223,"id":14406,"width":25,"height":45},{"x":100,"y":135,"fileNum":223,"id":14407,"width":25,"height":45},{"x":0,"y":0,"fileNum":226,"id":14412,"width":32,"height":32},{"x":0,"y":0,"fileNum":225,"id":14413,"width":25,"height":45},{"x":25,"y":0,"fileNum":225,"id":14414,"width":25,"height":45},{"x":50,"y":0,"fileNum":225,"id":14415,"width":25,"height":45},{"x":75,"y":0,"fileNum":225,"id":14416,"width":25,"height":45},{"x":100,"y":0,"fileNum":225,"id":14417,"width":25,"height":45},{"x":125,"y":0,"fileNum":225,"id":14418,"width":25,"height":45},{"x":0,"y":45,"fileNum":225,"id":14419,"width":25,"height":45},{"x":25,"y":45,"fileNum":225,"id":14420,"width":25,"height":45},{"x":50,"y":45,"fileNum":225,"id":14421,"width":25,"height":45},{"x":75,"y":45,"fileNum":225,"id":14422,"width":25,"height":45},{"x":100,"y":45,"fileNum":225,"id":14423,"width":25,"height":45},{"x":125,"y":45,"fileNum":225,"id":14424,"width":25,"height":45},{"x":0,"y":90,"fileNum":225,"id":14425,"width":25,"height":45},{"x":25,"y":90,"fileNum":225,"id":14426,"width":25,"height":45},{"x":50,"y":90,"fileNum":225,"id":14427,"width":25,"height":45},{"x":75,"y":90,"fileNum":225,"id":14428,"width":25,"height":45},{"x":100,"y":90,"fileNum":225,"id":14429,"width":25,"height":45},{"x":0,"y":135,"fileNum":225,"id":14430,"width":25,"height":45},{"x":25,"y":135,"fileNum":225,"id":14431,"width":25,"height":45},{"x":50,"y":135,"fileNum":225,"id":14432,"width":25,"height":45},{"x":75,"y":135,"fileNum":225,"id":14433,"width":25,"height":45},{"x":100,"y":135,"fileNum":225,"id":14434,"width":25,"height":45},{"x":0,"y":0,"fileNum":231,"id":14439,"width":32,"height":32},{"x":0,"y":0,"fileNum":230,"id":14440,"width":25,"height":45},{"x":25,"y":0,"fileNum":230,"id":14441,"width":25,"height":45},{"x":50,"y":0,"fileNum":230,"id":14442,"width":25,"height":45},{"x":75,"y":0,"fileNum":230,"id":14443,"width":25,"height":45},{"x":100,"y":0,"fileNum":230,"id":14444,"width":25,"height":45},{"x":125,"y":0,"fileNum":230,"id":14445,"width":25,"height":45},{"x":0,"y":45,"fileNum":230,"id":14446,"width":25,"height":45},{"x":25,"y":45,"fileNum":230,"id":14447,"width":25,"height":45},{"x":50,"y":45,"fileNum":230,"id":14448,"width":25,"height":45},{"x":75,"y":45,"fileNum":230,"id":14449,"width":25,"height":45},{"x":100,"y":45,"fileNum":230,"id":14450,"width":25,"height":45},{"x":125,"y":45,"fileNum":230,"id":14451,"width":25,"height":45},{"x":0,"y":90,"fileNum":230,"id":14452,"width":25,"height":45},{"x":25,"y":90,"fileNum":230,"id":14453,"width":25,"height":45},{"x":50,"y":90,"fileNum":230,"id":14454,"width":25,"height":45},{"x":75,"y":90,"fileNum":230,"id":14455,"width":25,"height":45},{"x":100,"y":90,"fileNum":230,"id":14456,"width":25,"height":45},{"x":0,"y":135,"fileNum":230,"id":14457,"width":25,"height":45},{"x":25,"y":135,"fileNum":230,"id":14458,"width":25,"height":45},{"x":50,"y":135,"fileNum":230,"id":14459,"width":25,"height":45},{"x":75,"y":135,"fileNum":230,"id":14460,"width":25,"height":45},{"x":100,"y":135,"fileNum":230,"id":14461,"width":25,"height":45},{"x":0,"y":0,"fileNum":233,"id":14466,"width":32,"height":32},{"x":0,"y":0,"fileNum":232,"id":14467,"width":25,"height":45},{"x":25,"y":0,"fileNum":232,"id":14468,"width":25,"height":45},{"x":50,"y":0,"fileNum":232,"id":14469,"width":25,"height":45},{"x":75,"y":0,"fileNum":232,"id":14470,"width":25,"height":45},{"x":100,"y":0,"fileNum":232,"id":14471,"width":25,"height":45},{"x":125,"y":0,"fileNum":232,"id":14472,"width":25,"height":45},{"x":0,"y":45,"fileNum":232,"id":14473,"width":25,"height":45},{"x":25,"y":45,"fileNum":232,"id":14474,"width":25,"height":45},{"x":50,"y":45,"fileNum":232,"id":14475,"width":25,"height":45},{"x":75,"y":45,"fileNum":232,"id":14476,"width":25,"height":45},{"x":100,"y":45,"fileNum":232,"id":14477,"width":25,"height":45},{"x":125,"y":45,"fileNum":232,"id":14478,"width":25,"height":45},{"x":0,"y":90,"fileNum":232,"id":14479,"width":25,"height":45},{"x":25,"y":90,"fileNum":232,"id":14480,"width":25,"height":45},{"x":50,"y":90,"fileNum":232,"id":14481,"width":25,"height":45},{"x":75,"y":90,"fileNum":232,"id":14482,"width":25,"height":45},{"x":100,"y":90,"fileNum":232,"id":14483,"width":25,"height":45},{"x":0,"y":135,"fileNum":232,"id":14484,"width":25,"height":45},{"x":25,"y":135,"fileNum":232,"id":14485,"width":25,"height":45},{"x":50,"y":135,"fileNum":232,"id":14486,"width":25,"height":45},{"x":75,"y":135,"fileNum":232,"id":14487,"width":25,"height":45},{"x":100,"y":135,"fileNum":232,"id":14488,"width":25,"height":45},{"x":0,"y":0,"fileNum":228,"id":14493,"width":32,"height":32},{"x":0,"y":0,"fileNum":227,"id":14494,"width":25,"height":45},{"x":25,"y":0,"fileNum":227,"id":14495,"width":25,"height":45},{"x":50,"y":0,"fileNum":227,"id":14496,"width":25,"height":45},{"x":75,"y":0,"fileNum":227,"id":14497,"width":25,"height":45},{"x":100,"y":0,"fileNum":227,"id":14498,"width":25,"height":45},{"x":125,"y":0,"fileNum":227,"id":14499,"width":25,"height":45},{"x":0,"y":45,"fileNum":227,"id":14500,"width":25,"height":45},{"x":25,"y":45,"fileNum":227,"id":14501,"width":25,"height":45},{"x":50,"y":45,"fileNum":227,"id":14502,"width":25,"height":45},{"x":75,"y":45,"fileNum":227,"id":14503,"width":25,"height":45},{"x":100,"y":45,"fileNum":227,"id":14504,"width":25,"height":45},{"x":125,"y":45,"fileNum":227,"id":14505,"width":25,"height":45},{"x":0,"y":90,"fileNum":227,"id":14506,"width":25,"height":45},{"x":25,"y":90,"fileNum":227,"id":14507,"width":25,"height":45},{"x":50,"y":90,"fileNum":227,"id":14508,"width":25,"height":45},{"x":75,"y":90,"fileNum":227,"id":14509,"width":25,"height":45},{"x":100,"y":90,"fileNum":227,"id":14510,"width":25,"height":45},{"x":0,"y":135,"fileNum":227,"id":14511,"width":25,"height":45},{"x":25,"y":135,"fileNum":227,"id":14512,"width":25,"height":45},{"x":50,"y":135,"fileNum":227,"id":14513,"width":25,"height":45},{"x":75,"y":135,"fileNum":227,"id":14514,"width":25,"height":45},{"x":100,"y":135,"fileNum":227,"id":14515,"width":25,"height":45},{"x":0,"y":0,"fileNum":235,"id":14520,"width":32,"height":32},{"x":0,"y":0,"fileNum":234,"id":14521,"width":25,"height":45},{"x":25,"y":0,"fileNum":234,"id":14522,"width":25,"height":45},{"x":50,"y":0,"fileNum":234,"id":14523,"width":25,"height":45},{"x":75,"y":0,"fileNum":234,"id":14524,"width":25,"height":45},{"x":100,"y":0,"fileNum":234,"id":14525,"width":25,"height":45},{"x":125,"y":0,"fileNum":234,"id":14526,"width":25,"height":45},{"x":0,"y":45,"fileNum":234,"id":14527,"width":25,"height":45},{"x":25,"y":45,"fileNum":234,"id":14528,"width":25,"height":45},{"x":50,"y":45,"fileNum":234,"id":14529,"width":25,"height":45},{"x":75,"y":45,"fileNum":234,"id":14530,"width":25,"height":45},{"x":100,"y":45,"fileNum":234,"id":14531,"width":25,"height":45},{"x":125,"y":45,"fileNum":234,"id":14532,"width":25,"height":45},{"x":0,"y":90,"fileNum":234,"id":14533,"width":25,"height":45},{"x":25,"y":90,"fileNum":234,"id":14534,"width":25,"height":45},{"x":50,"y":90,"fileNum":234,"id":14535,"width":25,"height":45},{"x":75,"y":90,"fileNum":234,"id":14536,"width":25,"height":45},{"x":100,"y":90,"fileNum":234,"id":14537,"width":25,"height":45},{"x":0,"y":135,"fileNum":234,"id":14538,"width":25,"height":45},{"x":25,"y":135,"fileNum":234,"id":14539,"width":25,"height":45},{"x":50,"y":135,"fileNum":234,"id":14540,"width":25,"height":45},{"x":75,"y":135,"fileNum":234,"id":14541,"width":25,"height":45},{"x":100,"y":135,"fileNum":234,"id":14542,"width":25,"height":45},{"x":0,"y":0,"fileNum":237,"id":14547,"width":32,"height":32},{"x":0,"y":0,"fileNum":236,"id":14548,"width":25,"height":45},{"x":25,"y":0,"fileNum":236,"id":14549,"width":25,"height":45},{"x":50,"y":0,"fileNum":236,"id":14550,"width":25,"height":45},{"x":75,"y":0,"fileNum":236,"id":14551,"width":25,"height":45},{"x":100,"y":0,"fileNum":236,"id":14552,"width":25,"height":45},{"x":125,"y":0,"fileNum":236,"id":14553,"width":25,"height":45},{"x":0,"y":45,"fileNum":236,"id":14554,"width":25,"height":45},{"x":25,"y":45,"fileNum":236,"id":14555,"width":25,"height":45},{"x":50,"y":45,"fileNum":236,"id":14556,"width":25,"height":45},{"x":75,"y":45,"fileNum":236,"id":14557,"width":25,"height":45},{"x":100,"y":45,"fileNum":236,"id":14558,"width":25,"height":45},{"x":125,"y":45,"fileNum":236,"id":14559,"width":25,"height":45},{"x":0,"y":90,"fileNum":236,"id":14560,"width":25,"height":45},{"x":25,"y":90,"fileNum":236,"id":14561,"width":25,"height":45},{"x":50,"y":90,"fileNum":236,"id":14562,"width":25,"height":45},{"x":75,"y":90,"fileNum":236,"id":14563,"width":25,"height":45},{"x":100,"y":90,"fileNum":236,"id":14564,"width":25,"height":45},{"x":0,"y":135,"fileNum":236,"id":14565,"width":25,"height":45},{"x":25,"y":135,"fileNum":236,"id":14566,"width":25,"height":45},{"x":50,"y":135,"fileNum":236,"id":14567,"width":25,"height":45},{"x":75,"y":135,"fileNum":236,"id":14568,"width":25,"height":45},{"x":100,"y":135,"fileNum":236,"id":14569,"width":25,"height":45},{"x":0,"y":0,"fileNum":239,"id":14574,"width":32,"height":32},{"x":0,"y":0,"fileNum":238,"id":14575,"width":25,"height":45},{"x":25,"y":0,"fileNum":238,"id":14576,"width":25,"height":45},{"x":50,"y":0,"fileNum":238,"id":14577,"width":25,"height":45},{"x":75,"y":0,"fileNum":238,"id":14578,"width":25,"height":45},{"x":100,"y":0,"fileNum":238,"id":14579,"width":25,"height":45},{"x":125,"y":0,"fileNum":238,"id":14580,"width":25,"height":45},{"x":0,"y":45,"fileNum":238,"id":14581,"width":25,"height":45},{"x":25,"y":45,"fileNum":238,"id":14582,"width":25,"height":45},{"x":50,"y":45,"fileNum":238,"id":14583,"width":25,"height":45},{"x":75,"y":45,"fileNum":238,"id":14584,"width":25,"height":45},{"x":100,"y":45,"fileNum":238,"id":14585,"width":25,"height":45},{"x":125,"y":45,"fileNum":238,"id":14586,"width":25,"height":45},{"x":0,"y":90,"fileNum":238,"id":14587,"width":25,"height":45},{"x":25,"y":90,"fileNum":238,"id":14588,"width":25,"height":45},{"x":50,"y":90,"fileNum":238,"id":14589,"width":25,"height":45},{"x":75,"y":90,"fileNum":238,"id":14590,"width":25,"height":45},{"x":100,"y":90,"fileNum":238,"id":14591,"width":25,"height":45},{"x":0,"y":135,"fileNum":238,"id":14592,"width":25,"height":45},{"x":25,"y":135,"fileNum":238,"id":14593,"width":25,"height":45},{"x":50,"y":135,"fileNum":238,"id":14594,"width":25,"height":45},{"x":75,"y":135,"fileNum":238,"id":14595,"width":25,"height":45},{"x":100,"y":135,"fileNum":238,"id":14596,"width":25,"height":45},{"x":0,"y":0,"fileNum":241,"id":14601,"width":32,"height":32},{"x":0,"y":0,"fileNum":240,"id":14602,"width":25,"height":45},{"x":25,"y":0,"fileNum":240,"id":14603,"width":25,"height":45},{"x":50,"y":0,"fileNum":240,"id":14604,"width":25,"height":45},{"x":75,"y":0,"fileNum":240,"id":14605,"width":25,"height":45},{"x":100,"y":0,"fileNum":240,"id":14606,"width":25,"height":45},{"x":125,"y":0,"fileNum":240,"id":14607,"width":25,"height":45},{"x":0,"y":45,"fileNum":240,"id":14608,"width":25,"height":45},{"x":25,"y":45,"fileNum":240,"id":14609,"width":25,"height":45},{"x":50,"y":45,"fileNum":240,"id":14610,"width":25,"height":45},{"x":75,"y":45,"fileNum":240,"id":14611,"width":25,"height":45},{"x":100,"y":45,"fileNum":240,"id":14612,"width":25,"height":45},{"x":125,"y":45,"fileNum":240,"id":14613,"width":25,"height":45},{"x":0,"y":90,"fileNum":240,"id":14614,"width":25,"height":45},{"x":25,"y":90,"fileNum":240,"id":14615,"width":25,"height":45},{"x":50,"y":90,"fileNum":240,"id":14616,"width":25,"height":45},{"x":75,"y":90,"fileNum":240,"id":14617,"width":25,"height":45},{"x":100,"y":90,"fileNum":240,"id":14618,"width":25,"height":45},{"x":0,"y":135,"fileNum":240,"id":14619,"width":25,"height":45},{"x":25,"y":135,"fileNum":240,"id":14620,"width":25,"height":45},{"x":50,"y":135,"fileNum":240,"id":14621,"width":25,"height":45},{"x":75,"y":135,"fileNum":240,"id":14622,"width":25,"height":45},{"x":100,"y":135,"fileNum":240,"id":14623,"width":25,"height":45},{"x":0,"y":0,"fileNum":243,"id":14628,"width":32,"height":32},{"x":0,"y":0,"fileNum":242,"id":14629,"width":25,"height":45},{"x":25,"y":0,"fileNum":242,"id":14630,"width":25,"height":45},{"x":50,"y":0,"fileNum":242,"id":14631,"width":25,"height":45},{"x":75,"y":0,"fileNum":242,"id":14632,"width":25,"height":45},{"x":100,"y":0,"fileNum":242,"id":14633,"width":25,"height":45},{"x":125,"y":0,"fileNum":242,"id":14634,"width":25,"height":45},{"x":0,"y":45,"fileNum":242,"id":14635,"width":25,"height":45},{"x":25,"y":45,"fileNum":242,"id":14636,"width":25,"height":45},{"x":50,"y":45,"fileNum":242,"id":14637,"width":25,"height":45},{"x":75,"y":45,"fileNum":242,"id":14638,"width":25,"height":45},{"x":100,"y":45,"fileNum":242,"id":14639,"width":25,"height":45},{"x":125,"y":45,"fileNum":242,"id":14640,"width":25,"height":45},{"x":0,"y":90,"fileNum":242,"id":14641,"width":25,"height":45},{"x":25,"y":90,"fileNum":242,"id":14642,"width":25,"height":45},{"x":50,"y":90,"fileNum":242,"id":14643,"width":25,"height":45},{"x":75,"y":90,"fileNum":242,"id":14644,"width":25,"height":45},{"x":100,"y":90,"fileNum":242,"id":14645,"width":25,"height":45},{"x":0,"y":135,"fileNum":242,"id":14646,"width":25,"height":45},{"x":25,"y":135,"fileNum":242,"id":14647,"width":25,"height":45},{"x":50,"y":135,"fileNum":242,"id":14648,"width":25,"height":45},{"x":75,"y":135,"fileNum":242,"id":14649,"width":25,"height":45},{"x":100,"y":135,"fileNum":242,"id":14650,"width":25,"height":45},{"x":0,"y":0,"fileNum":245,"id":14655,"width":32,"height":32},{"x":0,"y":0,"fileNum":244,"id":14656,"width":25,"height":45},{"x":25,"y":0,"fileNum":244,"id":14657,"width":25,"height":45},{"x":50,"y":0,"fileNum":244,"id":14658,"width":25,"height":45},{"x":75,"y":0,"fileNum":244,"id":14659,"width":25,"height":45},{"x":100,"y":0,"fileNum":244,"id":14660,"width":25,"height":45},{"x":125,"y":0,"fileNum":244,"id":14661,"width":25,"height":45},{"x":0,"y":45,"fileNum":244,"id":14662,"width":25,"height":45},{"x":25,"y":45,"fileNum":244,"id":14663,"width":25,"height":45},{"x":50,"y":45,"fileNum":244,"id":14664,"width":25,"height":45},{"x":75,"y":45,"fileNum":244,"id":14665,"width":25,"height":45},{"x":100,"y":45,"fileNum":244,"id":14666,"width":25,"height":45},{"x":125,"y":45,"fileNum":244,"id":14667,"width":25,"height":45},{"x":0,"y":90,"fileNum":244,"id":14668,"width":25,"height":45},{"x":25,"y":90,"fileNum":244,"id":14669,"width":25,"height":45},{"x":50,"y":90,"fileNum":244,"id":14670,"width":25,"height":45},{"x":75,"y":90,"fileNum":244,"id":14671,"width":25,"height":45},{"x":100,"y":90,"fileNum":244,"id":14672,"width":25,"height":45},{"x":0,"y":135,"fileNum":244,"id":14673,"width":25,"height":45},{"x":25,"y":135,"fileNum":244,"id":14674,"width":25,"height":45},{"x":50,"y":135,"fileNum":244,"id":14675,"width":25,"height":45},{"x":75,"y":135,"fileNum":244,"id":14676,"width":25,"height":45},{"x":100,"y":135,"fileNum":244,"id":14677,"width":25,"height":45},{"x":0,"y":0,"fileNum":247,"id":14682,"width":32,"height":32},{"x":0,"y":0,"fileNum":246,"id":14683,"width":25,"height":45},{"x":25,"y":0,"fileNum":246,"id":14684,"width":25,"height":45},{"x":50,"y":0,"fileNum":246,"id":14685,"width":25,"height":45},{"x":75,"y":0,"fileNum":246,"id":14686,"width":25,"height":45},{"x":100,"y":0,"fileNum":246,"id":14687,"width":25,"height":45},{"x":125,"y":0,"fileNum":246,"id":14688,"width":25,"height":45},{"x":0,"y":45,"fileNum":246,"id":14689,"width":25,"height":45},{"x":25,"y":45,"fileNum":246,"id":14690,"width":25,"height":45},{"x":50,"y":45,"fileNum":246,"id":14691,"width":25,"height":45},{"x":75,"y":45,"fileNum":246,"id":14692,"width":25,"height":45},{"x":100,"y":45,"fileNum":246,"id":14693,"width":25,"height":45},{"x":125,"y":45,"fileNum":246,"id":14694,"width":25,"height":45},{"x":0,"y":90,"fileNum":246,"id":14695,"width":25,"height":45},{"x":25,"y":90,"fileNum":246,"id":14696,"width":25,"height":45},{"x":50,"y":90,"fileNum":246,"id":14697,"width":25,"height":45},{"x":75,"y":90,"fileNum":246,"id":14698,"width":25,"height":45},{"x":100,"y":90,"fileNum":246,"id":14699,"width":25,"height":45},{"x":0,"y":135,"fileNum":246,"id":14700,"width":25,"height":45},{"x":25,"y":135,"fileNum":246,"id":14701,"width":25,"height":45},{"x":50,"y":135,"fileNum":246,"id":14702,"width":25,"height":45},{"x":75,"y":135,"fileNum":246,"id":14703,"width":25,"height":45},{"x":100,"y":135,"fileNum":246,"id":14704,"width":25,"height":45},{"x":0,"y":0,"fileNum":249,"id":14709,"width":32,"height":32},{"x":0,"y":0,"fileNum":248,"id":14710,"width":25,"height":45},{"x":25,"y":0,"fileNum":248,"id":14711,"width":25,"height":45},{"x":50,"y":0,"fileNum":248,"id":14712,"width":25,"height":45},{"x":75,"y":0,"fileNum":248,"id":14713,"width":25,"height":45},{"x":100,"y":0,"fileNum":248,"id":14714,"width":25,"height":45},{"x":125,"y":0,"fileNum":248,"id":14715,"width":25,"height":45},{"x":0,"y":45,"fileNum":248,"id":14716,"width":25,"height":45},{"x":25,"y":45,"fileNum":248,"id":14717,"width":25,"height":45},{"x":50,"y":45,"fileNum":248,"id":14718,"width":25,"height":45},{"x":75,"y":45,"fileNum":248,"id":14719,"width":25,"height":45},{"x":100,"y":45,"fileNum":248,"id":14720,"width":25,"height":45},{"x":125,"y":45,"fileNum":248,"id":14721,"width":25,"height":45},{"x":0,"y":90,"fileNum":248,"id":14722,"width":25,"height":45},{"x":25,"y":90,"fileNum":248,"id":14723,"width":25,"height":45},{"x":50,"y":90,"fileNum":248,"id":14724,"width":25,"height":45},{"x":75,"y":90,"fileNum":248,"id":14725,"width":25,"height":45},{"x":100,"y":90,"fileNum":248,"id":14726,"width":25,"height":45},{"x":0,"y":135,"fileNum":248,"id":14727,"width":25,"height":45},{"x":25,"y":135,"fileNum":248,"id":14728,"width":25,"height":45},{"x":50,"y":135,"fileNum":248,"id":14729,"width":25,"height":45},{"x":75,"y":135,"fileNum":248,"id":14730,"width":25,"height":45},{"x":100,"y":135,"fileNum":248,"id":14731,"width":25,"height":45},{"x":0,"y":0,"fileNum":251,"id":14736,"width":32,"height":32},{"x":0,"y":0,"fileNum":250,"id":14737,"width":25,"height":45},{"x":25,"y":0,"fileNum":250,"id":14738,"width":25,"height":45},{"x":50,"y":0,"fileNum":250,"id":14739,"width":25,"height":45},{"x":75,"y":0,"fileNum":250,"id":14740,"width":25,"height":45},{"x":100,"y":0,"fileNum":250,"id":14741,"width":25,"height":45},{"x":125,"y":0,"fileNum":250,"id":14742,"width":25,"height":45},{"x":0,"y":45,"fileNum":250,"id":14743,"width":25,"height":45},{"x":25,"y":45,"fileNum":250,"id":14744,"width":25,"height":45},{"x":50,"y":45,"fileNum":250,"id":14745,"width":25,"height":45},{"x":75,"y":45,"fileNum":250,"id":14746,"width":25,"height":45},{"x":100,"y":45,"fileNum":250,"id":14747,"width":25,"height":45},{"x":125,"y":45,"fileNum":250,"id":14748,"width":25,"height":45},{"x":0,"y":90,"fileNum":250,"id":14749,"width":25,"height":45},{"x":25,"y":90,"fileNum":250,"id":14750,"width":25,"height":45},{"x":50,"y":90,"fileNum":250,"id":14751,"width":25,"height":45},{"x":75,"y":90,"fileNum":250,"id":14752,"width":25,"height":45},{"x":100,"y":90,"fileNum":250,"id":14753,"width":25,"height":45},{"x":0,"y":135,"fileNum":250,"id":14754,"width":25,"height":45},{"x":25,"y":135,"fileNum":250,"id":14755,"width":25,"height":45},{"x":50,"y":135,"fileNum":250,"id":14756,"width":25,"height":45},{"x":75,"y":135,"fileNum":250,"id":14757,"width":25,"height":45},{"x":100,"y":135,"fileNum":250,"id":14758,"width":25,"height":45},{"x":0,"y":0,"fileNum":253,"id":14763,"width":32,"height":32},{"x":0,"y":0,"fileNum":252,"id":14764,"width":25,"height":45},{"x":25,"y":0,"fileNum":252,"id":14765,"width":25,"height":45},{"x":50,"y":0,"fileNum":252,"id":14766,"width":25,"height":45},{"x":75,"y":0,"fileNum":252,"id":14767,"width":25,"height":45},{"x":100,"y":0,"fileNum":252,"id":14768,"width":25,"height":45},{"x":125,"y":0,"fileNum":252,"id":14769,"width":25,"height":45},{"x":0,"y":45,"fileNum":252,"id":14770,"width":25,"height":45},{"x":25,"y":45,"fileNum":252,"id":14771,"width":25,"height":45},{"x":50,"y":45,"fileNum":252,"id":14772,"width":25,"height":45},{"x":75,"y":45,"fileNum":252,"id":14773,"width":25,"height":45},{"x":100,"y":45,"fileNum":252,"id":14774,"width":25,"height":45},{"x":125,"y":45,"fileNum":252,"id":14775,"width":25,"height":45},{"x":0,"y":90,"fileNum":252,"id":14776,"width":25,"height":45},{"x":25,"y":90,"fileNum":252,"id":14777,"width":25,"height":45},{"x":50,"y":90,"fileNum":252,"id":14778,"width":25,"height":45},{"x":75,"y":90,"fileNum":252,"id":14779,"width":25,"height":45},{"x":100,"y":90,"fileNum":252,"id":14780,"width":25,"height":45},{"x":0,"y":135,"fileNum":252,"id":14781,"width":25,"height":45},{"x":25,"y":135,"fileNum":252,"id":14782,"width":25,"height":45},{"x":50,"y":135,"fileNum":252,"id":14783,"width":25,"height":45},{"x":75,"y":135,"fileNum":252,"id":14784,"width":25,"height":45},{"x":100,"y":135,"fileNum":252,"id":14785,"width":25,"height":45},{"x":0,"y":0,"fileNum":255,"id":14790,"width":32,"height":32},{"x":0,"y":0,"fileNum":254,"id":14791,"width":25,"height":45},{"x":25,"y":0,"fileNum":254,"id":14792,"width":25,"height":45},{"x":50,"y":0,"fileNum":254,"id":14793,"width":25,"height":45},{"x":75,"y":0,"fileNum":254,"id":14794,"width":25,"height":45},{"x":100,"y":0,"fileNum":254,"id":14795,"width":25,"height":45},{"x":125,"y":0,"fileNum":254,"id":14796,"width":25,"height":45},{"x":0,"y":45,"fileNum":254,"id":14797,"width":25,"height":45},{"x":25,"y":45,"fileNum":254,"id":14798,"width":25,"height":45},{"x":50,"y":45,"fileNum":254,"id":14799,"width":25,"height":45},{"x":75,"y":45,"fileNum":254,"id":14800,"width":25,"height":45},{"x":100,"y":45,"fileNum":254,"id":14801,"width":25,"height":45},{"x":125,"y":45,"fileNum":254,"id":14802,"width":25,"height":45},{"x":0,"y":90,"fileNum":254,"id":14803,"width":25,"height":45},{"x":25,"y":90,"fileNum":254,"id":14804,"width":25,"height":45},{"x":50,"y":90,"fileNum":254,"id":14805,"width":25,"height":45},{"x":75,"y":90,"fileNum":254,"id":14806,"width":25,"height":45},{"x":100,"y":90,"fileNum":254,"id":14807,"width":25,"height":45},{"x":0,"y":135,"fileNum":254,"id":14808,"width":25,"height":45},{"x":25,"y":135,"fileNum":254,"id":14809,"width":25,"height":45},{"x":50,"y":135,"fileNum":254,"id":14810,"width":25,"height":45},{"x":75,"y":135,"fileNum":254,"id":14811,"width":25,"height":45},{"x":100,"y":135,"fileNum":254,"id":14812,"width":25,"height":45},{"x":0,"y":0,"fileNum":257,"id":14817,"width":32,"height":32},{"x":0,"y":0,"fileNum":256,"id":14818,"width":25,"height":45},{"x":25,"y":0,"fileNum":256,"id":14819,"width":25,"height":45},{"x":50,"y":0,"fileNum":256,"id":14820,"width":25,"height":45},{"x":75,"y":0,"fileNum":256,"id":14821,"width":25,"height":45},{"x":100,"y":0,"fileNum":256,"id":14822,"width":25,"height":45},{"x":125,"y":0,"fileNum":256,"id":14823,"width":25,"height":45},{"x":0,"y":45,"fileNum":256,"id":14824,"width":25,"height":45},{"x":25,"y":45,"fileNum":256,"id":14825,"width":25,"height":45},{"x":50,"y":45,"fileNum":256,"id":14826,"width":25,"height":45},{"x":75,"y":45,"fileNum":256,"id":14827,"width":25,"height":45},{"x":100,"y":45,"fileNum":256,"id":14828,"width":25,"height":45},{"x":125,"y":45,"fileNum":256,"id":14829,"width":25,"height":45},{"x":0,"y":90,"fileNum":256,"id":14830,"width":25,"height":45},{"x":25,"y":90,"fileNum":256,"id":14831,"width":25,"height":45},{"x":50,"y":90,"fileNum":256,"id":14832,"width":25,"height":45},{"x":75,"y":90,"fileNum":256,"id":14833,"width":25,"height":45},{"x":100,"y":90,"fileNum":256,"id":14834,"width":25,"height":45},{"x":0,"y":135,"fileNum":256,"id":14835,"width":25,"height":45},{"x":25,"y":135,"fileNum":256,"id":14836,"width":25,"height":45},{"x":50,"y":135,"fileNum":256,"id":14837,"width":25,"height":45},{"x":75,"y":135,"fileNum":256,"id":14838,"width":25,"height":45},{"x":100,"y":135,"fileNum":256,"id":14839,"width":25,"height":45},{"x":0,"y":0,"fileNum":259,"id":14844,"width":32,"height":32},{"x":0,"y":0,"fileNum":258,"id":14845,"width":25,"height":45},{"x":25,"y":0,"fileNum":258,"id":14846,"width":25,"height":45},{"x":50,"y":0,"fileNum":258,"id":14847,"width":25,"height":45},{"x":75,"y":0,"fileNum":258,"id":14848,"width":25,"height":45},{"x":100,"y":0,"fileNum":258,"id":14849,"width":25,"height":45},{"x":125,"y":0,"fileNum":258,"id":14850,"width":25,"height":45},{"x":0,"y":45,"fileNum":258,"id":14851,"width":25,"height":45},{"x":25,"y":45,"fileNum":258,"id":14852,"width":25,"height":45},{"x":50,"y":45,"fileNum":258,"id":14853,"width":25,"height":45},{"x":75,"y":45,"fileNum":258,"id":14854,"width":25,"height":45},{"x":100,"y":45,"fileNum":258,"id":14855,"width":25,"height":45},{"x":125,"y":45,"fileNum":258,"id":14856,"width":25,"height":45},{"x":0,"y":90,"fileNum":258,"id":14857,"width":25,"height":45},{"x":25,"y":90,"fileNum":258,"id":14858,"width":25,"height":45},{"x":50,"y":90,"fileNum":258,"id":14859,"width":25,"height":45},{"x":75,"y":90,"fileNum":258,"id":14860,"width":25,"height":45},{"x":100,"y":90,"fileNum":258,"id":14861,"width":25,"height":45},{"x":0,"y":135,"fileNum":258,"id":14862,"width":25,"height":45},{"x":25,"y":135,"fileNum":258,"id":14863,"width":25,"height":45},{"x":50,"y":135,"fileNum":258,"id":14864,"width":25,"height":45},{"x":75,"y":135,"fileNum":258,"id":14865,"width":25,"height":45},{"x":100,"y":135,"fileNum":258,"id":14866,"width":25,"height":45},{"x":0,"y":0,"fileNum":261,"id":14871,"width":32,"height":32},{"x":0,"y":0,"fileNum":260,"id":14872,"width":25,"height":45},{"x":25,"y":0,"fileNum":260,"id":14873,"width":25,"height":45},{"x":50,"y":0,"fileNum":260,"id":14874,"width":25,"height":45},{"x":75,"y":0,"fileNum":260,"id":14875,"width":25,"height":45},{"x":100,"y":0,"fileNum":260,"id":14876,"width":25,"height":45},{"x":125,"y":0,"fileNum":260,"id":14877,"width":25,"height":45},{"x":0,"y":45,"fileNum":260,"id":14878,"width":25,"height":45},{"x":25,"y":45,"fileNum":260,"id":14879,"width":25,"height":45},{"x":50,"y":45,"fileNum":260,"id":14880,"width":25,"height":45},{"x":75,"y":45,"fileNum":260,"id":14881,"width":25,"height":45},{"x":100,"y":45,"fileNum":260,"id":14882,"width":25,"height":45},{"x":125,"y":45,"fileNum":260,"id":14883,"width":25,"height":45},{"x":0,"y":90,"fileNum":260,"id":14884,"width":25,"height":45},{"x":25,"y":90,"fileNum":260,"id":14885,"width":25,"height":45},{"x":50,"y":90,"fileNum":260,"id":14886,"width":25,"height":45},{"x":75,"y":90,"fileNum":260,"id":14887,"width":25,"height":45},{"x":100,"y":90,"fileNum":260,"id":14888,"width":25,"height":45},{"x":0,"y":135,"fileNum":260,"id":14889,"width":25,"height":45},{"x":25,"y":135,"fileNum":260,"id":14890,"width":25,"height":45},{"x":50,"y":135,"fileNum":260,"id":14891,"width":25,"height":45},{"x":75,"y":135,"fileNum":260,"id":14892,"width":25,"height":45},{"x":100,"y":135,"fileNum":260,"id":14893,"width":25,"height":45},{"x":0,"y":0,"fileNum":263,"id":14898,"width":32,"height":32},{"x":0,"y":0,"fileNum":262,"id":14899,"width":25,"height":45},{"x":25,"y":0,"fileNum":262,"id":14900,"width":25,"height":45},{"x":50,"y":0,"fileNum":262,"id":14901,"width":25,"height":45},{"x":75,"y":0,"fileNum":262,"id":14902,"width":25,"height":45},{"x":100,"y":0,"fileNum":262,"id":14903,"width":25,"height":45},{"x":125,"y":0,"fileNum":262,"id":14904,"width":25,"height":45},{"x":0,"y":45,"fileNum":262,"id":14905,"width":25,"height":45},{"x":25,"y":45,"fileNum":262,"id":14906,"width":25,"height":45},{"x":50,"y":45,"fileNum":262,"id":14907,"width":25,"height":45},{"x":75,"y":45,"fileNum":262,"id":14908,"width":25,"height":45},{"x":100,"y":45,"fileNum":262,"id":14909,"width":25,"height":45},{"x":125,"y":45,"fileNum":262,"id":14910,"width":25,"height":45},{"x":0,"y":90,"fileNum":262,"id":14911,"width":25,"height":45},{"x":25,"y":90,"fileNum":262,"id":14912,"width":25,"height":45},{"x":50,"y":90,"fileNum":262,"id":14913,"width":25,"height":45},{"x":75,"y":90,"fileNum":262,"id":14914,"width":25,"height":45},{"x":100,"y":90,"fileNum":262,"id":14915,"width":25,"height":45},{"x":0,"y":135,"fileNum":262,"id":14916,"width":25,"height":45},{"x":25,"y":135,"fileNum":262,"id":14917,"width":25,"height":45},{"x":50,"y":135,"fileNum":262,"id":14918,"width":25,"height":45},{"x":75,"y":135,"fileNum":262,"id":14919,"width":25,"height":45},{"x":100,"y":135,"fileNum":262,"id":14920,"width":25,"height":45},{"x":0,"y":0,"fileNum":265,"id":14925,"width":32,"height":32},{"x":0,"y":0,"fileNum":264,"id":14926,"width":25,"height":45},{"x":25,"y":0,"fileNum":264,"id":14927,"width":25,"height":45},{"x":50,"y":0,"fileNum":264,"id":14928,"width":25,"height":45},{"x":75,"y":0,"fileNum":264,"id":14929,"width":25,"height":45},{"x":100,"y":0,"fileNum":264,"id":14930,"width":25,"height":45},{"x":125,"y":0,"fileNum":264,"id":14931,"width":25,"height":45},{"x":0,"y":45,"fileNum":264,"id":14932,"width":25,"height":45},{"x":25,"y":45,"fileNum":264,"id":14933,"width":25,"height":45},{"x":50,"y":45,"fileNum":264,"id":14934,"width":25,"height":45},{"x":75,"y":45,"fileNum":264,"id":14935,"width":25,"height":45},{"x":100,"y":45,"fileNum":264,"id":14936,"width":25,"height":45},{"x":125,"y":45,"fileNum":264,"id":14937,"width":25,"height":45},{"x":0,"y":90,"fileNum":264,"id":14938,"width":25,"height":45},{"x":25,"y":90,"fileNum":264,"id":14939,"width":25,"height":45},{"x":50,"y":90,"fileNum":264,"id":14940,"width":25,"height":45},{"x":75,"y":90,"fileNum":264,"id":14941,"width":25,"height":45},{"x":100,"y":90,"fileNum":264,"id":14942,"width":25,"height":45},{"x":0,"y":135,"fileNum":264,"id":14943,"width":25,"height":45},{"x":25,"y":135,"fileNum":264,"id":14944,"width":25,"height":45},{"x":50,"y":135,"fileNum":264,"id":14945,"width":25,"height":45},{"x":75,"y":135,"fileNum":264,"id":14946,"width":25,"height":45},{"x":100,"y":135,"fileNum":264,"id":14947,"width":25,"height":45},{"x":0,"y":0,"fileNum":267,"id":14952,"width":32,"height":32},{"x":0,"y":0,"fileNum":266,"id":14953,"width":25,"height":45},{"x":25,"y":0,"fileNum":266,"id":14954,"width":25,"height":45},{"x":50,"y":0,"fileNum":266,"id":14955,"width":25,"height":45},{"x":75,"y":0,"fileNum":266,"id":14956,"width":25,"height":45},{"x":100,"y":0,"fileNum":266,"id":14957,"width":25,"height":45},{"x":125,"y":0,"fileNum":266,"id":14958,"width":25,"height":45},{"x":0,"y":45,"fileNum":266,"id":14959,"width":25,"height":45},{"x":25,"y":45,"fileNum":266,"id":14960,"width":25,"height":45},{"x":50,"y":45,"fileNum":266,"id":14961,"width":25,"height":45},{"x":75,"y":45,"fileNum":266,"id":14962,"width":25,"height":45},{"x":100,"y":45,"fileNum":266,"id":14963,"width":25,"height":45},{"x":125,"y":45,"fileNum":266,"id":14964,"width":25,"height":45},{"x":0,"y":90,"fileNum":266,"id":14965,"width":25,"height":45},{"x":25,"y":90,"fileNum":266,"id":14966,"width":25,"height":45},{"x":50,"y":90,"fileNum":266,"id":14967,"width":25,"height":45},{"x":75,"y":90,"fileNum":266,"id":14968,"width":25,"height":45},{"x":100,"y":90,"fileNum":266,"id":14969,"width":25,"height":45},{"x":0,"y":135,"fileNum":266,"id":14970,"width":25,"height":45},{"x":25,"y":135,"fileNum":266,"id":14971,"width":25,"height":45},{"x":50,"y":135,"fileNum":266,"id":14972,"width":25,"height":45},{"x":75,"y":135,"fileNum":266,"id":14973,"width":25,"height":45},{"x":100,"y":135,"fileNum":266,"id":14974,"width":25,"height":45},{"x":0,"y":0,"fileNum":269,"id":14979,"width":32,"height":32},{"x":0,"y":0,"fileNum":268,"id":14980,"width":25,"height":45},{"x":25,"y":0,"fileNum":268,"id":14981,"width":25,"height":45},{"x":50,"y":0,"fileNum":268,"id":14982,"width":25,"height":45},{"x":75,"y":0,"fileNum":268,"id":14983,"width":25,"height":45},{"x":100,"y":0,"fileNum":268,"id":14984,"width":25,"height":45},{"x":125,"y":0,"fileNum":268,"id":14985,"width":25,"height":45},{"x":0,"y":45,"fileNum":268,"id":14986,"width":25,"height":45},{"x":25,"y":45,"fileNum":268,"id":14987,"width":25,"height":45},{"x":50,"y":45,"fileNum":268,"id":14988,"width":25,"height":45},{"x":75,"y":45,"fileNum":268,"id":14989,"width":25,"height":45},{"x":100,"y":45,"fileNum":268,"id":14990,"width":25,"height":45},{"x":125,"y":45,"fileNum":268,"id":14991,"width":25,"height":45},{"x":0,"y":90,"fileNum":268,"id":14992,"width":25,"height":45},{"x":25,"y":90,"fileNum":268,"id":14993,"width":25,"height":45},{"x":50,"y":90,"fileNum":268,"id":14994,"width":25,"height":45},{"x":75,"y":90,"fileNum":268,"id":14995,"width":25,"height":45},{"x":100,"y":90,"fileNum":268,"id":14996,"width":25,"height":45},{"x":0,"y":135,"fileNum":268,"id":14997,"width":25,"height":45},{"x":25,"y":135,"fileNum":268,"id":14998,"width":25,"height":45},{"x":50,"y":135,"fileNum":268,"id":14999,"width":25,"height":45},{"x":75,"y":135,"fileNum":268,"id":15000,"width":25,"height":45},{"x":100,"y":135,"fileNum":268,"id":15001,"width":25,"height":45},{"x":0,"y":0,"fileNum":425,"id":15006,"width":32,"height":32},{"x":0,"y":0,"fileNum":424,"id":15007,"width":25,"height":45},{"x":25,"y":0,"fileNum":424,"id":15008,"width":25,"height":45},{"x":50,"y":0,"fileNum":424,"id":15009,"width":25,"height":45},{"x":75,"y":0,"fileNum":424,"id":15010,"width":25,"height":45},{"x":100,"y":0,"fileNum":424,"id":15011,"width":25,"height":45},{"x":125,"y":0,"fileNum":424,"id":15012,"width":25,"height":45},{"x":0,"y":45,"fileNum":424,"id":15013,"width":25,"height":45},{"x":25,"y":45,"fileNum":424,"id":15014,"width":25,"height":45},{"x":50,"y":45,"fileNum":424,"id":15015,"width":25,"height":45},{"x":75,"y":45,"fileNum":424,"id":15016,"width":25,"height":45},{"x":100,"y":45,"fileNum":424,"id":15017,"width":25,"height":45},{"x":125,"y":45,"fileNum":424,"id":15018,"width":25,"height":45},{"x":0,"y":90,"fileNum":424,"id":15019,"width":25,"height":45},{"x":25,"y":90,"fileNum":424,"id":15020,"width":25,"height":45},{"x":50,"y":90,"fileNum":424,"id":15021,"width":25,"height":45},{"x":75,"y":90,"fileNum":424,"id":15022,"width":25,"height":45},{"x":100,"y":90,"fileNum":424,"id":15023,"width":25,"height":45},{"x":0,"y":135,"fileNum":424,"id":15024,"width":25,"height":45},{"x":25,"y":135,"fileNum":424,"id":15025,"width":25,"height":45},{"x":50,"y":135,"fileNum":424,"id":15026,"width":25,"height":45},{"x":75,"y":135,"fileNum":424,"id":15027,"width":25,"height":45},{"x":100,"y":135,"fileNum":424,"id":15028,"width":25,"height":45},{"x":0,"y":0,"fileNum":427,"id":15033,"width":32,"height":32},{"x":0,"y":0,"fileNum":426,"id":15034,"width":25,"height":45},{"x":25,"y":0,"fileNum":426,"id":15035,"width":25,"height":45},{"x":50,"y":0,"fileNum":426,"id":15036,"width":25,"height":45},{"x":75,"y":0,"fileNum":426,"id":15037,"width":25,"height":45},{"x":100,"y":0,"fileNum":426,"id":15038,"width":25,"height":45},{"x":125,"y":0,"fileNum":426,"id":15039,"width":25,"height":45},{"x":0,"y":45,"fileNum":426,"id":15040,"width":25,"height":45},{"x":25,"y":45,"fileNum":426,"id":15041,"width":25,"height":45},{"x":50,"y":45,"fileNum":426,"id":15042,"width":25,"height":45},{"x":75,"y":45,"fileNum":426,"id":15043,"width":25,"height":45},{"x":100,"y":45,"fileNum":426,"id":15044,"width":25,"height":45},{"x":125,"y":45,"fileNum":426,"id":15045,"width":25,"height":45},{"x":0,"y":90,"fileNum":426,"id":15046,"width":25,"height":45},{"x":25,"y":90,"fileNum":426,"id":15047,"width":25,"height":45},{"x":50,"y":90,"fileNum":426,"id":15048,"width":25,"height":45},{"x":75,"y":90,"fileNum":426,"id":15049,"width":25,"height":45},{"x":100,"y":90,"fileNum":426,"id":15050,"width":25,"height":45},{"x":0,"y":135,"fileNum":426,"id":15051,"width":25,"height":45},{"x":25,"y":135,"fileNum":426,"id":15052,"width":25,"height":45},{"x":50,"y":135,"fileNum":426,"id":15053,"width":25,"height":45},{"x":75,"y":135,"fileNum":426,"id":15054,"width":25,"height":45},{"x":100,"y":135,"fileNum":426,"id":15055,"width":25,"height":45},{"x":0,"y":0,"fileNum":430,"id":15060,"width":32,"height":32},{"x":0,"y":0,"fileNum":428,"id":15061,"width":25,"height":45},{"x":25,"y":0,"fileNum":428,"id":15062,"width":25,"height":45},{"x":50,"y":0,"fileNum":428,"id":15063,"width":25,"height":45},{"x":75,"y":0,"fileNum":428,"id":15064,"width":25,"height":45},{"x":100,"y":0,"fileNum":428,"id":15065,"width":25,"height":45},{"x":125,"y":0,"fileNum":428,"id":15066,"width":25,"height":45},{"x":0,"y":45,"fileNum":428,"id":15067,"width":25,"height":45},{"x":25,"y":45,"fileNum":428,"id":15068,"width":25,"height":45},{"x":50,"y":45,"fileNum":428,"id":15069,"width":25,"height":45},{"x":75,"y":45,"fileNum":428,"id":15070,"width":25,"height":45},{"x":100,"y":45,"fileNum":428,"id":15071,"width":25,"height":45},{"x":125,"y":45,"fileNum":428,"id":15072,"width":25,"height":45},{"x":0,"y":90,"fileNum":428,"id":15073,"width":25,"height":45},{"x":25,"y":90,"fileNum":428,"id":15074,"width":25,"height":45},{"x":50,"y":90,"fileNum":428,"id":15075,"width":25,"height":45},{"x":75,"y":90,"fileNum":428,"id":15076,"width":25,"height":45},{"x":100,"y":90,"fileNum":428,"id":15077,"width":25,"height":45},{"x":0,"y":135,"fileNum":428,"id":15078,"width":25,"height":45},{"x":25,"y":135,"fileNum":428,"id":15079,"width":25,"height":45},{"x":50,"y":135,"fileNum":428,"id":15080,"width":25,"height":45},{"x":75,"y":135,"fileNum":428,"id":15081,"width":25,"height":45},{"x":100,"y":135,"fileNum":428,"id":15082,"width":25,"height":45},{"x":0,"y":0,"fileNum":432,"id":15087,"width":32,"height":32},{"x":0,"y":0,"fileNum":431,"id":15088,"width":25,"height":45},{"x":25,"y":0,"fileNum":431,"id":15089,"width":25,"height":45},{"x":50,"y":0,"fileNum":431,"id":15090,"width":25,"height":45},{"x":75,"y":0,"fileNum":431,"id":15091,"width":25,"height":45},{"x":100,"y":0,"fileNum":431,"id":15092,"width":25,"height":45},{"x":125,"y":0,"fileNum":431,"id":15093,"width":25,"height":45},{"x":0,"y":45,"fileNum":431,"id":15094,"width":25,"height":45},{"x":25,"y":45,"fileNum":431,"id":15095,"width":25,"height":45},{"x":50,"y":45,"fileNum":431,"id":15096,"width":25,"height":45},{"x":75,"y":45,"fileNum":431,"id":15097,"width":25,"height":45},{"x":100,"y":45,"fileNum":431,"id":15098,"width":25,"height":45},{"x":125,"y":45,"fileNum":431,"id":15099,"width":25,"height":45},{"x":0,"y":90,"fileNum":431,"id":15100,"width":25,"height":45},{"x":25,"y":90,"fileNum":431,"id":15101,"width":25,"height":45},{"x":50,"y":90,"fileNum":431,"id":15102,"width":25,"height":45},{"x":75,"y":90,"fileNum":431,"id":15103,"width":25,"height":45},{"x":100,"y":90,"fileNum":431,"id":15104,"width":25,"height":45},{"x":0,"y":135,"fileNum":431,"id":15105,"width":25,"height":45},{"x":25,"y":135,"fileNum":431,"id":15106,"width":25,"height":45},{"x":50,"y":135,"fileNum":431,"id":15107,"width":25,"height":45},{"x":75,"y":135,"fileNum":431,"id":15108,"width":25,"height":45},{"x":100,"y":135,"fileNum":431,"id":15109,"width":25,"height":45},{"x":0,"y":0,"fileNum":434,"id":15114,"width":32,"height":32},{"x":0,"y":0,"fileNum":433,"id":15115,"width":25,"height":45},{"x":25,"y":0,"fileNum":433,"id":15116,"width":25,"height":45},{"x":50,"y":0,"fileNum":433,"id":15117,"width":25,"height":45},{"x":75,"y":0,"fileNum":433,"id":15118,"width":25,"height":45},{"x":100,"y":0,"fileNum":433,"id":15119,"width":25,"height":45},{"x":125,"y":0,"fileNum":433,"id":15120,"width":25,"height":45},{"x":0,"y":45,"fileNum":433,"id":15121,"width":25,"height":45},{"x":25,"y":45,"fileNum":433,"id":15122,"width":25,"height":45},{"x":50,"y":45,"fileNum":433,"id":15123,"width":25,"height":45},{"x":75,"y":45,"fileNum":433,"id":15124,"width":25,"height":45},{"x":100,"y":45,"fileNum":433,"id":15125,"width":25,"height":45},{"x":125,"y":45,"fileNum":433,"id":15126,"width":25,"height":45},{"x":0,"y":90,"fileNum":433,"id":15127,"width":25,"height":45},{"x":25,"y":90,"fileNum":433,"id":15128,"width":25,"height":45},{"x":50,"y":90,"fileNum":433,"id":15129,"width":25,"height":45},{"x":75,"y":90,"fileNum":433,"id":15130,"width":25,"height":45},{"x":100,"y":90,"fileNum":433,"id":15131,"width":25,"height":45},{"x":0,"y":135,"fileNum":433,"id":15132,"width":25,"height":45},{"x":25,"y":135,"fileNum":433,"id":15133,"width":25,"height":45},{"x":50,"y":135,"fileNum":433,"id":15134,"width":25,"height":45},{"x":75,"y":135,"fileNum":433,"id":15135,"width":25,"height":45},{"x":100,"y":135,"fileNum":433,"id":15136,"width":25,"height":45},{"x":0,"y":0,"fileNum":437,"id":15141,"width":32,"height":32},{"x":0,"y":0,"fileNum":436,"id":15142,"width":25,"height":45},{"x":25,"y":0,"fileNum":436,"id":15143,"width":25,"height":45},{"x":50,"y":0,"fileNum":436,"id":15144,"width":25,"height":45},{"x":75,"y":0,"fileNum":436,"id":15145,"width":25,"height":45},{"x":100,"y":0,"fileNum":436,"id":15146,"width":25,"height":45},{"x":125,"y":0,"fileNum":436,"id":15147,"width":25,"height":45},{"x":0,"y":45,"fileNum":436,"id":15148,"width":25,"height":45},{"x":25,"y":45,"fileNum":436,"id":15149,"width":25,"height":45},{"x":50,"y":45,"fileNum":436,"id":15150,"width":25,"height":45},{"x":75,"y":45,"fileNum":436,"id":15151,"width":25,"height":45},{"x":100,"y":45,"fileNum":436,"id":15152,"width":25,"height":45},{"x":125,"y":45,"fileNum":436,"id":15153,"width":25,"height":45},{"x":0,"y":90,"fileNum":436,"id":15154,"width":25,"height":45},{"x":25,"y":90,"fileNum":436,"id":15155,"width":25,"height":45},{"x":50,"y":90,"fileNum":436,"id":15156,"width":25,"height":45},{"x":75,"y":90,"fileNum":436,"id":15157,"width":25,"height":45},{"x":100,"y":90,"fileNum":436,"id":15158,"width":25,"height":45},{"x":0,"y":135,"fileNum":436,"id":15159,"width":25,"height":45},{"x":25,"y":135,"fileNum":436,"id":15160,"width":25,"height":45},{"x":50,"y":135,"fileNum":436,"id":15161,"width":25,"height":45},{"x":75,"y":135,"fileNum":436,"id":15162,"width":25,"height":45},{"x":100,"y":135,"fileNum":436,"id":15163,"width":25,"height":45},{"x":0,"y":0,"fileNum":439,"id":15168,"width":32,"height":32},{"x":0,"y":0,"fileNum":438,"id":15169,"width":25,"height":45},{"x":25,"y":0,"fileNum":438,"id":15170,"width":25,"height":45},{"x":50,"y":0,"fileNum":438,"id":15171,"width":25,"height":45},{"x":75,"y":0,"fileNum":438,"id":15172,"width":25,"height":45},{"x":100,"y":0,"fileNum":438,"id":15173,"width":25,"height":45},{"x":125,"y":0,"fileNum":438,"id":15174,"width":25,"height":45},{"x":0,"y":45,"fileNum":438,"id":15175,"width":25,"height":45},{"x":25,"y":45,"fileNum":438,"id":15176,"width":25,"height":45},{"x":50,"y":45,"fileNum":438,"id":15177,"width":25,"height":45},{"x":75,"y":45,"fileNum":438,"id":15178,"width":25,"height":45},{"x":100,"y":45,"fileNum":438,"id":15179,"width":25,"height":45},{"x":125,"y":45,"fileNum":438,"id":15180,"width":25,"height":45},{"x":0,"y":90,"fileNum":438,"id":15181,"width":25,"height":45},{"x":25,"y":90,"fileNum":438,"id":15182,"width":25,"height":45},{"x":50,"y":90,"fileNum":438,"id":15183,"width":25,"height":45},{"x":75,"y":90,"fileNum":438,"id":15184,"width":25,"height":45},{"x":100,"y":90,"fileNum":438,"id":15185,"width":25,"height":45},{"x":0,"y":135,"fileNum":438,"id":15186,"width":25,"height":45},{"x":25,"y":135,"fileNum":438,"id":15187,"width":25,"height":45},{"x":50,"y":135,"fileNum":438,"id":15188,"width":25,"height":45},{"x":75,"y":135,"fileNum":438,"id":15189,"width":25,"height":45},{"x":100,"y":135,"fileNum":438,"id":15190,"width":25,"height":45},{"x":0,"y":0,"fileNum":441,"id":15195,"width":32,"height":32},{"x":0,"y":0,"fileNum":440,"id":15196,"width":25,"height":45},{"x":25,"y":0,"fileNum":440,"id":15197,"width":25,"height":45},{"x":50,"y":0,"fileNum":440,"id":15198,"width":25,"height":45},{"x":75,"y":0,"fileNum":440,"id":15199,"width":25,"height":45},{"x":100,"y":0,"fileNum":440,"id":15200,"width":25,"height":45},{"x":125,"y":0,"fileNum":440,"id":15201,"width":25,"height":45},{"x":0,"y":45,"fileNum":440,"id":15202,"width":25,"height":45},{"x":25,"y":45,"fileNum":440,"id":15203,"width":25,"height":45},{"x":50,"y":45,"fileNum":440,"id":15204,"width":25,"height":45},{"x":75,"y":45,"fileNum":440,"id":15205,"width":25,"height":45},{"x":100,"y":45,"fileNum":440,"id":15206,"width":25,"height":45},{"x":125,"y":45,"fileNum":440,"id":15207,"width":25,"height":45},{"x":0,"y":90,"fileNum":440,"id":15208,"width":25,"height":45},{"x":25,"y":90,"fileNum":440,"id":15209,"width":25,"height":45},{"x":50,"y":90,"fileNum":440,"id":15210,"width":25,"height":45},{"x":75,"y":90,"fileNum":440,"id":15211,"width":25,"height":45},{"x":100,"y":90,"fileNum":440,"id":15212,"width":25,"height":45},{"x":0,"y":135,"fileNum":440,"id":15213,"width":25,"height":45},{"x":25,"y":135,"fileNum":440,"id":15214,"width":25,"height":45},{"x":50,"y":135,"fileNum":440,"id":15215,"width":25,"height":45},{"x":75,"y":135,"fileNum":440,"id":15216,"width":25,"height":45},{"x":100,"y":135,"fileNum":440,"id":15217,"width":25,"height":45},{"x":0,"y":0,"fileNum":443,"id":15222,"width":32,"height":32},{"x":0,"y":0,"fileNum":442,"id":15223,"width":25,"height":45},{"x":25,"y":0,"fileNum":442,"id":15224,"width":25,"height":45},{"x":50,"y":0,"fileNum":442,"id":15225,"width":25,"height":45},{"x":75,"y":0,"fileNum":442,"id":15226,"width":25,"height":45},{"x":100,"y":0,"fileNum":442,"id":15227,"width":25,"height":45},{"x":125,"y":0,"fileNum":442,"id":15228,"width":25,"height":45},{"x":0,"y":45,"fileNum":442,"id":15229,"width":25,"height":45},{"x":25,"y":45,"fileNum":442,"id":15230,"width":25,"height":45},{"x":50,"y":45,"fileNum":442,"id":15231,"width":25,"height":45},{"x":75,"y":45,"fileNum":442,"id":15232,"width":25,"height":45},{"x":100,"y":45,"fileNum":442,"id":15233,"width":25,"height":45},{"x":125,"y":45,"fileNum":442,"id":15234,"width":25,"height":45},{"x":0,"y":90,"fileNum":442,"id":15235,"width":25,"height":45},{"x":25,"y":90,"fileNum":442,"id":15236,"width":25,"height":45},{"x":50,"y":90,"fileNum":442,"id":15237,"width":25,"height":45},{"x":75,"y":90,"fileNum":442,"id":15238,"width":25,"height":45},{"x":100,"y":90,"fileNum":442,"id":15239,"width":25,"height":45},{"x":0,"y":135,"fileNum":442,"id":15240,"width":25,"height":45},{"x":25,"y":135,"fileNum":442,"id":15241,"width":25,"height":45},{"x":50,"y":135,"fileNum":442,"id":15242,"width":25,"height":45},{"x":75,"y":135,"fileNum":442,"id":15243,"width":25,"height":45},{"x":100,"y":135,"fileNum":442,"id":15244,"width":25,"height":45},{"x":0,"y":0,"fileNum":445,"id":15249,"width":32,"height":32},{"x":0,"y":0,"fileNum":444,"id":15250,"width":25,"height":45},{"x":25,"y":0,"fileNum":444,"id":15251,"width":25,"height":45},{"x":50,"y":0,"fileNum":444,"id":15252,"width":25,"height":45},{"x":75,"y":0,"fileNum":444,"id":15253,"width":25,"height":45},{"x":100,"y":0,"fileNum":444,"id":15254,"width":25,"height":45},{"x":125,"y":0,"fileNum":444,"id":15255,"width":25,"height":45},{"x":0,"y":45,"fileNum":444,"id":15256,"width":25,"height":45},{"x":25,"y":45,"fileNum":444,"id":15257,"width":25,"height":45},{"x":50,"y":45,"fileNum":444,"id":15258,"width":25,"height":45},{"x":75,"y":45,"fileNum":444,"id":15259,"width":25,"height":45},{"x":100,"y":45,"fileNum":444,"id":15260,"width":25,"height":45},{"x":125,"y":45,"fileNum":444,"id":15261,"width":25,"height":45},{"x":0,"y":90,"fileNum":444,"id":15262,"width":25,"height":45},{"x":25,"y":90,"fileNum":444,"id":15263,"width":25,"height":45},{"x":50,"y":90,"fileNum":444,"id":15264,"width":25,"height":45},{"x":75,"y":90,"fileNum":444,"id":15265,"width":25,"height":45},{"x":100,"y":90,"fileNum":444,"id":15266,"width":25,"height":45},{"x":0,"y":135,"fileNum":444,"id":15267,"width":25,"height":45},{"x":25,"y":135,"fileNum":444,"id":15268,"width":25,"height":45},{"x":50,"y":135,"fileNum":444,"id":15269,"width":25,"height":45},{"x":75,"y":135,"fileNum":444,"id":15270,"width":25,"height":45},{"x":100,"y":135,"fileNum":444,"id":15271,"width":25,"height":45},{"x":0,"y":0,"fileNum":448,"id":15276,"width":32,"height":32},{"x":0,"y":0,"fileNum":447,"id":15277,"width":25,"height":45},{"x":25,"y":0,"fileNum":447,"id":15278,"width":25,"height":45},{"x":50,"y":0,"fileNum":447,"id":15279,"width":25,"height":45},{"x":75,"y":0,"fileNum":447,"id":15280,"width":25,"height":45},{"x":100,"y":0,"fileNum":447,"id":15281,"width":25,"height":45},{"x":125,"y":0,"fileNum":447,"id":15282,"width":25,"height":45},{"x":0,"y":45,"fileNum":447,"id":15283,"width":25,"height":45},{"x":25,"y":45,"fileNum":447,"id":15284,"width":25,"height":45},{"x":50,"y":45,"fileNum":447,"id":15285,"width":25,"height":45},{"x":75,"y":45,"fileNum":447,"id":15286,"width":25,"height":45},{"x":100,"y":45,"fileNum":447,"id":15287,"width":25,"height":45},{"x":125,"y":45,"fileNum":447,"id":15288,"width":25,"height":45},{"x":0,"y":90,"fileNum":447,"id":15289,"width":25,"height":45},{"x":25,"y":90,"fileNum":447,"id":15290,"width":25,"height":45},{"x":50,"y":90,"fileNum":447,"id":15291,"width":25,"height":45},{"x":75,"y":90,"fileNum":447,"id":15292,"width":25,"height":45},{"x":100,"y":90,"fileNum":447,"id":15293,"width":25,"height":45},{"x":0,"y":135,"fileNum":447,"id":15294,"width":25,"height":45},{"x":25,"y":135,"fileNum":447,"id":15295,"width":25,"height":45},{"x":50,"y":135,"fileNum":447,"id":15296,"width":25,"height":45},{"x":75,"y":135,"fileNum":447,"id":15297,"width":25,"height":45},{"x":100,"y":135,"fileNum":447,"id":15298,"width":25,"height":45},{"x":0,"y":0,"fileNum":450,"id":15303,"width":32,"height":32},{"x":0,"y":0,"fileNum":449,"id":15304,"width":25,"height":45},{"x":25,"y":0,"fileNum":449,"id":15305,"width":25,"height":45},{"x":50,"y":0,"fileNum":449,"id":15306,"width":25,"height":45},{"x":75,"y":0,"fileNum":449,"id":15307,"width":25,"height":45},{"x":100,"y":0,"fileNum":449,"id":15308,"width":25,"height":45},{"x":125,"y":0,"fileNum":449,"id":15309,"width":25,"height":45},{"x":0,"y":45,"fileNum":449,"id":15310,"width":25,"height":45},{"x":25,"y":45,"fileNum":449,"id":15311,"width":25,"height":45},{"x":50,"y":45,"fileNum":449,"id":15312,"width":25,"height":45},{"x":75,"y":45,"fileNum":449,"id":15313,"width":25,"height":45},{"x":100,"y":45,"fileNum":449,"id":15314,"width":25,"height":45},{"x":125,"y":45,"fileNum":449,"id":15315,"width":25,"height":45},{"x":0,"y":90,"fileNum":449,"id":15316,"width":25,"height":45},{"x":25,"y":90,"fileNum":449,"id":15317,"width":25,"height":45},{"x":50,"y":90,"fileNum":449,"id":15318,"width":25,"height":45},{"x":75,"y":90,"fileNum":449,"id":15319,"width":25,"height":45},{"x":100,"y":90,"fileNum":449,"id":15320,"width":25,"height":45},{"x":0,"y":135,"fileNum":449,"id":15321,"width":25,"height":45},{"x":25,"y":135,"fileNum":449,"id":15322,"width":25,"height":45},{"x":50,"y":135,"fileNum":449,"id":15323,"width":25,"height":45},{"x":75,"y":135,"fileNum":449,"id":15324,"width":25,"height":45},{"x":100,"y":135,"fileNum":449,"id":15325,"width":25,"height":45},{"x":0,"y":0,"fileNum":452,"id":15330,"width":32,"height":32},{"x":0,"y":0,"fileNum":451,"id":15331,"width":25,"height":45},{"x":25,"y":0,"fileNum":451,"id":15332,"width":25,"height":45},{"x":50,"y":0,"fileNum":451,"id":15333,"width":25,"height":45},{"x":75,"y":0,"fileNum":451,"id":15334,"width":25,"height":45},{"x":100,"y":0,"fileNum":451,"id":15335,"width":25,"height":45},{"x":125,"y":0,"fileNum":451,"id":15336,"width":25,"height":45},{"x":0,"y":45,"fileNum":451,"id":15337,"width":25,"height":45},{"x":25,"y":45,"fileNum":451,"id":15338,"width":25,"height":45},{"x":50,"y":45,"fileNum":451,"id":15339,"width":25,"height":45},{"x":75,"y":45,"fileNum":451,"id":15340,"width":25,"height":45},{"x":100,"y":45,"fileNum":451,"id":15341,"width":25,"height":45},{"x":125,"y":45,"fileNum":451,"id":15342,"width":25,"height":45},{"x":0,"y":90,"fileNum":451,"id":15343,"width":25,"height":45},{"x":25,"y":90,"fileNum":451,"id":15344,"width":25,"height":45},{"x":50,"y":90,"fileNum":451,"id":15345,"width":25,"height":45},{"x":75,"y":90,"fileNum":451,"id":15346,"width":25,"height":45},{"x":100,"y":90,"fileNum":451,"id":15347,"width":25,"height":45},{"x":0,"y":135,"fileNum":451,"id":15348,"width":25,"height":45},{"x":25,"y":135,"fileNum":451,"id":15349,"width":25,"height":45},{"x":50,"y":135,"fileNum":451,"id":15350,"width":25,"height":45},{"x":75,"y":135,"fileNum":451,"id":15351,"width":25,"height":45},{"x":100,"y":135,"fileNum":451,"id":15352,"width":25,"height":45},{"x":0,"y":0,"fileNum":454,"id":15357,"width":32,"height":32},{"x":0,"y":0,"fileNum":453,"id":15358,"width":25,"height":45},{"x":25,"y":0,"fileNum":453,"id":15359,"width":25,"height":45},{"x":50,"y":0,"fileNum":453,"id":15360,"width":25,"height":45},{"x":75,"y":0,"fileNum":453,"id":15361,"width":25,"height":45},{"x":100,"y":0,"fileNum":453,"id":15362,"width":25,"height":45},{"x":125,"y":0,"fileNum":453,"id":15363,"width":25,"height":45},{"x":0,"y":45,"fileNum":453,"id":15364,"width":25,"height":45},{"x":25,"y":45,"fileNum":453,"id":15365,"width":25,"height":45},{"x":50,"y":45,"fileNum":453,"id":15366,"width":25,"height":45},{"x":75,"y":45,"fileNum":453,"id":15367,"width":25,"height":45},{"x":100,"y":45,"fileNum":453,"id":15368,"width":25,"height":45},{"x":125,"y":45,"fileNum":453,"id":15369,"width":25,"height":45},{"x":0,"y":90,"fileNum":453,"id":15370,"width":25,"height":45},{"x":25,"y":90,"fileNum":453,"id":15371,"width":25,"height":45},{"x":50,"y":90,"fileNum":453,"id":15372,"width":25,"height":45},{"x":75,"y":90,"fileNum":453,"id":15373,"width":25,"height":45},{"x":100,"y":90,"fileNum":453,"id":15374,"width":25,"height":45},{"x":0,"y":135,"fileNum":453,"id":15375,"width":25,"height":45},{"x":25,"y":135,"fileNum":453,"id":15376,"width":25,"height":45},{"x":50,"y":135,"fileNum":453,"id":15377,"width":25,"height":45},{"x":75,"y":135,"fileNum":453,"id":15378,"width":25,"height":45},{"x":100,"y":135,"fileNum":453,"id":15379,"width":25,"height":45},{"x":0,"y":0,"fileNum":456,"id":15384,"width":32,"height":32},{"x":0,"y":0,"fileNum":455,"id":15385,"width":25,"height":45},{"x":25,"y":0,"fileNum":455,"id":15386,"width":25,"height":45},{"x":50,"y":0,"fileNum":455,"id":15387,"width":25,"height":45},{"x":75,"y":0,"fileNum":455,"id":15388,"width":25,"height":45},{"x":100,"y":0,"fileNum":455,"id":15389,"width":25,"height":45},{"x":125,"y":0,"fileNum":455,"id":15390,"width":25,"height":45},{"x":0,"y":45,"fileNum":455,"id":15391,"width":25,"height":45},{"x":25,"y":45,"fileNum":455,"id":15392,"width":25,"height":45},{"x":50,"y":45,"fileNum":455,"id":15393,"width":25,"height":45},{"x":75,"y":45,"fileNum":455,"id":15394,"width":25,"height":45},{"x":100,"y":45,"fileNum":455,"id":15395,"width":25,"height":45},{"x":125,"y":45,"fileNum":455,"id":15396,"width":25,"height":45},{"x":0,"y":90,"fileNum":455,"id":15397,"width":25,"height":45},{"x":25,"y":90,"fileNum":455,"id":15398,"width":25,"height":45},{"x":50,"y":90,"fileNum":455,"id":15399,"width":25,"height":45},{"x":75,"y":90,"fileNum":455,"id":15400,"width":25,"height":45},{"x":100,"y":90,"fileNum":455,"id":15401,"width":25,"height":45},{"x":0,"y":135,"fileNum":455,"id":15402,"width":25,"height":45},{"x":25,"y":135,"fileNum":455,"id":15403,"width":25,"height":45},{"x":50,"y":135,"fileNum":455,"id":15404,"width":25,"height":45},{"x":75,"y":135,"fileNum":455,"id":15405,"width":25,"height":45},{"x":100,"y":135,"fileNum":455,"id":15406,"width":25,"height":45},{"x":0,"y":0,"fileNum":459,"id":15411,"width":32,"height":32},{"x":0,"y":0,"fileNum":458,"id":15412,"width":25,"height":45},{"x":25,"y":0,"fileNum":458,"id":15413,"width":25,"height":45},{"x":50,"y":0,"fileNum":458,"id":15414,"width":25,"height":45},{"x":75,"y":0,"fileNum":458,"id":15415,"width":25,"height":45},{"x":100,"y":0,"fileNum":458,"id":15416,"width":25,"height":45},{"x":125,"y":0,"fileNum":458,"id":15417,"width":25,"height":45},{"x":0,"y":45,"fileNum":458,"id":15418,"width":25,"height":45},{"x":25,"y":45,"fileNum":458,"id":15419,"width":25,"height":45},{"x":50,"y":45,"fileNum":458,"id":15420,"width":25,"height":45},{"x":75,"y":45,"fileNum":458,"id":15421,"width":25,"height":45},{"x":100,"y":45,"fileNum":458,"id":15422,"width":25,"height":45},{"x":125,"y":45,"fileNum":458,"id":15423,"width":25,"height":45},{"x":0,"y":90,"fileNum":458,"id":15424,"width":25,"height":45},{"x":25,"y":90,"fileNum":458,"id":15425,"width":25,"height":45},{"x":50,"y":90,"fileNum":458,"id":15426,"width":25,"height":45},{"x":75,"y":90,"fileNum":458,"id":15427,"width":25,"height":45},{"x":100,"y":90,"fileNum":458,"id":15428,"width":25,"height":45},{"x":0,"y":135,"fileNum":458,"id":15429,"width":25,"height":45},{"x":25,"y":135,"fileNum":458,"id":15430,"width":25,"height":45},{"x":50,"y":135,"fileNum":458,"id":15431,"width":25,"height":45},{"x":75,"y":135,"fileNum":458,"id":15432,"width":25,"height":45},{"x":100,"y":135,"fileNum":458,"id":15433,"width":25,"height":45},{"x":0,"y":0,"fileNum":461,"id":15438,"width":32,"height":32},{"x":0,"y":0,"fileNum":460,"id":15439,"width":25,"height":45},{"x":25,"y":0,"fileNum":460,"id":15440,"width":25,"height":45},{"x":50,"y":0,"fileNum":460,"id":15441,"width":25,"height":45},{"x":75,"y":0,"fileNum":460,"id":15442,"width":25,"height":45},{"x":100,"y":0,"fileNum":460,"id":15443,"width":25,"height":45},{"x":125,"y":0,"fileNum":460,"id":15444,"width":25,"height":45},{"x":0,"y":45,"fileNum":460,"id":15445,"width":25,"height":45},{"x":25,"y":45,"fileNum":460,"id":15446,"width":25,"height":45},{"x":50,"y":45,"fileNum":460,"id":15447,"width":25,"height":45},{"x":75,"y":45,"fileNum":460,"id":15448,"width":25,"height":45},{"x":100,"y":45,"fileNum":460,"id":15449,"width":25,"height":45},{"x":125,"y":45,"fileNum":460,"id":15450,"width":25,"height":45},{"x":0,"y":90,"fileNum":460,"id":15451,"width":25,"height":45},{"x":25,"y":90,"fileNum":460,"id":15452,"width":25,"height":45},{"x":50,"y":90,"fileNum":460,"id":15453,"width":25,"height":45},{"x":75,"y":90,"fileNum":460,"id":15454,"width":25,"height":45},{"x":100,"y":90,"fileNum":460,"id":15455,"width":25,"height":45},{"x":0,"y":135,"fileNum":460,"id":15456,"width":25,"height":45},{"x":25,"y":135,"fileNum":460,"id":15457,"width":25,"height":45},{"x":50,"y":135,"fileNum":460,"id":15458,"width":25,"height":45},{"x":75,"y":135,"fileNum":460,"id":15459,"width":25,"height":45},{"x":100,"y":135,"fileNum":460,"id":15460,"width":25,"height":45},{"x":0,"y":0,"fileNum":463,"id":15465,"width":32,"height":32},{"x":0,"y":0,"fileNum":462,"id":15466,"width":25,"height":45},{"x":25,"y":0,"fileNum":462,"id":15467,"width":25,"height":45},{"x":50,"y":0,"fileNum":462,"id":15468,"width":25,"height":45},{"x":75,"y":0,"fileNum":462,"id":15469,"width":25,"height":45},{"x":100,"y":0,"fileNum":462,"id":15470,"width":25,"height":45},{"x":125,"y":0,"fileNum":462,"id":15471,"width":25,"height":45},{"x":0,"y":45,"fileNum":462,"id":15472,"width":25,"height":45},{"x":25,"y":45,"fileNum":462,"id":15473,"width":25,"height":45},{"x":50,"y":45,"fileNum":462,"id":15474,"width":25,"height":45},{"x":75,"y":45,"fileNum":462,"id":15475,"width":25,"height":45},{"x":100,"y":45,"fileNum":462,"id":15476,"width":25,"height":45},{"x":125,"y":45,"fileNum":462,"id":15477,"width":25,"height":45},{"x":0,"y":90,"fileNum":462,"id":15478,"width":25,"height":45},{"x":25,"y":90,"fileNum":462,"id":15479,"width":25,"height":45},{"x":50,"y":90,"fileNum":462,"id":15480,"width":25,"height":45},{"x":75,"y":90,"fileNum":462,"id":15481,"width":25,"height":45},{"x":100,"y":90,"fileNum":462,"id":15482,"width":25,"height":45},{"x":0,"y":135,"fileNum":462,"id":15483,"width":25,"height":45},{"x":25,"y":135,"fileNum":462,"id":15484,"width":25,"height":45},{"x":50,"y":135,"fileNum":462,"id":15485,"width":25,"height":45},{"x":75,"y":135,"fileNum":462,"id":15486,"width":25,"height":45},{"x":100,"y":135,"fileNum":462,"id":15487,"width":25,"height":45},{"x":0,"y":0,"fileNum":465,"id":15492,"width":32,"height":32},{"x":0,"y":0,"fileNum":464,"id":15493,"width":25,"height":45},{"x":25,"y":0,"fileNum":464,"id":15494,"width":25,"height":45},{"x":50,"y":0,"fileNum":464,"id":15495,"width":25,"height":45},{"x":75,"y":0,"fileNum":464,"id":15496,"width":25,"height":45},{"x":100,"y":0,"fileNum":464,"id":15497,"width":25,"height":45},{"x":125,"y":0,"fileNum":464,"id":15498,"width":25,"height":45},{"x":0,"y":45,"fileNum":464,"id":15499,"width":25,"height":45},{"x":25,"y":45,"fileNum":464,"id":15500,"width":25,"height":45},{"x":50,"y":45,"fileNum":464,"id":15501,"width":25,"height":45},{"x":75,"y":45,"fileNum":464,"id":15502,"width":25,"height":45},{"x":100,"y":45,"fileNum":464,"id":15503,"width":25,"height":45},{"x":125,"y":45,"fileNum":464,"id":15504,"width":25,"height":45},{"x":0,"y":90,"fileNum":464,"id":15505,"width":25,"height":45},{"x":25,"y":90,"fileNum":464,"id":15506,"width":25,"height":45},{"x":50,"y":90,"fileNum":464,"id":15507,"width":25,"height":45},{"x":75,"y":90,"fileNum":464,"id":15508,"width":25,"height":45},{"x":100,"y":90,"fileNum":464,"id":15509,"width":25,"height":45},{"x":0,"y":135,"fileNum":464,"id":15510,"width":25,"height":45},{"x":25,"y":135,"fileNum":464,"id":15511,"width":25,"height":45},{"x":50,"y":135,"fileNum":464,"id":15512,"width":25,"height":45},{"x":75,"y":135,"fileNum":464,"id":15513,"width":25,"height":45},{"x":100,"y":135,"fileNum":464,"id":15514,"width":25,"height":45},{"x":0,"y":0,"fileNum":467,"id":15519,"width":32,"height":32},{"x":0,"y":0,"fileNum":466,"id":15520,"width":25,"height":45},{"x":25,"y":0,"fileNum":466,"id":15521,"width":25,"height":45},{"x":50,"y":0,"fileNum":466,"id":15522,"width":25,"height":45},{"x":75,"y":0,"fileNum":466,"id":15523,"width":25,"height":45},{"x":100,"y":0,"fileNum":466,"id":15524,"width":25,"height":45},{"x":125,"y":0,"fileNum":466,"id":15525,"width":25,"height":45},{"x":0,"y":45,"fileNum":466,"id":15526,"width":25,"height":45},{"x":25,"y":45,"fileNum":466,"id":15527,"width":25,"height":45},{"x":50,"y":45,"fileNum":466,"id":15528,"width":25,"height":45},{"x":75,"y":45,"fileNum":466,"id":15529,"width":25,"height":45},{"x":100,"y":45,"fileNum":466,"id":15530,"width":25,"height":45},{"x":125,"y":45,"fileNum":466,"id":15531,"width":25,"height":45},{"x":0,"y":90,"fileNum":466,"id":15532,"width":25,"height":45},{"x":25,"y":90,"fileNum":466,"id":15533,"width":25,"height":45},{"x":50,"y":90,"fileNum":466,"id":15534,"width":25,"height":45},{"x":75,"y":90,"fileNum":466,"id":15535,"width":25,"height":45},{"x":100,"y":90,"fileNum":466,"id":15536,"width":25,"height":45},{"x":0,"y":135,"fileNum":466,"id":15537,"width":25,"height":45},{"x":25,"y":135,"fileNum":466,"id":15538,"width":25,"height":45},{"x":50,"y":135,"fileNum":466,"id":15539,"width":25,"height":45},{"x":75,"y":135,"fileNum":466,"id":15540,"width":25,"height":45},{"x":100,"y":135,"fileNum":466,"id":15541,"width":25,"height":45},{"x":0,"y":0,"fileNum":470,"id":15546,"width":32,"height":32},{"x":0,"y":0,"fileNum":469,"id":15547,"width":25,"height":45},{"x":25,"y":0,"fileNum":469,"id":15548,"width":25,"height":45},{"x":50,"y":0,"fileNum":469,"id":15549,"width":25,"height":45},{"x":75,"y":0,"fileNum":469,"id":15550,"width":25,"height":45},{"x":100,"y":0,"fileNum":469,"id":15551,"width":25,"height":45},{"x":125,"y":0,"fileNum":469,"id":15552,"width":25,"height":45},{"x":0,"y":45,"fileNum":469,"id":15553,"width":25,"height":45},{"x":25,"y":45,"fileNum":469,"id":15554,"width":25,"height":45},{"x":50,"y":45,"fileNum":469,"id":15555,"width":25,"height":45},{"x":75,"y":45,"fileNum":469,"id":15556,"width":25,"height":45},{"x":100,"y":45,"fileNum":469,"id":15557,"width":25,"height":45},{"x":125,"y":45,"fileNum":469,"id":15558,"width":25,"height":45},{"x":0,"y":90,"fileNum":469,"id":15559,"width":25,"height":45},{"x":25,"y":90,"fileNum":469,"id":15560,"width":25,"height":45},{"x":50,"y":90,"fileNum":469,"id":15561,"width":25,"height":45},{"x":75,"y":90,"fileNum":469,"id":15562,"width":25,"height":45},{"x":100,"y":90,"fileNum":469,"id":15563,"width":25,"height":45},{"x":0,"y":135,"fileNum":469,"id":15564,"width":25,"height":45},{"x":25,"y":135,"fileNum":469,"id":15565,"width":25,"height":45},{"x":50,"y":135,"fileNum":469,"id":15566,"width":25,"height":45},{"x":75,"y":135,"fileNum":469,"id":15567,"width":25,"height":45},{"x":100,"y":135,"fileNum":469,"id":15568,"width":25,"height":45},{"x":0,"y":0,"fileNum":471,"id":15574,"width":25,"height":45},{"x":25,"y":0,"fileNum":471,"id":15575,"width":25,"height":45},{"x":50,"y":0,"fileNum":471,"id":15576,"width":25,"height":45},{"x":75,"y":0,"fileNum":471,"id":15577,"width":25,"height":45},{"x":100,"y":0,"fileNum":471,"id":15578,"width":25,"height":45},{"x":125,"y":0,"fileNum":471,"id":15579,"width":25,"height":45},{"x":0,"y":45,"fileNum":471,"id":15580,"width":25,"height":45},{"x":25,"y":45,"fileNum":471,"id":15581,"width":25,"height":45},{"x":50,"y":45,"fileNum":471,"id":15582,"width":25,"height":45},{"x":75,"y":45,"fileNum":471,"id":15583,"width":25,"height":45},{"x":100,"y":45,"fileNum":471,"id":15584,"width":25,"height":45},{"x":125,"y":45,"fileNum":471,"id":15585,"width":25,"height":45},{"x":0,"y":90,"fileNum":471,"id":15586,"width":25,"height":45},{"x":25,"y":90,"fileNum":471,"id":15587,"width":25,"height":45},{"x":50,"y":90,"fileNum":471,"id":15588,"width":25,"height":45},{"x":75,"y":90,"fileNum":471,"id":15589,"width":25,"height":45},{"x":100,"y":90,"fileNum":471,"id":15590,"width":25,"height":45},{"x":0,"y":135,"fileNum":471,"id":15591,"width":25,"height":45},{"x":25,"y":135,"fileNum":471,"id":15592,"width":25,"height":45},{"x":50,"y":135,"fileNum":471,"id":15593,"width":25,"height":45},{"x":75,"y":135,"fileNum":471,"id":15594,"width":25,"height":45},{"x":100,"y":135,"fileNum":471,"id":15595,"width":25,"height":45},{"x":0,"y":0,"fileNum":473,"id":15600,"width":32,"height":32},{"x":0,"y":0,"fileNum":472,"id":15601,"width":25,"height":45},{"x":25,"y":0,"fileNum":472,"id":15602,"width":25,"height":45},{"x":50,"y":0,"fileNum":472,"id":15603,"width":25,"height":45},{"x":75,"y":0,"fileNum":472,"id":15604,"width":25,"height":45},{"x":100,"y":0,"fileNum":472,"id":15605,"width":25,"height":45},{"x":125,"y":0,"fileNum":472,"id":15606,"width":25,"height":45},{"x":0,"y":45,"fileNum":472,"id":15607,"width":25,"height":45},{"x":25,"y":45,"fileNum":472,"id":15608,"width":25,"height":45},{"x":50,"y":45,"fileNum":472,"id":15609,"width":25,"height":45},{"x":75,"y":45,"fileNum":472,"id":15610,"width":25,"height":45},{"x":100,"y":45,"fileNum":472,"id":15611,"width":25,"height":45},{"x":125,"y":45,"fileNum":472,"id":15612,"width":25,"height":45},{"x":0,"y":90,"fileNum":472,"id":15613,"width":25,"height":45},{"x":25,"y":90,"fileNum":472,"id":15614,"width":25,"height":45},{"x":50,"y":90,"fileNum":472,"id":15615,"width":25,"height":45},{"x":75,"y":90,"fileNum":472,"id":15616,"width":25,"height":45},{"x":100,"y":90,"fileNum":472,"id":15617,"width":25,"height":45},{"x":0,"y":135,"fileNum":472,"id":15618,"width":25,"height":45},{"x":25,"y":135,"fileNum":472,"id":15619,"width":25,"height":45},{"x":50,"y":135,"fileNum":472,"id":15620,"width":25,"height":45},{"x":75,"y":135,"fileNum":472,"id":15621,"width":25,"height":45},{"x":100,"y":135,"fileNum":472,"id":15622,"width":25,"height":45},{"x":0,"y":0,"fileNum":475,"id":15627,"width":32,"height":32},{"x":0,"y":0,"fileNum":474,"id":15628,"width":25,"height":45},{"x":25,"y":0,"fileNum":474,"id":15629,"width":25,"height":45},{"x":50,"y":0,"fileNum":474,"id":15630,"width":25,"height":45},{"x":75,"y":0,"fileNum":474,"id":15631,"width":25,"height":45},{"x":100,"y":0,"fileNum":474,"id":15632,"width":25,"height":45},{"x":125,"y":0,"fileNum":474,"id":15633,"width":25,"height":45},{"x":0,"y":45,"fileNum":474,"id":15634,"width":25,"height":45},{"x":25,"y":45,"fileNum":474,"id":15635,"width":25,"height":45},{"x":50,"y":45,"fileNum":474,"id":15636,"width":25,"height":45},{"x":75,"y":45,"fileNum":474,"id":15637,"width":25,"height":45},{"x":100,"y":45,"fileNum":474,"id":15638,"width":25,"height":45},{"x":125,"y":45,"fileNum":474,"id":15639,"width":25,"height":45},{"x":0,"y":90,"fileNum":474,"id":15640,"width":25,"height":45},{"x":25,"y":90,"fileNum":474,"id":15641,"width":25,"height":45},{"x":50,"y":90,"fileNum":474,"id":15642,"width":25,"height":45},{"x":75,"y":90,"fileNum":474,"id":15643,"width":25,"height":45},{"x":100,"y":90,"fileNum":474,"id":15644,"width":25,"height":45},{"x":0,"y":135,"fileNum":474,"id":15645,"width":25,"height":45},{"x":25,"y":135,"fileNum":474,"id":15646,"width":25,"height":45},{"x":50,"y":135,"fileNum":474,"id":15647,"width":25,"height":45},{"x":75,"y":135,"fileNum":474,"id":15648,"width":25,"height":45},{"x":100,"y":135,"fileNum":474,"id":15649,"width":25,"height":45},{"x":0,"y":0,"fileNum":476,"id":15655,"width":25,"height":45},{"x":25,"y":0,"fileNum":476,"id":15656,"width":25,"height":45},{"x":50,"y":0,"fileNum":476,"id":15657,"width":25,"height":45},{"x":75,"y":0,"fileNum":476,"id":15658,"width":25,"height":45},{"x":100,"y":0,"fileNum":476,"id":15659,"width":25,"height":45},{"x":125,"y":0,"fileNum":476,"id":15660,"width":25,"height":45},{"x":0,"y":45,"fileNum":476,"id":15661,"width":25,"height":45},{"x":25,"y":45,"fileNum":476,"id":15662,"width":25,"height":45},{"x":50,"y":45,"fileNum":476,"id":15663,"width":25,"height":45},{"x":75,"y":45,"fileNum":476,"id":15664,"width":25,"height":45},{"x":100,"y":45,"fileNum":476,"id":15665,"width":25,"height":45},{"x":125,"y":45,"fileNum":476,"id":15666,"width":25,"height":45},{"x":0,"y":90,"fileNum":476,"id":15667,"width":25,"height":45},{"x":25,"y":90,"fileNum":476,"id":15668,"width":25,"height":45},{"x":50,"y":90,"fileNum":476,"id":15669,"width":25,"height":45},{"x":75,"y":90,"fileNum":476,"id":15670,"width":25,"height":45},{"x":100,"y":90,"fileNum":476,"id":15671,"width":25,"height":45},{"x":0,"y":135,"fileNum":476,"id":15672,"width":25,"height":45},{"x":25,"y":135,"fileNum":476,"id":15673,"width":25,"height":45},{"x":50,"y":135,"fileNum":476,"id":15674,"width":25,"height":45},{"x":75,"y":135,"fileNum":476,"id":15675,"width":25,"height":45},{"x":100,"y":135,"fileNum":476,"id":15676,"width":25,"height":45},{"x":0,"y":0,"fileNum":480,"id":15681,"width":32,"height":32},{"x":0,"y":0,"fileNum":479,"id":15682,"width":25,"height":45},{"x":25,"y":0,"fileNum":479,"id":15683,"width":25,"height":45},{"x":50,"y":0,"fileNum":479,"id":15684,"width":25,"height":45},{"x":75,"y":0,"fileNum":479,"id":15685,"width":25,"height":45},{"x":100,"y":0,"fileNum":479,"id":15686,"width":25,"height":45},{"x":125,"y":0,"fileNum":479,"id":15687,"width":25,"height":45},{"x":0,"y":45,"fileNum":479,"id":15688,"width":25,"height":45},{"x":25,"y":45,"fileNum":479,"id":15689,"width":25,"height":45},{"x":50,"y":45,"fileNum":479,"id":15690,"width":25,"height":45},{"x":75,"y":45,"fileNum":479,"id":15691,"width":25,"height":45},{"x":100,"y":45,"fileNum":479,"id":15692,"width":25,"height":45},{"x":125,"y":45,"fileNum":479,"id":15693,"width":25,"height":45},{"x":0,"y":90,"fileNum":479,"id":15694,"width":25,"height":45},{"x":25,"y":90,"fileNum":479,"id":15695,"width":25,"height":45},{"x":50,"y":90,"fileNum":479,"id":15696,"width":25,"height":45},{"x":75,"y":90,"fileNum":479,"id":15697,"width":25,"height":45},{"x":100,"y":90,"fileNum":479,"id":15698,"width":25,"height":45},{"x":0,"y":135,"fileNum":479,"id":15699,"width":25,"height":45},{"x":25,"y":135,"fileNum":479,"id":15700,"width":25,"height":45},{"x":50,"y":135,"fileNum":479,"id":15701,"width":25,"height":45},{"x":75,"y":135,"fileNum":479,"id":15702,"width":25,"height":45},{"x":100,"y":135,"fileNum":479,"id":15703,"width":25,"height":45},{"x":0,"y":0,"fileNum":482,"id":15708,"width":32,"height":32},{"x":0,"y":0,"fileNum":481,"id":15709,"width":25,"height":45},{"x":25,"y":0,"fileNum":481,"id":15710,"width":25,"height":45},{"x":50,"y":0,"fileNum":481,"id":15711,"width":25,"height":45},{"x":75,"y":0,"fileNum":481,"id":15712,"width":25,"height":45},{"x":100,"y":0,"fileNum":481,"id":15713,"width":25,"height":45},{"x":125,"y":0,"fileNum":481,"id":15714,"width":25,"height":45},{"x":0,"y":45,"fileNum":481,"id":15715,"width":25,"height":45},{"x":25,"y":45,"fileNum":481,"id":15716,"width":25,"height":45},{"x":50,"y":45,"fileNum":481,"id":15717,"width":25,"height":45},{"x":75,"y":45,"fileNum":481,"id":15718,"width":25,"height":45},{"x":100,"y":45,"fileNum":481,"id":15719,"width":25,"height":45},{"x":125,"y":45,"fileNum":481,"id":15720,"width":25,"height":45},{"x":0,"y":90,"fileNum":481,"id":15721,"width":25,"height":45},{"x":25,"y":90,"fileNum":481,"id":15722,"width":25,"height":45},{"x":50,"y":90,"fileNum":481,"id":15723,"width":25,"height":45},{"x":75,"y":90,"fileNum":481,"id":15724,"width":25,"height":45},{"x":100,"y":90,"fileNum":481,"id":15725,"width":25,"height":45},{"x":0,"y":135,"fileNum":481,"id":15726,"width":25,"height":45},{"x":25,"y":135,"fileNum":481,"id":15727,"width":25,"height":45},{"x":50,"y":135,"fileNum":481,"id":15728,"width":25,"height":45},{"x":75,"y":135,"fileNum":481,"id":15729,"width":25,"height":45},{"x":100,"y":135,"fileNum":481,"id":15730,"width":25,"height":45},{"x":0,"y":0,"fileNum":483,"id":15736,"width":25,"height":45},{"x":25,"y":0,"fileNum":483,"id":15737,"width":25,"height":45},{"x":50,"y":0,"fileNum":483,"id":15738,"width":25,"height":45},{"x":75,"y":0,"fileNum":483,"id":15739,"width":25,"height":45},{"x":100,"y":0,"fileNum":483,"id":15740,"width":25,"height":45},{"x":125,"y":0,"fileNum":483,"id":15741,"width":25,"height":45},{"x":0,"y":45,"fileNum":483,"id":15742,"width":25,"height":45},{"x":25,"y":45,"fileNum":483,"id":15743,"width":25,"height":45},{"x":50,"y":45,"fileNum":483,"id":15744,"width":25,"height":45},{"x":75,"y":45,"fileNum":483,"id":15745,"width":25,"height":45},{"x":100,"y":45,"fileNum":483,"id":15746,"width":25,"height":45},{"x":125,"y":45,"fileNum":483,"id":15747,"width":25,"height":45},{"x":0,"y":90,"fileNum":483,"id":15748,"width":25,"height":45},{"x":25,"y":90,"fileNum":483,"id":15749,"width":25,"height":45},{"x":50,"y":90,"fileNum":483,"id":15750,"width":25,"height":45},{"x":75,"y":90,"fileNum":483,"id":15751,"width":25,"height":45},{"x":100,"y":90,"fileNum":483,"id":15752,"width":25,"height":45},{"x":0,"y":135,"fileNum":483,"id":15753,"width":25,"height":45},{"x":25,"y":135,"fileNum":483,"id":15754,"width":25,"height":45},{"x":50,"y":135,"fileNum":483,"id":15755,"width":25,"height":45},{"x":75,"y":135,"fileNum":483,"id":15756,"width":25,"height":45},{"x":100,"y":135,"fileNum":483,"id":15757,"width":25,"height":45},{"x":0,"y":0,"fileNum":485,"id":15762,"width":32,"height":32},{"x":0,"y":0,"fileNum":484,"id":15763,"width":25,"height":45},{"x":25,"y":0,"fileNum":484,"id":15764,"width":25,"height":45},{"x":50,"y":0,"fileNum":484,"id":15765,"width":25,"height":45},{"x":75,"y":0,"fileNum":484,"id":15766,"width":25,"height":45},{"x":100,"y":0,"fileNum":484,"id":15767,"width":25,"height":45},{"x":125,"y":0,"fileNum":484,"id":15768,"width":25,"height":45},{"x":0,"y":45,"fileNum":484,"id":15769,"width":25,"height":45},{"x":25,"y":45,"fileNum":484,"id":15770,"width":25,"height":45},{"x":50,"y":45,"fileNum":484,"id":15771,"width":25,"height":45},{"x":75,"y":45,"fileNum":484,"id":15772,"width":25,"height":45},{"x":100,"y":45,"fileNum":484,"id":15773,"width":25,"height":45},{"x":125,"y":45,"fileNum":484,"id":15774,"width":25,"height":45},{"x":0,"y":90,"fileNum":484,"id":15775,"width":25,"height":45},{"x":25,"y":90,"fileNum":484,"id":15776,"width":25,"height":45},{"x":50,"y":90,"fileNum":484,"id":15777,"width":25,"height":45},{"x":75,"y":90,"fileNum":484,"id":15778,"width":25,"height":45},{"x":100,"y":90,"fileNum":484,"id":15779,"width":25,"height":45},{"x":0,"y":135,"fileNum":484,"id":15780,"width":25,"height":45},{"x":25,"y":135,"fileNum":484,"id":15781,"width":25,"height":45},{"x":50,"y":135,"fileNum":484,"id":15782,"width":25,"height":45},{"x":75,"y":135,"fileNum":484,"id":15783,"width":25,"height":45},{"x":100,"y":135,"fileNum":484,"id":15784,"width":25,"height":45},{"x":0,"y":0,"fileNum":487,"id":15789,"width":32,"height":32},{"x":0,"y":0,"fileNum":486,"id":15790,"width":25,"height":45},{"x":25,"y":0,"fileNum":486,"id":15791,"width":25,"height":45},{"x":50,"y":0,"fileNum":486,"id":15792,"width":25,"height":45},{"x":75,"y":0,"fileNum":486,"id":15793,"width":25,"height":45},{"x":100,"y":0,"fileNum":486,"id":15794,"width":25,"height":45},{"x":125,"y":0,"fileNum":486,"id":15795,"width":25,"height":45},{"x":0,"y":45,"fileNum":486,"id":15796,"width":25,"height":45},{"x":25,"y":45,"fileNum":486,"id":15797,"width":25,"height":45},{"x":50,"y":45,"fileNum":486,"id":15798,"width":25,"height":45},{"x":75,"y":45,"fileNum":486,"id":15799,"width":25,"height":45},{"x":100,"y":45,"fileNum":486,"id":15800,"width":25,"height":45},{"x":125,"y":45,"fileNum":486,"id":15801,"width":25,"height":45},{"x":0,"y":90,"fileNum":486,"id":15802,"width":25,"height":45},{"x":25,"y":90,"fileNum":486,"id":15803,"width":25,"height":45},{"x":50,"y":90,"fileNum":486,"id":15804,"width":25,"height":45},{"x":75,"y":90,"fileNum":486,"id":15805,"width":25,"height":45},{"x":100,"y":90,"fileNum":486,"id":15806,"width":25,"height":45},{"x":0,"y":135,"fileNum":486,"id":15807,"width":25,"height":45},{"x":25,"y":135,"fileNum":486,"id":15808,"width":25,"height":45},{"x":50,"y":135,"fileNum":486,"id":15809,"width":25,"height":45},{"x":75,"y":135,"fileNum":486,"id":15810,"width":25,"height":45},{"x":100,"y":135,"fileNum":486,"id":15811,"width":25,"height":45},{"x":0,"y":0,"fileNum":490,"id":15816,"width":32,"height":32},{"x":0,"y":0,"fileNum":489,"id":15817,"width":25,"height":45},{"x":25,"y":0,"fileNum":489,"id":15818,"width":25,"height":45},{"x":50,"y":0,"fileNum":489,"id":15819,"width":25,"height":45},{"x":75,"y":0,"fileNum":489,"id":15820,"width":25,"height":45},{"x":100,"y":0,"fileNum":489,"id":15821,"width":25,"height":45},{"x":125,"y":0,"fileNum":489,"id":15822,"width":25,"height":45},{"x":0,"y":45,"fileNum":489,"id":15823,"width":25,"height":45},{"x":25,"y":45,"fileNum":489,"id":15824,"width":25,"height":45},{"x":50,"y":45,"fileNum":489,"id":15825,"width":25,"height":45},{"x":75,"y":45,"fileNum":489,"id":15826,"width":25,"height":45},{"x":100,"y":45,"fileNum":489,"id":15827,"width":25,"height":45},{"x":125,"y":45,"fileNum":489,"id":15828,"width":25,"height":45},{"x":0,"y":90,"fileNum":489,"id":15829,"width":25,"height":45},{"x":25,"y":90,"fileNum":489,"id":15830,"width":25,"height":45},{"x":50,"y":90,"fileNum":489,"id":15831,"width":25,"height":45},{"x":75,"y":90,"fileNum":489,"id":15832,"width":25,"height":45},{"x":100,"y":90,"fileNum":489,"id":15833,"width":25,"height":45},{"x":0,"y":135,"fileNum":489,"id":15834,"width":25,"height":45},{"x":25,"y":135,"fileNum":489,"id":15835,"width":25,"height":45},{"x":50,"y":135,"fileNum":489,"id":15836,"width":25,"height":45},{"x":75,"y":135,"fileNum":489,"id":15837,"width":25,"height":45},{"x":100,"y":135,"fileNum":489,"id":15838,"width":25,"height":45},{"x":0,"y":0,"fileNum":492,"id":15843,"width":32,"height":32},{"x":0,"y":0,"fileNum":491,"id":15844,"width":25,"height":45},{"x":25,"y":0,"fileNum":491,"id":15845,"width":25,"height":45},{"x":50,"y":0,"fileNum":491,"id":15846,"width":25,"height":45},{"x":75,"y":0,"fileNum":491,"id":15847,"width":25,"height":45},{"x":100,"y":0,"fileNum":491,"id":15848,"width":25,"height":45},{"x":125,"y":0,"fileNum":491,"id":15849,"width":25,"height":45},{"x":0,"y":45,"fileNum":491,"id":15850,"width":25,"height":45},{"x":25,"y":45,"fileNum":491,"id":15851,"width":25,"height":45},{"x":50,"y":45,"fileNum":491,"id":15852,"width":25,"height":45},{"x":75,"y":45,"fileNum":491,"id":15853,"width":25,"height":45},{"x":100,"y":45,"fileNum":491,"id":15854,"width":25,"height":45},{"x":125,"y":45,"fileNum":491,"id":15855,"width":25,"height":45},{"x":0,"y":90,"fileNum":491,"id":15856,"width":25,"height":45},{"x":25,"y":90,"fileNum":491,"id":15857,"width":25,"height":45},{"x":50,"y":90,"fileNum":491,"id":15858,"width":25,"height":45},{"x":75,"y":90,"fileNum":491,"id":15859,"width":25,"height":45},{"x":100,"y":90,"fileNum":491,"id":15860,"width":25,"height":45},{"x":0,"y":135,"fileNum":491,"id":15861,"width":25,"height":45},{"x":25,"y":135,"fileNum":491,"id":15862,"width":25,"height":45},{"x":50,"y":135,"fileNum":491,"id":15863,"width":25,"height":45},{"x":75,"y":135,"fileNum":491,"id":15864,"width":25,"height":45},{"x":100,"y":135,"fileNum":491,"id":15865,"width":25,"height":45},{"x":0,"y":0,"fileNum":494,"id":15870,"width":32,"height":32},{"x":0,"y":0,"fileNum":493,"id":15871,"width":25,"height":45},{"x":25,"y":0,"fileNum":493,"id":15872,"width":25,"height":45},{"x":50,"y":0,"fileNum":493,"id":15873,"width":25,"height":45},{"x":75,"y":0,"fileNum":493,"id":15874,"width":25,"height":45},{"x":100,"y":0,"fileNum":493,"id":15875,"width":25,"height":45},{"x":125,"y":0,"fileNum":493,"id":15876,"width":25,"height":45},{"x":0,"y":45,"fileNum":493,"id":15877,"width":25,"height":45},{"x":25,"y":45,"fileNum":493,"id":15878,"width":25,"height":45},{"x":50,"y":45,"fileNum":493,"id":15879,"width":25,"height":45},{"x":75,"y":45,"fileNum":493,"id":15880,"width":25,"height":45},{"x":100,"y":45,"fileNum":493,"id":15881,"width":25,"height":45},{"x":125,"y":45,"fileNum":493,"id":15882,"width":25,"height":45},{"x":0,"y":90,"fileNum":493,"id":15883,"width":25,"height":45},{"x":25,"y":90,"fileNum":493,"id":15884,"width":25,"height":45},{"x":50,"y":90,"fileNum":493,"id":15885,"width":25,"height":45},{"x":75,"y":90,"fileNum":493,"id":15886,"width":25,"height":45},{"x":100,"y":90,"fileNum":493,"id":15887,"width":25,"height":45},{"x":0,"y":135,"fileNum":493,"id":15888,"width":25,"height":45},{"x":25,"y":135,"fileNum":493,"id":15889,"width":25,"height":45},{"x":50,"y":135,"fileNum":493,"id":15890,"width":25,"height":45},{"x":75,"y":135,"fileNum":493,"id":15891,"width":25,"height":45},{"x":100,"y":135,"fileNum":493,"id":15892,"width":25,"height":45},{"x":0,"y":0,"fileNum":496,"id":15897,"width":32,"height":32},{"x":0,"y":0,"fileNum":495,"id":15898,"width":25,"height":45},{"x":25,"y":0,"fileNum":495,"id":15899,"width":25,"height":45},{"x":50,"y":0,"fileNum":495,"id":15900,"width":25,"height":45},{"x":75,"y":0,"fileNum":495,"id":15901,"width":25,"height":45},{"x":100,"y":0,"fileNum":495,"id":15902,"width":25,"height":45},{"x":125,"y":0,"fileNum":495,"id":15903,"width":25,"height":45},{"x":0,"y":45,"fileNum":495,"id":15904,"width":25,"height":45},{"x":25,"y":45,"fileNum":495,"id":15905,"width":25,"height":45},{"x":50,"y":45,"fileNum":495,"id":15906,"width":25,"height":45},{"x":75,"y":45,"fileNum":495,"id":15907,"width":25,"height":45},{"x":100,"y":45,"fileNum":495,"id":15908,"width":25,"height":45},{"x":125,"y":45,"fileNum":495,"id":15909,"width":25,"height":45},{"x":0,"y":90,"fileNum":495,"id":15910,"width":25,"height":45},{"x":25,"y":90,"fileNum":495,"id":15911,"width":25,"height":45},{"x":50,"y":90,"fileNum":495,"id":15912,"width":25,"height":45},{"x":75,"y":90,"fileNum":495,"id":15913,"width":25,"height":45},{"x":100,"y":90,"fileNum":495,"id":15914,"width":25,"height":45},{"x":0,"y":135,"fileNum":495,"id":15915,"width":25,"height":45},{"x":25,"y":135,"fileNum":495,"id":15916,"width":25,"height":45},{"x":50,"y":135,"fileNum":495,"id":15917,"width":25,"height":45},{"x":75,"y":135,"fileNum":495,"id":15918,"width":25,"height":45},{"x":100,"y":135,"fileNum":495,"id":15919,"width":25,"height":45},{"x":0,"y":0,"fileNum":498,"id":15924,"width":32,"height":32},{"x":0,"y":0,"fileNum":497,"id":15925,"width":25,"height":45},{"x":25,"y":0,"fileNum":497,"id":15926,"width":25,"height":45},{"x":50,"y":0,"fileNum":497,"id":15927,"width":25,"height":45},{"x":75,"y":0,"fileNum":497,"id":15928,"width":25,"height":45},{"x":100,"y":0,"fileNum":497,"id":15929,"width":25,"height":45},{"x":125,"y":0,"fileNum":497,"id":15930,"width":25,"height":45},{"x":0,"y":45,"fileNum":497,"id":15931,"width":25,"height":45},{"x":25,"y":45,"fileNum":497,"id":15932,"width":25,"height":45},{"x":50,"y":45,"fileNum":497,"id":15933,"width":25,"height":45},{"x":75,"y":45,"fileNum":497,"id":15934,"width":25,"height":45},{"x":100,"y":45,"fileNum":497,"id":15935,"width":25,"height":45},{"x":125,"y":45,"fileNum":497,"id":15936,"width":25,"height":45},{"x":0,"y":90,"fileNum":497,"id":15937,"width":25,"height":45},{"x":25,"y":90,"fileNum":497,"id":15938,"width":25,"height":45},{"x":50,"y":90,"fileNum":497,"id":15939,"width":25,"height":45},{"x":75,"y":90,"fileNum":497,"id":15940,"width":25,"height":45},{"x":100,"y":90,"fileNum":497,"id":15941,"width":25,"height":45},{"x":0,"y":135,"fileNum":497,"id":15942,"width":25,"height":45},{"x":25,"y":135,"fileNum":497,"id":15943,"width":25,"height":45},{"x":50,"y":135,"fileNum":497,"id":15944,"width":25,"height":45},{"x":75,"y":135,"fileNum":497,"id":15945,"width":25,"height":45},{"x":100,"y":135,"fileNum":497,"id":15946,"width":25,"height":45},{"x":0,"y":0,"fileNum":501,"id":15951,"width":32,"height":32},{"x":0,"y":0,"fileNum":500,"id":15952,"width":25,"height":45},{"x":25,"y":0,"fileNum":500,"id":15953,"width":25,"height":45},{"x":50,"y":0,"fileNum":500,"id":15954,"width":25,"height":45},{"x":75,"y":0,"fileNum":500,"id":15955,"width":25,"height":45},{"x":100,"y":0,"fileNum":500,"id":15956,"width":25,"height":45},{"x":125,"y":0,"fileNum":500,"id":15957,"width":25,"height":45},{"x":0,"y":45,"fileNum":500,"id":15958,"width":25,"height":45},{"x":25,"y":45,"fileNum":500,"id":15959,"width":25,"height":45},{"x":50,"y":45,"fileNum":500,"id":15960,"width":25,"height":45},{"x":75,"y":45,"fileNum":500,"id":15961,"width":25,"height":45},{"x":100,"y":45,"fileNum":500,"id":15962,"width":25,"height":45},{"x":125,"y":45,"fileNum":500,"id":15963,"width":25,"height":45},{"x":0,"y":90,"fileNum":500,"id":15964,"width":25,"height":45},{"x":25,"y":90,"fileNum":500,"id":15965,"width":25,"height":45},{"x":50,"y":90,"fileNum":500,"id":15966,"width":25,"height":45},{"x":75,"y":90,"fileNum":500,"id":15967,"width":25,"height":45},{"x":100,"y":90,"fileNum":500,"id":15968,"width":25,"height":45},{"x":0,"y":135,"fileNum":500,"id":15969,"width":25,"height":45},{"x":25,"y":135,"fileNum":500,"id":15970,"width":25,"height":45},{"x":50,"y":135,"fileNum":500,"id":15971,"width":25,"height":45},{"x":75,"y":135,"fileNum":500,"id":15972,"width":25,"height":45},{"x":100,"y":135,"fileNum":500,"id":15973,"width":25,"height":45},{"x":0,"y":0,"fileNum":503,"id":15978,"width":32,"height":32},{"x":0,"y":0,"fileNum":502,"id":15979,"width":25,"height":45},{"x":25,"y":0,"fileNum":502,"id":15980,"width":25,"height":45},{"x":50,"y":0,"fileNum":502,"id":15981,"width":25,"height":45},{"x":75,"y":0,"fileNum":502,"id":15982,"width":25,"height":45},{"x":100,"y":0,"fileNum":502,"id":15983,"width":25,"height":45},{"x":125,"y":0,"fileNum":502,"id":15984,"width":25,"height":45},{"x":0,"y":45,"fileNum":502,"id":15985,"width":25,"height":45},{"x":25,"y":45,"fileNum":502,"id":15986,"width":25,"height":45},{"x":50,"y":45,"fileNum":502,"id":15987,"width":25,"height":45},{"x":75,"y":45,"fileNum":502,"id":15988,"width":25,"height":45},{"x":100,"y":45,"fileNum":502,"id":15989,"width":25,"height":45},{"x":125,"y":45,"fileNum":502,"id":15990,"width":25,"height":45},{"x":0,"y":90,"fileNum":502,"id":15991,"width":25,"height":45},{"x":25,"y":90,"fileNum":502,"id":15992,"width":25,"height":45},{"x":50,"y":90,"fileNum":502,"id":15993,"width":25,"height":45},{"x":75,"y":90,"fileNum":502,"id":15994,"width":25,"height":45},{"x":100,"y":90,"fileNum":502,"id":15995,"width":25,"height":45},{"x":0,"y":135,"fileNum":502,"id":15996,"width":25,"height":45},{"x":25,"y":135,"fileNum":502,"id":15997,"width":25,"height":45},{"x":50,"y":135,"fileNum":502,"id":15998,"width":25,"height":45},{"x":75,"y":135,"fileNum":502,"id":15999,"width":25,"height":45},{"x":100,"y":135,"fileNum":502,"id":16000,"width":25,"height":45},{"x":0,"y":0,"fileNum":505,"id":16005,"width":32,"height":32},{"x":0,"y":0,"fileNum":504,"id":16006,"width":25,"height":45},{"x":25,"y":0,"fileNum":504,"id":16007,"width":25,"height":45},{"x":50,"y":0,"fileNum":504,"id":16008,"width":25,"height":45},{"x":75,"y":0,"fileNum":504,"id":16009,"width":25,"height":45},{"x":100,"y":0,"fileNum":504,"id":16010,"width":25,"height":45},{"x":125,"y":0,"fileNum":504,"id":16011,"width":25,"height":45},{"x":0,"y":45,"fileNum":504,"id":16012,"width":25,"height":45},{"x":25,"y":45,"fileNum":504,"id":16013,"width":25,"height":45},{"x":50,"y":45,"fileNum":504,"id":16014,"width":25,"height":45},{"x":75,"y":45,"fileNum":504,"id":16015,"width":25,"height":45},{"x":100,"y":45,"fileNum":504,"id":16016,"width":25,"height":45},{"x":125,"y":45,"fileNum":504,"id":16017,"width":25,"height":45},{"x":0,"y":90,"fileNum":504,"id":16018,"width":25,"height":45},{"x":25,"y":90,"fileNum":504,"id":16019,"width":25,"height":45},{"x":50,"y":90,"fileNum":504,"id":16020,"width":25,"height":45},{"x":75,"y":90,"fileNum":504,"id":16021,"width":25,"height":45},{"x":100,"y":90,"fileNum":504,"id":16022,"width":25,"height":45},{"x":0,"y":135,"fileNum":504,"id":16023,"width":25,"height":45},{"x":25,"y":135,"fileNum":504,"id":16024,"width":25,"height":45},{"x":50,"y":135,"fileNum":504,"id":16025,"width":25,"height":45},{"x":75,"y":135,"fileNum":504,"id":16026,"width":25,"height":45},{"x":100,"y":135,"fileNum":504,"id":16027,"width":25,"height":45},{"x":0,"y":0,"fileNum":507,"id":16032,"width":32,"height":32},{"x":0,"y":0,"fileNum":506,"id":16033,"width":25,"height":45},{"x":25,"y":0,"fileNum":506,"id":16034,"width":25,"height":45},{"x":50,"y":0,"fileNum":506,"id":16035,"width":25,"height":45},{"x":75,"y":0,"fileNum":506,"id":16036,"width":25,"height":45},{"x":100,"y":0,"fileNum":506,"id":16037,"width":25,"height":45},{"x":125,"y":0,"fileNum":506,"id":16038,"width":25,"height":45},{"x":0,"y":45,"fileNum":506,"id":16039,"width":25,"height":45},{"x":25,"y":45,"fileNum":506,"id":16040,"width":25,"height":45},{"x":50,"y":45,"fileNum":506,"id":16041,"width":25,"height":45},{"x":75,"y":45,"fileNum":506,"id":16042,"width":25,"height":45},{"x":100,"y":45,"fileNum":506,"id":16043,"width":25,"height":45},{"x":125,"y":45,"fileNum":506,"id":16044,"width":25,"height":45},{"x":0,"y":90,"fileNum":506,"id":16045,"width":25,"height":45},{"x":25,"y":90,"fileNum":506,"id":16046,"width":25,"height":45},{"x":50,"y":90,"fileNum":506,"id":16047,"width":25,"height":45},{"x":75,"y":90,"fileNum":506,"id":16048,"width":25,"height":45},{"x":100,"y":90,"fileNum":506,"id":16049,"width":25,"height":45},{"x":0,"y":135,"fileNum":506,"id":16050,"width":25,"height":45},{"x":25,"y":135,"fileNum":506,"id":16051,"width":25,"height":45},{"x":50,"y":135,"fileNum":506,"id":16052,"width":25,"height":45},{"x":75,"y":135,"fileNum":506,"id":16053,"width":25,"height":45},{"x":100,"y":135,"fileNum":506,"id":16054,"width":25,"height":45},{"x":0,"y":0,"fileNum":510,"id":16059,"width":32,"height":32},{"x":0,"y":0,"fileNum":508,"id":16060,"width":25,"height":45},{"x":25,"y":0,"fileNum":508,"id":16061,"width":25,"height":45},{"x":50,"y":0,"fileNum":508,"id":16062,"width":25,"height":45},{"x":75,"y":0,"fileNum":508,"id":16063,"width":25,"height":45},{"x":100,"y":0,"fileNum":508,"id":16064,"width":25,"height":45},{"x":125,"y":0,"fileNum":508,"id":16065,"width":25,"height":45},{"x":0,"y":45,"fileNum":508,"id":16066,"width":25,"height":45},{"x":25,"y":45,"fileNum":508,"id":16067,"width":25,"height":45},{"x":50,"y":45,"fileNum":508,"id":16068,"width":25,"height":45},{"x":75,"y":45,"fileNum":508,"id":16069,"width":25,"height":45},{"x":100,"y":45,"fileNum":508,"id":16070,"width":25,"height":45},{"x":125,"y":45,"fileNum":508,"id":16071,"width":25,"height":45},{"x":0,"y":90,"fileNum":508,"id":16072,"width":25,"height":45},{"x":25,"y":90,"fileNum":508,"id":16073,"width":25,"height":45},{"x":50,"y":90,"fileNum":508,"id":16074,"width":25,"height":45},{"x":75,"y":90,"fileNum":508,"id":16075,"width":25,"height":45},{"x":100,"y":90,"fileNum":508,"id":16076,"width":25,"height":45},{"x":0,"y":135,"fileNum":508,"id":16077,"width":25,"height":45},{"x":25,"y":135,"fileNum":508,"id":16078,"width":25,"height":45},{"x":50,"y":135,"fileNum":508,"id":16079,"width":25,"height":45},{"x":75,"y":135,"fileNum":508,"id":16080,"width":25,"height":45},{"x":100,"y":135,"fileNum":508,"id":16081,"width":25,"height":45},{"x":0,"y":0,"fileNum":512,"id":16086,"width":32,"height":32},{"x":0,"y":0,"fileNum":511,"id":16087,"width":25,"height":45},{"x":25,"y":0,"fileNum":511,"id":16088,"width":25,"height":45},{"x":50,"y":0,"fileNum":511,"id":16089,"width":25,"height":45},{"x":75,"y":0,"fileNum":511,"id":16090,"width":25,"height":45},{"x":100,"y":0,"fileNum":511,"id":16091,"width":25,"height":45},{"x":125,"y":0,"fileNum":511,"id":16092,"width":25,"height":45},{"x":0,"y":45,"fileNum":511,"id":16093,"width":25,"height":45},{"x":25,"y":45,"fileNum":511,"id":16094,"width":25,"height":45},{"x":50,"y":45,"fileNum":511,"id":16095,"width":25,"height":45},{"x":75,"y":45,"fileNum":511,"id":16096,"width":25,"height":45},{"x":100,"y":45,"fileNum":511,"id":16097,"width":25,"height":45},{"x":125,"y":45,"fileNum":511,"id":16098,"width":25,"height":45},{"x":0,"y":90,"fileNum":511,"id":16099,"width":25,"height":45},{"x":25,"y":90,"fileNum":511,"id":16100,"width":25,"height":45},{"x":50,"y":90,"fileNum":511,"id":16101,"width":25,"height":45},{"x":75,"y":90,"fileNum":511,"id":16102,"width":25,"height":45},{"x":100,"y":90,"fileNum":511,"id":16103,"width":25,"height":45},{"x":0,"y":135,"fileNum":511,"id":16104,"width":25,"height":45},{"x":25,"y":135,"fileNum":511,"id":16105,"width":25,"height":45},{"x":50,"y":135,"fileNum":511,"id":16106,"width":25,"height":45},{"x":75,"y":135,"fileNum":511,"id":16107,"width":25,"height":45},{"x":100,"y":135,"fileNum":511,"id":16108,"width":25,"height":45},{"x":0,"y":0,"fileNum":514,"id":16113,"width":32,"height":32},{"x":0,"y":0,"fileNum":513,"id":16114,"width":25,"height":45},{"x":25,"y":0,"fileNum":513,"id":16115,"width":25,"height":45},{"x":50,"y":0,"fileNum":513,"id":16116,"width":25,"height":45},{"x":75,"y":0,"fileNum":513,"id":16117,"width":25,"height":45},{"x":100,"y":0,"fileNum":513,"id":16118,"width":25,"height":45},{"x":125,"y":0,"fileNum":513,"id":16119,"width":25,"height":45},{"x":0,"y":45,"fileNum":513,"id":16120,"width":25,"height":45},{"x":25,"y":45,"fileNum":513,"id":16121,"width":25,"height":45},{"x":50,"y":45,"fileNum":513,"id":16122,"width":25,"height":45},{"x":75,"y":45,"fileNum":513,"id":16123,"width":25,"height":45},{"x":100,"y":45,"fileNum":513,"id":16124,"width":25,"height":45},{"x":125,"y":45,"fileNum":513,"id":16125,"width":25,"height":45},{"x":0,"y":90,"fileNum":513,"id":16126,"width":25,"height":45},{"x":25,"y":90,"fileNum":513,"id":16127,"width":25,"height":45},{"x":50,"y":90,"fileNum":513,"id":16128,"width":25,"height":45},{"x":75,"y":90,"fileNum":513,"id":16129,"width":25,"height":45},{"x":100,"y":90,"fileNum":513,"id":16130,"width":25,"height":45},{"x":0,"y":135,"fileNum":513,"id":16131,"width":25,"height":45},{"x":25,"y":135,"fileNum":513,"id":16132,"width":25,"height":45},{"x":50,"y":135,"fileNum":513,"id":16133,"width":25,"height":45},{"x":75,"y":135,"fileNum":513,"id":16134,"width":25,"height":45},{"x":100,"y":135,"fileNum":513,"id":16135,"width":25,"height":45},{"x":0,"y":0,"fileNum":516,"id":16140,"width":32,"height":32},{"x":0,"y":0,"fileNum":515,"id":16141,"width":25,"height":45},{"x":25,"y":0,"fileNum":515,"id":16142,"width":25,"height":45},{"x":50,"y":0,"fileNum":515,"id":16143,"width":25,"height":45},{"x":75,"y":0,"fileNum":515,"id":16144,"width":25,"height":45},{"x":100,"y":0,"fileNum":515,"id":16145,"width":25,"height":45},{"x":125,"y":0,"fileNum":515,"id":16146,"width":25,"height":45},{"x":0,"y":45,"fileNum":515,"id":16147,"width":25,"height":45},{"x":25,"y":45,"fileNum":515,"id":16148,"width":25,"height":45},{"x":50,"y":45,"fileNum":515,"id":16149,"width":25,"height":45},{"x":75,"y":45,"fileNum":515,"id":16150,"width":25,"height":45},{"x":100,"y":45,"fileNum":515,"id":16151,"width":25,"height":45},{"x":125,"y":45,"fileNum":515,"id":16152,"width":25,"height":45},{"x":0,"y":90,"fileNum":515,"id":16153,"width":25,"height":45},{"x":25,"y":90,"fileNum":515,"id":16154,"width":25,"height":45},{"x":50,"y":90,"fileNum":515,"id":16155,"width":25,"height":45},{"x":75,"y":90,"fileNum":515,"id":16156,"width":25,"height":45},{"x":100,"y":90,"fileNum":515,"id":16157,"width":25,"height":45},{"x":0,"y":135,"fileNum":515,"id":16158,"width":25,"height":45},{"x":25,"y":135,"fileNum":515,"id":16159,"width":25,"height":45},{"x":50,"y":135,"fileNum":515,"id":16160,"width":25,"height":45},{"x":75,"y":135,"fileNum":515,"id":16161,"width":25,"height":45},{"x":100,"y":135,"fileNum":515,"id":16162,"width":25,"height":45},{"x":0,"y":0,"fileNum":518,"id":16167,"width":32,"height":32},{"x":0,"y":0,"fileNum":517,"id":16168,"width":25,"height":45},{"x":25,"y":0,"fileNum":517,"id":16169,"width":25,"height":45},{"x":50,"y":0,"fileNum":517,"id":16170,"width":25,"height":45},{"x":75,"y":0,"fileNum":517,"id":16171,"width":25,"height":45},{"x":100,"y":0,"fileNum":517,"id":16172,"width":25,"height":45},{"x":125,"y":0,"fileNum":517,"id":16173,"width":25,"height":45},{"x":0,"y":45,"fileNum":517,"id":16174,"width":25,"height":45},{"x":25,"y":45,"fileNum":517,"id":16175,"width":25,"height":45},{"x":50,"y":45,"fileNum":517,"id":16176,"width":25,"height":45},{"x":75,"y":45,"fileNum":517,"id":16177,"width":25,"height":45},{"x":100,"y":45,"fileNum":517,"id":16178,"width":25,"height":45},{"x":125,"y":45,"fileNum":517,"id":16179,"width":25,"height":45},{"x":0,"y":90,"fileNum":517,"id":16180,"width":25,"height":45},{"x":25,"y":90,"fileNum":517,"id":16181,"width":25,"height":45},{"x":50,"y":90,"fileNum":517,"id":16182,"width":25,"height":45},{"x":75,"y":90,"fileNum":517,"id":16183,"width":25,"height":45},{"x":100,"y":90,"fileNum":517,"id":16184,"width":25,"height":45},{"x":0,"y":135,"fileNum":517,"id":16185,"width":25,"height":45},{"x":25,"y":135,"fileNum":517,"id":16186,"width":25,"height":45},{"x":50,"y":135,"fileNum":517,"id":16187,"width":25,"height":45},{"x":75,"y":135,"fileNum":517,"id":16188,"width":25,"height":45},{"x":100,"y":135,"fileNum":517,"id":16189,"width":25,"height":45},{"x":0,"y":0,"fileNum":521,"id":16194,"width":32,"height":32},{"x":0,"y":0,"fileNum":519,"id":16195,"width":25,"height":45},{"x":25,"y":0,"fileNum":519,"id":16196,"width":25,"height":45},{"x":50,"y":0,"fileNum":519,"id":16197,"width":25,"height":45},{"x":75,"y":0,"fileNum":519,"id":16198,"width":25,"height":45},{"x":100,"y":0,"fileNum":519,"id":16199,"width":25,"height":45},{"x":125,"y":0,"fileNum":519,"id":16200,"width":25,"height":45},{"x":0,"y":45,"fileNum":519,"id":16201,"width":25,"height":45},{"x":25,"y":45,"fileNum":519,"id":16202,"width":25,"height":45},{"x":50,"y":45,"fileNum":519,"id":16203,"width":25,"height":45},{"x":75,"y":45,"fileNum":519,"id":16204,"width":25,"height":45},{"x":100,"y":45,"fileNum":519,"id":16205,"width":25,"height":45},{"x":125,"y":45,"fileNum":519,"id":16206,"width":25,"height":45},{"x":0,"y":90,"fileNum":519,"id":16207,"width":25,"height":45},{"x":25,"y":90,"fileNum":519,"id":16208,"width":25,"height":45},{"x":50,"y":90,"fileNum":519,"id":16209,"width":25,"height":45},{"x":75,"y":90,"fileNum":519,"id":16210,"width":25,"height":45},{"x":100,"y":90,"fileNum":519,"id":16211,"width":25,"height":45},{"x":0,"y":135,"fileNum":519,"id":16212,"width":25,"height":45},{"x":25,"y":135,"fileNum":519,"id":16213,"width":25,"height":45},{"x":50,"y":135,"fileNum":519,"id":16214,"width":25,"height":45},{"x":75,"y":135,"fileNum":519,"id":16215,"width":25,"height":45},{"x":100,"y":135,"fileNum":519,"id":16216,"width":25,"height":45},{"x":0,"y":0,"fileNum":523,"id":16221,"width":32,"height":32},{"x":0,"y":0,"fileNum":522,"id":16222,"width":25,"height":45},{"x":25,"y":0,"fileNum":522,"id":16223,"width":25,"height":45},{"x":50,"y":0,"fileNum":522,"id":16224,"width":25,"height":45},{"x":75,"y":0,"fileNum":522,"id":16225,"width":25,"height":45},{"x":100,"y":0,"fileNum":522,"id":16226,"width":25,"height":45},{"x":125,"y":0,"fileNum":522,"id":16227,"width":25,"height":45},{"x":0,"y":45,"fileNum":522,"id":16228,"width":25,"height":45},{"x":25,"y":45,"fileNum":522,"id":16229,"width":25,"height":45},{"x":50,"y":45,"fileNum":522,"id":16230,"width":25,"height":45},{"x":75,"y":45,"fileNum":522,"id":16231,"width":25,"height":45},{"x":100,"y":45,"fileNum":522,"id":16232,"width":25,"height":45},{"x":125,"y":45,"fileNum":522,"id":16233,"width":25,"height":45},{"x":0,"y":90,"fileNum":522,"id":16234,"width":25,"height":45},{"x":25,"y":90,"fileNum":522,"id":16235,"width":25,"height":45},{"x":50,"y":90,"fileNum":522,"id":16236,"width":25,"height":45},{"x":75,"y":90,"fileNum":522,"id":16237,"width":25,"height":45},{"x":100,"y":90,"fileNum":522,"id":16238,"width":25,"height":45},{"x":0,"y":135,"fileNum":522,"id":16239,"width":25,"height":45},{"x":25,"y":135,"fileNum":522,"id":16240,"width":25,"height":45},{"x":50,"y":135,"fileNum":522,"id":16241,"width":25,"height":45},{"x":75,"y":135,"fileNum":522,"id":16242,"width":25,"height":45},{"x":100,"y":135,"fileNum":522,"id":16243,"width":25,"height":45},{"x":0,"y":0,"fileNum":525,"id":16248,"width":32,"height":32},{"x":0,"y":0,"fileNum":524,"id":16249,"width":25,"height":45},{"x":25,"y":0,"fileNum":524,"id":16250,"width":25,"height":45},{"x":50,"y":0,"fileNum":524,"id":16251,"width":25,"height":45},{"x":75,"y":0,"fileNum":524,"id":16252,"width":25,"height":45},{"x":100,"y":0,"fileNum":524,"id":16253,"width":25,"height":45},{"x":125,"y":0,"fileNum":524,"id":16254,"width":25,"height":45},{"x":0,"y":45,"fileNum":524,"id":16255,"width":25,"height":45},{"x":25,"y":45,"fileNum":524,"id":16256,"width":25,"height":45},{"x":50,"y":45,"fileNum":524,"id":16257,"width":25,"height":45},{"x":75,"y":45,"fileNum":524,"id":16258,"width":25,"height":45},{"x":100,"y":45,"fileNum":524,"id":16259,"width":25,"height":45},{"x":125,"y":45,"fileNum":524,"id":16260,"width":25,"height":45},{"x":0,"y":90,"fileNum":524,"id":16261,"width":25,"height":45},{"x":25,"y":90,"fileNum":524,"id":16262,"width":25,"height":45},{"x":50,"y":90,"fileNum":524,"id":16263,"width":25,"height":45},{"x":75,"y":90,"fileNum":524,"id":16264,"width":25,"height":45},{"x":100,"y":90,"fileNum":524,"id":16265,"width":25,"height":45},{"x":0,"y":135,"fileNum":524,"id":16266,"width":25,"height":45},{"x":25,"y":135,"fileNum":524,"id":16267,"width":25,"height":45},{"x":50,"y":135,"fileNum":524,"id":16268,"width":25,"height":45},{"x":75,"y":135,"fileNum":524,"id":16269,"width":25,"height":45},{"x":100,"y":135,"fileNum":524,"id":16270,"width":25,"height":45},{"x":0,"y":0,"fileNum":527,"id":16275,"width":32,"height":32},{"x":0,"y":0,"fileNum":526,"id":16276,"width":25,"height":45},{"x":25,"y":0,"fileNum":526,"id":16277,"width":25,"height":45},{"x":50,"y":0,"fileNum":526,"id":16278,"width":25,"height":45},{"x":75,"y":0,"fileNum":526,"id":16279,"width":25,"height":45},{"x":100,"y":0,"fileNum":526,"id":16280,"width":25,"height":45},{"x":125,"y":0,"fileNum":526,"id":16281,"width":25,"height":45},{"x":0,"y":45,"fileNum":526,"id":16282,"width":25,"height":45},{"x":25,"y":45,"fileNum":526,"id":16283,"width":25,"height":45},{"x":50,"y":45,"fileNum":526,"id":16284,"width":25,"height":45},{"x":75,"y":45,"fileNum":526,"id":16285,"width":25,"height":45},{"x":100,"y":45,"fileNum":526,"id":16286,"width":25,"height":45},{"x":125,"y":45,"fileNum":526,"id":16287,"width":25,"height":45},{"x":0,"y":90,"fileNum":526,"id":16288,"width":25,"height":45},{"x":25,"y":90,"fileNum":526,"id":16289,"width":25,"height":45},{"x":50,"y":90,"fileNum":526,"id":16290,"width":25,"height":45},{"x":75,"y":90,"fileNum":526,"id":16291,"width":25,"height":45},{"x":100,"y":90,"fileNum":526,"id":16292,"width":25,"height":45},{"x":0,"y":135,"fileNum":526,"id":16293,"width":25,"height":45},{"x":25,"y":135,"fileNum":526,"id":16294,"width":25,"height":45},{"x":50,"y":135,"fileNum":526,"id":16295,"width":25,"height":45},{"x":75,"y":135,"fileNum":526,"id":16296,"width":25,"height":45},{"x":100,"y":135,"fileNum":526,"id":16297,"width":25,"height":45},{"x":0,"y":0,"fileNum":529,"id":16302,"width":32,"height":32},{"x":0,"y":0,"fileNum":528,"id":16303,"width":25,"height":45},{"x":25,"y":0,"fileNum":528,"id":16304,"width":25,"height":45},{"x":50,"y":0,"fileNum":528,"id":16305,"width":25,"height":45},{"x":75,"y":0,"fileNum":528,"id":16306,"width":25,"height":45},{"x":100,"y":0,"fileNum":528,"id":16307,"width":25,"height":45},{"x":125,"y":0,"fileNum":528,"id":16308,"width":25,"height":45},{"x":0,"y":45,"fileNum":528,"id":16309,"width":25,"height":45},{"x":25,"y":45,"fileNum":528,"id":16310,"width":25,"height":45},{"x":50,"y":45,"fileNum":528,"id":16311,"width":25,"height":45},{"x":75,"y":45,"fileNum":528,"id":16312,"width":25,"height":45},{"x":100,"y":45,"fileNum":528,"id":16313,"width":25,"height":45},{"x":125,"y":45,"fileNum":528,"id":16314,"width":25,"height":45},{"x":0,"y":90,"fileNum":528,"id":16315,"width":25,"height":45},{"x":25,"y":90,"fileNum":528,"id":16316,"width":25,"height":45},{"x":50,"y":90,"fileNum":528,"id":16317,"width":25,"height":45},{"x":75,"y":90,"fileNum":528,"id":16318,"width":25,"height":45},{"x":100,"y":90,"fileNum":528,"id":16319,"width":25,"height":45},{"x":0,"y":135,"fileNum":528,"id":16320,"width":25,"height":45},{"x":25,"y":135,"fileNum":528,"id":16321,"width":25,"height":45},{"x":50,"y":135,"fileNum":528,"id":16322,"width":25,"height":45},{"x":75,"y":135,"fileNum":528,"id":16323,"width":25,"height":45},{"x":100,"y":135,"fileNum":528,"id":16324,"width":25,"height":45},{"x":0,"y":0,"fileNum":532,"id":16329,"width":32,"height":32},{"x":0,"y":0,"fileNum":530,"id":16330,"width":25,"height":45},{"x":25,"y":0,"fileNum":530,"id":16331,"width":25,"height":45},{"x":50,"y":0,"fileNum":530,"id":16332,"width":25,"height":45},{"x":75,"y":0,"fileNum":530,"id":16333,"width":25,"height":45},{"x":100,"y":0,"fileNum":530,"id":16334,"width":25,"height":45},{"x":125,"y":0,"fileNum":530,"id":16335,"width":25,"height":45},{"x":0,"y":45,"fileNum":530,"id":16336,"width":25,"height":45},{"x":25,"y":45,"fileNum":530,"id":16337,"width":25,"height":45},{"x":50,"y":45,"fileNum":530,"id":16338,"width":25,"height":45},{"x":75,"y":45,"fileNum":530,"id":16339,"width":25,"height":45},{"x":100,"y":45,"fileNum":530,"id":16340,"width":25,"height":45},{"x":125,"y":45,"fileNum":530,"id":16341,"width":25,"height":45},{"x":0,"y":90,"fileNum":530,"id":16342,"width":25,"height":45},{"x":25,"y":90,"fileNum":530,"id":16343,"width":25,"height":45},{"x":50,"y":90,"fileNum":530,"id":16344,"width":25,"height":45},{"x":75,"y":90,"fileNum":530,"id":16345,"width":25,"height":45},{"x":100,"y":90,"fileNum":530,"id":16346,"width":25,"height":45},{"x":0,"y":135,"fileNum":530,"id":16347,"width":25,"height":45},{"x":25,"y":135,"fileNum":530,"id":16348,"width":25,"height":45},{"x":50,"y":135,"fileNum":530,"id":16349,"width":25,"height":45},{"x":75,"y":135,"fileNum":530,"id":16350,"width":25,"height":45},{"x":100,"y":135,"fileNum":530,"id":16351,"width":25,"height":45},{"x":0,"y":0,"fileNum":534,"id":16356,"width":32,"height":32},{"x":0,"y":0,"fileNum":533,"id":16357,"width":25,"height":45},{"x":25,"y":0,"fileNum":533,"id":16358,"width":25,"height":45},{"x":50,"y":0,"fileNum":533,"id":16359,"width":25,"height":45},{"x":75,"y":0,"fileNum":533,"id":16360,"width":25,"height":45},{"x":100,"y":0,"fileNum":533,"id":16361,"width":25,"height":45},{"x":125,"y":0,"fileNum":533,"id":16362,"width":25,"height":45},{"x":0,"y":45,"fileNum":533,"id":16363,"width":25,"height":45},{"x":25,"y":45,"fileNum":533,"id":16364,"width":25,"height":45},{"x":50,"y":45,"fileNum":533,"id":16365,"width":25,"height":45},{"x":75,"y":45,"fileNum":533,"id":16366,"width":25,"height":45},{"x":100,"y":45,"fileNum":533,"id":16367,"width":25,"height":45},{"x":125,"y":45,"fileNum":533,"id":16368,"width":25,"height":45},{"x":0,"y":90,"fileNum":533,"id":16369,"width":25,"height":45},{"x":25,"y":90,"fileNum":533,"id":16370,"width":25,"height":45},{"x":50,"y":90,"fileNum":533,"id":16371,"width":25,"height":45},{"x":75,"y":90,"fileNum":533,"id":16372,"width":25,"height":45},{"x":100,"y":90,"fileNum":533,"id":16373,"width":25,"height":45},{"x":0,"y":135,"fileNum":533,"id":16374,"width":25,"height":45},{"x":25,"y":135,"fileNum":533,"id":16375,"width":25,"height":45},{"x":50,"y":135,"fileNum":533,"id":16376,"width":25,"height":45},{"x":75,"y":135,"fileNum":533,"id":16377,"width":25,"height":45},{"x":100,"y":135,"fileNum":533,"id":16378,"width":25,"height":45},{"x":0,"y":0,"fileNum":536,"id":16383,"width":32,"height":32},{"x":0,"y":0,"fileNum":535,"id":16384,"width":25,"height":45},{"x":25,"y":0,"fileNum":535,"id":16385,"width":25,"height":45},{"x":50,"y":0,"fileNum":535,"id":16386,"width":25,"height":45},{"x":75,"y":0,"fileNum":535,"id":16387,"width":25,"height":45},{"x":100,"y":0,"fileNum":535,"id":16388,"width":25,"height":45},{"x":125,"y":0,"fileNum":535,"id":16389,"width":25,"height":45},{"x":0,"y":45,"fileNum":535,"id":16390,"width":25,"height":45},{"x":25,"y":45,"fileNum":535,"id":16391,"width":25,"height":45},{"x":50,"y":45,"fileNum":535,"id":16392,"width":25,"height":45},{"x":75,"y":45,"fileNum":535,"id":16393,"width":25,"height":45},{"x":100,"y":45,"fileNum":535,"id":16394,"width":25,"height":45},{"x":125,"y":45,"fileNum":535,"id":16395,"width":25,"height":45},{"x":0,"y":90,"fileNum":535,"id":16396,"width":25,"height":45},{"x":25,"y":90,"fileNum":535,"id":16397,"width":25,"height":45},{"x":50,"y":90,"fileNum":535,"id":16398,"width":25,"height":45},{"x":75,"y":90,"fileNum":535,"id":16399,"width":25,"height":45},{"x":100,"y":90,"fileNum":535,"id":16400,"width":25,"height":45},{"x":0,"y":135,"fileNum":535,"id":16401,"width":25,"height":45},{"x":25,"y":135,"fileNum":535,"id":16402,"width":25,"height":45},{"x":50,"y":135,"fileNum":535,"id":16403,"width":25,"height":45},{"x":75,"y":135,"fileNum":535,"id":16404,"width":25,"height":45},{"x":100,"y":135,"fileNum":535,"id":16405,"width":25,"height":45},{"x":0,"y":0,"fileNum":538,"id":16410,"width":32,"height":32},{"x":0,"y":0,"fileNum":537,"id":16411,"width":25,"height":45},{"x":25,"y":0,"fileNum":537,"id":16412,"width":25,"height":45},{"x":50,"y":0,"fileNum":537,"id":16413,"width":25,"height":45},{"x":75,"y":0,"fileNum":537,"id":16414,"width":25,"height":45},{"x":100,"y":0,"fileNum":537,"id":16415,"width":25,"height":45},{"x":125,"y":0,"fileNum":537,"id":16416,"width":25,"height":45},{"x":0,"y":45,"fileNum":537,"id":16417,"width":25,"height":45},{"x":25,"y":45,"fileNum":537,"id":16418,"width":25,"height":45},{"x":50,"y":45,"fileNum":537,"id":16419,"width":25,"height":45},{"x":75,"y":45,"fileNum":537,"id":16420,"width":25,"height":45},{"x":100,"y":45,"fileNum":537,"id":16421,"width":25,"height":45},{"x":125,"y":45,"fileNum":537,"id":16422,"width":25,"height":45},{"x":0,"y":90,"fileNum":537,"id":16423,"width":25,"height":45},{"x":25,"y":90,"fileNum":537,"id":16424,"width":25,"height":45},{"x":50,"y":90,"fileNum":537,"id":16425,"width":25,"height":45},{"x":75,"y":90,"fileNum":537,"id":16426,"width":25,"height":45},{"x":100,"y":90,"fileNum":537,"id":16427,"width":25,"height":45},{"x":0,"y":135,"fileNum":537,"id":16428,"width":25,"height":45},{"x":25,"y":135,"fileNum":537,"id":16429,"width":25,"height":45},{"x":50,"y":135,"fileNum":537,"id":16430,"width":25,"height":45},{"x":75,"y":135,"fileNum":537,"id":16431,"width":25,"height":45},{"x":100,"y":135,"fileNum":537,"id":16432,"width":25,"height":45},{"x":0,"y":0,"fileNum":541,"id":16437,"width":32,"height":32},{"x":0,"y":0,"fileNum":539,"id":16438,"width":25,"height":45},{"x":25,"y":0,"fileNum":539,"id":16439,"width":25,"height":45},{"x":50,"y":0,"fileNum":539,"id":16440,"width":25,"height":45},{"x":75,"y":0,"fileNum":539,"id":16441,"width":25,"height":45},{"x":100,"y":0,"fileNum":539,"id":16442,"width":25,"height":45},{"x":125,"y":0,"fileNum":539,"id":16443,"width":25,"height":45},{"x":0,"y":45,"fileNum":539,"id":16444,"width":25,"height":45},{"x":25,"y":45,"fileNum":539,"id":16445,"width":25,"height":45},{"x":50,"y":45,"fileNum":539,"id":16446,"width":25,"height":45},{"x":75,"y":45,"fileNum":539,"id":16447,"width":25,"height":45},{"x":100,"y":45,"fileNum":539,"id":16448,"width":25,"height":45},{"x":125,"y":45,"fileNum":539,"id":16449,"width":25,"height":45},{"x":0,"y":90,"fileNum":539,"id":16450,"width":25,"height":45},{"x":25,"y":90,"fileNum":539,"id":16451,"width":25,"height":45},{"x":50,"y":90,"fileNum":539,"id":16452,"width":25,"height":45},{"x":75,"y":90,"fileNum":539,"id":16453,"width":25,"height":45},{"x":100,"y":90,"fileNum":539,"id":16454,"width":25,"height":45},{"x":0,"y":135,"fileNum":539,"id":16455,"width":25,"height":45},{"x":25,"y":135,"fileNum":539,"id":16456,"width":25,"height":45},{"x":50,"y":135,"fileNum":539,"id":16457,"width":25,"height":45},{"x":75,"y":135,"fileNum":539,"id":16458,"width":25,"height":45},{"x":100,"y":135,"fileNum":539,"id":16459,"width":25,"height":45},{"x":0,"y":0,"fileNum":540,"id":16464,"width":25,"height":45},{"x":25,"y":0,"fileNum":540,"id":16465,"width":25,"height":45},{"x":50,"y":0,"fileNum":540,"id":16466,"width":25,"height":45},{"x":75,"y":0,"fileNum":540,"id":16467,"width":25,"height":45},{"x":100,"y":0,"fileNum":540,"id":16468,"width":25,"height":45},{"x":125,"y":0,"fileNum":540,"id":16469,"width":25,"height":45},{"x":0,"y":45,"fileNum":540,"id":16470,"width":25,"height":45},{"x":25,"y":45,"fileNum":540,"id":16471,"width":25,"height":45},{"x":50,"y":45,"fileNum":540,"id":16472,"width":25,"height":45},{"x":75,"y":45,"fileNum":540,"id":16473,"width":25,"height":45},{"x":100,"y":45,"fileNum":540,"id":16474,"width":25,"height":45},{"x":125,"y":45,"fileNum":540,"id":16475,"width":25,"height":45},{"x":0,"y":90,"fileNum":540,"id":16476,"width":25,"height":45},{"x":25,"y":90,"fileNum":540,"id":16477,"width":25,"height":45},{"x":50,"y":90,"fileNum":540,"id":16478,"width":25,"height":45},{"x":75,"y":90,"fileNum":540,"id":16479,"width":25,"height":45},{"x":100,"y":90,"fileNum":540,"id":16480,"width":25,"height":45},{"x":0,"y":135,"fileNum":540,"id":16481,"width":25,"height":45},{"x":25,"y":135,"fileNum":540,"id":16482,"width":25,"height":45},{"x":50,"y":135,"fileNum":540,"id":16483,"width":25,"height":45},{"x":75,"y":135,"fileNum":540,"id":16484,"width":25,"height":45},{"x":100,"y":135,"fileNum":540,"id":16485,"width":25,"height":45},{"x":0,"y":0,"fileNum":544,"id":16490,"width":32,"height":32},{"x":0,"y":0,"fileNum":543,"id":16491,"width":25,"height":45},{"x":25,"y":0,"fileNum":543,"id":16492,"width":25,"height":45},{"x":50,"y":0,"fileNum":543,"id":16493,"width":25,"height":45},{"x":75,"y":0,"fileNum":543,"id":16494,"width":25,"height":45},{"x":100,"y":0,"fileNum":543,"id":16495,"width":25,"height":45},{"x":125,"y":0,"fileNum":543,"id":16496,"width":25,"height":45},{"x":0,"y":45,"fileNum":543,"id":16497,"width":25,"height":45},{"x":25,"y":45,"fileNum":543,"id":16498,"width":25,"height":45},{"x":50,"y":45,"fileNum":543,"id":16499,"width":25,"height":45},{"x":75,"y":45,"fileNum":543,"id":16500,"width":25,"height":45},{"x":100,"y":45,"fileNum":543,"id":16501,"width":25,"height":45},{"x":125,"y":45,"fileNum":543,"id":16502,"width":25,"height":45},{"x":0,"y":90,"fileNum":543,"id":16503,"width":25,"height":45},{"x":25,"y":90,"fileNum":543,"id":16504,"width":25,"height":45},{"x":50,"y":90,"fileNum":543,"id":16505,"width":25,"height":45},{"x":75,"y":90,"fileNum":543,"id":16506,"width":25,"height":45},{"x":100,"y":90,"fileNum":543,"id":16507,"width":25,"height":45},{"x":0,"y":135,"fileNum":543,"id":16508,"width":25,"height":45},{"x":25,"y":135,"fileNum":543,"id":16509,"width":25,"height":45},{"x":50,"y":135,"fileNum":543,"id":16510,"width":25,"height":45},{"x":75,"y":135,"fileNum":543,"id":16511,"width":25,"height":45},{"x":100,"y":135,"fileNum":543,"id":16512,"width":25,"height":45},{"x":0,"y":0,"fileNum":546,"id":16517,"width":32,"height":32},{"x":0,"y":0,"fileNum":545,"id":16518,"width":25,"height":45},{"x":25,"y":0,"fileNum":545,"id":16519,"width":25,"height":45},{"x":50,"y":0,"fileNum":545,"id":16520,"width":25,"height":45},{"x":75,"y":0,"fileNum":545,"id":16521,"width":25,"height":45},{"x":100,"y":0,"fileNum":545,"id":16522,"width":25,"height":45},{"x":125,"y":0,"fileNum":545,"id":16523,"width":25,"height":45},{"x":0,"y":45,"fileNum":545,"id":16524,"width":25,"height":45},{"x":25,"y":45,"fileNum":545,"id":16525,"width":25,"height":45},{"x":50,"y":45,"fileNum":545,"id":16526,"width":25,"height":45},{"x":75,"y":45,"fileNum":545,"id":16527,"width":25,"height":45},{"x":100,"y":45,"fileNum":545,"id":16528,"width":25,"height":45},{"x":125,"y":45,"fileNum":545,"id":16529,"width":25,"height":45},{"x":0,"y":90,"fileNum":545,"id":16530,"width":25,"height":45},{"x":25,"y":90,"fileNum":545,"id":16531,"width":25,"height":45},{"x":50,"y":90,"fileNum":545,"id":16532,"width":25,"height":45},{"x":75,"y":90,"fileNum":545,"id":16533,"width":25,"height":45},{"x":100,"y":90,"fileNum":545,"id":16534,"width":25,"height":45},{"x":0,"y":135,"fileNum":545,"id":16535,"width":25,"height":45},{"x":25,"y":135,"fileNum":545,"id":16536,"width":25,"height":45},{"x":50,"y":135,"fileNum":545,"id":16537,"width":25,"height":45},{"x":75,"y":135,"fileNum":545,"id":16538,"width":25,"height":45},{"x":100,"y":135,"fileNum":545,"id":16539,"width":25,"height":45},{"x":0,"y":0,"fileNum":548,"id":16544,"width":32,"height":32},{"x":0,"y":0,"fileNum":547,"id":16545,"width":25,"height":45},{"x":25,"y":0,"fileNum":547,"id":16546,"width":25,"height":45},{"x":50,"y":0,"fileNum":547,"id":16547,"width":25,"height":45},{"x":75,"y":0,"fileNum":547,"id":16548,"width":25,"height":45},{"x":100,"y":0,"fileNum":547,"id":16549,"width":25,"height":45},{"x":125,"y":0,"fileNum":547,"id":16550,"width":25,"height":45},{"x":0,"y":45,"fileNum":547,"id":16551,"width":25,"height":45},{"x":25,"y":45,"fileNum":547,"id":16552,"width":25,"height":45},{"x":50,"y":45,"fileNum":547,"id":16553,"width":25,"height":45},{"x":75,"y":45,"fileNum":547,"id":16554,"width":25,"height":45},{"x":100,"y":45,"fileNum":547,"id":16555,"width":25,"height":45},{"x":125,"y":45,"fileNum":547,"id":16556,"width":25,"height":45},{"x":0,"y":90,"fileNum":547,"id":16557,"width":25,"height":45},{"x":25,"y":90,"fileNum":547,"id":16558,"width":25,"height":45},{"x":50,"y":90,"fileNum":547,"id":16559,"width":25,"height":45},{"x":75,"y":90,"fileNum":547,"id":16560,"width":25,"height":45},{"x":100,"y":90,"fileNum":547,"id":16561,"width":25,"height":45},{"x":0,"y":135,"fileNum":547,"id":16562,"width":25,"height":45},{"x":25,"y":135,"fileNum":547,"id":16563,"width":25,"height":45},{"x":50,"y":135,"fileNum":547,"id":16564,"width":25,"height":45},{"x":75,"y":135,"fileNum":547,"id":16565,"width":25,"height":45},{"x":100,"y":135,"fileNum":547,"id":16566,"width":25,"height":45},{"x":0,"y":0,"fileNum":550,"id":16571,"width":32,"height":32},{"x":0,"y":0,"fileNum":549,"id":16572,"width":25,"height":45},{"x":25,"y":0,"fileNum":549,"id":16573,"width":25,"height":45},{"x":50,"y":0,"fileNum":549,"id":16574,"width":25,"height":45},{"x":75,"y":0,"fileNum":549,"id":16575,"width":25,"height":45},{"x":100,"y":0,"fileNum":549,"id":16576,"width":25,"height":45},{"x":125,"y":0,"fileNum":549,"id":16577,"width":25,"height":45},{"x":0,"y":45,"fileNum":549,"id":16578,"width":25,"height":45},{"x":25,"y":45,"fileNum":549,"id":16579,"width":25,"height":45},{"x":50,"y":45,"fileNum":549,"id":16580,"width":25,"height":45},{"x":75,"y":45,"fileNum":549,"id":16581,"width":25,"height":45},{"x":100,"y":45,"fileNum":549,"id":16582,"width":25,"height":45},{"x":125,"y":45,"fileNum":549,"id":16583,"width":25,"height":45},{"x":0,"y":90,"fileNum":549,"id":16584,"width":25,"height":45},{"x":25,"y":90,"fileNum":549,"id":16585,"width":25,"height":45},{"x":50,"y":90,"fileNum":549,"id":16586,"width":25,"height":45},{"x":75,"y":90,"fileNum":549,"id":16587,"width":25,"height":45},{"x":100,"y":90,"fileNum":549,"id":16588,"width":25,"height":45},{"x":0,"y":135,"fileNum":549,"id":16589,"width":25,"height":45},{"x":25,"y":135,"fileNum":549,"id":16590,"width":25,"height":45},{"x":50,"y":135,"fileNum":549,"id":16591,"width":25,"height":45},{"x":75,"y":135,"fileNum":549,"id":16592,"width":25,"height":45},{"x":100,"y":135,"fileNum":549,"id":16593,"width":25,"height":45},{"x":0,"y":0,"fileNum":552,"id":16598,"width":32,"height":32},{"x":0,"y":0,"fileNum":551,"id":16599,"width":25,"height":45},{"x":25,"y":0,"fileNum":551,"id":16600,"width":25,"height":45},{"x":50,"y":0,"fileNum":551,"id":16601,"width":25,"height":45},{"x":75,"y":0,"fileNum":551,"id":16602,"width":25,"height":45},{"x":100,"y":0,"fileNum":551,"id":16603,"width":25,"height":45},{"x":125,"y":0,"fileNum":551,"id":16604,"width":25,"height":45},{"x":0,"y":45,"fileNum":551,"id":16605,"width":25,"height":45},{"x":25,"y":45,"fileNum":551,"id":16606,"width":25,"height":45},{"x":50,"y":45,"fileNum":551,"id":16607,"width":25,"height":45},{"x":75,"y":45,"fileNum":551,"id":16608,"width":25,"height":45},{"x":100,"y":45,"fileNum":551,"id":16609,"width":25,"height":45},{"x":125,"y":45,"fileNum":551,"id":16610,"width":25,"height":45},{"x":0,"y":90,"fileNum":551,"id":16611,"width":25,"height":45},{"x":25,"y":90,"fileNum":551,"id":16612,"width":25,"height":45},{"x":50,"y":90,"fileNum":551,"id":16613,"width":25,"height":45},{"x":75,"y":90,"fileNum":551,"id":16614,"width":25,"height":45},{"x":100,"y":90,"fileNum":551,"id":16615,"width":25,"height":45},{"x":0,"y":135,"fileNum":551,"id":16616,"width":25,"height":45},{"x":25,"y":135,"fileNum":551,"id":16617,"width":25,"height":45},{"x":50,"y":135,"fileNum":551,"id":16618,"width":25,"height":45},{"x":75,"y":135,"fileNum":551,"id":16619,"width":25,"height":45},{"x":100,"y":135,"fileNum":551,"id":16620,"width":25,"height":45},{"x":0,"y":0,"fileNum":555,"id":16625,"width":32,"height":32},{"x":0,"y":0,"fileNum":554,"id":16626,"width":25,"height":45},{"x":25,"y":0,"fileNum":554,"id":16627,"width":25,"height":45},{"x":50,"y":0,"fileNum":554,"id":16628,"width":25,"height":45},{"x":75,"y":0,"fileNum":554,"id":16629,"width":25,"height":45},{"x":100,"y":0,"fileNum":554,"id":16630,"width":25,"height":45},{"x":125,"y":0,"fileNum":554,"id":16631,"width":25,"height":45},{"x":0,"y":45,"fileNum":554,"id":16632,"width":25,"height":45},{"x":25,"y":45,"fileNum":554,"id":16633,"width":25,"height":45},{"x":50,"y":45,"fileNum":554,"id":16634,"width":25,"height":45},{"x":75,"y":45,"fileNum":554,"id":16635,"width":25,"height":45},{"x":100,"y":45,"fileNum":554,"id":16636,"width":25,"height":45},{"x":125,"y":45,"fileNum":554,"id":16637,"width":25,"height":45},{"x":0,"y":90,"fileNum":554,"id":16638,"width":25,"height":45},{"x":25,"y":90,"fileNum":554,"id":16639,"width":25,"height":45},{"x":50,"y":90,"fileNum":554,"id":16640,"width":25,"height":45},{"x":75,"y":90,"fileNum":554,"id":16641,"width":25,"height":45},{"x":100,"y":90,"fileNum":554,"id":16642,"width":25,"height":45},{"x":0,"y":135,"fileNum":554,"id":16643,"width":25,"height":45},{"x":25,"y":135,"fileNum":554,"id":16644,"width":25,"height":45},{"x":50,"y":135,"fileNum":554,"id":16645,"width":25,"height":45},{"x":75,"y":135,"fileNum":554,"id":16646,"width":25,"height":45},{"x":100,"y":135,"fileNum":554,"id":16647,"width":25,"height":45},{"x":0,"y":0,"fileNum":557,"id":16652,"width":32,"height":32},{"x":0,"y":0,"fileNum":556,"id":16653,"width":25,"height":45},{"x":25,"y":0,"fileNum":556,"id":16654,"width":25,"height":45},{"x":50,"y":0,"fileNum":556,"id":16655,"width":25,"height":45},{"x":75,"y":0,"fileNum":556,"id":16656,"width":25,"height":45},{"x":100,"y":0,"fileNum":556,"id":16657,"width":25,"height":45},{"x":125,"y":0,"fileNum":556,"id":16658,"width":25,"height":45},{"x":0,"y":45,"fileNum":556,"id":16659,"width":25,"height":45},{"x":25,"y":45,"fileNum":556,"id":16660,"width":25,"height":45},{"x":50,"y":45,"fileNum":556,"id":16661,"width":25,"height":45},{"x":75,"y":45,"fileNum":556,"id":16662,"width":25,"height":45},{"x":100,"y":45,"fileNum":556,"id":16663,"width":25,"height":45},{"x":125,"y":45,"fileNum":556,"id":16664,"width":25,"height":45},{"x":0,"y":90,"fileNum":556,"id":16665,"width":25,"height":45},{"x":25,"y":90,"fileNum":556,"id":16666,"width":25,"height":45},{"x":50,"y":90,"fileNum":556,"id":16667,"width":25,"height":45},{"x":75,"y":90,"fileNum":556,"id":16668,"width":25,"height":45},{"x":100,"y":90,"fileNum":556,"id":16669,"width":25,"height":45},{"x":0,"y":135,"fileNum":556,"id":16670,"width":25,"height":45},{"x":25,"y":135,"fileNum":556,"id":16671,"width":25,"height":45},{"x":50,"y":135,"fileNum":556,"id":16672,"width":25,"height":45},{"x":75,"y":135,"fileNum":556,"id":16673,"width":25,"height":45},{"x":100,"y":135,"fileNum":556,"id":16674,"width":25,"height":45},{"x":0,"y":0,"fileNum":559,"id":16679,"width":32,"height":32},{"x":0,"y":0,"fileNum":558,"id":16680,"width":25,"height":45},{"x":25,"y":0,"fileNum":558,"id":16681,"width":25,"height":45},{"x":50,"y":0,"fileNum":558,"id":16682,"width":25,"height":45},{"x":75,"y":0,"fileNum":558,"id":16683,"width":25,"height":45},{"x":100,"y":0,"fileNum":558,"id":16684,"width":25,"height":45},{"x":125,"y":0,"fileNum":558,"id":16685,"width":25,"height":45},{"x":0,"y":45,"fileNum":558,"id":16686,"width":25,"height":45},{"x":25,"y":45,"fileNum":558,"id":16687,"width":25,"height":45},{"x":50,"y":45,"fileNum":558,"id":16688,"width":25,"height":45},{"x":75,"y":45,"fileNum":558,"id":16689,"width":25,"height":45},{"x":100,"y":45,"fileNum":558,"id":16690,"width":25,"height":45},{"x":125,"y":45,"fileNum":558,"id":16691,"width":25,"height":45},{"x":0,"y":90,"fileNum":558,"id":16692,"width":25,"height":45},{"x":25,"y":90,"fileNum":558,"id":16693,"width":25,"height":45},{"x":50,"y":90,"fileNum":558,"id":16694,"width":25,"height":45},{"x":75,"y":90,"fileNum":558,"id":16695,"width":25,"height":45},{"x":100,"y":90,"fileNum":558,"id":16696,"width":25,"height":45},{"x":0,"y":135,"fileNum":558,"id":16697,"width":25,"height":45},{"x":25,"y":135,"fileNum":558,"id":16698,"width":25,"height":45},{"x":50,"y":135,"fileNum":558,"id":16699,"width":25,"height":45},{"x":75,"y":135,"fileNum":558,"id":16700,"width":25,"height":45},{"x":100,"y":135,"fileNum":558,"id":16701,"width":25,"height":45},{"x":0,"y":0,"fileNum":55,"id":16706,"width":32,"height":32},{"x":0,"y":0,"fileNum":561,"id":16707,"width":32,"height":32},{"x":0,"y":0,"fileNum":560,"id":16708,"width":25,"height":45},{"x":25,"y":0,"fileNum":560,"id":16709,"width":25,"height":45},{"x":50,"y":0,"fileNum":560,"id":16710,"width":25,"height":45},{"x":75,"y":0,"fileNum":560,"id":16711,"width":25,"height":45},{"x":100,"y":0,"fileNum":560,"id":16712,"width":25,"height":45},{"x":125,"y":0,"fileNum":560,"id":16713,"width":25,"height":45},{"x":0,"y":45,"fileNum":560,"id":16714,"width":25,"height":45},{"x":25,"y":45,"fileNum":560,"id":16715,"width":25,"height":45},{"x":50,"y":45,"fileNum":560,"id":16716,"width":25,"height":45},{"x":75,"y":45,"fileNum":560,"id":16717,"width":25,"height":45},{"x":100,"y":45,"fileNum":560,"id":16718,"width":25,"height":45},{"x":125,"y":45,"fileNum":560,"id":16719,"width":25,"height":45},{"x":0,"y":90,"fileNum":560,"id":16720,"width":25,"height":45},{"x":25,"y":90,"fileNum":560,"id":16721,"width":25,"height":45},{"x":50,"y":90,"fileNum":560,"id":16722,"width":25,"height":45},{"x":75,"y":90,"fileNum":560,"id":16723,"width":25,"height":45},{"x":100,"y":90,"fileNum":560,"id":16724,"width":25,"height":45},{"x":0,"y":135,"fileNum":560,"id":16725,"width":25,"height":45},{"x":25,"y":135,"fileNum":560,"id":16726,"width":25,"height":45},{"x":50,"y":135,"fileNum":560,"id":16727,"width":25,"height":45},{"x":75,"y":135,"fileNum":560,"id":16728,"width":25,"height":45},{"x":100,"y":135,"fileNum":560,"id":16729,"width":25,"height":45},{"x":0,"y":0,"fileNum":563,"id":16734,"width":32,"height":32},{"x":0,"y":0,"fileNum":562,"id":16735,"width":25,"height":45},{"x":25,"y":0,"fileNum":562,"id":16736,"width":25,"height":45},{"x":50,"y":0,"fileNum":562,"id":16737,"width":25,"height":45},{"x":75,"y":0,"fileNum":562,"id":16738,"width":25,"height":45},{"x":100,"y":0,"fileNum":562,"id":16739,"width":25,"height":45},{"x":125,"y":0,"fileNum":562,"id":16740,"width":25,"height":45},{"x":0,"y":45,"fileNum":562,"id":16741,"width":25,"height":45},{"x":25,"y":45,"fileNum":562,"id":16742,"width":25,"height":45},{"x":50,"y":45,"fileNum":562,"id":16743,"width":25,"height":45},{"x":75,"y":45,"fileNum":562,"id":16744,"width":25,"height":45},{"x":100,"y":45,"fileNum":562,"id":16745,"width":25,"height":45},{"x":125,"y":45,"fileNum":562,"id":16746,"width":25,"height":45},{"x":0,"y":90,"fileNum":562,"id":16747,"width":25,"height":45},{"x":25,"y":90,"fileNum":562,"id":16748,"width":25,"height":45},{"x":50,"y":90,"fileNum":562,"id":16749,"width":25,"height":45},{"x":75,"y":90,"fileNum":562,"id":16750,"width":25,"height":45},{"x":100,"y":90,"fileNum":562,"id":16751,"width":25,"height":45},{"x":0,"y":135,"fileNum":562,"id":16752,"width":25,"height":45},{"x":25,"y":135,"fileNum":562,"id":16753,"width":25,"height":45},{"x":50,"y":135,"fileNum":562,"id":16754,"width":25,"height":45},{"x":75,"y":135,"fileNum":562,"id":16755,"width":25,"height":45},{"x":100,"y":135,"fileNum":562,"id":16756,"width":25,"height":45},{"x":0,"y":0,"fileNum":566,"id":16761,"width":32,"height":32},{"x":0,"y":0,"fileNum":565,"id":16762,"width":25,"height":45},{"x":25,"y":0,"fileNum":565,"id":16763,"width":25,"height":45},{"x":50,"y":0,"fileNum":565,"id":16764,"width":25,"height":45},{"x":75,"y":0,"fileNum":565,"id":16765,"width":25,"height":45},{"x":100,"y":0,"fileNum":565,"id":16766,"width":25,"height":45},{"x":125,"y":0,"fileNum":565,"id":16767,"width":25,"height":45},{"x":0,"y":45,"fileNum":565,"id":16768,"width":25,"height":45},{"x":25,"y":45,"fileNum":565,"id":16769,"width":25,"height":45},{"x":50,"y":45,"fileNum":565,"id":16770,"width":25,"height":45},{"x":75,"y":45,"fileNum":565,"id":16771,"width":25,"height":45},{"x":100,"y":45,"fileNum":565,"id":16772,"width":25,"height":45},{"x":125,"y":45,"fileNum":565,"id":16773,"width":25,"height":45},{"x":0,"y":90,"fileNum":565,"id":16774,"width":25,"height":45},{"x":25,"y":90,"fileNum":565,"id":16775,"width":25,"height":45},{"x":50,"y":90,"fileNum":565,"id":16776,"width":25,"height":45},{"x":75,"y":90,"fileNum":565,"id":16777,"width":25,"height":45},{"x":100,"y":90,"fileNum":565,"id":16778,"width":25,"height":45},{"x":0,"y":135,"fileNum":565,"id":16779,"width":25,"height":45},{"x":25,"y":135,"fileNum":565,"id":16780,"width":25,"height":45},{"x":50,"y":135,"fileNum":565,"id":16781,"width":25,"height":45},{"x":75,"y":135,"fileNum":565,"id":16782,"width":25,"height":45},{"x":100,"y":135,"fileNum":565,"id":16783,"width":25,"height":45},{"x":0,"y":0,"fileNum":568,"id":16788,"width":32,"height":32},{"x":0,"y":0,"fileNum":567,"id":16789,"width":25,"height":45},{"x":25,"y":0,"fileNum":567,"id":16790,"width":25,"height":45},{"x":50,"y":0,"fileNum":567,"id":16791,"width":25,"height":45},{"x":75,"y":0,"fileNum":567,"id":16792,"width":25,"height":45},{"x":100,"y":0,"fileNum":567,"id":16793,"width":25,"height":45},{"x":125,"y":0,"fileNum":567,"id":16794,"width":25,"height":45},{"x":0,"y":45,"fileNum":567,"id":16795,"width":25,"height":45},{"x":25,"y":45,"fileNum":567,"id":16796,"width":25,"height":45},{"x":50,"y":45,"fileNum":567,"id":16797,"width":25,"height":45},{"x":75,"y":45,"fileNum":567,"id":16798,"width":25,"height":45},{"x":100,"y":45,"fileNum":567,"id":16799,"width":25,"height":45},{"x":125,"y":45,"fileNum":567,"id":16800,"width":25,"height":45},{"x":0,"y":90,"fileNum":567,"id":16801,"width":25,"height":45},{"x":25,"y":90,"fileNum":567,"id":16802,"width":25,"height":45},{"x":50,"y":90,"fileNum":567,"id":16803,"width":25,"height":45},{"x":75,"y":90,"fileNum":567,"id":16804,"width":25,"height":45},{"x":100,"y":90,"fileNum":567,"id":16805,"width":25,"height":45},{"x":0,"y":135,"fileNum":567,"id":16806,"width":25,"height":45},{"x":25,"y":135,"fileNum":567,"id":16807,"width":25,"height":45},{"x":50,"y":135,"fileNum":567,"id":16808,"width":25,"height":45},{"x":75,"y":135,"fileNum":567,"id":16809,"width":25,"height":45},{"x":100,"y":135,"fileNum":567,"id":16810,"width":25,"height":45},{"x":0,"y":0,"fileNum":57,"id":16815,"width":32,"height":32},{"x":0,"y":0,"fileNum":56,"id":16816,"width":25,"height":45},{"x":25,"y":0,"fileNum":56,"id":16817,"width":25,"height":45},{"x":50,"y":0,"fileNum":56,"id":16818,"width":25,"height":45},{"x":75,"y":0,"fileNum":56,"id":16819,"width":25,"height":45},{"x":100,"y":0,"fileNum":56,"id":16820,"width":25,"height":45},{"x":125,"y":0,"fileNum":56,"id":16821,"width":25,"height":45},{"x":0,"y":45,"fileNum":56,"id":16822,"width":25,"height":45},{"x":25,"y":45,"fileNum":56,"id":16823,"width":25,"height":45},{"x":50,"y":45,"fileNum":56,"id":16824,"width":25,"height":45},{"x":75,"y":45,"fileNum":56,"id":16825,"width":25,"height":45},{"x":100,"y":45,"fileNum":56,"id":16826,"width":25,"height":45},{"x":125,"y":45,"fileNum":56,"id":16827,"width":25,"height":45},{"x":0,"y":90,"fileNum":56,"id":16828,"width":25,"height":45},{"x":25,"y":90,"fileNum":56,"id":16829,"width":25,"height":45},{"x":50,"y":90,"fileNum":56,"id":16830,"width":25,"height":45},{"x":75,"y":90,"fileNum":56,"id":16831,"width":25,"height":45},{"x":100,"y":90,"fileNum":56,"id":16832,"width":25,"height":45},{"x":0,"y":135,"fileNum":56,"id":16833,"width":25,"height":45},{"x":25,"y":135,"fileNum":56,"id":16834,"width":25,"height":45},{"x":50,"y":135,"fileNum":56,"id":16835,"width":25,"height":45},{"x":75,"y":135,"fileNum":56,"id":16836,"width":25,"height":45},{"x":100,"y":135,"fileNum":56,"id":16837,"width":25,"height":45},{"x":0,"y":0,"fileNum":570,"id":16842,"width":32,"height":32},{"x":0,"y":0,"fileNum":569,"id":16843,"width":25,"height":45},{"x":25,"y":0,"fileNum":569,"id":16844,"width":25,"height":45},{"x":50,"y":0,"fileNum":569,"id":16845,"width":25,"height":45},{"x":75,"y":0,"fileNum":569,"id":16846,"width":25,"height":45},{"x":100,"y":0,"fileNum":569,"id":16847,"width":25,"height":45},{"x":125,"y":0,"fileNum":569,"id":16848,"width":25,"height":45},{"x":0,"y":45,"fileNum":569,"id":16849,"width":25,"height":45},{"x":25,"y":45,"fileNum":569,"id":16850,"width":25,"height":45},{"x":50,"y":45,"fileNum":569,"id":16851,"width":25,"height":45},{"x":75,"y":45,"fileNum":569,"id":16852,"width":25,"height":45},{"x":100,"y":45,"fileNum":569,"id":16853,"width":25,"height":45},{"x":125,"y":45,"fileNum":569,"id":16854,"width":25,"height":45},{"x":0,"y":90,"fileNum":569,"id":16855,"width":25,"height":45},{"x":25,"y":90,"fileNum":569,"id":16856,"width":25,"height":45},{"x":50,"y":90,"fileNum":569,"id":16857,"width":25,"height":45},{"x":75,"y":90,"fileNum":569,"id":16858,"width":25,"height":45},{"x":100,"y":90,"fileNum":569,"id":16859,"width":25,"height":45},{"x":0,"y":135,"fileNum":569,"id":16860,"width":25,"height":45},{"x":25,"y":135,"fileNum":569,"id":16861,"width":25,"height":45},{"x":50,"y":135,"fileNum":569,"id":16862,"width":25,"height":45},{"x":75,"y":135,"fileNum":569,"id":16863,"width":25,"height":45},{"x":100,"y":135,"fileNum":569,"id":16864,"width":25,"height":45},{"x":0,"y":0,"fileNum":572,"id":16869,"width":32,"height":32},{"x":0,"y":0,"fileNum":571,"id":16870,"width":25,"height":45},{"x":25,"y":0,"fileNum":571,"id":16871,"width":25,"height":45},{"x":50,"y":0,"fileNum":571,"id":16872,"width":25,"height":45},{"x":75,"y":0,"fileNum":571,"id":16873,"width":25,"height":45},{"x":100,"y":0,"fileNum":571,"id":16874,"width":25,"height":45},{"x":125,"y":0,"fileNum":571,"id":16875,"width":25,"height":45},{"x":0,"y":45,"fileNum":571,"id":16876,"width":25,"height":45},{"x":25,"y":45,"fileNum":571,"id":16877,"width":25,"height":45},{"x":50,"y":45,"fileNum":571,"id":16878,"width":25,"height":45},{"x":75,"y":45,"fileNum":571,"id":16879,"width":25,"height":45},{"x":100,"y":45,"fileNum":571,"id":16880,"width":25,"height":45},{"x":125,"y":45,"fileNum":571,"id":16881,"width":25,"height":45},{"x":0,"y":90,"fileNum":571,"id":16882,"width":25,"height":45},{"x":25,"y":90,"fileNum":571,"id":16883,"width":25,"height":45},{"x":50,"y":90,"fileNum":571,"id":16884,"width":25,"height":45},{"x":75,"y":90,"fileNum":571,"id":16885,"width":25,"height":45},{"x":100,"y":90,"fileNum":571,"id":16886,"width":25,"height":45},{"x":0,"y":135,"fileNum":571,"id":16887,"width":25,"height":45},{"x":25,"y":135,"fileNum":571,"id":16888,"width":25,"height":45},{"x":50,"y":135,"fileNum":571,"id":16889,"width":25,"height":45},{"x":75,"y":135,"fileNum":571,"id":16890,"width":25,"height":45},{"x":100,"y":135,"fileNum":571,"id":16891,"width":25,"height":45},{"x":0,"y":0,"fileNum":574,"id":16896,"width":32,"height":32},{"x":0,"y":0,"fileNum":573,"id":16897,"width":25,"height":45},{"x":25,"y":0,"fileNum":573,"id":16898,"width":25,"height":45},{"x":50,"y":0,"fileNum":573,"id":16899,"width":25,"height":45},{"x":75,"y":0,"fileNum":573,"id":16900,"width":25,"height":45},{"x":100,"y":0,"fileNum":573,"id":16901,"width":25,"height":45},{"x":125,"y":0,"fileNum":573,"id":16902,"width":25,"height":45},{"x":0,"y":45,"fileNum":573,"id":16903,"width":25,"height":45},{"x":25,"y":45,"fileNum":573,"id":16904,"width":25,"height":45},{"x":50,"y":45,"fileNum":573,"id":16905,"width":25,"height":45},{"x":75,"y":45,"fileNum":573,"id":16906,"width":25,"height":45},{"x":100,"y":45,"fileNum":573,"id":16907,"width":25,"height":45},{"x":125,"y":45,"fileNum":573,"id":16908,"width":25,"height":45},{"x":0,"y":90,"fileNum":573,"id":16909,"width":25,"height":45},{"x":25,"y":90,"fileNum":573,"id":16910,"width":25,"height":45},{"x":50,"y":90,"fileNum":573,"id":16911,"width":25,"height":45},{"x":75,"y":90,"fileNum":573,"id":16912,"width":25,"height":45},{"x":100,"y":90,"fileNum":573,"id":16913,"width":25,"height":45},{"x":0,"y":135,"fileNum":573,"id":16914,"width":25,"height":45},{"x":25,"y":135,"fileNum":573,"id":16915,"width":25,"height":45},{"x":50,"y":135,"fileNum":573,"id":16916,"width":25,"height":45},{"x":75,"y":135,"fileNum":573,"id":16917,"width":25,"height":45},{"x":100,"y":135,"fileNum":573,"id":16918,"width":25,"height":45},{"x":0,"y":0,"fileNum":577,"id":16923,"width":32,"height":32},{"x":0,"y":0,"fileNum":576,"id":16924,"width":25,"height":45},{"x":25,"y":0,"fileNum":576,"id":16925,"width":25,"height":45},{"x":50,"y":0,"fileNum":576,"id":16926,"width":25,"height":45},{"x":75,"y":0,"fileNum":576,"id":16927,"width":25,"height":45},{"x":100,"y":0,"fileNum":576,"id":16928,"width":25,"height":45},{"x":125,"y":0,"fileNum":576,"id":16929,"width":25,"height":45},{"x":0,"y":45,"fileNum":576,"id":16930,"width":25,"height":45},{"x":25,"y":45,"fileNum":576,"id":16931,"width":25,"height":45},{"x":50,"y":45,"fileNum":576,"id":16932,"width":25,"height":45},{"x":75,"y":45,"fileNum":576,"id":16933,"width":25,"height":45},{"x":100,"y":45,"fileNum":576,"id":16934,"width":25,"height":45},{"x":125,"y":45,"fileNum":576,"id":16935,"width":25,"height":45},{"x":0,"y":90,"fileNum":576,"id":16936,"width":25,"height":45},{"x":25,"y":90,"fileNum":576,"id":16937,"width":25,"height":45},{"x":50,"y":90,"fileNum":576,"id":16938,"width":25,"height":45},{"x":75,"y":90,"fileNum":576,"id":16939,"width":25,"height":45},{"x":100,"y":90,"fileNum":576,"id":16940,"width":25,"height":45},{"x":0,"y":135,"fileNum":576,"id":16941,"width":25,"height":45},{"x":25,"y":135,"fileNum":576,"id":16942,"width":25,"height":45},{"x":50,"y":135,"fileNum":576,"id":16943,"width":25,"height":45},{"x":75,"y":135,"fileNum":576,"id":16944,"width":25,"height":45},{"x":100,"y":135,"fileNum":576,"id":16945,"width":25,"height":45},{"x":0,"y":0,"fileNum":579,"id":16950,"width":32,"height":32},{"x":0,"y":0,"fileNum":578,"id":16951,"width":25,"height":45},{"x":25,"y":0,"fileNum":578,"id":16952,"width":25,"height":45},{"x":50,"y":0,"fileNum":578,"id":16953,"width":25,"height":45},{"x":75,"y":0,"fileNum":578,"id":16954,"width":25,"height":45},{"x":100,"y":0,"fileNum":578,"id":16955,"width":25,"height":45},{"x":125,"y":0,"fileNum":578,"id":16956,"width":25,"height":45},{"x":0,"y":45,"fileNum":578,"id":16957,"width":25,"height":45},{"x":25,"y":45,"fileNum":578,"id":16958,"width":25,"height":45},{"x":50,"y":45,"fileNum":578,"id":16959,"width":25,"height":45},{"x":75,"y":45,"fileNum":578,"id":16960,"width":25,"height":45},{"x":100,"y":45,"fileNum":578,"id":16961,"width":25,"height":45},{"x":125,"y":45,"fileNum":578,"id":16962,"width":25,"height":45},{"x":0,"y":90,"fileNum":578,"id":16963,"width":25,"height":45},{"x":25,"y":90,"fileNum":578,"id":16964,"width":25,"height":45},{"x":50,"y":90,"fileNum":578,"id":16965,"width":25,"height":45},{"x":75,"y":90,"fileNum":578,"id":16966,"width":25,"height":45},{"x":100,"y":90,"fileNum":578,"id":16967,"width":25,"height":45},{"x":0,"y":135,"fileNum":578,"id":16968,"width":25,"height":45},{"x":25,"y":135,"fileNum":578,"id":16969,"width":25,"height":45},{"x":50,"y":135,"fileNum":578,"id":16970,"width":25,"height":45},{"x":75,"y":135,"fileNum":578,"id":16971,"width":25,"height":45},{"x":100,"y":135,"fileNum":578,"id":16972,"width":25,"height":45},{"x":0,"y":0,"fileNum":581,"id":16977,"width":32,"height":32},{"x":0,"y":0,"fileNum":580,"id":16978,"width":25,"height":45},{"x":25,"y":0,"fileNum":580,"id":16979,"width":25,"height":45},{"x":50,"y":0,"fileNum":580,"id":16980,"width":25,"height":45},{"x":75,"y":0,"fileNum":580,"id":16981,"width":25,"height":45},{"x":100,"y":0,"fileNum":580,"id":16982,"width":25,"height":45},{"x":125,"y":0,"fileNum":580,"id":16983,"width":25,"height":45},{"x":0,"y":45,"fileNum":580,"id":16984,"width":25,"height":45},{"x":25,"y":45,"fileNum":580,"id":16985,"width":25,"height":45},{"x":50,"y":45,"fileNum":580,"id":16986,"width":25,"height":45},{"x":75,"y":45,"fileNum":580,"id":16987,"width":25,"height":45},{"x":100,"y":45,"fileNum":580,"id":16988,"width":25,"height":45},{"x":125,"y":45,"fileNum":580,"id":16989,"width":25,"height":45},{"x":0,"y":90,"fileNum":580,"id":16990,"width":25,"height":45},{"x":25,"y":90,"fileNum":580,"id":16991,"width":25,"height":45},{"x":50,"y":90,"fileNum":580,"id":16992,"width":25,"height":45},{"x":75,"y":90,"fileNum":580,"id":16993,"width":25,"height":45},{"x":100,"y":90,"fileNum":580,"id":16994,"width":25,"height":45},{"x":0,"y":135,"fileNum":580,"id":16995,"width":25,"height":45},{"x":25,"y":135,"fileNum":580,"id":16996,"width":25,"height":45},{"x":50,"y":135,"fileNum":580,"id":16997,"width":25,"height":45},{"x":75,"y":135,"fileNum":580,"id":16998,"width":25,"height":45},{"x":100,"y":135,"fileNum":580,"id":16999,"width":25,"height":45},{"x":0,"y":0,"fileNum":583,"id":17004,"width":32,"height":32},{"x":0,"y":0,"fileNum":582,"id":17005,"width":25,"height":45},{"x":25,"y":0,"fileNum":582,"id":17006,"width":25,"height":45},{"x":50,"y":0,"fileNum":582,"id":17007,"width":25,"height":45},{"x":75,"y":0,"fileNum":582,"id":17008,"width":25,"height":45},{"x":100,"y":0,"fileNum":582,"id":17009,"width":25,"height":45},{"x":125,"y":0,"fileNum":582,"id":17010,"width":25,"height":45},{"x":0,"y":45,"fileNum":582,"id":17011,"width":25,"height":45},{"x":25,"y":45,"fileNum":582,"id":17012,"width":25,"height":45},{"x":50,"y":45,"fileNum":582,"id":17013,"width":25,"height":45},{"x":75,"y":45,"fileNum":582,"id":17014,"width":25,"height":45},{"x":100,"y":45,"fileNum":582,"id":17015,"width":25,"height":45},{"x":125,"y":45,"fileNum":582,"id":17016,"width":25,"height":45},{"x":0,"y":90,"fileNum":582,"id":17017,"width":25,"height":45},{"x":25,"y":90,"fileNum":582,"id":17018,"width":25,"height":45},{"x":50,"y":90,"fileNum":582,"id":17019,"width":25,"height":45},{"x":75,"y":90,"fileNum":582,"id":17020,"width":25,"height":45},{"x":100,"y":90,"fileNum":582,"id":17021,"width":25,"height":45},{"x":0,"y":135,"fileNum":582,"id":17022,"width":25,"height":45},{"x":25,"y":135,"fileNum":582,"id":17023,"width":25,"height":45},{"x":50,"y":135,"fileNum":582,"id":17024,"width":25,"height":45},{"x":75,"y":135,"fileNum":582,"id":17025,"width":25,"height":45},{"x":100,"y":135,"fileNum":582,"id":17026,"width":25,"height":45},{"x":0,"y":0,"fileNum":585,"id":17031,"width":32,"height":32},{"x":0,"y":0,"fileNum":584,"id":17032,"width":25,"height":45},{"x":25,"y":0,"fileNum":584,"id":17033,"width":25,"height":45},{"x":50,"y":0,"fileNum":584,"id":17034,"width":25,"height":45},{"x":75,"y":0,"fileNum":584,"id":17035,"width":25,"height":45},{"x":100,"y":0,"fileNum":584,"id":17036,"width":25,"height":45},{"x":125,"y":0,"fileNum":584,"id":17037,"width":25,"height":45},{"x":0,"y":45,"fileNum":584,"id":17038,"width":25,"height":45},{"x":25,"y":45,"fileNum":584,"id":17039,"width":25,"height":45},{"x":50,"y":45,"fileNum":584,"id":17040,"width":25,"height":45},{"x":75,"y":45,"fileNum":584,"id":17041,"width":25,"height":45},{"x":100,"y":45,"fileNum":584,"id":17042,"width":25,"height":45},{"x":125,"y":45,"fileNum":584,"id":17043,"width":25,"height":45},{"x":0,"y":90,"fileNum":584,"id":17044,"width":25,"height":45},{"x":25,"y":90,"fileNum":584,"id":17045,"width":25,"height":45},{"x":50,"y":90,"fileNum":584,"id":17046,"width":25,"height":45},{"x":75,"y":90,"fileNum":584,"id":17047,"width":25,"height":45},{"x":100,"y":90,"fileNum":584,"id":17048,"width":25,"height":45},{"x":0,"y":135,"fileNum":584,"id":17049,"width":25,"height":45},{"x":25,"y":135,"fileNum":584,"id":17050,"width":25,"height":45},{"x":50,"y":135,"fileNum":584,"id":17051,"width":25,"height":45},{"x":75,"y":135,"fileNum":584,"id":17052,"width":25,"height":45},{"x":100,"y":135,"fileNum":584,"id":17053,"width":25,"height":45},{"x":0,"y":0,"fileNum":4,"id":17058,"width":32,"height":32},{"x":0,"y":0,"fileNum":3,"id":17059,"width":25,"height":45},{"x":25,"y":0,"fileNum":3,"id":17060,"width":25,"height":45},{"x":50,"y":0,"fileNum":3,"id":17061,"width":25,"height":45},{"x":75,"y":0,"fileNum":3,"id":17062,"width":25,"height":45},{"x":100,"y":0,"fileNum":3,"id":17063,"width":25,"height":45},{"x":125,"y":0,"fileNum":3,"id":17064,"width":25,"height":45},{"x":0,"y":45,"fileNum":3,"id":17065,"width":25,"height":45},{"x":25,"y":45,"fileNum":3,"id":17066,"width":25,"height":45},{"x":50,"y":45,"fileNum":3,"id":17067,"width":25,"height":45},{"x":75,"y":45,"fileNum":3,"id":17068,"width":25,"height":45},{"x":100,"y":45,"fileNum":3,"id":17069,"width":25,"height":45},{"x":125,"y":45,"fileNum":3,"id":17070,"width":25,"height":45},{"x":0,"y":90,"fileNum":3,"id":17071,"width":25,"height":45},{"x":25,"y":90,"fileNum":3,"id":17072,"width":25,"height":45},{"x":50,"y":90,"fileNum":3,"id":17073,"width":25,"height":45},{"x":75,"y":90,"fileNum":3,"id":17074,"width":25,"height":45},{"x":100,"y":90,"fileNum":3,"id":17075,"width":25,"height":45},{"x":0,"y":135,"fileNum":3,"id":17076,"width":25,"height":45},{"x":25,"y":135,"fileNum":3,"id":17077,"width":25,"height":45},{"x":50,"y":135,"fileNum":3,"id":17078,"width":25,"height":45},{"x":75,"y":135,"fileNum":3,"id":17079,"width":25,"height":45},{"x":100,"y":135,"fileNum":3,"id":17080,"width":25,"height":45},{"x":0,"y":0,"fileNum":16,"id":17085,"width":32,"height":32},{"x":0,"y":0,"fileNum":5,"id":17086,"width":25,"height":45},{"x":25,"y":0,"fileNum":5,"id":17087,"width":25,"height":45},{"x":50,"y":0,"fileNum":5,"id":17088,"width":25,"height":45},{"x":75,"y":0,"fileNum":5,"id":17089,"width":25,"height":45},{"x":100,"y":0,"fileNum":5,"id":17090,"width":25,"height":45},{"x":125,"y":0,"fileNum":5,"id":17091,"width":25,"height":45},{"x":0,"y":45,"fileNum":5,"id":17092,"width":25,"height":45},{"x":25,"y":45,"fileNum":5,"id":17093,"width":25,"height":45},{"x":50,"y":45,"fileNum":5,"id":17094,"width":25,"height":45},{"x":75,"y":45,"fileNum":5,"id":17095,"width":25,"height":45},{"x":100,"y":45,"fileNum":5,"id":17096,"width":25,"height":45},{"x":125,"y":45,"fileNum":5,"id":17097,"width":25,"height":45},{"x":0,"y":90,"fileNum":5,"id":17098,"width":25,"height":45},{"x":25,"y":90,"fileNum":5,"id":17099,"width":25,"height":45},{"x":50,"y":90,"fileNum":5,"id":17100,"width":25,"height":45},{"x":75,"y":90,"fileNum":5,"id":17101,"width":25,"height":45},{"x":100,"y":90,"fileNum":5,"id":17102,"width":25,"height":45},{"x":0,"y":135,"fileNum":5,"id":17103,"width":25,"height":45},{"x":25,"y":135,"fileNum":5,"id":17104,"width":25,"height":45},{"x":50,"y":135,"fileNum":5,"id":17105,"width":25,"height":45},{"x":75,"y":135,"fileNum":5,"id":17106,"width":25,"height":45},{"x":100,"y":135,"fileNum":5,"id":17107,"width":25,"height":45},{"x":0,"y":0,"fileNum":22,"id":17112,"width":32,"height":32},{"x":0,"y":0,"fileNum":21,"id":17113,"width":25,"height":45},{"x":25,"y":0,"fileNum":21,"id":17114,"width":25,"height":45},{"x":50,"y":0,"fileNum":21,"id":17115,"width":25,"height":45},{"x":75,"y":0,"fileNum":21,"id":17116,"width":25,"height":45},{"x":100,"y":0,"fileNum":21,"id":17117,"width":25,"height":45},{"x":125,"y":0,"fileNum":21,"id":17118,"width":25,"height":45},{"x":0,"y":45,"fileNum":21,"id":17119,"width":25,"height":45},{"x":25,"y":45,"fileNum":21,"id":17120,"width":25,"height":45},{"x":50,"y":45,"fileNum":21,"id":17121,"width":25,"height":45},{"x":75,"y":45,"fileNum":21,"id":17122,"width":25,"height":45},{"x":100,"y":45,"fileNum":21,"id":17123,"width":25,"height":45},{"x":125,"y":45,"fileNum":21,"id":17124,"width":25,"height":45},{"x":0,"y":90,"fileNum":21,"id":17125,"width":25,"height":45},{"x":25,"y":90,"fileNum":21,"id":17126,"width":25,"height":45},{"x":50,"y":90,"fileNum":21,"id":17127,"width":25,"height":45},{"x":75,"y":90,"fileNum":21,"id":17128,"width":25,"height":45},{"x":100,"y":90,"fileNum":21,"id":17129,"width":25,"height":45},{"x":0,"y":135,"fileNum":21,"id":17130,"width":25,"height":45},{"x":25,"y":135,"fileNum":21,"id":17131,"width":25,"height":45},{"x":50,"y":135,"fileNum":21,"id":17132,"width":25,"height":45},{"x":75,"y":135,"fileNum":21,"id":17133,"width":25,"height":45},{"x":100,"y":135,"fileNum":21,"id":17134,"width":25,"height":45},{"x":0,"y":0,"fileNum":24,"id":17139,"width":32,"height":32},{"x":0,"y":0,"fileNum":23,"id":17140,"width":25,"height":45},{"x":25,"y":0,"fileNum":23,"id":17141,"width":25,"height":45},{"x":50,"y":0,"fileNum":23,"id":17142,"width":25,"height":45},{"x":75,"y":0,"fileNum":23,"id":17143,"width":25,"height":45},{"x":100,"y":0,"fileNum":23,"id":17144,"width":25,"height":45},{"x":125,"y":0,"fileNum":23,"id":17145,"width":25,"height":45},{"x":0,"y":45,"fileNum":23,"id":17146,"width":25,"height":45},{"x":25,"y":45,"fileNum":23,"id":17147,"width":25,"height":45},{"x":50,"y":45,"fileNum":23,"id":17148,"width":25,"height":45},{"x":75,"y":45,"fileNum":23,"id":17149,"width":25,"height":45},{"x":100,"y":45,"fileNum":23,"id":17150,"width":25,"height":45},{"x":125,"y":45,"fileNum":23,"id":17151,"width":25,"height":45},{"x":0,"y":90,"fileNum":23,"id":17152,"width":25,"height":45},{"x":25,"y":90,"fileNum":23,"id":17153,"width":25,"height":45},{"x":50,"y":90,"fileNum":23,"id":17154,"width":25,"height":45},{"x":75,"y":90,"fileNum":23,"id":17155,"width":25,"height":45},{"x":100,"y":90,"fileNum":23,"id":17156,"width":25,"height":45},{"x":0,"y":135,"fileNum":23,"id":17157,"width":25,"height":45},{"x":25,"y":135,"fileNum":23,"id":17158,"width":25,"height":45},{"x":50,"y":135,"fileNum":23,"id":17159,"width":25,"height":45},{"x":75,"y":135,"fileNum":23,"id":17160,"width":25,"height":45},{"x":100,"y":135,"fileNum":23,"id":17161,"width":25,"height":45},{"x":0,"y":0,"fileNum":26,"id":17166,"width":32,"height":32},{"x":0,"y":0,"fileNum":25,"id":17167,"width":25,"height":45},{"x":25,"y":0,"fileNum":25,"id":17168,"width":25,"height":45},{"x":50,"y":0,"fileNum":25,"id":17169,"width":25,"height":45},{"x":75,"y":0,"fileNum":25,"id":17170,"width":25,"height":45},{"x":100,"y":0,"fileNum":25,"id":17171,"width":25,"height":45},{"x":125,"y":0,"fileNum":25,"id":17172,"width":25,"height":45},{"x":0,"y":45,"fileNum":25,"id":17173,"width":25,"height":45},{"x":25,"y":45,"fileNum":25,"id":17174,"width":25,"height":45},{"x":50,"y":45,"fileNum":25,"id":17175,"width":25,"height":45},{"x":75,"y":45,"fileNum":25,"id":17176,"width":25,"height":45},{"x":100,"y":45,"fileNum":25,"id":17177,"width":25,"height":45},{"x":125,"y":45,"fileNum":25,"id":17178,"width":25,"height":45},{"x":0,"y":90,"fileNum":25,"id":17179,"width":25,"height":45},{"x":25,"y":90,"fileNum":25,"id":17180,"width":25,"height":45},{"x":50,"y":90,"fileNum":25,"id":17181,"width":25,"height":45},{"x":75,"y":90,"fileNum":25,"id":17182,"width":25,"height":45},{"x":100,"y":90,"fileNum":25,"id":17183,"width":25,"height":45},{"x":0,"y":135,"fileNum":25,"id":17184,"width":25,"height":45},{"x":25,"y":135,"fileNum":25,"id":17185,"width":25,"height":45},{"x":50,"y":135,"fileNum":25,"id":17186,"width":25,"height":45},{"x":75,"y":135,"fileNum":25,"id":17187,"width":25,"height":45},{"x":100,"y":135,"fileNum":25,"id":17188,"width":25,"height":45},{"x":0,"y":0,"fileNum":28,"id":17193,"width":32,"height":32},{"x":0,"y":0,"fileNum":27,"id":17194,"width":25,"height":45},{"x":25,"y":0,"fileNum":27,"id":17195,"width":25,"height":45},{"x":50,"y":0,"fileNum":27,"id":17196,"width":25,"height":45},{"x":75,"y":0,"fileNum":27,"id":17197,"width":25,"height":45},{"x":100,"y":0,"fileNum":27,"id":17198,"width":25,"height":45},{"x":125,"y":0,"fileNum":27,"id":17199,"width":25,"height":45},{"x":0,"y":45,"fileNum":27,"id":17200,"width":25,"height":45},{"x":25,"y":45,"fileNum":27,"id":17201,"width":25,"height":45},{"x":50,"y":45,"fileNum":27,"id":17202,"width":25,"height":45},{"x":75,"y":45,"fileNum":27,"id":17203,"width":25,"height":45},{"x":100,"y":45,"fileNum":27,"id":17204,"width":25,"height":45},{"x":125,"y":45,"fileNum":27,"id":17205,"width":25,"height":45},{"x":0,"y":90,"fileNum":27,"id":17206,"width":25,"height":45},{"x":25,"y":90,"fileNum":27,"id":17207,"width":25,"height":45},{"x":50,"y":90,"fileNum":27,"id":17208,"width":25,"height":45},{"x":75,"y":90,"fileNum":27,"id":17209,"width":25,"height":45},{"x":100,"y":90,"fileNum":27,"id":17210,"width":25,"height":45},{"x":0,"y":135,"fileNum":27,"id":17211,"width":25,"height":45},{"x":25,"y":135,"fileNum":27,"id":17212,"width":25,"height":45},{"x":50,"y":135,"fileNum":27,"id":17213,"width":25,"height":45},{"x":75,"y":135,"fileNum":27,"id":17214,"width":25,"height":45},{"x":100,"y":135,"fileNum":27,"id":17215,"width":25,"height":45},{"x":0,"y":0,"fileNum":30,"id":17220,"width":32,"height":32},{"x":0,"y":0,"fileNum":29,"id":17221,"width":25,"height":45},{"x":25,"y":0,"fileNum":29,"id":17222,"width":25,"height":45},{"x":50,"y":0,"fileNum":29,"id":17223,"width":25,"height":45},{"x":75,"y":0,"fileNum":29,"id":17224,"width":25,"height":45},{"x":100,"y":0,"fileNum":29,"id":17225,"width":25,"height":45},{"x":125,"y":0,"fileNum":29,"id":17226,"width":25,"height":45},{"x":0,"y":45,"fileNum":29,"id":17227,"width":25,"height":45},{"x":25,"y":45,"fileNum":29,"id":17228,"width":25,"height":45},{"x":50,"y":45,"fileNum":29,"id":17229,"width":25,"height":45},{"x":75,"y":45,"fileNum":29,"id":17230,"width":25,"height":45},{"x":100,"y":45,"fileNum":29,"id":17231,"width":25,"height":45},{"x":125,"y":45,"fileNum":29,"id":17232,"width":25,"height":45},{"x":0,"y":90,"fileNum":29,"id":17233,"width":25,"height":45},{"x":25,"y":90,"fileNum":29,"id":17234,"width":25,"height":45},{"x":50,"y":90,"fileNum":29,"id":17235,"width":25,"height":45},{"x":75,"y":90,"fileNum":29,"id":17236,"width":25,"height":45},{"x":100,"y":90,"fileNum":29,"id":17237,"width":25,"height":45},{"x":0,"y":135,"fileNum":29,"id":17238,"width":25,"height":45},{"x":25,"y":135,"fileNum":29,"id":17239,"width":25,"height":45},{"x":50,"y":135,"fileNum":29,"id":17240,"width":25,"height":45},{"x":75,"y":135,"fileNum":29,"id":17241,"width":25,"height":45},{"x":100,"y":135,"fileNum":29,"id":17242,"width":25,"height":45},{"x":0,"y":0,"fileNum":32,"id":17247,"width":32,"height":32},{"x":0,"y":0,"fileNum":31,"id":17248,"width":25,"height":45},{"x":25,"y":0,"fileNum":31,"id":17249,"width":25,"height":45},{"x":50,"y":0,"fileNum":31,"id":17250,"width":25,"height":45},{"x":75,"y":0,"fileNum":31,"id":17251,"width":25,"height":45},{"x":100,"y":0,"fileNum":31,"id":17252,"width":25,"height":45},{"x":125,"y":0,"fileNum":31,"id":17253,"width":25,"height":45},{"x":0,"y":45,"fileNum":31,"id":17254,"width":25,"height":45},{"x":25,"y":45,"fileNum":31,"id":17255,"width":25,"height":45},{"x":50,"y":45,"fileNum":31,"id":17256,"width":25,"height":45},{"x":75,"y":45,"fileNum":31,"id":17257,"width":25,"height":45},{"x":100,"y":45,"fileNum":31,"id":17258,"width":25,"height":45},{"x":125,"y":45,"fileNum":31,"id":17259,"width":25,"height":45},{"x":0,"y":90,"fileNum":31,"id":17260,"width":25,"height":45},{"x":25,"y":90,"fileNum":31,"id":17261,"width":25,"height":45},{"x":50,"y":90,"fileNum":31,"id":17262,"width":25,"height":45},{"x":75,"y":90,"fileNum":31,"id":17263,"width":25,"height":45},{"x":100,"y":90,"fileNum":31,"id":17264,"width":25,"height":45},{"x":0,"y":135,"fileNum":31,"id":17265,"width":25,"height":45},{"x":25,"y":135,"fileNum":31,"id":17266,"width":25,"height":45},{"x":50,"y":135,"fileNum":31,"id":17267,"width":25,"height":45},{"x":75,"y":135,"fileNum":31,"id":17268,"width":25,"height":45},{"x":100,"y":135,"fileNum":31,"id":17269,"width":25,"height":45},{"x":0,"y":0,"fileNum":34,"id":17274,"width":32,"height":32},{"x":0,"y":0,"fileNum":33,"id":17275,"width":25,"height":45},{"x":25,"y":0,"fileNum":33,"id":17276,"width":25,"height":45},{"x":50,"y":0,"fileNum":33,"id":17277,"width":25,"height":45},{"x":75,"y":0,"fileNum":33,"id":17278,"width":25,"height":45},{"x":100,"y":0,"fileNum":33,"id":17279,"width":25,"height":45},{"x":125,"y":0,"fileNum":33,"id":17280,"width":25,"height":45},{"x":0,"y":45,"fileNum":33,"id":17281,"width":25,"height":45},{"x":25,"y":45,"fileNum":33,"id":17282,"width":25,"height":45},{"x":50,"y":45,"fileNum":33,"id":17283,"width":25,"height":45},{"x":75,"y":45,"fileNum":33,"id":17284,"width":25,"height":45},{"x":100,"y":45,"fileNum":33,"id":17285,"width":25,"height":45},{"x":125,"y":45,"fileNum":33,"id":17286,"width":25,"height":45},{"x":0,"y":90,"fileNum":33,"id":17287,"width":25,"height":45},{"x":25,"y":90,"fileNum":33,"id":17288,"width":25,"height":45},{"x":50,"y":90,"fileNum":33,"id":17289,"width":25,"height":45},{"x":75,"y":90,"fileNum":33,"id":17290,"width":25,"height":45},{"x":100,"y":90,"fileNum":33,"id":17291,"width":25,"height":45},{"x":0,"y":135,"fileNum":33,"id":17292,"width":25,"height":45},{"x":25,"y":135,"fileNum":33,"id":17293,"width":25,"height":45},{"x":50,"y":135,"fileNum":33,"id":17294,"width":25,"height":45},{"x":75,"y":135,"fileNum":33,"id":17295,"width":25,"height":45},{"x":100,"y":135,"fileNum":33,"id":17296,"width":25,"height":45},{"x":0,"y":0,"fileNum":36,"id":17301,"width":32,"height":32},{"x":0,"y":0,"fileNum":35,"id":17302,"width":25,"height":45},{"x":25,"y":0,"fileNum":35,"id":17303,"width":25,"height":45},{"x":50,"y":0,"fileNum":35,"id":17304,"width":25,"height":45},{"x":75,"y":0,"fileNum":35,"id":17305,"width":25,"height":45},{"x":100,"y":0,"fileNum":35,"id":17306,"width":25,"height":45},{"x":125,"y":0,"fileNum":35,"id":17307,"width":25,"height":45},{"x":0,"y":45,"fileNum":35,"id":17308,"width":25,"height":45},{"x":25,"y":45,"fileNum":35,"id":17309,"width":25,"height":45},{"x":50,"y":45,"fileNum":35,"id":17310,"width":25,"height":45},{"x":75,"y":45,"fileNum":35,"id":17311,"width":25,"height":45},{"x":100,"y":45,"fileNum":35,"id":17312,"width":25,"height":45},{"x":125,"y":45,"fileNum":35,"id":17313,"width":25,"height":45},{"x":0,"y":90,"fileNum":35,"id":17314,"width":25,"height":45},{"x":25,"y":90,"fileNum":35,"id":17315,"width":25,"height":45},{"x":50,"y":90,"fileNum":35,"id":17316,"width":25,"height":45},{"x":75,"y":90,"fileNum":35,"id":17317,"width":25,"height":45},{"x":100,"y":90,"fileNum":35,"id":17318,"width":25,"height":45},{"x":0,"y":135,"fileNum":35,"id":17319,"width":25,"height":45},{"x":25,"y":135,"fileNum":35,"id":17320,"width":25,"height":45},{"x":50,"y":135,"fileNum":35,"id":17321,"width":25,"height":45},{"x":75,"y":135,"fileNum":35,"id":17322,"width":25,"height":45},{"x":100,"y":135,"fileNum":35,"id":17323,"width":25,"height":45},{"x":0,"y":0,"fileNum":38,"id":17328,"width":32,"height":32},{"x":0,"y":0,"fileNum":37,"id":17329,"width":25,"height":45},{"x":25,"y":0,"fileNum":37,"id":17330,"width":25,"height":45},{"x":50,"y":0,"fileNum":37,"id":17331,"width":25,"height":45},{"x":75,"y":0,"fileNum":37,"id":17332,"width":25,"height":45},{"x":100,"y":0,"fileNum":37,"id":17333,"width":25,"height":45},{"x":125,"y":0,"fileNum":37,"id":17334,"width":25,"height":45},{"x":0,"y":45,"fileNum":37,"id":17335,"width":25,"height":45},{"x":25,"y":45,"fileNum":37,"id":17336,"width":25,"height":45},{"x":50,"y":45,"fileNum":37,"id":17337,"width":25,"height":45},{"x":75,"y":45,"fileNum":37,"id":17338,"width":25,"height":45},{"x":100,"y":45,"fileNum":37,"id":17339,"width":25,"height":45},{"x":125,"y":45,"fileNum":37,"id":17340,"width":25,"height":45},{"x":0,"y":90,"fileNum":37,"id":17341,"width":25,"height":45},{"x":25,"y":90,"fileNum":37,"id":17342,"width":25,"height":45},{"x":50,"y":90,"fileNum":37,"id":17343,"width":25,"height":45},{"x":75,"y":90,"fileNum":37,"id":17344,"width":25,"height":45},{"x":100,"y":90,"fileNum":37,"id":17345,"width":25,"height":45},{"x":0,"y":135,"fileNum":37,"id":17346,"width":25,"height":45},{"x":25,"y":135,"fileNum":37,"id":17347,"width":25,"height":45},{"x":50,"y":135,"fileNum":37,"id":17348,"width":25,"height":45},{"x":75,"y":135,"fileNum":37,"id":17349,"width":25,"height":45},{"x":100,"y":135,"fileNum":37,"id":17350,"width":25,"height":45},{"x":0,"y":0,"fileNum":40,"id":17355,"width":32,"height":32},{"x":0,"y":0,"fileNum":39,"id":17356,"width":25,"height":45},{"x":25,"y":0,"fileNum":39,"id":17357,"width":25,"height":45},{"x":50,"y":0,"fileNum":39,"id":17358,"width":25,"height":45},{"x":75,"y":0,"fileNum":39,"id":17359,"width":25,"height":45},{"x":100,"y":0,"fileNum":39,"id":17360,"width":25,"height":45},{"x":125,"y":0,"fileNum":39,"id":17361,"width":25,"height":45},{"x":0,"y":45,"fileNum":39,"id":17362,"width":25,"height":45},{"x":25,"y":45,"fileNum":39,"id":17363,"width":25,"height":45},{"x":50,"y":45,"fileNum":39,"id":17364,"width":25,"height":45},{"x":75,"y":45,"fileNum":39,"id":17365,"width":25,"height":45},{"x":100,"y":45,"fileNum":39,"id":17366,"width":25,"height":45},{"x":125,"y":45,"fileNum":39,"id":17367,"width":25,"height":45},{"x":0,"y":90,"fileNum":39,"id":17368,"width":25,"height":45},{"x":25,"y":90,"fileNum":39,"id":17369,"width":25,"height":45},{"x":50,"y":90,"fileNum":39,"id":17370,"width":25,"height":45},{"x":75,"y":90,"fileNum":39,"id":17371,"width":25,"height":45},{"x":100,"y":90,"fileNum":39,"id":17372,"width":25,"height":45},{"x":0,"y":135,"fileNum":39,"id":17373,"width":25,"height":45},{"x":25,"y":135,"fileNum":39,"id":17374,"width":25,"height":45},{"x":50,"y":135,"fileNum":39,"id":17375,"width":25,"height":45},{"x":75,"y":135,"fileNum":39,"id":17376,"width":25,"height":45},{"x":100,"y":135,"fileNum":39,"id":17377,"width":25,"height":45},{"x":0,"y":0,"fileNum":42,"id":17382,"width":32,"height":32},{"x":0,"y":0,"fileNum":41,"id":17383,"width":25,"height":45},{"x":25,"y":0,"fileNum":41,"id":17384,"width":25,"height":45},{"x":50,"y":0,"fileNum":41,"id":17385,"width":25,"height":45},{"x":75,"y":0,"fileNum":41,"id":17386,"width":25,"height":45},{"x":100,"y":0,"fileNum":41,"id":17387,"width":25,"height":45},{"x":125,"y":0,"fileNum":41,"id":17388,"width":25,"height":45},{"x":0,"y":45,"fileNum":41,"id":17389,"width":25,"height":45},{"x":25,"y":45,"fileNum":41,"id":17390,"width":25,"height":45},{"x":50,"y":45,"fileNum":41,"id":17391,"width":25,"height":45},{"x":75,"y":45,"fileNum":41,"id":17392,"width":25,"height":45},{"x":100,"y":45,"fileNum":41,"id":17393,"width":25,"height":45},{"x":125,"y":45,"fileNum":41,"id":17394,"width":25,"height":45},{"x":0,"y":90,"fileNum":41,"id":17395,"width":25,"height":45},{"x":25,"y":90,"fileNum":41,"id":17396,"width":25,"height":45},{"x":50,"y":90,"fileNum":41,"id":17397,"width":25,"height":45},{"x":75,"y":90,"fileNum":41,"id":17398,"width":25,"height":45},{"x":100,"y":90,"fileNum":41,"id":17399,"width":25,"height":45},{"x":0,"y":135,"fileNum":41,"id":17400,"width":25,"height":45},{"x":25,"y":135,"fileNum":41,"id":17401,"width":25,"height":45},{"x":50,"y":135,"fileNum":41,"id":17402,"width":25,"height":45},{"x":75,"y":135,"fileNum":41,"id":17403,"width":25,"height":45},{"x":100,"y":135,"fileNum":41,"id":17404,"width":25,"height":45},{"x":0,"y":0,"fileNum":44,"id":17409,"width":32,"height":32},{"x":0,"y":0,"fileNum":43,"id":17410,"width":25,"height":45},{"x":25,"y":0,"fileNum":43,"id":17411,"width":25,"height":45},{"x":50,"y":0,"fileNum":43,"id":17412,"width":25,"height":45},{"x":75,"y":0,"fileNum":43,"id":17413,"width":25,"height":45},{"x":100,"y":0,"fileNum":43,"id":17414,"width":25,"height":45},{"x":125,"y":0,"fileNum":43,"id":17415,"width":25,"height":45},{"x":0,"y":45,"fileNum":43,"id":17416,"width":25,"height":45},{"x":25,"y":45,"fileNum":43,"id":17417,"width":25,"height":45},{"x":50,"y":45,"fileNum":43,"id":17418,"width":25,"height":45},{"x":75,"y":45,"fileNum":43,"id":17419,"width":25,"height":45},{"x":100,"y":45,"fileNum":43,"id":17420,"width":25,"height":45},{"x":125,"y":45,"fileNum":43,"id":17421,"width":25,"height":45},{"x":0,"y":90,"fileNum":43,"id":17422,"width":25,"height":45},{"x":25,"y":90,"fileNum":43,"id":17423,"width":25,"height":45},{"x":50,"y":90,"fileNum":43,"id":17424,"width":25,"height":45},{"x":75,"y":90,"fileNum":43,"id":17425,"width":25,"height":45},{"x":100,"y":90,"fileNum":43,"id":17426,"width":25,"height":45},{"x":0,"y":135,"fileNum":43,"id":17427,"width":25,"height":45},{"x":25,"y":135,"fileNum":43,"id":17428,"width":25,"height":45},{"x":50,"y":135,"fileNum":43,"id":17429,"width":25,"height":45},{"x":75,"y":135,"fileNum":43,"id":17430,"width":25,"height":45},{"x":100,"y":135,"fileNum":43,"id":17431,"width":25,"height":45},{"x":0,"y":0,"fileNum":46,"id":17436,"width":32,"height":32},{"x":0,"y":0,"fileNum":45,"id":17437,"width":25,"height":45},{"x":25,"y":0,"fileNum":45,"id":17438,"width":25,"height":45},{"x":50,"y":0,"fileNum":45,"id":17439,"width":25,"height":45},{"x":75,"y":0,"fileNum":45,"id":17440,"width":25,"height":45},{"x":100,"y":0,"fileNum":45,"id":17441,"width":25,"height":45},{"x":125,"y":0,"fileNum":45,"id":17442,"width":25,"height":45},{"x":0,"y":45,"fileNum":45,"id":17443,"width":25,"height":45},{"x":25,"y":45,"fileNum":45,"id":17444,"width":25,"height":45},{"x":50,"y":45,"fileNum":45,"id":17445,"width":25,"height":45},{"x":75,"y":45,"fileNum":45,"id":17446,"width":25,"height":45},{"x":100,"y":45,"fileNum":45,"id":17447,"width":25,"height":45},{"x":125,"y":45,"fileNum":45,"id":17448,"width":25,"height":45},{"x":0,"y":90,"fileNum":45,"id":17449,"width":25,"height":45},{"x":25,"y":90,"fileNum":45,"id":17450,"width":25,"height":45},{"x":50,"y":90,"fileNum":45,"id":17451,"width":25,"height":45},{"x":75,"y":90,"fileNum":45,"id":17452,"width":25,"height":45},{"x":100,"y":90,"fileNum":45,"id":17453,"width":25,"height":45},{"x":0,"y":135,"fileNum":45,"id":17454,"width":25,"height":45},{"x":25,"y":135,"fileNum":45,"id":17455,"width":25,"height":45},{"x":50,"y":135,"fileNum":45,"id":17456,"width":25,"height":45},{"x":75,"y":135,"fileNum":45,"id":17457,"width":25,"height":45},{"x":100,"y":135,"fileNum":45,"id":17458,"width":25,"height":45},{"x":0,"y":0,"fileNum":48,"id":17463,"width":32,"height":32},{"x":0,"y":0,"fileNum":47,"id":17464,"width":25,"height":45},{"x":25,"y":0,"fileNum":47,"id":17465,"width":25,"height":45},{"x":50,"y":0,"fileNum":47,"id":17466,"width":25,"height":45},{"x":75,"y":0,"fileNum":47,"id":17467,"width":25,"height":45},{"x":100,"y":0,"fileNum":47,"id":17468,"width":25,"height":45},{"x":125,"y":0,"fileNum":47,"id":17469,"width":25,"height":45},{"x":0,"y":45,"fileNum":47,"id":17470,"width":25,"height":45},{"x":25,"y":45,"fileNum":47,"id":17471,"width":25,"height":45},{"x":50,"y":45,"fileNum":47,"id":17472,"width":25,"height":45},{"x":75,"y":45,"fileNum":47,"id":17473,"width":25,"height":45},{"x":100,"y":45,"fileNum":47,"id":17474,"width":25,"height":45},{"x":125,"y":45,"fileNum":47,"id":17475,"width":25,"height":45},{"x":0,"y":90,"fileNum":47,"id":17476,"width":25,"height":45},{"x":25,"y":90,"fileNum":47,"id":17477,"width":25,"height":45},{"x":50,"y":90,"fileNum":47,"id":17478,"width":25,"height":45},{"x":75,"y":90,"fileNum":47,"id":17479,"width":25,"height":45},{"x":100,"y":90,"fileNum":47,"id":17480,"width":25,"height":45},{"x":0,"y":135,"fileNum":47,"id":17481,"width":25,"height":45},{"x":25,"y":135,"fileNum":47,"id":17482,"width":25,"height":45},{"x":50,"y":135,"fileNum":47,"id":17483,"width":25,"height":45},{"x":75,"y":135,"fileNum":47,"id":17484,"width":25,"height":45},{"x":100,"y":135,"fileNum":47,"id":17485,"width":25,"height":45},{"x":0,"y":0,"fileNum":50,"id":17490,"width":32,"height":32},{"x":0,"y":0,"fileNum":49,"id":17491,"width":25,"height":45},{"x":25,"y":0,"fileNum":49,"id":17492,"width":25,"height":45},{"x":50,"y":0,"fileNum":49,"id":17493,"width":25,"height":45},{"x":75,"y":0,"fileNum":49,"id":17494,"width":25,"height":45},{"x":100,"y":0,"fileNum":49,"id":17495,"width":25,"height":45},{"x":125,"y":0,"fileNum":49,"id":17496,"width":25,"height":45},{"x":0,"y":45,"fileNum":49,"id":17497,"width":25,"height":45},{"x":25,"y":45,"fileNum":49,"id":17498,"width":25,"height":45},{"x":50,"y":45,"fileNum":49,"id":17499,"width":25,"height":45},{"x":75,"y":45,"fileNum":49,"id":17500,"width":25,"height":45},{"x":100,"y":45,"fileNum":49,"id":17501,"width":25,"height":45},{"x":125,"y":45,"fileNum":49,"id":17502,"width":25,"height":45},{"x":0,"y":90,"fileNum":49,"id":17503,"width":25,"height":45},{"x":25,"y":90,"fileNum":49,"id":17504,"width":25,"height":45},{"x":50,"y":90,"fileNum":49,"id":17505,"width":25,"height":45},{"x":75,"y":90,"fileNum":49,"id":17506,"width":25,"height":45},{"x":100,"y":90,"fileNum":49,"id":17507,"width":25,"height":45},{"x":0,"y":135,"fileNum":49,"id":17508,"width":25,"height":45},{"x":25,"y":135,"fileNum":49,"id":17509,"width":25,"height":45},{"x":50,"y":135,"fileNum":49,"id":17510,"width":25,"height":45},{"x":75,"y":135,"fileNum":49,"id":17511,"width":25,"height":45},{"x":100,"y":135,"fileNum":49,"id":17512,"width":25,"height":45},{"x":0,"y":0,"fileNum":52,"id":17517,"width":32,"height":32},{"x":0,"y":0,"fileNum":51,"id":17518,"width":25,"height":45},{"x":25,"y":0,"fileNum":51,"id":17519,"width":25,"height":45},{"x":50,"y":0,"fileNum":51,"id":17520,"width":25,"height":45},{"x":75,"y":0,"fileNum":51,"id":17521,"width":25,"height":45},{"x":100,"y":0,"fileNum":51,"id":17522,"width":25,"height":45},{"x":125,"y":0,"fileNum":51,"id":17523,"width":25,"height":45},{"x":0,"y":45,"fileNum":51,"id":17524,"width":25,"height":45},{"x":25,"y":45,"fileNum":51,"id":17525,"width":25,"height":45},{"x":50,"y":45,"fileNum":51,"id":17526,"width":25,"height":45},{"x":75,"y":45,"fileNum":51,"id":17527,"width":25,"height":45},{"x":100,"y":45,"fileNum":51,"id":17528,"width":25,"height":45},{"x":125,"y":45,"fileNum":51,"id":17529,"width":25,"height":45},{"x":0,"y":90,"fileNum":51,"id":17530,"width":25,"height":45},{"x":25,"y":90,"fileNum":51,"id":17531,"width":25,"height":45},{"x":50,"y":90,"fileNum":51,"id":17532,"width":25,"height":45},{"x":75,"y":90,"fileNum":51,"id":17533,"width":25,"height":45},{"x":100,"y":90,"fileNum":51,"id":17534,"width":25,"height":45},{"x":0,"y":135,"fileNum":51,"id":17535,"width":25,"height":45},{"x":25,"y":135,"fileNum":51,"id":17536,"width":25,"height":45},{"x":50,"y":135,"fileNum":51,"id":17537,"width":25,"height":45},{"x":75,"y":135,"fileNum":51,"id":17538,"width":25,"height":45},{"x":100,"y":135,"fileNum":51,"id":17539,"width":25,"height":45},{"x":0,"y":0,"fileNum":54,"id":17544,"width":32,"height":32},{"x":0,"y":0,"fileNum":53,"id":17545,"width":25,"height":45},{"x":25,"y":0,"fileNum":53,"id":17546,"width":25,"height":45},{"x":50,"y":0,"fileNum":53,"id":17547,"width":25,"height":45},{"x":75,"y":0,"fileNum":53,"id":17548,"width":25,"height":45},{"x":100,"y":0,"fileNum":53,"id":17549,"width":25,"height":45},{"x":125,"y":0,"fileNum":53,"id":17550,"width":25,"height":45},{"x":0,"y":45,"fileNum":53,"id":17551,"width":25,"height":45},{"x":25,"y":45,"fileNum":53,"id":17552,"width":25,"height":45},{"x":50,"y":45,"fileNum":53,"id":17553,"width":25,"height":45},{"x":75,"y":45,"fileNum":53,"id":17554,"width":25,"height":45},{"x":100,"y":45,"fileNum":53,"id":17555,"width":25,"height":45},{"x":125,"y":45,"fileNum":53,"id":17556,"width":25,"height":45},{"x":0,"y":90,"fileNum":53,"id":17557,"width":25,"height":45},{"x":25,"y":90,"fileNum":53,"id":17558,"width":25,"height":45},{"x":50,"y":90,"fileNum":53,"id":17559,"width":25,"height":45},{"x":75,"y":90,"fileNum":53,"id":17560,"width":25,"height":45},{"x":100,"y":90,"fileNum":53,"id":17561,"width":25,"height":45},{"x":0,"y":135,"fileNum":53,"id":17562,"width":25,"height":45},{"x":25,"y":135,"fileNum":53,"id":17563,"width":25,"height":45},{"x":50,"y":135,"fileNum":53,"id":17564,"width":25,"height":45},{"x":75,"y":135,"fileNum":53,"id":17565,"width":25,"height":45},{"x":100,"y":135,"fileNum":53,"id":17566,"width":25,"height":45},{"x":0,"y":0,"fileNum":4105,"id":17571,"width":35,"height":53},{"x":35,"y":0,"fileNum":4105,"id":17572,"width":35,"height":53},{"x":70,"y":0,"fileNum":4105,"id":17573,"width":35,"height":53},{"x":105,"y":0,"fileNum":4105,"id":17574,"width":35,"height":53},{"x":140,"y":0,"fileNum":4105,"id":17575,"width":35,"height":53},{"x":175,"y":0,"fileNum":4105,"id":17576,"width":35,"height":53},{"x":210,"y":0,"fileNum":4105,"id":17577,"width":35,"height":53},{"x":245,"y":0,"fileNum":4105,"id":17578,"width":35,"height":53},{"x":0,"y":53,"fileNum":4105,"id":17579,"width":35,"height":53},{"x":35,"y":53,"fileNum":4105,"id":17580,"width":35,"height":53},{"x":70,"y":53,"fileNum":4105,"id":17581,"width":35,"height":53},{"x":105,"y":53,"fileNum":4105,"id":17582,"width":35,"height":53},{"x":140,"y":53,"fileNum":4105,"id":17583,"width":35,"height":53},{"x":175,"y":53,"fileNum":4105,"id":17584,"width":35,"height":53},{"x":210,"y":53,"fileNum":4105,"id":17585,"width":35,"height":53},{"x":245,"y":53,"fileNum":4105,"id":17586,"width":35,"height":53},{"x":0,"y":106,"fileNum":4105,"id":17587,"width":35,"height":53},{"x":35,"y":106,"fileNum":4105,"id":17588,"width":35,"height":53},{"x":70,"y":106,"fileNum":4105,"id":17589,"width":35,"height":53},{"x":105,"y":106,"fileNum":4105,"id":17590,"width":35,"height":53},{"x":140,"y":106,"fileNum":4105,"id":17591,"width":35,"height":53},{"x":0,"y":159,"fileNum":4105,"id":17592,"width":35,"height":53},{"x":35,"y":159,"fileNum":4105,"id":17593,"width":35,"height":53},{"x":70,"y":159,"fileNum":4105,"id":17594,"width":35,"height":53},{"x":105,"y":159,"fileNum":4105,"id":17595,"width":35,"height":53},{"x":140,"y":159,"fileNum":4105,"id":17596,"width":35,"height":53},{"x":0,"y":0,"fileNum":4136,"id":17601,"width":96,"height":96},{"x":96,"y":0,"fileNum":4136,"id":17602,"width":96,"height":96},{"x":192,"y":0,"fileNum":4136,"id":17603,"width":96,"height":96},{"x":288,"y":0,"fileNum":4136,"id":17604,"width":96,"height":96},{"x":384,"y":0,"fileNum":4136,"id":17605,"width":96,"height":96},{"x":480,"y":0,"fileNum":4136,"id":17606,"width":96,"height":96},{"x":0,"y":96,"fileNum":4136,"id":17607,"width":96,"height":96},{"x":96,"y":96,"fileNum":4136,"id":17608,"width":96,"height":96},{"x":192,"y":96,"fileNum":4136,"id":17609,"width":96,"height":96},{"x":288,"y":96,"fileNum":4136,"id":17610,"width":96,"height":96},{"x":384,"y":96,"fileNum":4136,"id":17611,"width":96,"height":96},{"x":480,"y":96,"fileNum":4136,"id":17612,"width":96,"height":96},{"x":0,"y":192,"fileNum":4136,"id":17613,"width":96,"height":96},{"x":96,"y":192,"fileNum":4136,"id":17614,"width":96,"height":96},{"x":192,"y":192,"fileNum":4136,"id":17615,"width":96,"height":96},{"x":288,"y":192,"fileNum":4136,"id":17616,"width":96,"height":96},{"x":384,"y":192,"fileNum":4136,"id":17617,"width":96,"height":96},{"x":480,"y":192,"fileNum":4136,"id":17618,"width":96,"height":96},{"x":0,"y":288,"fileNum":4136,"id":17619,"width":96,"height":96},{"x":96,"y":288,"fileNum":4136,"id":17620,"width":96,"height":96},{"x":192,"y":288,"fileNum":4136,"id":17621,"width":96,"height":96},{"x":288,"y":288,"fileNum":4136,"id":17622,"width":96,"height":96},{"x":384,"y":288,"fileNum":4136,"id":17623,"width":96,"height":96},{"x":480,"y":288,"fileNum":4136,"id":17624,"width":96,"height":96},{"x":0,"y":0,"fileNum":4137,"id":17629,"width":96,"height":96},{"x":96,"y":0,"fileNum":4137,"id":17630,"width":96,"height":96},{"x":192,"y":0,"fileNum":4137,"id":17631,"width":96,"height":96},{"x":288,"y":0,"fileNum":4137,"id":17632,"width":96,"height":96},{"x":384,"y":0,"fileNum":4137,"id":17633,"width":96,"height":96},{"x":480,"y":0,"fileNum":4137,"id":17634,"width":96,"height":96},{"x":0,"y":96,"fileNum":4137,"id":17635,"width":96,"height":96},{"x":96,"y":96,"fileNum":4137,"id":17636,"width":96,"height":96},{"x":192,"y":96,"fileNum":4137,"id":17637,"width":96,"height":96},{"x":288,"y":96,"fileNum":4137,"id":17638,"width":96,"height":96},{"x":384,"y":96,"fileNum":4137,"id":17639,"width":96,"height":96},{"x":480,"y":96,"fileNum":4137,"id":17640,"width":96,"height":96},{"x":0,"y":192,"fileNum":4137,"id":17641,"width":96,"height":96},{"x":96,"y":192,"fileNum":4137,"id":17642,"width":96,"height":96},{"x":192,"y":192,"fileNum":4137,"id":17643,"width":96,"height":96},{"x":288,"y":192,"fileNum":4137,"id":17644,"width":96,"height":96},{"x":384,"y":192,"fileNum":4137,"id":17645,"width":96,"height":96},{"x":480,"y":192,"fileNum":4137,"id":17646,"width":96,"height":96},{"x":0,"y":288,"fileNum":4137,"id":17647,"width":96,"height":96},{"x":96,"y":288,"fileNum":4137,"id":17648,"width":96,"height":96},{"x":192,"y":288,"fileNum":4137,"id":17649,"width":96,"height":96},{"x":288,"y":288,"fileNum":4137,"id":17650,"width":96,"height":96},{"x":384,"y":288,"fileNum":4137,"id":17651,"width":96,"height":96},{"x":480,"y":288,"fileNum":4137,"id":17652,"width":96,"height":96},{"x":0,"y":0,"fileNum":412,"id":17657,"width":32,"height":32},{"x":0,"y":0,"fileNum":411,"id":17658,"width":25,"height":45},{"x":25,"y":0,"fileNum":411,"id":17659,"width":25,"height":45},{"x":50,"y":0,"fileNum":411,"id":17660,"width":25,"height":45},{"x":75,"y":0,"fileNum":411,"id":17661,"width":25,"height":45},{"x":100,"y":0,"fileNum":411,"id":17662,"width":25,"height":45},{"x":125,"y":0,"fileNum":411,"id":17663,"width":25,"height":45},{"x":0,"y":45,"fileNum":411,"id":17664,"width":25,"height":45},{"x":25,"y":45,"fileNum":411,"id":17665,"width":25,"height":45},{"x":50,"y":45,"fileNum":411,"id":17666,"width":25,"height":45},{"x":75,"y":45,"fileNum":411,"id":17667,"width":25,"height":45},{"x":100,"y":45,"fileNum":411,"id":17668,"width":25,"height":45},{"x":125,"y":45,"fileNum":411,"id":17669,"width":25,"height":45},{"x":0,"y":90,"fileNum":411,"id":17670,"width":25,"height":45},{"x":25,"y":90,"fileNum":411,"id":17671,"width":25,"height":45},{"x":50,"y":90,"fileNum":411,"id":17672,"width":25,"height":45},{"x":75,"y":90,"fileNum":411,"id":17673,"width":25,"height":45},{"x":100,"y":90,"fileNum":411,"id":17674,"width":25,"height":45},{"x":0,"y":135,"fileNum":411,"id":17675,"width":25,"height":45},{"x":25,"y":135,"fileNum":411,"id":17676,"width":25,"height":45},{"x":50,"y":135,"fileNum":411,"id":17677,"width":25,"height":45},{"x":75,"y":135,"fileNum":411,"id":17678,"width":25,"height":45},{"x":100,"y":135,"fileNum":411,"id":17679,"width":25,"height":45},{"x":0,"y":0,"fileNum":414,"id":17684,"width":32,"height":32},{"x":0,"y":0,"fileNum":413,"id":17685,"width":25,"height":45},{"x":25,"y":0,"fileNum":413,"id":17686,"width":25,"height":45},{"x":50,"y":0,"fileNum":413,"id":17687,"width":25,"height":45},{"x":75,"y":0,"fileNum":413,"id":17688,"width":25,"height":45},{"x":100,"y":0,"fileNum":413,"id":17689,"width":25,"height":45},{"x":125,"y":0,"fileNum":413,"id":17690,"width":25,"height":45},{"x":0,"y":45,"fileNum":413,"id":17691,"width":25,"height":45},{"x":25,"y":45,"fileNum":413,"id":17692,"width":25,"height":45},{"x":50,"y":45,"fileNum":413,"id":17693,"width":25,"height":45},{"x":75,"y":45,"fileNum":413,"id":17694,"width":25,"height":45},{"x":100,"y":45,"fileNum":413,"id":17695,"width":25,"height":45},{"x":125,"y":45,"fileNum":413,"id":17696,"width":25,"height":45},{"x":0,"y":90,"fileNum":413,"id":17697,"width":25,"height":45},{"x":25,"y":90,"fileNum":413,"id":17698,"width":25,"height":45},{"x":50,"y":90,"fileNum":413,"id":17699,"width":25,"height":45},{"x":75,"y":90,"fileNum":413,"id":17700,"width":25,"height":45},{"x":100,"y":90,"fileNum":413,"id":17701,"width":25,"height":45},{"x":0,"y":135,"fileNum":413,"id":17702,"width":25,"height":45},{"x":25,"y":135,"fileNum":413,"id":17703,"width":25,"height":45},{"x":50,"y":135,"fileNum":413,"id":17704,"width":25,"height":45},{"x":75,"y":135,"fileNum":413,"id":17705,"width":25,"height":45},{"x":100,"y":135,"fileNum":413,"id":17706,"width":25,"height":45},{"x":0,"y":0,"fileNum":17000,"id":17711,"width":96,"height":78},{"x":96,"y":0,"fileNum":17000,"id":17712,"width":96,"height":78},{"x":192,"y":0,"fileNum":17000,"id":17713,"width":96,"height":78},{"x":288,"y":0,"fileNum":17000,"id":17714,"width":96,"height":78},{"x":0,"y":78,"fileNum":17000,"id":17715,"width":96,"height":78},{"x":96,"y":78,"fileNum":17000,"id":17716,"width":96,"height":78},{"x":192,"y":78,"fileNum":17000,"id":17717,"width":96,"height":78},{"x":288,"y":78,"fileNum":17000,"id":17718,"width":96,"height":78},{"x":0,"y":156,"fileNum":17000,"id":17719,"width":66,"height":96},{"x":66,"y":156,"fileNum":17000,"id":17720,"width":66,"height":96},{"x":132,"y":156,"fileNum":17000,"id":17721,"width":66,"height":96},{"x":198,"y":156,"fileNum":17000,"id":17722,"width":66,"height":96},{"x":0,"y":267,"fileNum":17000,"id":17723,"width":66,"height":81},{"x":66,"y":267,"fileNum":17000,"id":17724,"width":66,"height":81},{"x":132,"y":267,"fileNum":17000,"id":17725,"width":66,"height":81},{"x":198,"y":267,"fileNum":17000,"id":17726,"width":66,"height":81},{"x":0,"y":0,"fileNum":17001,"id":17731,"width":96,"height":78},{"x":96,"y":0,"fileNum":17001,"id":17732,"width":96,"height":78},{"x":192,"y":0,"fileNum":17001,"id":17733,"width":96,"height":78},{"x":288,"y":0,"fileNum":17001,"id":17734,"width":96,"height":78},{"x":0,"y":78,"fileNum":17001,"id":17735,"width":96,"height":78},{"x":96,"y":78,"fileNum":17001,"id":17736,"width":96,"height":78},{"x":192,"y":78,"fileNum":17001,"id":17737,"width":96,"height":78},{"x":288,"y":78,"fileNum":17001,"id":17738,"width":96,"height":78},{"x":0,"y":156,"fileNum":17001,"id":17739,"width":66,"height":96},{"x":66,"y":156,"fileNum":17001,"id":17740,"width":66,"height":96},{"x":132,"y":156,"fileNum":17001,"id":17741,"width":66,"height":96},{"x":198,"y":156,"fileNum":17001,"id":17742,"width":66,"height":96},{"x":0,"y":267,"fileNum":17001,"id":17743,"width":66,"height":81},{"x":66,"y":267,"fileNum":17001,"id":17744,"width":66,"height":81},{"x":132,"y":267,"fileNum":17001,"id":17745,"width":66,"height":81},{"x":198,"y":267,"fileNum":17001,"id":17746,"width":66,"height":81},{"x":0,"y":0,"fileNum":17004,"id":17751,"width":96,"height":74},{"x":96,"y":0,"fileNum":17004,"id":17752,"width":96,"height":74},{"x":192,"y":0,"fileNum":17004,"id":17753,"width":96,"height":74},{"x":288,"y":0,"fileNum":17004,"id":17754,"width":96,"height":74},{"x":0,"y":74,"fileNum":17004,"id":17755,"width":96,"height":74},{"x":96,"y":74,"fileNum":17004,"id":17756,"width":96,"height":74},{"x":192,"y":74,"fileNum":17004,"id":17757,"width":96,"height":74},{"x":288,"y":74,"fileNum":17004,"id":17758,"width":96,"height":74},{"x":0,"y":145,"fileNum":17004,"id":17759,"width":66,"height":107},{"x":66,"y":145,"fileNum":17004,"id":17760,"width":66,"height":107},{"x":132,"y":145,"fileNum":17004,"id":17761,"width":66,"height":107},{"x":198,"y":145,"fileNum":17004,"id":17762,"width":66,"height":107},{"x":0,"y":253,"fileNum":17004,"id":17763,"width":66,"height":107},{"x":66,"y":253,"fileNum":17004,"id":17764,"width":66,"height":107},{"x":132,"y":253,"fileNum":17004,"id":17765,"width":66,"height":107},{"x":198,"y":253,"fileNum":17004,"id":17766,"width":66,"height":107},{"x":0,"y":0,"fileNum":17005,"id":17771,"width":96,"height":74},{"x":96,"y":0,"fileNum":17005,"id":17772,"width":96,"height":74},{"x":192,"y":0,"fileNum":17005,"id":17773,"width":96,"height":74},{"x":288,"y":0,"fileNum":17005,"id":17774,"width":96,"height":74},{"x":0,"y":74,"fileNum":17005,"id":17775,"width":96,"height":74},{"x":96,"y":74,"fileNum":17005,"id":17776,"width":96,"height":74},{"x":192,"y":74,"fileNum":17005,"id":17777,"width":96,"height":74},{"x":288,"y":74,"fileNum":17005,"id":17778,"width":96,"height":74},{"x":0,"y":145,"fileNum":17005,"id":17779,"width":66,"height":107},{"x":66,"y":145,"fileNum":17005,"id":17780,"width":66,"height":107},{"x":132,"y":145,"fileNum":17005,"id":17781,"width":66,"height":107},{"x":198,"y":145,"fileNum":17005,"id":17782,"width":66,"height":107},{"x":0,"y":253,"fileNum":17005,"id":17783,"width":66,"height":107},{"x":66,"y":253,"fileNum":17005,"id":17784,"width":66,"height":107},{"x":132,"y":253,"fileNum":17005,"id":17785,"width":66,"height":107},{"x":198,"y":253,"fileNum":17005,"id":17786,"width":66,"height":107},{"x":0,"y":0,"fileNum":17002,"id":17791,"width":96,"height":79},{"x":96,"y":0,"fileNum":17002,"id":17792,"width":96,"height":79},{"x":192,"y":0,"fileNum":17002,"id":17793,"width":96,"height":79},{"x":288,"y":0,"fileNum":17002,"id":17794,"width":96,"height":79},{"x":0,"y":79,"fileNum":17002,"id":17795,"width":96,"height":79},{"x":96,"y":79,"fileNum":17002,"id":17796,"width":96,"height":79},{"x":192,"y":79,"fileNum":17002,"id":17797,"width":96,"height":79},{"x":288,"y":79,"fileNum":17002,"id":17798,"width":96,"height":79},{"x":0,"y":158,"fileNum":17002,"id":17799,"width":66,"height":98},{"x":66,"y":158,"fileNum":17002,"id":17800,"width":66,"height":98},{"x":132,"y":158,"fileNum":17002,"id":17801,"width":66,"height":98},{"x":198,"y":158,"fileNum":17002,"id":17802,"width":66,"height":98},{"x":0,"y":255,"fileNum":17002,"id":17803,"width":66,"height":98},{"x":66,"y":255,"fileNum":17002,"id":17804,"width":66,"height":98},{"x":132,"y":255,"fileNum":17002,"id":17805,"width":66,"height":98},{"x":198,"y":255,"fileNum":17002,"id":17806,"width":66,"height":98},{"x":0,"y":0,"fileNum":17003,"id":17811,"width":96,"height":79},{"x":96,"y":0,"fileNum":17003,"id":17812,"width":96,"height":79},{"x":192,"y":0,"fileNum":17003,"id":17813,"width":96,"height":79},{"x":288,"y":0,"fileNum":17003,"id":17814,"width":96,"height":79},{"x":0,"y":79,"fileNum":17003,"id":17815,"width":96,"height":79},{"x":96,"y":79,"fileNum":17003,"id":17816,"width":96,"height":79},{"x":192,"y":79,"fileNum":17003,"id":17817,"width":96,"height":79},{"x":288,"y":79,"fileNum":17003,"id":17818,"width":96,"height":79},{"x":0,"y":158,"fileNum":17003,"id":17819,"width":66,"height":98},{"x":66,"y":158,"fileNum":17003,"id":17820,"width":66,"height":98},{"x":132,"y":158,"fileNum":17003,"id":17821,"width":66,"height":98},{"x":198,"y":158,"fileNum":17003,"id":17822,"width":66,"height":98},{"x":0,"y":255,"fileNum":17003,"id":17823,"width":66,"height":98},{"x":66,"y":255,"fileNum":17003,"id":17824,"width":66,"height":98},{"x":132,"y":255,"fileNum":17003,"id":17825,"width":66,"height":98},{"x":198,"y":255,"fileNum":17003,"id":17826,"width":66,"height":98},{"x":0,"y":0,"fileNum":2203,"id":17831,"width":17,"height":50},{"x":17,"y":0,"fileNum":2203,"id":17832,"width":17,"height":50},{"x":34,"y":0,"fileNum":2203,"id":17833,"width":17,"height":50},{"x":51,"y":0,"fileNum":2203,"id":17834,"width":17,"height":50},{"x":0,"y":0,"fileNum":2204,"id":17835,"width":17,"height":50},{"x":17,"y":0,"fileNum":2204,"id":17836,"width":17,"height":50},{"x":34,"y":0,"fileNum":2204,"id":17837,"width":17,"height":50},{"x":51,"y":0,"fileNum":2204,"id":17838,"width":17,"height":50},{"x":0,"y":0,"fileNum":2205,"id":17839,"width":17,"height":50},{"x":17,"y":0,"fileNum":2205,"id":17840,"width":17,"height":50},{"x":34,"y":0,"fileNum":2205,"id":17841,"width":17,"height":50},{"x":51,"y":0,"fileNum":2205,"id":17842,"width":17,"height":50},{"x":0,"y":0,"fileNum":2206,"id":17843,"width":17,"height":50},{"x":17,"y":0,"fileNum":2206,"id":17844,"width":17,"height":50},{"x":34,"y":0,"fileNum":2206,"id":17845,"width":17,"height":50},{"x":51,"y":0,"fileNum":2206,"id":17846,"width":17,"height":50},{"x":0,"y":0,"fileNum":2207,"id":17847,"width":17,"height":50},{"x":17,"y":0,"fileNum":2207,"id":17848,"width":17,"height":50},{"x":34,"y":0,"fileNum":2207,"id":17849,"width":17,"height":50},{"x":51,"y":0,"fileNum":2207,"id":17850,"width":17,"height":50},{"x":0,"y":0,"fileNum":2208,"id":17851,"width":17,"height":50},{"x":17,"y":0,"fileNum":2208,"id":17852,"width":17,"height":50},{"x":34,"y":0,"fileNum":2208,"id":17853,"width":17,"height":50},{"x":51,"y":0,"fileNum":2208,"id":17854,"width":17,"height":50},{"x":0,"y":0,"fileNum":2209,"id":17855,"width":17,"height":50},{"x":17,"y":0,"fileNum":2209,"id":17856,"width":17,"height":50},{"x":34,"y":0,"fileNum":2209,"id":17857,"width":17,"height":50},{"x":51,"y":0,"fileNum":2209,"id":17858,"width":17,"height":50},{"x":0,"y":0,"fileNum":16069,"id":17859,"width":25,"height":45},{"x":25,"y":0,"fileNum":16069,"id":17860,"width":25,"height":45},{"x":50,"y":0,"fileNum":16069,"id":17861,"width":25,"height":45},{"x":75,"y":0,"fileNum":16069,"id":17862,"width":25,"height":45},{"x":100,"y":0,"fileNum":16069,"id":17863,"width":25,"height":45},{"x":125,"y":0,"fileNum":16069,"id":17864,"width":25,"height":45},{"x":0,"y":45,"fileNum":16069,"id":17865,"width":25,"height":45},{"x":25,"y":45,"fileNum":16069,"id":17866,"width":25,"height":45},{"x":50,"y":45,"fileNum":16069,"id":17867,"width":25,"height":45},{"x":75,"y":45,"fileNum":16069,"id":17868,"width":25,"height":45},{"x":100,"y":45,"fileNum":16069,"id":17869,"width":25,"height":45},{"x":125,"y":45,"fileNum":16069,"id":17870,"width":25,"height":45},{"x":0,"y":90,"fileNum":16069,"id":17871,"width":25,"height":45},{"x":25,"y":90,"fileNum":16069,"id":17872,"width":25,"height":45},{"x":50,"y":90,"fileNum":16069,"id":17873,"width":25,"height":45},{"x":75,"y":90,"fileNum":16069,"id":17874,"width":25,"height":45},{"x":100,"y":90,"fileNum":16069,"id":17875,"width":25,"height":45},{"x":0,"y":135,"fileNum":16069,"id":17876,"width":25,"height":45},{"x":25,"y":135,"fileNum":16069,"id":17877,"width":25,"height":45},{"x":50,"y":135,"fileNum":16069,"id":17878,"width":25,"height":45},{"x":75,"y":135,"fileNum":16069,"id":17879,"width":25,"height":45},{"x":100,"y":135,"fileNum":16069,"id":17880,"width":25,"height":45},{"x":0,"y":0,"fileNum":16070,"id":17885,"width":25,"height":45},{"x":25,"y":0,"fileNum":16070,"id":17886,"width":25,"height":45},{"x":50,"y":0,"fileNum":16070,"id":17887,"width":25,"height":45},{"x":75,"y":0,"fileNum":16070,"id":17888,"width":25,"height":45},{"x":100,"y":0,"fileNum":16070,"id":17889,"width":25,"height":45},{"x":125,"y":0,"fileNum":16070,"id":17890,"width":25,"height":45},{"x":0,"y":45,"fileNum":16070,"id":17891,"width":25,"height":45},{"x":25,"y":45,"fileNum":16070,"id":17892,"width":25,"height":45},{"x":50,"y":45,"fileNum":16070,"id":17893,"width":25,"height":45},{"x":75,"y":45,"fileNum":16070,"id":17894,"width":25,"height":45},{"x":100,"y":45,"fileNum":16070,"id":17895,"width":25,"height":45},{"x":125,"y":45,"fileNum":16070,"id":17896,"width":25,"height":45},{"x":0,"y":90,"fileNum":16070,"id":17897,"width":25,"height":45},{"x":25,"y":90,"fileNum":16070,"id":17898,"width":25,"height":45},{"x":50,"y":90,"fileNum":16070,"id":17899,"width":25,"height":45},{"x":75,"y":90,"fileNum":16070,"id":17900,"width":25,"height":45},{"x":100,"y":90,"fileNum":16070,"id":17901,"width":25,"height":45},{"x":0,"y":135,"fileNum":16070,"id":17902,"width":25,"height":45},{"x":25,"y":135,"fileNum":16070,"id":17903,"width":25,"height":45},{"x":50,"y":135,"fileNum":16070,"id":17904,"width":25,"height":45},{"x":75,"y":135,"fileNum":16070,"id":17905,"width":25,"height":45},{"x":100,"y":135,"fileNum":16070,"id":17906,"width":25,"height":45},{"x":0,"y":0,"fileNum":2210,"id":17911,"width":17,"height":50},{"x":17,"y":0,"fileNum":2210,"id":17912,"width":17,"height":50},{"x":34,"y":0,"fileNum":2210,"id":17913,"width":17,"height":50},{"x":51,"y":0,"fileNum":2210,"id":17914,"width":17,"height":50},{"x":0,"y":0,"fileNum":2211,"id":17915,"width":17,"height":50},{"x":17,"y":0,"fileNum":2211,"id":17916,"width":17,"height":50},{"x":34,"y":0,"fileNum":2211,"id":17917,"width":17,"height":50},{"x":51,"y":0,"fileNum":2211,"id":17918,"width":17,"height":50},{"x":0,"y":0,"fileNum":8105,"id":17921,"width":125,"height":140},{"x":0,"y":0,"fileNum":8099,"id":17922,"width":70,"height":120},{"x":0,"y":0,"fileNum":8100,"id":17923,"width":17,"height":105},{"x":17,"y":0,"fileNum":8100,"id":17924,"width":16,"height":105},{"x":0,"y":0,"fileNum":8101,"id":17925,"width":32,"height":32},{"x":0,"y":0,"fileNum":8102,"id":17926,"width":32,"height":64},{"x":0,"y":0,"fileNum":8103,"id":17927,"width":32,"height":64},{"x":0,"y":0,"fileNum":8104,"id":17928,"width":32,"height":32},{"x":0,"y":0,"fileNum":8093,"id":17929,"width":32,"height":32},{"x":0,"y":0,"fileNum":8094,"id":17930,"width":32,"height":32},{"x":0,"y":0,"fileNum":8095,"id":17931,"width":32,"height":32},{"x":0,"y":0,"fileNum":8096,"id":17932,"width":32,"height":32},{"x":0,"y":0,"fileNum":8097,"id":17933,"width":32,"height":32},{"x":0,"y":0,"fileNum":8098,"id":17934,"width":32,"height":32},{"x":0,"y":0,"fileNum":8087,"id":17935,"width":32,"height":32},{"x":0,"y":0,"fileNum":8088,"id":17936,"width":32,"height":32},{"x":0,"y":0,"fileNum":8089,"id":17937,"width":32,"height":32},{"x":0,"y":0,"fileNum":8090,"id":17938,"width":32,"height":32},{"x":0,"y":0,"fileNum":8091,"id":17939,"width":32,"height":32},{"x":0,"y":0,"fileNum":8092,"id":17940,"width":32,"height":32},{"x":0,"y":0,"fileNum":8086,"id":17941,"width":32,"height":32},{"x":0,"y":0,"fileNum":8083,"id":17942,"width":36,"height":34},{"x":0,"y":0,"fileNum":8081,"id":17943,"width":24,"height":56},{"x":0,"y":0,"fileNum":8082,"id":17944,"width":49,"height":49},{"x":0,"y":0,"fileNum":8084,"id":17945,"width":108,"height":61},{"x":0,"y":0,"fileNum":8085,"id":17946,"width":78,"height":51},{"x":0,"y":0,"fileNum":9003,"id":17947,"width":190,"height":292},{"x":0,"y":0,"fileNum":9004,"id":17948,"width":190,"height":292},{"x":0,"y":0,"fileNum":9001,"id":17949,"width":190,"height":292},{"x":0,"y":0,"fileNum":9002,"id":17950,"width":190,"height":292},{"x":0,"y":0,"fileNum":8077,"id":17951,"width":221,"height":89},{"x":0,"y":0,"fileNum":8078,"id":17952,"width":234,"height":264},{"x":0,"y":0,"fileNum":8079,"id":17953,"width":250,"height":254},{"x":0,"y":0,"fileNum":8080,"id":17954,"width":256,"height":256},{"x":0,"y":0,"fileNum":8076,"id":17955,"width":122,"height":185},{"x":0,"y":0,"fileNum":8075,"id":17956,"width":64,"height":128},{"x":0,"y":0,"fileNum":8074,"id":17957,"width":128,"height":128},{"x":0,"y":0,"fileNum":8073,"id":17958,"width":128,"height":128},{"x":0,"y":0,"fileNum":8072,"id":17959,"width":128,"height":128},{"x":0,"y":0,"fileNum":8071,"id":17960,"width":128,"height":128},{"x":0,"y":0,"fileNum":8070,"id":17961,"width":128,"height":128},{"x":0,"y":0,"fileNum":8069,"id":17962,"width":128,"height":128},{"x":0,"y":0,"fileNum":8068,"id":17963,"width":128,"height":128},{"x":0,"y":0,"fileNum":8067,"id":17964,"width":128,"height":128},{"x":0,"y":0,"fileNum":8066,"id":17965,"width":128,"height":128},{"x":0,"y":0,"fileNum":8065,"id":17966,"width":128,"height":128},{"x":0,"y":0,"fileNum":8064,"id":17967,"width":128,"height":128},{"x":0,"y":0,"fileNum":8063,"id":17968,"width":128,"height":128},{"x":0,"y":0,"fileNum":8062,"id":17969,"width":128,"height":128},{"x":0,"y":0,"fileNum":8061,"id":17970,"width":128,"height":128},{"x":0,"y":0,"fileNum":8059,"id":17971,"width":128,"height":128},{"x":0,"y":0,"fileNum":8057,"id":17972,"width":128,"height":128},{"x":0,"y":0,"fileNum":8055,"id":17973,"width":128,"height":128},{"x":0,"y":0,"fileNum":8053,"id":17974,"width":128,"height":128},{"x":0,"y":0,"fileNum":8054,"id":17975,"width":32,"height":128},{"x":0,"y":0,"fileNum":8056,"id":17976,"width":32,"height":128},{"x":0,"y":0,"fileNum":8058,"id":17977,"width":32,"height":128},{"x":0,"y":0,"fileNum":8060,"id":17978,"width":32,"height":128},{"x":0,"y":0,"fileNum":8037,"id":17979,"width":32,"height":32},{"x":32,"y":0,"fileNum":8037,"id":17980,"width":32,"height":32},{"x":0,"y":32,"fileNum":8037,"id":17981,"width":32,"height":32},{"x":32,"y":32,"fileNum":8037,"id":17982,"width":32,"height":32},{"x":0,"y":0,"fileNum":8038,"id":17983,"width":32,"height":32},{"x":32,"y":0,"fileNum":8038,"id":17984,"width":32,"height":32},{"x":0,"y":32,"fileNum":8038,"id":17985,"width":32,"height":32},{"x":32,"y":32,"fileNum":8038,"id":17986,"width":32,"height":32},{"x":0,"y":0,"fileNum":8039,"id":17987,"width":32,"height":32},{"x":32,"y":0,"fileNum":8039,"id":17988,"width":32,"height":32},{"x":0,"y":32,"fileNum":8039,"id":17989,"width":32,"height":32},{"x":32,"y":32,"fileNum":8039,"id":17990,"width":32,"height":32},{"x":0,"y":0,"fileNum":8040,"id":17991,"width":32,"height":32},{"x":32,"y":0,"fileNum":8040,"id":17992,"width":32,"height":32},{"x":0,"y":32,"fileNum":8040,"id":17993,"width":32,"height":32},{"x":32,"y":32,"fileNum":8040,"id":17994,"width":32,"height":32},{"x":0,"y":0,"fileNum":8041,"id":17995,"width":32,"height":32},{"x":32,"y":0,"fileNum":8041,"id":17996,"width":32,"height":32},{"x":0,"y":32,"fileNum":8041,"id":17997,"width":32,"height":32},{"x":32,"y":32,"fileNum":8041,"id":17998,"width":32,"height":32},{"x":0,"y":0,"fileNum":8042,"id":17999,"width":32,"height":32},{"x":32,"y":0,"fileNum":8042,"id":18000,"width":32,"height":32},{"x":0,"y":32,"fileNum":8042,"id":18001,"width":32,"height":32},{"x":32,"y":32,"fileNum":8042,"id":18002,"width":32,"height":32},{"x":0,"y":0,"fileNum":8043,"id":18003,"width":32,"height":32},{"x":32,"y":0,"fileNum":8043,"id":18004,"width":32,"height":32},{"x":0,"y":32,"fileNum":8043,"id":18005,"width":32,"height":32},{"x":32,"y":32,"fileNum":8043,"id":18006,"width":32,"height":32},{"x":0,"y":0,"fileNum":8044,"id":18007,"width":32,"height":32},{"x":32,"y":0,"fileNum":8044,"id":18008,"width":32,"height":32},{"x":0,"y":32,"fileNum":8044,"id":18009,"width":32,"height":32},{"x":32,"y":32,"fileNum":8044,"id":18010,"width":32,"height":32},{"x":0,"y":0,"fileNum":8045,"id":18011,"width":32,"height":32},{"x":32,"y":0,"fileNum":8045,"id":18012,"width":32,"height":32},{"x":0,"y":32,"fileNum":8045,"id":18013,"width":32,"height":32},{"x":32,"y":32,"fileNum":8045,"id":18014,"width":32,"height":32},{"x":0,"y":0,"fileNum":8046,"id":18015,"width":32,"height":32},{"x":32,"y":0,"fileNum":8046,"id":18016,"width":32,"height":32},{"x":0,"y":32,"fileNum":8046,"id":18017,"width":32,"height":32},{"x":32,"y":32,"fileNum":8046,"id":18018,"width":32,"height":32},{"x":0,"y":0,"fileNum":8047,"id":18019,"width":32,"height":32},{"x":32,"y":0,"fileNum":8047,"id":18020,"width":32,"height":32},{"x":0,"y":32,"fileNum":8047,"id":18021,"width":32,"height":32},{"x":32,"y":32,"fileNum":8047,"id":18022,"width":32,"height":32},{"x":0,"y":0,"fileNum":8048,"id":18023,"width":32,"height":32},{"x":32,"y":0,"fileNum":8048,"id":18024,"width":32,"height":32},{"x":0,"y":32,"fileNum":8048,"id":18025,"width":32,"height":32},{"x":32,"y":32,"fileNum":8048,"id":18026,"width":32,"height":32},{"x":0,"y":0,"fileNum":8049,"id":18027,"width":32,"height":32},{"x":32,"y":0,"fileNum":8049,"id":18028,"width":32,"height":32},{"x":0,"y":32,"fileNum":8049,"id":18029,"width":32,"height":32},{"x":32,"y":32,"fileNum":8049,"id":18030,"width":32,"height":32},{"x":0,"y":0,"fileNum":8050,"id":18031,"width":32,"height":32},{"x":32,"y":0,"fileNum":8050,"id":18032,"width":32,"height":32},{"x":0,"y":32,"fileNum":8050,"id":18033,"width":32,"height":32},{"x":32,"y":32,"fileNum":8050,"id":18034,"width":32,"height":32},{"x":0,"y":0,"fileNum":8051,"id":18035,"width":32,"height":32},{"x":32,"y":0,"fileNum":8051,"id":18036,"width":32,"height":32},{"x":0,"y":32,"fileNum":8051,"id":18037,"width":32,"height":32},{"x":32,"y":32,"fileNum":8051,"id":18038,"width":32,"height":32},{"x":0,"y":0,"fileNum":8052,"id":18039,"width":32,"height":32},{"x":32,"y":0,"fileNum":8052,"id":18040,"width":32,"height":32},{"x":0,"y":32,"fileNum":8052,"id":18041,"width":32,"height":32},{"x":32,"y":32,"fileNum":8052,"id":18042,"width":32,"height":32},{"x":0,"y":0,"fileNum":8106,"id":18043,"width":128,"height":128},{"x":0,"y":0,"fileNum":8107,"id":18044,"width":32,"height":32},{"x":0,"y":0,"fileNum":8108,"id":18045,"width":64,"height":64},{"x":0,"y":0,"fileNum":8109,"id":18046,"width":88,"height":100},{"x":0,"y":0,"fileNum":8110,"id":18047,"width":64,"height":64},{"x":0,"y":0,"fileNum":12021,"id":18048,"width":32,"height":32},{"x":32,"y":0,"fileNum":12021,"id":18049,"width":32,"height":32},{"x":64,"y":0,"fileNum":12021,"id":18050,"width":32,"height":32},{"x":96,"y":0,"fileNum":12021,"id":18051,"width":32,"height":32},{"x":0,"y":32,"fileNum":12021,"id":18052,"width":32,"height":32},{"x":32,"y":32,"fileNum":12021,"id":18053,"width":32,"height":32},{"x":64,"y":32,"fileNum":12021,"id":18054,"width":32,"height":32},{"x":96,"y":32,"fileNum":12021,"id":18055,"width":32,"height":32},{"x":0,"y":64,"fileNum":12021,"id":18056,"width":32,"height":32},{"x":32,"y":64,"fileNum":12021,"id":18057,"width":32,"height":32},{"x":64,"y":64,"fileNum":12021,"id":18058,"width":32,"height":32},{"x":96,"y":64,"fileNum":12021,"id":18059,"width":32,"height":32},{"x":0,"y":96,"fileNum":12021,"id":18060,"width":32,"height":32},{"x":32,"y":96,"fileNum":12021,"id":18061,"width":32,"height":32},{"x":64,"y":96,"fileNum":12021,"id":18062,"width":32,"height":32},{"x":96,"y":96,"fileNum":12021,"id":18063,"width":32,"height":32},{"x":0,"y":0,"fileNum":12022,"id":18064,"width":32,"height":32},{"x":32,"y":0,"fileNum":12022,"id":18065,"width":32,"height":32},{"x":64,"y":0,"fileNum":12022,"id":18066,"width":32,"height":32},{"x":96,"y":0,"fileNum":12022,"id":18067,"width":32,"height":32},{"x":0,"y":32,"fileNum":12022,"id":18068,"width":32,"height":32},{"x":32,"y":32,"fileNum":12022,"id":18069,"width":32,"height":32},{"x":64,"y":32,"fileNum":12022,"id":18070,"width":32,"height":32},{"x":96,"y":32,"fileNum":12022,"id":18071,"width":32,"height":32},{"x":0,"y":64,"fileNum":12022,"id":18072,"width":32,"height":32},{"x":32,"y":64,"fileNum":12022,"id":18073,"width":32,"height":32},{"x":64,"y":64,"fileNum":12022,"id":18074,"width":32,"height":32},{"x":96,"y":64,"fileNum":12022,"id":18075,"width":32,"height":32},{"x":0,"y":96,"fileNum":12022,"id":18076,"width":32,"height":32},{"x":32,"y":96,"fileNum":12022,"id":18077,"width":32,"height":32},{"x":64,"y":96,"fileNum":12022,"id":18078,"width":32,"height":32},{"x":96,"y":96,"fileNum":12022,"id":18079,"width":32,"height":32},{"x":0,"y":0,"fileNum":12023,"id":18080,"width":32,"height":32},{"x":32,"y":0,"fileNum":12023,"id":18081,"width":32,"height":32},{"x":64,"y":0,"fileNum":12023,"id":18082,"width":32,"height":32},{"x":96,"y":0,"fileNum":12023,"id":18083,"width":32,"height":32},{"x":0,"y":32,"fileNum":12023,"id":18084,"width":32,"height":32},{"x":32,"y":32,"fileNum":12023,"id":18085,"width":32,"height":32},{"x":64,"y":32,"fileNum":12023,"id":18086,"width":32,"height":32},{"x":96,"y":32,"fileNum":12023,"id":18087,"width":32,"height":32},{"x":0,"y":64,"fileNum":12023,"id":18088,"width":32,"height":32},{"x":32,"y":64,"fileNum":12023,"id":18089,"width":32,"height":32},{"x":64,"y":64,"fileNum":12023,"id":18090,"width":32,"height":32},{"x":96,"y":64,"fileNum":12023,"id":18091,"width":32,"height":32},{"x":0,"y":96,"fileNum":12023,"id":18092,"width":32,"height":32},{"x":32,"y":96,"fileNum":12023,"id":18093,"width":32,"height":32},{"x":64,"y":96,"fileNum":12023,"id":18094,"width":32,"height":32},{"x":96,"y":96,"fileNum":12023,"id":18095,"width":32,"height":32},{"x":0,"y":0,"fileNum":12024,"id":18096,"width":32,"height":32},{"x":32,"y":0,"fileNum":12024,"id":18097,"width":32,"height":32},{"x":64,"y":0,"fileNum":12024,"id":18098,"width":32,"height":32},{"x":96,"y":0,"fileNum":12024,"id":18099,"width":32,"height":32},{"x":0,"y":32,"fileNum":12024,"id":18100,"width":32,"height":32},{"x":32,"y":32,"fileNum":12024,"id":18101,"width":32,"height":32},{"x":64,"y":32,"fileNum":12024,"id":18102,"width":32,"height":32},{"x":96,"y":32,"fileNum":12024,"id":18103,"width":32,"height":32},{"x":0,"y":64,"fileNum":12024,"id":18104,"width":32,"height":32},{"x":32,"y":64,"fileNum":12024,"id":18105,"width":32,"height":32},{"x":64,"y":64,"fileNum":12024,"id":18106,"width":32,"height":32},{"x":96,"y":64,"fileNum":12024,"id":18107,"width":32,"height":32},{"x":0,"y":96,"fileNum":12024,"id":18108,"width":32,"height":32},{"x":32,"y":96,"fileNum":12024,"id":18109,"width":32,"height":32},{"x":64,"y":96,"fileNum":12024,"id":18110,"width":32,"height":32},{"x":96,"y":96,"fileNum":12024,"id":18111,"width":32,"height":32},{"x":0,"y":0,"fileNum":12025,"id":18112,"width":32,"height":32},{"x":32,"y":0,"fileNum":12025,"id":18113,"width":32,"height":32},{"x":64,"y":0,"fileNum":12025,"id":18114,"width":32,"height":32},{"x":96,"y":0,"fileNum":12025,"id":18115,"width":32,"height":32},{"x":0,"y":32,"fileNum":12025,"id":18116,"width":32,"height":32},{"x":32,"y":32,"fileNum":12025,"id":18117,"width":32,"height":32},{"x":64,"y":32,"fileNum":12025,"id":18118,"width":32,"height":32},{"x":96,"y":32,"fileNum":12025,"id":18119,"width":32,"height":32},{"x":0,"y":64,"fileNum":12025,"id":18120,"width":32,"height":32},{"x":32,"y":64,"fileNum":12025,"id":18121,"width":32,"height":32},{"x":64,"y":64,"fileNum":12025,"id":18122,"width":32,"height":32},{"x":96,"y":64,"fileNum":12025,"id":18123,"width":32,"height":32},{"x":0,"y":96,"fileNum":12025,"id":18124,"width":32,"height":32},{"x":32,"y":96,"fileNum":12025,"id":18125,"width":32,"height":32},{"x":64,"y":96,"fileNum":12025,"id":18126,"width":32,"height":32},{"x":96,"y":96,"fileNum":12025,"id":18127,"width":32,"height":32},{"x":0,"y":0,"fileNum":12026,"id":18128,"width":64,"height":64},{"x":64,"y":0,"fileNum":12026,"id":18129,"width":64,"height":64},{"x":0,"y":64,"fileNum":12026,"id":18130,"width":64,"height":64},{"x":64,"y":64,"fileNum":12026,"id":18131,"width":64,"height":64},{"x":0,"y":0,"fileNum":12027,"id":18132,"width":64,"height":64},{"x":64,"y":0,"fileNum":12027,"id":18133,"width":64,"height":64},{"x":0,"y":64,"fileNum":12027,"id":18134,"width":64,"height":64},{"x":64,"y":64,"fileNum":12027,"id":18135,"width":64,"height":64},{"x":0,"y":0,"fileNum":12028,"id":18136,"width":32,"height":32},{"x":32,"y":0,"fileNum":12028,"id":18137,"width":32,"height":32},{"x":64,"y":0,"fileNum":12028,"id":18138,"width":32,"height":32},{"x":96,"y":0,"fileNum":12028,"id":18139,"width":32,"height":32},{"x":0,"y":32,"fileNum":12028,"id":18140,"width":32,"height":32},{"x":32,"y":32,"fileNum":12028,"id":18141,"width":32,"height":32},{"x":64,"y":32,"fileNum":12028,"id":18142,"width":32,"height":32},{"x":96,"y":32,"fileNum":12028,"id":18143,"width":32,"height":32},{"x":0,"y":64,"fileNum":12028,"id":18144,"width":32,"height":32},{"x":32,"y":64,"fileNum":12028,"id":18145,"width":32,"height":32},{"x":64,"y":64,"fileNum":12028,"id":18146,"width":32,"height":32},{"x":96,"y":64,"fileNum":12028,"id":18147,"width":32,"height":32},{"x":0,"y":96,"fileNum":12028,"id":18148,"width":32,"height":32},{"x":32,"y":96,"fileNum":12028,"id":18149,"width":32,"height":32},{"x":64,"y":96,"fileNum":12028,"id":18150,"width":32,"height":32},{"x":96,"y":96,"fileNum":12028,"id":18151,"width":32,"height":32},{"x":0,"y":0,"fileNum":12029,"id":18152,"width":64,"height":64},{"x":64,"y":0,"fileNum":12029,"id":18153,"width":64,"height":64},{"x":0,"y":64,"fileNum":12029,"id":18154,"width":64,"height":64},{"x":64,"y":64,"fileNum":12029,"id":18155,"width":64,"height":64},{"x":0,"y":0,"fileNum":12030,"id":18156,"width":64,"height":64},{"x":64,"y":0,"fileNum":12030,"id":18157,"width":64,"height":64},{"x":0,"y":64,"fileNum":12030,"id":18158,"width":64,"height":64},{"x":64,"y":64,"fileNum":12030,"id":18159,"width":64,"height":64},{"x":0,"y":0,"fileNum":4003,"id":18160,"width":57,"height":99},{"x":57,"y":0,"fileNum":4003,"id":18161,"width":57,"height":99},{"x":114,"y":0,"fileNum":4003,"id":18162,"width":57,"height":99},{"x":171,"y":0,"fileNum":4003,"id":18163,"width":57,"height":99},{"x":228,"y":0,"fileNum":4003,"id":18164,"width":57,"height":99},{"x":285,"y":0,"fileNum":4003,"id":18165,"width":57,"height":99},{"x":0,"y":99,"fileNum":4003,"id":18166,"width":57,"height":99},{"x":57,"y":99,"fileNum":4003,"id":18167,"width":57,"height":99},{"x":114,"y":99,"fileNum":4003,"id":18168,"width":57,"height":99},{"x":171,"y":99,"fileNum":4003,"id":18169,"width":57,"height":99},{"x":228,"y":99,"fileNum":4003,"id":18170,"width":57,"height":99},{"x":285,"y":99,"fileNum":4003,"id":18171,"width":57,"height":99},{"x":0,"y":198,"fileNum":4003,"id":18172,"width":57,"height":99},{"x":57,"y":198,"fileNum":4003,"id":18173,"width":57,"height":99},{"x":114,"y":198,"fileNum":4003,"id":18174,"width":57,"height":99},{"x":171,"y":198,"fileNum":4003,"id":18175,"width":57,"height":99},{"x":228,"y":198,"fileNum":4003,"id":18176,"width":57,"height":99},{"x":0,"y":297,"fileNum":4003,"id":18177,"width":57,"height":99},{"x":57,"y":297,"fileNum":4003,"id":18178,"width":57,"height":99},{"x":114,"y":297,"fileNum":4003,"id":18179,"width":57,"height":99},{"x":171,"y":297,"fileNum":4003,"id":18180,"width":57,"height":99},{"x":228,"y":297,"fileNum":4003,"id":18181,"width":57,"height":99},{"x":0,"y":0,"fileNum":3065,"id":18186,"width":64,"height":64},{"x":64,"y":0,"fileNum":3065,"id":18187,"width":64,"height":64},{"x":128,"y":0,"fileNum":3065,"id":18188,"width":64,"height":64},{"x":192,"y":0,"fileNum":3065,"id":18189,"width":64,"height":64},{"x":256,"y":0,"fileNum":3065,"id":18190,"width":64,"height":64},{"x":0,"y":0,"fileNum":4004,"id":18192,"width":130,"height":166},{"x":130,"y":0,"fileNum":4004,"id":18193,"width":130,"height":166},{"x":260,"y":0,"fileNum":4004,"id":18194,"width":130,"height":166},{"x":390,"y":0,"fileNum":4004,"id":18195,"width":130,"height":166},{"x":0,"y":166,"fileNum":4004,"id":18196,"width":130,"height":166},{"x":130,"y":166,"fileNum":4004,"id":18197,"width":130,"height":166},{"x":260,"y":166,"fileNum":4004,"id":18198,"width":130,"height":166},{"x":390,"y":166,"fileNum":4004,"id":18199,"width":130,"height":166},{"x":0,"y":332,"fileNum":4004,"id":18200,"width":130,"height":166},{"x":130,"y":332,"fileNum":4004,"id":18201,"width":130,"height":166},{"x":260,"y":332,"fileNum":4004,"id":18202,"width":130,"height":166},{"x":390,"y":332,"fileNum":4004,"id":18203,"width":130,"height":166},{"x":0,"y":498,"fileNum":4004,"id":18204,"width":130,"height":166},{"x":130,"y":498,"fileNum":4004,"id":18205,"width":130,"height":166},{"x":260,"y":498,"fileNum":4004,"id":18206,"width":130,"height":166},{"x":390,"y":498,"fileNum":4004,"id":18207,"width":130,"height":166},{"x":0,"y":0,"fileNum":4005,"id":18212,"width":53,"height":35},{"x":53,"y":0,"fileNum":4005,"id":18213,"width":53,"height":35},{"x":106,"y":0,"fileNum":4005,"id":18214,"width":53,"height":35},{"x":159,"y":0,"fileNum":4005,"id":18215,"width":53,"height":35},{"x":0,"y":35,"fileNum":4005,"id":18216,"width":53,"height":35},{"x":53,"y":35,"fileNum":4005,"id":18217,"width":53,"height":35},{"x":106,"y":35,"fileNum":4005,"id":18218,"width":53,"height":35},{"x":159,"y":35,"fileNum":4005,"id":18219,"width":53,"height":35},{"x":0,"y":70,"fileNum":4005,"id":18220,"width":53,"height":35},{"x":53,"y":70,"fileNum":4005,"id":18221,"width":53,"height":35},{"x":106,"y":70,"fileNum":4005,"id":18222,"width":53,"height":35},{"x":159,"y":70,"fileNum":4005,"id":18223,"width":53,"height":35},{"x":0,"y":105,"fileNum":4005,"id":18224,"width":53,"height":35},{"x":53,"y":105,"fileNum":4005,"id":18225,"width":53,"height":35},{"x":106,"y":105,"fileNum":4005,"id":18226,"width":53,"height":35},{"x":159,"y":105,"fileNum":4005,"id":18227,"width":53,"height":35},{"x":0,"y":0,"fileNum":4000,"id":18232,"width":150,"height":140},{"x":150,"y":0,"fileNum":4000,"id":18233,"width":150,"height":140},{"x":300,"y":0,"fileNum":4000,"id":18234,"width":150,"height":140},{"x":450,"y":0,"fileNum":4000,"id":18235,"width":150,"height":140},{"x":600,"y":0,"fileNum":4000,"id":18236,"width":150,"height":140},{"x":750,"y":0,"fileNum":4000,"id":18237,"width":150,"height":140},{"x":0,"y":140,"fileNum":4000,"id":18238,"width":150,"height":140},{"x":150,"y":140,"fileNum":4000,"id":18239,"width":150,"height":140},{"x":300,"y":140,"fileNum":4000,"id":18240,"width":150,"height":140},{"x":450,"y":140,"fileNum":4000,"id":18241,"width":150,"height":140},{"x":600,"y":140,"fileNum":4000,"id":18242,"width":150,"height":140},{"x":750,"y":140,"fileNum":4000,"id":18243,"width":150,"height":140},{"x":0,"y":280,"fileNum":4000,"id":18244,"width":150,"height":140},{"x":150,"y":280,"fileNum":4000,"id":18245,"width":150,"height":140},{"x":300,"y":280,"fileNum":4000,"id":18246,"width":150,"height":140},{"x":450,"y":280,"fileNum":4000,"id":18247,"width":150,"height":140},{"x":600,"y":280,"fileNum":4000,"id":18248,"width":150,"height":140},{"x":750,"y":280,"fileNum":4000,"id":18249,"width":150,"height":140},{"x":0,"y":420,"fileNum":4000,"id":18250,"width":150,"height":140},{"x":150,"y":420,"fileNum":4000,"id":18251,"width":150,"height":140},{"x":300,"y":420,"fileNum":4000,"id":18252,"width":150,"height":140},{"x":450,"y":420,"fileNum":4000,"id":18253,"width":150,"height":140},{"x":600,"y":420,"fileNum":4000,"id":18254,"width":150,"height":140},{"x":750,"y":420,"fileNum":4000,"id":18255,"width":150,"height":140},{"x":0,"y":0,"fileNum":8014,"id":18260,"width":128,"height":128},{"x":128,"y":0,"fileNum":8014,"id":18261,"width":128,"height":128},{"x":0,"y":128,"fileNum":8014,"id":18262,"width":128,"height":128},{"x":128,"y":128,"fileNum":8014,"id":18263,"width":128,"height":128},{"x":0,"y":0,"fileNum":8015,"id":18264,"width":128,"height":128},{"x":128,"y":0,"fileNum":8015,"id":18265,"width":128,"height":128},{"x":0,"y":128,"fileNum":8015,"id":18266,"width":128,"height":128},{"x":128,"y":128,"fileNum":8015,"id":18267,"width":128,"height":128},{"x":0,"y":0,"fileNum":8016,"id":18268,"width":73,"height":302},{"x":0,"y":0,"fileNum":8017,"id":18269,"width":145,"height":285},{"x":0,"y":0,"fileNum":8018,"id":18270,"width":79,"height":184},{"x":0,"y":0,"fileNum":8019,"id":18271,"width":100,"height":81},{"x":100,"y":0,"fileNum":8019,"id":18272,"width":100,"height":81},{"x":200,"y":0,"fileNum":8019,"id":18273,"width":100,"height":81},{"x":0,"y":0,"fileNum":8020,"id":18275,"width":140,"height":55},{"x":0,"y":0,"fileNum":8021,"id":18276,"width":100,"height":140},{"x":0,"y":0,"fileNum":4001,"id":18277,"width":184,"height":166},{"x":184,"y":0,"fileNum":4001,"id":18278,"width":184,"height":166},{"x":368,"y":0,"fileNum":4001,"id":18279,"width":184,"height":166},{"x":0,"y":166,"fileNum":4001,"id":18280,"width":184,"height":166},{"x":184,"y":166,"fileNum":4001,"id":18281,"width":184,"height":166},{"x":368,"y":166,"fileNum":4001,"id":18282,"width":184,"height":166},{"x":0,"y":332,"fileNum":4001,"id":18283,"width":184,"height":166},{"x":184,"y":332,"fileNum":4001,"id":18284,"width":184,"height":166},{"x":368,"y":332,"fileNum":4001,"id":18285,"width":184,"height":166},{"x":0,"y":498,"fileNum":4001,"id":18286,"width":184,"height":166},{"x":184,"y":498,"fileNum":4001,"id":18287,"width":184,"height":166},{"x":368,"y":498,"fileNum":4001,"id":18288,"width":184,"height":166},{"x":0,"y":0,"fileNum":107,"id":18293,"width":25,"height":45},{"x":25,"y":0,"fileNum":107,"id":18294,"width":25,"height":45},{"x":50,"y":0,"fileNum":107,"id":18295,"width":25,"height":45},{"x":75,"y":0,"fileNum":107,"id":18296,"width":25,"height":45},{"x":100,"y":0,"fileNum":107,"id":18297,"width":25,"height":45},{"x":125,"y":0,"fileNum":107,"id":18298,"width":25,"height":45},{"x":0,"y":45,"fileNum":107,"id":18299,"width":25,"height":45},{"x":25,"y":45,"fileNum":107,"id":18300,"width":25,"height":45},{"x":50,"y":45,"fileNum":107,"id":18301,"width":25,"height":45},{"x":75,"y":45,"fileNum":107,"id":18302,"width":25,"height":45},{"x":100,"y":45,"fileNum":107,"id":18303,"width":25,"height":45},{"x":125,"y":45,"fileNum":107,"id":18304,"width":25,"height":45},{"x":0,"y":90,"fileNum":107,"id":18305,"width":25,"height":45},{"x":25,"y":90,"fileNum":107,"id":18306,"width":25,"height":45},{"x":50,"y":90,"fileNum":107,"id":18307,"width":25,"height":45},{"x":75,"y":90,"fileNum":107,"id":18308,"width":25,"height":45},{"x":100,"y":90,"fileNum":107,"id":18309,"width":25,"height":45},{"x":0,"y":135,"fileNum":107,"id":18310,"width":25,"height":45},{"x":25,"y":135,"fileNum":107,"id":18311,"width":25,"height":45},{"x":50,"y":135,"fileNum":107,"id":18312,"width":25,"height":45},{"x":75,"y":135,"fileNum":107,"id":18313,"width":25,"height":45},{"x":100,"y":135,"fileNum":107,"id":18314,"width":25,"height":45},{"x":0,"y":0,"fileNum":4048,"id":18319,"width":25,"height":58},{"x":25,"y":0,"fileNum":4048,"id":18320,"width":25,"height":58},{"x":50,"y":0,"fileNum":4048,"id":18321,"width":25,"height":58},{"x":75,"y":0,"fileNum":4048,"id":18322,"width":25,"height":58},{"x":100,"y":0,"fileNum":4048,"id":18323,"width":25,"height":58},{"x":125,"y":0,"fileNum":4048,"id":18324,"width":25,"height":58},{"x":0,"y":58,"fileNum":4048,"id":18325,"width":25,"height":58},{"x":25,"y":58,"fileNum":4048,"id":18326,"width":25,"height":58},{"x":50,"y":58,"fileNum":4048,"id":18327,"width":25,"height":58},{"x":75,"y":58,"fileNum":4048,"id":18328,"width":25,"height":58},{"x":100,"y":58,"fileNum":4048,"id":18329,"width":25,"height":58},{"x":125,"y":58,"fileNum":4048,"id":18330,"width":25,"height":58},{"x":0,"y":116,"fileNum":4048,"id":18331,"width":25,"height":58},{"x":25,"y":116,"fileNum":4048,"id":18332,"width":25,"height":58},{"x":50,"y":116,"fileNum":4048,"id":18333,"width":25,"height":58},{"x":75,"y":116,"fileNum":4048,"id":18334,"width":25,"height":58},{"x":100,"y":116,"fileNum":4048,"id":18335,"width":25,"height":58},{"x":0,"y":174,"fileNum":4048,"id":18336,"width":25,"height":58},{"x":25,"y":174,"fileNum":4048,"id":18337,"width":25,"height":58},{"x":50,"y":174,"fileNum":4048,"id":18338,"width":25,"height":58},{"x":75,"y":174,"fileNum":4048,"id":18339,"width":25,"height":58},{"x":100,"y":174,"fileNum":4048,"id":18340,"width":25,"height":58},{"x":0,"y":0,"fileNum":4049,"id":18345,"width":25,"height":58},{"x":25,"y":0,"fileNum":4049,"id":18346,"width":25,"height":58},{"x":50,"y":0,"fileNum":4049,"id":18347,"width":25,"height":58},{"x":75,"y":0,"fileNum":4049,"id":18348,"width":25,"height":58},{"x":100,"y":0,"fileNum":4049,"id":18349,"width":25,"height":58},{"x":125,"y":0,"fileNum":4049,"id":18350,"width":25,"height":58},{"x":0,"y":58,"fileNum":4049,"id":18351,"width":25,"height":58},{"x":25,"y":58,"fileNum":4049,"id":18352,"width":25,"height":58},{"x":50,"y":58,"fileNum":4049,"id":18353,"width":25,"height":58},{"x":75,"y":58,"fileNum":4049,"id":18354,"width":25,"height":58},{"x":100,"y":58,"fileNum":4049,"id":18355,"width":25,"height":58},{"x":125,"y":58,"fileNum":4049,"id":18356,"width":25,"height":58},{"x":0,"y":116,"fileNum":4049,"id":18357,"width":25,"height":58},{"x":25,"y":116,"fileNum":4049,"id":18358,"width":25,"height":58},{"x":50,"y":116,"fileNum":4049,"id":18359,"width":25,"height":58},{"x":75,"y":116,"fileNum":4049,"id":18360,"width":25,"height":58},{"x":100,"y":116,"fileNum":4049,"id":18361,"width":25,"height":58},{"x":0,"y":174,"fileNum":4049,"id":18362,"width":25,"height":58},{"x":25,"y":174,"fileNum":4049,"id":18363,"width":25,"height":58},{"x":50,"y":174,"fileNum":4049,"id":18364,"width":25,"height":58},{"x":75,"y":174,"fileNum":4049,"id":18365,"width":25,"height":58},{"x":100,"y":174,"fileNum":4049,"id":18366,"width":25,"height":58},{"x":0,"y":0,"fileNum":4041,"id":18371,"width":32,"height":53},{"x":32,"y":0,"fileNum":4041,"id":18372,"width":32,"height":53},{"x":64,"y":0,"fileNum":4041,"id":18373,"width":32,"height":53},{"x":0,"y":0,"fileNum":4042,"id":18375,"width":32,"height":53},{"x":32,"y":0,"fileNum":4042,"id":18376,"width":32,"height":53},{"x":64,"y":0,"fileNum":4042,"id":18377,"width":32,"height":53},{"x":0,"y":0,"fileNum":4043,"id":18379,"width":32,"height":53},{"x":32,"y":0,"fileNum":4043,"id":18380,"width":32,"height":53},{"x":64,"y":0,"fileNum":4043,"id":18381,"width":32,"height":53},{"x":0,"y":0,"fileNum":4044,"id":18383,"width":32,"height":47},{"x":32,"y":0,"fileNum":4044,"id":18384,"width":32,"height":47},{"x":64,"y":0,"fileNum":4044,"id":18385,"width":32,"height":47},{"x":0,"y":0,"fileNum":4046,"id":18386,"width":32,"height":47},{"x":32,"y":0,"fileNum":4046,"id":18387,"width":32,"height":47},{"x":64,"y":0,"fileNum":4046,"id":18388,"width":32,"height":47},{"x":0,"y":0,"fileNum":4045,"id":18389,"width":32,"height":47},{"x":32,"y":0,"fileNum":4045,"id":18390,"width":32,"height":47},{"x":64,"y":0,"fileNum":4045,"id":18391,"width":32,"height":47},{"x":0,"y":0,"fileNum":2127,"id":18392,"width":17,"height":50},{"x":17,"y":0,"fileNum":2127,"id":18393,"width":17,"height":50},{"x":34,"y":0,"fileNum":2127,"id":18394,"width":17,"height":50},{"x":51,"y":0,"fileNum":2127,"id":18395,"width":17,"height":50},{"x":0,"y":0,"fileNum":3093,"id":18396,"width":64,"height":64},{"x":64,"y":0,"fileNum":3093,"id":18397,"width":64,"height":64},{"x":128,"y":0,"fileNum":3093,"id":18398,"width":64,"height":64},{"x":192,"y":0,"fileNum":3093,"id":18399,"width":64,"height":64},{"x":256,"y":0,"fileNum":3093,"id":18400,"width":64,"height":64},{"x":0,"y":0,"fileNum":4047,"id":18402,"width":47,"height":60},{"x":0,"y":0,"fileNum":3099,"id":18403,"width":140,"height":265},{"x":140,"y":0,"fileNum":3099,"id":18404,"width":140,"height":265},{"x":280,"y":0,"fileNum":3099,"id":18405,"width":140,"height":265},{"x":420,"y":0,"fileNum":3099,"id":18406,"width":140,"height":265},{"x":560,"y":0,"fileNum":3099,"id":18407,"width":140,"height":265},{"x":0,"y":265,"fileNum":3099,"id":18408,"width":140,"height":265},{"x":140,"y":265,"fileNum":3099,"id":18409,"width":140,"height":265},{"x":280,"y":265,"fileNum":3099,"id":18410,"width":140,"height":265},{"x":420,"y":265,"fileNum":3099,"id":18411,"width":140,"height":265},{"x":560,"y":265,"fileNum":3099,"id":18412,"width":140,"height":265},{"x":0,"y":0,"fileNum":12008,"id":18414,"width":32,"height":32},{"x":32,"y":0,"fileNum":12008,"id":18415,"width":32,"height":32},{"x":64,"y":0,"fileNum":12008,"id":18416,"width":32,"height":32},{"x":96,"y":0,"fileNum":12008,"id":18417,"width":32,"height":32},{"x":0,"y":32,"fileNum":12008,"id":18418,"width":32,"height":32},{"x":32,"y":32,"fileNum":12008,"id":18419,"width":32,"height":32},{"x":64,"y":32,"fileNum":12008,"id":18420,"width":32,"height":32},{"x":96,"y":32,"fileNum":12008,"id":18421,"width":32,"height":32},{"x":0,"y":64,"fileNum":12008,"id":18422,"width":32,"height":32},{"x":32,"y":64,"fileNum":12008,"id":18423,"width":32,"height":32},{"x":64,"y":64,"fileNum":12008,"id":18424,"width":32,"height":32},{"x":96,"y":64,"fileNum":12008,"id":18425,"width":32,"height":32},{"x":0,"y":96,"fileNum":12008,"id":18426,"width":32,"height":32},{"x":32,"y":96,"fileNum":12008,"id":18427,"width":32,"height":32},{"x":64,"y":96,"fileNum":12008,"id":18428,"width":32,"height":32},{"x":96,"y":96,"fileNum":12008,"id":18429,"width":32,"height":32},{"x":128,"y":0,"fileNum":12008,"id":18430,"width":32,"height":32},{"x":160,"y":0,"fileNum":12008,"id":18431,"width":32,"height":32},{"x":192,"y":0,"fileNum":12008,"id":18432,"width":32,"height":32},{"x":224,"y":0,"fileNum":12008,"id":18433,"width":32,"height":32},{"x":128,"y":32,"fileNum":12008,"id":18434,"width":32,"height":32},{"x":160,"y":32,"fileNum":12008,"id":18435,"width":32,"height":32},{"x":192,"y":32,"fileNum":12008,"id":18436,"width":32,"height":32},{"x":224,"y":32,"fileNum":12008,"id":18437,"width":32,"height":32},{"x":128,"y":64,"fileNum":12008,"id":18438,"width":32,"height":32},{"x":160,"y":64,"fileNum":12008,"id":18439,"width":32,"height":32},{"x":192,"y":64,"fileNum":12008,"id":18440,"width":32,"height":32},{"x":224,"y":64,"fileNum":12008,"id":18441,"width":32,"height":32},{"x":128,"y":96,"fileNum":12008,"id":18442,"width":32,"height":32},{"x":160,"y":96,"fileNum":12008,"id":18443,"width":32,"height":32},{"x":192,"y":96,"fileNum":12008,"id":18444,"width":32,"height":32},{"x":224,"y":96,"fileNum":12008,"id":18445,"width":32,"height":32},{"x":256,"y":0,"fileNum":12008,"id":18446,"width":32,"height":32},{"x":288,"y":0,"fileNum":12008,"id":18447,"width":32,"height":32},{"x":320,"y":0,"fileNum":12008,"id":18448,"width":32,"height":32},{"x":352,"y":0,"fileNum":12008,"id":18449,"width":32,"height":32},{"x":256,"y":32,"fileNum":12008,"id":18450,"width":32,"height":32},{"x":288,"y":32,"fileNum":12008,"id":18451,"width":32,"height":32},{"x":320,"y":32,"fileNum":12008,"id":18452,"width":32,"height":32},{"x":352,"y":32,"fileNum":12008,"id":18453,"width":32,"height":32},{"x":256,"y":64,"fileNum":12008,"id":18454,"width":32,"height":32},{"x":288,"y":64,"fileNum":12008,"id":18455,"width":32,"height":32},{"x":320,"y":64,"fileNum":12008,"id":18456,"width":32,"height":32},{"x":352,"y":64,"fileNum":12008,"id":18457,"width":32,"height":32},{"x":256,"y":96,"fileNum":12008,"id":18458,"width":32,"height":32},{"x":288,"y":96,"fileNum":12008,"id":18459,"width":32,"height":32},{"x":320,"y":96,"fileNum":12008,"id":18460,"width":32,"height":32},{"x":352,"y":96,"fileNum":12008,"id":18461,"width":32,"height":32},{"x":384,"y":0,"fileNum":12008,"id":18462,"width":32,"height":32},{"x":416,"y":0,"fileNum":12008,"id":18463,"width":32,"height":32},{"x":448,"y":0,"fileNum":12008,"id":18464,"width":32,"height":32},{"x":480,"y":0,"fileNum":12008,"id":18465,"width":32,"height":32},{"x":384,"y":32,"fileNum":12008,"id":18466,"width":32,"height":32},{"x":416,"y":32,"fileNum":12008,"id":18467,"width":32,"height":32},{"x":448,"y":32,"fileNum":12008,"id":18468,"width":32,"height":32},{"x":480,"y":32,"fileNum":12008,"id":18469,"width":32,"height":32},{"x":384,"y":64,"fileNum":12008,"id":18470,"width":32,"height":32},{"x":416,"y":64,"fileNum":12008,"id":18471,"width":32,"height":32},{"x":448,"y":64,"fileNum":12008,"id":18472,"width":32,"height":32},{"x":480,"y":64,"fileNum":12008,"id":18473,"width":32,"height":32},{"x":384,"y":96,"fileNum":12008,"id":18474,"width":32,"height":32},{"x":416,"y":96,"fileNum":12008,"id":18475,"width":32,"height":32},{"x":448,"y":96,"fileNum":12008,"id":18476,"width":32,"height":32},{"x":480,"y":96,"fileNum":12008,"id":18477,"width":32,"height":32},{"x":0,"y":0,"fileNum":6011,"id":18478,"width":357,"height":460},{"x":0,"y":0,"fileNum":6012,"id":18479,"width":293,"height":336},{"x":0,"y":0,"fileNum":6013,"id":18480,"width":312,"height":388},{"x":0,"y":0,"fileNum":6014,"id":18481,"width":293,"height":338},{"x":0,"y":0,"fileNum":8000,"id":18482,"width":32,"height":32},{"x":32,"y":0,"fileNum":8000,"id":18483,"width":32,"height":32},{"x":64,"y":0,"fileNum":8000,"id":18484,"width":32,"height":32},{"x":96,"y":0,"fileNum":8000,"id":18485,"width":32,"height":32},{"x":0,"y":32,"fileNum":8000,"id":18486,"width":32,"height":32},{"x":32,"y":32,"fileNum":8000,"id":18487,"width":32,"height":32},{"x":64,"y":32,"fileNum":8000,"id":18488,"width":32,"height":32},{"x":96,"y":32,"fileNum":8000,"id":18489,"width":32,"height":32},{"x":0,"y":64,"fileNum":8000,"id":18490,"width":32,"height":32},{"x":32,"y":64,"fileNum":8000,"id":18491,"width":32,"height":32},{"x":64,"y":64,"fileNum":8000,"id":18492,"width":32,"height":32},{"x":96,"y":64,"fileNum":8000,"id":18493,"width":32,"height":32},{"x":0,"y":96,"fileNum":8000,"id":18494,"width":32,"height":32},{"x":32,"y":96,"fileNum":8000,"id":18495,"width":32,"height":32},{"x":64,"y":96,"fileNum":8000,"id":18496,"width":32,"height":32},{"x":96,"y":96,"fileNum":8000,"id":18497,"width":32,"height":32},{"x":0,"y":0,"fileNum":8001,"id":18498,"width":32,"height":32},{"x":32,"y":0,"fileNum":8001,"id":18499,"width":32,"height":32},{"x":64,"y":0,"fileNum":8001,"id":18500,"width":32,"height":32},{"x":96,"y":0,"fileNum":8001,"id":18501,"width":32,"height":32},{"x":0,"y":32,"fileNum":8001,"id":18502,"width":32,"height":32},{"x":32,"y":32,"fileNum":8001,"id":18503,"width":32,"height":32},{"x":64,"y":32,"fileNum":8001,"id":18504,"width":32,"height":32},{"x":96,"y":32,"fileNum":8001,"id":18505,"width":32,"height":32},{"x":0,"y":64,"fileNum":8001,"id":18506,"width":32,"height":32},{"x":32,"y":64,"fileNum":8001,"id":18507,"width":32,"height":32},{"x":64,"y":64,"fileNum":8001,"id":18508,"width":32,"height":32},{"x":96,"y":64,"fileNum":8001,"id":18509,"width":32,"height":32},{"x":0,"y":96,"fileNum":8001,"id":18510,"width":32,"height":32},{"x":32,"y":96,"fileNum":8001,"id":18511,"width":32,"height":32},{"x":64,"y":96,"fileNum":8001,"id":18512,"width":32,"height":32},{"x":96,"y":96,"fileNum":8001,"id":18513,"width":32,"height":32},{"x":0,"y":0,"fileNum":8002,"id":18514,"width":32,"height":32},{"x":32,"y":0,"fileNum":8002,"id":18515,"width":32,"height":32},{"x":64,"y":0,"fileNum":8002,"id":18516,"width":32,"height":32},{"x":96,"y":0,"fileNum":8002,"id":18517,"width":32,"height":32},{"x":0,"y":32,"fileNum":8002,"id":18518,"width":32,"height":32},{"x":32,"y":32,"fileNum":8002,"id":18519,"width":32,"height":32},{"x":64,"y":32,"fileNum":8002,"id":18520,"width":32,"height":32},{"x":96,"y":32,"fileNum":8002,"id":18521,"width":32,"height":32},{"x":0,"y":64,"fileNum":8002,"id":18522,"width":32,"height":32},{"x":32,"y":64,"fileNum":8002,"id":18523,"width":32,"height":32},{"x":64,"y":64,"fileNum":8002,"id":18524,"width":32,"height":32},{"x":96,"y":64,"fileNum":8002,"id":18525,"width":32,"height":32},{"x":0,"y":96,"fileNum":8002,"id":18526,"width":32,"height":32},{"x":32,"y":96,"fileNum":8002,"id":18527,"width":32,"height":32},{"x":64,"y":96,"fileNum":8002,"id":18528,"width":32,"height":32},{"x":96,"y":96,"fileNum":8002,"id":18529,"width":32,"height":32},{"x":0,"y":0,"fileNum":8003,"id":18530,"width":32,"height":32},{"x":32,"y":0,"fileNum":8003,"id":18531,"width":32,"height":32},{"x":64,"y":0,"fileNum":8003,"id":18532,"width":32,"height":32},{"x":96,"y":0,"fileNum":8003,"id":18533,"width":32,"height":32},{"x":0,"y":32,"fileNum":8003,"id":18534,"width":32,"height":32},{"x":32,"y":32,"fileNum":8003,"id":18535,"width":32,"height":32},{"x":64,"y":32,"fileNum":8003,"id":18536,"width":32,"height":32},{"x":96,"y":32,"fileNum":8003,"id":18537,"width":32,"height":32},{"x":0,"y":64,"fileNum":8003,"id":18538,"width":32,"height":32},{"x":32,"y":64,"fileNum":8003,"id":18539,"width":32,"height":32},{"x":64,"y":64,"fileNum":8003,"id":18540,"width":32,"height":32},{"x":96,"y":64,"fileNum":8003,"id":18541,"width":32,"height":32},{"x":0,"y":96,"fileNum":8003,"id":18542,"width":32,"height":32},{"x":32,"y":96,"fileNum":8003,"id":18543,"width":32,"height":32},{"x":64,"y":96,"fileNum":8003,"id":18544,"width":32,"height":32},{"x":96,"y":96,"fileNum":8003,"id":18545,"width":32,"height":32},{"x":0,"y":0,"fileNum":8004,"id":18546,"width":32,"height":32},{"x":32,"y":0,"fileNum":8004,"id":18547,"width":32,"height":32},{"x":64,"y":0,"fileNum":8004,"id":18548,"width":32,"height":32},{"x":96,"y":0,"fileNum":8004,"id":18549,"width":32,"height":32},{"x":0,"y":32,"fileNum":8004,"id":18550,"width":32,"height":32},{"x":32,"y":32,"fileNum":8004,"id":18551,"width":32,"height":32},{"x":64,"y":32,"fileNum":8004,"id":18552,"width":32,"height":32},{"x":96,"y":32,"fileNum":8004,"id":18553,"width":32,"height":32},{"x":0,"y":64,"fileNum":8004,"id":18554,"width":32,"height":32},{"x":32,"y":64,"fileNum":8004,"id":18555,"width":32,"height":32},{"x":64,"y":64,"fileNum":8004,"id":18556,"width":32,"height":32},{"x":96,"y":64,"fileNum":8004,"id":18557,"width":32,"height":32},{"x":0,"y":96,"fileNum":8004,"id":18558,"width":32,"height":32},{"x":32,"y":96,"fileNum":8004,"id":18559,"width":32,"height":32},{"x":64,"y":96,"fileNum":8004,"id":18560,"width":32,"height":32},{"x":96,"y":96,"fileNum":8004,"id":18561,"width":32,"height":32},{"x":0,"y":0,"fileNum":8005,"id":18562,"width":32,"height":32},{"x":32,"y":0,"fileNum":8005,"id":18563,"width":32,"height":32},{"x":64,"y":0,"fileNum":8005,"id":18564,"width":32,"height":32},{"x":96,"y":0,"fileNum":8005,"id":18565,"width":32,"height":32},{"x":0,"y":32,"fileNum":8005,"id":18566,"width":32,"height":32},{"x":32,"y":32,"fileNum":8005,"id":18567,"width":32,"height":32},{"x":64,"y":32,"fileNum":8005,"id":18568,"width":32,"height":32},{"x":96,"y":32,"fileNum":8005,"id":18569,"width":32,"height":32},{"x":0,"y":64,"fileNum":8005,"id":18570,"width":32,"height":32},{"x":32,"y":64,"fileNum":8005,"id":18571,"width":32,"height":32},{"x":64,"y":64,"fileNum":8005,"id":18572,"width":32,"height":32},{"x":96,"y":64,"fileNum":8005,"id":18573,"width":32,"height":32},{"x":0,"y":96,"fileNum":8005,"id":18574,"width":32,"height":32},{"x":32,"y":96,"fileNum":8005,"id":18575,"width":32,"height":32},{"x":64,"y":96,"fileNum":8005,"id":18576,"width":32,"height":32},{"x":96,"y":96,"fileNum":8005,"id":18577,"width":32,"height":32},{"x":0,"y":0,"fileNum":8006,"id":18578,"width":32,"height":32},{"x":32,"y":0,"fileNum":8006,"id":18579,"width":32,"height":32},{"x":64,"y":0,"fileNum":8006,"id":18580,"width":32,"height":32},{"x":96,"y":0,"fileNum":8006,"id":18581,"width":32,"height":32},{"x":0,"y":32,"fileNum":8006,"id":18582,"width":32,"height":32},{"x":32,"y":32,"fileNum":8006,"id":18583,"width":32,"height":32},{"x":64,"y":32,"fileNum":8006,"id":18584,"width":32,"height":32},{"x":96,"y":32,"fileNum":8006,"id":18585,"width":32,"height":32},{"x":0,"y":64,"fileNum":8006,"id":18586,"width":32,"height":32},{"x":32,"y":64,"fileNum":8006,"id":18587,"width":32,"height":32},{"x":64,"y":64,"fileNum":8006,"id":18588,"width":32,"height":32},{"x":96,"y":64,"fileNum":8006,"id":18589,"width":32,"height":32},{"x":0,"y":96,"fileNum":8006,"id":18590,"width":32,"height":32},{"x":32,"y":96,"fileNum":8006,"id":18591,"width":32,"height":32},{"x":64,"y":96,"fileNum":8006,"id":18592,"width":32,"height":32},{"x":96,"y":96,"fileNum":8006,"id":18593,"width":32,"height":32},{"x":0,"y":0,"fileNum":8007,"id":18594,"width":32,"height":32},{"x":32,"y":0,"fileNum":8007,"id":18595,"width":32,"height":32},{"x":64,"y":0,"fileNum":8007,"id":18596,"width":32,"height":32},{"x":96,"y":0,"fileNum":8007,"id":18597,"width":32,"height":32},{"x":0,"y":32,"fileNum":8007,"id":18598,"width":32,"height":32},{"x":32,"y":32,"fileNum":8007,"id":18599,"width":32,"height":32},{"x":64,"y":32,"fileNum":8007,"id":18600,"width":32,"height":32},{"x":96,"y":32,"fileNum":8007,"id":18601,"width":32,"height":32},{"x":0,"y":64,"fileNum":8007,"id":18602,"width":32,"height":32},{"x":32,"y":64,"fileNum":8007,"id":18603,"width":32,"height":32},{"x":64,"y":64,"fileNum":8007,"id":18604,"width":32,"height":32},{"x":96,"y":64,"fileNum":8007,"id":18605,"width":32,"height":32},{"x":0,"y":96,"fileNum":8007,"id":18606,"width":32,"height":32},{"x":32,"y":96,"fileNum":8007,"id":18607,"width":32,"height":32},{"x":64,"y":96,"fileNum":8007,"id":18608,"width":32,"height":32},{"x":96,"y":96,"fileNum":8007,"id":18609,"width":32,"height":32},{"x":0,"y":0,"fileNum":8008,"id":18610,"width":32,"height":32},{"x":32,"y":0,"fileNum":8008,"id":18611,"width":32,"height":32},{"x":64,"y":0,"fileNum":8008,"id":18612,"width":32,"height":32},{"x":96,"y":0,"fileNum":8008,"id":18613,"width":32,"height":32},{"x":0,"y":32,"fileNum":8008,"id":18614,"width":32,"height":32},{"x":32,"y":32,"fileNum":8008,"id":18615,"width":32,"height":32},{"x":64,"y":32,"fileNum":8008,"id":18616,"width":32,"height":32},{"x":96,"y":32,"fileNum":8008,"id":18617,"width":32,"height":32},{"x":0,"y":64,"fileNum":8008,"id":18618,"width":32,"height":32},{"x":32,"y":64,"fileNum":8008,"id":18619,"width":32,"height":32},{"x":64,"y":64,"fileNum":8008,"id":18620,"width":32,"height":32},{"x":96,"y":64,"fileNum":8008,"id":18621,"width":32,"height":32},{"x":0,"y":96,"fileNum":8008,"id":18622,"width":32,"height":32},{"x":32,"y":96,"fileNum":8008,"id":18623,"width":32,"height":32},{"x":64,"y":96,"fileNum":8008,"id":18624,"width":32,"height":32},{"x":96,"y":96,"fileNum":8008,"id":18625,"width":32,"height":32},{"x":0,"y":0,"fileNum":8009,"id":18626,"width":32,"height":32},{"x":32,"y":0,"fileNum":8009,"id":18627,"width":32,"height":32},{"x":64,"y":0,"fileNum":8009,"id":18628,"width":32,"height":32},{"x":96,"y":0,"fileNum":8009,"id":18629,"width":32,"height":32},{"x":0,"y":32,"fileNum":8009,"id":18630,"width":32,"height":32},{"x":32,"y":32,"fileNum":8009,"id":18631,"width":32,"height":32},{"x":64,"y":32,"fileNum":8009,"id":18632,"width":32,"height":32},{"x":96,"y":32,"fileNum":8009,"id":18633,"width":32,"height":32},{"x":0,"y":64,"fileNum":8009,"id":18634,"width":32,"height":32},{"x":32,"y":64,"fileNum":8009,"id":18635,"width":32,"height":32},{"x":64,"y":64,"fileNum":8009,"id":18636,"width":32,"height":32},{"x":96,"y":64,"fileNum":8009,"id":18637,"width":32,"height":32},{"x":0,"y":96,"fileNum":8009,"id":18638,"width":32,"height":32},{"x":32,"y":96,"fileNum":8009,"id":18639,"width":32,"height":32},{"x":64,"y":96,"fileNum":8009,"id":18640,"width":32,"height":32},{"x":96,"y":96,"fileNum":8009,"id":18641,"width":32,"height":32},{"x":0,"y":0,"fileNum":8010,"id":18642,"width":32,"height":32},{"x":32,"y":0,"fileNum":8010,"id":18643,"width":32,"height":32},{"x":64,"y":0,"fileNum":8010,"id":18644,"width":32,"height":32},{"x":96,"y":0,"fileNum":8010,"id":18645,"width":32,"height":32},{"x":0,"y":32,"fileNum":8010,"id":18646,"width":32,"height":32},{"x":32,"y":32,"fileNum":8010,"id":18647,"width":32,"height":32},{"x":64,"y":32,"fileNum":8010,"id":18648,"width":32,"height":32},{"x":96,"y":32,"fileNum":8010,"id":18649,"width":32,"height":32},{"x":0,"y":64,"fileNum":8010,"id":18650,"width":32,"height":32},{"x":32,"y":64,"fileNum":8010,"id":18651,"width":32,"height":32},{"x":64,"y":64,"fileNum":8010,"id":18652,"width":32,"height":32},{"x":96,"y":64,"fileNum":8010,"id":18653,"width":32,"height":32},{"x":0,"y":96,"fileNum":8010,"id":18654,"width":32,"height":32},{"x":32,"y":96,"fileNum":8010,"id":18655,"width":32,"height":32},{"x":64,"y":96,"fileNum":8010,"id":18656,"width":32,"height":32},{"x":96,"y":96,"fileNum":8010,"id":18657,"width":32,"height":32},{"x":0,"y":0,"fileNum":8011,"id":18658,"width":32,"height":32},{"x":32,"y":0,"fileNum":8011,"id":18659,"width":32,"height":32},{"x":64,"y":0,"fileNum":8011,"id":18660,"width":32,"height":32},{"x":96,"y":0,"fileNum":8011,"id":18661,"width":32,"height":32},{"x":0,"y":32,"fileNum":8011,"id":18662,"width":32,"height":32},{"x":32,"y":32,"fileNum":8011,"id":18663,"width":32,"height":32},{"x":64,"y":32,"fileNum":8011,"id":18664,"width":32,"height":32},{"x":96,"y":32,"fileNum":8011,"id":18665,"width":32,"height":32},{"x":0,"y":64,"fileNum":8011,"id":18666,"width":32,"height":32},{"x":32,"y":64,"fileNum":8011,"id":18667,"width":32,"height":32},{"x":64,"y":64,"fileNum":8011,"id":18668,"width":32,"height":32},{"x":96,"y":64,"fileNum":8011,"id":18669,"width":32,"height":32},{"x":0,"y":96,"fileNum":8011,"id":18670,"width":32,"height":32},{"x":32,"y":96,"fileNum":8011,"id":18671,"width":32,"height":32},{"x":64,"y":96,"fileNum":8011,"id":18672,"width":32,"height":32},{"x":96,"y":96,"fileNum":8011,"id":18673,"width":32,"height":32},{"x":0,"y":0,"fileNum":8012,"id":18674,"width":32,"height":32},{"x":32,"y":0,"fileNum":8012,"id":18675,"width":32,"height":32},{"x":64,"y":0,"fileNum":8012,"id":18676,"width":32,"height":32},{"x":96,"y":0,"fileNum":8012,"id":18677,"width":32,"height":32},{"x":0,"y":32,"fileNum":8012,"id":18678,"width":32,"height":32},{"x":32,"y":32,"fileNum":8012,"id":18679,"width":32,"height":32},{"x":64,"y":32,"fileNum":8012,"id":18680,"width":32,"height":32},{"x":96,"y":32,"fileNum":8012,"id":18681,"width":32,"height":32},{"x":0,"y":64,"fileNum":8012,"id":18682,"width":32,"height":32},{"x":32,"y":64,"fileNum":8012,"id":18683,"width":32,"height":32},{"x":64,"y":64,"fileNum":8012,"id":18684,"width":32,"height":32},{"x":96,"y":64,"fileNum":8012,"id":18685,"width":32,"height":32},{"x":0,"y":96,"fileNum":8012,"id":18686,"width":32,"height":32},{"x":32,"y":96,"fileNum":8012,"id":18687,"width":32,"height":32},{"x":64,"y":96,"fileNum":8012,"id":18688,"width":32,"height":32},{"x":96,"y":96,"fileNum":8012,"id":18689,"width":32,"height":32},{"x":0,"y":0,"fileNum":8013,"id":18690,"width":32,"height":32},{"x":32,"y":0,"fileNum":8013,"id":18691,"width":32,"height":32},{"x":64,"y":0,"fileNum":8013,"id":18692,"width":32,"height":32},{"x":96,"y":0,"fileNum":8013,"id":18693,"width":32,"height":32},{"x":0,"y":32,"fileNum":8013,"id":18694,"width":32,"height":32},{"x":32,"y":32,"fileNum":8013,"id":18695,"width":32,"height":32},{"x":64,"y":32,"fileNum":8013,"id":18696,"width":32,"height":32},{"x":96,"y":32,"fileNum":8013,"id":18697,"width":32,"height":32},{"x":0,"y":64,"fileNum":8013,"id":18698,"width":32,"height":32},{"x":32,"y":64,"fileNum":8013,"id":18699,"width":32,"height":32},{"x":64,"y":64,"fileNum":8013,"id":18700,"width":32,"height":32},{"x":96,"y":64,"fileNum":8013,"id":18701,"width":32,"height":32},{"x":0,"y":96,"fileNum":8013,"id":18702,"width":32,"height":32},{"x":32,"y":96,"fileNum":8013,"id":18703,"width":32,"height":32},{"x":64,"y":96,"fileNum":8013,"id":18704,"width":32,"height":32},{"x":96,"y":96,"fileNum":8013,"id":18705,"width":32,"height":32},{"x":0,"y":0,"fileNum":12003,"id":18706,"width":32,"height":32},{"x":32,"y":0,"fileNum":12003,"id":18707,"width":32,"height":32},{"x":0,"y":32,"fileNum":12003,"id":18708,"width":32,"height":32},{"x":32,"y":32,"fileNum":12003,"id":18709,"width":32,"height":32},{"x":64,"y":0,"fileNum":12003,"id":18710,"width":32,"height":32},{"x":96,"y":0,"fileNum":12003,"id":18711,"width":32,"height":32},{"x":64,"y":32,"fileNum":12003,"id":18712,"width":32,"height":32},{"x":96,"y":32,"fileNum":12003,"id":18713,"width":32,"height":32},{"x":0,"y":64,"fileNum":12003,"id":18714,"width":32,"height":32},{"x":32,"y":64,"fileNum":12003,"id":18715,"width":32,"height":32},{"x":0,"y":96,"fileNum":12003,"id":18716,"width":32,"height":32},{"x":32,"y":96,"fileNum":12003,"id":18717,"width":32,"height":32},{"x":64,"y":64,"fileNum":12003,"id":18718,"width":32,"height":32},{"x":96,"y":64,"fileNum":12003,"id":18719,"width":32,"height":32},{"x":64,"y":96,"fileNum":12003,"id":18720,"width":32,"height":32},{"x":96,"y":96,"fileNum":12003,"id":18721,"width":32,"height":32},{"x":0,"y":128,"fileNum":12003,"id":18722,"width":32,"height":32},{"x":32,"y":128,"fileNum":12003,"id":18723,"width":32,"height":32},{"x":0,"y":160,"fileNum":12003,"id":18724,"width":32,"height":32},{"x":32,"y":160,"fileNum":12003,"id":18725,"width":32,"height":32},{"x":64,"y":128,"fileNum":12003,"id":18726,"width":32,"height":32},{"x":96,"y":128,"fileNum":12003,"id":18727,"width":32,"height":32},{"x":64,"y":160,"fileNum":12003,"id":18728,"width":32,"height":32},{"x":96,"y":160,"fileNum":12003,"id":18729,"width":32,"height":32},{"x":192,"y":128,"fileNum":12003,"id":18730,"width":32,"height":32},{"x":224,"y":128,"fileNum":12003,"id":18731,"width":32,"height":32},{"x":192,"y":160,"fileNum":12003,"id":18732,"width":32,"height":32},{"x":224,"y":160,"fileNum":12003,"id":18733,"width":32,"height":32},{"x":0,"y":192,"fileNum":12003,"id":18734,"width":32,"height":32},{"x":32,"y":192,"fileNum":12003,"id":18735,"width":32,"height":32},{"x":0,"y":224,"fileNum":12003,"id":18736,"width":32,"height":32},{"x":32,"y":224,"fileNum":12003,"id":18737,"width":32,"height":32},{"x":64,"y":192,"fileNum":12003,"id":18738,"width":32,"height":32},{"x":96,"y":192,"fileNum":12003,"id":18739,"width":32,"height":32},{"x":64,"y":224,"fileNum":12003,"id":18740,"width":32,"height":32},{"x":96,"y":224,"fileNum":12003,"id":18741,"width":32,"height":32},{"x":128,"y":192,"fileNum":12003,"id":18742,"width":32,"height":32},{"x":160,"y":192,"fileNum":12003,"id":18743,"width":32,"height":32},{"x":128,"y":224,"fileNum":12003,"id":18744,"width":32,"height":32},{"x":160,"y":224,"fileNum":12003,"id":18745,"width":32,"height":32},{"x":128,"y":128,"fileNum":12003,"id":18746,"width":32,"height":32},{"x":160,"y":128,"fileNum":12003,"id":18747,"width":32,"height":32},{"x":128,"y":160,"fileNum":12003,"id":18748,"width":32,"height":32},{"x":160,"y":160,"fileNum":12003,"id":18749,"width":32,"height":32},{"x":192,"y":192,"fileNum":12003,"id":18750,"width":32,"height":32},{"x":224,"y":192,"fileNum":12003,"id":18751,"width":32,"height":32},{"x":192,"y":224,"fileNum":12003,"id":18752,"width":32,"height":32},{"x":224,"y":224,"fileNum":12003,"id":18753,"width":32,"height":32},{"x":128,"y":0,"fileNum":12003,"id":18754,"width":32,"height":32},{"x":160,"y":0,"fileNum":12003,"id":18755,"width":32,"height":32},{"x":128,"y":32,"fileNum":12003,"id":18756,"width":32,"height":32},{"x":160,"y":32,"fileNum":12003,"id":18757,"width":32,"height":32},{"x":192,"y":0,"fileNum":12003,"id":18758,"width":32,"height":32},{"x":224,"y":0,"fileNum":12003,"id":18759,"width":32,"height":32},{"x":192,"y":32,"fileNum":12003,"id":18760,"width":32,"height":32},{"x":224,"y":32,"fileNum":12003,"id":18761,"width":32,"height":32},{"x":128,"y":64,"fileNum":12003,"id":18762,"width":32,"height":32},{"x":160,"y":64,"fileNum":12003,"id":18763,"width":32,"height":32},{"x":128,"y":96,"fileNum":12003,"id":18764,"width":32,"height":32},{"x":160,"y":96,"fileNum":12003,"id":18765,"width":32,"height":32},{"x":192,"y":64,"fileNum":12003,"id":18766,"width":32,"height":32},{"x":224,"y":64,"fileNum":12003,"id":18767,"width":32,"height":32},{"x":192,"y":96,"fileNum":12003,"id":18768,"width":32,"height":32},{"x":224,"y":96,"fileNum":12003,"id":18769,"width":32,"height":32},{"x":0,"y":256,"fileNum":12003,"id":18770,"width":32,"height":32},{"x":32,"y":256,"fileNum":12003,"id":18771,"width":32,"height":32},{"x":0,"y":288,"fileNum":12003,"id":18772,"width":32,"height":32},{"x":32,"y":288,"fileNum":12003,"id":18773,"width":32,"height":32},{"x":64,"y":256,"fileNum":12003,"id":18774,"width":32,"height":32},{"x":96,"y":256,"fileNum":12003,"id":18775,"width":32,"height":32},{"x":64,"y":288,"fileNum":12003,"id":18776,"width":32,"height":32},{"x":96,"y":288,"fileNum":12003,"id":18777,"width":32,"height":32},{"x":128,"y":256,"fileNum":12003,"id":18778,"width":32,"height":32},{"x":160,"y":256,"fileNum":12003,"id":18779,"width":32,"height":32},{"x":128,"y":288,"fileNum":12003,"id":18780,"width":32,"height":32},{"x":160,"y":288,"fileNum":12003,"id":18781,"width":32,"height":32},{"x":192,"y":256,"fileNum":12003,"id":18782,"width":32,"height":32},{"x":224,"y":256,"fileNum":12003,"id":18783,"width":32,"height":32},{"x":192,"y":288,"fileNum":12003,"id":18784,"width":32,"height":32},{"x":224,"y":288,"fileNum":12003,"id":18785,"width":32,"height":32},{"x":0,"y":320,"fileNum":12003,"id":18786,"width":32,"height":32},{"x":32,"y":320,"fileNum":12003,"id":18787,"width":32,"height":32},{"x":0,"y":352,"fileNum":12003,"id":18788,"width":32,"height":32},{"x":32,"y":352,"fileNum":12003,"id":18789,"width":32,"height":32},{"x":64,"y":320,"fileNum":12003,"id":18790,"width":32,"height":32},{"x":96,"y":320,"fileNum":12003,"id":18791,"width":32,"height":32},{"x":64,"y":352,"fileNum":12003,"id":18792,"width":32,"height":32},{"x":96,"y":352,"fileNum":12003,"id":18793,"width":32,"height":32},{"x":128,"y":320,"fileNum":12003,"id":18794,"width":32,"height":32},{"x":160,"y":320,"fileNum":12003,"id":18795,"width":32,"height":32},{"x":128,"y":352,"fileNum":12003,"id":18796,"width":32,"height":32},{"x":160,"y":352,"fileNum":12003,"id":18797,"width":32,"height":32},{"x":192,"y":320,"fileNum":12003,"id":18798,"width":32,"height":32},{"x":224,"y":320,"fileNum":12003,"id":18799,"width":32,"height":32},{"x":192,"y":352,"fileNum":12003,"id":18800,"width":32,"height":32},{"x":224,"y":352,"fileNum":12003,"id":18801,"width":32,"height":32},{"x":0,"y":0,"fileNum":6000,"id":18802,"width":256,"height":295},{"x":0,"y":0,"fileNum":6001,"id":18803,"width":256,"height":295},{"x":0,"y":0,"fileNum":6003,"id":18804,"width":357,"height":460},{"x":0,"y":0,"fileNum":4029,"id":18805,"width":79,"height":60},{"x":79,"y":0,"fileNum":4029,"id":18806,"width":79,"height":60},{"x":158,"y":0,"fileNum":4029,"id":18807,"width":79,"height":60},{"x":237,"y":0,"fileNum":4029,"id":18808,"width":79,"height":60},{"x":0,"y":60,"fileNum":4029,"id":18809,"width":79,"height":60},{"x":79,"y":60,"fileNum":4029,"id":18810,"width":79,"height":60},{"x":158,"y":60,"fileNum":4029,"id":18811,"width":79,"height":60},{"x":237,"y":60,"fileNum":4029,"id":18812,"width":79,"height":60},{"x":0,"y":120,"fileNum":4029,"id":18813,"width":79,"height":60},{"x":79,"y":120,"fileNum":4029,"id":18814,"width":79,"height":60},{"x":158,"y":120,"fileNum":4029,"id":18815,"width":79,"height":60},{"x":237,"y":120,"fileNum":4029,"id":18816,"width":79,"height":60},{"x":0,"y":180,"fileNum":4029,"id":18817,"width":79,"height":60},{"x":79,"y":180,"fileNum":4029,"id":18818,"width":79,"height":60},{"x":158,"y":180,"fileNum":4029,"id":18819,"width":79,"height":60},{"x":237,"y":180,"fileNum":4029,"id":18820,"width":79,"height":60},{"x":0,"y":0,"fileNum":4031,"id":18825,"width":50,"height":46},{"x":50,"y":0,"fileNum":4031,"id":18826,"width":50,"height":46},{"x":100,"y":0,"fileNum":4031,"id":18827,"width":50,"height":46},{"x":150,"y":0,"fileNum":4031,"id":18828,"width":50,"height":46},{"x":0,"y":46,"fileNum":4031,"id":18829,"width":50,"height":46},{"x":50,"y":46,"fileNum":4031,"id":18830,"width":50,"height":46},{"x":100,"y":46,"fileNum":4031,"id":18831,"width":50,"height":46},{"x":150,"y":46,"fileNum":4031,"id":18832,"width":50,"height":46},{"x":0,"y":92,"fileNum":4031,"id":18833,"width":50,"height":46},{"x":50,"y":92,"fileNum":4031,"id":18834,"width":50,"height":46},{"x":100,"y":92,"fileNum":4031,"id":18835,"width":50,"height":46},{"x":150,"y":92,"fileNum":4031,"id":18836,"width":50,"height":46},{"x":0,"y":138,"fileNum":4031,"id":18837,"width":50,"height":46},{"x":50,"y":138,"fileNum":4031,"id":18838,"width":50,"height":46},{"x":100,"y":138,"fileNum":4031,"id":18839,"width":50,"height":46},{"x":150,"y":138,"fileNum":4031,"id":18840,"width":50,"height":46},{"x":0,"y":0,"fileNum":2040,"id":18845,"width":17,"height":50},{"x":17,"y":0,"fileNum":2040,"id":18846,"width":17,"height":50},{"x":34,"y":0,"fileNum":2040,"id":18847,"width":17,"height":50},{"x":51,"y":0,"fileNum":2040,"id":18848,"width":17,"height":50},{"x":0,"y":0,"fileNum":4012,"id":18849,"width":25,"height":45},{"x":25,"y":0,"fileNum":4012,"id":18850,"width":25,"height":45},{"x":50,"y":0,"fileNum":4012,"id":18851,"width":25,"height":45},{"x":75,"y":0,"fileNum":4012,"id":18852,"width":25,"height":45},{"x":100,"y":0,"fileNum":4012,"id":18853,"width":25,"height":45},{"x":125,"y":0,"fileNum":4012,"id":18854,"width":25,"height":45},{"x":0,"y":45,"fileNum":4012,"id":18855,"width":25,"height":45},{"x":25,"y":45,"fileNum":4012,"id":18856,"width":25,"height":45},{"x":50,"y":45,"fileNum":4012,"id":18857,"width":25,"height":45},{"x":75,"y":45,"fileNum":4012,"id":18858,"width":25,"height":45},{"x":100,"y":45,"fileNum":4012,"id":18859,"width":25,"height":45},{"x":125,"y":45,"fileNum":4012,"id":18860,"width":25,"height":45},{"x":0,"y":90,"fileNum":4012,"id":18861,"width":25,"height":45},{"x":25,"y":90,"fileNum":4012,"id":18862,"width":25,"height":45},{"x":50,"y":90,"fileNum":4012,"id":18863,"width":25,"height":45},{"x":75,"y":90,"fileNum":4012,"id":18864,"width":25,"height":45},{"x":100,"y":90,"fileNum":4012,"id":18865,"width":25,"height":45},{"x":0,"y":135,"fileNum":4012,"id":18866,"width":25,"height":45},{"x":25,"y":135,"fileNum":4012,"id":18867,"width":25,"height":45},{"x":50,"y":135,"fileNum":4012,"id":18868,"width":25,"height":45},{"x":75,"y":135,"fileNum":4012,"id":18869,"width":25,"height":45},{"x":100,"y":135,"fileNum":4012,"id":18870,"width":25,"height":45},{"x":0,"y":0,"fileNum":8022,"id":18875,"width":32,"height":32},{"x":32,"y":0,"fileNum":8022,"id":18876,"width":32,"height":32},{"x":0,"y":32,"fileNum":8022,"id":18877,"width":32,"height":32},{"x":32,"y":32,"fileNum":8022,"id":18878,"width":32,"height":32},{"x":0,"y":0,"fileNum":12004,"id":18879,"width":32,"height":32},{"x":32,"y":0,"fileNum":12004,"id":18880,"width":32,"height":32},{"x":64,"y":0,"fileNum":12004,"id":18881,"width":32,"height":32},{"x":96,"y":0,"fileNum":12004,"id":18882,"width":32,"height":32},{"x":0,"y":32,"fileNum":12004,"id":18883,"width":32,"height":32},{"x":32,"y":32,"fileNum":12004,"id":18884,"width":32,"height":32},{"x":64,"y":32,"fileNum":12004,"id":18885,"width":32,"height":32},{"x":96,"y":32,"fileNum":12004,"id":18886,"width":32,"height":32},{"x":0,"y":64,"fileNum":12004,"id":18887,"width":32,"height":32},{"x":32,"y":64,"fileNum":12004,"id":18888,"width":32,"height":32},{"x":64,"y":64,"fileNum":12004,"id":18889,"width":32,"height":32},{"x":96,"y":64,"fileNum":12004,"id":18890,"width":32,"height":32},{"x":0,"y":96,"fileNum":12004,"id":18891,"width":32,"height":32},{"x":32,"y":96,"fileNum":12004,"id":18892,"width":32,"height":32},{"x":64,"y":96,"fileNum":12004,"id":18893,"width":32,"height":32},{"x":96,"y":96,"fileNum":12004,"id":18894,"width":32,"height":32},{"x":0,"y":0,"fileNum":12005,"id":18895,"width":32,"height":32},{"x":32,"y":0,"fileNum":12005,"id":18896,"width":32,"height":32},{"x":64,"y":0,"fileNum":12005,"id":18897,"width":32,"height":32},{"x":96,"y":0,"fileNum":12005,"id":18898,"width":32,"height":32},{"x":0,"y":32,"fileNum":12005,"id":18899,"width":32,"height":32},{"x":32,"y":32,"fileNum":12005,"id":18900,"width":32,"height":32},{"x":64,"y":32,"fileNum":12005,"id":18901,"width":32,"height":32},{"x":96,"y":32,"fileNum":12005,"id":18902,"width":32,"height":32},{"x":0,"y":64,"fileNum":12005,"id":18903,"width":32,"height":32},{"x":32,"y":64,"fileNum":12005,"id":18904,"width":32,"height":32},{"x":64,"y":64,"fileNum":12005,"id":18905,"width":32,"height":32},{"x":96,"y":64,"fileNum":12005,"id":18906,"width":32,"height":32},{"x":0,"y":96,"fileNum":12005,"id":18907,"width":32,"height":32},{"x":32,"y":96,"fileNum":12005,"id":18908,"width":32,"height":32},{"x":64,"y":96,"fileNum":12005,"id":18909,"width":32,"height":32},{"x":96,"y":96,"fileNum":12005,"id":18910,"width":32,"height":32},{"x":32,"y":0,"fileNum":12007,"id":18911,"width":32,"height":32},{"x":64,"y":0,"fileNum":12007,"id":18912,"width":32,"height":32},{"x":96,"y":0,"fileNum":12007,"id":18913,"width":32,"height":32},{"x":0,"y":32,"fileNum":12007,"id":18914,"width":32,"height":32},{"x":32,"y":32,"fileNum":12007,"id":18915,"width":32,"height":32},{"x":64,"y":32,"fileNum":12007,"id":18916,"width":32,"height":32},{"x":96,"y":32,"fileNum":12007,"id":18917,"width":32,"height":32},{"x":0,"y":64,"fileNum":12007,"id":18918,"width":32,"height":32},{"x":32,"y":64,"fileNum":12007,"id":18919,"width":32,"height":32},{"x":64,"y":64,"fileNum":12007,"id":18920,"width":32,"height":32},{"x":96,"y":64,"fileNum":12007,"id":18921,"width":32,"height":32},{"x":0,"y":96,"fileNum":12007,"id":18922,"width":32,"height":32},{"x":32,"y":96,"fileNum":12007,"id":18923,"width":32,"height":32},{"x":64,"y":96,"fileNum":12007,"id":18924,"width":32,"height":32},{"x":96,"y":96,"fileNum":12007,"id":18925,"width":32,"height":32},{"x":128,"y":0,"fileNum":12007,"id":18926,"width":32,"height":32},{"x":160,"y":0,"fileNum":12007,"id":18927,"width":32,"height":32},{"x":192,"y":0,"fileNum":12007,"id":18928,"width":32,"height":32},{"x":224,"y":0,"fileNum":12007,"id":18929,"width":32,"height":32},{"x":128,"y":32,"fileNum":12007,"id":18930,"width":32,"height":32},{"x":160,"y":32,"fileNum":12007,"id":18931,"width":32,"height":32},{"x":192,"y":32,"fileNum":12007,"id":18932,"width":32,"height":32},{"x":224,"y":32,"fileNum":12007,"id":18933,"width":32,"height":32},{"x":128,"y":64,"fileNum":12007,"id":18934,"width":32,"height":32},{"x":160,"y":64,"fileNum":12007,"id":18935,"width":32,"height":32},{"x":192,"y":64,"fileNum":12007,"id":18936,"width":32,"height":32},{"x":224,"y":64,"fileNum":12007,"id":18937,"width":32,"height":32},{"x":128,"y":96,"fileNum":12007,"id":18938,"width":32,"height":32},{"x":160,"y":96,"fileNum":12007,"id":18939,"width":32,"height":32},{"x":192,"y":96,"fileNum":12007,"id":18940,"width":32,"height":32},{"x":224,"y":96,"fileNum":12007,"id":18941,"width":32,"height":32},{"x":256,"y":0,"fileNum":12007,"id":18942,"width":32,"height":32},{"x":288,"y":0,"fileNum":12007,"id":18943,"width":32,"height":32},{"x":320,"y":0,"fileNum":12007,"id":18944,"width":32,"height":32},{"x":352,"y":0,"fileNum":12007,"id":18945,"width":32,"height":32},{"x":256,"y":32,"fileNum":12007,"id":18946,"width":32,"height":32},{"x":288,"y":32,"fileNum":12007,"id":18947,"width":32,"height":32},{"x":320,"y":32,"fileNum":12007,"id":18948,"width":32,"height":32},{"x":352,"y":32,"fileNum":12007,"id":18949,"width":32,"height":32},{"x":256,"y":64,"fileNum":12007,"id":18950,"width":32,"height":32},{"x":288,"y":64,"fileNum":12007,"id":18951,"width":32,"height":32},{"x":320,"y":64,"fileNum":12007,"id":18952,"width":32,"height":32},{"x":352,"y":64,"fileNum":12007,"id":18953,"width":32,"height":32},{"x":256,"y":96,"fileNum":12007,"id":18954,"width":32,"height":32},{"x":288,"y":96,"fileNum":12007,"id":18955,"width":32,"height":32},{"x":320,"y":96,"fileNum":12007,"id":18956,"width":32,"height":32},{"x":352,"y":96,"fileNum":12007,"id":18957,"width":32,"height":32},{"x":0,"y":128,"fileNum":12007,"id":18958,"width":32,"height":32},{"x":32,"y":128,"fileNum":12007,"id":18959,"width":32,"height":32},{"x":64,"y":128,"fileNum":12007,"id":18960,"width":32,"height":32},{"x":96,"y":128,"fileNum":12007,"id":18961,"width":32,"height":32},{"x":0,"y":160,"fileNum":12007,"id":18962,"width":32,"height":32},{"x":32,"y":160,"fileNum":12007,"id":18963,"width":32,"height":32},{"x":64,"y":160,"fileNum":12007,"id":18964,"width":32,"height":32},{"x":96,"y":160,"fileNum":12007,"id":18965,"width":32,"height":32},{"x":0,"y":192,"fileNum":12007,"id":18966,"width":32,"height":32},{"x":32,"y":192,"fileNum":12007,"id":18967,"width":32,"height":32},{"x":64,"y":192,"fileNum":12007,"id":18968,"width":32,"height":32},{"x":96,"y":192,"fileNum":12007,"id":18969,"width":32,"height":32},{"x":0,"y":224,"fileNum":12007,"id":18970,"width":32,"height":32},{"x":32,"y":224,"fileNum":12007,"id":18971,"width":32,"height":32},{"x":64,"y":224,"fileNum":12007,"id":18972,"width":32,"height":32},{"x":96,"y":224,"fileNum":12007,"id":18973,"width":32,"height":32},{"x":0,"y":0,"fileNum":18004,"id":18990,"width":17,"height":28},{"x":17,"y":0,"fileNum":18004,"id":18991,"width":17,"height":28},{"x":34,"y":0,"fileNum":18004,"id":18992,"width":17,"height":28},{"x":51,"y":0,"fileNum":18004,"id":18993,"width":17,"height":28},{"x":0,"y":0,"fileNum":18005,"id":18994,"width":32,"height":32},{"x":0,"y":0,"fileNum":10000,"id":18995,"width":333,"height":376},{"x":0,"y":0,"fileNum":7000,"id":18996,"width":403,"height":209},{"x":0,"y":0,"fileNum":16016,"id":18997,"width":32,"height":32},{"x":0,"y":0,"fileNum":16011,"id":18998,"width":32,"height":32},{"x":0,"y":0,"fileNum":12032,"id":18999,"width":64,"height":64},{"x":64,"y":0,"fileNum":12032,"id":19000,"width":64,"height":64},{"x":0,"y":64,"fileNum":12032,"id":19001,"width":64,"height":64},{"x":64,"y":64,"fileNum":12032,"id":19002,"width":64,"height":64},{"x":0,"y":0,"fileNum":12033,"id":19003,"width":64,"height":64},{"x":64,"y":0,"fileNum":12033,"id":19004,"width":64,"height":64},{"x":0,"y":64,"fileNum":12033,"id":19005,"width":64,"height":64},{"x":64,"y":64,"fileNum":12033,"id":19006,"width":64,"height":64},{"x":0,"y":0,"fileNum":12034,"id":19007,"width":64,"height":64},{"x":64,"y":0,"fileNum":12034,"id":19008,"width":64,"height":64},{"x":0,"y":64,"fileNum":12034,"id":19009,"width":64,"height":64},{"x":64,"y":64,"fileNum":12034,"id":19010,"width":64,"height":64},{"x":0,"y":0,"fileNum":12035,"id":19011,"width":64,"height":64},{"x":64,"y":0,"fileNum":12035,"id":19012,"width":64,"height":64},{"x":0,"y":64,"fileNum":12035,"id":19013,"width":64,"height":64},{"x":64,"y":64,"fileNum":12035,"id":19014,"width":64,"height":64},{"x":0,"y":0,"fileNum":8116,"id":19015,"width":32,"height":32},{"x":32,"y":0,"fileNum":8116,"id":19016,"width":32,"height":32},{"x":64,"y":0,"fileNum":8116,"id":19017,"width":32,"height":32},{"x":96,"y":0,"fileNum":8116,"id":19018,"width":32,"height":32},{"x":0,"y":32,"fileNum":8116,"id":19019,"width":32,"height":32},{"x":32,"y":32,"fileNum":8116,"id":19020,"width":32,"height":32},{"x":64,"y":32,"fileNum":8116,"id":19021,"width":32,"height":32},{"x":96,"y":32,"fileNum":8116,"id":19022,"width":32,"height":32},{"x":0,"y":64,"fileNum":8116,"id":19023,"width":32,"height":32},{"x":32,"y":64,"fileNum":8116,"id":19024,"width":32,"height":32},{"x":64,"y":64,"fileNum":8116,"id":19025,"width":32,"height":32},{"x":96,"y":64,"fileNum":8116,"id":19026,"width":32,"height":32},{"x":0,"y":96,"fileNum":8116,"id":19027,"width":32,"height":32},{"x":32,"y":96,"fileNum":8116,"id":19028,"width":32,"height":32},{"x":64,"y":96,"fileNum":8116,"id":19029,"width":32,"height":32},{"x":96,"y":96,"fileNum":8116,"id":19030,"width":32,"height":32},{"x":0,"y":0,"fileNum":8117,"id":19031,"width":32,"height":32},{"x":32,"y":0,"fileNum":8117,"id":19032,"width":32,"height":32},{"x":64,"y":0,"fileNum":8117,"id":19033,"width":32,"height":32},{"x":96,"y":0,"fileNum":8117,"id":19034,"width":32,"height":32},{"x":0,"y":32,"fileNum":8117,"id":19035,"width":32,"height":32},{"x":32,"y":32,"fileNum":8117,"id":19036,"width":32,"height":32},{"x":64,"y":32,"fileNum":8117,"id":19037,"width":32,"height":32},{"x":96,"y":32,"fileNum":8117,"id":19038,"width":32,"height":32},{"x":0,"y":64,"fileNum":8117,"id":19039,"width":32,"height":32},{"x":32,"y":64,"fileNum":8117,"id":19040,"width":32,"height":32},{"x":64,"y":64,"fileNum":8117,"id":19041,"width":32,"height":32},{"x":96,"y":64,"fileNum":8117,"id":19042,"width":32,"height":32},{"x":0,"y":96,"fileNum":8117,"id":19043,"width":32,"height":32},{"x":32,"y":96,"fileNum":8117,"id":19044,"width":32,"height":32},{"x":64,"y":96,"fileNum":8117,"id":19045,"width":32,"height":32},{"x":96,"y":96,"fileNum":8117,"id":19046,"width":32,"height":32},{"x":0,"y":0,"fileNum":8118,"id":19047,"width":32,"height":32},{"x":32,"y":0,"fileNum":8118,"id":19048,"width":32,"height":32},{"x":64,"y":0,"fileNum":8118,"id":19049,"width":32,"height":32},{"x":96,"y":0,"fileNum":8118,"id":19050,"width":32,"height":32},{"x":0,"y":32,"fileNum":8118,"id":19051,"width":32,"height":32},{"x":32,"y":32,"fileNum":8118,"id":19052,"width":32,"height":32},{"x":64,"y":32,"fileNum":8118,"id":19053,"width":32,"height":32},{"x":96,"y":32,"fileNum":8118,"id":19054,"width":32,"height":32},{"x":0,"y":64,"fileNum":8118,"id":19055,"width":32,"height":32},{"x":32,"y":64,"fileNum":8118,"id":19056,"width":32,"height":32},{"x":64,"y":64,"fileNum":8118,"id":19057,"width":32,"height":32},{"x":96,"y":64,"fileNum":8118,"id":19058,"width":32,"height":32},{"x":0,"y":96,"fileNum":8118,"id":19059,"width":32,"height":32},{"x":32,"y":96,"fileNum":8118,"id":19060,"width":32,"height":32},{"x":64,"y":96,"fileNum":8118,"id":19061,"width":32,"height":32},{"x":96,"y":96,"fileNum":8118,"id":19062,"width":32,"height":32},{"x":0,"y":0,"fileNum":8119,"id":19063,"width":32,"height":32},{"x":32,"y":0,"fileNum":8119,"id":19064,"width":32,"height":32},{"x":64,"y":0,"fileNum":8119,"id":19065,"width":32,"height":32},{"x":96,"y":0,"fileNum":8119,"id":19066,"width":32,"height":32},{"x":0,"y":32,"fileNum":8119,"id":19067,"width":32,"height":32},{"x":32,"y":32,"fileNum":8119,"id":19068,"width":32,"height":32},{"x":64,"y":32,"fileNum":8119,"id":19069,"width":32,"height":32},{"x":96,"y":32,"fileNum":8119,"id":19070,"width":32,"height":32},{"x":0,"y":64,"fileNum":8119,"id":19071,"width":32,"height":32},{"x":32,"y":64,"fileNum":8119,"id":19072,"width":32,"height":32},{"x":64,"y":64,"fileNum":8119,"id":19073,"width":32,"height":32},{"x":96,"y":64,"fileNum":8119,"id":19074,"width":32,"height":32},{"x":0,"y":96,"fileNum":8119,"id":19075,"width":32,"height":32},{"x":32,"y":96,"fileNum":8119,"id":19076,"width":32,"height":32},{"x":64,"y":96,"fileNum":8119,"id":19077,"width":32,"height":32},{"x":96,"y":96,"fileNum":8119,"id":19078,"width":32,"height":32},{"x":0,"y":0,"fileNum":8120,"id":19079,"width":32,"height":32},{"x":32,"y":0,"fileNum":8120,"id":19080,"width":32,"height":32},{"x":64,"y":0,"fileNum":8120,"id":19081,"width":32,"height":32},{"x":96,"y":0,"fileNum":8120,"id":19082,"width":32,"height":32},{"x":0,"y":32,"fileNum":8120,"id":19083,"width":32,"height":32},{"x":32,"y":32,"fileNum":8120,"id":19084,"width":32,"height":32},{"x":64,"y":32,"fileNum":8120,"id":19085,"width":32,"height":32},{"x":96,"y":32,"fileNum":8120,"id":19086,"width":32,"height":32},{"x":0,"y":64,"fileNum":8120,"id":19087,"width":32,"height":32},{"x":32,"y":64,"fileNum":8120,"id":19088,"width":32,"height":32},{"x":64,"y":64,"fileNum":8120,"id":19089,"width":32,"height":32},{"x":96,"y":64,"fileNum":8120,"id":19090,"width":32,"height":32},{"x":0,"y":96,"fileNum":8120,"id":19091,"width":32,"height":32},{"x":32,"y":96,"fileNum":8120,"id":19092,"width":32,"height":32},{"x":64,"y":96,"fileNum":8120,"id":19093,"width":32,"height":32},{"x":96,"y":96,"fileNum":8120,"id":19094,"width":32,"height":32},{"x":0,"y":0,"fileNum":8121,"id":19095,"width":32,"height":32},{"x":32,"y":0,"fileNum":8121,"id":19096,"width":32,"height":32},{"x":64,"y":0,"fileNum":8121,"id":19097,"width":32,"height":32},{"x":96,"y":0,"fileNum":8121,"id":19098,"width":32,"height":32},{"x":0,"y":32,"fileNum":8121,"id":19099,"width":32,"height":32},{"x":32,"y":32,"fileNum":8121,"id":19100,"width":32,"height":32},{"x":64,"y":32,"fileNum":8121,"id":19101,"width":32,"height":32},{"x":96,"y":32,"fileNum":8121,"id":19102,"width":32,"height":32},{"x":0,"y":64,"fileNum":8121,"id":19103,"width":32,"height":32},{"x":32,"y":64,"fileNum":8121,"id":19104,"width":32,"height":32},{"x":64,"y":64,"fileNum":8121,"id":19105,"width":32,"height":32},{"x":96,"y":64,"fileNum":8121,"id":19106,"width":32,"height":32},{"x":0,"y":96,"fileNum":8121,"id":19107,"width":32,"height":32},{"x":32,"y":96,"fileNum":8121,"id":19108,"width":32,"height":32},{"x":64,"y":96,"fileNum":8121,"id":19109,"width":32,"height":32},{"x":96,"y":96,"fileNum":8121,"id":19110,"width":32,"height":32},{"x":0,"y":0,"fileNum":8122,"id":19111,"width":32,"height":32},{"x":32,"y":0,"fileNum":8122,"id":19112,"width":32,"height":32},{"x":64,"y":0,"fileNum":8122,"id":19113,"width":32,"height":32},{"x":96,"y":0,"fileNum":8122,"id":19114,"width":32,"height":32},{"x":0,"y":32,"fileNum":8122,"id":19115,"width":32,"height":32},{"x":32,"y":32,"fileNum":8122,"id":19116,"width":32,"height":32},{"x":64,"y":32,"fileNum":8122,"id":19117,"width":32,"height":32},{"x":96,"y":32,"fileNum":8122,"id":19118,"width":32,"height":32},{"x":0,"y":64,"fileNum":8122,"id":19119,"width":32,"height":32},{"x":32,"y":64,"fileNum":8122,"id":19120,"width":32,"height":32},{"x":64,"y":64,"fileNum":8122,"id":19121,"width":32,"height":32},{"x":96,"y":64,"fileNum":8122,"id":19122,"width":32,"height":32},{"x":0,"y":96,"fileNum":8122,"id":19123,"width":32,"height":32},{"x":32,"y":96,"fileNum":8122,"id":19124,"width":32,"height":32},{"x":64,"y":96,"fileNum":8122,"id":19125,"width":32,"height":32},{"x":96,"y":96,"fileNum":8122,"id":19126,"width":32,"height":32},{"x":0,"y":0,"fileNum":8123,"id":19127,"width":32,"height":32},{"x":32,"y":0,"fileNum":8123,"id":19128,"width":32,"height":32},{"x":64,"y":0,"fileNum":8123,"id":19129,"width":32,"height":32},{"x":96,"y":0,"fileNum":8123,"id":19130,"width":32,"height":32},{"x":0,"y":32,"fileNum":8123,"id":19131,"width":32,"height":32},{"x":32,"y":32,"fileNum":8123,"id":19132,"width":32,"height":32},{"x":64,"y":32,"fileNum":8123,"id":19133,"width":32,"height":32},{"x":96,"y":32,"fileNum":8123,"id":19134,"width":32,"height":32},{"x":0,"y":64,"fileNum":8123,"id":19135,"width":32,"height":32},{"x":32,"y":64,"fileNum":8123,"id":19136,"width":32,"height":32},{"x":64,"y":64,"fileNum":8123,"id":19137,"width":32,"height":32},{"x":96,"y":64,"fileNum":8123,"id":19138,"width":32,"height":32},{"x":0,"y":96,"fileNum":8123,"id":19139,"width":32,"height":32},{"x":32,"y":96,"fileNum":8123,"id":19140,"width":32,"height":32},{"x":64,"y":96,"fileNum":8123,"id":19141,"width":32,"height":32},{"x":96,"y":96,"fileNum":8123,"id":19142,"width":32,"height":32},{"x":0,"y":0,"fileNum":8124,"id":19143,"width":32,"height":32},{"x":32,"y":0,"fileNum":8124,"id":19144,"width":32,"height":32},{"x":64,"y":0,"fileNum":8124,"id":19145,"width":32,"height":32},{"x":96,"y":0,"fileNum":8124,"id":19146,"width":32,"height":32},{"x":0,"y":32,"fileNum":8124,"id":19147,"width":32,"height":32},{"x":32,"y":32,"fileNum":8124,"id":19148,"width":32,"height":32},{"x":64,"y":32,"fileNum":8124,"id":19149,"width":32,"height":32},{"x":96,"y":32,"fileNum":8124,"id":19150,"width":32,"height":32},{"x":0,"y":64,"fileNum":8124,"id":19151,"width":32,"height":32},{"x":32,"y":64,"fileNum":8124,"id":19152,"width":32,"height":32},{"x":64,"y":64,"fileNum":8124,"id":19153,"width":32,"height":32},{"x":96,"y":64,"fileNum":8124,"id":19154,"width":32,"height":32},{"x":0,"y":96,"fileNum":8124,"id":19155,"width":32,"height":32},{"x":32,"y":96,"fileNum":8124,"id":19156,"width":32,"height":32},{"x":64,"y":96,"fileNum":8124,"id":19157,"width":32,"height":32},{"x":96,"y":96,"fileNum":8124,"id":19158,"width":32,"height":32},{"x":0,"y":0,"fileNum":8125,"id":19159,"width":32,"height":32},{"x":32,"y":0,"fileNum":8125,"id":19160,"width":32,"height":32},{"x":64,"y":0,"fileNum":8125,"id":19161,"width":32,"height":32},{"x":96,"y":0,"fileNum":8125,"id":19162,"width":32,"height":32},{"x":0,"y":32,"fileNum":8125,"id":19163,"width":32,"height":32},{"x":32,"y":32,"fileNum":8125,"id":19164,"width":32,"height":32},{"x":64,"y":32,"fileNum":8125,"id":19165,"width":32,"height":32},{"x":96,"y":32,"fileNum":8125,"id":19166,"width":32,"height":32},{"x":0,"y":64,"fileNum":8125,"id":19167,"width":32,"height":32},{"x":32,"y":64,"fileNum":8125,"id":19168,"width":32,"height":32},{"x":64,"y":64,"fileNum":8125,"id":19169,"width":32,"height":32},{"x":96,"y":64,"fileNum":8125,"id":19170,"width":32,"height":32},{"x":0,"y":96,"fileNum":8125,"id":19171,"width":32,"height":32},{"x":32,"y":96,"fileNum":8125,"id":19172,"width":32,"height":32},{"x":64,"y":96,"fileNum":8125,"id":19173,"width":32,"height":32},{"x":96,"y":96,"fileNum":8125,"id":19174,"width":32,"height":32},{"x":0,"y":0,"fileNum":8126,"id":19175,"width":32,"height":32},{"x":32,"y":0,"fileNum":8126,"id":19176,"width":32,"height":32},{"x":64,"y":0,"fileNum":8126,"id":19177,"width":32,"height":32},{"x":96,"y":0,"fileNum":8126,"id":19178,"width":32,"height":32},{"x":0,"y":32,"fileNum":8126,"id":19179,"width":32,"height":32},{"x":32,"y":32,"fileNum":8126,"id":19180,"width":32,"height":32},{"x":64,"y":32,"fileNum":8126,"id":19181,"width":32,"height":32},{"x":96,"y":32,"fileNum":8126,"id":19182,"width":32,"height":32},{"x":0,"y":64,"fileNum":8126,"id":19183,"width":32,"height":32},{"x":32,"y":64,"fileNum":8126,"id":19184,"width":32,"height":32},{"x":64,"y":64,"fileNum":8126,"id":19185,"width":32,"height":32},{"x":96,"y":64,"fileNum":8126,"id":19186,"width":32,"height":32},{"x":0,"y":96,"fileNum":8126,"id":19187,"width":32,"height":32},{"x":32,"y":96,"fileNum":8126,"id":19188,"width":32,"height":32},{"x":64,"y":96,"fileNum":8126,"id":19189,"width":32,"height":32},{"x":96,"y":96,"fileNum":8126,"id":19190,"width":32,"height":32},{"x":0,"y":0,"fileNum":8127,"id":19191,"width":32,"height":32},{"x":32,"y":0,"fileNum":8127,"id":19192,"width":32,"height":32},{"x":64,"y":0,"fileNum":8127,"id":19193,"width":32,"height":32},{"x":96,"y":0,"fileNum":8127,"id":19194,"width":32,"height":32},{"x":0,"y":32,"fileNum":8127,"id":19195,"width":32,"height":32},{"x":32,"y":32,"fileNum":8127,"id":19196,"width":32,"height":32},{"x":64,"y":32,"fileNum":8127,"id":19197,"width":32,"height":32},{"x":96,"y":32,"fileNum":8127,"id":19198,"width":32,"height":32},{"x":0,"y":64,"fileNum":8127,"id":19199,"width":32,"height":32},{"x":32,"y":64,"fileNum":8127,"id":19200,"width":32,"height":32},{"x":64,"y":64,"fileNum":8127,"id":19201,"width":32,"height":32},{"x":96,"y":64,"fileNum":8127,"id":19202,"width":32,"height":32},{"x":0,"y":96,"fileNum":8127,"id":19203,"width":32,"height":32},{"x":32,"y":96,"fileNum":8127,"id":19204,"width":32,"height":32},{"x":64,"y":96,"fileNum":8127,"id":19205,"width":32,"height":32},{"x":96,"y":96,"fileNum":8127,"id":19206,"width":32,"height":32},{"x":0,"y":0,"fileNum":8128,"id":19207,"width":32,"height":32},{"x":32,"y":0,"fileNum":8128,"id":19208,"width":32,"height":32},{"x":64,"y":0,"fileNum":8128,"id":19209,"width":32,"height":32},{"x":96,"y":0,"fileNum":8128,"id":19210,"width":32,"height":32},{"x":0,"y":32,"fileNum":8128,"id":19211,"width":32,"height":32},{"x":32,"y":32,"fileNum":8128,"id":19212,"width":32,"height":32},{"x":64,"y":32,"fileNum":8128,"id":19213,"width":32,"height":32},{"x":96,"y":32,"fileNum":8128,"id":19214,"width":32,"height":32},{"x":0,"y":64,"fileNum":8128,"id":19215,"width":32,"height":32},{"x":32,"y":64,"fileNum":8128,"id":19216,"width":32,"height":32},{"x":64,"y":64,"fileNum":8128,"id":19217,"width":32,"height":32},{"x":96,"y":64,"fileNum":8128,"id":19218,"width":32,"height":32},{"x":0,"y":96,"fileNum":8128,"id":19219,"width":32,"height":32},{"x":32,"y":96,"fileNum":8128,"id":19220,"width":32,"height":32},{"x":64,"y":96,"fileNum":8128,"id":19221,"width":32,"height":32},{"x":96,"y":96,"fileNum":8128,"id":19222,"width":32,"height":32},{"x":0,"y":0,"fileNum":8129,"id":19223,"width":32,"height":32},{"x":32,"y":0,"fileNum":8129,"id":19224,"width":32,"height":32},{"x":64,"y":0,"fileNum":8129,"id":19225,"width":32,"height":32},{"x":96,"y":0,"fileNum":8129,"id":19226,"width":32,"height":32},{"x":0,"y":32,"fileNum":8129,"id":19227,"width":32,"height":32},{"x":32,"y":32,"fileNum":8129,"id":19228,"width":32,"height":32},{"x":64,"y":32,"fileNum":8129,"id":19229,"width":32,"height":32},{"x":96,"y":32,"fileNum":8129,"id":19230,"width":32,"height":32},{"x":0,"y":64,"fileNum":8129,"id":19231,"width":32,"height":32},{"x":32,"y":64,"fileNum":8129,"id":19232,"width":32,"height":32},{"x":64,"y":64,"fileNum":8129,"id":19233,"width":32,"height":32},{"x":96,"y":64,"fileNum":8129,"id":19234,"width":32,"height":32},{"x":0,"y":96,"fileNum":8129,"id":19235,"width":32,"height":32},{"x":32,"y":96,"fileNum":8129,"id":19236,"width":32,"height":32},{"x":64,"y":96,"fileNum":8129,"id":19237,"width":32,"height":32},{"x":96,"y":96,"fileNum":8129,"id":19238,"width":32,"height":32},{"x":0,"y":0,"fileNum":8130,"id":19239,"width":32,"height":32},{"x":32,"y":0,"fileNum":8130,"id":19240,"width":32,"height":32},{"x":64,"y":0,"fileNum":8130,"id":19241,"width":32,"height":32},{"x":96,"y":0,"fileNum":8130,"id":19242,"width":32,"height":32},{"x":0,"y":32,"fileNum":8130,"id":19243,"width":32,"height":32},{"x":32,"y":32,"fileNum":8130,"id":19244,"width":32,"height":32},{"x":64,"y":32,"fileNum":8130,"id":19245,"width":32,"height":32},{"x":96,"y":32,"fileNum":8130,"id":19246,"width":32,"height":32},{"x":0,"y":64,"fileNum":8130,"id":19247,"width":32,"height":32},{"x":32,"y":64,"fileNum":8130,"id":19248,"width":32,"height":32},{"x":64,"y":64,"fileNum":8130,"id":19249,"width":32,"height":32},{"x":96,"y":64,"fileNum":8130,"id":19250,"width":32,"height":32},{"x":0,"y":96,"fileNum":8130,"id":19251,"width":32,"height":32},{"x":32,"y":96,"fileNum":8130,"id":19252,"width":32,"height":32},{"x":64,"y":96,"fileNum":8130,"id":19253,"width":32,"height":32},{"x":96,"y":96,"fileNum":8130,"id":19254,"width":32,"height":32},{"x":0,"y":0,"fileNum":8131,"id":19255,"width":32,"height":32},{"x":32,"y":0,"fileNum":8131,"id":19256,"width":32,"height":32},{"x":64,"y":0,"fileNum":8131,"id":19257,"width":32,"height":32},{"x":96,"y":0,"fileNum":8131,"id":19258,"width":32,"height":32},{"x":0,"y":32,"fileNum":8131,"id":19259,"width":32,"height":32},{"x":32,"y":32,"fileNum":8131,"id":19260,"width":32,"height":32},{"x":64,"y":32,"fileNum":8131,"id":19261,"width":32,"height":32},{"x":96,"y":32,"fileNum":8131,"id":19262,"width":32,"height":32},{"x":0,"y":64,"fileNum":8131,"id":19263,"width":32,"height":32},{"x":32,"y":64,"fileNum":8131,"id":19264,"width":32,"height":32},{"x":64,"y":64,"fileNum":8131,"id":19265,"width":32,"height":32},{"x":96,"y":64,"fileNum":8131,"id":19266,"width":32,"height":32},{"x":0,"y":96,"fileNum":8131,"id":19267,"width":32,"height":32},{"x":32,"y":96,"fileNum":8131,"id":19268,"width":32,"height":32},{"x":64,"y":96,"fileNum":8131,"id":19269,"width":32,"height":32},{"x":96,"y":96,"fileNum":8131,"id":19270,"width":32,"height":32},{"x":0,"y":0,"fileNum":8132,"id":19271,"width":32,"height":32},{"x":32,"y":0,"fileNum":8132,"id":19272,"width":32,"height":32},{"x":64,"y":0,"fileNum":8132,"id":19273,"width":32,"height":32},{"x":96,"y":0,"fileNum":8132,"id":19274,"width":32,"height":32},{"x":0,"y":32,"fileNum":8132,"id":19275,"width":32,"height":32},{"x":32,"y":32,"fileNum":8132,"id":19276,"width":32,"height":32},{"x":64,"y":32,"fileNum":8132,"id":19277,"width":32,"height":32},{"x":96,"y":32,"fileNum":8132,"id":19278,"width":32,"height":32},{"x":0,"y":64,"fileNum":8132,"id":19279,"width":32,"height":32},{"x":32,"y":64,"fileNum":8132,"id":19280,"width":32,"height":32},{"x":64,"y":64,"fileNum":8132,"id":19281,"width":32,"height":32},{"x":96,"y":64,"fileNum":8132,"id":19282,"width":32,"height":32},{"x":0,"y":96,"fileNum":8132,"id":19283,"width":32,"height":32},{"x":32,"y":96,"fileNum":8132,"id":19284,"width":32,"height":32},{"x":64,"y":96,"fileNum":8132,"id":19285,"width":32,"height":32},{"x":96,"y":96,"fileNum":8132,"id":19286,"width":32,"height":32},{"x":0,"y":0,"fileNum":8133,"id":19287,"width":32,"height":32},{"x":32,"y":0,"fileNum":8133,"id":19288,"width":32,"height":32},{"x":64,"y":0,"fileNum":8133,"id":19289,"width":32,"height":32},{"x":96,"y":0,"fileNum":8133,"id":19290,"width":32,"height":32},{"x":0,"y":32,"fileNum":8133,"id":19291,"width":32,"height":32},{"x":32,"y":32,"fileNum":8133,"id":19292,"width":32,"height":32},{"x":64,"y":32,"fileNum":8133,"id":19293,"width":32,"height":32},{"x":96,"y":32,"fileNum":8133,"id":19294,"width":32,"height":32},{"x":0,"y":64,"fileNum":8133,"id":19295,"width":32,"height":32},{"x":32,"y":64,"fileNum":8133,"id":19296,"width":32,"height":32},{"x":64,"y":64,"fileNum":8133,"id":19297,"width":32,"height":32},{"x":96,"y":64,"fileNum":8133,"id":19298,"width":32,"height":32},{"x":0,"y":96,"fileNum":8133,"id":19299,"width":32,"height":32},{"x":32,"y":96,"fileNum":8133,"id":19300,"width":32,"height":32},{"x":64,"y":96,"fileNum":8133,"id":19301,"width":32,"height":32},{"x":96,"y":96,"fileNum":8133,"id":19302,"width":32,"height":32},{"x":0,"y":0,"fileNum":8134,"id":19303,"width":32,"height":32},{"x":32,"y":0,"fileNum":8134,"id":19304,"width":32,"height":32},{"x":64,"y":0,"fileNum":8134,"id":19305,"width":32,"height":32},{"x":96,"y":0,"fileNum":8134,"id":19306,"width":32,"height":32},{"x":0,"y":32,"fileNum":8134,"id":19307,"width":32,"height":32},{"x":32,"y":32,"fileNum":8134,"id":19308,"width":32,"height":32},{"x":64,"y":32,"fileNum":8134,"id":19309,"width":32,"height":32},{"x":96,"y":32,"fileNum":8134,"id":19310,"width":32,"height":32},{"x":0,"y":64,"fileNum":8134,"id":19311,"width":32,"height":32},{"x":32,"y":64,"fileNum":8134,"id":19312,"width":32,"height":32},{"x":64,"y":64,"fileNum":8134,"id":19313,"width":32,"height":32},{"x":96,"y":64,"fileNum":8134,"id":19314,"width":32,"height":32},{"x":0,"y":96,"fileNum":8134,"id":19315,"width":32,"height":32},{"x":32,"y":96,"fileNum":8134,"id":19316,"width":32,"height":32},{"x":64,"y":96,"fileNum":8134,"id":19317,"width":32,"height":32},{"x":96,"y":96,"fileNum":8134,"id":19318,"width":32,"height":32},{"x":0,"y":0,"fileNum":8135,"id":19319,"width":32,"height":32},{"x":32,"y":0,"fileNum":8135,"id":19320,"width":32,"height":32},{"x":64,"y":0,"fileNum":8135,"id":19321,"width":32,"height":32},{"x":96,"y":0,"fileNum":8135,"id":19322,"width":32,"height":32},{"x":0,"y":32,"fileNum":8135,"id":19323,"width":32,"height":32},{"x":32,"y":32,"fileNum":8135,"id":19324,"width":32,"height":32},{"x":64,"y":32,"fileNum":8135,"id":19325,"width":32,"height":32},{"x":96,"y":32,"fileNum":8135,"id":19326,"width":32,"height":32},{"x":0,"y":64,"fileNum":8135,"id":19327,"width":32,"height":32},{"x":32,"y":64,"fileNum":8135,"id":19328,"width":32,"height":32},{"x":64,"y":64,"fileNum":8135,"id":19329,"width":32,"height":32},{"x":96,"y":64,"fileNum":8135,"id":19330,"width":32,"height":32},{"x":0,"y":96,"fileNum":8135,"id":19331,"width":32,"height":32},{"x":32,"y":96,"fileNum":8135,"id":19332,"width":32,"height":32},{"x":64,"y":96,"fileNum":8135,"id":19333,"width":32,"height":32},{"x":96,"y":96,"fileNum":8135,"id":19334,"width":32,"height":32},{"x":0,"y":0,"fileNum":8136,"id":19335,"width":32,"height":32},{"x":32,"y":0,"fileNum":8136,"id":19336,"width":32,"height":32},{"x":64,"y":0,"fileNum":8136,"id":19337,"width":32,"height":32},{"x":96,"y":0,"fileNum":8136,"id":19338,"width":32,"height":32},{"x":0,"y":32,"fileNum":8136,"id":19339,"width":32,"height":32},{"x":32,"y":32,"fileNum":8136,"id":19340,"width":32,"height":32},{"x":64,"y":32,"fileNum":8136,"id":19341,"width":32,"height":32},{"x":96,"y":32,"fileNum":8136,"id":19342,"width":32,"height":32},{"x":0,"y":64,"fileNum":8136,"id":19343,"width":32,"height":32},{"x":32,"y":64,"fileNum":8136,"id":19344,"width":32,"height":32},{"x":64,"y":64,"fileNum":8136,"id":19345,"width":32,"height":32},{"x":96,"y":64,"fileNum":8136,"id":19346,"width":32,"height":32},{"x":0,"y":96,"fileNum":8136,"id":19347,"width":32,"height":32},{"x":32,"y":96,"fileNum":8136,"id":19348,"width":32,"height":32},{"x":64,"y":96,"fileNum":8136,"id":19349,"width":32,"height":32},{"x":96,"y":96,"fileNum":8136,"id":19350,"width":32,"height":32},{"x":0,"y":0,"fileNum":8137,"id":19351,"width":32,"height":32},{"x":32,"y":0,"fileNum":8137,"id":19352,"width":32,"height":32},{"x":64,"y":0,"fileNum":8137,"id":19353,"width":32,"height":32},{"x":96,"y":0,"fileNum":8137,"id":19354,"width":32,"height":32},{"x":0,"y":32,"fileNum":8137,"id":19355,"width":32,"height":32},{"x":32,"y":32,"fileNum":8137,"id":19356,"width":32,"height":32},{"x":64,"y":32,"fileNum":8137,"id":19357,"width":32,"height":32},{"x":96,"y":32,"fileNum":8137,"id":19358,"width":32,"height":32},{"x":0,"y":64,"fileNum":8137,"id":19359,"width":32,"height":32},{"x":32,"y":64,"fileNum":8137,"id":19360,"width":32,"height":32},{"x":64,"y":64,"fileNum":8137,"id":19361,"width":32,"height":32},{"x":96,"y":64,"fileNum":8137,"id":19362,"width":32,"height":32},{"x":0,"y":96,"fileNum":8137,"id":19363,"width":32,"height":32},{"x":32,"y":96,"fileNum":8137,"id":19364,"width":32,"height":32},{"x":64,"y":96,"fileNum":8137,"id":19365,"width":32,"height":32},{"x":96,"y":96,"fileNum":8137,"id":19366,"width":32,"height":32},{"x":0,"y":0,"fileNum":8138,"id":19367,"width":32,"height":32},{"x":32,"y":0,"fileNum":8138,"id":19368,"width":32,"height":32},{"x":64,"y":0,"fileNum":8138,"id":19369,"width":32,"height":32},{"x":96,"y":0,"fileNum":8138,"id":19370,"width":32,"height":32},{"x":0,"y":32,"fileNum":8138,"id":19371,"width":32,"height":32},{"x":32,"y":32,"fileNum":8138,"id":19372,"width":32,"height":32},{"x":64,"y":32,"fileNum":8138,"id":19373,"width":32,"height":32},{"x":96,"y":32,"fileNum":8138,"id":19374,"width":32,"height":32},{"x":0,"y":64,"fileNum":8138,"id":19375,"width":32,"height":32},{"x":32,"y":64,"fileNum":8138,"id":19376,"width":32,"height":32},{"x":64,"y":64,"fileNum":8138,"id":19377,"width":32,"height":32},{"x":96,"y":64,"fileNum":8138,"id":19378,"width":32,"height":32},{"x":0,"y":96,"fileNum":8138,"id":19379,"width":32,"height":32},{"x":32,"y":96,"fileNum":8138,"id":19380,"width":32,"height":32},{"x":64,"y":96,"fileNum":8138,"id":19381,"width":32,"height":32},{"x":96,"y":96,"fileNum":8138,"id":19382,"width":32,"height":32},{"x":0,"y":0,"fileNum":8139,"id":19383,"width":32,"height":32},{"x":32,"y":0,"fileNum":8139,"id":19384,"width":32,"height":32},{"x":64,"y":0,"fileNum":8139,"id":19385,"width":32,"height":32},{"x":96,"y":0,"fileNum":8139,"id":19386,"width":32,"height":32},{"x":0,"y":32,"fileNum":8139,"id":19387,"width":32,"height":32},{"x":32,"y":32,"fileNum":8139,"id":19388,"width":32,"height":32},{"x":64,"y":32,"fileNum":8139,"id":19389,"width":32,"height":32},{"x":96,"y":32,"fileNum":8139,"id":19390,"width":32,"height":32},{"x":0,"y":64,"fileNum":8139,"id":19391,"width":32,"height":32},{"x":32,"y":64,"fileNum":8139,"id":19392,"width":32,"height":32},{"x":64,"y":64,"fileNum":8139,"id":19393,"width":32,"height":32},{"x":96,"y":64,"fileNum":8139,"id":19394,"width":32,"height":32},{"x":0,"y":96,"fileNum":8139,"id":19395,"width":32,"height":32},{"x":32,"y":96,"fileNum":8139,"id":19396,"width":32,"height":32},{"x":64,"y":96,"fileNum":8139,"id":19397,"width":32,"height":32},{"x":96,"y":96,"fileNum":8139,"id":19398,"width":32,"height":32},{"x":0,"y":0,"fileNum":8140,"id":19399,"width":32,"height":32},{"x":32,"y":0,"fileNum":8140,"id":19400,"width":32,"height":32},{"x":64,"y":0,"fileNum":8140,"id":19401,"width":32,"height":32},{"x":96,"y":0,"fileNum":8140,"id":19402,"width":32,"height":32},{"x":0,"y":32,"fileNum":8140,"id":19403,"width":32,"height":32},{"x":32,"y":32,"fileNum":8140,"id":19404,"width":32,"height":32},{"x":64,"y":32,"fileNum":8140,"id":19405,"width":32,"height":32},{"x":96,"y":32,"fileNum":8140,"id":19406,"width":32,"height":32},{"x":0,"y":64,"fileNum":8140,"id":19407,"width":32,"height":32},{"x":32,"y":64,"fileNum":8140,"id":19408,"width":32,"height":32},{"x":64,"y":64,"fileNum":8140,"id":19409,"width":32,"height":32},{"x":96,"y":64,"fileNum":8140,"id":19410,"width":32,"height":32},{"x":0,"y":96,"fileNum":8140,"id":19411,"width":32,"height":32},{"x":32,"y":96,"fileNum":8140,"id":19412,"width":32,"height":32},{"x":64,"y":96,"fileNum":8140,"id":19413,"width":32,"height":32},{"x":96,"y":96,"fileNum":8140,"id":19414,"width":32,"height":32},{"x":0,"y":0,"fileNum":8141,"id":19415,"width":129,"height":230},{"x":0,"y":0,"fileNum":9005,"id":19416,"width":254,"height":274},{"x":0,"y":0,"fileNum":4055,"id":19417,"width":25,"height":45},{"x":25,"y":0,"fileNum":4055,"id":19418,"width":25,"height":45},{"x":50,"y":0,"fileNum":4055,"id":19419,"width":25,"height":45},{"x":75,"y":0,"fileNum":4055,"id":19420,"width":25,"height":45},{"x":100,"y":0,"fileNum":4055,"id":19421,"width":25,"height":45},{"x":125,"y":0,"fileNum":4055,"id":19422,"width":25,"height":45},{"x":0,"y":45,"fileNum":4055,"id":19423,"width":25,"height":45},{"x":25,"y":45,"fileNum":4055,"id":19424,"width":25,"height":45},{"x":50,"y":45,"fileNum":4055,"id":19425,"width":25,"height":45},{"x":75,"y":45,"fileNum":4055,"id":19426,"width":25,"height":45},{"x":100,"y":45,"fileNum":4055,"id":19427,"width":25,"height":45},{"x":125,"y":45,"fileNum":4055,"id":19428,"width":25,"height":45},{"x":0,"y":90,"fileNum":4055,"id":19429,"width":25,"height":45},{"x":25,"y":90,"fileNum":4055,"id":19430,"width":25,"height":45},{"x":50,"y":90,"fileNum":4055,"id":19431,"width":25,"height":45},{"x":75,"y":90,"fileNum":4055,"id":19432,"width":25,"height":45},{"x":100,"y":90,"fileNum":4055,"id":19433,"width":25,"height":45},{"x":0,"y":135,"fileNum":4055,"id":19434,"width":25,"height":45},{"x":25,"y":135,"fileNum":4055,"id":19435,"width":25,"height":45},{"x":50,"y":135,"fileNum":4055,"id":19436,"width":25,"height":45},{"x":75,"y":135,"fileNum":4055,"id":19437,"width":25,"height":45},{"x":100,"y":135,"fileNum":4055,"id":19438,"width":25,"height":45},{"x":0,"y":0,"fileNum":2041,"id":19443,"width":17,"height":50},{"x":17,"y":0,"fileNum":2041,"id":19444,"width":17,"height":50},{"x":34,"y":0,"fileNum":2041,"id":19445,"width":17,"height":50},{"x":51,"y":0,"fileNum":2041,"id":19446,"width":17,"height":50},{"x":0,"y":0,"fileNum":16020,"id":19447,"width":25,"height":45},{"x":25,"y":0,"fileNum":16020,"id":19448,"width":25,"height":45},{"x":50,"y":0,"fileNum":16020,"id":19449,"width":25,"height":45},{"x":75,"y":0,"fileNum":16020,"id":19450,"width":25,"height":45},{"x":100,"y":0,"fileNum":16020,"id":19451,"width":25,"height":45},{"x":125,"y":0,"fileNum":16020,"id":19452,"width":25,"height":45},{"x":0,"y":45,"fileNum":16020,"id":19453,"width":25,"height":45},{"x":25,"y":45,"fileNum":16020,"id":19454,"width":25,"height":45},{"x":50,"y":45,"fileNum":16020,"id":19455,"width":25,"height":45},{"x":75,"y":45,"fileNum":16020,"id":19456,"width":25,"height":45},{"x":100,"y":45,"fileNum":16020,"id":19457,"width":25,"height":45},{"x":125,"y":45,"fileNum":16020,"id":19458,"width":25,"height":45},{"x":0,"y":90,"fileNum":16020,"id":19459,"width":25,"height":45},{"x":25,"y":90,"fileNum":16020,"id":19460,"width":25,"height":45},{"x":50,"y":90,"fileNum":16020,"id":19461,"width":25,"height":45},{"x":75,"y":90,"fileNum":16020,"id":19462,"width":25,"height":45},{"x":100,"y":90,"fileNum":16020,"id":19463,"width":25,"height":45},{"x":0,"y":135,"fileNum":16020,"id":19464,"width":25,"height":45},{"x":25,"y":135,"fileNum":16020,"id":19465,"width":25,"height":45},{"x":50,"y":135,"fileNum":16020,"id":19466,"width":25,"height":45},{"x":75,"y":135,"fileNum":16020,"id":19467,"width":25,"height":45},{"x":100,"y":135,"fileNum":16020,"id":19468,"width":25,"height":45},{"x":0,"y":0,"fileNum":16034,"id":19473,"width":32,"height":32},{"x":0,"y":0,"fileNum":4056,"id":19474,"width":115,"height":118},{"x":115,"y":0,"fileNum":4056,"id":19475,"width":115,"height":118},{"x":230,"y":0,"fileNum":4056,"id":19476,"width":115,"height":118},{"x":345,"y":0,"fileNum":4056,"id":19477,"width":115,"height":118},{"x":460,"y":0,"fileNum":4056,"id":19478,"width":115,"height":118},{"x":575,"y":0,"fileNum":4056,"id":19479,"width":115,"height":118},{"x":690,"y":0,"fileNum":4056,"id":19480,"width":115,"height":118},{"x":805,"y":0,"fileNum":4056,"id":19481,"width":115,"height":118},{"x":0,"y":118,"fileNum":4056,"id":19482,"width":115,"height":118},{"x":115,"y":118,"fileNum":4056,"id":19483,"width":115,"height":118},{"x":230,"y":118,"fileNum":4056,"id":19484,"width":115,"height":118},{"x":345,"y":118,"fileNum":4056,"id":19485,"width":115,"height":118},{"x":460,"y":118,"fileNum":4056,"id":19486,"width":115,"height":118},{"x":575,"y":118,"fileNum":4056,"id":19487,"width":115,"height":118},{"x":690,"y":118,"fileNum":4056,"id":19488,"width":115,"height":118},{"x":805,"y":118,"fileNum":4056,"id":19489,"width":115,"height":118},{"x":0,"y":236,"fileNum":4056,"id":19490,"width":115,"height":118},{"x":115,"y":236,"fileNum":4056,"id":19491,"width":115,"height":118},{"x":230,"y":236,"fileNum":4056,"id":19492,"width":115,"height":118},{"x":345,"y":236,"fileNum":4056,"id":19493,"width":115,"height":118},{"x":460,"y":236,"fileNum":4056,"id":19494,"width":115,"height":118},{"x":575,"y":236,"fileNum":4056,"id":19495,"width":115,"height":118},{"x":690,"y":236,"fileNum":4056,"id":19496,"width":115,"height":118},{"x":805,"y":236,"fileNum":4056,"id":19497,"width":115,"height":118},{"x":0,"y":354,"fileNum":4056,"id":19498,"width":115,"height":118},{"x":115,"y":354,"fileNum":4056,"id":19499,"width":115,"height":118},{"x":230,"y":354,"fileNum":4056,"id":19500,"width":115,"height":118},{"x":345,"y":354,"fileNum":4056,"id":19501,"width":115,"height":118},{"x":460,"y":354,"fileNum":4056,"id":19502,"width":115,"height":118},{"x":575,"y":354,"fileNum":4056,"id":19503,"width":115,"height":118},{"x":690,"y":354,"fileNum":4056,"id":19504,"width":115,"height":118},{"x":805,"y":354,"fileNum":4056,"id":19505,"width":115,"height":118},{"x":0,"y":0,"fileNum":4057,"id":19510,"width":115,"height":118},{"x":115,"y":0,"fileNum":4057,"id":19511,"width":115,"height":118},{"x":230,"y":0,"fileNum":4057,"id":19512,"width":115,"height":118},{"x":345,"y":0,"fileNum":4057,"id":19513,"width":115,"height":118},{"x":460,"y":0,"fileNum":4057,"id":19514,"width":115,"height":118},{"x":575,"y":0,"fileNum":4057,"id":19515,"width":115,"height":118},{"x":690,"y":0,"fileNum":4057,"id":19516,"width":115,"height":118},{"x":805,"y":0,"fileNum":4057,"id":19517,"width":115,"height":118},{"x":0,"y":118,"fileNum":4057,"id":19518,"width":115,"height":118},{"x":115,"y":118,"fileNum":4057,"id":19519,"width":115,"height":118},{"x":230,"y":118,"fileNum":4057,"id":19520,"width":115,"height":118},{"x":345,"y":118,"fileNum":4057,"id":19521,"width":115,"height":118},{"x":460,"y":118,"fileNum":4057,"id":19522,"width":115,"height":118},{"x":575,"y":118,"fileNum":4057,"id":19523,"width":115,"height":118},{"x":690,"y":118,"fileNum":4057,"id":19524,"width":115,"height":118},{"x":805,"y":118,"fileNum":4057,"id":19525,"width":115,"height":118},{"x":0,"y":236,"fileNum":4057,"id":19526,"width":115,"height":118},{"x":115,"y":236,"fileNum":4057,"id":19527,"width":115,"height":118},{"x":230,"y":236,"fileNum":4057,"id":19528,"width":115,"height":118},{"x":345,"y":236,"fileNum":4057,"id":19529,"width":115,"height":118},{"x":460,"y":236,"fileNum":4057,"id":19530,"width":115,"height":118},{"x":575,"y":236,"fileNum":4057,"id":19531,"width":115,"height":118},{"x":690,"y":236,"fileNum":4057,"id":19532,"width":115,"height":118},{"x":805,"y":236,"fileNum":4057,"id":19533,"width":115,"height":118},{"x":0,"y":354,"fileNum":4057,"id":19534,"width":115,"height":118},{"x":115,"y":354,"fileNum":4057,"id":19535,"width":115,"height":118},{"x":230,"y":354,"fileNum":4057,"id":19536,"width":115,"height":118},{"x":345,"y":354,"fileNum":4057,"id":19537,"width":115,"height":118},{"x":460,"y":354,"fileNum":4057,"id":19538,"width":115,"height":118},{"x":575,"y":354,"fileNum":4057,"id":19539,"width":115,"height":118},{"x":690,"y":354,"fileNum":4057,"id":19540,"width":115,"height":118},{"x":805,"y":354,"fileNum":4057,"id":19541,"width":115,"height":118},{"x":0,"y":0,"fileNum":4058,"id":19546,"width":115,"height":118},{"x":115,"y":0,"fileNum":4058,"id":19547,"width":115,"height":118},{"x":230,"y":0,"fileNum":4058,"id":19548,"width":115,"height":118},{"x":345,"y":0,"fileNum":4058,"id":19549,"width":115,"height":118},{"x":460,"y":0,"fileNum":4058,"id":19550,"width":115,"height":118},{"x":575,"y":0,"fileNum":4058,"id":19551,"width":115,"height":118},{"x":690,"y":0,"fileNum":4058,"id":19552,"width":115,"height":118},{"x":805,"y":0,"fileNum":4058,"id":19553,"width":115,"height":118},{"x":0,"y":118,"fileNum":4058,"id":19554,"width":115,"height":118},{"x":115,"y":118,"fileNum":4058,"id":19555,"width":115,"height":118},{"x":230,"y":118,"fileNum":4058,"id":19556,"width":115,"height":118},{"x":345,"y":118,"fileNum":4058,"id":19557,"width":115,"height":118},{"x":460,"y":118,"fileNum":4058,"id":19558,"width":115,"height":118},{"x":575,"y":118,"fileNum":4058,"id":19559,"width":115,"height":118},{"x":690,"y":118,"fileNum":4058,"id":19560,"width":115,"height":118},{"x":805,"y":118,"fileNum":4058,"id":19561,"width":115,"height":118},{"x":0,"y":236,"fileNum":4058,"id":19562,"width":115,"height":118},{"x":115,"y":236,"fileNum":4058,"id":19563,"width":115,"height":118},{"x":230,"y":236,"fileNum":4058,"id":19564,"width":115,"height":118},{"x":345,"y":236,"fileNum":4058,"id":19565,"width":115,"height":118},{"x":460,"y":236,"fileNum":4058,"id":19566,"width":115,"height":118},{"x":575,"y":236,"fileNum":4058,"id":19567,"width":115,"height":118},{"x":690,"y":236,"fileNum":4058,"id":19568,"width":115,"height":118},{"x":805,"y":236,"fileNum":4058,"id":19569,"width":115,"height":118},{"x":0,"y":354,"fileNum":4058,"id":19570,"width":115,"height":118},{"x":115,"y":354,"fileNum":4058,"id":19571,"width":115,"height":118},{"x":230,"y":354,"fileNum":4058,"id":19572,"width":115,"height":118},{"x":345,"y":354,"fileNum":4058,"id":19573,"width":115,"height":118},{"x":460,"y":354,"fileNum":4058,"id":19574,"width":115,"height":118},{"x":575,"y":354,"fileNum":4058,"id":19575,"width":115,"height":118},{"x":690,"y":354,"fileNum":4058,"id":19576,"width":115,"height":118},{"x":805,"y":354,"fileNum":4058,"id":19577,"width":115,"height":118},{"x":0,"y":0,"fileNum":4059,"id":19582,"width":74,"height":49},{"x":74,"y":0,"fileNum":4059,"id":19583,"width":74,"height":49},{"x":148,"y":0,"fileNum":4059,"id":19584,"width":74,"height":49},{"x":222,"y":0,"fileNum":4059,"id":19585,"width":74,"height":49},{"x":0,"y":49,"fileNum":4059,"id":19586,"width":74,"height":49},{"x":74,"y":49,"fileNum":4059,"id":19587,"width":74,"height":49},{"x":148,"y":49,"fileNum":4059,"id":19588,"width":74,"height":49},{"x":222,"y":49,"fileNum":4059,"id":19589,"width":74,"height":49},{"x":0,"y":98,"fileNum":4059,"id":19590,"width":74,"height":49},{"x":74,"y":98,"fileNum":4059,"id":19591,"width":74,"height":49},{"x":148,"y":98,"fileNum":4059,"id":19592,"width":74,"height":49},{"x":222,"y":98,"fileNum":4059,"id":19593,"width":74,"height":49},{"x":0,"y":147,"fileNum":4059,"id":19594,"width":74,"height":49},{"x":74,"y":147,"fileNum":4059,"id":19595,"width":74,"height":49},{"x":148,"y":147,"fileNum":4059,"id":19596,"width":74,"height":49},{"x":222,"y":147,"fileNum":4059,"id":19597,"width":74,"height":49},{"x":0,"y":0,"fileNum":4060,"id":19602,"width":160,"height":160},{"x":160,"y":0,"fileNum":4060,"id":19603,"width":160,"height":160},{"x":320,"y":0,"fileNum":4060,"id":19604,"width":160,"height":160},{"x":480,"y":0,"fileNum":4060,"id":19605,"width":160,"height":160},{"x":640,"y":0,"fileNum":4060,"id":19606,"width":160,"height":160},{"x":800,"y":0,"fileNum":4060,"id":19607,"width":160,"height":160},{"x":960,"y":0,"fileNum":4060,"id":19608,"width":160,"height":160},{"x":1120,"y":0,"fileNum":4060,"id":19609,"width":160,"height":160},{"x":0,"y":160,"fileNum":4060,"id":19610,"width":160,"height":160},{"x":160,"y":160,"fileNum":4060,"id":19611,"width":160,"height":160},{"x":320,"y":160,"fileNum":4060,"id":19612,"width":160,"height":160},{"x":480,"y":160,"fileNum":4060,"id":19613,"width":160,"height":160},{"x":640,"y":160,"fileNum":4060,"id":19614,"width":160,"height":160},{"x":800,"y":160,"fileNum":4060,"id":19615,"width":160,"height":160},{"x":960,"y":160,"fileNum":4060,"id":19616,"width":160,"height":160},{"x":1120,"y":160,"fileNum":4060,"id":19617,"width":160,"height":160},{"x":0,"y":320,"fileNum":4060,"id":19618,"width":160,"height":160},{"x":160,"y":320,"fileNum":4060,"id":19619,"width":160,"height":160},{"x":320,"y":320,"fileNum":4060,"id":19620,"width":160,"height":160},{"x":480,"y":320,"fileNum":4060,"id":19621,"width":160,"height":160},{"x":640,"y":320,"fileNum":4060,"id":19622,"width":160,"height":160},{"x":800,"y":320,"fileNum":4060,"id":19623,"width":160,"height":160},{"x":0,"y":480,"fileNum":4060,"id":19624,"width":160,"height":160},{"x":160,"y":480,"fileNum":4060,"id":19625,"width":160,"height":160},{"x":320,"y":480,"fileNum":4060,"id":19626,"width":160,"height":160},{"x":480,"y":480,"fileNum":4060,"id":19627,"width":160,"height":160},{"x":640,"y":480,"fileNum":4060,"id":19628,"width":160,"height":160},{"x":800,"y":480,"fileNum":4060,"id":19629,"width":160,"height":160},{"x":0,"y":0,"fileNum":4061,"id":19634,"width":25,"height":60},{"x":25,"y":0,"fileNum":4061,"id":19635,"width":25,"height":60},{"x":50,"y":0,"fileNum":4061,"id":19636,"width":25,"height":60},{"x":75,"y":0,"fileNum":4061,"id":19637,"width":25,"height":60},{"x":100,"y":0,"fileNum":4061,"id":19638,"width":25,"height":60},{"x":125,"y":0,"fileNum":4061,"id":19639,"width":25,"height":60},{"x":0,"y":60,"fileNum":4061,"id":19640,"width":25,"height":60},{"x":25,"y":60,"fileNum":4061,"id":19641,"width":25,"height":60},{"x":50,"y":60,"fileNum":4061,"id":19642,"width":25,"height":60},{"x":75,"y":60,"fileNum":4061,"id":19643,"width":25,"height":60},{"x":100,"y":60,"fileNum":4061,"id":19644,"width":25,"height":60},{"x":125,"y":60,"fileNum":4061,"id":19645,"width":25,"height":60},{"x":0,"y":120,"fileNum":4061,"id":19646,"width":25,"height":60},{"x":25,"y":120,"fileNum":4061,"id":19647,"width":25,"height":60},{"x":50,"y":120,"fileNum":4061,"id":19648,"width":25,"height":60},{"x":75,"y":120,"fileNum":4061,"id":19649,"width":25,"height":60},{"x":100,"y":120,"fileNum":4061,"id":19650,"width":25,"height":60},{"x":0,"y":180,"fileNum":4061,"id":19651,"width":25,"height":58},{"x":25,"y":180,"fileNum":4061,"id":19652,"width":25,"height":58},{"x":50,"y":180,"fileNum":4061,"id":19653,"width":25,"height":58},{"x":75,"y":180,"fileNum":4061,"id":19654,"width":25,"height":58},{"x":100,"y":180,"fileNum":4061,"id":19655,"width":25,"height":58},{"x":0,"y":0,"fileNum":4062,"id":19660,"width":288,"height":300},{"x":288,"y":0,"fileNum":4062,"id":19661,"width":288,"height":300},{"x":576,"y":0,"fileNum":4062,"id":19662,"width":288,"height":300},{"x":0,"y":300,"fileNum":4062,"id":19663,"width":288,"height":300},{"x":288,"y":300,"fileNum":4062,"id":19664,"width":288,"height":300},{"x":576,"y":300,"fileNum":4062,"id":19665,"width":288,"height":300},{"x":0,"y":0,"fileNum":4063,"id":19666,"width":288,"height":300},{"x":288,"y":0,"fileNum":4063,"id":19667,"width":288,"height":300},{"x":576,"y":0,"fileNum":4063,"id":19668,"width":288,"height":300},{"x":0,"y":300,"fileNum":4063,"id":19669,"width":288,"height":300},{"x":288,"y":300,"fileNum":4063,"id":19670,"width":288,"height":300},{"x":576,"y":300,"fileNum":4063,"id":19671,"width":288,"height":300},{"x":0,"y":0,"fileNum":4064,"id":19672,"width":288,"height":300},{"x":288,"y":0,"fileNum":4064,"id":19673,"width":288,"height":300},{"x":576,"y":0,"fileNum":4064,"id":19674,"width":288,"height":300},{"x":0,"y":300,"fileNum":4064,"id":19675,"width":288,"height":300},{"x":288,"y":300,"fileNum":4064,"id":19676,"width":288,"height":300},{"x":576,"y":300,"fileNum":4064,"id":19677,"width":288,"height":300},{"x":0,"y":0,"fileNum":4065,"id":19678,"width":288,"height":300},{"x":288,"y":0,"fileNum":4065,"id":19679,"width":288,"height":300},{"x":576,"y":0,"fileNum":4065,"id":19680,"width":288,"height":300},{"x":0,"y":300,"fileNum":4065,"id":19681,"width":288,"height":300},{"x":288,"y":300,"fileNum":4065,"id":19682,"width":288,"height":300},{"x":576,"y":300,"fileNum":4065,"id":19683,"width":288,"height":300},{"x":0,"y":0,"fileNum":16017,"id":19688,"width":25,"height":45},{"x":25,"y":0,"fileNum":16017,"id":19689,"width":25,"height":45},{"x":50,"y":0,"fileNum":16017,"id":19690,"width":25,"height":45},{"x":75,"y":0,"fileNum":16017,"id":19691,"width":25,"height":45},{"x":100,"y":0,"fileNum":16017,"id":19692,"width":25,"height":45},{"x":125,"y":0,"fileNum":16017,"id":19693,"width":25,"height":45},{"x":0,"y":45,"fileNum":16017,"id":19694,"width":25,"height":45},{"x":25,"y":45,"fileNum":16017,"id":19695,"width":25,"height":45},{"x":50,"y":45,"fileNum":16017,"id":19696,"width":25,"height":45},{"x":75,"y":45,"fileNum":16017,"id":19697,"width":25,"height":45},{"x":100,"y":45,"fileNum":16017,"id":19698,"width":25,"height":45},{"x":125,"y":45,"fileNum":16017,"id":19699,"width":25,"height":45},{"x":0,"y":90,"fileNum":16017,"id":19700,"width":25,"height":45},{"x":25,"y":90,"fileNum":16017,"id":19701,"width":25,"height":45},{"x":50,"y":90,"fileNum":16017,"id":19702,"width":25,"height":45},{"x":75,"y":90,"fileNum":16017,"id":19703,"width":25,"height":45},{"x":100,"y":90,"fileNum":16017,"id":19704,"width":25,"height":45},{"x":0,"y":135,"fileNum":16017,"id":19705,"width":25,"height":45},{"x":25,"y":135,"fileNum":16017,"id":19706,"width":25,"height":45},{"x":50,"y":135,"fileNum":16017,"id":19707,"width":25,"height":45},{"x":75,"y":135,"fileNum":16017,"id":19708,"width":25,"height":45},{"x":100,"y":135,"fileNum":16017,"id":19709,"width":25,"height":45},{"x":0,"y":0,"fileNum":10001,"id":19714,"width":245,"height":256},{"x":0,"y":0,"fileNum":7001,"id":19715,"width":320,"height":182},{"x":0,"y":0,"fileNum":18008,"id":19716,"width":17,"height":16},{"x":17,"y":0,"fileNum":18008,"id":19717,"width":17,"height":16},{"x":34,"y":0,"fileNum":18008,"id":19718,"width":17,"height":16},{"x":51,"y":0,"fileNum":18008,"id":19719,"width":17,"height":16},{"x":0,"y":0,"fileNum":18009,"id":19720,"width":17,"height":16},{"x":17,"y":0,"fileNum":18009,"id":19721,"width":17,"height":16},{"x":34,"y":0,"fileNum":18009,"id":19722,"width":17,"height":16},{"x":51,"y":0,"fileNum":18009,"id":19723,"width":17,"height":16},{"x":0,"y":0,"fileNum":21000,"id":19724,"width":25,"height":45},{"x":25,"y":0,"fileNum":21000,"id":19725,"width":25,"height":45},{"x":50,"y":0,"fileNum":21000,"id":19726,"width":25,"height":45},{"x":75,"y":0,"fileNum":21000,"id":19727,"width":25,"height":45},{"x":100,"y":0,"fileNum":21000,"id":19728,"width":25,"height":45},{"x":125,"y":0,"fileNum":21000,"id":19729,"width":25,"height":45},{"x":0,"y":45,"fileNum":21000,"id":19730,"width":25,"height":45},{"x":25,"y":45,"fileNum":21000,"id":19731,"width":25,"height":45},{"x":50,"y":45,"fileNum":21000,"id":19732,"width":25,"height":45},{"x":75,"y":45,"fileNum":21000,"id":19733,"width":25,"height":45},{"x":100,"y":45,"fileNum":21000,"id":19734,"width":25,"height":45},{"x":125,"y":45,"fileNum":21000,"id":19735,"width":25,"height":45},{"x":0,"y":90,"fileNum":21000,"id":19736,"width":25,"height":45},{"x":25,"y":90,"fileNum":21000,"id":19737,"width":25,"height":45},{"x":50,"y":90,"fileNum":21000,"id":19738,"width":25,"height":45},{"x":75,"y":90,"fileNum":21000,"id":19739,"width":25,"height":45},{"x":100,"y":90,"fileNum":21000,"id":19740,"width":25,"height":45},{"x":0,"y":135,"fileNum":21000,"id":19741,"width":25,"height":45},{"x":25,"y":135,"fileNum":21000,"id":19742,"width":25,"height":45},{"x":50,"y":135,"fileNum":21000,"id":19743,"width":25,"height":45},{"x":75,"y":135,"fileNum":21000,"id":19744,"width":25,"height":45},{"x":100,"y":135,"fileNum":21000,"id":19745,"width":25,"height":45},{"x":0,"y":0,"fileNum":16021,"id":19750,"width":25,"height":45},{"x":25,"y":0,"fileNum":16021,"id":19751,"width":25,"height":45},{"x":50,"y":0,"fileNum":16021,"id":19752,"width":25,"height":45},{"x":75,"y":0,"fileNum":16021,"id":19753,"width":25,"height":45},{"x":100,"y":0,"fileNum":16021,"id":19754,"width":25,"height":45},{"x":125,"y":0,"fileNum":16021,"id":19755,"width":25,"height":45},{"x":0,"y":45,"fileNum":16021,"id":19756,"width":25,"height":45},{"x":25,"y":45,"fileNum":16021,"id":19757,"width":25,"height":45},{"x":50,"y":45,"fileNum":16021,"id":19758,"width":25,"height":45},{"x":75,"y":45,"fileNum":16021,"id":19759,"width":25,"height":45},{"x":100,"y":45,"fileNum":16021,"id":19760,"width":25,"height":45},{"x":125,"y":45,"fileNum":16021,"id":19761,"width":25,"height":45},{"x":0,"y":90,"fileNum":16021,"id":19762,"width":25,"height":45},{"x":25,"y":90,"fileNum":16021,"id":19763,"width":25,"height":45},{"x":50,"y":90,"fileNum":16021,"id":19764,"width":25,"height":45},{"x":75,"y":90,"fileNum":16021,"id":19765,"width":25,"height":45},{"x":100,"y":90,"fileNum":16021,"id":19766,"width":25,"height":45},{"x":0,"y":135,"fileNum":16021,"id":19767,"width":25,"height":45},{"x":25,"y":135,"fileNum":16021,"id":19768,"width":25,"height":45},{"x":50,"y":135,"fileNum":16021,"id":19769,"width":25,"height":45},{"x":75,"y":135,"fileNum":16021,"id":19770,"width":25,"height":45},{"x":100,"y":135,"fileNum":16021,"id":19771,"width":25,"height":45},{"x":0,"y":0,"fileNum":16022,"id":19776,"width":25,"height":45},{"x":25,"y":0,"fileNum":16022,"id":19777,"width":25,"height":45},{"x":50,"y":0,"fileNum":16022,"id":19778,"width":25,"height":45},{"x":75,"y":0,"fileNum":16022,"id":19779,"width":25,"height":45},{"x":100,"y":0,"fileNum":16022,"id":19780,"width":25,"height":45},{"x":125,"y":0,"fileNum":16022,"id":19781,"width":25,"height":45},{"x":0,"y":45,"fileNum":16022,"id":19782,"width":25,"height":45},{"x":25,"y":45,"fileNum":16022,"id":19783,"width":25,"height":45},{"x":50,"y":45,"fileNum":16022,"id":19784,"width":25,"height":45},{"x":75,"y":45,"fileNum":16022,"id":19785,"width":25,"height":45},{"x":100,"y":45,"fileNum":16022,"id":19786,"width":25,"height":45},{"x":125,"y":45,"fileNum":16022,"id":19787,"width":25,"height":45},{"x":0,"y":90,"fileNum":16022,"id":19788,"width":25,"height":45},{"x":25,"y":90,"fileNum":16022,"id":19789,"width":25,"height":45},{"x":50,"y":90,"fileNum":16022,"id":19790,"width":25,"height":45},{"x":75,"y":90,"fileNum":16022,"id":19791,"width":25,"height":45},{"x":100,"y":90,"fileNum":16022,"id":19792,"width":25,"height":45},{"x":0,"y":135,"fileNum":16022,"id":19793,"width":25,"height":45},{"x":25,"y":135,"fileNum":16022,"id":19794,"width":25,"height":45},{"x":50,"y":135,"fileNum":16022,"id":19795,"width":25,"height":45},{"x":75,"y":135,"fileNum":16022,"id":19796,"width":25,"height":45},{"x":100,"y":135,"fileNum":16022,"id":19797,"width":25,"height":45},{"x":0,"y":0,"fileNum":16023,"id":19802,"width":25,"height":45},{"x":25,"y":0,"fileNum":16023,"id":19803,"width":25,"height":45},{"x":50,"y":0,"fileNum":16023,"id":19804,"width":25,"height":45},{"x":75,"y":0,"fileNum":16023,"id":19805,"width":25,"height":45},{"x":100,"y":0,"fileNum":16023,"id":19806,"width":25,"height":45},{"x":125,"y":0,"fileNum":16023,"id":19807,"width":25,"height":45},{"x":0,"y":45,"fileNum":16023,"id":19808,"width":25,"height":45},{"x":25,"y":45,"fileNum":16023,"id":19809,"width":25,"height":45},{"x":50,"y":45,"fileNum":16023,"id":19810,"width":25,"height":45},{"x":75,"y":45,"fileNum":16023,"id":19811,"width":25,"height":45},{"x":100,"y":45,"fileNum":16023,"id":19812,"width":25,"height":45},{"x":125,"y":45,"fileNum":16023,"id":19813,"width":25,"height":45},{"x":0,"y":90,"fileNum":16023,"id":19814,"width":25,"height":45},{"x":25,"y":90,"fileNum":16023,"id":19815,"width":25,"height":45},{"x":50,"y":90,"fileNum":16023,"id":19816,"width":25,"height":45},{"x":75,"y":90,"fileNum":16023,"id":19817,"width":25,"height":45},{"x":100,"y":90,"fileNum":16023,"id":19818,"width":25,"height":45},{"x":0,"y":135,"fileNum":16023,"id":19819,"width":25,"height":45},{"x":25,"y":135,"fileNum":16023,"id":19820,"width":25,"height":45},{"x":50,"y":135,"fileNum":16023,"id":19821,"width":25,"height":45},{"x":75,"y":135,"fileNum":16023,"id":19822,"width":25,"height":45},{"x":100,"y":135,"fileNum":16023,"id":19823,"width":25,"height":45},{"x":0,"y":0,"fileNum":16024,"id":19828,"width":25,"height":45},{"x":25,"y":0,"fileNum":16024,"id":19829,"width":25,"height":45},{"x":50,"y":0,"fileNum":16024,"id":19830,"width":25,"height":45},{"x":75,"y":0,"fileNum":16024,"id":19831,"width":25,"height":45},{"x":100,"y":0,"fileNum":16024,"id":19832,"width":25,"height":45},{"x":125,"y":0,"fileNum":16024,"id":19833,"width":25,"height":45},{"x":0,"y":45,"fileNum":16024,"id":19834,"width":25,"height":45},{"x":25,"y":45,"fileNum":16024,"id":19835,"width":25,"height":45},{"x":50,"y":45,"fileNum":16024,"id":19836,"width":25,"height":45},{"x":75,"y":45,"fileNum":16024,"id":19837,"width":25,"height":45},{"x":100,"y":45,"fileNum":16024,"id":19838,"width":25,"height":45},{"x":125,"y":45,"fileNum":16024,"id":19839,"width":25,"height":45},{"x":0,"y":90,"fileNum":16024,"id":19840,"width":25,"height":45},{"x":25,"y":90,"fileNum":16024,"id":19841,"width":25,"height":45},{"x":50,"y":90,"fileNum":16024,"id":19842,"width":25,"height":45},{"x":75,"y":90,"fileNum":16024,"id":19843,"width":25,"height":45},{"x":100,"y":90,"fileNum":16024,"id":19844,"width":25,"height":45},{"x":0,"y":135,"fileNum":16024,"id":19845,"width":25,"height":45},{"x":25,"y":135,"fileNum":16024,"id":19846,"width":25,"height":45},{"x":50,"y":135,"fileNum":16024,"id":19847,"width":25,"height":45},{"x":75,"y":135,"fileNum":16024,"id":19848,"width":25,"height":45},{"x":100,"y":135,"fileNum":16024,"id":19849,"width":25,"height":45},{"x":0,"y":0,"fileNum":16025,"id":19854,"width":25,"height":45},{"x":25,"y":0,"fileNum":16025,"id":19855,"width":25,"height":45},{"x":50,"y":0,"fileNum":16025,"id":19856,"width":25,"height":45},{"x":75,"y":0,"fileNum":16025,"id":19857,"width":25,"height":45},{"x":100,"y":0,"fileNum":16025,"id":19858,"width":25,"height":45},{"x":125,"y":0,"fileNum":16025,"id":19859,"width":25,"height":45},{"x":0,"y":45,"fileNum":16025,"id":19860,"width":25,"height":45},{"x":25,"y":45,"fileNum":16025,"id":19861,"width":25,"height":45},{"x":50,"y":45,"fileNum":16025,"id":19862,"width":25,"height":45},{"x":75,"y":45,"fileNum":16025,"id":19863,"width":25,"height":45},{"x":100,"y":45,"fileNum":16025,"id":19864,"width":25,"height":45},{"x":125,"y":45,"fileNum":16025,"id":19865,"width":25,"height":45},{"x":0,"y":90,"fileNum":16025,"id":19866,"width":25,"height":45},{"x":25,"y":90,"fileNum":16025,"id":19867,"width":25,"height":45},{"x":50,"y":90,"fileNum":16025,"id":19868,"width":25,"height":45},{"x":75,"y":90,"fileNum":16025,"id":19869,"width":25,"height":45},{"x":100,"y":90,"fileNum":16025,"id":19870,"width":25,"height":45},{"x":0,"y":135,"fileNum":16025,"id":19871,"width":25,"height":45},{"x":25,"y":135,"fileNum":16025,"id":19872,"width":25,"height":45},{"x":50,"y":135,"fileNum":16025,"id":19873,"width":25,"height":45},{"x":75,"y":135,"fileNum":16025,"id":19874,"width":25,"height":45},{"x":100,"y":135,"fileNum":16025,"id":19875,"width":25,"height":45},{"x":0,"y":0,"fileNum":16026,"id":19880,"width":25,"height":45},{"x":25,"y":0,"fileNum":16026,"id":19881,"width":25,"height":45},{"x":50,"y":0,"fileNum":16026,"id":19882,"width":25,"height":45},{"x":75,"y":0,"fileNum":16026,"id":19883,"width":25,"height":45},{"x":100,"y":0,"fileNum":16026,"id":19884,"width":25,"height":45},{"x":125,"y":0,"fileNum":16026,"id":19885,"width":25,"height":45},{"x":0,"y":45,"fileNum":16026,"id":19886,"width":25,"height":45},{"x":25,"y":45,"fileNum":16026,"id":19887,"width":25,"height":45},{"x":50,"y":45,"fileNum":16026,"id":19888,"width":25,"height":45},{"x":75,"y":45,"fileNum":16026,"id":19889,"width":25,"height":45},{"x":100,"y":45,"fileNum":16026,"id":19890,"width":25,"height":45},{"x":125,"y":45,"fileNum":16026,"id":19891,"width":25,"height":45},{"x":0,"y":90,"fileNum":16026,"id":19892,"width":25,"height":45},{"x":25,"y":90,"fileNum":16026,"id":19893,"width":25,"height":45},{"x":50,"y":90,"fileNum":16026,"id":19894,"width":25,"height":45},{"x":75,"y":90,"fileNum":16026,"id":19895,"width":25,"height":45},{"x":100,"y":90,"fileNum":16026,"id":19896,"width":25,"height":45},{"x":0,"y":135,"fileNum":16026,"id":19897,"width":25,"height":45},{"x":25,"y":135,"fileNum":16026,"id":19898,"width":25,"height":45},{"x":50,"y":135,"fileNum":16026,"id":19899,"width":25,"height":45},{"x":75,"y":135,"fileNum":16026,"id":19900,"width":25,"height":45},{"x":100,"y":135,"fileNum":16026,"id":19901,"width":25,"height":45},{"x":0,"y":0,"fileNum":16027,"id":19906,"width":25,"height":45},{"x":25,"y":0,"fileNum":16027,"id":19907,"width":25,"height":45},{"x":50,"y":0,"fileNum":16027,"id":19908,"width":25,"height":45},{"x":75,"y":0,"fileNum":16027,"id":19909,"width":25,"height":45},{"x":100,"y":0,"fileNum":16027,"id":19910,"width":25,"height":45},{"x":125,"y":0,"fileNum":16027,"id":19911,"width":25,"height":45},{"x":0,"y":45,"fileNum":16027,"id":19912,"width":25,"height":45},{"x":25,"y":45,"fileNum":16027,"id":19913,"width":25,"height":45},{"x":50,"y":45,"fileNum":16027,"id":19914,"width":25,"height":45},{"x":75,"y":45,"fileNum":16027,"id":19915,"width":25,"height":45},{"x":100,"y":45,"fileNum":16027,"id":19916,"width":25,"height":45},{"x":125,"y":45,"fileNum":16027,"id":19917,"width":25,"height":45},{"x":0,"y":90,"fileNum":16027,"id":19918,"width":25,"height":45},{"x":25,"y":90,"fileNum":16027,"id":19919,"width":25,"height":45},{"x":50,"y":90,"fileNum":16027,"id":19920,"width":25,"height":45},{"x":75,"y":90,"fileNum":16027,"id":19921,"width":25,"height":45},{"x":100,"y":90,"fileNum":16027,"id":19922,"width":25,"height":45},{"x":0,"y":135,"fileNum":16027,"id":19923,"width":25,"height":45},{"x":25,"y":135,"fileNum":16027,"id":19924,"width":25,"height":45},{"x":50,"y":135,"fileNum":16027,"id":19925,"width":25,"height":45},{"x":75,"y":135,"fileNum":16027,"id":19926,"width":25,"height":45},{"x":100,"y":135,"fileNum":16027,"id":19927,"width":25,"height":45},{"x":0,"y":0,"fileNum":16028,"id":19932,"width":25,"height":45},{"x":25,"y":0,"fileNum":16028,"id":19933,"width":25,"height":45},{"x":50,"y":0,"fileNum":16028,"id":19934,"width":25,"height":45},{"x":75,"y":0,"fileNum":16028,"id":19935,"width":25,"height":45},{"x":100,"y":0,"fileNum":16028,"id":19936,"width":25,"height":45},{"x":125,"y":0,"fileNum":16028,"id":19937,"width":25,"height":45},{"x":0,"y":45,"fileNum":16028,"id":19938,"width":25,"height":45},{"x":25,"y":45,"fileNum":16028,"id":19939,"width":25,"height":45},{"x":50,"y":45,"fileNum":16028,"id":19940,"width":25,"height":45},{"x":75,"y":45,"fileNum":16028,"id":19941,"width":25,"height":45},{"x":100,"y":45,"fileNum":16028,"id":19942,"width":25,"height":45},{"x":125,"y":45,"fileNum":16028,"id":19943,"width":25,"height":45},{"x":0,"y":90,"fileNum":16028,"id":19944,"width":25,"height":45},{"x":25,"y":90,"fileNum":16028,"id":19945,"width":25,"height":45},{"x":50,"y":90,"fileNum":16028,"id":19946,"width":25,"height":45},{"x":75,"y":90,"fileNum":16028,"id":19947,"width":25,"height":45},{"x":100,"y":90,"fileNum":16028,"id":19948,"width":25,"height":45},{"x":0,"y":135,"fileNum":16028,"id":19949,"width":25,"height":45},{"x":25,"y":135,"fileNum":16028,"id":19950,"width":25,"height":45},{"x":50,"y":135,"fileNum":16028,"id":19951,"width":25,"height":45},{"x":75,"y":135,"fileNum":16028,"id":19952,"width":25,"height":45},{"x":100,"y":135,"fileNum":16028,"id":19953,"width":25,"height":45},{"x":0,"y":0,"fileNum":16029,"id":19958,"width":25,"height":45},{"x":25,"y":0,"fileNum":16029,"id":19959,"width":25,"height":45},{"x":50,"y":0,"fileNum":16029,"id":19960,"width":25,"height":45},{"x":75,"y":0,"fileNum":16029,"id":19961,"width":25,"height":45},{"x":100,"y":0,"fileNum":16029,"id":19962,"width":25,"height":45},{"x":125,"y":0,"fileNum":16029,"id":19963,"width":25,"height":45},{"x":0,"y":45,"fileNum":16029,"id":19964,"width":25,"height":45},{"x":25,"y":45,"fileNum":16029,"id":19965,"width":25,"height":45},{"x":50,"y":45,"fileNum":16029,"id":19966,"width":25,"height":45},{"x":75,"y":45,"fileNum":16029,"id":19967,"width":25,"height":45},{"x":100,"y":45,"fileNum":16029,"id":19968,"width":25,"height":45},{"x":125,"y":45,"fileNum":16029,"id":19969,"width":25,"height":45},{"x":0,"y":90,"fileNum":16029,"id":19970,"width":25,"height":45},{"x":25,"y":90,"fileNum":16029,"id":19971,"width":25,"height":45},{"x":50,"y":90,"fileNum":16029,"id":19972,"width":25,"height":45},{"x":75,"y":90,"fileNum":16029,"id":19973,"width":25,"height":45},{"x":100,"y":90,"fileNum":16029,"id":19974,"width":25,"height":45},{"x":0,"y":135,"fileNum":16029,"id":19975,"width":25,"height":45},{"x":25,"y":135,"fileNum":16029,"id":19976,"width":25,"height":45},{"x":50,"y":135,"fileNum":16029,"id":19977,"width":25,"height":45},{"x":75,"y":135,"fileNum":16029,"id":19978,"width":25,"height":45},{"x":100,"y":135,"fileNum":16029,"id":19979,"width":25,"height":45},{"x":0,"y":0,"fileNum":21001,"id":19984,"width":25,"height":45},{"x":25,"y":0,"fileNum":21001,"id":19985,"width":25,"height":45},{"x":50,"y":0,"fileNum":21001,"id":19986,"width":25,"height":45},{"x":75,"y":0,"fileNum":21001,"id":19987,"width":25,"height":45},{"x":100,"y":0,"fileNum":21001,"id":19988,"width":25,"height":45},{"x":125,"y":0,"fileNum":21001,"id":19989,"width":25,"height":45},{"x":0,"y":45,"fileNum":21001,"id":19990,"width":25,"height":45},{"x":25,"y":45,"fileNum":21001,"id":19991,"width":25,"height":45},{"x":50,"y":45,"fileNum":21001,"id":19992,"width":25,"height":45},{"x":75,"y":45,"fileNum":21001,"id":19993,"width":25,"height":45},{"x":100,"y":45,"fileNum":21001,"id":19994,"width":25,"height":45},{"x":125,"y":45,"fileNum":21001,"id":19995,"width":25,"height":45},{"x":0,"y":90,"fileNum":21001,"id":19996,"width":25,"height":45},{"x":25,"y":90,"fileNum":21001,"id":19997,"width":25,"height":45},{"x":50,"y":90,"fileNum":21001,"id":19998,"width":25,"height":45},{"x":75,"y":90,"fileNum":21001,"id":19999,"width":25,"height":45},{"x":100,"y":90,"fileNum":21001,"id":20000,"width":25,"height":45},{"x":0,"y":135,"fileNum":21001,"id":20001,"width":25,"height":45},{"x":25,"y":135,"fileNum":21001,"id":20002,"width":25,"height":45},{"x":50,"y":135,"fileNum":21001,"id":20003,"width":25,"height":45},{"x":75,"y":135,"fileNum":21001,"id":20004,"width":25,"height":45},{"x":100,"y":135,"fileNum":21001,"id":20005,"width":25,"height":45},{"x":0,"y":0,"fileNum":21002,"id":20010,"width":25,"height":45},{"x":25,"y":0,"fileNum":21002,"id":20011,"width":25,"height":45},{"x":50,"y":0,"fileNum":21002,"id":20012,"width":25,"height":45},{"x":75,"y":0,"fileNum":21002,"id":20013,"width":25,"height":45},{"x":100,"y":0,"fileNum":21002,"id":20014,"width":25,"height":45},{"x":125,"y":0,"fileNum":21002,"id":20015,"width":25,"height":45},{"x":0,"y":45,"fileNum":21002,"id":20016,"width":25,"height":45},{"x":25,"y":45,"fileNum":21002,"id":20017,"width":25,"height":45},{"x":50,"y":45,"fileNum":21002,"id":20018,"width":25,"height":45},{"x":75,"y":45,"fileNum":21002,"id":20019,"width":25,"height":45},{"x":100,"y":45,"fileNum":21002,"id":20020,"width":25,"height":45},{"x":125,"y":45,"fileNum":21002,"id":20021,"width":25,"height":45},{"x":0,"y":90,"fileNum":21002,"id":20022,"width":25,"height":45},{"x":25,"y":90,"fileNum":21002,"id":20023,"width":25,"height":45},{"x":50,"y":90,"fileNum":21002,"id":20024,"width":25,"height":45},{"x":75,"y":90,"fileNum":21002,"id":20025,"width":25,"height":45},{"x":100,"y":90,"fileNum":21002,"id":20026,"width":25,"height":45},{"x":0,"y":135,"fileNum":21002,"id":20027,"width":25,"height":45},{"x":25,"y":135,"fileNum":21002,"id":20028,"width":25,"height":45},{"x":50,"y":135,"fileNum":21002,"id":20029,"width":25,"height":45},{"x":75,"y":135,"fileNum":21002,"id":20030,"width":25,"height":45},{"x":100,"y":135,"fileNum":21002,"id":20031,"width":25,"height":45},{"x":0,"y":0,"fileNum":21003,"id":20036,"width":25,"height":45},{"x":25,"y":0,"fileNum":21003,"id":20037,"width":25,"height":45},{"x":50,"y":0,"fileNum":21003,"id":20038,"width":25,"height":45},{"x":75,"y":0,"fileNum":21003,"id":20039,"width":25,"height":45},{"x":100,"y":0,"fileNum":21003,"id":20040,"width":25,"height":45},{"x":125,"y":0,"fileNum":21003,"id":20041,"width":25,"height":45},{"x":0,"y":45,"fileNum":21003,"id":20042,"width":25,"height":45},{"x":25,"y":45,"fileNum":21003,"id":20043,"width":25,"height":45},{"x":50,"y":45,"fileNum":21003,"id":20044,"width":25,"height":45},{"x":75,"y":45,"fileNum":21003,"id":20045,"width":25,"height":45},{"x":100,"y":45,"fileNum":21003,"id":20046,"width":25,"height":45},{"x":125,"y":45,"fileNum":21003,"id":20047,"width":25,"height":45},{"x":0,"y":90,"fileNum":21003,"id":20048,"width":25,"height":45},{"x":25,"y":90,"fileNum":21003,"id":20049,"width":25,"height":45},{"x":50,"y":90,"fileNum":21003,"id":20050,"width":25,"height":45},{"x":75,"y":90,"fileNum":21003,"id":20051,"width":25,"height":45},{"x":100,"y":90,"fileNum":21003,"id":20052,"width":25,"height":45},{"x":0,"y":135,"fileNum":21003,"id":20053,"width":25,"height":45},{"x":25,"y":135,"fileNum":21003,"id":20054,"width":25,"height":45},{"x":50,"y":135,"fileNum":21003,"id":20055,"width":25,"height":45},{"x":75,"y":135,"fileNum":21003,"id":20056,"width":25,"height":45},{"x":100,"y":135,"fileNum":21003,"id":20057,"width":25,"height":45},{"x":0,"y":0,"fileNum":18013,"id":20062,"width":17,"height":16},{"x":17,"y":0,"fileNum":18013,"id":20063,"width":17,"height":16},{"x":34,"y":0,"fileNum":18013,"id":20064,"width":17,"height":16},{"x":51,"y":0,"fileNum":18013,"id":20065,"width":17,"height":16},{"x":0,"y":0,"fileNum":18010,"id":20066,"width":32,"height":32},{"x":0,"y":0,"fileNum":18011,"id":20067,"width":32,"height":32},{"x":0,"y":0,"fileNum":18012,"id":20068,"width":32,"height":32},{"x":552,"y":0,"fileNum":4001,"id":20069,"width":184,"height":166},{"x":552,"y":166,"fileNum":4001,"id":20070,"width":184,"height":166},{"x":552,"y":332,"fileNum":4001,"id":20071,"width":184,"height":166},{"x":552,"y":498,"fileNum":4001,"id":20072,"width":184,"height":166},{"x":0,"y":0,"fileNum":4036,"id":20073,"width":30,"height":24},{"x":30,"y":0,"fileNum":4036,"id":20074,"width":30,"height":24},{"x":60,"y":0,"fileNum":4036,"id":20075,"width":30,"height":24},{"x":0,"y":24,"fileNum":4036,"id":20076,"width":30,"height":24},{"x":30,"y":24,"fileNum":4036,"id":20077,"width":30,"height":24},{"x":60,"y":24,"fileNum":4036,"id":20078,"width":30,"height":24},{"x":0,"y":48,"fileNum":4036,"id":20079,"width":30,"height":24},{"x":30,"y":48,"fileNum":4036,"id":20080,"width":30,"height":24},{"x":60,"y":48,"fileNum":4036,"id":20081,"width":30,"height":24},{"x":0,"y":72,"fileNum":4036,"id":20082,"width":30,"height":24},{"x":30,"y":72,"fileNum":4036,"id":20083,"width":30,"height":24},{"x":60,"y":72,"fileNum":4036,"id":20084,"width":30,"height":24},{"x":0,"y":0,"fileNum":4037,"id":20089,"width":74,"height":49},{"x":74,"y":0,"fileNum":4037,"id":20090,"width":74,"height":49},{"x":148,"y":0,"fileNum":4037,"id":20091,"width":74,"height":49},{"x":222,"y":0,"fileNum":4037,"id":20092,"width":74,"height":49},{"x":0,"y":49,"fileNum":4037,"id":20093,"width":74,"height":49},{"x":74,"y":49,"fileNum":4037,"id":20094,"width":74,"height":49},{"x":148,"y":49,"fileNum":4037,"id":20095,"width":74,"height":49},{"x":222,"y":49,"fileNum":4037,"id":20096,"width":74,"height":49},{"x":0,"y":98,"fileNum":4037,"id":20097,"width":74,"height":49},{"x":74,"y":98,"fileNum":4037,"id":20098,"width":74,"height":49},{"x":148,"y":98,"fileNum":4037,"id":20099,"width":74,"height":49},{"x":222,"y":98,"fileNum":4037,"id":20100,"width":74,"height":49},{"x":0,"y":147,"fileNum":4037,"id":20101,"width":74,"height":49},{"x":74,"y":147,"fileNum":4037,"id":20102,"width":74,"height":49},{"x":148,"y":147,"fileNum":4037,"id":20103,"width":74,"height":49},{"x":222,"y":147,"fileNum":4037,"id":20104,"width":74,"height":49},{"x":0,"y":0,"fileNum":4038,"id":20109,"width":80,"height":50},{"x":80,"y":0,"fileNum":4038,"id":20110,"width":80,"height":50},{"x":160,"y":0,"fileNum":4038,"id":20111,"width":80,"height":50},{"x":240,"y":0,"fileNum":4038,"id":20112,"width":80,"height":50},{"x":0,"y":50,"fileNum":4038,"id":20113,"width":80,"height":50},{"x":80,"y":50,"fileNum":4038,"id":20114,"width":80,"height":50},{"x":160,"y":50,"fileNum":4038,"id":20115,"width":80,"height":50},{"x":240,"y":50,"fileNum":4038,"id":20116,"width":80,"height":50},{"x":0,"y":100,"fileNum":4038,"id":20117,"width":80,"height":50},{"x":80,"y":100,"fileNum":4038,"id":20118,"width":80,"height":50},{"x":160,"y":100,"fileNum":4038,"id":20119,"width":80,"height":50},{"x":240,"y":100,"fileNum":4038,"id":20120,"width":80,"height":50},{"x":0,"y":150,"fileNum":4038,"id":20121,"width":80,"height":50},{"x":80,"y":150,"fileNum":4038,"id":20122,"width":80,"height":50},{"x":160,"y":150,"fileNum":4038,"id":20123,"width":80,"height":50},{"x":240,"y":150,"fileNum":4038,"id":20124,"width":80,"height":50},{"x":0,"y":0,"fileNum":4035,"id":20129,"width":203,"height":124},{"x":203,"y":0,"fileNum":4035,"id":20130,"width":203,"height":124},{"x":406,"y":0,"fileNum":4035,"id":20131,"width":203,"height":124},{"x":609,"y":0,"fileNum":4035,"id":20132,"width":203,"height":124},{"x":0,"y":124,"fileNum":4035,"id":20133,"width":203,"height":124},{"x":203,"y":124,"fileNum":4035,"id":20134,"width":203,"height":124},{"x":406,"y":124,"fileNum":4035,"id":20135,"width":203,"height":124},{"x":609,"y":124,"fileNum":4035,"id":20136,"width":203,"height":124},{"x":0,"y":248,"fileNum":4035,"id":20137,"width":203,"height":124},{"x":203,"y":248,"fileNum":4035,"id":20138,"width":203,"height":124},{"x":406,"y":248,"fileNum":4035,"id":20139,"width":203,"height":124},{"x":609,"y":248,"fileNum":4035,"id":20140,"width":203,"height":124},{"x":0,"y":372,"fileNum":4035,"id":20141,"width":203,"height":124},{"x":203,"y":372,"fileNum":4035,"id":20142,"width":203,"height":124},{"x":406,"y":372,"fileNum":4035,"id":20143,"width":203,"height":124},{"x":609,"y":372,"fileNum":4035,"id":20144,"width":203,"height":124},{"x":0,"y":496,"fileNum":4035,"id":20145,"width":203,"height":124},{"x":203,"y":496,"fileNum":4035,"id":20146,"width":203,"height":124},{"x":406,"y":496,"fileNum":4035,"id":20147,"width":203,"height":124},{"x":609,"y":496,"fileNum":4035,"id":20148,"width":203,"height":124},{"x":0,"y":620,"fileNum":4035,"id":20149,"width":203,"height":124},{"x":203,"y":620,"fileNum":4035,"id":20150,"width":203,"height":124},{"x":406,"y":620,"fileNum":4035,"id":20151,"width":203,"height":124},{"x":609,"y":620,"fileNum":4035,"id":20152,"width":203,"height":124},{"x":0,"y":744,"fileNum":4035,"id":20153,"width":203,"height":124},{"x":203,"y":744,"fileNum":4035,"id":20154,"width":203,"height":124},{"x":406,"y":744,"fileNum":4035,"id":20155,"width":203,"height":124},{"x":609,"y":744,"fileNum":4035,"id":20156,"width":203,"height":124},{"x":0,"y":868,"fileNum":4035,"id":20157,"width":203,"height":124},{"x":203,"y":868,"fileNum":4035,"id":20158,"width":203,"height":124},{"x":406,"y":868,"fileNum":4035,"id":20159,"width":203,"height":124},{"x":609,"y":868,"fileNum":4035,"id":20160,"width":203,"height":124},{"x":0,"y":0,"fileNum":5000,"id":20165,"width":82,"height":105},{"x":0,"y":0,"fileNum":5001,"id":20166,"width":82,"height":105},{"x":0,"y":0,"fileNum":5002,"id":20167,"width":32,"height":32},{"x":0,"y":0,"fileNum":5003,"id":20168,"width":177,"height":151},{"x":0,"y":0,"fileNum":5004,"id":20169,"width":140,"height":140},{"x":0,"y":0,"fileNum":5005,"id":20170,"width":73,"height":193},{"x":0,"y":0,"fileNum":5006,"id":20171,"width":92,"height":217},{"x":0,"y":0,"fileNum":5007,"id":20172,"width":93,"height":89},{"x":0,"y":0,"fileNum":5008,"id":20173,"width":22,"height":51},{"x":0,"y":0,"fileNum":5009,"id":20174,"width":32,"height":128},{"x":0,"y":0,"fileNum":5010,"id":20175,"width":32,"height":128},{"x":0,"y":0,"fileNum":5011,"id":20176,"width":32,"height":128},{"x":0,"y":0,"fileNum":5012,"id":20177,"width":32,"height":128},{"x":0,"y":0,"fileNum":5013,"id":20178,"width":32,"height":128},{"x":0,"y":0,"fileNum":5014,"id":20179,"width":32,"height":128},{"x":0,"y":0,"fileNum":5015,"id":20180,"width":32,"height":128},{"x":0,"y":0,"fileNum":5016,"id":20181,"width":32,"height":128},{"x":0,"y":0,"fileNum":5017,"id":20182,"width":32,"height":128},{"x":0,"y":0,"fileNum":5018,"id":20183,"width":32,"height":128},{"x":0,"y":0,"fileNum":5019,"id":20184,"width":32,"height":128},{"x":0,"y":0,"fileNum":5020,"id":20185,"width":32,"height":128},{"x":0,"y":0,"fileNum":5021,"id":20186,"width":32,"height":128},{"x":0,"y":0,"fileNum":5022,"id":20187,"width":32,"height":128},{"x":0,"y":0,"fileNum":5023,"id":20188,"width":32,"height":128},{"x":0,"y":0,"fileNum":5024,"id":20189,"width":32,"height":128},{"x":0,"y":0,"fileNum":5025,"id":20190,"width":32,"height":128},{"x":0,"y":0,"fileNum":5026,"id":20191,"width":32,"height":128},{"x":0,"y":0,"fileNum":5027,"id":20192,"width":32,"height":128},{"x":0,"y":0,"fileNum":5028,"id":20193,"width":32,"height":128},{"x":0,"y":0,"fileNum":5029,"id":20194,"width":32,"height":128},{"x":0,"y":0,"fileNum":5030,"id":20195,"width":32,"height":128},{"x":0,"y":0,"fileNum":5031,"id":20196,"width":32,"height":128},{"x":0,"y":0,"fileNum":5032,"id":20197,"width":32,"height":128},{"x":0,"y":0,"fileNum":5033,"id":20198,"width":32,"height":128},{"x":0,"y":0,"fileNum":5034,"id":20199,"width":32,"height":128},{"x":0,"y":0,"fileNum":5035,"id":20200,"width":32,"height":128},{"x":0,"y":0,"fileNum":5036,"id":20201,"width":32,"height":128},{"x":0,"y":0,"fileNum":5037,"id":20202,"width":32,"height":128},{"x":0,"y":0,"fileNum":5038,"id":20203,"width":32,"height":128},{"x":0,"y":0,"fileNum":5039,"id":20204,"width":32,"height":128},{"x":0,"y":0,"fileNum":5040,"id":20205,"width":32,"height":128},{"x":0,"y":0,"fileNum":5041,"id":20206,"width":32,"height":128},{"x":0,"y":0,"fileNum":16031,"id":20207,"width":25,"height":45},{"x":25,"y":0,"fileNum":16031,"id":20208,"width":25,"height":45},{"x":50,"y":0,"fileNum":16031,"id":20209,"width":25,"height":45},{"x":75,"y":0,"fileNum":16031,"id":20210,"width":25,"height":45},{"x":100,"y":0,"fileNum":16031,"id":20211,"width":25,"height":45},{"x":125,"y":0,"fileNum":16031,"id":20212,"width":25,"height":45},{"x":0,"y":45,"fileNum":16031,"id":20213,"width":25,"height":45},{"x":25,"y":45,"fileNum":16031,"id":20214,"width":25,"height":45},{"x":50,"y":45,"fileNum":16031,"id":20215,"width":25,"height":45},{"x":75,"y":45,"fileNum":16031,"id":20216,"width":25,"height":45},{"x":100,"y":45,"fileNum":16031,"id":20217,"width":25,"height":45},{"x":125,"y":45,"fileNum":16031,"id":20218,"width":25,"height":45},{"x":0,"y":90,"fileNum":16031,"id":20219,"width":25,"height":45},{"x":25,"y":90,"fileNum":16031,"id":20220,"width":25,"height":45},{"x":50,"y":90,"fileNum":16031,"id":20221,"width":25,"height":45},{"x":75,"y":90,"fileNum":16031,"id":20222,"width":25,"height":45},{"x":100,"y":90,"fileNum":16031,"id":20223,"width":25,"height":45},{"x":0,"y":135,"fileNum":16031,"id":20224,"width":25,"height":45},{"x":25,"y":135,"fileNum":16031,"id":20225,"width":25,"height":45},{"x":50,"y":135,"fileNum":16031,"id":20226,"width":25,"height":45},{"x":75,"y":135,"fileNum":16031,"id":20227,"width":25,"height":45},{"x":100,"y":135,"fileNum":16031,"id":20228,"width":25,"height":45},{"x":0,"y":0,"fileNum":16030,"id":20233,"width":32,"height":32},{"x":0,"y":0,"fileNum":18014,"id":20234,"width":17,"height":16},{"x":17,"y":0,"fileNum":18014,"id":20235,"width":17,"height":16},{"x":34,"y":0,"fileNum":18014,"id":20236,"width":17,"height":16},{"x":51,"y":0,"fileNum":18014,"id":20237,"width":17,"height":16},{"x":0,"y":0,"fileNum":18015,"id":20238,"width":32,"height":32},{"x":0,"y":0,"fileNum":108,"id":20239,"width":32,"height":32},{"x":0,"y":0,"fileNum":109,"id":20240,"width":25,"height":45},{"x":25,"y":0,"fileNum":109,"id":20241,"width":25,"height":45},{"x":50,"y":0,"fileNum":109,"id":20242,"width":25,"height":45},{"x":75,"y":0,"fileNum":109,"id":20243,"width":25,"height":45},{"x":100,"y":0,"fileNum":109,"id":20244,"width":25,"height":45},{"x":125,"y":0,"fileNum":109,"id":20245,"width":25,"height":45},{"x":0,"y":45,"fileNum":109,"id":20246,"width":25,"height":45},{"x":25,"y":45,"fileNum":109,"id":20247,"width":25,"height":45},{"x":50,"y":45,"fileNum":109,"id":20248,"width":25,"height":45},{"x":75,"y":45,"fileNum":109,"id":20249,"width":25,"height":45},{"x":100,"y":45,"fileNum":109,"id":20250,"width":25,"height":45},{"x":125,"y":45,"fileNum":109,"id":20251,"width":25,"height":45},{"x":0,"y":90,"fileNum":109,"id":20252,"width":25,"height":45},{"x":25,"y":90,"fileNum":109,"id":20253,"width":25,"height":45},{"x":50,"y":90,"fileNum":109,"id":20254,"width":25,"height":45},{"x":75,"y":90,"fileNum":109,"id":20255,"width":25,"height":45},{"x":100,"y":90,"fileNum":109,"id":20256,"width":25,"height":45},{"x":0,"y":135,"fileNum":109,"id":20257,"width":25,"height":45},{"x":25,"y":135,"fileNum":109,"id":20258,"width":25,"height":45},{"x":50,"y":135,"fileNum":109,"id":20259,"width":25,"height":45},{"x":75,"y":135,"fileNum":109,"id":20260,"width":25,"height":45},{"x":100,"y":135,"fileNum":109,"id":20261,"width":25,"height":45},{"x":0,"y":0,"fileNum":110,"id":20266,"width":32,"height":32},{"x":0,"y":0,"fileNum":111,"id":20267,"width":25,"height":45},{"x":25,"y":0,"fileNum":111,"id":20268,"width":25,"height":45},{"x":50,"y":0,"fileNum":111,"id":20269,"width":25,"height":45},{"x":75,"y":0,"fileNum":111,"id":20270,"width":25,"height":45},{"x":100,"y":0,"fileNum":111,"id":20271,"width":25,"height":45},{"x":125,"y":0,"fileNum":111,"id":20272,"width":25,"height":45},{"x":0,"y":45,"fileNum":111,"id":20273,"width":25,"height":45},{"x":25,"y":45,"fileNum":111,"id":20274,"width":25,"height":45},{"x":50,"y":45,"fileNum":111,"id":20275,"width":25,"height":45},{"x":75,"y":45,"fileNum":111,"id":20276,"width":25,"height":45},{"x":100,"y":45,"fileNum":111,"id":20277,"width":25,"height":45},{"x":125,"y":45,"fileNum":111,"id":20278,"width":25,"height":45},{"x":0,"y":90,"fileNum":111,"id":20279,"width":25,"height":45},{"x":25,"y":90,"fileNum":111,"id":20280,"width":25,"height":45},{"x":50,"y":90,"fileNum":111,"id":20281,"width":25,"height":45},{"x":75,"y":90,"fileNum":111,"id":20282,"width":25,"height":45},{"x":100,"y":90,"fileNum":111,"id":20283,"width":25,"height":45},{"x":0,"y":135,"fileNum":111,"id":20284,"width":25,"height":45},{"x":25,"y":135,"fileNum":111,"id":20285,"width":25,"height":45},{"x":50,"y":135,"fileNum":111,"id":20286,"width":25,"height":45},{"x":75,"y":135,"fileNum":111,"id":20287,"width":25,"height":45},{"x":100,"y":135,"fileNum":111,"id":20288,"width":25,"height":45},{"x":0,"y":0,"fileNum":112,"id":20293,"width":32,"height":32},{"x":0,"y":0,"fileNum":113,"id":20294,"width":25,"height":45},{"x":25,"y":0,"fileNum":113,"id":20295,"width":25,"height":45},{"x":50,"y":0,"fileNum":113,"id":20296,"width":25,"height":45},{"x":75,"y":0,"fileNum":113,"id":20297,"width":25,"height":45},{"x":100,"y":0,"fileNum":113,"id":20298,"width":25,"height":45},{"x":125,"y":0,"fileNum":113,"id":20299,"width":25,"height":45},{"x":0,"y":45,"fileNum":113,"id":20300,"width":25,"height":45},{"x":25,"y":45,"fileNum":113,"id":20301,"width":25,"height":45},{"x":50,"y":45,"fileNum":113,"id":20302,"width":25,"height":45},{"x":75,"y":45,"fileNum":113,"id":20303,"width":25,"height":45},{"x":100,"y":45,"fileNum":113,"id":20304,"width":25,"height":45},{"x":125,"y":45,"fileNum":113,"id":20305,"width":25,"height":45},{"x":0,"y":90,"fileNum":113,"id":20306,"width":25,"height":45},{"x":25,"y":90,"fileNum":113,"id":20307,"width":25,"height":45},{"x":50,"y":90,"fileNum":113,"id":20308,"width":25,"height":45},{"x":75,"y":90,"fileNum":113,"id":20309,"width":25,"height":45},{"x":100,"y":90,"fileNum":113,"id":20310,"width":25,"height":45},{"x":0,"y":135,"fileNum":113,"id":20311,"width":25,"height":45},{"x":25,"y":135,"fileNum":113,"id":20312,"width":25,"height":45},{"x":50,"y":135,"fileNum":113,"id":20313,"width":25,"height":45},{"x":75,"y":135,"fileNum":113,"id":20314,"width":25,"height":45},{"x":100,"y":135,"fileNum":113,"id":20315,"width":25,"height":45},{"x":0,"y":0,"fileNum":114,"id":20320,"width":32,"height":32},{"x":0,"y":0,"fileNum":115,"id":20321,"width":25,"height":45},{"x":25,"y":0,"fileNum":115,"id":20322,"width":25,"height":45},{"x":50,"y":0,"fileNum":115,"id":20323,"width":25,"height":45},{"x":75,"y":0,"fileNum":115,"id":20324,"width":25,"height":45},{"x":100,"y":0,"fileNum":115,"id":20325,"width":25,"height":45},{"x":125,"y":0,"fileNum":115,"id":20326,"width":25,"height":45},{"x":0,"y":45,"fileNum":115,"id":20327,"width":25,"height":45},{"x":25,"y":45,"fileNum":115,"id":20328,"width":25,"height":45},{"x":50,"y":45,"fileNum":115,"id":20329,"width":25,"height":45},{"x":75,"y":45,"fileNum":115,"id":20330,"width":25,"height":45},{"x":100,"y":45,"fileNum":115,"id":20331,"width":25,"height":45},{"x":125,"y":45,"fileNum":115,"id":20332,"width":25,"height":45},{"x":0,"y":90,"fileNum":115,"id":20333,"width":25,"height":45},{"x":25,"y":90,"fileNum":115,"id":20334,"width":25,"height":45},{"x":50,"y":90,"fileNum":115,"id":20335,"width":25,"height":45},{"x":75,"y":90,"fileNum":115,"id":20336,"width":25,"height":45},{"x":100,"y":90,"fileNum":115,"id":20337,"width":25,"height":45},{"x":0,"y":135,"fileNum":115,"id":20338,"width":25,"height":45},{"x":25,"y":135,"fileNum":115,"id":20339,"width":25,"height":45},{"x":50,"y":135,"fileNum":115,"id":20340,"width":25,"height":45},{"x":75,"y":135,"fileNum":115,"id":20341,"width":25,"height":45},{"x":100,"y":135,"fileNum":115,"id":20342,"width":25,"height":45},{"x":0,"y":0,"fileNum":116,"id":20347,"width":32,"height":32},{"x":0,"y":0,"fileNum":117,"id":20348,"width":25,"height":45},{"x":25,"y":0,"fileNum":117,"id":20349,"width":25,"height":45},{"x":50,"y":0,"fileNum":117,"id":20350,"width":25,"height":45},{"x":75,"y":0,"fileNum":117,"id":20351,"width":25,"height":45},{"x":100,"y":0,"fileNum":117,"id":20352,"width":25,"height":45},{"x":125,"y":0,"fileNum":117,"id":20353,"width":25,"height":45},{"x":0,"y":45,"fileNum":117,"id":20354,"width":25,"height":45},{"x":25,"y":45,"fileNum":117,"id":20355,"width":25,"height":45},{"x":50,"y":45,"fileNum":117,"id":20356,"width":25,"height":45},{"x":75,"y":45,"fileNum":117,"id":20357,"width":25,"height":45},{"x":100,"y":45,"fileNum":117,"id":20358,"width":25,"height":45},{"x":125,"y":45,"fileNum":117,"id":20359,"width":25,"height":45},{"x":0,"y":90,"fileNum":117,"id":20360,"width":25,"height":45},{"x":25,"y":90,"fileNum":117,"id":20361,"width":25,"height":45},{"x":50,"y":90,"fileNum":117,"id":20362,"width":25,"height":45},{"x":75,"y":90,"fileNum":117,"id":20363,"width":25,"height":45},{"x":100,"y":90,"fileNum":117,"id":20364,"width":25,"height":45},{"x":0,"y":135,"fileNum":117,"id":20365,"width":25,"height":45},{"x":25,"y":135,"fileNum":117,"id":20366,"width":25,"height":45},{"x":50,"y":135,"fileNum":117,"id":20367,"width":25,"height":45},{"x":75,"y":135,"fileNum":117,"id":20368,"width":25,"height":45},{"x":100,"y":135,"fileNum":117,"id":20369,"width":25,"height":45},{"x":0,"y":0,"fileNum":118,"id":20374,"width":32,"height":32},{"x":0,"y":0,"fileNum":119,"id":20375,"width":25,"height":45},{"x":25,"y":0,"fileNum":119,"id":20376,"width":25,"height":45},{"x":50,"y":0,"fileNum":119,"id":20377,"width":25,"height":45},{"x":75,"y":0,"fileNum":119,"id":20378,"width":25,"height":45},{"x":100,"y":0,"fileNum":119,"id":20379,"width":25,"height":45},{"x":125,"y":0,"fileNum":119,"id":20380,"width":25,"height":45},{"x":0,"y":45,"fileNum":119,"id":20381,"width":25,"height":45},{"x":25,"y":45,"fileNum":119,"id":20382,"width":25,"height":45},{"x":50,"y":45,"fileNum":119,"id":20383,"width":25,"height":45},{"x":75,"y":45,"fileNum":119,"id":20384,"width":25,"height":45},{"x":100,"y":45,"fileNum":119,"id":20385,"width":25,"height":45},{"x":125,"y":45,"fileNum":119,"id":20386,"width":25,"height":45},{"x":0,"y":90,"fileNum":119,"id":20387,"width":25,"height":45},{"x":25,"y":90,"fileNum":119,"id":20388,"width":25,"height":45},{"x":50,"y":90,"fileNum":119,"id":20389,"width":25,"height":45},{"x":75,"y":90,"fileNum":119,"id":20390,"width":25,"height":45},{"x":100,"y":90,"fileNum":119,"id":20391,"width":25,"height":45},{"x":0,"y":135,"fileNum":119,"id":20392,"width":25,"height":45},{"x":25,"y":135,"fileNum":119,"id":20393,"width":25,"height":45},{"x":50,"y":135,"fileNum":119,"id":20394,"width":25,"height":45},{"x":75,"y":135,"fileNum":119,"id":20395,"width":25,"height":45},{"x":100,"y":135,"fileNum":119,"id":20396,"width":25,"height":45},{"x":0,"y":0,"fileNum":15112,"id":20401,"width":79,"height":120},{"x":79,"y":0,"fileNum":15112,"id":20402,"width":79,"height":120},{"x":158,"y":0,"fileNum":15112,"id":20403,"width":79,"height":120},{"x":237,"y":0,"fileNum":15112,"id":20404,"width":79,"height":120},{"x":0,"y":0,"fileNum":121,"id":20406,"width":32,"height":32},{"x":0,"y":0,"fileNum":120,"id":20407,"width":25,"height":45},{"x":25,"y":0,"fileNum":120,"id":20408,"width":25,"height":45},{"x":50,"y":0,"fileNum":120,"id":20409,"width":25,"height":45},{"x":75,"y":0,"fileNum":120,"id":20410,"width":25,"height":45},{"x":100,"y":0,"fileNum":120,"id":20411,"width":25,"height":45},{"x":125,"y":0,"fileNum":120,"id":20412,"width":25,"height":45},{"x":0,"y":45,"fileNum":120,"id":20413,"width":25,"height":45},{"x":25,"y":45,"fileNum":120,"id":20414,"width":25,"height":45},{"x":50,"y":45,"fileNum":120,"id":20415,"width":25,"height":45},{"x":75,"y":45,"fileNum":120,"id":20416,"width":25,"height":45},{"x":100,"y":45,"fileNum":120,"id":20417,"width":25,"height":45},{"x":125,"y":45,"fileNum":120,"id":20418,"width":25,"height":45},{"x":0,"y":90,"fileNum":120,"id":20419,"width":25,"height":45},{"x":25,"y":90,"fileNum":120,"id":20420,"width":25,"height":45},{"x":50,"y":90,"fileNum":120,"id":20421,"width":25,"height":45},{"x":75,"y":90,"fileNum":120,"id":20422,"width":25,"height":45},{"x":100,"y":90,"fileNum":120,"id":20423,"width":25,"height":45},{"x":0,"y":135,"fileNum":120,"id":20424,"width":25,"height":45},{"x":25,"y":135,"fileNum":120,"id":20425,"width":25,"height":45},{"x":50,"y":135,"fileNum":120,"id":20426,"width":25,"height":45},{"x":75,"y":135,"fileNum":120,"id":20427,"width":25,"height":45},{"x":100,"y":135,"fileNum":120,"id":20428,"width":25,"height":45},{"x":0,"y":0,"fileNum":123,"id":20433,"width":32,"height":32},{"x":0,"y":0,"fileNum":122,"id":20434,"width":25,"height":45},{"x":25,"y":0,"fileNum":122,"id":20435,"width":25,"height":45},{"x":50,"y":0,"fileNum":122,"id":20436,"width":25,"height":45},{"x":75,"y":0,"fileNum":122,"id":20437,"width":25,"height":45},{"x":100,"y":0,"fileNum":122,"id":20438,"width":25,"height":45},{"x":125,"y":0,"fileNum":122,"id":20439,"width":25,"height":45},{"x":0,"y":45,"fileNum":122,"id":20440,"width":25,"height":45},{"x":25,"y":45,"fileNum":122,"id":20441,"width":25,"height":45},{"x":50,"y":45,"fileNum":122,"id":20442,"width":25,"height":45},{"x":75,"y":45,"fileNum":122,"id":20443,"width":25,"height":45},{"x":100,"y":45,"fileNum":122,"id":20444,"width":25,"height":45},{"x":125,"y":45,"fileNum":122,"id":20445,"width":25,"height":45},{"x":0,"y":90,"fileNum":122,"id":20446,"width":25,"height":45},{"x":25,"y":90,"fileNum":122,"id":20447,"width":25,"height":45},{"x":50,"y":90,"fileNum":122,"id":20448,"width":25,"height":45},{"x":75,"y":90,"fileNum":122,"id":20449,"width":25,"height":45},{"x":100,"y":90,"fileNum":122,"id":20450,"width":25,"height":45},{"x":0,"y":135,"fileNum":122,"id":20451,"width":25,"height":45},{"x":25,"y":135,"fileNum":122,"id":20452,"width":25,"height":45},{"x":50,"y":135,"fileNum":122,"id":20453,"width":25,"height":45},{"x":75,"y":135,"fileNum":122,"id":20454,"width":25,"height":45},{"x":100,"y":135,"fileNum":122,"id":20455,"width":25,"height":45},{"x":0,"y":0,"fileNum":22003,"id":20460,"width":32,"height":32},{"x":0,"y":0,"fileNum":16032,"id":20461,"width":25,"height":45},{"x":25,"y":0,"fileNum":16032,"id":20462,"width":25,"height":45},{"x":50,"y":0,"fileNum":16032,"id":20463,"width":25,"height":45},{"x":75,"y":0,"fileNum":16032,"id":20464,"width":25,"height":45},{"x":100,"y":0,"fileNum":16032,"id":20465,"width":25,"height":45},{"x":125,"y":0,"fileNum":16032,"id":20466,"width":25,"height":45},{"x":0,"y":45,"fileNum":16032,"id":20467,"width":25,"height":45},{"x":25,"y":45,"fileNum":16032,"id":20468,"width":25,"height":45},{"x":50,"y":45,"fileNum":16032,"id":20469,"width":25,"height":45},{"x":75,"y":45,"fileNum":16032,"id":20470,"width":25,"height":45},{"x":100,"y":45,"fileNum":16032,"id":20471,"width":25,"height":45},{"x":125,"y":45,"fileNum":16032,"id":20472,"width":25,"height":45},{"x":0,"y":90,"fileNum":16032,"id":20473,"width":25,"height":45},{"x":25,"y":90,"fileNum":16032,"id":20474,"width":25,"height":45},{"x":50,"y":90,"fileNum":16032,"id":20475,"width":25,"height":45},{"x":75,"y":90,"fileNum":16032,"id":20476,"width":25,"height":45},{"x":100,"y":90,"fileNum":16032,"id":20477,"width":25,"height":45},{"x":0,"y":135,"fileNum":16032,"id":20478,"width":25,"height":45},{"x":25,"y":135,"fileNum":16032,"id":20479,"width":25,"height":45},{"x":50,"y":135,"fileNum":16032,"id":20480,"width":25,"height":45},{"x":75,"y":135,"fileNum":16032,"id":20481,"width":25,"height":45},{"x":100,"y":135,"fileNum":16032,"id":20482,"width":25,"height":45},{"x":0,"y":0,"fileNum":3096,"id":20487,"width":145,"height":145},{"x":145,"y":0,"fileNum":3096,"id":20488,"width":145,"height":145},{"x":290,"y":0,"fileNum":3096,"id":20489,"width":145,"height":145},{"x":435,"y":0,"fileNum":3096,"id":20490,"width":145,"height":145},{"x":0,"y":145,"fileNum":3096,"id":20491,"width":145,"height":145},{"x":145,"y":145,"fileNum":3096,"id":20492,"width":145,"height":145},{"x":290,"y":145,"fileNum":3096,"id":20493,"width":145,"height":145},{"x":435,"y":145,"fileNum":3096,"id":20494,"width":145,"height":145},{"x":0,"y":290,"fileNum":3096,"id":20495,"width":145,"height":145},{"x":145,"y":290,"fileNum":3096,"id":20496,"width":145,"height":145},{"x":290,"y":290,"fileNum":3096,"id":20497,"width":145,"height":145},{"x":435,"y":290,"fileNum":3096,"id":20498,"width":145,"height":145},{"x":0,"y":435,"fileNum":3096,"id":20499,"width":145,"height":145},{"x":145,"y":435,"fileNum":3096,"id":20500,"width":145,"height":145},{"x":290,"y":435,"fileNum":3096,"id":20501,"width":145,"height":145},{"x":435,"y":435,"fileNum":3096,"id":20502,"width":145,"height":145},{"x":0,"y":0,"fileNum":19000,"id":20504,"width":32,"height":32},{"x":0,"y":0,"fileNum":19001,"id":20505,"width":32,"height":32},{"x":0,"y":0,"fileNum":19002,"id":20506,"width":32,"height":32},{"x":0,"y":0,"fileNum":19003,"id":20507,"width":32,"height":32},{"x":0,"y":0,"fileNum":19004,"id":20508,"width":32,"height":32},{"x":0,"y":0,"fileNum":19005,"id":20509,"width":32,"height":32},{"x":0,"y":0,"fileNum":16071,"id":20510,"width":25,"height":45},{"x":25,"y":0,"fileNum":16071,"id":20511,"width":25,"height":45},{"x":50,"y":0,"fileNum":16071,"id":20512,"width":25,"height":45},{"x":75,"y":0,"fileNum":16071,"id":20513,"width":25,"height":45},{"x":100,"y":0,"fileNum":16071,"id":20514,"width":25,"height":45},{"x":125,"y":0,"fileNum":16071,"id":20515,"width":25,"height":45},{"x":0,"y":45,"fileNum":16071,"id":20516,"width":25,"height":45},{"x":25,"y":45,"fileNum":16071,"id":20517,"width":25,"height":45},{"x":50,"y":45,"fileNum":16071,"id":20518,"width":25,"height":45},{"x":75,"y":45,"fileNum":16071,"id":20519,"width":25,"height":45},{"x":100,"y":45,"fileNum":16071,"id":20520,"width":25,"height":45},{"x":125,"y":45,"fileNum":16071,"id":20521,"width":25,"height":45},{"x":0,"y":90,"fileNum":16071,"id":20522,"width":25,"height":45},{"x":25,"y":90,"fileNum":16071,"id":20523,"width":25,"height":45},{"x":50,"y":90,"fileNum":16071,"id":20524,"width":25,"height":45},{"x":75,"y":90,"fileNum":16071,"id":20525,"width":25,"height":45},{"x":100,"y":90,"fileNum":16071,"id":20526,"width":25,"height":45},{"x":0,"y":135,"fileNum":16071,"id":20527,"width":25,"height":45},{"x":25,"y":135,"fileNum":16071,"id":20528,"width":25,"height":45},{"x":50,"y":135,"fileNum":16071,"id":20529,"width":25,"height":45},{"x":75,"y":135,"fileNum":16071,"id":20530,"width":25,"height":45},{"x":100,"y":135,"fileNum":16071,"id":20531,"width":25,"height":45},{"x":0,"y":0,"fileNum":586,"id":20536,"width":32,"height":32},{"x":0,"y":0,"fileNum":587,"id":20537,"width":25,"height":45},{"x":25,"y":0,"fileNum":587,"id":20538,"width":25,"height":45},{"x":50,"y":0,"fileNum":587,"id":20539,"width":25,"height":45},{"x":75,"y":0,"fileNum":587,"id":20540,"width":25,"height":45},{"x":100,"y":0,"fileNum":587,"id":20541,"width":25,"height":45},{"x":125,"y":0,"fileNum":587,"id":20542,"width":25,"height":45},{"x":0,"y":45,"fileNum":587,"id":20543,"width":25,"height":45},{"x":25,"y":45,"fileNum":587,"id":20544,"width":25,"height":45},{"x":50,"y":45,"fileNum":587,"id":20545,"width":25,"height":45},{"x":75,"y":45,"fileNum":587,"id":20546,"width":25,"height":45},{"x":100,"y":45,"fileNum":587,"id":20547,"width":25,"height":45},{"x":125,"y":45,"fileNum":587,"id":20548,"width":25,"height":45},{"x":0,"y":90,"fileNum":587,"id":20549,"width":25,"height":45},{"x":25,"y":90,"fileNum":587,"id":20550,"width":25,"height":45},{"x":50,"y":90,"fileNum":587,"id":20551,"width":25,"height":45},{"x":75,"y":90,"fileNum":587,"id":20552,"width":25,"height":45},{"x":100,"y":90,"fileNum":587,"id":20553,"width":25,"height":45},{"x":0,"y":135,"fileNum":587,"id":20554,"width":25,"height":45},{"x":25,"y":135,"fileNum":587,"id":20555,"width":25,"height":45},{"x":50,"y":135,"fileNum":587,"id":20556,"width":25,"height":45},{"x":75,"y":135,"fileNum":587,"id":20557,"width":25,"height":45},{"x":100,"y":135,"fileNum":587,"id":20558,"width":25,"height":45},{"x":0,"y":0,"fileNum":588,"id":20563,"width":32,"height":32},{"x":0,"y":0,"fileNum":589,"id":20564,"width":25,"height":45},{"x":25,"y":0,"fileNum":589,"id":20565,"width":25,"height":45},{"x":50,"y":0,"fileNum":589,"id":20566,"width":25,"height":45},{"x":75,"y":0,"fileNum":589,"id":20567,"width":25,"height":45},{"x":100,"y":0,"fileNum":589,"id":20568,"width":25,"height":45},{"x":125,"y":0,"fileNum":589,"id":20569,"width":25,"height":45},{"x":0,"y":45,"fileNum":589,"id":20570,"width":25,"height":45},{"x":25,"y":45,"fileNum":589,"id":20571,"width":25,"height":45},{"x":50,"y":45,"fileNum":589,"id":20572,"width":25,"height":45},{"x":75,"y":45,"fileNum":589,"id":20573,"width":25,"height":45},{"x":100,"y":45,"fileNum":589,"id":20574,"width":25,"height":45},{"x":125,"y":45,"fileNum":589,"id":20575,"width":25,"height":45},{"x":0,"y":90,"fileNum":589,"id":20576,"width":25,"height":45},{"x":25,"y":90,"fileNum":589,"id":20577,"width":25,"height":45},{"x":50,"y":90,"fileNum":589,"id":20578,"width":25,"height":45},{"x":75,"y":90,"fileNum":589,"id":20579,"width":25,"height":45},{"x":100,"y":90,"fileNum":589,"id":20580,"width":25,"height":45},{"x":0,"y":135,"fileNum":589,"id":20581,"width":25,"height":45},{"x":25,"y":135,"fileNum":589,"id":20582,"width":25,"height":45},{"x":50,"y":135,"fileNum":589,"id":20583,"width":25,"height":45},{"x":75,"y":135,"fileNum":589,"id":20584,"width":25,"height":45},{"x":100,"y":135,"fileNum":589,"id":20585,"width":25,"height":45},{"x":0,"y":0,"fileNum":590,"id":20590,"width":32,"height":32},{"x":0,"y":0,"fileNum":591,"id":20591,"width":25,"height":45},{"x":25,"y":0,"fileNum":591,"id":20592,"width":25,"height":45},{"x":50,"y":0,"fileNum":591,"id":20593,"width":25,"height":45},{"x":75,"y":0,"fileNum":591,"id":20594,"width":25,"height":45},{"x":100,"y":0,"fileNum":591,"id":20595,"width":25,"height":45},{"x":125,"y":0,"fileNum":591,"id":20596,"width":25,"height":45},{"x":0,"y":45,"fileNum":591,"id":20597,"width":25,"height":45},{"x":25,"y":45,"fileNum":591,"id":20598,"width":25,"height":45},{"x":50,"y":45,"fileNum":591,"id":20599,"width":25,"height":45},{"x":75,"y":45,"fileNum":591,"id":20600,"width":25,"height":45},{"x":100,"y":45,"fileNum":591,"id":20601,"width":25,"height":45},{"x":125,"y":45,"fileNum":591,"id":20602,"width":25,"height":45},{"x":0,"y":90,"fileNum":591,"id":20603,"width":25,"height":45},{"x":25,"y":90,"fileNum":591,"id":20604,"width":25,"height":45},{"x":50,"y":90,"fileNum":591,"id":20605,"width":25,"height":45},{"x":75,"y":90,"fileNum":591,"id":20606,"width":25,"height":45},{"x":100,"y":90,"fileNum":591,"id":20607,"width":25,"height":45},{"x":0,"y":135,"fileNum":591,"id":20608,"width":25,"height":45},{"x":25,"y":135,"fileNum":591,"id":20609,"width":25,"height":45},{"x":50,"y":135,"fileNum":591,"id":20610,"width":25,"height":45},{"x":75,"y":135,"fileNum":591,"id":20611,"width":25,"height":45},{"x":100,"y":135,"fileNum":591,"id":20612,"width":25,"height":45},{"x":0,"y":0,"fileNum":592,"id":20617,"width":32,"height":32},{"x":0,"y":0,"fileNum":593,"id":20618,"width":25,"height":45},{"x":25,"y":0,"fileNum":593,"id":20619,"width":25,"height":45},{"x":50,"y":0,"fileNum":593,"id":20620,"width":25,"height":45},{"x":75,"y":0,"fileNum":593,"id":20621,"width":25,"height":45},{"x":100,"y":0,"fileNum":593,"id":20622,"width":25,"height":45},{"x":125,"y":0,"fileNum":593,"id":20623,"width":25,"height":45},{"x":0,"y":45,"fileNum":593,"id":20624,"width":25,"height":45},{"x":25,"y":45,"fileNum":593,"id":20625,"width":25,"height":45},{"x":50,"y":45,"fileNum":593,"id":20626,"width":25,"height":45},{"x":75,"y":45,"fileNum":593,"id":20627,"width":25,"height":45},{"x":100,"y":45,"fileNum":593,"id":20628,"width":25,"height":45},{"x":125,"y":45,"fileNum":593,"id":20629,"width":25,"height":45},{"x":0,"y":90,"fileNum":593,"id":20630,"width":25,"height":45},{"x":25,"y":90,"fileNum":593,"id":20631,"width":25,"height":45},{"x":50,"y":90,"fileNum":593,"id":20632,"width":25,"height":45},{"x":75,"y":90,"fileNum":593,"id":20633,"width":25,"height":45},{"x":100,"y":90,"fileNum":593,"id":20634,"width":25,"height":45},{"x":0,"y":135,"fileNum":593,"id":20635,"width":25,"height":45},{"x":25,"y":135,"fileNum":593,"id":20636,"width":25,"height":45},{"x":50,"y":135,"fileNum":593,"id":20637,"width":25,"height":45},{"x":75,"y":135,"fileNum":593,"id":20638,"width":25,"height":45},{"x":100,"y":135,"fileNum":593,"id":20639,"width":25,"height":45},{"x":0,"y":0,"fileNum":594,"id":20644,"width":32,"height":32},{"x":0,"y":0,"fileNum":595,"id":20645,"width":25,"height":45},{"x":25,"y":0,"fileNum":595,"id":20646,"width":25,"height":45},{"x":50,"y":0,"fileNum":595,"id":20647,"width":25,"height":45},{"x":75,"y":0,"fileNum":595,"id":20648,"width":25,"height":45},{"x":100,"y":0,"fileNum":595,"id":20649,"width":25,"height":45},{"x":125,"y":0,"fileNum":595,"id":20650,"width":25,"height":45},{"x":0,"y":45,"fileNum":595,"id":20651,"width":25,"height":45},{"x":25,"y":45,"fileNum":595,"id":20652,"width":25,"height":45},{"x":50,"y":45,"fileNum":595,"id":20653,"width":25,"height":45},{"x":75,"y":45,"fileNum":595,"id":20654,"width":25,"height":45},{"x":100,"y":45,"fileNum":595,"id":20655,"width":25,"height":45},{"x":125,"y":45,"fileNum":595,"id":20656,"width":25,"height":45},{"x":0,"y":90,"fileNum":595,"id":20657,"width":25,"height":45},{"x":25,"y":90,"fileNum":595,"id":20658,"width":25,"height":45},{"x":50,"y":90,"fileNum":595,"id":20659,"width":25,"height":45},{"x":75,"y":90,"fileNum":595,"id":20660,"width":25,"height":45},{"x":100,"y":90,"fileNum":595,"id":20661,"width":25,"height":45},{"x":0,"y":135,"fileNum":595,"id":20662,"width":25,"height":45},{"x":25,"y":135,"fileNum":595,"id":20663,"width":25,"height":45},{"x":50,"y":135,"fileNum":595,"id":20664,"width":25,"height":45},{"x":75,"y":135,"fileNum":595,"id":20665,"width":25,"height":45},{"x":100,"y":135,"fileNum":595,"id":20666,"width":25,"height":45},{"x":0,"y":0,"fileNum":596,"id":20671,"width":32,"height":32},{"x":0,"y":0,"fileNum":597,"id":20672,"width":25,"height":45},{"x":25,"y":0,"fileNum":597,"id":20673,"width":25,"height":45},{"x":50,"y":0,"fileNum":597,"id":20674,"width":25,"height":45},{"x":75,"y":0,"fileNum":597,"id":20675,"width":25,"height":45},{"x":100,"y":0,"fileNum":597,"id":20676,"width":25,"height":45},{"x":125,"y":0,"fileNum":597,"id":20677,"width":25,"height":45},{"x":0,"y":45,"fileNum":597,"id":20678,"width":25,"height":45},{"x":25,"y":45,"fileNum":597,"id":20679,"width":25,"height":45},{"x":50,"y":45,"fileNum":597,"id":20680,"width":25,"height":45},{"x":75,"y":45,"fileNum":597,"id":20681,"width":25,"height":45},{"x":100,"y":45,"fileNum":597,"id":20682,"width":25,"height":45},{"x":125,"y":45,"fileNum":597,"id":20683,"width":25,"height":45},{"x":0,"y":90,"fileNum":597,"id":20684,"width":25,"height":45},{"x":25,"y":90,"fileNum":597,"id":20685,"width":25,"height":45},{"x":50,"y":90,"fileNum":597,"id":20686,"width":25,"height":45},{"x":75,"y":90,"fileNum":597,"id":20687,"width":25,"height":45},{"x":100,"y":90,"fileNum":597,"id":20688,"width":25,"height":45},{"x":0,"y":135,"fileNum":597,"id":20689,"width":25,"height":45},{"x":25,"y":135,"fileNum":597,"id":20690,"width":25,"height":45},{"x":50,"y":135,"fileNum":597,"id":20691,"width":25,"height":45},{"x":75,"y":135,"fileNum":597,"id":20692,"width":25,"height":45},{"x":100,"y":135,"fileNum":597,"id":20693,"width":25,"height":45},{"x":0,"y":0,"fileNum":598,"id":20698,"width":32,"height":32},{"x":0,"y":0,"fileNum":599,"id":20699,"width":25,"height":45},{"x":25,"y":0,"fileNum":599,"id":20700,"width":25,"height":45},{"x":50,"y":0,"fileNum":599,"id":20701,"width":25,"height":45},{"x":75,"y":0,"fileNum":599,"id":20702,"width":25,"height":45},{"x":100,"y":0,"fileNum":599,"id":20703,"width":25,"height":45},{"x":125,"y":0,"fileNum":599,"id":20704,"width":25,"height":45},{"x":0,"y":45,"fileNum":599,"id":20705,"width":25,"height":45},{"x":25,"y":45,"fileNum":599,"id":20706,"width":25,"height":45},{"x":50,"y":45,"fileNum":599,"id":20707,"width":25,"height":45},{"x":75,"y":45,"fileNum":599,"id":20708,"width":25,"height":45},{"x":100,"y":45,"fileNum":599,"id":20709,"width":25,"height":45},{"x":125,"y":45,"fileNum":599,"id":20710,"width":25,"height":45},{"x":0,"y":90,"fileNum":599,"id":20711,"width":25,"height":45},{"x":25,"y":90,"fileNum":599,"id":20712,"width":25,"height":45},{"x":50,"y":90,"fileNum":599,"id":20713,"width":25,"height":45},{"x":75,"y":90,"fileNum":599,"id":20714,"width":25,"height":45},{"x":100,"y":90,"fileNum":599,"id":20715,"width":25,"height":45},{"x":0,"y":135,"fileNum":599,"id":20716,"width":25,"height":45},{"x":25,"y":135,"fileNum":599,"id":20717,"width":25,"height":45},{"x":50,"y":135,"fileNum":599,"id":20718,"width":25,"height":45},{"x":75,"y":135,"fileNum":599,"id":20719,"width":25,"height":45},{"x":100,"y":135,"fileNum":599,"id":20720,"width":25,"height":45},{"x":0,"y":0,"fileNum":600,"id":20725,"width":32,"height":32},{"x":0,"y":0,"fileNum":601,"id":20726,"width":25,"height":45},{"x":25,"y":0,"fileNum":601,"id":20727,"width":25,"height":45},{"x":50,"y":0,"fileNum":601,"id":20728,"width":25,"height":45},{"x":75,"y":0,"fileNum":601,"id":20729,"width":25,"height":45},{"x":100,"y":0,"fileNum":601,"id":20730,"width":25,"height":45},{"x":125,"y":0,"fileNum":601,"id":20731,"width":25,"height":45},{"x":0,"y":45,"fileNum":601,"id":20732,"width":25,"height":45},{"x":25,"y":45,"fileNum":601,"id":20733,"width":25,"height":45},{"x":50,"y":45,"fileNum":601,"id":20734,"width":25,"height":45},{"x":75,"y":45,"fileNum":601,"id":20735,"width":25,"height":45},{"x":100,"y":45,"fileNum":601,"id":20736,"width":25,"height":45},{"x":125,"y":45,"fileNum":601,"id":20737,"width":25,"height":45},{"x":0,"y":90,"fileNum":601,"id":20738,"width":25,"height":45},{"x":25,"y":90,"fileNum":601,"id":20739,"width":25,"height":45},{"x":50,"y":90,"fileNum":601,"id":20740,"width":25,"height":45},{"x":75,"y":90,"fileNum":601,"id":20741,"width":25,"height":45},{"x":100,"y":90,"fileNum":601,"id":20742,"width":25,"height":45},{"x":0,"y":135,"fileNum":601,"id":20743,"width":25,"height":45},{"x":25,"y":135,"fileNum":601,"id":20744,"width":25,"height":45},{"x":50,"y":135,"fileNum":601,"id":20745,"width":25,"height":45},{"x":75,"y":135,"fileNum":601,"id":20746,"width":25,"height":45},{"x":100,"y":135,"fileNum":601,"id":20747,"width":25,"height":45},{"x":0,"y":0,"fileNum":602,"id":20752,"width":32,"height":32},{"x":0,"y":0,"fileNum":603,"id":20753,"width":25,"height":45},{"x":25,"y":0,"fileNum":603,"id":20754,"width":25,"height":45},{"x":50,"y":0,"fileNum":603,"id":20755,"width":25,"height":45},{"x":75,"y":0,"fileNum":603,"id":20756,"width":25,"height":45},{"x":100,"y":0,"fileNum":603,"id":20757,"width":25,"height":45},{"x":125,"y":0,"fileNum":603,"id":20758,"width":25,"height":45},{"x":0,"y":45,"fileNum":603,"id":20759,"width":25,"height":45},{"x":25,"y":45,"fileNum":603,"id":20760,"width":25,"height":45},{"x":50,"y":45,"fileNum":603,"id":20761,"width":25,"height":45},{"x":75,"y":45,"fileNum":603,"id":20762,"width":25,"height":45},{"x":100,"y":45,"fileNum":603,"id":20763,"width":25,"height":45},{"x":125,"y":45,"fileNum":603,"id":20764,"width":25,"height":45},{"x":0,"y":90,"fileNum":603,"id":20765,"width":25,"height":45},{"x":25,"y":90,"fileNum":603,"id":20766,"width":25,"height":45},{"x":50,"y":90,"fileNum":603,"id":20767,"width":25,"height":45},{"x":75,"y":90,"fileNum":603,"id":20768,"width":25,"height":45},{"x":100,"y":90,"fileNum":603,"id":20769,"width":25,"height":45},{"x":0,"y":135,"fileNum":603,"id":20770,"width":25,"height":45},{"x":25,"y":135,"fileNum":603,"id":20771,"width":25,"height":45},{"x":50,"y":135,"fileNum":603,"id":20772,"width":25,"height":45},{"x":75,"y":135,"fileNum":603,"id":20773,"width":25,"height":45},{"x":100,"y":135,"fileNum":603,"id":20774,"width":25,"height":45},{"x":0,"y":0,"fileNum":604,"id":20779,"width":32,"height":32},{"x":0,"y":0,"fileNum":605,"id":20780,"width":25,"height":45},{"x":25,"y":0,"fileNum":605,"id":20781,"width":25,"height":45},{"x":50,"y":0,"fileNum":605,"id":20782,"width":25,"height":45},{"x":75,"y":0,"fileNum":605,"id":20783,"width":25,"height":45},{"x":100,"y":0,"fileNum":605,"id":20784,"width":25,"height":45},{"x":125,"y":0,"fileNum":605,"id":20785,"width":25,"height":45},{"x":0,"y":45,"fileNum":605,"id":20786,"width":25,"height":45},{"x":25,"y":45,"fileNum":605,"id":20787,"width":25,"height":45},{"x":50,"y":45,"fileNum":605,"id":20788,"width":25,"height":45},{"x":75,"y":45,"fileNum":605,"id":20789,"width":25,"height":45},{"x":100,"y":45,"fileNum":605,"id":20790,"width":25,"height":45},{"x":125,"y":45,"fileNum":605,"id":20791,"width":25,"height":45},{"x":0,"y":90,"fileNum":605,"id":20792,"width":25,"height":45},{"x":25,"y":90,"fileNum":605,"id":20793,"width":25,"height":45},{"x":50,"y":90,"fileNum":605,"id":20794,"width":25,"height":45},{"x":75,"y":90,"fileNum":605,"id":20795,"width":25,"height":45},{"x":100,"y":90,"fileNum":605,"id":20796,"width":25,"height":45},{"x":0,"y":135,"fileNum":605,"id":20797,"width":25,"height":45},{"x":25,"y":135,"fileNum":605,"id":20798,"width":25,"height":45},{"x":50,"y":135,"fileNum":605,"id":20799,"width":25,"height":45},{"x":75,"y":135,"fileNum":605,"id":20800,"width":25,"height":45},{"x":100,"y":135,"fileNum":605,"id":20801,"width":25,"height":45},{"x":0,"y":0,"fileNum":606,"id":20806,"width":32,"height":32},{"x":0,"y":0,"fileNum":607,"id":20807,"width":25,"height":45},{"x":25,"y":0,"fileNum":607,"id":20808,"width":25,"height":45},{"x":50,"y":0,"fileNum":607,"id":20809,"width":25,"height":45},{"x":75,"y":0,"fileNum":607,"id":20810,"width":25,"height":45},{"x":100,"y":0,"fileNum":607,"id":20811,"width":25,"height":45},{"x":125,"y":0,"fileNum":607,"id":20812,"width":25,"height":45},{"x":0,"y":45,"fileNum":607,"id":20813,"width":25,"height":45},{"x":25,"y":45,"fileNum":607,"id":20814,"width":25,"height":45},{"x":50,"y":45,"fileNum":607,"id":20815,"width":25,"height":45},{"x":75,"y":45,"fileNum":607,"id":20816,"width":25,"height":45},{"x":100,"y":45,"fileNum":607,"id":20817,"width":25,"height":45},{"x":125,"y":45,"fileNum":607,"id":20818,"width":25,"height":45},{"x":0,"y":90,"fileNum":607,"id":20819,"width":25,"height":45},{"x":25,"y":90,"fileNum":607,"id":20820,"width":25,"height":45},{"x":50,"y":90,"fileNum":607,"id":20821,"width":25,"height":45},{"x":75,"y":90,"fileNum":607,"id":20822,"width":25,"height":45},{"x":100,"y":90,"fileNum":607,"id":20823,"width":25,"height":45},{"x":0,"y":135,"fileNum":607,"id":20824,"width":25,"height":45},{"x":25,"y":135,"fileNum":607,"id":20825,"width":25,"height":45},{"x":50,"y":135,"fileNum":607,"id":20826,"width":25,"height":45},{"x":75,"y":135,"fileNum":607,"id":20827,"width":25,"height":45},{"x":100,"y":135,"fileNum":607,"id":20828,"width":25,"height":45},{"x":0,"y":0,"fileNum":608,"id":20833,"width":32,"height":32},{"x":0,"y":0,"fileNum":609,"id":20834,"width":25,"height":45},{"x":25,"y":0,"fileNum":609,"id":20835,"width":25,"height":45},{"x":50,"y":0,"fileNum":609,"id":20836,"width":25,"height":45},{"x":75,"y":0,"fileNum":609,"id":20837,"width":25,"height":45},{"x":100,"y":0,"fileNum":609,"id":20838,"width":25,"height":45},{"x":125,"y":0,"fileNum":609,"id":20839,"width":25,"height":45},{"x":0,"y":45,"fileNum":609,"id":20840,"width":25,"height":45},{"x":25,"y":45,"fileNum":609,"id":20841,"width":25,"height":45},{"x":50,"y":45,"fileNum":609,"id":20842,"width":25,"height":45},{"x":75,"y":45,"fileNum":609,"id":20843,"width":25,"height":45},{"x":100,"y":45,"fileNum":609,"id":20844,"width":25,"height":45},{"x":125,"y":45,"fileNum":609,"id":20845,"width":25,"height":45},{"x":0,"y":90,"fileNum":609,"id":20846,"width":25,"height":45},{"x":25,"y":90,"fileNum":609,"id":20847,"width":25,"height":45},{"x":50,"y":90,"fileNum":609,"id":20848,"width":25,"height":45},{"x":75,"y":90,"fileNum":609,"id":20849,"width":25,"height":45},{"x":100,"y":90,"fileNum":609,"id":20850,"width":25,"height":45},{"x":0,"y":135,"fileNum":609,"id":20851,"width":25,"height":45},{"x":25,"y":135,"fileNum":609,"id":20852,"width":25,"height":45},{"x":50,"y":135,"fileNum":609,"id":20853,"width":25,"height":45},{"x":75,"y":135,"fileNum":609,"id":20854,"width":25,"height":45},{"x":100,"y":135,"fileNum":609,"id":20855,"width":25,"height":45},{"x":0,"y":0,"fileNum":610,"id":20860,"width":32,"height":32},{"x":0,"y":0,"fileNum":611,"id":20861,"width":25,"height":45},{"x":25,"y":0,"fileNum":611,"id":20862,"width":25,"height":45},{"x":50,"y":0,"fileNum":611,"id":20863,"width":25,"height":45},{"x":75,"y":0,"fileNum":611,"id":20864,"width":25,"height":45},{"x":100,"y":0,"fileNum":611,"id":20865,"width":25,"height":45},{"x":125,"y":0,"fileNum":611,"id":20866,"width":25,"height":45},{"x":0,"y":45,"fileNum":611,"id":20867,"width":25,"height":45},{"x":25,"y":45,"fileNum":611,"id":20868,"width":25,"height":45},{"x":50,"y":45,"fileNum":611,"id":20869,"width":25,"height":45},{"x":75,"y":45,"fileNum":611,"id":20870,"width":25,"height":45},{"x":100,"y":45,"fileNum":611,"id":20871,"width":25,"height":45},{"x":125,"y":45,"fileNum":611,"id":20872,"width":25,"height":45},{"x":0,"y":90,"fileNum":611,"id":20873,"width":25,"height":45},{"x":25,"y":90,"fileNum":611,"id":20874,"width":25,"height":45},{"x":50,"y":90,"fileNum":611,"id":20875,"width":25,"height":45},{"x":75,"y":90,"fileNum":611,"id":20876,"width":25,"height":45},{"x":100,"y":90,"fileNum":611,"id":20877,"width":25,"height":45},{"x":0,"y":135,"fileNum":611,"id":20878,"width":25,"height":45},{"x":25,"y":135,"fileNum":611,"id":20879,"width":25,"height":45},{"x":50,"y":135,"fileNum":611,"id":20880,"width":25,"height":45},{"x":75,"y":135,"fileNum":611,"id":20881,"width":25,"height":45},{"x":100,"y":135,"fileNum":611,"id":20882,"width":25,"height":45},{"x":0,"y":0,"fileNum":612,"id":20887,"width":32,"height":32},{"x":0,"y":0,"fileNum":613,"id":20888,"width":25,"height":45},{"x":25,"y":0,"fileNum":613,"id":20889,"width":25,"height":45},{"x":50,"y":0,"fileNum":613,"id":20890,"width":25,"height":45},{"x":75,"y":0,"fileNum":613,"id":20891,"width":25,"height":45},{"x":100,"y":0,"fileNum":613,"id":20892,"width":25,"height":45},{"x":125,"y":0,"fileNum":613,"id":20893,"width":25,"height":45},{"x":0,"y":45,"fileNum":613,"id":20894,"width":25,"height":45},{"x":25,"y":45,"fileNum":613,"id":20895,"width":25,"height":45},{"x":50,"y":45,"fileNum":613,"id":20896,"width":25,"height":45},{"x":75,"y":45,"fileNum":613,"id":20897,"width":25,"height":45},{"x":100,"y":45,"fileNum":613,"id":20898,"width":25,"height":45},{"x":125,"y":45,"fileNum":613,"id":20899,"width":25,"height":45},{"x":0,"y":90,"fileNum":613,"id":20900,"width":25,"height":45},{"x":25,"y":90,"fileNum":613,"id":20901,"width":25,"height":45},{"x":50,"y":90,"fileNum":613,"id":20902,"width":25,"height":45},{"x":75,"y":90,"fileNum":613,"id":20903,"width":25,"height":45},{"x":100,"y":90,"fileNum":613,"id":20904,"width":25,"height":45},{"x":0,"y":135,"fileNum":613,"id":20905,"width":25,"height":45},{"x":25,"y":135,"fileNum":613,"id":20906,"width":25,"height":45},{"x":50,"y":135,"fileNum":613,"id":20907,"width":25,"height":45},{"x":75,"y":135,"fileNum":613,"id":20908,"width":25,"height":45},{"x":100,"y":135,"fileNum":613,"id":20909,"width":25,"height":45},{"x":0,"y":0,"fileNum":614,"id":20914,"width":32,"height":32},{"x":0,"y":0,"fileNum":615,"id":20915,"width":25,"height":45},{"x":25,"y":0,"fileNum":615,"id":20916,"width":25,"height":45},{"x":50,"y":0,"fileNum":615,"id":20917,"width":25,"height":45},{"x":75,"y":0,"fileNum":615,"id":20918,"width":25,"height":45},{"x":100,"y":0,"fileNum":615,"id":20919,"width":25,"height":45},{"x":125,"y":0,"fileNum":615,"id":20920,"width":25,"height":45},{"x":0,"y":45,"fileNum":615,"id":20921,"width":25,"height":45},{"x":25,"y":45,"fileNum":615,"id":20922,"width":25,"height":45},{"x":50,"y":45,"fileNum":615,"id":20923,"width":25,"height":45},{"x":75,"y":45,"fileNum":615,"id":20924,"width":25,"height":45},{"x":100,"y":45,"fileNum":615,"id":20925,"width":25,"height":45},{"x":125,"y":45,"fileNum":615,"id":20926,"width":25,"height":45},{"x":0,"y":90,"fileNum":615,"id":20927,"width":25,"height":45},{"x":25,"y":90,"fileNum":615,"id":20928,"width":25,"height":45},{"x":50,"y":90,"fileNum":615,"id":20929,"width":25,"height":45},{"x":75,"y":90,"fileNum":615,"id":20930,"width":25,"height":45},{"x":100,"y":90,"fileNum":615,"id":20931,"width":25,"height":45},{"x":0,"y":135,"fileNum":615,"id":20932,"width":25,"height":45},{"x":25,"y":135,"fileNum":615,"id":20933,"width":25,"height":45},{"x":50,"y":135,"fileNum":615,"id":20934,"width":25,"height":45},{"x":75,"y":135,"fileNum":615,"id":20935,"width":25,"height":45},{"x":100,"y":135,"fileNum":615,"id":20936,"width":25,"height":45},{"x":0,"y":0,"fileNum":616,"id":20941,"width":32,"height":32},{"x":0,"y":0,"fileNum":617,"id":20942,"width":25,"height":45},{"x":25,"y":0,"fileNum":617,"id":20943,"width":25,"height":45},{"x":50,"y":0,"fileNum":617,"id":20944,"width":25,"height":45},{"x":75,"y":0,"fileNum":617,"id":20945,"width":25,"height":45},{"x":100,"y":0,"fileNum":617,"id":20946,"width":25,"height":45},{"x":125,"y":0,"fileNum":617,"id":20947,"width":25,"height":45},{"x":0,"y":45,"fileNum":617,"id":20948,"width":25,"height":45},{"x":25,"y":45,"fileNum":617,"id":20949,"width":25,"height":45},{"x":50,"y":45,"fileNum":617,"id":20950,"width":25,"height":45},{"x":75,"y":45,"fileNum":617,"id":20951,"width":25,"height":45},{"x":100,"y":45,"fileNum":617,"id":20952,"width":25,"height":45},{"x":125,"y":45,"fileNum":617,"id":20953,"width":25,"height":45},{"x":0,"y":90,"fileNum":617,"id":20954,"width":25,"height":45},{"x":25,"y":90,"fileNum":617,"id":20955,"width":25,"height":45},{"x":50,"y":90,"fileNum":617,"id":20956,"width":25,"height":45},{"x":75,"y":90,"fileNum":617,"id":20957,"width":25,"height":45},{"x":100,"y":90,"fileNum":617,"id":20958,"width":25,"height":45},{"x":0,"y":135,"fileNum":617,"id":20959,"width":25,"height":45},{"x":25,"y":135,"fileNum":617,"id":20960,"width":25,"height":45},{"x":50,"y":135,"fileNum":617,"id":20961,"width":25,"height":45},{"x":75,"y":135,"fileNum":617,"id":20962,"width":25,"height":45},{"x":100,"y":135,"fileNum":617,"id":20963,"width":25,"height":45},{"x":0,"y":0,"fileNum":618,"id":20968,"width":32,"height":32},{"x":0,"y":0,"fileNum":619,"id":20969,"width":25,"height":45},{"x":25,"y":0,"fileNum":619,"id":20970,"width":25,"height":45},{"x":50,"y":0,"fileNum":619,"id":20971,"width":25,"height":45},{"x":75,"y":0,"fileNum":619,"id":20972,"width":25,"height":45},{"x":100,"y":0,"fileNum":619,"id":20973,"width":25,"height":45},{"x":125,"y":0,"fileNum":619,"id":20974,"width":25,"height":45},{"x":0,"y":45,"fileNum":619,"id":20975,"width":25,"height":45},{"x":25,"y":45,"fileNum":619,"id":20976,"width":25,"height":45},{"x":50,"y":45,"fileNum":619,"id":20977,"width":25,"height":45},{"x":75,"y":45,"fileNum":619,"id":20978,"width":25,"height":45},{"x":100,"y":45,"fileNum":619,"id":20979,"width":25,"height":45},{"x":125,"y":45,"fileNum":619,"id":20980,"width":25,"height":45},{"x":0,"y":90,"fileNum":619,"id":20981,"width":25,"height":45},{"x":25,"y":90,"fileNum":619,"id":20982,"width":25,"height":45},{"x":50,"y":90,"fileNum":619,"id":20983,"width":25,"height":45},{"x":75,"y":90,"fileNum":619,"id":20984,"width":25,"height":45},{"x":100,"y":90,"fileNum":619,"id":20985,"width":25,"height":45},{"x":0,"y":135,"fileNum":619,"id":20986,"width":25,"height":45},{"x":25,"y":135,"fileNum":619,"id":20987,"width":25,"height":45},{"x":50,"y":135,"fileNum":619,"id":20988,"width":25,"height":45},{"x":75,"y":135,"fileNum":619,"id":20989,"width":25,"height":45},{"x":100,"y":135,"fileNum":619,"id":20990,"width":25,"height":45},{"x":0,"y":0,"fileNum":620,"id":20995,"width":32,"height":32},{"x":0,"y":0,"fileNum":621,"id":20996,"width":25,"height":45},{"x":25,"y":0,"fileNum":621,"id":20997,"width":25,"height":45},{"x":50,"y":0,"fileNum":621,"id":20998,"width":25,"height":45},{"x":75,"y":0,"fileNum":621,"id":20999,"width":25,"height":45},{"x":100,"y":0,"fileNum":621,"id":21000,"width":25,"height":45},{"x":125,"y":0,"fileNum":621,"id":21001,"width":25,"height":45},{"x":0,"y":45,"fileNum":621,"id":21002,"width":25,"height":45},{"x":25,"y":45,"fileNum":621,"id":21003,"width":25,"height":45},{"x":50,"y":45,"fileNum":621,"id":21004,"width":25,"height":45},{"x":75,"y":45,"fileNum":621,"id":21005,"width":25,"height":45},{"x":100,"y":45,"fileNum":621,"id":21006,"width":25,"height":45},{"x":125,"y":45,"fileNum":621,"id":21007,"width":25,"height":45},{"x":0,"y":90,"fileNum":621,"id":21008,"width":25,"height":45},{"x":25,"y":90,"fileNum":621,"id":21009,"width":25,"height":45},{"x":50,"y":90,"fileNum":621,"id":21010,"width":25,"height":45},{"x":75,"y":90,"fileNum":621,"id":21011,"width":25,"height":45},{"x":100,"y":90,"fileNum":621,"id":21012,"width":25,"height":45},{"x":0,"y":135,"fileNum":621,"id":21013,"width":25,"height":45},{"x":25,"y":135,"fileNum":621,"id":21014,"width":25,"height":45},{"x":50,"y":135,"fileNum":621,"id":21015,"width":25,"height":45},{"x":75,"y":135,"fileNum":621,"id":21016,"width":25,"height":45},{"x":100,"y":135,"fileNum":621,"id":21017,"width":25,"height":45},{"x":0,"y":0,"fileNum":622,"id":21022,"width":32,"height":32},{"x":0,"y":0,"fileNum":623,"id":21023,"width":25,"height":45},{"x":25,"y":0,"fileNum":623,"id":21024,"width":25,"height":45},{"x":50,"y":0,"fileNum":623,"id":21025,"width":25,"height":45},{"x":75,"y":0,"fileNum":623,"id":21026,"width":25,"height":45},{"x":100,"y":0,"fileNum":623,"id":21027,"width":25,"height":45},{"x":125,"y":0,"fileNum":623,"id":21028,"width":25,"height":45},{"x":0,"y":45,"fileNum":623,"id":21029,"width":25,"height":45},{"x":25,"y":45,"fileNum":623,"id":21030,"width":25,"height":45},{"x":50,"y":45,"fileNum":623,"id":21031,"width":25,"height":45},{"x":75,"y":45,"fileNum":623,"id":21032,"width":25,"height":45},{"x":100,"y":45,"fileNum":623,"id":21033,"width":25,"height":45},{"x":125,"y":45,"fileNum":623,"id":21034,"width":25,"height":45},{"x":0,"y":90,"fileNum":623,"id":21035,"width":25,"height":45},{"x":25,"y":90,"fileNum":623,"id":21036,"width":25,"height":45},{"x":50,"y":90,"fileNum":623,"id":21037,"width":25,"height":45},{"x":75,"y":90,"fileNum":623,"id":21038,"width":25,"height":45},{"x":100,"y":90,"fileNum":623,"id":21039,"width":25,"height":45},{"x":0,"y":135,"fileNum":623,"id":21040,"width":25,"height":45},{"x":25,"y":135,"fileNum":623,"id":21041,"width":25,"height":45},{"x":50,"y":135,"fileNum":623,"id":21042,"width":25,"height":45},{"x":75,"y":135,"fileNum":623,"id":21043,"width":25,"height":45},{"x":100,"y":135,"fileNum":623,"id":21044,"width":25,"height":45},{"x":0,"y":0,"fileNum":624,"id":21049,"width":32,"height":32},{"x":0,"y":0,"fileNum":625,"id":21050,"width":25,"height":45},{"x":25,"y":0,"fileNum":625,"id":21051,"width":25,"height":45},{"x":50,"y":0,"fileNum":625,"id":21052,"width":25,"height":45},{"x":75,"y":0,"fileNum":625,"id":21053,"width":25,"height":45},{"x":100,"y":0,"fileNum":625,"id":21054,"width":25,"height":45},{"x":125,"y":0,"fileNum":625,"id":21055,"width":25,"height":45},{"x":0,"y":45,"fileNum":625,"id":21056,"width":25,"height":45},{"x":25,"y":45,"fileNum":625,"id":21057,"width":25,"height":45},{"x":50,"y":45,"fileNum":625,"id":21058,"width":25,"height":45},{"x":75,"y":45,"fileNum":625,"id":21059,"width":25,"height":45},{"x":100,"y":45,"fileNum":625,"id":21060,"width":25,"height":45},{"x":125,"y":45,"fileNum":625,"id":21061,"width":25,"height":45},{"x":0,"y":90,"fileNum":625,"id":21062,"width":25,"height":45},{"x":25,"y":90,"fileNum":625,"id":21063,"width":25,"height":45},{"x":50,"y":90,"fileNum":625,"id":21064,"width":25,"height":45},{"x":75,"y":90,"fileNum":625,"id":21065,"width":25,"height":45},{"x":100,"y":90,"fileNum":625,"id":21066,"width":25,"height":45},{"x":0,"y":135,"fileNum":625,"id":21067,"width":25,"height":45},{"x":25,"y":135,"fileNum":625,"id":21068,"width":25,"height":45},{"x":50,"y":135,"fileNum":625,"id":21069,"width":25,"height":45},{"x":75,"y":135,"fileNum":625,"id":21070,"width":25,"height":45},{"x":100,"y":135,"fileNum":625,"id":21071,"width":25,"height":45},{"x":0,"y":0,"fileNum":626,"id":21076,"width":32,"height":32},{"x":0,"y":0,"fileNum":627,"id":21077,"width":25,"height":45},{"x":25,"y":0,"fileNum":627,"id":21078,"width":25,"height":45},{"x":50,"y":0,"fileNum":627,"id":21079,"width":25,"height":45},{"x":75,"y":0,"fileNum":627,"id":21080,"width":25,"height":45},{"x":100,"y":0,"fileNum":627,"id":21081,"width":25,"height":45},{"x":125,"y":0,"fileNum":627,"id":21082,"width":25,"height":45},{"x":0,"y":45,"fileNum":627,"id":21083,"width":25,"height":45},{"x":25,"y":45,"fileNum":627,"id":21084,"width":25,"height":45},{"x":50,"y":45,"fileNum":627,"id":21085,"width":25,"height":45},{"x":75,"y":45,"fileNum":627,"id":21086,"width":25,"height":45},{"x":100,"y":45,"fileNum":627,"id":21087,"width":25,"height":45},{"x":125,"y":45,"fileNum":627,"id":21088,"width":25,"height":45},{"x":0,"y":90,"fileNum":627,"id":21089,"width":25,"height":45},{"x":25,"y":90,"fileNum":627,"id":21090,"width":25,"height":45},{"x":50,"y":90,"fileNum":627,"id":21091,"width":25,"height":45},{"x":75,"y":90,"fileNum":627,"id":21092,"width":25,"height":45},{"x":100,"y":90,"fileNum":627,"id":21093,"width":25,"height":45},{"x":0,"y":135,"fileNum":627,"id":21094,"width":25,"height":45},{"x":25,"y":135,"fileNum":627,"id":21095,"width":25,"height":45},{"x":50,"y":135,"fileNum":627,"id":21096,"width":25,"height":45},{"x":75,"y":135,"fileNum":627,"id":21097,"width":25,"height":45},{"x":100,"y":135,"fileNum":627,"id":21098,"width":25,"height":45},{"x":0,"y":0,"fileNum":628,"id":21103,"width":32,"height":32},{"x":0,"y":0,"fileNum":629,"id":21104,"width":25,"height":45},{"x":25,"y":0,"fileNum":629,"id":21105,"width":25,"height":45},{"x":50,"y":0,"fileNum":629,"id":21106,"width":25,"height":45},{"x":75,"y":0,"fileNum":629,"id":21107,"width":25,"height":45},{"x":100,"y":0,"fileNum":629,"id":21108,"width":25,"height":45},{"x":125,"y":0,"fileNum":629,"id":21109,"width":25,"height":45},{"x":0,"y":45,"fileNum":629,"id":21110,"width":25,"height":45},{"x":25,"y":45,"fileNum":629,"id":21111,"width":25,"height":45},{"x":50,"y":45,"fileNum":629,"id":21112,"width":25,"height":45},{"x":75,"y":45,"fileNum":629,"id":21113,"width":25,"height":45},{"x":100,"y":45,"fileNum":629,"id":21114,"width":25,"height":45},{"x":125,"y":45,"fileNum":629,"id":21115,"width":25,"height":45},{"x":0,"y":90,"fileNum":629,"id":21116,"width":25,"height":45},{"x":25,"y":90,"fileNum":629,"id":21117,"width":25,"height":45},{"x":50,"y":90,"fileNum":629,"id":21118,"width":25,"height":45},{"x":75,"y":90,"fileNum":629,"id":21119,"width":25,"height":45},{"x":100,"y":90,"fileNum":629,"id":21120,"width":25,"height":45},{"x":0,"y":135,"fileNum":629,"id":21121,"width":25,"height":45},{"x":25,"y":135,"fileNum":629,"id":21122,"width":25,"height":45},{"x":50,"y":135,"fileNum":629,"id":21123,"width":25,"height":45},{"x":75,"y":135,"fileNum":629,"id":21124,"width":25,"height":45},{"x":100,"y":135,"fileNum":629,"id":21125,"width":25,"height":45},{"x":0,"y":0,"fileNum":630,"id":21130,"width":32,"height":32},{"x":0,"y":0,"fileNum":631,"id":21131,"width":25,"height":45},{"x":25,"y":0,"fileNum":631,"id":21132,"width":25,"height":45},{"x":50,"y":0,"fileNum":631,"id":21133,"width":25,"height":45},{"x":75,"y":0,"fileNum":631,"id":21134,"width":25,"height":45},{"x":100,"y":0,"fileNum":631,"id":21135,"width":25,"height":45},{"x":125,"y":0,"fileNum":631,"id":21136,"width":25,"height":45},{"x":0,"y":45,"fileNum":631,"id":21137,"width":25,"height":45},{"x":25,"y":45,"fileNum":631,"id":21138,"width":25,"height":45},{"x":50,"y":45,"fileNum":631,"id":21139,"width":25,"height":45},{"x":75,"y":45,"fileNum":631,"id":21140,"width":25,"height":45},{"x":100,"y":45,"fileNum":631,"id":21141,"width":25,"height":45},{"x":125,"y":45,"fileNum":631,"id":21142,"width":25,"height":45},{"x":0,"y":90,"fileNum":631,"id":21143,"width":25,"height":45},{"x":25,"y":90,"fileNum":631,"id":21144,"width":25,"height":45},{"x":50,"y":90,"fileNum":631,"id":21145,"width":25,"height":45},{"x":75,"y":90,"fileNum":631,"id":21146,"width":25,"height":45},{"x":100,"y":90,"fileNum":631,"id":21147,"width":25,"height":45},{"x":0,"y":135,"fileNum":631,"id":21148,"width":25,"height":45},{"x":25,"y":135,"fileNum":631,"id":21149,"width":25,"height":45},{"x":50,"y":135,"fileNum":631,"id":21150,"width":25,"height":45},{"x":75,"y":135,"fileNum":631,"id":21151,"width":25,"height":45},{"x":100,"y":135,"fileNum":631,"id":21152,"width":25,"height":45},{"x":0,"y":0,"fileNum":632,"id":21157,"width":32,"height":32},{"x":0,"y":0,"fileNum":633,"id":21158,"width":25,"height":45},{"x":25,"y":0,"fileNum":633,"id":21159,"width":25,"height":45},{"x":50,"y":0,"fileNum":633,"id":21160,"width":25,"height":45},{"x":75,"y":0,"fileNum":633,"id":21161,"width":25,"height":45},{"x":100,"y":0,"fileNum":633,"id":21162,"width":25,"height":45},{"x":125,"y":0,"fileNum":633,"id":21163,"width":25,"height":45},{"x":0,"y":45,"fileNum":633,"id":21164,"width":25,"height":45},{"x":25,"y":45,"fileNum":633,"id":21165,"width":25,"height":45},{"x":50,"y":45,"fileNum":633,"id":21166,"width":25,"height":45},{"x":75,"y":45,"fileNum":633,"id":21167,"width":25,"height":45},{"x":100,"y":45,"fileNum":633,"id":21168,"width":25,"height":45},{"x":125,"y":45,"fileNum":633,"id":21169,"width":25,"height":45},{"x":0,"y":90,"fileNum":633,"id":21170,"width":25,"height":45},{"x":25,"y":90,"fileNum":633,"id":21171,"width":25,"height":45},{"x":50,"y":90,"fileNum":633,"id":21172,"width":25,"height":45},{"x":75,"y":90,"fileNum":633,"id":21173,"width":25,"height":45},{"x":100,"y":90,"fileNum":633,"id":21174,"width":25,"height":45},{"x":0,"y":135,"fileNum":633,"id":21175,"width":25,"height":45},{"x":25,"y":135,"fileNum":633,"id":21176,"width":25,"height":45},{"x":50,"y":135,"fileNum":633,"id":21177,"width":25,"height":45},{"x":75,"y":135,"fileNum":633,"id":21178,"width":25,"height":45},{"x":100,"y":135,"fileNum":633,"id":21179,"width":25,"height":45},{"x":0,"y":0,"fileNum":634,"id":21184,"width":32,"height":32},{"x":0,"y":0,"fileNum":635,"id":21185,"width":25,"height":45},{"x":25,"y":0,"fileNum":635,"id":21186,"width":25,"height":45},{"x":50,"y":0,"fileNum":635,"id":21187,"width":25,"height":45},{"x":75,"y":0,"fileNum":635,"id":21188,"width":25,"height":45},{"x":100,"y":0,"fileNum":635,"id":21189,"width":25,"height":45},{"x":125,"y":0,"fileNum":635,"id":21190,"width":25,"height":45},{"x":0,"y":45,"fileNum":635,"id":21191,"width":25,"height":45},{"x":25,"y":45,"fileNum":635,"id":21192,"width":25,"height":45},{"x":50,"y":45,"fileNum":635,"id":21193,"width":25,"height":45},{"x":75,"y":45,"fileNum":635,"id":21194,"width":25,"height":45},{"x":100,"y":45,"fileNum":635,"id":21195,"width":25,"height":45},{"x":125,"y":45,"fileNum":635,"id":21196,"width":25,"height":45},{"x":0,"y":90,"fileNum":635,"id":21197,"width":25,"height":45},{"x":25,"y":90,"fileNum":635,"id":21198,"width":25,"height":45},{"x":50,"y":90,"fileNum":635,"id":21199,"width":25,"height":45},{"x":75,"y":90,"fileNum":635,"id":21200,"width":25,"height":45},{"x":100,"y":90,"fileNum":635,"id":21201,"width":25,"height":45},{"x":0,"y":135,"fileNum":635,"id":21202,"width":25,"height":45},{"x":25,"y":135,"fileNum":635,"id":21203,"width":25,"height":45},{"x":50,"y":135,"fileNum":635,"id":21204,"width":25,"height":45},{"x":75,"y":135,"fileNum":635,"id":21205,"width":25,"height":45},{"x":100,"y":135,"fileNum":635,"id":21206,"width":25,"height":45},{"x":0,"y":0,"fileNum":636,"id":21211,"width":32,"height":32},{"x":0,"y":0,"fileNum":637,"id":21212,"width":25,"height":45},{"x":25,"y":0,"fileNum":637,"id":21213,"width":25,"height":45},{"x":50,"y":0,"fileNum":637,"id":21214,"width":25,"height":45},{"x":75,"y":0,"fileNum":637,"id":21215,"width":25,"height":45},{"x":100,"y":0,"fileNum":637,"id":21216,"width":25,"height":45},{"x":125,"y":0,"fileNum":637,"id":21217,"width":25,"height":45},{"x":0,"y":45,"fileNum":637,"id":21218,"width":25,"height":45},{"x":25,"y":45,"fileNum":637,"id":21219,"width":25,"height":45},{"x":50,"y":45,"fileNum":637,"id":21220,"width":25,"height":45},{"x":75,"y":45,"fileNum":637,"id":21221,"width":25,"height":45},{"x":100,"y":45,"fileNum":637,"id":21222,"width":25,"height":45},{"x":125,"y":45,"fileNum":637,"id":21223,"width":25,"height":45},{"x":0,"y":90,"fileNum":637,"id":21224,"width":25,"height":45},{"x":25,"y":90,"fileNum":637,"id":21225,"width":25,"height":45},{"x":50,"y":90,"fileNum":637,"id":21226,"width":25,"height":45},{"x":75,"y":90,"fileNum":637,"id":21227,"width":25,"height":45},{"x":100,"y":90,"fileNum":637,"id":21228,"width":25,"height":45},{"x":0,"y":135,"fileNum":637,"id":21229,"width":25,"height":45},{"x":25,"y":135,"fileNum":637,"id":21230,"width":25,"height":45},{"x":50,"y":135,"fileNum":637,"id":21231,"width":25,"height":45},{"x":75,"y":135,"fileNum":637,"id":21232,"width":25,"height":45},{"x":100,"y":135,"fileNum":637,"id":21233,"width":25,"height":45},{"x":0,"y":0,"fileNum":638,"id":21238,"width":32,"height":32},{"x":0,"y":0,"fileNum":639,"id":21239,"width":25,"height":45},{"x":25,"y":0,"fileNum":639,"id":21240,"width":25,"height":45},{"x":50,"y":0,"fileNum":639,"id":21241,"width":25,"height":45},{"x":75,"y":0,"fileNum":639,"id":21242,"width":25,"height":45},{"x":100,"y":0,"fileNum":639,"id":21243,"width":25,"height":45},{"x":125,"y":0,"fileNum":639,"id":21244,"width":25,"height":45},{"x":0,"y":45,"fileNum":639,"id":21245,"width":25,"height":45},{"x":25,"y":45,"fileNum":639,"id":21246,"width":25,"height":45},{"x":50,"y":45,"fileNum":639,"id":21247,"width":25,"height":45},{"x":75,"y":45,"fileNum":639,"id":21248,"width":25,"height":45},{"x":100,"y":45,"fileNum":639,"id":21249,"width":25,"height":45},{"x":125,"y":45,"fileNum":639,"id":21250,"width":25,"height":45},{"x":0,"y":90,"fileNum":639,"id":21251,"width":25,"height":45},{"x":25,"y":90,"fileNum":639,"id":21252,"width":25,"height":45},{"x":50,"y":90,"fileNum":639,"id":21253,"width":25,"height":45},{"x":75,"y":90,"fileNum":639,"id":21254,"width":25,"height":45},{"x":100,"y":90,"fileNum":639,"id":21255,"width":25,"height":45},{"x":0,"y":135,"fileNum":639,"id":21256,"width":25,"height":45},{"x":25,"y":135,"fileNum":639,"id":21257,"width":25,"height":45},{"x":50,"y":135,"fileNum":639,"id":21258,"width":25,"height":45},{"x":75,"y":135,"fileNum":639,"id":21259,"width":25,"height":45},{"x":100,"y":135,"fileNum":639,"id":21260,"width":25,"height":45},{"x":0,"y":0,"fileNum":640,"id":21265,"width":32,"height":32},{"x":0,"y":0,"fileNum":641,"id":21266,"width":25,"height":45},{"x":25,"y":0,"fileNum":641,"id":21267,"width":25,"height":45},{"x":50,"y":0,"fileNum":641,"id":21268,"width":25,"height":45},{"x":75,"y":0,"fileNum":641,"id":21269,"width":25,"height":45},{"x":100,"y":0,"fileNum":641,"id":21270,"width":25,"height":45},{"x":125,"y":0,"fileNum":641,"id":21271,"width":25,"height":45},{"x":0,"y":45,"fileNum":641,"id":21272,"width":25,"height":45},{"x":25,"y":45,"fileNum":641,"id":21273,"width":25,"height":45},{"x":50,"y":45,"fileNum":641,"id":21274,"width":25,"height":45},{"x":75,"y":45,"fileNum":641,"id":21275,"width":25,"height":45},{"x":100,"y":45,"fileNum":641,"id":21276,"width":25,"height":45},{"x":125,"y":45,"fileNum":641,"id":21277,"width":25,"height":45},{"x":0,"y":90,"fileNum":641,"id":21278,"width":25,"height":45},{"x":25,"y":90,"fileNum":641,"id":21279,"width":25,"height":45},{"x":50,"y":90,"fileNum":641,"id":21280,"width":25,"height":45},{"x":75,"y":90,"fileNum":641,"id":21281,"width":25,"height":45},{"x":100,"y":90,"fileNum":641,"id":21282,"width":25,"height":45},{"x":0,"y":135,"fileNum":641,"id":21283,"width":25,"height":45},{"x":25,"y":135,"fileNum":641,"id":21284,"width":25,"height":45},{"x":50,"y":135,"fileNum":641,"id":21285,"width":25,"height":45},{"x":75,"y":135,"fileNum":641,"id":21286,"width":25,"height":45},{"x":100,"y":135,"fileNum":641,"id":21287,"width":25,"height":45},{"x":0,"y":0,"fileNum":642,"id":21292,"width":32,"height":32},{"x":0,"y":0,"fileNum":643,"id":21293,"width":25,"height":45},{"x":25,"y":0,"fileNum":643,"id":21294,"width":25,"height":45},{"x":50,"y":0,"fileNum":643,"id":21295,"width":25,"height":45},{"x":75,"y":0,"fileNum":643,"id":21296,"width":25,"height":45},{"x":100,"y":0,"fileNum":643,"id":21297,"width":25,"height":45},{"x":125,"y":0,"fileNum":643,"id":21298,"width":25,"height":45},{"x":0,"y":45,"fileNum":643,"id":21299,"width":25,"height":45},{"x":25,"y":45,"fileNum":643,"id":21300,"width":25,"height":45},{"x":50,"y":45,"fileNum":643,"id":21301,"width":25,"height":45},{"x":75,"y":45,"fileNum":643,"id":21302,"width":25,"height":45},{"x":100,"y":45,"fileNum":643,"id":21303,"width":25,"height":45},{"x":125,"y":45,"fileNum":643,"id":21304,"width":25,"height":45},{"x":0,"y":90,"fileNum":643,"id":21305,"width":25,"height":45},{"x":25,"y":90,"fileNum":643,"id":21306,"width":25,"height":45},{"x":50,"y":90,"fileNum":643,"id":21307,"width":25,"height":45},{"x":75,"y":90,"fileNum":643,"id":21308,"width":25,"height":45},{"x":100,"y":90,"fileNum":643,"id":21309,"width":25,"height":45},{"x":0,"y":135,"fileNum":643,"id":21310,"width":25,"height":45},{"x":25,"y":135,"fileNum":643,"id":21311,"width":25,"height":45},{"x":50,"y":135,"fileNum":643,"id":21312,"width":25,"height":45},{"x":75,"y":135,"fileNum":643,"id":21313,"width":25,"height":45},{"x":100,"y":135,"fileNum":643,"id":21314,"width":25,"height":45},{"x":0,"y":0,"fileNum":644,"id":21319,"width":32,"height":32},{"x":0,"y":0,"fileNum":645,"id":21320,"width":25,"height":45},{"x":25,"y":0,"fileNum":645,"id":21321,"width":25,"height":45},{"x":50,"y":0,"fileNum":645,"id":21322,"width":25,"height":45},{"x":75,"y":0,"fileNum":645,"id":21323,"width":25,"height":45},{"x":100,"y":0,"fileNum":645,"id":21324,"width":25,"height":45},{"x":125,"y":0,"fileNum":645,"id":21325,"width":25,"height":45},{"x":0,"y":45,"fileNum":645,"id":21326,"width":25,"height":45},{"x":25,"y":45,"fileNum":645,"id":21327,"width":25,"height":45},{"x":50,"y":45,"fileNum":645,"id":21328,"width":25,"height":45},{"x":75,"y":45,"fileNum":645,"id":21329,"width":25,"height":45},{"x":100,"y":45,"fileNum":645,"id":21330,"width":25,"height":45},{"x":125,"y":45,"fileNum":645,"id":21331,"width":25,"height":45},{"x":0,"y":90,"fileNum":645,"id":21332,"width":25,"height":45},{"x":25,"y":90,"fileNum":645,"id":21333,"width":25,"height":45},{"x":50,"y":90,"fileNum":645,"id":21334,"width":25,"height":45},{"x":75,"y":90,"fileNum":645,"id":21335,"width":25,"height":45},{"x":100,"y":90,"fileNum":645,"id":21336,"width":25,"height":45},{"x":0,"y":135,"fileNum":645,"id":21337,"width":25,"height":45},{"x":25,"y":135,"fileNum":645,"id":21338,"width":25,"height":45},{"x":50,"y":135,"fileNum":645,"id":21339,"width":25,"height":45},{"x":75,"y":135,"fileNum":645,"id":21340,"width":25,"height":45},{"x":100,"y":135,"fileNum":645,"id":21341,"width":25,"height":45},{"x":0,"y":0,"fileNum":646,"id":21346,"width":32,"height":32},{"x":0,"y":0,"fileNum":647,"id":21347,"width":25,"height":45},{"x":25,"y":0,"fileNum":647,"id":21348,"width":25,"height":45},{"x":50,"y":0,"fileNum":647,"id":21349,"width":25,"height":45},{"x":75,"y":0,"fileNum":647,"id":21350,"width":25,"height":45},{"x":100,"y":0,"fileNum":647,"id":21351,"width":25,"height":45},{"x":125,"y":0,"fileNum":647,"id":21352,"width":25,"height":45},{"x":0,"y":45,"fileNum":647,"id":21353,"width":25,"height":45},{"x":25,"y":45,"fileNum":647,"id":21354,"width":25,"height":45},{"x":50,"y":45,"fileNum":647,"id":21355,"width":25,"height":45},{"x":75,"y":45,"fileNum":647,"id":21356,"width":25,"height":45},{"x":100,"y":45,"fileNum":647,"id":21357,"width":25,"height":45},{"x":125,"y":45,"fileNum":647,"id":21358,"width":25,"height":45},{"x":0,"y":90,"fileNum":647,"id":21359,"width":25,"height":45},{"x":25,"y":90,"fileNum":647,"id":21360,"width":25,"height":45},{"x":50,"y":90,"fileNum":647,"id":21361,"width":25,"height":45},{"x":75,"y":90,"fileNum":647,"id":21362,"width":25,"height":45},{"x":100,"y":90,"fileNum":647,"id":21363,"width":25,"height":45},{"x":0,"y":135,"fileNum":647,"id":21364,"width":25,"height":45},{"x":25,"y":135,"fileNum":647,"id":21365,"width":25,"height":45},{"x":50,"y":135,"fileNum":647,"id":21366,"width":25,"height":45},{"x":75,"y":135,"fileNum":647,"id":21367,"width":25,"height":45},{"x":100,"y":135,"fileNum":647,"id":21368,"width":25,"height":45},{"x":0,"y":0,"fileNum":648,"id":21373,"width":32,"height":32},{"x":0,"y":0,"fileNum":649,"id":21374,"width":25,"height":45},{"x":25,"y":0,"fileNum":649,"id":21375,"width":25,"height":45},{"x":50,"y":0,"fileNum":649,"id":21376,"width":25,"height":45},{"x":75,"y":0,"fileNum":649,"id":21377,"width":25,"height":45},{"x":100,"y":0,"fileNum":649,"id":21378,"width":25,"height":45},{"x":125,"y":0,"fileNum":649,"id":21379,"width":25,"height":45},{"x":0,"y":45,"fileNum":649,"id":21380,"width":25,"height":45},{"x":25,"y":45,"fileNum":649,"id":21381,"width":25,"height":45},{"x":50,"y":45,"fileNum":649,"id":21382,"width":25,"height":45},{"x":75,"y":45,"fileNum":649,"id":21383,"width":25,"height":45},{"x":100,"y":45,"fileNum":649,"id":21384,"width":25,"height":45},{"x":125,"y":45,"fileNum":649,"id":21385,"width":25,"height":45},{"x":0,"y":90,"fileNum":649,"id":21386,"width":25,"height":45},{"x":25,"y":90,"fileNum":649,"id":21387,"width":25,"height":45},{"x":50,"y":90,"fileNum":649,"id":21388,"width":25,"height":45},{"x":75,"y":90,"fileNum":649,"id":21389,"width":25,"height":45},{"x":100,"y":90,"fileNum":649,"id":21390,"width":25,"height":45},{"x":0,"y":135,"fileNum":649,"id":21391,"width":25,"height":45},{"x":25,"y":135,"fileNum":649,"id":21392,"width":25,"height":45},{"x":50,"y":135,"fileNum":649,"id":21393,"width":25,"height":45},{"x":75,"y":135,"fileNum":649,"id":21394,"width":25,"height":45},{"x":100,"y":135,"fileNum":649,"id":21395,"width":25,"height":45},{"x":0,"y":0,"fileNum":650,"id":21400,"width":32,"height":32},{"x":0,"y":0,"fileNum":651,"id":21401,"width":25,"height":45},{"x":25,"y":0,"fileNum":651,"id":21402,"width":25,"height":45},{"x":50,"y":0,"fileNum":651,"id":21403,"width":25,"height":45},{"x":75,"y":0,"fileNum":651,"id":21404,"width":25,"height":45},{"x":100,"y":0,"fileNum":651,"id":21405,"width":25,"height":45},{"x":125,"y":0,"fileNum":651,"id":21406,"width":25,"height":45},{"x":0,"y":45,"fileNum":651,"id":21407,"width":25,"height":45},{"x":25,"y":45,"fileNum":651,"id":21408,"width":25,"height":45},{"x":50,"y":45,"fileNum":651,"id":21409,"width":25,"height":45},{"x":75,"y":45,"fileNum":651,"id":21410,"width":25,"height":45},{"x":100,"y":45,"fileNum":651,"id":21411,"width":25,"height":45},{"x":125,"y":45,"fileNum":651,"id":21412,"width":25,"height":45},{"x":0,"y":90,"fileNum":651,"id":21413,"width":25,"height":45},{"x":25,"y":90,"fileNum":651,"id":21414,"width":25,"height":45},{"x":50,"y":90,"fileNum":651,"id":21415,"width":25,"height":45},{"x":75,"y":90,"fileNum":651,"id":21416,"width":25,"height":45},{"x":100,"y":90,"fileNum":651,"id":21417,"width":25,"height":45},{"x":0,"y":135,"fileNum":651,"id":21418,"width":25,"height":45},{"x":25,"y":135,"fileNum":651,"id":21419,"width":25,"height":45},{"x":50,"y":135,"fileNum":651,"id":21420,"width":25,"height":45},{"x":75,"y":135,"fileNum":651,"id":21421,"width":25,"height":45},{"x":100,"y":135,"fileNum":651,"id":21422,"width":25,"height":45},{"x":0,"y":0,"fileNum":652,"id":21427,"width":32,"height":32},{"x":0,"y":0,"fileNum":653,"id":21428,"width":25,"height":45},{"x":25,"y":0,"fileNum":653,"id":21429,"width":25,"height":45},{"x":50,"y":0,"fileNum":653,"id":21430,"width":25,"height":45},{"x":75,"y":0,"fileNum":653,"id":21431,"width":25,"height":45},{"x":100,"y":0,"fileNum":653,"id":21432,"width":25,"height":45},{"x":125,"y":0,"fileNum":653,"id":21433,"width":25,"height":45},{"x":0,"y":45,"fileNum":653,"id":21434,"width":25,"height":45},{"x":25,"y":45,"fileNum":653,"id":21435,"width":25,"height":45},{"x":50,"y":45,"fileNum":653,"id":21436,"width":25,"height":45},{"x":75,"y":45,"fileNum":653,"id":21437,"width":25,"height":45},{"x":100,"y":45,"fileNum":653,"id":21438,"width":25,"height":45},{"x":125,"y":45,"fileNum":653,"id":21439,"width":25,"height":45},{"x":0,"y":90,"fileNum":653,"id":21440,"width":25,"height":45},{"x":25,"y":90,"fileNum":653,"id":21441,"width":25,"height":45},{"x":50,"y":90,"fileNum":653,"id":21442,"width":25,"height":45},{"x":75,"y":90,"fileNum":653,"id":21443,"width":25,"height":45},{"x":100,"y":90,"fileNum":653,"id":21444,"width":25,"height":45},{"x":0,"y":135,"fileNum":653,"id":21445,"width":25,"height":45},{"x":25,"y":135,"fileNum":653,"id":21446,"width":25,"height":45},{"x":50,"y":135,"fileNum":653,"id":21447,"width":25,"height":45},{"x":75,"y":135,"fileNum":653,"id":21448,"width":25,"height":45},{"x":100,"y":135,"fileNum":653,"id":21449,"width":25,"height":45},{"x":0,"y":0,"fileNum":654,"id":21454,"width":32,"height":32},{"x":0,"y":0,"fileNum":655,"id":21455,"width":25,"height":45},{"x":25,"y":0,"fileNum":655,"id":21456,"width":25,"height":45},{"x":50,"y":0,"fileNum":655,"id":21457,"width":25,"height":45},{"x":75,"y":0,"fileNum":655,"id":21458,"width":25,"height":45},{"x":100,"y":0,"fileNum":655,"id":21459,"width":25,"height":45},{"x":125,"y":0,"fileNum":655,"id":21460,"width":25,"height":45},{"x":0,"y":45,"fileNum":655,"id":21461,"width":25,"height":45},{"x":25,"y":45,"fileNum":655,"id":21462,"width":25,"height":45},{"x":50,"y":45,"fileNum":655,"id":21463,"width":25,"height":45},{"x":75,"y":45,"fileNum":655,"id":21464,"width":25,"height":45},{"x":100,"y":45,"fileNum":655,"id":21465,"width":25,"height":45},{"x":125,"y":45,"fileNum":655,"id":21466,"width":25,"height":45},{"x":0,"y":90,"fileNum":655,"id":21467,"width":25,"height":45},{"x":25,"y":90,"fileNum":655,"id":21468,"width":25,"height":45},{"x":50,"y":90,"fileNum":655,"id":21469,"width":25,"height":45},{"x":75,"y":90,"fileNum":655,"id":21470,"width":25,"height":45},{"x":100,"y":90,"fileNum":655,"id":21471,"width":25,"height":45},{"x":0,"y":135,"fileNum":655,"id":21472,"width":25,"height":45},{"x":25,"y":135,"fileNum":655,"id":21473,"width":25,"height":45},{"x":50,"y":135,"fileNum":655,"id":21474,"width":25,"height":45},{"x":75,"y":135,"fileNum":655,"id":21475,"width":25,"height":45},{"x":100,"y":135,"fileNum":655,"id":21476,"width":25,"height":45},{"x":0,"y":0,"fileNum":656,"id":21481,"width":32,"height":32},{"x":0,"y":0,"fileNum":657,"id":21482,"width":25,"height":45},{"x":25,"y":0,"fileNum":657,"id":21483,"width":25,"height":45},{"x":50,"y":0,"fileNum":657,"id":21484,"width":25,"height":45},{"x":75,"y":0,"fileNum":657,"id":21485,"width":25,"height":45},{"x":100,"y":0,"fileNum":657,"id":21486,"width":25,"height":45},{"x":125,"y":0,"fileNum":657,"id":21487,"width":25,"height":45},{"x":0,"y":45,"fileNum":657,"id":21488,"width":25,"height":45},{"x":25,"y":45,"fileNum":657,"id":21489,"width":25,"height":45},{"x":50,"y":45,"fileNum":657,"id":21490,"width":25,"height":45},{"x":75,"y":45,"fileNum":657,"id":21491,"width":25,"height":45},{"x":100,"y":45,"fileNum":657,"id":21492,"width":25,"height":45},{"x":125,"y":45,"fileNum":657,"id":21493,"width":25,"height":45},{"x":0,"y":90,"fileNum":657,"id":21494,"width":25,"height":45},{"x":25,"y":90,"fileNum":657,"id":21495,"width":25,"height":45},{"x":50,"y":90,"fileNum":657,"id":21496,"width":25,"height":45},{"x":75,"y":90,"fileNum":657,"id":21497,"width":25,"height":45},{"x":100,"y":90,"fileNum":657,"id":21498,"width":25,"height":45},{"x":0,"y":135,"fileNum":657,"id":21499,"width":25,"height":45},{"x":25,"y":135,"fileNum":657,"id":21500,"width":25,"height":45},{"x":50,"y":135,"fileNum":657,"id":21501,"width":25,"height":45},{"x":75,"y":135,"fileNum":657,"id":21502,"width":25,"height":45},{"x":100,"y":135,"fileNum":657,"id":21503,"width":25,"height":45},{"x":0,"y":0,"fileNum":658,"id":21508,"width":32,"height":32},{"x":0,"y":0,"fileNum":659,"id":21509,"width":25,"height":45},{"x":25,"y":0,"fileNum":659,"id":21510,"width":25,"height":45},{"x":50,"y":0,"fileNum":659,"id":21511,"width":25,"height":45},{"x":75,"y":0,"fileNum":659,"id":21512,"width":25,"height":45},{"x":100,"y":0,"fileNum":659,"id":21513,"width":25,"height":45},{"x":125,"y":0,"fileNum":659,"id":21514,"width":25,"height":45},{"x":0,"y":45,"fileNum":659,"id":21515,"width":25,"height":45},{"x":25,"y":45,"fileNum":659,"id":21516,"width":25,"height":45},{"x":50,"y":45,"fileNum":659,"id":21517,"width":25,"height":45},{"x":75,"y":45,"fileNum":659,"id":21518,"width":25,"height":45},{"x":100,"y":45,"fileNum":659,"id":21519,"width":25,"height":45},{"x":125,"y":45,"fileNum":659,"id":21520,"width":25,"height":45},{"x":0,"y":90,"fileNum":659,"id":21521,"width":25,"height":45},{"x":25,"y":90,"fileNum":659,"id":21522,"width":25,"height":45},{"x":50,"y":90,"fileNum":659,"id":21523,"width":25,"height":45},{"x":75,"y":90,"fileNum":659,"id":21524,"width":25,"height":45},{"x":100,"y":90,"fileNum":659,"id":21525,"width":25,"height":45},{"x":0,"y":135,"fileNum":659,"id":21526,"width":25,"height":45},{"x":25,"y":135,"fileNum":659,"id":21527,"width":25,"height":45},{"x":50,"y":135,"fileNum":659,"id":21528,"width":25,"height":45},{"x":75,"y":135,"fileNum":659,"id":21529,"width":25,"height":45},{"x":100,"y":135,"fileNum":659,"id":21530,"width":25,"height":45},{"x":0,"y":0,"fileNum":660,"id":21535,"width":32,"height":32},{"x":0,"y":0,"fileNum":661,"id":21536,"width":25,"height":45},{"x":25,"y":0,"fileNum":661,"id":21537,"width":25,"height":45},{"x":50,"y":0,"fileNum":661,"id":21538,"width":25,"height":45},{"x":75,"y":0,"fileNum":661,"id":21539,"width":25,"height":45},{"x":100,"y":0,"fileNum":661,"id":21540,"width":25,"height":45},{"x":125,"y":0,"fileNum":661,"id":21541,"width":25,"height":45},{"x":0,"y":45,"fileNum":661,"id":21542,"width":25,"height":45},{"x":25,"y":45,"fileNum":661,"id":21543,"width":25,"height":45},{"x":50,"y":45,"fileNum":661,"id":21544,"width":25,"height":45},{"x":75,"y":45,"fileNum":661,"id":21545,"width":25,"height":45},{"x":100,"y":45,"fileNum":661,"id":21546,"width":25,"height":45},{"x":125,"y":45,"fileNum":661,"id":21547,"width":25,"height":45},{"x":0,"y":90,"fileNum":661,"id":21548,"width":25,"height":45},{"x":25,"y":90,"fileNum":661,"id":21549,"width":25,"height":45},{"x":50,"y":90,"fileNum":661,"id":21550,"width":25,"height":45},{"x":75,"y":90,"fileNum":661,"id":21551,"width":25,"height":45},{"x":100,"y":90,"fileNum":661,"id":21552,"width":25,"height":45},{"x":0,"y":135,"fileNum":661,"id":21553,"width":25,"height":45},{"x":25,"y":135,"fileNum":661,"id":21554,"width":25,"height":45},{"x":50,"y":135,"fileNum":661,"id":21555,"width":25,"height":45},{"x":75,"y":135,"fileNum":661,"id":21556,"width":25,"height":45},{"x":100,"y":135,"fileNum":661,"id":21557,"width":25,"height":45},{"x":0,"y":0,"fileNum":662,"id":21562,"width":32,"height":32},{"x":0,"y":0,"fileNum":663,"id":21563,"width":25,"height":45},{"x":25,"y":0,"fileNum":663,"id":21564,"width":25,"height":45},{"x":50,"y":0,"fileNum":663,"id":21565,"width":25,"height":45},{"x":75,"y":0,"fileNum":663,"id":21566,"width":25,"height":45},{"x":100,"y":0,"fileNum":663,"id":21567,"width":25,"height":45},{"x":125,"y":0,"fileNum":663,"id":21568,"width":25,"height":45},{"x":0,"y":45,"fileNum":663,"id":21569,"width":25,"height":45},{"x":25,"y":45,"fileNum":663,"id":21570,"width":25,"height":45},{"x":50,"y":45,"fileNum":663,"id":21571,"width":25,"height":45},{"x":75,"y":45,"fileNum":663,"id":21572,"width":25,"height":45},{"x":100,"y":45,"fileNum":663,"id":21573,"width":25,"height":45},{"x":125,"y":45,"fileNum":663,"id":21574,"width":25,"height":45},{"x":0,"y":90,"fileNum":663,"id":21575,"width":25,"height":45},{"x":25,"y":90,"fileNum":663,"id":21576,"width":25,"height":45},{"x":50,"y":90,"fileNum":663,"id":21577,"width":25,"height":45},{"x":75,"y":90,"fileNum":663,"id":21578,"width":25,"height":45},{"x":100,"y":90,"fileNum":663,"id":21579,"width":25,"height":45},{"x":0,"y":135,"fileNum":663,"id":21580,"width":25,"height":45},{"x":25,"y":135,"fileNum":663,"id":21581,"width":25,"height":45},{"x":50,"y":135,"fileNum":663,"id":21582,"width":25,"height":45},{"x":75,"y":135,"fileNum":663,"id":21583,"width":25,"height":45},{"x":100,"y":135,"fileNum":663,"id":21584,"width":25,"height":45},{"x":0,"y":0,"fileNum":664,"id":21589,"width":32,"height":32},{"x":0,"y":0,"fileNum":665,"id":21590,"width":25,"height":45},{"x":25,"y":0,"fileNum":665,"id":21591,"width":25,"height":45},{"x":50,"y":0,"fileNum":665,"id":21592,"width":25,"height":45},{"x":75,"y":0,"fileNum":665,"id":21593,"width":25,"height":45},{"x":100,"y":0,"fileNum":665,"id":21594,"width":25,"height":45},{"x":125,"y":0,"fileNum":665,"id":21595,"width":25,"height":45},{"x":0,"y":45,"fileNum":665,"id":21596,"width":25,"height":45},{"x":25,"y":45,"fileNum":665,"id":21597,"width":25,"height":45},{"x":50,"y":45,"fileNum":665,"id":21598,"width":25,"height":45},{"x":75,"y":45,"fileNum":665,"id":21599,"width":25,"height":45},{"x":100,"y":45,"fileNum":665,"id":21600,"width":25,"height":45},{"x":125,"y":45,"fileNum":665,"id":21601,"width":25,"height":45},{"x":0,"y":90,"fileNum":665,"id":21602,"width":25,"height":45},{"x":25,"y":90,"fileNum":665,"id":21603,"width":25,"height":45},{"x":50,"y":90,"fileNum":665,"id":21604,"width":25,"height":45},{"x":75,"y":90,"fileNum":665,"id":21605,"width":25,"height":45},{"x":100,"y":90,"fileNum":665,"id":21606,"width":25,"height":45},{"x":0,"y":135,"fileNum":665,"id":21607,"width":25,"height":45},{"x":25,"y":135,"fileNum":665,"id":21608,"width":25,"height":45},{"x":50,"y":135,"fileNum":665,"id":21609,"width":25,"height":45},{"x":75,"y":135,"fileNum":665,"id":21610,"width":25,"height":45},{"x":100,"y":135,"fileNum":665,"id":21611,"width":25,"height":45},{"x":0,"y":0,"fileNum":666,"id":21616,"width":32,"height":32},{"x":0,"y":0,"fileNum":667,"id":21617,"width":25,"height":45},{"x":25,"y":0,"fileNum":667,"id":21618,"width":25,"height":45},{"x":50,"y":0,"fileNum":667,"id":21619,"width":25,"height":45},{"x":75,"y":0,"fileNum":667,"id":21620,"width":25,"height":45},{"x":100,"y":0,"fileNum":667,"id":21621,"width":25,"height":45},{"x":125,"y":0,"fileNum":667,"id":21622,"width":25,"height":45},{"x":0,"y":45,"fileNum":667,"id":21623,"width":25,"height":45},{"x":25,"y":45,"fileNum":667,"id":21624,"width":25,"height":45},{"x":50,"y":45,"fileNum":667,"id":21625,"width":25,"height":45},{"x":75,"y":45,"fileNum":667,"id":21626,"width":25,"height":45},{"x":100,"y":45,"fileNum":667,"id":21627,"width":25,"height":45},{"x":125,"y":45,"fileNum":667,"id":21628,"width":25,"height":45},{"x":0,"y":90,"fileNum":667,"id":21629,"width":25,"height":45},{"x":25,"y":90,"fileNum":667,"id":21630,"width":25,"height":45},{"x":50,"y":90,"fileNum":667,"id":21631,"width":25,"height":45},{"x":75,"y":90,"fileNum":667,"id":21632,"width":25,"height":45},{"x":100,"y":90,"fileNum":667,"id":21633,"width":25,"height":45},{"x":0,"y":135,"fileNum":667,"id":21634,"width":25,"height":45},{"x":25,"y":135,"fileNum":667,"id":21635,"width":25,"height":45},{"x":50,"y":135,"fileNum":667,"id":21636,"width":25,"height":45},{"x":75,"y":135,"fileNum":667,"id":21637,"width":25,"height":45},{"x":100,"y":135,"fileNum":667,"id":21638,"width":25,"height":45},{"x":0,"y":0,"fileNum":668,"id":21643,"width":32,"height":32},{"x":0,"y":0,"fileNum":669,"id":21644,"width":25,"height":45},{"x":25,"y":0,"fileNum":669,"id":21645,"width":25,"height":45},{"x":50,"y":0,"fileNum":669,"id":21646,"width":25,"height":45},{"x":75,"y":0,"fileNum":669,"id":21647,"width":25,"height":45},{"x":100,"y":0,"fileNum":669,"id":21648,"width":25,"height":45},{"x":125,"y":0,"fileNum":669,"id":21649,"width":25,"height":45},{"x":0,"y":45,"fileNum":669,"id":21650,"width":25,"height":45},{"x":25,"y":45,"fileNum":669,"id":21651,"width":25,"height":45},{"x":50,"y":45,"fileNum":669,"id":21652,"width":25,"height":45},{"x":75,"y":45,"fileNum":669,"id":21653,"width":25,"height":45},{"x":100,"y":45,"fileNum":669,"id":21654,"width":25,"height":45},{"x":125,"y":45,"fileNum":669,"id":21655,"width":25,"height":45},{"x":0,"y":90,"fileNum":669,"id":21656,"width":25,"height":45},{"x":25,"y":90,"fileNum":669,"id":21657,"width":25,"height":45},{"x":50,"y":90,"fileNum":669,"id":21658,"width":25,"height":45},{"x":75,"y":90,"fileNum":669,"id":21659,"width":25,"height":45},{"x":100,"y":90,"fileNum":669,"id":21660,"width":25,"height":45},{"x":0,"y":135,"fileNum":669,"id":21661,"width":25,"height":45},{"x":25,"y":135,"fileNum":669,"id":21662,"width":25,"height":45},{"x":50,"y":135,"fileNum":669,"id":21663,"width":25,"height":45},{"x":75,"y":135,"fileNum":669,"id":21664,"width":25,"height":45},{"x":100,"y":135,"fileNum":669,"id":21665,"width":25,"height":45},{"x":0,"y":0,"fileNum":670,"id":21670,"width":32,"height":32},{"x":0,"y":0,"fileNum":671,"id":21671,"width":25,"height":45},{"x":25,"y":0,"fileNum":671,"id":21672,"width":25,"height":45},{"x":50,"y":0,"fileNum":671,"id":21673,"width":25,"height":45},{"x":75,"y":0,"fileNum":671,"id":21674,"width":25,"height":45},{"x":100,"y":0,"fileNum":671,"id":21675,"width":25,"height":45},{"x":125,"y":0,"fileNum":671,"id":21676,"width":25,"height":45},{"x":0,"y":45,"fileNum":671,"id":21677,"width":25,"height":45},{"x":25,"y":45,"fileNum":671,"id":21678,"width":25,"height":45},{"x":50,"y":45,"fileNum":671,"id":21679,"width":25,"height":45},{"x":75,"y":45,"fileNum":671,"id":21680,"width":25,"height":45},{"x":100,"y":45,"fileNum":671,"id":21681,"width":25,"height":45},{"x":125,"y":45,"fileNum":671,"id":21682,"width":25,"height":45},{"x":0,"y":90,"fileNum":671,"id":21683,"width":25,"height":45},{"x":25,"y":90,"fileNum":671,"id":21684,"width":25,"height":45},{"x":50,"y":90,"fileNum":671,"id":21685,"width":25,"height":45},{"x":75,"y":90,"fileNum":671,"id":21686,"width":25,"height":45},{"x":100,"y":90,"fileNum":671,"id":21687,"width":25,"height":45},{"x":0,"y":135,"fileNum":671,"id":21688,"width":25,"height":45},{"x":25,"y":135,"fileNum":671,"id":21689,"width":25,"height":45},{"x":50,"y":135,"fileNum":671,"id":21690,"width":25,"height":45},{"x":75,"y":135,"fileNum":671,"id":21691,"width":25,"height":45},{"x":100,"y":135,"fileNum":671,"id":21692,"width":25,"height":45},{"x":0,"y":0,"fileNum":672,"id":21697,"width":32,"height":32},{"x":0,"y":0,"fileNum":673,"id":21698,"width":25,"height":45},{"x":25,"y":0,"fileNum":673,"id":21699,"width":25,"height":45},{"x":50,"y":0,"fileNum":673,"id":21700,"width":25,"height":45},{"x":75,"y":0,"fileNum":673,"id":21701,"width":25,"height":45},{"x":100,"y":0,"fileNum":673,"id":21702,"width":25,"height":45},{"x":125,"y":0,"fileNum":673,"id":21703,"width":25,"height":45},{"x":0,"y":45,"fileNum":673,"id":21704,"width":25,"height":45},{"x":25,"y":45,"fileNum":673,"id":21705,"width":25,"height":45},{"x":50,"y":45,"fileNum":673,"id":21706,"width":25,"height":45},{"x":75,"y":45,"fileNum":673,"id":21707,"width":25,"height":45},{"x":100,"y":45,"fileNum":673,"id":21708,"width":25,"height":45},{"x":125,"y":45,"fileNum":673,"id":21709,"width":25,"height":45},{"x":0,"y":90,"fileNum":673,"id":21710,"width":25,"height":45},{"x":25,"y":90,"fileNum":673,"id":21711,"width":25,"height":45},{"x":50,"y":90,"fileNum":673,"id":21712,"width":25,"height":45},{"x":75,"y":90,"fileNum":673,"id":21713,"width":25,"height":45},{"x":100,"y":90,"fileNum":673,"id":21714,"width":25,"height":45},{"x":0,"y":135,"fileNum":673,"id":21715,"width":25,"height":45},{"x":25,"y":135,"fileNum":673,"id":21716,"width":25,"height":45},{"x":50,"y":135,"fileNum":673,"id":21717,"width":25,"height":45},{"x":75,"y":135,"fileNum":673,"id":21718,"width":25,"height":45},{"x":100,"y":135,"fileNum":673,"id":21719,"width":25,"height":45},{"x":0,"y":0,"fileNum":2212,"id":21724,"width":17,"height":50},{"x":17,"y":0,"fileNum":2212,"id":21725,"width":17,"height":50},{"x":34,"y":0,"fileNum":2212,"id":21726,"width":17,"height":50},{"x":51,"y":0,"fileNum":2212,"id":21727,"width":17,"height":50},{"x":0,"y":0,"fileNum":2213,"id":21728,"width":17,"height":50},{"x":17,"y":0,"fileNum":2213,"id":21729,"width":17,"height":50},{"x":34,"y":0,"fileNum":2213,"id":21730,"width":17,"height":50},{"x":51,"y":0,"fileNum":2213,"id":21731,"width":17,"height":50},{"x":0,"y":0,"fileNum":2214,"id":21732,"width":17,"height":50},{"x":17,"y":0,"fileNum":2214,"id":21733,"width":17,"height":50},{"x":34,"y":0,"fileNum":2214,"id":21734,"width":17,"height":50},{"x":51,"y":0,"fileNum":2214,"id":21735,"width":17,"height":50},{"x":0,"y":0,"fileNum":2215,"id":21736,"width":17,"height":50},{"x":17,"y":0,"fileNum":2215,"id":21737,"width":17,"height":50},{"x":34,"y":0,"fileNum":2215,"id":21738,"width":17,"height":50},{"x":51,"y":0,"fileNum":2215,"id":21739,"width":17,"height":50},{"x":0,"y":0,"fileNum":2216,"id":21740,"width":17,"height":50},{"x":17,"y":0,"fileNum":2216,"id":21741,"width":17,"height":50},{"x":34,"y":0,"fileNum":2216,"id":21742,"width":17,"height":50},{"x":51,"y":0,"fileNum":2216,"id":21743,"width":17,"height":50},{"x":0,"y":0,"fileNum":2217,"id":21744,"width":17,"height":50},{"x":17,"y":0,"fileNum":2217,"id":21745,"width":17,"height":50},{"x":34,"y":0,"fileNum":2217,"id":21746,"width":17,"height":50},{"x":51,"y":0,"fileNum":2217,"id":21747,"width":17,"height":50},{"x":0,"y":0,"fileNum":2218,"id":21748,"width":17,"height":50},{"x":17,"y":0,"fileNum":2218,"id":21749,"width":17,"height":50},{"x":34,"y":0,"fileNum":2218,"id":21750,"width":17,"height":50},{"x":51,"y":0,"fileNum":2218,"id":21751,"width":17,"height":50},{"x":0,"y":0,"fileNum":2219,"id":21752,"width":17,"height":50},{"x":17,"y":0,"fileNum":2219,"id":21753,"width":17,"height":50},{"x":34,"y":0,"fileNum":2219,"id":21754,"width":17,"height":50},{"x":51,"y":0,"fileNum":2219,"id":21755,"width":17,"height":50},{"x":0,"y":0,"fileNum":2220,"id":21756,"width":17,"height":50},{"x":17,"y":0,"fileNum":2220,"id":21757,"width":17,"height":50},{"x":34,"y":0,"fileNum":2220,"id":21758,"width":17,"height":50},{"x":51,"y":0,"fileNum":2220,"id":21759,"width":17,"height":50},{"x":0,"y":0,"fileNum":2221,"id":21760,"width":17,"height":50},{"x":17,"y":0,"fileNum":2221,"id":21761,"width":17,"height":50},{"x":34,"y":0,"fileNum":2221,"id":21762,"width":17,"height":50},{"x":51,"y":0,"fileNum":2221,"id":21763,"width":17,"height":50},{"x":0,"y":0,"fileNum":2222,"id":21764,"width":17,"height":50},{"x":17,"y":0,"fileNum":2222,"id":21765,"width":17,"height":50},{"x":34,"y":0,"fileNum":2222,"id":21766,"width":17,"height":50},{"x":51,"y":0,"fileNum":2222,"id":21767,"width":17,"height":50},{"x":0,"y":0,"fileNum":2223,"id":21768,"width":17,"height":50},{"x":17,"y":0,"fileNum":2223,"id":21769,"width":17,"height":50},{"x":34,"y":0,"fileNum":2223,"id":21770,"width":17,"height":50},{"x":51,"y":0,"fileNum":2223,"id":21771,"width":17,"height":50},{"x":0,"y":0,"fileNum":2224,"id":21772,"width":17,"height":50},{"x":17,"y":0,"fileNum":2224,"id":21773,"width":17,"height":50},{"x":34,"y":0,"fileNum":2224,"id":21774,"width":17,"height":50},{"x":51,"y":0,"fileNum":2224,"id":21775,"width":17,"height":50},{"x":0,"y":0,"fileNum":2225,"id":21776,"width":17,"height":50},{"x":17,"y":0,"fileNum":2225,"id":21777,"width":17,"height":50},{"x":34,"y":0,"fileNum":2225,"id":21778,"width":17,"height":50},{"x":51,"y":0,"fileNum":2225,"id":21779,"width":17,"height":50},{"x":0,"y":0,"fileNum":2226,"id":21780,"width":17,"height":50},{"x":17,"y":0,"fileNum":2226,"id":21781,"width":17,"height":50},{"x":34,"y":0,"fileNum":2226,"id":21782,"width":17,"height":50},{"x":51,"y":0,"fileNum":2226,"id":21783,"width":17,"height":50},{"x":0,"y":0,"fileNum":2227,"id":21784,"width":17,"height":50},{"x":17,"y":0,"fileNum":2227,"id":21785,"width":17,"height":50},{"x":34,"y":0,"fileNum":2227,"id":21786,"width":17,"height":50},{"x":51,"y":0,"fileNum":2227,"id":21787,"width":17,"height":50},{"x":0,"y":0,"fileNum":2228,"id":21788,"width":17,"height":50},{"x":17,"y":0,"fileNum":2228,"id":21789,"width":17,"height":50},{"x":34,"y":0,"fileNum":2228,"id":21790,"width":17,"height":50},{"x":51,"y":0,"fileNum":2228,"id":21791,"width":17,"height":50},{"x":0,"y":0,"fileNum":4158,"id":21792,"width":18,"height":26},{"x":18,"y":0,"fileNum":4158,"id":21793,"width":18,"height":26},{"x":0,"y":26,"fileNum":4158,"id":21794,"width":18,"height":26},{"x":18,"y":26,"fileNum":4158,"id":21795,"width":18,"height":26},{"x":0,"y":52,"fileNum":4158,"id":21796,"width":18,"height":26},{"x":18,"y":52,"fileNum":4158,"id":21797,"width":18,"height":26},{"x":0,"y":78,"fileNum":4158,"id":21798,"width":18,"height":26},{"x":18,"y":78,"fileNum":4158,"id":21799,"width":18,"height":26},{"x":0,"y":0,"fileNum":4159,"id":21804,"width":43,"height":28},{"x":43,"y":0,"fileNum":4159,"id":21805,"width":43,"height":28},{"x":86,"y":0,"fileNum":4159,"id":21806,"width":43,"height":28},{"x":129,"y":0,"fileNum":4159,"id":21807,"width":43,"height":28},{"x":0,"y":28,"fileNum":4159,"id":21808,"width":43,"height":28},{"x":43,"y":28,"fileNum":4159,"id":21809,"width":43,"height":28},{"x":86,"y":28,"fileNum":4159,"id":21810,"width":43,"height":28},{"x":129,"y":28,"fileNum":4159,"id":21811,"width":43,"height":28},{"x":0,"y":56,"fileNum":4159,"id":21812,"width":43,"height":28},{"x":43,"y":56,"fileNum":4159,"id":21813,"width":43,"height":28},{"x":86,"y":56,"fileNum":4159,"id":21814,"width":43,"height":28},{"x":129,"y":56,"fileNum":4159,"id":21815,"width":43,"height":28},{"x":0,"y":84,"fileNum":4159,"id":21816,"width":43,"height":28},{"x":43,"y":84,"fileNum":4159,"id":21817,"width":43,"height":28},{"x":86,"y":84,"fileNum":4159,"id":21818,"width":43,"height":28},{"x":129,"y":84,"fileNum":4159,"id":21819,"width":43,"height":28},{"x":0,"y":0,"fileNum":4160,"id":21824,"width":33,"height":33},{"x":33,"y":0,"fileNum":4160,"id":21825,"width":33,"height":33},{"x":66,"y":0,"fileNum":4160,"id":21826,"width":33,"height":33},{"x":99,"y":0,"fileNum":4160,"id":21827,"width":33,"height":33},{"x":132,"y":0,"fileNum":4160,"id":21828,"width":33,"height":33},{"x":165,"y":0,"fileNum":4160,"id":21829,"width":33,"height":33},{"x":0,"y":33,"fileNum":4160,"id":21830,"width":33,"height":33},{"x":33,"y":33,"fileNum":4160,"id":21831,"width":33,"height":33},{"x":66,"y":33,"fileNum":4160,"id":21832,"width":33,"height":33},{"x":99,"y":33,"fileNum":4160,"id":21833,"width":33,"height":33},{"x":132,"y":33,"fileNum":4160,"id":21834,"width":33,"height":33},{"x":165,"y":33,"fileNum":4160,"id":21835,"width":33,"height":33},{"x":0,"y":66,"fileNum":4160,"id":21836,"width":33,"height":33},{"x":33,"y":66,"fileNum":4160,"id":21837,"width":33,"height":33},{"x":66,"y":66,"fileNum":4160,"id":21838,"width":33,"height":33},{"x":99,"y":66,"fileNum":4160,"id":21839,"width":33,"height":33},{"x":132,"y":66,"fileNum":4160,"id":21840,"width":33,"height":33},{"x":165,"y":66,"fileNum":4160,"id":21841,"width":33,"height":33},{"x":0,"y":99,"fileNum":4160,"id":21842,"width":33,"height":33},{"x":33,"y":99,"fileNum":4160,"id":21843,"width":33,"height":33},{"x":66,"y":99,"fileNum":4160,"id":21844,"width":33,"height":33},{"x":99,"y":99,"fileNum":4160,"id":21845,"width":33,"height":33},{"x":132,"y":99,"fileNum":4160,"id":21846,"width":33,"height":33},{"x":0,"y":0,"fileNum":4161,"id":21851,"width":34,"height":42},{"x":34,"y":0,"fileNum":4161,"id":21852,"width":34,"height":42},{"x":68,"y":0,"fileNum":4161,"id":21853,"width":34,"height":42},{"x":102,"y":0,"fileNum":4161,"id":21854,"width":34,"height":42},{"x":0,"y":42,"fileNum":4161,"id":21855,"width":34,"height":42},{"x":34,"y":42,"fileNum":4161,"id":21856,"width":34,"height":42},{"x":68,"y":42,"fileNum":4161,"id":21857,"width":34,"height":42},{"x":102,"y":42,"fileNum":4161,"id":21858,"width":34,"height":42},{"x":0,"y":84,"fileNum":4161,"id":21859,"width":34,"height":42},{"x":34,"y":84,"fileNum":4161,"id":21860,"width":34,"height":42},{"x":68,"y":84,"fileNum":4161,"id":21861,"width":34,"height":42},{"x":102,"y":84,"fileNum":4161,"id":21862,"width":34,"height":42},{"x":0,"y":126,"fileNum":4161,"id":21863,"width":34,"height":42},{"x":34,"y":126,"fileNum":4161,"id":21864,"width":34,"height":42},{"x":68,"y":126,"fileNum":4161,"id":21865,"width":34,"height":42},{"x":102,"y":126,"fileNum":4161,"id":21866,"width":34,"height":42},{"x":0,"y":0,"fileNum":4162,"id":21871,"width":44,"height":46},{"x":44,"y":0,"fileNum":4162,"id":21872,"width":44,"height":46},{"x":88,"y":0,"fileNum":4162,"id":21873,"width":44,"height":46},{"x":132,"y":0,"fileNum":4162,"id":21874,"width":44,"height":46},{"x":176,"y":0,"fileNum":4162,"id":21875,"width":44,"height":46},{"x":0,"y":46,"fileNum":4162,"id":21876,"width":44,"height":46},{"x":44,"y":46,"fileNum":4162,"id":21877,"width":44,"height":46},{"x":88,"y":46,"fileNum":4162,"id":21878,"width":44,"height":46},{"x":132,"y":46,"fileNum":4162,"id":21879,"width":44,"height":46},{"x":176,"y":46,"fileNum":4162,"id":21880,"width":44,"height":46},{"x":0,"y":92,"fileNum":4162,"id":21881,"width":44,"height":46},{"x":44,"y":92,"fileNum":4162,"id":21882,"width":44,"height":46},{"x":88,"y":92,"fileNum":4162,"id":21883,"width":44,"height":46},{"x":132,"y":92,"fileNum":4162,"id":21884,"width":44,"height":46},{"x":176,"y":92,"fileNum":4162,"id":21885,"width":44,"height":46},{"x":0,"y":138,"fileNum":4162,"id":21886,"width":44,"height":46},{"x":44,"y":138,"fileNum":4162,"id":21887,"width":44,"height":46},{"x":88,"y":138,"fileNum":4162,"id":21888,"width":44,"height":46},{"x":132,"y":138,"fileNum":4162,"id":21889,"width":44,"height":46},{"x":176,"y":138,"fileNum":4162,"id":21890,"width":44,"height":46},{"x":0,"y":0,"fileNum":4163,"id":21895,"width":35,"height":35},{"x":35,"y":0,"fileNum":4163,"id":21896,"width":35,"height":35},{"x":70,"y":0,"fileNum":4163,"id":21897,"width":35,"height":35},{"x":105,"y":0,"fileNum":4163,"id":21898,"width":35,"height":35},{"x":140,"y":0,"fileNum":4163,"id":21899,"width":35,"height":35},{"x":175,"y":0,"fileNum":4163,"id":21900,"width":35,"height":35},{"x":0,"y":35,"fileNum":4163,"id":21901,"width":35,"height":35},{"x":35,"y":35,"fileNum":4163,"id":21902,"width":35,"height":35},{"x":70,"y":35,"fileNum":4163,"id":21903,"width":35,"height":35},{"x":105,"y":35,"fileNum":4163,"id":21904,"width":35,"height":35},{"x":140,"y":35,"fileNum":4163,"id":21905,"width":35,"height":35},{"x":175,"y":35,"fileNum":4163,"id":21906,"width":35,"height":35},{"x":0,"y":70,"fileNum":4163,"id":21907,"width":35,"height":35},{"x":35,"y":70,"fileNum":4163,"id":21908,"width":35,"height":35},{"x":70,"y":70,"fileNum":4163,"id":21909,"width":35,"height":35},{"x":105,"y":70,"fileNum":4163,"id":21910,"width":35,"height":35},{"x":140,"y":70,"fileNum":4163,"id":21911,"width":35,"height":35},{"x":175,"y":70,"fileNum":4163,"id":21912,"width":35,"height":35},{"x":0,"y":105,"fileNum":4163,"id":21913,"width":35,"height":35},{"x":35,"y":105,"fileNum":4163,"id":21914,"width":35,"height":35},{"x":70,"y":105,"fileNum":4163,"id":21915,"width":35,"height":35},{"x":105,"y":105,"fileNum":4163,"id":21916,"width":35,"height":35},{"x":140,"y":105,"fileNum":4163,"id":21917,"width":35,"height":35},{"x":175,"y":105,"fileNum":4163,"id":21918,"width":35,"height":35},{"x":0,"y":0,"fileNum":21010,"id":21923,"width":25,"height":45},{"x":25,"y":0,"fileNum":21010,"id":21924,"width":25,"height":45},{"x":50,"y":0,"fileNum":21010,"id":21925,"width":25,"height":45},{"x":75,"y":0,"fileNum":21010,"id":21926,"width":25,"height":45},{"x":100,"y":0,"fileNum":21010,"id":21927,"width":25,"height":45},{"x":125,"y":0,"fileNum":21010,"id":21928,"width":25,"height":45},{"x":0,"y":45,"fileNum":21010,"id":21929,"width":25,"height":45},{"x":25,"y":45,"fileNum":21010,"id":21930,"width":25,"height":45},{"x":50,"y":45,"fileNum":21010,"id":21931,"width":25,"height":45},{"x":75,"y":45,"fileNum":21010,"id":21932,"width":25,"height":45},{"x":100,"y":45,"fileNum":21010,"id":21933,"width":25,"height":45},{"x":125,"y":45,"fileNum":21010,"id":21934,"width":25,"height":45},{"x":0,"y":90,"fileNum":21010,"id":21935,"width":25,"height":45},{"x":25,"y":90,"fileNum":21010,"id":21936,"width":25,"height":45},{"x":50,"y":90,"fileNum":21010,"id":21937,"width":25,"height":45},{"x":75,"y":90,"fileNum":21010,"id":21938,"width":25,"height":45},{"x":100,"y":90,"fileNum":21010,"id":21939,"width":25,"height":45},{"x":0,"y":135,"fileNum":21010,"id":21940,"width":25,"height":45},{"x":25,"y":135,"fileNum":21010,"id":21941,"width":25,"height":45},{"x":50,"y":135,"fileNum":21010,"id":21942,"width":25,"height":45},{"x":75,"y":135,"fileNum":21010,"id":21943,"width":25,"height":45},{"x":100,"y":135,"fileNum":21010,"id":21944,"width":25,"height":45},{"x":0,"y":0,"fileNum":4164,"id":21949,"width":26,"height":20},{"x":26,"y":0,"fileNum":4164,"id":21950,"width":26,"height":20},{"x":52,"y":0,"fileNum":4164,"id":21951,"width":26,"height":20},{"x":78,"y":0,"fileNum":4164,"id":21952,"width":25,"height":20},{"x":0,"y":20,"fileNum":4164,"id":21953,"width":26,"height":20},{"x":26,"y":20,"fileNum":4164,"id":21954,"width":26,"height":20},{"x":52,"y":20,"fileNum":4164,"id":21955,"width":26,"height":20},{"x":78,"y":20,"fileNum":4164,"id":21956,"width":25,"height":20},{"x":0,"y":40,"fileNum":4164,"id":21957,"width":26,"height":20},{"x":26,"y":40,"fileNum":4164,"id":21958,"width":26,"height":20},{"x":52,"y":40,"fileNum":4164,"id":21959,"width":26,"height":20},{"x":78,"y":40,"fileNum":4164,"id":21960,"width":25,"height":20},{"x":0,"y":60,"fileNum":4164,"id":21961,"width":26,"height":19},{"x":26,"y":60,"fileNum":4164,"id":21962,"width":26,"height":19},{"x":52,"y":60,"fileNum":4164,"id":21963,"width":26,"height":19},{"x":78,"y":60,"fileNum":4164,"id":21964,"width":25,"height":19},{"x":0,"y":0,"fileNum":7060,"id":21969,"width":64,"height":32},{"x":0,"y":0,"fileNum":7061,"id":21970,"width":64,"height":32},{"x":0,"y":0,"fileNum":7062,"id":21971,"width":64,"height":32},{"x":0,"y":0,"fileNum":7063,"id":21972,"width":64,"height":32},{"x":0,"y":0,"fileNum":7064,"id":21973,"width":64,"height":32},{"x":0,"y":0,"fileNum":7065,"id":21974,"width":64,"height":32},{"x":0,"y":0,"fileNum":7066,"id":21975,"width":64,"height":32},{"x":0,"y":0,"fileNum":7067,"id":21976,"width":64,"height":32},{"x":0,"y":0,"fileNum":7068,"id":21977,"width":64,"height":32},{"x":0,"y":0,"fileNum":7069,"id":21978,"width":64,"height":32},{"x":0,"y":0,"fileNum":7070,"id":21979,"width":64,"height":32},{"x":0,"y":0,"fileNum":7071,"id":21980,"width":64,"height":32},{"x":0,"y":0,"fileNum":16073,"id":21981,"width":25,"height":45},{"x":25,"y":0,"fileNum":16073,"id":21982,"width":25,"height":45},{"x":50,"y":0,"fileNum":16073,"id":21983,"width":25,"height":45},{"x":75,"y":0,"fileNum":16073,"id":21984,"width":25,"height":45},{"x":100,"y":0,"fileNum":16073,"id":21985,"width":25,"height":45},{"x":125,"y":0,"fileNum":16073,"id":21986,"width":25,"height":45},{"x":0,"y":45,"fileNum":16073,"id":21987,"width":25,"height":45},{"x":25,"y":45,"fileNum":16073,"id":21988,"width":25,"height":45},{"x":50,"y":45,"fileNum":16073,"id":21989,"width":25,"height":45},{"x":75,"y":45,"fileNum":16073,"id":21990,"width":25,"height":45},{"x":100,"y":45,"fileNum":16073,"id":21991,"width":25,"height":45},{"x":125,"y":45,"fileNum":16073,"id":21992,"width":25,"height":45},{"x":0,"y":90,"fileNum":16073,"id":21993,"width":25,"height":45},{"x":25,"y":90,"fileNum":16073,"id":21994,"width":25,"height":45},{"x":50,"y":90,"fileNum":16073,"id":21995,"width":25,"height":45},{"x":75,"y":90,"fileNum":16073,"id":21996,"width":25,"height":45},{"x":100,"y":90,"fileNum":16073,"id":21997,"width":25,"height":45},{"x":0,"y":135,"fileNum":16073,"id":21998,"width":25,"height":45},{"x":25,"y":135,"fileNum":16073,"id":21999,"width":25,"height":45},{"x":50,"y":135,"fileNum":16073,"id":22000,"width":25,"height":45},{"x":75,"y":135,"fileNum":16073,"id":22001,"width":25,"height":45},{"x":100,"y":135,"fileNum":16073,"id":22002,"width":25,"height":45},{"x":0,"y":0,"fileNum":16074,"id":22007,"width":25,"height":45},{"x":25,"y":0,"fileNum":16074,"id":22008,"width":25,"height":45},{"x":50,"y":0,"fileNum":16074,"id":22009,"width":25,"height":45},{"x":75,"y":0,"fileNum":16074,"id":22010,"width":25,"height":45},{"x":100,"y":0,"fileNum":16074,"id":22011,"width":25,"height":45},{"x":125,"y":0,"fileNum":16074,"id":22012,"width":25,"height":45},{"x":0,"y":45,"fileNum":16074,"id":22013,"width":25,"height":45},{"x":25,"y":45,"fileNum":16074,"id":22014,"width":25,"height":45},{"x":50,"y":45,"fileNum":16074,"id":22015,"width":25,"height":45},{"x":75,"y":45,"fileNum":16074,"id":22016,"width":25,"height":45},{"x":100,"y":45,"fileNum":16074,"id":22017,"width":25,"height":45},{"x":125,"y":45,"fileNum":16074,"id":22018,"width":25,"height":45},{"x":0,"y":90,"fileNum":16074,"id":22019,"width":25,"height":45},{"x":25,"y":90,"fileNum":16074,"id":22020,"width":25,"height":45},{"x":50,"y":90,"fileNum":16074,"id":22021,"width":25,"height":45},{"x":75,"y":90,"fileNum":16074,"id":22022,"width":25,"height":45},{"x":100,"y":90,"fileNum":16074,"id":22023,"width":25,"height":45},{"x":0,"y":135,"fileNum":16074,"id":22024,"width":25,"height":45},{"x":25,"y":135,"fileNum":16074,"id":22025,"width":25,"height":45},{"x":50,"y":135,"fileNum":16074,"id":22026,"width":25,"height":45},{"x":75,"y":135,"fileNum":16074,"id":22027,"width":25,"height":45},{"x":100,"y":135,"fileNum":16074,"id":22028,"width":25,"height":45},{"x":0,"y":0,"fileNum":16075,"id":22033,"width":32,"height":32},{"x":0,"y":0,"fileNum":18025,"id":22034,"width":32,"height":32},{"x":0,"y":0,"fileNum":18026,"id":22035,"width":17,"height":28},{"x":17,"y":0,"fileNum":18026,"id":22036,"width":17,"height":28},{"x":34,"y":0,"fileNum":18026,"id":22037,"width":17,"height":28},{"x":51,"y":0,"fileNum":18026,"id":22038,"width":17,"height":28},{"x":0,"y":0,"fileNum":674,"id":22039,"width":32,"height":32},{"x":0,"y":0,"fileNum":675,"id":22040,"width":25,"height":45},{"x":25,"y":0,"fileNum":675,"id":22041,"width":25,"height":45},{"x":50,"y":0,"fileNum":675,"id":22042,"width":25,"height":45},{"x":75,"y":0,"fileNum":675,"id":22043,"width":25,"height":45},{"x":100,"y":0,"fileNum":675,"id":22044,"width":25,"height":45},{"x":125,"y":0,"fileNum":675,"id":22045,"width":25,"height":45},{"x":0,"y":45,"fileNum":675,"id":22046,"width":25,"height":45},{"x":25,"y":45,"fileNum":675,"id":22047,"width":25,"height":45},{"x":50,"y":45,"fileNum":675,"id":22048,"width":25,"height":45},{"x":75,"y":45,"fileNum":675,"id":22049,"width":25,"height":45},{"x":100,"y":45,"fileNum":675,"id":22050,"width":25,"height":45},{"x":125,"y":45,"fileNum":675,"id":22051,"width":25,"height":45},{"x":0,"y":90,"fileNum":675,"id":22052,"width":25,"height":45},{"x":25,"y":90,"fileNum":675,"id":22053,"width":25,"height":45},{"x":50,"y":90,"fileNum":675,"id":22054,"width":25,"height":45},{"x":75,"y":90,"fileNum":675,"id":22055,"width":25,"height":45},{"x":100,"y":90,"fileNum":675,"id":22056,"width":25,"height":45},{"x":0,"y":135,"fileNum":675,"id":22057,"width":25,"height":45},{"x":25,"y":135,"fileNum":675,"id":22058,"width":25,"height":45},{"x":50,"y":135,"fileNum":675,"id":22059,"width":25,"height":45},{"x":75,"y":135,"fileNum":675,"id":22060,"width":25,"height":45},{"x":100,"y":135,"fileNum":675,"id":22061,"width":25,"height":45},{"x":0,"y":0,"fileNum":11049,"id":22066,"width":32,"height":96},{"x":0,"y":0,"fileNum":15228,"id":22067,"width":266,"height":256},{"x":266,"y":0,"fileNum":15228,"id":22068,"width":266,"height":256},{"x":532,"y":0,"fileNum":15228,"id":22069,"width":266,"height":256},{"x":0,"y":0,"fileNum":11048,"id":22071,"width":96,"height":32},{"x":0,"y":0,"fileNum":11050,"id":22072,"width":32,"height":96},{"x":0,"y":0,"fileNum":11051,"id":22073,"width":32,"height":32},{"x":32,"y":0,"fileNum":11051,"id":22074,"width":32,"height":32},{"x":0,"y":0,"fileNum":11052,"id":22075,"width":32,"height":32},{"x":32,"y":0,"fileNum":11052,"id":22076,"width":32,"height":32},{"x":0,"y":0,"fileNum":11053,"id":22077,"width":96,"height":32},{"x":0,"y":0,"fileNum":8207,"id":22078,"width":32,"height":32},{"x":32,"y":0,"fileNum":8207,"id":22079,"width":32,"height":32},{"x":64,"y":0,"fileNum":8207,"id":22080,"width":32,"height":32},{"x":96,"y":0,"fileNum":8207,"id":22081,"width":32,"height":32},{"x":0,"y":32,"fileNum":8207,"id":22082,"width":32,"height":32},{"x":32,"y":32,"fileNum":8207,"id":22083,"width":32,"height":32},{"x":64,"y":32,"fileNum":8207,"id":22084,"width":32,"height":32},{"x":96,"y":32,"fileNum":8207,"id":22085,"width":32,"height":32},{"x":0,"y":64,"fileNum":8207,"id":22086,"width":32,"height":32},{"x":32,"y":64,"fileNum":8207,"id":22087,"width":32,"height":32},{"x":64,"y":64,"fileNum":8207,"id":22088,"width":32,"height":32},{"x":96,"y":64,"fileNum":8207,"id":22089,"width":32,"height":32},{"x":0,"y":96,"fileNum":8207,"id":22090,"width":32,"height":32},{"x":32,"y":96,"fileNum":8207,"id":22091,"width":32,"height":32},{"x":64,"y":96,"fileNum":8207,"id":22092,"width":32,"height":32},{"x":96,"y":96,"fileNum":8207,"id":22093,"width":32,"height":32},{"x":0,"y":0,"fileNum":9007,"id":22095,"width":32,"height":32},{"x":32,"y":0,"fileNum":9007,"id":22096,"width":32,"height":32},{"x":64,"y":0,"fileNum":9007,"id":22097,"width":32,"height":32},{"x":96,"y":0,"fileNum":9007,"id":22098,"width":32,"height":32},{"x":128,"y":0,"fileNum":9007,"id":22099,"width":32,"height":32},{"x":160,"y":0,"fileNum":9007,"id":22100,"width":32,"height":32},{"x":192,"y":0,"fileNum":9007,"id":22101,"width":32,"height":32},{"x":224,"y":0,"fileNum":9007,"id":22102,"width":32,"height":32},{"x":256,"y":0,"fileNum":9007,"id":22103,"width":32,"height":32},{"x":0,"y":32,"fileNum":9007,"id":22104,"width":32,"height":32},{"x":32,"y":32,"fileNum":9007,"id":22105,"width":32,"height":32},{"x":64,"y":32,"fileNum":9007,"id":22106,"width":32,"height":32},{"x":96,"y":32,"fileNum":9007,"id":22107,"width":32,"height":32},{"x":128,"y":32,"fileNum":9007,"id":22108,"width":32,"height":32},{"x":160,"y":32,"fileNum":9007,"id":22109,"width":32,"height":32},{"x":192,"y":32,"fileNum":9007,"id":22110,"width":32,"height":32},{"x":224,"y":32,"fileNum":9007,"id":22111,"width":32,"height":32},{"x":256,"y":32,"fileNum":9007,"id":22112,"width":32,"height":32},{"x":0,"y":64,"fileNum":9007,"id":22113,"width":32,"height":32},{"x":32,"y":64,"fileNum":9007,"id":22114,"width":32,"height":32},{"x":64,"y":64,"fileNum":9007,"id":22115,"width":32,"height":32},{"x":96,"y":64,"fileNum":9007,"id":22116,"width":32,"height":32},{"x":128,"y":64,"fileNum":9007,"id":22117,"width":32,"height":32},{"x":160,"y":64,"fileNum":9007,"id":22118,"width":32,"height":32},{"x":192,"y":64,"fileNum":9007,"id":22119,"width":32,"height":32},{"x":224,"y":64,"fileNum":9007,"id":22120,"width":32,"height":32},{"x":256,"y":64,"fileNum":9007,"id":22121,"width":32,"height":32},{"x":0,"y":96,"fileNum":9007,"id":22122,"width":32,"height":32},{"x":32,"y":96,"fileNum":9007,"id":22123,"width":32,"height":32},{"x":64,"y":96,"fileNum":9007,"id":22124,"width":32,"height":32},{"x":96,"y":96,"fileNum":9007,"id":22125,"width":32,"height":32},{"x":128,"y":96,"fileNum":9007,"id":22126,"width":32,"height":32},{"x":160,"y":96,"fileNum":9007,"id":22127,"width":32,"height":32},{"x":192,"y":96,"fileNum":9007,"id":22128,"width":32,"height":32},{"x":224,"y":96,"fileNum":9007,"id":22129,"width":32,"height":32},{"x":256,"y":96,"fileNum":9007,"id":22130,"width":32,"height":32},{"x":0,"y":128,"fileNum":9007,"id":22131,"width":32,"height":32},{"x":32,"y":128,"fileNum":9007,"id":22132,"width":32,"height":32},{"x":64,"y":128,"fileNum":9007,"id":22133,"width":32,"height":32},{"x":96,"y":128,"fileNum":9007,"id":22134,"width":32,"height":32},{"x":128,"y":128,"fileNum":9007,"id":22135,"width":32,"height":32},{"x":160,"y":128,"fileNum":9007,"id":22136,"width":32,"height":32},{"x":192,"y":128,"fileNum":9007,"id":22137,"width":32,"height":32},{"x":224,"y":128,"fileNum":9007,"id":22138,"width":32,"height":32},{"x":256,"y":128,"fileNum":9007,"id":22139,"width":32,"height":32},{"x":0,"y":160,"fileNum":9007,"id":22140,"width":32,"height":32},{"x":32,"y":160,"fileNum":9007,"id":22141,"width":32,"height":32},{"x":64,"y":160,"fileNum":9007,"id":22142,"width":32,"height":32},{"x":96,"y":160,"fileNum":9007,"id":22143,"width":32,"height":32},{"x":128,"y":160,"fileNum":9007,"id":22144,"width":32,"height":32},{"x":160,"y":160,"fileNum":9007,"id":22145,"width":32,"height":32},{"x":192,"y":160,"fileNum":9007,"id":22146,"width":32,"height":32},{"x":224,"y":160,"fileNum":9007,"id":22147,"width":32,"height":32},{"x":256,"y":160,"fileNum":9007,"id":22148,"width":32,"height":32},{"x":0,"y":192,"fileNum":9007,"id":22149,"width":32,"height":32},{"x":32,"y":192,"fileNum":9007,"id":22150,"width":32,"height":32},{"x":64,"y":192,"fileNum":9007,"id":22151,"width":32,"height":32},{"x":96,"y":192,"fileNum":9007,"id":22152,"width":32,"height":32},{"x":128,"y":192,"fileNum":9007,"id":22153,"width":32,"height":32},{"x":160,"y":192,"fileNum":9007,"id":22154,"width":32,"height":32},{"x":192,"y":192,"fileNum":9007,"id":22155,"width":32,"height":32},{"x":224,"y":192,"fileNum":9007,"id":22156,"width":32,"height":32},{"x":256,"y":192,"fileNum":9007,"id":22157,"width":32,"height":32},{"x":0,"y":224,"fileNum":9007,"id":22158,"width":32,"height":32},{"x":32,"y":224,"fileNum":9007,"id":22159,"width":32,"height":32},{"x":64,"y":224,"fileNum":9007,"id":22160,"width":32,"height":32},{"x":96,"y":224,"fileNum":9007,"id":22161,"width":32,"height":32},{"x":128,"y":224,"fileNum":9007,"id":22162,"width":32,"height":32},{"x":160,"y":224,"fileNum":9007,"id":22163,"width":32,"height":32},{"x":192,"y":224,"fileNum":9007,"id":22164,"width":32,"height":32},{"x":224,"y":224,"fileNum":9007,"id":22165,"width":32,"height":32},{"x":256,"y":224,"fileNum":9007,"id":22166,"width":32,"height":32},{"x":0,"y":256,"fileNum":9007,"id":22167,"width":32,"height":32},{"x":32,"y":256,"fileNum":9007,"id":22168,"width":32,"height":32},{"x":64,"y":256,"fileNum":9007,"id":22169,"width":32,"height":32},{"x":96,"y":256,"fileNum":9007,"id":22170,"width":32,"height":32},{"x":128,"y":256,"fileNum":9007,"id":22171,"width":32,"height":32},{"x":160,"y":256,"fileNum":9007,"id":22172,"width":32,"height":32},{"x":192,"y":256,"fileNum":9007,"id":22173,"width":32,"height":32},{"x":224,"y":256,"fileNum":9007,"id":22174,"width":32,"height":32},{"x":256,"y":256,"fileNum":9007,"id":22175,"width":32,"height":32},{"x":0,"y":288,"fileNum":9007,"id":22176,"width":32,"height":32},{"x":32,"y":288,"fileNum":9007,"id":22177,"width":32,"height":32},{"x":64,"y":288,"fileNum":9007,"id":22178,"width":32,"height":32},{"x":96,"y":288,"fileNum":9007,"id":22179,"width":32,"height":32},{"x":128,"y":288,"fileNum":9007,"id":22180,"width":32,"height":32},{"x":160,"y":288,"fileNum":9007,"id":22181,"width":32,"height":32},{"x":192,"y":288,"fileNum":9007,"id":22182,"width":32,"height":32},{"x":224,"y":288,"fileNum":9007,"id":22183,"width":32,"height":32},{"x":256,"y":288,"fileNum":9007,"id":22184,"width":32,"height":32},{"x":0,"y":320,"fileNum":9007,"id":22185,"width":32,"height":32},{"x":32,"y":320,"fileNum":9007,"id":22186,"width":32,"height":32},{"x":64,"y":320,"fileNum":9007,"id":22187,"width":32,"height":32},{"x":96,"y":320,"fileNum":9007,"id":22188,"width":32,"height":32},{"x":128,"y":320,"fileNum":9007,"id":22189,"width":32,"height":32},{"x":160,"y":320,"fileNum":9007,"id":22190,"width":32,"height":32},{"x":192,"y":320,"fileNum":9007,"id":22191,"width":32,"height":32},{"x":224,"y":320,"fileNum":9007,"id":22192,"width":32,"height":32},{"x":256,"y":320,"fileNum":9007,"id":22193,"width":32,"height":32},{"x":0,"y":352,"fileNum":9007,"id":22194,"width":32,"height":32},{"x":32,"y":352,"fileNum":9007,"id":22195,"width":32,"height":32},{"x":64,"y":352,"fileNum":9007,"id":22196,"width":32,"height":32},{"x":96,"y":352,"fileNum":9007,"id":22197,"width":32,"height":32},{"x":128,"y":352,"fileNum":9007,"id":22198,"width":32,"height":32},{"x":160,"y":352,"fileNum":9007,"id":22199,"width":32,"height":32},{"x":192,"y":352,"fileNum":9007,"id":22200,"width":32,"height":32},{"x":224,"y":352,"fileNum":9007,"id":22201,"width":32,"height":32},{"x":256,"y":352,"fileNum":9007,"id":22202,"width":32,"height":32},{"x":0,"y":384,"fileNum":9007,"id":22203,"width":32,"height":32},{"x":32,"y":384,"fileNum":9007,"id":22204,"width":32,"height":32},{"x":64,"y":384,"fileNum":9007,"id":22205,"width":32,"height":32},{"x":96,"y":384,"fileNum":9007,"id":22206,"width":32,"height":32},{"x":128,"y":384,"fileNum":9007,"id":22207,"width":32,"height":32},{"x":160,"y":384,"fileNum":9007,"id":22208,"width":32,"height":32},{"x":192,"y":384,"fileNum":9007,"id":22209,"width":32,"height":32},{"x":224,"y":384,"fileNum":9007,"id":22210,"width":32,"height":32},{"x":256,"y":384,"fileNum":9007,"id":22211,"width":8,"height":32},{"x":0,"y":0,"fileNum":4165,"id":22212,"width":25,"height":58},{"x":25,"y":0,"fileNum":4165,"id":22213,"width":25,"height":58},{"x":50,"y":0,"fileNum":4165,"id":22214,"width":25,"height":58},{"x":75,"y":0,"fileNum":4165,"id":22215,"width":25,"height":58},{"x":100,"y":0,"fileNum":4165,"id":22216,"width":25,"height":58},{"x":125,"y":0,"fileNum":4165,"id":22217,"width":25,"height":58},{"x":0,"y":58,"fileNum":4165,"id":22218,"width":25,"height":58},{"x":25,"y":58,"fileNum":4165,"id":22219,"width":25,"height":58},{"x":50,"y":58,"fileNum":4165,"id":22220,"width":25,"height":58},{"x":75,"y":58,"fileNum":4165,"id":22221,"width":25,"height":58},{"x":100,"y":58,"fileNum":4165,"id":22222,"width":25,"height":58},{"x":125,"y":58,"fileNum":4165,"id":22223,"width":25,"height":58},{"x":0,"y":116,"fileNum":4165,"id":22224,"width":25,"height":58},{"x":25,"y":116,"fileNum":4165,"id":22225,"width":25,"height":58},{"x":50,"y":116,"fileNum":4165,"id":22226,"width":25,"height":58},{"x":75,"y":116,"fileNum":4165,"id":22227,"width":25,"height":58},{"x":100,"y":116,"fileNum":4165,"id":22228,"width":25,"height":58},{"x":0,"y":174,"fileNum":4165,"id":22229,"width":25,"height":58},{"x":25,"y":174,"fileNum":4165,"id":22230,"width":25,"height":58},{"x":50,"y":174,"fileNum":4165,"id":22231,"width":25,"height":58},{"x":75,"y":174,"fileNum":4165,"id":22232,"width":25,"height":58},{"x":100,"y":174,"fileNum":4165,"id":22233,"width":25,"height":58},{"x":0,"y":0,"fileNum":9022,"id":22238,"width":32,"height":32},{"x":32,"y":0,"fileNum":9022,"id":22239,"width":32,"height":32},{"x":64,"y":0,"fileNum":9022,"id":22240,"width":32,"height":32},{"x":96,"y":0,"fileNum":9022,"id":22241,"width":32,"height":32},{"x":0,"y":32,"fileNum":9022,"id":22242,"width":32,"height":32},{"x":32,"y":32,"fileNum":9022,"id":22243,"width":32,"height":32},{"x":64,"y":32,"fileNum":9022,"id":22244,"width":32,"height":32},{"x":96,"y":32,"fileNum":9022,"id":22245,"width":32,"height":32},{"x":0,"y":64,"fileNum":9022,"id":22246,"width":32,"height":32},{"x":32,"y":64,"fileNum":9022,"id":22247,"width":32,"height":32},{"x":64,"y":64,"fileNum":9022,"id":22248,"width":32,"height":32},{"x":96,"y":64,"fileNum":9022,"id":22249,"width":32,"height":32},{"x":0,"y":96,"fileNum":9022,"id":22250,"width":32,"height":32},{"x":32,"y":96,"fileNum":9022,"id":22251,"width":32,"height":32},{"x":64,"y":96,"fileNum":9022,"id":22252,"width":32,"height":32},{"x":96,"y":96,"fileNum":9022,"id":22253,"width":32,"height":32},{"x":0,"y":0,"fileNum":15230,"id":22254,"width":256,"height":256},{"x":0,"y":0,"fileNum":15231,"id":22255,"width":256,"height":256},{"x":0,"y":0,"fileNum":4166,"id":22256,"width":40,"height":50},{"x":40,"y":0,"fileNum":4166,"id":22257,"width":40,"height":50},{"x":80,"y":0,"fileNum":4166,"id":22258,"width":40,"height":50},{"x":120,"y":0,"fileNum":4166,"id":22259,"width":40,"height":50},{"x":0,"y":50,"fileNum":4166,"id":22260,"width":40,"height":50},{"x":40,"y":50,"fileNum":4166,"id":22261,"width":40,"height":50},{"x":80,"y":50,"fileNum":4166,"id":22262,"width":40,"height":50},{"x":120,"y":50,"fileNum":4166,"id":22263,"width":40,"height":50},{"x":0,"y":100,"fileNum":4166,"id":22264,"width":40,"height":50},{"x":0,"y":0,"fileNum":16076,"id":22266,"width":25,"height":45},{"x":25,"y":0,"fileNum":16076,"id":22267,"width":25,"height":45},{"x":50,"y":0,"fileNum":16076,"id":22268,"width":25,"height":45},{"x":75,"y":0,"fileNum":16076,"id":22269,"width":25,"height":45},{"x":100,"y":0,"fileNum":16076,"id":22270,"width":25,"height":45},{"x":125,"y":0,"fileNum":16076,"id":22271,"width":25,"height":45},{"x":0,"y":45,"fileNum":16076,"id":22272,"width":25,"height":45},{"x":25,"y":45,"fileNum":16076,"id":22273,"width":25,"height":45},{"x":50,"y":45,"fileNum":16076,"id":22274,"width":25,"height":45},{"x":75,"y":45,"fileNum":16076,"id":22275,"width":25,"height":45},{"x":100,"y":45,"fileNum":16076,"id":22276,"width":25,"height":45},{"x":125,"y":45,"fileNum":16076,"id":22277,"width":25,"height":45},{"x":0,"y":90,"fileNum":16076,"id":22278,"width":25,"height":45},{"x":25,"y":90,"fileNum":16076,"id":22279,"width":25,"height":45},{"x":50,"y":90,"fileNum":16076,"id":22280,"width":25,"height":45},{"x":75,"y":90,"fileNum":16076,"id":22281,"width":25,"height":45},{"x":100,"y":90,"fileNum":16076,"id":22282,"width":25,"height":45},{"x":0,"y":135,"fileNum":16076,"id":22283,"width":25,"height":45},{"x":25,"y":135,"fileNum":16076,"id":22284,"width":25,"height":45},{"x":50,"y":135,"fileNum":16076,"id":22285,"width":25,"height":45},{"x":75,"y":135,"fileNum":16076,"id":22286,"width":25,"height":45},{"x":100,"y":135,"fileNum":16076,"id":22287,"width":25,"height":45},{"x":0,"y":0,"fileNum":16077,"id":22292,"width":25,"height":45},{"x":25,"y":0,"fileNum":16077,"id":22293,"width":25,"height":45},{"x":50,"y":0,"fileNum":16077,"id":22294,"width":25,"height":45},{"x":75,"y":0,"fileNum":16077,"id":22295,"width":25,"height":45},{"x":100,"y":0,"fileNum":16077,"id":22296,"width":25,"height":45},{"x":125,"y":0,"fileNum":16077,"id":22297,"width":25,"height":45},{"x":0,"y":45,"fileNum":16077,"id":22298,"width":25,"height":45},{"x":25,"y":45,"fileNum":16077,"id":22299,"width":25,"height":45},{"x":50,"y":45,"fileNum":16077,"id":22300,"width":25,"height":45},{"x":75,"y":45,"fileNum":16077,"id":22301,"width":25,"height":45},{"x":100,"y":45,"fileNum":16077,"id":22302,"width":25,"height":45},{"x":125,"y":45,"fileNum":16077,"id":22303,"width":25,"height":45},{"x":0,"y":90,"fileNum":16077,"id":22304,"width":25,"height":45},{"x":25,"y":90,"fileNum":16077,"id":22305,"width":25,"height":45},{"x":50,"y":90,"fileNum":16077,"id":22306,"width":25,"height":45},{"x":75,"y":90,"fileNum":16077,"id":22307,"width":25,"height":45},{"x":100,"y":90,"fileNum":16077,"id":22308,"width":25,"height":45},{"x":0,"y":135,"fileNum":16077,"id":22309,"width":25,"height":45},{"x":25,"y":135,"fileNum":16077,"id":22310,"width":25,"height":45},{"x":50,"y":135,"fileNum":16077,"id":22311,"width":25,"height":45},{"x":75,"y":135,"fileNum":16077,"id":22312,"width":25,"height":45},{"x":100,"y":135,"fileNum":16077,"id":22313,"width":25,"height":45},{"x":0,"y":0,"fileNum":16078,"id":22318,"width":25,"height":45},{"x":25,"y":0,"fileNum":16078,"id":22319,"width":25,"height":45},{"x":50,"y":0,"fileNum":16078,"id":22320,"width":25,"height":45},{"x":75,"y":0,"fileNum":16078,"id":22321,"width":25,"height":45},{"x":100,"y":0,"fileNum":16078,"id":22322,"width":25,"height":45},{"x":125,"y":0,"fileNum":16078,"id":22323,"width":25,"height":45},{"x":0,"y":45,"fileNum":16078,"id":22324,"width":25,"height":45},{"x":25,"y":45,"fileNum":16078,"id":22325,"width":25,"height":45},{"x":50,"y":45,"fileNum":16078,"id":22326,"width":25,"height":45},{"x":75,"y":45,"fileNum":16078,"id":22327,"width":25,"height":45},{"x":100,"y":45,"fileNum":16078,"id":22328,"width":25,"height":45},{"x":125,"y":45,"fileNum":16078,"id":22329,"width":25,"height":45},{"x":0,"y":90,"fileNum":16078,"id":22330,"width":25,"height":45},{"x":25,"y":90,"fileNum":16078,"id":22331,"width":25,"height":45},{"x":50,"y":90,"fileNum":16078,"id":22332,"width":25,"height":45},{"x":75,"y":90,"fileNum":16078,"id":22333,"width":25,"height":45},{"x":100,"y":90,"fileNum":16078,"id":22334,"width":25,"height":45},{"x":0,"y":135,"fileNum":16078,"id":22335,"width":25,"height":45},{"x":25,"y":135,"fileNum":16078,"id":22336,"width":25,"height":45},{"x":50,"y":135,"fileNum":16078,"id":22337,"width":25,"height":45},{"x":75,"y":135,"fileNum":16078,"id":22338,"width":25,"height":45},{"x":100,"y":135,"fileNum":16078,"id":22339,"width":25,"height":45},{"x":0,"y":0,"fileNum":16079,"id":22344,"width":25,"height":45},{"x":25,"y":0,"fileNum":16079,"id":22345,"width":25,"height":45},{"x":50,"y":0,"fileNum":16079,"id":22346,"width":25,"height":45},{"x":75,"y":0,"fileNum":16079,"id":22347,"width":25,"height":45},{"x":100,"y":0,"fileNum":16079,"id":22348,"width":25,"height":45},{"x":125,"y":0,"fileNum":16079,"id":22349,"width":25,"height":45},{"x":0,"y":45,"fileNum":16079,"id":22350,"width":25,"height":45},{"x":25,"y":45,"fileNum":16079,"id":22351,"width":25,"height":45},{"x":50,"y":45,"fileNum":16079,"id":22352,"width":25,"height":45},{"x":75,"y":45,"fileNum":16079,"id":22353,"width":25,"height":45},{"x":100,"y":45,"fileNum":16079,"id":22354,"width":25,"height":45},{"x":125,"y":45,"fileNum":16079,"id":22355,"width":25,"height":45},{"x":0,"y":90,"fileNum":16079,"id":22356,"width":25,"height":45},{"x":25,"y":90,"fileNum":16079,"id":22357,"width":25,"height":45},{"x":50,"y":90,"fileNum":16079,"id":22358,"width":25,"height":45},{"x":75,"y":90,"fileNum":16079,"id":22359,"width":25,"height":45},{"x":100,"y":90,"fileNum":16079,"id":22360,"width":25,"height":45},{"x":0,"y":135,"fileNum":16079,"id":22361,"width":25,"height":45},{"x":25,"y":135,"fileNum":16079,"id":22362,"width":25,"height":45},{"x":50,"y":135,"fileNum":16079,"id":22363,"width":25,"height":45},{"x":75,"y":135,"fileNum":16079,"id":22364,"width":25,"height":45},{"x":100,"y":135,"fileNum":16079,"id":22365,"width":25,"height":45},{"x":0,"y":0,"fileNum":16080,"id":22370,"width":25,"height":45},{"x":25,"y":0,"fileNum":16080,"id":22371,"width":25,"height":45},{"x":50,"y":0,"fileNum":16080,"id":22372,"width":25,"height":45},{"x":75,"y":0,"fileNum":16080,"id":22373,"width":25,"height":45},{"x":100,"y":0,"fileNum":16080,"id":22374,"width":25,"height":45},{"x":125,"y":0,"fileNum":16080,"id":22375,"width":25,"height":45},{"x":0,"y":45,"fileNum":16080,"id":22376,"width":25,"height":45},{"x":25,"y":45,"fileNum":16080,"id":22377,"width":25,"height":45},{"x":50,"y":45,"fileNum":16080,"id":22378,"width":25,"height":45},{"x":75,"y":45,"fileNum":16080,"id":22379,"width":25,"height":45},{"x":100,"y":45,"fileNum":16080,"id":22380,"width":25,"height":45},{"x":125,"y":45,"fileNum":16080,"id":22381,"width":25,"height":45},{"x":0,"y":90,"fileNum":16080,"id":22382,"width":25,"height":45},{"x":25,"y":90,"fileNum":16080,"id":22383,"width":25,"height":45},{"x":50,"y":90,"fileNum":16080,"id":22384,"width":25,"height":45},{"x":75,"y":90,"fileNum":16080,"id":22385,"width":25,"height":45},{"x":100,"y":90,"fileNum":16080,"id":22386,"width":25,"height":45},{"x":0,"y":135,"fileNum":16080,"id":22387,"width":25,"height":45},{"x":25,"y":135,"fileNum":16080,"id":22388,"width":25,"height":45},{"x":50,"y":135,"fileNum":16080,"id":22389,"width":25,"height":45},{"x":75,"y":135,"fileNum":16080,"id":22390,"width":25,"height":45},{"x":100,"y":135,"fileNum":16080,"id":22391,"width":25,"height":45},{"x":0,"y":0,"fileNum":16081,"id":22396,"width":25,"height":45},{"x":25,"y":0,"fileNum":16081,"id":22397,"width":25,"height":45},{"x":50,"y":0,"fileNum":16081,"id":22398,"width":25,"height":45},{"x":75,"y":0,"fileNum":16081,"id":22399,"width":25,"height":45},{"x":100,"y":0,"fileNum":16081,"id":22400,"width":25,"height":45},{"x":125,"y":0,"fileNum":16081,"id":22401,"width":25,"height":45},{"x":0,"y":45,"fileNum":16081,"id":22402,"width":25,"height":45},{"x":25,"y":45,"fileNum":16081,"id":22403,"width":25,"height":45},{"x":50,"y":45,"fileNum":16081,"id":22404,"width":25,"height":45},{"x":75,"y":45,"fileNum":16081,"id":22405,"width":25,"height":45},{"x":100,"y":45,"fileNum":16081,"id":22406,"width":25,"height":45},{"x":125,"y":45,"fileNum":16081,"id":22407,"width":25,"height":45},{"x":0,"y":90,"fileNum":16081,"id":22408,"width":25,"height":45},{"x":25,"y":90,"fileNum":16081,"id":22409,"width":25,"height":45},{"x":50,"y":90,"fileNum":16081,"id":22410,"width":25,"height":45},{"x":75,"y":90,"fileNum":16081,"id":22411,"width":25,"height":45},{"x":100,"y":90,"fileNum":16081,"id":22412,"width":25,"height":45},{"x":0,"y":135,"fileNum":16081,"id":22413,"width":25,"height":45},{"x":25,"y":135,"fileNum":16081,"id":22414,"width":25,"height":45},{"x":50,"y":135,"fileNum":16081,"id":22415,"width":25,"height":45},{"x":75,"y":135,"fileNum":16081,"id":22416,"width":25,"height":45},{"x":100,"y":135,"fileNum":16081,"id":22417,"width":25,"height":45},{"x":0,"y":0,"fileNum":16082,"id":22422,"width":25,"height":45},{"x":25,"y":0,"fileNum":16082,"id":22423,"width":25,"height":45},{"x":50,"y":0,"fileNum":16082,"id":22424,"width":25,"height":45},{"x":75,"y":0,"fileNum":16082,"id":22425,"width":25,"height":45},{"x":100,"y":0,"fileNum":16082,"id":22426,"width":25,"height":45},{"x":125,"y":0,"fileNum":16082,"id":22427,"width":25,"height":45},{"x":0,"y":45,"fileNum":16082,"id":22428,"width":25,"height":45},{"x":25,"y":45,"fileNum":16082,"id":22429,"width":25,"height":45},{"x":50,"y":45,"fileNum":16082,"id":22430,"width":25,"height":45},{"x":75,"y":45,"fileNum":16082,"id":22431,"width":25,"height":45},{"x":100,"y":45,"fileNum":16082,"id":22432,"width":25,"height":45},{"x":125,"y":45,"fileNum":16082,"id":22433,"width":25,"height":45},{"x":0,"y":90,"fileNum":16082,"id":22434,"width":25,"height":45},{"x":25,"y":90,"fileNum":16082,"id":22435,"width":25,"height":45},{"x":50,"y":90,"fileNum":16082,"id":22436,"width":25,"height":45},{"x":75,"y":90,"fileNum":16082,"id":22437,"width":25,"height":45},{"x":100,"y":90,"fileNum":16082,"id":22438,"width":25,"height":45},{"x":0,"y":135,"fileNum":16082,"id":22439,"width":25,"height":45},{"x":25,"y":135,"fileNum":16082,"id":22440,"width":25,"height":45},{"x":50,"y":135,"fileNum":16082,"id":22441,"width":25,"height":45},{"x":75,"y":135,"fileNum":16082,"id":22442,"width":25,"height":45},{"x":100,"y":135,"fileNum":16082,"id":22443,"width":25,"height":45},{"x":0,"y":0,"fileNum":16083,"id":22448,"width":25,"height":45},{"x":25,"y":0,"fileNum":16083,"id":22449,"width":25,"height":45},{"x":50,"y":0,"fileNum":16083,"id":22450,"width":25,"height":45},{"x":75,"y":0,"fileNum":16083,"id":22451,"width":25,"height":45},{"x":100,"y":0,"fileNum":16083,"id":22452,"width":25,"height":45},{"x":125,"y":0,"fileNum":16083,"id":22453,"width":25,"height":45},{"x":0,"y":45,"fileNum":16083,"id":22454,"width":25,"height":45},{"x":25,"y":45,"fileNum":16083,"id":22455,"width":25,"height":45},{"x":50,"y":45,"fileNum":16083,"id":22456,"width":25,"height":45},{"x":75,"y":45,"fileNum":16083,"id":22457,"width":25,"height":45},{"x":100,"y":45,"fileNum":16083,"id":22458,"width":25,"height":45},{"x":125,"y":45,"fileNum":16083,"id":22459,"width":25,"height":45},{"x":0,"y":90,"fileNum":16083,"id":22460,"width":25,"height":45},{"x":25,"y":90,"fileNum":16083,"id":22461,"width":25,"height":45},{"x":50,"y":90,"fileNum":16083,"id":22462,"width":25,"height":45},{"x":75,"y":90,"fileNum":16083,"id":22463,"width":25,"height":45},{"x":100,"y":90,"fileNum":16083,"id":22464,"width":25,"height":45},{"x":0,"y":135,"fileNum":16083,"id":22465,"width":25,"height":45},{"x":25,"y":135,"fileNum":16083,"id":22466,"width":25,"height":45},{"x":50,"y":135,"fileNum":16083,"id":22467,"width":25,"height":45},{"x":75,"y":135,"fileNum":16083,"id":22468,"width":25,"height":45},{"x":100,"y":135,"fileNum":16083,"id":22469,"width":25,"height":45},{"x":0,"y":0,"fileNum":7072,"id":22474,"width":160,"height":128},{"x":0,"y":0,"fileNum":12093,"id":22475,"width":32,"height":32},{"x":32,"y":0,"fileNum":12093,"id":22476,"width":32,"height":32},{"x":64,"y":0,"fileNum":12093,"id":22477,"width":32,"height":32},{"x":96,"y":0,"fileNum":12093,"id":22478,"width":32,"height":32},{"x":128,"y":0,"fileNum":12093,"id":22479,"width":32,"height":32},{"x":0,"y":32,"fileNum":12093,"id":22480,"width":32,"height":32},{"x":32,"y":32,"fileNum":12093,"id":22481,"width":32,"height":32},{"x":64,"y":32,"fileNum":12093,"id":22482,"width":32,"height":32},{"x":96,"y":32,"fileNum":12093,"id":22483,"width":32,"height":32},{"x":128,"y":32,"fileNum":12093,"id":22484,"width":32,"height":32},{"x":0,"y":64,"fileNum":12093,"id":22485,"width":32,"height":32},{"x":32,"y":64,"fileNum":12093,"id":22486,"width":32,"height":32},{"x":64,"y":64,"fileNum":12093,"id":22487,"width":32,"height":32},{"x":96,"y":64,"fileNum":12093,"id":22488,"width":32,"height":32},{"x":128,"y":64,"fileNum":12093,"id":22489,"width":32,"height":32},{"x":0,"y":96,"fileNum":12093,"id":22490,"width":32,"height":32},{"x":32,"y":96,"fileNum":12093,"id":22491,"width":32,"height":32},{"x":64,"y":96,"fileNum":12093,"id":22492,"width":32,"height":32},{"x":96,"y":96,"fileNum":12093,"id":22493,"width":32,"height":32},{"x":128,"y":96,"fileNum":12093,"id":22494,"width":32,"height":32},{"x":160,"y":0,"fileNum":12093,"id":22495,"width":32,"height":32},{"x":192,"y":0,"fileNum":12093,"id":22496,"width":32,"height":32},{"x":224,"y":0,"fileNum":12093,"id":22497,"width":32,"height":32},{"x":256,"y":0,"fileNum":12093,"id":22498,"width":32,"height":32},{"x":288,"y":0,"fileNum":12093,"id":22499,"width":32,"height":32},{"x":160,"y":32,"fileNum":12093,"id":22500,"width":32,"height":32},{"x":192,"y":32,"fileNum":12093,"id":22501,"width":32,"height":32},{"x":224,"y":32,"fileNum":12093,"id":22502,"width":32,"height":32},{"x":256,"y":32,"fileNum":12093,"id":22503,"width":32,"height":32},{"x":288,"y":32,"fileNum":12093,"id":22504,"width":32,"height":32},{"x":160,"y":64,"fileNum":12093,"id":22505,"width":32,"height":32},{"x":192,"y":64,"fileNum":12093,"id":22506,"width":32,"height":32},{"x":224,"y":64,"fileNum":12093,"id":22507,"width":32,"height":32},{"x":256,"y":64,"fileNum":12093,"id":22508,"width":32,"height":32},{"x":288,"y":64,"fileNum":12093,"id":22509,"width":32,"height":32},{"x":160,"y":96,"fileNum":12093,"id":22510,"width":32,"height":32},{"x":192,"y":96,"fileNum":12093,"id":22511,"width":32,"height":32},{"x":224,"y":96,"fileNum":12093,"id":22512,"width":32,"height":32},{"x":256,"y":96,"fileNum":12093,"id":22513,"width":32,"height":32},{"x":288,"y":96,"fileNum":12093,"id":22514,"width":32,"height":32},{"x":0,"y":0,"fileNum":16085,"id":22515,"width":25,"height":45},{"x":25,"y":0,"fileNum":16085,"id":22516,"width":25,"height":45},{"x":50,"y":0,"fileNum":16085,"id":22517,"width":25,"height":45},{"x":75,"y":0,"fileNum":16085,"id":22518,"width":25,"height":45},{"x":100,"y":0,"fileNum":16085,"id":22519,"width":25,"height":45},{"x":125,"y":0,"fileNum":16085,"id":22520,"width":25,"height":45},{"x":0,"y":45,"fileNum":16085,"id":22521,"width":25,"height":45},{"x":25,"y":45,"fileNum":16085,"id":22522,"width":25,"height":45},{"x":50,"y":45,"fileNum":16085,"id":22523,"width":25,"height":45},{"x":75,"y":45,"fileNum":16085,"id":22524,"width":25,"height":45},{"x":100,"y":45,"fileNum":16085,"id":22525,"width":25,"height":45},{"x":125,"y":45,"fileNum":16085,"id":22526,"width":25,"height":45},{"x":0,"y":90,"fileNum":16085,"id":22527,"width":25,"height":45},{"x":25,"y":90,"fileNum":16085,"id":22528,"width":25,"height":45},{"x":50,"y":90,"fileNum":16085,"id":22529,"width":25,"height":45},{"x":75,"y":90,"fileNum":16085,"id":22530,"width":25,"height":45},{"x":100,"y":90,"fileNum":16085,"id":22531,"width":25,"height":45},{"x":0,"y":135,"fileNum":16085,"id":22532,"width":25,"height":45},{"x":25,"y":135,"fileNum":16085,"id":22533,"width":25,"height":45},{"x":50,"y":135,"fileNum":16085,"id":22534,"width":25,"height":45},{"x":75,"y":135,"fileNum":16085,"id":22535,"width":25,"height":45},{"x":100,"y":135,"fileNum":16085,"id":22536,"width":25,"height":45},{"x":0,"y":0,"fileNum":16086,"id":22541,"width":25,"height":45},{"x":25,"y":0,"fileNum":16086,"id":22542,"width":25,"height":45},{"x":50,"y":0,"fileNum":16086,"id":22543,"width":25,"height":45},{"x":75,"y":0,"fileNum":16086,"id":22544,"width":25,"height":45},{"x":100,"y":0,"fileNum":16086,"id":22545,"width":25,"height":45},{"x":125,"y":0,"fileNum":16086,"id":22546,"width":25,"height":45},{"x":0,"y":45,"fileNum":16086,"id":22547,"width":25,"height":45},{"x":25,"y":45,"fileNum":16086,"id":22548,"width":25,"height":45},{"x":50,"y":45,"fileNum":16086,"id":22549,"width":25,"height":45},{"x":75,"y":45,"fileNum":16086,"id":22550,"width":25,"height":45},{"x":100,"y":45,"fileNum":16086,"id":22551,"width":25,"height":45},{"x":125,"y":45,"fileNum":16086,"id":22552,"width":25,"height":45},{"x":0,"y":90,"fileNum":16086,"id":22553,"width":25,"height":45},{"x":25,"y":90,"fileNum":16086,"id":22554,"width":25,"height":45},{"x":50,"y":90,"fileNum":16086,"id":22555,"width":25,"height":45},{"x":75,"y":90,"fileNum":16086,"id":22556,"width":25,"height":45},{"x":100,"y":90,"fileNum":16086,"id":22557,"width":25,"height":45},{"x":0,"y":135,"fileNum":16086,"id":22558,"width":25,"height":45},{"x":25,"y":135,"fileNum":16086,"id":22559,"width":25,"height":45},{"x":50,"y":135,"fileNum":16086,"id":22560,"width":25,"height":45},{"x":75,"y":135,"fileNum":16086,"id":22561,"width":25,"height":45},{"x":100,"y":135,"fileNum":16086,"id":22562,"width":25,"height":45},{"x":0,"y":0,"fileNum":16087,"id":22567,"width":25,"height":45},{"x":25,"y":0,"fileNum":16087,"id":22568,"width":25,"height":45},{"x":50,"y":0,"fileNum":16087,"id":22569,"width":25,"height":45},{"x":75,"y":0,"fileNum":16087,"id":22570,"width":25,"height":45},{"x":100,"y":0,"fileNum":16087,"id":22571,"width":25,"height":45},{"x":125,"y":0,"fileNum":16087,"id":22572,"width":25,"height":45},{"x":0,"y":45,"fileNum":16087,"id":22573,"width":25,"height":45},{"x":25,"y":45,"fileNum":16087,"id":22574,"width":25,"height":45},{"x":50,"y":45,"fileNum":16087,"id":22575,"width":25,"height":45},{"x":75,"y":45,"fileNum":16087,"id":22576,"width":25,"height":45},{"x":100,"y":45,"fileNum":16087,"id":22577,"width":25,"height":45},{"x":125,"y":45,"fileNum":16087,"id":22578,"width":25,"height":45},{"x":0,"y":90,"fileNum":16087,"id":22579,"width":25,"height":45},{"x":25,"y":90,"fileNum":16087,"id":22580,"width":25,"height":45},{"x":50,"y":90,"fileNum":16087,"id":22581,"width":25,"height":45},{"x":75,"y":90,"fileNum":16087,"id":22582,"width":25,"height":45},{"x":100,"y":90,"fileNum":16087,"id":22583,"width":25,"height":45},{"x":0,"y":135,"fileNum":16087,"id":22584,"width":25,"height":45},{"x":25,"y":135,"fileNum":16087,"id":22585,"width":25,"height":45},{"x":50,"y":135,"fileNum":16087,"id":22586,"width":25,"height":45},{"x":75,"y":135,"fileNum":16087,"id":22587,"width":25,"height":45},{"x":100,"y":135,"fileNum":16087,"id":22588,"width":25,"height":45},{"x":0,"y":0,"fileNum":16088,"id":22593,"width":25,"height":45},{"x":25,"y":0,"fileNum":16088,"id":22594,"width":25,"height":45},{"x":50,"y":0,"fileNum":16088,"id":22595,"width":25,"height":45},{"x":75,"y":0,"fileNum":16088,"id":22596,"width":25,"height":45},{"x":100,"y":0,"fileNum":16088,"id":22597,"width":25,"height":45},{"x":125,"y":0,"fileNum":16088,"id":22598,"width":25,"height":45},{"x":0,"y":45,"fileNum":16088,"id":22599,"width":25,"height":45},{"x":25,"y":45,"fileNum":16088,"id":22600,"width":25,"height":45},{"x":50,"y":45,"fileNum":16088,"id":22601,"width":25,"height":45},{"x":75,"y":45,"fileNum":16088,"id":22602,"width":25,"height":45},{"x":100,"y":45,"fileNum":16088,"id":22603,"width":25,"height":45},{"x":125,"y":45,"fileNum":16088,"id":22604,"width":25,"height":45},{"x":0,"y":90,"fileNum":16088,"id":22605,"width":25,"height":45},{"x":25,"y":90,"fileNum":16088,"id":22606,"width":25,"height":45},{"x":50,"y":90,"fileNum":16088,"id":22607,"width":25,"height":45},{"x":75,"y":90,"fileNum":16088,"id":22608,"width":25,"height":45},{"x":100,"y":90,"fileNum":16088,"id":22609,"width":25,"height":45},{"x":0,"y":135,"fileNum":16088,"id":22610,"width":25,"height":45},{"x":25,"y":135,"fileNum":16088,"id":22611,"width":25,"height":45},{"x":50,"y":135,"fileNum":16088,"id":22612,"width":25,"height":45},{"x":75,"y":135,"fileNum":16088,"id":22613,"width":25,"height":45},{"x":100,"y":135,"fileNum":16088,"id":22614,"width":25,"height":45},{"x":0,"y":0,"fileNum":16090,"id":22619,"width":25,"height":45},{"x":25,"y":0,"fileNum":16090,"id":22620,"width":25,"height":45},{"x":50,"y":0,"fileNum":16090,"id":22621,"width":25,"height":45},{"x":75,"y":0,"fileNum":16090,"id":22622,"width":25,"height":45},{"x":100,"y":0,"fileNum":16090,"id":22623,"width":25,"height":45},{"x":125,"y":0,"fileNum":16090,"id":22624,"width":25,"height":45},{"x":0,"y":45,"fileNum":16090,"id":22625,"width":25,"height":45},{"x":25,"y":45,"fileNum":16090,"id":22626,"width":25,"height":45},{"x":50,"y":45,"fileNum":16090,"id":22627,"width":25,"height":45},{"x":75,"y":45,"fileNum":16090,"id":22628,"width":25,"height":45},{"x":100,"y":45,"fileNum":16090,"id":22629,"width":25,"height":45},{"x":125,"y":45,"fileNum":16090,"id":22630,"width":25,"height":45},{"x":0,"y":90,"fileNum":16090,"id":22631,"width":25,"height":45},{"x":25,"y":90,"fileNum":16090,"id":22632,"width":25,"height":45},{"x":50,"y":90,"fileNum":16090,"id":22633,"width":25,"height":45},{"x":75,"y":90,"fileNum":16090,"id":22634,"width":25,"height":45},{"x":100,"y":90,"fileNum":16090,"id":22635,"width":25,"height":45},{"x":0,"y":135,"fileNum":16090,"id":22636,"width":25,"height":45},{"x":25,"y":135,"fileNum":16090,"id":22637,"width":25,"height":45},{"x":50,"y":135,"fileNum":16090,"id":22638,"width":25,"height":45},{"x":75,"y":135,"fileNum":16090,"id":22639,"width":25,"height":45},{"x":100,"y":135,"fileNum":16090,"id":22640,"width":25,"height":45},{"x":0,"y":0,"fileNum":16091,"id":22645,"width":25,"height":45},{"x":25,"y":0,"fileNum":16091,"id":22646,"width":25,"height":45},{"x":50,"y":0,"fileNum":16091,"id":22647,"width":25,"height":45},{"x":75,"y":0,"fileNum":16091,"id":22648,"width":25,"height":45},{"x":100,"y":0,"fileNum":16091,"id":22649,"width":25,"height":45},{"x":125,"y":0,"fileNum":16091,"id":22650,"width":25,"height":45},{"x":0,"y":45,"fileNum":16091,"id":22651,"width":25,"height":45},{"x":25,"y":45,"fileNum":16091,"id":22652,"width":25,"height":45},{"x":50,"y":45,"fileNum":16091,"id":22653,"width":25,"height":45},{"x":75,"y":45,"fileNum":16091,"id":22654,"width":25,"height":45},{"x":100,"y":45,"fileNum":16091,"id":22655,"width":25,"height":45},{"x":125,"y":45,"fileNum":16091,"id":22656,"width":25,"height":45},{"x":0,"y":90,"fileNum":16091,"id":22657,"width":25,"height":45},{"x":25,"y":90,"fileNum":16091,"id":22658,"width":25,"height":45},{"x":50,"y":90,"fileNum":16091,"id":22659,"width":25,"height":45},{"x":75,"y":90,"fileNum":16091,"id":22660,"width":25,"height":45},{"x":100,"y":90,"fileNum":16091,"id":22661,"width":25,"height":45},{"x":0,"y":135,"fileNum":16091,"id":22662,"width":25,"height":45},{"x":25,"y":135,"fileNum":16091,"id":22663,"width":25,"height":45},{"x":50,"y":135,"fileNum":16091,"id":22664,"width":25,"height":45},{"x":75,"y":135,"fileNum":16091,"id":22665,"width":25,"height":45},{"x":100,"y":135,"fileNum":16091,"id":22666,"width":25,"height":45},{"x":0,"y":0,"fileNum":16092,"id":22671,"width":25,"height":45},{"x":25,"y":0,"fileNum":16092,"id":22672,"width":25,"height":45},{"x":50,"y":0,"fileNum":16092,"id":22673,"width":25,"height":45},{"x":75,"y":0,"fileNum":16092,"id":22674,"width":25,"height":45},{"x":100,"y":0,"fileNum":16092,"id":22675,"width":25,"height":45},{"x":125,"y":0,"fileNum":16092,"id":22676,"width":25,"height":45},{"x":0,"y":45,"fileNum":16092,"id":22677,"width":25,"height":45},{"x":25,"y":45,"fileNum":16092,"id":22678,"width":25,"height":45},{"x":50,"y":45,"fileNum":16092,"id":22679,"width":25,"height":45},{"x":75,"y":45,"fileNum":16092,"id":22680,"width":25,"height":45},{"x":100,"y":45,"fileNum":16092,"id":22681,"width":25,"height":45},{"x":125,"y":45,"fileNum":16092,"id":22682,"width":25,"height":45},{"x":0,"y":90,"fileNum":16092,"id":22683,"width":25,"height":45},{"x":25,"y":90,"fileNum":16092,"id":22684,"width":25,"height":45},{"x":50,"y":90,"fileNum":16092,"id":22685,"width":25,"height":45},{"x":75,"y":90,"fileNum":16092,"id":22686,"width":25,"height":45},{"x":100,"y":90,"fileNum":16092,"id":22687,"width":25,"height":45},{"x":0,"y":135,"fileNum":16092,"id":22688,"width":25,"height":45},{"x":25,"y":135,"fileNum":16092,"id":22689,"width":25,"height":45},{"x":50,"y":135,"fileNum":16092,"id":22690,"width":25,"height":45},{"x":75,"y":135,"fileNum":16092,"id":22691,"width":25,"height":45},{"x":100,"y":135,"fileNum":16092,"id":22692,"width":25,"height":45},{"x":0,"y":0,"fileNum":16093,"id":22697,"width":25,"height":45},{"x":25,"y":0,"fileNum":16093,"id":22698,"width":25,"height":45},{"x":50,"y":0,"fileNum":16093,"id":22699,"width":25,"height":45},{"x":75,"y":0,"fileNum":16093,"id":22700,"width":25,"height":45},{"x":100,"y":0,"fileNum":16093,"id":22701,"width":25,"height":45},{"x":125,"y":0,"fileNum":16093,"id":22702,"width":25,"height":45},{"x":0,"y":45,"fileNum":16093,"id":22703,"width":25,"height":45},{"x":25,"y":45,"fileNum":16093,"id":22704,"width":25,"height":45},{"x":50,"y":45,"fileNum":16093,"id":22705,"width":25,"height":45},{"x":75,"y":45,"fileNum":16093,"id":22706,"width":25,"height":45},{"x":100,"y":45,"fileNum":16093,"id":22707,"width":25,"height":45},{"x":125,"y":45,"fileNum":16093,"id":22708,"width":25,"height":45},{"x":0,"y":90,"fileNum":16093,"id":22709,"width":25,"height":45},{"x":25,"y":90,"fileNum":16093,"id":22710,"width":25,"height":45},{"x":50,"y":90,"fileNum":16093,"id":22711,"width":25,"height":45},{"x":75,"y":90,"fileNum":16093,"id":22712,"width":25,"height":45},{"x":100,"y":90,"fileNum":16093,"id":22713,"width":25,"height":45},{"x":0,"y":135,"fileNum":16093,"id":22714,"width":25,"height":45},{"x":25,"y":135,"fileNum":16093,"id":22715,"width":25,"height":45},{"x":50,"y":135,"fileNum":16093,"id":22716,"width":25,"height":45},{"x":75,"y":135,"fileNum":16093,"id":22717,"width":25,"height":45},{"x":100,"y":135,"fileNum":16093,"id":22718,"width":25,"height":45},{"x":0,"y":0,"fileNum":16094,"id":22723,"width":32,"height":32},{"x":0,"y":0,"fileNum":16095,"id":22724,"width":25,"height":45},{"x":25,"y":0,"fileNum":16095,"id":22725,"width":25,"height":45},{"x":50,"y":0,"fileNum":16095,"id":22726,"width":25,"height":45},{"x":75,"y":0,"fileNum":16095,"id":22727,"width":25,"height":45},{"x":100,"y":0,"fileNum":16095,"id":22728,"width":25,"height":45},{"x":125,"y":0,"fileNum":16095,"id":22729,"width":25,"height":45},{"x":0,"y":45,"fileNum":16095,"id":22730,"width":25,"height":45},{"x":25,"y":45,"fileNum":16095,"id":22731,"width":25,"height":45},{"x":50,"y":45,"fileNum":16095,"id":22732,"width":25,"height":45},{"x":75,"y":45,"fileNum":16095,"id":22733,"width":25,"height":45},{"x":100,"y":45,"fileNum":16095,"id":22734,"width":25,"height":45},{"x":125,"y":45,"fileNum":16095,"id":22735,"width":25,"height":45},{"x":0,"y":90,"fileNum":16095,"id":22736,"width":25,"height":45},{"x":25,"y":90,"fileNum":16095,"id":22737,"width":25,"height":45},{"x":50,"y":90,"fileNum":16095,"id":22738,"width":25,"height":45},{"x":75,"y":90,"fileNum":16095,"id":22739,"width":25,"height":45},{"x":100,"y":90,"fileNum":16095,"id":22740,"width":25,"height":45},{"x":0,"y":135,"fileNum":16095,"id":22741,"width":25,"height":45},{"x":25,"y":135,"fileNum":16095,"id":22742,"width":25,"height":45},{"x":50,"y":135,"fileNum":16095,"id":22743,"width":25,"height":45},{"x":75,"y":135,"fileNum":16095,"id":22744,"width":25,"height":45},{"x":100,"y":135,"fileNum":16095,"id":22745,"width":25,"height":45},{"x":0,"y":0,"fileNum":16096,"id":22750,"width":25,"height":45},{"x":25,"y":0,"fileNum":16096,"id":22751,"width":25,"height":45},{"x":50,"y":0,"fileNum":16096,"id":22752,"width":25,"height":45},{"x":75,"y":0,"fileNum":16096,"id":22753,"width":25,"height":45},{"x":100,"y":0,"fileNum":16096,"id":22754,"width":25,"height":45},{"x":125,"y":0,"fileNum":16096,"id":22755,"width":25,"height":45},{"x":0,"y":45,"fileNum":16096,"id":22756,"width":25,"height":45},{"x":25,"y":45,"fileNum":16096,"id":22757,"width":25,"height":45},{"x":50,"y":45,"fileNum":16096,"id":22758,"width":25,"height":45},{"x":75,"y":45,"fileNum":16096,"id":22759,"width":25,"height":45},{"x":100,"y":45,"fileNum":16096,"id":22760,"width":25,"height":45},{"x":125,"y":45,"fileNum":16096,"id":22761,"width":25,"height":45},{"x":0,"y":90,"fileNum":16096,"id":22762,"width":25,"height":45},{"x":25,"y":90,"fileNum":16096,"id":22763,"width":25,"height":45},{"x":50,"y":90,"fileNum":16096,"id":22764,"width":25,"height":45},{"x":75,"y":90,"fileNum":16096,"id":22765,"width":25,"height":45},{"x":100,"y":90,"fileNum":16096,"id":22766,"width":25,"height":45},{"x":0,"y":135,"fileNum":16096,"id":22767,"width":25,"height":45},{"x":25,"y":135,"fileNum":16096,"id":22768,"width":25,"height":45},{"x":50,"y":135,"fileNum":16096,"id":22769,"width":25,"height":45},{"x":75,"y":135,"fileNum":16096,"id":22770,"width":25,"height":45},{"x":100,"y":135,"fileNum":16096,"id":22771,"width":25,"height":45},{"x":0,"y":0,"fileNum":16097,"id":22776,"width":25,"height":45},{"x":25,"y":0,"fileNum":16097,"id":22777,"width":25,"height":45},{"x":50,"y":0,"fileNum":16097,"id":22778,"width":25,"height":45},{"x":75,"y":0,"fileNum":16097,"id":22779,"width":25,"height":45},{"x":100,"y":0,"fileNum":16097,"id":22780,"width":25,"height":45},{"x":125,"y":0,"fileNum":16097,"id":22781,"width":25,"height":45},{"x":0,"y":45,"fileNum":16097,"id":22782,"width":25,"height":45},{"x":25,"y":45,"fileNum":16097,"id":22783,"width":25,"height":45},{"x":50,"y":45,"fileNum":16097,"id":22784,"width":25,"height":45},{"x":75,"y":45,"fileNum":16097,"id":22785,"width":25,"height":45},{"x":100,"y":45,"fileNum":16097,"id":22786,"width":25,"height":45},{"x":125,"y":45,"fileNum":16097,"id":22787,"width":25,"height":45},{"x":0,"y":90,"fileNum":16097,"id":22788,"width":25,"height":45},{"x":25,"y":90,"fileNum":16097,"id":22789,"width":25,"height":45},{"x":50,"y":90,"fileNum":16097,"id":22790,"width":25,"height":45},{"x":75,"y":90,"fileNum":16097,"id":22791,"width":25,"height":45},{"x":100,"y":90,"fileNum":16097,"id":22792,"width":25,"height":45},{"x":0,"y":135,"fileNum":16097,"id":22793,"width":25,"height":45},{"x":25,"y":135,"fileNum":16097,"id":22794,"width":25,"height":45},{"x":50,"y":135,"fileNum":16097,"id":22795,"width":25,"height":45},{"x":75,"y":135,"fileNum":16097,"id":22796,"width":25,"height":45},{"x":100,"y":135,"fileNum":16097,"id":22797,"width":25,"height":45},{"x":0,"y":0,"fileNum":2229,"id":22802,"width":17,"height":50},{"x":17,"y":0,"fileNum":2229,"id":22803,"width":17,"height":50},{"x":34,"y":0,"fileNum":2229,"id":22804,"width":17,"height":50},{"x":51,"y":0,"fileNum":2229,"id":22805,"width":17,"height":50},{"x":0,"y":0,"fileNum":2230,"id":22806,"width":17,"height":50},{"x":17,"y":0,"fileNum":2230,"id":22807,"width":17,"height":50},{"x":34,"y":0,"fileNum":2230,"id":22808,"width":17,"height":50},{"x":51,"y":0,"fileNum":2230,"id":22809,"width":17,"height":50},{"x":0,"y":0,"fileNum":2232,"id":22810,"width":17,"height":50},{"x":17,"y":0,"fileNum":2232,"id":22811,"width":17,"height":50},{"x":34,"y":0,"fileNum":2232,"id":22812,"width":17,"height":50},{"x":51,"y":0,"fileNum":2232,"id":22813,"width":17,"height":50},{"x":0,"y":0,"fileNum":2233,"id":22814,"width":17,"height":50},{"x":17,"y":0,"fileNum":2233,"id":22815,"width":17,"height":50},{"x":34,"y":0,"fileNum":2233,"id":22816,"width":17,"height":50},{"x":51,"y":0,"fileNum":2233,"id":22817,"width":17,"height":50},{"x":0,"y":0,"fileNum":2231,"id":22818,"width":17,"height":50},{"x":17,"y":0,"fileNum":2231,"id":22819,"width":17,"height":50},{"x":34,"y":0,"fileNum":2231,"id":22820,"width":17,"height":50},{"x":51,"y":0,"fileNum":2231,"id":22821,"width":17,"height":50},{"x":0,"y":0,"fileNum":2234,"id":22822,"width":17,"height":50},{"x":17,"y":0,"fileNum":2234,"id":22823,"width":17,"height":50},{"x":34,"y":0,"fileNum":2234,"id":22824,"width":17,"height":50},{"x":51,"y":0,"fileNum":2234,"id":22825,"width":17,"height":50},{"x":0,"y":0,"fileNum":2235,"id":22826,"width":17,"height":50},{"x":17,"y":0,"fileNum":2235,"id":22827,"width":17,"height":50},{"x":34,"y":0,"fileNum":2235,"id":22828,"width":17,"height":50},{"x":51,"y":0,"fileNum":2235,"id":22829,"width":17,"height":50},{"x":0,"y":0,"fileNum":4167,"id":22830,"width":63,"height":70},{"x":63,"y":0,"fileNum":4167,"id":22831,"width":63,"height":70},{"x":126,"y":0,"fileNum":4167,"id":22832,"width":63,"height":70},{"x":189,"y":0,"fileNum":4167,"id":22833,"width":63,"height":70},{"x":252,"y":0,"fileNum":4167,"id":22834,"width":63,"height":70},{"x":315,"y":0,"fileNum":4167,"id":22835,"width":63,"height":70},{"x":378,"y":0,"fileNum":4167,"id":22836,"width":63,"height":70},{"x":441,"y":0,"fileNum":4167,"id":22837,"width":63,"height":70},{"x":0,"y":70,"fileNum":4167,"id":22838,"width":63,"height":70},{"x":63,"y":70,"fileNum":4167,"id":22839,"width":63,"height":70},{"x":126,"y":70,"fileNum":4167,"id":22840,"width":63,"height":70},{"x":189,"y":70,"fileNum":4167,"id":22841,"width":63,"height":70},{"x":252,"y":70,"fileNum":4167,"id":22842,"width":63,"height":70},{"x":315,"y":70,"fileNum":4167,"id":22843,"width":63,"height":70},{"x":378,"y":70,"fileNum":4167,"id":22844,"width":63,"height":70},{"x":441,"y":70,"fileNum":4167,"id":22845,"width":63,"height":70},{"x":0,"y":140,"fileNum":4167,"id":22846,"width":63,"height":70},{"x":63,"y":140,"fileNum":4167,"id":22847,"width":63,"height":70},{"x":126,"y":140,"fileNum":4167,"id":22848,"width":63,"height":70},{"x":189,"y":140,"fileNum":4167,"id":22849,"width":63,"height":70},{"x":252,"y":140,"fileNum":4167,"id":22850,"width":63,"height":70},{"x":315,"y":140,"fileNum":4167,"id":22851,"width":63,"height":70},{"x":378,"y":140,"fileNum":4167,"id":22852,"width":63,"height":70},{"x":441,"y":140,"fileNum":4167,"id":22853,"width":63,"height":70},{"x":0,"y":210,"fileNum":4167,"id":22854,"width":63,"height":70},{"x":63,"y":210,"fileNum":4167,"id":22855,"width":63,"height":70},{"x":126,"y":210,"fileNum":4167,"id":22856,"width":63,"height":70},{"x":189,"y":210,"fileNum":4167,"id":22857,"width":63,"height":70},{"x":252,"y":210,"fileNum":4167,"id":22858,"width":63,"height":70},{"x":315,"y":210,"fileNum":4167,"id":22859,"width":63,"height":70},{"x":378,"y":210,"fileNum":4167,"id":22860,"width":63,"height":70},{"x":441,"y":210,"fileNum":4167,"id":22861,"width":63,"height":70},{"x":0,"y":0,"fileNum":4168,"id":22866,"width":125,"height":125},{"x":125,"y":0,"fileNum":4168,"id":22867,"width":125,"height":125},{"x":250,"y":0,"fileNum":4168,"id":22868,"width":125,"height":125},{"x":375,"y":0,"fileNum":4168,"id":22869,"width":125,"height":125},{"x":500,"y":0,"fileNum":4168,"id":22870,"width":125,"height":125},{"x":625,"y":0,"fileNum":4168,"id":22871,"width":125,"height":125},{"x":750,"y":0,"fileNum":4168,"id":22872,"width":125,"height":125},{"x":875,"y":0,"fileNum":4168,"id":22873,"width":125,"height":125},{"x":0,"y":125,"fileNum":4168,"id":22874,"width":125,"height":125},{"x":125,"y":125,"fileNum":4168,"id":22875,"width":125,"height":125},{"x":250,"y":125,"fileNum":4168,"id":22876,"width":125,"height":125},{"x":375,"y":125,"fileNum":4168,"id":22877,"width":125,"height":125},{"x":500,"y":125,"fileNum":4168,"id":22878,"width":125,"height":125},{"x":625,"y":125,"fileNum":4168,"id":22879,"width":125,"height":125},{"x":750,"y":125,"fileNum":4168,"id":22880,"width":125,"height":125},{"x":875,"y":125,"fileNum":4168,"id":22881,"width":125,"height":125},{"x":0,"y":250,"fileNum":4168,"id":22882,"width":125,"height":125},{"x":125,"y":250,"fileNum":4168,"id":22883,"width":125,"height":125},{"x":250,"y":250,"fileNum":4168,"id":22884,"width":125,"height":125},{"x":375,"y":250,"fileNum":4168,"id":22885,"width":125,"height":125},{"x":500,"y":250,"fileNum":4168,"id":22886,"width":125,"height":125},{"x":625,"y":250,"fileNum":4168,"id":22887,"width":125,"height":125},{"x":750,"y":250,"fileNum":4168,"id":22888,"width":125,"height":125},{"x":875,"y":250,"fileNum":4168,"id":22889,"width":125,"height":125},{"x":0,"y":375,"fileNum":4168,"id":22890,"width":125,"height":125},{"x":125,"y":375,"fileNum":4168,"id":22891,"width":125,"height":125},{"x":250,"y":375,"fileNum":4168,"id":22892,"width":125,"height":125},{"x":375,"y":375,"fileNum":4168,"id":22893,"width":125,"height":125},{"x":500,"y":375,"fileNum":4168,"id":22894,"width":125,"height":125},{"x":625,"y":375,"fileNum":4168,"id":22895,"width":125,"height":125},{"x":750,"y":375,"fileNum":4168,"id":22896,"width":125,"height":125},{"x":875,"y":375,"fileNum":4168,"id":22897,"width":125,"height":125},{"x":0,"y":0,"fileNum":4169,"id":22902,"width":55,"height":56},{"x":55,"y":0,"fileNum":4169,"id":22903,"width":55,"height":56},{"x":110,"y":0,"fileNum":4169,"id":22904,"width":55,"height":56},{"x":165,"y":0,"fileNum":4169,"id":22905,"width":55,"height":56},{"x":220,"y":0,"fileNum":4169,"id":22906,"width":55,"height":56},{"x":275,"y":0,"fileNum":4169,"id":22907,"width":55,"height":56},{"x":0,"y":56,"fileNum":4169,"id":22908,"width":55,"height":56},{"x":55,"y":56,"fileNum":4169,"id":22909,"width":55,"height":56},{"x":110,"y":56,"fileNum":4169,"id":22910,"width":55,"height":56},{"x":165,"y":56,"fileNum":4169,"id":22911,"width":55,"height":56},{"x":220,"y":56,"fileNum":4169,"id":22912,"width":55,"height":56},{"x":275,"y":56,"fileNum":4169,"id":22913,"width":55,"height":56},{"x":0,"y":112,"fileNum":4169,"id":22914,"width":55,"height":56},{"x":55,"y":112,"fileNum":4169,"id":22915,"width":55,"height":56},{"x":110,"y":112,"fileNum":4169,"id":22916,"width":55,"height":56},{"x":165,"y":112,"fileNum":4169,"id":22917,"width":55,"height":56},{"x":220,"y":112,"fileNum":4169,"id":22918,"width":55,"height":56},{"x":0,"y":168,"fileNum":4169,"id":22919,"width":55,"height":56},{"x":55,"y":168,"fileNum":4169,"id":22920,"width":55,"height":56},{"x":110,"y":168,"fileNum":4169,"id":22921,"width":55,"height":56},{"x":165,"y":168,"fileNum":4169,"id":22922,"width":55,"height":56},{"x":220,"y":168,"fileNum":4169,"id":22923,"width":55,"height":56},{"x":0,"y":0,"fileNum":4170,"id":22928,"width":115,"height":118},{"x":115,"y":0,"fileNum":4170,"id":22929,"width":115,"height":118},{"x":230,"y":0,"fileNum":4170,"id":22930,"width":115,"height":118},{"x":345,"y":0,"fileNum":4170,"id":22931,"width":115,"height":118},{"x":460,"y":0,"fileNum":4170,"id":22932,"width":115,"height":118},{"x":575,"y":0,"fileNum":4170,"id":22933,"width":115,"height":118},{"x":690,"y":0,"fileNum":4170,"id":22934,"width":115,"height":118},{"x":805,"y":0,"fileNum":4170,"id":22935,"width":115,"height":118},{"x":0,"y":118,"fileNum":4170,"id":22936,"width":115,"height":118},{"x":115,"y":118,"fileNum":4170,"id":22937,"width":115,"height":118},{"x":230,"y":118,"fileNum":4170,"id":22938,"width":115,"height":118},{"x":345,"y":118,"fileNum":4170,"id":22939,"width":115,"height":118},{"x":460,"y":118,"fileNum":4170,"id":22940,"width":115,"height":118},{"x":575,"y":118,"fileNum":4170,"id":22941,"width":115,"height":118},{"x":690,"y":118,"fileNum":4170,"id":22942,"width":115,"height":118},{"x":805,"y":118,"fileNum":4170,"id":22943,"width":115,"height":118},{"x":0,"y":236,"fileNum":4170,"id":22944,"width":115,"height":118},{"x":115,"y":236,"fileNum":4170,"id":22945,"width":115,"height":118},{"x":230,"y":236,"fileNum":4170,"id":22946,"width":115,"height":118},{"x":345,"y":236,"fileNum":4170,"id":22947,"width":115,"height":118},{"x":460,"y":236,"fileNum":4170,"id":22948,"width":115,"height":118},{"x":575,"y":236,"fileNum":4170,"id":22949,"width":115,"height":118},{"x":690,"y":236,"fileNum":4170,"id":22950,"width":115,"height":118},{"x":805,"y":236,"fileNum":4170,"id":22951,"width":115,"height":118},{"x":0,"y":354,"fileNum":4170,"id":22952,"width":115,"height":118},{"x":115,"y":354,"fileNum":4170,"id":22953,"width":115,"height":118},{"x":230,"y":354,"fileNum":4170,"id":22954,"width":115,"height":118},{"x":345,"y":354,"fileNum":4170,"id":22955,"width":115,"height":118},{"x":460,"y":354,"fileNum":4170,"id":22956,"width":115,"height":118},{"x":575,"y":354,"fileNum":4170,"id":22957,"width":115,"height":118},{"x":690,"y":354,"fileNum":4170,"id":22958,"width":115,"height":118},{"x":805,"y":354,"fileNum":4170,"id":22959,"width":115,"height":118},{"x":0,"y":0,"fileNum":20014,"id":22964,"width":25,"height":45},{"x":25,"y":0,"fileNum":20014,"id":22965,"width":25,"height":45},{"x":50,"y":0,"fileNum":20014,"id":22966,"width":25,"height":45},{"x":75,"y":0,"fileNum":20014,"id":22967,"width":25,"height":45},{"x":100,"y":0,"fileNum":20014,"id":22968,"width":25,"height":45},{"x":125,"y":0,"fileNum":20014,"id":22969,"width":25,"height":45},{"x":0,"y":45,"fileNum":20014,"id":22970,"width":25,"height":45},{"x":25,"y":45,"fileNum":20014,"id":22971,"width":25,"height":45},{"x":50,"y":45,"fileNum":20014,"id":22972,"width":25,"height":45},{"x":75,"y":45,"fileNum":20014,"id":22973,"width":25,"height":45},{"x":100,"y":45,"fileNum":20014,"id":22974,"width":25,"height":45},{"x":125,"y":45,"fileNum":20014,"id":22975,"width":25,"height":45},{"x":0,"y":90,"fileNum":20014,"id":22976,"width":25,"height":45},{"x":25,"y":90,"fileNum":20014,"id":22977,"width":25,"height":45},{"x":50,"y":90,"fileNum":20014,"id":22978,"width":25,"height":45},{"x":75,"y":90,"fileNum":20014,"id":22979,"width":25,"height":45},{"x":100,"y":90,"fileNum":20014,"id":22980,"width":25,"height":45},{"x":0,"y":135,"fileNum":20014,"id":22981,"width":25,"height":45},{"x":25,"y":135,"fileNum":20014,"id":22982,"width":25,"height":45},{"x":50,"y":135,"fileNum":20014,"id":22983,"width":25,"height":45},{"x":75,"y":135,"fileNum":20014,"id":22984,"width":25,"height":45},{"x":100,"y":135,"fileNum":20014,"id":22985,"width":25,"height":45},{"x":0,"y":0,"fileNum":20015,"id":22990,"width":25,"height":45},{"x":25,"y":0,"fileNum":20015,"id":22991,"width":25,"height":45},{"x":50,"y":0,"fileNum":20015,"id":22992,"width":25,"height":45},{"x":75,"y":0,"fileNum":20015,"id":22993,"width":25,"height":45},{"x":100,"y":0,"fileNum":20015,"id":22994,"width":25,"height":45},{"x":125,"y":0,"fileNum":20015,"id":22995,"width":25,"height":45},{"x":0,"y":45,"fileNum":20015,"id":22996,"width":25,"height":45},{"x":25,"y":45,"fileNum":20015,"id":22997,"width":25,"height":45},{"x":50,"y":45,"fileNum":20015,"id":22998,"width":25,"height":45},{"x":75,"y":45,"fileNum":20015,"id":22999,"width":25,"height":45},{"x":100,"y":45,"fileNum":20015,"id":23000,"width":25,"height":45},{"x":125,"y":45,"fileNum":20015,"id":23001,"width":25,"height":45},{"x":0,"y":90,"fileNum":20015,"id":23002,"width":25,"height":45},{"x":25,"y":90,"fileNum":20015,"id":23003,"width":25,"height":45},{"x":50,"y":90,"fileNum":20015,"id":23004,"width":25,"height":45},{"x":75,"y":90,"fileNum":20015,"id":23005,"width":25,"height":45},{"x":100,"y":90,"fileNum":20015,"id":23006,"width":25,"height":45},{"x":0,"y":135,"fileNum":20015,"id":23007,"width":25,"height":45},{"x":25,"y":135,"fileNum":20015,"id":23008,"width":25,"height":45},{"x":50,"y":135,"fileNum":20015,"id":23009,"width":25,"height":45},{"x":75,"y":135,"fileNum":20015,"id":23010,"width":25,"height":45},{"x":100,"y":135,"fileNum":20015,"id":23011,"width":25,"height":45},{"x":0,"y":0,"fileNum":20016,"id":23016,"width":25,"height":45},{"x":25,"y":0,"fileNum":20016,"id":23017,"width":25,"height":45},{"x":50,"y":0,"fileNum":20016,"id":23018,"width":25,"height":45},{"x":75,"y":0,"fileNum":20016,"id":23019,"width":25,"height":45},{"x":100,"y":0,"fileNum":20016,"id":23020,"width":25,"height":45},{"x":125,"y":0,"fileNum":20016,"id":23021,"width":25,"height":45},{"x":0,"y":45,"fileNum":20016,"id":23022,"width":25,"height":45},{"x":25,"y":45,"fileNum":20016,"id":23023,"width":25,"height":45},{"x":50,"y":45,"fileNum":20016,"id":23024,"width":25,"height":45},{"x":75,"y":45,"fileNum":20016,"id":23025,"width":25,"height":45},{"x":100,"y":45,"fileNum":20016,"id":23026,"width":25,"height":45},{"x":125,"y":45,"fileNum":20016,"id":23027,"width":25,"height":45},{"x":0,"y":90,"fileNum":20016,"id":23028,"width":25,"height":45},{"x":25,"y":90,"fileNum":20016,"id":23029,"width":25,"height":45},{"x":50,"y":90,"fileNum":20016,"id":23030,"width":25,"height":45},{"x":75,"y":90,"fileNum":20016,"id":23031,"width":25,"height":45},{"x":100,"y":90,"fileNum":20016,"id":23032,"width":25,"height":45},{"x":0,"y":135,"fileNum":20016,"id":23033,"width":25,"height":45},{"x":25,"y":135,"fileNum":20016,"id":23034,"width":25,"height":45},{"x":50,"y":135,"fileNum":20016,"id":23035,"width":25,"height":45},{"x":75,"y":135,"fileNum":20016,"id":23036,"width":25,"height":45},{"x":100,"y":135,"fileNum":20016,"id":23037,"width":25,"height":45},{"x":0,"y":0,"fileNum":20017,"id":23042,"width":25,"height":45},{"x":25,"y":0,"fileNum":20017,"id":23043,"width":25,"height":45},{"x":50,"y":0,"fileNum":20017,"id":23044,"width":25,"height":45},{"x":75,"y":0,"fileNum":20017,"id":23045,"width":25,"height":45},{"x":100,"y":0,"fileNum":20017,"id":23046,"width":25,"height":45},{"x":125,"y":0,"fileNum":20017,"id":23047,"width":25,"height":45},{"x":0,"y":45,"fileNum":20017,"id":23048,"width":25,"height":45},{"x":25,"y":45,"fileNum":20017,"id":23049,"width":25,"height":45},{"x":50,"y":45,"fileNum":20017,"id":23050,"width":25,"height":45},{"x":75,"y":45,"fileNum":20017,"id":23051,"width":25,"height":45},{"x":100,"y":45,"fileNum":20017,"id":23052,"width":25,"height":45},{"x":125,"y":45,"fileNum":20017,"id":23053,"width":25,"height":45},{"x":0,"y":90,"fileNum":20017,"id":23054,"width":25,"height":45},{"x":25,"y":90,"fileNum":20017,"id":23055,"width":25,"height":45},{"x":50,"y":90,"fileNum":20017,"id":23056,"width":25,"height":45},{"x":75,"y":90,"fileNum":20017,"id":23057,"width":25,"height":45},{"x":100,"y":90,"fileNum":20017,"id":23058,"width":25,"height":45},{"x":0,"y":135,"fileNum":20017,"id":23059,"width":25,"height":45},{"x":25,"y":135,"fileNum":20017,"id":23060,"width":25,"height":45},{"x":50,"y":135,"fileNum":20017,"id":23061,"width":25,"height":45},{"x":75,"y":135,"fileNum":20017,"id":23062,"width":25,"height":45},{"x":100,"y":135,"fileNum":20017,"id":23063,"width":25,"height":45},{"x":0,"y":0,"fileNum":20018,"id":23068,"width":32,"height":32},{"x":0,"y":0,"fileNum":20019,"id":23069,"width":32,"height":32},{"x":0,"y":0,"fileNum":676,"id":23070,"width":25,"height":45},{"x":25,"y":0,"fileNum":676,"id":23071,"width":25,"height":45},{"x":50,"y":0,"fileNum":676,"id":23072,"width":25,"height":45},{"x":75,"y":0,"fileNum":676,"id":23073,"width":25,"height":45},{"x":100,"y":0,"fileNum":676,"id":23074,"width":25,"height":45},{"x":125,"y":0,"fileNum":676,"id":23075,"width":25,"height":45},{"x":0,"y":45,"fileNum":676,"id":23076,"width":25,"height":45},{"x":25,"y":45,"fileNum":676,"id":23077,"width":25,"height":45},{"x":50,"y":45,"fileNum":676,"id":23078,"width":25,"height":45},{"x":75,"y":45,"fileNum":676,"id":23079,"width":25,"height":45},{"x":100,"y":45,"fileNum":676,"id":23080,"width":25,"height":45},{"x":125,"y":45,"fileNum":676,"id":23081,"width":25,"height":45},{"x":0,"y":90,"fileNum":676,"id":23082,"width":25,"height":45},{"x":25,"y":90,"fileNum":676,"id":23083,"width":25,"height":45},{"x":50,"y":90,"fileNum":676,"id":23084,"width":25,"height":45},{"x":75,"y":90,"fileNum":676,"id":23085,"width":25,"height":45},{"x":100,"y":90,"fileNum":676,"id":23086,"width":25,"height":45},{"x":0,"y":135,"fileNum":676,"id":23087,"width":25,"height":45},{"x":25,"y":135,"fileNum":676,"id":23088,"width":25,"height":45},{"x":50,"y":135,"fileNum":676,"id":23089,"width":25,"height":45},{"x":75,"y":135,"fileNum":676,"id":23090,"width":25,"height":45},{"x":100,"y":135,"fileNum":676,"id":23091,"width":25,"height":45},{"x":0,"y":0,"fileNum":677,"id":23096,"width":32,"height":32},{"x":0,"y":0,"fileNum":678,"id":23097,"width":25,"height":45},{"x":25,"y":0,"fileNum":678,"id":23098,"width":25,"height":45},{"x":50,"y":0,"fileNum":678,"id":23099,"width":25,"height":45},{"x":75,"y":0,"fileNum":678,"id":23100,"width":25,"height":45},{"x":100,"y":0,"fileNum":678,"id":23101,"width":25,"height":45},{"x":125,"y":0,"fileNum":678,"id":23102,"width":25,"height":45},{"x":0,"y":45,"fileNum":678,"id":23103,"width":25,"height":45},{"x":25,"y":45,"fileNum":678,"id":23104,"width":25,"height":45},{"x":50,"y":45,"fileNum":678,"id":23105,"width":25,"height":45},{"x":75,"y":45,"fileNum":678,"id":23106,"width":25,"height":45},{"x":100,"y":45,"fileNum":678,"id":23107,"width":25,"height":45},{"x":125,"y":45,"fileNum":678,"id":23108,"width":25,"height":45},{"x":0,"y":90,"fileNum":678,"id":23109,"width":25,"height":45},{"x":25,"y":90,"fileNum":678,"id":23110,"width":25,"height":45},{"x":50,"y":90,"fileNum":678,"id":23111,"width":25,"height":45},{"x":75,"y":90,"fileNum":678,"id":23112,"width":25,"height":45},{"x":100,"y":90,"fileNum":678,"id":23113,"width":25,"height":45},{"x":0,"y":135,"fileNum":678,"id":23114,"width":25,"height":45},{"x":25,"y":135,"fileNum":678,"id":23115,"width":25,"height":45},{"x":50,"y":135,"fileNum":678,"id":23116,"width":25,"height":45},{"x":75,"y":135,"fileNum":678,"id":23117,"width":25,"height":45},{"x":100,"y":135,"fileNum":678,"id":23118,"width":25,"height":45},{"x":0,"y":0,"fileNum":679,"id":23123,"width":32,"height":32},{"x":0,"y":0,"fileNum":680,"id":23124,"width":25,"height":45},{"x":25,"y":0,"fileNum":680,"id":23125,"width":25,"height":45},{"x":50,"y":0,"fileNum":680,"id":23126,"width":25,"height":45},{"x":75,"y":0,"fileNum":680,"id":23127,"width":25,"height":45},{"x":100,"y":0,"fileNum":680,"id":23128,"width":25,"height":45},{"x":125,"y":0,"fileNum":680,"id":23129,"width":25,"height":45},{"x":0,"y":45,"fileNum":680,"id":23130,"width":25,"height":45},{"x":25,"y":45,"fileNum":680,"id":23131,"width":25,"height":45},{"x":50,"y":45,"fileNum":680,"id":23132,"width":25,"height":45},{"x":75,"y":45,"fileNum":680,"id":23133,"width":25,"height":45},{"x":100,"y":45,"fileNum":680,"id":23134,"width":25,"height":45},{"x":125,"y":45,"fileNum":680,"id":23135,"width":25,"height":45},{"x":0,"y":90,"fileNum":680,"id":23136,"width":25,"height":45},{"x":25,"y":90,"fileNum":680,"id":23137,"width":25,"height":45},{"x":50,"y":90,"fileNum":680,"id":23138,"width":25,"height":45},{"x":75,"y":90,"fileNum":680,"id":23139,"width":25,"height":45},{"x":100,"y":90,"fileNum":680,"id":23140,"width":25,"height":45},{"x":0,"y":135,"fileNum":680,"id":23141,"width":25,"height":45},{"x":25,"y":135,"fileNum":680,"id":23142,"width":25,"height":45},{"x":50,"y":135,"fileNum":680,"id":23143,"width":25,"height":45},{"x":75,"y":135,"fileNum":680,"id":23144,"width":25,"height":45},{"x":100,"y":135,"fileNum":680,"id":23145,"width":25,"height":45},{"x":0,"y":0,"fileNum":681,"id":23150,"width":32,"height":32},{"x":0,"y":0,"fileNum":682,"id":23151,"width":25,"height":45},{"x":25,"y":0,"fileNum":682,"id":23152,"width":25,"height":45},{"x":50,"y":0,"fileNum":682,"id":23153,"width":25,"height":45},{"x":75,"y":0,"fileNum":682,"id":23154,"width":25,"height":45},{"x":100,"y":0,"fileNum":682,"id":23155,"width":25,"height":45},{"x":125,"y":0,"fileNum":682,"id":23156,"width":25,"height":45},{"x":0,"y":45,"fileNum":682,"id":23157,"width":25,"height":45},{"x":25,"y":45,"fileNum":682,"id":23158,"width":25,"height":45},{"x":50,"y":45,"fileNum":682,"id":23159,"width":25,"height":45},{"x":75,"y":45,"fileNum":682,"id":23160,"width":25,"height":45},{"x":100,"y":45,"fileNum":682,"id":23161,"width":25,"height":45},{"x":125,"y":45,"fileNum":682,"id":23162,"width":25,"height":45},{"x":0,"y":90,"fileNum":682,"id":23163,"width":25,"height":45},{"x":25,"y":90,"fileNum":682,"id":23164,"width":25,"height":45},{"x":50,"y":90,"fileNum":682,"id":23165,"width":25,"height":45},{"x":75,"y":90,"fileNum":682,"id":23166,"width":25,"height":45},{"x":100,"y":90,"fileNum":682,"id":23167,"width":25,"height":45},{"x":0,"y":135,"fileNum":682,"id":23168,"width":25,"height":45},{"x":25,"y":135,"fileNum":682,"id":23169,"width":25,"height":45},{"x":50,"y":135,"fileNum":682,"id":23170,"width":25,"height":45},{"x":75,"y":135,"fileNum":682,"id":23171,"width":25,"height":45},{"x":100,"y":135,"fileNum":682,"id":23172,"width":25,"height":45},{"x":0,"y":0,"fileNum":683,"id":23177,"width":32,"height":32},{"x":0,"y":0,"fileNum":16098,"id":23178,"width":25,"height":45},{"x":25,"y":0,"fileNum":16098,"id":23179,"width":25,"height":45},{"x":50,"y":0,"fileNum":16098,"id":23180,"width":25,"height":45},{"x":75,"y":0,"fileNum":16098,"id":23181,"width":25,"height":45},{"x":100,"y":0,"fileNum":16098,"id":23182,"width":25,"height":45},{"x":125,"y":0,"fileNum":16098,"id":23183,"width":25,"height":45},{"x":0,"y":45,"fileNum":16098,"id":23184,"width":25,"height":45},{"x":25,"y":45,"fileNum":16098,"id":23185,"width":25,"height":45},{"x":50,"y":45,"fileNum":16098,"id":23186,"width":25,"height":45},{"x":75,"y":45,"fileNum":16098,"id":23187,"width":25,"height":45},{"x":100,"y":45,"fileNum":16098,"id":23188,"width":25,"height":45},{"x":125,"y":45,"fileNum":16098,"id":23189,"width":25,"height":45},{"x":0,"y":90,"fileNum":16098,"id":23190,"width":25,"height":45},{"x":25,"y":90,"fileNum":16098,"id":23191,"width":25,"height":45},{"x":50,"y":90,"fileNum":16098,"id":23192,"width":25,"height":45},{"x":75,"y":90,"fileNum":16098,"id":23193,"width":25,"height":45},{"x":100,"y":90,"fileNum":16098,"id":23194,"width":25,"height":45},{"x":0,"y":135,"fileNum":16098,"id":23195,"width":25,"height":45},{"x":25,"y":135,"fileNum":16098,"id":23196,"width":25,"height":45},{"x":50,"y":135,"fileNum":16098,"id":23197,"width":25,"height":45},{"x":75,"y":135,"fileNum":16098,"id":23198,"width":25,"height":45},{"x":100,"y":135,"fileNum":16098,"id":23199,"width":25,"height":45},{"x":0,"y":0,"fileNum":18027,"id":23204,"width":32,"height":32},{"x":0,"y":0,"fileNum":18028,"id":23205,"width":17,"height":28},{"x":17,"y":0,"fileNum":18028,"id":23206,"width":17,"height":28},{"x":34,"y":0,"fileNum":18028,"id":23207,"width":17,"height":28},{"x":51,"y":0,"fileNum":18028,"id":23208,"width":17,"height":28},{"x":0,"y":0,"fileNum":16100,"id":23209,"width":25,"height":45},{"x":25,"y":0,"fileNum":16100,"id":23210,"width":25,"height":45},{"x":50,"y":0,"fileNum":16100,"id":23211,"width":25,"height":45},{"x":75,"y":0,"fileNum":16100,"id":23212,"width":25,"height":45},{"x":100,"y":0,"fileNum":16100,"id":23213,"width":25,"height":45},{"x":125,"y":0,"fileNum":16100,"id":23214,"width":25,"height":45},{"x":0,"y":45,"fileNum":16100,"id":23215,"width":25,"height":45},{"x":25,"y":45,"fileNum":16100,"id":23216,"width":25,"height":45},{"x":50,"y":45,"fileNum":16100,"id":23217,"width":25,"height":45},{"x":75,"y":45,"fileNum":16100,"id":23218,"width":25,"height":45},{"x":100,"y":45,"fileNum":16100,"id":23219,"width":25,"height":45},{"x":125,"y":45,"fileNum":16100,"id":23220,"width":25,"height":45},{"x":0,"y":90,"fileNum":16100,"id":23221,"width":25,"height":45},{"x":25,"y":90,"fileNum":16100,"id":23222,"width":25,"height":45},{"x":50,"y":90,"fileNum":16100,"id":23223,"width":25,"height":45},{"x":75,"y":90,"fileNum":16100,"id":23224,"width":25,"height":45},{"x":100,"y":90,"fileNum":16100,"id":23225,"width":25,"height":45},{"x":0,"y":135,"fileNum":16100,"id":23226,"width":25,"height":45},{"x":25,"y":135,"fileNum":16100,"id":23227,"width":25,"height":45},{"x":50,"y":135,"fileNum":16100,"id":23228,"width":25,"height":45},{"x":75,"y":135,"fileNum":16100,"id":23229,"width":25,"height":45},{"x":100,"y":135,"fileNum":16100,"id":23230,"width":25,"height":45},{"x":0,"y":0,"fileNum":16101,"id":23235,"width":25,"height":45},{"x":25,"y":0,"fileNum":16101,"id":23236,"width":25,"height":45},{"x":50,"y":0,"fileNum":16101,"id":23237,"width":25,"height":45},{"x":75,"y":0,"fileNum":16101,"id":23238,"width":25,"height":45},{"x":100,"y":0,"fileNum":16101,"id":23239,"width":25,"height":45},{"x":125,"y":0,"fileNum":16101,"id":23240,"width":25,"height":45},{"x":0,"y":45,"fileNum":16101,"id":23241,"width":25,"height":45},{"x":25,"y":45,"fileNum":16101,"id":23242,"width":25,"height":45},{"x":50,"y":45,"fileNum":16101,"id":23243,"width":25,"height":45},{"x":75,"y":45,"fileNum":16101,"id":23244,"width":25,"height":45},{"x":100,"y":45,"fileNum":16101,"id":23245,"width":25,"height":45},{"x":125,"y":45,"fileNum":16101,"id":23246,"width":25,"height":45},{"x":0,"y":90,"fileNum":16101,"id":23247,"width":25,"height":45},{"x":25,"y":90,"fileNum":16101,"id":23248,"width":25,"height":45},{"x":50,"y":90,"fileNum":16101,"id":23249,"width":25,"height":45},{"x":75,"y":90,"fileNum":16101,"id":23250,"width":25,"height":45},{"x":100,"y":90,"fileNum":16101,"id":23251,"width":25,"height":45},{"x":0,"y":135,"fileNum":16101,"id":23252,"width":25,"height":45},{"x":25,"y":135,"fileNum":16101,"id":23253,"width":25,"height":45},{"x":50,"y":135,"fileNum":16101,"id":23254,"width":25,"height":45},{"x":75,"y":135,"fileNum":16101,"id":23255,"width":25,"height":45},{"x":100,"y":135,"fileNum":16101,"id":23256,"width":25,"height":45},{"x":0,"y":0,"fileNum":16102,"id":23261,"width":25,"height":45},{"x":25,"y":0,"fileNum":16102,"id":23262,"width":25,"height":45},{"x":50,"y":0,"fileNum":16102,"id":23263,"width":25,"height":45},{"x":75,"y":0,"fileNum":16102,"id":23264,"width":25,"height":45},{"x":100,"y":0,"fileNum":16102,"id":23265,"width":25,"height":45},{"x":125,"y":0,"fileNum":16102,"id":23266,"width":25,"height":45},{"x":0,"y":45,"fileNum":16102,"id":23267,"width":25,"height":45},{"x":25,"y":45,"fileNum":16102,"id":23268,"width":25,"height":45},{"x":50,"y":45,"fileNum":16102,"id":23269,"width":25,"height":45},{"x":75,"y":45,"fileNum":16102,"id":23270,"width":25,"height":45},{"x":100,"y":45,"fileNum":16102,"id":23271,"width":25,"height":45},{"x":125,"y":45,"fileNum":16102,"id":23272,"width":25,"height":45},{"x":0,"y":90,"fileNum":16102,"id":23273,"width":25,"height":45},{"x":25,"y":90,"fileNum":16102,"id":23274,"width":25,"height":45},{"x":50,"y":90,"fileNum":16102,"id":23275,"width":25,"height":45},{"x":75,"y":90,"fileNum":16102,"id":23276,"width":25,"height":45},{"x":100,"y":90,"fileNum":16102,"id":23277,"width":25,"height":45},{"x":0,"y":135,"fileNum":16102,"id":23278,"width":25,"height":45},{"x":25,"y":135,"fileNum":16102,"id":23279,"width":25,"height":45},{"x":50,"y":135,"fileNum":16102,"id":23280,"width":25,"height":45},{"x":75,"y":135,"fileNum":16102,"id":23281,"width":25,"height":45},{"x":100,"y":135,"fileNum":16102,"id":23282,"width":25,"height":45},{"x":0,"y":0,"fileNum":16103,"id":23287,"width":25,"height":45},{"x":25,"y":0,"fileNum":16103,"id":23288,"width":25,"height":45},{"x":50,"y":0,"fileNum":16103,"id":23289,"width":25,"height":45},{"x":75,"y":0,"fileNum":16103,"id":23290,"width":25,"height":45},{"x":100,"y":0,"fileNum":16103,"id":23291,"width":25,"height":45},{"x":125,"y":0,"fileNum":16103,"id":23292,"width":25,"height":45},{"x":0,"y":45,"fileNum":16103,"id":23293,"width":25,"height":45},{"x":25,"y":45,"fileNum":16103,"id":23294,"width":25,"height":45},{"x":50,"y":45,"fileNum":16103,"id":23295,"width":25,"height":45},{"x":75,"y":45,"fileNum":16103,"id":23296,"width":25,"height":45},{"x":100,"y":45,"fileNum":16103,"id":23297,"width":25,"height":45},{"x":125,"y":45,"fileNum":16103,"id":23298,"width":25,"height":45},{"x":0,"y":90,"fileNum":16103,"id":23299,"width":25,"height":45},{"x":25,"y":90,"fileNum":16103,"id":23300,"width":25,"height":45},{"x":50,"y":90,"fileNum":16103,"id":23301,"width":25,"height":45},{"x":75,"y":90,"fileNum":16103,"id":23302,"width":25,"height":45},{"x":100,"y":90,"fileNum":16103,"id":23303,"width":25,"height":45},{"x":0,"y":135,"fileNum":16103,"id":23304,"width":25,"height":45},{"x":25,"y":135,"fileNum":16103,"id":23305,"width":25,"height":45},{"x":50,"y":135,"fileNum":16103,"id":23306,"width":25,"height":45},{"x":75,"y":135,"fileNum":16103,"id":23307,"width":25,"height":45},{"x":100,"y":135,"fileNum":16103,"id":23308,"width":25,"height":45},{"x":0,"y":0,"fileNum":16104,"id":23313,"width":25,"height":45},{"x":25,"y":0,"fileNum":16104,"id":23314,"width":25,"height":45},{"x":50,"y":0,"fileNum":16104,"id":23315,"width":25,"height":45},{"x":75,"y":0,"fileNum":16104,"id":23316,"width":25,"height":45},{"x":100,"y":0,"fileNum":16104,"id":23317,"width":25,"height":45},{"x":125,"y":0,"fileNum":16104,"id":23318,"width":25,"height":45},{"x":0,"y":45,"fileNum":16104,"id":23319,"width":25,"height":45},{"x":25,"y":45,"fileNum":16104,"id":23320,"width":25,"height":45},{"x":50,"y":45,"fileNum":16104,"id":23321,"width":25,"height":45},{"x":75,"y":45,"fileNum":16104,"id":23322,"width":25,"height":45},{"x":100,"y":45,"fileNum":16104,"id":23323,"width":25,"height":45},{"x":125,"y":45,"fileNum":16104,"id":23324,"width":25,"height":45},{"x":0,"y":90,"fileNum":16104,"id":23325,"width":25,"height":45},{"x":25,"y":90,"fileNum":16104,"id":23326,"width":25,"height":45},{"x":50,"y":90,"fileNum":16104,"id":23327,"width":25,"height":45},{"x":75,"y":90,"fileNum":16104,"id":23328,"width":25,"height":45},{"x":100,"y":90,"fileNum":16104,"id":23329,"width":25,"height":45},{"x":0,"y":135,"fileNum":16104,"id":23330,"width":25,"height":45},{"x":25,"y":135,"fileNum":16104,"id":23331,"width":25,"height":45},{"x":50,"y":135,"fileNum":16104,"id":23332,"width":25,"height":45},{"x":75,"y":135,"fileNum":16104,"id":23333,"width":25,"height":45},{"x":100,"y":135,"fileNum":16104,"id":23334,"width":25,"height":45},{"x":0,"y":0,"fileNum":16105,"id":23339,"width":25,"height":45},{"x":25,"y":0,"fileNum":16105,"id":23340,"width":25,"height":45},{"x":50,"y":0,"fileNum":16105,"id":23341,"width":25,"height":45},{"x":75,"y":0,"fileNum":16105,"id":23342,"width":25,"height":45},{"x":100,"y":0,"fileNum":16105,"id":23343,"width":25,"height":45},{"x":125,"y":0,"fileNum":16105,"id":23344,"width":25,"height":45},{"x":0,"y":45,"fileNum":16105,"id":23345,"width":25,"height":45},{"x":25,"y":45,"fileNum":16105,"id":23346,"width":25,"height":45},{"x":50,"y":45,"fileNum":16105,"id":23347,"width":25,"height":45},{"x":75,"y":45,"fileNum":16105,"id":23348,"width":25,"height":45},{"x":100,"y":45,"fileNum":16105,"id":23349,"width":25,"height":45},{"x":125,"y":45,"fileNum":16105,"id":23350,"width":25,"height":45},{"x":0,"y":90,"fileNum":16105,"id":23351,"width":25,"height":45},{"x":25,"y":90,"fileNum":16105,"id":23352,"width":25,"height":45},{"x":50,"y":90,"fileNum":16105,"id":23353,"width":25,"height":45},{"x":75,"y":90,"fileNum":16105,"id":23354,"width":25,"height":45},{"x":100,"y":90,"fileNum":16105,"id":23355,"width":25,"height":45},{"x":0,"y":135,"fileNum":16105,"id":23356,"width":25,"height":45},{"x":25,"y":135,"fileNum":16105,"id":23357,"width":25,"height":45},{"x":50,"y":135,"fileNum":16105,"id":23358,"width":25,"height":45},{"x":75,"y":135,"fileNum":16105,"id":23359,"width":25,"height":45},{"x":100,"y":135,"fileNum":16105,"id":23360,"width":25,"height":45},{"x":0,"y":0,"fileNum":16106,"id":23365,"width":25,"height":45},{"x":25,"y":0,"fileNum":16106,"id":23366,"width":25,"height":45},{"x":50,"y":0,"fileNum":16106,"id":23367,"width":25,"height":45},{"x":75,"y":0,"fileNum":16106,"id":23368,"width":25,"height":45},{"x":100,"y":0,"fileNum":16106,"id":23369,"width":25,"height":45},{"x":125,"y":0,"fileNum":16106,"id":23370,"width":25,"height":45},{"x":0,"y":45,"fileNum":16106,"id":23371,"width":25,"height":45},{"x":25,"y":45,"fileNum":16106,"id":23372,"width":25,"height":45},{"x":50,"y":45,"fileNum":16106,"id":23373,"width":25,"height":45},{"x":75,"y":45,"fileNum":16106,"id":23374,"width":25,"height":45},{"x":100,"y":45,"fileNum":16106,"id":23375,"width":25,"height":45},{"x":125,"y":45,"fileNum":16106,"id":23376,"width":25,"height":45},{"x":0,"y":90,"fileNum":16106,"id":23377,"width":25,"height":45},{"x":25,"y":90,"fileNum":16106,"id":23378,"width":25,"height":45},{"x":50,"y":90,"fileNum":16106,"id":23379,"width":25,"height":45},{"x":75,"y":90,"fileNum":16106,"id":23380,"width":25,"height":45},{"x":100,"y":90,"fileNum":16106,"id":23381,"width":25,"height":45},{"x":0,"y":135,"fileNum":16106,"id":23382,"width":25,"height":45},{"x":25,"y":135,"fileNum":16106,"id":23383,"width":25,"height":45},{"x":50,"y":135,"fileNum":16106,"id":23384,"width":25,"height":45},{"x":75,"y":135,"fileNum":16106,"id":23385,"width":25,"height":45},{"x":100,"y":135,"fileNum":16106,"id":23386,"width":25,"height":45},{"x":0,"y":0,"fileNum":16107,"id":23391,"width":25,"height":45},{"x":25,"y":0,"fileNum":16107,"id":23392,"width":25,"height":45},{"x":50,"y":0,"fileNum":16107,"id":23393,"width":25,"height":45},{"x":75,"y":0,"fileNum":16107,"id":23394,"width":25,"height":45},{"x":100,"y":0,"fileNum":16107,"id":23395,"width":25,"height":45},{"x":125,"y":0,"fileNum":16107,"id":23396,"width":25,"height":45},{"x":0,"y":45,"fileNum":16107,"id":23397,"width":25,"height":45},{"x":25,"y":45,"fileNum":16107,"id":23398,"width":25,"height":45},{"x":50,"y":45,"fileNum":16107,"id":23399,"width":25,"height":45},{"x":75,"y":45,"fileNum":16107,"id":23400,"width":25,"height":45},{"x":100,"y":45,"fileNum":16107,"id":23401,"width":25,"height":45},{"x":125,"y":45,"fileNum":16107,"id":23402,"width":25,"height":45},{"x":0,"y":90,"fileNum":16107,"id":23403,"width":25,"height":45},{"x":25,"y":90,"fileNum":16107,"id":23404,"width":25,"height":45},{"x":50,"y":90,"fileNum":16107,"id":23405,"width":25,"height":45},{"x":75,"y":90,"fileNum":16107,"id":23406,"width":25,"height":45},{"x":100,"y":90,"fileNum":16107,"id":23407,"width":25,"height":45},{"x":0,"y":135,"fileNum":16107,"id":23408,"width":25,"height":45},{"x":25,"y":135,"fileNum":16107,"id":23409,"width":25,"height":45},{"x":50,"y":135,"fileNum":16107,"id":23410,"width":25,"height":45},{"x":75,"y":135,"fileNum":16107,"id":23411,"width":25,"height":45},{"x":100,"y":135,"fileNum":16107,"id":23412,"width":25,"height":45},{"x":0,"y":0,"fileNum":16108,"id":23417,"width":25,"height":45},{"x":25,"y":0,"fileNum":16108,"id":23418,"width":25,"height":45},{"x":50,"y":0,"fileNum":16108,"id":23419,"width":25,"height":45},{"x":75,"y":0,"fileNum":16108,"id":23420,"width":25,"height":45},{"x":100,"y":0,"fileNum":16108,"id":23421,"width":25,"height":45},{"x":125,"y":0,"fileNum":16108,"id":23422,"width":25,"height":45},{"x":0,"y":45,"fileNum":16108,"id":23423,"width":25,"height":45},{"x":25,"y":45,"fileNum":16108,"id":23424,"width":25,"height":45},{"x":50,"y":45,"fileNum":16108,"id":23425,"width":25,"height":45},{"x":75,"y":45,"fileNum":16108,"id":23426,"width":25,"height":45},{"x":100,"y":45,"fileNum":16108,"id":23427,"width":25,"height":45},{"x":125,"y":45,"fileNum":16108,"id":23428,"width":25,"height":45},{"x":0,"y":90,"fileNum":16108,"id":23429,"width":25,"height":45},{"x":25,"y":90,"fileNum":16108,"id":23430,"width":25,"height":45},{"x":50,"y":90,"fileNum":16108,"id":23431,"width":25,"height":45},{"x":75,"y":90,"fileNum":16108,"id":23432,"width":25,"height":45},{"x":100,"y":90,"fileNum":16108,"id":23433,"width":25,"height":45},{"x":0,"y":135,"fileNum":16108,"id":23434,"width":25,"height":45},{"x":25,"y":135,"fileNum":16108,"id":23435,"width":25,"height":45},{"x":50,"y":135,"fileNum":16108,"id":23436,"width":25,"height":45},{"x":75,"y":135,"fileNum":16108,"id":23437,"width":25,"height":45},{"x":100,"y":135,"fileNum":16108,"id":23438,"width":25,"height":45},{"x":0,"y":0,"fileNum":16109,"id":23443,"width":25,"height":45},{"x":25,"y":0,"fileNum":16109,"id":23444,"width":25,"height":45},{"x":50,"y":0,"fileNum":16109,"id":23445,"width":25,"height":45},{"x":75,"y":0,"fileNum":16109,"id":23446,"width":25,"height":45},{"x":100,"y":0,"fileNum":16109,"id":23447,"width":25,"height":45},{"x":125,"y":0,"fileNum":16109,"id":23448,"width":25,"height":45},{"x":0,"y":45,"fileNum":16109,"id":23449,"width":25,"height":45},{"x":25,"y":45,"fileNum":16109,"id":23450,"width":25,"height":45},{"x":50,"y":45,"fileNum":16109,"id":23451,"width":25,"height":45},{"x":75,"y":45,"fileNum":16109,"id":23452,"width":25,"height":45},{"x":100,"y":45,"fileNum":16109,"id":23453,"width":25,"height":45},{"x":125,"y":45,"fileNum":16109,"id":23454,"width":25,"height":45},{"x":0,"y":90,"fileNum":16109,"id":23455,"width":25,"height":45},{"x":25,"y":90,"fileNum":16109,"id":23456,"width":25,"height":45},{"x":50,"y":90,"fileNum":16109,"id":23457,"width":25,"height":45},{"x":75,"y":90,"fileNum":16109,"id":23458,"width":25,"height":45},{"x":100,"y":90,"fileNum":16109,"id":23459,"width":25,"height":45},{"x":0,"y":135,"fileNum":16109,"id":23460,"width":25,"height":45},{"x":25,"y":135,"fileNum":16109,"id":23461,"width":25,"height":45},{"x":50,"y":135,"fileNum":16109,"id":23462,"width":25,"height":45},{"x":75,"y":135,"fileNum":16109,"id":23463,"width":25,"height":45},{"x":100,"y":135,"fileNum":16109,"id":23464,"width":25,"height":45},{"x":0,"y":0,"fileNum":16110,"id":23469,"width":25,"height":45},{"x":25,"y":0,"fileNum":16110,"id":23470,"width":25,"height":45},{"x":50,"y":0,"fileNum":16110,"id":23471,"width":25,"height":45},{"x":75,"y":0,"fileNum":16110,"id":23472,"width":25,"height":45},{"x":100,"y":0,"fileNum":16110,"id":23473,"width":25,"height":45},{"x":125,"y":0,"fileNum":16110,"id":23474,"width":25,"height":45},{"x":0,"y":45,"fileNum":16110,"id":23475,"width":25,"height":45},{"x":25,"y":45,"fileNum":16110,"id":23476,"width":25,"height":45},{"x":50,"y":45,"fileNum":16110,"id":23477,"width":25,"height":45},{"x":75,"y":45,"fileNum":16110,"id":23478,"width":25,"height":45},{"x":100,"y":45,"fileNum":16110,"id":23479,"width":25,"height":45},{"x":125,"y":45,"fileNum":16110,"id":23480,"width":25,"height":45},{"x":0,"y":90,"fileNum":16110,"id":23481,"width":25,"height":45},{"x":25,"y":90,"fileNum":16110,"id":23482,"width":25,"height":45},{"x":50,"y":90,"fileNum":16110,"id":23483,"width":25,"height":45},{"x":75,"y":90,"fileNum":16110,"id":23484,"width":25,"height":45},{"x":100,"y":90,"fileNum":16110,"id":23485,"width":25,"height":45},{"x":0,"y":135,"fileNum":16110,"id":23486,"width":25,"height":45},{"x":25,"y":135,"fileNum":16110,"id":23487,"width":25,"height":45},{"x":50,"y":135,"fileNum":16110,"id":23488,"width":25,"height":45},{"x":75,"y":135,"fileNum":16110,"id":23489,"width":25,"height":45},{"x":100,"y":135,"fileNum":16110,"id":23490,"width":25,"height":45},{"x":0,"y":0,"fileNum":16111,"id":23495,"width":25,"height":45},{"x":25,"y":0,"fileNum":16111,"id":23496,"width":25,"height":45},{"x":50,"y":0,"fileNum":16111,"id":23497,"width":25,"height":45},{"x":75,"y":0,"fileNum":16111,"id":23498,"width":25,"height":45},{"x":100,"y":0,"fileNum":16111,"id":23499,"width":25,"height":45},{"x":125,"y":0,"fileNum":16111,"id":23500,"width":25,"height":45},{"x":0,"y":45,"fileNum":16111,"id":23501,"width":25,"height":45},{"x":25,"y":45,"fileNum":16111,"id":23502,"width":25,"height":45},{"x":50,"y":45,"fileNum":16111,"id":23503,"width":25,"height":45},{"x":75,"y":45,"fileNum":16111,"id":23504,"width":25,"height":45},{"x":100,"y":45,"fileNum":16111,"id":23505,"width":25,"height":45},{"x":125,"y":45,"fileNum":16111,"id":23506,"width":25,"height":45},{"x":0,"y":90,"fileNum":16111,"id":23507,"width":25,"height":45},{"x":25,"y":90,"fileNum":16111,"id":23508,"width":25,"height":45},{"x":50,"y":90,"fileNum":16111,"id":23509,"width":25,"height":45},{"x":75,"y":90,"fileNum":16111,"id":23510,"width":25,"height":45},{"x":100,"y":90,"fileNum":16111,"id":23511,"width":25,"height":45},{"x":0,"y":135,"fileNum":16111,"id":23512,"width":25,"height":45},{"x":25,"y":135,"fileNum":16111,"id":23513,"width":25,"height":45},{"x":50,"y":135,"fileNum":16111,"id":23514,"width":25,"height":45},{"x":75,"y":135,"fileNum":16111,"id":23515,"width":25,"height":45},{"x":100,"y":135,"fileNum":16111,"id":23516,"width":25,"height":45},{"x":0,"y":0,"fileNum":16112,"id":23521,"width":25,"height":45},{"x":25,"y":0,"fileNum":16112,"id":23522,"width":25,"height":45},{"x":50,"y":0,"fileNum":16112,"id":23523,"width":25,"height":45},{"x":75,"y":0,"fileNum":16112,"id":23524,"width":25,"height":45},{"x":100,"y":0,"fileNum":16112,"id":23525,"width":25,"height":45},{"x":125,"y":0,"fileNum":16112,"id":23526,"width":25,"height":45},{"x":0,"y":45,"fileNum":16112,"id":23527,"width":25,"height":45},{"x":25,"y":45,"fileNum":16112,"id":23528,"width":25,"height":45},{"x":50,"y":45,"fileNum":16112,"id":23529,"width":25,"height":45},{"x":75,"y":45,"fileNum":16112,"id":23530,"width":25,"height":45},{"x":100,"y":45,"fileNum":16112,"id":23531,"width":25,"height":45},{"x":125,"y":45,"fileNum":16112,"id":23532,"width":25,"height":45},{"x":0,"y":90,"fileNum":16112,"id":23533,"width":25,"height":45},{"x":25,"y":90,"fileNum":16112,"id":23534,"width":25,"height":45},{"x":50,"y":90,"fileNum":16112,"id":23535,"width":25,"height":45},{"x":75,"y":90,"fileNum":16112,"id":23536,"width":25,"height":45},{"x":100,"y":90,"fileNum":16112,"id":23537,"width":25,"height":45},{"x":0,"y":135,"fileNum":16112,"id":23538,"width":25,"height":45},{"x":25,"y":135,"fileNum":16112,"id":23539,"width":25,"height":45},{"x":50,"y":135,"fileNum":16112,"id":23540,"width":25,"height":45},{"x":75,"y":135,"fileNum":16112,"id":23541,"width":25,"height":45},{"x":100,"y":135,"fileNum":16112,"id":23542,"width":25,"height":45},{"x":0,"y":0,"fileNum":21011,"id":23547,"width":25,"height":45},{"x":25,"y":0,"fileNum":21011,"id":23548,"width":25,"height":45},{"x":50,"y":0,"fileNum":21011,"id":23549,"width":25,"height":45},{"x":75,"y":0,"fileNum":21011,"id":23550,"width":25,"height":45},{"x":100,"y":0,"fileNum":21011,"id":23551,"width":25,"height":45},{"x":125,"y":0,"fileNum":21011,"id":23552,"width":25,"height":45},{"x":0,"y":45,"fileNum":21011,"id":23553,"width":25,"height":45},{"x":25,"y":45,"fileNum":21011,"id":23554,"width":25,"height":45},{"x":50,"y":45,"fileNum":21011,"id":23555,"width":25,"height":45},{"x":75,"y":45,"fileNum":21011,"id":23556,"width":25,"height":45},{"x":100,"y":45,"fileNum":21011,"id":23557,"width":25,"height":45},{"x":125,"y":45,"fileNum":21011,"id":23558,"width":25,"height":45},{"x":0,"y":90,"fileNum":21011,"id":23559,"width":25,"height":45},{"x":25,"y":90,"fileNum":21011,"id":23560,"width":25,"height":45},{"x":50,"y":90,"fileNum":21011,"id":23561,"width":25,"height":45},{"x":75,"y":90,"fileNum":21011,"id":23562,"width":25,"height":45},{"x":100,"y":90,"fileNum":21011,"id":23563,"width":25,"height":45},{"x":0,"y":135,"fileNum":21011,"id":23564,"width":25,"height":45},{"x":25,"y":135,"fileNum":21011,"id":23565,"width":25,"height":45},{"x":50,"y":135,"fileNum":21011,"id":23566,"width":25,"height":45},{"x":75,"y":135,"fileNum":21011,"id":23567,"width":25,"height":45},{"x":100,"y":135,"fileNum":21011,"id":23568,"width":25,"height":45},{"x":0,"y":0,"fileNum":21012,"id":23573,"width":25,"height":45},{"x":25,"y":0,"fileNum":21012,"id":23574,"width":25,"height":45},{"x":50,"y":0,"fileNum":21012,"id":23575,"width":25,"height":45},{"x":75,"y":0,"fileNum":21012,"id":23576,"width":25,"height":45},{"x":100,"y":0,"fileNum":21012,"id":23577,"width":25,"height":45},{"x":125,"y":0,"fileNum":21012,"id":23578,"width":25,"height":45},{"x":0,"y":45,"fileNum":21012,"id":23579,"width":25,"height":45},{"x":25,"y":45,"fileNum":21012,"id":23580,"width":25,"height":45},{"x":50,"y":45,"fileNum":21012,"id":23581,"width":25,"height":45},{"x":75,"y":45,"fileNum":21012,"id":23582,"width":25,"height":45},{"x":100,"y":45,"fileNum":21012,"id":23583,"width":25,"height":45},{"x":125,"y":45,"fileNum":21012,"id":23584,"width":25,"height":45},{"x":0,"y":90,"fileNum":21012,"id":23585,"width":25,"height":45},{"x":25,"y":90,"fileNum":21012,"id":23586,"width":25,"height":45},{"x":50,"y":90,"fileNum":21012,"id":23587,"width":25,"height":45},{"x":75,"y":90,"fileNum":21012,"id":23588,"width":25,"height":45},{"x":100,"y":90,"fileNum":21012,"id":23589,"width":25,"height":45},{"x":0,"y":135,"fileNum":21012,"id":23590,"width":25,"height":45},{"x":25,"y":135,"fileNum":21012,"id":23591,"width":25,"height":45},{"x":50,"y":135,"fileNum":21012,"id":23592,"width":25,"height":45},{"x":75,"y":135,"fileNum":21012,"id":23593,"width":25,"height":45},{"x":100,"y":135,"fileNum":21012,"id":23594,"width":25,"height":45},{"x":0,"y":0,"fileNum":21013,"id":23599,"width":25,"height":45},{"x":25,"y":0,"fileNum":21013,"id":23600,"width":25,"height":45},{"x":50,"y":0,"fileNum":21013,"id":23601,"width":25,"height":45},{"x":75,"y":0,"fileNum":21013,"id":23602,"width":25,"height":45},{"x":100,"y":0,"fileNum":21013,"id":23603,"width":25,"height":45},{"x":125,"y":0,"fileNum":21013,"id":23604,"width":25,"height":45},{"x":0,"y":45,"fileNum":21013,"id":23605,"width":25,"height":45},{"x":25,"y":45,"fileNum":21013,"id":23606,"width":25,"height":45},{"x":50,"y":45,"fileNum":21013,"id":23607,"width":25,"height":45},{"x":75,"y":45,"fileNum":21013,"id":23608,"width":25,"height":45},{"x":100,"y":45,"fileNum":21013,"id":23609,"width":25,"height":45},{"x":125,"y":45,"fileNum":21013,"id":23610,"width":25,"height":45},{"x":0,"y":90,"fileNum":21013,"id":23611,"width":25,"height":45},{"x":25,"y":90,"fileNum":21013,"id":23612,"width":25,"height":45},{"x":50,"y":90,"fileNum":21013,"id":23613,"width":25,"height":45},{"x":75,"y":90,"fileNum":21013,"id":23614,"width":25,"height":45},{"x":100,"y":90,"fileNum":21013,"id":23615,"width":25,"height":45},{"x":0,"y":135,"fileNum":21013,"id":23616,"width":25,"height":45},{"x":25,"y":135,"fileNum":21013,"id":23617,"width":25,"height":45},{"x":50,"y":135,"fileNum":21013,"id":23618,"width":25,"height":45},{"x":75,"y":135,"fileNum":21013,"id":23619,"width":25,"height":45},{"x":100,"y":135,"fileNum":21013,"id":23620,"width":25,"height":45},{"x":0,"y":0,"fileNum":21014,"id":23625,"width":25,"height":45},{"x":25,"y":0,"fileNum":21014,"id":23626,"width":25,"height":45},{"x":50,"y":0,"fileNum":21014,"id":23627,"width":25,"height":45},{"x":75,"y":0,"fileNum":21014,"id":23628,"width":25,"height":45},{"x":100,"y":0,"fileNum":21014,"id":23629,"width":25,"height":45},{"x":125,"y":0,"fileNum":21014,"id":23630,"width":25,"height":45},{"x":0,"y":45,"fileNum":21014,"id":23631,"width":25,"height":45},{"x":25,"y":45,"fileNum":21014,"id":23632,"width":25,"height":45},{"x":50,"y":45,"fileNum":21014,"id":23633,"width":25,"height":45},{"x":75,"y":45,"fileNum":21014,"id":23634,"width":25,"height":45},{"x":100,"y":45,"fileNum":21014,"id":23635,"width":25,"height":45},{"x":125,"y":45,"fileNum":21014,"id":23636,"width":25,"height":45},{"x":0,"y":90,"fileNum":21014,"id":23637,"width":25,"height":45},{"x":25,"y":90,"fileNum":21014,"id":23638,"width":25,"height":45},{"x":50,"y":90,"fileNum":21014,"id":23639,"width":25,"height":45},{"x":75,"y":90,"fileNum":21014,"id":23640,"width":25,"height":45},{"x":100,"y":90,"fileNum":21014,"id":23641,"width":25,"height":45},{"x":0,"y":135,"fileNum":21014,"id":23642,"width":25,"height":45},{"x":25,"y":135,"fileNum":21014,"id":23643,"width":25,"height":45},{"x":50,"y":135,"fileNum":21014,"id":23644,"width":25,"height":45},{"x":75,"y":135,"fileNum":21014,"id":23645,"width":25,"height":45},{"x":100,"y":135,"fileNum":21014,"id":23646,"width":25,"height":45},{"x":0,"y":0,"fileNum":25005,"id":23651,"width":48,"height":48},{"x":0,"y":0,"fileNum":25006,"id":23652,"width":3,"height":20},{"x":0,"y":0,"fileNum":23669,"id":23669,"width":29,"height":32},{"x":29,"y":0,"fileNum":23669,"id":23670,"width":29,"height":32},{"x":58,"y":0,"fileNum":23669,"id":23671,"width":29,"height":32},{"x":0,"y":32,"fileNum":23669,"id":23672,"width":29,"height":32},{"x":29,"y":32,"fileNum":23669,"id":23673,"width":29,"height":32},{"x":58,"y":32,"fileNum":23669,"id":23674,"width":29,"height":32},{"x":0,"y":64,"fileNum":23669,"id":23675,"width":29,"height":32},{"x":29,"y":64,"fileNum":23669,"id":23676,"width":29,"height":32},{"x":58,"y":64,"fileNum":23669,"id":23677,"width":29,"height":32},{"x":0,"y":96,"fileNum":23669,"id":23678,"width":29,"height":32},{"x":29,"y":96,"fileNum":23669,"id":23679,"width":29,"height":32},{"x":58,"y":96,"fileNum":23669,"id":23680,"width":29,"height":32}]
\ No newline at end of file
diff --git a/design/src/design/screens/map/MapEditor.java b/design/src/design/screens/map/MapEditor.java
index e3e95c09..a7cc3893 100644
--- a/design/src/design/screens/map/MapEditor.java
+++ b/design/src/design/screens/map/MapEditor.java
@@ -8,13 +8,11 @@
import com.badlogic.gdx.Input;
import com.badlogic.gdx.files.FileHandle;
import com.badlogic.gdx.graphics.GL20;
+import com.badlogic.gdx.math.MathUtils;
import com.badlogic.gdx.math.Vector3;
import com.badlogic.gdx.scenes.scene2d.InputEvent;
import com.badlogic.gdx.scenes.scene2d.Stage;
-import com.badlogic.gdx.scenes.scene2d.ui.Button;
-import com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton;
-import com.badlogic.gdx.scenes.scene2d.ui.Table;
-import com.badlogic.gdx.scenes.scene2d.ui.TextTooltip;
+import com.badlogic.gdx.scenes.scene2d.ui.*;
import com.badlogic.gdx.scenes.scene2d.utils.ClickListener;
import com.google.common.base.Objects;
import component.position.WorldPos;
@@ -26,13 +24,13 @@
import design.screens.map.gui.MapPalette;
import design.screens.map.gui.MapPalette.Selection;
import design.screens.map.gui.MapProperties;
+import design.screens.map.systems.DesignCameraFocusSystem;
import design.screens.map.systems.MapDesignRenderingSystem;
import design.screens.views.TileSetView;
-import game.ClientConfiguration;
import game.handlers.DefaultAOAssetManager;
-import game.systems.camera.CameraSystem;
+import game.systems.camera.*;
import game.systems.map.MapManager;
-import game.systems.render.BatchRenderingSystem;
+import game.systems.render.BatchSystem;
import game.systems.resources.AnimationsSystem;
import game.systems.resources.DescriptorsSystem;
import game.systems.resources.ObjectSystem;
@@ -55,6 +53,8 @@
public class MapEditor extends DesignScreen {
private final Stage stage;
+ private final int maxMapWidth = 100; //ancho máximo del mapa expresado en tiles
+ private final int maxMapHeight = 100; //alto máximo del mapa expresado en tiles
private World world;
private int viewer;
@@ -65,6 +65,8 @@ public class MapEditor extends DesignScreen {
private MapProperties mapProperties;
private MapPalette mapPalette;
private Deque undoableActions = new ArrayDeque<>(50);
+ private final TextField mapNumber;
+ private Label mousePosXLabel, mousePosYLabel;
public MapEditor() {
stage = new Stage() {
@@ -74,7 +76,12 @@ public boolean touchDragged(int screenX, int screenY, int pointer) {
if (Gdx.input.isKeyPressed(Input.Keys.SHIFT_LEFT) || Gdx.input.isKeyPressed(Input.Keys.SHIFT_RIGHT)) {
float x = Gdx.input.getDeltaX();
float y = Gdx.input.getDeltaY();
- world.getSystem(CameraSystem.class).camera.translate(-x, -y);
+ WorldPos pos = E(viewer).getWorldPos();
+ pos.x += x;
+ pos.x = MathUtils.clamp(pos.x, 0, maxMapWidth);
+ pos.y += y;
+ pos.y = MathUtils.clamp(pos.y, 0, maxMapHeight);
+ E(viewer).worldPosX(pos.x).worldPosY(pos.y);
} else {
dragging = true;
setTile();
@@ -96,9 +103,13 @@ public boolean scrolled(float amountX, float amountY) {
float y = !(Gdx.input.isKeyPressed(Input.Keys.SHIFT_LEFT) ||
Gdx.input.isKeyPressed(Input.Keys.SHIFT_RIGHT)) ?
amountY : 0;
- x *= 70;
- y *= 70;
- world.getSystem(CameraSystem.class).camera.translate(x, y);
+
+ WorldPos pos = E(viewer).getWorldPos();
+ pos.x += x;
+ pos.x = MathUtils.clamp(pos.x, 0, maxMapWidth);
+ pos.y += y;
+ pos.y = MathUtils.clamp(pos.y, 0, maxMapHeight);
+ E(viewer).worldPosX(pos.x).worldPosY(pos.y);
}
return result;
}
@@ -118,22 +129,54 @@ void setTile() {
@Override
public boolean keyUp(int keyCode) {
- switch (keyCode) {
+ switch( keyCode ) {
case Input.Keys.Z:
- if (Gdx.input.isKeyPressed(Input.Keys.CONTROL_LEFT) ||
- Gdx.input.isKeyPressed(Input.Keys.CONTROL_RIGHT)) {
- if (undoableActions.size() > 0) {
+ if(Gdx.input.isKeyPressed( Input.Keys.CONTROL_LEFT ) ||
+ Gdx.input.isKeyPressed( Input.Keys.CONTROL_RIGHT )) {
+ if(undoableActions.size() > 0) {
Undo poll = undoableActions.pop();
Map current = mapProperties.getCurrent();
- current.setTile(poll.pos.x, poll.pos.y, poll.tile);
+ current.setTile( poll.pos.x, poll.pos.y, poll.tile );
}
}
break;
+
+ //toggle layers
+ case Input.Keys.NUM_1:
+ world.getSystem(MapDesignRenderingSystem.class).toggleLayer1();
+ break;
+ case Input.Keys.NUM_2:
+ world.getSystem(MapDesignRenderingSystem.class).toggleLayer2();
+ break;
+ case Input.Keys.NUM_3:
+ world.getSystem(MapDesignRenderingSystem.class).toggleLayer3();
+ break;
+ case Input.Keys.NUM_4:
+ world.getSystem(MapDesignRenderingSystem.class).toggleLayer4();
+ break;
+ case Input.Keys.F1:
+ Dialog dialog = new Dialog( "HELP", SKIN );
+ dialog.text("\n" +
+ "F1: Esta ventana \n" +
+ "1, 2, 3, 4: Activa y desactiva los layer\n" +
+ "Scroll: Desplazamiento vertical\n" +
+ "Shift + Scroll: desplazamiento horizontal\n" +
+ "Control + Scroll: Zoom\n" +
+ "Shift + mantener click + mover el mouse: desplazamiento\n" +
+ "Control + z: deshacer \n").pad( 30 );
+ dialog.button( "ok" );
+ dialog.show( getStage() );
+ break;
}
+
return super.keyUp(keyCode);
}
};
Gdx.input.setInputProcessor(stage);
+ mapNumber = new TextField("1", SKIN);
+ mapNumber.setTextFieldFilter( new TextField.TextFieldFilter.DigitsOnlyFilter() );
+ mousePosXLabel = new Label( "X: ", SKIN );
+ mousePosYLabel = new Label( "Y: ", SKIN );
createUI();
createWorld();
}
@@ -165,6 +208,8 @@ private void setTile(WorldPos pos) {
case 3:
if (assetChooser.getImage() > 0) {
tile.getGraphic()[layer] = assetChooser.getImage();
+ } else if(assetChooser.getAnimation() > 0) {
+ tile.getGraphic()[layer] = assetChooser.getAnimation();
} else {
saveUndo = false;
}
@@ -233,32 +278,49 @@ private Optional mouseToWorldPos() {
return Optional.empty();
}
+ //actualiza las labels que muestran la posicion del mouse
+ private void updateLabels(){
+ WorldPos mouseWP;
+ if (mouseToWorldPos().isPresent()) {
+ mouseWP = mouseToWorldPos().get();
+ }else {
+ mouseWP = new WorldPos();
+ }
+ mousePosXLabel.setText( "X: " + mouseWP.x );
+ mousePosYLabel.setText( "Y: " + mouseWP.y );
+ }
+
@Override
public Stage getStage() {
return stage;
}
private void createWorld() {
+ /*
+ * preguntar al que creo el CameraSystem de donde salió el 260
+ * si no lo contrarresto se ve mal el MapEditor
+ * quitar cuando se modifique en el CameraSystem
+ */
+ final int magicNumberCorrection = 260;
AnimationsSystem animationsSystem = ((DesignCenter) Gdx.app.getApplicationListener()).getAnimationsSystem();
DescriptorsSystem descriptorsSystem = ((DesignCenter) Gdx.app.getApplicationListener()).getDescriptorsSystem();
WorldConfigurationBuilder builder = new WorldConfigurationBuilder();
builder
.with(new SuperMapper())
.with(new ObjectSystem())
- .with(new CameraSystem(0.1f, 2f))
+ .with(new CameraSystem(0.1f, 2f,Gdx.graphics.getWidth() + magicNumberCorrection,Gdx.graphics.getHeight()))
+ .with(new DesignCameraFocusSystem())
+ .with(new CameraMovementSystem())
.with(animationsSystem)
.with(descriptorsSystem)
.with(new MapDesignRenderingSystem())
- .with(new BatchRenderingSystem())
+ .with(new BatchSystem())
.with(new MapManager());
-
WorldConfiguration config = builder.build();
config.register(DefaultAOAssetManager.getInstance());
world = new World(config);
- int camera = world.create();
- E(camera).worldPosOffsets().aOCamera();
viewer = world.create();
E(viewer).focused();
initMap(1);
@@ -279,10 +341,11 @@ public void clicked(InputEvent event, float x, float y) {
}
});
menus.add(back).left().expandX();
-
+ menus.add(mousePosXLabel).spaceLeft(5);
+ menus.add(mousePosYLabel).spaceLeft(5);
menus.add(createButton("Show Exits", "switch",
() -> world.getSystem(MapDesignRenderingSystem.class).toggleExits(), "Toggle exit tiles draw"))
- .spaceLeft(5);
+ .spaceLeft(10);
menus.add(createButton("Show Blocks", "switch",
() -> world.getSystem(MapDesignRenderingSystem.class).toggleBlocks(), "Toggle blocks draw"))
@@ -313,21 +376,45 @@ public void clicked(InputEvent event, float x, float y) {
}, "All tiles will be set with current configuration (layer & selection)"))
.spaceLeft(5);
+ menus.add(new Label( " Map Nº: ", SKIN));
+ menus.add(mapNumber).width( 40 ).spaceLeft( 5 );
menus.add(createButton("Load", "default",
() -> {
- int map = 1;
- initMap(map);
+ int map = Integer.parseInt(mapNumber.getText());
+ initMap( map );
}, "Load map"))
.spaceLeft(5);
menus.add(createButton("Save", "default",
() -> {
Map current = mapProperties.getCurrent();
+ int[] neighbours = mapProperties.getNeighbours();
+ current.setNeighbours( neighbours[0], neighbours[1],neighbours[2],neighbours[3] );
+ String mapName = current.getName();
+ if (mapName == null){
+ if (mapNumber.getText().isBlank()){
+ mapName = "Map0";
+ } else {
+ mapName = "Map" + mapNumber.getText();
+ }
+ current.setName( mapName );
+ }
FileHandle folder = Gdx.files.local("output/maps/");
- new AOJson().toJson(current, folder.child(current.getName() + ".json"));
- //TODO que guarde también los mapas limitrofes
+ new AOJson().toJson(current, folder.child(mapName + ".json"));
}, "Save map in output folder"))
.spaceLeft(5);
+ menus.add(createButton( "HELP", "default", () -> {
+ Dialog dialog = new Dialog( "HELP", SKIN );
+ dialog.text("\n" +
+ "F1: Esta ventana \n" +
+ "1, 2, 3, 4: Activa y desactiva los layer\n" +
+ "Scroll: Desplazamiento vertical\n" +
+ "Shift + Scroll: desplazamiento horizontal\n" +
+ "Control + Scroll: Zoom\n" +
+ "Shift + mantener click + mover el mouse: desplazamiento\n").pad( 30 );
+ dialog.button( "ok" );
+ dialog.show( getStage() );
+ }, "Help")).spaceLeft(5);
return menus;
}
@@ -388,6 +475,7 @@ public void render(float delta) {
if (running) {
Gdx.gl.glClearColor(0, 0, 0, 1);
Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT);
+ updateLabels();
if (getWorld() != null) {
getWorld().setDelta(delta);
getWorld().process();
@@ -420,5 +508,4 @@ public int hashCode() {
return Objects.hashCode(tile, pos);
}
}
-
}
diff --git a/design/src/design/screens/map/gui/MapPalette.java b/design/src/design/screens/map/gui/MapPalette.java
index 33fdce72..082a3bdd 100644
--- a/design/src/design/screens/map/gui/MapPalette.java
+++ b/design/src/design/screens/map/gui/MapPalette.java
@@ -26,7 +26,7 @@ public MapPalette() {
setMovable(true);
ButtonGroup layers = new ButtonGroup();
- Button fst = new TextButton("1", SKIN, "file");
+ Button fst = new TextButton("Ground graphic", SKIN, "file");
fst.addListener(new ClickListener() {
@Override
public void clicked(InputEvent event, float x, float y) {
@@ -35,7 +35,7 @@ public void clicked(InputEvent event, float x, float y) {
}
});
add(fst).growX().row();
- Button snd = new TextButton("2", SKIN, "file");
+ Button snd = new TextButton("Gound animation", SKIN, "file");
snd.addListener(new ClickListener() {
@Override
public void clicked(InputEvent event, float x, float y) {
@@ -44,7 +44,7 @@ public void clicked(InputEvent event, float x, float y) {
}
});
add(snd).growX().row();
- Button third = new TextButton("3", SKIN, "file");
+ Button third = new TextButton("Middle", SKIN, "file");
third.addListener(new ClickListener() {
@Override
public void clicked(InputEvent event, float x, float y) {
@@ -53,7 +53,7 @@ public void clicked(InputEvent event, float x, float y) {
}
});
add(third).growX().row();
- Button forth = new TextButton("4", SKIN, "file");
+ Button forth = new TextButton("Upper/roof", SKIN, "file");
forth.addListener(new ClickListener() {
@Override
public void clicked(InputEvent event, float x, float y) {
diff --git a/design/src/design/screens/map/gui/MapProperties.java b/design/src/design/screens/map/gui/MapProperties.java
index 0ca068e9..82b21230 100644
--- a/design/src/design/screens/map/gui/MapProperties.java
+++ b/design/src/design/screens/map/gui/MapProperties.java
@@ -16,6 +16,7 @@ public class MapProperties extends Window {
private Map current;
private ClickListener mouseListener;
private Table content;
+ private int[] neighbours;
public MapProperties() {
super("Map Properties", SKIN, "main");
@@ -32,7 +33,7 @@ public void show(Map map) {
current = map;
content.add(StringEditor.simple("Map Name", map::setName, map::getName, () -> {
})).row();
- int[] neighbours = map.getNeighbours();
+ neighbours = map.getNeighbours();
for (int i = 0; i < 4; i++) {
int finalI = i;
content.add(IntegerEditor.create(getNeighbourDisplay(i), id -> map.setNeighbour(finalI, id), () -> neighbours[finalI], () -> {
@@ -67,4 +68,7 @@ public Map getCurrent() {
public boolean isOver() {
return mouseListener.isOver();
}
+ public int[] getNeighbours(){
+ return neighbours;
+ }
}
diff --git a/design/src/design/screens/map/systems/DesignCameraFocusSystem.java b/design/src/design/screens/map/systems/DesignCameraFocusSystem.java
new file mode 100644
index 00000000..0ab28f89
--- /dev/null
+++ b/design/src/design/screens/map/systems/DesignCameraFocusSystem.java
@@ -0,0 +1,32 @@
+package design.screens.map.systems;
+
+import com.artemis.Aspect;
+import com.artemis.E;
+import com.artemis.EBag;
+import com.artemis.annotations.Wire;
+import com.artemis.systems.IteratingSystem;
+import component.camera.AOCamera;
+import component.camera.Focused;
+import component.position.WorldPos;
+import game.utils.Pos2D;
+
+@Wire
+public class DesignCameraFocusSystem extends IteratingSystem {
+
+ public DesignCameraFocusSystem() {
+ super( Aspect.all( Focused.class, WorldPos.class));
+ }
+
+ @Override
+ protected void process(int player) {
+ EBag cameras = E.withComponent( AOCamera.class);
+ if (cameras.iterator().hasNext()) {
+ E playerEntity = E.E(player);
+ Pos2D pos = Pos2D.get(playerEntity).toScreen();
+ cameras.iterator().next()
+ .worldPosOffsetsX(pos.x)
+ .worldPosOffsetsY(pos.y);
+ }
+ }
+
+}
diff --git a/design/src/design/screens/map/systems/MapDesignRenderingSystem.java b/design/src/design/screens/map/systems/MapDesignRenderingSystem.java
index 478aaebd..381f354c 100644
--- a/design/src/design/screens/map/systems/MapDesignRenderingSystem.java
+++ b/design/src/design/screens/map/systems/MapDesignRenderingSystem.java
@@ -7,37 +7,35 @@
import component.camera.Focused;
import component.position.WorldPos;
import game.systems.map.MapManager;
-import game.systems.render.BatchRenderingSystem;
import game.systems.render.world.RenderingSystem;
import game.systems.resources.MapSystem;
import game.utils.Colors;
import shared.model.map.Map;
import shared.model.map.Tile;
import shared.util.MapHelper;
+import game.systems.render.BatchSystem;
@Wire(injectInherited = true)
public class MapDesignRenderingSystem extends RenderingSystem {
private final MapHelper helper;
- ShapeRenderer sr = new ShapeRenderer();
+ ShapeRenderer shapeRenderer = new ShapeRenderer();
private int current;
private Map map;
private MapManager mapManager;
- private boolean showExit;
- private boolean showBlocks;
- private boolean showGrid;
- private BatchRenderingSystem batchRenderingSystem;
+ private boolean showExit, showBlocks, showGrid, showLayer1 = true, showLayer2= true, showLayer3=true, showLayer4= true;
+ private BatchSystem batchRenderingSystem;
public MapDesignRenderingSystem() {
super(Aspect.all(Focused.class, WorldPos.class));
helper = MapSystem.getHelper();
- sr.setColor(Colors.TRANSPARENT_RED);
- sr.setAutoShapeType(true);
+ shapeRenderer.setColor(Colors.TRANSPARENT_RED);
+ shapeRenderer.setAutoShapeType(true);
}
- public Map loadMap(int i) {
- map = helper.getMap(i);
- current = i;
+ public Map loadMap(int mapNumber) {
+ map = helper.getMap(mapNumber);
+ current = mapNumber;
return map;
}
@@ -45,7 +43,7 @@ public Map loadMap(int i) {
protected void begin() {
getCamera().update();
batchRenderingSystem.getBatch().setProjectionMatrix(getCamera().combined);
- sr.setProjectionMatrix(getCamera().combined);
+ shapeRenderer.setProjectionMatrix(getCamera().combined);
}
@Override
@@ -61,21 +59,33 @@ public int getCurrent() {
protected void process(E e) {
if (map != null) {
for (int i = 0; i < 4; i++) {
+ if (!showLayer1 && i == 0){
+ i++;
+ }
+ if (!showLayer2 && i == 1){
+ i++;
+ }
+ if (!showLayer3 && i == 2){
+ i++;
+ }
+ if (!showLayer4 && i == 3){
+ break;
+ }
batchRenderingSystem.getBatch().begin();
mapManager.drawLayer(map, world.getDelta(), i, showExit, showBlocks);
batchRenderingSystem.getBatch().end();
}
if (showGrid) {
- sr.begin();
+ shapeRenderer.begin();
float start = Tile.TILE_PIXEL_HEIGHT;
for (int i = 0; i < map.getHeight(); i++) {
// draw col
float x = (i + 1) * Tile.TILE_PIXEL_WIDTH;
- sr.line(x, start, x, map.getHeight() * Tile.TILE_PIXEL_HEIGHT);
+ shapeRenderer.line(x, start, x, map.getHeight() * Tile.TILE_PIXEL_HEIGHT);
// draw row
- sr.line(start, x, map.getWidth() * Tile.TILE_PIXEL_WIDTH, x);
+ shapeRenderer.line(start, x, map.getWidth() * Tile.TILE_PIXEL_WIDTH, x);
}
- sr.end();
+ shapeRenderer.end();
}
}
// draw tiles lines
@@ -96,4 +106,17 @@ public void toggleExits() {
public void toggleGrid() {
showGrid = !showGrid;
}
+
+ public void toggleLayer1(){
+ showLayer1 = !showLayer1;
+ }
+ public void toggleLayer2(){
+ showLayer2 = !showLayer2;
+ }
+ public void toggleLayer3(){
+ showLayer3 = !showLayer3;
+ }
+ public void toggleLayer4(){
+ showLayer4 = !showLayer4;
+ }
}
diff --git a/design/src/json/GraphicsToJson.java b/design/src/json/GraphicsToJson.java
index a152d4f0..f37af1df 100644
--- a/design/src/json/GraphicsToJson.java
+++ b/design/src/json/GraphicsToJson.java
@@ -20,6 +20,7 @@ public static void run(String output) {
HashMap spells = new HashMap<>();
final FileHandle file = Gdx.files.local(output + SharedResources.GRAPHICS_FOLDER + SharedResources.JSON_EXT);
SpellJson.load(spells, file);
+
// write
Json json = new SpellJson();
json.toJson(spells, HashMap.class, Spell.class, file);
diff --git a/design/src/launcher/DesignCenter.java b/design/src/launcher/DesignCenter.java
index 66823fe8..3df75a0e 100644
--- a/design/src/launcher/DesignCenter.java
+++ b/design/src/launcher/DesignCenter.java
@@ -23,7 +23,6 @@
import design.screens.ScreenManager;
import design.screens.views.View;
import game.AssetManagerHolder;
-import game.ClientConfiguration;
import game.handlers.AOAssetManager;
import game.handlers.DefaultAOAssetManager;
import game.screens.WorldScreen;
diff --git a/desktop/assets/data/descriptors/images.json b/desktop/assets/data/descriptors/images.json
index 55ac41c3..cdfa3530 100644
--- a/desktop/assets/data/descriptors/images.json
+++ b/desktop/assets/data/descriptors/images.json
@@ -1,156878 +1 @@
-[
- {
- "x": 128,
- "fileNum": 1,
- "id": 1,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 1,
- "id": 2,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 1,
- "id": 3,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 1,
- "id": 4,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11028,
- "id": 5,
- "width": 512,
- "height": 320
- },
- {
- "fileNum": 11030,
- "id": 6,
- "width": 512,
- "height": 192
- },
- {
- "fileNum": 11031,
- "id": 7,
- "width": 192,
- "height": 192
- },
- {
- "fileNum": 11032,
- "id": 8,
- "width": 192,
- "height": 192
- },
- {
- "fileNum": 14034,
- "id": 9,
- "width": 512,
- "height": 376
- },
- {
- "fileNum": 12050,
- "id": 10,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12050,
- "id": 11,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12050,
- "id": 12,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12050,
- "id": 13,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15157,
- "id": 14,
- "width": 100,
- "height": 84
- },
- {
- "fileNum": 15158,
- "id": 15,
- "width": 22,
- "height": 60
- },
- {
- "x": 22,
- "fileNum": 15158,
- "id": 16,
- "width": 22,
- "height": 60
- },
- {
- "x": 44,
- "fileNum": 15158,
- "id": 17,
- "width": 22,
- "height": 60
- },
- {
- "x": 66,
- "fileNum": 15158,
- "id": 18,
- "width": 22,
- "height": 60
- },
- {
- "x": 88,
- "fileNum": 15158,
- "id": 19,
- "width": 22,
- "height": 60
- },
- {
- "x": 110,
- "fileNum": 15158,
- "id": 20,
- "width": 22,
- "height": 60
- },
- {
- "x": 132,
- "fileNum": 15158,
- "id": 21,
- "width": 22,
- "height": 60
- },
- {
- "x": 154,
- "fileNum": 15158,
- "id": 22,
- "width": 22,
- "height": 60
- },
- {
- "x": 176,
- "fileNum": 15158,
- "id": 23,
- "width": 22,
- "height": 60
- },
- {
- "x": 198,
- "fileNum": 15158,
- "id": 24,
- "width": 22,
- "height": 60
- },
- {
- "fileNum": 15159,
- "id": 26,
- "width": 102,
- "height": 162
- },
- {
- "x": 102,
- "fileNum": 15159,
- "id": 27,
- "width": 102,
- "height": 162
- },
- {
- "x": 204,
- "fileNum": 15159,
- "id": 28,
- "width": 102,
- "height": 162
- },
- {
- "x": 306,
- "fileNum": 15159,
- "id": 29,
- "width": 102,
- "height": 162
- },
- {
- "fileNum": 15160,
- "id": 31,
- "width": 120,
- "height": 108
- },
- {
- "fileNum": 15161,
- "id": 32,
- "width": 80,
- "height": 60
- },
- {
- "fileNum": 14035,
- "id": 33,
- "width": 512,
- "height": 376
- },
- {
- "fileNum": 11034,
- "id": 34,
- "width": 512,
- "height": 320
- },
- {
- "fileNum": 11035,
- "id": 35,
- "width": 512,
- "height": 192
- },
- {
- "fileNum": 15162,
- "id": 36,
- "width": 70,
- "height": 64
- },
- {
- "fileNum": 15163,
- "id": 37,
- "width": 70,
- "height": 64
- },
- {
- "fileNum": 15164,
- "id": 38,
- "width": 70,
- "height": 70
- },
- {
- "x": 70,
- "fileNum": 15164,
- "id": 39,
- "width": 70,
- "height": 70
- },
- {
- "x": 140,
- "fileNum": 15164,
- "id": 40,
- "width": 70,
- "height": 70
- },
- {
- "x": 210,
- "fileNum": 15164,
- "id": 41,
- "width": 70,
- "height": 70
- },
- {
- "x": 280,
- "fileNum": 15164,
- "id": 42,
- "width": 70,
- "height": 70
- },
- {
- "x": 350,
- "fileNum": 15164,
- "id": 43,
- "width": 70,
- "height": 70
- },
- {
- "x": 420,
- "fileNum": 15164,
- "id": 44,
- "width": 70,
- "height": 70
- },
- {
- "x": 490,
- "fileNum": 15164,
- "id": 45,
- "width": 70,
- "height": 70
- },
- {
- "x": 560,
- "fileNum": 15164,
- "id": 46,
- "width": 70,
- "height": 70
- },
- {
- "x": 630,
- "fileNum": 15164,
- "id": 47,
- "width": 70,
- "height": 70
- },
- {
- "x": 700,
- "fileNum": 15164,
- "id": 48,
- "width": 70,
- "height": 70
- },
- {
- "fileNum": 15165,
- "id": 50,
- "width": 150,
- "height": 150
- },
- {
- "fileNum": 15166,
- "id": 51,
- "width": 70,
- "height": 60
- },
- {
- "fileNum": 15167,
- "id": 52,
- "width": 90,
- "height": 74
- },
- {
- "fileNum": 23005,
- "id": 53,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22052,
- "id": 54,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 18024,
- "id": 55,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15169,
- "id": 56,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 15169,
- "id": 57,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 15169,
- "id": 58,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "fileNum": 15169,
- "id": 59,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 4156,
- "id": 61,
- "width": 64,
- "height": 128
- },
- {
- "x": 58,
- "fileNum": 4156,
- "id": 62,
- "width": 64,
- "height": 128
- },
- {
- "x": 120,
- "fileNum": 4156,
- "id": 63,
- "width": 64,
- "height": 128
- },
- {
- "x": 180,
- "fileNum": 4156,
- "id": 64,
- "width": 64,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 4156,
- "id": 65,
- "width": 64,
- "height": 170
- },
- {
- "x": 58,
- "y": 128,
- "fileNum": 4156,
- "id": 66,
- "width": 64,
- "height": 170
- },
- {
- "x": 120,
- "y": 128,
- "fileNum": 4156,
- "id": 67,
- "width": 64,
- "height": 170
- },
- {
- "x": 180,
- "y": 128,
- "fileNum": 4156,
- "id": 68,
- "width": 64,
- "height": 170
- },
- {
- "y": 284,
- "fileNum": 4156,
- "id": 69,
- "width": 150,
- "height": 140
- },
- {
- "x": 150,
- "y": 284,
- "fileNum": 4156,
- "id": 70,
- "width": 150,
- "height": 140
- },
- {
- "x": 300,
- "y": 284,
- "fileNum": 4156,
- "id": 71,
- "width": 150,
- "height": 140
- },
- {
- "x": 450,
- "y": 284,
- "fileNum": 4156,
- "id": 72,
- "width": 150,
- "height": 140
- },
- {
- "y": 420,
- "fileNum": 4156,
- "id": 73,
- "width": 144,
- "height": 130
- },
- {
- "x": 144,
- "y": 420,
- "fileNum": 4156,
- "id": 74,
- "width": 144,
- "height": 130
- },
- {
- "x": 300,
- "y": 420,
- "fileNum": 4156,
- "id": 75,
- "width": 144,
- "height": 130
- },
- {
- "x": 454,
- "y": 420,
- "fileNum": 4156,
- "id": 76,
- "width": 144,
- "height": 130
- },
- {
- "fileNum": 18016,
- "id": 81,
- "width": 34,
- "height": 32
- },
- {
- "x": 34,
- "fileNum": 18016,
- "id": 82,
- "width": 34,
- "height": 32
- },
- {
- "x": 68,
- "fileNum": 18016,
- "id": 83,
- "width": 34,
- "height": 32
- },
- {
- "x": 102,
- "fileNum": 18016,
- "id": 84,
- "width": 34,
- "height": 32
- },
- {
- "x": 20,
- "fileNum": 4073,
- "id": 85,
- "width": 100,
- "height": 260
- },
- {
- "x": 200,
- "fileNum": 4073,
- "id": 86,
- "width": 100,
- "height": 260
- },
- {
- "x": 400,
- "fileNum": 4073,
- "id": 87,
- "width": 100,
- "height": 260
- },
- {
- "x": 600,
- "fileNum": 4073,
- "id": 88,
- "width": 100,
- "height": 260
- },
- {
- "x": 20,
- "y": 300,
- "fileNum": 4073,
- "id": 89,
- "width": 100,
- "height": 260
- },
- {
- "x": 200,
- "y": 300,
- "fileNum": 4073,
- "id": 90,
- "width": 100,
- "height": 260
- },
- {
- "x": 400,
- "y": 300,
- "fileNum": 4073,
- "id": 91,
- "width": 100,
- "height": 260
- },
- {
- "x": 600,
- "y": 300,
- "fileNum": 4073,
- "id": 92,
- "width": 100,
- "height": 260
- },
- {
- "fileNum": 15006,
- "id": 94,
- "width": 140,
- "height": 70
- },
- {
- "fileNum": 9000,
- "id": 95,
- "width": 256,
- "height": 198
- },
- {
- "x": 2,
- "fileNum": 15001,
- "id": 96,
- "width": 168,
- "height": 186
- },
- {
- "x": 170,
- "fileNum": 15001,
- "id": 97,
- "width": 168,
- "height": 186
- },
- {
- "x": 338,
- "fileNum": 15001,
- "id": 98,
- "width": 168,
- "height": 186
- },
- {
- "fileNum": 3051,
- "id": 100,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3052,
- "id": 101,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3053,
- "id": 102,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3054,
- "id": 103,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3055,
- "id": 104,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3056,
- "id": 105,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3057,
- "id": 106,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3058,
- "id": 107,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3059,
- "id": 108,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3060,
- "id": 109,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3061,
- "id": 110,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3062,
- "id": 111,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3063,
- "id": 112,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3064,
- "id": 113,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3066,
- "id": 114,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3067,
- "id": 116,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 3067,
- "id": 117,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 3067,
- "id": 118,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 3068,
- "id": 120,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 3068,
- "id": 121,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 3068,
- "id": 122,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 3069,
- "id": 124,
- "width": 60,
- "height": 80
- },
- {
- "x": 60,
- "fileNum": 3069,
- "id": 125,
- "width": 60,
- "height": 80
- },
- {
- "x": 120,
- "fileNum": 3069,
- "id": 126,
- "width": 60,
- "height": 80
- },
- {
- "x": 180,
- "fileNum": 3069,
- "id": 127,
- "width": 60,
- "height": 80
- },
- {
- "x": 240,
- "fileNum": 3069,
- "id": 128,
- "width": 60,
- "height": 80
- },
- {
- "y": 80,
- "fileNum": 3069,
- "id": 129,
- "width": 60,
- "height": 80
- },
- {
- "x": 60,
- "y": 80,
- "fileNum": 3069,
- "id": 130,
- "width": 60,
- "height": 80
- },
- {
- "x": 120,
- "y": 80,
- "fileNum": 3069,
- "id": 131,
- "width": 60,
- "height": 80
- },
- {
- "x": 180,
- "y": 80,
- "fileNum": 3069,
- "id": 132,
- "width": 60,
- "height": 80
- },
- {
- "x": 240,
- "y": 80,
- "fileNum": 3069,
- "id": 133,
- "width": 60,
- "height": 80
- },
- {
- "fileNum": 3070,
- "id": 135,
- "width": 80,
- "height": 170
- },
- {
- "x": 80,
- "fileNum": 3070,
- "id": 136,
- "width": 80,
- "height": 170
- },
- {
- "x": 160,
- "fileNum": 3070,
- "id": 137,
- "width": 80,
- "height": 170
- },
- {
- "x": 240,
- "fileNum": 3070,
- "id": 138,
- "width": 80,
- "height": 170
- },
- {
- "x": 320,
- "fileNum": 3070,
- "id": 139,
- "width": 80,
- "height": 170
- },
- {
- "y": 170,
- "fileNum": 3070,
- "id": 140,
- "width": 80,
- "height": 170
- },
- {
- "x": 80,
- "y": 170,
- "fileNum": 3070,
- "id": 141,
- "width": 80,
- "height": 170
- },
- {
- "x": 160,
- "y": 170,
- "fileNum": 3070,
- "id": 142,
- "width": 80,
- "height": 170
- },
- {
- "x": 240,
- "y": 170,
- "fileNum": 3070,
- "id": 143,
- "width": 80,
- "height": 170
- },
- {
- "x": 320,
- "y": 170,
- "fileNum": 3070,
- "id": 144,
- "width": 80,
- "height": 170
- },
- {
- "fileNum": 3071,
- "id": 146,
- "width": 160,
- "height": 340
- },
- {
- "x": 160,
- "fileNum": 3071,
- "id": 147,
- "width": 160,
- "height": 340
- },
- {
- "x": 320,
- "fileNum": 3071,
- "id": 148,
- "width": 160,
- "height": 340
- },
- {
- "x": 480,
- "fileNum": 3071,
- "id": 149,
- "width": 160,
- "height": 340
- },
- {
- "x": 640,
- "fileNum": 3071,
- "id": 150,
- "width": 160,
- "height": 340
- },
- {
- "y": 340,
- "fileNum": 3071,
- "id": 151,
- "width": 160,
- "height": 340
- },
- {
- "x": 160,
- "y": 340,
- "fileNum": 3071,
- "id": 152,
- "width": 160,
- "height": 340
- },
- {
- "x": 320,
- "y": 340,
- "fileNum": 3071,
- "id": 153,
- "width": 160,
- "height": 340
- },
- {
- "x": 480,
- "y": 340,
- "fileNum": 3071,
- "id": 154,
- "width": 160,
- "height": 340
- },
- {
- "x": 640,
- "y": 340,
- "fileNum": 3071,
- "id": 155,
- "width": 160,
- "height": 340
- },
- {
- "fileNum": 3036,
- "id": 157,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3037,
- "id": 158,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3038,
- "id": 159,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3039,
- "id": 160,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3040,
- "id": 161,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3041,
- "id": 162,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3042,
- "id": 163,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3043,
- "id": 164,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3044,
- "id": 165,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3045,
- "id": 166,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3046,
- "id": 167,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3047,
- "id": 168,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3048,
- "id": 169,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3049,
- "id": 170,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3050,
- "id": 171,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3089,
- "id": 173,
- "width": 192,
- "height": 256
- },
- {
- "x": 192,
- "fileNum": 3089,
- "id": 174,
- "width": 192,
- "height": 256
- },
- {
- "x": 384,
- "fileNum": 3089,
- "id": 175,
- "width": 192,
- "height": 256
- },
- {
- "x": 576,
- "fileNum": 3089,
- "id": 176,
- "width": 192,
- "height": 256
- },
- {
- "x": 768,
- "fileNum": 3089,
- "id": 177,
- "width": 192,
- "height": 256
- },
- {
- "y": 256,
- "fileNum": 3089,
- "id": 178,
- "width": 192,
- "height": 256
- },
- {
- "x": 192,
- "y": 256,
- "fileNum": 3089,
- "id": 179,
- "width": 192,
- "height": 256
- },
- {
- "x": 384,
- "y": 256,
- "fileNum": 3089,
- "id": 180,
- "width": 192,
- "height": 256
- },
- {
- "x": 576,
- "y": 256,
- "fileNum": 3089,
- "id": 181,
- "width": 192,
- "height": 256
- },
- {
- "x": 768,
- "y": 256,
- "fileNum": 3089,
- "id": 182,
- "width": 192,
- "height": 256
- },
- {
- "fileNum": 3090,
- "id": 184,
- "width": 192,
- "height": 192
- },
- {
- "x": 192,
- "fileNum": 3090,
- "id": 185,
- "width": 192,
- "height": 192
- },
- {
- "x": 384,
- "fileNum": 3090,
- "id": 186,
- "width": 192,
- "height": 192
- },
- {
- "x": 576,
- "fileNum": 3090,
- "id": 187,
- "width": 192,
- "height": 192
- },
- {
- "x": 768,
- "fileNum": 3090,
- "id": 188,
- "width": 192,
- "height": 192
- },
- {
- "y": 192,
- "fileNum": 3090,
- "id": 189,
- "width": 192,
- "height": 192
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 3090,
- "id": 190,
- "width": 192,
- "height": 192
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 3090,
- "id": 191,
- "width": 192,
- "height": 192
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 3090,
- "id": 192,
- "width": 192,
- "height": 192
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 3090,
- "id": 193,
- "width": 192,
- "height": 192
- },
- {
- "fileNum": 3091,
- "id": 195,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 3091,
- "id": 196,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 3091,
- "id": 197,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "fileNum": 3091,
- "id": 198,
- "width": 128,
- "height": 128
- },
- {
- "x": 512,
- "fileNum": 3091,
- "id": 199,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 3091,
- "id": 200,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 3091,
- "id": 201,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 3091,
- "id": 202,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 3091,
- "id": 203,
- "width": 128,
- "height": 128
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 3091,
- "id": 204,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 3021,
- "id": 206,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3022,
- "id": 207,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3023,
- "id": 208,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3024,
- "id": 209,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3025,
- "id": 210,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3026,
- "id": 211,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3027,
- "id": 212,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3028,
- "id": 213,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3029,
- "id": 214,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3030,
- "id": 215,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3031,
- "id": 216,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3032,
- "id": 217,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3033,
- "id": 218,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3034,
- "id": 219,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3035,
- "id": 220,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3095,
- "id": 222,
- "width": 256,
- "height": 256
- },
- {
- "x": 256,
- "fileNum": 3095,
- "id": 223,
- "width": 256,
- "height": 256
- },
- {
- "x": 512,
- "fileNum": 3095,
- "id": 224,
- "width": 256,
- "height": 256
- },
- {
- "x": 768,
- "fileNum": 3095,
- "id": 225,
- "width": 256,
- "height": 256
- },
- {
- "y": 256,
- "fileNum": 3095,
- "id": 226,
- "width": 256,
- "height": 256
- },
- {
- "x": 256,
- "y": 256,
- "fileNum": 3095,
- "id": 227,
- "width": 256,
- "height": 256
- },
- {
- "x": 512,
- "y": 256,
- "fileNum": 3095,
- "id": 228,
- "width": 256,
- "height": 256
- },
- {
- "x": 768,
- "y": 256,
- "fileNum": 3095,
- "id": 229,
- "width": 256,
- "height": 256
- },
- {
- "y": 512,
- "fileNum": 3095,
- "id": 230,
- "width": 256,
- "height": 256
- },
- {
- "x": 256,
- "y": 512,
- "fileNum": 3095,
- "id": 231,
- "width": 256,
- "height": 256
- },
- {
- "x": 512,
- "y": 512,
- "fileNum": 3095,
- "id": 232,
- "width": 256,
- "height": 256
- },
- {
- "x": 768,
- "y": 512,
- "fileNum": 3095,
- "id": 233,
- "width": 256,
- "height": 256
- },
- {
- "y": 768,
- "fileNum": 3095,
- "id": 234,
- "width": 256,
- "height": 256
- },
- {
- "x": 256,
- "y": 768,
- "fileNum": 3095,
- "id": 235,
- "width": 256,
- "height": 256
- },
- {
- "x": 512,
- "y": 768,
- "fileNum": 3095,
- "id": 236,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3000,
- "id": 238,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3001,
- "id": 239,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3002,
- "id": 240,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3003,
- "id": 241,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3004,
- "id": 242,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3005,
- "id": 243,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3006,
- "id": 244,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3007,
- "id": 245,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3008,
- "id": 246,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3009,
- "id": 247,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3010,
- "id": 248,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3011,
- "id": 249,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3012,
- "id": 250,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3013,
- "id": 251,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3014,
- "id": 252,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3015,
- "id": 253,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3016,
- "id": 254,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3017,
- "id": 255,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3018,
- "id": 256,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3019,
- "id": 257,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3020,
- "id": 258,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 3101,
- "id": 260,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 3102,
- "id": 261,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 3103,
- "id": 262,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 3104,
- "id": 263,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 3105,
- "id": 264,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 3106,
- "id": 266,
- "width": 30,
- "height": 30
- },
- {
- "x": 30,
- "fileNum": 3106,
- "id": 267,
- "width": 30,
- "height": 30
- },
- {
- "x": 60,
- "fileNum": 3106,
- "id": 268,
- "width": 30,
- "height": 30
- },
- {
- "x": 90,
- "fileNum": 3106,
- "id": 269,
- "width": 30,
- "height": 30
- },
- {
- "x": 120,
- "fileNum": 3106,
- "id": 270,
- "width": 30,
- "height": 30
- },
- {
- "x": 150,
- "fileNum": 3106,
- "id": 271,
- "width": 30,
- "height": 30
- },
- {
- "x": 180,
- "fileNum": 3106,
- "id": 272,
- "width": 30,
- "height": 30
- },
- {
- "x": 210,
- "fileNum": 3106,
- "id": 273,
- "width": 30,
- "height": 30
- },
- {
- "fileNum": 15002,
- "id": 274,
- "width": 256,
- "height": 64
- },
- {
- "fileNum": 3094,
- "id": 276,
- "width": 320,
- "height": 340
- },
- {
- "x": 320,
- "fileNum": 3094,
- "id": 277,
- "width": 320,
- "height": 340
- },
- {
- "x": 640,
- "fileNum": 3094,
- "id": 278,
- "width": 320,
- "height": 340
- },
- {
- "x": 960,
- "fileNum": 3094,
- "id": 279,
- "width": 320,
- "height": 340
- },
- {
- "x": 1280,
- "fileNum": 3094,
- "id": 280,
- "width": 320,
- "height": 340
- },
- {
- "y": 340,
- "fileNum": 3094,
- "id": 281,
- "width": 320,
- "height": 340
- },
- {
- "x": 320,
- "y": 340,
- "fileNum": 3094,
- "id": 282,
- "width": 320,
- "height": 340
- },
- {
- "x": 640,
- "y": 340,
- "fileNum": 3094,
- "id": 283,
- "width": 320,
- "height": 340
- },
- {
- "x": 960,
- "y": 340,
- "fileNum": 3094,
- "id": 284,
- "width": 320,
- "height": 340
- },
- {
- "x": 1280,
- "y": 340,
- "fileNum": 3094,
- "id": 285,
- "width": 320,
- "height": 340
- },
- {
- "fileNum": 4074,
- "id": 287,
- "width": 160,
- "height": 340
- },
- {
- "x": 160,
- "fileNum": 4074,
- "id": 288,
- "width": 160,
- "height": 340
- },
- {
- "x": 320,
- "fileNum": 4074,
- "id": 289,
- "width": 160,
- "height": 340
- },
- {
- "x": 480,
- "fileNum": 4074,
- "id": 290,
- "width": 160,
- "height": 340
- },
- {
- "x": 640,
- "fileNum": 4074,
- "id": 291,
- "width": 160,
- "height": 340
- },
- {
- "y": 340,
- "fileNum": 4074,
- "id": 292,
- "width": 160,
- "height": 340
- },
- {
- "x": 160,
- "y": 340,
- "fileNum": 4074,
- "id": 293,
- "width": 160,
- "height": 340
- },
- {
- "x": 320,
- "y": 340,
- "fileNum": 4074,
- "id": 294,
- "width": 160,
- "height": 340
- },
- {
- "x": 480,
- "y": 340,
- "fileNum": 4074,
- "id": 295,
- "width": 160,
- "height": 340
- },
- {
- "x": 640,
- "y": 340,
- "fileNum": 4074,
- "id": 296,
- "width": 160,
- "height": 340
- },
- {
- "fileNum": 4075,
- "id": 298,
- "width": 160,
- "height": 340
- },
- {
- "x": 160,
- "fileNum": 4075,
- "id": 299,
- "width": 160,
- "height": 340
- },
- {
- "x": 320,
- "fileNum": 4075,
- "id": 300,
- "width": 160,
- "height": 340
- },
- {
- "x": 480,
- "fileNum": 4075,
- "id": 301,
- "width": 160,
- "height": 340
- },
- {
- "x": 640,
- "fileNum": 4075,
- "id": 302,
- "width": 160,
- "height": 340
- },
- {
- "y": 340,
- "fileNum": 4075,
- "id": 303,
- "width": 160,
- "height": 340
- },
- {
- "x": 160,
- "y": 340,
- "fileNum": 4075,
- "id": 304,
- "width": 160,
- "height": 340
- },
- {
- "x": 320,
- "y": 340,
- "fileNum": 4075,
- "id": 305,
- "width": 160,
- "height": 340
- },
- {
- "x": 480,
- "y": 340,
- "fileNum": 4075,
- "id": 306,
- "width": 160,
- "height": 340
- },
- {
- "x": 640,
- "y": 340,
- "fileNum": 4075,
- "id": 307,
- "width": 160,
- "height": 340
- },
- {
- "x": 18,
- "fileNum": 15003,
- "id": 309,
- "width": 90,
- "height": 128
- },
- {
- "fileNum": 15004,
- "id": 310,
- "width": 64,
- "height": 64
- },
- {
- "x": 10,
- "y": 22,
- "fileNum": 15005,
- "id": 311,
- "width": 64,
- "height": 64
- },
- {
- "x": 16,
- "y": 16,
- "fileNum": 15007,
- "id": 312,
- "width": 50,
- "height": 90
- },
- {
- "y": 12,
- "fileNum": 15011,
- "id": 313,
- "width": 160,
- "height": 78
- },
- {
- "x": 2,
- "fileNum": 15013,
- "id": 314,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15143,
- "id": 315,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15144,
- "id": 316,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15146,
- "id": 317,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15147,
- "id": 318,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15148,
- "id": 319,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15149,
- "id": 320,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15150,
- "id": 321,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15151,
- "id": 322,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15152,
- "id": 323,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12039,
- "id": 324,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12039,
- "id": 325,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12039,
- "id": 326,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12039,
- "id": 327,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12039,
- "id": 328,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12039,
- "id": 329,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12039,
- "id": 330,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12039,
- "id": 331,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12039,
- "id": 332,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12039,
- "id": 333,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12039,
- "id": 334,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12039,
- "id": 335,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12039,
- "id": 336,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12039,
- "id": 337,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12039,
- "id": 338,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12039,
- "id": 339,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12039,
- "id": 340,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12039,
- "id": 341,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12039,
- "id": 342,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12039,
- "id": 343,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12039,
- "id": 344,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12039,
- "id": 345,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12039,
- "id": 346,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12039,
- "id": 347,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12039,
- "id": 348,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12039,
- "id": 349,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12039,
- "id": 350,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12039,
- "id": 351,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12039,
- "id": 352,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12039,
- "id": 353,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12039,
- "id": 354,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12039,
- "id": 355,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12039,
- "id": 356,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12039,
- "id": 357,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12039,
- "id": 358,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12039,
- "id": 359,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12039,
- "id": 360,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12039,
- "id": 361,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12039,
- "id": 362,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12039,
- "id": 363,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12039,
- "id": 364,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12039,
- "id": 365,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12039,
- "id": 366,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12039,
- "id": 367,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12039,
- "id": 368,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12039,
- "id": 369,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12039,
- "id": 370,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12039,
- "id": 371,
- "width": 64,
- "height": 64
- },
- {
- "y": 256,
- "fileNum": 12039,
- "id": 372,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 256,
- "fileNum": 12039,
- "id": 373,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 256,
- "fileNum": 12039,
- "id": 374,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 256,
- "fileNum": 12039,
- "id": 375,
- "width": 64,
- "height": 64
- },
- {
- "y": 320,
- "fileNum": 12039,
- "id": 376,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 320,
- "fileNum": 12039,
- "id": 377,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 320,
- "fileNum": 12039,
- "id": 378,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 320,
- "fileNum": 12039,
- "id": 379,
- "width": 64,
- "height": 64
- },
- {
- "y": 384,
- "fileNum": 12039,
- "id": 380,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 384,
- "fileNum": 12039,
- "id": 381,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 384,
- "fileNum": 12039,
- "id": 382,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 384,
- "fileNum": 12039,
- "id": 383,
- "width": 64,
- "height": 64
- },
- {
- "y": 448,
- "fileNum": 12039,
- "id": 384,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 448,
- "fileNum": 12039,
- "id": 385,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 448,
- "fileNum": 12039,
- "id": 386,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 448,
- "fileNum": 12039,
- "id": 387,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22008,
- "id": 388,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8173,
- "id": 389,
- "width": 110,
- "height": 100
- },
- {
- "x": 90,
- "fileNum": 8173,
- "id": 390,
- "width": 110,
- "height": 100
- },
- {
- "x": 180,
- "fileNum": 8173,
- "id": 391,
- "width": 110,
- "height": 100
- },
- {
- "x": 310,
- "fileNum": 8173,
- "id": 392,
- "width": 100,
- "height": 100
- },
- {
- "x": 440,
- "fileNum": 8173,
- "id": 393,
- "width": 100,
- "height": 100
- },
- {
- "x": 550,
- "fileNum": 8173,
- "id": 394,
- "width": 100,
- "height": 100
- },
- {
- "x": 650,
- "fileNum": 8173,
- "id": 395,
- "width": 100,
- "height": 100
- },
- {
- "x": 750,
- "fileNum": 8173,
- "id": 396,
- "width": 100,
- "height": 100
- },
- {
- "x": 870,
- "fileNum": 8173,
- "id": 397,
- "width": 100,
- "height": 100
- },
- {
- "x": 990,
- "fileNum": 8173,
- "id": 398,
- "width": 100,
- "height": 100
- },
- {
- "fileNum": 18018,
- "id": 399,
- "width": 34,
- "height": 32
- },
- {
- "x": 34,
- "fileNum": 18018,
- "id": 400,
- "width": 34,
- "height": 32
- },
- {
- "x": 68,
- "fileNum": 18018,
- "id": 401,
- "width": 34,
- "height": 32
- },
- {
- "x": 102,
- "fileNum": 18018,
- "id": 402,
- "width": 34,
- "height": 32
- },
- {
- "fileNum": 22026,
- "id": 403,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15199,
- "id": 404,
- "width": 64,
- "height": 64
- },
- {
- "y": 152,
- "fileNum": 3082,
- "id": 405,
- "width": 168,
- "height": 152
- },
- {
- "x": 168,
- "y": 152,
- "fileNum": 3082,
- "id": 406,
- "width": 168,
- "height": 152
- },
- {
- "x": 336,
- "y": 152,
- "fileNum": 3082,
- "id": 407,
- "width": 168,
- "height": 152
- },
- {
- "x": 504,
- "y": 152,
- "fileNum": 3082,
- "id": 408,
- "width": 168,
- "height": 152
- },
- {
- "x": 672,
- "y": 152,
- "fileNum": 3082,
- "id": 409,
- "width": 168,
- "height": 152
- },
- {
- "x": 840,
- "y": 152,
- "fileNum": 3082,
- "id": 410,
- "width": 168,
- "height": 152
- },
- {
- "x": 1008,
- "y": 152,
- "fileNum": 3082,
- "id": 411,
- "width": 168,
- "height": 152
- },
- {
- "y": 304,
- "fileNum": 3082,
- "id": 412,
- "width": 168,
- "height": 152
- },
- {
- "x": 168,
- "y": 304,
- "fileNum": 3082,
- "id": 413,
- "width": 168,
- "height": 152
- },
- {
- "x": 336,
- "y": 304,
- "fileNum": 3082,
- "id": 414,
- "width": 168,
- "height": 152
- },
- {
- "x": 504,
- "y": 304,
- "fileNum": 3082,
- "id": 415,
- "width": 168,
- "height": 152
- },
- {
- "x": 672,
- "y": 304,
- "fileNum": 3082,
- "id": 416,
- "width": 168,
- "height": 152
- },
- {
- "x": 840,
- "y": 304,
- "fileNum": 3082,
- "id": 417,
- "width": 168,
- "height": 152
- },
- {
- "y": 456,
- "fileNum": 3082,
- "id": 418,
- "width": 168,
- "height": 152
- },
- {
- "x": 168,
- "y": 456,
- "fileNum": 3082,
- "id": 419,
- "width": 168,
- "height": 152
- },
- {
- "fileNum": 12048,
- "id": 422,
- "width": 352,
- "height": 416
- },
- {
- "x": 352,
- "fileNum": 12048,
- "id": 423,
- "width": 352,
- "height": 416
- },
- {
- "y": 416,
- "fileNum": 12048,
- "id": 424,
- "width": 352,
- "height": 416
- },
- {
- "x": 352,
- "y": 416,
- "fileNum": 12048,
- "id": 425,
- "width": 352,
- "height": 416
- },
- {
- "fileNum": 9006,
- "id": 426,
- "width": 256,
- "height": 512
- },
- {
- "fileNum": 14029,
- "id": 427,
- "width": 640,
- "height": 568
- },
- {
- "fileNum": 15122,
- "id": 428,
- "width": 718,
- "height": 1008
- },
- {
- "fileNum": 15106,
- "id": 429,
- "width": 140,
- "height": 84
- },
- {
- "fileNum": 15107,
- "id": 430,
- "width": 106,
- "height": 98
- },
- {
- "fileNum": 15108,
- "id": 431,
- "width": 90,
- "height": 58
- },
- {
- "x": 80,
- "fileNum": 15108,
- "id": 432,
- "width": 62,
- "height": 116
- },
- {
- "y": 58,
- "fileNum": 15108,
- "id": 433,
- "width": 90,
- "height": 58
- },
- {
- "x": 80,
- "y": 58,
- "fileNum": 15108,
- "id": 434,
- "width": 62,
- "height": 58
- },
- {
- "fileNum": 15109,
- "id": 435,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 15110,
- "id": 436,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 15111,
- "id": 437,
- "width": 40,
- "height": 68
- },
- {
- "fileNum": 11014,
- "id": 438,
- "width": 512,
- "height": 192
- },
- {
- "fileNum": 11015,
- "id": 439,
- "width": 512,
- "height": 320
- },
- {
- "fileNum": 12020,
- "id": 440,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12020,
- "id": 441,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12020,
- "id": 442,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12020,
- "id": 443,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 14007,
- "id": 444,
- "width": 512,
- "height": 392
- },
- {
- "x": 90,
- "fileNum": 15105,
- "id": 445,
- "width": 160,
- "height": 96
- },
- {
- "y": 96,
- "fileNum": 15105,
- "id": 446,
- "width": 160,
- "height": 96
- },
- {
- "x": 160,
- "y": 96,
- "fileNum": 15105,
- "id": 447,
- "width": 160,
- "height": 96
- },
- {
- "fileNum": 4067,
- "id": 448,
- "width": 52,
- "height": 64
- },
- {
- "x": 52,
- "fileNum": 4067,
- "id": 449,
- "width": 52,
- "height": 64
- },
- {
- "x": 104,
- "fileNum": 4067,
- "id": 450,
- "width": 52,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 4067,
- "id": 451,
- "width": 52,
- "height": 64
- },
- {
- "x": 52,
- "y": 64,
- "fileNum": 4067,
- "id": 452,
- "width": 52,
- "height": 64
- },
- {
- "x": 104,
- "y": 64,
- "fileNum": 4067,
- "id": 453,
- "width": 52,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 4067,
- "id": 454,
- "width": 52,
- "height": 64
- },
- {
- "x": 52,
- "y": 128,
- "fileNum": 4067,
- "id": 455,
- "width": 52,
- "height": 64
- },
- {
- "x": 104,
- "y": 128,
- "fileNum": 4067,
- "id": 456,
- "width": 52,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 4067,
- "id": 457,
- "width": 52,
- "height": 64
- },
- {
- "x": 52,
- "y": 192,
- "fileNum": 4067,
- "id": 458,
- "width": 52,
- "height": 64
- },
- {
- "x": 104,
- "y": 192,
- "fileNum": 4067,
- "id": 459,
- "width": 52,
- "height": 64
- },
- {
- "fileNum": 12042,
- "id": 464,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 499,
- "id": 465,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 10010,
- "id": 466,
- "width": 64,
- "height": 140
- },
- {
- "fileNum": 18017,
- "id": 467,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 4122,
- "id": 468,
- "width": 64,
- "height": 134
- },
- {
- "x": 64,
- "fileNum": 4122,
- "id": 469,
- "width": 64,
- "height": 134
- },
- {
- "x": 128,
- "fileNum": 4122,
- "id": 470,
- "width": 64,
- "height": 134
- },
- {
- "x": 192,
- "fileNum": 4122,
- "id": 471,
- "width": 64,
- "height": 134
- },
- {
- "x": 256,
- "fileNum": 4122,
- "id": 472,
- "width": 64,
- "height": 134
- },
- {
- "fileNum": 4123,
- "id": 473,
- "width": 64,
- "height": 110
- },
- {
- "x": 64,
- "fileNum": 4123,
- "id": 474,
- "width": 64,
- "height": 110
- },
- {
- "x": 128,
- "fileNum": 4123,
- "id": 475,
- "width": 64,
- "height": 110
- },
- {
- "x": 192,
- "fileNum": 4123,
- "id": 476,
- "width": 64,
- "height": 110
- },
- {
- "x": 256,
- "fileNum": 4123,
- "id": 477,
- "width": 64,
- "height": 110
- },
- {
- "fileNum": 4124,
- "id": 478,
- "width": 166,
- "height": 90
- },
- {
- "x": 166,
- "fileNum": 4124,
- "id": 479,
- "width": 166,
- "height": 90
- },
- {
- "x": 332,
- "fileNum": 4124,
- "id": 480,
- "width": 166,
- "height": 90
- },
- {
- "x": 498,
- "fileNum": 4124,
- "id": 481,
- "width": 166,
- "height": 90
- },
- {
- "x": 664,
- "fileNum": 4124,
- "id": 482,
- "width": 166,
- "height": 90
- },
- {
- "fileNum": 4125,
- "id": 483,
- "width": 166,
- "height": 90
- },
- {
- "x": 166,
- "fileNum": 4125,
- "id": 484,
- "width": 166,
- "height": 90
- },
- {
- "x": 332,
- "fileNum": 4125,
- "id": 485,
- "width": 166,
- "height": 90
- },
- {
- "x": 498,
- "fileNum": 4125,
- "id": 486,
- "width": 166,
- "height": 90
- },
- {
- "x": 664,
- "fileNum": 4125,
- "id": 487,
- "width": 166,
- "height": 90
- },
- {
- "x": 6,
- "fileNum": 15010,
- "id": 492,
- "width": 76,
- "height": 74
- },
- {
- "x": 8,
- "y": 20,
- "fileNum": 15012,
- "id": 493,
- "width": 84,
- "height": 70
- },
- {
- "fileNum": 15014,
- "id": 494,
- "width": 64,
- "height": 64
- },
- {
- "y": 20,
- "fileNum": 15016,
- "id": 495,
- "width": 80,
- "height": 60
- },
- {
- "fileNum": 15015,
- "id": 496,
- "width": 64,
- "height": 80
- },
- {
- "fileNum": 15017,
- "id": 497,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15019,
- "id": 498,
- "width": 64,
- "height": 64
- },
- {
- "x": 10,
- "y": 44,
- "fileNum": 15021,
- "id": 499,
- "width": 200,
- "height": 120
- },
- {
- "fileNum": 7006,
- "id": 500,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7007,
- "id": 501,
- "width": 638,
- "height": 478
- },
- {
- "fileNum": 15134,
- "id": 502,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15135,
- "id": 503,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16036,
- "id": 504,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16037,
- "id": 505,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19006,
- "id": 506,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15028,
- "id": 507,
- "width": 40,
- "height": 100
- },
- {
- "fileNum": 16038,
- "id": 508,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22009,
- "id": 509,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16039,
- "id": 510,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22010,
- "id": 511,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 7008,
- "id": 512,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 15137,
- "id": 513,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15138,
- "id": 514,
- "width": 628,
- "height": 468
- },
- {
- "fileNum": 19007,
- "id": 515,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19008,
- "id": 516,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19009,
- "id": 517,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19010,
- "id": 518,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19011,
- "id": 519,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19012,
- "id": 520,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19013,
- "id": 521,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19014,
- "id": 522,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19015,
- "id": 523,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15141,
- "id": 524,
- "width": 128,
- "height": 208
- },
- {
- "fileNum": 22011,
- "id": 525,
- "width": 84,
- "height": 98
- },
- {
- "fileNum": 163,
- "id": 526,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 164,
- "id": 527,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 165,
- "id": 528,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 7010,
- "id": 529,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7011,
- "id": 530,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7009,
- "id": 531,
- "width": 320,
- "height": 256
- },
- {
- "fileNum": 15018,
- "id": 532,
- "width": 90,
- "height": 60
- },
- {
- "fileNum": 15020,
- "id": 533,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15022,
- "id": 534,
- "width": 68,
- "height": 130
- },
- {
- "fileNum": 166,
- "id": 535,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19016,
- "id": 536,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19017,
- "id": 537,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22012,
- "id": 538,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22013,
- "id": 539,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 23000,
- "id": 540,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 23001,
- "id": 541,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 23002,
- "id": 542,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 23003,
- "id": 543,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 270,
- "id": 544,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 7013,
- "id": 545,
- "width": 320,
- "height": 256
- },
- {
- "fileNum": 7002,
- "id": 546,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7003,
- "id": 547,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7004,
- "id": 548,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7005,
- "id": 549,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 22014,
- "id": 550,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 7014,
- "id": 551,
- "width": 126,
- "height": 64
- },
- {
- "fileNum": 7015,
- "id": 552,
- "width": 126,
- "height": 64
- },
- {
- "fileNum": 7016,
- "id": 553,
- "width": 126,
- "height": 64
- },
- {
- "fileNum": 271,
- "id": 554,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 7017,
- "id": 555,
- "width": 126,
- "height": 64
- },
- {
- "fileNum": 7018,
- "id": 556,
- "width": 126,
- "height": 64
- },
- {
- "fileNum": 20011,
- "id": 557,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 18020,
- "id": 558,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 18021,
- "id": 559,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 20012,
- "id": 560,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16040,
- "id": 561,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16041,
- "id": 562,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16042,
- "id": 563,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16043,
- "id": 564,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16044,
- "id": 565,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16045,
- "id": 566,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 7019,
- "id": 567,
- "width": 126,
- "height": 64
- },
- {
- "fileNum": 7020,
- "id": 568,
- "width": 126,
- "height": 64
- },
- {
- "fileNum": 7021,
- "id": 569,
- "width": 126,
- "height": 64
- },
- {
- "fileNum": 7022,
- "id": 570,
- "width": 126,
- "height": 64
- },
- {
- "fileNum": 272,
- "id": 571,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22015,
- "id": 572,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19018,
- "id": 573,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 21004,
- "id": 574,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22016,
- "id": 575,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22017,
- "id": 576,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22018,
- "id": 577,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22019,
- "id": 578,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22020,
- "id": 579,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22021,
- "id": 580,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19019,
- "id": 581,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22022,
- "id": 582,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16046,
- "id": 583,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19020,
- "id": 584,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19021,
- "id": 585,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22023,
- "id": 586,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22024,
- "id": 587,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16047,
- "id": 588,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15024,
- "id": 589,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16048,
- "id": 590,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19022,
- "id": 591,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15170,
- "id": 592,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22027,
- "id": 593,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15171,
- "id": 594,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15172,
- "id": 595,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15173,
- "id": 596,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15174,
- "id": 597,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22028,
- "id": 598,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22029,
- "id": 599,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15175,
- "id": 600,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 23004,
- "id": 601,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 273,
- "id": 602,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 21005,
- "id": 603,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22030,
- "id": 604,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 274,
- "id": 605,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 275,
- "id": 606,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 21006,
- "id": 607,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 21007,
- "id": 608,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22031,
- "id": 609,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 7023,
- "id": 610,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7024,
- "id": 611,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7025,
- "id": 612,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7026,
- "id": 613,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7027,
- "id": 614,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7028,
- "id": 615,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7029,
- "id": 616,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7030,
- "id": 617,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7031,
- "id": 618,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7032,
- "id": 619,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7033,
- "id": 620,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7034,
- "id": 621,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7035,
- "id": 622,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7036,
- "id": 623,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7037,
- "id": 624,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 7038,
- "id": 625,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 7039,
- "id": 626,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 7040,
- "id": 627,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 7041,
- "id": 628,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 15176,
- "id": 629,
- "width": 128,
- "height": 256
- },
- {
- "fileNum": 15177,
- "id": 630,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 22032,
- "id": 631,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22033,
- "id": 632,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15178,
- "id": 633,
- "width": 512,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 15178,
- "id": 634,
- "width": 512,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 15178,
- "id": 635,
- "width": 512,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 15178,
- "id": 636,
- "width": 512,
- "height": 64
- },
- {
- "y": 256,
- "fileNum": 15178,
- "id": 637,
- "width": 512,
- "height": 64
- },
- {
- "y": 320,
- "fileNum": 15178,
- "id": 638,
- "width": 512,
- "height": 64
- },
- {
- "y": 384,
- "fileNum": 15178,
- "id": 639,
- "width": 512,
- "height": 64
- },
- {
- "y": 448,
- "fileNum": 15178,
- "id": 640,
- "width": 512,
- "height": 64
- },
- {
- "fileNum": 6065,
- "id": 641,
- "width": 256,
- "height": 256
- },
- {
- "x": 24,
- "y": 30,
- "fileNum": 15031,
- "id": 642,
- "width": 130,
- "height": 100
- },
- {
- "fileNum": 6066,
- "id": 643,
- "width": 512,
- "height": 512
- },
- {
- "fileNum": 6067,
- "id": 644,
- "width": 512,
- "height": 512
- },
- {
- "fileNum": 15179,
- "id": 645,
- "width": 512,
- "height": 512
- },
- {
- "fileNum": 15180,
- "id": 646,
- "width": 512,
- "height": 512
- },
- {
- "fileNum": 6068,
- "id": 647,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 6069,
- "id": 648,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 15184,
- "id": 649,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 15185,
- "id": 650,
- "width": 128,
- "height": 192
- },
- {
- "fileNum": 15186,
- "id": 651,
- "width": 192,
- "height": 128
- },
- {
- "fileNum": 15187,
- "id": 652,
- "width": 192,
- "height": 128
- },
- {
- "fileNum": 15188,
- "id": 653,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 276,
- "id": 654,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 277,
- "id": 655,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 278,
- "id": 656,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 279,
- "id": 657,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 280,
- "id": 658,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 281,
- "id": 659,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 7042,
- "id": 660,
- "width": 320,
- "height": 256
- },
- {
- "fileNum": 9017,
- "id": 661,
- "width": 86,
- "height": 128
- },
- {
- "x": 86,
- "fileNum": 9017,
- "id": 662,
- "width": 86,
- "height": 128
- },
- {
- "x": 172,
- "fileNum": 9017,
- "id": 663,
- "width": 86,
- "height": 128
- },
- {
- "x": 258,
- "fileNum": 9017,
- "id": 664,
- "width": 86,
- "height": 128
- },
- {
- "x": 344,
- "fileNum": 9017,
- "id": 665,
- "width": 86,
- "height": 128
- },
- {
- "x": 430,
- "fileNum": 9017,
- "id": 666,
- "width": 86,
- "height": 128
- },
- {
- "x": 516,
- "fileNum": 9017,
- "id": 667,
- "width": 86,
- "height": 128
- },
- {
- "x": 602,
- "fileNum": 9017,
- "id": 668,
- "width": 86,
- "height": 128
- },
- {
- "fileNum": 7043,
- "id": 670,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7044,
- "id": 671,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 7045,
- "id": 672,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7046,
- "id": 673,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 282,
- "id": 674,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 7047,
- "id": 675,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 7048,
- "id": 676,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 7049,
- "id": 677,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 15189,
- "id": 678,
- "width": 418,
- "height": 214
- },
- {
- "fileNum": 10008,
- "id": 679,
- "width": 94,
- "height": 128
- },
- {
- "fileNum": 283,
- "id": 680,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 284,
- "id": 681,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 285,
- "id": 682,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 286,
- "id": 683,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22034,
- "id": 684,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22035,
- "id": 685,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22036,
- "id": 686,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 287,
- "id": 687,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 288,
- "id": 688,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 289,
- "id": 689,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 290,
- "id": 690,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 291,
- "id": 691,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 292,
- "id": 692,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 293,
- "id": 693,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 294,
- "id": 694,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 295,
- "id": 695,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 9010,
- "id": 696,
- "width": 356,
- "height": 544
- },
- {
- "fileNum": 22037,
- "id": 697,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22038,
- "id": 698,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22039,
- "id": 699,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22040,
- "id": 700,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22041,
- "id": 701,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22042,
- "id": 702,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22043,
- "id": 703,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22045,
- "id": 704,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22046,
- "id": 705,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22047,
- "id": 706,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22048,
- "id": 707,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16051,
- "id": 708,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16052,
- "id": 709,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16053,
- "id": 710,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16054,
- "id": 711,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 20013,
- "id": 712,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16055,
- "id": 713,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16056,
- "id": 714,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16057,
- "id": 715,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16058,
- "id": 716,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 18022,
- "id": 717,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 7050,
- "id": 718,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 7051,
- "id": 719,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 7052,
- "id": 720,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 7053,
- "id": 721,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 15192,
- "id": 722,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22049,
- "id": 723,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22050,
- "id": 724,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22051,
- "id": 725,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 21008,
- "id": 726,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15027,
- "id": 727,
- "width": 100,
- "height": 100
- },
- {
- "fileNum": 15193,
- "id": 728,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 13015,
- "id": 729,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 13016,
- "id": 730,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 13017,
- "id": 731,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 13018,
- "id": 732,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 13019,
- "id": 733,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 13020,
- "id": 734,
- "width": 64,
- "height": 128
- },
- {
- "fileNum": 6078,
- "id": 735,
- "width": 512,
- "height": 512
- },
- {
- "fileNum": 15194,
- "id": 736,
- "width": 128,
- "height": 192
- },
- {
- "fileNum": 15195,
- "id": 737,
- "width": 192,
- "height": 128
- },
- {
- "fileNum": 13021,
- "id": 738,
- "width": 64,
- "height": 64
- },
- {
- "y": 20,
- "fileNum": 15033,
- "id": 739,
- "width": 240,
- "height": 180
- },
- {
- "fileNum": 4053,
- "id": 740,
- "width": 218,
- "height": 140
- },
- {
- "fileNum": 15029,
- "id": 741,
- "width": 70,
- "height": 62
- },
- {
- "x": 74,
- "fileNum": 15029,
- "id": 742,
- "width": 72,
- "height": 62
- },
- {
- "x": 146,
- "fileNum": 15029,
- "id": 743,
- "width": 74,
- "height": 62
- },
- {
- "fileNum": 15023,
- "id": 744,
- "width": 26,
- "height": 34
- },
- {
- "x": 28,
- "fileNum": 15023,
- "id": 745,
- "width": 24,
- "height": 34
- },
- {
- "x": 48,
- "fileNum": 15023,
- "id": 746,
- "width": 24,
- "height": 34
- },
- {
- "y": 16,
- "fileNum": 15034,
- "id": 747,
- "width": 130,
- "height": 100
- },
- {
- "fileNum": 15036,
- "id": 748,
- "width": 80,
- "height": 100
- },
- {
- "fileNum": 17012,
- "id": 749,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16062,
- "id": 750,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16063,
- "id": 751,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16065,
- "id": 752,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16066,
- "id": 753,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16067,
- "id": 754,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16068,
- "id": 755,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 298,
- "id": 756,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 299,
- "id": 757,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 300,
- "id": 758,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 301,
- "id": 759,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 303,
- "id": 760,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 304,
- "id": 761,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 305,
- "id": 762,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 419,
- "id": 763,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 307,
- "id": 764,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 308,
- "id": 765,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 309,
- "id": 766,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 310,
- "id": 767,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 311,
- "id": 768,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 312,
- "id": 769,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 314,
- "id": 770,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 315,
- "id": 771,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 316,
- "id": 772,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 317,
- "id": 773,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 318,
- "id": 774,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 319,
- "id": 775,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 320,
- "id": 776,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 321,
- "id": 777,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 322,
- "id": 778,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 323,
- "id": 779,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 324,
- "id": 780,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 325,
- "id": 781,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 326,
- "id": 782,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 327,
- "id": 783,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 328,
- "id": 784,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 329,
- "id": 785,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 330,
- "id": 786,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 331,
- "id": 787,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8164,
- "id": 788,
- "width": 436,
- "height": 532
- },
- {
- "fileNum": 333,
- "id": 789,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 335,
- "id": 790,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 336,
- "id": 791,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 337,
- "id": 792,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 338,
- "id": 793,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 339,
- "id": 794,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 340,
- "id": 795,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 341,
- "id": 796,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 342,
- "id": 797,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 417,
- "id": 798,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 344,
- "id": 799,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 347,
- "id": 800,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 349,
- "id": 801,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 359,
- "id": 802,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 367,
- "id": 803,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 378,
- "id": 804,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 389,
- "id": 805,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 400,
- "id": 806,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 408,
- "id": 807,
- "width": 64,
- "height": 64
- },
- {
- "x": 2,
- "fileNum": 9011,
- "id": 808,
- "width": 86,
- "height": 128
- },
- {
- "x": 86,
- "fileNum": 9011,
- "id": 809,
- "width": 86,
- "height": 128
- },
- {
- "x": 172,
- "fileNum": 9011,
- "id": 810,
- "width": 86,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 9011,
- "id": 811,
- "width": 86,
- "height": 128
- },
- {
- "x": 340,
- "fileNum": 9011,
- "id": 812,
- "width": 86,
- "height": 128
- },
- {
- "x": 426,
- "fileNum": 9011,
- "id": 813,
- "width": 86,
- "height": 128
- },
- {
- "x": 512,
- "fileNum": 9011,
- "id": 814,
- "width": 86,
- "height": 128
- },
- {
- "x": 596,
- "fileNum": 9011,
- "id": 815,
- "width": 86,
- "height": 128
- },
- {
- "x": 2,
- "fileNum": 9012,
- "id": 817,
- "width": 86,
- "height": 128
- },
- {
- "x": 86,
- "fileNum": 9012,
- "id": 818,
- "width": 86,
- "height": 128
- },
- {
- "x": 172,
- "fileNum": 9012,
- "id": 819,
- "width": 86,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 9012,
- "id": 820,
- "width": 86,
- "height": 128
- },
- {
- "x": 340,
- "fileNum": 9012,
- "id": 821,
- "width": 86,
- "height": 128
- },
- {
- "x": 426,
- "fileNum": 9012,
- "id": 822,
- "width": 86,
- "height": 128
- },
- {
- "x": 512,
- "fileNum": 9012,
- "id": 823,
- "width": 86,
- "height": 128
- },
- {
- "x": 596,
- "fileNum": 9012,
- "id": 824,
- "width": 86,
- "height": 128
- },
- {
- "x": 2,
- "fileNum": 9013,
- "id": 826,
- "width": 86,
- "height": 128
- },
- {
- "x": 86,
- "fileNum": 9013,
- "id": 827,
- "width": 86,
- "height": 128
- },
- {
- "x": 172,
- "fileNum": 9013,
- "id": 828,
- "width": 86,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 9013,
- "id": 829,
- "width": 86,
- "height": 128
- },
- {
- "x": 340,
- "fileNum": 9013,
- "id": 830,
- "width": 86,
- "height": 128
- },
- {
- "x": 426,
- "fileNum": 9013,
- "id": 831,
- "width": 86,
- "height": 128
- },
- {
- "x": 512,
- "fileNum": 9013,
- "id": 832,
- "width": 86,
- "height": 128
- },
- {
- "x": 596,
- "fileNum": 9013,
- "id": 833,
- "width": 86,
- "height": 128
- },
- {
- "x": 2,
- "fileNum": 9014,
- "id": 835,
- "width": 86,
- "height": 128
- },
- {
- "x": 86,
- "fileNum": 9014,
- "id": 836,
- "width": 86,
- "height": 128
- },
- {
- "x": 172,
- "fileNum": 9014,
- "id": 837,
- "width": 86,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 9014,
- "id": 838,
- "width": 86,
- "height": 128
- },
- {
- "x": 340,
- "fileNum": 9014,
- "id": 839,
- "width": 86,
- "height": 128
- },
- {
- "x": 426,
- "fileNum": 9014,
- "id": 840,
- "width": 86,
- "height": 128
- },
- {
- "x": 512,
- "fileNum": 9014,
- "id": 841,
- "width": 86,
- "height": 128
- },
- {
- "x": 596,
- "fileNum": 9014,
- "id": 842,
- "width": 86,
- "height": 128
- },
- {
- "fileNum": 21009,
- "id": 844,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19023,
- "id": 845,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19024,
- "id": 846,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19025,
- "id": 847,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19026,
- "id": 848,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19027,
- "id": 849,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19028,
- "id": 850,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 4157,
- "id": 851,
- "width": 36,
- "height": 52
- },
- {
- "x": 36,
- "fileNum": 4157,
- "id": 852,
- "width": 36,
- "height": 52
- },
- {
- "y": 52,
- "fileNum": 4157,
- "id": 853,
- "width": 36,
- "height": 52
- },
- {
- "x": 36,
- "y": 52,
- "fileNum": 4157,
- "id": 854,
- "width": 36,
- "height": 52
- },
- {
- "y": 104,
- "fileNum": 4157,
- "id": 855,
- "width": 36,
- "height": 52
- },
- {
- "x": 36,
- "y": 104,
- "fileNum": 4157,
- "id": 856,
- "width": 36,
- "height": 52
- },
- {
- "y": 156,
- "fileNum": 4157,
- "id": 857,
- "width": 36,
- "height": 52
- },
- {
- "x": 36,
- "y": 156,
- "fileNum": 4157,
- "id": 858,
- "width": 36,
- "height": 52
- },
- {
- "fileNum": 7054,
- "id": 863,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 7055,
- "id": 864,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 13022,
- "id": 865,
- "width": 150,
- "height": 246
- },
- {
- "fileNum": 13023,
- "id": 866,
- "width": 94,
- "height": 182
- },
- {
- "fileNum": 13024,
- "id": 867,
- "width": 124,
- "height": 88
- },
- {
- "fileNum": 13025,
- "id": 868,
- "width": 154,
- "height": 116
- },
- {
- "fileNum": 13026,
- "id": 869,
- "width": 150,
- "height": 112
- },
- {
- "fileNum": 13027,
- "id": 870,
- "width": 156,
- "height": 110
- },
- {
- "fileNum": 13028,
- "id": 871,
- "width": 108,
- "height": 80
- },
- {
- "fileNum": 13029,
- "id": 872,
- "width": 96,
- "height": 82
- },
- {
- "fileNum": 13030,
- "id": 873,
- "width": 112,
- "height": 96
- },
- {
- "fileNum": 13031,
- "id": 874,
- "width": 128,
- "height": 88
- },
- {
- "fileNum": 7056,
- "id": 875,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 7057,
- "id": 876,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 7058,
- "id": 877,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 7059,
- "id": 878,
- "width": 256,
- "height": 128
- },
- {
- "y": 30,
- "fileNum": 15044,
- "id": 879,
- "width": 54,
- "height": 80
- },
- {
- "fileNum": 20001,
- "id": 880,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 20001,
- "id": 881,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 20001,
- "id": 882,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 20001,
- "id": 883,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 20001,
- "id": 884,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 20001,
- "id": 885,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 20001,
- "id": 886,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 20001,
- "id": 887,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 20001,
- "id": 888,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 20001,
- "id": 889,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 20001,
- "id": 890,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 20001,
- "id": 891,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 20001,
- "id": 892,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 20001,
- "id": 893,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 20001,
- "id": 894,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 20001,
- "id": 895,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 20001,
- "id": 896,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 20001,
- "id": 897,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 20001,
- "id": 898,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 20001,
- "id": 899,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 20001,
- "id": 900,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 20001,
- "id": 901,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 20000,
- "id": 906,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 20000,
- "id": 907,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 20000,
- "id": 908,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 20000,
- "id": 909,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 20000,
- "id": 910,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 20000,
- "id": 911,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 20000,
- "id": 912,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 20000,
- "id": 913,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 20000,
- "id": 914,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 20000,
- "id": 915,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 20000,
- "id": 916,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 20000,
- "id": 917,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 20000,
- "id": 918,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 20000,
- "id": 919,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 20000,
- "id": 920,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 20000,
- "id": 921,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 20000,
- "id": 922,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 20000,
- "id": 923,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 20000,
- "id": 924,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 20000,
- "id": 925,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 20000,
- "id": 926,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 20000,
- "id": 927,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16000,
- "id": 932,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16001,
- "id": 933,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16001,
- "id": 934,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16001,
- "id": 935,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16001,
- "id": 936,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16001,
- "id": 937,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16001,
- "id": 938,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16001,
- "id": 939,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16001,
- "id": 940,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16001,
- "id": 941,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16001,
- "id": 942,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16001,
- "id": 943,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16001,
- "id": 944,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16001,
- "id": 945,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16001,
- "id": 946,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16001,
- "id": 947,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16001,
- "id": 948,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16001,
- "id": 949,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16001,
- "id": 950,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16001,
- "id": 951,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16001,
- "id": 952,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16001,
- "id": 953,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16001,
- "id": 954,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16002,
- "id": 959,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16003,
- "id": 960,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16003,
- "id": 961,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16003,
- "id": 962,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16003,
- "id": 963,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16003,
- "id": 964,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16003,
- "id": 965,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16003,
- "id": 966,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16003,
- "id": 967,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16003,
- "id": 968,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16003,
- "id": 969,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16003,
- "id": 970,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16003,
- "id": 971,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16003,
- "id": 972,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16003,
- "id": 973,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16003,
- "id": 974,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16003,
- "id": 975,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16003,
- "id": 976,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16003,
- "id": 977,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16003,
- "id": 978,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16003,
- "id": 979,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16003,
- "id": 980,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16003,
- "id": 981,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16004,
- "id": 986,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16005,
- "id": 987,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16005,
- "id": 988,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16005,
- "id": 989,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16005,
- "id": 990,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16005,
- "id": 991,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16005,
- "id": 992,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16005,
- "id": 993,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16005,
- "id": 994,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16005,
- "id": 995,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16005,
- "id": 996,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16005,
- "id": 997,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16005,
- "id": 998,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16005,
- "id": 999,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16005,
- "id": 1000,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16005,
- "id": 1001,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16005,
- "id": 1002,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16005,
- "id": 1003,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16005,
- "id": 1004,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16005,
- "id": 1005,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16005,
- "id": 1006,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16005,
- "id": 1007,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16005,
- "id": 1008,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 18000,
- "id": 1013,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 18001,
- "id": 1014,
- "width": 34,
- "height": 56
- },
- {
- "x": 34,
- "fileNum": 18001,
- "id": 1015,
- "width": 34,
- "height": 56
- },
- {
- "x": 68,
- "fileNum": 18001,
- "id": 1016,
- "width": 34,
- "height": 56
- },
- {
- "x": 102,
- "fileNum": 18001,
- "id": 1017,
- "width": 34,
- "height": 56
- },
- {
- "fileNum": 18002,
- "id": 1018,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 18003,
- "id": 1019,
- "width": 34,
- "height": 56
- },
- {
- "x": 34,
- "fileNum": 18003,
- "id": 1020,
- "width": 34,
- "height": 56
- },
- {
- "x": 68,
- "fileNum": 18003,
- "id": 1021,
- "width": 34,
- "height": 56
- },
- {
- "x": 102,
- "fileNum": 18003,
- "id": 1022,
- "width": 34,
- "height": 56
- },
- {
- "fileNum": 16006,
- "id": 1023,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16007,
- "id": 1024,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16008,
- "id": 1025,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16009,
- "id": 1026,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16009,
- "id": 1027,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16009,
- "id": 1028,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16009,
- "id": 1029,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16009,
- "id": 1030,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16009,
- "id": 1031,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16009,
- "id": 1032,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16009,
- "id": 1033,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16009,
- "id": 1034,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16009,
- "id": 1035,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16009,
- "id": 1036,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16009,
- "id": 1037,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16009,
- "id": 1038,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16009,
- "id": 1039,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16009,
- "id": 1040,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16009,
- "id": 1041,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16009,
- "id": 1042,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16009,
- "id": 1043,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16009,
- "id": 1044,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16009,
- "id": 1045,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16009,
- "id": 1046,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16009,
- "id": 1047,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 12000,
- "id": 1052,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12000,
- "id": 1053,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12000,
- "id": 1054,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12000,
- "id": 1055,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12000,
- "id": 1056,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12000,
- "id": 1057,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12000,
- "id": 1058,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12000,
- "id": 1059,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12000,
- "id": 1060,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12000,
- "id": 1061,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12000,
- "id": 1062,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12000,
- "id": 1063,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12000,
- "id": 1064,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12000,
- "id": 1065,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12000,
- "id": 1066,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12000,
- "id": 1067,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12001,
- "id": 1068,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12001,
- "id": 1069,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12001,
- "id": 1070,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12001,
- "id": 1071,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12001,
- "id": 1072,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12001,
- "id": 1073,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12001,
- "id": 1074,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12001,
- "id": 1075,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12001,
- "id": 1076,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12001,
- "id": 1077,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12001,
- "id": 1078,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12001,
- "id": 1079,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12001,
- "id": 1080,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12001,
- "id": 1081,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12001,
- "id": 1082,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12001,
- "id": 1083,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12002,
- "id": 1084,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12002,
- "id": 1085,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12002,
- "id": 1086,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12002,
- "id": 1087,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12002,
- "id": 1088,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12002,
- "id": 1089,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12002,
- "id": 1090,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12002,
- "id": 1091,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12002,
- "id": 1092,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12002,
- "id": 1093,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12002,
- "id": 1094,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12002,
- "id": 1095,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12002,
- "id": 1096,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12002,
- "id": 1097,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12002,
- "id": 1098,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12002,
- "id": 1099,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 6,
- "id": 1100,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 7,
- "id": 1101,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 7,
- "id": 1102,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 7,
- "id": 1103,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 7,
- "id": 1104,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 7,
- "id": 1105,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 7,
- "id": 1106,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 7,
- "id": 1107,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 7,
- "id": 1108,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 7,
- "id": 1109,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 7,
- "id": 1110,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 7,
- "id": 1111,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 7,
- "id": 1112,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 7,
- "id": 1113,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 7,
- "id": 1114,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 7,
- "id": 1115,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 7,
- "id": 1116,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 7,
- "id": 1117,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 7,
- "id": 1118,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 7,
- "id": 1119,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 7,
- "id": 1120,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 7,
- "id": 1121,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 7,
- "id": 1122,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 8,
- "id": 1127,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 9,
- "id": 1128,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 9,
- "id": 1129,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 9,
- "id": 1130,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 9,
- "id": 1131,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 9,
- "id": 1132,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 9,
- "id": 1133,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 9,
- "id": 1134,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 9,
- "id": 1135,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 9,
- "id": 1136,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 9,
- "id": 1137,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 9,
- "id": 1138,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 9,
- "id": 1139,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 9,
- "id": 1140,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 9,
- "id": 1141,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 9,
- "id": 1142,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 9,
- "id": 1143,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 9,
- "id": 1144,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 9,
- "id": 1145,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 9,
- "id": 1146,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 9,
- "id": 1147,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 9,
- "id": 1148,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 9,
- "id": 1149,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 10,
- "id": 1154,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11,
- "id": 1155,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 11,
- "id": 1156,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 11,
- "id": 1157,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 11,
- "id": 1158,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 11,
- "id": 1159,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 11,
- "id": 1160,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 11,
- "id": 1161,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 11,
- "id": 1162,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 11,
- "id": 1163,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 11,
- "id": 1164,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 11,
- "id": 1165,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 11,
- "id": 1166,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 11,
- "id": 1167,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 11,
- "id": 1168,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 11,
- "id": 1169,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 11,
- "id": 1170,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 11,
- "id": 1171,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 11,
- "id": 1172,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 11,
- "id": 1173,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 11,
- "id": 1174,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 11,
- "id": 1175,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 11,
- "id": 1176,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 12,
- "id": 1181,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 13,
- "id": 1182,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 13,
- "id": 1183,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 13,
- "id": 1184,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 13,
- "id": 1185,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 13,
- "id": 1186,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 13,
- "id": 1187,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 13,
- "id": 1188,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 13,
- "id": 1189,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 13,
- "id": 1190,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 13,
- "id": 1191,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 13,
- "id": 1192,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 13,
- "id": 1193,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 13,
- "id": 1194,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 13,
- "id": 1195,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 13,
- "id": 1196,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 13,
- "id": 1197,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 13,
- "id": 1198,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 13,
- "id": 1199,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 13,
- "id": 1200,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 13,
- "id": 1201,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 13,
- "id": 1202,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 13,
- "id": 1203,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 14,
- "id": 1208,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15,
- "id": 1209,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 15,
- "id": 1210,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 15,
- "id": 1211,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 15,
- "id": 1212,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 15,
- "id": 1213,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 15,
- "id": 1214,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 15,
- "id": 1215,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 15,
- "id": 1216,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 15,
- "id": 1217,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 15,
- "id": 1218,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 15,
- "id": 1219,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 15,
- "id": 1220,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 15,
- "id": 1221,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 15,
- "id": 1222,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 15,
- "id": 1223,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 15,
- "id": 1224,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 15,
- "id": 1225,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 15,
- "id": 1226,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 15,
- "id": 1227,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 15,
- "id": 1228,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 15,
- "id": 1229,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 15,
- "id": 1230,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 17,
- "id": 1235,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 18,
- "id": 1236,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 18,
- "id": 1237,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 18,
- "id": 1238,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 18,
- "id": 1239,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 18,
- "id": 1240,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 18,
- "id": 1241,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 18,
- "id": 1242,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 18,
- "id": 1243,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 18,
- "id": 1244,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 18,
- "id": 1245,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 18,
- "id": 1246,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 18,
- "id": 1247,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 18,
- "id": 1248,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 18,
- "id": 1249,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 18,
- "id": 1250,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 18,
- "id": 1251,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 18,
- "id": 1252,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 18,
- "id": 1253,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 18,
- "id": 1254,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 18,
- "id": 1255,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 18,
- "id": 1256,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 18,
- "id": 1257,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 19,
- "id": 1262,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 20,
- "id": 1263,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 20,
- "id": 1264,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 20,
- "id": 1265,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 20,
- "id": 1266,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 20,
- "id": 1267,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 20,
- "id": 1268,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 20,
- "id": 1269,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 20,
- "id": 1270,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 20,
- "id": 1271,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 20,
- "id": 1272,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 20,
- "id": 1273,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 20,
- "id": 1274,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 20,
- "id": 1275,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 20,
- "id": 1276,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 20,
- "id": 1277,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 20,
- "id": 1278,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 20,
- "id": 1279,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 20,
- "id": 1280,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 20,
- "id": 1281,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 20,
- "id": 1282,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 20,
- "id": 1283,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 20,
- "id": 1284,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16010,
- "id": 1289,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16010,
- "id": 1290,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16010,
- "id": 1291,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16010,
- "id": 1292,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16010,
- "id": 1293,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16010,
- "id": 1294,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16010,
- "id": 1295,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16010,
- "id": 1296,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16010,
- "id": 1297,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16010,
- "id": 1298,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16010,
- "id": 1299,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16010,
- "id": 1300,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16010,
- "id": 1301,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16010,
- "id": 1302,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16010,
- "id": 1303,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16010,
- "id": 1304,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16010,
- "id": 1305,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16010,
- "id": 1306,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16010,
- "id": 1307,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16010,
- "id": 1308,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16010,
- "id": 1309,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16010,
- "id": 1310,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 12051,
- "id": 1315,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12051,
- "id": 1316,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12051,
- "id": 1317,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12051,
- "id": 1318,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12051,
- "id": 1319,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12051,
- "id": 1320,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12051,
- "id": 1321,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12051,
- "id": 1322,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12051,
- "id": 1323,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12051,
- "id": 1324,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12051,
- "id": 1325,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12051,
- "id": 1326,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12051,
- "id": 1327,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12051,
- "id": 1328,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12051,
- "id": 1329,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12051,
- "id": 1330,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8165,
- "id": 1331,
- "width": 1000,
- "height": 790
- },
- {
- "fileNum": 8166,
- "id": 1332,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8166,
- "id": 1333,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8166,
- "id": 1334,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8166,
- "id": 1335,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8166,
- "id": 1336,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8166,
- "id": 1337,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8166,
- "id": 1338,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8166,
- "id": 1339,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8166,
- "id": 1340,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8166,
- "id": 1341,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8166,
- "id": 1342,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8166,
- "id": 1343,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8166,
- "id": 1344,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8166,
- "id": 1345,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8166,
- "id": 1346,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8166,
- "id": 1347,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 8166,
- "id": 1348,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 8166,
- "id": 1349,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 8166,
- "id": 1350,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 8166,
- "id": 1351,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 8166,
- "id": 1352,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 8166,
- "id": 1353,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 8166,
- "id": 1354,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 8166,
- "id": 1355,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 8166,
- "id": 1356,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 8166,
- "id": 1357,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 8166,
- "id": 1358,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 8166,
- "id": 1359,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 8166,
- "id": 1360,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 8166,
- "id": 1361,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 8166,
- "id": 1362,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 8166,
- "id": 1363,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 8166,
- "id": 1364,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 8166,
- "id": 1365,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 8166,
- "id": 1366,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 8166,
- "id": 1367,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 8166,
- "id": 1368,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 8166,
- "id": 1369,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 8166,
- "id": 1370,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 8166,
- "id": 1371,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 8166,
- "id": 1372,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 8166,
- "id": 1373,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 8166,
- "id": 1374,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 8166,
- "id": 1375,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 8166,
- "id": 1376,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 8166,
- "id": 1377,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 8166,
- "id": 1378,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 8166,
- "id": 1379,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 8166,
- "id": 1380,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 8166,
- "id": 1381,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 8166,
- "id": 1382,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 8166,
- "id": 1383,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 8166,
- "id": 1384,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 8166,
- "id": 1385,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 8166,
- "id": 1386,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 8166,
- "id": 1387,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 8166,
- "id": 1388,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 8166,
- "id": 1389,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 8166,
- "id": 1390,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 8166,
- "id": 1391,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 8166,
- "id": 1392,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 8166,
- "id": 1393,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 8166,
- "id": 1394,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 8166,
- "id": 1395,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8167,
- "id": 1396,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8167,
- "id": 1397,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8167,
- "id": 1398,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8167,
- "id": 1399,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8167,
- "id": 1400,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8167,
- "id": 1401,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8167,
- "id": 1402,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8167,
- "id": 1403,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8167,
- "id": 1404,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8167,
- "id": 1405,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8167,
- "id": 1406,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8167,
- "id": 1407,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8167,
- "id": 1408,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8167,
- "id": 1409,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8167,
- "id": 1410,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8167,
- "id": 1411,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 8167,
- "id": 1412,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 8167,
- "id": 1413,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 8167,
- "id": 1414,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 8167,
- "id": 1415,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 8167,
- "id": 1416,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 8167,
- "id": 1417,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 8167,
- "id": 1418,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 8167,
- "id": 1419,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 8167,
- "id": 1420,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 8167,
- "id": 1421,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 8167,
- "id": 1422,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 8167,
- "id": 1423,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 8167,
- "id": 1424,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 8167,
- "id": 1425,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 8167,
- "id": 1426,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 8167,
- "id": 1427,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 8167,
- "id": 1428,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 8167,
- "id": 1429,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 8167,
- "id": 1430,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 8167,
- "id": 1431,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 8167,
- "id": 1432,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 8167,
- "id": 1433,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 8167,
- "id": 1434,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 8167,
- "id": 1435,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 8167,
- "id": 1436,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 8167,
- "id": 1437,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 8167,
- "id": 1438,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 8167,
- "id": 1439,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 8167,
- "id": 1440,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 8167,
- "id": 1441,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 8167,
- "id": 1442,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 8167,
- "id": 1443,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 8167,
- "id": 1444,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 8167,
- "id": 1445,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 8167,
- "id": 1446,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 8167,
- "id": 1447,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 8167,
- "id": 1448,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 8167,
- "id": 1449,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 8167,
- "id": 1450,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 8167,
- "id": 1451,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 8167,
- "id": 1452,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 8167,
- "id": 1453,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 8167,
- "id": 1454,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 8167,
- "id": 1455,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 8167,
- "id": 1456,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 8167,
- "id": 1457,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 8167,
- "id": 1458,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 8167,
- "id": 1459,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8169,
- "id": 1460,
- "width": 128,
- "height": 384
- },
- {
- "fileNum": 8170,
- "id": 1461,
- "width": 278,
- "height": 246
- },
- {
- "fileNum": 8171,
- "id": 1462,
- "width": 278,
- "height": 246
- },
- {
- "fileNum": 8172,
- "id": 1463,
- "width": 122,
- "height": 252
- },
- {
- "fileNum": 15198,
- "id": 1464,
- "width": 210,
- "height": 444
- },
- {
- "x": 210,
- "fileNum": 15198,
- "id": 1465,
- "width": 210,
- "height": 444
- },
- {
- "x": 420,
- "fileNum": 15198,
- "id": 1466,
- "width": 210,
- "height": 444
- },
- {
- "x": 630,
- "fileNum": 15198,
- "id": 1467,
- "width": 210,
- "height": 444
- },
- {
- "fileNum": 16035,
- "id": 1469,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 206,
- "id": 1470,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 7012,
- "id": 1471,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 15025,
- "id": 1472,
- "width": 44,
- "height": 70
- },
- {
- "fileNum": 15026,
- "id": 1473,
- "width": 36,
- "height": 80
- },
- {
- "x": 8,
- "fileNum": 15030,
- "id": 1474,
- "width": 170,
- "height": 100
- },
- {
- "x": 20,
- "y": 20,
- "fileNum": 15032,
- "id": 1475,
- "width": 170,
- "height": 100
- },
- {
- "fileNum": 205,
- "id": 1476,
- "width": 64,
- "height": 64
- },
- {
- "y": 10,
- "fileNum": 15035,
- "id": 1477,
- "width": 200,
- "height": 220
- },
- {
- "x": 30,
- "y": 34,
- "fileNum": 15041,
- "id": 1478,
- "width": 80,
- "height": 80
- },
- {
- "fileNum": 15042,
- "id": 1479,
- "width": 100,
- "height": 180
- },
- {
- "y": 50,
- "fileNum": 15043,
- "id": 1480,
- "width": 200,
- "height": 140
- },
- {
- "y": 10,
- "fileNum": 15045,
- "id": 1481,
- "width": 80,
- "height": 60
- },
- {
- "fileNum": 15046,
- "id": 1482,
- "width": 60,
- "height": 60
- },
- {
- "fileNum": 15047,
- "id": 1483,
- "width": 100,
- "height": 86
- },
- {
- "fileNum": 15037,
- "id": 1484,
- "width": 74,
- "height": 80
- },
- {
- "fileNum": 15038,
- "id": 1485,
- "width": 80,
- "height": 80
- },
- {
- "fileNum": 15039,
- "id": 1486,
- "width": 74,
- "height": 80
- },
- {
- "fileNum": 15040,
- "id": 1487,
- "width": 110,
- "height": 80
- },
- {
- "fileNum": 15048,
- "id": 1488,
- "width": 74,
- "height": 70
- },
- {
- "fileNum": 15049,
- "id": 1489,
- "width": 74,
- "height": 70
- },
- {
- "fileNum": 13000,
- "id": 1490,
- "width": 64,
- "height": 100
- },
- {
- "fileNum": 13001,
- "id": 1491,
- "width": 64,
- "height": 100
- },
- {
- "fileNum": 13002,
- "id": 1492,
- "width": 64,
- "height": 100
- },
- {
- "fileNum": 15050,
- "id": 1493,
- "width": 292,
- "height": 66
- },
- {
- "fileNum": 15051,
- "id": 1494,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15052,
- "id": 1495,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15053,
- "id": 1496,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 15054,
- "id": 1497,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22001,
- "id": 1498,
- "width": 64,
- "height": 64
- },
- {
- "x": 10,
- "fileNum": 22002,
- "id": 1499,
- "width": 64,
- "height": 174
- },
- {
- "fileNum": 15056,
- "id": 1500,
- "width": 320,
- "height": 192
- },
- {
- "fileNum": 15057,
- "id": 1501,
- "width": 140,
- "height": 84
- },
- {
- "fileNum": 15058,
- "id": 1502,
- "width": 106,
- "height": 98
- },
- {
- "fileNum": 15059,
- "id": 1503,
- "width": 140,
- "height": 76
- },
- {
- "fileNum": 15060,
- "id": 1504,
- "width": 418,
- "height": 214
- },
- {
- "fileNum": 16049,
- "id": 1522,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16050,
- "id": 1523,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15071,
- "id": 1524,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15072,
- "id": 1525,
- "width": 148,
- "height": 128
- },
- {
- "x": 148,
- "fileNum": 15072,
- "id": 1526,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 15072,
- "id": 1527,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 15073,
- "id": 1528,
- "width": 160,
- "height": 160
- },
- {
- "fileNum": 6002,
- "id": 1529,
- "width": 600,
- "height": 540
- },
- {
- "fileNum": 6004,
- "id": 1530,
- "width": 408,
- "height": 408
- },
- {
- "fileNum": 6005,
- "id": 1531,
- "width": 464,
- "height": 600
- },
- {
- "fileNum": 6006,
- "id": 1532,
- "width": 242,
- "height": 584
- },
- {
- "fileNum": 6007,
- "id": 1533,
- "width": 400,
- "height": 414
- },
- {
- "fileNum": 6008,
- "id": 1534,
- "width": 534,
- "height": 594
- },
- {
- "fileNum": 6009,
- "id": 1535,
- "width": 160,
- "height": 128
- },
- {
- "fileNum": 6010,
- "id": 1536,
- "width": 130,
- "height": 128
- },
- {
- "fileNum": 22025,
- "id": 1537,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8174,
- "id": 1538,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 8175,
- "id": 1539,
- "width": 512,
- "height": 320
- },
- {
- "fileNum": 8190,
- "id": 1540,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8190,
- "id": 1541,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8190,
- "id": 1542,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8190,
- "id": 1543,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8190,
- "id": 1544,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8190,
- "id": 1545,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8190,
- "id": 1546,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8190,
- "id": 1547,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8190,
- "id": 1548,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8190,
- "id": 1549,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8190,
- "id": 1550,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8190,
- "id": 1551,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8190,
- "id": 1552,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8190,
- "id": 1553,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8190,
- "id": 1554,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8190,
- "id": 1555,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8191,
- "id": 1556,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8191,
- "id": 1557,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8191,
- "id": 1558,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8191,
- "id": 1559,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8191,
- "id": 1560,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8191,
- "id": 1561,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8191,
- "id": 1562,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8191,
- "id": 1563,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8191,
- "id": 1564,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8191,
- "id": 1565,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8191,
- "id": 1566,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8191,
- "id": 1567,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8191,
- "id": 1568,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8191,
- "id": 1569,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8191,
- "id": 1570,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8191,
- "id": 1571,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8192,
- "id": 1572,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8192,
- "id": 1573,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8192,
- "id": 1574,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8192,
- "id": 1575,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8192,
- "id": 1576,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8192,
- "id": 1577,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8192,
- "id": 1578,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8192,
- "id": 1579,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8192,
- "id": 1580,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8192,
- "id": 1581,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8192,
- "id": 1582,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8192,
- "id": 1583,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8192,
- "id": 1584,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8192,
- "id": 1585,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8192,
- "id": 1586,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8192,
- "id": 1587,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8193,
- "id": 1588,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8193,
- "id": 1589,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8193,
- "id": 1590,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8193,
- "id": 1591,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8193,
- "id": 1592,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8193,
- "id": 1593,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8193,
- "id": 1594,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8193,
- "id": 1595,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8193,
- "id": 1596,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8193,
- "id": 1597,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8193,
- "id": 1598,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8193,
- "id": 1599,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8193,
- "id": 1600,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8193,
- "id": 1601,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8193,
- "id": 1602,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8193,
- "id": 1603,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8194,
- "id": 1604,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8194,
- "id": 1605,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8194,
- "id": 1606,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8194,
- "id": 1607,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8194,
- "id": 1608,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8194,
- "id": 1609,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8194,
- "id": 1610,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8194,
- "id": 1611,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8194,
- "id": 1612,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8194,
- "id": 1613,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8194,
- "id": 1614,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8194,
- "id": 1615,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8194,
- "id": 1616,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8194,
- "id": 1617,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8194,
- "id": 1618,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8194,
- "id": 1619,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8195,
- "id": 1620,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8195,
- "id": 1621,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8195,
- "id": 1622,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8195,
- "id": 1623,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8195,
- "id": 1624,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8195,
- "id": 1625,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8195,
- "id": 1626,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8195,
- "id": 1627,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8195,
- "id": 1628,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8195,
- "id": 1629,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8195,
- "id": 1630,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8195,
- "id": 1631,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8195,
- "id": 1632,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8195,
- "id": 1633,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8195,
- "id": 1634,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8195,
- "id": 1635,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8196,
- "id": 1636,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8196,
- "id": 1637,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8196,
- "id": 1638,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8196,
- "id": 1639,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8196,
- "id": 1640,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8196,
- "id": 1641,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8196,
- "id": 1642,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8196,
- "id": 1643,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8196,
- "id": 1644,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8196,
- "id": 1645,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8196,
- "id": 1646,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8196,
- "id": 1647,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8196,
- "id": 1648,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8196,
- "id": 1649,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8196,
- "id": 1650,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8196,
- "id": 1651,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8197,
- "id": 1652,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8197,
- "id": 1653,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8197,
- "id": 1654,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8197,
- "id": 1655,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8197,
- "id": 1656,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8197,
- "id": 1657,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8197,
- "id": 1658,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8197,
- "id": 1659,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8197,
- "id": 1660,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8197,
- "id": 1661,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8197,
- "id": 1662,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8197,
- "id": 1663,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8197,
- "id": 1664,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8197,
- "id": 1665,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8197,
- "id": 1666,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8197,
- "id": 1667,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8198,
- "id": 1668,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8198,
- "id": 1669,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8198,
- "id": 1670,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8198,
- "id": 1671,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8198,
- "id": 1672,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8198,
- "id": 1673,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8198,
- "id": 1674,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8198,
- "id": 1675,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8198,
- "id": 1676,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8198,
- "id": 1677,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8198,
- "id": 1678,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8198,
- "id": 1679,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8198,
- "id": 1680,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8198,
- "id": 1681,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8198,
- "id": 1682,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8198,
- "id": 1683,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8199,
- "id": 1684,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8199,
- "id": 1685,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8199,
- "id": 1686,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8199,
- "id": 1687,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8199,
- "id": 1688,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8199,
- "id": 1689,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8199,
- "id": 1690,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8199,
- "id": 1691,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8199,
- "id": 1692,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8199,
- "id": 1693,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8199,
- "id": 1694,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8199,
- "id": 1695,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8199,
- "id": 1696,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8199,
- "id": 1697,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8199,
- "id": 1698,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8199,
- "id": 1699,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8200,
- "id": 1700,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8200,
- "id": 1701,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8200,
- "id": 1702,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8200,
- "id": 1703,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8200,
- "id": 1704,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8200,
- "id": 1705,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8200,
- "id": 1706,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8200,
- "id": 1707,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8200,
- "id": 1708,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8200,
- "id": 1709,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8200,
- "id": 1710,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8200,
- "id": 1711,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8200,
- "id": 1712,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8200,
- "id": 1713,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8200,
- "id": 1714,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8200,
- "id": 1715,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8201,
- "id": 1716,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8201,
- "id": 1717,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8201,
- "id": 1718,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8201,
- "id": 1719,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8201,
- "id": 1720,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8201,
- "id": 1721,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8201,
- "id": 1722,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8201,
- "id": 1723,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8201,
- "id": 1724,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8201,
- "id": 1725,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8201,
- "id": 1726,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8201,
- "id": 1727,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8201,
- "id": 1728,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8201,
- "id": 1729,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8201,
- "id": 1730,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8201,
- "id": 1731,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8202,
- "id": 1732,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8202,
- "id": 1733,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8202,
- "id": 1734,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8202,
- "id": 1735,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8202,
- "id": 1736,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8202,
- "id": 1737,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8202,
- "id": 1738,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8202,
- "id": 1739,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8202,
- "id": 1740,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8202,
- "id": 1741,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8202,
- "id": 1742,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8202,
- "id": 1743,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8202,
- "id": 1744,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8202,
- "id": 1745,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8202,
- "id": 1746,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8202,
- "id": 1747,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8203,
- "id": 1748,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8203,
- "id": 1749,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8203,
- "id": 1750,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8203,
- "id": 1751,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8203,
- "id": 1752,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8203,
- "id": 1753,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8203,
- "id": 1754,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8203,
- "id": 1755,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8203,
- "id": 1756,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8203,
- "id": 1757,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8203,
- "id": 1758,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8203,
- "id": 1759,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8203,
- "id": 1760,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8203,
- "id": 1761,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8203,
- "id": 1762,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8203,
- "id": 1763,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8204,
- "id": 1764,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8204,
- "id": 1765,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8204,
- "id": 1766,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8204,
- "id": 1767,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8204,
- "id": 1768,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8204,
- "id": 1769,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8204,
- "id": 1770,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8204,
- "id": 1771,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8204,
- "id": 1772,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8204,
- "id": 1773,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8204,
- "id": 1774,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8204,
- "id": 1775,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8204,
- "id": 1776,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8204,
- "id": 1777,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8204,
- "id": 1778,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8204,
- "id": 1779,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8205,
- "id": 1780,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8205,
- "id": 1781,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8205,
- "id": 1782,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8205,
- "id": 1783,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8205,
- "id": 1784,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8205,
- "id": 1785,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8205,
- "id": 1786,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8205,
- "id": 1787,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8205,
- "id": 1788,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8205,
- "id": 1789,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8205,
- "id": 1790,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8205,
- "id": 1791,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8205,
- "id": 1792,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8205,
- "id": 1793,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8205,
- "id": 1794,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8205,
- "id": 1795,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8206,
- "id": 1796,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8206,
- "id": 1797,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8206,
- "id": 1798,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8206,
- "id": 1799,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8206,
- "id": 1800,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8206,
- "id": 1801,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8206,
- "id": 1802,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8206,
- "id": 1803,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8206,
- "id": 1804,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8206,
- "id": 1805,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8206,
- "id": 1806,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8206,
- "id": 1807,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8206,
- "id": 1808,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8206,
- "id": 1809,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8206,
- "id": 1810,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8206,
- "id": 1811,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8207,
- "id": 1812,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8168,
- "id": 1813,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8168,
- "id": 1814,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8168,
- "id": 1815,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8168,
- "id": 1816,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8168,
- "id": 1817,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8168,
- "id": 1818,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8168,
- "id": 1819,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8168,
- "id": 1820,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8168,
- "id": 1821,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8168,
- "id": 1822,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8168,
- "id": 1823,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8168,
- "id": 1824,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8168,
- "id": 1825,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8168,
- "id": 1826,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8168,
- "id": 1827,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8168,
- "id": 1828,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 8168,
- "id": 1829,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 8168,
- "id": 1830,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 8168,
- "id": 1831,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 8168,
- "id": 1832,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 8168,
- "id": 1833,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 8168,
- "id": 1834,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 8168,
- "id": 1835,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 8168,
- "id": 1836,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 8168,
- "id": 1837,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 8168,
- "id": 1838,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 8168,
- "id": 1839,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 8168,
- "id": 1840,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 8168,
- "id": 1841,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 8168,
- "id": 1842,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 8168,
- "id": 1843,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 8168,
- "id": 1844,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 8168,
- "id": 1845,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 8168,
- "id": 1846,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 8168,
- "id": 1847,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 8168,
- "id": 1848,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 8168,
- "id": 1849,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 8168,
- "id": 1850,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 8168,
- "id": 1851,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 8168,
- "id": 1852,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 8168,
- "id": 1853,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 8168,
- "id": 1854,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 8168,
- "id": 1855,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 8168,
- "id": 1856,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 8168,
- "id": 1857,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 8168,
- "id": 1858,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 8168,
- "id": 1859,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 8168,
- "id": 1860,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 8168,
- "id": 1861,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 8168,
- "id": 1862,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 8168,
- "id": 1863,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 8168,
- "id": 1864,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 8168,
- "id": 1865,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 8168,
- "id": 1866,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 8168,
- "id": 1867,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 8168,
- "id": 1868,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 8168,
- "id": 1869,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 8168,
- "id": 1870,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 8168,
- "id": 1871,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 8168,
- "id": 1872,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 8168,
- "id": 1873,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 8168,
- "id": 1874,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 8168,
- "id": 1875,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 8168,
- "id": 1876,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15062,
- "id": 1877,
- "width": 86,
- "height": 126
- },
- {
- "x": 86,
- "fileNum": 15062,
- "id": 1878,
- "width": 86,
- "height": 126
- },
- {
- "x": 172,
- "fileNum": 15062,
- "id": 1879,
- "width": 86,
- "height": 126
- },
- {
- "x": 252,
- "fileNum": 15062,
- "id": 1880,
- "width": 86,
- "height": 126
- },
- {
- "x": 338,
- "fileNum": 15062,
- "id": 1881,
- "width": 86,
- "height": 126
- },
- {
- "x": 424,
- "fileNum": 15062,
- "id": 1882,
- "width": 86,
- "height": 126
- },
- {
- "x": 510,
- "fileNum": 15062,
- "id": 1883,
- "width": 86,
- "height": 126
- },
- {
- "x": 596,
- "fileNum": 15062,
- "id": 1884,
- "width": 86,
- "height": 126
- },
- {
- "fileNum": 15063,
- "id": 1886,
- "width": 86,
- "height": 126
- },
- {
- "x": 86,
- "fileNum": 15063,
- "id": 1887,
- "width": 86,
- "height": 126
- },
- {
- "x": 172,
- "fileNum": 15063,
- "id": 1888,
- "width": 86,
- "height": 126
- },
- {
- "x": 252,
- "fileNum": 15063,
- "id": 1889,
- "width": 86,
- "height": 126
- },
- {
- "x": 338,
- "fileNum": 15063,
- "id": 1890,
- "width": 86,
- "height": 126
- },
- {
- "x": 424,
- "fileNum": 15063,
- "id": 1891,
- "width": 86,
- "height": 126
- },
- {
- "x": 510,
- "fileNum": 15063,
- "id": 1892,
- "width": 86,
- "height": 126
- },
- {
- "x": 596,
- "fileNum": 15063,
- "id": 1893,
- "width": 86,
- "height": 126
- },
- {
- "fileNum": 4009,
- "id": 1895,
- "width": 48,
- "height": 102
- },
- {
- "x": 48,
- "fileNum": 4009,
- "id": 1896,
- "width": 48,
- "height": 102
- },
- {
- "x": 96,
- "fileNum": 4009,
- "id": 1897,
- "width": 48,
- "height": 102
- },
- {
- "x": 144,
- "fileNum": 4009,
- "id": 1898,
- "width": 48,
- "height": 102
- },
- {
- "x": 192,
- "fileNum": 4009,
- "id": 1899,
- "width": 48,
- "height": 102
- },
- {
- "x": 240,
- "fileNum": 4009,
- "id": 1900,
- "width": 48,
- "height": 102
- },
- {
- "y": 102,
- "fileNum": 4009,
- "id": 1901,
- "width": 48,
- "height": 102
- },
- {
- "x": 48,
- "y": 102,
- "fileNum": 4009,
- "id": 1902,
- "width": 48,
- "height": 102
- },
- {
- "x": 96,
- "y": 102,
- "fileNum": 4009,
- "id": 1903,
- "width": 48,
- "height": 102
- },
- {
- "x": 144,
- "y": 102,
- "fileNum": 4009,
- "id": 1904,
- "width": 48,
- "height": 102
- },
- {
- "x": 192,
- "y": 102,
- "fileNum": 4009,
- "id": 1905,
- "width": 48,
- "height": 102
- },
- {
- "x": 240,
- "y": 102,
- "fileNum": 4009,
- "id": 1906,
- "width": 48,
- "height": 102
- },
- {
- "y": 204,
- "fileNum": 4009,
- "id": 1907,
- "width": 32,
- "height": 102
- },
- {
- "x": 32,
- "y": 204,
- "fileNum": 4009,
- "id": 1908,
- "width": 32,
- "height": 102
- },
- {
- "x": 74,
- "y": 204,
- "fileNum": 4009,
- "id": 1909,
- "width": 32,
- "height": 102
- },
- {
- "x": 112,
- "y": 204,
- "fileNum": 4009,
- "id": 1910,
- "width": 32,
- "height": 102
- },
- {
- "x": 148,
- "y": 204,
- "fileNum": 4009,
- "id": 1911,
- "width": 32,
- "height": 102
- },
- {
- "y": 306,
- "fileNum": 4009,
- "id": 1912,
- "width": 32,
- "height": 100
- },
- {
- "x": 32,
- "y": 306,
- "fileNum": 4009,
- "id": 1913,
- "width": 32,
- "height": 100
- },
- {
- "x": 72,
- "y": 306,
- "fileNum": 4009,
- "id": 1914,
- "width": 32,
- "height": 100
- },
- {
- "x": 108,
- "y": 306,
- "fileNum": 4009,
- "id": 1915,
- "width": 32,
- "height": 100
- },
- {
- "x": 142,
- "y": 306,
- "fileNum": 4009,
- "id": 1916,
- "width": 32,
- "height": 100
- },
- {
- "fileNum": 4010,
- "id": 1921,
- "width": 44,
- "height": 106
- },
- {
- "x": 44,
- "fileNum": 4010,
- "id": 1922,
- "width": 44,
- "height": 106
- },
- {
- "x": 88,
- "fileNum": 4010,
- "id": 1923,
- "width": 44,
- "height": 106
- },
- {
- "x": 132,
- "fileNum": 4010,
- "id": 1924,
- "width": 44,
- "height": 106
- },
- {
- "x": 176,
- "fileNum": 4010,
- "id": 1925,
- "width": 44,
- "height": 106
- },
- {
- "x": 220,
- "fileNum": 4010,
- "id": 1926,
- "width": 44,
- "height": 106
- },
- {
- "y": 106,
- "fileNum": 4010,
- "id": 1927,
- "width": 44,
- "height": 106
- },
- {
- "x": 44,
- "y": 106,
- "fileNum": 4010,
- "id": 1928,
- "width": 44,
- "height": 106
- },
- {
- "x": 88,
- "y": 106,
- "fileNum": 4010,
- "id": 1929,
- "width": 44,
- "height": 106
- },
- {
- "x": 134,
- "y": 106,
- "fileNum": 4010,
- "id": 1930,
- "width": 44,
- "height": 106
- },
- {
- "x": 178,
- "y": 106,
- "fileNum": 4010,
- "id": 1931,
- "width": 44,
- "height": 106
- },
- {
- "x": 222,
- "y": 106,
- "fileNum": 4010,
- "id": 1932,
- "width": 44,
- "height": 106
- },
- {
- "y": 212,
- "fileNum": 4010,
- "id": 1933,
- "width": 40,
- "height": 106
- },
- {
- "x": 40,
- "y": 212,
- "fileNum": 4010,
- "id": 1934,
- "width": 40,
- "height": 106
- },
- {
- "x": 80,
- "y": 212,
- "fileNum": 4010,
- "id": 1935,
- "width": 40,
- "height": 106
- },
- {
- "x": 120,
- "y": 212,
- "fileNum": 4010,
- "id": 1936,
- "width": 40,
- "height": 106
- },
- {
- "x": 160,
- "y": 212,
- "fileNum": 4010,
- "id": 1937,
- "width": 40,
- "height": 106
- },
- {
- "y": 318,
- "fileNum": 4010,
- "id": 1938,
- "width": 40,
- "height": 106
- },
- {
- "x": 34,
- "y": 318,
- "fileNum": 4010,
- "id": 1939,
- "width": 40,
- "height": 106
- },
- {
- "x": 80,
- "y": 318,
- "fileNum": 4010,
- "id": 1940,
- "width": 40,
- "height": 106
- },
- {
- "x": 120,
- "y": 318,
- "fileNum": 4010,
- "id": 1941,
- "width": 40,
- "height": 106
- },
- {
- "x": 160,
- "y": 318,
- "fileNum": 4010,
- "id": 1942,
- "width": 40,
- "height": 106
- },
- {
- "fileNum": 4011,
- "id": 1947,
- "width": 52,
- "height": 134
- },
- {
- "x": 52,
- "fileNum": 4011,
- "id": 1948,
- "width": 52,
- "height": 134
- },
- {
- "x": 104,
- "fileNum": 4011,
- "id": 1949,
- "width": 52,
- "height": 134
- },
- {
- "x": 156,
- "fileNum": 4011,
- "id": 1950,
- "width": 52,
- "height": 134
- },
- {
- "x": 208,
- "fileNum": 4011,
- "id": 1951,
- "width": 52,
- "height": 134
- },
- {
- "x": 260,
- "fileNum": 4011,
- "id": 1952,
- "width": 52,
- "height": 134
- },
- {
- "y": 128,
- "fileNum": 4011,
- "id": 1953,
- "width": 52,
- "height": 134
- },
- {
- "x": 52,
- "y": 128,
- "fileNum": 4011,
- "id": 1954,
- "width": 52,
- "height": 134
- },
- {
- "x": 104,
- "y": 128,
- "fileNum": 4011,
- "id": 1955,
- "width": 52,
- "height": 134
- },
- {
- "x": 156,
- "y": 128,
- "fileNum": 4011,
- "id": 1956,
- "width": 52,
- "height": 134
- },
- {
- "x": 208,
- "y": 128,
- "fileNum": 4011,
- "id": 1957,
- "width": 52,
- "height": 134
- },
- {
- "x": 260,
- "y": 128,
- "fileNum": 4011,
- "id": 1958,
- "width": 52,
- "height": 134
- },
- {
- "y": 256,
- "fileNum": 4011,
- "id": 1959,
- "width": 52,
- "height": 134
- },
- {
- "x": 52,
- "y": 256,
- "fileNum": 4011,
- "id": 1960,
- "width": 52,
- "height": 134
- },
- {
- "x": 104,
- "y": 256,
- "fileNum": 4011,
- "id": 1961,
- "width": 52,
- "height": 134
- },
- {
- "x": 156,
- "y": 256,
- "fileNum": 4011,
- "id": 1962,
- "width": 52,
- "height": 134
- },
- {
- "x": 208,
- "y": 256,
- "fileNum": 4011,
- "id": 1963,
- "width": 52,
- "height": 134
- },
- {
- "y": 410,
- "fileNum": 4011,
- "id": 1964,
- "width": 52,
- "height": 128
- },
- {
- "x": 46,
- "y": 410,
- "fileNum": 4011,
- "id": 1965,
- "width": 52,
- "height": 128
- },
- {
- "x": 96,
- "y": 410,
- "fileNum": 4011,
- "id": 1966,
- "width": 52,
- "height": 128
- },
- {
- "x": 152,
- "y": 410,
- "fileNum": 4011,
- "id": 1967,
- "width": 52,
- "height": 128
- },
- {
- "x": 204,
- "y": 408,
- "fileNum": 4011,
- "id": 1968,
- "width": 52,
- "height": 128
- },
- {
- "fileNum": 4021,
- "id": 1973,
- "width": 120,
- "height": 340
- },
- {
- "fileNum": 4022,
- "id": 1974,
- "width": 120,
- "height": 340
- },
- {
- "fileNum": 4023,
- "id": 1975,
- "width": 120,
- "height": 340
- },
- {
- "fileNum": 4024,
- "id": 1976,
- "width": 120,
- "height": 340
- },
- {
- "fileNum": 4025,
- "id": 1977,
- "width": 120,
- "height": 340
- },
- {
- "fileNum": 4026,
- "id": 1978,
- "width": 120,
- "height": 340
- },
- {
- "fileNum": 4027,
- "id": 1979,
- "width": 120,
- "height": 340
- },
- {
- "fileNum": 4028,
- "id": 1980,
- "width": 120,
- "height": 340
- },
- {
- "fileNum": 4017,
- "id": 1981,
- "width": 340,
- "height": 120
- },
- {
- "fileNum": 4018,
- "id": 1982,
- "width": 340,
- "height": 120
- },
- {
- "fileNum": 4019,
- "id": 1983,
- "width": 340,
- "height": 120
- },
- {
- "fileNum": 4020,
- "id": 1984,
- "width": 340,
- "height": 120
- },
- {
- "fileNum": 4013,
- "id": 1985,
- "width": 340,
- "height": 120
- },
- {
- "fileNum": 4014,
- "id": 1986,
- "width": 340,
- "height": 120
- },
- {
- "fileNum": 4015,
- "id": 1987,
- "width": 340,
- "height": 120
- },
- {
- "fileNum": 4016,
- "id": 1988,
- "width": 340,
- "height": 120
- },
- {
- "fileNum": 8115,
- "id": 1993,
- "width": 258,
- "height": 256
- },
- {
- "x": 258,
- "fileNum": 8115,
- "id": 1994,
- "width": 258,
- "height": 256
- },
- {
- "x": 512,
- "fileNum": 8115,
- "id": 1995,
- "width": 258,
- "height": 256
- },
- {
- "x": 768,
- "fileNum": 8115,
- "id": 1996,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 15204,
- "id": 1997,
- "width": 120,
- "height": 120
- },
- {
- "fileNum": 418,
- "id": 1998,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22053,
- "id": 1999,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 24007,
- "id": 2000,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 24007,
- "id": 2001,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 24007,
- "id": 2002,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 24007,
- "id": 2003,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 24007,
- "id": 2004,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 24007,
- "id": 2005,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 24007,
- "id": 2006,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 24007,
- "id": 2007,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 24007,
- "id": 2008,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 24007,
- "id": 2009,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 24007,
- "id": 2010,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 24007,
- "id": 2011,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 24007,
- "id": 2012,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 24007,
- "id": 2013,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 24007,
- "id": 2014,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 24007,
- "id": 2015,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 24007,
- "id": 2016,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 24007,
- "id": 2017,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 24007,
- "id": 2018,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 24007,
- "id": 2019,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 24007,
- "id": 2020,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 24007,
- "id": 2021,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 190,
- "id": 2022,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 190,
- "id": 2023,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 190,
- "id": 2024,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 190,
- "id": 2025,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 190,
- "id": 2026,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 190,
- "id": 2027,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 190,
- "id": 2028,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 190,
- "id": 2029,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 190,
- "id": 2030,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 190,
- "id": 2031,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 190,
- "id": 2032,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 190,
- "id": 2033,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 190,
- "id": 2034,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 190,
- "id": 2035,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 190,
- "id": 2036,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 190,
- "id": 2037,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 190,
- "id": 2038,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 190,
- "id": 2039,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 190,
- "id": 2040,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 190,
- "id": 2041,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 190,
- "id": 2042,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 190,
- "id": 2043,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 191,
- "id": 2044,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 191,
- "id": 2045,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 191,
- "id": 2046,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 191,
- "id": 2047,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 191,
- "id": 2048,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 191,
- "id": 2049,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 191,
- "id": 2050,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 191,
- "id": 2051,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 191,
- "id": 2052,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 191,
- "id": 2053,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 191,
- "id": 2054,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 191,
- "id": 2055,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 191,
- "id": 2056,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 191,
- "id": 2057,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 191,
- "id": 2058,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 191,
- "id": 2059,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 191,
- "id": 2060,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 191,
- "id": 2061,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 191,
- "id": 2062,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 191,
- "id": 2063,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 191,
- "id": 2064,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 191,
- "id": 2065,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 192,
- "id": 2066,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 192,
- "id": 2067,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 192,
- "id": 2068,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 192,
- "id": 2069,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 192,
- "id": 2070,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 192,
- "id": 2071,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 192,
- "id": 2072,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 192,
- "id": 2073,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 192,
- "id": 2074,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 192,
- "id": 2075,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 192,
- "id": 2076,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 192,
- "id": 2077,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 192,
- "id": 2078,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 192,
- "id": 2079,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 192,
- "id": 2080,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 192,
- "id": 2081,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 192,
- "id": 2082,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 192,
- "id": 2083,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 192,
- "id": 2084,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 192,
- "id": 2085,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 192,
- "id": 2086,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 192,
- "id": 2087,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 193,
- "id": 2088,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 193,
- "id": 2089,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 193,
- "id": 2090,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 193,
- "id": 2091,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 193,
- "id": 2092,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 193,
- "id": 2093,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 193,
- "id": 2094,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 193,
- "id": 2095,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 193,
- "id": 2096,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 193,
- "id": 2097,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 193,
- "id": 2098,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 193,
- "id": 2099,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 193,
- "id": 2100,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 193,
- "id": 2101,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 193,
- "id": 2102,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 193,
- "id": 2103,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 193,
- "id": 2104,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 193,
- "id": 2105,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 193,
- "id": 2106,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 193,
- "id": 2107,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 193,
- "id": 2108,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 193,
- "id": 2109,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 17006,
- "id": 2110,
- "width": 194,
- "height": 134
- },
- {
- "x": 194,
- "fileNum": 17006,
- "id": 2111,
- "width": 194,
- "height": 134
- },
- {
- "x": 388,
- "fileNum": 17006,
- "id": 2112,
- "width": 194,
- "height": 134
- },
- {
- "x": 582,
- "fileNum": 17006,
- "id": 2113,
- "width": 194,
- "height": 134
- },
- {
- "y": 134,
- "fileNum": 17006,
- "id": 2114,
- "width": 194,
- "height": 134
- },
- {
- "x": 194,
- "y": 134,
- "fileNum": 17006,
- "id": 2115,
- "width": 194,
- "height": 134
- },
- {
- "x": 388,
- "y": 134,
- "fileNum": 17006,
- "id": 2116,
- "width": 194,
- "height": 134
- },
- {
- "x": 582,
- "y": 134,
- "fileNum": 17006,
- "id": 2117,
- "width": 194,
- "height": 134
- },
- {
- "y": 268,
- "fileNum": 17006,
- "id": 2118,
- "width": 130,
- "height": 194
- },
- {
- "x": 130,
- "y": 268,
- "fileNum": 17006,
- "id": 2119,
- "width": 130,
- "height": 194
- },
- {
- "x": 260,
- "y": 268,
- "fileNum": 17006,
- "id": 2120,
- "width": 130,
- "height": 194
- },
- {
- "x": 390,
- "y": 268,
- "fileNum": 17006,
- "id": 2121,
- "width": 130,
- "height": 194
- },
- {
- "y": 462,
- "fileNum": 17006,
- "id": 2122,
- "width": 130,
- "height": 198
- },
- {
- "x": 130,
- "y": 462,
- "fileNum": 17006,
- "id": 2123,
- "width": 130,
- "height": 198
- },
- {
- "x": 260,
- "y": 462,
- "fileNum": 17006,
- "id": 2124,
- "width": 130,
- "height": 198
- },
- {
- "x": 390,
- "y": 462,
- "fileNum": 17006,
- "id": 2125,
- "width": 130,
- "height": 198
- },
- {
- "fileNum": 15061,
- "id": 2130,
- "width": 66,
- "height": 106
- },
- {
- "x": 84,
- "fileNum": 15061,
- "id": 2131,
- "width": 66,
- "height": 106
- },
- {
- "y": 106,
- "fileNum": 15061,
- "id": 2132,
- "width": 66,
- "height": 106
- },
- {
- "x": 84,
- "y": 106,
- "fileNum": 15061,
- "id": 2133,
- "width": 66,
- "height": 106
- },
- {
- "fileNum": 13003,
- "id": 2134,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 13004,
- "id": 2135,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 13005,
- "id": 2136,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 13006,
- "id": 2137,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15068,
- "id": 2138,
- "width": 140,
- "height": 120
- },
- {
- "fileNum": 15069,
- "id": 2139,
- "width": 140,
- "height": 100
- },
- {
- "fileNum": 4133,
- "id": 2140,
- "width": 48,
- "height": 62
- },
- {
- "x": 48,
- "fileNum": 4133,
- "id": 2141,
- "width": 48,
- "height": 62
- },
- {
- "x": 96,
- "fileNum": 4133,
- "id": 2142,
- "width": 48,
- "height": 62
- },
- {
- "x": 144,
- "fileNum": 4133,
- "id": 2143,
- "width": 48,
- "height": 62
- },
- {
- "x": 192,
- "fileNum": 4133,
- "id": 2144,
- "width": 48,
- "height": 62
- },
- {
- "x": 240,
- "fileNum": 4133,
- "id": 2145,
- "width": 48,
- "height": 62
- },
- {
- "x": 288,
- "fileNum": 4133,
- "id": 2146,
- "width": 48,
- "height": 62
- },
- {
- "x": 336,
- "fileNum": 4133,
- "id": 2147,
- "width": 48,
- "height": 62
- },
- {
- "y": 62,
- "fileNum": 4133,
- "id": 2148,
- "width": 48,
- "height": 62
- },
- {
- "x": 48,
- "y": 62,
- "fileNum": 4133,
- "id": 2149,
- "width": 48,
- "height": 62
- },
- {
- "x": 96,
- "y": 62,
- "fileNum": 4133,
- "id": 2150,
- "width": 48,
- "height": 62
- },
- {
- "x": 144,
- "y": 62,
- "fileNum": 4133,
- "id": 2151,
- "width": 48,
- "height": 62
- },
- {
- "x": 192,
- "y": 62,
- "fileNum": 4133,
- "id": 2152,
- "width": 48,
- "height": 62
- },
- {
- "x": 240,
- "y": 62,
- "fileNum": 4133,
- "id": 2153,
- "width": 48,
- "height": 62
- },
- {
- "x": 288,
- "y": 62,
- "fileNum": 4133,
- "id": 2154,
- "width": 48,
- "height": 62
- },
- {
- "x": 336,
- "y": 62,
- "fileNum": 4133,
- "id": 2155,
- "width": 48,
- "height": 62
- },
- {
- "y": 124,
- "fileNum": 4133,
- "id": 2156,
- "width": 48,
- "height": 62
- },
- {
- "x": 48,
- "y": 124,
- "fileNum": 4133,
- "id": 2157,
- "width": 48,
- "height": 62
- },
- {
- "x": 96,
- "y": 124,
- "fileNum": 4133,
- "id": 2158,
- "width": 48,
- "height": 62
- },
- {
- "x": 144,
- "y": 124,
- "fileNum": 4133,
- "id": 2159,
- "width": 48,
- "height": 62
- },
- {
- "x": 192,
- "y": 124,
- "fileNum": 4133,
- "id": 2160,
- "width": 48,
- "height": 62
- },
- {
- "x": 240,
- "y": 124,
- "fileNum": 4133,
- "id": 2161,
- "width": 48,
- "height": 62
- },
- {
- "x": 288,
- "y": 124,
- "fileNum": 4133,
- "id": 2162,
- "width": 48,
- "height": 62
- },
- {
- "x": 336,
- "y": 124,
- "fileNum": 4133,
- "id": 2163,
- "width": 48,
- "height": 62
- },
- {
- "y": 186,
- "fileNum": 4133,
- "id": 2164,
- "width": 48,
- "height": 62
- },
- {
- "x": 48,
- "y": 186,
- "fileNum": 4133,
- "id": 2165,
- "width": 48,
- "height": 62
- },
- {
- "x": 96,
- "y": 186,
- "fileNum": 4133,
- "id": 2166,
- "width": 48,
- "height": 62
- },
- {
- "x": 144,
- "y": 186,
- "fileNum": 4133,
- "id": 2167,
- "width": 48,
- "height": 62
- },
- {
- "x": 192,
- "y": 186,
- "fileNum": 4133,
- "id": 2168,
- "width": 48,
- "height": 62
- },
- {
- "x": 240,
- "y": 186,
- "fileNum": 4133,
- "id": 2169,
- "width": 48,
- "height": 62
- },
- {
- "x": 288,
- "y": 186,
- "fileNum": 4133,
- "id": 2170,
- "width": 48,
- "height": 62
- },
- {
- "x": 336,
- "y": 186,
- "fileNum": 4133,
- "id": 2171,
- "width": 48,
- "height": 62
- },
- {
- "fileNum": 15064,
- "id": 2172,
- "width": 48,
- "height": 200
- },
- {
- "fileNum": 15065,
- "id": 2173,
- "width": 34,
- "height": 144
- },
- {
- "fileNum": 15066,
- "id": 2174,
- "width": 250,
- "height": 182
- },
- {
- "fileNum": 15067,
- "id": 2175,
- "width": 210,
- "height": 278
- },
- {
- "fileNum": 9021,
- "id": 2176,
- "width": 98,
- "height": 172
- },
- {
- "x": 96,
- "fileNum": 9021,
- "id": 2177,
- "width": 98,
- "height": 172
- },
- {
- "fileNum": 4134,
- "id": 2178,
- "width": 102,
- "height": 70
- },
- {
- "x": 102,
- "fileNum": 4134,
- "id": 2179,
- "width": 102,
- "height": 70
- },
- {
- "x": 204,
- "fileNum": 4134,
- "id": 2180,
- "width": 102,
- "height": 70
- },
- {
- "x": 306,
- "fileNum": 4134,
- "id": 2181,
- "width": 102,
- "height": 70
- },
- {
- "x": 408,
- "fileNum": 4134,
- "id": 2182,
- "width": 102,
- "height": 70
- },
- {
- "x": 510,
- "fileNum": 4134,
- "id": 2183,
- "width": 102,
- "height": 70
- },
- {
- "x": 612,
- "fileNum": 4134,
- "id": 2184,
- "width": 102,
- "height": 70
- },
- {
- "x": 714,
- "fileNum": 4134,
- "id": 2185,
- "width": 102,
- "height": 70
- },
- {
- "y": 70,
- "fileNum": 4134,
- "id": 2186,
- "width": 102,
- "height": 70
- },
- {
- "x": 102,
- "y": 70,
- "fileNum": 4134,
- "id": 2187,
- "width": 102,
- "height": 70
- },
- {
- "x": 204,
- "y": 70,
- "fileNum": 4134,
- "id": 2188,
- "width": 102,
- "height": 70
- },
- {
- "x": 306,
- "y": 70,
- "fileNum": 4134,
- "id": 2189,
- "width": 102,
- "height": 70
- },
- {
- "x": 408,
- "y": 70,
- "fileNum": 4134,
- "id": 2190,
- "width": 102,
- "height": 70
- },
- {
- "x": 510,
- "y": 70,
- "fileNum": 4134,
- "id": 2191,
- "width": 102,
- "height": 70
- },
- {
- "x": 612,
- "y": 70,
- "fileNum": 4134,
- "id": 2192,
- "width": 102,
- "height": 70
- },
- {
- "x": 714,
- "y": 70,
- "fileNum": 4134,
- "id": 2193,
- "width": 102,
- "height": 70
- },
- {
- "y": 140,
- "fileNum": 4134,
- "id": 2194,
- "width": 102,
- "height": 70
- },
- {
- "x": 102,
- "y": 140,
- "fileNum": 4134,
- "id": 2195,
- "width": 102,
- "height": 70
- },
- {
- "x": 204,
- "y": 140,
- "fileNum": 4134,
- "id": 2196,
- "width": 102,
- "height": 70
- },
- {
- "x": 306,
- "y": 140,
- "fileNum": 4134,
- "id": 2197,
- "width": 102,
- "height": 70
- },
- {
- "x": 408,
- "y": 140,
- "fileNum": 4134,
- "id": 2198,
- "width": 102,
- "height": 70
- },
- {
- "x": 510,
- "y": 140,
- "fileNum": 4134,
- "id": 2199,
- "width": 102,
- "height": 70
- },
- {
- "x": 612,
- "y": 140,
- "fileNum": 4134,
- "id": 2200,
- "width": 102,
- "height": 70
- },
- {
- "x": 714,
- "y": 140,
- "fileNum": 4134,
- "id": 2201,
- "width": 102,
- "height": 70
- },
- {
- "y": 210,
- "fileNum": 4134,
- "id": 2202,
- "width": 102,
- "height": 70
- },
- {
- "x": 102,
- "y": 210,
- "fileNum": 4134,
- "id": 2203,
- "width": 102,
- "height": 70
- },
- {
- "x": 204,
- "y": 210,
- "fileNum": 4134,
- "id": 2204,
- "width": 102,
- "height": 70
- },
- {
- "x": 306,
- "y": 210,
- "fileNum": 4134,
- "id": 2205,
- "width": 102,
- "height": 70
- },
- {
- "x": 408,
- "y": 210,
- "fileNum": 4134,
- "id": 2206,
- "width": 102,
- "height": 70
- },
- {
- "x": 510,
- "y": 210,
- "fileNum": 4134,
- "id": 2207,
- "width": 102,
- "height": 70
- },
- {
- "x": 612,
- "y": 210,
- "fileNum": 4134,
- "id": 2208,
- "width": 102,
- "height": 70
- },
- {
- "x": 714,
- "y": 210,
- "fileNum": 4134,
- "id": 2209,
- "width": 102,
- "height": 70
- },
- {
- "fileNum": 4135,
- "id": 2210,
- "width": 160,
- "height": 108
- },
- {
- "x": 160,
- "fileNum": 4135,
- "id": 2211,
- "width": 160,
- "height": 108
- },
- {
- "x": 320,
- "fileNum": 4135,
- "id": 2212,
- "width": 160,
- "height": 108
- },
- {
- "x": 480,
- "fileNum": 4135,
- "id": 2213,
- "width": 160,
- "height": 108
- },
- {
- "x": 640,
- "fileNum": 4135,
- "id": 2214,
- "width": 160,
- "height": 108
- },
- {
- "x": 800,
- "fileNum": 4135,
- "id": 2215,
- "width": 160,
- "height": 108
- },
- {
- "x": 960,
- "fileNum": 4135,
- "id": 2216,
- "width": 160,
- "height": 108
- },
- {
- "x": 1120,
- "fileNum": 4135,
- "id": 2217,
- "width": 160,
- "height": 108
- },
- {
- "y": 108,
- "fileNum": 4135,
- "id": 2218,
- "width": 160,
- "height": 108
- },
- {
- "x": 160,
- "y": 108,
- "fileNum": 4135,
- "id": 2219,
- "width": 160,
- "height": 108
- },
- {
- "x": 320,
- "y": 108,
- "fileNum": 4135,
- "id": 2220,
- "width": 160,
- "height": 108
- },
- {
- "x": 480,
- "y": 108,
- "fileNum": 4135,
- "id": 2221,
- "width": 160,
- "height": 108
- },
- {
- "x": 640,
- "y": 108,
- "fileNum": 4135,
- "id": 2222,
- "width": 160,
- "height": 108
- },
- {
- "x": 800,
- "y": 108,
- "fileNum": 4135,
- "id": 2223,
- "width": 160,
- "height": 108
- },
- {
- "x": 960,
- "y": 108,
- "fileNum": 4135,
- "id": 2224,
- "width": 160,
- "height": 108
- },
- {
- "x": 1120,
- "y": 108,
- "fileNum": 4135,
- "id": 2225,
- "width": 160,
- "height": 108
- },
- {
- "y": 216,
- "fileNum": 4135,
- "id": 2226,
- "width": 160,
- "height": 108
- },
- {
- "x": 160,
- "y": 216,
- "fileNum": 4135,
- "id": 2227,
- "width": 160,
- "height": 108
- },
- {
- "x": 320,
- "y": 216,
- "fileNum": 4135,
- "id": 2228,
- "width": 160,
- "height": 108
- },
- {
- "x": 480,
- "y": 216,
- "fileNum": 4135,
- "id": 2229,
- "width": 160,
- "height": 108
- },
- {
- "x": 640,
- "y": 216,
- "fileNum": 4135,
- "id": 2230,
- "width": 160,
- "height": 108
- },
- {
- "x": 800,
- "y": 216,
- "fileNum": 4135,
- "id": 2231,
- "width": 160,
- "height": 108
- },
- {
- "x": 960,
- "y": 216,
- "fileNum": 4135,
- "id": 2232,
- "width": 160,
- "height": 108
- },
- {
- "x": 1120,
- "y": 216,
- "fileNum": 4135,
- "id": 2233,
- "width": 160,
- "height": 108
- },
- {
- "y": 324,
- "fileNum": 4135,
- "id": 2234,
- "width": 160,
- "height": 108
- },
- {
- "x": 160,
- "y": 324,
- "fileNum": 4135,
- "id": 2235,
- "width": 160,
- "height": 108
- },
- {
- "x": 320,
- "y": 324,
- "fileNum": 4135,
- "id": 2236,
- "width": 160,
- "height": 108
- },
- {
- "x": 480,
- "y": 324,
- "fileNum": 4135,
- "id": 2237,
- "width": 160,
- "height": 108
- },
- {
- "x": 640,
- "y": 324,
- "fileNum": 4135,
- "id": 2238,
- "width": 160,
- "height": 108
- },
- {
- "x": 800,
- "y": 324,
- "fileNum": 4135,
- "id": 2239,
- "width": 160,
- "height": 108
- },
- {
- "x": 960,
- "y": 324,
- "fileNum": 4135,
- "id": 2240,
- "width": 160,
- "height": 108
- },
- {
- "x": 1120,
- "y": 324,
- "fileNum": 4135,
- "id": 2241,
- "width": 160,
- "height": 108
- },
- {
- "fileNum": 4076,
- "id": 2242,
- "width": 58,
- "height": 64
- },
- {
- "x": 58,
- "fileNum": 4076,
- "id": 2243,
- "width": 58,
- "height": 64
- },
- {
- "x": 116,
- "fileNum": 4076,
- "id": 2244,
- "width": 58,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 4076,
- "id": 2245,
- "width": 58,
- "height": 64
- },
- {
- "x": 58,
- "y": 64,
- "fileNum": 4076,
- "id": 2246,
- "width": 58,
- "height": 64
- },
- {
- "x": 116,
- "y": 64,
- "fileNum": 4076,
- "id": 2247,
- "width": 58,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 4076,
- "id": 2248,
- "width": 58,
- "height": 64
- },
- {
- "x": 58,
- "y": 128,
- "fileNum": 4076,
- "id": 2249,
- "width": 58,
- "height": 64
- },
- {
- "x": 116,
- "y": 128,
- "fileNum": 4076,
- "id": 2250,
- "width": 58,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 4076,
- "id": 2251,
- "width": 58,
- "height": 64
- },
- {
- "x": 58,
- "y": 192,
- "fileNum": 4076,
- "id": 2252,
- "width": 58,
- "height": 64
- },
- {
- "x": 116,
- "y": 192,
- "fileNum": 4076,
- "id": 2253,
- "width": 58,
- "height": 64
- },
- {
- "fileNum": 4077,
- "id": 2254,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "fileNum": 4077,
- "id": 2255,
- "width": 64,
- "height": 50
- },
- {
- "y": 48,
- "fileNum": 4077,
- "id": 2256,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "y": 48,
- "fileNum": 4077,
- "id": 2257,
- "width": 64,
- "height": 50
- },
- {
- "y": 96,
- "fileNum": 4077,
- "id": 2258,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "y": 96,
- "fileNum": 4077,
- "id": 2259,
- "width": 64,
- "height": 50
- },
- {
- "y": 144,
- "fileNum": 4077,
- "id": 2260,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "y": 144,
- "fileNum": 4077,
- "id": 2261,
- "width": 64,
- "height": 50
- },
- {
- "fileNum": 4078,
- "id": 2262,
- "width": 150,
- "height": 100
- },
- {
- "x": 148,
- "fileNum": 4078,
- "id": 2263,
- "width": 150,
- "height": 100
- },
- {
- "x": 296,
- "fileNum": 4078,
- "id": 2264,
- "width": 150,
- "height": 100
- },
- {
- "x": 444,
- "fileNum": 4078,
- "id": 2265,
- "width": 150,
- "height": 100
- },
- {
- "y": 98,
- "fileNum": 4078,
- "id": 2266,
- "width": 150,
- "height": 100
- },
- {
- "x": 148,
- "y": 98,
- "fileNum": 4078,
- "id": 2267,
- "width": 150,
- "height": 100
- },
- {
- "x": 296,
- "y": 98,
- "fileNum": 4078,
- "id": 2268,
- "width": 150,
- "height": 100
- },
- {
- "x": 444,
- "y": 98,
- "fileNum": 4078,
- "id": 2269,
- "width": 150,
- "height": 100
- },
- {
- "y": 196,
- "fileNum": 4078,
- "id": 2270,
- "width": 150,
- "height": 100
- },
- {
- "x": 148,
- "y": 196,
- "fileNum": 4078,
- "id": 2271,
- "width": 150,
- "height": 100
- },
- {
- "x": 296,
- "y": 196,
- "fileNum": 4078,
- "id": 2272,
- "width": 150,
- "height": 100
- },
- {
- "x": 444,
- "y": 196,
- "fileNum": 4078,
- "id": 2273,
- "width": 150,
- "height": 100
- },
- {
- "y": 294,
- "fileNum": 4078,
- "id": 2274,
- "width": 150,
- "height": 100
- },
- {
- "x": 148,
- "y": 294,
- "fileNum": 4078,
- "id": 2275,
- "width": 150,
- "height": 100
- },
- {
- "x": 296,
- "y": 294,
- "fileNum": 4078,
- "id": 2276,
- "width": 150,
- "height": 100
- },
- {
- "x": 444,
- "y": 294,
- "fileNum": 4078,
- "id": 2277,
- "width": 150,
- "height": 100
- },
- {
- "fileNum": 3084,
- "id": 2278,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 3084,
- "id": 2279,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 3084,
- "id": 2280,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 3084,
- "id": 2281,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 3084,
- "id": 2282,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 3084,
- "id": 2283,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 3084,
- "id": 2284,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 3084,
- "id": 2285,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 3084,
- "id": 2286,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 3084,
- "id": 2287,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 3084,
- "id": 2288,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 3084,
- "id": 2289,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 3084,
- "id": 2290,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 3084,
- "id": 2291,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 3084,
- "id": 2292,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 3084,
- "id": 2293,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12063,
- "id": 2294,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12063,
- "id": 2295,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12063,
- "id": 2296,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12063,
- "id": 2297,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12063,
- "id": 2298,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12063,
- "id": 2299,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12063,
- "id": 2300,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12063,
- "id": 2301,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12063,
- "id": 2302,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12063,
- "id": 2303,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12063,
- "id": 2304,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12063,
- "id": 2305,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12063,
- "id": 2306,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12063,
- "id": 2307,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12063,
- "id": 2308,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12063,
- "id": 2309,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 3100,
- "id": 2310,
- "width": 200,
- "height": 108
- },
- {
- "x": 200,
- "fileNum": 3100,
- "id": 2311,
- "width": 200,
- "height": 108
- },
- {
- "x": 400,
- "fileNum": 3100,
- "id": 2312,
- "width": 200,
- "height": 108
- },
- {
- "x": 600,
- "fileNum": 3100,
- "id": 2313,
- "width": 200,
- "height": 108
- },
- {
- "x": 800,
- "fileNum": 3100,
- "id": 2314,
- "width": 200,
- "height": 108
- },
- {
- "x": 1000,
- "fileNum": 3100,
- "id": 2315,
- "width": 200,
- "height": 108
- },
- {
- "fileNum": 12043,
- "id": 2317,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12043,
- "id": 2318,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12043,
- "id": 2319,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12043,
- "id": 2320,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12043,
- "id": 2321,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12043,
- "id": 2322,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12043,
- "id": 2323,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12043,
- "id": 2324,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12043,
- "id": 2325,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12043,
- "id": 2326,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12043,
- "id": 2327,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12043,
- "id": 2328,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12043,
- "id": 2329,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12043,
- "id": 2330,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12043,
- "id": 2331,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12043,
- "id": 2332,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 9009,
- "id": 2333,
- "width": 234,
- "height": 256
- },
- {
- "x": 234,
- "fileNum": 9009,
- "id": 2334,
- "width": 234,
- "height": 256
- },
- {
- "y": 234,
- "fileNum": 9009,
- "id": 2335,
- "width": 234,
- "height": 256
- },
- {
- "x": 234,
- "y": 256,
- "fileNum": 9009,
- "id": 2336,
- "width": 234,
- "height": 256
- },
- {
- "fileNum": 2109,
- "id": 2337,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2109,
- "id": 2338,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2109,
- "id": 2339,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2109,
- "id": 2340,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 16072,
- "id": 2341,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 4081,
- "id": 2342,
- "width": 62,
- "height": 50
- },
- {
- "x": 62,
- "fileNum": 4081,
- "id": 2343,
- "width": 62,
- "height": 50
- },
- {
- "x": 124,
- "fileNum": 4081,
- "id": 2344,
- "width": 62,
- "height": 50
- },
- {
- "y": 50,
- "fileNum": 4081,
- "id": 2345,
- "width": 62,
- "height": 50
- },
- {
- "x": 62,
- "y": 50,
- "fileNum": 4081,
- "id": 2346,
- "width": 62,
- "height": 50
- },
- {
- "x": 124,
- "y": 50,
- "fileNum": 4081,
- "id": 2347,
- "width": 62,
- "height": 50
- },
- {
- "y": 100,
- "fileNum": 4081,
- "id": 2348,
- "width": 62,
- "height": 50
- },
- {
- "x": 62,
- "y": 100,
- "fileNum": 4081,
- "id": 2349,
- "width": 62,
- "height": 50
- },
- {
- "x": 124,
- "y": 100,
- "fileNum": 4081,
- "id": 2350,
- "width": 62,
- "height": 50
- },
- {
- "y": 150,
- "fileNum": 4081,
- "id": 2351,
- "width": 62,
- "height": 50
- },
- {
- "x": 62,
- "y": 150,
- "fileNum": 4081,
- "id": 2352,
- "width": 62,
- "height": 50
- },
- {
- "x": 124,
- "y": 150,
- "fileNum": 4081,
- "id": 2353,
- "width": 62,
- "height": 50
- },
- {
- "fileNum": 4082,
- "id": 2354,
- "width": 50,
- "height": 64
- },
- {
- "x": 48,
- "fileNum": 4082,
- "id": 2355,
- "width": 50,
- "height": 64
- },
- {
- "x": 96,
- "fileNum": 4082,
- "id": 2356,
- "width": 50,
- "height": 64
- },
- {
- "x": 142,
- "fileNum": 4082,
- "id": 2357,
- "width": 50,
- "height": 64
- },
- {
- "x": 188,
- "fileNum": 4082,
- "id": 2358,
- "width": 50,
- "height": 64
- },
- {
- "x": 234,
- "fileNum": 4082,
- "id": 2359,
- "width": 50,
- "height": 64
- },
- {
- "x": 282,
- "fileNum": 4082,
- "id": 2360,
- "width": 50,
- "height": 64
- },
- {
- "x": 328,
- "fileNum": 4082,
- "id": 2361,
- "width": 50,
- "height": 64
- },
- {
- "y": 62,
- "fileNum": 4082,
- "id": 2362,
- "width": 50,
- "height": 64
- },
- {
- "x": 48,
- "y": 62,
- "fileNum": 4082,
- "id": 2363,
- "width": 50,
- "height": 64
- },
- {
- "x": 96,
- "y": 62,
- "fileNum": 4082,
- "id": 2364,
- "width": 50,
- "height": 64
- },
- {
- "x": 142,
- "y": 62,
- "fileNum": 4082,
- "id": 2365,
- "width": 50,
- "height": 64
- },
- {
- "x": 188,
- "y": 62,
- "fileNum": 4082,
- "id": 2366,
- "width": 50,
- "height": 64
- },
- {
- "x": 234,
- "y": 62,
- "fileNum": 4082,
- "id": 2367,
- "width": 50,
- "height": 64
- },
- {
- "x": 282,
- "y": 62,
- "fileNum": 4082,
- "id": 2368,
- "width": 50,
- "height": 64
- },
- {
- "x": 328,
- "y": 62,
- "fileNum": 4082,
- "id": 2369,
- "width": 50,
- "height": 64
- },
- {
- "y": 124,
- "fileNum": 4082,
- "id": 2370,
- "width": 50,
- "height": 64
- },
- {
- "x": 48,
- "y": 124,
- "fileNum": 4082,
- "id": 2371,
- "width": 50,
- "height": 64
- },
- {
- "x": 96,
- "y": 124,
- "fileNum": 4082,
- "id": 2372,
- "width": 50,
- "height": 64
- },
- {
- "x": 142,
- "y": 124,
- "fileNum": 4082,
- "id": 2373,
- "width": 50,
- "height": 64
- },
- {
- "x": 188,
- "y": 124,
- "fileNum": 4082,
- "id": 2374,
- "width": 50,
- "height": 64
- },
- {
- "x": 234,
- "y": 124,
- "fileNum": 4082,
- "id": 2375,
- "width": 50,
- "height": 64
- },
- {
- "x": 282,
- "y": 124,
- "fileNum": 4082,
- "id": 2376,
- "width": 50,
- "height": 64
- },
- {
- "x": 328,
- "y": 124,
- "fileNum": 4082,
- "id": 2377,
- "width": 50,
- "height": 64
- },
- {
- "y": 186,
- "fileNum": 4082,
- "id": 2378,
- "width": 50,
- "height": 64
- },
- {
- "x": 48,
- "y": 186,
- "fileNum": 4082,
- "id": 2379,
- "width": 50,
- "height": 64
- },
- {
- "x": 96,
- "y": 186,
- "fileNum": 4082,
- "id": 2380,
- "width": 50,
- "height": 64
- },
- {
- "x": 142,
- "y": 186,
- "fileNum": 4082,
- "id": 2381,
- "width": 50,
- "height": 64
- },
- {
- "x": 188,
- "y": 186,
- "fileNum": 4082,
- "id": 2382,
- "width": 50,
- "height": 64
- },
- {
- "x": 234,
- "y": 186,
- "fileNum": 4082,
- "id": 2383,
- "width": 50,
- "height": 64
- },
- {
- "x": 282,
- "y": 186,
- "fileNum": 4082,
- "id": 2384,
- "width": 50,
- "height": 64
- },
- {
- "x": 328,
- "y": 186,
- "fileNum": 4082,
- "id": 2385,
- "width": 50,
- "height": 64
- },
- {
- "fileNum": 4083,
- "id": 2386,
- "width": 56,
- "height": 102
- },
- {
- "x": 56,
- "fileNum": 4083,
- "id": 2387,
- "width": 56,
- "height": 102
- },
- {
- "x": 112,
- "fileNum": 4083,
- "id": 2388,
- "width": 56,
- "height": 102
- },
- {
- "x": 168,
- "fileNum": 4083,
- "id": 2389,
- "width": 56,
- "height": 102
- },
- {
- "x": 224,
- "fileNum": 4083,
- "id": 2390,
- "width": 56,
- "height": 102
- },
- {
- "x": 280,
- "fileNum": 4083,
- "id": 2391,
- "width": 56,
- "height": 102
- },
- {
- "x": 336,
- "fileNum": 4083,
- "id": 2392,
- "width": 56,
- "height": 102
- },
- {
- "x": 392,
- "fileNum": 4083,
- "id": 2393,
- "width": 56,
- "height": 102
- },
- {
- "y": 102,
- "fileNum": 4083,
- "id": 2394,
- "width": 56,
- "height": 102
- },
- {
- "x": 56,
- "y": 102,
- "fileNum": 4083,
- "id": 2395,
- "width": 56,
- "height": 102
- },
- {
- "x": 112,
- "y": 102,
- "fileNum": 4083,
- "id": 2396,
- "width": 56,
- "height": 102
- },
- {
- "x": 168,
- "y": 102,
- "fileNum": 4083,
- "id": 2397,
- "width": 56,
- "height": 102
- },
- {
- "x": 224,
- "y": 102,
- "fileNum": 4083,
- "id": 2398,
- "width": 56,
- "height": 102
- },
- {
- "x": 280,
- "y": 102,
- "fileNum": 4083,
- "id": 2399,
- "width": 56,
- "height": 102
- },
- {
- "x": 336,
- "y": 102,
- "fileNum": 4083,
- "id": 2400,
- "width": 56,
- "height": 102
- },
- {
- "x": 392,
- "y": 102,
- "fileNum": 4083,
- "id": 2401,
- "width": 56,
- "height": 102
- },
- {
- "y": 204,
- "fileNum": 4083,
- "id": 2402,
- "width": 56,
- "height": 102
- },
- {
- "x": 56,
- "y": 204,
- "fileNum": 4083,
- "id": 2403,
- "width": 56,
- "height": 102
- },
- {
- "x": 112,
- "y": 204,
- "fileNum": 4083,
- "id": 2404,
- "width": 56,
- "height": 102
- },
- {
- "x": 168,
- "y": 204,
- "fileNum": 4083,
- "id": 2405,
- "width": 56,
- "height": 102
- },
- {
- "x": 224,
- "y": 204,
- "fileNum": 4083,
- "id": 2406,
- "width": 56,
- "height": 102
- },
- {
- "x": 280,
- "y": 204,
- "fileNum": 4083,
- "id": 2407,
- "width": 56,
- "height": 102
- },
- {
- "x": 336,
- "y": 204,
- "fileNum": 4083,
- "id": 2408,
- "width": 56,
- "height": 102
- },
- {
- "x": 392,
- "y": 204,
- "fileNum": 4083,
- "id": 2409,
- "width": 56,
- "height": 102
- },
- {
- "y": 306,
- "fileNum": 4083,
- "id": 2410,
- "width": 56,
- "height": 102
- },
- {
- "x": 56,
- "y": 306,
- "fileNum": 4083,
- "id": 2411,
- "width": 56,
- "height": 102
- },
- {
- "x": 112,
- "y": 306,
- "fileNum": 4083,
- "id": 2412,
- "width": 56,
- "height": 102
- },
- {
- "x": 168,
- "y": 306,
- "fileNum": 4083,
- "id": 2413,
- "width": 56,
- "height": 102
- },
- {
- "x": 224,
- "y": 306,
- "fileNum": 4083,
- "id": 2414,
- "width": 56,
- "height": 102
- },
- {
- "x": 280,
- "y": 306,
- "fileNum": 4083,
- "id": 2415,
- "width": 56,
- "height": 102
- },
- {
- "x": 336,
- "y": 306,
- "fileNum": 4083,
- "id": 2416,
- "width": 56,
- "height": 102
- },
- {
- "x": 392,
- "y": 306,
- "fileNum": 4083,
- "id": 2417,
- "width": 56,
- "height": 102
- },
- {
- "fileNum": 4084,
- "id": 2418,
- "width": 50,
- "height": 96
- },
- {
- "x": 48,
- "fileNum": 4084,
- "id": 2419,
- "width": 50,
- "height": 96
- },
- {
- "x": 94,
- "fileNum": 4084,
- "id": 2420,
- "width": 50,
- "height": 96
- },
- {
- "x": 140,
- "fileNum": 4084,
- "id": 2421,
- "width": 50,
- "height": 96
- },
- {
- "x": 188,
- "fileNum": 4084,
- "id": 2422,
- "width": 50,
- "height": 96
- },
- {
- "x": 236,
- "fileNum": 4084,
- "id": 2423,
- "width": 50,
- "height": 96
- },
- {
- "x": 282,
- "fileNum": 4084,
- "id": 2424,
- "width": 50,
- "height": 96
- },
- {
- "x": 330,
- "fileNum": 4084,
- "id": 2425,
- "width": 50,
- "height": 96
- },
- {
- "y": 94,
- "fileNum": 4084,
- "id": 2426,
- "width": 50,
- "height": 96
- },
- {
- "x": 48,
- "y": 94,
- "fileNum": 4084,
- "id": 2427,
- "width": 50,
- "height": 96
- },
- {
- "x": 94,
- "y": 94,
- "fileNum": 4084,
- "id": 2428,
- "width": 50,
- "height": 96
- },
- {
- "x": 140,
- "y": 94,
- "fileNum": 4084,
- "id": 2429,
- "width": 50,
- "height": 96
- },
- {
- "x": 188,
- "y": 94,
- "fileNum": 4084,
- "id": 2430,
- "width": 50,
- "height": 96
- },
- {
- "x": 236,
- "y": 94,
- "fileNum": 4084,
- "id": 2431,
- "width": 50,
- "height": 96
- },
- {
- "x": 282,
- "y": 94,
- "fileNum": 4084,
- "id": 2432,
- "width": 50,
- "height": 96
- },
- {
- "x": 330,
- "y": 94,
- "fileNum": 4084,
- "id": 2433,
- "width": 50,
- "height": 96
- },
- {
- "y": 188,
- "fileNum": 4084,
- "id": 2434,
- "width": 50,
- "height": 96
- },
- {
- "x": 48,
- "y": 188,
- "fileNum": 4084,
- "id": 2435,
- "width": 50,
- "height": 96
- },
- {
- "x": 94,
- "y": 188,
- "fileNum": 4084,
- "id": 2436,
- "width": 50,
- "height": 96
- },
- {
- "x": 140,
- "y": 188,
- "fileNum": 4084,
- "id": 2437,
- "width": 50,
- "height": 96
- },
- {
- "x": 188,
- "y": 188,
- "fileNum": 4084,
- "id": 2438,
- "width": 50,
- "height": 96
- },
- {
- "x": 236,
- "y": 188,
- "fileNum": 4084,
- "id": 2439,
- "width": 50,
- "height": 96
- },
- {
- "x": 282,
- "y": 188,
- "fileNum": 4084,
- "id": 2440,
- "width": 50,
- "height": 96
- },
- {
- "x": 330,
- "y": 188,
- "fileNum": 4084,
- "id": 2441,
- "width": 50,
- "height": 96
- },
- {
- "y": 282,
- "fileNum": 4084,
- "id": 2442,
- "width": 50,
- "height": 96
- },
- {
- "x": 48,
- "y": 282,
- "fileNum": 4084,
- "id": 2443,
- "width": 50,
- "height": 96
- },
- {
- "x": 94,
- "y": 282,
- "fileNum": 4084,
- "id": 2444,
- "width": 50,
- "height": 96
- },
- {
- "x": 140,
- "y": 282,
- "fileNum": 4084,
- "id": 2445,
- "width": 50,
- "height": 96
- },
- {
- "x": 188,
- "y": 282,
- "fileNum": 4084,
- "id": 2446,
- "width": 50,
- "height": 96
- },
- {
- "x": 236,
- "y": 282,
- "fileNum": 4084,
- "id": 2447,
- "width": 50,
- "height": 96
- },
- {
- "x": 282,
- "y": 282,
- "fileNum": 4084,
- "id": 2448,
- "width": 50,
- "height": 96
- },
- {
- "x": 330,
- "y": 282,
- "fileNum": 4084,
- "id": 2449,
- "width": 50,
- "height": 96
- },
- {
- "fileNum": 4085,
- "id": 2450,
- "width": 70,
- "height": 96
- },
- {
- "x": 68,
- "fileNum": 4085,
- "id": 2451,
- "width": 70,
- "height": 96
- },
- {
- "x": 136,
- "fileNum": 4085,
- "id": 2452,
- "width": 70,
- "height": 96
- },
- {
- "fileNum": 4086,
- "id": 2453,
- "width": 50,
- "height": 96
- },
- {
- "x": 48,
- "fileNum": 4086,
- "id": 2454,
- "width": 50,
- "height": 96
- },
- {
- "x": 96,
- "fileNum": 4086,
- "id": 2455,
- "width": 50,
- "height": 96
- },
- {
- "y": 94,
- "fileNum": 4086,
- "id": 2456,
- "width": 50,
- "height": 96
- },
- {
- "x": 48,
- "y": 94,
- "fileNum": 4086,
- "id": 2457,
- "width": 50,
- "height": 96
- },
- {
- "x": 96,
- "y": 94,
- "fileNum": 4086,
- "id": 2458,
- "width": 50,
- "height": 96
- },
- {
- "y": 188,
- "fileNum": 4086,
- "id": 2459,
- "width": 50,
- "height": 96
- },
- {
- "x": 48,
- "y": 188,
- "fileNum": 4086,
- "id": 2460,
- "width": 50,
- "height": 96
- },
- {
- "x": 96,
- "y": 188,
- "fileNum": 4086,
- "id": 2461,
- "width": 50,
- "height": 96
- },
- {
- "y": 282,
- "fileNum": 4086,
- "id": 2462,
- "width": 50,
- "height": 96
- },
- {
- "x": 48,
- "y": 282,
- "fileNum": 4086,
- "id": 2463,
- "width": 50,
- "height": 96
- },
- {
- "x": 96,
- "y": 282,
- "fileNum": 4086,
- "id": 2464,
- "width": 50,
- "height": 96
- },
- {
- "fileNum": 4087,
- "id": 2465,
- "width": 48,
- "height": 96
- },
- {
- "x": 46,
- "fileNum": 4087,
- "id": 2466,
- "width": 48,
- "height": 96
- },
- {
- "x": 94,
- "fileNum": 4087,
- "id": 2467,
- "width": 48,
- "height": 96
- },
- {
- "y": 94,
- "fileNum": 4087,
- "id": 2468,
- "width": 48,
- "height": 96
- },
- {
- "x": 46,
- "y": 94,
- "fileNum": 4087,
- "id": 2469,
- "width": 48,
- "height": 96
- },
- {
- "x": 94,
- "y": 94,
- "fileNum": 4087,
- "id": 2470,
- "width": 48,
- "height": 96
- },
- {
- "y": 188,
- "fileNum": 4087,
- "id": 2471,
- "width": 48,
- "height": 96
- },
- {
- "x": 46,
- "y": 188,
- "fileNum": 4087,
- "id": 2472,
- "width": 48,
- "height": 96
- },
- {
- "x": 94,
- "y": 188,
- "fileNum": 4087,
- "id": 2473,
- "width": 48,
- "height": 96
- },
- {
- "y": 282,
- "fileNum": 4087,
- "id": 2474,
- "width": 48,
- "height": 96
- },
- {
- "x": 46,
- "y": 282,
- "fileNum": 4087,
- "id": 2475,
- "width": 48,
- "height": 96
- },
- {
- "x": 94,
- "y": 282,
- "fileNum": 4087,
- "id": 2476,
- "width": 48,
- "height": 96
- },
- {
- "fileNum": 4088,
- "id": 2477,
- "width": 48,
- "height": 92
- },
- {
- "x": 48,
- "fileNum": 4088,
- "id": 2478,
- "width": 48,
- "height": 92
- },
- {
- "x": 96,
- "fileNum": 4088,
- "id": 2479,
- "width": 48,
- "height": 92
- },
- {
- "x": 144,
- "fileNum": 4088,
- "id": 2480,
- "width": 48,
- "height": 92
- },
- {
- "x": 192,
- "fileNum": 4088,
- "id": 2481,
- "width": 48,
- "height": 92
- },
- {
- "x": 240,
- "fileNum": 4088,
- "id": 2482,
- "width": 48,
- "height": 92
- },
- {
- "x": 288,
- "fileNum": 4088,
- "id": 2483,
- "width": 48,
- "height": 92
- },
- {
- "x": 336,
- "fileNum": 4088,
- "id": 2484,
- "width": 48,
- "height": 92
- },
- {
- "y": 92,
- "fileNum": 4088,
- "id": 2485,
- "width": 48,
- "height": 92
- },
- {
- "x": 48,
- "y": 92,
- "fileNum": 4088,
- "id": 2486,
- "width": 48,
- "height": 92
- },
- {
- "x": 96,
- "y": 92,
- "fileNum": 4088,
- "id": 2487,
- "width": 48,
- "height": 92
- },
- {
- "x": 144,
- "y": 92,
- "fileNum": 4088,
- "id": 2488,
- "width": 48,
- "height": 92
- },
- {
- "x": 192,
- "y": 92,
- "fileNum": 4088,
- "id": 2489,
- "width": 48,
- "height": 92
- },
- {
- "x": 240,
- "y": 92,
- "fileNum": 4088,
- "id": 2490,
- "width": 48,
- "height": 92
- },
- {
- "x": 288,
- "y": 92,
- "fileNum": 4088,
- "id": 2491,
- "width": 48,
- "height": 92
- },
- {
- "x": 336,
- "y": 92,
- "fileNum": 4088,
- "id": 2492,
- "width": 48,
- "height": 92
- },
- {
- "y": 184,
- "fileNum": 4088,
- "id": 2493,
- "width": 48,
- "height": 92
- },
- {
- "x": 48,
- "y": 184,
- "fileNum": 4088,
- "id": 2494,
- "width": 48,
- "height": 92
- },
- {
- "x": 96,
- "y": 184,
- "fileNum": 4088,
- "id": 2495,
- "width": 48,
- "height": 92
- },
- {
- "x": 144,
- "y": 184,
- "fileNum": 4088,
- "id": 2496,
- "width": 48,
- "height": 92
- },
- {
- "x": 192,
- "y": 184,
- "fileNum": 4088,
- "id": 2497,
- "width": 48,
- "height": 92
- },
- {
- "x": 240,
- "y": 184,
- "fileNum": 4088,
- "id": 2498,
- "width": 48,
- "height": 92
- },
- {
- "x": 288,
- "y": 184,
- "fileNum": 4088,
- "id": 2499,
- "width": 48,
- "height": 92
- },
- {
- "x": 336,
- "y": 184,
- "fileNum": 4088,
- "id": 2500,
- "width": 48,
- "height": 92
- },
- {
- "y": 276,
- "fileNum": 4088,
- "id": 2501,
- "width": 48,
- "height": 92
- },
- {
- "x": 48,
- "y": 276,
- "fileNum": 4088,
- "id": 2502,
- "width": 48,
- "height": 92
- },
- {
- "x": 96,
- "y": 276,
- "fileNum": 4088,
- "id": 2503,
- "width": 48,
- "height": 92
- },
- {
- "x": 144,
- "y": 276,
- "fileNum": 4088,
- "id": 2504,
- "width": 48,
- "height": 92
- },
- {
- "x": 192,
- "y": 276,
- "fileNum": 4088,
- "id": 2505,
- "width": 48,
- "height": 92
- },
- {
- "x": 240,
- "y": 276,
- "fileNum": 4088,
- "id": 2506,
- "width": 48,
- "height": 92
- },
- {
- "x": 288,
- "y": 276,
- "fileNum": 4088,
- "id": 2507,
- "width": 48,
- "height": 92
- },
- {
- "x": 336,
- "y": 276,
- "fileNum": 4088,
- "id": 2508,
- "width": 48,
- "height": 92
- },
- {
- "fileNum": 167,
- "id": 2509,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 167,
- "id": 2510,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 167,
- "id": 2511,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 167,
- "id": 2512,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 167,
- "id": 2513,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 167,
- "id": 2514,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 167,
- "id": 2515,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 167,
- "id": 2516,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 167,
- "id": 2517,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 167,
- "id": 2518,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 167,
- "id": 2519,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 167,
- "id": 2520,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 167,
- "id": 2521,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 167,
- "id": 2522,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 167,
- "id": 2523,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 167,
- "id": 2524,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 167,
- "id": 2525,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 167,
- "id": 2526,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 167,
- "id": 2527,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 167,
- "id": 2528,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 167,
- "id": 2529,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 167,
- "id": 2530,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 168,
- "id": 2531,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 168,
- "id": 2532,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 168,
- "id": 2533,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 168,
- "id": 2534,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 168,
- "id": 2535,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 168,
- "id": 2536,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 168,
- "id": 2537,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 168,
- "id": 2538,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 168,
- "id": 2539,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 168,
- "id": 2540,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 168,
- "id": 2541,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 168,
- "id": 2542,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 168,
- "id": 2543,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 168,
- "id": 2544,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 168,
- "id": 2545,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 168,
- "id": 2546,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 168,
- "id": 2547,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 168,
- "id": 2548,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 168,
- "id": 2549,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 168,
- "id": 2550,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 168,
- "id": 2551,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 168,
- "id": 2552,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 169,
- "id": 2553,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 169,
- "id": 2554,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 169,
- "id": 2555,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 169,
- "id": 2556,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 169,
- "id": 2557,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 169,
- "id": 2558,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 169,
- "id": 2559,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 169,
- "id": 2560,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 169,
- "id": 2561,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 169,
- "id": 2562,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 169,
- "id": 2563,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 169,
- "id": 2564,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 169,
- "id": 2565,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 169,
- "id": 2566,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 169,
- "id": 2567,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 169,
- "id": 2568,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 169,
- "id": 2569,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 169,
- "id": 2570,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 169,
- "id": 2571,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 169,
- "id": 2572,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 169,
- "id": 2573,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 169,
- "id": 2574,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 170,
- "id": 2575,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 170,
- "id": 2576,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 170,
- "id": 2577,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 170,
- "id": 2578,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 170,
- "id": 2579,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 170,
- "id": 2580,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 170,
- "id": 2581,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 170,
- "id": 2582,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 170,
- "id": 2583,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 170,
- "id": 2584,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 170,
- "id": 2585,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 170,
- "id": 2586,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 170,
- "id": 2587,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 170,
- "id": 2588,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 170,
- "id": 2589,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 170,
- "id": 2590,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 170,
- "id": 2591,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 170,
- "id": 2592,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 170,
- "id": 2593,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 170,
- "id": 2594,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 170,
- "id": 2595,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 170,
- "id": 2596,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 24000,
- "id": 2597,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 24000,
- "id": 2598,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 24000,
- "id": 2599,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 24000,
- "id": 2600,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 24000,
- "id": 2601,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 24000,
- "id": 2602,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 24000,
- "id": 2603,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 24000,
- "id": 2604,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 24000,
- "id": 2605,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 24000,
- "id": 2606,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 24000,
- "id": 2607,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 24000,
- "id": 2608,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 24000,
- "id": 2609,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 24000,
- "id": 2610,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 24000,
- "id": 2611,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 24000,
- "id": 2612,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 24000,
- "id": 2613,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 24000,
- "id": 2614,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 24000,
- "id": 2615,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 24000,
- "id": 2616,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 24000,
- "id": 2617,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 24000,
- "id": 2618,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 15055,
- "id": 2619,
- "width": 80,
- "height": 110
- },
- {
- "x": 78,
- "y": 18,
- "fileNum": 15055,
- "id": 2620,
- "width": 124,
- "height": 90
- },
- {
- "x": 6,
- "y": 116,
- "fileNum": 15055,
- "id": 2621,
- "width": 140,
- "height": 100
- },
- {
- "x": 10,
- "y": 220,
- "fileNum": 15055,
- "id": 2622,
- "width": 100,
- "height": 70
- },
- {
- "x": 4,
- "y": 290,
- "fileNum": 15055,
- "id": 2623,
- "width": 166,
- "height": 120
- },
- {
- "y": 410,
- "fileNum": 15055,
- "id": 2624,
- "width": 140,
- "height": 100
- },
- {
- "x": 4,
- "y": 508,
- "fileNum": 15055,
- "id": 2625,
- "width": 90,
- "height": 102
- },
- {
- "x": 100,
- "y": 512,
- "fileNum": 15055,
- "id": 2626,
- "width": 80,
- "height": 110
- },
- {
- "x": 4,
- "y": 616,
- "fileNum": 15055,
- "id": 2627,
- "width": 76,
- "height": 120
- },
- {
- "x": 90,
- "y": 630,
- "fileNum": 15055,
- "id": 2628,
- "width": 104,
- "height": 114
- },
- {
- "x": 6,
- "y": 740,
- "fileNum": 15055,
- "id": 2629,
- "width": 116,
- "height": 88
- },
- {
- "fileNum": 15070,
- "id": 2630,
- "width": 46,
- "height": 86
- },
- {
- "x": 46,
- "fileNum": 15070,
- "id": 2631,
- "width": 46,
- "height": 86
- },
- {
- "x": 92,
- "fileNum": 15070,
- "id": 2632,
- "width": 46,
- "height": 86
- },
- {
- "x": 138,
- "fileNum": 15070,
- "id": 2633,
- "width": 46,
- "height": 86
- },
- {
- "fileNum": 2110,
- "id": 2635,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2110,
- "id": 2636,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2110,
- "id": 2637,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2110,
- "id": 2638,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 22072,
- "id": 2639,
- "width": 50,
- "height": 204
- },
- {
- "fileNum": 15229,
- "id": 2640,
- "width": 132,
- "height": 142
- },
- {
- "fileNum": 172,
- "id": 2641,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 172,
- "id": 2642,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 172,
- "id": 2643,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 172,
- "id": 2644,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 172,
- "id": 2645,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 172,
- "id": 2646,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 172,
- "id": 2647,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 172,
- "id": 2648,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 172,
- "id": 2649,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 172,
- "id": 2650,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 172,
- "id": 2651,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 172,
- "id": 2652,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 172,
- "id": 2653,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 172,
- "id": 2654,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 172,
- "id": 2655,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 172,
- "id": 2656,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 172,
- "id": 2657,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 172,
- "id": 2658,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 172,
- "id": 2659,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 172,
- "id": 2660,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 172,
- "id": 2661,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 172,
- "id": 2662,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 24001,
- "id": 2663,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 24001,
- "id": 2664,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 24001,
- "id": 2665,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 24001,
- "id": 2666,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 24001,
- "id": 2667,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 24001,
- "id": 2668,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 24001,
- "id": 2669,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 24001,
- "id": 2670,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 24001,
- "id": 2671,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 24001,
- "id": 2672,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 24001,
- "id": 2673,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 24001,
- "id": 2674,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 24001,
- "id": 2675,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 24001,
- "id": 2676,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 24001,
- "id": 2677,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 24001,
- "id": 2678,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 24001,
- "id": 2679,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 24001,
- "id": 2680,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 24001,
- "id": 2681,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 24001,
- "id": 2682,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 24001,
- "id": 2683,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 24001,
- "id": 2684,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4089,
- "id": 2685,
- "width": 52,
- "height": 92
- },
- {
- "x": 50,
- "fileNum": 4089,
- "id": 2686,
- "width": 52,
- "height": 92
- },
- {
- "x": 100,
- "fileNum": 4089,
- "id": 2687,
- "width": 52,
- "height": 92
- },
- {
- "x": 148,
- "fileNum": 4089,
- "id": 2688,
- "width": 52,
- "height": 92
- },
- {
- "x": 196,
- "fileNum": 4089,
- "id": 2689,
- "width": 52,
- "height": 92
- },
- {
- "x": 246,
- "fileNum": 4089,
- "id": 2690,
- "width": 52,
- "height": 92
- },
- {
- "y": 90,
- "fileNum": 4089,
- "id": 2691,
- "width": 52,
- "height": 92
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 4089,
- "id": 2692,
- "width": 52,
- "height": 92
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 4089,
- "id": 2693,
- "width": 52,
- "height": 92
- },
- {
- "x": 148,
- "y": 90,
- "fileNum": 4089,
- "id": 2694,
- "width": 52,
- "height": 92
- },
- {
- "x": 196,
- "y": 90,
- "fileNum": 4089,
- "id": 2695,
- "width": 52,
- "height": 92
- },
- {
- "x": 246,
- "y": 90,
- "fileNum": 4089,
- "id": 2696,
- "width": 52,
- "height": 92
- },
- {
- "y": 180,
- "fileNum": 4089,
- "id": 2697,
- "width": 52,
- "height": 92
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 4089,
- "id": 2698,
- "width": 52,
- "height": 92
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 4089,
- "id": 2699,
- "width": 52,
- "height": 92
- },
- {
- "x": 148,
- "y": 180,
- "fileNum": 4089,
- "id": 2700,
- "width": 52,
- "height": 92
- },
- {
- "x": 196,
- "y": 180,
- "fileNum": 4089,
- "id": 2701,
- "width": 52,
- "height": 92
- },
- {
- "x": 246,
- "y": 180,
- "fileNum": 4089,
- "id": 2702,
- "width": 52,
- "height": 92
- },
- {
- "y": 270,
- "fileNum": 4089,
- "id": 2703,
- "width": 52,
- "height": 92
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 4089,
- "id": 2704,
- "width": 52,
- "height": 92
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 4089,
- "id": 2705,
- "width": 52,
- "height": 92
- },
- {
- "x": 148,
- "y": 270,
- "fileNum": 4089,
- "id": 2706,
- "width": 52,
- "height": 92
- },
- {
- "x": 196,
- "y": 270,
- "fileNum": 4089,
- "id": 2707,
- "width": 52,
- "height": 92
- },
- {
- "x": 246,
- "y": 270,
- "fileNum": 4089,
- "id": 2708,
- "width": 52,
- "height": 92
- },
- {
- "fileNum": 4090,
- "id": 2709,
- "width": 52,
- "height": 92
- },
- {
- "x": 50,
- "fileNum": 4090,
- "id": 2710,
- "width": 52,
- "height": 92
- },
- {
- "x": 100,
- "fileNum": 4090,
- "id": 2711,
- "width": 52,
- "height": 92
- },
- {
- "y": 90,
- "fileNum": 4090,
- "id": 2712,
- "width": 52,
- "height": 92
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 4090,
- "id": 2713,
- "width": 52,
- "height": 92
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 4090,
- "id": 2714,
- "width": 52,
- "height": 92
- },
- {
- "y": 180,
- "fileNum": 4090,
- "id": 2715,
- "width": 52,
- "height": 92
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 4090,
- "id": 2716,
- "width": 52,
- "height": 92
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 4090,
- "id": 2717,
- "width": 52,
- "height": 92
- },
- {
- "y": 270,
- "fileNum": 4090,
- "id": 2718,
- "width": 52,
- "height": 92
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 4090,
- "id": 2719,
- "width": 52,
- "height": 92
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 4090,
- "id": 2720,
- "width": 52,
- "height": 92
- },
- {
- "fileNum": 173,
- "id": 2721,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 173,
- "id": 2722,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 173,
- "id": 2723,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 173,
- "id": 2724,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 173,
- "id": 2725,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 173,
- "id": 2726,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 173,
- "id": 2727,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 173,
- "id": 2728,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 173,
- "id": 2729,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 173,
- "id": 2730,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 173,
- "id": 2731,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 173,
- "id": 2732,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 173,
- "id": 2733,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 173,
- "id": 2734,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 173,
- "id": 2735,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 173,
- "id": 2736,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 173,
- "id": 2737,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 173,
- "id": 2738,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 173,
- "id": 2739,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 173,
- "id": 2740,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 173,
- "id": 2741,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 173,
- "id": 2742,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4091,
- "id": 2743,
- "width": 52,
- "height": 92
- },
- {
- "x": 50,
- "fileNum": 4091,
- "id": 2744,
- "width": 52,
- "height": 92
- },
- {
- "x": 100,
- "fileNum": 4091,
- "id": 2745,
- "width": 52,
- "height": 92
- },
- {
- "x": 150,
- "fileNum": 4091,
- "id": 2746,
- "width": 52,
- "height": 92
- },
- {
- "x": 200,
- "fileNum": 4091,
- "id": 2747,
- "width": 52,
- "height": 92
- },
- {
- "x": 246,
- "fileNum": 4091,
- "id": 2748,
- "width": 52,
- "height": 92
- },
- {
- "x": 296,
- "fileNum": 4091,
- "id": 2749,
- "width": 52,
- "height": 92
- },
- {
- "y": 90,
- "fileNum": 4091,
- "id": 2750,
- "width": 52,
- "height": 92
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 4091,
- "id": 2751,
- "width": 52,
- "height": 92
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 4091,
- "id": 2752,
- "width": 52,
- "height": 92
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 4091,
- "id": 2753,
- "width": 52,
- "height": 92
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 4091,
- "id": 2754,
- "width": 52,
- "height": 92
- },
- {
- "x": 246,
- "y": 90,
- "fileNum": 4091,
- "id": 2755,
- "width": 52,
- "height": 92
- },
- {
- "x": 296,
- "y": 90,
- "fileNum": 4091,
- "id": 2756,
- "width": 52,
- "height": 92
- },
- {
- "y": 180,
- "fileNum": 4091,
- "id": 2757,
- "width": 52,
- "height": 92
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 4091,
- "id": 2758,
- "width": 52,
- "height": 92
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 4091,
- "id": 2759,
- "width": 52,
- "height": 92
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 4091,
- "id": 2760,
- "width": 52,
- "height": 92
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 4091,
- "id": 2761,
- "width": 52,
- "height": 92
- },
- {
- "x": 246,
- "y": 180,
- "fileNum": 4091,
- "id": 2762,
- "width": 52,
- "height": 92
- },
- {
- "x": 296,
- "y": 180,
- "fileNum": 4091,
- "id": 2763,
- "width": 52,
- "height": 92
- },
- {
- "y": 270,
- "fileNum": 4091,
- "id": 2764,
- "width": 52,
- "height": 92
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 4091,
- "id": 2765,
- "width": 52,
- "height": 92
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 4091,
- "id": 2766,
- "width": 52,
- "height": 92
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 4091,
- "id": 2767,
- "width": 52,
- "height": 92
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 4091,
- "id": 2768,
- "width": 52,
- "height": 92
- },
- {
- "x": 246,
- "y": 270,
- "fileNum": 4091,
- "id": 2769,
- "width": 52,
- "height": 92
- },
- {
- "x": 296,
- "y": 270,
- "fileNum": 4091,
- "id": 2770,
- "width": 52,
- "height": 92
- },
- {
- "fileNum": 174,
- "id": 2771,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 174,
- "id": 2772,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 174,
- "id": 2773,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 174,
- "id": 2774,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 174,
- "id": 2775,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 174,
- "id": 2776,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 174,
- "id": 2777,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 174,
- "id": 2778,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 174,
- "id": 2779,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 174,
- "id": 2780,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 174,
- "id": 2781,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 174,
- "id": 2782,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 174,
- "id": 2783,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 174,
- "id": 2784,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 174,
- "id": 2785,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 174,
- "id": 2786,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 174,
- "id": 2787,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 174,
- "id": 2788,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 174,
- "id": 2789,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 174,
- "id": 2790,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 174,
- "id": 2791,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 174,
- "id": 2792,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 24002,
- "id": 2793,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 24002,
- "id": 2794,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 24002,
- "id": 2795,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 24002,
- "id": 2796,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 24002,
- "id": 2797,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 24002,
- "id": 2798,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 24002,
- "id": 2799,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 24002,
- "id": 2800,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 24002,
- "id": 2801,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 24002,
- "id": 2802,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 24002,
- "id": 2803,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 24002,
- "id": 2804,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 24002,
- "id": 2805,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 24002,
- "id": 2806,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 24002,
- "id": 2807,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 24002,
- "id": 2808,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 24002,
- "id": 2809,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 24002,
- "id": 2810,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 24002,
- "id": 2811,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 24002,
- "id": 2812,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 24002,
- "id": 2813,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 24002,
- "id": 2814,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 24003,
- "id": 2815,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 24003,
- "id": 2816,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 24003,
- "id": 2817,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 24003,
- "id": 2818,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 24003,
- "id": 2819,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 24003,
- "id": 2820,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 24003,
- "id": 2821,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 24003,
- "id": 2822,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 24003,
- "id": 2823,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 24003,
- "id": 2824,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 24003,
- "id": 2825,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 24003,
- "id": 2826,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 24003,
- "id": 2827,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 24003,
- "id": 2828,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 24003,
- "id": 2829,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 24003,
- "id": 2830,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 24003,
- "id": 2831,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 24003,
- "id": 2832,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 24003,
- "id": 2833,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 24003,
- "id": 2834,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 24003,
- "id": 2835,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 24003,
- "id": 2836,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4092,
- "id": 2837,
- "width": 198,
- "height": 100
- },
- {
- "x": 198,
- "fileNum": 4092,
- "id": 2838,
- "width": 198,
- "height": 100
- },
- {
- "x": 396,
- "fileNum": 4092,
- "id": 2839,
- "width": 198,
- "height": 100
- },
- {
- "x": 594,
- "fileNum": 4092,
- "id": 2840,
- "width": 198,
- "height": 100
- },
- {
- "x": 792,
- "fileNum": 4092,
- "id": 2841,
- "width": 198,
- "height": 100
- },
- {
- "x": 990,
- "fileNum": 4092,
- "id": 2842,
- "width": 198,
- "height": 100
- },
- {
- "y": 100,
- "fileNum": 4092,
- "id": 2843,
- "width": 198,
- "height": 100
- },
- {
- "x": 198,
- "y": 100,
- "fileNum": 4092,
- "id": 2844,
- "width": 198,
- "height": 100
- },
- {
- "x": 396,
- "y": 100,
- "fileNum": 4092,
- "id": 2845,
- "width": 198,
- "height": 100
- },
- {
- "x": 594,
- "y": 100,
- "fileNum": 4092,
- "id": 2846,
- "width": 198,
- "height": 100
- },
- {
- "x": 792,
- "y": 100,
- "fileNum": 4092,
- "id": 2847,
- "width": 198,
- "height": 100
- },
- {
- "x": 990,
- "y": 100,
- "fileNum": 4092,
- "id": 2848,
- "width": 198,
- "height": 100
- },
- {
- "y": 200,
- "fileNum": 4092,
- "id": 2849,
- "width": 198,
- "height": 100
- },
- {
- "x": 198,
- "y": 200,
- "fileNum": 4092,
- "id": 2850,
- "width": 198,
- "height": 100
- },
- {
- "x": 396,
- "y": 200,
- "fileNum": 4092,
- "id": 2851,
- "width": 198,
- "height": 100
- },
- {
- "x": 594,
- "y": 200,
- "fileNum": 4092,
- "id": 2852,
- "width": 198,
- "height": 100
- },
- {
- "x": 792,
- "y": 200,
- "fileNum": 4092,
- "id": 2853,
- "width": 198,
- "height": 100
- },
- {
- "x": 990,
- "y": 200,
- "fileNum": 4092,
- "id": 2854,
- "width": 198,
- "height": 100
- },
- {
- "y": 300,
- "fileNum": 4092,
- "id": 2855,
- "width": 198,
- "height": 100
- },
- {
- "x": 198,
- "y": 300,
- "fileNum": 4092,
- "id": 2856,
- "width": 198,
- "height": 100
- },
- {
- "x": 396,
- "y": 300,
- "fileNum": 4092,
- "id": 2857,
- "width": 198,
- "height": 100
- },
- {
- "x": 594,
- "y": 300,
- "fileNum": 4092,
- "id": 2858,
- "width": 198,
- "height": 100
- },
- {
- "x": 792,
- "y": 300,
- "fileNum": 4092,
- "id": 2859,
- "width": 198,
- "height": 100
- },
- {
- "x": 990,
- "y": 300,
- "fileNum": 4092,
- "id": 2860,
- "width": 198,
- "height": 100
- },
- {
- "fileNum": 4093,
- "id": 2861,
- "width": 108,
- "height": 70
- },
- {
- "x": 104,
- "fileNum": 4093,
- "id": 2862,
- "width": 108,
- "height": 70
- },
- {
- "x": 212,
- "fileNum": 4093,
- "id": 2863,
- "width": 108,
- "height": 70
- },
- {
- "x": 318,
- "fileNum": 4093,
- "id": 2864,
- "width": 108,
- "height": 70
- },
- {
- "y": 68,
- "fileNum": 4093,
- "id": 2865,
- "width": 108,
- "height": 70
- },
- {
- "x": 104,
- "y": 68,
- "fileNum": 4093,
- "id": 2866,
- "width": 108,
- "height": 70
- },
- {
- "x": 212,
- "y": 68,
- "fileNum": 4093,
- "id": 2867,
- "width": 108,
- "height": 70
- },
- {
- "x": 318,
- "y": 68,
- "fileNum": 4093,
- "id": 2868,
- "width": 108,
- "height": 70
- },
- {
- "y": 138,
- "fileNum": 4093,
- "id": 2869,
- "width": 108,
- "height": 70
- },
- {
- "x": 104,
- "y": 138,
- "fileNum": 4093,
- "id": 2870,
- "width": 108,
- "height": 70
- },
- {
- "x": 212,
- "y": 138,
- "fileNum": 4093,
- "id": 2871,
- "width": 108,
- "height": 70
- },
- {
- "x": 318,
- "y": 138,
- "fileNum": 4093,
- "id": 2872,
- "width": 108,
- "height": 70
- },
- {
- "y": 208,
- "fileNum": 4093,
- "id": 2873,
- "width": 108,
- "height": 70
- },
- {
- "x": 104,
- "y": 208,
- "fileNum": 4093,
- "id": 2874,
- "width": 108,
- "height": 70
- },
- {
- "x": 212,
- "y": 208,
- "fileNum": 4093,
- "id": 2875,
- "width": 108,
- "height": 70
- },
- {
- "x": 318,
- "y": 208,
- "fileNum": 4093,
- "id": 2876,
- "width": 108,
- "height": 70
- },
- {
- "fileNum": 4094,
- "id": 2877,
- "width": 120,
- "height": 100
- },
- {
- "x": 118,
- "fileNum": 4094,
- "id": 2878,
- "width": 120,
- "height": 100
- },
- {
- "x": 236,
- "fileNum": 4094,
- "id": 2879,
- "width": 120,
- "height": 100
- },
- {
- "x": 354,
- "fileNum": 4094,
- "id": 2880,
- "width": 120,
- "height": 100
- },
- {
- "x": 472,
- "fileNum": 4094,
- "id": 2881,
- "width": 120,
- "height": 100
- },
- {
- "x": 590,
- "fileNum": 4094,
- "id": 2882,
- "width": 120,
- "height": 100
- },
- {
- "x": 708,
- "fileNum": 4094,
- "id": 2883,
- "width": 120,
- "height": 100
- },
- {
- "x": 826,
- "fileNum": 4094,
- "id": 2884,
- "width": 120,
- "height": 100
- },
- {
- "y": 98,
- "fileNum": 4094,
- "id": 2885,
- "width": 120,
- "height": 100
- },
- {
- "x": 118,
- "y": 98,
- "fileNum": 4094,
- "id": 2886,
- "width": 120,
- "height": 100
- },
- {
- "x": 236,
- "y": 98,
- "fileNum": 4094,
- "id": 2887,
- "width": 120,
- "height": 100
- },
- {
- "x": 354,
- "y": 98,
- "fileNum": 4094,
- "id": 2888,
- "width": 120,
- "height": 100
- },
- {
- "x": 472,
- "y": 98,
- "fileNum": 4094,
- "id": 2889,
- "width": 120,
- "height": 100
- },
- {
- "x": 590,
- "y": 98,
- "fileNum": 4094,
- "id": 2890,
- "width": 120,
- "height": 100
- },
- {
- "x": 708,
- "y": 98,
- "fileNum": 4094,
- "id": 2891,
- "width": 120,
- "height": 100
- },
- {
- "x": 826,
- "y": 98,
- "fileNum": 4094,
- "id": 2892,
- "width": 120,
- "height": 100
- },
- {
- "y": 196,
- "fileNum": 4094,
- "id": 2893,
- "width": 120,
- "height": 100
- },
- {
- "x": 118,
- "y": 196,
- "fileNum": 4094,
- "id": 2894,
- "width": 120,
- "height": 100
- },
- {
- "x": 236,
- "y": 196,
- "fileNum": 4094,
- "id": 2895,
- "width": 120,
- "height": 100
- },
- {
- "x": 354,
- "y": 196,
- "fileNum": 4094,
- "id": 2896,
- "width": 120,
- "height": 100
- },
- {
- "x": 472,
- "y": 196,
- "fileNum": 4094,
- "id": 2897,
- "width": 120,
- "height": 100
- },
- {
- "x": 590,
- "y": 196,
- "fileNum": 4094,
- "id": 2898,
- "width": 120,
- "height": 100
- },
- {
- "x": 708,
- "y": 196,
- "fileNum": 4094,
- "id": 2899,
- "width": 120,
- "height": 100
- },
- {
- "x": 826,
- "y": 196,
- "fileNum": 4094,
- "id": 2900,
- "width": 120,
- "height": 100
- },
- {
- "y": 294,
- "fileNum": 4094,
- "id": 2901,
- "width": 120,
- "height": 100
- },
- {
- "x": 118,
- "y": 294,
- "fileNum": 4094,
- "id": 2902,
- "width": 120,
- "height": 100
- },
- {
- "x": 236,
- "y": 294,
- "fileNum": 4094,
- "id": 2903,
- "width": 120,
- "height": 100
- },
- {
- "x": 354,
- "y": 294,
- "fileNum": 4094,
- "id": 2904,
- "width": 120,
- "height": 100
- },
- {
- "x": 472,
- "y": 294,
- "fileNum": 4094,
- "id": 2905,
- "width": 120,
- "height": 100
- },
- {
- "x": 590,
- "y": 294,
- "fileNum": 4094,
- "id": 2906,
- "width": 120,
- "height": 100
- },
- {
- "x": 708,
- "y": 294,
- "fileNum": 4094,
- "id": 2907,
- "width": 120,
- "height": 100
- },
- {
- "x": 826,
- "y": 294,
- "fileNum": 4094,
- "id": 2908,
- "width": 120,
- "height": 100
- },
- {
- "fileNum": 175,
- "id": 2909,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 175,
- "id": 2910,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 175,
- "id": 2911,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 175,
- "id": 2912,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 175,
- "id": 2913,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 175,
- "id": 2914,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 175,
- "id": 2915,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 175,
- "id": 2916,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 175,
- "id": 2917,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 175,
- "id": 2918,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 175,
- "id": 2919,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 175,
- "id": 2920,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 175,
- "id": 2921,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 175,
- "id": 2922,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 175,
- "id": 2923,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 175,
- "id": 2924,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 175,
- "id": 2925,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 175,
- "id": 2926,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 175,
- "id": 2927,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 175,
- "id": 2928,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 175,
- "id": 2929,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 175,
- "id": 2930,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 176,
- "id": 2931,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 176,
- "id": 2932,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 176,
- "id": 2933,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 176,
- "id": 2934,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 176,
- "id": 2935,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 176,
- "id": 2936,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 176,
- "id": 2937,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 176,
- "id": 2938,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 176,
- "id": 2939,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 176,
- "id": 2940,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 176,
- "id": 2941,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 176,
- "id": 2942,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 176,
- "id": 2943,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 176,
- "id": 2944,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 176,
- "id": 2945,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 176,
- "id": 2946,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 176,
- "id": 2947,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 176,
- "id": 2948,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 176,
- "id": 2949,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 176,
- "id": 2950,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 176,
- "id": 2951,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 176,
- "id": 2952,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 177,
- "id": 2953,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 177,
- "id": 2954,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 177,
- "id": 2955,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 177,
- "id": 2956,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 177,
- "id": 2957,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 177,
- "id": 2958,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 177,
- "id": 2959,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 177,
- "id": 2960,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 177,
- "id": 2961,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 177,
- "id": 2962,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 177,
- "id": 2963,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 177,
- "id": 2964,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 177,
- "id": 2965,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 177,
- "id": 2966,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 177,
- "id": 2967,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 177,
- "id": 2968,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 177,
- "id": 2969,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 177,
- "id": 2970,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 177,
- "id": 2971,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 177,
- "id": 2972,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 177,
- "id": 2973,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 177,
- "id": 2974,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 178,
- "id": 2975,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 178,
- "id": 2976,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 178,
- "id": 2977,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 178,
- "id": 2978,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 178,
- "id": 2979,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 178,
- "id": 2980,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 178,
- "id": 2981,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 178,
- "id": 2982,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 178,
- "id": 2983,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 178,
- "id": 2984,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 178,
- "id": 2985,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 178,
- "id": 2986,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 178,
- "id": 2987,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 178,
- "id": 2988,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 178,
- "id": 2989,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 178,
- "id": 2990,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 178,
- "id": 2991,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2111,
- "id": 2992,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2111,
- "id": 2993,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2111,
- "id": 2994,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2111,
- "id": 2995,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2062,
- "id": 2996,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2062,
- "id": 2997,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2062,
- "id": 2998,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2062,
- "id": 2999,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2053,
- "id": 3000,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2053,
- "id": 3001,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2053,
- "id": 3002,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2053,
- "id": 3003,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2043,
- "id": 3004,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2043,
- "id": 3005,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2043,
- "id": 3006,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2043,
- "id": 3007,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2045,
- "id": 3008,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2045,
- "id": 3009,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2045,
- "id": 3010,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2045,
- "id": 3011,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2050,
- "id": 3012,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2050,
- "id": 3013,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2050,
- "id": 3014,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2050,
- "id": 3015,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2052,
- "id": 3016,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2052,
- "id": 3017,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2052,
- "id": 3018,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2052,
- "id": 3019,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2063,
- "id": 3020,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2063,
- "id": 3021,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2063,
- "id": 3022,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2063,
- "id": 3023,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2066,
- "id": 3024,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2066,
- "id": 3025,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2066,
- "id": 3026,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2066,
- "id": 3027,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2068,
- "id": 3028,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2068,
- "id": 3029,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2068,
- "id": 3030,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2068,
- "id": 3031,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2074,
- "id": 3032,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2074,
- "id": 3033,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2074,
- "id": 3034,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2074,
- "id": 3035,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2085,
- "id": 3036,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2085,
- "id": 3037,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2085,
- "id": 3038,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2085,
- "id": 3039,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2087,
- "id": 3040,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2087,
- "id": 3041,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2087,
- "id": 3042,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2087,
- "id": 3043,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2088,
- "id": 3044,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2088,
- "id": 3045,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2088,
- "id": 3046,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2088,
- "id": 3047,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2089,
- "id": 3048,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2089,
- "id": 3049,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2089,
- "id": 3050,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2089,
- "id": 3051,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2091,
- "id": 3052,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2091,
- "id": 3053,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2091,
- "id": 3054,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2091,
- "id": 3055,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 17007,
- "id": 3056,
- "width": 194,
- "height": 134
- },
- {
- "x": 194,
- "fileNum": 17007,
- "id": 3057,
- "width": 194,
- "height": 134
- },
- {
- "x": 388,
- "fileNum": 17007,
- "id": 3058,
- "width": 194,
- "height": 134
- },
- {
- "x": 582,
- "fileNum": 17007,
- "id": 3059,
- "width": 194,
- "height": 134
- },
- {
- "y": 134,
- "fileNum": 17007,
- "id": 3060,
- "width": 194,
- "height": 134
- },
- {
- "x": 194,
- "y": 134,
- "fileNum": 17007,
- "id": 3061,
- "width": 194,
- "height": 134
- },
- {
- "x": 388,
- "y": 134,
- "fileNum": 17007,
- "id": 3062,
- "width": 194,
- "height": 134
- },
- {
- "x": 582,
- "y": 134,
- "fileNum": 17007,
- "id": 3063,
- "width": 194,
- "height": 134
- },
- {
- "y": 268,
- "fileNum": 17007,
- "id": 3064,
- "width": 130,
- "height": 194
- },
- {
- "x": 130,
- "y": 268,
- "fileNum": 17007,
- "id": 3065,
- "width": 130,
- "height": 194
- },
- {
- "x": 260,
- "y": 268,
- "fileNum": 17007,
- "id": 3066,
- "width": 130,
- "height": 194
- },
- {
- "x": 390,
- "y": 268,
- "fileNum": 17007,
- "id": 3067,
- "width": 130,
- "height": 194
- },
- {
- "y": 462,
- "fileNum": 17007,
- "id": 3068,
- "width": 130,
- "height": 198
- },
- {
- "x": 130,
- "y": 462,
- "fileNum": 17007,
- "id": 3069,
- "width": 130,
- "height": 198
- },
- {
- "x": 260,
- "y": 462,
- "fileNum": 17007,
- "id": 3070,
- "width": 130,
- "height": 198
- },
- {
- "x": 390,
- "y": 462,
- "fileNum": 17007,
- "id": 3071,
- "width": 130,
- "height": 198
- },
- {
- "fileNum": 104,
- "id": 3076,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 104,
- "id": 3077,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 104,
- "id": 3078,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 104,
- "id": 3079,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 104,
- "id": 3080,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 104,
- "id": 3081,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 104,
- "id": 3082,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 104,
- "id": 3083,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 104,
- "id": 3084,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 104,
- "id": 3085,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 104,
- "id": 3086,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 104,
- "id": 3087,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 104,
- "id": 3088,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 104,
- "id": 3089,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 104,
- "id": 3090,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 104,
- "id": 3091,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 104,
- "id": 3092,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 104,
- "id": 3093,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 104,
- "id": 3094,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 104,
- "id": 3095,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 104,
- "id": 3096,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 104,
- "id": 3097,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 104,
- "id": 3098,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 104,
- "id": 3099,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 104,
- "id": 3100,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2048,
- "id": 3101,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2048,
- "id": 3102,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2048,
- "id": 3103,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2048,
- "id": 3104,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2055,
- "id": 3105,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2055,
- "id": 3106,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2055,
- "id": 3107,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2055,
- "id": 3108,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2065,
- "id": 3109,
- "width": 34,
- "height": 32
- },
- {
- "x": 34,
- "fileNum": 2065,
- "id": 3110,
- "width": 34,
- "height": 32
- },
- {
- "x": 68,
- "fileNum": 2065,
- "id": 3111,
- "width": 34,
- "height": 32
- },
- {
- "x": 102,
- "fileNum": 2065,
- "id": 3112,
- "width": 34,
- "height": 32
- },
- {
- "fileNum": 2076,
- "id": 3113,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2076,
- "id": 3114,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2076,
- "id": 3115,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2076,
- "id": 3116,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2077,
- "id": 3117,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2077,
- "id": 3118,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2077,
- "id": 3119,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2077,
- "id": 3120,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2082,
- "id": 3121,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2082,
- "id": 3122,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2082,
- "id": 3123,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2082,
- "id": 3124,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2084,
- "id": 3125,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2084,
- "id": 3126,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2084,
- "id": 3127,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2084,
- "id": 3128,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 77,
- "id": 3129,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 77,
- "id": 3130,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 77,
- "id": 3131,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 77,
- "id": 3132,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 77,
- "id": 3133,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 77,
- "id": 3134,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 77,
- "id": 3135,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 77,
- "id": 3136,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 77,
- "id": 3137,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 77,
- "id": 3138,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 77,
- "id": 3139,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 77,
- "id": 3140,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 77,
- "id": 3141,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 77,
- "id": 3142,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 77,
- "id": 3143,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 77,
- "id": 3144,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 77,
- "id": 3145,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 77,
- "id": 3146,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 77,
- "id": 3147,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 77,
- "id": 3148,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 77,
- "id": 3149,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 77,
- "id": 3150,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 76,
- "id": 3155,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 78,
- "id": 3156,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 79,
- "id": 3157,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 79,
- "id": 3158,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 79,
- "id": 3159,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 79,
- "id": 3160,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 79,
- "id": 3161,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 79,
- "id": 3162,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 79,
- "id": 3163,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 79,
- "id": 3164,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 79,
- "id": 3165,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 79,
- "id": 3166,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 79,
- "id": 3167,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 79,
- "id": 3168,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 79,
- "id": 3169,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 79,
- "id": 3170,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 79,
- "id": 3171,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 79,
- "id": 3172,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 79,
- "id": 3173,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 79,
- "id": 3174,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 79,
- "id": 3175,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 79,
- "id": 3176,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 79,
- "id": 3177,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 79,
- "id": 3178,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 15200,
- "id": 3187,
- "width": 110,
- "height": 268
- },
- {
- "x": 228,
- "fileNum": 15200,
- "id": 3188,
- "width": 110,
- "height": 268
- },
- {
- "x": 342,
- "fileNum": 15200,
- "id": 3189,
- "width": 110,
- "height": 268
- },
- {
- "x": 456,
- "fileNum": 15200,
- "id": 3190,
- "width": 110,
- "height": 268
- },
- {
- "x": 570,
- "fileNum": 15200,
- "id": 3191,
- "width": 110,
- "height": 268
- },
- {
- "x": 684,
- "fileNum": 15200,
- "id": 3192,
- "width": 110,
- "height": 268
- },
- {
- "x": 798,
- "fileNum": 15200,
- "id": 3193,
- "width": 110,
- "height": 268
- },
- {
- "x": 912,
- "fileNum": 15200,
- "id": 3194,
- "width": 110,
- "height": 268
- },
- {
- "x": 1026,
- "fileNum": 15200,
- "id": 3195,
- "width": 110,
- "height": 268
- },
- {
- "x": 1140,
- "fileNum": 15200,
- "id": 3196,
- "width": 110,
- "height": 268
- },
- {
- "fileNum": 2112,
- "id": 3198,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2112,
- "id": 3199,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2112,
- "id": 3200,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2112,
- "id": 3201,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2042,
- "id": 3202,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2042,
- "id": 3203,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2042,
- "id": 3204,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2042,
- "id": 3205,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2057,
- "id": 3206,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2057,
- "id": 3207,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2057,
- "id": 3208,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2057,
- "id": 3209,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2078,
- "id": 3210,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2078,
- "id": 3211,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2078,
- "id": 3212,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2078,
- "id": 3213,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2079,
- "id": 3214,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2079,
- "id": 3215,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2079,
- "id": 3216,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2079,
- "id": 3217,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2080,
- "id": 3218,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2080,
- "id": 3219,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2080,
- "id": 3220,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2080,
- "id": 3221,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2081,
- "id": 3222,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2081,
- "id": 3223,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2081,
- "id": 3224,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2081,
- "id": 3225,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 80,
- "id": 3226,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 81,
- "id": 3227,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 81,
- "id": 3228,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 81,
- "id": 3229,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 81,
- "id": 3230,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 81,
- "id": 3231,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 81,
- "id": 3232,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 81,
- "id": 3233,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 81,
- "id": 3234,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 81,
- "id": 3235,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 81,
- "id": 3236,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 81,
- "id": 3237,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 81,
- "id": 3238,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 81,
- "id": 3239,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 81,
- "id": 3240,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 81,
- "id": 3241,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 81,
- "id": 3242,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 81,
- "id": 3243,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 81,
- "id": 3244,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 81,
- "id": 3245,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 81,
- "id": 3246,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 81,
- "id": 3247,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 81,
- "id": 3248,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 82,
- "id": 3253,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 83,
- "id": 3254,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 83,
- "id": 3255,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 83,
- "id": 3256,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 83,
- "id": 3257,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 83,
- "id": 3258,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 83,
- "id": 3259,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 83,
- "id": 3260,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 83,
- "id": 3261,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 83,
- "id": 3262,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 83,
- "id": 3263,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 83,
- "id": 3264,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 83,
- "id": 3265,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 83,
- "id": 3266,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 83,
- "id": 3267,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 83,
- "id": 3268,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 83,
- "id": 3269,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 83,
- "id": 3270,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 83,
- "id": 3271,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 83,
- "id": 3272,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 83,
- "id": 3273,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 83,
- "id": 3274,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 83,
- "id": 3275,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 15201,
- "id": 3280,
- "width": 110,
- "height": 200
- },
- {
- "x": 112,
- "fileNum": 15201,
- "id": 3281,
- "width": 110,
- "height": 200
- },
- {
- "x": 224,
- "fileNum": 15201,
- "id": 3282,
- "width": 110,
- "height": 200
- },
- {
- "x": 336,
- "fileNum": 15201,
- "id": 3283,
- "width": 110,
- "height": 200
- },
- {
- "x": 448,
- "fileNum": 15201,
- "id": 3284,
- "width": 110,
- "height": 200
- },
- {
- "x": 560,
- "fileNum": 15201,
- "id": 3285,
- "width": 110,
- "height": 200
- },
- {
- "x": 672,
- "fileNum": 15201,
- "id": 3286,
- "width": 110,
- "height": 200
- },
- {
- "x": 784,
- "fileNum": 15201,
- "id": 3287,
- "width": 110,
- "height": 200
- },
- {
- "x": 896,
- "fileNum": 15201,
- "id": 3288,
- "width": 110,
- "height": 200
- },
- {
- "x": 1008,
- "fileNum": 15201,
- "id": 3289,
- "width": 110,
- "height": 200
- },
- {
- "x": 1120,
- "fileNum": 15201,
- "id": 3290,
- "width": 110,
- "height": 200
- },
- {
- "x": 1232,
- "fileNum": 15201,
- "id": 3291,
- "width": 110,
- "height": 200
- },
- {
- "x": 1344,
- "fileNum": 15201,
- "id": 3292,
- "width": 110,
- "height": 200
- },
- {
- "x": 1456,
- "fileNum": 15201,
- "id": 3293,
- "width": 110,
- "height": 200
- },
- {
- "x": 1568,
- "fileNum": 15201,
- "id": 3294,
- "width": 110,
- "height": 200
- },
- {
- "x": 1680,
- "fileNum": 15201,
- "id": 3295,
- "width": 110,
- "height": 200
- },
- {
- "x": 1792,
- "fileNum": 15201,
- "id": 3296,
- "width": 110,
- "height": 200
- },
- {
- "x": 1904,
- "fileNum": 15201,
- "id": 3297,
- "width": 110,
- "height": 200
- },
- {
- "x": 2016,
- "fileNum": 15201,
- "id": 3298,
- "width": 110,
- "height": 200
- },
- {
- "x": 2128,
- "fileNum": 15201,
- "id": 3299,
- "width": 110,
- "height": 200
- },
- {
- "fileNum": 2047,
- "id": 3301,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2047,
- "id": 3302,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2047,
- "id": 3303,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2047,
- "id": 3304,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2096,
- "id": 3305,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2096,
- "id": 3306,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2096,
- "id": 3307,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2096,
- "id": 3308,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2096,
- "id": 3309,
- "width": 34,
- "height": 32
- },
- {
- "fileNum": 8208,
- "id": 3310,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8208,
- "id": 3311,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8208,
- "id": 3312,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8208,
- "id": 3313,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8208,
- "id": 3314,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8208,
- "id": 3315,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8208,
- "id": 3316,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8208,
- "id": 3317,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8208,
- "id": 3318,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8208,
- "id": 3319,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8208,
- "id": 3320,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8208,
- "id": 3321,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8208,
- "id": 3322,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8208,
- "id": 3323,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8208,
- "id": 3324,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8208,
- "id": 3325,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8209,
- "id": 3326,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8209,
- "id": 3327,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8209,
- "id": 3328,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8209,
- "id": 3329,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8209,
- "id": 3330,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8209,
- "id": 3331,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8209,
- "id": 3332,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8209,
- "id": 3333,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8209,
- "id": 3334,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8209,
- "id": 3335,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8209,
- "id": 3336,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8209,
- "id": 3337,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8209,
- "id": 3338,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8209,
- "id": 3339,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8209,
- "id": 3340,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8209,
- "id": 3341,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8210,
- "id": 3342,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8210,
- "id": 3343,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8210,
- "id": 3344,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8210,
- "id": 3345,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8210,
- "id": 3346,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8210,
- "id": 3347,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8210,
- "id": 3348,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8210,
- "id": 3349,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8210,
- "id": 3350,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8210,
- "id": 3351,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8210,
- "id": 3352,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8210,
- "id": 3353,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8210,
- "id": 3354,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8210,
- "id": 3355,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8210,
- "id": 3356,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8210,
- "id": 3357,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8211,
- "id": 3358,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8211,
- "id": 3359,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8211,
- "id": 3360,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8211,
- "id": 3361,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8211,
- "id": 3362,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8211,
- "id": 3363,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8211,
- "id": 3364,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8211,
- "id": 3365,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8211,
- "id": 3366,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8211,
- "id": 3367,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8211,
- "id": 3368,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8211,
- "id": 3369,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8211,
- "id": 3370,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8211,
- "id": 3371,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8211,
- "id": 3372,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8211,
- "id": 3373,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8212,
- "id": 3374,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8212,
- "id": 3375,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8212,
- "id": 3376,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8212,
- "id": 3377,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8212,
- "id": 3378,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8212,
- "id": 3379,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8212,
- "id": 3380,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8212,
- "id": 3381,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8212,
- "id": 3382,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8212,
- "id": 3383,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8212,
- "id": 3384,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8212,
- "id": 3385,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8212,
- "id": 3386,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8212,
- "id": 3387,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8212,
- "id": 3388,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8212,
- "id": 3389,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8213,
- "id": 3390,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8213,
- "id": 3391,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8213,
- "id": 3392,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8213,
- "id": 3393,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8213,
- "id": 3394,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8213,
- "id": 3395,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8213,
- "id": 3396,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8213,
- "id": 3397,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8213,
- "id": 3398,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8213,
- "id": 3399,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8213,
- "id": 3400,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8213,
- "id": 3401,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8213,
- "id": 3402,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8213,
- "id": 3403,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8213,
- "id": 3404,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8213,
- "id": 3405,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8214,
- "id": 3406,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8214,
- "id": 3407,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8214,
- "id": 3408,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8214,
- "id": 3409,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8214,
- "id": 3410,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8214,
- "id": 3411,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8214,
- "id": 3412,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8214,
- "id": 3413,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8214,
- "id": 3414,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8214,
- "id": 3415,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8214,
- "id": 3416,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8214,
- "id": 3417,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8214,
- "id": 3418,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8214,
- "id": 3419,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8214,
- "id": 3420,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8214,
- "id": 3421,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8215,
- "id": 3422,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8215,
- "id": 3423,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8215,
- "id": 3424,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8215,
- "id": 3425,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8215,
- "id": 3426,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8215,
- "id": 3427,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8215,
- "id": 3428,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8215,
- "id": 3429,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8215,
- "id": 3430,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8215,
- "id": 3431,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8215,
- "id": 3432,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8215,
- "id": 3433,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8215,
- "id": 3434,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8215,
- "id": 3435,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8215,
- "id": 3436,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8215,
- "id": 3437,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8216,
- "id": 3438,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8216,
- "id": 3439,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8216,
- "id": 3440,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8216,
- "id": 3441,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8216,
- "id": 3442,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8216,
- "id": 3443,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8216,
- "id": 3444,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8216,
- "id": 3445,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8216,
- "id": 3446,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8216,
- "id": 3447,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8216,
- "id": 3448,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8216,
- "id": 3449,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8216,
- "id": 3450,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8216,
- "id": 3451,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8216,
- "id": 3452,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8216,
- "id": 3453,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8217,
- "id": 3454,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8217,
- "id": 3455,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8217,
- "id": 3456,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8217,
- "id": 3457,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8217,
- "id": 3458,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8217,
- "id": 3459,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8217,
- "id": 3460,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8217,
- "id": 3461,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8217,
- "id": 3462,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8217,
- "id": 3463,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8217,
- "id": 3464,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8217,
- "id": 3465,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8217,
- "id": 3466,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8217,
- "id": 3467,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8217,
- "id": 3468,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8217,
- "id": 3469,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8218,
- "id": 3470,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8218,
- "id": 3471,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8218,
- "id": 3472,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8218,
- "id": 3473,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8218,
- "id": 3474,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8218,
- "id": 3475,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8218,
- "id": 3476,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8218,
- "id": 3477,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8218,
- "id": 3478,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8218,
- "id": 3479,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8218,
- "id": 3480,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8218,
- "id": 3481,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8218,
- "id": 3482,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8218,
- "id": 3483,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8218,
- "id": 3484,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8218,
- "id": 3485,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8219,
- "id": 3486,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8219,
- "id": 3487,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8219,
- "id": 3488,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8219,
- "id": 3489,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8219,
- "id": 3490,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8219,
- "id": 3491,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8219,
- "id": 3492,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8219,
- "id": 3493,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8219,
- "id": 3494,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8219,
- "id": 3495,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8219,
- "id": 3496,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8219,
- "id": 3497,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8219,
- "id": 3498,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8219,
- "id": 3499,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8219,
- "id": 3500,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8219,
- "id": 3501,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8220,
- "id": 3502,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8220,
- "id": 3503,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8220,
- "id": 3504,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8220,
- "id": 3505,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8220,
- "id": 3506,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8220,
- "id": 3507,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8220,
- "id": 3508,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8220,
- "id": 3509,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8220,
- "id": 3510,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8220,
- "id": 3511,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8220,
- "id": 3512,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8220,
- "id": 3513,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8220,
- "id": 3514,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8220,
- "id": 3515,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8220,
- "id": 3516,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8220,
- "id": 3517,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8221,
- "id": 3518,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8221,
- "id": 3519,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8221,
- "id": 3520,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8221,
- "id": 3521,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8221,
- "id": 3522,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8221,
- "id": 3523,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8221,
- "id": 3524,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8221,
- "id": 3525,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8221,
- "id": 3526,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8221,
- "id": 3527,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8221,
- "id": 3528,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8221,
- "id": 3529,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8221,
- "id": 3530,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8221,
- "id": 3531,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8221,
- "id": 3532,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8221,
- "id": 3533,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8222,
- "id": 3534,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8222,
- "id": 3535,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8222,
- "id": 3536,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8222,
- "id": 3537,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8222,
- "id": 3538,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8222,
- "id": 3539,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8222,
- "id": 3540,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8222,
- "id": 3541,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8222,
- "id": 3542,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8222,
- "id": 3543,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8222,
- "id": 3544,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8222,
- "id": 3545,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8222,
- "id": 3546,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8222,
- "id": 3547,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8222,
- "id": 3548,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8222,
- "id": 3549,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8223,
- "id": 3550,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8223,
- "id": 3551,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8223,
- "id": 3552,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8223,
- "id": 3553,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8223,
- "id": 3554,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8223,
- "id": 3555,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8223,
- "id": 3556,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8223,
- "id": 3557,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8223,
- "id": 3558,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8223,
- "id": 3559,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8223,
- "id": 3560,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8223,
- "id": 3561,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8223,
- "id": 3562,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8223,
- "id": 3563,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8223,
- "id": 3564,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8223,
- "id": 3565,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8224,
- "id": 3566,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8224,
- "id": 3567,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8224,
- "id": 3568,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8224,
- "id": 3569,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8224,
- "id": 3570,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8224,
- "id": 3571,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8224,
- "id": 3572,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8224,
- "id": 3573,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8224,
- "id": 3574,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8224,
- "id": 3575,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8224,
- "id": 3576,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8224,
- "id": 3577,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8224,
- "id": 3578,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8224,
- "id": 3579,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8224,
- "id": 3580,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8224,
- "id": 3581,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11026,
- "id": 3582,
- "width": 640,
- "height": 768
- },
- {
- "fileNum": 11027,
- "id": 3583,
- "width": 640,
- "height": 320
- },
- {
- "fileNum": 14032,
- "id": 3584,
- "width": 768,
- "height": 960
- },
- {
- "fileNum": 22000,
- "id": 3585,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 22000,
- "id": 3586,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 22000,
- "id": 3587,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 22000,
- "id": 3588,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 22000,
- "id": 3589,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 22000,
- "id": 3590,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 22000,
- "id": 3591,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 22000,
- "id": 3592,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 22000,
- "id": 3593,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 22000,
- "id": 3594,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 22000,
- "id": 3595,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 22000,
- "id": 3596,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 22000,
- "id": 3597,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 22000,
- "id": 3598,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 22000,
- "id": 3599,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 22000,
- "id": 3600,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 22000,
- "id": 3601,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 22000,
- "id": 3602,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 22000,
- "id": 3603,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 22000,
- "id": 3604,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 22000,
- "id": 3605,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 22000,
- "id": 3606,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 22044,
- "id": 3611,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 22044,
- "id": 3612,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 22044,
- "id": 3613,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 22044,
- "id": 3614,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 22044,
- "id": 3615,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 22044,
- "id": 3616,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 22044,
- "id": 3617,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 22044,
- "id": 3618,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 22044,
- "id": 3619,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 22044,
- "id": 3620,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 22044,
- "id": 3621,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 22044,
- "id": 3622,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 22044,
- "id": 3623,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 22044,
- "id": 3624,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 22044,
- "id": 3625,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 22044,
- "id": 3626,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 22044,
- "id": 3627,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 22044,
- "id": 3628,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 22044,
- "id": 3629,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 22044,
- "id": 3630,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 22044,
- "id": 3631,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 22044,
- "id": 3632,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16015,
- "id": 3637,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16015,
- "id": 3638,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16015,
- "id": 3639,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16015,
- "id": 3640,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16015,
- "id": 3641,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16015,
- "id": 3642,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16015,
- "id": 3643,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16015,
- "id": 3644,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16015,
- "id": 3645,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16015,
- "id": 3646,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16015,
- "id": 3647,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16015,
- "id": 3648,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16015,
- "id": 3649,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16015,
- "id": 3650,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16015,
- "id": 3651,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16015,
- "id": 3652,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16015,
- "id": 3653,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16015,
- "id": 3654,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16015,
- "id": 3655,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16015,
- "id": 3656,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16015,
- "id": 3657,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16015,
- "id": 3658,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4072,
- "id": 3663,
- "width": 64,
- "height": 78
- },
- {
- "x": 64,
- "fileNum": 4072,
- "id": 3664,
- "width": 64,
- "height": 78
- },
- {
- "x": 128,
- "fileNum": 4072,
- "id": 3665,
- "width": 64,
- "height": 78
- },
- {
- "x": 192,
- "fileNum": 4072,
- "id": 3666,
- "width": 64,
- "height": 78
- },
- {
- "x": 256,
- "fileNum": 4072,
- "id": 3667,
- "width": 64,
- "height": 78
- },
- {
- "x": 320,
- "fileNum": 4072,
- "id": 3668,
- "width": 64,
- "height": 78
- },
- {
- "y": 78,
- "fileNum": 4072,
- "id": 3669,
- "width": 64,
- "height": 78
- },
- {
- "x": 64,
- "y": 78,
- "fileNum": 4072,
- "id": 3670,
- "width": 64,
- "height": 78
- },
- {
- "x": 128,
- "y": 78,
- "fileNum": 4072,
- "id": 3671,
- "width": 64,
- "height": 78
- },
- {
- "x": 192,
- "y": 78,
- "fileNum": 4072,
- "id": 3672,
- "width": 64,
- "height": 78
- },
- {
- "x": 256,
- "y": 78,
- "fileNum": 4072,
- "id": 3673,
- "width": 64,
- "height": 78
- },
- {
- "x": 320,
- "y": 78,
- "fileNum": 4072,
- "id": 3674,
- "width": 64,
- "height": 78
- },
- {
- "y": 156,
- "fileNum": 4072,
- "id": 3675,
- "width": 64,
- "height": 78
- },
- {
- "x": 64,
- "y": 156,
- "fileNum": 4072,
- "id": 3676,
- "width": 64,
- "height": 78
- },
- {
- "x": 128,
- "y": 156,
- "fileNum": 4072,
- "id": 3677,
- "width": 64,
- "height": 78
- },
- {
- "x": 192,
- "y": 156,
- "fileNum": 4072,
- "id": 3678,
- "width": 64,
- "height": 78
- },
- {
- "x": 256,
- "y": 156,
- "fileNum": 4072,
- "id": 3679,
- "width": 64,
- "height": 78
- },
- {
- "y": 236,
- "fileNum": 4072,
- "id": 3680,
- "width": 64,
- "height": 78
- },
- {
- "x": 64,
- "y": 236,
- "fileNum": 4072,
- "id": 3681,
- "width": 64,
- "height": 78
- },
- {
- "x": 128,
- "y": 236,
- "fileNum": 4072,
- "id": 3682,
- "width": 64,
- "height": 78
- },
- {
- "x": 192,
- "y": 236,
- "fileNum": 4072,
- "id": 3683,
- "width": 64,
- "height": 78
- },
- {
- "x": 256,
- "y": 236,
- "fileNum": 4072,
- "id": 3684,
- "width": 64,
- "height": 78
- },
- {
- "fileNum": 105,
- "id": 3689,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 105,
- "id": 3690,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 105,
- "id": 3691,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 105,
- "id": 3692,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 105,
- "id": 3693,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 105,
- "id": 3694,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 105,
- "id": 3695,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 105,
- "id": 3696,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 105,
- "id": 3697,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 105,
- "id": 3698,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 105,
- "id": 3699,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 105,
- "id": 3700,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 105,
- "id": 3701,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 105,
- "id": 3702,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 105,
- "id": 3703,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 105,
- "id": 3704,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 105,
- "id": 3705,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 105,
- "id": 3706,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 105,
- "id": 3707,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 105,
- "id": 3708,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 105,
- "id": 3709,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 105,
- "id": 3710,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 106,
- "id": 3715,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 7073,
- "id": 3716,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 4070,
- "id": 3717,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 4070,
- "id": 3718,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 4070,
- "id": 3719,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 4070,
- "id": 3720,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 4070,
- "id": 3721,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 4070,
- "id": 3722,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 4070,
- "id": 3723,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 4070,
- "id": 3724,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 4070,
- "id": 3725,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 4070,
- "id": 3726,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 4070,
- "id": 3727,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 4070,
- "id": 3728,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 4070,
- "id": 3729,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 4070,
- "id": 3730,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 4070,
- "id": 3731,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 4070,
- "id": 3732,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 4070,
- "id": 3733,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 4070,
- "id": 3734,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 4070,
- "id": 3735,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 4070,
- "id": 3736,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 4070,
- "id": 3737,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 4070,
- "id": 3738,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4071,
- "id": 3743,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 4071,
- "id": 3744,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 4071,
- "id": 3745,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 4071,
- "id": 3746,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 4071,
- "id": 3747,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 4071,
- "id": 3748,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 4071,
- "id": 3749,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 4071,
- "id": 3750,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 4071,
- "id": 3751,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 4071,
- "id": 3752,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 4071,
- "id": 3753,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 4071,
- "id": 3754,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 4071,
- "id": 3755,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 4071,
- "id": 3756,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 4071,
- "id": 3757,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 4071,
- "id": 3758,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 4071,
- "id": 3759,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 4071,
- "id": 3760,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 4071,
- "id": 3761,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 4071,
- "id": 3762,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 4071,
- "id": 3763,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 4071,
- "id": 3764,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4069,
- "id": 3769,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 4069,
- "id": 3770,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 4069,
- "id": 3771,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 4069,
- "id": 3772,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 4069,
- "id": 3773,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 4069,
- "id": 3774,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 4069,
- "id": 3775,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 4069,
- "id": 3776,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 4069,
- "id": 3777,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 4069,
- "id": 3778,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 4069,
- "id": 3779,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 4069,
- "id": 3780,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 4069,
- "id": 3781,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 4069,
- "id": 3782,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 4069,
- "id": 3783,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 4069,
- "id": 3784,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 4069,
- "id": 3785,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 4069,
- "id": 3786,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 4069,
- "id": 3787,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 4069,
- "id": 3788,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 4069,
- "id": 3789,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 4069,
- "id": 3790,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2039,
- "id": 3795,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2039,
- "id": 3796,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2039,
- "id": 3797,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2039,
- "id": 3798,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2098,
- "id": 3799,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2098,
- "id": 3800,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2098,
- "id": 3801,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2098,
- "id": 3802,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2099,
- "id": 3803,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2099,
- "id": 3804,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2099,
- "id": 3805,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2099,
- "id": 3806,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2100,
- "id": 3807,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2100,
- "id": 3808,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2100,
- "id": 3809,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2100,
- "id": 3810,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2101,
- "id": 3811,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2101,
- "id": 3812,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2101,
- "id": 3813,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2101,
- "id": 3814,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2102,
- "id": 3815,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2102,
- "id": 3816,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2102,
- "id": 3817,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2102,
- "id": 3818,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2103,
- "id": 3819,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2103,
- "id": 3820,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2103,
- "id": 3821,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2103,
- "id": 3822,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2104,
- "id": 3823,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2104,
- "id": 3824,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2104,
- "id": 3825,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2104,
- "id": 3826,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2107,
- "id": 3827,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2107,
- "id": 3828,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2107,
- "id": 3829,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2107,
- "id": 3830,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 4079,
- "id": 3831,
- "width": 50,
- "height": 104
- },
- {
- "x": 50,
- "fileNum": 4079,
- "id": 3832,
- "width": 50,
- "height": 104
- },
- {
- "x": 100,
- "fileNum": 4079,
- "id": 3833,
- "width": 50,
- "height": 104
- },
- {
- "x": 150,
- "fileNum": 4079,
- "id": 3834,
- "width": 50,
- "height": 104
- },
- {
- "x": 200,
- "fileNum": 4079,
- "id": 3835,
- "width": 50,
- "height": 104
- },
- {
- "x": 250,
- "fileNum": 4079,
- "id": 3836,
- "width": 50,
- "height": 104
- },
- {
- "y": 104,
- "fileNum": 4079,
- "id": 3837,
- "width": 50,
- "height": 104
- },
- {
- "x": 50,
- "y": 104,
- "fileNum": 4079,
- "id": 3838,
- "width": 50,
- "height": 104
- },
- {
- "x": 100,
- "y": 104,
- "fileNum": 4079,
- "id": 3839,
- "width": 50,
- "height": 104
- },
- {
- "x": 150,
- "y": 104,
- "fileNum": 4079,
- "id": 3840,
- "width": 50,
- "height": 104
- },
- {
- "x": 200,
- "y": 104,
- "fileNum": 4079,
- "id": 3841,
- "width": 50,
- "height": 104
- },
- {
- "x": 250,
- "y": 104,
- "fileNum": 4079,
- "id": 3842,
- "width": 50,
- "height": 104
- },
- {
- "y": 208,
- "fileNum": 4079,
- "id": 3843,
- "width": 50,
- "height": 104
- },
- {
- "x": 50,
- "y": 208,
- "fileNum": 4079,
- "id": 3844,
- "width": 50,
- "height": 104
- },
- {
- "x": 100,
- "y": 208,
- "fileNum": 4079,
- "id": 3845,
- "width": 50,
- "height": 104
- },
- {
- "x": 150,
- "y": 208,
- "fileNum": 4079,
- "id": 3846,
- "width": 50,
- "height": 104
- },
- {
- "x": 200,
- "y": 208,
- "fileNum": 4079,
- "id": 3847,
- "width": 50,
- "height": 104
- },
- {
- "y": 312,
- "fileNum": 4079,
- "id": 3848,
- "width": 50,
- "height": 104
- },
- {
- "x": 50,
- "y": 312,
- "fileNum": 4079,
- "id": 3849,
- "width": 50,
- "height": 104
- },
- {
- "x": 100,
- "y": 312,
- "fileNum": 4079,
- "id": 3850,
- "width": 50,
- "height": 104
- },
- {
- "x": 150,
- "y": 312,
- "fileNum": 4079,
- "id": 3851,
- "width": 50,
- "height": 104
- },
- {
- "x": 200,
- "y": 312,
- "fileNum": 4079,
- "id": 3852,
- "width": 50,
- "height": 104
- },
- {
- "fileNum": 15202,
- "id": 3857,
- "width": 110,
- "height": 200
- },
- {
- "x": 112,
- "fileNum": 15202,
- "id": 3858,
- "width": 110,
- "height": 200
- },
- {
- "x": 224,
- "fileNum": 15202,
- "id": 3859,
- "width": 110,
- "height": 200
- },
- {
- "x": 336,
- "fileNum": 15202,
- "id": 3860,
- "width": 110,
- "height": 200
- },
- {
- "x": 448,
- "fileNum": 15202,
- "id": 3861,
- "width": 110,
- "height": 200
- },
- {
- "x": 560,
- "fileNum": 15202,
- "id": 3862,
- "width": 110,
- "height": 200
- },
- {
- "x": 672,
- "fileNum": 15202,
- "id": 3863,
- "width": 110,
- "height": 200
- },
- {
- "x": 784,
- "fileNum": 15202,
- "id": 3864,
- "width": 110,
- "height": 200
- },
- {
- "x": 896,
- "fileNum": 15202,
- "id": 3865,
- "width": 110,
- "height": 200
- },
- {
- "x": 1008,
- "fileNum": 15202,
- "id": 3866,
- "width": 110,
- "height": 200
- },
- {
- "x": 1120,
- "fileNum": 15202,
- "id": 3867,
- "width": 110,
- "height": 200
- },
- {
- "x": 1232,
- "fileNum": 15202,
- "id": 3868,
- "width": 110,
- "height": 200
- },
- {
- "x": 1344,
- "fileNum": 15202,
- "id": 3869,
- "width": 110,
- "height": 200
- },
- {
- "x": 1456,
- "fileNum": 15202,
- "id": 3870,
- "width": 110,
- "height": 200
- },
- {
- "x": 1568,
- "fileNum": 15202,
- "id": 3871,
- "width": 110,
- "height": 200
- },
- {
- "x": 1680,
- "fileNum": 15202,
- "id": 3872,
- "width": 110,
- "height": 200
- },
- {
- "x": 1792,
- "fileNum": 15202,
- "id": 3873,
- "width": 110,
- "height": 200
- },
- {
- "x": 1904,
- "fileNum": 15202,
- "id": 3874,
- "width": 110,
- "height": 200
- },
- {
- "x": 2016,
- "fileNum": 15202,
- "id": 3875,
- "width": 110,
- "height": 200
- },
- {
- "x": 2128,
- "fileNum": 15202,
- "id": 3876,
- "width": 110,
- "height": 200
- },
- {
- "fileNum": 406,
- "id": 3878,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 406,
- "id": 3879,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 406,
- "id": 3880,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 406,
- "id": 3881,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 406,
- "id": 3882,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 406,
- "id": 3883,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 406,
- "id": 3884,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 406,
- "id": 3885,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 406,
- "id": 3886,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 406,
- "id": 3887,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 406,
- "id": 3888,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 406,
- "id": 3889,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 406,
- "id": 3890,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 406,
- "id": 3891,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 406,
- "id": 3892,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 406,
- "id": 3893,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 406,
- "id": 3894,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 406,
- "id": 3895,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 406,
- "id": 3896,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 406,
- "id": 3897,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 406,
- "id": 3898,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 406,
- "id": 3899,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 407,
- "id": 3904,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 407,
- "id": 3905,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 407,
- "id": 3906,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 407,
- "id": 3907,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 407,
- "id": 3908,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 407,
- "id": 3909,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 407,
- "id": 3910,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 407,
- "id": 3911,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 407,
- "id": 3912,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 407,
- "id": 3913,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 407,
- "id": 3914,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 407,
- "id": 3915,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 407,
- "id": 3916,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 407,
- "id": 3917,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 407,
- "id": 3918,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 407,
- "id": 3919,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 407,
- "id": 3920,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 407,
- "id": 3921,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 407,
- "id": 3922,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 407,
- "id": 3923,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 407,
- "id": 3924,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 407,
- "id": 3925,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 409,
- "id": 3930,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 409,
- "id": 3931,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 409,
- "id": 3932,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 409,
- "id": 3933,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 409,
- "id": 3934,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 409,
- "id": 3935,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 409,
- "id": 3936,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 409,
- "id": 3937,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 409,
- "id": 3938,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 409,
- "id": 3939,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 409,
- "id": 3940,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 409,
- "id": 3941,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 409,
- "id": 3942,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 409,
- "id": 3943,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 409,
- "id": 3944,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 409,
- "id": 3945,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 409,
- "id": 3946,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 409,
- "id": 3947,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 409,
- "id": 3948,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 409,
- "id": 3949,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 409,
- "id": 3950,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 409,
- "id": 3951,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 410,
- "id": 3956,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 410,
- "id": 3957,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 410,
- "id": 3958,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 410,
- "id": 3959,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 410,
- "id": 3960,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 410,
- "id": 3961,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 410,
- "id": 3962,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 410,
- "id": 3963,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 410,
- "id": 3964,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 410,
- "id": 3965,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 410,
- "id": 3966,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 410,
- "id": 3967,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 410,
- "id": 3968,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 410,
- "id": 3969,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 410,
- "id": 3970,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 410,
- "id": 3971,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 410,
- "id": 3972,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 410,
- "id": 3973,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 410,
- "id": 3974,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 410,
- "id": 3975,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 410,
- "id": 3976,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 410,
- "id": 3977,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 15203,
- "id": 3982,
- "width": 100,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 15203,
- "id": 3983,
- "width": 100,
- "height": 100
- },
- {
- "x": 204,
- "fileNum": 15203,
- "id": 3984,
- "width": 100,
- "height": 100
- },
- {
- "x": 306,
- "fileNum": 15203,
- "id": 3985,
- "width": 100,
- "height": 100
- },
- {
- "x": 408,
- "fileNum": 15203,
- "id": 3986,
- "width": 100,
- "height": 100
- },
- {
- "x": 510,
- "fileNum": 15203,
- "id": 3987,
- "width": 100,
- "height": 100
- },
- {
- "x": 612,
- "fileNum": 15203,
- "id": 3988,
- "width": 100,
- "height": 100
- },
- {
- "x": 714,
- "fileNum": 15203,
- "id": 3989,
- "width": 100,
- "height": 100
- },
- {
- "x": 816,
- "fileNum": 15203,
- "id": 3990,
- "width": 100,
- "height": 100
- },
- {
- "x": 918,
- "fileNum": 15203,
- "id": 3991,
- "width": 100,
- "height": 100
- },
- {
- "x": 1020,
- "fileNum": 15203,
- "id": 3992,
- "width": 100,
- "height": 100
- },
- {
- "fileNum": 12011,
- "id": 3994,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 12011,
- "id": 3995,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 12011,
- "id": 3996,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12011,
- "id": 3997,
- "width": 128,
- "height": 128
- },
- {
- "y": 256,
- "fileNum": 12011,
- "id": 3998,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 256,
- "fileNum": 12011,
- "id": 3999,
- "width": 128,
- "height": 128
- },
- {
- "y": 270,
- "fileNum": 178,
- "id": 4000,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 178,
- "id": 4001,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 178,
- "id": 4002,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 178,
- "id": 4003,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 178,
- "id": 4004,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 179,
- "id": 4005,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 179,
- "id": 4006,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 179,
- "id": 4007,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 179,
- "id": 4008,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 179,
- "id": 4009,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 179,
- "id": 4010,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 179,
- "id": 4011,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 179,
- "id": 4012,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 179,
- "id": 4013,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 179,
- "id": 4014,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 179,
- "id": 4015,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 179,
- "id": 4016,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 179,
- "id": 4017,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 179,
- "id": 4018,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 179,
- "id": 4019,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 179,
- "id": 4020,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 179,
- "id": 4021,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 179,
- "id": 4022,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 179,
- "id": 4023,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 179,
- "id": 4024,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 179,
- "id": 4025,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 179,
- "id": 4026,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 180,
- "id": 4027,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 180,
- "id": 4028,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 180,
- "id": 4029,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 180,
- "id": 4030,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 180,
- "id": 4031,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 180,
- "id": 4032,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 180,
- "id": 4033,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 180,
- "id": 4034,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 180,
- "id": 4035,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 180,
- "id": 4036,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 180,
- "id": 4037,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 180,
- "id": 4038,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 180,
- "id": 4039,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 180,
- "id": 4040,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 180,
- "id": 4041,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 180,
- "id": 4042,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 180,
- "id": 4043,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 180,
- "id": 4044,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 180,
- "id": 4045,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 180,
- "id": 4046,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 180,
- "id": 4047,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 180,
- "id": 4048,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 181,
- "id": 4049,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 181,
- "id": 4050,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 181,
- "id": 4051,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 181,
- "id": 4052,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 181,
- "id": 4053,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 181,
- "id": 4054,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 181,
- "id": 4055,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 181,
- "id": 4056,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 181,
- "id": 4057,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 181,
- "id": 4058,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 181,
- "id": 4059,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 181,
- "id": 4060,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 181,
- "id": 4061,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 181,
- "id": 4062,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 181,
- "id": 4063,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 181,
- "id": 4064,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 181,
- "id": 4065,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 181,
- "id": 4066,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 181,
- "id": 4067,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 181,
- "id": 4068,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 181,
- "id": 4069,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 181,
- "id": 4070,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4095,
- "id": 4071,
- "width": 60,
- "height": 40
- },
- {
- "x": 58,
- "fileNum": 4095,
- "id": 4072,
- "width": 60,
- "height": 40
- },
- {
- "x": 116,
- "fileNum": 4095,
- "id": 4073,
- "width": 60,
- "height": 40
- },
- {
- "x": 174,
- "fileNum": 4095,
- "id": 4074,
- "width": 60,
- "height": 40
- },
- {
- "y": 38,
- "fileNum": 4095,
- "id": 4075,
- "width": 60,
- "height": 40
- },
- {
- "x": 58,
- "y": 38,
- "fileNum": 4095,
- "id": 4076,
- "width": 60,
- "height": 40
- },
- {
- "x": 116,
- "y": 38,
- "fileNum": 4095,
- "id": 4077,
- "width": 60,
- "height": 40
- },
- {
- "x": 174,
- "y": 38,
- "fileNum": 4095,
- "id": 4078,
- "width": 60,
- "height": 40
- },
- {
- "y": 76,
- "fileNum": 4095,
- "id": 4079,
- "width": 60,
- "height": 40
- },
- {
- "x": 58,
- "y": 76,
- "fileNum": 4095,
- "id": 4080,
- "width": 60,
- "height": 40
- },
- {
- "x": 116,
- "y": 76,
- "fileNum": 4095,
- "id": 4081,
- "width": 60,
- "height": 40
- },
- {
- "x": 174,
- "y": 76,
- "fileNum": 4095,
- "id": 4082,
- "width": 60,
- "height": 40
- },
- {
- "y": 114,
- "fileNum": 4095,
- "id": 4083,
- "width": 60,
- "height": 40
- },
- {
- "x": 58,
- "y": 114,
- "fileNum": 4095,
- "id": 4084,
- "width": 60,
- "height": 40
- },
- {
- "x": 116,
- "y": 114,
- "fileNum": 4095,
- "id": 4085,
- "width": 60,
- "height": 40
- },
- {
- "x": 174,
- "y": 114,
- "fileNum": 4095,
- "id": 4086,
- "width": 60,
- "height": 40
- },
- {
- "fileNum": 182,
- "id": 4087,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 182,
- "id": 4088,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 182,
- "id": 4089,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 182,
- "id": 4090,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 182,
- "id": 4091,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 182,
- "id": 4092,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 182,
- "id": 4093,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 182,
- "id": 4094,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 182,
- "id": 4095,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 182,
- "id": 4096,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 182,
- "id": 4097,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 182,
- "id": 4098,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 182,
- "id": 4099,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 182,
- "id": 4100,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 182,
- "id": 4101,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 182,
- "id": 4102,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 182,
- "id": 4103,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 182,
- "id": 4104,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 182,
- "id": 4105,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 182,
- "id": 4106,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 182,
- "id": 4107,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 182,
- "id": 4108,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 24005,
- "id": 4109,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 24005,
- "id": 4110,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 24005,
- "id": 4111,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 24005,
- "id": 4112,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 24005,
- "id": 4113,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 24005,
- "id": 4114,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 24005,
- "id": 4115,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 24005,
- "id": 4116,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 24005,
- "id": 4117,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 24005,
- "id": 4118,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 24005,
- "id": 4119,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 24005,
- "id": 4120,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 24005,
- "id": 4121,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 24005,
- "id": 4122,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 24005,
- "id": 4123,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 24005,
- "id": 4124,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 24005,
- "id": 4125,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 24005,
- "id": 4126,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 24005,
- "id": 4127,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 24005,
- "id": 4128,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 24005,
- "id": 4129,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 24005,
- "id": 4130,
- "width": 50,
- "height": 90
- },
- {
- "y": 384,
- "fileNum": 12011,
- "id": 4131,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 384,
- "fileNum": 12011,
- "id": 4132,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "y": 256,
- "fileNum": 12011,
- "id": 4133,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "y": 256,
- "fileNum": 12011,
- "id": 4134,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 183,
- "id": 4135,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 183,
- "id": 4136,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 183,
- "id": 4137,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 183,
- "id": 4138,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 183,
- "id": 4139,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 183,
- "id": 4140,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 183,
- "id": 4141,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 183,
- "id": 4142,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 183,
- "id": 4143,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 183,
- "id": 4144,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 183,
- "id": 4145,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 183,
- "id": 4146,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 183,
- "id": 4147,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 183,
- "id": 4148,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 183,
- "id": 4149,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 183,
- "id": 4150,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 183,
- "id": 4151,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 183,
- "id": 4152,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 183,
- "id": 4153,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 183,
- "id": 4154,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 183,
- "id": 4155,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 183,
- "id": 4156,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 184,
- "id": 4157,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 184,
- "id": 4158,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 184,
- "id": 4159,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 184,
- "id": 4160,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 184,
- "id": 4161,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 184,
- "id": 4162,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 184,
- "id": 4163,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 184,
- "id": 4164,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 184,
- "id": 4165,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 184,
- "id": 4166,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 184,
- "id": 4167,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 184,
- "id": 4168,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 184,
- "id": 4169,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 184,
- "id": 4170,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 184,
- "id": 4171,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 184,
- "id": 4172,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 184,
- "id": 4173,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 184,
- "id": 4174,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 184,
- "id": 4175,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 184,
- "id": 4176,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 184,
- "id": 4177,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 184,
- "id": 4178,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 185,
- "id": 4179,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 185,
- "id": 4180,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 185,
- "id": 4181,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 185,
- "id": 4182,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 185,
- "id": 4183,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 185,
- "id": 4184,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 185,
- "id": 4185,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 185,
- "id": 4186,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 185,
- "id": 4187,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 185,
- "id": 4188,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 185,
- "id": 4189,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 185,
- "id": 4190,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 185,
- "id": 4191,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 185,
- "id": 4192,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 185,
- "id": 4193,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 185,
- "id": 4194,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 185,
- "id": 4195,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 185,
- "id": 4196,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 185,
- "id": 4197,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 185,
- "id": 4198,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 185,
- "id": 4199,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 185,
- "id": 4200,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 186,
- "id": 4201,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 186,
- "id": 4202,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 186,
- "id": 4203,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 186,
- "id": 4204,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 186,
- "id": 4205,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 186,
- "id": 4206,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 186,
- "id": 4207,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 186,
- "id": 4208,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 186,
- "id": 4209,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 186,
- "id": 4210,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 186,
- "id": 4211,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 186,
- "id": 4212,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 186,
- "id": 4213,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 186,
- "id": 4214,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 186,
- "id": 4215,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 186,
- "id": 4216,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 186,
- "id": 4217,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 186,
- "id": 4218,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 186,
- "id": 4219,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 186,
- "id": 4220,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 186,
- "id": 4221,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 186,
- "id": 4222,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 187,
- "id": 4223,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 187,
- "id": 4224,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 187,
- "id": 4225,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 187,
- "id": 4226,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 187,
- "id": 4227,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 187,
- "id": 4228,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 187,
- "id": 4229,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 187,
- "id": 4230,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 187,
- "id": 4231,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 187,
- "id": 4232,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 187,
- "id": 4233,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 187,
- "id": 4234,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 187,
- "id": 4235,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 187,
- "id": 4236,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 187,
- "id": 4237,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 187,
- "id": 4238,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 187,
- "id": 4239,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 187,
- "id": 4240,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 187,
- "id": 4241,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 187,
- "id": 4242,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 187,
- "id": 4243,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 187,
- "id": 4244,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16018,
- "id": 4245,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16018,
- "id": 4246,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16018,
- "id": 4247,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16018,
- "id": 4248,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16018,
- "id": 4249,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16018,
- "id": 4250,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16018,
- "id": 4251,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16018,
- "id": 4252,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16018,
- "id": 4253,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16018,
- "id": 4254,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16018,
- "id": 4255,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16018,
- "id": 4256,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16018,
- "id": 4257,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16018,
- "id": 4258,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16018,
- "id": 4259,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16018,
- "id": 4260,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16018,
- "id": 4261,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16018,
- "id": 4262,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16018,
- "id": 4263,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16018,
- "id": 4264,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16018,
- "id": 4265,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16018,
- "id": 4266,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16019,
- "id": 4267,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16019,
- "id": 4268,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16019,
- "id": 4269,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16019,
- "id": 4270,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16019,
- "id": 4271,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16019,
- "id": 4272,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16019,
- "id": 4273,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16019,
- "id": 4274,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16019,
- "id": 4275,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16019,
- "id": 4276,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16019,
- "id": 4277,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16019,
- "id": 4278,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16019,
- "id": 4279,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16019,
- "id": 4280,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16019,
- "id": 4281,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16019,
- "id": 4282,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16019,
- "id": 4283,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16019,
- "id": 4284,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16019,
- "id": 4285,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16019,
- "id": 4286,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16019,
- "id": 4287,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16019,
- "id": 4288,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 20009,
- "id": 4289,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 20009,
- "id": 4290,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 20009,
- "id": 4291,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 20009,
- "id": 4292,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 20009,
- "id": 4293,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 20009,
- "id": 4294,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 20009,
- "id": 4295,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 20009,
- "id": 4296,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 20009,
- "id": 4297,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 20009,
- "id": 4298,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 20009,
- "id": 4299,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 20009,
- "id": 4300,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 20009,
- "id": 4301,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 20009,
- "id": 4302,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 20009,
- "id": 4303,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 20009,
- "id": 4304,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 20009,
- "id": 4305,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 20009,
- "id": 4306,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 20009,
- "id": 4307,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 20009,
- "id": 4308,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 20009,
- "id": 4309,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 20009,
- "id": 4310,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 18006,
- "id": 4311,
- "width": 34,
- "height": 32
- },
- {
- "x": 34,
- "fileNum": 18006,
- "id": 4312,
- "width": 34,
- "height": 32
- },
- {
- "x": 256,
- "y": 384,
- "fileNum": 12011,
- "id": 4313,
- "width": 128,
- "height": 128
- },
- {
- "x": 68,
- "fileNum": 18006,
- "id": 4314,
- "width": 34,
- "height": 32
- },
- {
- "x": 102,
- "fileNum": 18006,
- "id": 4315,
- "width": 34,
- "height": 32
- },
- {
- "fileNum": 18007,
- "id": 4316,
- "width": 34,
- "height": 32
- },
- {
- "x": 34,
- "fileNum": 18007,
- "id": 4317,
- "width": 34,
- "height": 32
- },
- {
- "x": 68,
- "fileNum": 18007,
- "id": 4318,
- "width": 34,
- "height": 32
- },
- {
- "x": 102,
- "fileNum": 18007,
- "id": 4319,
- "width": 34,
- "height": 32
- },
- {
- "fileNum": 4096,
- "id": 4320,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "fileNum": 4096,
- "id": 4321,
- "width": 64,
- "height": 50
- },
- {
- "y": 48,
- "fileNum": 4096,
- "id": 4322,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "y": 48,
- "fileNum": 4096,
- "id": 4323,
- "width": 64,
- "height": 50
- },
- {
- "x": 4,
- "y": 96,
- "fileNum": 4096,
- "id": 4324,
- "width": 64,
- "height": 50
- },
- {
- "x": 64,
- "y": 96,
- "fileNum": 4096,
- "id": 4325,
- "width": 64,
- "height": 50
- },
- {
- "y": 144,
- "fileNum": 4096,
- "id": 4326,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "y": 144,
- "fileNum": 4096,
- "id": 4327,
- "width": 64,
- "height": 50
- },
- {
- "fileNum": 4097,
- "id": 4328,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "fileNum": 4097,
- "id": 4329,
- "width": 64,
- "height": 50
- },
- {
- "y": 48,
- "fileNum": 4097,
- "id": 4330,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "y": 48,
- "fileNum": 4097,
- "id": 4331,
- "width": 64,
- "height": 50
- },
- {
- "x": 2,
- "y": 96,
- "fileNum": 4097,
- "id": 4332,
- "width": 64,
- "height": 50
- },
- {
- "x": 64,
- "y": 96,
- "fileNum": 4097,
- "id": 4333,
- "width": 64,
- "height": 50
- },
- {
- "y": 144,
- "fileNum": 4097,
- "id": 4334,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "y": 144,
- "fileNum": 4097,
- "id": 4335,
- "width": 64,
- "height": 50
- },
- {
- "fileNum": 4098,
- "id": 4336,
- "width": 48,
- "height": 96
- },
- {
- "x": 48,
- "fileNum": 4098,
- "id": 4337,
- "width": 48,
- "height": 96
- },
- {
- "x": 94,
- "fileNum": 4098,
- "id": 4338,
- "width": 48,
- "height": 96
- },
- {
- "x": 140,
- "fileNum": 4098,
- "id": 4339,
- "width": 48,
- "height": 96
- },
- {
- "x": 188,
- "fileNum": 4098,
- "id": 4340,
- "width": 48,
- "height": 96
- },
- {
- "x": 238,
- "fileNum": 4098,
- "id": 4341,
- "width": 48,
- "height": 96
- },
- {
- "x": 286,
- "fileNum": 4098,
- "id": 4342,
- "width": 48,
- "height": 96
- },
- {
- "x": 332,
- "fileNum": 4098,
- "id": 4343,
- "width": 48,
- "height": 96
- },
- {
- "y": 96,
- "fileNum": 4098,
- "id": 4344,
- "width": 48,
- "height": 96
- },
- {
- "x": 48,
- "y": 96,
- "fileNum": 4098,
- "id": 4345,
- "width": 48,
- "height": 96
- },
- {
- "x": 94,
- "y": 96,
- "fileNum": 4098,
- "id": 4346,
- "width": 48,
- "height": 96
- },
- {
- "x": 140,
- "y": 96,
- "fileNum": 4098,
- "id": 4347,
- "width": 48,
- "height": 96
- },
- {
- "x": 188,
- "y": 96,
- "fileNum": 4098,
- "id": 4348,
- "width": 48,
- "height": 96
- },
- {
- "x": 236,
- "y": 96,
- "fileNum": 4098,
- "id": 4349,
- "width": 48,
- "height": 96
- },
- {
- "x": 284,
- "y": 96,
- "fileNum": 4098,
- "id": 4350,
- "width": 48,
- "height": 96
- },
- {
- "x": 332,
- "y": 96,
- "fileNum": 4098,
- "id": 4351,
- "width": 48,
- "height": 96
- },
- {
- "y": 188,
- "fileNum": 4098,
- "id": 4352,
- "width": 48,
- "height": 96
- },
- {
- "x": 46,
- "y": 188,
- "fileNum": 4098,
- "id": 4353,
- "width": 48,
- "height": 96
- },
- {
- "x": 92,
- "y": 188,
- "fileNum": 4098,
- "id": 4354,
- "width": 48,
- "height": 96
- },
- {
- "x": 140,
- "y": 188,
- "fileNum": 4098,
- "id": 4355,
- "width": 48,
- "height": 96
- },
- {
- "x": 188,
- "y": 188,
- "fileNum": 4098,
- "id": 4356,
- "width": 48,
- "height": 96
- },
- {
- "x": 234,
- "y": 188,
- "fileNum": 4098,
- "id": 4357,
- "width": 48,
- "height": 96
- },
- {
- "x": 282,
- "y": 188,
- "fileNum": 4098,
- "id": 4358,
- "width": 48,
- "height": 96
- },
- {
- "x": 330,
- "y": 188,
- "fileNum": 4098,
- "id": 4359,
- "width": 48,
- "height": 96
- },
- {
- "y": 282,
- "fileNum": 4098,
- "id": 4360,
- "width": 48,
- "height": 96
- },
- {
- "x": 46,
- "y": 282,
- "fileNum": 4098,
- "id": 4361,
- "width": 48,
- "height": 96
- },
- {
- "x": 94,
- "y": 282,
- "fileNum": 4098,
- "id": 4362,
- "width": 48,
- "height": 96
- },
- {
- "x": 140,
- "y": 282,
- "fileNum": 4098,
- "id": 4363,
- "width": 48,
- "height": 96
- },
- {
- "x": 188,
- "y": 282,
- "fileNum": 4098,
- "id": 4364,
- "width": 48,
- "height": 96
- },
- {
- "x": 236,
- "y": 282,
- "fileNum": 4098,
- "id": 4365,
- "width": 48,
- "height": 96
- },
- {
- "x": 286,
- "y": 282,
- "fileNum": 4098,
- "id": 4366,
- "width": 48,
- "height": 96
- },
- {
- "x": 332,
- "y": 282,
- "fileNum": 4098,
- "id": 4367,
- "width": 48,
- "height": 96
- },
- {
- "fileNum": 4099,
- "id": 4368,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "fileNum": 4099,
- "id": 4369,
- "width": 64,
- "height": 50
- },
- {
- "x": 124,
- "fileNum": 4099,
- "id": 4370,
- "width": 64,
- "height": 50
- },
- {
- "y": 48,
- "fileNum": 4099,
- "id": 4371,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "y": 48,
- "fileNum": 4099,
- "id": 4372,
- "width": 64,
- "height": 50
- },
- {
- "x": 124,
- "y": 48,
- "fileNum": 4099,
- "id": 4373,
- "width": 64,
- "height": 50
- },
- {
- "y": 96,
- "fileNum": 4099,
- "id": 4374,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "y": 96,
- "fileNum": 4099,
- "id": 4375,
- "width": 64,
- "height": 50
- },
- {
- "x": 124,
- "y": 96,
- "fileNum": 4099,
- "id": 4376,
- "width": 64,
- "height": 50
- },
- {
- "y": 144,
- "fileNum": 4099,
- "id": 4377,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "y": 144,
- "fileNum": 4099,
- "id": 4378,
- "width": 64,
- "height": 50
- },
- {
- "x": 124,
- "y": 144,
- "fileNum": 4099,
- "id": 4379,
- "width": 64,
- "height": 50
- },
- {
- "fileNum": 4100,
- "id": 4380,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "fileNum": 4100,
- "id": 4381,
- "width": 64,
- "height": 50
- },
- {
- "x": 124,
- "fileNum": 4100,
- "id": 4382,
- "width": 64,
- "height": 50
- },
- {
- "y": 48,
- "fileNum": 4100,
- "id": 4383,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "y": 48,
- "fileNum": 4100,
- "id": 4384,
- "width": 64,
- "height": 50
- },
- {
- "x": 124,
- "y": 48,
- "fileNum": 4100,
- "id": 4385,
- "width": 64,
- "height": 50
- },
- {
- "y": 96,
- "fileNum": 4100,
- "id": 4386,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "y": 96,
- "fileNum": 4100,
- "id": 4387,
- "width": 64,
- "height": 50
- },
- {
- "x": 124,
- "y": 96,
- "fileNum": 4100,
- "id": 4388,
- "width": 64,
- "height": 50
- },
- {
- "y": 144,
- "fileNum": 4100,
- "id": 4389,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "y": 144,
- "fileNum": 4100,
- "id": 4390,
- "width": 64,
- "height": 50
- },
- {
- "x": 124,
- "y": 144,
- "fileNum": 4100,
- "id": 4391,
- "width": 64,
- "height": 50
- },
- {
- "fileNum": 15121,
- "id": 4392,
- "width": 200,
- "height": 200
- },
- {
- "x": 200,
- "fileNum": 15121,
- "id": 4393,
- "width": 200,
- "height": 200
- },
- {
- "x": 400,
- "fileNum": 15121,
- "id": 4394,
- "width": 200,
- "height": 200
- },
- {
- "x": 600,
- "fileNum": 15121,
- "id": 4395,
- "width": 200,
- "height": 200
- },
- {
- "x": 2,
- "y": 200,
- "fileNum": 15121,
- "id": 4396,
- "width": 200,
- "height": 200
- },
- {
- "x": 200,
- "y": 200,
- "fileNum": 15121,
- "id": 4397,
- "width": 200,
- "height": 200
- },
- {
- "x": 400,
- "y": 200,
- "fileNum": 15121,
- "id": 4398,
- "width": 200,
- "height": 200
- },
- {
- "x": 600,
- "y": 200,
- "fileNum": 15121,
- "id": 4399,
- "width": 200,
- "height": 200
- },
- {
- "y": 400,
- "fileNum": 15121,
- "id": 4400,
- "width": 200,
- "height": 200
- },
- {
- "x": 200,
- "y": 400,
- "fileNum": 15121,
- "id": 4401,
- "width": 200,
- "height": 200
- },
- {
- "x": 400,
- "y": 400,
- "fileNum": 15121,
- "id": 4402,
- "width": 200,
- "height": 200
- },
- {
- "x": 600,
- "y": 400,
- "fileNum": 15121,
- "id": 4403,
- "width": 200,
- "height": 200
- },
- {
- "fileNum": 4106,
- "id": 4404,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 4106,
- "id": 4405,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 4106,
- "id": 4406,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "fileNum": 4106,
- "id": 4407,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 4106,
- "id": 4408,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 4106,
- "id": 4409,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 4106,
- "id": 4410,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 4106,
- "id": 4411,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 4107,
- "id": 4412,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 4107,
- "id": 4413,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 4107,
- "id": 4414,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "fileNum": 4107,
- "id": 4415,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 4107,
- "id": 4416,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 4107,
- "id": 4417,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 4107,
- "id": 4418,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 4107,
- "id": 4419,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 4108,
- "id": 4420,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 4108,
- "id": 4421,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 4108,
- "id": 4422,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "fileNum": 4108,
- "id": 4423,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 4108,
- "id": 4424,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 4108,
- "id": 4425,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 4108,
- "id": 4426,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 4108,
- "id": 4427,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 4109,
- "id": 4428,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 4109,
- "id": 4429,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 4109,
- "id": 4430,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "fileNum": 4109,
- "id": 4431,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 4109,
- "id": 4432,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 4109,
- "id": 4433,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 4109,
- "id": 4434,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 4109,
- "id": 4435,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 4110,
- "id": 4436,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 4110,
- "id": 4437,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 4110,
- "id": 4438,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 4110,
- "id": 4439,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 4110,
- "id": 4440,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 4110,
- "id": 4441,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 4112,
- "id": 4442,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 4112,
- "id": 4443,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 4112,
- "id": 4444,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 4112,
- "id": 4445,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 4112,
- "id": 4446,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 4112,
- "id": 4447,
- "width": 128,
- "height": 128
- },
- {
- "x": 4,
- "fileNum": 4113,
- "id": 4448,
- "width": 128,
- "height": 128
- },
- {
- "x": 132,
- "fileNum": 4113,
- "id": 4449,
- "width": 128,
- "height": 128
- },
- {
- "x": 262,
- "fileNum": 4113,
- "id": 4450,
- "width": 128,
- "height": 128
- },
- {
- "x": 4,
- "y": 128,
- "fileNum": 4113,
- "id": 4451,
- "width": 128,
- "height": 128
- },
- {
- "x": 132,
- "y": 128,
- "fileNum": 4113,
- "id": 4452,
- "width": 128,
- "height": 128
- },
- {
- "x": 262,
- "y": 128,
- "fileNum": 4113,
- "id": 4453,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 4114,
- "id": 4454,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 4114,
- "id": 4455,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 4114,
- "id": 4456,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 4114,
- "id": 4457,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 4114,
- "id": 4458,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 4114,
- "id": 4459,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 2092,
- "id": 4460,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2092,
- "id": 4461,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2092,
- "id": 4462,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2092,
- "id": 4463,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 4068,
- "id": 4464,
- "width": 62,
- "height": 50
- },
- {
- "x": 62,
- "fileNum": 4068,
- "id": 4465,
- "width": 62,
- "height": 50
- },
- {
- "x": 124,
- "fileNum": 4068,
- "id": 4466,
- "width": 62,
- "height": 50
- },
- {
- "y": 48,
- "fileNum": 4068,
- "id": 4467,
- "width": 62,
- "height": 50
- },
- {
- "x": 62,
- "y": 48,
- "fileNum": 4068,
- "id": 4468,
- "width": 62,
- "height": 50
- },
- {
- "x": 124,
- "y": 48,
- "fileNum": 4068,
- "id": 4469,
- "width": 62,
- "height": 50
- },
- {
- "y": 96,
- "fileNum": 4068,
- "id": 4470,
- "width": 62,
- "height": 50
- },
- {
- "x": 62,
- "y": 96,
- "fileNum": 4068,
- "id": 4471,
- "width": 62,
- "height": 50
- },
- {
- "x": 124,
- "y": 96,
- "fileNum": 4068,
- "id": 4472,
- "width": 62,
- "height": 50
- },
- {
- "y": 144,
- "fileNum": 4068,
- "id": 4473,
- "width": 62,
- "height": 50
- },
- {
- "x": 62,
- "y": 144,
- "fileNum": 4068,
- "id": 4474,
- "width": 62,
- "height": 50
- },
- {
- "x": 124,
- "y": 144,
- "fileNum": 4068,
- "id": 4475,
- "width": 62,
- "height": 50
- },
- {
- "fileNum": 15008,
- "id": 4480,
- "width": 50,
- "height": 100
- },
- {
- "x": 50,
- "fileNum": 15008,
- "id": 4481,
- "width": 50,
- "height": 100
- },
- {
- "x": 100,
- "fileNum": 15008,
- "id": 4482,
- "width": 50,
- "height": 100
- },
- {
- "x": 150,
- "fileNum": 15008,
- "id": 4483,
- "width": 50,
- "height": 100
- },
- {
- "fileNum": 15009,
- "id": 4484,
- "width": 96,
- "height": 64
- },
- {
- "x": 94,
- "fileNum": 15009,
- "id": 4485,
- "width": 96,
- "height": 64
- },
- {
- "x": 186,
- "fileNum": 15009,
- "id": 4486,
- "width": 96,
- "height": 64
- },
- {
- "x": 284,
- "fileNum": 15009,
- "id": 4487,
- "width": 96,
- "height": 64
- },
- {
- "fileNum": 2094,
- "id": 4490,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2094,
- "id": 4491,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2094,
- "id": 4492,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2094,
- "id": 4493,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2095,
- "id": 4494,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2095,
- "id": 4495,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2095,
- "id": 4496,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2095,
- "id": 4497,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 11000,
- "id": 4498,
- "width": 512,
- "height": 192
- },
- {
- "fileNum": 11001,
- "id": 4499,
- "width": 512,
- "height": 320
- },
- {
- "fileNum": 15075,
- "id": 4500,
- "width": 100,
- "height": 118
- },
- {
- "fileNum": 15076,
- "id": 4501,
- "width": 232,
- "height": 130
- },
- {
- "fileNum": 12013,
- "id": 4502,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 14000,
- "id": 4503,
- "width": 512,
- "height": 370
- },
- {
- "fileNum": 15077,
- "id": 4504,
- "width": 124,
- "height": 130
- },
- {
- "x": 384,
- "y": 384,
- "fileNum": 12011,
- "id": 4505,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 12012,
- "id": 4506,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "fileNum": 12012,
- "id": 4507,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12012,
- "id": 4508,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12012,
- "id": 4509,
- "width": 128,
- "height": 128
- },
- {
- "y": 512,
- "fileNum": 12012,
- "id": 4510,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 512,
- "fileNum": 12012,
- "id": 4511,
- "width": 128,
- "height": 256
- },
- {
- "y": 640,
- "fileNum": 12012,
- "id": 4512,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 640,
- "fileNum": 12012,
- "id": 4513,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "y": 512,
- "fileNum": 12012,
- "id": 4514,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "y": 512,
- "fileNum": 12012,
- "id": 4515,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 15123,
- "id": 4540,
- "width": 596,
- "height": 308
- },
- {
- "fileNum": 15124,
- "id": 4541,
- "width": 596,
- "height": 308
- },
- {
- "fileNum": 15125,
- "id": 4542,
- "width": 596,
- "height": 308
- },
- {
- "fileNum": 15126,
- "id": 4543,
- "width": 596,
- "height": 308
- },
- {
- "fileNum": 9018,
- "id": 4545,
- "width": 512,
- "height": 512
- },
- {
- "fileNum": 9019,
- "id": 4546,
- "width": 506,
- "height": 782
- },
- {
- "x": 58,
- "y": 76,
- "fileNum": 9020,
- "id": 4547,
- "width": 464,
- "height": 292
- },
- {
- "x": 256,
- "y": 640,
- "fileNum": 12012,
- "id": 4597,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "y": 640,
- "fileNum": 12012,
- "id": 4598,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 11047,
- "id": 4599,
- "width": 576,
- "height": 512
- },
- {
- "y": 64,
- "fileNum": 11048,
- "id": 4600,
- "width": 192,
- "height": 384
- },
- {
- "fileNum": 10004,
- "id": 4664,
- "width": 512,
- "height": 388
- },
- {
- "fileNum": 10005,
- "id": 4665,
- "width": 186,
- "height": 364
- },
- {
- "x": 186,
- "fileNum": 10005,
- "id": 4666,
- "width": 186,
- "height": 364
- },
- {
- "fileNum": 10006,
- "id": 4667,
- "width": 304,
- "height": 442
- },
- {
- "fileNum": 10007,
- "id": 4668,
- "width": 208,
- "height": 358
- },
- {
- "fileNum": 18019,
- "id": 4694,
- "width": 34,
- "height": 32
- },
- {
- "x": 34,
- "fileNum": 18019,
- "id": 4695,
- "width": 34,
- "height": 32
- },
- {
- "x": 68,
- "fileNum": 18019,
- "id": 4696,
- "width": 34,
- "height": 32
- },
- {
- "x": 102,
- "fileNum": 18019,
- "id": 4697,
- "width": 34,
- "height": 32
- },
- {
- "fileNum": 2128,
- "id": 4750,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2128,
- "id": 4751,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2128,
- "id": 4752,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2128,
- "id": 4753,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 3072,
- "id": 4782,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3073,
- "id": 4783,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3074,
- "id": 4784,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3075,
- "id": 4785,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3076,
- "id": 4786,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3077,
- "id": 4787,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3078,
- "id": 4788,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3079,
- "id": 4789,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3080,
- "id": 4790,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3081,
- "id": 4791,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3083,
- "id": 4792,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3085,
- "id": 4793,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3086,
- "id": 4794,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3087,
- "id": 4795,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 3088,
- "id": 4796,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 4126,
- "id": 4798,
- "width": 110,
- "height": 100
- },
- {
- "x": 110,
- "fileNum": 4126,
- "id": 4799,
- "width": 110,
- "height": 100
- },
- {
- "x": 220,
- "fileNum": 4126,
- "id": 4800,
- "width": 110,
- "height": 100
- },
- {
- "x": 330,
- "fileNum": 4126,
- "id": 4801,
- "width": 110,
- "height": 100
- },
- {
- "x": 440,
- "fileNum": 4126,
- "id": 4802,
- "width": 110,
- "height": 100
- },
- {
- "x": 550,
- "fileNum": 4126,
- "id": 4803,
- "width": 110,
- "height": 100
- },
- {
- "x": 660,
- "fileNum": 4126,
- "id": 4804,
- "width": 110,
- "height": 100
- },
- {
- "x": 770,
- "fileNum": 4126,
- "id": 4805,
- "width": 110,
- "height": 100
- },
- {
- "fileNum": 4127,
- "id": 4806,
- "width": 110,
- "height": 100
- },
- {
- "x": 110,
- "fileNum": 4127,
- "id": 4807,
- "width": 110,
- "height": 100
- },
- {
- "x": 220,
- "fileNum": 4127,
- "id": 4808,
- "width": 110,
- "height": 100
- },
- {
- "x": 330,
- "fileNum": 4127,
- "id": 4809,
- "width": 110,
- "height": 100
- },
- {
- "x": 440,
- "fileNum": 4127,
- "id": 4810,
- "width": 110,
- "height": 100
- },
- {
- "x": 550,
- "fileNum": 4127,
- "id": 4811,
- "width": 110,
- "height": 100
- },
- {
- "x": 660,
- "fileNum": 4127,
- "id": 4812,
- "width": 110,
- "height": 100
- },
- {
- "x": 770,
- "fileNum": 4127,
- "id": 4813,
- "width": 110,
- "height": 100
- },
- {
- "fileNum": 4128,
- "id": 4814,
- "width": 110,
- "height": 100
- },
- {
- "x": 110,
- "fileNum": 4128,
- "id": 4815,
- "width": 110,
- "height": 100
- },
- {
- "x": 220,
- "fileNum": 4128,
- "id": 4816,
- "width": 110,
- "height": 100
- },
- {
- "x": 330,
- "fileNum": 4128,
- "id": 4817,
- "width": 110,
- "height": 100
- },
- {
- "x": 440,
- "fileNum": 4128,
- "id": 4818,
- "width": 110,
- "height": 100
- },
- {
- "x": 550,
- "fileNum": 4128,
- "id": 4819,
- "width": 110,
- "height": 100
- },
- {
- "x": 660,
- "fileNum": 4128,
- "id": 4820,
- "width": 110,
- "height": 100
- },
- {
- "x": 770,
- "fileNum": 4128,
- "id": 4821,
- "width": 110,
- "height": 100
- },
- {
- "fileNum": 4129,
- "id": 4822,
- "width": 110,
- "height": 100
- },
- {
- "x": 110,
- "fileNum": 4129,
- "id": 4823,
- "width": 110,
- "height": 100
- },
- {
- "x": 220,
- "fileNum": 4129,
- "id": 4824,
- "width": 110,
- "height": 100
- },
- {
- "x": 330,
- "fileNum": 4129,
- "id": 4825,
- "width": 110,
- "height": 100
- },
- {
- "x": 440,
- "fileNum": 4129,
- "id": 4826,
- "width": 110,
- "height": 100
- },
- {
- "x": 550,
- "fileNum": 4129,
- "id": 4827,
- "width": 110,
- "height": 100
- },
- {
- "x": 660,
- "fileNum": 4129,
- "id": 4828,
- "width": 110,
- "height": 100
- },
- {
- "x": 770,
- "fileNum": 4129,
- "id": 4829,
- "width": 110,
- "height": 100
- },
- {
- "fileNum": 20002,
- "id": 4834,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 20002,
- "id": 4835,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 20002,
- "id": 4836,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 20002,
- "id": 4837,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 20002,
- "id": 4838,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 20002,
- "id": 4839,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 20002,
- "id": 4840,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 20002,
- "id": 4841,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 20002,
- "id": 4842,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 20002,
- "id": 4843,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 20002,
- "id": 4844,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 20002,
- "id": 4845,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 20002,
- "id": 4846,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 20002,
- "id": 4847,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 20002,
- "id": 4848,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 20002,
- "id": 4849,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 20002,
- "id": 4850,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 20002,
- "id": 4851,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 20002,
- "id": 4852,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 20002,
- "id": 4853,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 20002,
- "id": 4854,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 20002,
- "id": 4855,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 20010,
- "id": 4860,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8036,
- "id": 4861,
- "width": 140,
- "height": 108
- },
- {
- "fileNum": 8028,
- "id": 4862,
- "width": 552,
- "height": 394
- },
- {
- "fileNum": 8029,
- "id": 4863,
- "width": 148,
- "height": 260
- },
- {
- "fileNum": 8030,
- "id": 4864,
- "width": 580,
- "height": 394
- },
- {
- "fileNum": 8031,
- "id": 4865,
- "width": 580,
- "height": 138
- },
- {
- "fileNum": 8032,
- "id": 4866,
- "width": 552,
- "height": 136
- },
- {
- "fileNum": 8033,
- "id": 4867,
- "width": 552,
- "height": 428
- },
- {
- "fileNum": 8034,
- "id": 4868,
- "width": 580,
- "height": 428
- },
- {
- "fileNum": 8035,
- "id": 4869,
- "width": 148,
- "height": 274
- },
- {
- "fileNum": 11004,
- "id": 4870,
- "width": 512,
- "height": 192
- },
- {
- "fileNum": 15081,
- "id": 4871,
- "width": 66,
- "height": 90
- },
- {
- "fileNum": 11005,
- "id": 4872,
- "width": 512,
- "height": 370
- },
- {
- "fileNum": 15082,
- "id": 4873,
- "width": 52,
- "height": 200
- },
- {
- "fileNum": 15083,
- "id": 4874,
- "width": 66,
- "height": 36
- },
- {
- "fileNum": 15084,
- "id": 4875,
- "width": 66,
- "height": 36
- },
- {
- "fileNum": 14002,
- "id": 4876,
- "width": 512,
- "height": 372
- },
- {
- "fileNum": 11006,
- "id": 4877,
- "width": 512,
- "height": 192
- },
- {
- "fileNum": 11007,
- "id": 4878,
- "width": 512,
- "height": 320
- },
- {
- "fileNum": 15085,
- "id": 4879,
- "width": 52,
- "height": 200
- },
- {
- "fileNum": 15086,
- "id": 4880,
- "width": 100,
- "height": 72
- },
- {
- "fileNum": 15087,
- "id": 4881,
- "width": 100,
- "height": 86
- },
- {
- "fileNum": 12015,
- "id": 4882,
- "width": 124,
- "height": 124
- },
- {
- "fileNum": 15088,
- "id": 4883,
- "width": 80,
- "height": 100
- },
- {
- "fileNum": 15089,
- "id": 4884,
- "width": 40,
- "height": 110
- },
- {
- "fileNum": 14003,
- "id": 4885,
- "width": 512,
- "height": 368
- },
- {
- "fileNum": 15090,
- "id": 4886,
- "width": 90,
- "height": 74
- },
- {
- "fileNum": 11008,
- "id": 4887,
- "width": 600,
- "height": 192
- },
- {
- "fileNum": 11009,
- "id": 4888,
- "width": 600,
- "height": 320
- },
- {
- "fileNum": 15091,
- "id": 4889,
- "width": 66,
- "height": 90
- },
- {
- "fileNum": 15092,
- "id": 4890,
- "width": 80,
- "height": 152
- },
- {
- "fileNum": 15093,
- "id": 4891,
- "width": 200,
- "height": 154
- },
- {
- "fileNum": 12016,
- "id": 4892,
- "width": 80,
- "height": 80
- },
- {
- "fileNum": 14004,
- "id": 4893,
- "width": 600,
- "height": 360
- },
- {
- "fileNum": 15094,
- "id": 4894,
- "width": 140,
- "height": 160
- },
- {
- "fileNum": 11010,
- "id": 4895,
- "width": 512,
- "height": 192
- },
- {
- "fileNum": 11011,
- "id": 4896,
- "width": 512,
- "height": 390
- },
- {
- "fileNum": 15095,
- "id": 4897,
- "width": 300,
- "height": 150
- },
- {
- "fileNum": 12017,
- "id": 4898,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 14005,
- "id": 4899,
- "width": 512,
- "height": 428
- },
- {
- "fileNum": 20003,
- "id": 4900,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 20004,
- "id": 4901,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 20005,
- "id": 4902,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 20006,
- "id": 4903,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 2129,
- "id": 4904,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2129,
- "id": 4905,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2129,
- "id": 4906,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2129,
- "id": 4907,
- "width": 34,
- "height": 100
- },
- {
- "y": 512,
- "fileNum": 11047,
- "id": 4908,
- "width": 576,
- "height": 64
- },
- {
- "fileNum": 7074,
- "id": 4909,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 87,
- "id": 4910,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 86,
- "id": 4911,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 84,
- "id": 4912,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 85,
- "id": 4913,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 100,
- "id": 4914,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 88,
- "id": 4915,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 91,
- "id": 4916,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 93,
- "id": 4917,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 94,
- "id": 4918,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 92,
- "id": 4919,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 90,
- "id": 4920,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 99,
- "id": 4921,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 89,
- "id": 4922,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 7075,
- "id": 4923,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 95,
- "id": 4924,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 96,
- "id": 4925,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 97,
- "id": 4926,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 98,
- "id": 4927,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15096,
- "id": 4928,
- "width": 60,
- "height": 84
- },
- {
- "fileNum": 15097,
- "id": 4929,
- "width": 68,
- "height": 80
- },
- {
- "fileNum": 15098,
- "id": 4930,
- "width": 68,
- "height": 80
- },
- {
- "fileNum": 15099,
- "id": 4931,
- "width": 68,
- "height": 60
- },
- {
- "fileNum": 15100,
- "id": 4932,
- "width": 68,
- "height": 46
- },
- {
- "fileNum": 11012,
- "id": 4933,
- "width": 1000,
- "height": 192
- },
- {
- "fileNum": 11013,
- "id": 4934,
- "width": 1000,
- "height": 320
- },
- {
- "fileNum": 15101,
- "id": 4935,
- "width": 300,
- "height": 160
- },
- {
- "fileNum": 12018,
- "id": 4936,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12018,
- "id": 4937,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12018,
- "id": 4938,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12018,
- "id": 4939,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 14006,
- "id": 4940,
- "width": 512,
- "height": 374
- },
- {
- "fileNum": 4101,
- "id": 4941,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 4101,
- "id": 4942,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 4101,
- "id": 4943,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 4101,
- "id": 4944,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 4101,
- "id": 4945,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 4101,
- "id": 4946,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 4102,
- "id": 4947,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 4102,
- "id": 4948,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 4102,
- "id": 4949,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 4102,
- "id": 4950,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 4102,
- "id": 4951,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 4102,
- "id": 4952,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 4103,
- "id": 4953,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 4103,
- "id": 4954,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 4103,
- "id": 4955,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 4103,
- "id": 4956,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 4103,
- "id": 4957,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 4103,
- "id": 4958,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 4104,
- "id": 4959,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 4104,
- "id": 4960,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 4104,
- "id": 4961,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 4104,
- "id": 4962,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 4104,
- "id": 4963,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 4104,
- "id": 4964,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 15127,
- "id": 4969,
- "width": 62,
- "height": 170
- },
- {
- "x": 62,
- "fileNum": 15127,
- "id": 4970,
- "width": 62,
- "height": 170
- },
- {
- "x": 124,
- "fileNum": 15127,
- "id": 4971,
- "width": 62,
- "height": 170
- },
- {
- "x": 186,
- "fileNum": 15127,
- "id": 4972,
- "width": 62,
- "height": 170
- },
- {
- "x": 248,
- "fileNum": 15127,
- "id": 4973,
- "width": 62,
- "height": 170
- },
- {
- "x": 310,
- "fileNum": 15127,
- "id": 4974,
- "width": 62,
- "height": 170
- },
- {
- "x": 372,
- "fileNum": 15127,
- "id": 4975,
- "width": 62,
- "height": 170
- },
- {
- "x": 434,
- "fileNum": 15127,
- "id": 4976,
- "width": 62,
- "height": 170
- },
- {
- "fileNum": 25000,
- "id": 4978,
- "width": 56,
- "height": 60
- },
- {
- "x": 50,
- "fileNum": 25000,
- "id": 4979,
- "width": 56,
- "height": 60
- },
- {
- "x": 100,
- "fileNum": 25000,
- "id": 4980,
- "width": 56,
- "height": 60
- },
- {
- "x": 150,
- "fileNum": 25000,
- "id": 4981,
- "width": 56,
- "height": 60
- },
- {
- "fileNum": 25001,
- "id": 4982,
- "width": 56,
- "height": 60
- },
- {
- "x": 50,
- "fileNum": 25001,
- "id": 4983,
- "width": 56,
- "height": 60
- },
- {
- "x": 100,
- "fileNum": 25001,
- "id": 4984,
- "width": 56,
- "height": 60
- },
- {
- "x": 150,
- "fileNum": 25001,
- "id": 4985,
- "width": 56,
- "height": 60
- },
- {
- "fileNum": 7076,
- "id": 4986,
- "width": 256,
- "height": 128
- },
- {
- "fileNum": 7077,
- "id": 4987,
- "width": 640,
- "height": 480
- },
- {
- "fileNum": 12019,
- "id": 4988,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12019,
- "id": 4989,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12019,
- "id": 4990,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12019,
- "id": 4991,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15102,
- "id": 4992,
- "width": 120,
- "height": 120
- },
- {
- "fileNum": 15103,
- "id": 4993,
- "width": 80,
- "height": 120
- },
- {
- "fileNum": 15104,
- "id": 4994,
- "width": 80,
- "height": 120
- },
- {
- "fileNum": 2130,
- "id": 4995,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2130,
- "id": 4996,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2130,
- "id": 4997,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2130,
- "id": 4998,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 16084,
- "id": 4999,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 61,
- "id": 5000,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 61,
- "id": 5001,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 61,
- "id": 5002,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 61,
- "id": 5003,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 61,
- "id": 5004,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 61,
- "id": 5005,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 61,
- "id": 5006,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 61,
- "id": 5007,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 61,
- "id": 5008,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 61,
- "id": 5009,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 61,
- "id": 5010,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 61,
- "id": 5011,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 61,
- "id": 5012,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 61,
- "id": 5013,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 61,
- "id": 5014,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 61,
- "id": 5015,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 61,
- "id": 5016,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 61,
- "id": 5017,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 61,
- "id": 5018,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 61,
- "id": 5019,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 61,
- "id": 5020,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 61,
- "id": 5021,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2131,
- "id": 5026,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2131,
- "id": 5027,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2131,
- "id": 5028,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2131,
- "id": 5029,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 62,
- "id": 5030,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 62,
- "id": 5031,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 62,
- "id": 5032,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 62,
- "id": 5033,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 62,
- "id": 5034,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 62,
- "id": 5035,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 62,
- "id": 5036,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 62,
- "id": 5037,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 62,
- "id": 5038,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 62,
- "id": 5039,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 62,
- "id": 5040,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 62,
- "id": 5041,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 62,
- "id": 5042,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 62,
- "id": 5043,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 62,
- "id": 5044,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 62,
- "id": 5045,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 62,
- "id": 5046,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 62,
- "id": 5047,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 62,
- "id": 5048,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 62,
- "id": 5049,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 62,
- "id": 5050,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 62,
- "id": 5051,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2132,
- "id": 5056,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2132,
- "id": 5057,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2132,
- "id": 5058,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2132,
- "id": 5059,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 59,
- "id": 5060,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 59,
- "id": 5061,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 59,
- "id": 5062,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 59,
- "id": 5063,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 59,
- "id": 5064,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 59,
- "id": 5065,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 59,
- "id": 5066,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 59,
- "id": 5067,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 59,
- "id": 5068,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 59,
- "id": 5069,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 59,
- "id": 5070,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 59,
- "id": 5071,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 59,
- "id": 5072,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 59,
- "id": 5073,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 59,
- "id": 5074,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 59,
- "id": 5075,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 59,
- "id": 5076,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 59,
- "id": 5077,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 59,
- "id": 5078,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 59,
- "id": 5079,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 59,
- "id": 5080,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 59,
- "id": 5081,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2133,
- "id": 5086,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2133,
- "id": 5087,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2133,
- "id": 5088,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2133,
- "id": 5089,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 75,
- "id": 5090,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 75,
- "id": 5091,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 75,
- "id": 5092,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 75,
- "id": 5093,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 75,
- "id": 5094,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 75,
- "id": 5095,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 75,
- "id": 5096,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 75,
- "id": 5097,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 75,
- "id": 5098,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 75,
- "id": 5099,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 75,
- "id": 5100,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 75,
- "id": 5101,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 75,
- "id": 5102,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 75,
- "id": 5103,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 75,
- "id": 5104,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 75,
- "id": 5105,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 75,
- "id": 5106,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 75,
- "id": 5107,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 75,
- "id": 5108,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 75,
- "id": 5109,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 75,
- "id": 5110,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 75,
- "id": 5111,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2134,
- "id": 5116,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2134,
- "id": 5117,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2134,
- "id": 5118,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2134,
- "id": 5119,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 63,
- "id": 5120,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 63,
- "id": 5121,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 63,
- "id": 5122,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 63,
- "id": 5123,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 63,
- "id": 5124,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 63,
- "id": 5125,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 63,
- "id": 5126,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 63,
- "id": 5127,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 63,
- "id": 5128,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 63,
- "id": 5129,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 63,
- "id": 5130,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 63,
- "id": 5131,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 63,
- "id": 5132,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 63,
- "id": 5133,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 63,
- "id": 5134,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 63,
- "id": 5135,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 63,
- "id": 5136,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 63,
- "id": 5137,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 63,
- "id": 5138,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 63,
- "id": 5139,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 63,
- "id": 5140,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 63,
- "id": 5141,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2135,
- "id": 5146,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2135,
- "id": 5147,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2135,
- "id": 5148,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2135,
- "id": 5149,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 66,
- "id": 5150,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 66,
- "id": 5151,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 66,
- "id": 5152,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 66,
- "id": 5153,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 66,
- "id": 5154,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 66,
- "id": 5155,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 66,
- "id": 5156,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 66,
- "id": 5157,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 66,
- "id": 5158,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 66,
- "id": 5159,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 66,
- "id": 5160,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 66,
- "id": 5161,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 66,
- "id": 5162,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 66,
- "id": 5163,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 66,
- "id": 5164,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 66,
- "id": 5165,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 66,
- "id": 5166,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 66,
- "id": 5167,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 66,
- "id": 5168,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 66,
- "id": 5169,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 66,
- "id": 5170,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 66,
- "id": 5171,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2136,
- "id": 5176,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2136,
- "id": 5177,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2136,
- "id": 5178,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2136,
- "id": 5179,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 68,
- "id": 5180,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 68,
- "id": 5181,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 68,
- "id": 5182,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 68,
- "id": 5183,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 68,
- "id": 5184,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 68,
- "id": 5185,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 68,
- "id": 5186,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 68,
- "id": 5187,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 68,
- "id": 5188,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 68,
- "id": 5189,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 68,
- "id": 5190,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 68,
- "id": 5191,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 68,
- "id": 5192,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 68,
- "id": 5193,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 68,
- "id": 5194,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 68,
- "id": 5195,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 68,
- "id": 5196,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 68,
- "id": 5197,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 68,
- "id": 5198,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 68,
- "id": 5199,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 68,
- "id": 5200,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 68,
- "id": 5201,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2137,
- "id": 5206,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2137,
- "id": 5207,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2137,
- "id": 5208,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2137,
- "id": 5209,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 69,
- "id": 5210,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 69,
- "id": 5211,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 69,
- "id": 5212,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 69,
- "id": 5213,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 69,
- "id": 5214,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 69,
- "id": 5215,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 69,
- "id": 5216,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 69,
- "id": 5217,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 69,
- "id": 5218,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 69,
- "id": 5219,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 69,
- "id": 5220,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 69,
- "id": 5221,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 69,
- "id": 5222,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 69,
- "id": 5223,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 69,
- "id": 5224,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 69,
- "id": 5225,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 69,
- "id": 5226,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 69,
- "id": 5227,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 69,
- "id": 5228,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 69,
- "id": 5229,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 69,
- "id": 5230,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 69,
- "id": 5231,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2138,
- "id": 5236,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2138,
- "id": 5237,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2138,
- "id": 5238,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2138,
- "id": 5239,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 67,
- "id": 5240,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 67,
- "id": 5241,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 67,
- "id": 5242,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 67,
- "id": 5243,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 67,
- "id": 5244,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 67,
- "id": 5245,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 67,
- "id": 5246,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 67,
- "id": 5247,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 67,
- "id": 5248,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 67,
- "id": 5249,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 67,
- "id": 5250,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 67,
- "id": 5251,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 67,
- "id": 5252,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 67,
- "id": 5253,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 67,
- "id": 5254,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 67,
- "id": 5255,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 67,
- "id": 5256,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 67,
- "id": 5257,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 67,
- "id": 5258,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 67,
- "id": 5259,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 67,
- "id": 5260,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 67,
- "id": 5261,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2139,
- "id": 5266,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2139,
- "id": 5267,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2139,
- "id": 5268,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2139,
- "id": 5269,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 65,
- "id": 5270,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 65,
- "id": 5271,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 65,
- "id": 5272,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 65,
- "id": 5273,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 65,
- "id": 5274,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 65,
- "id": 5275,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 65,
- "id": 5276,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 65,
- "id": 5277,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 65,
- "id": 5278,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 65,
- "id": 5279,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 65,
- "id": 5280,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 65,
- "id": 5281,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 65,
- "id": 5282,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 65,
- "id": 5283,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 65,
- "id": 5284,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 65,
- "id": 5285,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 65,
- "id": 5286,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 65,
- "id": 5287,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 65,
- "id": 5288,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 65,
- "id": 5289,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 65,
- "id": 5290,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 65,
- "id": 5291,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2140,
- "id": 5296,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2140,
- "id": 5297,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2140,
- "id": 5298,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2140,
- "id": 5299,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 64,
- "id": 5300,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 64,
- "id": 5301,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 64,
- "id": 5302,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 64,
- "id": 5303,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 64,
- "id": 5304,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 64,
- "id": 5305,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 64,
- "id": 5306,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 64,
- "id": 5307,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 64,
- "id": 5308,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 64,
- "id": 5309,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 64,
- "id": 5310,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 64,
- "id": 5311,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 64,
- "id": 5312,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 64,
- "id": 5313,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 64,
- "id": 5314,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 64,
- "id": 5315,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 64,
- "id": 5316,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 64,
- "id": 5317,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 64,
- "id": 5318,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 64,
- "id": 5319,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 64,
- "id": 5320,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 64,
- "id": 5321,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 477,
- "id": 5326,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 345,
- "id": 5327,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 345,
- "id": 5328,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 345,
- "id": 5329,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 345,
- "id": 5330,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 345,
- "id": 5331,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 345,
- "id": 5332,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 345,
- "id": 5333,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 345,
- "id": 5334,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 345,
- "id": 5335,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 345,
- "id": 5336,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 345,
- "id": 5337,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 345,
- "id": 5338,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 345,
- "id": 5339,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 345,
- "id": 5340,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 345,
- "id": 5341,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 345,
- "id": 5342,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 345,
- "id": 5343,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 345,
- "id": 5344,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 345,
- "id": 5345,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 345,
- "id": 5346,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 345,
- "id": 5347,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 345,
- "id": 5348,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2141,
- "id": 5353,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2141,
- "id": 5354,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2141,
- "id": 5355,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2141,
- "id": 5356,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 25002,
- "id": 5357,
- "width": 20,
- "height": 34
- },
- {
- "fileNum": 25003,
- "id": 5358,
- "width": 38,
- "height": 34
- },
- {
- "fileNum": 25004,
- "id": 5359,
- "width": 38,
- "height": 34
- },
- {
- "fileNum": 70,
- "id": 5360,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 70,
- "id": 5361,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 70,
- "id": 5362,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 70,
- "id": 5363,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 70,
- "id": 5364,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 70,
- "id": 5365,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 70,
- "id": 5366,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 70,
- "id": 5367,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 70,
- "id": 5368,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 70,
- "id": 5369,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 70,
- "id": 5370,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 70,
- "id": 5371,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 70,
- "id": 5372,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 70,
- "id": 5373,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 70,
- "id": 5374,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 70,
- "id": 5375,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 70,
- "id": 5376,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 70,
- "id": 5377,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 70,
- "id": 5378,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 70,
- "id": 5379,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 70,
- "id": 5380,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 70,
- "id": 5381,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2142,
- "id": 5386,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2142,
- "id": 5387,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2142,
- "id": 5388,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2142,
- "id": 5389,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 71,
- "id": 5390,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 71,
- "id": 5391,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 71,
- "id": 5392,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 71,
- "id": 5393,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 71,
- "id": 5394,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 71,
- "id": 5395,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 71,
- "id": 5396,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 71,
- "id": 5397,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 71,
- "id": 5398,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 71,
- "id": 5399,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 71,
- "id": 5400,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 71,
- "id": 5401,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 71,
- "id": 5402,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 71,
- "id": 5403,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 71,
- "id": 5404,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 71,
- "id": 5405,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 71,
- "id": 5406,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 71,
- "id": 5407,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 71,
- "id": 5408,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 71,
- "id": 5409,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 71,
- "id": 5410,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 71,
- "id": 5411,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2143,
- "id": 5416,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2143,
- "id": 5417,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2143,
- "id": 5418,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2143,
- "id": 5419,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 72,
- "id": 5420,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 72,
- "id": 5421,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 72,
- "id": 5422,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 72,
- "id": 5423,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 72,
- "id": 5424,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 72,
- "id": 5425,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 72,
- "id": 5426,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 72,
- "id": 5427,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 72,
- "id": 5428,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 72,
- "id": 5429,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 72,
- "id": 5430,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 72,
- "id": 5431,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 72,
- "id": 5432,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 72,
- "id": 5433,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 72,
- "id": 5434,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 72,
- "id": 5435,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 72,
- "id": 5436,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 72,
- "id": 5437,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 72,
- "id": 5438,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 72,
- "id": 5439,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 72,
- "id": 5440,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 72,
- "id": 5441,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2144,
- "id": 5446,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2144,
- "id": 5447,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2144,
- "id": 5448,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2144,
- "id": 5449,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 73,
- "id": 5450,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 73,
- "id": 5451,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 73,
- "id": 5452,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 73,
- "id": 5453,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 73,
- "id": 5454,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 73,
- "id": 5455,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 73,
- "id": 5456,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 73,
- "id": 5457,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 73,
- "id": 5458,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 73,
- "id": 5459,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 73,
- "id": 5460,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 73,
- "id": 5461,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 73,
- "id": 5462,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 73,
- "id": 5463,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 73,
- "id": 5464,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 73,
- "id": 5465,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 73,
- "id": 5466,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 73,
- "id": 5467,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 73,
- "id": 5468,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 73,
- "id": 5469,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 73,
- "id": 5470,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 73,
- "id": 5471,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4131,
- "id": 5476,
- "width": 106,
- "height": 70
- },
- {
- "x": 106,
- "fileNum": 4131,
- "id": 5477,
- "width": 106,
- "height": 70
- },
- {
- "x": 212,
- "fileNum": 4131,
- "id": 5478,
- "width": 106,
- "height": 70
- },
- {
- "x": 318,
- "fileNum": 4131,
- "id": 5479,
- "width": 106,
- "height": 70
- },
- {
- "y": 70,
- "fileNum": 4131,
- "id": 5480,
- "width": 106,
- "height": 70
- },
- {
- "x": 106,
- "y": 70,
- "fileNum": 4131,
- "id": 5481,
- "width": 106,
- "height": 70
- },
- {
- "x": 212,
- "y": 70,
- "fileNum": 4131,
- "id": 5482,
- "width": 106,
- "height": 70
- },
- {
- "x": 318,
- "y": 70,
- "fileNum": 4131,
- "id": 5483,
- "width": 106,
- "height": 70
- },
- {
- "y": 140,
- "fileNum": 4131,
- "id": 5484,
- "width": 106,
- "height": 70
- },
- {
- "x": 106,
- "y": 140,
- "fileNum": 4131,
- "id": 5485,
- "width": 106,
- "height": 70
- },
- {
- "x": 212,
- "y": 140,
- "fileNum": 4131,
- "id": 5486,
- "width": 106,
- "height": 70
- },
- {
- "x": 318,
- "y": 140,
- "fileNum": 4131,
- "id": 5487,
- "width": 106,
- "height": 70
- },
- {
- "y": 210,
- "fileNum": 4131,
- "id": 5488,
- "width": 106,
- "height": 70
- },
- {
- "x": 106,
- "y": 210,
- "fileNum": 4131,
- "id": 5489,
- "width": 106,
- "height": 70
- },
- {
- "x": 212,
- "y": 210,
- "fileNum": 4131,
- "id": 5490,
- "width": 106,
- "height": 70
- },
- {
- "x": 318,
- "y": 210,
- "fileNum": 4131,
- "id": 5491,
- "width": 106,
- "height": 70
- },
- {
- "fileNum": 2145,
- "id": 5496,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2145,
- "id": 5497,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2145,
- "id": 5498,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2145,
- "id": 5499,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 12046,
- "id": 5500,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12046,
- "id": 5501,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12046,
- "id": 5502,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12046,
- "id": 5503,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 60,
- "id": 5504,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 60,
- "id": 5505,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 60,
- "id": 5506,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 60,
- "id": 5507,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 60,
- "id": 5508,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 60,
- "id": 5509,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 60,
- "id": 5510,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 60,
- "id": 5511,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 60,
- "id": 5512,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 60,
- "id": 5513,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 60,
- "id": 5514,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 60,
- "id": 5515,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 60,
- "id": 5516,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 60,
- "id": 5517,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 60,
- "id": 5518,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 60,
- "id": 5519,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 60,
- "id": 5520,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 60,
- "id": 5521,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 60,
- "id": 5522,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 60,
- "id": 5523,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 60,
- "id": 5524,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 60,
- "id": 5525,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 74,
- "id": 5530,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 74,
- "id": 5531,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 74,
- "id": 5532,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 74,
- "id": 5533,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 74,
- "id": 5534,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 74,
- "id": 5535,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 74,
- "id": 5536,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 74,
- "id": 5537,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 74,
- "id": 5538,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 74,
- "id": 5539,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 74,
- "id": 5540,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 74,
- "id": 5541,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 74,
- "id": 5542,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 74,
- "id": 5543,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 74,
- "id": 5544,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 74,
- "id": 5545,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 74,
- "id": 5546,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 74,
- "id": 5547,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 74,
- "id": 5548,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 74,
- "id": 5549,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 74,
- "id": 5550,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 74,
- "id": 5551,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 346,
- "id": 5556,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 422,
- "id": 5557,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 422,
- "id": 5558,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 422,
- "id": 5559,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 422,
- "id": 5560,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 422,
- "id": 5561,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 422,
- "id": 5562,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 422,
- "id": 5563,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 422,
- "id": 5564,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 422,
- "id": 5565,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 422,
- "id": 5566,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 422,
- "id": 5567,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 422,
- "id": 5568,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 422,
- "id": 5569,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 422,
- "id": 5570,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 422,
- "id": 5571,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 422,
- "id": 5572,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 422,
- "id": 5573,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 422,
- "id": 5574,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 422,
- "id": 5575,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 422,
- "id": 5576,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 422,
- "id": 5577,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 422,
- "id": 5578,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2146,
- "id": 5583,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2146,
- "id": 5584,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2146,
- "id": 5585,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2146,
- "id": 5586,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 17013,
- "id": 5587,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11019,
- "id": 5588,
- "width": 512,
- "height": 64
- },
- {
- "fileNum": 11021,
- "id": 5589,
- "width": 512,
- "height": 320
- },
- {
- "fileNum": 11020,
- "id": 5590,
- "width": 512,
- "height": 192
- },
- {
- "fileNum": 14028,
- "id": 5591,
- "width": 512,
- "height": 640
- },
- {
- "fileNum": 11022,
- "id": 5592,
- "width": 192,
- "height": 128
- },
- {
- "x": 192,
- "fileNum": 11022,
- "id": 5593,
- "width": 192,
- "height": 128
- },
- {
- "fileNum": 17014,
- "id": 5594,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16089,
- "id": 5595,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11023,
- "id": 5596,
- "width": 640,
- "height": 192
- },
- {
- "fileNum": 11024,
- "id": 5597,
- "width": 640,
- "height": 448
- },
- {
- "fileNum": 14030,
- "id": 5598,
- "width": 640,
- "height": 568
- },
- {
- "fileNum": 11025,
- "id": 5599,
- "width": 192,
- "height": 128
- },
- {
- "x": 192,
- "fileNum": 11025,
- "id": 5600,
- "width": 192,
- "height": 128
- },
- {
- "fileNum": 14031,
- "id": 5601,
- "width": 512,
- "height": 600
- },
- {
- "x": 64,
- "fileNum": 12038,
- "id": 5602,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12038,
- "id": 5603,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12038,
- "id": 5604,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12038,
- "id": 5605,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12038,
- "id": 5606,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12038,
- "id": 5607,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12038,
- "id": 5608,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12038,
- "id": 5609,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12038,
- "id": 5610,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12038,
- "id": 5611,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12038,
- "id": 5612,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12038,
- "id": 5613,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12038,
- "id": 5614,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12038,
- "id": 5615,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12038,
- "id": 5616,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12038,
- "id": 5617,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12038,
- "id": 5618,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12038,
- "id": 5619,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12038,
- "id": 5620,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12038,
- "id": 5621,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12038,
- "id": 5622,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12038,
- "id": 5623,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12038,
- "id": 5624,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12038,
- "id": 5625,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12038,
- "id": 5626,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12038,
- "id": 5627,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12038,
- "id": 5628,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12038,
- "id": 5629,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12038,
- "id": 5630,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12038,
- "id": 5631,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12038,
- "id": 5632,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12038,
- "id": 5633,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12038,
- "id": 5634,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12038,
- "id": 5635,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12038,
- "id": 5636,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12038,
- "id": 5637,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12038,
- "id": 5638,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12038,
- "id": 5639,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12038,
- "id": 5640,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12038,
- "id": 5641,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12038,
- "id": 5642,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12038,
- "id": 5643,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12038,
- "id": 5644,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12038,
- "id": 5645,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12038,
- "id": 5646,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12038,
- "id": 5647,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12038,
- "id": 5648,
- "width": 64,
- "height": 64
- },
- {
- "y": 256,
- "fileNum": 12038,
- "id": 5649,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 256,
- "fileNum": 12038,
- "id": 5650,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 256,
- "fileNum": 12038,
- "id": 5651,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 256,
- "fileNum": 12038,
- "id": 5652,
- "width": 64,
- "height": 64
- },
- {
- "y": 320,
- "fileNum": 12038,
- "id": 5653,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 320,
- "fileNum": 12038,
- "id": 5654,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 320,
- "fileNum": 12038,
- "id": 5655,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 320,
- "fileNum": 12038,
- "id": 5656,
- "width": 64,
- "height": 64
- },
- {
- "y": 384,
- "fileNum": 12038,
- "id": 5657,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 384,
- "fileNum": 12038,
- "id": 5658,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 384,
- "fileNum": 12038,
- "id": 5659,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 384,
- "fileNum": 12038,
- "id": 5660,
- "width": 64,
- "height": 64
- },
- {
- "y": 448,
- "fileNum": 12038,
- "id": 5661,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 448,
- "fileNum": 12038,
- "id": 5662,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 448,
- "fileNum": 12038,
- "id": 5663,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 448,
- "fileNum": 12038,
- "id": 5664,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12062,
- "id": 5681,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12062,
- "id": 5682,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12062,
- "id": 5683,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12062,
- "id": 5684,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12062,
- "id": 5685,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12062,
- "id": 5686,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12062,
- "id": 5687,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12062,
- "id": 5688,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12062,
- "id": 5689,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12062,
- "id": 5690,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12062,
- "id": 5691,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12062,
- "id": 5692,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12062,
- "id": 5693,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12062,
- "id": 5694,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12062,
- "id": 5695,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12062,
- "id": 5696,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12062,
- "id": 5697,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12062,
- "id": 5698,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12062,
- "id": 5699,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12062,
- "id": 5700,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12062,
- "id": 5701,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12062,
- "id": 5702,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12062,
- "id": 5703,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12062,
- "id": 5704,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12062,
- "id": 5705,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12062,
- "id": 5706,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12062,
- "id": 5707,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12062,
- "id": 5708,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12062,
- "id": 5709,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12062,
- "id": 5710,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12062,
- "id": 5711,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12062,
- "id": 5712,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12062,
- "id": 5713,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12062,
- "id": 5714,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12062,
- "id": 5715,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12062,
- "id": 5716,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12062,
- "id": 5717,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12062,
- "id": 5718,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12062,
- "id": 5719,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12062,
- "id": 5720,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12062,
- "id": 5721,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12062,
- "id": 5722,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12062,
- "id": 5723,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12062,
- "id": 5724,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12062,
- "id": 5725,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12062,
- "id": 5726,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12062,
- "id": 5727,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12062,
- "id": 5728,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22054,
- "id": 5729,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22055,
- "id": 5730,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22056,
- "id": 5731,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22057,
- "id": 5732,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22058,
- "id": 5733,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22059,
- "id": 5734,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22060,
- "id": 5735,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22061,
- "id": 5736,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22062,
- "id": 5737,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22063,
- "id": 5738,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22064,
- "id": 5739,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22065,
- "id": 5740,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22066,
- "id": 5741,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22067,
- "id": 5742,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22068,
- "id": 5743,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22069,
- "id": 5744,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22070,
- "id": 5745,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22071,
- "id": 5746,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15153,
- "id": 5747,
- "width": 186,
- "height": 64
- },
- {
- "fileNum": 16099,
- "id": 5748,
- "width": 64,
- "height": 64
- },
- {
- "x": 8,
- "fileNum": 15155,
- "id": 5749,
- "width": 64,
- "height": 1024
- },
- {
- "fileNum": 15154,
- "id": 5752,
- "width": 128,
- "height": 576
- },
- {
- "fileNum": 15140,
- "id": 5753,
- "width": 128,
- "height": 256
- },
- {
- "fileNum": 15156,
- "id": 5754,
- "width": 256,
- "height": 350
- },
- {
- "fileNum": 12009,
- "id": 5755,
- "width": 200,
- "height": 200
- },
- {
- "fileNum": 2147,
- "id": 5756,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2147,
- "id": 5757,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2147,
- "id": 5758,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2147,
- "id": 5759,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 12010,
- "id": 5762,
- "width": 74,
- "height": 94
- },
- {
- "x": 74,
- "fileNum": 12010,
- "id": 5763,
- "width": 66,
- "height": 94
- },
- {
- "x": 140,
- "fileNum": 12010,
- "id": 5764,
- "width": 60,
- "height": 94
- },
- {
- "y": 94,
- "fileNum": 12010,
- "id": 5765,
- "width": 62,
- "height": 106
- },
- {
- "x": 62,
- "y": 94,
- "fileNum": 12010,
- "id": 5766,
- "width": 138,
- "height": 106
- },
- {
- "fileNum": 2148,
- "id": 5767,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2148,
- "id": 5768,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2148,
- "id": 5769,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2148,
- "id": 5770,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 8027,
- "id": 5772,
- "width": 160,
- "height": 160
- },
- {
- "fileNum": 12036,
- "id": 5773,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12036,
- "id": 5774,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12036,
- "id": 5775,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12036,
- "id": 5776,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12036,
- "id": 5777,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12036,
- "id": 5778,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12036,
- "id": 5779,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12036,
- "id": 5780,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12036,
- "id": 5781,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12036,
- "id": 5782,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12036,
- "id": 5783,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12036,
- "id": 5784,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12036,
- "id": 5785,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12036,
- "id": 5786,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12036,
- "id": 5787,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12036,
- "id": 5788,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12036,
- "id": 5789,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12036,
- "id": 5790,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12036,
- "id": 5791,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12036,
- "id": 5792,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12036,
- "id": 5793,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12036,
- "id": 5794,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12036,
- "id": 5795,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12036,
- "id": 5796,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12036,
- "id": 5797,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12036,
- "id": 5798,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12036,
- "id": 5799,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12036,
- "id": 5800,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12036,
- "id": 5801,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12036,
- "id": 5802,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12036,
- "id": 5803,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12036,
- "id": 5804,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12036,
- "id": 5805,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12036,
- "id": 5806,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12036,
- "id": 5807,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12036,
- "id": 5808,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12036,
- "id": 5809,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12036,
- "id": 5810,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12036,
- "id": 5811,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12036,
- "id": 5812,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12036,
- "id": 5813,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12036,
- "id": 5814,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12036,
- "id": 5815,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12036,
- "id": 5816,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12036,
- "id": 5817,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12036,
- "id": 5818,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12036,
- "id": 5819,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12036,
- "id": 5820,
- "width": 64,
- "height": 64
- },
- {
- "y": 256,
- "fileNum": 12036,
- "id": 5821,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 256,
- "fileNum": 12036,
- "id": 5822,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 256,
- "fileNum": 12036,
- "id": 5823,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 256,
- "fileNum": 12036,
- "id": 5824,
- "width": 64,
- "height": 64
- },
- {
- "y": 320,
- "fileNum": 12036,
- "id": 5825,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 320,
- "fileNum": 12036,
- "id": 5826,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 320,
- "fileNum": 12036,
- "id": 5827,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 320,
- "fileNum": 12036,
- "id": 5828,
- "width": 64,
- "height": 64
- },
- {
- "y": 384,
- "fileNum": 12036,
- "id": 5829,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 384,
- "fileNum": 12036,
- "id": 5830,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 384,
- "fileNum": 12036,
- "id": 5831,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 384,
- "fileNum": 12036,
- "id": 5832,
- "width": 64,
- "height": 64
- },
- {
- "y": 448,
- "fileNum": 12036,
- "id": 5833,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 448,
- "fileNum": 12036,
- "id": 5834,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 448,
- "fileNum": 12036,
- "id": 5835,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 448,
- "fileNum": 12036,
- "id": 5836,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8023,
- "id": 5853,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8023,
- "id": 5854,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8023,
- "id": 5855,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8023,
- "id": 5856,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8023,
- "id": 5857,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8023,
- "id": 5858,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8023,
- "id": 5859,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8023,
- "id": 5860,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8023,
- "id": 5861,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8023,
- "id": 5862,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8023,
- "id": 5863,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8023,
- "id": 5864,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8023,
- "id": 5865,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8023,
- "id": 5866,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8023,
- "id": 5867,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8023,
- "id": 5868,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 8023,
- "id": 5869,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 8023,
- "id": 5870,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 8023,
- "id": 5871,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 8023,
- "id": 5872,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 8023,
- "id": 5873,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 8023,
- "id": 5874,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 8023,
- "id": 5875,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 8023,
- "id": 5876,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 8023,
- "id": 5877,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 8023,
- "id": 5878,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 8023,
- "id": 5879,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 8023,
- "id": 5880,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 8023,
- "id": 5881,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 8023,
- "id": 5882,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 8023,
- "id": 5883,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 8023,
- "id": 5884,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 8023,
- "id": 5885,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 8023,
- "id": 5886,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 8023,
- "id": 5887,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 8023,
- "id": 5888,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 8023,
- "id": 5889,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 8023,
- "id": 5890,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 8023,
- "id": 5891,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 8023,
- "id": 5892,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 8023,
- "id": 5893,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 8023,
- "id": 5894,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 8023,
- "id": 5895,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 8023,
- "id": 5896,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 8023,
- "id": 5897,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 8023,
- "id": 5898,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 8023,
- "id": 5899,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 8023,
- "id": 5900,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 8023,
- "id": 5901,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 8023,
- "id": 5902,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 8023,
- "id": 5903,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 8023,
- "id": 5904,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 8023,
- "id": 5905,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 8023,
- "id": 5906,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 8023,
- "id": 5907,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 8023,
- "id": 5908,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 8023,
- "id": 5909,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 8023,
- "id": 5910,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 8023,
- "id": 5911,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 8023,
- "id": 5912,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 8023,
- "id": 5913,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 8023,
- "id": 5914,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 8023,
- "id": 5915,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 8023,
- "id": 5916,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 3092,
- "id": 5918,
- "width": 190,
- "height": 220
- },
- {
- "x": 190,
- "fileNum": 3092,
- "id": 5919,
- "width": 190,
- "height": 220
- },
- {
- "x": 380,
- "fileNum": 3092,
- "id": 5920,
- "width": 190,
- "height": 220
- },
- {
- "x": 570,
- "fileNum": 3092,
- "id": 5921,
- "width": 190,
- "height": 220
- },
- {
- "x": 760,
- "fileNum": 3092,
- "id": 5922,
- "width": 190,
- "height": 220
- },
- {
- "x": 950,
- "fileNum": 3092,
- "id": 5923,
- "width": 190,
- "height": 220
- },
- {
- "x": 1140,
- "fileNum": 3092,
- "id": 5924,
- "width": 190,
- "height": 220
- },
- {
- "x": 1330,
- "fileNum": 3092,
- "id": 5925,
- "width": 190,
- "height": 220
- },
- {
- "y": 220,
- "fileNum": 3092,
- "id": 5926,
- "width": 190,
- "height": 220
- },
- {
- "x": 190,
- "y": 220,
- "fileNum": 3092,
- "id": 5927,
- "width": 190,
- "height": 220
- },
- {
- "x": 380,
- "y": 220,
- "fileNum": 3092,
- "id": 5928,
- "width": 190,
- "height": 220
- },
- {
- "x": 570,
- "y": 220,
- "fileNum": 3092,
- "id": 5929,
- "width": 190,
- "height": 220
- },
- {
- "x": 760,
- "y": 220,
- "fileNum": 3092,
- "id": 5930,
- "width": 190,
- "height": 220
- },
- {
- "x": 950,
- "y": 220,
- "fileNum": 3092,
- "id": 5931,
- "width": 190,
- "height": 220
- },
- {
- "x": 1140,
- "y": 220,
- "fileNum": 3092,
- "id": 5932,
- "width": 190,
- "height": 220
- },
- {
- "y": 440,
- "fileNum": 3092,
- "id": 5933,
- "width": 190,
- "height": 220
- },
- {
- "x": 190,
- "y": 440,
- "fileNum": 3092,
- "id": 5934,
- "width": 190,
- "height": 220
- },
- {
- "x": 380,
- "y": 440,
- "fileNum": 3092,
- "id": 5935,
- "width": 190,
- "height": 220
- },
- {
- "x": 570,
- "y": 440,
- "fileNum": 3092,
- "id": 5936,
- "width": 190,
- "height": 220
- },
- {
- "x": 760,
- "y": 440,
- "fileNum": 3092,
- "id": 5937,
- "width": 190,
- "height": 220
- },
- {
- "x": 950,
- "y": 440,
- "fileNum": 3092,
- "id": 5938,
- "width": 190,
- "height": 220
- },
- {
- "x": 1140,
- "y": 440,
- "fileNum": 3092,
- "id": 5939,
- "width": 190,
- "height": 220
- },
- {
- "x": 1330,
- "y": 440,
- "fileNum": 3092,
- "id": 5940,
- "width": 190,
- "height": 220
- },
- {
- "fileNum": 3098,
- "id": 5944,
- "width": 192,
- "height": 256
- },
- {
- "x": 192,
- "fileNum": 3098,
- "id": 5945,
- "width": 192,
- "height": 256
- },
- {
- "x": 384,
- "fileNum": 3098,
- "id": 5946,
- "width": 192,
- "height": 256
- },
- {
- "x": 576,
- "fileNum": 3098,
- "id": 5947,
- "width": 192,
- "height": 256
- },
- {
- "x": 768,
- "fileNum": 3098,
- "id": 5948,
- "width": 192,
- "height": 256
- },
- {
- "y": 256,
- "fileNum": 3098,
- "id": 5949,
- "width": 192,
- "height": 256
- },
- {
- "x": 192,
- "y": 256,
- "fileNum": 3098,
- "id": 5950,
- "width": 192,
- "height": 256
- },
- {
- "x": 384,
- "y": 256,
- "fileNum": 3098,
- "id": 5951,
- "width": 192,
- "height": 256
- },
- {
- "x": 576,
- "y": 256,
- "fileNum": 3098,
- "id": 5952,
- "width": 192,
- "height": 256
- },
- {
- "x": 768,
- "y": 256,
- "fileNum": 3098,
- "id": 5953,
- "width": 192,
- "height": 256
- },
- {
- "fileNum": 313,
- "id": 5955,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 302,
- "id": 5956,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 302,
- "id": 5957,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 302,
- "id": 5958,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 302,
- "id": 5959,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 302,
- "id": 5960,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 302,
- "id": 5961,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 302,
- "id": 5962,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 302,
- "id": 5963,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 302,
- "id": 5964,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 302,
- "id": 5965,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 302,
- "id": 5966,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 302,
- "id": 5967,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 302,
- "id": 5968,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 302,
- "id": 5969,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 302,
- "id": 5970,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 302,
- "id": 5971,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 302,
- "id": 5972,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 302,
- "id": 5973,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 302,
- "id": 5974,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 302,
- "id": 5975,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 302,
- "id": 5976,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 302,
- "id": 5977,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2149,
- "id": 5982,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2149,
- "id": 5983,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2149,
- "id": 5984,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2149,
- "id": 5985,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2150,
- "id": 5986,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2150,
- "id": 5987,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2150,
- "id": 5988,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2150,
- "id": 5989,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2151,
- "id": 5990,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2151,
- "id": 5991,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2151,
- "id": 5992,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2151,
- "id": 5993,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2152,
- "id": 5994,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2152,
- "id": 5995,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2152,
- "id": 5996,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2152,
- "id": 5997,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 12052,
- "id": 6000,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12052,
- "id": 6001,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12052,
- "id": 6002,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12052,
- "id": 6003,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12052,
- "id": 6004,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12052,
- "id": 6005,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12052,
- "id": 6006,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12052,
- "id": 6007,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12052,
- "id": 6008,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12052,
- "id": 6009,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12052,
- "id": 6010,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12052,
- "id": 6011,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12052,
- "id": 6012,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12052,
- "id": 6013,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12052,
- "id": 6014,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12052,
- "id": 6015,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12052,
- "id": 6016,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12052,
- "id": 6017,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12052,
- "id": 6018,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12052,
- "id": 6019,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12052,
- "id": 6020,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12052,
- "id": 6021,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12052,
- "id": 6022,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12052,
- "id": 6023,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12052,
- "id": 6024,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12052,
- "id": 6025,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12052,
- "id": 6026,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12052,
- "id": 6027,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12052,
- "id": 6028,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12052,
- "id": 6029,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12052,
- "id": 6030,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12052,
- "id": 6031,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12052,
- "id": 6032,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12052,
- "id": 6033,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12052,
- "id": 6034,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12052,
- "id": 6035,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12052,
- "id": 6036,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12052,
- "id": 6037,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12052,
- "id": 6038,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12052,
- "id": 6039,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12052,
- "id": 6040,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12052,
- "id": 6041,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12052,
- "id": 6042,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12052,
- "id": 6043,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12052,
- "id": 6044,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12052,
- "id": 6045,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12052,
- "id": 6046,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12052,
- "id": 6047,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12052,
- "id": 6048,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12052,
- "id": 6049,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12052,
- "id": 6050,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12052,
- "id": 6051,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12052,
- "id": 6052,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12052,
- "id": 6053,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12052,
- "id": 6054,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12052,
- "id": 6055,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12052,
- "id": 6056,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12052,
- "id": 6057,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12052,
- "id": 6058,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12052,
- "id": 6059,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12052,
- "id": 6060,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12052,
- "id": 6061,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12052,
- "id": 6062,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12052,
- "id": 6063,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12053,
- "id": 6064,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12053,
- "id": 6065,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12053,
- "id": 6066,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12053,
- "id": 6067,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12053,
- "id": 6068,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12053,
- "id": 6069,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12053,
- "id": 6070,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12053,
- "id": 6071,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12053,
- "id": 6072,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12053,
- "id": 6073,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12053,
- "id": 6074,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12053,
- "id": 6075,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12053,
- "id": 6076,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12053,
- "id": 6077,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12053,
- "id": 6078,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12053,
- "id": 6079,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12053,
- "id": 6080,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12053,
- "id": 6081,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12053,
- "id": 6082,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12053,
- "id": 6083,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12053,
- "id": 6084,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12053,
- "id": 6085,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12053,
- "id": 6086,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12053,
- "id": 6087,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12053,
- "id": 6088,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12053,
- "id": 6089,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12053,
- "id": 6090,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12053,
- "id": 6091,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12053,
- "id": 6092,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12053,
- "id": 6093,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12053,
- "id": 6094,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12053,
- "id": 6095,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12053,
- "id": 6096,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12053,
- "id": 6097,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12053,
- "id": 6098,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12053,
- "id": 6099,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12053,
- "id": 6100,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12053,
- "id": 6101,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12053,
- "id": 6102,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12053,
- "id": 6103,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12053,
- "id": 6104,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12053,
- "id": 6105,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12053,
- "id": 6106,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12053,
- "id": 6107,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12053,
- "id": 6108,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12053,
- "id": 6109,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12053,
- "id": 6110,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12053,
- "id": 6111,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12053,
- "id": 6112,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12053,
- "id": 6113,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12053,
- "id": 6114,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12053,
- "id": 6115,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12053,
- "id": 6116,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12053,
- "id": 6117,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12053,
- "id": 6118,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12053,
- "id": 6119,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12053,
- "id": 6120,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12053,
- "id": 6121,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12053,
- "id": 6122,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12053,
- "id": 6123,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12053,
- "id": 6124,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12053,
- "id": 6125,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12053,
- "id": 6126,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12053,
- "id": 6127,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12054,
- "id": 6128,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12054,
- "id": 6129,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12054,
- "id": 6130,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12054,
- "id": 6131,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12054,
- "id": 6132,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12054,
- "id": 6133,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12054,
- "id": 6134,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12054,
- "id": 6135,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12054,
- "id": 6136,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12054,
- "id": 6137,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12054,
- "id": 6138,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12054,
- "id": 6139,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12054,
- "id": 6140,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12054,
- "id": 6141,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12054,
- "id": 6142,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12054,
- "id": 6143,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12054,
- "id": 6144,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12054,
- "id": 6145,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12054,
- "id": 6146,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12054,
- "id": 6147,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12054,
- "id": 6148,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12054,
- "id": 6149,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12054,
- "id": 6150,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12054,
- "id": 6151,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12054,
- "id": 6152,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12054,
- "id": 6153,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12054,
- "id": 6154,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12054,
- "id": 6155,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12054,
- "id": 6156,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12054,
- "id": 6157,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12054,
- "id": 6158,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12054,
- "id": 6159,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12054,
- "id": 6160,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12054,
- "id": 6161,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12054,
- "id": 6162,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12054,
- "id": 6163,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12054,
- "id": 6164,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12054,
- "id": 6165,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12054,
- "id": 6166,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12054,
- "id": 6167,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12054,
- "id": 6168,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12054,
- "id": 6169,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12054,
- "id": 6170,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12054,
- "id": 6171,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12054,
- "id": 6172,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12054,
- "id": 6173,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12054,
- "id": 6174,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12054,
- "id": 6175,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12054,
- "id": 6176,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12054,
- "id": 6177,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12054,
- "id": 6178,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12054,
- "id": 6179,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12054,
- "id": 6180,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12054,
- "id": 6181,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12054,
- "id": 6182,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12054,
- "id": 6183,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12054,
- "id": 6184,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12054,
- "id": 6185,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12054,
- "id": 6186,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12054,
- "id": 6187,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12054,
- "id": 6188,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12054,
- "id": 6189,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12054,
- "id": 6190,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12054,
- "id": 6191,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12055,
- "id": 6192,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12055,
- "id": 6193,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12055,
- "id": 6194,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12055,
- "id": 6195,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12055,
- "id": 6196,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12055,
- "id": 6197,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12055,
- "id": 6198,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12055,
- "id": 6199,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12055,
- "id": 6200,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12055,
- "id": 6201,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12055,
- "id": 6202,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12055,
- "id": 6203,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12055,
- "id": 6204,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12055,
- "id": 6205,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12055,
- "id": 6206,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12055,
- "id": 6207,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12055,
- "id": 6208,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12055,
- "id": 6209,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12055,
- "id": 6210,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12055,
- "id": 6211,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12055,
- "id": 6212,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12055,
- "id": 6213,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12055,
- "id": 6214,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12055,
- "id": 6215,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12055,
- "id": 6216,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12055,
- "id": 6217,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12055,
- "id": 6218,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12055,
- "id": 6219,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12055,
- "id": 6220,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12055,
- "id": 6221,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12055,
- "id": 6222,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12055,
- "id": 6223,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12055,
- "id": 6224,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12055,
- "id": 6225,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12055,
- "id": 6226,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12055,
- "id": 6227,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12055,
- "id": 6228,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12055,
- "id": 6229,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12055,
- "id": 6230,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12055,
- "id": 6231,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12055,
- "id": 6232,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12055,
- "id": 6233,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12055,
- "id": 6234,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12055,
- "id": 6235,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12055,
- "id": 6236,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12055,
- "id": 6237,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12055,
- "id": 6238,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12055,
- "id": 6239,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12055,
- "id": 6240,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12055,
- "id": 6241,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12055,
- "id": 6242,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12055,
- "id": 6243,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12055,
- "id": 6244,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12055,
- "id": 6245,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12055,
- "id": 6246,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12055,
- "id": 6247,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12055,
- "id": 6248,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12055,
- "id": 6249,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12055,
- "id": 6250,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12055,
- "id": 6251,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12055,
- "id": 6252,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12055,
- "id": 6253,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12055,
- "id": 6254,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12055,
- "id": 6255,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12056,
- "id": 6256,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12056,
- "id": 6257,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12056,
- "id": 6258,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12056,
- "id": 6259,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12056,
- "id": 6260,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12056,
- "id": 6261,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12056,
- "id": 6262,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12056,
- "id": 6263,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12056,
- "id": 6264,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12056,
- "id": 6265,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12056,
- "id": 6266,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12056,
- "id": 6267,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12056,
- "id": 6268,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12056,
- "id": 6269,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12056,
- "id": 6270,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12056,
- "id": 6271,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12056,
- "id": 6272,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12056,
- "id": 6273,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12056,
- "id": 6274,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12056,
- "id": 6275,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12056,
- "id": 6276,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12056,
- "id": 6277,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12056,
- "id": 6278,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12056,
- "id": 6279,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12056,
- "id": 6280,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12056,
- "id": 6281,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12056,
- "id": 6282,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12056,
- "id": 6283,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12056,
- "id": 6284,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12056,
- "id": 6285,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12056,
- "id": 6286,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12056,
- "id": 6287,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12056,
- "id": 6288,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12056,
- "id": 6289,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12056,
- "id": 6290,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12056,
- "id": 6291,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12056,
- "id": 6292,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12056,
- "id": 6293,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12056,
- "id": 6294,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12056,
- "id": 6295,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12056,
- "id": 6296,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12056,
- "id": 6297,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12056,
- "id": 6298,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12056,
- "id": 6299,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12056,
- "id": 6300,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12056,
- "id": 6301,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12056,
- "id": 6302,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12056,
- "id": 6303,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12057,
- "id": 6304,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12057,
- "id": 6305,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12057,
- "id": 6306,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12057,
- "id": 6307,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12057,
- "id": 6308,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12057,
- "id": 6309,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12057,
- "id": 6310,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12057,
- "id": 6311,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12057,
- "id": 6312,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12057,
- "id": 6313,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12057,
- "id": 6314,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12057,
- "id": 6315,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12057,
- "id": 6316,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12057,
- "id": 6317,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12057,
- "id": 6318,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12057,
- "id": 6319,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12057,
- "id": 6320,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12057,
- "id": 6321,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12057,
- "id": 6322,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12057,
- "id": 6323,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12057,
- "id": 6324,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12057,
- "id": 6325,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12057,
- "id": 6326,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12057,
- "id": 6327,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12057,
- "id": 6328,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12057,
- "id": 6329,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12057,
- "id": 6330,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12057,
- "id": 6331,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12057,
- "id": 6332,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12057,
- "id": 6333,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12057,
- "id": 6334,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12057,
- "id": 6335,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12057,
- "id": 6336,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12057,
- "id": 6337,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12057,
- "id": 6338,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12057,
- "id": 6339,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12057,
- "id": 6340,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12057,
- "id": 6341,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12057,
- "id": 6342,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12057,
- "id": 6343,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12057,
- "id": 6344,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12057,
- "id": 6345,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12057,
- "id": 6346,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12057,
- "id": 6347,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12057,
- "id": 6348,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12057,
- "id": 6349,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12057,
- "id": 6350,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12057,
- "id": 6351,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12058,
- "id": 6352,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12058,
- "id": 6353,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12058,
- "id": 6354,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12058,
- "id": 6355,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12058,
- "id": 6356,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12058,
- "id": 6357,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12058,
- "id": 6358,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12058,
- "id": 6359,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12058,
- "id": 6360,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12058,
- "id": 6361,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12058,
- "id": 6362,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12058,
- "id": 6363,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12058,
- "id": 6364,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12058,
- "id": 6365,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12058,
- "id": 6366,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12058,
- "id": 6367,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12058,
- "id": 6368,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12058,
- "id": 6369,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12058,
- "id": 6370,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12058,
- "id": 6371,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12058,
- "id": 6372,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12058,
- "id": 6373,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12058,
- "id": 6374,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12058,
- "id": 6375,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12058,
- "id": 6376,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12058,
- "id": 6377,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12058,
- "id": 6378,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12058,
- "id": 6379,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12058,
- "id": 6380,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12058,
- "id": 6381,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12058,
- "id": 6382,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12058,
- "id": 6383,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12058,
- "id": 6384,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12058,
- "id": 6385,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12058,
- "id": 6386,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12058,
- "id": 6387,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12058,
- "id": 6388,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12058,
- "id": 6389,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12058,
- "id": 6390,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12058,
- "id": 6391,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12058,
- "id": 6392,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12058,
- "id": 6393,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12058,
- "id": 6394,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12058,
- "id": 6395,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12058,
- "id": 6396,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12058,
- "id": 6397,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12058,
- "id": 6398,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12058,
- "id": 6399,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12059,
- "id": 6400,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12059,
- "id": 6401,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12059,
- "id": 6402,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12059,
- "id": 6403,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12059,
- "id": 6404,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12059,
- "id": 6405,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12059,
- "id": 6406,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12059,
- "id": 6407,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12059,
- "id": 6408,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12059,
- "id": 6409,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12059,
- "id": 6410,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12059,
- "id": 6411,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12059,
- "id": 6412,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12059,
- "id": 6413,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12059,
- "id": 6414,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12059,
- "id": 6415,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12059,
- "id": 6416,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12059,
- "id": 6417,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12059,
- "id": 6418,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12059,
- "id": 6419,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12059,
- "id": 6420,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12059,
- "id": 6421,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12059,
- "id": 6422,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12059,
- "id": 6423,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12059,
- "id": 6424,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12059,
- "id": 6425,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12059,
- "id": 6426,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12059,
- "id": 6427,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12059,
- "id": 6428,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12059,
- "id": 6429,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12059,
- "id": 6430,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12059,
- "id": 6431,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12059,
- "id": 6432,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12059,
- "id": 6433,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12059,
- "id": 6434,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12059,
- "id": 6435,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12059,
- "id": 6436,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12059,
- "id": 6437,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12059,
- "id": 6438,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12059,
- "id": 6439,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12059,
- "id": 6440,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12059,
- "id": 6441,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12059,
- "id": 6442,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12059,
- "id": 6443,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12059,
- "id": 6444,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12059,
- "id": 6445,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12059,
- "id": 6446,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12059,
- "id": 6447,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12059,
- "id": 6448,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12059,
- "id": 6449,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12059,
- "id": 6450,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12059,
- "id": 6451,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12059,
- "id": 6452,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12059,
- "id": 6453,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12059,
- "id": 6454,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12059,
- "id": 6455,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12059,
- "id": 6456,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12059,
- "id": 6457,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12059,
- "id": 6458,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12059,
- "id": 6459,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12059,
- "id": 6460,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12059,
- "id": 6461,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12059,
- "id": 6462,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12059,
- "id": 6463,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12060,
- "id": 6464,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12060,
- "id": 6465,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12060,
- "id": 6466,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12060,
- "id": 6467,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12060,
- "id": 6468,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12060,
- "id": 6469,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12060,
- "id": 6470,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12060,
- "id": 6471,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12060,
- "id": 6472,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12060,
- "id": 6473,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12060,
- "id": 6474,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12060,
- "id": 6475,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12060,
- "id": 6476,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12060,
- "id": 6477,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12060,
- "id": 6478,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12060,
- "id": 6479,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12060,
- "id": 6480,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12060,
- "id": 6481,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12060,
- "id": 6482,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12060,
- "id": 6483,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12060,
- "id": 6484,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12060,
- "id": 6485,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12060,
- "id": 6486,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12060,
- "id": 6487,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12060,
- "id": 6488,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12060,
- "id": 6489,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12060,
- "id": 6490,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12060,
- "id": 6491,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12060,
- "id": 6492,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12060,
- "id": 6493,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12060,
- "id": 6494,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12060,
- "id": 6495,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12060,
- "id": 6496,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12060,
- "id": 6497,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12060,
- "id": 6498,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12060,
- "id": 6499,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12060,
- "id": 6500,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12060,
- "id": 6501,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12060,
- "id": 6502,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12060,
- "id": 6503,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12060,
- "id": 6504,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12060,
- "id": 6505,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12060,
- "id": 6506,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12060,
- "id": 6507,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12060,
- "id": 6508,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12060,
- "id": 6509,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12060,
- "id": 6510,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12060,
- "id": 6511,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12060,
- "id": 6512,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12060,
- "id": 6513,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12060,
- "id": 6514,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12060,
- "id": 6515,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12060,
- "id": 6516,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12060,
- "id": 6517,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12060,
- "id": 6518,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12060,
- "id": 6519,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12060,
- "id": 6520,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12060,
- "id": 6521,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12060,
- "id": 6522,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12060,
- "id": 6523,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12060,
- "id": 6524,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12060,
- "id": 6525,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12060,
- "id": 6526,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12060,
- "id": 6527,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12061,
- "id": 6528,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12061,
- "id": 6529,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12061,
- "id": 6530,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12061,
- "id": 6531,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12061,
- "id": 6532,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12061,
- "id": 6533,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12061,
- "id": 6534,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12061,
- "id": 6535,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12061,
- "id": 6536,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12061,
- "id": 6537,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12061,
- "id": 6538,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12061,
- "id": 6539,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12061,
- "id": 6540,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12061,
- "id": 6541,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12061,
- "id": 6542,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12061,
- "id": 6543,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12056,
- "id": 6544,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12056,
- "id": 6545,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12056,
- "id": 6546,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12056,
- "id": 6547,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12056,
- "id": 6548,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12056,
- "id": 6549,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12056,
- "id": 6550,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12056,
- "id": 6551,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12056,
- "id": 6552,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12056,
- "id": 6553,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12056,
- "id": 6554,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12056,
- "id": 6555,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12056,
- "id": 6556,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12056,
- "id": 6557,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12056,
- "id": 6558,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12056,
- "id": 6559,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15078,
- "id": 6560,
- "width": 164,
- "height": 80
- },
- {
- "fileNum": 11002,
- "id": 6561,
- "width": 512,
- "height": 192
- },
- {
- "fileNum": 11003,
- "id": 6562,
- "width": 512,
- "height": 320
- },
- {
- "fileNum": 15079,
- "id": 6563,
- "width": 86,
- "height": 100
- },
- {
- "fileNum": 15080,
- "id": 6564,
- "width": 200,
- "height": 100
- },
- {
- "fileNum": 12014,
- "id": 6565,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 14001,
- "id": 6566,
- "width": 512,
- "height": 372
- },
- {
- "fileNum": 2153,
- "id": 6567,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2153,
- "id": 6568,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2153,
- "id": 6569,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2153,
- "id": 6570,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2154,
- "id": 6571,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2154,
- "id": 6572,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2154,
- "id": 6573,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2154,
- "id": 6574,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2,
- "id": 6577,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 2,
- "id": 6578,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 2,
- "id": 6579,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8026,
- "id": 6581,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8026,
- "id": 6582,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8026,
- "id": 6583,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8026,
- "id": 6584,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8026,
- "id": 6585,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8026,
- "id": 6586,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8026,
- "id": 6587,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8026,
- "id": 6588,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8026,
- "id": 6589,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8026,
- "id": 6590,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8026,
- "id": 6591,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8026,
- "id": 6592,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8026,
- "id": 6593,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8026,
- "id": 6594,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8026,
- "id": 6595,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8026,
- "id": 6596,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8025,
- "id": 6597,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8025,
- "id": 6598,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8025,
- "id": 6599,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8025,
- "id": 6600,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8025,
- "id": 6601,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8025,
- "id": 6602,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8025,
- "id": 6603,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8025,
- "id": 6604,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8025,
- "id": 6605,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8025,
- "id": 6606,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8025,
- "id": 6607,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8025,
- "id": 6608,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8025,
- "id": 6609,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8025,
- "id": 6610,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8025,
- "id": 6611,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8025,
- "id": 6612,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 8025,
- "id": 6613,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 8025,
- "id": 6614,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 8025,
- "id": 6615,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 8025,
- "id": 6616,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 8025,
- "id": 6617,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 8025,
- "id": 6618,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 8025,
- "id": 6619,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 8025,
- "id": 6620,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 8025,
- "id": 6621,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 8025,
- "id": 6622,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 8025,
- "id": 6623,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 8025,
- "id": 6624,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 8025,
- "id": 6625,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 8025,
- "id": 6626,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 8025,
- "id": 6627,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 8025,
- "id": 6628,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 8025,
- "id": 6629,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 8025,
- "id": 6630,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 8025,
- "id": 6631,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 8025,
- "id": 6632,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 8025,
- "id": 6633,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 8025,
- "id": 6634,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 8025,
- "id": 6635,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 8025,
- "id": 6636,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 8025,
- "id": 6637,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 8025,
- "id": 6638,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 8025,
- "id": 6639,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 8025,
- "id": 6640,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 8025,
- "id": 6641,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 8025,
- "id": 6642,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 8025,
- "id": 6643,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 8025,
- "id": 6644,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 8025,
- "id": 6645,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 8025,
- "id": 6646,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 8025,
- "id": 6647,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 8025,
- "id": 6648,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 8025,
- "id": 6649,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 8025,
- "id": 6650,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 8025,
- "id": 6651,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 8025,
- "id": 6652,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 8025,
- "id": 6653,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 8025,
- "id": 6654,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 8025,
- "id": 6655,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 8025,
- "id": 6656,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 8025,
- "id": 6657,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 8025,
- "id": 6658,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 8025,
- "id": 6659,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 8025,
- "id": 6660,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8024,
- "id": 6661,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8024,
- "id": 6662,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8024,
- "id": 6663,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8024,
- "id": 6664,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8024,
- "id": 6665,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8024,
- "id": 6666,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8024,
- "id": 6667,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8024,
- "id": 6668,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8024,
- "id": 6669,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8024,
- "id": 6670,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8024,
- "id": 6671,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8024,
- "id": 6672,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8024,
- "id": 6673,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8024,
- "id": 6674,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8024,
- "id": 6675,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8024,
- "id": 6676,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 8024,
- "id": 6677,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 8024,
- "id": 6678,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 8024,
- "id": 6679,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 8024,
- "id": 6680,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 8024,
- "id": 6681,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 8024,
- "id": 6682,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 8024,
- "id": 6683,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 8024,
- "id": 6684,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 8024,
- "id": 6685,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 8024,
- "id": 6686,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 8024,
- "id": 6687,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 8024,
- "id": 6688,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 8024,
- "id": 6689,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 8024,
- "id": 6690,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 8024,
- "id": 6691,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 8024,
- "id": 6692,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 8024,
- "id": 6693,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 8024,
- "id": 6694,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 8024,
- "id": 6695,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 8024,
- "id": 6696,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 8024,
- "id": 6697,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 8024,
- "id": 6698,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 8024,
- "id": 6699,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 8024,
- "id": 6700,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 8024,
- "id": 6701,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 8024,
- "id": 6702,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 8024,
- "id": 6703,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 8024,
- "id": 6704,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 8024,
- "id": 6705,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 8024,
- "id": 6706,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 8024,
- "id": 6707,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 8024,
- "id": 6708,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 8024,
- "id": 6709,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 8024,
- "id": 6710,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 8024,
- "id": 6711,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 8024,
- "id": 6712,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 8024,
- "id": 6713,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 8024,
- "id": 6714,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 8024,
- "id": 6715,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 8024,
- "id": 6716,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 8024,
- "id": 6717,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 8024,
- "id": 6718,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 8024,
- "id": 6719,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 8024,
- "id": 6720,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 8024,
- "id": 6721,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 8024,
- "id": 6722,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 8024,
- "id": 6723,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 8024,
- "id": 6724,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12084,
- "id": 6725,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12084,
- "id": 6726,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12084,
- "id": 6727,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12084,
- "id": 6728,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12084,
- "id": 6729,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12084,
- "id": 6730,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12084,
- "id": 6731,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12084,
- "id": 6732,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12084,
- "id": 6733,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12084,
- "id": 6734,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12084,
- "id": 6735,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12084,
- "id": 6736,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12084,
- "id": 6737,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12084,
- "id": 6738,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12084,
- "id": 6739,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12084,
- "id": 6740,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12031,
- "id": 6741,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12031,
- "id": 6742,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12031,
- "id": 6743,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12031,
- "id": 6744,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12031,
- "id": 6745,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12031,
- "id": 6746,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12031,
- "id": 6747,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12031,
- "id": 6748,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12031,
- "id": 6749,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12031,
- "id": 6750,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12031,
- "id": 6751,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12031,
- "id": 6752,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12031,
- "id": 6753,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12031,
- "id": 6754,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12031,
- "id": 6755,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12031,
- "id": 6756,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15000,
- "id": 6757,
- "width": 80,
- "height": 80
- },
- {
- "fileNum": 58,
- "id": 6758,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 58,
- "id": 6759,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 58,
- "id": 6760,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 58,
- "id": 6761,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 58,
- "id": 6762,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 58,
- "id": 6763,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 58,
- "id": 6765,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 58,
- "id": 6766,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 58,
- "id": 6767,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 58,
- "id": 6768,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 58,
- "id": 6769,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 58,
- "id": 6770,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 58,
- "id": 6772,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 58,
- "id": 6773,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 58,
- "id": 6774,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 58,
- "id": 6775,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 58,
- "id": 6776,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 58,
- "id": 6778,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 58,
- "id": 6779,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 58,
- "id": 6780,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 58,
- "id": 6781,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 58,
- "id": 6782,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4008,
- "id": 6787,
- "width": 100,
- "height": 156
- },
- {
- "x": 100,
- "fileNum": 4008,
- "id": 6788,
- "width": 100,
- "height": 156
- },
- {
- "x": 200,
- "fileNum": 4008,
- "id": 6789,
- "width": 100,
- "height": 156
- },
- {
- "x": 300,
- "fileNum": 4008,
- "id": 6790,
- "width": 100,
- "height": 156
- },
- {
- "x": 400,
- "fileNum": 4008,
- "id": 6791,
- "width": 100,
- "height": 156
- },
- {
- "x": 500,
- "fileNum": 4008,
- "id": 6792,
- "width": 100,
- "height": 156
- },
- {
- "x": 600,
- "fileNum": 4008,
- "id": 6793,
- "width": 100,
- "height": 156
- },
- {
- "x": 700,
- "fileNum": 4008,
- "id": 6794,
- "width": 100,
- "height": 156
- },
- {
- "y": 156,
- "fileNum": 4008,
- "id": 6795,
- "width": 100,
- "height": 156
- },
- {
- "x": 100,
- "y": 156,
- "fileNum": 4008,
- "id": 6796,
- "width": 100,
- "height": 156
- },
- {
- "x": 200,
- "y": 156,
- "fileNum": 4008,
- "id": 6797,
- "width": 100,
- "height": 156
- },
- {
- "x": 300,
- "y": 156,
- "fileNum": 4008,
- "id": 6798,
- "width": 100,
- "height": 156
- },
- {
- "x": 400,
- "y": 156,
- "fileNum": 4008,
- "id": 6799,
- "width": 100,
- "height": 156
- },
- {
- "x": 500,
- "y": 156,
- "fileNum": 4008,
- "id": 6800,
- "width": 100,
- "height": 156
- },
- {
- "x": 600,
- "y": 156,
- "fileNum": 4008,
- "id": 6801,
- "width": 100,
- "height": 156
- },
- {
- "x": 700,
- "y": 156,
- "fileNum": 4008,
- "id": 6802,
- "width": 100,
- "height": 156
- },
- {
- "y": 312,
- "fileNum": 4008,
- "id": 6803,
- "width": 100,
- "height": 156
- },
- {
- "x": 100,
- "y": 312,
- "fileNum": 4008,
- "id": 6804,
- "width": 100,
- "height": 156
- },
- {
- "x": 200,
- "y": 312,
- "fileNum": 4008,
- "id": 6805,
- "width": 100,
- "height": 156
- },
- {
- "x": 300,
- "y": 312,
- "fileNum": 4008,
- "id": 6806,
- "width": 100,
- "height": 156
- },
- {
- "x": 400,
- "y": 312,
- "fileNum": 4008,
- "id": 6807,
- "width": 100,
- "height": 156
- },
- {
- "y": 468,
- "fileNum": 4008,
- "id": 6808,
- "width": 100,
- "height": 156
- },
- {
- "x": 100,
- "y": 468,
- "fileNum": 4008,
- "id": 6809,
- "width": 100,
- "height": 156
- },
- {
- "x": 200,
- "y": 468,
- "fileNum": 4008,
- "id": 6810,
- "width": 100,
- "height": 156
- },
- {
- "x": 300,
- "y": 468,
- "fileNum": 4008,
- "id": 6811,
- "width": 100,
- "height": 156
- },
- {
- "x": 400,
- "y": 468,
- "fileNum": 4008,
- "id": 6812,
- "width": 100,
- "height": 156
- },
- {
- "fileNum": 2155,
- "id": 6817,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2155,
- "id": 6818,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2155,
- "id": 6819,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2155,
- "id": 6820,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 4002,
- "id": 6821,
- "width": 114,
- "height": 200
- },
- {
- "x": 114,
- "fileNum": 4002,
- "id": 6822,
- "width": 114,
- "height": 200
- },
- {
- "x": 228,
- "fileNum": 4002,
- "id": 6823,
- "width": 114,
- "height": 200
- },
- {
- "x": 342,
- "fileNum": 4002,
- "id": 6824,
- "width": 114,
- "height": 200
- },
- {
- "x": 456,
- "fileNum": 4002,
- "id": 6825,
- "width": 114,
- "height": 200
- },
- {
- "x": 570,
- "fileNum": 4002,
- "id": 6826,
- "width": 114,
- "height": 200
- },
- {
- "y": 200,
- "fileNum": 4002,
- "id": 6828,
- "width": 114,
- "height": 200
- },
- {
- "x": 114,
- "y": 200,
- "fileNum": 4002,
- "id": 6829,
- "width": 114,
- "height": 200
- },
- {
- "x": 228,
- "y": 200,
- "fileNum": 4002,
- "id": 6830,
- "width": 114,
- "height": 200
- },
- {
- "x": 342,
- "y": 200,
- "fileNum": 4002,
- "id": 6831,
- "width": 114,
- "height": 200
- },
- {
- "x": 456,
- "y": 200,
- "fileNum": 4002,
- "id": 6832,
- "width": 114,
- "height": 200
- },
- {
- "x": 570,
- "y": 200,
- "fileNum": 4002,
- "id": 6833,
- "width": 114,
- "height": 200
- },
- {
- "y": 400,
- "fileNum": 4002,
- "id": 6835,
- "width": 114,
- "height": 200
- },
- {
- "x": 114,
- "y": 400,
- "fileNum": 4002,
- "id": 6836,
- "width": 114,
- "height": 200
- },
- {
- "x": 228,
- "y": 400,
- "fileNum": 4002,
- "id": 6837,
- "width": 114,
- "height": 200
- },
- {
- "x": 342,
- "y": 400,
- "fileNum": 4002,
- "id": 6838,
- "width": 114,
- "height": 200
- },
- {
- "x": 456,
- "y": 400,
- "fileNum": 4002,
- "id": 6839,
- "width": 114,
- "height": 200
- },
- {
- "y": 600,
- "fileNum": 4002,
- "id": 6841,
- "width": 114,
- "height": 200
- },
- {
- "x": 114,
- "y": 600,
- "fileNum": 4002,
- "id": 6842,
- "width": 114,
- "height": 200
- },
- {
- "x": 228,
- "y": 600,
- "fileNum": 4002,
- "id": 6843,
- "width": 114,
- "height": 200
- },
- {
- "x": 342,
- "y": 600,
- "fileNum": 4002,
- "id": 6844,
- "width": 114,
- "height": 200
- },
- {
- "x": 456,
- "y": 600,
- "fileNum": 4002,
- "id": 6845,
- "width": 114,
- "height": 200
- },
- {
- "fileNum": 4006,
- "id": 6850,
- "width": 114,
- "height": 196
- },
- {
- "x": 114,
- "fileNum": 4006,
- "id": 6851,
- "width": 114,
- "height": 196
- },
- {
- "x": 228,
- "fileNum": 4006,
- "id": 6852,
- "width": 114,
- "height": 196
- },
- {
- "x": 342,
- "fileNum": 4006,
- "id": 6853,
- "width": 114,
- "height": 196
- },
- {
- "x": 456,
- "fileNum": 4006,
- "id": 6854,
- "width": 114,
- "height": 196
- },
- {
- "x": 570,
- "fileNum": 4006,
- "id": 6855,
- "width": 114,
- "height": 196
- },
- {
- "y": 196,
- "fileNum": 4006,
- "id": 6857,
- "width": 114,
- "height": 196
- },
- {
- "x": 114,
- "y": 196,
- "fileNum": 4006,
- "id": 6858,
- "width": 114,
- "height": 196
- },
- {
- "x": 228,
- "y": 196,
- "fileNum": 4006,
- "id": 6859,
- "width": 114,
- "height": 196
- },
- {
- "x": 342,
- "y": 196,
- "fileNum": 4006,
- "id": 6860,
- "width": 114,
- "height": 196
- },
- {
- "x": 456,
- "y": 196,
- "fileNum": 4006,
- "id": 6861,
- "width": 114,
- "height": 196
- },
- {
- "x": 570,
- "y": 196,
- "fileNum": 4006,
- "id": 6862,
- "width": 114,
- "height": 196
- },
- {
- "y": 392,
- "fileNum": 4006,
- "id": 6864,
- "width": 114,
- "height": 196
- },
- {
- "x": 114,
- "y": 392,
- "fileNum": 4006,
- "id": 6865,
- "width": 114,
- "height": 196
- },
- {
- "x": 228,
- "y": 392,
- "fileNum": 4006,
- "id": 6866,
- "width": 114,
- "height": 196
- },
- {
- "x": 342,
- "y": 392,
- "fileNum": 4006,
- "id": 6867,
- "width": 114,
- "height": 196
- },
- {
- "x": 456,
- "y": 392,
- "fileNum": 4006,
- "id": 6868,
- "width": 114,
- "height": 196
- },
- {
- "y": 588,
- "fileNum": 4006,
- "id": 6870,
- "width": 114,
- "height": 196
- },
- {
- "x": 114,
- "y": 588,
- "fileNum": 4006,
- "id": 6871,
- "width": 114,
- "height": 196
- },
- {
- "x": 228,
- "y": 588,
- "fileNum": 4006,
- "id": 6872,
- "width": 114,
- "height": 196
- },
- {
- "x": 342,
- "y": 588,
- "fileNum": 4006,
- "id": 6873,
- "width": 114,
- "height": 196
- },
- {
- "x": 456,
- "y": 588,
- "fileNum": 4006,
- "id": 6874,
- "width": 114,
- "height": 196
- },
- {
- "fileNum": 4007,
- "id": 6879,
- "width": 62,
- "height": 50
- },
- {
- "x": 62,
- "fileNum": 4007,
- "id": 6880,
- "width": 62,
- "height": 50
- },
- {
- "x": 124,
- "fileNum": 4007,
- "id": 6881,
- "width": 62,
- "height": 50
- },
- {
- "y": 50,
- "fileNum": 4007,
- "id": 6883,
- "width": 62,
- "height": 50
- },
- {
- "x": 62,
- "y": 50,
- "fileNum": 4007,
- "id": 6884,
- "width": 62,
- "height": 50
- },
- {
- "x": 124,
- "y": 50,
- "fileNum": 4007,
- "id": 6885,
- "width": 62,
- "height": 50
- },
- {
- "y": 100,
- "fileNum": 4007,
- "id": 6887,
- "width": 62,
- "height": 50
- },
- {
- "x": 62,
- "y": 100,
- "fileNum": 4007,
- "id": 6888,
- "width": 62,
- "height": 50
- },
- {
- "x": 124,
- "y": 100,
- "fileNum": 4007,
- "id": 6889,
- "width": 62,
- "height": 50
- },
- {
- "y": 150,
- "fileNum": 4007,
- "id": 6891,
- "width": 62,
- "height": 50
- },
- {
- "x": 62,
- "y": 150,
- "fileNum": 4007,
- "id": 6892,
- "width": 62,
- "height": 50
- },
- {
- "x": 124,
- "y": 150,
- "fileNum": 4007,
- "id": 6893,
- "width": 62,
- "height": 50
- },
- {
- "fileNum": 4132,
- "id": 6898,
- "width": 96,
- "height": 96
- },
- {
- "x": 96,
- "fileNum": 4132,
- "id": 6899,
- "width": 96,
- "height": 96
- },
- {
- "x": 192,
- "fileNum": 4132,
- "id": 6900,
- "width": 96,
- "height": 96
- },
- {
- "x": 288,
- "fileNum": 4132,
- "id": 6901,
- "width": 96,
- "height": 96
- },
- {
- "y": 96,
- "fileNum": 4132,
- "id": 6902,
- "width": 96,
- "height": 96
- },
- {
- "x": 96,
- "y": 96,
- "fileNum": 4132,
- "id": 6903,
- "width": 96,
- "height": 96
- },
- {
- "x": 192,
- "y": 96,
- "fileNum": 4132,
- "id": 6904,
- "width": 96,
- "height": 96
- },
- {
- "x": 288,
- "y": 96,
- "fileNum": 4132,
- "id": 6905,
- "width": 96,
- "height": 96
- },
- {
- "y": 192,
- "fileNum": 4132,
- "id": 6906,
- "width": 96,
- "height": 96
- },
- {
- "x": 96,
- "y": 192,
- "fileNum": 4132,
- "id": 6907,
- "width": 96,
- "height": 96
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 4132,
- "id": 6908,
- "width": 96,
- "height": 96
- },
- {
- "x": 288,
- "y": 192,
- "fileNum": 4132,
- "id": 6909,
- "width": 96,
- "height": 96
- },
- {
- "y": 288,
- "fileNum": 4132,
- "id": 6910,
- "width": 96,
- "height": 96
- },
- {
- "x": 96,
- "y": 288,
- "fileNum": 4132,
- "id": 6911,
- "width": 96,
- "height": 96
- },
- {
- "x": 192,
- "y": 288,
- "fileNum": 4132,
- "id": 6912,
- "width": 96,
- "height": 96
- },
- {
- "x": 288,
- "y": 288,
- "fileNum": 4132,
- "id": 6913,
- "width": 96,
- "height": 96
- },
- {
- "fileNum": 4080,
- "id": 6918,
- "width": 50,
- "height": 104
- },
- {
- "x": 50,
- "fileNum": 4080,
- "id": 6919,
- "width": 50,
- "height": 104
- },
- {
- "x": 100,
- "fileNum": 4080,
- "id": 6920,
- "width": 50,
- "height": 104
- },
- {
- "x": 150,
- "fileNum": 4080,
- "id": 6921,
- "width": 50,
- "height": 104
- },
- {
- "x": 200,
- "fileNum": 4080,
- "id": 6922,
- "width": 50,
- "height": 104
- },
- {
- "x": 250,
- "fileNum": 4080,
- "id": 6923,
- "width": 50,
- "height": 104
- },
- {
- "y": 104,
- "fileNum": 4080,
- "id": 6924,
- "width": 50,
- "height": 104
- },
- {
- "x": 50,
- "y": 104,
- "fileNum": 4080,
- "id": 6925,
- "width": 50,
- "height": 104
- },
- {
- "x": 100,
- "y": 104,
- "fileNum": 4080,
- "id": 6926,
- "width": 50,
- "height": 104
- },
- {
- "x": 150,
- "y": 104,
- "fileNum": 4080,
- "id": 6927,
- "width": 50,
- "height": 104
- },
- {
- "x": 200,
- "y": 104,
- "fileNum": 4080,
- "id": 6928,
- "width": 50,
- "height": 104
- },
- {
- "x": 250,
- "y": 104,
- "fileNum": 4080,
- "id": 6929,
- "width": 50,
- "height": 104
- },
- {
- "y": 208,
- "fileNum": 4080,
- "id": 6930,
- "width": 50,
- "height": 104
- },
- {
- "x": 50,
- "y": 208,
- "fileNum": 4080,
- "id": 6931,
- "width": 50,
- "height": 104
- },
- {
- "x": 100,
- "y": 208,
- "fileNum": 4080,
- "id": 6932,
- "width": 50,
- "height": 104
- },
- {
- "x": 150,
- "y": 208,
- "fileNum": 4080,
- "id": 6933,
- "width": 50,
- "height": 104
- },
- {
- "x": 200,
- "y": 208,
- "fileNum": 4080,
- "id": 6934,
- "width": 50,
- "height": 104
- },
- {
- "y": 312,
- "fileNum": 4080,
- "id": 6935,
- "width": 50,
- "height": 104
- },
- {
- "x": 50,
- "y": 312,
- "fileNum": 4080,
- "id": 6936,
- "width": 50,
- "height": 104
- },
- {
- "x": 100,
- "y": 312,
- "fileNum": 4080,
- "id": 6937,
- "width": 50,
- "height": 104
- },
- {
- "x": 150,
- "y": 312,
- "fileNum": 4080,
- "id": 6938,
- "width": 50,
- "height": 104
- },
- {
- "x": 200,
- "y": 312,
- "fileNum": 4080,
- "id": 6939,
- "width": 50,
- "height": 104
- },
- {
- "fileNum": 2156,
- "id": 6944,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2156,
- "id": 6945,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2156,
- "id": 6946,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2156,
- "id": 6947,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2157,
- "id": 6948,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2157,
- "id": 6949,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2157,
- "id": 6950,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2157,
- "id": 6951,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2158,
- "id": 6952,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2158,
- "id": 6953,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2158,
- "id": 6954,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2158,
- "id": 6955,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2159,
- "id": 6956,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2159,
- "id": 6957,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2159,
- "id": 6958,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2159,
- "id": 6959,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2160,
- "id": 6960,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2160,
- "id": 6961,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2160,
- "id": 6962,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2160,
- "id": 6963,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 188,
- "id": 6967,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 189,
- "id": 6968,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 189,
- "id": 6969,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 189,
- "id": 6970,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 189,
- "id": 6971,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 189,
- "id": 6972,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 189,
- "id": 6973,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 189,
- "id": 6974,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 189,
- "id": 6975,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 189,
- "id": 6976,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 189,
- "id": 6977,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 189,
- "id": 6978,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 189,
- "id": 6979,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 189,
- "id": 6980,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 189,
- "id": 6981,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 189,
- "id": 6982,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 189,
- "id": 6983,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 189,
- "id": 6984,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 189,
- "id": 6985,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 189,
- "id": 6986,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 189,
- "id": 6987,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 189,
- "id": 6988,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 189,
- "id": 6989,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2161,
- "id": 6994,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2161,
- "id": 6995,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2161,
- "id": 6996,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2161,
- "id": 6997,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 6070,
- "id": 7000,
- "width": 512,
- "height": 512
- },
- {
- "fileNum": 6071,
- "id": 7001,
- "width": 512,
- "height": 512
- },
- {
- "fileNum": 6072,
- "id": 7002,
- "width": 512,
- "height": 512
- },
- {
- "fileNum": 4030,
- "id": 7003,
- "width": 76,
- "height": 112
- },
- {
- "x": 76,
- "fileNum": 4030,
- "id": 7004,
- "width": 76,
- "height": 112
- },
- {
- "x": 152,
- "fileNum": 4030,
- "id": 7005,
- "width": 76,
- "height": 112
- },
- {
- "x": 228,
- "fileNum": 4030,
- "id": 7006,
- "width": 76,
- "height": 112
- },
- {
- "x": 304,
- "fileNum": 4030,
- "id": 7007,
- "width": 76,
- "height": 112
- },
- {
- "x": 380,
- "fileNum": 4030,
- "id": 7008,
- "width": 76,
- "height": 112
- },
- {
- "y": 112,
- "fileNum": 4030,
- "id": 7010,
- "width": 76,
- "height": 112
- },
- {
- "x": 76,
- "y": 112,
- "fileNum": 4030,
- "id": 7011,
- "width": 76,
- "height": 112
- },
- {
- "x": 152,
- "y": 112,
- "fileNum": 4030,
- "id": 7012,
- "width": 76,
- "height": 112
- },
- {
- "x": 228,
- "y": 112,
- "fileNum": 4030,
- "id": 7013,
- "width": 76,
- "height": 112
- },
- {
- "x": 304,
- "y": 112,
- "fileNum": 4030,
- "id": 7014,
- "width": 76,
- "height": 112
- },
- {
- "x": 380,
- "y": 112,
- "fileNum": 4030,
- "id": 7015,
- "width": 76,
- "height": 112
- },
- {
- "y": 224,
- "fileNum": 4030,
- "id": 7017,
- "width": 76,
- "height": 112
- },
- {
- "x": 76,
- "y": 224,
- "fileNum": 4030,
- "id": 7018,
- "width": 76,
- "height": 112
- },
- {
- "x": 152,
- "y": 224,
- "fileNum": 4030,
- "id": 7019,
- "width": 76,
- "height": 112
- },
- {
- "x": 228,
- "y": 224,
- "fileNum": 4030,
- "id": 7020,
- "width": 76,
- "height": 112
- },
- {
- "x": 304,
- "y": 224,
- "fileNum": 4030,
- "id": 7021,
- "width": 76,
- "height": 112
- },
- {
- "x": 380,
- "y": 224,
- "fileNum": 4030,
- "id": 7022,
- "width": 76,
- "height": 112
- },
- {
- "y": 336,
- "fileNum": 4030,
- "id": 7024,
- "width": 76,
- "height": 112
- },
- {
- "x": 76,
- "y": 336,
- "fileNum": 4030,
- "id": 7025,
- "width": 76,
- "height": 112
- },
- {
- "x": 152,
- "y": 336,
- "fileNum": 4030,
- "id": 7026,
- "width": 76,
- "height": 112
- },
- {
- "x": 228,
- "y": 336,
- "fileNum": 4030,
- "id": 7027,
- "width": 76,
- "height": 112
- },
- {
- "x": 304,
- "y": 336,
- "fileNum": 4030,
- "id": 7028,
- "width": 76,
- "height": 112
- },
- {
- "x": 380,
- "y": 336,
- "fileNum": 4030,
- "id": 7029,
- "width": 76,
- "height": 112
- },
- {
- "fileNum": 4032,
- "id": 7034,
- "width": 104,
- "height": 162
- },
- {
- "x": 104,
- "fileNum": 4032,
- "id": 7035,
- "width": 104,
- "height": 162
- },
- {
- "x": 208,
- "fileNum": 4032,
- "id": 7036,
- "width": 104,
- "height": 162
- },
- {
- "x": 312,
- "fileNum": 4032,
- "id": 7037,
- "width": 104,
- "height": 162
- },
- {
- "x": 416,
- "fileNum": 4032,
- "id": 7038,
- "width": 104,
- "height": 162
- },
- {
- "x": 520,
- "fileNum": 4032,
- "id": 7039,
- "width": 104,
- "height": 162
- },
- {
- "y": 162,
- "fileNum": 4032,
- "id": 7041,
- "width": 104,
- "height": 162
- },
- {
- "x": 104,
- "y": 162,
- "fileNum": 4032,
- "id": 7042,
- "width": 104,
- "height": 162
- },
- {
- "x": 208,
- "y": 162,
- "fileNum": 4032,
- "id": 7043,
- "width": 104,
- "height": 162
- },
- {
- "x": 312,
- "y": 162,
- "fileNum": 4032,
- "id": 7044,
- "width": 104,
- "height": 162
- },
- {
- "x": 414,
- "y": 162,
- "fileNum": 4032,
- "id": 7045,
- "width": 104,
- "height": 162
- },
- {
- "x": 520,
- "y": 162,
- "fileNum": 4032,
- "id": 7046,
- "width": 104,
- "height": 162
- },
- {
- "y": 324,
- "fileNum": 4032,
- "id": 7048,
- "width": 104,
- "height": 162
- },
- {
- "x": 104,
- "y": 324,
- "fileNum": 4032,
- "id": 7049,
- "width": 104,
- "height": 162
- },
- {
- "x": 208,
- "y": 324,
- "fileNum": 4032,
- "id": 7050,
- "width": 104,
- "height": 162
- },
- {
- "x": 312,
- "y": 324,
- "fileNum": 4032,
- "id": 7051,
- "width": 104,
- "height": 162
- },
- {
- "x": 416,
- "y": 324,
- "fileNum": 4032,
- "id": 7052,
- "width": 104,
- "height": 162
- },
- {
- "x": 520,
- "y": 324,
- "fileNum": 4032,
- "id": 7053,
- "width": 104,
- "height": 162
- },
- {
- "y": 486,
- "fileNum": 4032,
- "id": 7055,
- "width": 104,
- "height": 162
- },
- {
- "x": 104,
- "y": 486,
- "fileNum": 4032,
- "id": 7056,
- "width": 104,
- "height": 162
- },
- {
- "x": 208,
- "y": 486,
- "fileNum": 4032,
- "id": 7057,
- "width": 104,
- "height": 162
- },
- {
- "x": 312,
- "y": 486,
- "fileNum": 4032,
- "id": 7058,
- "width": 104,
- "height": 162
- },
- {
- "x": 416,
- "y": 486,
- "fileNum": 4032,
- "id": 7059,
- "width": 104,
- "height": 162
- },
- {
- "x": 520,
- "y": 486,
- "fileNum": 4032,
- "id": 7060,
- "width": 104,
- "height": 162
- },
- {
- "fileNum": 4033,
- "id": 7065,
- "width": 104,
- "height": 162
- },
- {
- "x": 104,
- "fileNum": 4033,
- "id": 7066,
- "width": 104,
- "height": 162
- },
- {
- "x": 208,
- "fileNum": 4033,
- "id": 7067,
- "width": 104,
- "height": 162
- },
- {
- "x": 312,
- "fileNum": 4033,
- "id": 7068,
- "width": 104,
- "height": 162
- },
- {
- "x": 416,
- "fileNum": 4033,
- "id": 7069,
- "width": 104,
- "height": 162
- },
- {
- "x": 520,
- "fileNum": 4033,
- "id": 7070,
- "width": 104,
- "height": 162
- },
- {
- "y": 162,
- "fileNum": 4033,
- "id": 7072,
- "width": 104,
- "height": 162
- },
- {
- "x": 104,
- "y": 162,
- "fileNum": 4033,
- "id": 7073,
- "width": 104,
- "height": 162
- },
- {
- "x": 208,
- "y": 162,
- "fileNum": 4033,
- "id": 7074,
- "width": 104,
- "height": 162
- },
- {
- "x": 312,
- "y": 162,
- "fileNum": 4033,
- "id": 7075,
- "width": 104,
- "height": 162
- },
- {
- "x": 414,
- "y": 162,
- "fileNum": 4033,
- "id": 7076,
- "width": 104,
- "height": 162
- },
- {
- "x": 520,
- "y": 162,
- "fileNum": 4033,
- "id": 7077,
- "width": 104,
- "height": 162
- },
- {
- "y": 324,
- "fileNum": 4033,
- "id": 7079,
- "width": 104,
- "height": 162
- },
- {
- "x": 104,
- "y": 324,
- "fileNum": 4033,
- "id": 7080,
- "width": 104,
- "height": 162
- },
- {
- "x": 208,
- "y": 324,
- "fileNum": 4033,
- "id": 7081,
- "width": 104,
- "height": 162
- },
- {
- "x": 312,
- "y": 324,
- "fileNum": 4033,
- "id": 7082,
- "width": 104,
- "height": 162
- },
- {
- "x": 416,
- "y": 324,
- "fileNum": 4033,
- "id": 7083,
- "width": 104,
- "height": 162
- },
- {
- "x": 520,
- "y": 324,
- "fileNum": 4033,
- "id": 7084,
- "width": 104,
- "height": 162
- },
- {
- "y": 486,
- "fileNum": 4033,
- "id": 7086,
- "width": 104,
- "height": 162
- },
- {
- "x": 104,
- "y": 486,
- "fileNum": 4033,
- "id": 7087,
- "width": 104,
- "height": 162
- },
- {
- "x": 208,
- "y": 486,
- "fileNum": 4033,
- "id": 7088,
- "width": 104,
- "height": 162
- },
- {
- "x": 312,
- "y": 486,
- "fileNum": 4033,
- "id": 7089,
- "width": 104,
- "height": 162
- },
- {
- "x": 416,
- "y": 486,
- "fileNum": 4033,
- "id": 7090,
- "width": 104,
- "height": 162
- },
- {
- "x": 520,
- "y": 486,
- "fileNum": 4033,
- "id": 7091,
- "width": 104,
- "height": 162
- },
- {
- "fileNum": 2162,
- "id": 7096,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2162,
- "id": 7097,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2162,
- "id": 7098,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2162,
- "id": 7099,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 15190,
- "id": 7100,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 15190,
- "id": 7101,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 15190,
- "id": 7102,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 15190,
- "id": 7103,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 15190,
- "id": 7104,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 15190,
- "id": 7105,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 15190,
- "id": 7106,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 15190,
- "id": 7107,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 15190,
- "id": 7108,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 15190,
- "id": 7109,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 15190,
- "id": 7110,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 15190,
- "id": 7111,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 15190,
- "id": 7112,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 15190,
- "id": 7113,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 15190,
- "id": 7114,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 15190,
- "id": 7115,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 15190,
- "id": 7116,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 15190,
- "id": 7117,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 15190,
- "id": 7118,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 15190,
- "id": 7119,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 15190,
- "id": 7120,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 15190,
- "id": 7121,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 15190,
- "id": 7122,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 15190,
- "id": 7123,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 15190,
- "id": 7124,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 15190,
- "id": 7125,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 15190,
- "id": 7126,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 15190,
- "id": 7127,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 15190,
- "id": 7128,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 15190,
- "id": 7129,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 15190,
- "id": 7130,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 15190,
- "id": 7131,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 15190,
- "id": 7132,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 15190,
- "id": 7133,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 15190,
- "id": 7134,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 15190,
- "id": 7135,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 15190,
- "id": 7136,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 15190,
- "id": 7137,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 15190,
- "id": 7138,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 15190,
- "id": 7139,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 15190,
- "id": 7140,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 15190,
- "id": 7141,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 15190,
- "id": 7142,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 15190,
- "id": 7143,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 15190,
- "id": 7144,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 15190,
- "id": 7145,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 15190,
- "id": 7146,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 15190,
- "id": 7147,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 15190,
- "id": 7148,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 15190,
- "id": 7149,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 15190,
- "id": 7150,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 15190,
- "id": 7151,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 15190,
- "id": 7152,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 15190,
- "id": 7153,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 15190,
- "id": 7154,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 15190,
- "id": 7155,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 15190,
- "id": 7156,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 15190,
- "id": 7157,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 15190,
- "id": 7158,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 15190,
- "id": 7159,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 15190,
- "id": 7160,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 15190,
- "id": 7161,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 15190,
- "id": 7162,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15191,
- "id": 7163,
- "width": 512,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 15191,
- "id": 7164,
- "width": 512,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 15191,
- "id": 7165,
- "width": 512,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 15191,
- "id": 7166,
- "width": 512,
- "height": 64
- },
- {
- "y": 256,
- "fileNum": 15191,
- "id": 7167,
- "width": 512,
- "height": 64
- },
- {
- "y": 320,
- "fileNum": 15191,
- "id": 7168,
- "width": 512,
- "height": 64
- },
- {
- "y": 384,
- "fileNum": 15191,
- "id": 7169,
- "width": 512,
- "height": 64
- },
- {
- "y": 448,
- "fileNum": 15191,
- "id": 7170,
- "width": 512,
- "height": 64
- },
- {
- "fileNum": 4034,
- "id": 7171,
- "width": 196,
- "height": 170
- },
- {
- "x": 196,
- "fileNum": 4034,
- "id": 7172,
- "width": 196,
- "height": 170
- },
- {
- "x": 392,
- "fileNum": 4034,
- "id": 7173,
- "width": 196,
- "height": 170
- },
- {
- "x": 588,
- "fileNum": 4034,
- "id": 7174,
- "width": 196,
- "height": 170
- },
- {
- "x": 784,
- "fileNum": 4034,
- "id": 7175,
- "width": 196,
- "height": 170
- },
- {
- "y": 170,
- "fileNum": 4034,
- "id": 7177,
- "width": 196,
- "height": 170
- },
- {
- "x": 196,
- "y": 170,
- "fileNum": 4034,
- "id": 7178,
- "width": 196,
- "height": 170
- },
- {
- "x": 392,
- "y": 170,
- "fileNum": 4034,
- "id": 7179,
- "width": 196,
- "height": 170
- },
- {
- "x": 588,
- "y": 170,
- "fileNum": 4034,
- "id": 7180,
- "width": 196,
- "height": 170
- },
- {
- "x": 784,
- "y": 170,
- "fileNum": 4034,
- "id": 7181,
- "width": 196,
- "height": 170
- },
- {
- "y": 340,
- "fileNum": 4034,
- "id": 7183,
- "width": 196,
- "height": 170
- },
- {
- "x": 196,
- "y": 340,
- "fileNum": 4034,
- "id": 7184,
- "width": 196,
- "height": 170
- },
- {
- "x": 392,
- "y": 340,
- "fileNum": 4034,
- "id": 7185,
- "width": 196,
- "height": 170
- },
- {
- "x": 588,
- "y": 340,
- "fileNum": 4034,
- "id": 7186,
- "width": 196,
- "height": 170
- },
- {
- "x": 784,
- "y": 340,
- "fileNum": 4034,
- "id": 7187,
- "width": 196,
- "height": 170
- },
- {
- "y": 510,
- "fileNum": 4034,
- "id": 7189,
- "width": 196,
- "height": 170
- },
- {
- "x": 196,
- "y": 510,
- "fileNum": 4034,
- "id": 7190,
- "width": 196,
- "height": 170
- },
- {
- "x": 392,
- "y": 510,
- "fileNum": 4034,
- "id": 7191,
- "width": 196,
- "height": 170
- },
- {
- "x": 588,
- "y": 510,
- "fileNum": 4034,
- "id": 7192,
- "width": 196,
- "height": 170
- },
- {
- "x": 784,
- "y": 510,
- "fileNum": 4034,
- "id": 7193,
- "width": 196,
- "height": 170
- },
- {
- "fileNum": 9007,
- "id": 7198,
- "width": 640,
- "height": 256
- },
- {
- "y": 256,
- "fileNum": 9007,
- "id": 7199,
- "width": 640,
- "height": 256
- },
- {
- "y": 512,
- "fileNum": 9007,
- "id": 7200,
- "width": 640,
- "height": 256
- },
- {
- "y": 768,
- "fileNum": 9007,
- "id": 7201,
- "width": 640,
- "height": 64
- },
- {
- "fileNum": 2163,
- "id": 7202,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2163,
- "id": 7203,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2163,
- "id": 7204,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2163,
- "id": 7205,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2164,
- "id": 7206,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2164,
- "id": 7207,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2164,
- "id": 7208,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2164,
- "id": 7209,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2165,
- "id": 7210,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2165,
- "id": 7211,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2165,
- "id": 7212,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2165,
- "id": 7213,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2166,
- "id": 7214,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2166,
- "id": 7215,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2166,
- "id": 7216,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2166,
- "id": 7217,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2167,
- "id": 7218,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2167,
- "id": 7219,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2167,
- "id": 7220,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2167,
- "id": 7221,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 6073,
- "id": 7222,
- "width": 512,
- "height": 640
- },
- {
- "fileNum": 6074,
- "id": 7223,
- "width": 512,
- "height": 640
- },
- {
- "fileNum": 6076,
- "id": 7224,
- "width": 512,
- "height": 640
- },
- {
- "fileNum": 6075,
- "id": 7225,
- "width": 512,
- "height": 640
- },
- {
- "fileNum": 6077,
- "id": 7226,
- "width": 564,
- "height": 640
- },
- {
- "fileNum": 2168,
- "id": 7227,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2168,
- "id": 7228,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2168,
- "id": 7229,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2168,
- "id": 7230,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 11017,
- "id": 7231,
- "width": 320,
- "height": 256
- },
- {
- "fileNum": 11018,
- "id": 7232,
- "width": 64,
- "height": 320
- },
- {
- "fileNum": 9008,
- "id": 7233,
- "width": 512,
- "height": 512
- },
- {
- "fileNum": 12045,
- "id": 7234,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12045,
- "id": 7235,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12045,
- "id": 7236,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12045,
- "id": 7237,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12045,
- "id": 7238,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12045,
- "id": 7239,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12045,
- "id": 7240,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12045,
- "id": 7241,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12045,
- "id": 7242,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12045,
- "id": 7243,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12045,
- "id": 7244,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12045,
- "id": 7245,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12045,
- "id": 7246,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12045,
- "id": 7247,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12045,
- "id": 7248,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12045,
- "id": 7249,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12047,
- "id": 7250,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12047,
- "id": 7251,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12047,
- "id": 7252,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12047,
- "id": 7253,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12047,
- "id": 7254,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12047,
- "id": 7255,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12047,
- "id": 7256,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12047,
- "id": 7257,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12047,
- "id": 7258,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12047,
- "id": 7259,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12047,
- "id": 7260,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12047,
- "id": 7261,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12047,
- "id": 7262,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12047,
- "id": 7263,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12047,
- "id": 7264,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12047,
- "id": 7265,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12049,
- "id": 7266,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12049,
- "id": 7267,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12049,
- "id": 7268,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12049,
- "id": 7269,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12049,
- "id": 7270,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12049,
- "id": 7271,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12049,
- "id": 7272,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12049,
- "id": 7273,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12049,
- "id": 7274,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12049,
- "id": 7275,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12049,
- "id": 7276,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12049,
- "id": 7277,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12049,
- "id": 7278,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12049,
- "id": 7279,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12049,
- "id": 7280,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12049,
- "id": 7281,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11033,
- "id": 7282,
- "width": 64,
- "height": 320
- },
- {
- "fileNum": 12083,
- "id": 7283,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12083,
- "id": 7284,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12083,
- "id": 7285,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12083,
- "id": 7286,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12083,
- "id": 7287,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12083,
- "id": 7288,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12083,
- "id": 7289,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12083,
- "id": 7290,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12083,
- "id": 7291,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12083,
- "id": 7292,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12083,
- "id": 7293,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12083,
- "id": 7294,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12083,
- "id": 7295,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12083,
- "id": 7296,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12083,
- "id": 7297,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12083,
- "id": 7298,
- "width": 64,
- "height": 64
- },
- {
- "y": 256,
- "fileNum": 12083,
- "id": 7299,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 256,
- "fileNum": 12083,
- "id": 7300,
- "width": 64,
- "height": 64
- },
- {
- "y": 320,
- "fileNum": 12083,
- "id": 7301,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 320,
- "fileNum": 12083,
- "id": 7302,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 256,
- "fileNum": 12083,
- "id": 7303,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 256,
- "fileNum": 12083,
- "id": 7304,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 320,
- "fileNum": 12083,
- "id": 7305,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 320,
- "fileNum": 12083,
- "id": 7306,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 256,
- "fileNum": 12083,
- "id": 7307,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 256,
- "fileNum": 12083,
- "id": 7308,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 320,
- "fileNum": 12083,
- "id": 7309,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 320,
- "fileNum": 12083,
- "id": 7310,
- "width": 64,
- "height": 64
- },
- {
- "y": 384,
- "fileNum": 12083,
- "id": 7311,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 384,
- "fileNum": 12083,
- "id": 7312,
- "width": 64,
- "height": 64
- },
- {
- "y": 448,
- "fileNum": 12083,
- "id": 7313,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 448,
- "fileNum": 12083,
- "id": 7314,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 384,
- "fileNum": 12083,
- "id": 7315,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 384,
- "fileNum": 12083,
- "id": 7316,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 448,
- "fileNum": 12083,
- "id": 7317,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 448,
- "fileNum": 12083,
- "id": 7318,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 384,
- "fileNum": 12083,
- "id": 7319,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 384,
- "fileNum": 12083,
- "id": 7320,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 448,
- "fileNum": 12083,
- "id": 7321,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 448,
- "fileNum": 12083,
- "id": 7322,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 256,
- "fileNum": 12083,
- "id": 7323,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 256,
- "fileNum": 12083,
- "id": 7324,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 320,
- "fileNum": 12083,
- "id": 7325,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 320,
- "fileNum": 12083,
- "id": 7326,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 384,
- "fileNum": 12083,
- "id": 7327,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 384,
- "fileNum": 12083,
- "id": 7328,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 448,
- "fileNum": 12083,
- "id": 7329,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 448,
- "fileNum": 12083,
- "id": 7330,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12083,
- "id": 7331,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12083,
- "id": 7332,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12083,
- "id": 7333,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12083,
- "id": 7334,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12083,
- "id": 7335,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12083,
- "id": 7336,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12083,
- "id": 7337,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12083,
- "id": 7338,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12083,
- "id": 7339,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12083,
- "id": 7340,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12083,
- "id": 7341,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12083,
- "id": 7342,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12083,
- "id": 7343,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12083,
- "id": 7344,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12083,
- "id": 7345,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12083,
- "id": 7346,
- "width": 64,
- "height": 64
- },
- {
- "y": 512,
- "fileNum": 12083,
- "id": 7347,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 512,
- "fileNum": 12083,
- "id": 7348,
- "width": 64,
- "height": 64
- },
- {
- "y": 576,
- "fileNum": 12083,
- "id": 7349,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 576,
- "fileNum": 12083,
- "id": 7350,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 512,
- "fileNum": 12083,
- "id": 7351,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 512,
- "fileNum": 12083,
- "id": 7352,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 576,
- "fileNum": 12083,
- "id": 7353,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 576,
- "fileNum": 12083,
- "id": 7354,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 512,
- "fileNum": 12083,
- "id": 7355,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 512,
- "fileNum": 12083,
- "id": 7356,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 576,
- "fileNum": 12083,
- "id": 7357,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 576,
- "fileNum": 12083,
- "id": 7358,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 512,
- "fileNum": 12083,
- "id": 7359,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 512,
- "fileNum": 12083,
- "id": 7360,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 576,
- "fileNum": 12083,
- "id": 7361,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 576,
- "fileNum": 12083,
- "id": 7362,
- "width": 64,
- "height": 64
- },
- {
- "y": 640,
- "fileNum": 12083,
- "id": 7363,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 640,
- "fileNum": 12083,
- "id": 7364,
- "width": 64,
- "height": 64
- },
- {
- "y": 704,
- "fileNum": 12083,
- "id": 7365,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 704,
- "fileNum": 12083,
- "id": 7366,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 640,
- "fileNum": 12083,
- "id": 7367,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 640,
- "fileNum": 12083,
- "id": 7368,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 704,
- "fileNum": 12083,
- "id": 7369,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 704,
- "fileNum": 12083,
- "id": 7370,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 640,
- "fileNum": 12083,
- "id": 7371,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 640,
- "fileNum": 12083,
- "id": 7372,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 704,
- "fileNum": 12083,
- "id": 7373,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 704,
- "fileNum": 12083,
- "id": 7374,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 640,
- "fileNum": 12083,
- "id": 7375,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 640,
- "fileNum": 12083,
- "id": 7376,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 704,
- "fileNum": 12083,
- "id": 7377,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 704,
- "fileNum": 12083,
- "id": 7378,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12064,
- "id": 7379,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12064,
- "id": 7380,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12064,
- "id": 7381,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12064,
- "id": 7382,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12064,
- "id": 7383,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12064,
- "id": 7384,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12064,
- "id": 7385,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12064,
- "id": 7386,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12064,
- "id": 7387,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12064,
- "id": 7388,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12064,
- "id": 7389,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12064,
- "id": 7390,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12064,
- "id": 7391,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12064,
- "id": 7392,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12064,
- "id": 7393,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12064,
- "id": 7394,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12064,
- "id": 7395,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12064,
- "id": 7396,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12064,
- "id": 7397,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12064,
- "id": 7398,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12064,
- "id": 7399,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12064,
- "id": 7400,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12064,
- "id": 7401,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12064,
- "id": 7402,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12064,
- "id": 7403,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12064,
- "id": 7404,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12064,
- "id": 7405,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12064,
- "id": 7406,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12064,
- "id": 7407,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12064,
- "id": 7408,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12064,
- "id": 7409,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12064,
- "id": 7410,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12064,
- "id": 7411,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12064,
- "id": 7412,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12064,
- "id": 7413,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12064,
- "id": 7414,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12064,
- "id": 7415,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12064,
- "id": 7416,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12064,
- "id": 7417,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12064,
- "id": 7418,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12064,
- "id": 7419,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12064,
- "id": 7420,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12064,
- "id": 7421,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12064,
- "id": 7422,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12064,
- "id": 7423,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12064,
- "id": 7424,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12064,
- "id": 7425,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12064,
- "id": 7426,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12064,
- "id": 7427,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12065,
- "id": 7428,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12065,
- "id": 7429,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12065,
- "id": 7430,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12065,
- "id": 7431,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12065,
- "id": 7432,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12065,
- "id": 7433,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12065,
- "id": 7434,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12065,
- "id": 7435,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12065,
- "id": 7436,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12065,
- "id": 7437,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12065,
- "id": 7438,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12065,
- "id": 7439,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12065,
- "id": 7440,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12065,
- "id": 7441,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12065,
- "id": 7442,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12065,
- "id": 7443,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12065,
- "id": 7444,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12065,
- "id": 7445,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12065,
- "id": 7446,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12065,
- "id": 7447,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12065,
- "id": 7448,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12065,
- "id": 7449,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12065,
- "id": 7450,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12065,
- "id": 7451,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12065,
- "id": 7452,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12065,
- "id": 7453,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12065,
- "id": 7454,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12065,
- "id": 7455,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12065,
- "id": 7456,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12065,
- "id": 7457,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12065,
- "id": 7458,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12065,
- "id": 7459,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12065,
- "id": 7460,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12065,
- "id": 7461,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12065,
- "id": 7462,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12065,
- "id": 7463,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12065,
- "id": 7464,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12065,
- "id": 7465,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12065,
- "id": 7466,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12065,
- "id": 7467,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12065,
- "id": 7468,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12065,
- "id": 7469,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12065,
- "id": 7470,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12065,
- "id": 7471,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12065,
- "id": 7472,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12065,
- "id": 7473,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12065,
- "id": 7474,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12065,
- "id": 7475,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12065,
- "id": 7476,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12065,
- "id": 7477,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12065,
- "id": 7478,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12065,
- "id": 7479,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12065,
- "id": 7480,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12065,
- "id": 7481,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12065,
- "id": 7482,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12065,
- "id": 7483,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12065,
- "id": 7484,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12065,
- "id": 7485,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12065,
- "id": 7486,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12065,
- "id": 7487,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12065,
- "id": 7488,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12065,
- "id": 7489,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12065,
- "id": 7490,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12065,
- "id": 7491,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12066,
- "id": 7492,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12066,
- "id": 7493,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12066,
- "id": 7494,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12066,
- "id": 7495,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12066,
- "id": 7496,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12066,
- "id": 7497,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12066,
- "id": 7498,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12066,
- "id": 7499,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12066,
- "id": 7500,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12066,
- "id": 7501,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12066,
- "id": 7502,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12066,
- "id": 7503,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12066,
- "id": 7504,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12066,
- "id": 7505,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12066,
- "id": 7506,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12066,
- "id": 7507,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12067,
- "id": 7508,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12067,
- "id": 7509,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12067,
- "id": 7510,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12067,
- "id": 7511,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12067,
- "id": 7512,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12067,
- "id": 7513,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12067,
- "id": 7514,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12067,
- "id": 7515,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12067,
- "id": 7516,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12067,
- "id": 7517,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12067,
- "id": 7518,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12067,
- "id": 7519,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12067,
- "id": 7520,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12067,
- "id": 7521,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12067,
- "id": 7522,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12067,
- "id": 7523,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12067,
- "id": 7524,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12067,
- "id": 7525,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12067,
- "id": 7526,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12067,
- "id": 7527,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12067,
- "id": 7528,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12067,
- "id": 7529,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12067,
- "id": 7530,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12067,
- "id": 7531,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12067,
- "id": 7532,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12067,
- "id": 7533,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12067,
- "id": 7534,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12067,
- "id": 7535,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12067,
- "id": 7536,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12067,
- "id": 7537,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12067,
- "id": 7538,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12067,
- "id": 7539,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12067,
- "id": 7540,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12067,
- "id": 7541,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12067,
- "id": 7542,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12067,
- "id": 7543,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12067,
- "id": 7544,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12067,
- "id": 7545,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12067,
- "id": 7546,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12067,
- "id": 7547,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12067,
- "id": 7548,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12067,
- "id": 7549,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12067,
- "id": 7550,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12067,
- "id": 7551,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12067,
- "id": 7552,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12067,
- "id": 7553,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12067,
- "id": 7554,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12067,
- "id": 7555,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12067,
- "id": 7556,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12067,
- "id": 7557,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12067,
- "id": 7558,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12067,
- "id": 7559,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12067,
- "id": 7560,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12067,
- "id": 7561,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12067,
- "id": 7562,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12067,
- "id": 7563,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12067,
- "id": 7564,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12067,
- "id": 7565,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12067,
- "id": 7566,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12067,
- "id": 7567,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12067,
- "id": 7568,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12067,
- "id": 7569,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12067,
- "id": 7570,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12067,
- "id": 7571,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12068,
- "id": 7572,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12068,
- "id": 7573,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12068,
- "id": 7574,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12068,
- "id": 7575,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12068,
- "id": 7576,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12068,
- "id": 7577,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12068,
- "id": 7578,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12068,
- "id": 7579,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12068,
- "id": 7580,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12068,
- "id": 7581,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12068,
- "id": 7582,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12068,
- "id": 7583,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12068,
- "id": 7584,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12068,
- "id": 7585,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12068,
- "id": 7586,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12068,
- "id": 7587,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12068,
- "id": 7588,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12068,
- "id": 7589,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12068,
- "id": 7590,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12068,
- "id": 7591,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12068,
- "id": 7592,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12068,
- "id": 7593,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12068,
- "id": 7594,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12068,
- "id": 7595,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12068,
- "id": 7596,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12068,
- "id": 7597,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12068,
- "id": 7598,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12068,
- "id": 7599,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12068,
- "id": 7600,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12068,
- "id": 7601,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12068,
- "id": 7602,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12068,
- "id": 7603,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12068,
- "id": 7604,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12068,
- "id": 7605,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12068,
- "id": 7606,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12068,
- "id": 7607,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12068,
- "id": 7608,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12068,
- "id": 7609,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12068,
- "id": 7610,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12068,
- "id": 7611,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12068,
- "id": 7612,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12068,
- "id": 7613,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12068,
- "id": 7614,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12068,
- "id": 7615,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12068,
- "id": 7616,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12068,
- "id": 7617,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12068,
- "id": 7618,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12068,
- "id": 7619,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12068,
- "id": 7620,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12068,
- "id": 7621,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12068,
- "id": 7622,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12068,
- "id": 7623,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12068,
- "id": 7624,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12068,
- "id": 7625,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12068,
- "id": 7626,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12068,
- "id": 7627,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12068,
- "id": 7628,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12068,
- "id": 7629,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12068,
- "id": 7630,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12068,
- "id": 7631,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12068,
- "id": 7632,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12068,
- "id": 7633,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12068,
- "id": 7634,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12068,
- "id": 7635,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12069,
- "id": 7636,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12069,
- "id": 7637,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12069,
- "id": 7638,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12069,
- "id": 7639,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12069,
- "id": 7640,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12069,
- "id": 7641,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12069,
- "id": 7642,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12069,
- "id": 7643,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12069,
- "id": 7644,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12069,
- "id": 7645,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12069,
- "id": 7646,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12069,
- "id": 7647,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12069,
- "id": 7648,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12069,
- "id": 7649,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12069,
- "id": 7650,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12069,
- "id": 7651,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12069,
- "id": 7652,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12069,
- "id": 7653,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12069,
- "id": 7654,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12069,
- "id": 7655,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12069,
- "id": 7656,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12069,
- "id": 7657,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12069,
- "id": 7658,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12069,
- "id": 7659,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12069,
- "id": 7660,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12069,
- "id": 7661,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12069,
- "id": 7662,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12069,
- "id": 7663,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12069,
- "id": 7664,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12069,
- "id": 7665,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12069,
- "id": 7666,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12069,
- "id": 7667,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12069,
- "id": 7668,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12069,
- "id": 7669,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12069,
- "id": 7670,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12069,
- "id": 7671,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12069,
- "id": 7672,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12069,
- "id": 7673,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12069,
- "id": 7674,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12069,
- "id": 7675,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12069,
- "id": 7676,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12069,
- "id": 7677,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12069,
- "id": 7678,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12069,
- "id": 7679,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12069,
- "id": 7680,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12069,
- "id": 7681,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12069,
- "id": 7682,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12069,
- "id": 7683,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 2169,
- "id": 7684,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2169,
- "id": 7685,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2169,
- "id": 7686,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2169,
- "id": 7687,
- "width": 34,
- "height": 100
- },
- {
- "x": 768,
- "fileNum": 12069,
- "id": 7688,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12069,
- "id": 7689,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12069,
- "id": 7690,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12069,
- "id": 7691,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12069,
- "id": 7692,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12069,
- "id": 7693,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12069,
- "id": 7694,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12069,
- "id": 7695,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12069,
- "id": 7696,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12069,
- "id": 7697,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12069,
- "id": 7698,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12069,
- "id": 7699,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12069,
- "id": 7700,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12069,
- "id": 7701,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12069,
- "id": 7702,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12069,
- "id": 7703,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12070,
- "id": 7704,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12070,
- "id": 7705,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12070,
- "id": 7706,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12070,
- "id": 7707,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12070,
- "id": 7708,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12070,
- "id": 7709,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12070,
- "id": 7710,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12070,
- "id": 7711,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12070,
- "id": 7712,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12070,
- "id": 7713,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12070,
- "id": 7714,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12070,
- "id": 7715,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12070,
- "id": 7716,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12070,
- "id": 7717,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12070,
- "id": 7718,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12070,
- "id": 7719,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12071,
- "id": 7720,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12071,
- "id": 7721,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12071,
- "id": 7722,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12071,
- "id": 7723,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12071,
- "id": 7724,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12071,
- "id": 7725,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12071,
- "id": 7726,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12071,
- "id": 7727,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12071,
- "id": 7728,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12071,
- "id": 7729,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12071,
- "id": 7730,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12071,
- "id": 7731,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12071,
- "id": 7732,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12071,
- "id": 7733,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12071,
- "id": 7734,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12071,
- "id": 7735,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12072,
- "id": 7736,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12072,
- "id": 7737,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12072,
- "id": 7738,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12072,
- "id": 7739,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12072,
- "id": 7740,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12072,
- "id": 7741,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12072,
- "id": 7742,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12072,
- "id": 7743,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12072,
- "id": 7744,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12072,
- "id": 7745,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12072,
- "id": 7746,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12072,
- "id": 7747,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12072,
- "id": 7748,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12072,
- "id": 7749,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12072,
- "id": 7750,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12072,
- "id": 7751,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12072,
- "id": 7752,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12072,
- "id": 7753,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12072,
- "id": 7754,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12072,
- "id": 7755,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12072,
- "id": 7756,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12072,
- "id": 7757,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12072,
- "id": 7758,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12072,
- "id": 7759,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12072,
- "id": 7760,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12072,
- "id": 7761,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12072,
- "id": 7762,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12072,
- "id": 7763,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12072,
- "id": 7764,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12072,
- "id": 7765,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12072,
- "id": 7766,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12072,
- "id": 7767,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12072,
- "id": 7768,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12072,
- "id": 7769,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12072,
- "id": 7770,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12072,
- "id": 7771,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12072,
- "id": 7772,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12072,
- "id": 7773,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12072,
- "id": 7774,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12072,
- "id": 7775,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12072,
- "id": 7776,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12072,
- "id": 7777,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12072,
- "id": 7778,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12072,
- "id": 7779,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12072,
- "id": 7780,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12072,
- "id": 7781,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12072,
- "id": 7782,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12072,
- "id": 7783,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12072,
- "id": 7784,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12072,
- "id": 7785,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12072,
- "id": 7786,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12072,
- "id": 7787,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12072,
- "id": 7788,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12072,
- "id": 7789,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12072,
- "id": 7790,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12072,
- "id": 7791,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12072,
- "id": 7792,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12072,
- "id": 7793,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12072,
- "id": 7794,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12072,
- "id": 7795,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12072,
- "id": 7796,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12072,
- "id": 7797,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12072,
- "id": 7798,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12072,
- "id": 7799,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12073,
- "id": 7800,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12073,
- "id": 7801,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12073,
- "id": 7802,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12073,
- "id": 7803,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12073,
- "id": 7804,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12073,
- "id": 7805,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12073,
- "id": 7806,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12073,
- "id": 7807,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12073,
- "id": 7808,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12073,
- "id": 7809,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12073,
- "id": 7810,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12073,
- "id": 7811,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12073,
- "id": 7812,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12073,
- "id": 7813,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12073,
- "id": 7814,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12073,
- "id": 7815,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12073,
- "id": 7816,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12073,
- "id": 7817,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12073,
- "id": 7818,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12073,
- "id": 7819,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12073,
- "id": 7820,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12073,
- "id": 7821,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12073,
- "id": 7822,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12073,
- "id": 7823,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12073,
- "id": 7824,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12073,
- "id": 7825,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12073,
- "id": 7826,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12073,
- "id": 7827,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12073,
- "id": 7828,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12073,
- "id": 7829,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12073,
- "id": 7830,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12073,
- "id": 7831,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12073,
- "id": 7832,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12073,
- "id": 7833,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12073,
- "id": 7834,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12073,
- "id": 7835,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12073,
- "id": 7836,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12073,
- "id": 7837,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12073,
- "id": 7838,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12073,
- "id": 7839,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12073,
- "id": 7840,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12073,
- "id": 7841,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12073,
- "id": 7842,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12073,
- "id": 7843,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12073,
- "id": 7844,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12073,
- "id": 7845,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12073,
- "id": 7846,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12073,
- "id": 7847,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12073,
- "id": 7848,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12073,
- "id": 7849,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12073,
- "id": 7850,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12073,
- "id": 7851,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12073,
- "id": 7852,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12073,
- "id": 7853,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12073,
- "id": 7854,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12073,
- "id": 7855,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12073,
- "id": 7856,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12073,
- "id": 7857,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12073,
- "id": 7858,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12073,
- "id": 7859,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12073,
- "id": 7860,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12073,
- "id": 7861,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12073,
- "id": 7862,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12073,
- "id": 7863,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12074,
- "id": 7864,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12074,
- "id": 7865,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12074,
- "id": 7866,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12074,
- "id": 7867,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12074,
- "id": 7868,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12074,
- "id": 7869,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12074,
- "id": 7870,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12074,
- "id": 7871,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12074,
- "id": 7872,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12074,
- "id": 7873,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12074,
- "id": 7874,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12074,
- "id": 7875,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12074,
- "id": 7876,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12074,
- "id": 7877,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12074,
- "id": 7878,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12074,
- "id": 7879,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12074,
- "id": 7880,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12074,
- "id": 7881,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12074,
- "id": 7882,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12074,
- "id": 7883,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12074,
- "id": 7884,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12074,
- "id": 7885,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12074,
- "id": 7886,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12074,
- "id": 7887,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12074,
- "id": 7888,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12074,
- "id": 7889,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12074,
- "id": 7890,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12074,
- "id": 7891,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12074,
- "id": 7892,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12074,
- "id": 7893,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12074,
- "id": 7894,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12074,
- "id": 7895,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12074,
- "id": 7896,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12074,
- "id": 7897,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12074,
- "id": 7898,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12074,
- "id": 7899,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12074,
- "id": 7900,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12074,
- "id": 7901,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12074,
- "id": 7902,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12074,
- "id": 7903,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12074,
- "id": 7904,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12074,
- "id": 7905,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12074,
- "id": 7906,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12074,
- "id": 7907,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12074,
- "id": 7908,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12074,
- "id": 7909,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12074,
- "id": 7910,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12074,
- "id": 7911,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12074,
- "id": 7912,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12074,
- "id": 7913,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12074,
- "id": 7914,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12074,
- "id": 7915,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12074,
- "id": 7916,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12074,
- "id": 7917,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12074,
- "id": 7918,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12074,
- "id": 7919,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12074,
- "id": 7920,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12074,
- "id": 7921,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12074,
- "id": 7922,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12074,
- "id": 7923,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12074,
- "id": 7924,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12074,
- "id": 7925,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12074,
- "id": 7926,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12074,
- "id": 7927,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12075,
- "id": 7928,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12075,
- "id": 7929,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12075,
- "id": 7930,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12075,
- "id": 7931,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12075,
- "id": 7932,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12075,
- "id": 7933,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12075,
- "id": 7934,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12075,
- "id": 7935,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12075,
- "id": 7936,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12075,
- "id": 7937,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12075,
- "id": 7938,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12075,
- "id": 7939,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12075,
- "id": 7940,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12075,
- "id": 7941,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12075,
- "id": 7942,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12075,
- "id": 7943,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12075,
- "id": 7944,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12075,
- "id": 7945,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12075,
- "id": 7946,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12075,
- "id": 7947,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12075,
- "id": 7948,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12075,
- "id": 7949,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12075,
- "id": 7950,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12075,
- "id": 7951,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12075,
- "id": 7952,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12075,
- "id": 7953,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12075,
- "id": 7954,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12075,
- "id": 7955,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12075,
- "id": 7956,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12075,
- "id": 7957,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12075,
- "id": 7958,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12075,
- "id": 7959,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12076,
- "id": 7960,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12076,
- "id": 7961,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12076,
- "id": 7962,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12076,
- "id": 7963,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12076,
- "id": 7964,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12076,
- "id": 7965,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12076,
- "id": 7966,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12076,
- "id": 7967,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12076,
- "id": 7968,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12076,
- "id": 7969,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12076,
- "id": 7970,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12076,
- "id": 7971,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12076,
- "id": 7972,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12076,
- "id": 7973,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12076,
- "id": 7974,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12076,
- "id": 7975,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12076,
- "id": 7976,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12076,
- "id": 7977,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12076,
- "id": 7978,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12076,
- "id": 7979,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12076,
- "id": 7980,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12076,
- "id": 7981,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12076,
- "id": 7982,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12076,
- "id": 7983,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12076,
- "id": 7984,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12076,
- "id": 7985,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12076,
- "id": 7986,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12076,
- "id": 7987,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12076,
- "id": 7988,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12076,
- "id": 7989,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12076,
- "id": 7990,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12076,
- "id": 7991,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12076,
- "id": 7992,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12076,
- "id": 7993,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12076,
- "id": 7994,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12076,
- "id": 7995,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12076,
- "id": 7996,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12076,
- "id": 7997,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12076,
- "id": 7998,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12076,
- "id": 7999,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12076,
- "id": 8000,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12076,
- "id": 8001,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12076,
- "id": 8002,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12076,
- "id": 8003,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12076,
- "id": 8004,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12076,
- "id": 8005,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12076,
- "id": 8006,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12076,
- "id": 8007,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12076,
- "id": 8008,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12076,
- "id": 8009,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12076,
- "id": 8010,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12076,
- "id": 8011,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12076,
- "id": 8012,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12076,
- "id": 8013,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12076,
- "id": 8014,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12076,
- "id": 8015,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12076,
- "id": 8016,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12076,
- "id": 8017,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12076,
- "id": 8018,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12076,
- "id": 8019,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12076,
- "id": 8020,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12076,
- "id": 8021,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12076,
- "id": 8022,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12076,
- "id": 8023,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12077,
- "id": 8024,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12077,
- "id": 8025,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12077,
- "id": 8026,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12077,
- "id": 8027,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12077,
- "id": 8028,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12077,
- "id": 8029,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12077,
- "id": 8030,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12077,
- "id": 8031,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12077,
- "id": 8032,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12077,
- "id": 8033,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12077,
- "id": 8034,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12077,
- "id": 8035,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12077,
- "id": 8036,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12077,
- "id": 8037,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12077,
- "id": 8038,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12077,
- "id": 8039,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12077,
- "id": 8040,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12077,
- "id": 8041,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12077,
- "id": 8042,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12077,
- "id": 8043,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12077,
- "id": 8044,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12077,
- "id": 8045,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12077,
- "id": 8046,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12077,
- "id": 8047,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12077,
- "id": 8048,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12077,
- "id": 8049,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12077,
- "id": 8050,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12077,
- "id": 8051,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12077,
- "id": 8052,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12077,
- "id": 8053,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12077,
- "id": 8054,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12077,
- "id": 8055,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12077,
- "id": 8056,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12077,
- "id": 8057,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12077,
- "id": 8058,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12077,
- "id": 8059,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12077,
- "id": 8060,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12077,
- "id": 8061,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12077,
- "id": 8062,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12077,
- "id": 8063,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12077,
- "id": 8064,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12077,
- "id": 8065,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12077,
- "id": 8066,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12077,
- "id": 8067,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12077,
- "id": 8068,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12077,
- "id": 8069,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12077,
- "id": 8070,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12077,
- "id": 8071,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12077,
- "id": 8072,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12077,
- "id": 8073,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12077,
- "id": 8074,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12077,
- "id": 8075,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12077,
- "id": 8076,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12077,
- "id": 8077,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12077,
- "id": 8078,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12077,
- "id": 8079,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12077,
- "id": 8080,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12077,
- "id": 8081,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12077,
- "id": 8082,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12077,
- "id": 8083,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12077,
- "id": 8084,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12077,
- "id": 8085,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12077,
- "id": 8086,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12077,
- "id": 8087,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12078,
- "id": 8088,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12078,
- "id": 8089,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12078,
- "id": 8090,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12078,
- "id": 8091,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12078,
- "id": 8092,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12078,
- "id": 8093,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12078,
- "id": 8094,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12078,
- "id": 8095,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12078,
- "id": 8096,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12078,
- "id": 8097,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12078,
- "id": 8098,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12078,
- "id": 8099,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12078,
- "id": 8100,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12078,
- "id": 8101,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12078,
- "id": 8102,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12078,
- "id": 8103,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12078,
- "id": 8104,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12078,
- "id": 8105,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12078,
- "id": 8106,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12078,
- "id": 8107,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12078,
- "id": 8108,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12078,
- "id": 8109,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12078,
- "id": 8110,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12078,
- "id": 8111,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12078,
- "id": 8112,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12078,
- "id": 8113,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12078,
- "id": 8114,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12078,
- "id": 8115,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12078,
- "id": 8116,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12078,
- "id": 8117,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12078,
- "id": 8118,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12078,
- "id": 8119,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12078,
- "id": 8120,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12078,
- "id": 8121,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12078,
- "id": 8122,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12078,
- "id": 8123,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12078,
- "id": 8124,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12078,
- "id": 8125,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12078,
- "id": 8126,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12078,
- "id": 8127,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12078,
- "id": 8128,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12078,
- "id": 8129,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12078,
- "id": 8130,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12078,
- "id": 8131,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12078,
- "id": 8132,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12078,
- "id": 8133,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12078,
- "id": 8134,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12078,
- "id": 8135,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12078,
- "id": 8136,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12078,
- "id": 8137,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12078,
- "id": 8138,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12078,
- "id": 8139,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12078,
- "id": 8140,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12078,
- "id": 8141,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12078,
- "id": 8142,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12078,
- "id": 8143,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12078,
- "id": 8144,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12078,
- "id": 8145,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12078,
- "id": 8146,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12078,
- "id": 8147,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12078,
- "id": 8148,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12078,
- "id": 8149,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12078,
- "id": 8150,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12079,
- "id": 8151,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12079,
- "id": 8152,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12079,
- "id": 8153,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12079,
- "id": 8154,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12079,
- "id": 8155,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12079,
- "id": 8156,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12079,
- "id": 8157,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12079,
- "id": 8158,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12079,
- "id": 8159,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12079,
- "id": 8160,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12079,
- "id": 8161,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12079,
- "id": 8162,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12079,
- "id": 8163,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12079,
- "id": 8164,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12079,
- "id": 8165,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12079,
- "id": 8166,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15197,
- "id": 8167,
- "width": 128,
- "height": 768
- },
- {
- "fileNum": 15196,
- "id": 8168,
- "width": 576,
- "height": 192
- },
- {
- "x": 512,
- "fileNum": 12075,
- "id": 8169,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12075,
- "id": 8170,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12075,
- "id": 8171,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12075,
- "id": 8172,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12075,
- "id": 8173,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12075,
- "id": 8174,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12075,
- "id": 8175,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12075,
- "id": 8176,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12075,
- "id": 8177,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12075,
- "id": 8178,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12075,
- "id": 8179,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12075,
- "id": 8180,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12075,
- "id": 8181,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12075,
- "id": 8182,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12075,
- "id": 8183,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12075,
- "id": 8184,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12075,
- "id": 8185,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12075,
- "id": 8186,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12075,
- "id": 8187,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12075,
- "id": 8188,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12075,
- "id": 8189,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12075,
- "id": 8190,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12075,
- "id": 8191,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12075,
- "id": 8192,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12075,
- "id": 8193,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12075,
- "id": 8194,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12075,
- "id": 8195,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12075,
- "id": 8196,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12075,
- "id": 8197,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12075,
- "id": 8198,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12075,
- "id": 8199,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12075,
- "id": 8200,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8143,
- "id": 8201,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8143,
- "id": 8202,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8143,
- "id": 8203,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8143,
- "id": 8204,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8143,
- "id": 8205,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8143,
- "id": 8206,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8143,
- "id": 8207,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8143,
- "id": 8208,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8143,
- "id": 8209,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8143,
- "id": 8210,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8143,
- "id": 8211,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8143,
- "id": 8212,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8143,
- "id": 8213,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8143,
- "id": 8214,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8143,
- "id": 8215,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8143,
- "id": 8216,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8144,
- "id": 8217,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8144,
- "id": 8218,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8144,
- "id": 8219,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8144,
- "id": 8220,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8144,
- "id": 8221,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8144,
- "id": 8222,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8144,
- "id": 8223,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8144,
- "id": 8224,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8144,
- "id": 8225,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8144,
- "id": 8226,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8144,
- "id": 8227,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8144,
- "id": 8228,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8144,
- "id": 8229,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8144,
- "id": 8230,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8144,
- "id": 8231,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8144,
- "id": 8232,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8145,
- "id": 8233,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8145,
- "id": 8234,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8145,
- "id": 8235,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8145,
- "id": 8236,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8145,
- "id": 8237,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8145,
- "id": 8238,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8145,
- "id": 8239,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8145,
- "id": 8240,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8145,
- "id": 8241,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8145,
- "id": 8242,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8145,
- "id": 8243,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8145,
- "id": 8244,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8145,
- "id": 8245,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8145,
- "id": 8246,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8145,
- "id": 8247,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8145,
- "id": 8248,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8146,
- "id": 8249,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8146,
- "id": 8250,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8146,
- "id": 8251,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8146,
- "id": 8252,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8146,
- "id": 8253,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8146,
- "id": 8254,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8146,
- "id": 8255,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8146,
- "id": 8256,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8146,
- "id": 8257,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8146,
- "id": 8258,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8146,
- "id": 8259,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8146,
- "id": 8260,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8146,
- "id": 8261,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8146,
- "id": 8262,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8146,
- "id": 8263,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8146,
- "id": 8264,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8147,
- "id": 8265,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8147,
- "id": 8266,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8147,
- "id": 8267,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8147,
- "id": 8268,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8147,
- "id": 8269,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8147,
- "id": 8270,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8147,
- "id": 8271,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8147,
- "id": 8272,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8147,
- "id": 8273,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8147,
- "id": 8274,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8147,
- "id": 8275,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8147,
- "id": 8276,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8147,
- "id": 8277,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8147,
- "id": 8278,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8147,
- "id": 8279,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8147,
- "id": 8280,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8148,
- "id": 8281,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8148,
- "id": 8282,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8148,
- "id": 8283,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8148,
- "id": 8284,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8148,
- "id": 8285,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8148,
- "id": 8286,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8148,
- "id": 8287,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8148,
- "id": 8288,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8148,
- "id": 8289,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8148,
- "id": 8290,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8148,
- "id": 8291,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8148,
- "id": 8292,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8148,
- "id": 8293,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8148,
- "id": 8294,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8148,
- "id": 8295,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8148,
- "id": 8296,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8149,
- "id": 8297,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8149,
- "id": 8298,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8149,
- "id": 8299,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8149,
- "id": 8300,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8149,
- "id": 8301,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8149,
- "id": 8302,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8149,
- "id": 8303,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8149,
- "id": 8304,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8149,
- "id": 8305,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8149,
- "id": 8306,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8149,
- "id": 8307,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8149,
- "id": 8308,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8149,
- "id": 8309,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8149,
- "id": 8310,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8149,
- "id": 8311,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8149,
- "id": 8312,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8150,
- "id": 8313,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8150,
- "id": 8314,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8150,
- "id": 8315,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8150,
- "id": 8316,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8150,
- "id": 8317,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8150,
- "id": 8318,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8150,
- "id": 8319,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8150,
- "id": 8320,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8150,
- "id": 8321,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8150,
- "id": 8322,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8150,
- "id": 8323,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8150,
- "id": 8324,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8150,
- "id": 8325,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8150,
- "id": 8326,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8150,
- "id": 8327,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8150,
- "id": 8328,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8151,
- "id": 8329,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8151,
- "id": 8330,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8151,
- "id": 8331,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8151,
- "id": 8332,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8151,
- "id": 8333,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8151,
- "id": 8334,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8151,
- "id": 8335,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8151,
- "id": 8336,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8151,
- "id": 8337,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8151,
- "id": 8338,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8151,
- "id": 8339,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8151,
- "id": 8340,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8151,
- "id": 8341,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8151,
- "id": 8342,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8151,
- "id": 8343,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8151,
- "id": 8344,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8152,
- "id": 8345,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8152,
- "id": 8346,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8152,
- "id": 8347,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8152,
- "id": 8348,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8152,
- "id": 8349,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8152,
- "id": 8350,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8152,
- "id": 8351,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8152,
- "id": 8352,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8152,
- "id": 8353,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8152,
- "id": 8354,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8152,
- "id": 8355,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8152,
- "id": 8356,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8152,
- "id": 8357,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8152,
- "id": 8358,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8152,
- "id": 8359,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8152,
- "id": 8360,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8153,
- "id": 8361,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8153,
- "id": 8362,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8153,
- "id": 8363,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8153,
- "id": 8364,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8153,
- "id": 8365,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8153,
- "id": 8366,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8153,
- "id": 8367,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8153,
- "id": 8368,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8153,
- "id": 8369,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8153,
- "id": 8370,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8153,
- "id": 8371,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8153,
- "id": 8372,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8153,
- "id": 8373,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8153,
- "id": 8374,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8153,
- "id": 8375,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8153,
- "id": 8376,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8154,
- "id": 8377,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8154,
- "id": 8378,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8154,
- "id": 8379,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8154,
- "id": 8380,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8154,
- "id": 8381,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8154,
- "id": 8382,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8154,
- "id": 8383,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8154,
- "id": 8384,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8154,
- "id": 8385,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8154,
- "id": 8386,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8154,
- "id": 8387,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8154,
- "id": 8388,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8154,
- "id": 8389,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8154,
- "id": 8390,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8154,
- "id": 8391,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8154,
- "id": 8392,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8155,
- "id": 8393,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8155,
- "id": 8394,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8155,
- "id": 8395,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8155,
- "id": 8396,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8155,
- "id": 8397,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8155,
- "id": 8398,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8155,
- "id": 8399,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8155,
- "id": 8400,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8155,
- "id": 8401,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8155,
- "id": 8402,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8155,
- "id": 8403,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8155,
- "id": 8404,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8155,
- "id": 8405,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8155,
- "id": 8406,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8155,
- "id": 8407,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8155,
- "id": 8408,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8156,
- "id": 8409,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8156,
- "id": 8410,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8156,
- "id": 8411,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8156,
- "id": 8412,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8156,
- "id": 8413,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8156,
- "id": 8414,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8156,
- "id": 8415,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8156,
- "id": 8416,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8156,
- "id": 8417,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8156,
- "id": 8418,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8156,
- "id": 8419,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8156,
- "id": 8420,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8156,
- "id": 8421,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8156,
- "id": 8422,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8156,
- "id": 8423,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8156,
- "id": 8424,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8157,
- "id": 8425,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8157,
- "id": 8426,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8157,
- "id": 8427,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8157,
- "id": 8428,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8157,
- "id": 8429,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8157,
- "id": 8430,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8157,
- "id": 8431,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8157,
- "id": 8432,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8157,
- "id": 8433,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8157,
- "id": 8434,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8157,
- "id": 8435,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8157,
- "id": 8436,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8157,
- "id": 8437,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8157,
- "id": 8438,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8157,
- "id": 8439,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8157,
- "id": 8440,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8158,
- "id": 8441,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8158,
- "id": 8442,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8158,
- "id": 8443,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8158,
- "id": 8444,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8158,
- "id": 8445,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8158,
- "id": 8446,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8158,
- "id": 8447,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8158,
- "id": 8448,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8158,
- "id": 8449,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8158,
- "id": 8450,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8158,
- "id": 8451,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8158,
- "id": 8452,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8158,
- "id": 8453,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8158,
- "id": 8454,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8158,
- "id": 8455,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8158,
- "id": 8456,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8159,
- "id": 8457,
- "width": 64,
- "height": 94
- },
- {
- "x": 64,
- "fileNum": 8159,
- "id": 8458,
- "width": 64,
- "height": 94
- },
- {
- "x": 128,
- "fileNum": 8159,
- "id": 8459,
- "width": 64,
- "height": 94
- },
- {
- "x": 192,
- "fileNum": 8159,
- "id": 8460,
- "width": 64,
- "height": 94
- },
- {
- "y": 94,
- "fileNum": 8159,
- "id": 8461,
- "width": 64,
- "height": 94
- },
- {
- "x": 64,
- "y": 94,
- "fileNum": 8159,
- "id": 8462,
- "width": 64,
- "height": 94
- },
- {
- "x": 128,
- "y": 94,
- "fileNum": 8159,
- "id": 8463,
- "width": 64,
- "height": 94
- },
- {
- "x": 192,
- "y": 94,
- "fileNum": 8159,
- "id": 8464,
- "width": 64,
- "height": 94
- },
- {
- "y": 188,
- "fileNum": 8159,
- "id": 8465,
- "width": 64,
- "height": 94
- },
- {
- "x": 64,
- "y": 188,
- "fileNum": 8159,
- "id": 8466,
- "width": 64,
- "height": 94
- },
- {
- "x": 128,
- "y": 188,
- "fileNum": 8159,
- "id": 8467,
- "width": 64,
- "height": 94
- },
- {
- "x": 192,
- "y": 188,
- "fileNum": 8159,
- "id": 8468,
- "width": 64,
- "height": 94
- },
- {
- "y": 282,
- "fileNum": 8159,
- "id": 8469,
- "width": 64,
- "height": 94
- },
- {
- "x": 64,
- "y": 282,
- "fileNum": 8159,
- "id": 8470,
- "width": 64,
- "height": 94
- },
- {
- "x": 128,
- "y": 282,
- "fileNum": 8159,
- "id": 8471,
- "width": 64,
- "height": 94
- },
- {
- "x": 192,
- "y": 282,
- "fileNum": 8159,
- "id": 8472,
- "width": 64,
- "height": 94
- },
- {
- "fileNum": 8160,
- "id": 8473,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8160,
- "id": 8474,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8160,
- "id": 8475,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8160,
- "id": 8476,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8160,
- "id": 8477,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8160,
- "id": 8478,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8160,
- "id": 8479,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8160,
- "id": 8480,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8160,
- "id": 8481,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8160,
- "id": 8482,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8160,
- "id": 8483,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8160,
- "id": 8484,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8160,
- "id": 8485,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8160,
- "id": 8486,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8160,
- "id": 8487,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8160,
- "id": 8488,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8161,
- "id": 8489,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8161,
- "id": 8490,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8161,
- "id": 8491,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8161,
- "id": 8492,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8161,
- "id": 8493,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8161,
- "id": 8494,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8161,
- "id": 8495,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8161,
- "id": 8496,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8161,
- "id": 8497,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8161,
- "id": 8498,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8161,
- "id": 8499,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8161,
- "id": 8500,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8161,
- "id": 8501,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8161,
- "id": 8502,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8161,
- "id": 8503,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8161,
- "id": 8504,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8162,
- "id": 8505,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8162,
- "id": 8506,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8162,
- "id": 8507,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8162,
- "id": 8508,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8162,
- "id": 8509,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8162,
- "id": 8510,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8162,
- "id": 8511,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8162,
- "id": 8512,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8162,
- "id": 8513,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8162,
- "id": 8514,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8162,
- "id": 8515,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8162,
- "id": 8516,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8162,
- "id": 8517,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8162,
- "id": 8518,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8162,
- "id": 8519,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8162,
- "id": 8520,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 4039,
- "id": 8521,
- "width": 114,
- "height": 96
- },
- {
- "x": 114,
- "fileNum": 4039,
- "id": 8522,
- "width": 114,
- "height": 96
- },
- {
- "x": 228,
- "fileNum": 4039,
- "id": 8523,
- "width": 114,
- "height": 96
- },
- {
- "x": 342,
- "fileNum": 4039,
- "id": 8524,
- "width": 114,
- "height": 96
- },
- {
- "x": 456,
- "fileNum": 4039,
- "id": 8525,
- "width": 114,
- "height": 96
- },
- {
- "x": 570,
- "fileNum": 4039,
- "id": 8526,
- "width": 114,
- "height": 96
- },
- {
- "x": 684,
- "fileNum": 4039,
- "id": 8527,
- "width": 114,
- "height": 96
- },
- {
- "y": 96,
- "fileNum": 4039,
- "id": 8528,
- "width": 114,
- "height": 96
- },
- {
- "x": 114,
- "y": 96,
- "fileNum": 4039,
- "id": 8529,
- "width": 114,
- "height": 96
- },
- {
- "x": 228,
- "y": 96,
- "fileNum": 4039,
- "id": 8530,
- "width": 114,
- "height": 96
- },
- {
- "x": 342,
- "y": 96,
- "fileNum": 4039,
- "id": 8531,
- "width": 114,
- "height": 96
- },
- {
- "x": 456,
- "y": 96,
- "fileNum": 4039,
- "id": 8532,
- "width": 114,
- "height": 96
- },
- {
- "x": 570,
- "y": 96,
- "fileNum": 4039,
- "id": 8533,
- "width": 114,
- "height": 96
- },
- {
- "x": 684,
- "y": 96,
- "fileNum": 4039,
- "id": 8534,
- "width": 114,
- "height": 96
- },
- {
- "y": 192,
- "fileNum": 4039,
- "id": 8535,
- "width": 114,
- "height": 96
- },
- {
- "x": 114,
- "y": 192,
- "fileNum": 4039,
- "id": 8536,
- "width": 114,
- "height": 96
- },
- {
- "x": 228,
- "y": 192,
- "fileNum": 4039,
- "id": 8537,
- "width": 114,
- "height": 96
- },
- {
- "x": 342,
- "y": 192,
- "fileNum": 4039,
- "id": 8538,
- "width": 114,
- "height": 96
- },
- {
- "x": 456,
- "y": 192,
- "fileNum": 4039,
- "id": 8539,
- "width": 114,
- "height": 96
- },
- {
- "x": 570,
- "y": 192,
- "fileNum": 4039,
- "id": 8540,
- "width": 114,
- "height": 96
- },
- {
- "x": 684,
- "y": 192,
- "fileNum": 4039,
- "id": 8541,
- "width": 114,
- "height": 96
- },
- {
- "y": 288,
- "fileNum": 4039,
- "id": 8542,
- "width": 114,
- "height": 96
- },
- {
- "x": 114,
- "y": 288,
- "fileNum": 4039,
- "id": 8543,
- "width": 114,
- "height": 96
- },
- {
- "x": 228,
- "y": 288,
- "fileNum": 4039,
- "id": 8544,
- "width": 114,
- "height": 96
- },
- {
- "x": 342,
- "y": 288,
- "fileNum": 4039,
- "id": 8545,
- "width": 114,
- "height": 96
- },
- {
- "x": 456,
- "y": 288,
- "fileNum": 4039,
- "id": 8546,
- "width": 114,
- "height": 96
- },
- {
- "x": 570,
- "y": 288,
- "fileNum": 4039,
- "id": 8547,
- "width": 114,
- "height": 96
- },
- {
- "x": 684,
- "y": 288,
- "fileNum": 4039,
- "id": 8548,
- "width": 114,
- "height": 96
- },
- {
- "fileNum": 4051,
- "id": 8556,
- "width": 178,
- "height": 120
- },
- {
- "x": 178,
- "fileNum": 4051,
- "id": 8557,
- "width": 178,
- "height": 120
- },
- {
- "x": 356,
- "fileNum": 4051,
- "id": 8558,
- "width": 178,
- "height": 120
- },
- {
- "x": 534,
- "fileNum": 4051,
- "id": 8559,
- "width": 178,
- "height": 120
- },
- {
- "x": 712,
- "fileNum": 4051,
- "id": 8560,
- "width": 178,
- "height": 120
- },
- {
- "y": 120,
- "fileNum": 4051,
- "id": 8562,
- "width": 178,
- "height": 120
- },
- {
- "x": 178,
- "y": 120,
- "fileNum": 4051,
- "id": 8563,
- "width": 178,
- "height": 120
- },
- {
- "x": 356,
- "y": 120,
- "fileNum": 4051,
- "id": 8564,
- "width": 178,
- "height": 120
- },
- {
- "x": 534,
- "y": 120,
- "fileNum": 4051,
- "id": 8565,
- "width": 178,
- "height": 120
- },
- {
- "x": 712,
- "y": 120,
- "fileNum": 4051,
- "id": 8566,
- "width": 178,
- "height": 120
- },
- {
- "y": 240,
- "fileNum": 4051,
- "id": 8568,
- "width": 178,
- "height": 120
- },
- {
- "x": 178,
- "y": 240,
- "fileNum": 4051,
- "id": 8569,
- "width": 178,
- "height": 120
- },
- {
- "x": 356,
- "y": 240,
- "fileNum": 4051,
- "id": 8570,
- "width": 178,
- "height": 120
- },
- {
- "x": 534,
- "y": 240,
- "fileNum": 4051,
- "id": 8571,
- "width": 178,
- "height": 120
- },
- {
- "x": 712,
- "y": 240,
- "fileNum": 4051,
- "id": 8572,
- "width": 178,
- "height": 120
- },
- {
- "y": 360,
- "fileNum": 4051,
- "id": 8574,
- "width": 178,
- "height": 120
- },
- {
- "x": 178,
- "y": 360,
- "fileNum": 4051,
- "id": 8575,
- "width": 178,
- "height": 120
- },
- {
- "x": 356,
- "y": 360,
- "fileNum": 4051,
- "id": 8576,
- "width": 178,
- "height": 120
- },
- {
- "x": 534,
- "y": 360,
- "fileNum": 4051,
- "id": 8577,
- "width": 178,
- "height": 120
- },
- {
- "x": 712,
- "y": 360,
- "fileNum": 4051,
- "id": 8578,
- "width": 178,
- "height": 120
- },
- {
- "fileNum": 4052,
- "id": 8583,
- "width": 100,
- "height": 100
- },
- {
- "x": 100,
- "fileNum": 4052,
- "id": 8584,
- "width": 100,
- "height": 100
- },
- {
- "x": 200,
- "fileNum": 4052,
- "id": 8585,
- "width": 100,
- "height": 100
- },
- {
- "y": 100,
- "fileNum": 4052,
- "id": 8587,
- "width": 100,
- "height": 100
- },
- {
- "x": 100,
- "y": 100,
- "fileNum": 4052,
- "id": 8588,
- "width": 100,
- "height": 100
- },
- {
- "x": 200,
- "y": 100,
- "fileNum": 4052,
- "id": 8589,
- "width": 100,
- "height": 100
- },
- {
- "y": 200,
- "fileNum": 4052,
- "id": 8591,
- "width": 100,
- "height": 100
- },
- {
- "x": 100,
- "y": 200,
- "fileNum": 4052,
- "id": 8592,
- "width": 100,
- "height": 100
- },
- {
- "x": 200,
- "y": 200,
- "fileNum": 4052,
- "id": 8593,
- "width": 100,
- "height": 100
- },
- {
- "y": 300,
- "fileNum": 4052,
- "id": 8595,
- "width": 100,
- "height": 100
- },
- {
- "x": 100,
- "y": 300,
- "fileNum": 4052,
- "id": 8596,
- "width": 100,
- "height": 100
- },
- {
- "x": 200,
- "y": 300,
- "fileNum": 4052,
- "id": 8597,
- "width": 100,
- "height": 100
- },
- {
- "fileNum": 2170,
- "id": 8602,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2170,
- "id": 8603,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2170,
- "id": 8604,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2170,
- "id": 8605,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 15181,
- "id": 8608,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 15181,
- "id": 8609,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 15181,
- "id": 8610,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 15181,
- "id": 8611,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15183,
- "id": 8612,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 15183,
- "id": 8613,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 15183,
- "id": 8614,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 15183,
- "id": 8615,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15182,
- "id": 8616,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 15182,
- "id": 8617,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 15182,
- "id": 8618,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 15182,
- "id": 8619,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11036,
- "id": 8620,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 11036,
- "id": 8621,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 11036,
- "id": 8622,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 11036,
- "id": 8623,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 11036,
- "id": 8624,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 11036,
- "id": 8625,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 11036,
- "id": 8626,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 11036,
- "id": 8627,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 11036,
- "id": 8628,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12080,
- "id": 8629,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12080,
- "id": 8630,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12080,
- "id": 8631,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12080,
- "id": 8632,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12081,
- "id": 8633,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12081,
- "id": 8634,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12081,
- "id": 8635,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12081,
- "id": 8636,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11038,
- "id": 8637,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11039,
- "id": 8638,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 11039,
- "id": 8639,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 11039,
- "id": 8640,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 11039,
- "id": 8641,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 11039,
- "id": 8642,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 11039,
- "id": 8643,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 11039,
- "id": 8644,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 11039,
- "id": 8645,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 11039,
- "id": 8646,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11040,
- "id": 8647,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 11040,
- "id": 8648,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 11040,
- "id": 8649,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 11040,
- "id": 8650,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 11040,
- "id": 8651,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 11040,
- "id": 8652,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 11040,
- "id": 8653,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 11040,
- "id": 8654,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 11040,
- "id": 8655,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11041,
- "id": 8656,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 11041,
- "id": 8657,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 11041,
- "id": 8658,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 11041,
- "id": 8659,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 11041,
- "id": 8660,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 11041,
- "id": 8661,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 11041,
- "id": 8662,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 11041,
- "id": 8663,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 11041,
- "id": 8664,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11042,
- "id": 8665,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 11042,
- "id": 8666,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 11042,
- "id": 8667,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 11042,
- "id": 8668,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 11042,
- "id": 8669,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 11042,
- "id": 8670,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 11042,
- "id": 8671,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 11042,
- "id": 8672,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 11042,
- "id": 8673,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11043,
- "id": 8674,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 11043,
- "id": 8675,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 11043,
- "id": 8676,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 11043,
- "id": 8677,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 11043,
- "id": 8678,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 11043,
- "id": 8679,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 11043,
- "id": 8680,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 11043,
- "id": 8681,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 11043,
- "id": 8682,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11037,
- "id": 8684,
- "width": 192,
- "height": 192
- },
- {
- "x": 192,
- "fileNum": 11037,
- "id": 8685,
- "width": 192,
- "height": 192
- },
- {
- "fileNum": 12040,
- "id": 8686,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12040,
- "id": 8687,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12040,
- "id": 8688,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12040,
- "id": 8689,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12040,
- "id": 8690,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12040,
- "id": 8691,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12040,
- "id": 8692,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12040,
- "id": 8693,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12040,
- "id": 8694,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12040,
- "id": 8695,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12040,
- "id": 8696,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12040,
- "id": 8697,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12040,
- "id": 8698,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12040,
- "id": 8699,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12040,
- "id": 8700,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12040,
- "id": 8701,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12040,
- "id": 8702,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12040,
- "id": 8703,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12040,
- "id": 8704,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12040,
- "id": 8705,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12040,
- "id": 8706,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12040,
- "id": 8707,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12040,
- "id": 8708,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12040,
- "id": 8709,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12040,
- "id": 8710,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12040,
- "id": 8711,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12040,
- "id": 8712,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12040,
- "id": 8713,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12040,
- "id": 8714,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12040,
- "id": 8715,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12040,
- "id": 8716,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12040,
- "id": 8717,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "fileNum": 12040,
- "id": 8718,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "fileNum": 12040,
- "id": 8719,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 64,
- "fileNum": 12040,
- "id": 8720,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 64,
- "fileNum": 12040,
- "id": 8721,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "fileNum": 12040,
- "id": 8722,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "fileNum": 12040,
- "id": 8723,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 64,
- "fileNum": 12040,
- "id": 8724,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 64,
- "fileNum": 12040,
- "id": 8725,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12040,
- "id": 8726,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12040,
- "id": 8727,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12040,
- "id": 8728,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12040,
- "id": 8729,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12040,
- "id": 8730,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12040,
- "id": 8731,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12040,
- "id": 8732,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12040,
- "id": 8733,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12040,
- "id": 8734,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12040,
- "id": 8735,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12040,
- "id": 8736,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12040,
- "id": 8737,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12040,
- "id": 8738,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12040,
- "id": 8739,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12040,
- "id": 8740,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12040,
- "id": 8741,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12040,
- "id": 8742,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12040,
- "id": 8743,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12040,
- "id": 8744,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12040,
- "id": 8745,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12040,
- "id": 8746,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12040,
- "id": 8747,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12040,
- "id": 8748,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12040,
- "id": 8749,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12040,
- "id": 8750,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12040,
- "id": 8751,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12040,
- "id": 8752,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12040,
- "id": 8753,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12040,
- "id": 8754,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12040,
- "id": 8755,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12040,
- "id": 8756,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12040,
- "id": 8757,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 128,
- "fileNum": 12040,
- "id": 8758,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 128,
- "fileNum": 12040,
- "id": 8759,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 192,
- "fileNum": 12040,
- "id": 8760,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 192,
- "fileNum": 12040,
- "id": 8761,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 128,
- "fileNum": 12040,
- "id": 8762,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 128,
- "fileNum": 12040,
- "id": 8763,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 192,
- "fileNum": 12040,
- "id": 8764,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 192,
- "fileNum": 12040,
- "id": 8765,
- "width": 64,
- "height": 64
- },
- {
- "y": 256,
- "fileNum": 12040,
- "id": 8766,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 256,
- "fileNum": 12040,
- "id": 8767,
- "width": 64,
- "height": 64
- },
- {
- "y": 320,
- "fileNum": 12040,
- "id": 8768,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 320,
- "fileNum": 12040,
- "id": 8769,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 256,
- "fileNum": 12040,
- "id": 8770,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 256,
- "fileNum": 12040,
- "id": 8771,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 320,
- "fileNum": 12040,
- "id": 8772,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 320,
- "fileNum": 12040,
- "id": 8773,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 256,
- "fileNum": 12040,
- "id": 8774,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 256,
- "fileNum": 12040,
- "id": 8775,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 320,
- "fileNum": 12040,
- "id": 8776,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 320,
- "fileNum": 12040,
- "id": 8777,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 256,
- "fileNum": 12040,
- "id": 8778,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 256,
- "fileNum": 12040,
- "id": 8779,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 320,
- "fileNum": 12040,
- "id": 8780,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 320,
- "fileNum": 12040,
- "id": 8781,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 256,
- "fileNum": 12040,
- "id": 8782,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 256,
- "fileNum": 12040,
- "id": 8783,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 320,
- "fileNum": 12040,
- "id": 8784,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 320,
- "fileNum": 12040,
- "id": 8785,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 256,
- "fileNum": 12040,
- "id": 8786,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 256,
- "fileNum": 12040,
- "id": 8787,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 320,
- "fileNum": 12040,
- "id": 8788,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 320,
- "fileNum": 12040,
- "id": 8789,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 256,
- "fileNum": 12040,
- "id": 8790,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 256,
- "fileNum": 12040,
- "id": 8791,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 320,
- "fileNum": 12040,
- "id": 8792,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 320,
- "fileNum": 12040,
- "id": 8793,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 256,
- "fileNum": 12040,
- "id": 8794,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 256,
- "fileNum": 12040,
- "id": 8795,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 320,
- "fileNum": 12040,
- "id": 8796,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 320,
- "fileNum": 12040,
- "id": 8797,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 256,
- "fileNum": 12040,
- "id": 8798,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 256,
- "fileNum": 12040,
- "id": 8799,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 320,
- "fileNum": 12040,
- "id": 8800,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 320,
- "fileNum": 12040,
- "id": 8801,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 256,
- "fileNum": 12040,
- "id": 8802,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 256,
- "fileNum": 12040,
- "id": 8803,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 320,
- "fileNum": 12040,
- "id": 8804,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 320,
- "fileNum": 12040,
- "id": 8805,
- "width": 64,
- "height": 64
- },
- {
- "y": 384,
- "fileNum": 12040,
- "id": 8806,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 384,
- "fileNum": 12040,
- "id": 8807,
- "width": 64,
- "height": 64
- },
- {
- "y": 448,
- "fileNum": 12040,
- "id": 8808,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 448,
- "fileNum": 12040,
- "id": 8809,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 384,
- "fileNum": 12040,
- "id": 8810,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 384,
- "fileNum": 12040,
- "id": 8811,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 448,
- "fileNum": 12040,
- "id": 8812,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 448,
- "fileNum": 12040,
- "id": 8813,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 384,
- "fileNum": 12040,
- "id": 8814,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 384,
- "fileNum": 12040,
- "id": 8815,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 448,
- "fileNum": 12040,
- "id": 8816,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 448,
- "fileNum": 12040,
- "id": 8817,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 384,
- "fileNum": 12040,
- "id": 8818,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 384,
- "fileNum": 12040,
- "id": 8819,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 448,
- "fileNum": 12040,
- "id": 8820,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 448,
- "fileNum": 12040,
- "id": 8821,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 384,
- "fileNum": 12040,
- "id": 8822,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 384,
- "fileNum": 12040,
- "id": 8823,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 448,
- "fileNum": 12040,
- "id": 8824,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 448,
- "fileNum": 12040,
- "id": 8825,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 384,
- "fileNum": 12040,
- "id": 8826,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 384,
- "fileNum": 12040,
- "id": 8827,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 448,
- "fileNum": 12040,
- "id": 8828,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 448,
- "fileNum": 12040,
- "id": 8829,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 384,
- "fileNum": 12040,
- "id": 8830,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 384,
- "fileNum": 12040,
- "id": 8831,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 448,
- "fileNum": 12040,
- "id": 8832,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 448,
- "fileNum": 12040,
- "id": 8833,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 384,
- "fileNum": 12040,
- "id": 8834,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 384,
- "fileNum": 12040,
- "id": 8835,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 448,
- "fileNum": 12040,
- "id": 8836,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 448,
- "fileNum": 12040,
- "id": 8837,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 384,
- "fileNum": 12040,
- "id": 8838,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 384,
- "fileNum": 12040,
- "id": 8839,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 448,
- "fileNum": 12040,
- "id": 8840,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 448,
- "fileNum": 12040,
- "id": 8841,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 384,
- "fileNum": 12040,
- "id": 8842,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 384,
- "fileNum": 12040,
- "id": 8843,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 448,
- "fileNum": 12040,
- "id": 8844,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 448,
- "fileNum": 12040,
- "id": 8845,
- "width": 64,
- "height": 64
- },
- {
- "y": 512,
- "fileNum": 12040,
- "id": 8846,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 512,
- "fileNum": 12040,
- "id": 8847,
- "width": 64,
- "height": 64
- },
- {
- "y": 576,
- "fileNum": 12040,
- "id": 8848,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 576,
- "fileNum": 12040,
- "id": 8849,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 512,
- "fileNum": 12040,
- "id": 8850,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 512,
- "fileNum": 12040,
- "id": 8851,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 576,
- "fileNum": 12040,
- "id": 8852,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 576,
- "fileNum": 12040,
- "id": 8853,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 512,
- "fileNum": 12040,
- "id": 8854,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 512,
- "fileNum": 12040,
- "id": 8855,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 576,
- "fileNum": 12040,
- "id": 8856,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 576,
- "fileNum": 12040,
- "id": 8857,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 512,
- "fileNum": 12040,
- "id": 8858,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 512,
- "fileNum": 12040,
- "id": 8859,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 576,
- "fileNum": 12040,
- "id": 8860,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 576,
- "fileNum": 12040,
- "id": 8861,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 512,
- "fileNum": 12040,
- "id": 8862,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 512,
- "fileNum": 12040,
- "id": 8863,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 576,
- "fileNum": 12040,
- "id": 8864,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 576,
- "fileNum": 12040,
- "id": 8865,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 512,
- "fileNum": 12040,
- "id": 8866,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 512,
- "fileNum": 12040,
- "id": 8867,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 576,
- "fileNum": 12040,
- "id": 8868,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 576,
- "fileNum": 12040,
- "id": 8869,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 512,
- "fileNum": 12040,
- "id": 8870,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 512,
- "fileNum": 12040,
- "id": 8871,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 576,
- "fileNum": 12040,
- "id": 8872,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 576,
- "fileNum": 12040,
- "id": 8873,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 512,
- "fileNum": 12040,
- "id": 8874,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 512,
- "fileNum": 12040,
- "id": 8875,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 576,
- "fileNum": 12040,
- "id": 8876,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 576,
- "fileNum": 12040,
- "id": 8877,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 512,
- "fileNum": 12040,
- "id": 8878,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 512,
- "fileNum": 12040,
- "id": 8879,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 576,
- "fileNum": 12040,
- "id": 8880,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 576,
- "fileNum": 12040,
- "id": 8881,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 512,
- "fileNum": 12040,
- "id": 8882,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 512,
- "fileNum": 12040,
- "id": 8883,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 576,
- "fileNum": 12040,
- "id": 8884,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 576,
- "fileNum": 12040,
- "id": 8885,
- "width": 64,
- "height": 64
- },
- {
- "y": 640,
- "fileNum": 12040,
- "id": 8886,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 640,
- "fileNum": 12040,
- "id": 8887,
- "width": 64,
- "height": 64
- },
- {
- "y": 704,
- "fileNum": 12040,
- "id": 8888,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 704,
- "fileNum": 12040,
- "id": 8889,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 640,
- "fileNum": 12040,
- "id": 8890,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 640,
- "fileNum": 12040,
- "id": 8891,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 704,
- "fileNum": 12040,
- "id": 8892,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 704,
- "fileNum": 12040,
- "id": 8893,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 640,
- "fileNum": 12040,
- "id": 8894,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 640,
- "fileNum": 12040,
- "id": 8895,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 704,
- "fileNum": 12040,
- "id": 8896,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 704,
- "fileNum": 12040,
- "id": 8897,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 640,
- "fileNum": 12040,
- "id": 8898,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 640,
- "fileNum": 12040,
- "id": 8899,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 704,
- "fileNum": 12040,
- "id": 8900,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 704,
- "fileNum": 12040,
- "id": 8901,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 640,
- "fileNum": 12040,
- "id": 8902,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 640,
- "fileNum": 12040,
- "id": 8903,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 704,
- "fileNum": 12040,
- "id": 8904,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 704,
- "fileNum": 12040,
- "id": 8905,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 640,
- "fileNum": 12040,
- "id": 8906,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 640,
- "fileNum": 12040,
- "id": 8907,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 704,
- "fileNum": 12040,
- "id": 8908,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 704,
- "fileNum": 12040,
- "id": 8909,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 640,
- "fileNum": 12040,
- "id": 8910,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 640,
- "fileNum": 12040,
- "id": 8911,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 704,
- "fileNum": 12040,
- "id": 8912,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 704,
- "fileNum": 12040,
- "id": 8913,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 640,
- "fileNum": 12040,
- "id": 8914,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 640,
- "fileNum": 12040,
- "id": 8915,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 704,
- "fileNum": 12040,
- "id": 8916,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 704,
- "fileNum": 12040,
- "id": 8917,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 640,
- "fileNum": 12040,
- "id": 8918,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 640,
- "fileNum": 12040,
- "id": 8919,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 704,
- "fileNum": 12040,
- "id": 8920,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 704,
- "fileNum": 12040,
- "id": 8921,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 640,
- "fileNum": 12040,
- "id": 8922,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 640,
- "fileNum": 12040,
- "id": 8923,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 704,
- "fileNum": 12040,
- "id": 8924,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 704,
- "fileNum": 12040,
- "id": 8925,
- "width": 64,
- "height": 64
- },
- {
- "y": 768,
- "fileNum": 12040,
- "id": 8926,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 768,
- "fileNum": 12040,
- "id": 8927,
- "width": 64,
- "height": 64
- },
- {
- "y": 832,
- "fileNum": 12040,
- "id": 8928,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 832,
- "fileNum": 12040,
- "id": 8929,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 768,
- "fileNum": 12040,
- "id": 8930,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 768,
- "fileNum": 12040,
- "id": 8931,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 832,
- "fileNum": 12040,
- "id": 8932,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 832,
- "fileNum": 12040,
- "id": 8933,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 768,
- "fileNum": 12040,
- "id": 8934,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 768,
- "fileNum": 12040,
- "id": 8935,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 832,
- "fileNum": 12040,
- "id": 8936,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 832,
- "fileNum": 12040,
- "id": 8937,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 768,
- "fileNum": 12040,
- "id": 8938,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 768,
- "fileNum": 12040,
- "id": 8939,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 832,
- "fileNum": 12040,
- "id": 8940,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 832,
- "fileNum": 12040,
- "id": 8941,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 768,
- "fileNum": 12040,
- "id": 8942,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 768,
- "fileNum": 12040,
- "id": 8943,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 832,
- "fileNum": 12040,
- "id": 8944,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 832,
- "fileNum": 12040,
- "id": 8945,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 768,
- "fileNum": 12040,
- "id": 8946,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 768,
- "fileNum": 12040,
- "id": 8947,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 832,
- "fileNum": 12040,
- "id": 8948,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 832,
- "fileNum": 12040,
- "id": 8949,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 768,
- "fileNum": 12040,
- "id": 8950,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 768,
- "fileNum": 12040,
- "id": 8951,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 832,
- "fileNum": 12040,
- "id": 8952,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 832,
- "fileNum": 12040,
- "id": 8953,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 768,
- "fileNum": 12040,
- "id": 8954,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 768,
- "fileNum": 12040,
- "id": 8955,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 832,
- "fileNum": 12040,
- "id": 8956,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 832,
- "fileNum": 12040,
- "id": 8957,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 768,
- "fileNum": 12040,
- "id": 8958,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 768,
- "fileNum": 12040,
- "id": 8959,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 832,
- "fileNum": 12040,
- "id": 8960,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 832,
- "fileNum": 12040,
- "id": 8961,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 768,
- "fileNum": 12040,
- "id": 8962,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 768,
- "fileNum": 12040,
- "id": 8963,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 832,
- "fileNum": 12040,
- "id": 8964,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 832,
- "fileNum": 12040,
- "id": 8965,
- "width": 64,
- "height": 64
- },
- {
- "y": 896,
- "fileNum": 12040,
- "id": 8966,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 896,
- "fileNum": 12040,
- "id": 8967,
- "width": 64,
- "height": 64
- },
- {
- "y": 960,
- "fileNum": 12040,
- "id": 8968,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 960,
- "fileNum": 12040,
- "id": 8969,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 896,
- "fileNum": 12040,
- "id": 8970,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 896,
- "fileNum": 12040,
- "id": 8971,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 960,
- "fileNum": 12040,
- "id": 8972,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 960,
- "fileNum": 12040,
- "id": 8973,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 896,
- "fileNum": 12040,
- "id": 8974,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 896,
- "fileNum": 12040,
- "id": 8975,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 960,
- "fileNum": 12040,
- "id": 8976,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 960,
- "fileNum": 12040,
- "id": 8977,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 896,
- "fileNum": 12040,
- "id": 8978,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 896,
- "fileNum": 12040,
- "id": 8979,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 960,
- "fileNum": 12040,
- "id": 8980,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 960,
- "fileNum": 12040,
- "id": 8981,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 896,
- "fileNum": 12040,
- "id": 8982,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 896,
- "fileNum": 12040,
- "id": 8983,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 960,
- "fileNum": 12040,
- "id": 8984,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 960,
- "fileNum": 12040,
- "id": 8985,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 896,
- "fileNum": 12040,
- "id": 8986,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 896,
- "fileNum": 12040,
- "id": 8987,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 960,
- "fileNum": 12040,
- "id": 8988,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 960,
- "fileNum": 12040,
- "id": 8989,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 896,
- "fileNum": 12040,
- "id": 8990,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 896,
- "fileNum": 12040,
- "id": 8991,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 960,
- "fileNum": 12040,
- "id": 8992,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 960,
- "fileNum": 12040,
- "id": 8993,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 896,
- "fileNum": 12040,
- "id": 8994,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 896,
- "fileNum": 12040,
- "id": 8995,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 960,
- "fileNum": 12040,
- "id": 8996,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 960,
- "fileNum": 12040,
- "id": 8997,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 896,
- "fileNum": 12040,
- "id": 8998,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 896,
- "fileNum": 12040,
- "id": 8999,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 960,
- "fileNum": 12040,
- "id": 9000,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 960,
- "fileNum": 12040,
- "id": 9001,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 896,
- "fileNum": 12040,
- "id": 9002,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 896,
- "fileNum": 12040,
- "id": 9003,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 960,
- "fileNum": 12040,
- "id": 9004,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 960,
- "fileNum": 12040,
- "id": 9005,
- "width": 64,
- "height": 64
- },
- {
- "y": 1024,
- "fileNum": 12040,
- "id": 9006,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 1024,
- "fileNum": 12040,
- "id": 9007,
- "width": 64,
- "height": 64
- },
- {
- "y": 1088,
- "fileNum": 12040,
- "id": 9008,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 1088,
- "fileNum": 12040,
- "id": 9009,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 1024,
- "fileNum": 12040,
- "id": 9010,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 1024,
- "fileNum": 12040,
- "id": 9011,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 1088,
- "fileNum": 12040,
- "id": 9012,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 1088,
- "fileNum": 12040,
- "id": 9013,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 1024,
- "fileNum": 12040,
- "id": 9014,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 1024,
- "fileNum": 12040,
- "id": 9015,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 1088,
- "fileNum": 12040,
- "id": 9016,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 1088,
- "fileNum": 12040,
- "id": 9017,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 1024,
- "fileNum": 12040,
- "id": 9018,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 1024,
- "fileNum": 12040,
- "id": 9019,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 1088,
- "fileNum": 12040,
- "id": 9020,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 1088,
- "fileNum": 12040,
- "id": 9021,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 1024,
- "fileNum": 12040,
- "id": 9022,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 1024,
- "fileNum": 12040,
- "id": 9023,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 1088,
- "fileNum": 12040,
- "id": 9024,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 1088,
- "fileNum": 12040,
- "id": 9025,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 1024,
- "fileNum": 12040,
- "id": 9026,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 1024,
- "fileNum": 12040,
- "id": 9027,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 1088,
- "fileNum": 12040,
- "id": 9028,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 1088,
- "fileNum": 12040,
- "id": 9029,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 1024,
- "fileNum": 12040,
- "id": 9030,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 1024,
- "fileNum": 12040,
- "id": 9031,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 1088,
- "fileNum": 12040,
- "id": 9032,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 1088,
- "fileNum": 12040,
- "id": 9033,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 1024,
- "fileNum": 12040,
- "id": 9034,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 1024,
- "fileNum": 12040,
- "id": 9035,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 1088,
- "fileNum": 12040,
- "id": 9036,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 1088,
- "fileNum": 12040,
- "id": 9037,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 1024,
- "fileNum": 12040,
- "id": 9038,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 1024,
- "fileNum": 12040,
- "id": 9039,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 1088,
- "fileNum": 12040,
- "id": 9040,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 1088,
- "fileNum": 12040,
- "id": 9041,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 1024,
- "fileNum": 12040,
- "id": 9042,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 1024,
- "fileNum": 12040,
- "id": 9043,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 1088,
- "fileNum": 12040,
- "id": 9044,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 1088,
- "fileNum": 12040,
- "id": 9045,
- "width": 64,
- "height": 64
- },
- {
- "y": 1152,
- "fileNum": 12040,
- "id": 9046,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 1152,
- "fileNum": 12040,
- "id": 9047,
- "width": 64,
- "height": 64
- },
- {
- "y": 1216,
- "fileNum": 12040,
- "id": 9048,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 1216,
- "fileNum": 12040,
- "id": 9049,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 1152,
- "fileNum": 12040,
- "id": 9050,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 1152,
- "fileNum": 12040,
- "id": 9051,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 1216,
- "fileNum": 12040,
- "id": 9052,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 1216,
- "fileNum": 12040,
- "id": 9053,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 1152,
- "fileNum": 12040,
- "id": 9054,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 1152,
- "fileNum": 12040,
- "id": 9055,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 1216,
- "fileNum": 12040,
- "id": 9056,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 1216,
- "fileNum": 12040,
- "id": 9057,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 1152,
- "fileNum": 12040,
- "id": 9058,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 1152,
- "fileNum": 12040,
- "id": 9059,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 1216,
- "fileNum": 12040,
- "id": 9060,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 1216,
- "fileNum": 12040,
- "id": 9061,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 1152,
- "fileNum": 12040,
- "id": 9062,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 1152,
- "fileNum": 12040,
- "id": 9063,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 1216,
- "fileNum": 12040,
- "id": 9064,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 1216,
- "fileNum": 12040,
- "id": 9065,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 1152,
- "fileNum": 12040,
- "id": 9066,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 1152,
- "fileNum": 12040,
- "id": 9067,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 1216,
- "fileNum": 12040,
- "id": 9068,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 1216,
- "fileNum": 12040,
- "id": 9069,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 1152,
- "fileNum": 12040,
- "id": 9070,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 1152,
- "fileNum": 12040,
- "id": 9071,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 1216,
- "fileNum": 12040,
- "id": 9072,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 1216,
- "fileNum": 12040,
- "id": 9073,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 1152,
- "fileNum": 12040,
- "id": 9074,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 1152,
- "fileNum": 12040,
- "id": 9075,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 1216,
- "fileNum": 12040,
- "id": 9076,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 1216,
- "fileNum": 12040,
- "id": 9077,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 1152,
- "fileNum": 12040,
- "id": 9078,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 1152,
- "fileNum": 12040,
- "id": 9079,
- "width": 64,
- "height": 64
- },
- {
- "x": 1024,
- "y": 1216,
- "fileNum": 12040,
- "id": 9080,
- "width": 64,
- "height": 64
- },
- {
- "x": 1088,
- "y": 1216,
- "fileNum": 12040,
- "id": 9081,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 1152,
- "fileNum": 12040,
- "id": 9082,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 1152,
- "fileNum": 12040,
- "id": 9083,
- "width": 64,
- "height": 64
- },
- {
- "x": 1152,
- "y": 1216,
- "fileNum": 12040,
- "id": 9084,
- "width": 64,
- "height": 64
- },
- {
- "x": 1216,
- "y": 1216,
- "fileNum": 12040,
- "id": 9085,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11044,
- "id": 9087,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 11044,
- "id": 9088,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 11044,
- "id": 9089,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 11044,
- "id": 9090,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 11044,
- "id": 9091,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 11044,
- "id": 9092,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 11044,
- "id": 9093,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 11044,
- "id": 9094,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 11044,
- "id": 9095,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 11044,
- "id": 9096,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 11044,
- "id": 9097,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 11044,
- "id": 9098,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 11044,
- "id": 9099,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 11044,
- "id": 9100,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 11044,
- "id": 9101,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 11044,
- "id": 9102,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 11044,
- "id": 9103,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 11044,
- "id": 9104,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 11044,
- "id": 9105,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 11044,
- "id": 9106,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 11044,
- "id": 9107,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 11044,
- "id": 9108,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 11044,
- "id": 9109,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 11044,
- "id": 9110,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 11044,
- "id": 9111,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 11044,
- "id": 9112,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 11044,
- "id": 9113,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 11044,
- "id": 9114,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 11044,
- "id": 9115,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 11044,
- "id": 9116,
- "width": 64,
- "height": 64
- },
- {
- "y": 256,
- "fileNum": 11044,
- "id": 9117,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 256,
- "fileNum": 11044,
- "id": 9118,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 256,
- "fileNum": 11044,
- "id": 9119,
- "width": 64,
- "height": 64
- },
- {
- "y": 320,
- "fileNum": 11044,
- "id": 9120,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 320,
- "fileNum": 11044,
- "id": 9121,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 320,
- "fileNum": 11044,
- "id": 9122,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 11044,
- "id": 9123,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 11044,
- "id": 9124,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 11044,
- "id": 9125,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 256,
- "fileNum": 11044,
- "id": 9126,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 256,
- "fileNum": 11044,
- "id": 9127,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 256,
- "fileNum": 11044,
- "id": 9128,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 320,
- "fileNum": 11044,
- "id": 9129,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 320,
- "fileNum": 11044,
- "id": 9130,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 320,
- "fileNum": 11044,
- "id": 9131,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 11044,
- "id": 9132,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 11044,
- "id": 9133,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 11044,
- "id": 9134,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 256,
- "fileNum": 11044,
- "id": 9135,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 256,
- "fileNum": 11044,
- "id": 9136,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 256,
- "fileNum": 11044,
- "id": 9137,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 320,
- "fileNum": 11044,
- "id": 9138,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 320,
- "fileNum": 11044,
- "id": 9139,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 320,
- "fileNum": 11044,
- "id": 9140,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 14036,
- "id": 9141,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 14036,
- "id": 9142,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 14036,
- "id": 9143,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 14036,
- "id": 9144,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 14036,
- "id": 9145,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 14036,
- "id": 9146,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 14036,
- "id": 9147,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 14036,
- "id": 9148,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 14036,
- "id": 9149,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 14036,
- "id": 9150,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 14036,
- "id": 9151,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 14036,
- "id": 9152,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 14036,
- "id": 9153,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 14036,
- "id": 9154,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 14036,
- "id": 9155,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 14036,
- "id": 9156,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 14037,
- "id": 9157,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 14037,
- "id": 9158,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 14037,
- "id": 9159,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 14037,
- "id": 9160,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 14037,
- "id": 9161,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 14037,
- "id": 9162,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 14037,
- "id": 9163,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 14037,
- "id": 9164,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 14037,
- "id": 9165,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 14037,
- "id": 9166,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 14037,
- "id": 9167,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 14037,
- "id": 9168,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 14037,
- "id": 9169,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 14037,
- "id": 9170,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 14037,
- "id": 9171,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 14037,
- "id": 9172,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 14038,
- "id": 9173,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 14038,
- "id": 9174,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 14038,
- "id": 9175,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 14038,
- "id": 9176,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 14038,
- "id": 9177,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 14038,
- "id": 9178,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 14038,
- "id": 9179,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 14038,
- "id": 9180,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 14038,
- "id": 9181,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 14038,
- "id": 9182,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 14038,
- "id": 9183,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 14038,
- "id": 9184,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 14038,
- "id": 9185,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 14038,
- "id": 9186,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 14038,
- "id": 9187,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 14038,
- "id": 9188,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 14039,
- "id": 9189,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 14039,
- "id": 9190,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 14039,
- "id": 9191,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 14039,
- "id": 9192,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11045,
- "id": 9193,
- "width": 192,
- "height": 192
- },
- {
- "x": 192,
- "fileNum": 11045,
- "id": 9194,
- "width": 192,
- "height": 192
- },
- {
- "x": 384,
- "fileNum": 11045,
- "id": 9195,
- "width": 192,
- "height": 192
- },
- {
- "y": 192,
- "fileNum": 11045,
- "id": 9196,
- "width": 192,
- "height": 192
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 11045,
- "id": 9197,
- "width": 192,
- "height": 192
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 11045,
- "id": 9198,
- "width": 192,
- "height": 192
- },
- {
- "fileNum": 11046,
- "id": 9199,
- "width": 192,
- "height": 192
- },
- {
- "x": 192,
- "fileNum": 11046,
- "id": 9200,
- "width": 192,
- "height": 192
- },
- {
- "x": 384,
- "fileNum": 11046,
- "id": 9201,
- "width": 192,
- "height": 192
- },
- {
- "y": 192,
- "fileNum": 11046,
- "id": 9202,
- "width": 192,
- "height": 192
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 11046,
- "id": 9203,
- "width": 192,
- "height": 192
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 11046,
- "id": 9204,
- "width": 192,
- "height": 192
- },
- {
- "fileNum": 10009,
- "id": 9205,
- "width": 408,
- "height": 384
- },
- {
- "y": 384,
- "fileNum": 10009,
- "id": 9206,
- "width": 408,
- "height": 320
- },
- {
- "fileNum": 2171,
- "id": 9207,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2171,
- "id": 9208,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2171,
- "id": 9209,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2171,
- "id": 9210,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2172,
- "id": 9211,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2172,
- "id": 9212,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2172,
- "id": 9213,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2172,
- "id": 9214,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2173,
- "id": 9215,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2173,
- "id": 9216,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2173,
- "id": 9217,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2173,
- "id": 9218,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 10009,
- "id": 9219,
- "width": 408,
- "height": 402
- },
- {
- "fileNum": 8111,
- "id": 9220,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8111,
- "id": 9221,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8111,
- "id": 9222,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8111,
- "id": 9223,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8111,
- "id": 9224,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8111,
- "id": 9225,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8111,
- "id": 9226,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8111,
- "id": 9227,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8111,
- "id": 9228,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8111,
- "id": 9229,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8111,
- "id": 9230,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8111,
- "id": 9231,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8111,
- "id": 9232,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8111,
- "id": 9233,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8111,
- "id": 9234,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8111,
- "id": 9235,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 8111,
- "id": 9236,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 8111,
- "id": 9237,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 8111,
- "id": 9238,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 8111,
- "id": 9239,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 8111,
- "id": 9240,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 8111,
- "id": 9241,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 8111,
- "id": 9242,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 8111,
- "id": 9243,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 8111,
- "id": 9244,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 8111,
- "id": 9245,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 8111,
- "id": 9246,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 8111,
- "id": 9247,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 8111,
- "id": 9248,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 8111,
- "id": 9249,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 8111,
- "id": 9250,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 8111,
- "id": 9251,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 8111,
- "id": 9252,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 8111,
- "id": 9253,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 8111,
- "id": 9254,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 8111,
- "id": 9255,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 8111,
- "id": 9256,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 8111,
- "id": 9257,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 8111,
- "id": 9258,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 8111,
- "id": 9259,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 8111,
- "id": 9260,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 8111,
- "id": 9261,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 8111,
- "id": 9262,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 8111,
- "id": 9263,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 8111,
- "id": 9264,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 8111,
- "id": 9265,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 8111,
- "id": 9266,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 8111,
- "id": 9267,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 8111,
- "id": 9268,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 8111,
- "id": 9269,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 8111,
- "id": 9270,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 8111,
- "id": 9271,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 8111,
- "id": 9272,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 8111,
- "id": 9273,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 8111,
- "id": 9274,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 8111,
- "id": 9275,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 8111,
- "id": 9276,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 8111,
- "id": 9277,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 8111,
- "id": 9278,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 8111,
- "id": 9279,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 8111,
- "id": 9280,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 8111,
- "id": 9281,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 8111,
- "id": 9282,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 8111,
- "id": 9283,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8112,
- "id": 9284,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8112,
- "id": 9285,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8112,
- "id": 9286,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8112,
- "id": 9287,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8112,
- "id": 9288,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8112,
- "id": 9289,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8112,
- "id": 9290,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8112,
- "id": 9291,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8112,
- "id": 9292,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8112,
- "id": 9293,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8112,
- "id": 9294,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8112,
- "id": 9295,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8112,
- "id": 9296,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8112,
- "id": 9297,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8112,
- "id": 9298,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8112,
- "id": 9299,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 8112,
- "id": 9300,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 8112,
- "id": 9301,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 8112,
- "id": 9302,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 8112,
- "id": 9303,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 8112,
- "id": 9304,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 8112,
- "id": 9305,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 8112,
- "id": 9306,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 8112,
- "id": 9307,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 8112,
- "id": 9308,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 8112,
- "id": 9309,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 8112,
- "id": 9310,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 8112,
- "id": 9311,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 8112,
- "id": 9312,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 8112,
- "id": 9313,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 8112,
- "id": 9314,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 8112,
- "id": 9315,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 8112,
- "id": 9316,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 8112,
- "id": 9317,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 8112,
- "id": 9318,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 8112,
- "id": 9319,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 8112,
- "id": 9320,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 8112,
- "id": 9321,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 8112,
- "id": 9322,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 8112,
- "id": 9323,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 8112,
- "id": 9324,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 8112,
- "id": 9325,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 8112,
- "id": 9326,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 8112,
- "id": 9327,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 8112,
- "id": 9328,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 8112,
- "id": 9329,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 8112,
- "id": 9330,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 8112,
- "id": 9331,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 8112,
- "id": 9332,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 8112,
- "id": 9333,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 8112,
- "id": 9334,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 8112,
- "id": 9335,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 8112,
- "id": 9336,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 8112,
- "id": 9337,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 8112,
- "id": 9338,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 8112,
- "id": 9339,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 8112,
- "id": 9340,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 8112,
- "id": 9341,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 8112,
- "id": 9342,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 8112,
- "id": 9343,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 8112,
- "id": 9344,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 8112,
- "id": 9345,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 8112,
- "id": 9346,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 8112,
- "id": 9347,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8113,
- "id": 9348,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8113,
- "id": 9349,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8113,
- "id": 9350,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8113,
- "id": 9351,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8113,
- "id": 9352,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8113,
- "id": 9353,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8113,
- "id": 9354,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8113,
- "id": 9355,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8113,
- "id": 9356,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8113,
- "id": 9357,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8113,
- "id": 9358,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8113,
- "id": 9359,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8113,
- "id": 9360,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8113,
- "id": 9361,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8113,
- "id": 9362,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8113,
- "id": 9363,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 8113,
- "id": 9364,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 8113,
- "id": 9365,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 8113,
- "id": 9366,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 8113,
- "id": 9367,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 8113,
- "id": 9368,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 8113,
- "id": 9369,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 8113,
- "id": 9370,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 8113,
- "id": 9371,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 8113,
- "id": 9372,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 8113,
- "id": 9373,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 8113,
- "id": 9374,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 8113,
- "id": 9375,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 8113,
- "id": 9376,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 8113,
- "id": 9377,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 8113,
- "id": 9378,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 8113,
- "id": 9379,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 8113,
- "id": 9380,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 8113,
- "id": 9381,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 8113,
- "id": 9382,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 8113,
- "id": 9383,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 8113,
- "id": 9384,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 8113,
- "id": 9385,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 8113,
- "id": 9386,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 8113,
- "id": 9387,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 8113,
- "id": 9388,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 8113,
- "id": 9389,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 8113,
- "id": 9390,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 8113,
- "id": 9391,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 8113,
- "id": 9392,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 8113,
- "id": 9393,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 8113,
- "id": 9394,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 8113,
- "id": 9395,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 8113,
- "id": 9396,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 8113,
- "id": 9397,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 8113,
- "id": 9398,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 8113,
- "id": 9399,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 8113,
- "id": 9400,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 8113,
- "id": 9401,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 8113,
- "id": 9402,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 8113,
- "id": 9403,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 8113,
- "id": 9404,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 8113,
- "id": 9405,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 8113,
- "id": 9406,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 8113,
- "id": 9407,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 8113,
- "id": 9408,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 8113,
- "id": 9409,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 8113,
- "id": 9410,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 8113,
- "id": 9411,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8113,
- "id": 9412,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8113,
- "id": 9413,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8113,
- "id": 9414,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8113,
- "id": 9415,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8113,
- "id": 9416,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8113,
- "id": 9417,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8113,
- "id": 9418,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8113,
- "id": 9419,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8113,
- "id": 9420,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8113,
- "id": 9421,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8113,
- "id": 9422,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8113,
- "id": 9423,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8113,
- "id": 9424,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8113,
- "id": 9425,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8113,
- "id": 9426,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8113,
- "id": 9427,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8114,
- "id": 9428,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8114,
- "id": 9429,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8114,
- "id": 9430,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8114,
- "id": 9431,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8114,
- "id": 9432,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8114,
- "id": 9433,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8114,
- "id": 9434,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8114,
- "id": 9435,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8114,
- "id": 9436,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8114,
- "id": 9437,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8114,
- "id": 9438,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8114,
- "id": 9439,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8114,
- "id": 9440,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8114,
- "id": 9441,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8114,
- "id": 9442,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8114,
- "id": 9443,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 4054,
- "id": 9444,
- "width": 100,
- "height": 140
- },
- {
- "x": 100,
- "fileNum": 4054,
- "id": 9445,
- "width": 100,
- "height": 140
- },
- {
- "x": 200,
- "fileNum": 4054,
- "id": 9446,
- "width": 100,
- "height": 140
- },
- {
- "y": 140,
- "fileNum": 4054,
- "id": 9448,
- "width": 100,
- "height": 140
- },
- {
- "x": 100,
- "y": 140,
- "fileNum": 4054,
- "id": 9449,
- "width": 100,
- "height": 140
- },
- {
- "x": 200,
- "y": 140,
- "fileNum": 4054,
- "id": 9450,
- "width": 100,
- "height": 140
- },
- {
- "y": 280,
- "fileNum": 4054,
- "id": 9452,
- "width": 100,
- "height": 140
- },
- {
- "x": 100,
- "y": 280,
- "fileNum": 4054,
- "id": 9453,
- "width": 100,
- "height": 140
- },
- {
- "x": 200,
- "y": 280,
- "fileNum": 4054,
- "id": 9454,
- "width": 100,
- "height": 140
- },
- {
- "y": 420,
- "fileNum": 4054,
- "id": 9456,
- "width": 100,
- "height": 140
- },
- {
- "x": 100,
- "y": 420,
- "fileNum": 4054,
- "id": 9457,
- "width": 100,
- "height": 140
- },
- {
- "x": 200,
- "y": 420,
- "fileNum": 4054,
- "id": 9458,
- "width": 100,
- "height": 140
- },
- {
- "fileNum": 9015,
- "id": 9463,
- "width": 88,
- "height": 128
- },
- {
- "x": 88,
- "fileNum": 9015,
- "id": 9464,
- "width": 88,
- "height": 128
- },
- {
- "x": 176,
- "fileNum": 9015,
- "id": 9465,
- "width": 88,
- "height": 128
- },
- {
- "x": 264,
- "fileNum": 9015,
- "id": 9466,
- "width": 88,
- "height": 128
- },
- {
- "x": 352,
- "fileNum": 9015,
- "id": 9467,
- "width": 88,
- "height": 128
- },
- {
- "x": 440,
- "fileNum": 9015,
- "id": 9468,
- "width": 88,
- "height": 128
- },
- {
- "x": 528,
- "fileNum": 9015,
- "id": 9469,
- "width": 88,
- "height": 128
- },
- {
- "x": 616,
- "fileNum": 9015,
- "id": 9470,
- "width": 88,
- "height": 128
- },
- {
- "fileNum": 2113,
- "id": 9472,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2113,
- "id": 9473,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2113,
- "id": 9474,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2113,
- "id": 9475,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2114,
- "id": 9476,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2114,
- "id": 9477,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2114,
- "id": 9478,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2114,
- "id": 9479,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2115,
- "id": 9480,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2115,
- "id": 9481,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2115,
- "id": 9482,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2115,
- "id": 9483,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2116,
- "id": 9484,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2116,
- "id": 9485,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2116,
- "id": 9486,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2116,
- "id": 9487,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2117,
- "id": 9488,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2117,
- "id": 9489,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2117,
- "id": 9490,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2117,
- "id": 9491,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2118,
- "id": 9492,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2118,
- "id": 9493,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2118,
- "id": 9494,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2118,
- "id": 9495,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2119,
- "id": 9496,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2119,
- "id": 9497,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2119,
- "id": 9498,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2119,
- "id": 9499,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2120,
- "id": 9500,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2120,
- "id": 9501,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2120,
- "id": 9502,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2120,
- "id": 9503,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2121,
- "id": 9504,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2121,
- "id": 9505,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2121,
- "id": 9506,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2121,
- "id": 9507,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2122,
- "id": 9508,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2122,
- "id": 9509,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2122,
- "id": 9510,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2122,
- "id": 9511,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2123,
- "id": 9512,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2123,
- "id": 9513,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2123,
- "id": 9514,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2123,
- "id": 9515,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2124,
- "id": 9516,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2124,
- "id": 9517,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2124,
- "id": 9518,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2124,
- "id": 9519,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 18023,
- "id": 9520,
- "width": 34,
- "height": 32
- },
- {
- "x": 34,
- "fileNum": 18023,
- "id": 9521,
- "width": 34,
- "height": 32
- },
- {
- "x": 68,
- "fileNum": 18023,
- "id": 9522,
- "width": 34,
- "height": 32
- },
- {
- "x": 102,
- "fileNum": 18023,
- "id": 9523,
- "width": 34,
- "height": 32
- },
- {
- "fileNum": 2125,
- "id": 9524,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2125,
- "id": 9525,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2125,
- "id": 9526,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2125,
- "id": 9527,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 126,
- "id": 9529,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 127,
- "id": 9530,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 127,
- "id": 9531,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 127,
- "id": 9532,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 127,
- "id": 9533,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 127,
- "id": 9534,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 127,
- "id": 9535,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 127,
- "id": 9536,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 127,
- "id": 9537,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 127,
- "id": 9538,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 127,
- "id": 9539,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 127,
- "id": 9540,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 127,
- "id": 9541,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 127,
- "id": 9542,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 127,
- "id": 9543,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 127,
- "id": 9544,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 127,
- "id": 9545,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 127,
- "id": 9546,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 127,
- "id": 9547,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 127,
- "id": 9548,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 127,
- "id": 9549,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 127,
- "id": 9550,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 127,
- "id": 9551,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 8142,
- "id": 9556,
- "width": 200,
- "height": 162
- },
- {
- "x": 200,
- "fileNum": 8142,
- "id": 9557,
- "width": 200,
- "height": 162
- },
- {
- "x": 400,
- "fileNum": 8142,
- "id": 9558,
- "width": 200,
- "height": 162
- },
- {
- "fileNum": 15113,
- "id": 9559,
- "width": 280,
- "height": 110
- },
- {
- "fileNum": 3097,
- "id": 9560,
- "width": 150,
- "height": 180
- },
- {
- "y": 180,
- "fileNum": 3097,
- "id": 9561,
- "width": 150,
- "height": 180
- },
- {
- "y": 360,
- "fileNum": 3097,
- "id": 9562,
- "width": 150,
- "height": 180
- },
- {
- "y": 540,
- "fileNum": 3097,
- "id": 9563,
- "width": 150,
- "height": 180
- },
- {
- "y": 720,
- "fileNum": 3097,
- "id": 9564,
- "width": 150,
- "height": 180
- },
- {
- "y": 900,
- "fileNum": 3097,
- "id": 9565,
- "width": 150,
- "height": 180
- },
- {
- "y": 1080,
- "fileNum": 3097,
- "id": 9566,
- "width": 150,
- "height": 180
- },
- {
- "y": 1260,
- "fileNum": 3097,
- "id": 9567,
- "width": 150,
- "height": 180
- },
- {
- "fileNum": 10002,
- "id": 9569,
- "width": 260,
- "height": 290
- },
- {
- "fileNum": 15114,
- "id": 9570,
- "width": 200,
- "height": 300
- },
- {
- "x": 200,
- "fileNum": 15114,
- "id": 9571,
- "width": 200,
- "height": 300
- },
- {
- "x": 400,
- "fileNum": 15114,
- "id": 9572,
- "width": 200,
- "height": 300
- },
- {
- "y": 300,
- "fileNum": 15114,
- "id": 9573,
- "width": 200,
- "height": 300
- },
- {
- "x": 200,
- "y": 300,
- "fileNum": 15114,
- "id": 9574,
- "width": 200,
- "height": 300
- },
- {
- "x": 400,
- "y": 300,
- "fileNum": 15114,
- "id": 9575,
- "width": 200,
- "height": 300
- },
- {
- "fileNum": 2174,
- "id": 9576,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2174,
- "id": 9577,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2174,
- "id": 9578,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2174,
- "id": 9579,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 15115,
- "id": 9580,
- "width": 600,
- "height": 1000
- },
- {
- "fileNum": 130,
- "id": 9581,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 129,
- "id": 9582,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 129,
- "id": 9583,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 129,
- "id": 9584,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 129,
- "id": 9585,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 129,
- "id": 9586,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 129,
- "id": 9587,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 129,
- "id": 9588,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 129,
- "id": 9589,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 129,
- "id": 9590,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 129,
- "id": 9591,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 129,
- "id": 9592,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 129,
- "id": 9593,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 129,
- "id": 9594,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 129,
- "id": 9595,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 129,
- "id": 9596,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 129,
- "id": 9597,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 129,
- "id": 9598,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 129,
- "id": 9599,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 129,
- "id": 9600,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 129,
- "id": 9601,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 129,
- "id": 9602,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 129,
- "id": 9603,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2175,
- "id": 9608,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2175,
- "id": 9609,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2175,
- "id": 9610,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2175,
- "id": 9611,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2176,
- "id": 9612,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2176,
- "id": 9613,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2176,
- "id": 9614,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2176,
- "id": 9615,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2177,
- "id": 9616,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2177,
- "id": 9617,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2177,
- "id": 9618,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2177,
- "id": 9619,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2178,
- "id": 9620,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2178,
- "id": 9621,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2178,
- "id": 9622,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2178,
- "id": 9623,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2179,
- "id": 9624,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2179,
- "id": 9625,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2179,
- "id": 9626,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2179,
- "id": 9627,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2180,
- "id": 9628,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2180,
- "id": 9629,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2180,
- "id": 9630,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2180,
- "id": 9631,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 131,
- "id": 9632,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 132,
- "id": 9633,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 132,
- "id": 9634,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 132,
- "id": 9635,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 132,
- "id": 9636,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 132,
- "id": 9637,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 132,
- "id": 9638,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 132,
- "id": 9639,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 132,
- "id": 9640,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 132,
- "id": 9641,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 132,
- "id": 9642,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 132,
- "id": 9643,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 132,
- "id": 9644,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 132,
- "id": 9645,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 132,
- "id": 9646,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 132,
- "id": 9647,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 132,
- "id": 9648,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 132,
- "id": 9649,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 132,
- "id": 9650,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 132,
- "id": 9651,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 132,
- "id": 9652,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 132,
- "id": 9653,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 132,
- "id": 9654,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 133,
- "id": 9659,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 134,
- "id": 9660,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 134,
- "id": 9661,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 134,
- "id": 9662,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 134,
- "id": 9663,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 134,
- "id": 9664,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 134,
- "id": 9665,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 134,
- "id": 9666,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 134,
- "id": 9667,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 134,
- "id": 9668,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 134,
- "id": 9669,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 134,
- "id": 9670,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 134,
- "id": 9671,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 134,
- "id": 9672,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 134,
- "id": 9673,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 134,
- "id": 9674,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 134,
- "id": 9675,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 134,
- "id": 9676,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 134,
- "id": 9677,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 134,
- "id": 9678,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 134,
- "id": 9679,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 134,
- "id": 9680,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 134,
- "id": 9681,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 135,
- "id": 9686,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 136,
- "id": 9687,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 136,
- "id": 9688,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 136,
- "id": 9689,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 136,
- "id": 9690,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 136,
- "id": 9691,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 136,
- "id": 9692,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 136,
- "id": 9693,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 136,
- "id": 9694,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 136,
- "id": 9695,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 136,
- "id": 9696,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 136,
- "id": 9697,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 136,
- "id": 9698,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 136,
- "id": 9699,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 136,
- "id": 9700,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 136,
- "id": 9701,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 136,
- "id": 9702,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 136,
- "id": 9703,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 136,
- "id": 9704,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 136,
- "id": 9705,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 136,
- "id": 9706,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 136,
- "id": 9707,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 136,
- "id": 9708,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 137,
- "id": 9713,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 138,
- "id": 9714,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 138,
- "id": 9715,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 138,
- "id": 9716,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 138,
- "id": 9717,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 138,
- "id": 9718,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 138,
- "id": 9719,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 138,
- "id": 9720,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 138,
- "id": 9721,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 138,
- "id": 9722,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 138,
- "id": 9723,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 138,
- "id": 9724,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 138,
- "id": 9725,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 138,
- "id": 9726,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 138,
- "id": 9727,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 138,
- "id": 9728,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 138,
- "id": 9729,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 138,
- "id": 9730,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 138,
- "id": 9731,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 138,
- "id": 9732,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 138,
- "id": 9733,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 138,
- "id": 9734,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 138,
- "id": 9735,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 139,
- "id": 9740,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 140,
- "id": 9741,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 140,
- "id": 9742,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 140,
- "id": 9743,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 140,
- "id": 9744,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 140,
- "id": 9745,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 140,
- "id": 9746,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 140,
- "id": 9747,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 140,
- "id": 9748,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 140,
- "id": 9749,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 140,
- "id": 9750,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 140,
- "id": 9751,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 140,
- "id": 9752,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 140,
- "id": 9753,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 140,
- "id": 9754,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 140,
- "id": 9755,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 140,
- "id": 9756,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 140,
- "id": 9757,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 140,
- "id": 9758,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 140,
- "id": 9759,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 140,
- "id": 9760,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 140,
- "id": 9761,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 140,
- "id": 9762,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 141,
- "id": 9767,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 142,
- "id": 9768,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 142,
- "id": 9769,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 142,
- "id": 9770,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 142,
- "id": 9771,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 142,
- "id": 9772,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 142,
- "id": 9773,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 142,
- "id": 9774,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 142,
- "id": 9775,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 142,
- "id": 9776,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 142,
- "id": 9777,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 142,
- "id": 9778,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 142,
- "id": 9779,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 142,
- "id": 9780,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 142,
- "id": 9781,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 142,
- "id": 9782,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 142,
- "id": 9783,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 142,
- "id": 9784,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 142,
- "id": 9785,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 142,
- "id": 9786,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 142,
- "id": 9787,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 142,
- "id": 9788,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 142,
- "id": 9789,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 143,
- "id": 9794,
- "width": 66,
- "height": 130
- },
- {
- "x": 66,
- "fileNum": 143,
- "id": 9795,
- "width": 66,
- "height": 130
- },
- {
- "x": 132,
- "fileNum": 143,
- "id": 9796,
- "width": 66,
- "height": 130
- },
- {
- "x": 198,
- "fileNum": 143,
- "id": 9797,
- "width": 66,
- "height": 130
- },
- {
- "x": 264,
- "fileNum": 143,
- "id": 9798,
- "width": 66,
- "height": 130
- },
- {
- "x": 330,
- "fileNum": 143,
- "id": 9799,
- "width": 66,
- "height": 130
- },
- {
- "x": 396,
- "fileNum": 143,
- "id": 9800,
- "width": 66,
- "height": 130
- },
- {
- "y": 130,
- "fileNum": 143,
- "id": 9801,
- "width": 66,
- "height": 130
- },
- {
- "x": 66,
- "y": 130,
- "fileNum": 143,
- "id": 9802,
- "width": 66,
- "height": 130
- },
- {
- "x": 132,
- "y": 130,
- "fileNum": 143,
- "id": 9803,
- "width": 66,
- "height": 130
- },
- {
- "x": 198,
- "y": 130,
- "fileNum": 143,
- "id": 9804,
- "width": 66,
- "height": 130
- },
- {
- "x": 264,
- "y": 130,
- "fileNum": 143,
- "id": 9805,
- "width": 66,
- "height": 130
- },
- {
- "x": 330,
- "y": 130,
- "fileNum": 143,
- "id": 9806,
- "width": 66,
- "height": 130
- },
- {
- "x": 396,
- "y": 130,
- "fileNum": 143,
- "id": 9807,
- "width": 66,
- "height": 130
- },
- {
- "y": 260,
- "fileNum": 143,
- "id": 9808,
- "width": 66,
- "height": 130
- },
- {
- "x": 66,
- "y": 260,
- "fileNum": 143,
- "id": 9809,
- "width": 66,
- "height": 130
- },
- {
- "x": 132,
- "y": 260,
- "fileNum": 143,
- "id": 9810,
- "width": 66,
- "height": 130
- },
- {
- "x": 198,
- "y": 260,
- "fileNum": 143,
- "id": 9811,
- "width": 66,
- "height": 130
- },
- {
- "x": 264,
- "y": 260,
- "fileNum": 143,
- "id": 9812,
- "width": 66,
- "height": 130
- },
- {
- "x": 330,
- "y": 260,
- "fileNum": 143,
- "id": 9813,
- "width": 66,
- "height": 130
- },
- {
- "y": 390,
- "fileNum": 143,
- "id": 9814,
- "width": 66,
- "height": 130
- },
- {
- "x": 66,
- "y": 390,
- "fileNum": 143,
- "id": 9815,
- "width": 66,
- "height": 130
- },
- {
- "x": 132,
- "y": 390,
- "fileNum": 143,
- "id": 9816,
- "width": 66,
- "height": 130
- },
- {
- "x": 198,
- "y": 390,
- "fileNum": 143,
- "id": 9817,
- "width": 66,
- "height": 130
- },
- {
- "x": 264,
- "y": 390,
- "fileNum": 143,
- "id": 9818,
- "width": 66,
- "height": 130
- },
- {
- "x": 330,
- "y": 390,
- "fileNum": 143,
- "id": 9819,
- "width": 66,
- "height": 130
- },
- {
- "fileNum": 4040,
- "id": 9824,
- "width": 66,
- "height": 66
- },
- {
- "x": 66,
- "fileNum": 4040,
- "id": 9825,
- "width": 66,
- "height": 66
- },
- {
- "x": 132,
- "fileNum": 4040,
- "id": 9826,
- "width": 66,
- "height": 66
- },
- {
- "x": 198,
- "fileNum": 4040,
- "id": 9827,
- "width": 66,
- "height": 66
- },
- {
- "x": 264,
- "fileNum": 4040,
- "id": 9828,
- "width": 66,
- "height": 66
- },
- {
- "x": 330,
- "fileNum": 4040,
- "id": 9829,
- "width": 66,
- "height": 66
- },
- {
- "y": 66,
- "fileNum": 4040,
- "id": 9830,
- "width": 66,
- "height": 66
- },
- {
- "x": 66,
- "y": 66,
- "fileNum": 4040,
- "id": 9831,
- "width": 66,
- "height": 66
- },
- {
- "x": 132,
- "y": 66,
- "fileNum": 4040,
- "id": 9832,
- "width": 66,
- "height": 66
- },
- {
- "x": 198,
- "y": 66,
- "fileNum": 4040,
- "id": 9833,
- "width": 66,
- "height": 66
- },
- {
- "x": 264,
- "y": 66,
- "fileNum": 4040,
- "id": 9834,
- "width": 66,
- "height": 66
- },
- {
- "x": 330,
- "y": 66,
- "fileNum": 4040,
- "id": 9835,
- "width": 66,
- "height": 66
- },
- {
- "y": 132,
- "fileNum": 4040,
- "id": 9836,
- "width": 66,
- "height": 66
- },
- {
- "x": 66,
- "y": 132,
- "fileNum": 4040,
- "id": 9837,
- "width": 66,
- "height": 66
- },
- {
- "x": 132,
- "y": 132,
- "fileNum": 4040,
- "id": 9838,
- "width": 66,
- "height": 66
- },
- {
- "x": 198,
- "y": 132,
- "fileNum": 4040,
- "id": 9839,
- "width": 66,
- "height": 66
- },
- {
- "x": 264,
- "y": 132,
- "fileNum": 4040,
- "id": 9840,
- "width": 66,
- "height": 66
- },
- {
- "x": 330,
- "y": 132,
- "fileNum": 4040,
- "id": 9841,
- "width": 66,
- "height": 66
- },
- {
- "y": 198,
- "fileNum": 4040,
- "id": 9842,
- "width": 66,
- "height": 66
- },
- {
- "x": 66,
- "y": 198,
- "fileNum": 4040,
- "id": 9843,
- "width": 66,
- "height": 66
- },
- {
- "x": 132,
- "y": 198,
- "fileNum": 4040,
- "id": 9844,
- "width": 66,
- "height": 66
- },
- {
- "x": 198,
- "y": 198,
- "fileNum": 4040,
- "id": 9845,
- "width": 66,
- "height": 66
- },
- {
- "x": 264,
- "y": 198,
- "fileNum": 4040,
- "id": 9846,
- "width": 66,
- "height": 66
- },
- {
- "fileNum": 4050,
- "id": 9852,
- "width": 66,
- "height": 66
- },
- {
- "x": 66,
- "fileNum": 4050,
- "id": 9853,
- "width": 66,
- "height": 66
- },
- {
- "x": 132,
- "fileNum": 4050,
- "id": 9854,
- "width": 66,
- "height": 66
- },
- {
- "x": 198,
- "fileNum": 4050,
- "id": 9855,
- "width": 66,
- "height": 66
- },
- {
- "x": 264,
- "fileNum": 4050,
- "id": 9856,
- "width": 66,
- "height": 66
- },
- {
- "x": 330,
- "fileNum": 4050,
- "id": 9857,
- "width": 66,
- "height": 66
- },
- {
- "x": 396,
- "fileNum": 4050,
- "id": 9858,
- "width": 66,
- "height": 66
- },
- {
- "y": 66,
- "fileNum": 4050,
- "id": 9859,
- "width": 66,
- "height": 66
- },
- {
- "x": 66,
- "y": 66,
- "fileNum": 4050,
- "id": 9860,
- "width": 66,
- "height": 66
- },
- {
- "x": 132,
- "y": 66,
- "fileNum": 4050,
- "id": 9861,
- "width": 66,
- "height": 66
- },
- {
- "x": 198,
- "y": 66,
- "fileNum": 4050,
- "id": 9862,
- "width": 66,
- "height": 66
- },
- {
- "x": 264,
- "y": 66,
- "fileNum": 4050,
- "id": 9863,
- "width": 66,
- "height": 66
- },
- {
- "x": 330,
- "y": 66,
- "fileNum": 4050,
- "id": 9864,
- "width": 66,
- "height": 66
- },
- {
- "x": 396,
- "y": 66,
- "fileNum": 4050,
- "id": 9865,
- "width": 66,
- "height": 66
- },
- {
- "y": 132,
- "fileNum": 4050,
- "id": 9866,
- "width": 66,
- "height": 66
- },
- {
- "x": 66,
- "y": 132,
- "fileNum": 4050,
- "id": 9867,
- "width": 66,
- "height": 66
- },
- {
- "x": 132,
- "y": 132,
- "fileNum": 4050,
- "id": 9868,
- "width": 66,
- "height": 66
- },
- {
- "x": 198,
- "y": 132,
- "fileNum": 4050,
- "id": 9869,
- "width": 66,
- "height": 66
- },
- {
- "x": 264,
- "y": 132,
- "fileNum": 4050,
- "id": 9870,
- "width": 66,
- "height": 66
- },
- {
- "x": 330,
- "y": 132,
- "fileNum": 4050,
- "id": 9871,
- "width": 66,
- "height": 66
- },
- {
- "y": 198,
- "fileNum": 4050,
- "id": 9873,
- "width": 66,
- "height": 66
- },
- {
- "x": 66,
- "y": 198,
- "fileNum": 4050,
- "id": 9874,
- "width": 66,
- "height": 66
- },
- {
- "x": 132,
- "y": 198,
- "fileNum": 4050,
- "id": 9875,
- "width": 66,
- "height": 66
- },
- {
- "x": 198,
- "y": 198,
- "fileNum": 4050,
- "id": 9876,
- "width": 66,
- "height": 66
- },
- {
- "x": 264,
- "y": 198,
- "fileNum": 4050,
- "id": 9877,
- "width": 66,
- "height": 66
- },
- {
- "x": 330,
- "y": 198,
- "fileNum": 4050,
- "id": 9878,
- "width": 66,
- "height": 66
- },
- {
- "fileNum": 144,
- "id": 9884,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 144,
- "id": 9885,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 144,
- "id": 9886,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 144,
- "id": 9887,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 144,
- "id": 9888,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 144,
- "id": 9889,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 144,
- "id": 9890,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 144,
- "id": 9891,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 144,
- "id": 9892,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 144,
- "id": 9893,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 144,
- "id": 9894,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 144,
- "id": 9895,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 144,
- "id": 9896,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 144,
- "id": 9897,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 144,
- "id": 9898,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 144,
- "id": 9899,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 144,
- "id": 9900,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 144,
- "id": 9901,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 144,
- "id": 9902,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 144,
- "id": 9903,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 144,
- "id": 9904,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 144,
- "id": 9905,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 146,
- "id": 9910,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 145,
- "id": 9911,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 145,
- "id": 9912,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 145,
- "id": 9913,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 145,
- "id": 9914,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 145,
- "id": 9915,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 145,
- "id": 9916,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 145,
- "id": 9917,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 145,
- "id": 9918,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 145,
- "id": 9919,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 145,
- "id": 9920,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 145,
- "id": 9921,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 145,
- "id": 9922,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 145,
- "id": 9923,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 145,
- "id": 9924,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 145,
- "id": 9925,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 145,
- "id": 9926,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 145,
- "id": 9927,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 145,
- "id": 9928,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 145,
- "id": 9929,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 145,
- "id": 9930,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 145,
- "id": 9931,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 145,
- "id": 9932,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 148,
- "id": 9937,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 147,
- "id": 9938,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 147,
- "id": 9939,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 147,
- "id": 9940,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 147,
- "id": 9941,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 147,
- "id": 9942,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 147,
- "id": 9943,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 147,
- "id": 9944,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 147,
- "id": 9945,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 147,
- "id": 9946,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 147,
- "id": 9947,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 147,
- "id": 9948,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 147,
- "id": 9949,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 147,
- "id": 9950,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 147,
- "id": 9951,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 147,
- "id": 9952,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 147,
- "id": 9953,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 147,
- "id": 9954,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 147,
- "id": 9955,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 147,
- "id": 9956,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 147,
- "id": 9957,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 147,
- "id": 9958,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 147,
- "id": 9959,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 150,
- "id": 9964,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 149,
- "id": 9965,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 149,
- "id": 9966,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 149,
- "id": 9967,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 149,
- "id": 9968,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 149,
- "id": 9969,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 149,
- "id": 9970,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 149,
- "id": 9971,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 149,
- "id": 9972,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 149,
- "id": 9973,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 149,
- "id": 9974,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 149,
- "id": 9975,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 149,
- "id": 9976,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 149,
- "id": 9977,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 149,
- "id": 9978,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 149,
- "id": 9979,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 149,
- "id": 9980,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 149,
- "id": 9981,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 149,
- "id": 9982,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 149,
- "id": 9983,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 149,
- "id": 9984,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 149,
- "id": 9985,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 149,
- "id": 9986,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2181,
- "id": 9991,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2181,
- "id": 9992,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2181,
- "id": 9993,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2181,
- "id": 9994,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2182,
- "id": 9995,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2182,
- "id": 9996,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2182,
- "id": 9997,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2182,
- "id": 9998,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 4115,
- "id": 10000,
- "width": 50,
- "height": 64
- },
- {
- "x": 48,
- "fileNum": 4115,
- "id": 10001,
- "width": 50,
- "height": 64
- },
- {
- "x": 96,
- "fileNum": 4115,
- "id": 10002,
- "width": 50,
- "height": 64
- },
- {
- "x": 142,
- "fileNum": 4115,
- "id": 10003,
- "width": 50,
- "height": 64
- },
- {
- "x": 188,
- "fileNum": 4115,
- "id": 10004,
- "width": 50,
- "height": 64
- },
- {
- "x": 234,
- "fileNum": 4115,
- "id": 10005,
- "width": 50,
- "height": 64
- },
- {
- "x": 282,
- "fileNum": 4115,
- "id": 10006,
- "width": 50,
- "height": 64
- },
- {
- "x": 328,
- "fileNum": 4115,
- "id": 10007,
- "width": 50,
- "height": 64
- },
- {
- "y": 62,
- "fileNum": 4115,
- "id": 10008,
- "width": 50,
- "height": 64
- },
- {
- "x": 48,
- "y": 62,
- "fileNum": 4115,
- "id": 10009,
- "width": 50,
- "height": 64
- },
- {
- "x": 96,
- "y": 62,
- "fileNum": 4115,
- "id": 10010,
- "width": 50,
- "height": 64
- },
- {
- "x": 142,
- "y": 62,
- "fileNum": 4115,
- "id": 10011,
- "width": 50,
- "height": 64
- },
- {
- "x": 188,
- "y": 62,
- "fileNum": 4115,
- "id": 10012,
- "width": 50,
- "height": 64
- },
- {
- "x": 234,
- "y": 62,
- "fileNum": 4115,
- "id": 10013,
- "width": 50,
- "height": 64
- },
- {
- "x": 282,
- "y": 62,
- "fileNum": 4115,
- "id": 10014,
- "width": 50,
- "height": 64
- },
- {
- "x": 328,
- "y": 62,
- "fileNum": 4115,
- "id": 10015,
- "width": 50,
- "height": 64
- },
- {
- "y": 124,
- "fileNum": 4115,
- "id": 10016,
- "width": 50,
- "height": 64
- },
- {
- "x": 48,
- "y": 124,
- "fileNum": 4115,
- "id": 10017,
- "width": 50,
- "height": 64
- },
- {
- "x": 96,
- "y": 124,
- "fileNum": 4115,
- "id": 10018,
- "width": 50,
- "height": 64
- },
- {
- "x": 142,
- "y": 124,
- "fileNum": 4115,
- "id": 10019,
- "width": 50,
- "height": 64
- },
- {
- "x": 188,
- "y": 124,
- "fileNum": 4115,
- "id": 10020,
- "width": 50,
- "height": 64
- },
- {
- "x": 234,
- "y": 124,
- "fileNum": 4115,
- "id": 10021,
- "width": 50,
- "height": 64
- },
- {
- "x": 282,
- "y": 124,
- "fileNum": 4115,
- "id": 10022,
- "width": 50,
- "height": 64
- },
- {
- "x": 328,
- "y": 124,
- "fileNum": 4115,
- "id": 10023,
- "width": 50,
- "height": 64
- },
- {
- "y": 186,
- "fileNum": 4115,
- "id": 10024,
- "width": 50,
- "height": 64
- },
- {
- "x": 48,
- "y": 186,
- "fileNum": 4115,
- "id": 10025,
- "width": 50,
- "height": 64
- },
- {
- "x": 96,
- "y": 186,
- "fileNum": 4115,
- "id": 10026,
- "width": 50,
- "height": 64
- },
- {
- "x": 142,
- "y": 186,
- "fileNum": 4115,
- "id": 10027,
- "width": 50,
- "height": 64
- },
- {
- "x": 188,
- "y": 186,
- "fileNum": 4115,
- "id": 10028,
- "width": 50,
- "height": 64
- },
- {
- "x": 234,
- "y": 186,
- "fileNum": 4115,
- "id": 10029,
- "width": 50,
- "height": 64
- },
- {
- "x": 282,
- "y": 186,
- "fileNum": 4115,
- "id": 10030,
- "width": 50,
- "height": 64
- },
- {
- "x": 328,
- "y": 186,
- "fileNum": 4115,
- "id": 10031,
- "width": 50,
- "height": 64
- },
- {
- "fileNum": 4116,
- "id": 10036,
- "width": 114,
- "height": 196
- },
- {
- "x": 114,
- "fileNum": 4116,
- "id": 10037,
- "width": 114,
- "height": 196
- },
- {
- "x": 228,
- "fileNum": 4116,
- "id": 10038,
- "width": 114,
- "height": 196
- },
- {
- "x": 342,
- "fileNum": 4116,
- "id": 10039,
- "width": 114,
- "height": 196
- },
- {
- "x": 456,
- "fileNum": 4116,
- "id": 10040,
- "width": 114,
- "height": 196
- },
- {
- "x": 570,
- "fileNum": 4116,
- "id": 10041,
- "width": 114,
- "height": 196
- },
- {
- "y": 196,
- "fileNum": 4116,
- "id": 10042,
- "width": 114,
- "height": 196
- },
- {
- "x": 114,
- "y": 196,
- "fileNum": 4116,
- "id": 10043,
- "width": 114,
- "height": 196
- },
- {
- "x": 228,
- "y": 196,
- "fileNum": 4116,
- "id": 10044,
- "width": 114,
- "height": 196
- },
- {
- "x": 342,
- "y": 196,
- "fileNum": 4116,
- "id": 10045,
- "width": 114,
- "height": 196
- },
- {
- "x": 456,
- "y": 196,
- "fileNum": 4116,
- "id": 10046,
- "width": 114,
- "height": 196
- },
- {
- "x": 570,
- "y": 196,
- "fileNum": 4116,
- "id": 10047,
- "width": 114,
- "height": 196
- },
- {
- "y": 392,
- "fileNum": 4116,
- "id": 10048,
- "width": 114,
- "height": 196
- },
- {
- "x": 114,
- "y": 392,
- "fileNum": 4116,
- "id": 10049,
- "width": 114,
- "height": 196
- },
- {
- "x": 228,
- "y": 392,
- "fileNum": 4116,
- "id": 10050,
- "width": 114,
- "height": 196
- },
- {
- "x": 342,
- "y": 392,
- "fileNum": 4116,
- "id": 10051,
- "width": 114,
- "height": 196
- },
- {
- "x": 456,
- "y": 392,
- "fileNum": 4116,
- "id": 10052,
- "width": 114,
- "height": 196
- },
- {
- "y": 588,
- "fileNum": 4116,
- "id": 10053,
- "width": 114,
- "height": 196
- },
- {
- "x": 114,
- "y": 588,
- "fileNum": 4116,
- "id": 10054,
- "width": 114,
- "height": 196
- },
- {
- "x": 228,
- "y": 588,
- "fileNum": 4116,
- "id": 10055,
- "width": 114,
- "height": 196
- },
- {
- "x": 342,
- "y": 588,
- "fileNum": 4116,
- "id": 10056,
- "width": 114,
- "height": 196
- },
- {
- "x": 456,
- "y": 588,
- "fileNum": 4116,
- "id": 10057,
- "width": 114,
- "height": 196
- },
- {
- "fileNum": 194,
- "id": 10064,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 194,
- "id": 10065,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 194,
- "id": 10066,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 194,
- "id": 10067,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 194,
- "id": 10068,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 194,
- "id": 10069,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 194,
- "id": 10070,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 194,
- "id": 10071,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 194,
- "id": 10072,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 194,
- "id": 10073,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 194,
- "id": 10074,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 194,
- "id": 10075,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 194,
- "id": 10076,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 194,
- "id": 10077,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 194,
- "id": 10078,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 194,
- "id": 10079,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 194,
- "id": 10080,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 194,
- "id": 10081,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 194,
- "id": 10082,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 194,
- "id": 10083,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 194,
- "id": 10084,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 194,
- "id": 10085,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 195,
- "id": 10090,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 195,
- "id": 10091,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 195,
- "id": 10092,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 195,
- "id": 10093,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 195,
- "id": 10094,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 195,
- "id": 10095,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 195,
- "id": 10096,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 195,
- "id": 10097,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 195,
- "id": 10098,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 195,
- "id": 10099,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 195,
- "id": 10100,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 195,
- "id": 10101,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 195,
- "id": 10102,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 195,
- "id": 10103,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 195,
- "id": 10104,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 195,
- "id": 10105,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 195,
- "id": 10106,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 195,
- "id": 10107,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 195,
- "id": 10108,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 195,
- "id": 10109,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 195,
- "id": 10110,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 195,
- "id": 10111,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 196,
- "id": 10116,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 196,
- "id": 10117,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 196,
- "id": 10118,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 196,
- "id": 10119,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 196,
- "id": 10120,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 196,
- "id": 10121,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 196,
- "id": 10122,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 196,
- "id": 10123,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 196,
- "id": 10124,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 196,
- "id": 10125,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 196,
- "id": 10126,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 196,
- "id": 10127,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 196,
- "id": 10128,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 196,
- "id": 10129,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 196,
- "id": 10130,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 196,
- "id": 10131,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 196,
- "id": 10132,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 196,
- "id": 10133,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 196,
- "id": 10134,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 196,
- "id": 10135,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 196,
- "id": 10136,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 196,
- "id": 10137,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 197,
- "id": 10142,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 197,
- "id": 10143,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 197,
- "id": 10144,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 197,
- "id": 10145,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 197,
- "id": 10146,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 197,
- "id": 10147,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 197,
- "id": 10148,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 197,
- "id": 10149,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 197,
- "id": 10150,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 197,
- "id": 10151,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 197,
- "id": 10152,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 197,
- "id": 10153,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 197,
- "id": 10154,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 197,
- "id": 10155,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 197,
- "id": 10156,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 197,
- "id": 10157,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 197,
- "id": 10158,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 197,
- "id": 10159,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 197,
- "id": 10160,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 197,
- "id": 10161,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 197,
- "id": 10162,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 197,
- "id": 10163,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 198,
- "id": 10168,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 198,
- "id": 10169,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 198,
- "id": 10170,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 198,
- "id": 10171,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 198,
- "id": 10172,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 198,
- "id": 10173,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 198,
- "id": 10174,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 198,
- "id": 10175,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 198,
- "id": 10176,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 198,
- "id": 10177,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 198,
- "id": 10178,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 198,
- "id": 10179,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 198,
- "id": 10180,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 198,
- "id": 10181,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 198,
- "id": 10182,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 198,
- "id": 10183,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 198,
- "id": 10184,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 198,
- "id": 10185,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 198,
- "id": 10186,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 198,
- "id": 10187,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 198,
- "id": 10188,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 198,
- "id": 10189,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4119,
- "id": 10194,
- "width": 570,
- "height": 464
- },
- {
- "x": 570,
- "fileNum": 4119,
- "id": 10195,
- "width": 570,
- "height": 464
- },
- {
- "x": 1140,
- "fileNum": 4119,
- "id": 10196,
- "width": 570,
- "height": 464
- },
- {
- "y": 464,
- "fileNum": 4119,
- "id": 10197,
- "width": 570,
- "height": 464
- },
- {
- "x": 570,
- "y": 464,
- "fileNum": 4119,
- "id": 10198,
- "width": 570,
- "height": 464
- },
- {
- "x": 1140,
- "y": 464,
- "fileNum": 4119,
- "id": 10199,
- "width": 570,
- "height": 464
- },
- {
- "y": 928,
- "fileNum": 4119,
- "id": 10200,
- "width": 570,
- "height": 464
- },
- {
- "x": 570,
- "y": 928,
- "fileNum": 4119,
- "id": 10201,
- "width": 570,
- "height": 464
- },
- {
- "x": 1140,
- "y": 928,
- "fileNum": 4119,
- "id": 10202,
- "width": 570,
- "height": 464
- },
- {
- "y": 1392,
- "fileNum": 4119,
- "id": 10203,
- "width": 570,
- "height": 464
- },
- {
- "x": 570,
- "y": 1392,
- "fileNum": 4119,
- "id": 10204,
- "width": 570,
- "height": 464
- },
- {
- "x": 1140,
- "y": 1392,
- "fileNum": 4119,
- "id": 10205,
- "width": 570,
- "height": 464
- },
- {
- "fileNum": 4120,
- "id": 10206,
- "width": 576,
- "height": 564
- },
- {
- "x": 576,
- "fileNum": 4120,
- "id": 10207,
- "width": 576,
- "height": 564
- },
- {
- "x": 1152,
- "fileNum": 4120,
- "id": 10208,
- "width": 576,
- "height": 564
- },
- {
- "y": 564,
- "fileNum": 4120,
- "id": 10209,
- "width": 576,
- "height": 564
- },
- {
- "x": 576,
- "y": 564,
- "fileNum": 4120,
- "id": 10210,
- "width": 576,
- "height": 564
- },
- {
- "x": 1152,
- "y": 564,
- "fileNum": 4120,
- "id": 10211,
- "width": 576,
- "height": 564
- },
- {
- "y": 1128,
- "fileNum": 4120,
- "id": 10212,
- "width": 576,
- "height": 564
- },
- {
- "x": 576,
- "y": 1128,
- "fileNum": 4120,
- "id": 10213,
- "width": 576,
- "height": 564
- },
- {
- "x": 1152,
- "y": 1128,
- "fileNum": 4120,
- "id": 10214,
- "width": 576,
- "height": 564
- },
- {
- "y": 1692,
- "fileNum": 4120,
- "id": 10215,
- "width": 576,
- "height": 564
- },
- {
- "x": 576,
- "y": 1692,
- "fileNum": 4120,
- "id": 10216,
- "width": 576,
- "height": 564
- },
- {
- "x": 1152,
- "y": 1692,
- "fileNum": 4120,
- "id": 10217,
- "width": 576,
- "height": 564
- },
- {
- "fileNum": 4117,
- "id": 10218,
- "width": 746,
- "height": 472
- },
- {
- "x": 746,
- "fileNum": 4117,
- "id": 10219,
- "width": 746,
- "height": 472
- },
- {
- "x": 1492,
- "fileNum": 4117,
- "id": 10220,
- "width": 746,
- "height": 472
- },
- {
- "y": 472,
- "fileNum": 4117,
- "id": 10221,
- "width": 746,
- "height": 472
- },
- {
- "x": 746,
- "y": 472,
- "fileNum": 4117,
- "id": 10222,
- "width": 746,
- "height": 472
- },
- {
- "x": 1492,
- "y": 472,
- "fileNum": 4117,
- "id": 10223,
- "width": 746,
- "height": 472
- },
- {
- "y": 944,
- "fileNum": 4117,
- "id": 10224,
- "width": 746,
- "height": 472
- },
- {
- "x": 746,
- "y": 944,
- "fileNum": 4117,
- "id": 10225,
- "width": 746,
- "height": 472
- },
- {
- "x": 1492,
- "y": 944,
- "fileNum": 4117,
- "id": 10226,
- "width": 746,
- "height": 472
- },
- {
- "y": 1416,
- "fileNum": 4117,
- "id": 10227,
- "width": 746,
- "height": 472
- },
- {
- "x": 746,
- "y": 1416,
- "fileNum": 4117,
- "id": 10228,
- "width": 746,
- "height": 472
- },
- {
- "x": 1492,
- "y": 1416,
- "fileNum": 4117,
- "id": 10229,
- "width": 746,
- "height": 472
- },
- {
- "fileNum": 4118,
- "id": 10230,
- "width": 746,
- "height": 472
- },
- {
- "x": 746,
- "fileNum": 4118,
- "id": 10231,
- "width": 746,
- "height": 472
- },
- {
- "x": 1492,
- "fileNum": 4118,
- "id": 10232,
- "width": 746,
- "height": 472
- },
- {
- "y": 472,
- "fileNum": 4118,
- "id": 10233,
- "width": 746,
- "height": 472
- },
- {
- "x": 746,
- "y": 472,
- "fileNum": 4118,
- "id": 10234,
- "width": 746,
- "height": 472
- },
- {
- "x": 1492,
- "y": 472,
- "fileNum": 4118,
- "id": 10235,
- "width": 746,
- "height": 472
- },
- {
- "y": 944,
- "fileNum": 4118,
- "id": 10236,
- "width": 746,
- "height": 472
- },
- {
- "x": 746,
- "y": 944,
- "fileNum": 4118,
- "id": 10237,
- "width": 746,
- "height": 472
- },
- {
- "x": 1492,
- "y": 944,
- "fileNum": 4118,
- "id": 10238,
- "width": 746,
- "height": 472
- },
- {
- "y": 1416,
- "fileNum": 4118,
- "id": 10239,
- "width": 746,
- "height": 472
- },
- {
- "x": 746,
- "y": 1416,
- "fileNum": 4118,
- "id": 10240,
- "width": 746,
- "height": 472
- },
- {
- "x": 1492,
- "y": 1416,
- "fileNum": 4118,
- "id": 10241,
- "width": 746,
- "height": 472
- },
- {
- "fileNum": 16059,
- "id": 10246,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16059,
- "id": 10247,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16059,
- "id": 10248,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16059,
- "id": 10249,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16059,
- "id": 10250,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16059,
- "id": 10251,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16059,
- "id": 10252,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16059,
- "id": 10253,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16059,
- "id": 10254,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16059,
- "id": 10255,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16059,
- "id": 10256,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16059,
- "id": 10257,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16059,
- "id": 10258,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16059,
- "id": 10259,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16059,
- "id": 10260,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16059,
- "id": 10261,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16059,
- "id": 10262,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16059,
- "id": 10263,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16059,
- "id": 10264,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16059,
- "id": 10265,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16059,
- "id": 10266,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16059,
- "id": 10267,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16060,
- "id": 10272,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16060,
- "id": 10273,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16060,
- "id": 10274,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16060,
- "id": 10275,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16060,
- "id": 10276,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16060,
- "id": 10277,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16060,
- "id": 10278,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16060,
- "id": 10279,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16060,
- "id": 10280,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16060,
- "id": 10281,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16060,
- "id": 10282,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16060,
- "id": 10283,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16060,
- "id": 10284,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16060,
- "id": 10285,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16060,
- "id": 10286,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16060,
- "id": 10287,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16060,
- "id": 10288,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16060,
- "id": 10289,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16060,
- "id": 10290,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16060,
- "id": 10291,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16060,
- "id": 10292,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16060,
- "id": 10293,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16061,
- "id": 10298,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16061,
- "id": 10299,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16061,
- "id": 10300,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16061,
- "id": 10301,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16061,
- "id": 10302,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16061,
- "id": 10303,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16061,
- "id": 10304,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16061,
- "id": 10305,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16061,
- "id": 10306,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16061,
- "id": 10307,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16061,
- "id": 10308,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16061,
- "id": 10309,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16061,
- "id": 10310,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16061,
- "id": 10311,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16061,
- "id": 10312,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16061,
- "id": 10313,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16061,
- "id": 10314,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16061,
- "id": 10315,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16061,
- "id": 10316,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16061,
- "id": 10317,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16061,
- "id": 10318,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16061,
- "id": 10319,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4121,
- "id": 10324,
- "width": 100,
- "height": 150
- },
- {
- "x": 100,
- "fileNum": 4121,
- "id": 10325,
- "width": 100,
- "height": 150
- },
- {
- "x": 200,
- "fileNum": 4121,
- "id": 10326,
- "width": 100,
- "height": 150
- },
- {
- "x": 300,
- "fileNum": 4121,
- "id": 10327,
- "width": 100,
- "height": 150
- },
- {
- "x": 400,
- "fileNum": 4121,
- "id": 10328,
- "width": 100,
- "height": 150
- },
- {
- "x": 500,
- "fileNum": 4121,
- "id": 10329,
- "width": 100,
- "height": 150
- },
- {
- "x": 600,
- "fileNum": 4121,
- "id": 10330,
- "width": 100,
- "height": 150
- },
- {
- "x": 700,
- "fileNum": 4121,
- "id": 10331,
- "width": 100,
- "height": 150
- },
- {
- "x": 800,
- "fileNum": 4121,
- "id": 10332,
- "width": 100,
- "height": 150
- },
- {
- "y": 150,
- "fileNum": 4121,
- "id": 10333,
- "width": 100,
- "height": 150
- },
- {
- "x": 100,
- "y": 150,
- "fileNum": 4121,
- "id": 10334,
- "width": 100,
- "height": 150
- },
- {
- "x": 200,
- "y": 150,
- "fileNum": 4121,
- "id": 10335,
- "width": 100,
- "height": 150
- },
- {
- "x": 300,
- "y": 150,
- "fileNum": 4121,
- "id": 10336,
- "width": 100,
- "height": 150
- },
- {
- "x": 400,
- "y": 150,
- "fileNum": 4121,
- "id": 10337,
- "width": 100,
- "height": 150
- },
- {
- "x": 500,
- "y": 150,
- "fileNum": 4121,
- "id": 10338,
- "width": 100,
- "height": 150
- },
- {
- "x": 600,
- "y": 150,
- "fileNum": 4121,
- "id": 10339,
- "width": 100,
- "height": 150
- },
- {
- "x": 700,
- "y": 150,
- "fileNum": 4121,
- "id": 10340,
- "width": 100,
- "height": 150
- },
- {
- "x": 800,
- "y": 150,
- "fileNum": 4121,
- "id": 10341,
- "width": 100,
- "height": 150
- },
- {
- "y": 300,
- "fileNum": 4121,
- "id": 10342,
- "width": 118,
- "height": 150
- },
- {
- "x": 118,
- "y": 300,
- "fileNum": 4121,
- "id": 10343,
- "width": 118,
- "height": 150
- },
- {
- "x": 236,
- "y": 300,
- "fileNum": 4121,
- "id": 10344,
- "width": 118,
- "height": 150
- },
- {
- "x": 354,
- "y": 300,
- "fileNum": 4121,
- "id": 10345,
- "width": 118,
- "height": 150
- },
- {
- "x": 472,
- "y": 300,
- "fileNum": 4121,
- "id": 10346,
- "width": 118,
- "height": 150
- },
- {
- "x": 590,
- "y": 300,
- "fileNum": 4121,
- "id": 10347,
- "width": 118,
- "height": 150
- },
- {
- "x": 708,
- "y": 300,
- "fileNum": 4121,
- "id": 10348,
- "width": 118,
- "height": 150
- },
- {
- "x": 826,
- "y": 300,
- "fileNum": 4121,
- "id": 10349,
- "width": 118,
- "height": 150
- },
- {
- "x": 944,
- "y": 300,
- "fileNum": 4121,
- "id": 10350,
- "width": 118,
- "height": 150
- },
- {
- "y": 450,
- "fileNum": 4121,
- "id": 10351,
- "width": 118,
- "height": 150
- },
- {
- "x": 118,
- "y": 450,
- "fileNum": 4121,
- "id": 10352,
- "width": 118,
- "height": 150
- },
- {
- "x": 236,
- "y": 450,
- "fileNum": 4121,
- "id": 10353,
- "width": 118,
- "height": 150
- },
- {
- "x": 354,
- "y": 450,
- "fileNum": 4121,
- "id": 10354,
- "width": 118,
- "height": 150
- },
- {
- "x": 472,
- "y": 450,
- "fileNum": 4121,
- "id": 10355,
- "width": 118,
- "height": 150
- },
- {
- "x": 590,
- "y": 450,
- "fileNum": 4121,
- "id": 10356,
- "width": 118,
- "height": 150
- },
- {
- "x": 708,
- "y": 450,
- "fileNum": 4121,
- "id": 10357,
- "width": 118,
- "height": 150
- },
- {
- "x": 826,
- "y": 450,
- "fileNum": 4121,
- "id": 10358,
- "width": 118,
- "height": 150
- },
- {
- "x": 944,
- "y": 450,
- "fileNum": 4121,
- "id": 10359,
- "width": 118,
- "height": 150
- },
- {
- "fileNum": 17008,
- "id": 10364,
- "width": 192,
- "height": 132
- },
- {
- "x": 192,
- "fileNum": 17008,
- "id": 10365,
- "width": 192,
- "height": 132
- },
- {
- "x": 384,
- "fileNum": 17008,
- "id": 10366,
- "width": 192,
- "height": 132
- },
- {
- "x": 576,
- "fileNum": 17008,
- "id": 10367,
- "width": 192,
- "height": 132
- },
- {
- "y": 132,
- "fileNum": 17008,
- "id": 10368,
- "width": 192,
- "height": 132
- },
- {
- "x": 192,
- "y": 132,
- "fileNum": 17008,
- "id": 10369,
- "width": 192,
- "height": 132
- },
- {
- "x": 384,
- "y": 132,
- "fileNum": 17008,
- "id": 10370,
- "width": 192,
- "height": 132
- },
- {
- "x": 576,
- "y": 132,
- "fileNum": 17008,
- "id": 10371,
- "width": 192,
- "height": 132
- },
- {
- "y": 264,
- "fileNum": 17008,
- "id": 10372,
- "width": 132,
- "height": 188
- },
- {
- "x": 132,
- "y": 264,
- "fileNum": 17008,
- "id": 10373,
- "width": 132,
- "height": 188
- },
- {
- "x": 264,
- "y": 264,
- "fileNum": 17008,
- "id": 10374,
- "width": 132,
- "height": 188
- },
- {
- "x": 396,
- "y": 264,
- "fileNum": 17008,
- "id": 10375,
- "width": 132,
- "height": 188
- },
- {
- "y": 452,
- "fileNum": 17008,
- "id": 10376,
- "width": 132,
- "height": 188
- },
- {
- "x": 132,
- "y": 452,
- "fileNum": 17008,
- "id": 10377,
- "width": 132,
- "height": 188
- },
- {
- "x": 264,
- "y": 454,
- "fileNum": 17008,
- "id": 10378,
- "width": 132,
- "height": 188
- },
- {
- "x": 396,
- "y": 452,
- "fileNum": 17008,
- "id": 10379,
- "width": 132,
- "height": 188
- },
- {
- "fileNum": 17009,
- "id": 10384,
- "width": 194,
- "height": 134
- },
- {
- "x": 194,
- "fileNum": 17009,
- "id": 10385,
- "width": 194,
- "height": 134
- },
- {
- "x": 388,
- "fileNum": 17009,
- "id": 10386,
- "width": 194,
- "height": 134
- },
- {
- "x": 582,
- "fileNum": 17009,
- "id": 10387,
- "width": 194,
- "height": 134
- },
- {
- "y": 134,
- "fileNum": 17009,
- "id": 10388,
- "width": 194,
- "height": 134
- },
- {
- "x": 194,
- "y": 134,
- "fileNum": 17009,
- "id": 10389,
- "width": 194,
- "height": 134
- },
- {
- "x": 388,
- "y": 134,
- "fileNum": 17009,
- "id": 10390,
- "width": 194,
- "height": 134
- },
- {
- "x": 582,
- "y": 134,
- "fileNum": 17009,
- "id": 10391,
- "width": 194,
- "height": 134
- },
- {
- "y": 268,
- "fileNum": 17009,
- "id": 10392,
- "width": 130,
- "height": 194
- },
- {
- "x": 130,
- "y": 268,
- "fileNum": 17009,
- "id": 10393,
- "width": 130,
- "height": 194
- },
- {
- "x": 260,
- "y": 268,
- "fileNum": 17009,
- "id": 10394,
- "width": 130,
- "height": 194
- },
- {
- "x": 390,
- "y": 268,
- "fileNum": 17009,
- "id": 10395,
- "width": 130,
- "height": 194
- },
- {
- "y": 462,
- "fileNum": 17009,
- "id": 10396,
- "width": 130,
- "height": 198
- },
- {
- "x": 130,
- "y": 462,
- "fileNum": 17009,
- "id": 10397,
- "width": 130,
- "height": 198
- },
- {
- "x": 260,
- "y": 462,
- "fileNum": 17009,
- "id": 10398,
- "width": 130,
- "height": 198
- },
- {
- "x": 390,
- "y": 462,
- "fileNum": 17009,
- "id": 10399,
- "width": 130,
- "height": 198
- },
- {
- "fileNum": 17010,
- "id": 10404,
- "width": 194,
- "height": 134
- },
- {
- "x": 194,
- "fileNum": 17010,
- "id": 10405,
- "width": 194,
- "height": 134
- },
- {
- "x": 388,
- "fileNum": 17010,
- "id": 10406,
- "width": 194,
- "height": 134
- },
- {
- "x": 582,
- "fileNum": 17010,
- "id": 10407,
- "width": 194,
- "height": 134
- },
- {
- "y": 134,
- "fileNum": 17010,
- "id": 10408,
- "width": 194,
- "height": 134
- },
- {
- "x": 194,
- "y": 134,
- "fileNum": 17010,
- "id": 10409,
- "width": 194,
- "height": 134
- },
- {
- "x": 388,
- "y": 134,
- "fileNum": 17010,
- "id": 10410,
- "width": 194,
- "height": 134
- },
- {
- "x": 582,
- "y": 134,
- "fileNum": 17010,
- "id": 10411,
- "width": 194,
- "height": 134
- },
- {
- "y": 268,
- "fileNum": 17010,
- "id": 10412,
- "width": 130,
- "height": 194
- },
- {
- "x": 130,
- "y": 268,
- "fileNum": 17010,
- "id": 10413,
- "width": 130,
- "height": 194
- },
- {
- "x": 260,
- "y": 268,
- "fileNum": 17010,
- "id": 10414,
- "width": 130,
- "height": 194
- },
- {
- "x": 390,
- "y": 268,
- "fileNum": 17010,
- "id": 10415,
- "width": 130,
- "height": 194
- },
- {
- "y": 462,
- "fileNum": 17010,
- "id": 10416,
- "width": 130,
- "height": 198
- },
- {
- "x": 130,
- "y": 462,
- "fileNum": 17010,
- "id": 10417,
- "width": 130,
- "height": 198
- },
- {
- "x": 260,
- "y": 462,
- "fileNum": 17010,
- "id": 10418,
- "width": 130,
- "height": 198
- },
- {
- "x": 390,
- "y": 462,
- "fileNum": 17010,
- "id": 10419,
- "width": 130,
- "height": 198
- },
- {
- "fileNum": 17011,
- "id": 10424,
- "width": 194,
- "height": 134
- },
- {
- "x": 194,
- "fileNum": 17011,
- "id": 10425,
- "width": 194,
- "height": 134
- },
- {
- "x": 388,
- "fileNum": 17011,
- "id": 10426,
- "width": 194,
- "height": 134
- },
- {
- "x": 582,
- "fileNum": 17011,
- "id": 10427,
- "width": 194,
- "height": 134
- },
- {
- "y": 134,
- "fileNum": 17011,
- "id": 10428,
- "width": 194,
- "height": 134
- },
- {
- "x": 194,
- "y": 134,
- "fileNum": 17011,
- "id": 10429,
- "width": 194,
- "height": 134
- },
- {
- "x": 388,
- "y": 134,
- "fileNum": 17011,
- "id": 10430,
- "width": 194,
- "height": 134
- },
- {
- "x": 582,
- "y": 134,
- "fileNum": 17011,
- "id": 10431,
- "width": 194,
- "height": 134
- },
- {
- "y": 268,
- "fileNum": 17011,
- "id": 10432,
- "width": 130,
- "height": 194
- },
- {
- "x": 130,
- "y": 268,
- "fileNum": 17011,
- "id": 10433,
- "width": 130,
- "height": 194
- },
- {
- "x": 260,
- "y": 268,
- "fileNum": 17011,
- "id": 10434,
- "width": 130,
- "height": 194
- },
- {
- "x": 390,
- "y": 268,
- "fileNum": 17011,
- "id": 10435,
- "width": 130,
- "height": 194
- },
- {
- "y": 462,
- "fileNum": 17011,
- "id": 10436,
- "width": 130,
- "height": 198
- },
- {
- "x": 130,
- "y": 462,
- "fileNum": 17011,
- "id": 10437,
- "width": 130,
- "height": 198
- },
- {
- "x": 260,
- "y": 462,
- "fileNum": 17011,
- "id": 10438,
- "width": 130,
- "height": 198
- },
- {
- "x": 390,
- "y": 462,
- "fileNum": 17011,
- "id": 10439,
- "width": 130,
- "height": 198
- },
- {
- "fileNum": 16064,
- "id": 10444,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16064,
- "id": 10445,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16064,
- "id": 10446,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16064,
- "id": 10447,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16064,
- "id": 10448,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16064,
- "id": 10449,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16064,
- "id": 10450,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16064,
- "id": 10451,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16064,
- "id": 10452,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16064,
- "id": 10453,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16064,
- "id": 10454,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16064,
- "id": 10455,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16064,
- "id": 10456,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16064,
- "id": 10457,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16064,
- "id": 10458,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16064,
- "id": 10459,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16064,
- "id": 10460,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16064,
- "id": 10461,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16064,
- "id": 10462,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16064,
- "id": 10463,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16064,
- "id": 10464,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16064,
- "id": 10465,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4138,
- "id": 10470,
- "width": 48,
- "height": 62
- },
- {
- "x": 48,
- "fileNum": 4138,
- "id": 10471,
- "width": 48,
- "height": 62
- },
- {
- "x": 96,
- "fileNum": 4138,
- "id": 10472,
- "width": 48,
- "height": 62
- },
- {
- "x": 144,
- "fileNum": 4138,
- "id": 10473,
- "width": 48,
- "height": 62
- },
- {
- "x": 192,
- "fileNum": 4138,
- "id": 10474,
- "width": 48,
- "height": 62
- },
- {
- "x": 240,
- "fileNum": 4138,
- "id": 10475,
- "width": 48,
- "height": 62
- },
- {
- "x": 288,
- "fileNum": 4138,
- "id": 10476,
- "width": 48,
- "height": 62
- },
- {
- "x": 336,
- "fileNum": 4138,
- "id": 10477,
- "width": 48,
- "height": 62
- },
- {
- "y": 62,
- "fileNum": 4138,
- "id": 10478,
- "width": 48,
- "height": 62
- },
- {
- "x": 48,
- "y": 62,
- "fileNum": 4138,
- "id": 10479,
- "width": 48,
- "height": 62
- },
- {
- "x": 96,
- "y": 62,
- "fileNum": 4138,
- "id": 10480,
- "width": 48,
- "height": 62
- },
- {
- "x": 144,
- "y": 62,
- "fileNum": 4138,
- "id": 10481,
- "width": 48,
- "height": 62
- },
- {
- "x": 192,
- "y": 62,
- "fileNum": 4138,
- "id": 10482,
- "width": 48,
- "height": 62
- },
- {
- "x": 240,
- "y": 62,
- "fileNum": 4138,
- "id": 10483,
- "width": 48,
- "height": 62
- },
- {
- "x": 288,
- "y": 62,
- "fileNum": 4138,
- "id": 10484,
- "width": 48,
- "height": 62
- },
- {
- "x": 336,
- "y": 62,
- "fileNum": 4138,
- "id": 10485,
- "width": 48,
- "height": 62
- },
- {
- "y": 124,
- "fileNum": 4138,
- "id": 10486,
- "width": 48,
- "height": 62
- },
- {
- "x": 48,
- "y": 124,
- "fileNum": 4138,
- "id": 10487,
- "width": 48,
- "height": 62
- },
- {
- "x": 96,
- "y": 124,
- "fileNum": 4138,
- "id": 10488,
- "width": 48,
- "height": 62
- },
- {
- "x": 144,
- "y": 124,
- "fileNum": 4138,
- "id": 10489,
- "width": 48,
- "height": 62
- },
- {
- "x": 192,
- "y": 124,
- "fileNum": 4138,
- "id": 10490,
- "width": 48,
- "height": 62
- },
- {
- "x": 240,
- "y": 124,
- "fileNum": 4138,
- "id": 10491,
- "width": 48,
- "height": 62
- },
- {
- "x": 288,
- "y": 124,
- "fileNum": 4138,
- "id": 10492,
- "width": 48,
- "height": 62
- },
- {
- "x": 336,
- "y": 124,
- "fileNum": 4138,
- "id": 10493,
- "width": 48,
- "height": 62
- },
- {
- "y": 186,
- "fileNum": 4138,
- "id": 10494,
- "width": 48,
- "height": 62
- },
- {
- "x": 48,
- "y": 186,
- "fileNum": 4138,
- "id": 10495,
- "width": 48,
- "height": 62
- },
- {
- "x": 96,
- "y": 186,
- "fileNum": 4138,
- "id": 10496,
- "width": 48,
- "height": 62
- },
- {
- "x": 144,
- "y": 186,
- "fileNum": 4138,
- "id": 10497,
- "width": 48,
- "height": 62
- },
- {
- "x": 192,
- "y": 186,
- "fileNum": 4138,
- "id": 10498,
- "width": 48,
- "height": 62
- },
- {
- "x": 240,
- "y": 186,
- "fileNum": 4138,
- "id": 10499,
- "width": 48,
- "height": 62
- },
- {
- "x": 288,
- "y": 186,
- "fileNum": 4138,
- "id": 10500,
- "width": 48,
- "height": 62
- },
- {
- "x": 336,
- "y": 186,
- "fileNum": 4138,
- "id": 10501,
- "width": 48,
- "height": 62
- },
- {
- "fileNum": 348,
- "id": 10506,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 348,
- "id": 10507,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 348,
- "id": 10508,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 348,
- "id": 10509,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 348,
- "id": 10510,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 348,
- "id": 10511,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 348,
- "id": 10512,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 348,
- "id": 10513,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 348,
- "id": 10514,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 348,
- "id": 10515,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 348,
- "id": 10516,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 348,
- "id": 10517,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 348,
- "id": 10518,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 348,
- "id": 10519,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 348,
- "id": 10520,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 348,
- "id": 10521,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 348,
- "id": 10522,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 348,
- "id": 10523,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 348,
- "id": 10524,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 348,
- "id": 10525,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 348,
- "id": 10526,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 348,
- "id": 10527,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 350,
- "id": 10532,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 350,
- "id": 10533,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 350,
- "id": 10534,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 350,
- "id": 10535,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 350,
- "id": 10536,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 350,
- "id": 10537,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 350,
- "id": 10538,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 350,
- "id": 10539,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 350,
- "id": 10540,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 350,
- "id": 10541,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 350,
- "id": 10542,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 350,
- "id": 10543,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 350,
- "id": 10544,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 350,
- "id": 10545,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 350,
- "id": 10546,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 350,
- "id": 10547,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 350,
- "id": 10548,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 350,
- "id": 10549,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 350,
- "id": 10550,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 350,
- "id": 10551,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 350,
- "id": 10552,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 350,
- "id": 10553,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 351,
- "id": 10558,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 351,
- "id": 10559,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 351,
- "id": 10560,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 351,
- "id": 10561,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 351,
- "id": 10562,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 351,
- "id": 10563,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 351,
- "id": 10564,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 351,
- "id": 10565,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 351,
- "id": 10566,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 351,
- "id": 10567,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 351,
- "id": 10568,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 351,
- "id": 10569,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 351,
- "id": 10570,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 351,
- "id": 10571,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 351,
- "id": 10572,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 351,
- "id": 10573,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 351,
- "id": 10574,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 351,
- "id": 10575,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 351,
- "id": 10576,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 351,
- "id": 10577,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 351,
- "id": 10578,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 351,
- "id": 10579,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 352,
- "id": 10584,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 352,
- "id": 10585,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 352,
- "id": 10586,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 352,
- "id": 10587,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 352,
- "id": 10588,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 352,
- "id": 10589,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 352,
- "id": 10590,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 352,
- "id": 10591,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 352,
- "id": 10592,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 352,
- "id": 10593,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 352,
- "id": 10594,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 352,
- "id": 10595,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 352,
- "id": 10596,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 352,
- "id": 10597,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 352,
- "id": 10598,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 352,
- "id": 10599,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 352,
- "id": 10600,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 352,
- "id": 10601,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 352,
- "id": 10602,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 352,
- "id": 10603,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 352,
- "id": 10604,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 352,
- "id": 10605,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 353,
- "id": 10610,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 353,
- "id": 10611,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 353,
- "id": 10612,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 353,
- "id": 10613,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 353,
- "id": 10614,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 353,
- "id": 10615,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 353,
- "id": 10616,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 353,
- "id": 10617,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 353,
- "id": 10618,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 353,
- "id": 10619,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 353,
- "id": 10620,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 353,
- "id": 10621,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 353,
- "id": 10622,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 353,
- "id": 10623,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 353,
- "id": 10624,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 353,
- "id": 10625,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 353,
- "id": 10626,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 353,
- "id": 10627,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 353,
- "id": 10628,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 353,
- "id": 10629,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 353,
- "id": 10630,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 353,
- "id": 10631,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 354,
- "id": 10636,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 354,
- "id": 10637,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 354,
- "id": 10638,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 354,
- "id": 10639,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 354,
- "id": 10640,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 354,
- "id": 10641,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 354,
- "id": 10642,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 354,
- "id": 10643,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 354,
- "id": 10644,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 354,
- "id": 10645,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 354,
- "id": 10646,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 354,
- "id": 10647,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 354,
- "id": 10648,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 354,
- "id": 10649,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 354,
- "id": 10650,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 354,
- "id": 10651,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 354,
- "id": 10652,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 354,
- "id": 10653,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 354,
- "id": 10654,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 354,
- "id": 10655,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 354,
- "id": 10656,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 354,
- "id": 10657,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 355,
- "id": 10662,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 355,
- "id": 10663,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 355,
- "id": 10664,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 355,
- "id": 10665,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 355,
- "id": 10666,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 355,
- "id": 10667,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 355,
- "id": 10668,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 355,
- "id": 10669,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 355,
- "id": 10670,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 355,
- "id": 10671,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 355,
- "id": 10672,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 355,
- "id": 10673,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 355,
- "id": 10674,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 355,
- "id": 10675,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 355,
- "id": 10676,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 355,
- "id": 10677,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 355,
- "id": 10678,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 355,
- "id": 10679,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 355,
- "id": 10680,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 355,
- "id": 10681,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 355,
- "id": 10682,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 355,
- "id": 10683,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 356,
- "id": 10688,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 356,
- "id": 10689,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 356,
- "id": 10690,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 356,
- "id": 10691,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 356,
- "id": 10692,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 356,
- "id": 10693,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 356,
- "id": 10694,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 356,
- "id": 10695,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 356,
- "id": 10696,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 356,
- "id": 10697,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 356,
- "id": 10698,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 356,
- "id": 10699,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 356,
- "id": 10700,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 356,
- "id": 10701,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 356,
- "id": 10702,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 356,
- "id": 10703,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 356,
- "id": 10704,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 356,
- "id": 10705,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 356,
- "id": 10706,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 356,
- "id": 10707,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 356,
- "id": 10708,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 356,
- "id": 10709,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 357,
- "id": 10714,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 357,
- "id": 10715,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 357,
- "id": 10716,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 357,
- "id": 10717,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 357,
- "id": 10718,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 357,
- "id": 10719,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 357,
- "id": 10720,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 357,
- "id": 10721,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 357,
- "id": 10722,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 357,
- "id": 10723,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 357,
- "id": 10724,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 357,
- "id": 10725,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 357,
- "id": 10726,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 357,
- "id": 10727,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 357,
- "id": 10728,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 357,
- "id": 10729,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 357,
- "id": 10730,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 357,
- "id": 10731,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 357,
- "id": 10732,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 357,
- "id": 10733,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 357,
- "id": 10734,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 357,
- "id": 10735,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 358,
- "id": 10740,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 358,
- "id": 10741,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 358,
- "id": 10742,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 358,
- "id": 10743,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 358,
- "id": 10744,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 358,
- "id": 10745,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 358,
- "id": 10746,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 358,
- "id": 10747,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 358,
- "id": 10748,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 358,
- "id": 10749,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 358,
- "id": 10750,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 358,
- "id": 10751,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 358,
- "id": 10752,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 358,
- "id": 10753,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 358,
- "id": 10754,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 358,
- "id": 10755,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 358,
- "id": 10756,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 358,
- "id": 10757,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 358,
- "id": 10758,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 358,
- "id": 10759,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 358,
- "id": 10760,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 358,
- "id": 10761,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4140,
- "id": 10766,
- "width": 98,
- "height": 400
- },
- {
- "x": 98,
- "fileNum": 4140,
- "id": 10767,
- "width": 98,
- "height": 400
- },
- {
- "x": 196,
- "fileNum": 4140,
- "id": 10768,
- "width": 98,
- "height": 400
- },
- {
- "x": 294,
- "fileNum": 4140,
- "id": 10769,
- "width": 98,
- "height": 400
- },
- {
- "x": 392,
- "fileNum": 4140,
- "id": 10770,
- "width": 98,
- "height": 400
- },
- {
- "fileNum": 4141,
- "id": 10771,
- "width": 98,
- "height": 400
- },
- {
- "x": 98,
- "fileNum": 4141,
- "id": 10772,
- "width": 98,
- "height": 400
- },
- {
- "x": 196,
- "fileNum": 4141,
- "id": 10773,
- "width": 98,
- "height": 400
- },
- {
- "x": 294,
- "fileNum": 4141,
- "id": 10774,
- "width": 98,
- "height": 400
- },
- {
- "x": 392,
- "fileNum": 4141,
- "id": 10775,
- "width": 98,
- "height": 400
- },
- {
- "fileNum": 4139,
- "id": 10776,
- "width": 656,
- "height": 130
- },
- {
- "y": 130,
- "fileNum": 4139,
- "id": 10777,
- "width": 656,
- "height": 130
- },
- {
- "y": 260,
- "fileNum": 4139,
- "id": 10778,
- "width": 656,
- "height": 130
- },
- {
- "y": 390,
- "fileNum": 4139,
- "id": 10779,
- "width": 656,
- "height": 130
- },
- {
- "y": 520,
- "fileNum": 4139,
- "id": 10780,
- "width": 656,
- "height": 130
- },
- {
- "fileNum": 4142,
- "id": 10781,
- "width": 656,
- "height": 130
- },
- {
- "y": 130,
- "fileNum": 4142,
- "id": 10782,
- "width": 656,
- "height": 130
- },
- {
- "y": 260,
- "fileNum": 4142,
- "id": 10783,
- "width": 656,
- "height": 130
- },
- {
- "y": 390,
- "fileNum": 4142,
- "id": 10784,
- "width": 656,
- "height": 130
- },
- {
- "y": 520,
- "fileNum": 4142,
- "id": 10785,
- "width": 656,
- "height": 130
- },
- {
- "fileNum": 360,
- "id": 10790,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 360,
- "id": 10791,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 360,
- "id": 10792,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 360,
- "id": 10793,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 360,
- "id": 10794,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 360,
- "id": 10795,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 360,
- "id": 10796,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 360,
- "id": 10797,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 360,
- "id": 10798,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 360,
- "id": 10799,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 360,
- "id": 10800,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 360,
- "id": 10801,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 360,
- "id": 10802,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 360,
- "id": 10803,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 360,
- "id": 10804,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 360,
- "id": 10805,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 360,
- "id": 10806,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 360,
- "id": 10807,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 360,
- "id": 10808,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 360,
- "id": 10809,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 360,
- "id": 10810,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 360,
- "id": 10811,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 361,
- "id": 10816,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 361,
- "id": 10817,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 361,
- "id": 10818,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 361,
- "id": 10819,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 361,
- "id": 10820,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 361,
- "id": 10821,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 361,
- "id": 10822,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 361,
- "id": 10823,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 361,
- "id": 10824,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 361,
- "id": 10825,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 361,
- "id": 10826,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 361,
- "id": 10827,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 361,
- "id": 10828,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 361,
- "id": 10829,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 361,
- "id": 10830,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 361,
- "id": 10831,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 361,
- "id": 10832,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 361,
- "id": 10833,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 361,
- "id": 10834,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 361,
- "id": 10835,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 361,
- "id": 10836,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 361,
- "id": 10837,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 362,
- "id": 10842,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 362,
- "id": 10843,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 362,
- "id": 10844,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 362,
- "id": 10845,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 362,
- "id": 10846,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 362,
- "id": 10847,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 362,
- "id": 10848,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 362,
- "id": 10849,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 362,
- "id": 10850,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 362,
- "id": 10851,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 362,
- "id": 10852,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 362,
- "id": 10853,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 362,
- "id": 10854,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 362,
- "id": 10855,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 362,
- "id": 10856,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 362,
- "id": 10857,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 362,
- "id": 10858,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 362,
- "id": 10859,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 362,
- "id": 10860,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 362,
- "id": 10861,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 362,
- "id": 10862,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 362,
- "id": 10863,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2183,
- "id": 10868,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2183,
- "id": 10869,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2183,
- "id": 10870,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2183,
- "id": 10871,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2184,
- "id": 10872,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2184,
- "id": 10873,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2184,
- "id": 10874,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2184,
- "id": 10875,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2185,
- "id": 10876,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2185,
- "id": 10877,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2185,
- "id": 10878,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2185,
- "id": 10879,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2186,
- "id": 10880,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2186,
- "id": 10881,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2186,
- "id": 10882,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2186,
- "id": 10883,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2187,
- "id": 10884,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2187,
- "id": 10885,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2187,
- "id": 10886,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2187,
- "id": 10887,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2188,
- "id": 10888,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2188,
- "id": 10889,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2188,
- "id": 10890,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2188,
- "id": 10891,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 364,
- "id": 10893,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 364,
- "id": 10894,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 364,
- "id": 10895,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 364,
- "id": 10896,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 364,
- "id": 10897,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 364,
- "id": 10898,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 364,
- "id": 10899,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 364,
- "id": 10900,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 364,
- "id": 10901,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 364,
- "id": 10902,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 364,
- "id": 10903,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 364,
- "id": 10904,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 364,
- "id": 10905,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 364,
- "id": 10906,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 364,
- "id": 10907,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 364,
- "id": 10908,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 364,
- "id": 10909,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 364,
- "id": 10910,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 364,
- "id": 10911,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 364,
- "id": 10912,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 364,
- "id": 10913,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 364,
- "id": 10914,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 365,
- "id": 10919,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 365,
- "id": 10920,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 365,
- "id": 10921,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 365,
- "id": 10922,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 365,
- "id": 10923,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 365,
- "id": 10924,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 365,
- "id": 10925,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 365,
- "id": 10926,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 365,
- "id": 10927,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 365,
- "id": 10928,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 365,
- "id": 10929,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 365,
- "id": 10930,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 365,
- "id": 10931,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 365,
- "id": 10932,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 365,
- "id": 10933,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 365,
- "id": 10934,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 365,
- "id": 10935,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 365,
- "id": 10936,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 365,
- "id": 10937,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 365,
- "id": 10938,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 365,
- "id": 10939,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 365,
- "id": 10940,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 366,
- "id": 10945,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 366,
- "id": 10946,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 366,
- "id": 10947,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 366,
- "id": 10948,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 366,
- "id": 10949,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 366,
- "id": 10950,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 366,
- "id": 10951,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 366,
- "id": 10952,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 366,
- "id": 10953,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 366,
- "id": 10954,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 366,
- "id": 10955,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 366,
- "id": 10956,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 366,
- "id": 10957,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 366,
- "id": 10958,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 366,
- "id": 10959,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 366,
- "id": 10960,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 366,
- "id": 10961,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 366,
- "id": 10962,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 366,
- "id": 10963,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 366,
- "id": 10964,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 366,
- "id": 10965,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 366,
- "id": 10966,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 368,
- "id": 10971,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 368,
- "id": 10972,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 368,
- "id": 10973,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 368,
- "id": 10974,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 368,
- "id": 10975,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 368,
- "id": 10976,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 368,
- "id": 10977,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 368,
- "id": 10978,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 368,
- "id": 10979,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 368,
- "id": 10980,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 368,
- "id": 10981,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 368,
- "id": 10982,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 368,
- "id": 10983,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 368,
- "id": 10984,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 368,
- "id": 10985,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 368,
- "id": 10986,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 368,
- "id": 10987,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 368,
- "id": 10988,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 368,
- "id": 10989,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 368,
- "id": 10990,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 368,
- "id": 10991,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 368,
- "id": 10992,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 369,
- "id": 10997,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 369,
- "id": 10998,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 369,
- "id": 10999,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 369,
- "id": 11000,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 369,
- "id": 11001,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 369,
- "id": 11002,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 369,
- "id": 11003,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 369,
- "id": 11004,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 369,
- "id": 11005,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 369,
- "id": 11006,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 369,
- "id": 11007,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 369,
- "id": 11008,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 369,
- "id": 11009,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 369,
- "id": 11010,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 369,
- "id": 11011,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 369,
- "id": 11012,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 369,
- "id": 11013,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 369,
- "id": 11014,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 369,
- "id": 11015,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 369,
- "id": 11016,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 369,
- "id": 11017,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 369,
- "id": 11018,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 370,
- "id": 11023,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 370,
- "id": 11024,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 370,
- "id": 11025,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 370,
- "id": 11026,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 370,
- "id": 11027,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 370,
- "id": 11028,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 370,
- "id": 11029,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 370,
- "id": 11030,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 370,
- "id": 11031,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 370,
- "id": 11032,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 370,
- "id": 11033,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 370,
- "id": 11034,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 370,
- "id": 11035,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 370,
- "id": 11036,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 370,
- "id": 11037,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 370,
- "id": 11038,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 370,
- "id": 11039,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 370,
- "id": 11040,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 370,
- "id": 11041,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 370,
- "id": 11042,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 370,
- "id": 11043,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 370,
- "id": 11044,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 371,
- "id": 11049,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 371,
- "id": 11050,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 371,
- "id": 11051,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 371,
- "id": 11052,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 371,
- "id": 11053,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 371,
- "id": 11054,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 371,
- "id": 11055,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 371,
- "id": 11056,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 371,
- "id": 11057,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 371,
- "id": 11058,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 371,
- "id": 11059,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 371,
- "id": 11060,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 371,
- "id": 11061,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 371,
- "id": 11062,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 371,
- "id": 11063,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 371,
- "id": 11064,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 371,
- "id": 11065,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 371,
- "id": 11066,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 371,
- "id": 11067,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 371,
- "id": 11068,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 371,
- "id": 11069,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 371,
- "id": 11070,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 372,
- "id": 11075,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 372,
- "id": 11076,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 372,
- "id": 11077,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 372,
- "id": 11078,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 372,
- "id": 11079,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 372,
- "id": 11080,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 372,
- "id": 11081,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 372,
- "id": 11082,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 372,
- "id": 11083,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 372,
- "id": 11084,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 372,
- "id": 11085,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 372,
- "id": 11086,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 372,
- "id": 11087,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 372,
- "id": 11088,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 372,
- "id": 11089,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 372,
- "id": 11090,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 372,
- "id": 11091,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 372,
- "id": 11092,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 372,
- "id": 11093,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 372,
- "id": 11094,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 372,
- "id": 11095,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 372,
- "id": 11096,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 373,
- "id": 11101,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 373,
- "id": 11102,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 373,
- "id": 11103,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 373,
- "id": 11104,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 373,
- "id": 11105,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 373,
- "id": 11106,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 373,
- "id": 11107,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 373,
- "id": 11108,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 373,
- "id": 11109,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 373,
- "id": 11110,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 373,
- "id": 11111,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 373,
- "id": 11112,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 373,
- "id": 11113,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 373,
- "id": 11114,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 373,
- "id": 11115,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 373,
- "id": 11116,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 373,
- "id": 11117,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 373,
- "id": 11118,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 373,
- "id": 11119,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 373,
- "id": 11120,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 373,
- "id": 11121,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 373,
- "id": 11122,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 374,
- "id": 11127,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 374,
- "id": 11128,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 374,
- "id": 11129,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 374,
- "id": 11130,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 374,
- "id": 11131,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 374,
- "id": 11132,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 374,
- "id": 11133,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 374,
- "id": 11134,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 374,
- "id": 11135,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 374,
- "id": 11136,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 374,
- "id": 11137,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 374,
- "id": 11138,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 374,
- "id": 11139,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 374,
- "id": 11140,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 374,
- "id": 11141,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 374,
- "id": 11142,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 374,
- "id": 11143,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 374,
- "id": 11144,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 374,
- "id": 11145,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 374,
- "id": 11146,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 374,
- "id": 11147,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 374,
- "id": 11148,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 375,
- "id": 11153,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 375,
- "id": 11154,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 375,
- "id": 11155,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 375,
- "id": 11156,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 375,
- "id": 11157,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 375,
- "id": 11158,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 375,
- "id": 11159,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 375,
- "id": 11160,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 375,
- "id": 11161,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 375,
- "id": 11162,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 375,
- "id": 11163,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 375,
- "id": 11164,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 375,
- "id": 11165,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 375,
- "id": 11166,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 375,
- "id": 11167,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 375,
- "id": 11168,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 375,
- "id": 11169,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 375,
- "id": 11170,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 375,
- "id": 11171,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 375,
- "id": 11172,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 375,
- "id": 11173,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 375,
- "id": 11174,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 376,
- "id": 11179,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 376,
- "id": 11180,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 376,
- "id": 11181,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 376,
- "id": 11182,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 376,
- "id": 11183,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 376,
- "id": 11184,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 376,
- "id": 11185,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 376,
- "id": 11186,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 376,
- "id": 11187,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 376,
- "id": 11188,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 376,
- "id": 11189,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 376,
- "id": 11190,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 376,
- "id": 11191,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 376,
- "id": 11192,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 376,
- "id": 11193,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 376,
- "id": 11194,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 376,
- "id": 11195,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 376,
- "id": 11196,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 376,
- "id": 11197,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 376,
- "id": 11198,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 376,
- "id": 11199,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 376,
- "id": 11200,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 377,
- "id": 11205,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 377,
- "id": 11206,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 377,
- "id": 11207,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 377,
- "id": 11208,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 377,
- "id": 11209,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 377,
- "id": 11210,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 377,
- "id": 11211,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 377,
- "id": 11212,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 377,
- "id": 11213,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 377,
- "id": 11214,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 377,
- "id": 11215,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 377,
- "id": 11216,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 377,
- "id": 11217,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 377,
- "id": 11218,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 377,
- "id": 11219,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 377,
- "id": 11220,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 377,
- "id": 11221,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 377,
- "id": 11222,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 377,
- "id": 11223,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 377,
- "id": 11224,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 377,
- "id": 11225,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 377,
- "id": 11226,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 379,
- "id": 11231,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 379,
- "id": 11232,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 379,
- "id": 11233,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 379,
- "id": 11234,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 379,
- "id": 11235,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 379,
- "id": 11236,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 379,
- "id": 11237,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 379,
- "id": 11238,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 379,
- "id": 11239,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 379,
- "id": 11240,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 379,
- "id": 11241,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 379,
- "id": 11242,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 379,
- "id": 11243,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 379,
- "id": 11244,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 379,
- "id": 11245,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 379,
- "id": 11246,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 379,
- "id": 11247,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 379,
- "id": 11248,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 379,
- "id": 11249,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 379,
- "id": 11250,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 379,
- "id": 11251,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 379,
- "id": 11252,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 380,
- "id": 11257,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 380,
- "id": 11258,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 380,
- "id": 11259,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 380,
- "id": 11260,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 380,
- "id": 11261,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 380,
- "id": 11262,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 380,
- "id": 11263,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 380,
- "id": 11264,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 380,
- "id": 11265,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 380,
- "id": 11266,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 380,
- "id": 11267,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 380,
- "id": 11268,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 380,
- "id": 11269,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 380,
- "id": 11270,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 380,
- "id": 11271,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 380,
- "id": 11272,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 380,
- "id": 11273,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 380,
- "id": 11274,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 380,
- "id": 11275,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 380,
- "id": 11276,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 380,
- "id": 11277,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 380,
- "id": 11278,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 381,
- "id": 11283,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 381,
- "id": 11284,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 381,
- "id": 11285,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 381,
- "id": 11286,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 381,
- "id": 11287,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 381,
- "id": 11288,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 381,
- "id": 11289,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 381,
- "id": 11290,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 381,
- "id": 11291,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 381,
- "id": 11292,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 381,
- "id": 11293,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 381,
- "id": 11294,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 381,
- "id": 11295,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 381,
- "id": 11296,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 381,
- "id": 11297,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 381,
- "id": 11298,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 381,
- "id": 11299,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 381,
- "id": 11300,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 381,
- "id": 11301,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 381,
- "id": 11302,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 381,
- "id": 11303,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 381,
- "id": 11304,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 382,
- "id": 11309,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 382,
- "id": 11310,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 382,
- "id": 11311,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 382,
- "id": 11312,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 382,
- "id": 11313,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 382,
- "id": 11314,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 382,
- "id": 11315,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 382,
- "id": 11316,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 382,
- "id": 11317,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 382,
- "id": 11318,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 382,
- "id": 11319,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 382,
- "id": 11320,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 382,
- "id": 11321,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 382,
- "id": 11322,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 382,
- "id": 11323,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 382,
- "id": 11324,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 382,
- "id": 11325,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 382,
- "id": 11326,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 382,
- "id": 11327,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 382,
- "id": 11328,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 382,
- "id": 11329,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 382,
- "id": 11330,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 383,
- "id": 11335,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 383,
- "id": 11336,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 383,
- "id": 11337,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 383,
- "id": 11338,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 383,
- "id": 11339,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 383,
- "id": 11340,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 383,
- "id": 11341,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 383,
- "id": 11342,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 383,
- "id": 11343,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 383,
- "id": 11344,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 383,
- "id": 11345,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 383,
- "id": 11346,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 383,
- "id": 11347,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 383,
- "id": 11348,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 383,
- "id": 11349,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 383,
- "id": 11350,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 383,
- "id": 11351,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 383,
- "id": 11352,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 383,
- "id": 11353,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 383,
- "id": 11354,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 383,
- "id": 11355,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 383,
- "id": 11356,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 384,
- "id": 11361,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 384,
- "id": 11362,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 384,
- "id": 11363,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 384,
- "id": 11364,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 384,
- "id": 11365,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 384,
- "id": 11366,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 384,
- "id": 11367,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 384,
- "id": 11368,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 384,
- "id": 11369,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 384,
- "id": 11370,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 384,
- "id": 11371,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 384,
- "id": 11372,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 384,
- "id": 11373,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 384,
- "id": 11374,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 384,
- "id": 11375,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 384,
- "id": 11376,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 384,
- "id": 11377,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 384,
- "id": 11378,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 384,
- "id": 11379,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 384,
- "id": 11380,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 384,
- "id": 11381,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 384,
- "id": 11382,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 385,
- "id": 11387,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 385,
- "id": 11388,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 385,
- "id": 11389,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 385,
- "id": 11390,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 385,
- "id": 11391,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 385,
- "id": 11392,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 385,
- "id": 11393,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 385,
- "id": 11394,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 385,
- "id": 11395,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 385,
- "id": 11396,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 385,
- "id": 11397,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 385,
- "id": 11398,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 385,
- "id": 11399,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 385,
- "id": 11400,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 385,
- "id": 11401,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 385,
- "id": 11402,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 385,
- "id": 11403,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 385,
- "id": 11404,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 385,
- "id": 11405,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 385,
- "id": 11406,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 385,
- "id": 11407,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 385,
- "id": 11408,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 386,
- "id": 11413,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 386,
- "id": 11414,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 386,
- "id": 11415,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 386,
- "id": 11416,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 386,
- "id": 11417,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 386,
- "id": 11418,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 386,
- "id": 11419,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 386,
- "id": 11420,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 386,
- "id": 11421,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 386,
- "id": 11422,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 386,
- "id": 11423,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 386,
- "id": 11424,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 386,
- "id": 11425,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 386,
- "id": 11426,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 386,
- "id": 11427,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 386,
- "id": 11428,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 386,
- "id": 11429,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 386,
- "id": 11430,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 386,
- "id": 11431,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 386,
- "id": 11432,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 386,
- "id": 11433,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 386,
- "id": 11434,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 387,
- "id": 11439,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 387,
- "id": 11440,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 387,
- "id": 11441,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 387,
- "id": 11442,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 387,
- "id": 11443,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 387,
- "id": 11444,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 387,
- "id": 11445,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 387,
- "id": 11446,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 387,
- "id": 11447,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 387,
- "id": 11448,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 387,
- "id": 11449,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 387,
- "id": 11450,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 387,
- "id": 11451,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 387,
- "id": 11452,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 387,
- "id": 11453,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 387,
- "id": 11454,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 387,
- "id": 11455,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 387,
- "id": 11456,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 387,
- "id": 11457,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 387,
- "id": 11458,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 387,
- "id": 11459,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 387,
- "id": 11460,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 388,
- "id": 11465,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 388,
- "id": 11466,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 388,
- "id": 11467,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 388,
- "id": 11468,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 388,
- "id": 11469,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 388,
- "id": 11470,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 388,
- "id": 11471,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 388,
- "id": 11472,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 388,
- "id": 11473,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 388,
- "id": 11474,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 388,
- "id": 11475,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 388,
- "id": 11476,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 388,
- "id": 11477,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 388,
- "id": 11478,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 388,
- "id": 11479,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 388,
- "id": 11480,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 388,
- "id": 11481,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 388,
- "id": 11482,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 388,
- "id": 11483,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 388,
- "id": 11484,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 388,
- "id": 11485,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 388,
- "id": 11486,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 390,
- "id": 11491,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 390,
- "id": 11492,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 390,
- "id": 11493,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 390,
- "id": 11494,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 390,
- "id": 11495,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 390,
- "id": 11496,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 390,
- "id": 11497,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 390,
- "id": 11498,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 390,
- "id": 11499,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 390,
- "id": 11500,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 390,
- "id": 11501,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 390,
- "id": 11502,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 390,
- "id": 11503,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 390,
- "id": 11504,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 390,
- "id": 11505,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 390,
- "id": 11506,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 390,
- "id": 11507,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 390,
- "id": 11508,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 390,
- "id": 11509,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 390,
- "id": 11510,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 390,
- "id": 11511,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 390,
- "id": 11512,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 391,
- "id": 11517,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 391,
- "id": 11518,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 391,
- "id": 11519,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 391,
- "id": 11520,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 391,
- "id": 11521,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 391,
- "id": 11522,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 391,
- "id": 11523,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 391,
- "id": 11524,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 391,
- "id": 11525,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 391,
- "id": 11526,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 391,
- "id": 11527,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 391,
- "id": 11528,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 391,
- "id": 11529,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 391,
- "id": 11530,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 391,
- "id": 11531,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 391,
- "id": 11532,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 391,
- "id": 11533,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 391,
- "id": 11534,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 391,
- "id": 11535,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 391,
- "id": 11536,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 391,
- "id": 11537,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 391,
- "id": 11538,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 392,
- "id": 11543,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 392,
- "id": 11544,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 392,
- "id": 11545,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 392,
- "id": 11546,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 392,
- "id": 11547,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 392,
- "id": 11548,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 392,
- "id": 11549,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 392,
- "id": 11550,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 392,
- "id": 11551,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 392,
- "id": 11552,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 392,
- "id": 11553,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 392,
- "id": 11554,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 392,
- "id": 11555,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 392,
- "id": 11556,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 392,
- "id": 11557,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 392,
- "id": 11558,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 392,
- "id": 11559,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 392,
- "id": 11560,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 392,
- "id": 11561,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 392,
- "id": 11562,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 392,
- "id": 11563,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 392,
- "id": 11564,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 393,
- "id": 11569,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 393,
- "id": 11570,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 393,
- "id": 11571,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 393,
- "id": 11572,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 393,
- "id": 11573,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 393,
- "id": 11574,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 393,
- "id": 11575,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 393,
- "id": 11576,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 393,
- "id": 11577,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 393,
- "id": 11578,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 393,
- "id": 11579,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 393,
- "id": 11580,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 393,
- "id": 11581,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 393,
- "id": 11582,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 393,
- "id": 11583,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 393,
- "id": 11584,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 393,
- "id": 11585,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 393,
- "id": 11586,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 393,
- "id": 11587,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 393,
- "id": 11588,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 393,
- "id": 11589,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 393,
- "id": 11590,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 394,
- "id": 11595,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 394,
- "id": 11596,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 394,
- "id": 11597,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 394,
- "id": 11598,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 394,
- "id": 11599,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 394,
- "id": 11600,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 394,
- "id": 11601,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 394,
- "id": 11602,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 394,
- "id": 11603,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 394,
- "id": 11604,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 394,
- "id": 11605,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 394,
- "id": 11606,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 394,
- "id": 11607,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 394,
- "id": 11608,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 394,
- "id": 11609,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 394,
- "id": 11610,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 394,
- "id": 11611,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 394,
- "id": 11612,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 394,
- "id": 11613,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 394,
- "id": 11614,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 394,
- "id": 11615,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 394,
- "id": 11616,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 395,
- "id": 11621,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 395,
- "id": 11622,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 395,
- "id": 11623,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 395,
- "id": 11624,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 395,
- "id": 11625,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 395,
- "id": 11626,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 395,
- "id": 11627,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 395,
- "id": 11628,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 395,
- "id": 11629,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 395,
- "id": 11630,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 395,
- "id": 11631,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 395,
- "id": 11632,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 395,
- "id": 11633,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 395,
- "id": 11634,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 395,
- "id": 11635,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 395,
- "id": 11636,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 395,
- "id": 11637,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 395,
- "id": 11638,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 395,
- "id": 11639,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 395,
- "id": 11640,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 395,
- "id": 11641,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 395,
- "id": 11642,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 396,
- "id": 11647,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 396,
- "id": 11648,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 396,
- "id": 11649,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 396,
- "id": 11650,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 396,
- "id": 11651,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 396,
- "id": 11652,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 396,
- "id": 11653,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 396,
- "id": 11654,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 396,
- "id": 11655,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 396,
- "id": 11656,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 396,
- "id": 11657,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 396,
- "id": 11658,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 396,
- "id": 11659,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 396,
- "id": 11660,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 396,
- "id": 11661,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 396,
- "id": 11662,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 396,
- "id": 11663,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 396,
- "id": 11664,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 396,
- "id": 11665,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 396,
- "id": 11666,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 396,
- "id": 11667,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 396,
- "id": 11668,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 397,
- "id": 11673,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 397,
- "id": 11674,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 397,
- "id": 11675,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 397,
- "id": 11676,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 397,
- "id": 11677,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 397,
- "id": 11678,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 397,
- "id": 11679,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 397,
- "id": 11680,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 397,
- "id": 11681,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 397,
- "id": 11682,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 397,
- "id": 11683,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 397,
- "id": 11684,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 397,
- "id": 11685,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 397,
- "id": 11686,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 397,
- "id": 11687,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 397,
- "id": 11688,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 397,
- "id": 11689,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 397,
- "id": 11690,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 397,
- "id": 11691,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 397,
- "id": 11692,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 397,
- "id": 11693,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 397,
- "id": 11694,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 398,
- "id": 11699,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 398,
- "id": 11700,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 398,
- "id": 11701,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 398,
- "id": 11702,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 398,
- "id": 11703,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 398,
- "id": 11704,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 398,
- "id": 11705,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 398,
- "id": 11706,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 398,
- "id": 11707,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 398,
- "id": 11708,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 398,
- "id": 11709,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 398,
- "id": 11710,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 398,
- "id": 11711,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 398,
- "id": 11712,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 398,
- "id": 11713,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 398,
- "id": 11714,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 398,
- "id": 11715,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 398,
- "id": 11716,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 398,
- "id": 11717,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 398,
- "id": 11718,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 398,
- "id": 11719,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 398,
- "id": 11720,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 399,
- "id": 11725,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 399,
- "id": 11726,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 399,
- "id": 11727,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 399,
- "id": 11728,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 399,
- "id": 11729,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 399,
- "id": 11730,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 399,
- "id": 11731,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 399,
- "id": 11732,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 399,
- "id": 11733,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 399,
- "id": 11734,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 399,
- "id": 11735,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 399,
- "id": 11736,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 399,
- "id": 11737,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 399,
- "id": 11738,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 399,
- "id": 11739,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 399,
- "id": 11740,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 399,
- "id": 11741,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 399,
- "id": 11742,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 399,
- "id": 11743,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 399,
- "id": 11744,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 399,
- "id": 11745,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 399,
- "id": 11746,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 401,
- "id": 11751,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 401,
- "id": 11752,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 401,
- "id": 11753,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 401,
- "id": 11754,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 401,
- "id": 11755,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 401,
- "id": 11756,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 401,
- "id": 11757,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 401,
- "id": 11758,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 401,
- "id": 11759,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 401,
- "id": 11760,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 401,
- "id": 11761,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 401,
- "id": 11762,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 401,
- "id": 11763,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 401,
- "id": 11764,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 401,
- "id": 11765,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 401,
- "id": 11766,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 401,
- "id": 11767,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 401,
- "id": 11768,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 401,
- "id": 11769,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 401,
- "id": 11770,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 401,
- "id": 11771,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 401,
- "id": 11772,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 402,
- "id": 11777,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 402,
- "id": 11778,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 402,
- "id": 11779,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 402,
- "id": 11780,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 402,
- "id": 11781,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 402,
- "id": 11782,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 402,
- "id": 11783,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 402,
- "id": 11784,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 402,
- "id": 11785,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 402,
- "id": 11786,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 402,
- "id": 11787,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 402,
- "id": 11788,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 402,
- "id": 11789,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 402,
- "id": 11790,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 402,
- "id": 11791,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 402,
- "id": 11792,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 402,
- "id": 11793,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 402,
- "id": 11794,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 402,
- "id": 11795,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 402,
- "id": 11796,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 402,
- "id": 11797,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 402,
- "id": 11798,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 403,
- "id": 11803,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 403,
- "id": 11804,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 403,
- "id": 11805,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 403,
- "id": 11806,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 403,
- "id": 11807,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 403,
- "id": 11808,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 403,
- "id": 11809,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 403,
- "id": 11810,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 403,
- "id": 11811,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 403,
- "id": 11812,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 403,
- "id": 11813,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 403,
- "id": 11814,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 403,
- "id": 11815,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 403,
- "id": 11816,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 403,
- "id": 11817,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 403,
- "id": 11818,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 403,
- "id": 11819,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 403,
- "id": 11820,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 403,
- "id": 11821,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 403,
- "id": 11822,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 403,
- "id": 11823,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 403,
- "id": 11824,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 404,
- "id": 11829,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 404,
- "id": 11830,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 404,
- "id": 11831,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 404,
- "id": 11832,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 404,
- "id": 11833,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 404,
- "id": 11834,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 404,
- "id": 11835,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 404,
- "id": 11836,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 404,
- "id": 11837,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 404,
- "id": 11838,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 404,
- "id": 11839,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 404,
- "id": 11840,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 404,
- "id": 11841,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 404,
- "id": 11842,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 404,
- "id": 11843,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 404,
- "id": 11844,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 404,
- "id": 11845,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 404,
- "id": 11846,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 404,
- "id": 11847,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 404,
- "id": 11848,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 404,
- "id": 11849,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 404,
- "id": 11850,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 405,
- "id": 11855,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 405,
- "id": 11856,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 405,
- "id": 11857,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 405,
- "id": 11858,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 405,
- "id": 11859,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 405,
- "id": 11860,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 405,
- "id": 11861,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 405,
- "id": 11862,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 405,
- "id": 11863,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 405,
- "id": 11864,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 405,
- "id": 11865,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 405,
- "id": 11866,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 405,
- "id": 11867,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 405,
- "id": 11868,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 405,
- "id": 11869,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 405,
- "id": 11870,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 405,
- "id": 11871,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 405,
- "id": 11872,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 405,
- "id": 11873,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 405,
- "id": 11874,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 405,
- "id": 11875,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 405,
- "id": 11876,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4143,
- "id": 11881,
- "width": 280,
- "height": 340
- },
- {
- "x": 280,
- "fileNum": 4143,
- "id": 11882,
- "width": 280,
- "height": 340
- },
- {
- "x": 560,
- "fileNum": 4143,
- "id": 11883,
- "width": 280,
- "height": 340
- },
- {
- "x": 840,
- "fileNum": 4143,
- "id": 11884,
- "width": 280,
- "height": 340
- },
- {
- "x": 1120,
- "fileNum": 4143,
- "id": 11885,
- "width": 280,
- "height": 340
- },
- {
- "x": 1400,
- "fileNum": 4143,
- "id": 11886,
- "width": 280,
- "height": 340
- },
- {
- "x": 1680,
- "fileNum": 4143,
- "id": 11887,
- "width": 280,
- "height": 340
- },
- {
- "x": 1960,
- "fileNum": 4143,
- "id": 11888,
- "width": 280,
- "height": 340
- },
- {
- "y": 340,
- "fileNum": 4143,
- "id": 11889,
- "width": 280,
- "height": 340
- },
- {
- "x": 280,
- "y": 340,
- "fileNum": 4143,
- "id": 11890,
- "width": 280,
- "height": 340
- },
- {
- "x": 560,
- "y": 340,
- "fileNum": 4143,
- "id": 11891,
- "width": 280,
- "height": 340
- },
- {
- "x": 840,
- "y": 340,
- "fileNum": 4143,
- "id": 11892,
- "width": 280,
- "height": 340
- },
- {
- "x": 1120,
- "y": 340,
- "fileNum": 4143,
- "id": 11893,
- "width": 280,
- "height": 340
- },
- {
- "x": 1400,
- "y": 340,
- "fileNum": 4143,
- "id": 11894,
- "width": 280,
- "height": 340
- },
- {
- "x": 1680,
- "y": 340,
- "fileNum": 4143,
- "id": 11895,
- "width": 280,
- "height": 340
- },
- {
- "x": 1960,
- "y": 340,
- "fileNum": 4143,
- "id": 11896,
- "width": 280,
- "height": 340
- },
- {
- "y": 1020,
- "fileNum": 4143,
- "id": 11897,
- "width": 280,
- "height": 340
- },
- {
- "x": 280,
- "y": 1020,
- "fileNum": 4143,
- "id": 11898,
- "width": 280,
- "height": 340
- },
- {
- "x": 560,
- "y": 1020,
- "fileNum": 4143,
- "id": 11899,
- "width": 280,
- "height": 340
- },
- {
- "x": 840,
- "y": 1020,
- "fileNum": 4143,
- "id": 11900,
- "width": 280,
- "height": 340
- },
- {
- "x": 1120,
- "y": 1020,
- "fileNum": 4143,
- "id": 11901,
- "width": 280,
- "height": 340
- },
- {
- "x": 1396,
- "y": 1020,
- "fileNum": 4143,
- "id": 11902,
- "width": 280,
- "height": 340
- },
- {
- "x": 1680,
- "y": 1020,
- "fileNum": 4143,
- "id": 11903,
- "width": 280,
- "height": 340
- },
- {
- "x": 1960,
- "y": 1020,
- "fileNum": 4143,
- "id": 11904,
- "width": 280,
- "height": 340
- },
- {
- "y": 680,
- "fileNum": 4143,
- "id": 11905,
- "width": 280,
- "height": 340
- },
- {
- "x": 280,
- "y": 680,
- "fileNum": 4143,
- "id": 11906,
- "width": 280,
- "height": 340
- },
- {
- "x": 560,
- "y": 682,
- "fileNum": 4143,
- "id": 11907,
- "width": 280,
- "height": 340
- },
- {
- "x": 842,
- "y": 680,
- "fileNum": 4143,
- "id": 11908,
- "width": 280,
- "height": 340
- },
- {
- "x": 1120,
- "y": 680,
- "fileNum": 4143,
- "id": 11909,
- "width": 280,
- "height": 340
- },
- {
- "x": 1400,
- "y": 680,
- "fileNum": 4143,
- "id": 11910,
- "width": 280,
- "height": 340
- },
- {
- "x": 1680,
- "y": 680,
- "fileNum": 4143,
- "id": 11911,
- "width": 280,
- "height": 340
- },
- {
- "x": 1960,
- "y": 680,
- "fileNum": 4143,
- "id": 11912,
- "width": 280,
- "height": 340
- },
- {
- "fileNum": 363,
- "id": 11917,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 363,
- "id": 11918,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 363,
- "id": 11919,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 363,
- "id": 11920,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 363,
- "id": 11921,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 363,
- "id": 11922,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 363,
- "id": 11923,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 363,
- "id": 11924,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 363,
- "id": 11925,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 363,
- "id": 11926,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 363,
- "id": 11927,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 363,
- "id": 11928,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 363,
- "id": 11929,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 363,
- "id": 11930,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 363,
- "id": 11931,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 363,
- "id": 11932,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 363,
- "id": 11933,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 363,
- "id": 11934,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 363,
- "id": 11935,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 363,
- "id": 11936,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 363,
- "id": 11937,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 363,
- "id": 11938,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4144,
- "id": 11943,
- "width": 280,
- "height": 340
- },
- {
- "x": 280,
- "fileNum": 4144,
- "id": 11944,
- "width": 280,
- "height": 340
- },
- {
- "x": 560,
- "fileNum": 4144,
- "id": 11945,
- "width": 280,
- "height": 340
- },
- {
- "x": 840,
- "fileNum": 4144,
- "id": 11946,
- "width": 280,
- "height": 340
- },
- {
- "x": 1120,
- "fileNum": 4144,
- "id": 11947,
- "width": 280,
- "height": 340
- },
- {
- "x": 1400,
- "fileNum": 4144,
- "id": 11948,
- "width": 280,
- "height": 340
- },
- {
- "x": 1680,
- "fileNum": 4144,
- "id": 11949,
- "width": 280,
- "height": 340
- },
- {
- "x": 1960,
- "fileNum": 4144,
- "id": 11950,
- "width": 280,
- "height": 340
- },
- {
- "y": 340,
- "fileNum": 4144,
- "id": 11951,
- "width": 280,
- "height": 340
- },
- {
- "x": 280,
- "y": 340,
- "fileNum": 4144,
- "id": 11952,
- "width": 280,
- "height": 340
- },
- {
- "x": 560,
- "y": 340,
- "fileNum": 4144,
- "id": 11953,
- "width": 280,
- "height": 340
- },
- {
- "x": 840,
- "y": 340,
- "fileNum": 4144,
- "id": 11954,
- "width": 280,
- "height": 340
- },
- {
- "x": 1120,
- "y": 340,
- "fileNum": 4144,
- "id": 11955,
- "width": 280,
- "height": 340
- },
- {
- "x": 1400,
- "y": 340,
- "fileNum": 4144,
- "id": 11956,
- "width": 280,
- "height": 340
- },
- {
- "x": 1680,
- "y": 340,
- "fileNum": 4144,
- "id": 11957,
- "width": 280,
- "height": 340
- },
- {
- "x": 1960,
- "y": 340,
- "fileNum": 4144,
- "id": 11958,
- "width": 280,
- "height": 340
- },
- {
- "y": 1020,
- "fileNum": 4144,
- "id": 11959,
- "width": 280,
- "height": 340
- },
- {
- "x": 280,
- "y": 1020,
- "fileNum": 4144,
- "id": 11960,
- "width": 280,
- "height": 340
- },
- {
- "x": 560,
- "y": 1020,
- "fileNum": 4144,
- "id": 11961,
- "width": 280,
- "height": 340
- },
- {
- "x": 840,
- "y": 1020,
- "fileNum": 4144,
- "id": 11962,
- "width": 280,
- "height": 340
- },
- {
- "x": 1120,
- "y": 1020,
- "fileNum": 4144,
- "id": 11963,
- "width": 280,
- "height": 340
- },
- {
- "x": 1400,
- "y": 1020,
- "fileNum": 4144,
- "id": 11964,
- "width": 280,
- "height": 340
- },
- {
- "x": 1680,
- "y": 1020,
- "fileNum": 4144,
- "id": 11965,
- "width": 280,
- "height": 340
- },
- {
- "x": 1960,
- "y": 1020,
- "fileNum": 4144,
- "id": 11966,
- "width": 280,
- "height": 340
- },
- {
- "y": 680,
- "fileNum": 4144,
- "id": 11967,
- "width": 280,
- "height": 340
- },
- {
- "x": 280,
- "y": 680,
- "fileNum": 4144,
- "id": 11968,
- "width": 280,
- "height": 340
- },
- {
- "x": 560,
- "y": 684,
- "fileNum": 4144,
- "id": 11969,
- "width": 280,
- "height": 340
- },
- {
- "x": 844,
- "y": 680,
- "fileNum": 4144,
- "id": 11970,
- "width": 280,
- "height": 340
- },
- {
- "x": 1120,
- "y": 680,
- "fileNum": 4144,
- "id": 11971,
- "width": 280,
- "height": 340
- },
- {
- "x": 1400,
- "y": 680,
- "fileNum": 4144,
- "id": 11972,
- "width": 280,
- "height": 340
- },
- {
- "x": 1680,
- "y": 680,
- "fileNum": 4144,
- "id": 11973,
- "width": 280,
- "height": 340
- },
- {
- "x": 1960,
- "y": 680,
- "fileNum": 4144,
- "id": 11974,
- "width": 280,
- "height": 340
- },
- {
- "fileNum": 22006,
- "id": 11979,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22007,
- "id": 11980,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 2189,
- "id": 11981,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2189,
- "id": 11982,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2189,
- "id": 11983,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2189,
- "id": 11984,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2190,
- "id": 11985,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2190,
- "id": 11986,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2190,
- "id": 11987,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2190,
- "id": 11988,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2191,
- "id": 11989,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2191,
- "id": 11990,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2191,
- "id": 11991,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2191,
- "id": 11992,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2192,
- "id": 11993,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2192,
- "id": 11994,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2192,
- "id": 11995,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2192,
- "id": 11996,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2126,
- "id": 12000,
- "width": 34,
- "height": 100
- },
- {
- "x": 32,
- "fileNum": 2126,
- "id": 12001,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2126,
- "id": 12002,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2126,
- "id": 12003,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 4146,
- "id": 12004,
- "width": 58,
- "height": 64
- },
- {
- "x": 58,
- "fileNum": 4146,
- "id": 12005,
- "width": 58,
- "height": 64
- },
- {
- "x": 116,
- "fileNum": 4146,
- "id": 12006,
- "width": 58,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 4146,
- "id": 12007,
- "width": 58,
- "height": 64
- },
- {
- "x": 58,
- "y": 64,
- "fileNum": 4146,
- "id": 12008,
- "width": 58,
- "height": 64
- },
- {
- "x": 116,
- "y": 64,
- "fileNum": 4146,
- "id": 12009,
- "width": 58,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 4146,
- "id": 12010,
- "width": 58,
- "height": 64
- },
- {
- "x": 58,
- "y": 128,
- "fileNum": 4146,
- "id": 12011,
- "width": 58,
- "height": 64
- },
- {
- "x": 116,
- "y": 128,
- "fileNum": 4146,
- "id": 12012,
- "width": 58,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 4146,
- "id": 12013,
- "width": 58,
- "height": 64
- },
- {
- "x": 58,
- "y": 192,
- "fileNum": 4146,
- "id": 12014,
- "width": 58,
- "height": 64
- },
- {
- "x": 116,
- "y": 192,
- "fileNum": 4146,
- "id": 12015,
- "width": 58,
- "height": 64
- },
- {
- "fileNum": 4147,
- "id": 12020,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "fileNum": 4147,
- "id": 12021,
- "width": 64,
- "height": 50
- },
- {
- "y": 48,
- "fileNum": 4147,
- "id": 12022,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "y": 48,
- "fileNum": 4147,
- "id": 12023,
- "width": 64,
- "height": 50
- },
- {
- "y": 96,
- "fileNum": 4147,
- "id": 12024,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "y": 96,
- "fileNum": 4147,
- "id": 12025,
- "width": 64,
- "height": 50
- },
- {
- "y": 144,
- "fileNum": 4147,
- "id": 12026,
- "width": 64,
- "height": 50
- },
- {
- "x": 62,
- "y": 144,
- "fileNum": 4147,
- "id": 12027,
- "width": 64,
- "height": 50
- },
- {
- "fileNum": 4148,
- "id": 12032,
- "width": 150,
- "height": 100
- },
- {
- "x": 148,
- "fileNum": 4148,
- "id": 12033,
- "width": 150,
- "height": 100
- },
- {
- "x": 296,
- "fileNum": 4148,
- "id": 12034,
- "width": 150,
- "height": 100
- },
- {
- "x": 444,
- "fileNum": 4148,
- "id": 12035,
- "width": 150,
- "height": 100
- },
- {
- "y": 98,
- "fileNum": 4148,
- "id": 12036,
- "width": 150,
- "height": 100
- },
- {
- "x": 148,
- "y": 98,
- "fileNum": 4148,
- "id": 12037,
- "width": 150,
- "height": 100
- },
- {
- "x": 296,
- "y": 98,
- "fileNum": 4148,
- "id": 12038,
- "width": 150,
- "height": 100
- },
- {
- "x": 444,
- "y": 98,
- "fileNum": 4148,
- "id": 12039,
- "width": 150,
- "height": 100
- },
- {
- "y": 196,
- "fileNum": 4148,
- "id": 12040,
- "width": 150,
- "height": 100
- },
- {
- "x": 148,
- "y": 196,
- "fileNum": 4148,
- "id": 12041,
- "width": 150,
- "height": 100
- },
- {
- "x": 296,
- "y": 196,
- "fileNum": 4148,
- "id": 12042,
- "width": 150,
- "height": 100
- },
- {
- "x": 444,
- "y": 196,
- "fileNum": 4148,
- "id": 12043,
- "width": 150,
- "height": 100
- },
- {
- "y": 294,
- "fileNum": 4148,
- "id": 12044,
- "width": 150,
- "height": 100
- },
- {
- "x": 148,
- "y": 294,
- "fileNum": 4148,
- "id": 12045,
- "width": 150,
- "height": 100
- },
- {
- "x": 296,
- "y": 294,
- "fileNum": 4148,
- "id": 12046,
- "width": 150,
- "height": 100
- },
- {
- "x": 444,
- "y": 294,
- "fileNum": 4148,
- "id": 12047,
- "width": 150,
- "height": 100
- },
- {
- "fileNum": 4149,
- "id": 12052,
- "width": 150,
- "height": 100
- },
- {
- "x": 148,
- "fileNum": 4149,
- "id": 12053,
- "width": 150,
- "height": 100
- },
- {
- "x": 296,
- "fileNum": 4149,
- "id": 12054,
- "width": 150,
- "height": 100
- },
- {
- "x": 444,
- "fileNum": 4149,
- "id": 12055,
- "width": 150,
- "height": 100
- },
- {
- "y": 98,
- "fileNum": 4149,
- "id": 12056,
- "width": 150,
- "height": 100
- },
- {
- "x": 148,
- "y": 98,
- "fileNum": 4149,
- "id": 12057,
- "width": 150,
- "height": 100
- },
- {
- "x": 296,
- "y": 98,
- "fileNum": 4149,
- "id": 12058,
- "width": 150,
- "height": 100
- },
- {
- "x": 444,
- "y": 98,
- "fileNum": 4149,
- "id": 12059,
- "width": 150,
- "height": 100
- },
- {
- "y": 200,
- "fileNum": 4149,
- "id": 12060,
- "width": 150,
- "height": 100
- },
- {
- "x": 148,
- "y": 200,
- "fileNum": 4149,
- "id": 12061,
- "width": 150,
- "height": 100
- },
- {
- "x": 296,
- "y": 200,
- "fileNum": 4149,
- "id": 12062,
- "width": 150,
- "height": 100
- },
- {
- "x": 444,
- "y": 200,
- "fileNum": 4149,
- "id": 12063,
- "width": 150,
- "height": 100
- },
- {
- "y": 294,
- "fileNum": 4149,
- "id": 12064,
- "width": 150,
- "height": 100
- },
- {
- "x": 148,
- "y": 294,
- "fileNum": 4149,
- "id": 12065,
- "width": 150,
- "height": 100
- },
- {
- "x": 296,
- "y": 294,
- "fileNum": 4149,
- "id": 12066,
- "width": 150,
- "height": 100
- },
- {
- "x": 444,
- "y": 294,
- "fileNum": 4149,
- "id": 12067,
- "width": 150,
- "height": 100
- },
- {
- "fileNum": 4150,
- "id": 12072,
- "width": 54,
- "height": 104
- },
- {
- "x": 54,
- "fileNum": 4150,
- "id": 12073,
- "width": 54,
- "height": 104
- },
- {
- "x": 108,
- "fileNum": 4150,
- "id": 12074,
- "width": 54,
- "height": 104
- },
- {
- "x": 162,
- "fileNum": 4150,
- "id": 12075,
- "width": 54,
- "height": 104
- },
- {
- "x": 216,
- "fileNum": 4150,
- "id": 12076,
- "width": 54,
- "height": 104
- },
- {
- "x": 270,
- "fileNum": 4150,
- "id": 12077,
- "width": 54,
- "height": 104
- },
- {
- "x": 324,
- "fileNum": 4150,
- "id": 12078,
- "width": 54,
- "height": 104
- },
- {
- "x": 378,
- "fileNum": 4150,
- "id": 12079,
- "width": 54,
- "height": 104
- },
- {
- "y": 104,
- "fileNum": 4150,
- "id": 12080,
- "width": 54,
- "height": 104
- },
- {
- "x": 54,
- "y": 104,
- "fileNum": 4150,
- "id": 12081,
- "width": 54,
- "height": 104
- },
- {
- "x": 108,
- "y": 104,
- "fileNum": 4150,
- "id": 12082,
- "width": 54,
- "height": 104
- },
- {
- "x": 162,
- "y": 104,
- "fileNum": 4150,
- "id": 12083,
- "width": 54,
- "height": 104
- },
- {
- "x": 216,
- "y": 104,
- "fileNum": 4150,
- "id": 12084,
- "width": 54,
- "height": 104
- },
- {
- "x": 270,
- "y": 104,
- "fileNum": 4150,
- "id": 12085,
- "width": 54,
- "height": 104
- },
- {
- "x": 324,
- "y": 104,
- "fileNum": 4150,
- "id": 12086,
- "width": 54,
- "height": 104
- },
- {
- "x": 378,
- "y": 104,
- "fileNum": 4150,
- "id": 12087,
- "width": 54,
- "height": 104
- },
- {
- "y": 208,
- "fileNum": 4150,
- "id": 12088,
- "width": 54,
- "height": 104
- },
- {
- "x": 54,
- "y": 208,
- "fileNum": 4150,
- "id": 12089,
- "width": 54,
- "height": 104
- },
- {
- "x": 108,
- "y": 208,
- "fileNum": 4150,
- "id": 12090,
- "width": 54,
- "height": 104
- },
- {
- "x": 162,
- "y": 208,
- "fileNum": 4150,
- "id": 12091,
- "width": 54,
- "height": 104
- },
- {
- "x": 216,
- "y": 208,
- "fileNum": 4150,
- "id": 12092,
- "width": 54,
- "height": 104
- },
- {
- "x": 270,
- "y": 208,
- "fileNum": 4150,
- "id": 12093,
- "width": 54,
- "height": 104
- },
- {
- "x": 324,
- "y": 208,
- "fileNum": 4150,
- "id": 12094,
- "width": 54,
- "height": 104
- },
- {
- "x": 378,
- "y": 208,
- "fileNum": 4150,
- "id": 12095,
- "width": 54,
- "height": 104
- },
- {
- "y": 312,
- "fileNum": 4150,
- "id": 12096,
- "width": 54,
- "height": 104
- },
- {
- "x": 54,
- "y": 312,
- "fileNum": 4150,
- "id": 12097,
- "width": 54,
- "height": 104
- },
- {
- "x": 108,
- "y": 312,
- "fileNum": 4150,
- "id": 12098,
- "width": 54,
- "height": 104
- },
- {
- "x": 162,
- "y": 312,
- "fileNum": 4150,
- "id": 12099,
- "width": 54,
- "height": 104
- },
- {
- "x": 216,
- "y": 312,
- "fileNum": 4150,
- "id": 12100,
- "width": 54,
- "height": 104
- },
- {
- "x": 270,
- "y": 312,
- "fileNum": 4150,
- "id": 12101,
- "width": 54,
- "height": 104
- },
- {
- "x": 324,
- "y": 312,
- "fileNum": 4150,
- "id": 12102,
- "width": 54,
- "height": 104
- },
- {
- "x": 378,
- "y": 312,
- "fileNum": 4150,
- "id": 12103,
- "width": 54,
- "height": 104
- },
- {
- "fileNum": 4151,
- "id": 12108,
- "width": 104,
- "height": 70
- },
- {
- "x": 104,
- "fileNum": 4151,
- "id": 12109,
- "width": 104,
- "height": 70
- },
- {
- "x": 208,
- "fileNum": 4151,
- "id": 12110,
- "width": 104,
- "height": 70
- },
- {
- "x": 312,
- "fileNum": 4151,
- "id": 12111,
- "width": 104,
- "height": 70
- },
- {
- "x": 416,
- "fileNum": 4151,
- "id": 12112,
- "width": 104,
- "height": 70
- },
- {
- "x": 520,
- "fileNum": 4151,
- "id": 12113,
- "width": 104,
- "height": 70
- },
- {
- "x": 624,
- "fileNum": 4151,
- "id": 12114,
- "width": 104,
- "height": 70
- },
- {
- "x": 728,
- "fileNum": 4151,
- "id": 12115,
- "width": 104,
- "height": 70
- },
- {
- "y": 70,
- "fileNum": 4151,
- "id": 12116,
- "width": 104,
- "height": 70
- },
- {
- "x": 104,
- "y": 70,
- "fileNum": 4151,
- "id": 12117,
- "width": 104,
- "height": 70
- },
- {
- "x": 208,
- "y": 70,
- "fileNum": 4151,
- "id": 12118,
- "width": 104,
- "height": 70
- },
- {
- "x": 312,
- "y": 70,
- "fileNum": 4151,
- "id": 12119,
- "width": 104,
- "height": 70
- },
- {
- "x": 416,
- "y": 70,
- "fileNum": 4151,
- "id": 12120,
- "width": 104,
- "height": 70
- },
- {
- "x": 520,
- "y": 70,
- "fileNum": 4151,
- "id": 12121,
- "width": 104,
- "height": 70
- },
- {
- "x": 624,
- "y": 70,
- "fileNum": 4151,
- "id": 12122,
- "width": 104,
- "height": 70
- },
- {
- "x": 728,
- "y": 70,
- "fileNum": 4151,
- "id": 12123,
- "width": 104,
- "height": 70
- },
- {
- "y": 140,
- "fileNum": 4151,
- "id": 12124,
- "width": 104,
- "height": 70
- },
- {
- "x": 104,
- "y": 140,
- "fileNum": 4151,
- "id": 12125,
- "width": 104,
- "height": 70
- },
- {
- "x": 208,
- "y": 140,
- "fileNum": 4151,
- "id": 12126,
- "width": 104,
- "height": 70
- },
- {
- "x": 312,
- "y": 140,
- "fileNum": 4151,
- "id": 12127,
- "width": 104,
- "height": 70
- },
- {
- "x": 416,
- "y": 140,
- "fileNum": 4151,
- "id": 12128,
- "width": 104,
- "height": 70
- },
- {
- "x": 520,
- "y": 140,
- "fileNum": 4151,
- "id": 12129,
- "width": 104,
- "height": 70
- },
- {
- "x": 624,
- "y": 140,
- "fileNum": 4151,
- "id": 12130,
- "width": 104,
- "height": 70
- },
- {
- "x": 728,
- "y": 140,
- "fileNum": 4151,
- "id": 12131,
- "width": 104,
- "height": 70
- },
- {
- "y": 210,
- "fileNum": 4151,
- "id": 12132,
- "width": 104,
- "height": 70
- },
- {
- "x": 104,
- "y": 210,
- "fileNum": 4151,
- "id": 12133,
- "width": 104,
- "height": 70
- },
- {
- "x": 208,
- "y": 210,
- "fileNum": 4151,
- "id": 12134,
- "width": 104,
- "height": 70
- },
- {
- "x": 312,
- "y": 210,
- "fileNum": 4151,
- "id": 12135,
- "width": 104,
- "height": 70
- },
- {
- "x": 416,
- "y": 210,
- "fileNum": 4151,
- "id": 12136,
- "width": 104,
- "height": 70
- },
- {
- "x": 520,
- "y": 210,
- "fileNum": 4151,
- "id": 12137,
- "width": 104,
- "height": 70
- },
- {
- "x": 624,
- "y": 210,
- "fileNum": 4151,
- "id": 12138,
- "width": 104,
- "height": 70
- },
- {
- "x": 728,
- "y": 210,
- "fileNum": 4151,
- "id": 12139,
- "width": 104,
- "height": 70
- },
- {
- "fileNum": 4152,
- "id": 12144,
- "width": 98,
- "height": 150
- },
- {
- "x": 98,
- "fileNum": 4152,
- "id": 12145,
- "width": 98,
- "height": 150
- },
- {
- "x": 196,
- "fileNum": 4152,
- "id": 12146,
- "width": 98,
- "height": 150
- },
- {
- "x": 294,
- "fileNum": 4152,
- "id": 12147,
- "width": 98,
- "height": 150
- },
- {
- "x": 392,
- "fileNum": 4152,
- "id": 12148,
- "width": 98,
- "height": 150
- },
- {
- "x": 490,
- "fileNum": 4152,
- "id": 12149,
- "width": 98,
- "height": 150
- },
- {
- "x": 588,
- "fileNum": 4152,
- "id": 12150,
- "width": 98,
- "height": 150
- },
- {
- "x": 686,
- "fileNum": 4152,
- "id": 12151,
- "width": 98,
- "height": 150
- },
- {
- "x": 784,
- "fileNum": 4152,
- "id": 12152,
- "width": 98,
- "height": 150
- },
- {
- "y": 150,
- "fileNum": 4152,
- "id": 12153,
- "width": 98,
- "height": 150
- },
- {
- "x": 98,
- "y": 150,
- "fileNum": 4152,
- "id": 12154,
- "width": 98,
- "height": 150
- },
- {
- "x": 196,
- "y": 150,
- "fileNum": 4152,
- "id": 12155,
- "width": 98,
- "height": 150
- },
- {
- "x": 294,
- "y": 150,
- "fileNum": 4152,
- "id": 12156,
- "width": 98,
- "height": 150
- },
- {
- "x": 392,
- "y": 150,
- "fileNum": 4152,
- "id": 12157,
- "width": 98,
- "height": 150
- },
- {
- "x": 490,
- "y": 150,
- "fileNum": 4152,
- "id": 12158,
- "width": 98,
- "height": 150
- },
- {
- "x": 588,
- "y": 150,
- "fileNum": 4152,
- "id": 12159,
- "width": 98,
- "height": 150
- },
- {
- "x": 686,
- "y": 150,
- "fileNum": 4152,
- "id": 12160,
- "width": 98,
- "height": 150
- },
- {
- "x": 784,
- "y": 150,
- "fileNum": 4152,
- "id": 12161,
- "width": 98,
- "height": 150
- },
- {
- "y": 300,
- "fileNum": 4152,
- "id": 12162,
- "width": 118,
- "height": 150
- },
- {
- "x": 118,
- "y": 300,
- "fileNum": 4152,
- "id": 12163,
- "width": 118,
- "height": 150
- },
- {
- "x": 236,
- "y": 300,
- "fileNum": 4152,
- "id": 12164,
- "width": 118,
- "height": 150
- },
- {
- "x": 354,
- "y": 300,
- "fileNum": 4152,
- "id": 12165,
- "width": 118,
- "height": 150
- },
- {
- "x": 472,
- "y": 300,
- "fileNum": 4152,
- "id": 12166,
- "width": 118,
- "height": 150
- },
- {
- "x": 590,
- "y": 300,
- "fileNum": 4152,
- "id": 12167,
- "width": 118,
- "height": 150
- },
- {
- "x": 708,
- "y": 300,
- "fileNum": 4152,
- "id": 12168,
- "width": 118,
- "height": 150
- },
- {
- "x": 826,
- "y": 300,
- "fileNum": 4152,
- "id": 12169,
- "width": 118,
- "height": 150
- },
- {
- "x": 944,
- "y": 300,
- "fileNum": 4152,
- "id": 12170,
- "width": 118,
- "height": 150
- },
- {
- "y": 450,
- "fileNum": 4152,
- "id": 12171,
- "width": 118,
- "height": 150
- },
- {
- "x": 118,
- "y": 450,
- "fileNum": 4152,
- "id": 12172,
- "width": 118,
- "height": 150
- },
- {
- "x": 236,
- "y": 450,
- "fileNum": 4152,
- "id": 12173,
- "width": 118,
- "height": 150
- },
- {
- "x": 354,
- "y": 450,
- "fileNum": 4152,
- "id": 12174,
- "width": 118,
- "height": 150
- },
- {
- "x": 472,
- "y": 450,
- "fileNum": 4152,
- "id": 12175,
- "width": 118,
- "height": 150
- },
- {
- "x": 590,
- "y": 450,
- "fileNum": 4152,
- "id": 12176,
- "width": 118,
- "height": 150
- },
- {
- "x": 708,
- "y": 450,
- "fileNum": 4152,
- "id": 12177,
- "width": 118,
- "height": 150
- },
- {
- "x": 826,
- "y": 450,
- "fileNum": 4152,
- "id": 12178,
- "width": 118,
- "height": 150
- },
- {
- "x": 950,
- "y": 450,
- "fileNum": 4152,
- "id": 12179,
- "width": 118,
- "height": 150
- },
- {
- "fileNum": 4153,
- "id": 12184,
- "width": 96,
- "height": 128
- },
- {
- "x": 96,
- "fileNum": 4153,
- "id": 12185,
- "width": 96,
- "height": 128
- },
- {
- "x": 192,
- "fileNum": 4153,
- "id": 12186,
- "width": 96,
- "height": 128
- },
- {
- "x": 288,
- "fileNum": 4153,
- "id": 12187,
- "width": 96,
- "height": 128
- },
- {
- "x": 384,
- "fileNum": 4153,
- "id": 12188,
- "width": 96,
- "height": 128
- },
- {
- "x": 480,
- "fileNum": 4153,
- "id": 12189,
- "width": 96,
- "height": 128
- },
- {
- "x": 576,
- "fileNum": 4153,
- "id": 12190,
- "width": 96,
- "height": 128
- },
- {
- "x": 672,
- "fileNum": 4153,
- "id": 12191,
- "width": 96,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 4153,
- "id": 12192,
- "width": 96,
- "height": 128
- },
- {
- "x": 96,
- "y": 128,
- "fileNum": 4153,
- "id": 12193,
- "width": 96,
- "height": 128
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 4153,
- "id": 12194,
- "width": 96,
- "height": 128
- },
- {
- "x": 288,
- "y": 128,
- "fileNum": 4153,
- "id": 12195,
- "width": 96,
- "height": 128
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 4153,
- "id": 12196,
- "width": 96,
- "height": 128
- },
- {
- "x": 480,
- "y": 128,
- "fileNum": 4153,
- "id": 12197,
- "width": 96,
- "height": 128
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 4153,
- "id": 12198,
- "width": 96,
- "height": 128
- },
- {
- "x": 672,
- "y": 128,
- "fileNum": 4153,
- "id": 12199,
- "width": 96,
- "height": 128
- },
- {
- "y": 256,
- "fileNum": 4153,
- "id": 12200,
- "width": 96,
- "height": 128
- },
- {
- "x": 96,
- "y": 256,
- "fileNum": 4153,
- "id": 12201,
- "width": 96,
- "height": 128
- },
- {
- "x": 192,
- "y": 256,
- "fileNum": 4153,
- "id": 12202,
- "width": 96,
- "height": 128
- },
- {
- "x": 288,
- "y": 256,
- "fileNum": 4153,
- "id": 12203,
- "width": 96,
- "height": 128
- },
- {
- "x": 384,
- "y": 256,
- "fileNum": 4153,
- "id": 12204,
- "width": 96,
- "height": 128
- },
- {
- "x": 480,
- "y": 256,
- "fileNum": 4153,
- "id": 12205,
- "width": 96,
- "height": 128
- },
- {
- "x": 576,
- "y": 256,
- "fileNum": 4153,
- "id": 12206,
- "width": 96,
- "height": 128
- },
- {
- "x": 672,
- "y": 256,
- "fileNum": 4153,
- "id": 12207,
- "width": 96,
- "height": 128
- },
- {
- "y": 384,
- "fileNum": 4153,
- "id": 12208,
- "width": 96,
- "height": 128
- },
- {
- "x": 96,
- "y": 384,
- "fileNum": 4153,
- "id": 12209,
- "width": 96,
- "height": 128
- },
- {
- "x": 192,
- "y": 384,
- "fileNum": 4153,
- "id": 12210,
- "width": 96,
- "height": 128
- },
- {
- "x": 288,
- "y": 384,
- "fileNum": 4153,
- "id": 12211,
- "width": 96,
- "height": 128
- },
- {
- "x": 384,
- "y": 384,
- "fileNum": 4153,
- "id": 12212,
- "width": 96,
- "height": 128
- },
- {
- "x": 480,
- "y": 384,
- "fileNum": 4153,
- "id": 12213,
- "width": 96,
- "height": 128
- },
- {
- "x": 576,
- "y": 384,
- "fileNum": 4153,
- "id": 12214,
- "width": 96,
- "height": 128
- },
- {
- "x": 672,
- "y": 384,
- "fileNum": 4153,
- "id": 12215,
- "width": 96,
- "height": 128
- },
- {
- "fileNum": 4154,
- "id": 12220,
- "width": 96,
- "height": 128
- },
- {
- "x": 96,
- "fileNum": 4154,
- "id": 12221,
- "width": 96,
- "height": 128
- },
- {
- "x": 192,
- "fileNum": 4154,
- "id": 12222,
- "width": 96,
- "height": 128
- },
- {
- "x": 288,
- "fileNum": 4154,
- "id": 12223,
- "width": 96,
- "height": 128
- },
- {
- "x": 384,
- "fileNum": 4154,
- "id": 12224,
- "width": 96,
- "height": 128
- },
- {
- "x": 480,
- "fileNum": 4154,
- "id": 12225,
- "width": 96,
- "height": 128
- },
- {
- "x": 576,
- "fileNum": 4154,
- "id": 12226,
- "width": 96,
- "height": 128
- },
- {
- "x": 672,
- "fileNum": 4154,
- "id": 12227,
- "width": 96,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 4154,
- "id": 12228,
- "width": 96,
- "height": 128
- },
- {
- "x": 96,
- "y": 128,
- "fileNum": 4154,
- "id": 12229,
- "width": 96,
- "height": 128
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 4154,
- "id": 12230,
- "width": 96,
- "height": 128
- },
- {
- "x": 288,
- "y": 128,
- "fileNum": 4154,
- "id": 12231,
- "width": 96,
- "height": 128
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 4154,
- "id": 12232,
- "width": 96,
- "height": 128
- },
- {
- "x": 480,
- "y": 128,
- "fileNum": 4154,
- "id": 12233,
- "width": 96,
- "height": 128
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 4154,
- "id": 12234,
- "width": 96,
- "height": 128
- },
- {
- "x": 672,
- "y": 128,
- "fileNum": 4154,
- "id": 12235,
- "width": 96,
- "height": 128
- },
- {
- "y": 256,
- "fileNum": 4154,
- "id": 12236,
- "width": 96,
- "height": 128
- },
- {
- "x": 96,
- "y": 256,
- "fileNum": 4154,
- "id": 12237,
- "width": 96,
- "height": 128
- },
- {
- "x": 192,
- "y": 256,
- "fileNum": 4154,
- "id": 12238,
- "width": 96,
- "height": 128
- },
- {
- "x": 288,
- "y": 256,
- "fileNum": 4154,
- "id": 12239,
- "width": 96,
- "height": 128
- },
- {
- "x": 384,
- "y": 256,
- "fileNum": 4154,
- "id": 12240,
- "width": 96,
- "height": 128
- },
- {
- "x": 480,
- "y": 256,
- "fileNum": 4154,
- "id": 12241,
- "width": 96,
- "height": 128
- },
- {
- "x": 576,
- "y": 256,
- "fileNum": 4154,
- "id": 12242,
- "width": 96,
- "height": 128
- },
- {
- "x": 672,
- "y": 256,
- "fileNum": 4154,
- "id": 12243,
- "width": 96,
- "height": 128
- },
- {
- "y": 384,
- "fileNum": 4154,
- "id": 12244,
- "width": 96,
- "height": 128
- },
- {
- "x": 96,
- "y": 384,
- "fileNum": 4154,
- "id": 12245,
- "width": 96,
- "height": 128
- },
- {
- "x": 192,
- "y": 384,
- "fileNum": 4154,
- "id": 12246,
- "width": 96,
- "height": 128
- },
- {
- "x": 288,
- "y": 384,
- "fileNum": 4154,
- "id": 12247,
- "width": 96,
- "height": 128
- },
- {
- "x": 384,
- "y": 384,
- "fileNum": 4154,
- "id": 12248,
- "width": 96,
- "height": 128
- },
- {
- "x": 480,
- "y": 384,
- "fileNum": 4154,
- "id": 12249,
- "width": 96,
- "height": 128
- },
- {
- "x": 576,
- "y": 384,
- "fileNum": 4154,
- "id": 12250,
- "width": 96,
- "height": 128
- },
- {
- "x": 672,
- "y": 384,
- "fileNum": 4154,
- "id": 12251,
- "width": 96,
- "height": 128
- },
- {
- "fileNum": 4155,
- "id": 12256,
- "width": 96,
- "height": 128
- },
- {
- "x": 96,
- "fileNum": 4155,
- "id": 12257,
- "width": 96,
- "height": 128
- },
- {
- "x": 192,
- "fileNum": 4155,
- "id": 12258,
- "width": 96,
- "height": 128
- },
- {
- "x": 288,
- "fileNum": 4155,
- "id": 12259,
- "width": 96,
- "height": 128
- },
- {
- "x": 382,
- "fileNum": 4155,
- "id": 12260,
- "width": 96,
- "height": 128
- },
- {
- "x": 480,
- "fileNum": 4155,
- "id": 12261,
- "width": 96,
- "height": 128
- },
- {
- "x": 576,
- "fileNum": 4155,
- "id": 12262,
- "width": 96,
- "height": 128
- },
- {
- "x": 672,
- "fileNum": 4155,
- "id": 12263,
- "width": 96,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 4155,
- "id": 12264,
- "width": 96,
- "height": 128
- },
- {
- "x": 96,
- "y": 128,
- "fileNum": 4155,
- "id": 12265,
- "width": 96,
- "height": 128
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 4155,
- "id": 12266,
- "width": 96,
- "height": 128
- },
- {
- "x": 288,
- "y": 128,
- "fileNum": 4155,
- "id": 12267,
- "width": 96,
- "height": 128
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 4155,
- "id": 12268,
- "width": 96,
- "height": 128
- },
- {
- "x": 480,
- "y": 128,
- "fileNum": 4155,
- "id": 12269,
- "width": 96,
- "height": 128
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 4155,
- "id": 12270,
- "width": 96,
- "height": 128
- },
- {
- "x": 672,
- "y": 128,
- "fileNum": 4155,
- "id": 12271,
- "width": 96,
- "height": 128
- },
- {
- "y": 258,
- "fileNum": 4155,
- "id": 12272,
- "width": 96,
- "height": 128
- },
- {
- "x": 96,
- "y": 258,
- "fileNum": 4155,
- "id": 12273,
- "width": 96,
- "height": 128
- },
- {
- "x": 192,
- "y": 258,
- "fileNum": 4155,
- "id": 12274,
- "width": 96,
- "height": 128
- },
- {
- "x": 288,
- "y": 258,
- "fileNum": 4155,
- "id": 12275,
- "width": 96,
- "height": 128
- },
- {
- "x": 384,
- "y": 258,
- "fileNum": 4155,
- "id": 12276,
- "width": 96,
- "height": 128
- },
- {
- "x": 480,
- "y": 258,
- "fileNum": 4155,
- "id": 12277,
- "width": 96,
- "height": 128
- },
- {
- "x": 576,
- "y": 258,
- "fileNum": 4155,
- "id": 12278,
- "width": 96,
- "height": 128
- },
- {
- "x": 672,
- "y": 258,
- "fileNum": 4155,
- "id": 12279,
- "width": 96,
- "height": 128
- },
- {
- "y": 384,
- "fileNum": 4155,
- "id": 12280,
- "width": 96,
- "height": 128
- },
- {
- "x": 96,
- "y": 384,
- "fileNum": 4155,
- "id": 12281,
- "width": 96,
- "height": 128
- },
- {
- "x": 192,
- "y": 384,
- "fileNum": 4155,
- "id": 12282,
- "width": 96,
- "height": 128
- },
- {
- "x": 288,
- "y": 384,
- "fileNum": 4155,
- "id": 12283,
- "width": 96,
- "height": 128
- },
- {
- "x": 384,
- "y": 384,
- "fileNum": 4155,
- "id": 12284,
- "width": 96,
- "height": 128
- },
- {
- "x": 480,
- "y": 384,
- "fileNum": 4155,
- "id": 12285,
- "width": 96,
- "height": 128
- },
- {
- "x": 576,
- "y": 384,
- "fileNum": 4155,
- "id": 12286,
- "width": 96,
- "height": 128
- },
- {
- "x": 672,
- "y": 384,
- "fileNum": 4155,
- "id": 12287,
- "width": 96,
- "height": 128
- },
- {
- "fileNum": 4130,
- "id": 12292,
- "width": 84,
- "height": 110
- },
- {
- "x": 84,
- "fileNum": 4130,
- "id": 12293,
- "width": 84,
- "height": 110
- },
- {
- "x": 168,
- "fileNum": 4130,
- "id": 12294,
- "width": 84,
- "height": 110
- },
- {
- "x": 252,
- "fileNum": 4130,
- "id": 12295,
- "width": 84,
- "height": 110
- },
- {
- "x": 336,
- "fileNum": 4130,
- "id": 12296,
- "width": 84,
- "height": 110
- },
- {
- "y": 110,
- "fileNum": 4130,
- "id": 12298,
- "width": 84,
- "height": 110
- },
- {
- "x": 84,
- "y": 110,
- "fileNum": 4130,
- "id": 12299,
- "width": 84,
- "height": 110
- },
- {
- "x": 168,
- "y": 110,
- "fileNum": 4130,
- "id": 12300,
- "width": 84,
- "height": 110
- },
- {
- "x": 252,
- "y": 110,
- "fileNum": 4130,
- "id": 12301,
- "width": 84,
- "height": 110
- },
- {
- "x": 336,
- "y": 110,
- "fileNum": 4130,
- "id": 12302,
- "width": 84,
- "height": 110
- },
- {
- "fileNum": 6079,
- "id": 12305,
- "width": 512,
- "height": 512
- },
- {
- "fileNum": 6080,
- "id": 12306,
- "width": 512,
- "height": 512
- },
- {
- "fileNum": 6080,
- "id": 12307,
- "width": 2,
- "height": 2
- },
- {
- "fileNum": 6080,
- "id": 12308,
- "width": 2,
- "height": 2
- },
- {
- "fileNum": 6082,
- "id": 12309,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 6081,
- "id": 12310,
- "width": 256,
- "height": 256
- },
- {
- "y": 220,
- "fileNum": 4130,
- "id": 12311,
- "width": 84,
- "height": 110
- },
- {
- "x": 84,
- "y": 220,
- "fileNum": 4130,
- "id": 12312,
- "width": 84,
- "height": 110
- },
- {
- "x": 168,
- "y": 220,
- "fileNum": 4130,
- "id": 12313,
- "width": 84,
- "height": 110
- },
- {
- "x": 252,
- "y": 220,
- "fileNum": 4130,
- "id": 12314,
- "width": 84,
- "height": 110
- },
- {
- "x": 336,
- "y": 220,
- "fileNum": 4130,
- "id": 12315,
- "width": 84,
- "height": 110
- },
- {
- "y": 330,
- "fileNum": 4130,
- "id": 12317,
- "width": 84,
- "height": 110
- },
- {
- "x": 84,
- "y": 330,
- "fileNum": 4130,
- "id": 12318,
- "width": 84,
- "height": 110
- },
- {
- "x": 168,
- "y": 330,
- "fileNum": 4130,
- "id": 12319,
- "width": 84,
- "height": 110
- },
- {
- "x": 252,
- "y": 330,
- "fileNum": 4130,
- "id": 12320,
- "width": 84,
- "height": 110
- },
- {
- "x": 336,
- "y": 330,
- "fileNum": 4130,
- "id": 12321,
- "width": 84,
- "height": 110
- },
- {
- "fileNum": 8184,
- "id": 12328,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8185,
- "id": 12329,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8186,
- "id": 12330,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8187,
- "id": 12331,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8188,
- "id": 12332,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8189,
- "id": 12333,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 6064,
- "id": 12334,
- "width": 512,
- "height": 590
- },
- {
- "fileNum": 2108,
- "id": 12335,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2108,
- "id": 12336,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2108,
- "id": 12337,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2108,
- "id": 12338,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 15210,
- "id": 12340,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 15211,
- "id": 12341,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 15212,
- "id": 12342,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 15213,
- "id": 12343,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 15214,
- "id": 12344,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 15215,
- "id": 12345,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 15216,
- "id": 12346,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 2193,
- "id": 12347,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2193,
- "id": 12348,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2193,
- "id": 12349,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2193,
- "id": 12350,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2194,
- "id": 12351,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2194,
- "id": 12352,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2194,
- "id": 12353,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2194,
- "id": 12354,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 12085,
- "id": 12358,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12085,
- "id": 12359,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12085,
- "id": 12360,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12085,
- "id": 12361,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12086,
- "id": 12362,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12086,
- "id": 12363,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12086,
- "id": 12364,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12086,
- "id": 12365,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12087,
- "id": 12366,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12087,
- "id": 12367,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12087,
- "id": 12368,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12087,
- "id": 12369,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12088,
- "id": 12370,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12088,
- "id": 12371,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12088,
- "id": 12372,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12088,
- "id": 12373,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12089,
- "id": 12374,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12089,
- "id": 12375,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12089,
- "id": 12376,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12089,
- "id": 12377,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12090,
- "id": 12378,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12090,
- "id": 12379,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12090,
- "id": 12380,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12090,
- "id": 12381,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12091,
- "id": 12382,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12091,
- "id": 12383,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12091,
- "id": 12384,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12091,
- "id": 12385,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12092,
- "id": 12386,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12092,
- "id": 12387,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12092,
- "id": 12388,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12092,
- "id": 12389,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 2195,
- "id": 12390,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2195,
- "id": 12391,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2195,
- "id": 12392,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2195,
- "id": 12393,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2196,
- "id": 12394,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2196,
- "id": 12395,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2196,
- "id": 12396,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2196,
- "id": 12397,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 15217,
- "id": 12400,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 15217,
- "id": 12401,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15218,
- "id": 12402,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 15218,
- "id": 12403,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15219,
- "id": 12404,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 15219,
- "id": 12405,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15220,
- "id": 12406,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 15220,
- "id": 12407,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15221,
- "id": 12408,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 15221,
- "id": 12409,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15222,
- "id": 12410,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 15222,
- "id": 12411,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15223,
- "id": 12412,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 15223,
- "id": 12413,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15224,
- "id": 12414,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 15224,
- "id": 12415,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15225,
- "id": 12416,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 15225,
- "id": 12417,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15226,
- "id": 12418,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 15226,
- "id": 12419,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15227,
- "id": 12420,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 15227,
- "id": 12421,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15205,
- "id": 12422,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 15205,
- "id": 12423,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 15205,
- "id": 12424,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 15205,
- "id": 12425,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 6079,
- "id": 12426,
- "width": 512,
- "height": 512
- },
- {
- "fileNum": 15206,
- "id": 12428,
- "width": 320,
- "height": 256
- },
- {
- "fileNum": 15207,
- "id": 12429,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 15208,
- "id": 12432,
- "width": 128,
- "height": 128
- },
- {
- "y": 64,
- "fileNum": 15209,
- "id": 12433,
- "width": 512,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 15209,
- "id": 12434,
- "width": 512,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 15209,
- "id": 12435,
- "width": 512,
- "height": 64
- },
- {
- "y": 256,
- "fileNum": 15209,
- "id": 12436,
- "width": 512,
- "height": 64
- },
- {
- "y": 320,
- "fileNum": 15209,
- "id": 12437,
- "width": 512,
- "height": 64
- },
- {
- "y": 384,
- "fileNum": 15209,
- "id": 12438,
- "width": 512,
- "height": 64
- },
- {
- "fileNum": 8176,
- "id": 12439,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8176,
- "id": 12440,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8176,
- "id": 12441,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8176,
- "id": 12442,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8176,
- "id": 12443,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8176,
- "id": 12444,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8176,
- "id": 12445,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8176,
- "id": 12446,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8176,
- "id": 12447,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8176,
- "id": 12448,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8176,
- "id": 12449,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8176,
- "id": 12450,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8176,
- "id": 12451,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8176,
- "id": 12452,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8176,
- "id": 12453,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8176,
- "id": 12454,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8177,
- "id": 12455,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8177,
- "id": 12456,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8177,
- "id": 12457,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8177,
- "id": 12458,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8177,
- "id": 12459,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8177,
- "id": 12460,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8177,
- "id": 12461,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8177,
- "id": 12462,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8177,
- "id": 12463,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8177,
- "id": 12464,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8177,
- "id": 12465,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8177,
- "id": 12466,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8177,
- "id": 12467,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8177,
- "id": 12468,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8177,
- "id": 12469,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8177,
- "id": 12470,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8178,
- "id": 12471,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8178,
- "id": 12472,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8178,
- "id": 12473,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8178,
- "id": 12474,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8178,
- "id": 12475,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8178,
- "id": 12476,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8178,
- "id": 12477,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8178,
- "id": 12478,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8178,
- "id": 12479,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8178,
- "id": 12480,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8178,
- "id": 12481,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8178,
- "id": 12482,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8178,
- "id": 12483,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8178,
- "id": 12484,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8178,
- "id": 12485,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8178,
- "id": 12486,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8179,
- "id": 12487,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8179,
- "id": 12488,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8179,
- "id": 12489,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8179,
- "id": 12490,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8179,
- "id": 12491,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8179,
- "id": 12492,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8179,
- "id": 12493,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8179,
- "id": 12494,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8179,
- "id": 12495,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8179,
- "id": 12496,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8179,
- "id": 12497,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8179,
- "id": 12498,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8179,
- "id": 12499,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8179,
- "id": 12500,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8179,
- "id": 12501,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8179,
- "id": 12502,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8180,
- "id": 12503,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8180,
- "id": 12504,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8180,
- "id": 12505,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8180,
- "id": 12506,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8180,
- "id": 12507,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8180,
- "id": 12508,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8180,
- "id": 12509,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8180,
- "id": 12510,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8180,
- "id": 12511,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8180,
- "id": 12512,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8180,
- "id": 12513,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8180,
- "id": 12514,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8180,
- "id": 12515,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8180,
- "id": 12516,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8180,
- "id": 12517,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8180,
- "id": 12518,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8181,
- "id": 12519,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8181,
- "id": 12520,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8181,
- "id": 12521,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8181,
- "id": 12522,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8181,
- "id": 12523,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8181,
- "id": 12524,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8181,
- "id": 12525,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8181,
- "id": 12526,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8181,
- "id": 12527,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8181,
- "id": 12528,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8181,
- "id": 12529,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8181,
- "id": 12530,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8181,
- "id": 12531,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8181,
- "id": 12532,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8181,
- "id": 12533,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8181,
- "id": 12534,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8182,
- "id": 12535,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8182,
- "id": 12536,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8182,
- "id": 12537,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8182,
- "id": 12538,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8182,
- "id": 12539,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8182,
- "id": 12540,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8182,
- "id": 12541,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8182,
- "id": 12542,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8182,
- "id": 12543,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8182,
- "id": 12544,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8182,
- "id": 12545,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8182,
- "id": 12546,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8182,
- "id": 12547,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8182,
- "id": 12548,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8182,
- "id": 12549,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8182,
- "id": 12550,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8183,
- "id": 12551,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8183,
- "id": 12552,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8183,
- "id": 12553,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8183,
- "id": 12554,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8183,
- "id": 12555,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8183,
- "id": 12556,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8183,
- "id": 12557,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8183,
- "id": 12558,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8183,
- "id": 12559,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8183,
- "id": 12560,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8183,
- "id": 12561,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8183,
- "id": 12562,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8183,
- "id": 12563,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8183,
- "id": 12564,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8183,
- "id": 12565,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8183,
- "id": 12566,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8184,
- "id": 12567,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8184,
- "id": 12568,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8184,
- "id": 12569,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8184,
- "id": 12570,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8184,
- "id": 12571,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8184,
- "id": 12572,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8184,
- "id": 12573,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8184,
- "id": 12574,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8184,
- "id": 12575,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8184,
- "id": 12576,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8184,
- "id": 12577,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8184,
- "id": 12578,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8184,
- "id": 12579,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8184,
- "id": 12580,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8184,
- "id": 12581,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8184,
- "id": 12582,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8185,
- "id": 12583,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8185,
- "id": 12584,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8185,
- "id": 12585,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8185,
- "id": 12586,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8185,
- "id": 12587,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8185,
- "id": 12588,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8185,
- "id": 12589,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8185,
- "id": 12590,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8185,
- "id": 12591,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8185,
- "id": 12592,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8185,
- "id": 12593,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8185,
- "id": 12594,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8185,
- "id": 12595,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8185,
- "id": 12596,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8185,
- "id": 12597,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8185,
- "id": 12598,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8186,
- "id": 12599,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8186,
- "id": 12600,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8186,
- "id": 12601,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8186,
- "id": 12602,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8186,
- "id": 12603,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8186,
- "id": 12604,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8186,
- "id": 12605,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8186,
- "id": 12606,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8186,
- "id": 12607,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8186,
- "id": 12608,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8186,
- "id": 12609,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8186,
- "id": 12610,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8186,
- "id": 12611,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8186,
- "id": 12612,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8186,
- "id": 12613,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8186,
- "id": 12614,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8187,
- "id": 12615,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8187,
- "id": 12616,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8187,
- "id": 12617,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8187,
- "id": 12618,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8187,
- "id": 12619,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8187,
- "id": 12620,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8187,
- "id": 12621,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8187,
- "id": 12622,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8187,
- "id": 12623,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8187,
- "id": 12624,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8187,
- "id": 12625,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8187,
- "id": 12626,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8187,
- "id": 12627,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8187,
- "id": 12628,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8187,
- "id": 12629,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8187,
- "id": 12630,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8188,
- "id": 12631,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8188,
- "id": 12632,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8188,
- "id": 12633,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8188,
- "id": 12634,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8188,
- "id": 12635,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8188,
- "id": 12636,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8188,
- "id": 12637,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8188,
- "id": 12638,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8188,
- "id": 12639,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8188,
- "id": 12640,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8188,
- "id": 12641,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8188,
- "id": 12642,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8188,
- "id": 12643,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8188,
- "id": 12644,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8188,
- "id": 12645,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8188,
- "id": 12646,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8189,
- "id": 12647,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8189,
- "id": 12648,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8189,
- "id": 12649,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8189,
- "id": 12650,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8189,
- "id": 12651,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8189,
- "id": 12652,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8189,
- "id": 12653,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8189,
- "id": 12654,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8189,
- "id": 12655,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8189,
- "id": 12656,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8189,
- "id": 12657,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8189,
- "id": 12658,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8189,
- "id": 12659,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8189,
- "id": 12660,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8189,
- "id": 12661,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8189,
- "id": 12662,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 4145,
- "id": 12663,
- "width": 280,
- "height": 340
- },
- {
- "x": 280,
- "fileNum": 4145,
- "id": 12664,
- "width": 280,
- "height": 340
- },
- {
- "x": 560,
- "fileNum": 4145,
- "id": 12665,
- "width": 280,
- "height": 340
- },
- {
- "x": 840,
- "fileNum": 4145,
- "id": 12666,
- "width": 280,
- "height": 340
- },
- {
- "x": 1120,
- "fileNum": 4145,
- "id": 12667,
- "width": 280,
- "height": 340
- },
- {
- "x": 1400,
- "fileNum": 4145,
- "id": 12668,
- "width": 280,
- "height": 340
- },
- {
- "x": 1680,
- "fileNum": 4145,
- "id": 12669,
- "width": 280,
- "height": 340
- },
- {
- "x": 1960,
- "fileNum": 4145,
- "id": 12670,
- "width": 280,
- "height": 340
- },
- {
- "y": 340,
- "fileNum": 4145,
- "id": 12671,
- "width": 280,
- "height": 340
- },
- {
- "x": 280,
- "y": 340,
- "fileNum": 4145,
- "id": 12672,
- "width": 280,
- "height": 340
- },
- {
- "x": 560,
- "y": 340,
- "fileNum": 4145,
- "id": 12673,
- "width": 280,
- "height": 340
- },
- {
- "x": 840,
- "y": 340,
- "fileNum": 4145,
- "id": 12674,
- "width": 280,
- "height": 340
- },
- {
- "x": 1120,
- "y": 340,
- "fileNum": 4145,
- "id": 12675,
- "width": 280,
- "height": 340
- },
- {
- "x": 1400,
- "y": 340,
- "fileNum": 4145,
- "id": 12676,
- "width": 280,
- "height": 340
- },
- {
- "x": 1680,
- "y": 340,
- "fileNum": 4145,
- "id": 12677,
- "width": 280,
- "height": 340
- },
- {
- "x": 1960,
- "y": 340,
- "fileNum": 4145,
- "id": 12678,
- "width": 280,
- "height": 340
- },
- {
- "y": 1020,
- "fileNum": 4145,
- "id": 12679,
- "width": 280,
- "height": 340
- },
- {
- "x": 280,
- "y": 1020,
- "fileNum": 4145,
- "id": 12680,
- "width": 280,
- "height": 340
- },
- {
- "x": 560,
- "y": 1020,
- "fileNum": 4145,
- "id": 12681,
- "width": 280,
- "height": 340
- },
- {
- "x": 840,
- "y": 1020,
- "fileNum": 4145,
- "id": 12682,
- "width": 280,
- "height": 340
- },
- {
- "x": 1120,
- "y": 1020,
- "fileNum": 4145,
- "id": 12683,
- "width": 280,
- "height": 340
- },
- {
- "x": 1400,
- "y": 1020,
- "fileNum": 4145,
- "id": 12684,
- "width": 280,
- "height": 340
- },
- {
- "x": 1680,
- "y": 1020,
- "fileNum": 4145,
- "id": 12685,
- "width": 280,
- "height": 340
- },
- {
- "x": 1960,
- "y": 1020,
- "fileNum": 4145,
- "id": 12686,
- "width": 280,
- "height": 340
- },
- {
- "y": 680,
- "fileNum": 4145,
- "id": 12687,
- "width": 280,
- "height": 340
- },
- {
- "x": 280,
- "y": 680,
- "fileNum": 4145,
- "id": 12688,
- "width": 280,
- "height": 340
- },
- {
- "x": 560,
- "y": 680,
- "fileNum": 4145,
- "id": 12689,
- "width": 280,
- "height": 340
- },
- {
- "x": 840,
- "y": 680,
- "fileNum": 4145,
- "id": 12690,
- "width": 280,
- "height": 340
- },
- {
- "x": 1120,
- "y": 680,
- "fileNum": 4145,
- "id": 12691,
- "width": 280,
- "height": 340
- },
- {
- "x": 1400,
- "y": 680,
- "fileNum": 4145,
- "id": 12692,
- "width": 280,
- "height": 340
- },
- {
- "x": 1680,
- "y": 680,
- "fileNum": 4145,
- "id": 12693,
- "width": 280,
- "height": 340
- },
- {
- "x": 1960,
- "y": 680,
- "fileNum": 4145,
- "id": 12694,
- "width": 280,
- "height": 340
- },
- {
- "fileNum": 15074,
- "id": 12700,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 13007,
- "id": 12703,
- "width": 360,
- "height": 420
- },
- {
- "fileNum": 13008,
- "id": 12704,
- "width": 152,
- "height": 136
- },
- {
- "fileNum": 13009,
- "id": 12705,
- "width": 90,
- "height": 200
- },
- {
- "fileNum": 15116,
- "id": 12706,
- "width": 64,
- "height": 98
- },
- {
- "fileNum": 15117,
- "id": 12707,
- "width": 82,
- "height": 108
- },
- {
- "fileNum": 15118,
- "id": 12708,
- "width": 132,
- "height": 142
- },
- {
- "fileNum": 13010,
- "id": 12709,
- "width": 88,
- "height": 100
- },
- {
- "fileNum": 15119,
- "id": 12710,
- "width": 122,
- "height": 150
- },
- {
- "fileNum": 15120,
- "id": 12711,
- "width": 122,
- "height": 150
- },
- {
- "fileNum": 12044,
- "id": 12712,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12044,
- "id": 12713,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12044,
- "id": 12714,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12044,
- "id": 12715,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 13011,
- "id": 12716,
- "width": 108,
- "height": 86
- },
- {
- "fileNum": 13012,
- "id": 12717,
- "width": 102,
- "height": 86
- },
- {
- "fileNum": 13013,
- "id": 12718,
- "width": 106,
- "height": 96
- },
- {
- "fileNum": 13014,
- "id": 12719,
- "width": 94,
- "height": 92
- },
- {
- "fileNum": 15130,
- "id": 12720,
- "width": 70,
- "height": 70
- },
- {
- "fileNum": 15131,
- "id": 12721,
- "width": 70,
- "height": 70
- },
- {
- "fileNum": 15132,
- "id": 12722,
- "width": 70,
- "height": 70
- },
- {
- "fileNum": 15133,
- "id": 12723,
- "width": 160,
- "height": 102
- },
- {
- "fileNum": 15136,
- "id": 12724,
- "width": 64,
- "height": 70
- },
- {
- "fileNum": 15139,
- "id": 12725,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15142,
- "id": 12726,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15145,
- "id": 12727,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 4111,
- "id": 12728,
- "width": 130,
- "height": 132
- },
- {
- "x": 130,
- "fileNum": 4111,
- "id": 12729,
- "width": 130,
- "height": 132
- },
- {
- "x": 260,
- "fileNum": 4111,
- "id": 12730,
- "width": 130,
- "height": 132
- },
- {
- "x": 390,
- "fileNum": 4111,
- "id": 12731,
- "width": 130,
- "height": 132
- },
- {
- "x": 520,
- "fileNum": 4111,
- "id": 12732,
- "width": 130,
- "height": 132
- },
- {
- "y": 130,
- "fileNum": 4111,
- "id": 12733,
- "width": 130,
- "height": 132
- },
- {
- "x": 130,
- "y": 130,
- "fileNum": 4111,
- "id": 12734,
- "width": 130,
- "height": 132
- },
- {
- "x": 260,
- "y": 130,
- "fileNum": 4111,
- "id": 12735,
- "width": 130,
- "height": 132
- },
- {
- "x": 390,
- "y": 130,
- "fileNum": 4111,
- "id": 12736,
- "width": 130,
- "height": 132
- },
- {
- "x": 520,
- "y": 130,
- "fileNum": 4111,
- "id": 12737,
- "width": 130,
- "height": 132
- },
- {
- "y": 264,
- "fileNum": 4111,
- "id": 12738,
- "width": 130,
- "height": 132
- },
- {
- "x": 130,
- "y": 264,
- "fileNum": 4111,
- "id": 12739,
- "width": 130,
- "height": 132
- },
- {
- "x": 260,
- "y": 264,
- "fileNum": 4111,
- "id": 12740,
- "width": 130,
- "height": 132
- },
- {
- "x": 390,
- "y": 264,
- "fileNum": 4111,
- "id": 12741,
- "width": 130,
- "height": 132
- },
- {
- "x": 520,
- "y": 264,
- "fileNum": 4111,
- "id": 12742,
- "width": 130,
- "height": 132
- },
- {
- "y": 396,
- "fileNum": 4111,
- "id": 12743,
- "width": 130,
- "height": 132
- },
- {
- "x": 130,
- "y": 396,
- "fileNum": 4111,
- "id": 12744,
- "width": 130,
- "height": 132
- },
- {
- "x": 260,
- "y": 396,
- "fileNum": 4111,
- "id": 12745,
- "width": 130,
- "height": 132
- },
- {
- "x": 390,
- "y": 396,
- "fileNum": 4111,
- "id": 12746,
- "width": 130,
- "height": 132
- },
- {
- "x": 520,
- "y": 396,
- "fileNum": 4111,
- "id": 12747,
- "width": 130,
- "height": 132
- },
- {
- "fileNum": 229,
- "id": 12752,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 218,
- "id": 12753,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 218,
- "id": 12754,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 218,
- "id": 12755,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 218,
- "id": 12756,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 218,
- "id": 12757,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 218,
- "id": 12758,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 218,
- "id": 12759,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 218,
- "id": 12760,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 218,
- "id": 12761,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 218,
- "id": 12762,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 218,
- "id": 12763,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 218,
- "id": 12764,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 218,
- "id": 12765,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 218,
- "id": 12766,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 218,
- "id": 12767,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 218,
- "id": 12768,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 218,
- "id": 12769,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 218,
- "id": 12770,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 218,
- "id": 12771,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 218,
- "id": 12772,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 218,
- "id": 12773,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 218,
- "id": 12774,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 207,
- "id": 12779,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 203,
- "id": 12780,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 203,
- "id": 12781,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 203,
- "id": 12782,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 203,
- "id": 12783,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 203,
- "id": 12784,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 203,
- "id": 12785,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 203,
- "id": 12786,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 203,
- "id": 12787,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 203,
- "id": 12788,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 203,
- "id": 12789,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 203,
- "id": 12790,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 203,
- "id": 12791,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 203,
- "id": 12792,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 203,
- "id": 12793,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 203,
- "id": 12794,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 203,
- "id": 12795,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 203,
- "id": 12796,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 203,
- "id": 12797,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 203,
- "id": 12798,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 203,
- "id": 12799,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 203,
- "id": 12800,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 203,
- "id": 12801,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 152,
- "id": 12806,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 151,
- "id": 12807,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 151,
- "id": 12808,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 151,
- "id": 12809,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 151,
- "id": 12810,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 151,
- "id": 12811,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 151,
- "id": 12812,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 151,
- "id": 12813,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 151,
- "id": 12814,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 151,
- "id": 12815,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 151,
- "id": 12816,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 151,
- "id": 12817,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 151,
- "id": 12818,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 151,
- "id": 12819,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 151,
- "id": 12820,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 151,
- "id": 12821,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 151,
- "id": 12822,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 151,
- "id": 12823,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 151,
- "id": 12824,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 151,
- "id": 12825,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 151,
- "id": 12826,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 151,
- "id": 12827,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 151,
- "id": 12828,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 154,
- "id": 12833,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 153,
- "id": 12834,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 153,
- "id": 12835,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 153,
- "id": 12836,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 153,
- "id": 12837,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 153,
- "id": 12838,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 153,
- "id": 12839,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 153,
- "id": 12840,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 153,
- "id": 12841,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 153,
- "id": 12842,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 153,
- "id": 12843,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 153,
- "id": 12844,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 153,
- "id": 12845,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 153,
- "id": 12846,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 153,
- "id": 12847,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 153,
- "id": 12848,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 153,
- "id": 12849,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 153,
- "id": 12850,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 153,
- "id": 12851,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 153,
- "id": 12852,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 153,
- "id": 12853,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 153,
- "id": 12854,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 153,
- "id": 12855,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 156,
- "id": 12860,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 155,
- "id": 12861,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 155,
- "id": 12862,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 155,
- "id": 12863,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 155,
- "id": 12864,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 155,
- "id": 12865,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 155,
- "id": 12866,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 155,
- "id": 12867,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 155,
- "id": 12868,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 155,
- "id": 12869,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 155,
- "id": 12870,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 155,
- "id": 12871,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 155,
- "id": 12872,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 155,
- "id": 12873,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 155,
- "id": 12874,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 155,
- "id": 12875,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 155,
- "id": 12876,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 155,
- "id": 12877,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 155,
- "id": 12878,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 155,
- "id": 12879,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 155,
- "id": 12880,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 155,
- "id": 12881,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 155,
- "id": 12882,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 158,
- "id": 12887,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 157,
- "id": 12888,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 157,
- "id": 12889,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 157,
- "id": 12890,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 157,
- "id": 12891,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 157,
- "id": 12892,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 157,
- "id": 12893,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 157,
- "id": 12894,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 157,
- "id": 12895,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 157,
- "id": 12896,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 157,
- "id": 12897,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 157,
- "id": 12898,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 157,
- "id": 12899,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 157,
- "id": 12900,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 157,
- "id": 12901,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 157,
- "id": 12902,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 157,
- "id": 12903,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 157,
- "id": 12904,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 157,
- "id": 12905,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 157,
- "id": 12906,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 157,
- "id": 12907,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 157,
- "id": 12908,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 157,
- "id": 12909,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 160,
- "id": 12914,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 159,
- "id": 12915,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 159,
- "id": 12916,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 159,
- "id": 12917,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 159,
- "id": 12918,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 159,
- "id": 12919,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 159,
- "id": 12920,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 159,
- "id": 12921,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 159,
- "id": 12922,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 159,
- "id": 12923,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 159,
- "id": 12924,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 159,
- "id": 12925,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 159,
- "id": 12926,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 159,
- "id": 12927,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 159,
- "id": 12928,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 159,
- "id": 12929,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 159,
- "id": 12930,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 159,
- "id": 12931,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 159,
- "id": 12932,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 159,
- "id": 12933,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 159,
- "id": 12934,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 159,
- "id": 12935,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 159,
- "id": 12936,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4066,
- "id": 12941,
- "width": 114,
- "height": 198
- },
- {
- "x": 114,
- "fileNum": 4066,
- "id": 12942,
- "width": 114,
- "height": 198
- },
- {
- "x": 228,
- "fileNum": 4066,
- "id": 12943,
- "width": 114,
- "height": 198
- },
- {
- "x": 342,
- "fileNum": 4066,
- "id": 12944,
- "width": 114,
- "height": 198
- },
- {
- "x": 456,
- "fileNum": 4066,
- "id": 12945,
- "width": 114,
- "height": 198
- },
- {
- "x": 570,
- "fileNum": 4066,
- "id": 12946,
- "width": 114,
- "height": 198
- },
- {
- "y": 198,
- "fileNum": 4066,
- "id": 12947,
- "width": 114,
- "height": 198
- },
- {
- "x": 114,
- "y": 198,
- "fileNum": 4066,
- "id": 12948,
- "width": 114,
- "height": 198
- },
- {
- "x": 228,
- "y": 198,
- "fileNum": 4066,
- "id": 12949,
- "width": 114,
- "height": 198
- },
- {
- "x": 342,
- "y": 198,
- "fileNum": 4066,
- "id": 12950,
- "width": 114,
- "height": 198
- },
- {
- "x": 456,
- "y": 198,
- "fileNum": 4066,
- "id": 12951,
- "width": 114,
- "height": 198
- },
- {
- "x": 570,
- "y": 198,
- "fileNum": 4066,
- "id": 12952,
- "width": 114,
- "height": 198
- },
- {
- "y": 396,
- "fileNum": 4066,
- "id": 12953,
- "width": 114,
- "height": 198
- },
- {
- "x": 114,
- "y": 396,
- "fileNum": 4066,
- "id": 12954,
- "width": 114,
- "height": 198
- },
- {
- "x": 228,
- "y": 396,
- "fileNum": 4066,
- "id": 12955,
- "width": 114,
- "height": 198
- },
- {
- "x": 342,
- "y": 396,
- "fileNum": 4066,
- "id": 12956,
- "width": 114,
- "height": 198
- },
- {
- "x": 456,
- "y": 396,
- "fileNum": 4066,
- "id": 12957,
- "width": 114,
- "height": 198
- },
- {
- "y": 594,
- "fileNum": 4066,
- "id": 12958,
- "width": 114,
- "height": 198
- },
- {
- "x": 114,
- "y": 594,
- "fileNum": 4066,
- "id": 12959,
- "width": 114,
- "height": 198
- },
- {
- "x": 228,
- "y": 594,
- "fileNum": 4066,
- "id": 12960,
- "width": 114,
- "height": 198
- },
- {
- "x": 342,
- "y": 594,
- "fileNum": 4066,
- "id": 12961,
- "width": 114,
- "height": 198
- },
- {
- "x": 456,
- "y": 594,
- "fileNum": 4066,
- "id": 12962,
- "width": 114,
- "height": 198
- },
- {
- "fileNum": 22005,
- "id": 12967,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 22004,
- "id": 12968,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 22004,
- "id": 12969,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 22004,
- "id": 12970,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 22004,
- "id": 12971,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 22004,
- "id": 12972,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 22004,
- "id": 12973,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 22004,
- "id": 12974,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 22004,
- "id": 12975,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 22004,
- "id": 12976,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 22004,
- "id": 12977,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 22004,
- "id": 12978,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 22004,
- "id": 12979,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 22004,
- "id": 12980,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 22004,
- "id": 12981,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 22004,
- "id": 12982,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 22004,
- "id": 12983,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 22004,
- "id": 12984,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 22004,
- "id": 12985,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 22004,
- "id": 12986,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 22004,
- "id": 12987,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 22004,
- "id": 12988,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 22004,
- "id": 12989,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2197,
- "id": 12994,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2197,
- "id": 12995,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2197,
- "id": 12996,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2197,
- "id": 12997,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2198,
- "id": 12998,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2198,
- "id": 12999,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2198,
- "id": 13000,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2198,
- "id": 13001,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2044,
- "id": 13003,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2044,
- "id": 13004,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2044,
- "id": 13005,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2044,
- "id": 13006,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2046,
- "id": 13007,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2046,
- "id": 13008,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2046,
- "id": 13009,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2046,
- "id": 13010,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2049,
- "id": 13011,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2049,
- "id": 13012,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2049,
- "id": 13013,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2049,
- "id": 13014,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2051,
- "id": 13015,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2051,
- "id": 13016,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2051,
- "id": 13017,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2051,
- "id": 13018,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2054,
- "id": 13019,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2054,
- "id": 13020,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2054,
- "id": 13021,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2054,
- "id": 13022,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2056,
- "id": 13023,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2056,
- "id": 13024,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2056,
- "id": 13025,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2056,
- "id": 13026,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2064,
- "id": 13027,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2064,
- "id": 13028,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2064,
- "id": 13029,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2064,
- "id": 13030,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2067,
- "id": 13031,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2067,
- "id": 13032,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2067,
- "id": 13033,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2067,
- "id": 13034,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2069,
- "id": 13035,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2069,
- "id": 13036,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2069,
- "id": 13037,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2069,
- "id": 13038,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2075,
- "id": 13039,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2075,
- "id": 13040,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2075,
- "id": 13041,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2075,
- "id": 13042,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2083,
- "id": 13043,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2083,
- "id": 13044,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2083,
- "id": 13045,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2083,
- "id": 13046,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2086,
- "id": 13047,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2086,
- "id": 13048,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2086,
- "id": 13049,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2086,
- "id": 13050,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2090,
- "id": 13051,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2090,
- "id": 13052,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2090,
- "id": 13053,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2090,
- "id": 13054,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2097,
- "id": 13055,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2097,
- "id": 13056,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2097,
- "id": 13057,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2097,
- "id": 13058,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2059,
- "id": 13059,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2059,
- "id": 13060,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2059,
- "id": 13061,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2059,
- "id": 13062,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2060,
- "id": 13063,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2060,
- "id": 13064,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2060,
- "id": 13065,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2060,
- "id": 13066,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2061,
- "id": 13067,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2061,
- "id": 13068,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2061,
- "id": 13069,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2061,
- "id": 13070,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2058,
- "id": 13071,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2058,
- "id": 13072,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2058,
- "id": 13073,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2058,
- "id": 13074,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2105,
- "id": 13075,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2105,
- "id": 13076,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2105,
- "id": 13077,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2105,
- "id": 13078,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2106,
- "id": 13079,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2106,
- "id": 13080,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2106,
- "id": 13081,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2106,
- "id": 13082,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2072,
- "id": 13083,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2072,
- "id": 13084,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2072,
- "id": 13085,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2072,
- "id": 13086,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2071,
- "id": 13087,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2071,
- "id": 13088,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2071,
- "id": 13089,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2071,
- "id": 13090,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2073,
- "id": 13091,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2073,
- "id": 13092,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2073,
- "id": 13093,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2073,
- "id": 13094,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2070,
- "id": 13095,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2070,
- "id": 13096,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2070,
- "id": 13097,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2070,
- "id": 13098,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2093,
- "id": 13099,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2093,
- "id": 13100,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2093,
- "id": 13101,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2093,
- "id": 13102,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2001,
- "id": 13103,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2001,
- "id": 13104,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2001,
- "id": 13105,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2001,
- "id": 13106,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2002,
- "id": 13107,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2002,
- "id": 13108,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2002,
- "id": 13109,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2002,
- "id": 13110,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2003,
- "id": 13111,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2003,
- "id": 13112,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2003,
- "id": 13113,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2003,
- "id": 13114,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2004,
- "id": 13115,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2004,
- "id": 13116,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2004,
- "id": 13117,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2004,
- "id": 13118,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2005,
- "id": 13119,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2005,
- "id": 13120,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2005,
- "id": 13121,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2005,
- "id": 13122,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2006,
- "id": 13123,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2006,
- "id": 13124,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2006,
- "id": 13125,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2006,
- "id": 13126,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2007,
- "id": 13127,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2007,
- "id": 13128,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2007,
- "id": 13129,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2007,
- "id": 13130,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2008,
- "id": 13131,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2008,
- "id": 13132,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2008,
- "id": 13133,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2008,
- "id": 13134,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2009,
- "id": 13135,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2009,
- "id": 13136,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2009,
- "id": 13137,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2009,
- "id": 13138,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2010,
- "id": 13139,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2010,
- "id": 13140,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2010,
- "id": 13141,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2010,
- "id": 13142,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2011,
- "id": 13143,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2011,
- "id": 13144,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2011,
- "id": 13145,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2011,
- "id": 13146,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2012,
- "id": 13147,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2012,
- "id": 13148,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2012,
- "id": 13149,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2012,
- "id": 13150,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2013,
- "id": 13151,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2013,
- "id": 13152,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2013,
- "id": 13153,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2013,
- "id": 13154,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2014,
- "id": 13155,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2014,
- "id": 13156,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2014,
- "id": 13157,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2014,
- "id": 13158,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2015,
- "id": 13159,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2015,
- "id": 13160,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2015,
- "id": 13161,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2015,
- "id": 13162,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2016,
- "id": 13163,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2016,
- "id": 13164,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2016,
- "id": 13165,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2016,
- "id": 13166,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2017,
- "id": 13167,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2017,
- "id": 13168,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2017,
- "id": 13169,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2017,
- "id": 13170,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2018,
- "id": 13171,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2018,
- "id": 13172,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2018,
- "id": 13173,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2018,
- "id": 13174,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2019,
- "id": 13175,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2019,
- "id": 13176,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2019,
- "id": 13177,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2019,
- "id": 13178,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2020,
- "id": 13179,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2020,
- "id": 13180,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2020,
- "id": 13181,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2020,
- "id": 13182,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2021,
- "id": 13183,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2021,
- "id": 13184,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2021,
- "id": 13185,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2021,
- "id": 13186,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2022,
- "id": 13187,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2022,
- "id": 13188,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2022,
- "id": 13189,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2022,
- "id": 13190,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2023,
- "id": 13191,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2023,
- "id": 13192,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2023,
- "id": 13193,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2023,
- "id": 13194,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2024,
- "id": 13195,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2024,
- "id": 13196,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2024,
- "id": 13197,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2024,
- "id": 13198,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2025,
- "id": 13199,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2025,
- "id": 13200,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2025,
- "id": 13201,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2025,
- "id": 13202,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2026,
- "id": 13203,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2026,
- "id": 13204,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2026,
- "id": 13205,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2026,
- "id": 13206,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2027,
- "id": 13207,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2027,
- "id": 13208,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2027,
- "id": 13209,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2027,
- "id": 13210,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2028,
- "id": 13211,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2028,
- "id": 13212,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2028,
- "id": 13213,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2028,
- "id": 13214,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2029,
- "id": 13215,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2029,
- "id": 13216,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2029,
- "id": 13217,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2029,
- "id": 13218,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2030,
- "id": 13219,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2030,
- "id": 13220,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2030,
- "id": 13221,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2030,
- "id": 13222,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2031,
- "id": 13223,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2031,
- "id": 13224,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2031,
- "id": 13225,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2031,
- "id": 13226,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2032,
- "id": 13227,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2032,
- "id": 13228,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2032,
- "id": 13229,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2032,
- "id": 13230,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2033,
- "id": 13231,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2033,
- "id": 13232,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2033,
- "id": 13233,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2033,
- "id": 13234,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2034,
- "id": 13235,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2034,
- "id": 13236,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2034,
- "id": 13237,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2034,
- "id": 13238,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2035,
- "id": 13239,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2035,
- "id": 13240,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2035,
- "id": 13241,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2035,
- "id": 13242,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2036,
- "id": 13243,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2036,
- "id": 13244,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2036,
- "id": 13245,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2036,
- "id": 13246,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2037,
- "id": 13247,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2037,
- "id": 13248,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2037,
- "id": 13249,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2037,
- "id": 13250,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2038,
- "id": 13251,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2038,
- "id": 13252,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2038,
- "id": 13253,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2038,
- "id": 13254,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 20007,
- "id": 13255,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 20008,
- "id": 13256,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 20008,
- "id": 13257,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 20008,
- "id": 13258,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 20008,
- "id": 13259,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 20008,
- "id": 13260,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 20008,
- "id": 13261,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 20008,
- "id": 13262,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 20008,
- "id": 13263,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 20008,
- "id": 13264,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 20008,
- "id": 13265,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 20008,
- "id": 13266,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 20008,
- "id": 13267,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 20008,
- "id": 13268,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 20008,
- "id": 13269,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 20008,
- "id": 13270,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 20008,
- "id": 13271,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 20008,
- "id": 13272,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 20008,
- "id": 13273,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 20008,
- "id": 13274,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 20008,
- "id": 13275,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 20008,
- "id": 13276,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 20008,
- "id": 13277,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 102,
- "id": 13282,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 103,
- "id": 13283,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 103,
- "id": 13284,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 103,
- "id": 13285,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 103,
- "id": 13286,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 103,
- "id": 13287,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 103,
- "id": 13288,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 103,
- "id": 13289,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 103,
- "id": 13290,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 103,
- "id": 13291,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 103,
- "id": 13292,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 103,
- "id": 13293,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 103,
- "id": 13294,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 103,
- "id": 13295,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 103,
- "id": 13296,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 103,
- "id": 13297,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 103,
- "id": 13298,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 103,
- "id": 13299,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 103,
- "id": 13300,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 103,
- "id": 13301,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 103,
- "id": 13302,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 103,
- "id": 13303,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 103,
- "id": 13304,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16012,
- "id": 13309,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16012,
- "id": 13310,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16012,
- "id": 13311,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16012,
- "id": 13312,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16012,
- "id": 13313,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16012,
- "id": 13314,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16012,
- "id": 13315,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16012,
- "id": 13316,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16012,
- "id": 13317,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16012,
- "id": 13318,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16012,
- "id": 13319,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16012,
- "id": 13320,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16012,
- "id": 13321,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16012,
- "id": 13322,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16012,
- "id": 13323,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16012,
- "id": 13324,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16012,
- "id": 13325,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16012,
- "id": 13326,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16012,
- "id": 13327,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16012,
- "id": 13328,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16012,
- "id": 13329,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16012,
- "id": 13330,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16013,
- "id": 13335,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16013,
- "id": 13336,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16013,
- "id": 13337,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16013,
- "id": 13338,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16013,
- "id": 13339,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16013,
- "id": 13340,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16013,
- "id": 13341,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16013,
- "id": 13342,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16013,
- "id": 13343,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16013,
- "id": 13344,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16013,
- "id": 13345,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16013,
- "id": 13346,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16013,
- "id": 13347,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16013,
- "id": 13348,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16013,
- "id": 13349,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16013,
- "id": 13350,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16013,
- "id": 13351,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16013,
- "id": 13352,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16013,
- "id": 13353,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16013,
- "id": 13354,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16013,
- "id": 13355,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16013,
- "id": 13356,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16014,
- "id": 13361,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16014,
- "id": 13362,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16014,
- "id": 13363,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16014,
- "id": 13364,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16014,
- "id": 13365,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16014,
- "id": 13366,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16014,
- "id": 13367,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16014,
- "id": 13368,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16014,
- "id": 13369,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16014,
- "id": 13370,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16014,
- "id": 13371,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16014,
- "id": 13372,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16014,
- "id": 13373,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16014,
- "id": 13374,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16014,
- "id": 13375,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16014,
- "id": 13376,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16014,
- "id": 13377,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16014,
- "id": 13378,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16014,
- "id": 13379,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16014,
- "id": 13380,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16014,
- "id": 13381,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16014,
- "id": 13382,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 12082,
- "id": 13387,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12082,
- "id": 13388,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12082,
- "id": 13389,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12082,
- "id": 13390,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12082,
- "id": 13391,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12082,
- "id": 13392,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12082,
- "id": 13393,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12082,
- "id": 13394,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12082,
- "id": 13395,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12082,
- "id": 13396,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12082,
- "id": 13397,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12082,
- "id": 13398,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12082,
- "id": 13399,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12082,
- "id": 13400,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12082,
- "id": 13401,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12082,
- "id": 13402,
- "width": 64,
- "height": 64
- },
- {
- "y": 256,
- "fileNum": 12082,
- "id": 13403,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 256,
- "fileNum": 12082,
- "id": 13404,
- "width": 64,
- "height": 64
- },
- {
- "y": 320,
- "fileNum": 12082,
- "id": 13405,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 320,
- "fileNum": 12082,
- "id": 13406,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 256,
- "fileNum": 12082,
- "id": 13407,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 256,
- "fileNum": 12082,
- "id": 13408,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 320,
- "fileNum": 12082,
- "id": 13409,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 320,
- "fileNum": 12082,
- "id": 13410,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 256,
- "fileNum": 12082,
- "id": 13411,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 256,
- "fileNum": 12082,
- "id": 13412,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 320,
- "fileNum": 12082,
- "id": 13413,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 320,
- "fileNum": 12082,
- "id": 13414,
- "width": 64,
- "height": 64
- },
- {
- "y": 384,
- "fileNum": 12082,
- "id": 13415,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 384,
- "fileNum": 12082,
- "id": 13416,
- "width": 64,
- "height": 64
- },
- {
- "y": 448,
- "fileNum": 12082,
- "id": 13417,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 448,
- "fileNum": 12082,
- "id": 13418,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 384,
- "fileNum": 12082,
- "id": 13419,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 384,
- "fileNum": 12082,
- "id": 13420,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 448,
- "fileNum": 12082,
- "id": 13421,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 448,
- "fileNum": 12082,
- "id": 13422,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 384,
- "fileNum": 12082,
- "id": 13423,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 384,
- "fileNum": 12082,
- "id": 13424,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 448,
- "fileNum": 12082,
- "id": 13425,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 448,
- "fileNum": 12082,
- "id": 13426,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 256,
- "fileNum": 12082,
- "id": 13427,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 256,
- "fileNum": 12082,
- "id": 13428,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 320,
- "fileNum": 12082,
- "id": 13429,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 320,
- "fileNum": 12082,
- "id": 13430,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 384,
- "fileNum": 12082,
- "id": 13431,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 384,
- "fileNum": 12082,
- "id": 13432,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 448,
- "fileNum": 12082,
- "id": 13433,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 448,
- "fileNum": 12082,
- "id": 13434,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12082,
- "id": 13435,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12082,
- "id": 13436,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12082,
- "id": 13437,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12082,
- "id": 13438,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12082,
- "id": 13439,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12082,
- "id": 13440,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12082,
- "id": 13441,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12082,
- "id": 13442,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12082,
- "id": 13443,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12082,
- "id": 13444,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12082,
- "id": 13445,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12082,
- "id": 13446,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12082,
- "id": 13447,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12082,
- "id": 13448,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12082,
- "id": 13449,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12082,
- "id": 13450,
- "width": 64,
- "height": 64
- },
- {
- "y": 512,
- "fileNum": 12082,
- "id": 13451,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 512,
- "fileNum": 12082,
- "id": 13452,
- "width": 64,
- "height": 64
- },
- {
- "y": 576,
- "fileNum": 12082,
- "id": 13453,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 576,
- "fileNum": 12082,
- "id": 13454,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 512,
- "fileNum": 12082,
- "id": 13455,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 512,
- "fileNum": 12082,
- "id": 13456,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 576,
- "fileNum": 12082,
- "id": 13457,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 576,
- "fileNum": 12082,
- "id": 13458,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 512,
- "fileNum": 12082,
- "id": 13459,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 512,
- "fileNum": 12082,
- "id": 13460,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 576,
- "fileNum": 12082,
- "id": 13461,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 576,
- "fileNum": 12082,
- "id": 13462,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 512,
- "fileNum": 12082,
- "id": 13463,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 512,
- "fileNum": 12082,
- "id": 13464,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 576,
- "fileNum": 12082,
- "id": 13465,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 576,
- "fileNum": 12082,
- "id": 13466,
- "width": 64,
- "height": 64
- },
- {
- "y": 640,
- "fileNum": 12082,
- "id": 13467,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 640,
- "fileNum": 12082,
- "id": 13468,
- "width": 64,
- "height": 64
- },
- {
- "y": 704,
- "fileNum": 12082,
- "id": 13469,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 704,
- "fileNum": 12082,
- "id": 13470,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 640,
- "fileNum": 12082,
- "id": 13471,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 640,
- "fileNum": 12082,
- "id": 13472,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 704,
- "fileNum": 12082,
- "id": 13473,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 704,
- "fileNum": 12082,
- "id": 13474,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 640,
- "fileNum": 12082,
- "id": 13475,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 640,
- "fileNum": 12082,
- "id": 13476,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 704,
- "fileNum": 12082,
- "id": 13477,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 704,
- "fileNum": 12082,
- "id": 13478,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 640,
- "fileNum": 12082,
- "id": 13479,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 640,
- "fileNum": 12082,
- "id": 13480,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 704,
- "fileNum": 12082,
- "id": 13481,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 704,
- "fileNum": 12082,
- "id": 13482,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12037,
- "id": 13483,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12037,
- "id": 13484,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12037,
- "id": 13485,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12037,
- "id": 13486,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12037,
- "id": 13487,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12037,
- "id": 13488,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12037,
- "id": 13489,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12037,
- "id": 13490,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12037,
- "id": 13491,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12037,
- "id": 13492,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12037,
- "id": 13493,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12037,
- "id": 13494,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12037,
- "id": 13495,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12037,
- "id": 13496,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12037,
- "id": 13497,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12037,
- "id": 13498,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12037,
- "id": 13499,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12037,
- "id": 13500,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12037,
- "id": 13501,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12037,
- "id": 13502,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12037,
- "id": 13503,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12037,
- "id": 13504,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12037,
- "id": 13505,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12037,
- "id": 13506,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12037,
- "id": 13507,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12037,
- "id": 13508,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12037,
- "id": 13509,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12037,
- "id": 13510,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12037,
- "id": 13511,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12037,
- "id": 13512,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12037,
- "id": 13513,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12037,
- "id": 13514,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12037,
- "id": 13515,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12037,
- "id": 13516,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12037,
- "id": 13517,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12037,
- "id": 13518,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12037,
- "id": 13519,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12037,
- "id": 13520,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12037,
- "id": 13521,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12037,
- "id": 13522,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12037,
- "id": 13523,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12037,
- "id": 13524,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12037,
- "id": 13525,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12037,
- "id": 13526,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12037,
- "id": 13527,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12037,
- "id": 13528,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12037,
- "id": 13529,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12037,
- "id": 13530,
- "width": 64,
- "height": 64
- },
- {
- "y": 256,
- "fileNum": 12037,
- "id": 13531,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 256,
- "fileNum": 12037,
- "id": 13532,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 256,
- "fileNum": 12037,
- "id": 13533,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 256,
- "fileNum": 12037,
- "id": 13534,
- "width": 64,
- "height": 64
- },
- {
- "y": 320,
- "fileNum": 12037,
- "id": 13535,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 320,
- "fileNum": 12037,
- "id": 13536,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 320,
- "fileNum": 12037,
- "id": 13537,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 320,
- "fileNum": 12037,
- "id": 13538,
- "width": 64,
- "height": 64
- },
- {
- "y": 384,
- "fileNum": 12037,
- "id": 13539,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 384,
- "fileNum": 12037,
- "id": 13540,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 384,
- "fileNum": 12037,
- "id": 13541,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 384,
- "fileNum": 12037,
- "id": 13542,
- "width": 64,
- "height": 64
- },
- {
- "y": 448,
- "fileNum": 12037,
- "id": 13543,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 448,
- "fileNum": 12037,
- "id": 13544,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 448,
- "fileNum": 12037,
- "id": 13545,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 448,
- "fileNum": 12037,
- "id": 13546,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 161,
- "id": 13563,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 161,
- "id": 13564,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 161,
- "id": 13565,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 161,
- "id": 13566,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 161,
- "id": 13567,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 161,
- "id": 13568,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 161,
- "id": 13569,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 161,
- "id": 13570,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 161,
- "id": 13571,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 161,
- "id": 13572,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 161,
- "id": 13573,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 161,
- "id": 13574,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 161,
- "id": 13575,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 161,
- "id": 13576,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 161,
- "id": 13577,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 161,
- "id": 13578,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 161,
- "id": 13579,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 161,
- "id": 13580,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 161,
- "id": 13581,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 161,
- "id": 13582,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 161,
- "id": 13583,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 161,
- "id": 13584,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 162,
- "id": 13589,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 296,
- "id": 13590,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 297,
- "id": 13591,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 297,
- "id": 13592,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 297,
- "id": 13593,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 297,
- "id": 13594,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 297,
- "id": 13595,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 297,
- "id": 13596,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 297,
- "id": 13597,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 297,
- "id": 13598,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 297,
- "id": 13599,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 297,
- "id": 13600,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 297,
- "id": 13601,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 297,
- "id": 13602,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 297,
- "id": 13603,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 297,
- "id": 13604,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 297,
- "id": 13605,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 297,
- "id": 13606,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 297,
- "id": 13607,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 297,
- "id": 13608,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 297,
- "id": 13609,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 297,
- "id": 13610,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 297,
- "id": 13611,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 297,
- "id": 13612,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 334,
- "id": 13617,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 334,
- "id": 13618,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 334,
- "id": 13619,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 334,
- "id": 13620,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 334,
- "id": 13621,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 334,
- "id": 13622,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 334,
- "id": 13623,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 334,
- "id": 13624,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 334,
- "id": 13625,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 334,
- "id": 13626,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 334,
- "id": 13627,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 334,
- "id": 13628,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 334,
- "id": 13629,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 334,
- "id": 13630,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 334,
- "id": 13631,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 334,
- "id": 13632,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 334,
- "id": 13633,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 334,
- "id": 13634,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 334,
- "id": 13635,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 334,
- "id": 13636,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 334,
- "id": 13637,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 334,
- "id": 13638,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 423,
- "id": 13639,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 429,
- "id": 13644,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 429,
- "id": 13645,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 429,
- "id": 13646,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 429,
- "id": 13647,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 429,
- "id": 13648,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 429,
- "id": 13649,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 429,
- "id": 13650,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 429,
- "id": 13651,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 429,
- "id": 13652,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 429,
- "id": 13653,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 429,
- "id": 13654,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 429,
- "id": 13655,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 429,
- "id": 13656,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 429,
- "id": 13657,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 429,
- "id": 13658,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 429,
- "id": 13659,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 429,
- "id": 13660,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 429,
- "id": 13661,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 429,
- "id": 13662,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 429,
- "id": 13663,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 429,
- "id": 13664,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 429,
- "id": 13665,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 435,
- "id": 13666,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 446,
- "id": 13671,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 446,
- "id": 13672,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 446,
- "id": 13673,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 446,
- "id": 13674,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 446,
- "id": 13675,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 446,
- "id": 13676,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 446,
- "id": 13677,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 446,
- "id": 13678,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 446,
- "id": 13679,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 446,
- "id": 13680,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 446,
- "id": 13681,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 446,
- "id": 13682,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 446,
- "id": 13683,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 446,
- "id": 13684,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 446,
- "id": 13685,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 446,
- "id": 13686,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 446,
- "id": 13687,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 446,
- "id": 13688,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 446,
- "id": 13689,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 446,
- "id": 13690,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 446,
- "id": 13691,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 446,
- "id": 13692,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 457,
- "id": 13693,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 468,
- "id": 13698,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 468,
- "id": 13699,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 468,
- "id": 13700,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 468,
- "id": 13701,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 468,
- "id": 13702,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 468,
- "id": 13703,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 468,
- "id": 13704,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 468,
- "id": 13705,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 468,
- "id": 13706,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 468,
- "id": 13707,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 468,
- "id": 13708,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 468,
- "id": 13709,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 468,
- "id": 13710,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 468,
- "id": 13711,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 468,
- "id": 13712,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 468,
- "id": 13713,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 468,
- "id": 13714,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 468,
- "id": 13715,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 468,
- "id": 13716,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 468,
- "id": 13717,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 468,
- "id": 13718,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 468,
- "id": 13719,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 478,
- "id": 13720,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 488,
- "id": 13725,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 488,
- "id": 13726,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 488,
- "id": 13727,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 488,
- "id": 13728,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 488,
- "id": 13729,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 488,
- "id": 13730,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 488,
- "id": 13731,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 488,
- "id": 13732,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 488,
- "id": 13733,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 488,
- "id": 13734,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 488,
- "id": 13735,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 488,
- "id": 13736,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 488,
- "id": 13737,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 488,
- "id": 13738,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 488,
- "id": 13739,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 488,
- "id": 13740,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 488,
- "id": 13741,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 488,
- "id": 13742,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 488,
- "id": 13743,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 488,
- "id": 13744,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 488,
- "id": 13745,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 488,
- "id": 13746,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 509,
- "id": 13751,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 509,
- "id": 13752,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 509,
- "id": 13753,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 509,
- "id": 13754,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 509,
- "id": 13755,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 509,
- "id": 13756,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 509,
- "id": 13757,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 509,
- "id": 13758,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 509,
- "id": 13759,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 509,
- "id": 13760,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 509,
- "id": 13761,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 509,
- "id": 13762,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 509,
- "id": 13763,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 509,
- "id": 13764,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 509,
- "id": 13765,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 509,
- "id": 13766,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 509,
- "id": 13767,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 509,
- "id": 13768,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 509,
- "id": 13769,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 509,
- "id": 13770,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 509,
- "id": 13771,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 509,
- "id": 13772,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 520,
- "id": 13773,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 531,
- "id": 13778,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 531,
- "id": 13779,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 531,
- "id": 13780,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 531,
- "id": 13781,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 531,
- "id": 13782,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 531,
- "id": 13783,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 531,
- "id": 13784,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 531,
- "id": 13785,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 531,
- "id": 13786,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 531,
- "id": 13787,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 531,
- "id": 13788,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 531,
- "id": 13789,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 531,
- "id": 13790,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 531,
- "id": 13791,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 531,
- "id": 13792,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 531,
- "id": 13793,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 531,
- "id": 13794,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 531,
- "id": 13795,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 531,
- "id": 13796,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 531,
- "id": 13797,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 531,
- "id": 13798,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 531,
- "id": 13799,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 542,
- "id": 13800,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 553,
- "id": 13805,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 553,
- "id": 13806,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 553,
- "id": 13807,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 553,
- "id": 13808,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 553,
- "id": 13809,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 553,
- "id": 13810,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 553,
- "id": 13811,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 553,
- "id": 13812,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 553,
- "id": 13813,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 553,
- "id": 13814,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 553,
- "id": 13815,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 553,
- "id": 13816,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 553,
- "id": 13817,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 553,
- "id": 13818,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 553,
- "id": 13819,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 553,
- "id": 13820,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 553,
- "id": 13821,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 553,
- "id": 13822,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 553,
- "id": 13823,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 553,
- "id": 13824,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 553,
- "id": 13825,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 553,
- "id": 13826,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 564,
- "id": 13827,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 575,
- "id": 13832,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 575,
- "id": 13833,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 575,
- "id": 13834,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 575,
- "id": 13835,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 575,
- "id": 13836,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 575,
- "id": 13837,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 575,
- "id": 13838,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 575,
- "id": 13839,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 575,
- "id": 13840,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 575,
- "id": 13841,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 575,
- "id": 13842,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 575,
- "id": 13843,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 575,
- "id": 13844,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 575,
- "id": 13845,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 575,
- "id": 13846,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 575,
- "id": 13847,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 575,
- "id": 13848,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 575,
- "id": 13849,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 575,
- "id": 13850,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 575,
- "id": 13851,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 575,
- "id": 13852,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 575,
- "id": 13853,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 101,
- "id": 13854,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 124,
- "id": 13859,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 124,
- "id": 13860,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 124,
- "id": 13861,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 124,
- "id": 13862,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 124,
- "id": 13863,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 124,
- "id": 13864,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 124,
- "id": 13865,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 124,
- "id": 13866,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 124,
- "id": 13867,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 124,
- "id": 13868,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 124,
- "id": 13869,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 124,
- "id": 13870,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 124,
- "id": 13871,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 124,
- "id": 13872,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 124,
- "id": 13873,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 124,
- "id": 13874,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 124,
- "id": 13875,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 124,
- "id": 13876,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 124,
- "id": 13877,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 124,
- "id": 13878,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 124,
- "id": 13879,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 124,
- "id": 13880,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 125,
- "id": 13881,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 24006,
- "id": 13886,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 24006,
- "id": 13887,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 24006,
- "id": 13888,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 24006,
- "id": 13889,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 24006,
- "id": 13890,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 24006,
- "id": 13891,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 24006,
- "id": 13892,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 24006,
- "id": 13893,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 24006,
- "id": 13894,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 24006,
- "id": 13895,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 24006,
- "id": 13896,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 24006,
- "id": 13897,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 24006,
- "id": 13898,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 24006,
- "id": 13899,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 24006,
- "id": 13900,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 24006,
- "id": 13901,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 24006,
- "id": 13902,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 24006,
- "id": 13903,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 24006,
- "id": 13904,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 24006,
- "id": 13905,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 24006,
- "id": 13906,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 24006,
- "id": 13907,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 12041,
- "id": 13912,
- "width": 74,
- "height": 76
- },
- {
- "x": 74,
- "fileNum": 12041,
- "id": 13913,
- "width": 74,
- "height": 76
- },
- {
- "x": 148,
- "fileNum": 12041,
- "id": 13914,
- "width": 74,
- "height": 76
- },
- {
- "x": 222,
- "fileNum": 12041,
- "id": 13915,
- "width": 74,
- "height": 76
- },
- {
- "x": 296,
- "fileNum": 12041,
- "id": 13916,
- "width": 74,
- "height": 76
- },
- {
- "x": 370,
- "fileNum": 12041,
- "id": 13917,
- "width": 74,
- "height": 76
- },
- {
- "y": 76,
- "fileNum": 12041,
- "id": 13918,
- "width": 74,
- "height": 76
- },
- {
- "x": 74,
- "y": 76,
- "fileNum": 12041,
- "id": 13919,
- "width": 74,
- "height": 76
- },
- {
- "x": 148,
- "y": 76,
- "fileNum": 12041,
- "id": 13920,
- "width": 74,
- "height": 76
- },
- {
- "x": 222,
- "y": 76,
- "fileNum": 12041,
- "id": 13921,
- "width": 74,
- "height": 76
- },
- {
- "x": 296,
- "y": 76,
- "fileNum": 12041,
- "id": 13922,
- "width": 74,
- "height": 76
- },
- {
- "x": 370,
- "y": 76,
- "fileNum": 12041,
- "id": 13923,
- "width": 74,
- "height": 76
- },
- {
- "fileNum": 16033,
- "id": 13926,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16033,
- "id": 13927,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16033,
- "id": 13928,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16033,
- "id": 13929,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16033,
- "id": 13930,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16033,
- "id": 13931,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16033,
- "id": 13932,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16033,
- "id": 13933,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16033,
- "id": 13934,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16033,
- "id": 13935,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16033,
- "id": 13936,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16033,
- "id": 13937,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16033,
- "id": 13938,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16033,
- "id": 13939,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16033,
- "id": 13940,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16033,
- "id": 13941,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16033,
- "id": 13942,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16033,
- "id": 13943,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16033,
- "id": 13944,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16033,
- "id": 13945,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16033,
- "id": 13946,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16033,
- "id": 13947,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 11029,
- "id": 13952,
- "width": 512,
- "height": 320
- },
- {
- "fileNum": 14033,
- "id": 13953,
- "width": 512,
- "height": 392
- },
- {
- "fileNum": 8175,
- "id": 13954,
- "width": 256,
- "height": 160
- },
- {
- "x": 256,
- "fileNum": 8175,
- "id": 13955,
- "width": 256,
- "height": 160
- },
- {
- "y": 160,
- "fileNum": 8175,
- "id": 13956,
- "width": 256,
- "height": 160
- },
- {
- "x": 256,
- "y": 160,
- "fileNum": 8175,
- "id": 13957,
- "width": 256,
- "height": 160
- },
- {
- "fileNum": 8163,
- "id": 13958,
- "width": 320,
- "height": 292
- },
- {
- "fileNum": 2000,
- "id": 13959,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2000,
- "id": 13960,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2000,
- "id": 13961,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2000,
- "id": 13962,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 10003,
- "id": 13963,
- "width": 240,
- "height": 444
- },
- {
- "fileNum": 171,
- "id": 13964,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 171,
- "id": 13965,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 171,
- "id": 13966,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 171,
- "id": 13967,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 171,
- "id": 13968,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 171,
- "id": 13969,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 171,
- "id": 13970,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 171,
- "id": 13971,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 171,
- "id": 13972,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 171,
- "id": 13973,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 171,
- "id": 13974,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 171,
- "id": 13975,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 171,
- "id": 13976,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 171,
- "id": 13977,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 171,
- "id": 13978,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 171,
- "id": 13979,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 171,
- "id": 13980,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 171,
- "id": 13981,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 171,
- "id": 13982,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 171,
- "id": 13983,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 171,
- "id": 13984,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 171,
- "id": 13985,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2199,
- "id": 13990,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2199,
- "id": 13991,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2199,
- "id": 13992,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2199,
- "id": 13993,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2200,
- "id": 13994,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2200,
- "id": 13995,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2200,
- "id": 13996,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2200,
- "id": 13997,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 24004,
- "id": 14000,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 24004,
- "id": 14001,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 24004,
- "id": 14002,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 24004,
- "id": 14003,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 24004,
- "id": 14004,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 24004,
- "id": 14005,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 24004,
- "id": 14006,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 24004,
- "id": 14007,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 24004,
- "id": 14008,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 24004,
- "id": 14009,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 24004,
- "id": 14010,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 24004,
- "id": 14011,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 24004,
- "id": 14012,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 24004,
- "id": 14013,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 24004,
- "id": 14014,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 24004,
- "id": 14015,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 24004,
- "id": 14016,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 24004,
- "id": 14017,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 24004,
- "id": 14018,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 24004,
- "id": 14019,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 24004,
- "id": 14020,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 24004,
- "id": 14021,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 199,
- "id": 14026,
- "width": 62,
- "height": 96
- },
- {
- "x": 62,
- "fileNum": 199,
- "id": 14027,
- "width": 62,
- "height": 96
- },
- {
- "x": 124,
- "fileNum": 199,
- "id": 14028,
- "width": 62,
- "height": 96
- },
- {
- "x": 186,
- "fileNum": 199,
- "id": 14029,
- "width": 62,
- "height": 96
- },
- {
- "x": 248,
- "fileNum": 199,
- "id": 14030,
- "width": 62,
- "height": 96
- },
- {
- "x": 310,
- "fileNum": 199,
- "id": 14031,
- "width": 62,
- "height": 96
- },
- {
- "y": 96,
- "fileNum": 199,
- "id": 14032,
- "width": 62,
- "height": 96
- },
- {
- "x": 62,
- "y": 96,
- "fileNum": 199,
- "id": 14033,
- "width": 62,
- "height": 96
- },
- {
- "x": 124,
- "y": 96,
- "fileNum": 199,
- "id": 14034,
- "width": 62,
- "height": 96
- },
- {
- "x": 186,
- "y": 96,
- "fileNum": 199,
- "id": 14035,
- "width": 62,
- "height": 96
- },
- {
- "x": 248,
- "y": 96,
- "fileNum": 199,
- "id": 14036,
- "width": 62,
- "height": 96
- },
- {
- "x": 310,
- "y": 96,
- "fileNum": 199,
- "id": 14037,
- "width": 62,
- "height": 96
- },
- {
- "y": 192,
- "fileNum": 199,
- "id": 14038,
- "width": 62,
- "height": 96
- },
- {
- "x": 62,
- "y": 192,
- "fileNum": 199,
- "id": 14039,
- "width": 62,
- "height": 96
- },
- {
- "x": 124,
- "y": 192,
- "fileNum": 199,
- "id": 14040,
- "width": 62,
- "height": 96
- },
- {
- "x": 186,
- "y": 192,
- "fileNum": 199,
- "id": 14041,
- "width": 62,
- "height": 96
- },
- {
- "x": 248,
- "y": 192,
- "fileNum": 199,
- "id": 14042,
- "width": 62,
- "height": 96
- },
- {
- "y": 288,
- "fileNum": 199,
- "id": 14043,
- "width": 62,
- "height": 96
- },
- {
- "x": 62,
- "y": 288,
- "fileNum": 199,
- "id": 14044,
- "width": 62,
- "height": 96
- },
- {
- "x": 124,
- "y": 288,
- "fileNum": 199,
- "id": 14045,
- "width": 62,
- "height": 96
- },
- {
- "x": 186,
- "y": 288,
- "fileNum": 199,
- "id": 14046,
- "width": 62,
- "height": 96
- },
- {
- "x": 248,
- "y": 288,
- "fileNum": 199,
- "id": 14047,
- "width": 62,
- "height": 96
- },
- {
- "fileNum": 128,
- "id": 14052,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 200,
- "id": 14053,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 200,
- "id": 14054,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 200,
- "id": 14055,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 200,
- "id": 14056,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 200,
- "id": 14057,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 200,
- "id": 14058,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 200,
- "id": 14059,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 200,
- "id": 14060,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 200,
- "id": 14061,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 200,
- "id": 14062,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 200,
- "id": 14063,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 200,
- "id": 14064,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 200,
- "id": 14065,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 200,
- "id": 14066,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 200,
- "id": 14067,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 200,
- "id": 14068,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 200,
- "id": 14069,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 200,
- "id": 14070,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 200,
- "id": 14071,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 200,
- "id": 14072,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 200,
- "id": 14073,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 200,
- "id": 14074,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 204,
- "id": 14079,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 201,
- "id": 14080,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 201,
- "id": 14081,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 201,
- "id": 14082,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 201,
- "id": 14083,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 201,
- "id": 14084,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 201,
- "id": 14085,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 201,
- "id": 14086,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 201,
- "id": 14087,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 201,
- "id": 14088,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 201,
- "id": 14089,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 201,
- "id": 14090,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 201,
- "id": 14091,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 201,
- "id": 14092,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 201,
- "id": 14093,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 201,
- "id": 14094,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 201,
- "id": 14095,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 201,
- "id": 14096,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 201,
- "id": 14097,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 201,
- "id": 14098,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 201,
- "id": 14099,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 201,
- "id": 14100,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 201,
- "id": 14101,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 202,
- "id": 14106,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 202,
- "id": 14107,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 202,
- "id": 14108,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 202,
- "id": 14109,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 202,
- "id": 14110,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 202,
- "id": 14111,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 202,
- "id": 14112,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 202,
- "id": 14113,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 202,
- "id": 14114,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 202,
- "id": 14115,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 202,
- "id": 14116,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 202,
- "id": 14117,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 202,
- "id": 14118,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 202,
- "id": 14119,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 202,
- "id": 14120,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 202,
- "id": 14121,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 202,
- "id": 14122,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 202,
- "id": 14123,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 202,
- "id": 14124,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 202,
- "id": 14125,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 202,
- "id": 14126,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 202,
- "id": 14127,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 24008,
- "id": 14132,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 24008,
- "id": 14133,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 24008,
- "id": 14134,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 24008,
- "id": 14135,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 24008,
- "id": 14136,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 24008,
- "id": 14137,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 24008,
- "id": 14138,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 24008,
- "id": 14139,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 24008,
- "id": 14140,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 24008,
- "id": 14141,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 24008,
- "id": 14142,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 24008,
- "id": 14143,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 24008,
- "id": 14144,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 24008,
- "id": 14145,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 24008,
- "id": 14146,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 24008,
- "id": 14147,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 24008,
- "id": 14148,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 24008,
- "id": 14149,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 24008,
- "id": 14150,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 24008,
- "id": 14151,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 24008,
- "id": 14152,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 24008,
- "id": 14153,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 24009,
- "id": 14158,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 24009,
- "id": 14159,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 24009,
- "id": 14160,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 24009,
- "id": 14161,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 24009,
- "id": 14162,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 24009,
- "id": 14163,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 24009,
- "id": 14164,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 24009,
- "id": 14165,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 24009,
- "id": 14166,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 24009,
- "id": 14167,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 24009,
- "id": 14168,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 24009,
- "id": 14169,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 24009,
- "id": 14170,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 24009,
- "id": 14171,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 24009,
- "id": 14172,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 24009,
- "id": 14173,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 24009,
- "id": 14174,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 24009,
- "id": 14175,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 24009,
- "id": 14176,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 24009,
- "id": 14177,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 24009,
- "id": 14178,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 24009,
- "id": 14179,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 15128,
- "id": 14184,
- "width": 50,
- "height": 246
- },
- {
- "fileNum": 15129,
- "id": 14185,
- "width": 50,
- "height": 248
- },
- {
- "fileNum": 2201,
- "id": 14186,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2201,
- "id": 14187,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2201,
- "id": 14188,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2201,
- "id": 14189,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2202,
- "id": 14190,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2202,
- "id": 14191,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2202,
- "id": 14192,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2202,
- "id": 14193,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 209,
- "id": 14196,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 208,
- "id": 14197,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 208,
- "id": 14198,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 208,
- "id": 14199,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 208,
- "id": 14200,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 208,
- "id": 14201,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 208,
- "id": 14202,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 208,
- "id": 14203,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 208,
- "id": 14204,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 208,
- "id": 14205,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 208,
- "id": 14206,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 208,
- "id": 14207,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 208,
- "id": 14208,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 208,
- "id": 14209,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 208,
- "id": 14210,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 208,
- "id": 14211,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 208,
- "id": 14212,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 208,
- "id": 14213,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 208,
- "id": 14214,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 208,
- "id": 14215,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 208,
- "id": 14216,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 208,
- "id": 14217,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 208,
- "id": 14218,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 211,
- "id": 14223,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 210,
- "id": 14224,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 210,
- "id": 14225,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 210,
- "id": 14226,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 210,
- "id": 14227,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 210,
- "id": 14228,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 210,
- "id": 14229,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 210,
- "id": 14230,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 210,
- "id": 14231,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 210,
- "id": 14232,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 210,
- "id": 14233,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 210,
- "id": 14234,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 210,
- "id": 14235,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 210,
- "id": 14236,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 210,
- "id": 14237,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 210,
- "id": 14238,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 210,
- "id": 14239,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 210,
- "id": 14240,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 210,
- "id": 14241,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 210,
- "id": 14242,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 210,
- "id": 14243,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 210,
- "id": 14244,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 210,
- "id": 14245,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 213,
- "id": 14250,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 212,
- "id": 14251,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 212,
- "id": 14252,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 212,
- "id": 14253,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 212,
- "id": 14254,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 212,
- "id": 14255,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 212,
- "id": 14256,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 212,
- "id": 14257,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 212,
- "id": 14258,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 212,
- "id": 14259,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 212,
- "id": 14260,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 212,
- "id": 14261,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 212,
- "id": 14262,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 212,
- "id": 14263,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 212,
- "id": 14264,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 212,
- "id": 14265,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 212,
- "id": 14266,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 212,
- "id": 14267,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 212,
- "id": 14268,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 212,
- "id": 14269,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 212,
- "id": 14270,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 212,
- "id": 14271,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 212,
- "id": 14272,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 215,
- "id": 14277,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 214,
- "id": 14278,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 214,
- "id": 14279,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 214,
- "id": 14280,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 214,
- "id": 14281,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 214,
- "id": 14282,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 214,
- "id": 14283,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 214,
- "id": 14284,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 214,
- "id": 14285,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 214,
- "id": 14286,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 214,
- "id": 14287,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 214,
- "id": 14288,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 214,
- "id": 14289,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 214,
- "id": 14290,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 214,
- "id": 14291,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 214,
- "id": 14292,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 214,
- "id": 14293,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 214,
- "id": 14294,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 214,
- "id": 14295,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 214,
- "id": 14296,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 214,
- "id": 14297,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 214,
- "id": 14298,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 214,
- "id": 14299,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 217,
- "id": 14304,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 216,
- "id": 14305,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 216,
- "id": 14306,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 216,
- "id": 14307,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 216,
- "id": 14308,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 216,
- "id": 14309,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 216,
- "id": 14310,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 216,
- "id": 14311,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 216,
- "id": 14312,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 216,
- "id": 14313,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 216,
- "id": 14314,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 216,
- "id": 14315,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 216,
- "id": 14316,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 216,
- "id": 14317,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 216,
- "id": 14318,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 216,
- "id": 14319,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 216,
- "id": 14320,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 216,
- "id": 14321,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 216,
- "id": 14322,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 216,
- "id": 14323,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 216,
- "id": 14324,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 216,
- "id": 14325,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 216,
- "id": 14326,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 220,
- "id": 14331,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 219,
- "id": 14332,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 219,
- "id": 14333,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 219,
- "id": 14334,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 219,
- "id": 14335,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 219,
- "id": 14336,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 219,
- "id": 14337,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 219,
- "id": 14338,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 219,
- "id": 14339,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 219,
- "id": 14340,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 219,
- "id": 14341,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 219,
- "id": 14342,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 219,
- "id": 14343,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 219,
- "id": 14344,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 219,
- "id": 14345,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 219,
- "id": 14346,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 219,
- "id": 14347,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 219,
- "id": 14348,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 219,
- "id": 14349,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 219,
- "id": 14350,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 219,
- "id": 14351,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 219,
- "id": 14352,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 219,
- "id": 14353,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 222,
- "id": 14358,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 221,
- "id": 14359,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 221,
- "id": 14360,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 221,
- "id": 14361,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 221,
- "id": 14362,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 221,
- "id": 14363,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 221,
- "id": 14364,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 221,
- "id": 14365,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 221,
- "id": 14366,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 221,
- "id": 14367,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 221,
- "id": 14368,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 221,
- "id": 14369,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 221,
- "id": 14370,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 221,
- "id": 14371,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 221,
- "id": 14372,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 221,
- "id": 14373,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 221,
- "id": 14374,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 221,
- "id": 14375,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 221,
- "id": 14376,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 221,
- "id": 14377,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 221,
- "id": 14378,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 221,
- "id": 14379,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 221,
- "id": 14380,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 224,
- "id": 14385,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 223,
- "id": 14386,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 223,
- "id": 14387,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 223,
- "id": 14388,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 223,
- "id": 14389,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 223,
- "id": 14390,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 223,
- "id": 14391,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 223,
- "id": 14392,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 223,
- "id": 14393,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 223,
- "id": 14394,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 223,
- "id": 14395,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 223,
- "id": 14396,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 223,
- "id": 14397,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 223,
- "id": 14398,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 223,
- "id": 14399,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 223,
- "id": 14400,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 223,
- "id": 14401,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 223,
- "id": 14402,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 223,
- "id": 14403,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 223,
- "id": 14404,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 223,
- "id": 14405,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 223,
- "id": 14406,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 223,
- "id": 14407,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 226,
- "id": 14412,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 225,
- "id": 14413,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 225,
- "id": 14414,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 225,
- "id": 14415,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 225,
- "id": 14416,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 225,
- "id": 14417,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 225,
- "id": 14418,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 225,
- "id": 14419,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 225,
- "id": 14420,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 225,
- "id": 14421,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 225,
- "id": 14422,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 225,
- "id": 14423,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 225,
- "id": 14424,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 225,
- "id": 14425,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 225,
- "id": 14426,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 225,
- "id": 14427,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 225,
- "id": 14428,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 225,
- "id": 14429,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 225,
- "id": 14430,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 225,
- "id": 14431,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 225,
- "id": 14432,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 225,
- "id": 14433,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 225,
- "id": 14434,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 231,
- "id": 14439,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 230,
- "id": 14440,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 230,
- "id": 14441,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 230,
- "id": 14442,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 230,
- "id": 14443,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 230,
- "id": 14444,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 230,
- "id": 14445,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 230,
- "id": 14446,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 230,
- "id": 14447,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 230,
- "id": 14448,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 230,
- "id": 14449,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 230,
- "id": 14450,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 230,
- "id": 14451,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 230,
- "id": 14452,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 230,
- "id": 14453,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 230,
- "id": 14454,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 230,
- "id": 14455,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 230,
- "id": 14456,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 230,
- "id": 14457,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 230,
- "id": 14458,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 230,
- "id": 14459,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 230,
- "id": 14460,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 230,
- "id": 14461,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 233,
- "id": 14466,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 232,
- "id": 14467,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 232,
- "id": 14468,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 232,
- "id": 14469,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 232,
- "id": 14470,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 232,
- "id": 14471,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 232,
- "id": 14472,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 232,
- "id": 14473,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 232,
- "id": 14474,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 232,
- "id": 14475,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 232,
- "id": 14476,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 232,
- "id": 14477,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 232,
- "id": 14478,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 232,
- "id": 14479,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 232,
- "id": 14480,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 232,
- "id": 14481,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 232,
- "id": 14482,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 232,
- "id": 14483,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 232,
- "id": 14484,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 232,
- "id": 14485,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 232,
- "id": 14486,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 232,
- "id": 14487,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 232,
- "id": 14488,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 228,
- "id": 14493,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 227,
- "id": 14494,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 227,
- "id": 14495,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 227,
- "id": 14496,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 227,
- "id": 14497,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 227,
- "id": 14498,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 227,
- "id": 14499,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 227,
- "id": 14500,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 227,
- "id": 14501,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 227,
- "id": 14502,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 227,
- "id": 14503,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 227,
- "id": 14504,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 227,
- "id": 14505,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 227,
- "id": 14506,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 227,
- "id": 14507,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 227,
- "id": 14508,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 227,
- "id": 14509,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 227,
- "id": 14510,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 227,
- "id": 14511,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 227,
- "id": 14512,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 227,
- "id": 14513,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 227,
- "id": 14514,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 227,
- "id": 14515,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 235,
- "id": 14520,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 234,
- "id": 14521,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 234,
- "id": 14522,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 234,
- "id": 14523,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 234,
- "id": 14524,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 234,
- "id": 14525,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 234,
- "id": 14526,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 234,
- "id": 14527,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 234,
- "id": 14528,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 234,
- "id": 14529,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 234,
- "id": 14530,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 234,
- "id": 14531,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 234,
- "id": 14532,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 234,
- "id": 14533,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 234,
- "id": 14534,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 234,
- "id": 14535,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 234,
- "id": 14536,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 234,
- "id": 14537,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 234,
- "id": 14538,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 234,
- "id": 14539,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 234,
- "id": 14540,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 234,
- "id": 14541,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 234,
- "id": 14542,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 237,
- "id": 14547,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 236,
- "id": 14548,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 236,
- "id": 14549,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 236,
- "id": 14550,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 236,
- "id": 14551,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 236,
- "id": 14552,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 236,
- "id": 14553,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 236,
- "id": 14554,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 236,
- "id": 14555,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 236,
- "id": 14556,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 236,
- "id": 14557,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 236,
- "id": 14558,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 236,
- "id": 14559,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 236,
- "id": 14560,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 236,
- "id": 14561,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 236,
- "id": 14562,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 236,
- "id": 14563,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 236,
- "id": 14564,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 236,
- "id": 14565,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 236,
- "id": 14566,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 236,
- "id": 14567,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 236,
- "id": 14568,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 236,
- "id": 14569,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 239,
- "id": 14574,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 238,
- "id": 14575,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 238,
- "id": 14576,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 238,
- "id": 14577,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 238,
- "id": 14578,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 238,
- "id": 14579,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 238,
- "id": 14580,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 238,
- "id": 14581,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 238,
- "id": 14582,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 238,
- "id": 14583,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 238,
- "id": 14584,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 238,
- "id": 14585,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 238,
- "id": 14586,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 238,
- "id": 14587,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 238,
- "id": 14588,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 238,
- "id": 14589,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 238,
- "id": 14590,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 238,
- "id": 14591,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 238,
- "id": 14592,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 238,
- "id": 14593,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 238,
- "id": 14594,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 238,
- "id": 14595,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 238,
- "id": 14596,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 241,
- "id": 14601,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 240,
- "id": 14602,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 240,
- "id": 14603,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 240,
- "id": 14604,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 240,
- "id": 14605,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 240,
- "id": 14606,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 240,
- "id": 14607,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 240,
- "id": 14608,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 240,
- "id": 14609,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 240,
- "id": 14610,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 240,
- "id": 14611,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 240,
- "id": 14612,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 240,
- "id": 14613,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 240,
- "id": 14614,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 240,
- "id": 14615,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 240,
- "id": 14616,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 240,
- "id": 14617,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 240,
- "id": 14618,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 240,
- "id": 14619,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 240,
- "id": 14620,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 240,
- "id": 14621,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 240,
- "id": 14622,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 240,
- "id": 14623,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 243,
- "id": 14628,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 242,
- "id": 14629,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 242,
- "id": 14630,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 242,
- "id": 14631,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 242,
- "id": 14632,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 242,
- "id": 14633,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 242,
- "id": 14634,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 242,
- "id": 14635,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 242,
- "id": 14636,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 242,
- "id": 14637,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 242,
- "id": 14638,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 242,
- "id": 14639,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 242,
- "id": 14640,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 242,
- "id": 14641,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 242,
- "id": 14642,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 242,
- "id": 14643,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 242,
- "id": 14644,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 242,
- "id": 14645,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 242,
- "id": 14646,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 242,
- "id": 14647,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 242,
- "id": 14648,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 242,
- "id": 14649,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 242,
- "id": 14650,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 245,
- "id": 14655,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 244,
- "id": 14656,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 244,
- "id": 14657,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 244,
- "id": 14658,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 244,
- "id": 14659,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 244,
- "id": 14660,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 244,
- "id": 14661,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 244,
- "id": 14662,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 244,
- "id": 14663,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 244,
- "id": 14664,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 244,
- "id": 14665,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 244,
- "id": 14666,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 244,
- "id": 14667,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 244,
- "id": 14668,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 244,
- "id": 14669,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 244,
- "id": 14670,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 244,
- "id": 14671,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 244,
- "id": 14672,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 244,
- "id": 14673,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 244,
- "id": 14674,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 244,
- "id": 14675,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 244,
- "id": 14676,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 244,
- "id": 14677,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 247,
- "id": 14682,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 246,
- "id": 14683,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 246,
- "id": 14684,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 246,
- "id": 14685,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 246,
- "id": 14686,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 246,
- "id": 14687,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 246,
- "id": 14688,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 246,
- "id": 14689,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 246,
- "id": 14690,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 246,
- "id": 14691,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 246,
- "id": 14692,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 246,
- "id": 14693,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 246,
- "id": 14694,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 246,
- "id": 14695,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 246,
- "id": 14696,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 246,
- "id": 14697,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 246,
- "id": 14698,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 246,
- "id": 14699,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 246,
- "id": 14700,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 246,
- "id": 14701,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 246,
- "id": 14702,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 246,
- "id": 14703,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 246,
- "id": 14704,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 249,
- "id": 14709,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 248,
- "id": 14710,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 248,
- "id": 14711,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 248,
- "id": 14712,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 248,
- "id": 14713,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 248,
- "id": 14714,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 248,
- "id": 14715,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 248,
- "id": 14716,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 248,
- "id": 14717,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 248,
- "id": 14718,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 248,
- "id": 14719,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 248,
- "id": 14720,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 248,
- "id": 14721,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 248,
- "id": 14722,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 248,
- "id": 14723,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 248,
- "id": 14724,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 248,
- "id": 14725,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 248,
- "id": 14726,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 248,
- "id": 14727,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 248,
- "id": 14728,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 248,
- "id": 14729,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 248,
- "id": 14730,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 248,
- "id": 14731,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 251,
- "id": 14736,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 250,
- "id": 14737,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 250,
- "id": 14738,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 250,
- "id": 14739,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 250,
- "id": 14740,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 250,
- "id": 14741,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 250,
- "id": 14742,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 250,
- "id": 14743,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 250,
- "id": 14744,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 250,
- "id": 14745,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 250,
- "id": 14746,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 250,
- "id": 14747,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 250,
- "id": 14748,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 250,
- "id": 14749,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 250,
- "id": 14750,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 250,
- "id": 14751,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 250,
- "id": 14752,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 250,
- "id": 14753,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 250,
- "id": 14754,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 250,
- "id": 14755,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 250,
- "id": 14756,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 250,
- "id": 14757,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 250,
- "id": 14758,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 253,
- "id": 14763,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 252,
- "id": 14764,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 252,
- "id": 14765,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 252,
- "id": 14766,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 252,
- "id": 14767,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 252,
- "id": 14768,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 252,
- "id": 14769,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 252,
- "id": 14770,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 252,
- "id": 14771,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 252,
- "id": 14772,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 252,
- "id": 14773,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 252,
- "id": 14774,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 252,
- "id": 14775,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 252,
- "id": 14776,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 252,
- "id": 14777,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 252,
- "id": 14778,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 252,
- "id": 14779,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 252,
- "id": 14780,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 252,
- "id": 14781,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 252,
- "id": 14782,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 252,
- "id": 14783,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 252,
- "id": 14784,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 252,
- "id": 14785,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 255,
- "id": 14790,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 254,
- "id": 14791,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 254,
- "id": 14792,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 254,
- "id": 14793,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 254,
- "id": 14794,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 254,
- "id": 14795,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 254,
- "id": 14796,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 254,
- "id": 14797,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 254,
- "id": 14798,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 254,
- "id": 14799,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 254,
- "id": 14800,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 254,
- "id": 14801,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 254,
- "id": 14802,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 254,
- "id": 14803,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 254,
- "id": 14804,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 254,
- "id": 14805,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 254,
- "id": 14806,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 254,
- "id": 14807,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 254,
- "id": 14808,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 254,
- "id": 14809,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 254,
- "id": 14810,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 254,
- "id": 14811,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 254,
- "id": 14812,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 257,
- "id": 14817,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 256,
- "id": 14818,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 256,
- "id": 14819,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 256,
- "id": 14820,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 256,
- "id": 14821,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 256,
- "id": 14822,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 256,
- "id": 14823,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 256,
- "id": 14824,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 256,
- "id": 14825,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 256,
- "id": 14826,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 256,
- "id": 14827,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 256,
- "id": 14828,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 256,
- "id": 14829,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 256,
- "id": 14830,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 256,
- "id": 14831,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 256,
- "id": 14832,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 256,
- "id": 14833,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 256,
- "id": 14834,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 256,
- "id": 14835,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 256,
- "id": 14836,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 256,
- "id": 14837,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 256,
- "id": 14838,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 256,
- "id": 14839,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 259,
- "id": 14844,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 258,
- "id": 14845,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 258,
- "id": 14846,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 258,
- "id": 14847,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 258,
- "id": 14848,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 258,
- "id": 14849,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 258,
- "id": 14850,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 258,
- "id": 14851,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 258,
- "id": 14852,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 258,
- "id": 14853,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 258,
- "id": 14854,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 258,
- "id": 14855,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 258,
- "id": 14856,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 258,
- "id": 14857,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 258,
- "id": 14858,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 258,
- "id": 14859,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 258,
- "id": 14860,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 258,
- "id": 14861,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 258,
- "id": 14862,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 258,
- "id": 14863,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 258,
- "id": 14864,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 258,
- "id": 14865,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 258,
- "id": 14866,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 261,
- "id": 14871,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 260,
- "id": 14872,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 260,
- "id": 14873,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 260,
- "id": 14874,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 260,
- "id": 14875,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 260,
- "id": 14876,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 260,
- "id": 14877,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 260,
- "id": 14878,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 260,
- "id": 14879,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 260,
- "id": 14880,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 260,
- "id": 14881,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 260,
- "id": 14882,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 260,
- "id": 14883,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 260,
- "id": 14884,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 260,
- "id": 14885,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 260,
- "id": 14886,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 260,
- "id": 14887,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 260,
- "id": 14888,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 260,
- "id": 14889,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 260,
- "id": 14890,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 260,
- "id": 14891,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 260,
- "id": 14892,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 260,
- "id": 14893,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 263,
- "id": 14898,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 262,
- "id": 14899,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 262,
- "id": 14900,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 262,
- "id": 14901,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 262,
- "id": 14902,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 262,
- "id": 14903,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 262,
- "id": 14904,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 262,
- "id": 14905,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 262,
- "id": 14906,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 262,
- "id": 14907,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 262,
- "id": 14908,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 262,
- "id": 14909,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 262,
- "id": 14910,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 262,
- "id": 14911,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 262,
- "id": 14912,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 262,
- "id": 14913,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 262,
- "id": 14914,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 262,
- "id": 14915,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 262,
- "id": 14916,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 262,
- "id": 14917,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 262,
- "id": 14918,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 262,
- "id": 14919,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 262,
- "id": 14920,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 265,
- "id": 14925,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 264,
- "id": 14926,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 264,
- "id": 14927,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 264,
- "id": 14928,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 264,
- "id": 14929,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 264,
- "id": 14930,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 264,
- "id": 14931,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 264,
- "id": 14932,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 264,
- "id": 14933,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 264,
- "id": 14934,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 264,
- "id": 14935,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 264,
- "id": 14936,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 264,
- "id": 14937,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 264,
- "id": 14938,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 264,
- "id": 14939,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 264,
- "id": 14940,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 264,
- "id": 14941,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 264,
- "id": 14942,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 264,
- "id": 14943,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 264,
- "id": 14944,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 264,
- "id": 14945,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 264,
- "id": 14946,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 264,
- "id": 14947,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 267,
- "id": 14952,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 266,
- "id": 14953,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 266,
- "id": 14954,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 266,
- "id": 14955,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 266,
- "id": 14956,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 266,
- "id": 14957,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 266,
- "id": 14958,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 266,
- "id": 14959,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 266,
- "id": 14960,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 266,
- "id": 14961,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 266,
- "id": 14962,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 266,
- "id": 14963,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 266,
- "id": 14964,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 266,
- "id": 14965,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 266,
- "id": 14966,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 266,
- "id": 14967,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 266,
- "id": 14968,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 266,
- "id": 14969,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 266,
- "id": 14970,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 266,
- "id": 14971,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 266,
- "id": 14972,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 266,
- "id": 14973,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 266,
- "id": 14974,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 269,
- "id": 14979,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 268,
- "id": 14980,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 268,
- "id": 14981,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 268,
- "id": 14982,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 268,
- "id": 14983,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 268,
- "id": 14984,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 268,
- "id": 14985,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 268,
- "id": 14986,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 268,
- "id": 14987,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 268,
- "id": 14988,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 268,
- "id": 14989,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 268,
- "id": 14990,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 268,
- "id": 14991,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 268,
- "id": 14992,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 268,
- "id": 14993,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 268,
- "id": 14994,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 268,
- "id": 14995,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 268,
- "id": 14996,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 268,
- "id": 14997,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 268,
- "id": 14998,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 268,
- "id": 14999,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 268,
- "id": 15000,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 268,
- "id": 15001,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 425,
- "id": 15006,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 424,
- "id": 15007,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 424,
- "id": 15008,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 424,
- "id": 15009,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 424,
- "id": 15010,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 424,
- "id": 15011,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 424,
- "id": 15012,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 424,
- "id": 15013,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 424,
- "id": 15014,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 424,
- "id": 15015,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 424,
- "id": 15016,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 424,
- "id": 15017,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 424,
- "id": 15018,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 424,
- "id": 15019,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 424,
- "id": 15020,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 424,
- "id": 15021,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 424,
- "id": 15022,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 424,
- "id": 15023,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 424,
- "id": 15024,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 424,
- "id": 15025,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 424,
- "id": 15026,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 424,
- "id": 15027,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 424,
- "id": 15028,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 427,
- "id": 15033,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 426,
- "id": 15034,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 426,
- "id": 15035,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 426,
- "id": 15036,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 426,
- "id": 15037,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 426,
- "id": 15038,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 426,
- "id": 15039,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 426,
- "id": 15040,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 426,
- "id": 15041,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 426,
- "id": 15042,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 426,
- "id": 15043,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 426,
- "id": 15044,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 426,
- "id": 15045,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 426,
- "id": 15046,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 426,
- "id": 15047,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 426,
- "id": 15048,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 426,
- "id": 15049,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 426,
- "id": 15050,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 426,
- "id": 15051,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 426,
- "id": 15052,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 426,
- "id": 15053,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 426,
- "id": 15054,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 426,
- "id": 15055,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 430,
- "id": 15060,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 428,
- "id": 15061,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 428,
- "id": 15062,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 428,
- "id": 15063,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 428,
- "id": 15064,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 428,
- "id": 15065,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 428,
- "id": 15066,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 428,
- "id": 15067,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 428,
- "id": 15068,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 428,
- "id": 15069,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 428,
- "id": 15070,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 428,
- "id": 15071,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 428,
- "id": 15072,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 428,
- "id": 15073,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 428,
- "id": 15074,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 428,
- "id": 15075,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 428,
- "id": 15076,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 428,
- "id": 15077,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 428,
- "id": 15078,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 428,
- "id": 15079,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 428,
- "id": 15080,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 428,
- "id": 15081,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 428,
- "id": 15082,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 432,
- "id": 15087,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 431,
- "id": 15088,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 431,
- "id": 15089,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 431,
- "id": 15090,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 431,
- "id": 15091,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 431,
- "id": 15092,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 431,
- "id": 15093,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 431,
- "id": 15094,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 431,
- "id": 15095,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 431,
- "id": 15096,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 431,
- "id": 15097,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 431,
- "id": 15098,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 431,
- "id": 15099,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 431,
- "id": 15100,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 431,
- "id": 15101,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 431,
- "id": 15102,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 431,
- "id": 15103,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 431,
- "id": 15104,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 431,
- "id": 15105,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 431,
- "id": 15106,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 431,
- "id": 15107,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 431,
- "id": 15108,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 431,
- "id": 15109,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 434,
- "id": 15114,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 433,
- "id": 15115,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 433,
- "id": 15116,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 433,
- "id": 15117,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 433,
- "id": 15118,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 433,
- "id": 15119,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 433,
- "id": 15120,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 433,
- "id": 15121,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 433,
- "id": 15122,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 433,
- "id": 15123,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 433,
- "id": 15124,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 433,
- "id": 15125,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 433,
- "id": 15126,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 433,
- "id": 15127,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 433,
- "id": 15128,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 433,
- "id": 15129,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 433,
- "id": 15130,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 433,
- "id": 15131,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 433,
- "id": 15132,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 433,
- "id": 15133,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 433,
- "id": 15134,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 433,
- "id": 15135,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 433,
- "id": 15136,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 437,
- "id": 15141,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 436,
- "id": 15142,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 436,
- "id": 15143,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 436,
- "id": 15144,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 436,
- "id": 15145,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 436,
- "id": 15146,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 436,
- "id": 15147,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 436,
- "id": 15148,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 436,
- "id": 15149,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 436,
- "id": 15150,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 436,
- "id": 15151,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 436,
- "id": 15152,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 436,
- "id": 15153,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 436,
- "id": 15154,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 436,
- "id": 15155,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 436,
- "id": 15156,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 436,
- "id": 15157,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 436,
- "id": 15158,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 436,
- "id": 15159,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 436,
- "id": 15160,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 436,
- "id": 15161,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 436,
- "id": 15162,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 436,
- "id": 15163,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 439,
- "id": 15168,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 438,
- "id": 15169,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 438,
- "id": 15170,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 438,
- "id": 15171,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 438,
- "id": 15172,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 438,
- "id": 15173,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 438,
- "id": 15174,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 438,
- "id": 15175,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 438,
- "id": 15176,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 438,
- "id": 15177,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 438,
- "id": 15178,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 438,
- "id": 15179,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 438,
- "id": 15180,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 438,
- "id": 15181,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 438,
- "id": 15182,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 438,
- "id": 15183,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 438,
- "id": 15184,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 438,
- "id": 15185,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 438,
- "id": 15186,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 438,
- "id": 15187,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 438,
- "id": 15188,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 438,
- "id": 15189,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 438,
- "id": 15190,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 441,
- "id": 15195,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 440,
- "id": 15196,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 440,
- "id": 15197,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 440,
- "id": 15198,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 440,
- "id": 15199,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 440,
- "id": 15200,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 440,
- "id": 15201,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 440,
- "id": 15202,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 440,
- "id": 15203,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 440,
- "id": 15204,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 440,
- "id": 15205,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 440,
- "id": 15206,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 440,
- "id": 15207,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 440,
- "id": 15208,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 440,
- "id": 15209,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 440,
- "id": 15210,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 440,
- "id": 15211,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 440,
- "id": 15212,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 440,
- "id": 15213,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 440,
- "id": 15214,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 440,
- "id": 15215,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 440,
- "id": 15216,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 440,
- "id": 15217,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 443,
- "id": 15222,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 442,
- "id": 15223,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 442,
- "id": 15224,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 442,
- "id": 15225,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 442,
- "id": 15226,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 442,
- "id": 15227,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 442,
- "id": 15228,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 442,
- "id": 15229,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 442,
- "id": 15230,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 442,
- "id": 15231,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 442,
- "id": 15232,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 442,
- "id": 15233,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 442,
- "id": 15234,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 442,
- "id": 15235,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 442,
- "id": 15236,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 442,
- "id": 15237,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 442,
- "id": 15238,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 442,
- "id": 15239,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 442,
- "id": 15240,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 442,
- "id": 15241,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 442,
- "id": 15242,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 442,
- "id": 15243,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 442,
- "id": 15244,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 445,
- "id": 15249,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 444,
- "id": 15250,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 444,
- "id": 15251,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 444,
- "id": 15252,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 444,
- "id": 15253,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 444,
- "id": 15254,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 444,
- "id": 15255,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 444,
- "id": 15256,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 444,
- "id": 15257,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 444,
- "id": 15258,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 444,
- "id": 15259,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 444,
- "id": 15260,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 444,
- "id": 15261,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 444,
- "id": 15262,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 444,
- "id": 15263,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 444,
- "id": 15264,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 444,
- "id": 15265,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 444,
- "id": 15266,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 444,
- "id": 15267,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 444,
- "id": 15268,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 444,
- "id": 15269,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 444,
- "id": 15270,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 444,
- "id": 15271,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 448,
- "id": 15276,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 447,
- "id": 15277,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 447,
- "id": 15278,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 447,
- "id": 15279,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 447,
- "id": 15280,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 447,
- "id": 15281,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 447,
- "id": 15282,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 447,
- "id": 15283,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 447,
- "id": 15284,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 447,
- "id": 15285,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 447,
- "id": 15286,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 447,
- "id": 15287,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 447,
- "id": 15288,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 447,
- "id": 15289,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 447,
- "id": 15290,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 447,
- "id": 15291,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 447,
- "id": 15292,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 447,
- "id": 15293,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 447,
- "id": 15294,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 447,
- "id": 15295,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 447,
- "id": 15296,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 447,
- "id": 15297,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 447,
- "id": 15298,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 450,
- "id": 15303,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 449,
- "id": 15304,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 449,
- "id": 15305,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 449,
- "id": 15306,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 449,
- "id": 15307,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 449,
- "id": 15308,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 449,
- "id": 15309,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 449,
- "id": 15310,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 449,
- "id": 15311,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 449,
- "id": 15312,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 449,
- "id": 15313,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 449,
- "id": 15314,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 449,
- "id": 15315,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 449,
- "id": 15316,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 449,
- "id": 15317,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 449,
- "id": 15318,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 449,
- "id": 15319,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 449,
- "id": 15320,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 449,
- "id": 15321,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 449,
- "id": 15322,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 449,
- "id": 15323,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 449,
- "id": 15324,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 449,
- "id": 15325,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 452,
- "id": 15330,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 451,
- "id": 15331,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 451,
- "id": 15332,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 451,
- "id": 15333,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 451,
- "id": 15334,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 451,
- "id": 15335,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 451,
- "id": 15336,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 451,
- "id": 15337,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 451,
- "id": 15338,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 451,
- "id": 15339,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 451,
- "id": 15340,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 451,
- "id": 15341,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 451,
- "id": 15342,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 451,
- "id": 15343,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 451,
- "id": 15344,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 451,
- "id": 15345,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 451,
- "id": 15346,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 451,
- "id": 15347,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 451,
- "id": 15348,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 451,
- "id": 15349,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 451,
- "id": 15350,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 451,
- "id": 15351,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 451,
- "id": 15352,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 454,
- "id": 15357,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 453,
- "id": 15358,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 453,
- "id": 15359,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 453,
- "id": 15360,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 453,
- "id": 15361,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 453,
- "id": 15362,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 453,
- "id": 15363,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 453,
- "id": 15364,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 453,
- "id": 15365,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 453,
- "id": 15366,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 453,
- "id": 15367,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 453,
- "id": 15368,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 453,
- "id": 15369,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 453,
- "id": 15370,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 453,
- "id": 15371,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 453,
- "id": 15372,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 453,
- "id": 15373,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 453,
- "id": 15374,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 453,
- "id": 15375,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 453,
- "id": 15376,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 453,
- "id": 15377,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 453,
- "id": 15378,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 453,
- "id": 15379,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 456,
- "id": 15384,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 455,
- "id": 15385,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 455,
- "id": 15386,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 455,
- "id": 15387,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 455,
- "id": 15388,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 455,
- "id": 15389,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 455,
- "id": 15390,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 455,
- "id": 15391,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 455,
- "id": 15392,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 455,
- "id": 15393,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 455,
- "id": 15394,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 455,
- "id": 15395,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 455,
- "id": 15396,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 455,
- "id": 15397,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 455,
- "id": 15398,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 455,
- "id": 15399,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 455,
- "id": 15400,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 455,
- "id": 15401,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 455,
- "id": 15402,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 455,
- "id": 15403,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 455,
- "id": 15404,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 455,
- "id": 15405,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 455,
- "id": 15406,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 459,
- "id": 15411,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 458,
- "id": 15412,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 458,
- "id": 15413,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 458,
- "id": 15414,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 458,
- "id": 15415,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 458,
- "id": 15416,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 458,
- "id": 15417,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 458,
- "id": 15418,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 458,
- "id": 15419,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 458,
- "id": 15420,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 458,
- "id": 15421,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 458,
- "id": 15422,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 458,
- "id": 15423,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 458,
- "id": 15424,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 458,
- "id": 15425,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 458,
- "id": 15426,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 458,
- "id": 15427,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 458,
- "id": 15428,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 458,
- "id": 15429,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 458,
- "id": 15430,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 458,
- "id": 15431,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 458,
- "id": 15432,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 458,
- "id": 15433,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 461,
- "id": 15438,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 460,
- "id": 15439,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 460,
- "id": 15440,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 460,
- "id": 15441,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 460,
- "id": 15442,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 460,
- "id": 15443,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 460,
- "id": 15444,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 460,
- "id": 15445,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 460,
- "id": 15446,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 460,
- "id": 15447,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 460,
- "id": 15448,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 460,
- "id": 15449,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 460,
- "id": 15450,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 460,
- "id": 15451,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 460,
- "id": 15452,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 460,
- "id": 15453,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 460,
- "id": 15454,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 460,
- "id": 15455,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 460,
- "id": 15456,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 460,
- "id": 15457,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 460,
- "id": 15458,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 460,
- "id": 15459,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 460,
- "id": 15460,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 463,
- "id": 15465,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 462,
- "id": 15466,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 462,
- "id": 15467,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 462,
- "id": 15468,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 462,
- "id": 15469,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 462,
- "id": 15470,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 462,
- "id": 15471,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 462,
- "id": 15472,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 462,
- "id": 15473,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 462,
- "id": 15474,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 462,
- "id": 15475,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 462,
- "id": 15476,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 462,
- "id": 15477,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 462,
- "id": 15478,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 462,
- "id": 15479,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 462,
- "id": 15480,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 462,
- "id": 15481,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 462,
- "id": 15482,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 462,
- "id": 15483,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 462,
- "id": 15484,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 462,
- "id": 15485,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 462,
- "id": 15486,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 462,
- "id": 15487,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 465,
- "id": 15492,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 464,
- "id": 15493,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 464,
- "id": 15494,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 464,
- "id": 15495,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 464,
- "id": 15496,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 464,
- "id": 15497,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 464,
- "id": 15498,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 464,
- "id": 15499,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 464,
- "id": 15500,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 464,
- "id": 15501,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 464,
- "id": 15502,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 464,
- "id": 15503,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 464,
- "id": 15504,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 464,
- "id": 15505,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 464,
- "id": 15506,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 464,
- "id": 15507,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 464,
- "id": 15508,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 464,
- "id": 15509,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 464,
- "id": 15510,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 464,
- "id": 15511,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 464,
- "id": 15512,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 464,
- "id": 15513,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 464,
- "id": 15514,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 467,
- "id": 15519,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 466,
- "id": 15520,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 466,
- "id": 15521,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 466,
- "id": 15522,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 466,
- "id": 15523,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 466,
- "id": 15524,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 466,
- "id": 15525,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 466,
- "id": 15526,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 466,
- "id": 15527,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 466,
- "id": 15528,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 466,
- "id": 15529,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 466,
- "id": 15530,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 466,
- "id": 15531,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 466,
- "id": 15532,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 466,
- "id": 15533,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 466,
- "id": 15534,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 466,
- "id": 15535,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 466,
- "id": 15536,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 466,
- "id": 15537,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 466,
- "id": 15538,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 466,
- "id": 15539,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 466,
- "id": 15540,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 466,
- "id": 15541,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 470,
- "id": 15546,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 469,
- "id": 15547,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 469,
- "id": 15548,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 469,
- "id": 15549,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 469,
- "id": 15550,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 469,
- "id": 15551,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 469,
- "id": 15552,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 469,
- "id": 15553,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 469,
- "id": 15554,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 469,
- "id": 15555,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 469,
- "id": 15556,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 469,
- "id": 15557,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 469,
- "id": 15558,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 469,
- "id": 15559,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 469,
- "id": 15560,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 469,
- "id": 15561,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 469,
- "id": 15562,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 469,
- "id": 15563,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 469,
- "id": 15564,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 469,
- "id": 15565,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 469,
- "id": 15566,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 469,
- "id": 15567,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 469,
- "id": 15568,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 471,
- "id": 15574,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 471,
- "id": 15575,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 471,
- "id": 15576,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 471,
- "id": 15577,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 471,
- "id": 15578,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 471,
- "id": 15579,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 471,
- "id": 15580,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 471,
- "id": 15581,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 471,
- "id": 15582,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 471,
- "id": 15583,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 471,
- "id": 15584,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 471,
- "id": 15585,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 471,
- "id": 15586,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 471,
- "id": 15587,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 471,
- "id": 15588,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 471,
- "id": 15589,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 471,
- "id": 15590,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 471,
- "id": 15591,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 471,
- "id": 15592,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 471,
- "id": 15593,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 471,
- "id": 15594,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 471,
- "id": 15595,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 473,
- "id": 15600,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 472,
- "id": 15601,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 472,
- "id": 15602,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 472,
- "id": 15603,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 472,
- "id": 15604,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 472,
- "id": 15605,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 472,
- "id": 15606,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 472,
- "id": 15607,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 472,
- "id": 15608,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 472,
- "id": 15609,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 472,
- "id": 15610,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 472,
- "id": 15611,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 472,
- "id": 15612,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 472,
- "id": 15613,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 472,
- "id": 15614,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 472,
- "id": 15615,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 472,
- "id": 15616,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 472,
- "id": 15617,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 472,
- "id": 15618,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 472,
- "id": 15619,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 472,
- "id": 15620,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 472,
- "id": 15621,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 472,
- "id": 15622,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 475,
- "id": 15627,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 474,
- "id": 15628,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 474,
- "id": 15629,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 474,
- "id": 15630,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 474,
- "id": 15631,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 474,
- "id": 15632,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 474,
- "id": 15633,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 474,
- "id": 15634,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 474,
- "id": 15635,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 474,
- "id": 15636,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 474,
- "id": 15637,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 474,
- "id": 15638,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 474,
- "id": 15639,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 474,
- "id": 15640,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 474,
- "id": 15641,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 474,
- "id": 15642,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 474,
- "id": 15643,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 474,
- "id": 15644,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 474,
- "id": 15645,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 474,
- "id": 15646,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 474,
- "id": 15647,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 474,
- "id": 15648,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 474,
- "id": 15649,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 476,
- "id": 15655,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 476,
- "id": 15656,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 476,
- "id": 15657,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 476,
- "id": 15658,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 476,
- "id": 15659,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 476,
- "id": 15660,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 476,
- "id": 15661,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 476,
- "id": 15662,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 476,
- "id": 15663,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 476,
- "id": 15664,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 476,
- "id": 15665,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 476,
- "id": 15666,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 476,
- "id": 15667,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 476,
- "id": 15668,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 476,
- "id": 15669,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 476,
- "id": 15670,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 476,
- "id": 15671,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 476,
- "id": 15672,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 476,
- "id": 15673,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 476,
- "id": 15674,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 476,
- "id": 15675,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 476,
- "id": 15676,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 480,
- "id": 15681,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 479,
- "id": 15682,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 479,
- "id": 15683,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 479,
- "id": 15684,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 479,
- "id": 15685,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 479,
- "id": 15686,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 479,
- "id": 15687,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 479,
- "id": 15688,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 479,
- "id": 15689,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 479,
- "id": 15690,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 479,
- "id": 15691,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 479,
- "id": 15692,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 479,
- "id": 15693,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 479,
- "id": 15694,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 479,
- "id": 15695,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 479,
- "id": 15696,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 479,
- "id": 15697,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 479,
- "id": 15698,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 479,
- "id": 15699,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 479,
- "id": 15700,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 479,
- "id": 15701,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 479,
- "id": 15702,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 479,
- "id": 15703,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 482,
- "id": 15708,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 481,
- "id": 15709,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 481,
- "id": 15710,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 481,
- "id": 15711,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 481,
- "id": 15712,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 481,
- "id": 15713,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 481,
- "id": 15714,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 481,
- "id": 15715,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 481,
- "id": 15716,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 481,
- "id": 15717,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 481,
- "id": 15718,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 481,
- "id": 15719,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 481,
- "id": 15720,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 481,
- "id": 15721,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 481,
- "id": 15722,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 481,
- "id": 15723,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 481,
- "id": 15724,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 481,
- "id": 15725,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 481,
- "id": 15726,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 481,
- "id": 15727,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 481,
- "id": 15728,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 481,
- "id": 15729,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 481,
- "id": 15730,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 483,
- "id": 15736,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 483,
- "id": 15737,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 483,
- "id": 15738,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 483,
- "id": 15739,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 483,
- "id": 15740,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 483,
- "id": 15741,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 483,
- "id": 15742,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 483,
- "id": 15743,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 483,
- "id": 15744,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 483,
- "id": 15745,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 483,
- "id": 15746,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 483,
- "id": 15747,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 483,
- "id": 15748,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 483,
- "id": 15749,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 483,
- "id": 15750,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 483,
- "id": 15751,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 483,
- "id": 15752,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 483,
- "id": 15753,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 483,
- "id": 15754,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 483,
- "id": 15755,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 483,
- "id": 15756,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 483,
- "id": 15757,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 485,
- "id": 15762,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 484,
- "id": 15763,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 484,
- "id": 15764,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 484,
- "id": 15765,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 484,
- "id": 15766,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 484,
- "id": 15767,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 484,
- "id": 15768,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 484,
- "id": 15769,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 484,
- "id": 15770,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 484,
- "id": 15771,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 484,
- "id": 15772,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 484,
- "id": 15773,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 484,
- "id": 15774,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 484,
- "id": 15775,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 484,
- "id": 15776,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 484,
- "id": 15777,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 484,
- "id": 15778,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 484,
- "id": 15779,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 484,
- "id": 15780,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 484,
- "id": 15781,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 484,
- "id": 15782,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 484,
- "id": 15783,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 484,
- "id": 15784,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 487,
- "id": 15789,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 486,
- "id": 15790,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 486,
- "id": 15791,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 486,
- "id": 15792,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 486,
- "id": 15793,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 486,
- "id": 15794,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 486,
- "id": 15795,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 486,
- "id": 15796,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 486,
- "id": 15797,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 486,
- "id": 15798,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 486,
- "id": 15799,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 486,
- "id": 15800,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 486,
- "id": 15801,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 486,
- "id": 15802,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 486,
- "id": 15803,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 486,
- "id": 15804,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 486,
- "id": 15805,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 486,
- "id": 15806,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 486,
- "id": 15807,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 486,
- "id": 15808,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 486,
- "id": 15809,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 486,
- "id": 15810,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 486,
- "id": 15811,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 490,
- "id": 15816,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 489,
- "id": 15817,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 489,
- "id": 15818,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 489,
- "id": 15819,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 489,
- "id": 15820,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 489,
- "id": 15821,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 489,
- "id": 15822,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 489,
- "id": 15823,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 489,
- "id": 15824,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 489,
- "id": 15825,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 489,
- "id": 15826,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 489,
- "id": 15827,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 489,
- "id": 15828,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 489,
- "id": 15829,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 489,
- "id": 15830,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 489,
- "id": 15831,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 489,
- "id": 15832,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 489,
- "id": 15833,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 489,
- "id": 15834,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 489,
- "id": 15835,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 489,
- "id": 15836,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 489,
- "id": 15837,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 489,
- "id": 15838,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 492,
- "id": 15843,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 491,
- "id": 15844,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 491,
- "id": 15845,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 491,
- "id": 15846,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 491,
- "id": 15847,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 491,
- "id": 15848,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 491,
- "id": 15849,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 491,
- "id": 15850,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 491,
- "id": 15851,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 491,
- "id": 15852,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 491,
- "id": 15853,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 491,
- "id": 15854,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 491,
- "id": 15855,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 491,
- "id": 15856,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 491,
- "id": 15857,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 491,
- "id": 15858,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 491,
- "id": 15859,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 491,
- "id": 15860,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 491,
- "id": 15861,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 491,
- "id": 15862,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 491,
- "id": 15863,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 491,
- "id": 15864,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 491,
- "id": 15865,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 494,
- "id": 15870,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 493,
- "id": 15871,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 493,
- "id": 15872,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 493,
- "id": 15873,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 493,
- "id": 15874,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 493,
- "id": 15875,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 493,
- "id": 15876,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 493,
- "id": 15877,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 493,
- "id": 15878,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 493,
- "id": 15879,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 493,
- "id": 15880,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 493,
- "id": 15881,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 493,
- "id": 15882,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 493,
- "id": 15883,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 493,
- "id": 15884,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 493,
- "id": 15885,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 493,
- "id": 15886,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 493,
- "id": 15887,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 493,
- "id": 15888,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 493,
- "id": 15889,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 493,
- "id": 15890,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 493,
- "id": 15891,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 493,
- "id": 15892,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 496,
- "id": 15897,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 495,
- "id": 15898,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 495,
- "id": 15899,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 495,
- "id": 15900,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 495,
- "id": 15901,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 495,
- "id": 15902,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 495,
- "id": 15903,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 495,
- "id": 15904,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 495,
- "id": 15905,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 495,
- "id": 15906,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 495,
- "id": 15907,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 495,
- "id": 15908,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 495,
- "id": 15909,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 495,
- "id": 15910,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 495,
- "id": 15911,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 495,
- "id": 15912,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 495,
- "id": 15913,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 495,
- "id": 15914,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 495,
- "id": 15915,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 495,
- "id": 15916,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 495,
- "id": 15917,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 495,
- "id": 15918,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 495,
- "id": 15919,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 498,
- "id": 15924,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 497,
- "id": 15925,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 497,
- "id": 15926,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 497,
- "id": 15927,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 497,
- "id": 15928,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 497,
- "id": 15929,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 497,
- "id": 15930,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 497,
- "id": 15931,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 497,
- "id": 15932,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 497,
- "id": 15933,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 497,
- "id": 15934,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 497,
- "id": 15935,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 497,
- "id": 15936,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 497,
- "id": 15937,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 497,
- "id": 15938,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 497,
- "id": 15939,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 497,
- "id": 15940,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 497,
- "id": 15941,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 497,
- "id": 15942,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 497,
- "id": 15943,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 497,
- "id": 15944,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 497,
- "id": 15945,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 497,
- "id": 15946,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 501,
- "id": 15951,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 500,
- "id": 15952,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 500,
- "id": 15953,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 500,
- "id": 15954,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 500,
- "id": 15955,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 500,
- "id": 15956,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 500,
- "id": 15957,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 500,
- "id": 15958,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 500,
- "id": 15959,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 500,
- "id": 15960,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 500,
- "id": 15961,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 500,
- "id": 15962,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 500,
- "id": 15963,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 500,
- "id": 15964,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 500,
- "id": 15965,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 500,
- "id": 15966,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 500,
- "id": 15967,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 500,
- "id": 15968,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 500,
- "id": 15969,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 500,
- "id": 15970,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 500,
- "id": 15971,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 500,
- "id": 15972,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 500,
- "id": 15973,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 503,
- "id": 15978,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 502,
- "id": 15979,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 502,
- "id": 15980,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 502,
- "id": 15981,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 502,
- "id": 15982,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 502,
- "id": 15983,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 502,
- "id": 15984,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 502,
- "id": 15985,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 502,
- "id": 15986,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 502,
- "id": 15987,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 502,
- "id": 15988,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 502,
- "id": 15989,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 502,
- "id": 15990,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 502,
- "id": 15991,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 502,
- "id": 15992,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 502,
- "id": 15993,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 502,
- "id": 15994,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 502,
- "id": 15995,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 502,
- "id": 15996,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 502,
- "id": 15997,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 502,
- "id": 15998,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 502,
- "id": 15999,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 502,
- "id": 16000,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 505,
- "id": 16005,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 504,
- "id": 16006,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 504,
- "id": 16007,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 504,
- "id": 16008,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 504,
- "id": 16009,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 504,
- "id": 16010,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 504,
- "id": 16011,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 504,
- "id": 16012,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 504,
- "id": 16013,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 504,
- "id": 16014,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 504,
- "id": 16015,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 504,
- "id": 16016,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 504,
- "id": 16017,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 504,
- "id": 16018,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 504,
- "id": 16019,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 504,
- "id": 16020,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 504,
- "id": 16021,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 504,
- "id": 16022,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 504,
- "id": 16023,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 504,
- "id": 16024,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 504,
- "id": 16025,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 504,
- "id": 16026,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 504,
- "id": 16027,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 507,
- "id": 16032,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 506,
- "id": 16033,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 506,
- "id": 16034,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 506,
- "id": 16035,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 506,
- "id": 16036,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 506,
- "id": 16037,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 506,
- "id": 16038,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 506,
- "id": 16039,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 506,
- "id": 16040,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 506,
- "id": 16041,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 506,
- "id": 16042,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 506,
- "id": 16043,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 506,
- "id": 16044,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 506,
- "id": 16045,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 506,
- "id": 16046,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 506,
- "id": 16047,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 506,
- "id": 16048,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 506,
- "id": 16049,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 506,
- "id": 16050,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 506,
- "id": 16051,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 506,
- "id": 16052,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 506,
- "id": 16053,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 506,
- "id": 16054,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 510,
- "id": 16059,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 508,
- "id": 16060,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 508,
- "id": 16061,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 508,
- "id": 16062,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 508,
- "id": 16063,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 508,
- "id": 16064,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 508,
- "id": 16065,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 508,
- "id": 16066,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 508,
- "id": 16067,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 508,
- "id": 16068,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 508,
- "id": 16069,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 508,
- "id": 16070,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 508,
- "id": 16071,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 508,
- "id": 16072,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 508,
- "id": 16073,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 508,
- "id": 16074,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 508,
- "id": 16075,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 508,
- "id": 16076,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 508,
- "id": 16077,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 508,
- "id": 16078,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 508,
- "id": 16079,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 508,
- "id": 16080,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 508,
- "id": 16081,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 512,
- "id": 16086,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 511,
- "id": 16087,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 511,
- "id": 16088,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 511,
- "id": 16089,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 511,
- "id": 16090,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 511,
- "id": 16091,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 511,
- "id": 16092,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 511,
- "id": 16093,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 511,
- "id": 16094,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 511,
- "id": 16095,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 511,
- "id": 16096,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 511,
- "id": 16097,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 511,
- "id": 16098,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 511,
- "id": 16099,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 511,
- "id": 16100,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 511,
- "id": 16101,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 511,
- "id": 16102,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 511,
- "id": 16103,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 511,
- "id": 16104,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 511,
- "id": 16105,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 511,
- "id": 16106,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 511,
- "id": 16107,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 511,
- "id": 16108,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 514,
- "id": 16113,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 513,
- "id": 16114,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 513,
- "id": 16115,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 513,
- "id": 16116,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 513,
- "id": 16117,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 513,
- "id": 16118,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 513,
- "id": 16119,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 513,
- "id": 16120,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 513,
- "id": 16121,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 513,
- "id": 16122,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 513,
- "id": 16123,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 513,
- "id": 16124,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 513,
- "id": 16125,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 513,
- "id": 16126,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 513,
- "id": 16127,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 513,
- "id": 16128,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 513,
- "id": 16129,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 513,
- "id": 16130,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 513,
- "id": 16131,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 513,
- "id": 16132,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 513,
- "id": 16133,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 513,
- "id": 16134,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 513,
- "id": 16135,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 516,
- "id": 16140,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 515,
- "id": 16141,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 515,
- "id": 16142,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 515,
- "id": 16143,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 515,
- "id": 16144,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 515,
- "id": 16145,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 515,
- "id": 16146,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 515,
- "id": 16147,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 515,
- "id": 16148,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 515,
- "id": 16149,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 515,
- "id": 16150,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 515,
- "id": 16151,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 515,
- "id": 16152,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 515,
- "id": 16153,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 515,
- "id": 16154,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 515,
- "id": 16155,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 515,
- "id": 16156,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 515,
- "id": 16157,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 515,
- "id": 16158,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 515,
- "id": 16159,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 515,
- "id": 16160,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 515,
- "id": 16161,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 515,
- "id": 16162,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 518,
- "id": 16167,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 517,
- "id": 16168,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 517,
- "id": 16169,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 517,
- "id": 16170,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 517,
- "id": 16171,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 517,
- "id": 16172,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 517,
- "id": 16173,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 517,
- "id": 16174,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 517,
- "id": 16175,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 517,
- "id": 16176,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 517,
- "id": 16177,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 517,
- "id": 16178,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 517,
- "id": 16179,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 517,
- "id": 16180,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 517,
- "id": 16181,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 517,
- "id": 16182,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 517,
- "id": 16183,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 517,
- "id": 16184,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 517,
- "id": 16185,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 517,
- "id": 16186,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 517,
- "id": 16187,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 517,
- "id": 16188,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 517,
- "id": 16189,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 521,
- "id": 16194,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 519,
- "id": 16195,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 519,
- "id": 16196,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 519,
- "id": 16197,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 519,
- "id": 16198,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 519,
- "id": 16199,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 519,
- "id": 16200,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 519,
- "id": 16201,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 519,
- "id": 16202,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 519,
- "id": 16203,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 519,
- "id": 16204,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 519,
- "id": 16205,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 519,
- "id": 16206,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 519,
- "id": 16207,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 519,
- "id": 16208,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 519,
- "id": 16209,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 519,
- "id": 16210,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 519,
- "id": 16211,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 519,
- "id": 16212,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 519,
- "id": 16213,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 519,
- "id": 16214,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 519,
- "id": 16215,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 519,
- "id": 16216,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 523,
- "id": 16221,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 522,
- "id": 16222,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 522,
- "id": 16223,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 522,
- "id": 16224,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 522,
- "id": 16225,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 522,
- "id": 16226,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 522,
- "id": 16227,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 522,
- "id": 16228,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 522,
- "id": 16229,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 522,
- "id": 16230,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 522,
- "id": 16231,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 522,
- "id": 16232,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 522,
- "id": 16233,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 522,
- "id": 16234,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 522,
- "id": 16235,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 522,
- "id": 16236,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 522,
- "id": 16237,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 522,
- "id": 16238,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 522,
- "id": 16239,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 522,
- "id": 16240,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 522,
- "id": 16241,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 522,
- "id": 16242,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 522,
- "id": 16243,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 525,
- "id": 16248,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 524,
- "id": 16249,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 524,
- "id": 16250,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 524,
- "id": 16251,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 524,
- "id": 16252,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 524,
- "id": 16253,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 524,
- "id": 16254,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 524,
- "id": 16255,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 524,
- "id": 16256,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 524,
- "id": 16257,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 524,
- "id": 16258,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 524,
- "id": 16259,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 524,
- "id": 16260,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 524,
- "id": 16261,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 524,
- "id": 16262,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 524,
- "id": 16263,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 524,
- "id": 16264,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 524,
- "id": 16265,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 524,
- "id": 16266,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 524,
- "id": 16267,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 524,
- "id": 16268,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 524,
- "id": 16269,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 524,
- "id": 16270,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 527,
- "id": 16275,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 526,
- "id": 16276,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 526,
- "id": 16277,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 526,
- "id": 16278,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 526,
- "id": 16279,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 526,
- "id": 16280,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 526,
- "id": 16281,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 526,
- "id": 16282,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 526,
- "id": 16283,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 526,
- "id": 16284,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 526,
- "id": 16285,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 526,
- "id": 16286,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 526,
- "id": 16287,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 526,
- "id": 16288,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 526,
- "id": 16289,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 526,
- "id": 16290,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 526,
- "id": 16291,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 526,
- "id": 16292,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 526,
- "id": 16293,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 526,
- "id": 16294,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 526,
- "id": 16295,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 526,
- "id": 16296,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 526,
- "id": 16297,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 529,
- "id": 16302,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 528,
- "id": 16303,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 528,
- "id": 16304,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 528,
- "id": 16305,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 528,
- "id": 16306,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 528,
- "id": 16307,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 528,
- "id": 16308,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 528,
- "id": 16309,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 528,
- "id": 16310,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 528,
- "id": 16311,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 528,
- "id": 16312,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 528,
- "id": 16313,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 528,
- "id": 16314,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 528,
- "id": 16315,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 528,
- "id": 16316,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 528,
- "id": 16317,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 528,
- "id": 16318,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 528,
- "id": 16319,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 528,
- "id": 16320,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 528,
- "id": 16321,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 528,
- "id": 16322,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 528,
- "id": 16323,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 528,
- "id": 16324,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 532,
- "id": 16329,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 530,
- "id": 16330,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 530,
- "id": 16331,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 530,
- "id": 16332,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 530,
- "id": 16333,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 530,
- "id": 16334,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 530,
- "id": 16335,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 530,
- "id": 16336,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 530,
- "id": 16337,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 530,
- "id": 16338,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 530,
- "id": 16339,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 530,
- "id": 16340,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 530,
- "id": 16341,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 530,
- "id": 16342,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 530,
- "id": 16343,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 530,
- "id": 16344,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 530,
- "id": 16345,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 530,
- "id": 16346,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 530,
- "id": 16347,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 530,
- "id": 16348,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 530,
- "id": 16349,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 530,
- "id": 16350,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 530,
- "id": 16351,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 534,
- "id": 16356,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 533,
- "id": 16357,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 533,
- "id": 16358,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 533,
- "id": 16359,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 533,
- "id": 16360,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 533,
- "id": 16361,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 533,
- "id": 16362,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 533,
- "id": 16363,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 533,
- "id": 16364,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 533,
- "id": 16365,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 533,
- "id": 16366,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 533,
- "id": 16367,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 533,
- "id": 16368,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 533,
- "id": 16369,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 533,
- "id": 16370,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 533,
- "id": 16371,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 533,
- "id": 16372,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 533,
- "id": 16373,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 533,
- "id": 16374,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 533,
- "id": 16375,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 533,
- "id": 16376,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 533,
- "id": 16377,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 533,
- "id": 16378,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 536,
- "id": 16383,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 535,
- "id": 16384,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 535,
- "id": 16385,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 535,
- "id": 16386,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 535,
- "id": 16387,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 535,
- "id": 16388,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 535,
- "id": 16389,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 535,
- "id": 16390,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 535,
- "id": 16391,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 535,
- "id": 16392,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 535,
- "id": 16393,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 535,
- "id": 16394,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 535,
- "id": 16395,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 535,
- "id": 16396,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 535,
- "id": 16397,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 535,
- "id": 16398,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 535,
- "id": 16399,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 535,
- "id": 16400,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 535,
- "id": 16401,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 535,
- "id": 16402,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 535,
- "id": 16403,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 535,
- "id": 16404,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 535,
- "id": 16405,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 538,
- "id": 16410,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 537,
- "id": 16411,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 537,
- "id": 16412,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 537,
- "id": 16413,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 537,
- "id": 16414,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 537,
- "id": 16415,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 537,
- "id": 16416,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 537,
- "id": 16417,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 537,
- "id": 16418,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 537,
- "id": 16419,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 537,
- "id": 16420,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 537,
- "id": 16421,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 537,
- "id": 16422,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 537,
- "id": 16423,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 537,
- "id": 16424,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 537,
- "id": 16425,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 537,
- "id": 16426,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 537,
- "id": 16427,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 537,
- "id": 16428,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 537,
- "id": 16429,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 537,
- "id": 16430,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 537,
- "id": 16431,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 537,
- "id": 16432,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 541,
- "id": 16437,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 539,
- "id": 16438,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 539,
- "id": 16439,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 539,
- "id": 16440,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 539,
- "id": 16441,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 539,
- "id": 16442,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 539,
- "id": 16443,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 539,
- "id": 16444,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 539,
- "id": 16445,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 539,
- "id": 16446,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 539,
- "id": 16447,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 539,
- "id": 16448,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 539,
- "id": 16449,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 539,
- "id": 16450,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 539,
- "id": 16451,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 539,
- "id": 16452,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 539,
- "id": 16453,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 539,
- "id": 16454,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 539,
- "id": 16455,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 539,
- "id": 16456,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 539,
- "id": 16457,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 539,
- "id": 16458,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 539,
- "id": 16459,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 540,
- "id": 16464,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 540,
- "id": 16465,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 540,
- "id": 16466,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 540,
- "id": 16467,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 540,
- "id": 16468,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 540,
- "id": 16469,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 540,
- "id": 16470,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 540,
- "id": 16471,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 540,
- "id": 16472,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 540,
- "id": 16473,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 540,
- "id": 16474,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 540,
- "id": 16475,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 540,
- "id": 16476,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 540,
- "id": 16477,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 540,
- "id": 16478,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 540,
- "id": 16479,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 540,
- "id": 16480,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 540,
- "id": 16481,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 540,
- "id": 16482,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 540,
- "id": 16483,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 540,
- "id": 16484,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 540,
- "id": 16485,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 544,
- "id": 16490,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 543,
- "id": 16491,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 543,
- "id": 16492,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 543,
- "id": 16493,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 543,
- "id": 16494,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 543,
- "id": 16495,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 543,
- "id": 16496,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 543,
- "id": 16497,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 543,
- "id": 16498,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 543,
- "id": 16499,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 543,
- "id": 16500,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 543,
- "id": 16501,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 543,
- "id": 16502,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 543,
- "id": 16503,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 543,
- "id": 16504,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 543,
- "id": 16505,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 543,
- "id": 16506,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 543,
- "id": 16507,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 543,
- "id": 16508,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 543,
- "id": 16509,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 543,
- "id": 16510,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 543,
- "id": 16511,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 543,
- "id": 16512,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 546,
- "id": 16517,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 545,
- "id": 16518,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 545,
- "id": 16519,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 545,
- "id": 16520,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 545,
- "id": 16521,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 545,
- "id": 16522,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 545,
- "id": 16523,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 545,
- "id": 16524,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 545,
- "id": 16525,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 545,
- "id": 16526,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 545,
- "id": 16527,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 545,
- "id": 16528,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 545,
- "id": 16529,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 545,
- "id": 16530,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 545,
- "id": 16531,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 545,
- "id": 16532,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 545,
- "id": 16533,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 545,
- "id": 16534,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 545,
- "id": 16535,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 545,
- "id": 16536,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 545,
- "id": 16537,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 545,
- "id": 16538,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 545,
- "id": 16539,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 548,
- "id": 16544,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 547,
- "id": 16545,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 547,
- "id": 16546,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 547,
- "id": 16547,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 547,
- "id": 16548,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 547,
- "id": 16549,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 547,
- "id": 16550,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 547,
- "id": 16551,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 547,
- "id": 16552,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 547,
- "id": 16553,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 547,
- "id": 16554,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 547,
- "id": 16555,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 547,
- "id": 16556,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 547,
- "id": 16557,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 547,
- "id": 16558,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 547,
- "id": 16559,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 547,
- "id": 16560,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 547,
- "id": 16561,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 547,
- "id": 16562,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 547,
- "id": 16563,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 547,
- "id": 16564,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 547,
- "id": 16565,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 547,
- "id": 16566,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 550,
- "id": 16571,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 549,
- "id": 16572,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 549,
- "id": 16573,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 549,
- "id": 16574,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 549,
- "id": 16575,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 549,
- "id": 16576,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 549,
- "id": 16577,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 549,
- "id": 16578,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 549,
- "id": 16579,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 549,
- "id": 16580,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 549,
- "id": 16581,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 549,
- "id": 16582,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 549,
- "id": 16583,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 549,
- "id": 16584,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 549,
- "id": 16585,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 549,
- "id": 16586,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 549,
- "id": 16587,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 549,
- "id": 16588,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 549,
- "id": 16589,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 549,
- "id": 16590,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 549,
- "id": 16591,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 549,
- "id": 16592,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 549,
- "id": 16593,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 552,
- "id": 16598,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 551,
- "id": 16599,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 551,
- "id": 16600,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 551,
- "id": 16601,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 551,
- "id": 16602,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 551,
- "id": 16603,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 551,
- "id": 16604,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 551,
- "id": 16605,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 551,
- "id": 16606,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 551,
- "id": 16607,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 551,
- "id": 16608,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 551,
- "id": 16609,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 551,
- "id": 16610,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 551,
- "id": 16611,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 551,
- "id": 16612,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 551,
- "id": 16613,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 551,
- "id": 16614,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 551,
- "id": 16615,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 551,
- "id": 16616,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 551,
- "id": 16617,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 551,
- "id": 16618,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 551,
- "id": 16619,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 551,
- "id": 16620,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 555,
- "id": 16625,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 554,
- "id": 16626,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 554,
- "id": 16627,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 554,
- "id": 16628,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 554,
- "id": 16629,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 554,
- "id": 16630,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 554,
- "id": 16631,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 554,
- "id": 16632,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 554,
- "id": 16633,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 554,
- "id": 16634,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 554,
- "id": 16635,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 554,
- "id": 16636,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 554,
- "id": 16637,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 554,
- "id": 16638,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 554,
- "id": 16639,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 554,
- "id": 16640,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 554,
- "id": 16641,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 554,
- "id": 16642,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 554,
- "id": 16643,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 554,
- "id": 16644,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 554,
- "id": 16645,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 554,
- "id": 16646,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 554,
- "id": 16647,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 557,
- "id": 16652,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 556,
- "id": 16653,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 556,
- "id": 16654,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 556,
- "id": 16655,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 556,
- "id": 16656,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 556,
- "id": 16657,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 556,
- "id": 16658,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 556,
- "id": 16659,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 556,
- "id": 16660,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 556,
- "id": 16661,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 556,
- "id": 16662,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 556,
- "id": 16663,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 556,
- "id": 16664,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 556,
- "id": 16665,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 556,
- "id": 16666,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 556,
- "id": 16667,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 556,
- "id": 16668,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 556,
- "id": 16669,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 556,
- "id": 16670,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 556,
- "id": 16671,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 556,
- "id": 16672,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 556,
- "id": 16673,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 556,
- "id": 16674,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 559,
- "id": 16679,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 558,
- "id": 16680,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 558,
- "id": 16681,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 558,
- "id": 16682,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 558,
- "id": 16683,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 558,
- "id": 16684,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 558,
- "id": 16685,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 558,
- "id": 16686,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 558,
- "id": 16687,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 558,
- "id": 16688,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 558,
- "id": 16689,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 558,
- "id": 16690,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 558,
- "id": 16691,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 558,
- "id": 16692,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 558,
- "id": 16693,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 558,
- "id": 16694,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 558,
- "id": 16695,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 558,
- "id": 16696,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 558,
- "id": 16697,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 558,
- "id": 16698,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 558,
- "id": 16699,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 558,
- "id": 16700,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 558,
- "id": 16701,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 55,
- "id": 16706,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 561,
- "id": 16707,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 560,
- "id": 16708,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 560,
- "id": 16709,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 560,
- "id": 16710,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 560,
- "id": 16711,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 560,
- "id": 16712,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 560,
- "id": 16713,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 560,
- "id": 16714,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 560,
- "id": 16715,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 560,
- "id": 16716,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 560,
- "id": 16717,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 560,
- "id": 16718,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 560,
- "id": 16719,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 560,
- "id": 16720,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 560,
- "id": 16721,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 560,
- "id": 16722,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 560,
- "id": 16723,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 560,
- "id": 16724,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 560,
- "id": 16725,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 560,
- "id": 16726,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 560,
- "id": 16727,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 560,
- "id": 16728,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 560,
- "id": 16729,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 563,
- "id": 16734,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 562,
- "id": 16735,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 562,
- "id": 16736,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 562,
- "id": 16737,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 562,
- "id": 16738,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 562,
- "id": 16739,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 562,
- "id": 16740,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 562,
- "id": 16741,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 562,
- "id": 16742,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 562,
- "id": 16743,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 562,
- "id": 16744,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 562,
- "id": 16745,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 562,
- "id": 16746,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 562,
- "id": 16747,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 562,
- "id": 16748,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 562,
- "id": 16749,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 562,
- "id": 16750,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 562,
- "id": 16751,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 562,
- "id": 16752,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 562,
- "id": 16753,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 562,
- "id": 16754,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 562,
- "id": 16755,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 562,
- "id": 16756,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 566,
- "id": 16761,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 565,
- "id": 16762,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 565,
- "id": 16763,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 565,
- "id": 16764,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 565,
- "id": 16765,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 565,
- "id": 16766,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 565,
- "id": 16767,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 565,
- "id": 16768,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 565,
- "id": 16769,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 565,
- "id": 16770,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 565,
- "id": 16771,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 565,
- "id": 16772,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 565,
- "id": 16773,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 565,
- "id": 16774,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 565,
- "id": 16775,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 565,
- "id": 16776,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 565,
- "id": 16777,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 565,
- "id": 16778,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 565,
- "id": 16779,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 565,
- "id": 16780,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 565,
- "id": 16781,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 565,
- "id": 16782,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 565,
- "id": 16783,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 568,
- "id": 16788,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 567,
- "id": 16789,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 567,
- "id": 16790,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 567,
- "id": 16791,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 567,
- "id": 16792,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 567,
- "id": 16793,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 567,
- "id": 16794,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 567,
- "id": 16795,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 567,
- "id": 16796,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 567,
- "id": 16797,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 567,
- "id": 16798,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 567,
- "id": 16799,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 567,
- "id": 16800,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 567,
- "id": 16801,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 567,
- "id": 16802,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 567,
- "id": 16803,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 567,
- "id": 16804,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 567,
- "id": 16805,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 567,
- "id": 16806,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 567,
- "id": 16807,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 567,
- "id": 16808,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 567,
- "id": 16809,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 567,
- "id": 16810,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 57,
- "id": 16815,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 56,
- "id": 16816,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 56,
- "id": 16817,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 56,
- "id": 16818,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 56,
- "id": 16819,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 56,
- "id": 16820,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 56,
- "id": 16821,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 56,
- "id": 16822,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 56,
- "id": 16823,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 56,
- "id": 16824,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 56,
- "id": 16825,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 56,
- "id": 16826,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 56,
- "id": 16827,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 56,
- "id": 16828,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 56,
- "id": 16829,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 56,
- "id": 16830,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 56,
- "id": 16831,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 56,
- "id": 16832,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 56,
- "id": 16833,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 56,
- "id": 16834,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 56,
- "id": 16835,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 56,
- "id": 16836,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 56,
- "id": 16837,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 570,
- "id": 16842,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 569,
- "id": 16843,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 569,
- "id": 16844,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 569,
- "id": 16845,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 569,
- "id": 16846,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 569,
- "id": 16847,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 569,
- "id": 16848,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 569,
- "id": 16849,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 569,
- "id": 16850,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 569,
- "id": 16851,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 569,
- "id": 16852,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 569,
- "id": 16853,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 569,
- "id": 16854,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 569,
- "id": 16855,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 569,
- "id": 16856,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 569,
- "id": 16857,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 569,
- "id": 16858,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 569,
- "id": 16859,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 569,
- "id": 16860,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 569,
- "id": 16861,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 569,
- "id": 16862,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 569,
- "id": 16863,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 569,
- "id": 16864,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 572,
- "id": 16869,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 571,
- "id": 16870,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 571,
- "id": 16871,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 571,
- "id": 16872,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 571,
- "id": 16873,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 571,
- "id": 16874,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 571,
- "id": 16875,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 571,
- "id": 16876,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 571,
- "id": 16877,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 571,
- "id": 16878,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 571,
- "id": 16879,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 571,
- "id": 16880,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 571,
- "id": 16881,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 571,
- "id": 16882,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 571,
- "id": 16883,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 571,
- "id": 16884,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 571,
- "id": 16885,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 571,
- "id": 16886,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 571,
- "id": 16887,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 571,
- "id": 16888,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 571,
- "id": 16889,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 571,
- "id": 16890,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 571,
- "id": 16891,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 574,
- "id": 16896,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 573,
- "id": 16897,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 573,
- "id": 16898,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 573,
- "id": 16899,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 573,
- "id": 16900,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 573,
- "id": 16901,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 573,
- "id": 16902,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 573,
- "id": 16903,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 573,
- "id": 16904,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 573,
- "id": 16905,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 573,
- "id": 16906,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 573,
- "id": 16907,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 573,
- "id": 16908,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 573,
- "id": 16909,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 573,
- "id": 16910,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 573,
- "id": 16911,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 573,
- "id": 16912,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 573,
- "id": 16913,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 573,
- "id": 16914,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 573,
- "id": 16915,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 573,
- "id": 16916,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 573,
- "id": 16917,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 573,
- "id": 16918,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 577,
- "id": 16923,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 576,
- "id": 16924,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 576,
- "id": 16925,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 576,
- "id": 16926,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 576,
- "id": 16927,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 576,
- "id": 16928,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 576,
- "id": 16929,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 576,
- "id": 16930,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 576,
- "id": 16931,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 576,
- "id": 16932,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 576,
- "id": 16933,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 576,
- "id": 16934,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 576,
- "id": 16935,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 576,
- "id": 16936,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 576,
- "id": 16937,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 576,
- "id": 16938,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 576,
- "id": 16939,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 576,
- "id": 16940,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 576,
- "id": 16941,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 576,
- "id": 16942,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 576,
- "id": 16943,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 576,
- "id": 16944,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 576,
- "id": 16945,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 579,
- "id": 16950,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 578,
- "id": 16951,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 578,
- "id": 16952,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 578,
- "id": 16953,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 578,
- "id": 16954,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 578,
- "id": 16955,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 578,
- "id": 16956,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 578,
- "id": 16957,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 578,
- "id": 16958,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 578,
- "id": 16959,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 578,
- "id": 16960,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 578,
- "id": 16961,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 578,
- "id": 16962,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 578,
- "id": 16963,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 578,
- "id": 16964,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 578,
- "id": 16965,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 578,
- "id": 16966,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 578,
- "id": 16967,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 578,
- "id": 16968,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 578,
- "id": 16969,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 578,
- "id": 16970,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 578,
- "id": 16971,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 578,
- "id": 16972,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 581,
- "id": 16977,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 580,
- "id": 16978,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 580,
- "id": 16979,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 580,
- "id": 16980,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 580,
- "id": 16981,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 580,
- "id": 16982,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 580,
- "id": 16983,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 580,
- "id": 16984,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 580,
- "id": 16985,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 580,
- "id": 16986,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 580,
- "id": 16987,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 580,
- "id": 16988,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 580,
- "id": 16989,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 580,
- "id": 16990,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 580,
- "id": 16991,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 580,
- "id": 16992,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 580,
- "id": 16993,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 580,
- "id": 16994,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 580,
- "id": 16995,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 580,
- "id": 16996,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 580,
- "id": 16997,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 580,
- "id": 16998,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 580,
- "id": 16999,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 583,
- "id": 17004,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 582,
- "id": 17005,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 582,
- "id": 17006,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 582,
- "id": 17007,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 582,
- "id": 17008,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 582,
- "id": 17009,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 582,
- "id": 17010,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 582,
- "id": 17011,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 582,
- "id": 17012,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 582,
- "id": 17013,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 582,
- "id": 17014,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 582,
- "id": 17015,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 582,
- "id": 17016,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 582,
- "id": 17017,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 582,
- "id": 17018,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 582,
- "id": 17019,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 582,
- "id": 17020,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 582,
- "id": 17021,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 582,
- "id": 17022,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 582,
- "id": 17023,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 582,
- "id": 17024,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 582,
- "id": 17025,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 582,
- "id": 17026,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 585,
- "id": 17031,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 584,
- "id": 17032,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 584,
- "id": 17033,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 584,
- "id": 17034,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 584,
- "id": 17035,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 584,
- "id": 17036,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 584,
- "id": 17037,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 584,
- "id": 17038,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 584,
- "id": 17039,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 584,
- "id": 17040,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 584,
- "id": 17041,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 584,
- "id": 17042,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 584,
- "id": 17043,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 584,
- "id": 17044,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 584,
- "id": 17045,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 584,
- "id": 17046,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 584,
- "id": 17047,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 584,
- "id": 17048,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 584,
- "id": 17049,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 584,
- "id": 17050,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 584,
- "id": 17051,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 584,
- "id": 17052,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 584,
- "id": 17053,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4,
- "id": 17058,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 3,
- "id": 17059,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 3,
- "id": 17060,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 3,
- "id": 17061,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 3,
- "id": 17062,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 3,
- "id": 17063,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 3,
- "id": 17064,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 3,
- "id": 17065,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 3,
- "id": 17066,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 3,
- "id": 17067,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 3,
- "id": 17068,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 3,
- "id": 17069,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 3,
- "id": 17070,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 3,
- "id": 17071,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 3,
- "id": 17072,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 3,
- "id": 17073,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 3,
- "id": 17074,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 3,
- "id": 17075,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 3,
- "id": 17076,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 3,
- "id": 17077,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 3,
- "id": 17078,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 3,
- "id": 17079,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 3,
- "id": 17080,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16,
- "id": 17085,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 5,
- "id": 17086,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 5,
- "id": 17087,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 5,
- "id": 17088,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 5,
- "id": 17089,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 5,
- "id": 17090,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 5,
- "id": 17091,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 5,
- "id": 17092,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 5,
- "id": 17093,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 5,
- "id": 17094,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 5,
- "id": 17095,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 5,
- "id": 17096,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 5,
- "id": 17097,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 5,
- "id": 17098,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 5,
- "id": 17099,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 5,
- "id": 17100,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 5,
- "id": 17101,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 5,
- "id": 17102,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 5,
- "id": 17103,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 5,
- "id": 17104,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 5,
- "id": 17105,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 5,
- "id": 17106,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 5,
- "id": 17107,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 22,
- "id": 17112,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 21,
- "id": 17113,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 21,
- "id": 17114,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 21,
- "id": 17115,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 21,
- "id": 17116,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 21,
- "id": 17117,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 21,
- "id": 17118,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 21,
- "id": 17119,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 21,
- "id": 17120,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 21,
- "id": 17121,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 21,
- "id": 17122,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 21,
- "id": 17123,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 21,
- "id": 17124,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 21,
- "id": 17125,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 21,
- "id": 17126,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 21,
- "id": 17127,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 21,
- "id": 17128,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 21,
- "id": 17129,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 21,
- "id": 17130,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 21,
- "id": 17131,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 21,
- "id": 17132,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 21,
- "id": 17133,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 21,
- "id": 17134,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 24,
- "id": 17139,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 23,
- "id": 17140,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 23,
- "id": 17141,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 23,
- "id": 17142,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 23,
- "id": 17143,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 23,
- "id": 17144,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 23,
- "id": 17145,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 23,
- "id": 17146,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 23,
- "id": 17147,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 23,
- "id": 17148,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 23,
- "id": 17149,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 23,
- "id": 17150,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 23,
- "id": 17151,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 23,
- "id": 17152,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 23,
- "id": 17153,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 23,
- "id": 17154,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 23,
- "id": 17155,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 23,
- "id": 17156,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 23,
- "id": 17157,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 23,
- "id": 17158,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 23,
- "id": 17159,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 23,
- "id": 17160,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 23,
- "id": 17161,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 26,
- "id": 17166,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 25,
- "id": 17167,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 25,
- "id": 17168,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 25,
- "id": 17169,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 25,
- "id": 17170,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 25,
- "id": 17171,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 25,
- "id": 17172,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 25,
- "id": 17173,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 25,
- "id": 17174,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 25,
- "id": 17175,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 25,
- "id": 17176,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 25,
- "id": 17177,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 25,
- "id": 17178,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 25,
- "id": 17179,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 25,
- "id": 17180,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 25,
- "id": 17181,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 25,
- "id": 17182,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 25,
- "id": 17183,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 25,
- "id": 17184,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 25,
- "id": 17185,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 25,
- "id": 17186,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 25,
- "id": 17187,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 25,
- "id": 17188,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 28,
- "id": 17193,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 27,
- "id": 17194,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 27,
- "id": 17195,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 27,
- "id": 17196,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 27,
- "id": 17197,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 27,
- "id": 17198,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 27,
- "id": 17199,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 27,
- "id": 17200,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 27,
- "id": 17201,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 27,
- "id": 17202,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 27,
- "id": 17203,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 27,
- "id": 17204,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 27,
- "id": 17205,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 27,
- "id": 17206,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 27,
- "id": 17207,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 27,
- "id": 17208,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 27,
- "id": 17209,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 27,
- "id": 17210,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 27,
- "id": 17211,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 27,
- "id": 17212,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 27,
- "id": 17213,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 27,
- "id": 17214,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 27,
- "id": 17215,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 30,
- "id": 17220,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 29,
- "id": 17221,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 29,
- "id": 17222,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 29,
- "id": 17223,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 29,
- "id": 17224,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 29,
- "id": 17225,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 29,
- "id": 17226,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 29,
- "id": 17227,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 29,
- "id": 17228,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 29,
- "id": 17229,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 29,
- "id": 17230,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 29,
- "id": 17231,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 29,
- "id": 17232,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 29,
- "id": 17233,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 29,
- "id": 17234,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 29,
- "id": 17235,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 29,
- "id": 17236,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 29,
- "id": 17237,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 29,
- "id": 17238,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 29,
- "id": 17239,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 29,
- "id": 17240,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 29,
- "id": 17241,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 29,
- "id": 17242,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 32,
- "id": 17247,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 31,
- "id": 17248,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 31,
- "id": 17249,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 31,
- "id": 17250,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 31,
- "id": 17251,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 31,
- "id": 17252,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 31,
- "id": 17253,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 31,
- "id": 17254,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 31,
- "id": 17255,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 31,
- "id": 17256,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 31,
- "id": 17257,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 31,
- "id": 17258,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 31,
- "id": 17259,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 31,
- "id": 17260,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 31,
- "id": 17261,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 31,
- "id": 17262,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 31,
- "id": 17263,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 31,
- "id": 17264,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 31,
- "id": 17265,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 31,
- "id": 17266,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 31,
- "id": 17267,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 31,
- "id": 17268,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 31,
- "id": 17269,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 34,
- "id": 17274,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 33,
- "id": 17275,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 33,
- "id": 17276,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 33,
- "id": 17277,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 33,
- "id": 17278,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 33,
- "id": 17279,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 33,
- "id": 17280,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 33,
- "id": 17281,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 33,
- "id": 17282,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 33,
- "id": 17283,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 33,
- "id": 17284,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 33,
- "id": 17285,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 33,
- "id": 17286,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 33,
- "id": 17287,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 33,
- "id": 17288,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 33,
- "id": 17289,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 33,
- "id": 17290,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 33,
- "id": 17291,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 33,
- "id": 17292,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 33,
- "id": 17293,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 33,
- "id": 17294,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 33,
- "id": 17295,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 33,
- "id": 17296,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 36,
- "id": 17301,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 35,
- "id": 17302,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 35,
- "id": 17303,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 35,
- "id": 17304,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 35,
- "id": 17305,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 35,
- "id": 17306,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 35,
- "id": 17307,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 35,
- "id": 17308,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 35,
- "id": 17309,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 35,
- "id": 17310,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 35,
- "id": 17311,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 35,
- "id": 17312,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 35,
- "id": 17313,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 35,
- "id": 17314,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 35,
- "id": 17315,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 35,
- "id": 17316,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 35,
- "id": 17317,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 35,
- "id": 17318,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 35,
- "id": 17319,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 35,
- "id": 17320,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 35,
- "id": 17321,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 35,
- "id": 17322,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 35,
- "id": 17323,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 38,
- "id": 17328,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 37,
- "id": 17329,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 37,
- "id": 17330,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 37,
- "id": 17331,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 37,
- "id": 17332,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 37,
- "id": 17333,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 37,
- "id": 17334,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 37,
- "id": 17335,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 37,
- "id": 17336,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 37,
- "id": 17337,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 37,
- "id": 17338,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 37,
- "id": 17339,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 37,
- "id": 17340,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 37,
- "id": 17341,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 37,
- "id": 17342,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 37,
- "id": 17343,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 37,
- "id": 17344,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 37,
- "id": 17345,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 37,
- "id": 17346,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 37,
- "id": 17347,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 37,
- "id": 17348,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 37,
- "id": 17349,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 37,
- "id": 17350,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 40,
- "id": 17355,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 39,
- "id": 17356,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 39,
- "id": 17357,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 39,
- "id": 17358,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 39,
- "id": 17359,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 39,
- "id": 17360,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 39,
- "id": 17361,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 39,
- "id": 17362,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 39,
- "id": 17363,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 39,
- "id": 17364,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 39,
- "id": 17365,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 39,
- "id": 17366,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 39,
- "id": 17367,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 39,
- "id": 17368,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 39,
- "id": 17369,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 39,
- "id": 17370,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 39,
- "id": 17371,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 39,
- "id": 17372,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 39,
- "id": 17373,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 39,
- "id": 17374,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 39,
- "id": 17375,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 39,
- "id": 17376,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 39,
- "id": 17377,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 42,
- "id": 17382,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 41,
- "id": 17383,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 41,
- "id": 17384,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 41,
- "id": 17385,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 41,
- "id": 17386,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 41,
- "id": 17387,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 41,
- "id": 17388,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 41,
- "id": 17389,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 41,
- "id": 17390,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 41,
- "id": 17391,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 41,
- "id": 17392,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 41,
- "id": 17393,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 41,
- "id": 17394,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 41,
- "id": 17395,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 41,
- "id": 17396,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 41,
- "id": 17397,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 41,
- "id": 17398,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 41,
- "id": 17399,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 41,
- "id": 17400,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 41,
- "id": 17401,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 41,
- "id": 17402,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 41,
- "id": 17403,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 41,
- "id": 17404,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 44,
- "id": 17409,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 43,
- "id": 17410,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 43,
- "id": 17411,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 43,
- "id": 17412,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 43,
- "id": 17413,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 43,
- "id": 17414,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 43,
- "id": 17415,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 43,
- "id": 17416,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 43,
- "id": 17417,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 43,
- "id": 17418,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 43,
- "id": 17419,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 43,
- "id": 17420,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 43,
- "id": 17421,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 43,
- "id": 17422,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 43,
- "id": 17423,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 43,
- "id": 17424,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 43,
- "id": 17425,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 43,
- "id": 17426,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 43,
- "id": 17427,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 43,
- "id": 17428,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 43,
- "id": 17429,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 43,
- "id": 17430,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 43,
- "id": 17431,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 46,
- "id": 17436,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 45,
- "id": 17437,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 45,
- "id": 17438,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 45,
- "id": 17439,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 45,
- "id": 17440,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 45,
- "id": 17441,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 45,
- "id": 17442,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 45,
- "id": 17443,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 45,
- "id": 17444,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 45,
- "id": 17445,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 45,
- "id": 17446,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 45,
- "id": 17447,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 45,
- "id": 17448,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 45,
- "id": 17449,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 45,
- "id": 17450,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 45,
- "id": 17451,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 45,
- "id": 17452,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 45,
- "id": 17453,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 45,
- "id": 17454,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 45,
- "id": 17455,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 45,
- "id": 17456,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 45,
- "id": 17457,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 45,
- "id": 17458,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 48,
- "id": 17463,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 47,
- "id": 17464,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 47,
- "id": 17465,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 47,
- "id": 17466,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 47,
- "id": 17467,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 47,
- "id": 17468,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 47,
- "id": 17469,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 47,
- "id": 17470,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 47,
- "id": 17471,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 47,
- "id": 17472,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 47,
- "id": 17473,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 47,
- "id": 17474,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 47,
- "id": 17475,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 47,
- "id": 17476,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 47,
- "id": 17477,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 47,
- "id": 17478,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 47,
- "id": 17479,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 47,
- "id": 17480,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 47,
- "id": 17481,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 47,
- "id": 17482,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 47,
- "id": 17483,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 47,
- "id": 17484,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 47,
- "id": 17485,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 50,
- "id": 17490,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 49,
- "id": 17491,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 49,
- "id": 17492,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 49,
- "id": 17493,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 49,
- "id": 17494,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 49,
- "id": 17495,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 49,
- "id": 17496,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 49,
- "id": 17497,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 49,
- "id": 17498,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 49,
- "id": 17499,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 49,
- "id": 17500,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 49,
- "id": 17501,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 49,
- "id": 17502,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 49,
- "id": 17503,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 49,
- "id": 17504,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 49,
- "id": 17505,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 49,
- "id": 17506,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 49,
- "id": 17507,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 49,
- "id": 17508,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 49,
- "id": 17509,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 49,
- "id": 17510,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 49,
- "id": 17511,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 49,
- "id": 17512,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 52,
- "id": 17517,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 51,
- "id": 17518,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 51,
- "id": 17519,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 51,
- "id": 17520,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 51,
- "id": 17521,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 51,
- "id": 17522,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 51,
- "id": 17523,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 51,
- "id": 17524,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 51,
- "id": 17525,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 51,
- "id": 17526,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 51,
- "id": 17527,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 51,
- "id": 17528,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 51,
- "id": 17529,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 51,
- "id": 17530,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 51,
- "id": 17531,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 51,
- "id": 17532,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 51,
- "id": 17533,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 51,
- "id": 17534,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 51,
- "id": 17535,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 51,
- "id": 17536,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 51,
- "id": 17537,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 51,
- "id": 17538,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 51,
- "id": 17539,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 54,
- "id": 17544,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 53,
- "id": 17545,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 53,
- "id": 17546,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 53,
- "id": 17547,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 53,
- "id": 17548,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 53,
- "id": 17549,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 53,
- "id": 17550,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 53,
- "id": 17551,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 53,
- "id": 17552,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 53,
- "id": 17553,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 53,
- "id": 17554,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 53,
- "id": 17555,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 53,
- "id": 17556,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 53,
- "id": 17557,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 53,
- "id": 17558,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 53,
- "id": 17559,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 53,
- "id": 17560,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 53,
- "id": 17561,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 53,
- "id": 17562,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 53,
- "id": 17563,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 53,
- "id": 17564,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 53,
- "id": 17565,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 53,
- "id": 17566,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4105,
- "id": 17571,
- "width": 70,
- "height": 106
- },
- {
- "x": 70,
- "fileNum": 4105,
- "id": 17572,
- "width": 70,
- "height": 106
- },
- {
- "x": 140,
- "fileNum": 4105,
- "id": 17573,
- "width": 70,
- "height": 106
- },
- {
- "x": 210,
- "fileNum": 4105,
- "id": 17574,
- "width": 70,
- "height": 106
- },
- {
- "x": 280,
- "fileNum": 4105,
- "id": 17575,
- "width": 70,
- "height": 106
- },
- {
- "x": 350,
- "fileNum": 4105,
- "id": 17576,
- "width": 70,
- "height": 106
- },
- {
- "x": 420,
- "fileNum": 4105,
- "id": 17577,
- "width": 70,
- "height": 106
- },
- {
- "x": 490,
- "fileNum": 4105,
- "id": 17578,
- "width": 70,
- "height": 106
- },
- {
- "y": 106,
- "fileNum": 4105,
- "id": 17579,
- "width": 70,
- "height": 106
- },
- {
- "x": 70,
- "y": 106,
- "fileNum": 4105,
- "id": 17580,
- "width": 70,
- "height": 106
- },
- {
- "x": 140,
- "y": 106,
- "fileNum": 4105,
- "id": 17581,
- "width": 70,
- "height": 106
- },
- {
- "x": 210,
- "y": 106,
- "fileNum": 4105,
- "id": 17582,
- "width": 70,
- "height": 106
- },
- {
- "x": 280,
- "y": 106,
- "fileNum": 4105,
- "id": 17583,
- "width": 70,
- "height": 106
- },
- {
- "x": 350,
- "y": 106,
- "fileNum": 4105,
- "id": 17584,
- "width": 70,
- "height": 106
- },
- {
- "x": 420,
- "y": 106,
- "fileNum": 4105,
- "id": 17585,
- "width": 70,
- "height": 106
- },
- {
- "x": 490,
- "y": 106,
- "fileNum": 4105,
- "id": 17586,
- "width": 70,
- "height": 106
- },
- {
- "y": 212,
- "fileNum": 4105,
- "id": 17587,
- "width": 70,
- "height": 106
- },
- {
- "x": 70,
- "y": 212,
- "fileNum": 4105,
- "id": 17588,
- "width": 70,
- "height": 106
- },
- {
- "x": 140,
- "y": 212,
- "fileNum": 4105,
- "id": 17589,
- "width": 70,
- "height": 106
- },
- {
- "x": 210,
- "y": 212,
- "fileNum": 4105,
- "id": 17590,
- "width": 70,
- "height": 106
- },
- {
- "x": 280,
- "y": 212,
- "fileNum": 4105,
- "id": 17591,
- "width": 70,
- "height": 106
- },
- {
- "y": 318,
- "fileNum": 4105,
- "id": 17592,
- "width": 70,
- "height": 106
- },
- {
- "x": 70,
- "y": 318,
- "fileNum": 4105,
- "id": 17593,
- "width": 70,
- "height": 106
- },
- {
- "x": 140,
- "y": 318,
- "fileNum": 4105,
- "id": 17594,
- "width": 70,
- "height": 106
- },
- {
- "x": 210,
- "y": 318,
- "fileNum": 4105,
- "id": 17595,
- "width": 70,
- "height": 106
- },
- {
- "x": 280,
- "y": 318,
- "fileNum": 4105,
- "id": 17596,
- "width": 70,
- "height": 106
- },
- {
- "fileNum": 4136,
- "id": 17601,
- "width": 192,
- "height": 192
- },
- {
- "x": 192,
- "fileNum": 4136,
- "id": 17602,
- "width": 192,
- "height": 192
- },
- {
- "x": 384,
- "fileNum": 4136,
- "id": 17603,
- "width": 192,
- "height": 192
- },
- {
- "x": 576,
- "fileNum": 4136,
- "id": 17604,
- "width": 192,
- "height": 192
- },
- {
- "x": 768,
- "fileNum": 4136,
- "id": 17605,
- "width": 192,
- "height": 192
- },
- {
- "x": 960,
- "fileNum": 4136,
- "id": 17606,
- "width": 192,
- "height": 192
- },
- {
- "y": 192,
- "fileNum": 4136,
- "id": 17607,
- "width": 192,
- "height": 192
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 4136,
- "id": 17608,
- "width": 192,
- "height": 192
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 4136,
- "id": 17609,
- "width": 192,
- "height": 192
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 4136,
- "id": 17610,
- "width": 192,
- "height": 192
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 4136,
- "id": 17611,
- "width": 192,
- "height": 192
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 4136,
- "id": 17612,
- "width": 192,
- "height": 192
- },
- {
- "y": 384,
- "fileNum": 4136,
- "id": 17613,
- "width": 192,
- "height": 192
- },
- {
- "x": 192,
- "y": 384,
- "fileNum": 4136,
- "id": 17614,
- "width": 192,
- "height": 192
- },
- {
- "x": 384,
- "y": 384,
- "fileNum": 4136,
- "id": 17615,
- "width": 192,
- "height": 192
- },
- {
- "x": 576,
- "y": 384,
- "fileNum": 4136,
- "id": 17616,
- "width": 192,
- "height": 192
- },
- {
- "x": 768,
- "y": 384,
- "fileNum": 4136,
- "id": 17617,
- "width": 192,
- "height": 192
- },
- {
- "x": 960,
- "y": 384,
- "fileNum": 4136,
- "id": 17618,
- "width": 192,
- "height": 192
- },
- {
- "y": 576,
- "fileNum": 4136,
- "id": 17619,
- "width": 192,
- "height": 192
- },
- {
- "x": 192,
- "y": 576,
- "fileNum": 4136,
- "id": 17620,
- "width": 192,
- "height": 192
- },
- {
- "x": 384,
- "y": 576,
- "fileNum": 4136,
- "id": 17621,
- "width": 192,
- "height": 192
- },
- {
- "x": 576,
- "y": 576,
- "fileNum": 4136,
- "id": 17622,
- "width": 192,
- "height": 192
- },
- {
- "x": 768,
- "y": 576,
- "fileNum": 4136,
- "id": 17623,
- "width": 192,
- "height": 192
- },
- {
- "x": 960,
- "y": 576,
- "fileNum": 4136,
- "id": 17624,
- "width": 192,
- "height": 192
- },
- {
- "fileNum": 4137,
- "id": 17629,
- "width": 192,
- "height": 192
- },
- {
- "x": 192,
- "fileNum": 4137,
- "id": 17630,
- "width": 192,
- "height": 192
- },
- {
- "x": 384,
- "fileNum": 4137,
- "id": 17631,
- "width": 192,
- "height": 192
- },
- {
- "x": 576,
- "fileNum": 4137,
- "id": 17632,
- "width": 192,
- "height": 192
- },
- {
- "x": 768,
- "fileNum": 4137,
- "id": 17633,
- "width": 192,
- "height": 192
- },
- {
- "x": 960,
- "fileNum": 4137,
- "id": 17634,
- "width": 192,
- "height": 192
- },
- {
- "y": 192,
- "fileNum": 4137,
- "id": 17635,
- "width": 192,
- "height": 192
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 4137,
- "id": 17636,
- "width": 192,
- "height": 192
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 4137,
- "id": 17637,
- "width": 192,
- "height": 192
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 4137,
- "id": 17638,
- "width": 192,
- "height": 192
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 4137,
- "id": 17639,
- "width": 192,
- "height": 192
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 4137,
- "id": 17640,
- "width": 192,
- "height": 192
- },
- {
- "y": 384,
- "fileNum": 4137,
- "id": 17641,
- "width": 192,
- "height": 192
- },
- {
- "x": 192,
- "y": 384,
- "fileNum": 4137,
- "id": 17642,
- "width": 192,
- "height": 192
- },
- {
- "x": 384,
- "y": 384,
- "fileNum": 4137,
- "id": 17643,
- "width": 192,
- "height": 192
- },
- {
- "x": 576,
- "y": 384,
- "fileNum": 4137,
- "id": 17644,
- "width": 192,
- "height": 192
- },
- {
- "x": 768,
- "y": 384,
- "fileNum": 4137,
- "id": 17645,
- "width": 192,
- "height": 192
- },
- {
- "x": 960,
- "y": 384,
- "fileNum": 4137,
- "id": 17646,
- "width": 192,
- "height": 192
- },
- {
- "y": 576,
- "fileNum": 4137,
- "id": 17647,
- "width": 192,
- "height": 192
- },
- {
- "x": 192,
- "y": 576,
- "fileNum": 4137,
- "id": 17648,
- "width": 192,
- "height": 192
- },
- {
- "x": 384,
- "y": 576,
- "fileNum": 4137,
- "id": 17649,
- "width": 192,
- "height": 192
- },
- {
- "x": 576,
- "y": 576,
- "fileNum": 4137,
- "id": 17650,
- "width": 192,
- "height": 192
- },
- {
- "x": 768,
- "y": 576,
- "fileNum": 4137,
- "id": 17651,
- "width": 192,
- "height": 192
- },
- {
- "x": 960,
- "y": 576,
- "fileNum": 4137,
- "id": 17652,
- "width": 192,
- "height": 192
- },
- {
- "fileNum": 412,
- "id": 17657,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 411,
- "id": 17658,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 411,
- "id": 17659,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 411,
- "id": 17660,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 411,
- "id": 17661,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 411,
- "id": 17662,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 411,
- "id": 17663,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 411,
- "id": 17664,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 411,
- "id": 17665,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 411,
- "id": 17666,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 411,
- "id": 17667,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 411,
- "id": 17668,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 411,
- "id": 17669,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 411,
- "id": 17670,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 411,
- "id": 17671,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 411,
- "id": 17672,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 411,
- "id": 17673,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 411,
- "id": 17674,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 411,
- "id": 17675,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 411,
- "id": 17676,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 411,
- "id": 17677,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 411,
- "id": 17678,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 411,
- "id": 17679,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 414,
- "id": 17684,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 413,
- "id": 17685,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 413,
- "id": 17686,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 413,
- "id": 17687,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 413,
- "id": 17688,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 413,
- "id": 17689,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 413,
- "id": 17690,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 413,
- "id": 17691,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 413,
- "id": 17692,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 413,
- "id": 17693,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 413,
- "id": 17694,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 413,
- "id": 17695,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 413,
- "id": 17696,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 413,
- "id": 17697,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 413,
- "id": 17698,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 413,
- "id": 17699,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 413,
- "id": 17700,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 413,
- "id": 17701,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 413,
- "id": 17702,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 413,
- "id": 17703,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 413,
- "id": 17704,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 413,
- "id": 17705,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 413,
- "id": 17706,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 17000,
- "id": 17711,
- "width": 192,
- "height": 156
- },
- {
- "x": 192,
- "fileNum": 17000,
- "id": 17712,
- "width": 192,
- "height": 156
- },
- {
- "x": 384,
- "fileNum": 17000,
- "id": 17713,
- "width": 192,
- "height": 156
- },
- {
- "x": 576,
- "fileNum": 17000,
- "id": 17714,
- "width": 192,
- "height": 156
- },
- {
- "y": 156,
- "fileNum": 17000,
- "id": 17715,
- "width": 192,
- "height": 156
- },
- {
- "x": 192,
- "y": 156,
- "fileNum": 17000,
- "id": 17716,
- "width": 192,
- "height": 156
- },
- {
- "x": 384,
- "y": 156,
- "fileNum": 17000,
- "id": 17717,
- "width": 192,
- "height": 156
- },
- {
- "x": 576,
- "y": 156,
- "fileNum": 17000,
- "id": 17718,
- "width": 192,
- "height": 156
- },
- {
- "y": 312,
- "fileNum": 17000,
- "id": 17719,
- "width": 132,
- "height": 192
- },
- {
- "x": 132,
- "y": 312,
- "fileNum": 17000,
- "id": 17720,
- "width": 132,
- "height": 192
- },
- {
- "x": 264,
- "y": 312,
- "fileNum": 17000,
- "id": 17721,
- "width": 132,
- "height": 192
- },
- {
- "x": 396,
- "y": 312,
- "fileNum": 17000,
- "id": 17722,
- "width": 132,
- "height": 192
- },
- {
- "y": 534,
- "fileNum": 17000,
- "id": 17723,
- "width": 132,
- "height": 162
- },
- {
- "x": 132,
- "y": 534,
- "fileNum": 17000,
- "id": 17724,
- "width": 132,
- "height": 162
- },
- {
- "x": 264,
- "y": 534,
- "fileNum": 17000,
- "id": 17725,
- "width": 132,
- "height": 162
- },
- {
- "x": 396,
- "y": 534,
- "fileNum": 17000,
- "id": 17726,
- "width": 132,
- "height": 162
- },
- {
- "fileNum": 17001,
- "id": 17731,
- "width": 192,
- "height": 156
- },
- {
- "x": 192,
- "fileNum": 17001,
- "id": 17732,
- "width": 192,
- "height": 156
- },
- {
- "x": 384,
- "fileNum": 17001,
- "id": 17733,
- "width": 192,
- "height": 156
- },
- {
- "x": 576,
- "fileNum": 17001,
- "id": 17734,
- "width": 192,
- "height": 156
- },
- {
- "y": 156,
- "fileNum": 17001,
- "id": 17735,
- "width": 192,
- "height": 156
- },
- {
- "x": 192,
- "y": 156,
- "fileNum": 17001,
- "id": 17736,
- "width": 192,
- "height": 156
- },
- {
- "x": 384,
- "y": 156,
- "fileNum": 17001,
- "id": 17737,
- "width": 192,
- "height": 156
- },
- {
- "x": 576,
- "y": 156,
- "fileNum": 17001,
- "id": 17738,
- "width": 192,
- "height": 156
- },
- {
- "y": 312,
- "fileNum": 17001,
- "id": 17739,
- "width": 132,
- "height": 192
- },
- {
- "x": 132,
- "y": 312,
- "fileNum": 17001,
- "id": 17740,
- "width": 132,
- "height": 192
- },
- {
- "x": 264,
- "y": 312,
- "fileNum": 17001,
- "id": 17741,
- "width": 132,
- "height": 192
- },
- {
- "x": 396,
- "y": 312,
- "fileNum": 17001,
- "id": 17742,
- "width": 132,
- "height": 192
- },
- {
- "y": 534,
- "fileNum": 17001,
- "id": 17743,
- "width": 132,
- "height": 162
- },
- {
- "x": 132,
- "y": 534,
- "fileNum": 17001,
- "id": 17744,
- "width": 132,
- "height": 162
- },
- {
- "x": 264,
- "y": 534,
- "fileNum": 17001,
- "id": 17745,
- "width": 132,
- "height": 162
- },
- {
- "x": 396,
- "y": 534,
- "fileNum": 17001,
- "id": 17746,
- "width": 132,
- "height": 162
- },
- {
- "fileNum": 17004,
- "id": 17751,
- "width": 192,
- "height": 148
- },
- {
- "x": 192,
- "fileNum": 17004,
- "id": 17752,
- "width": 192,
- "height": 148
- },
- {
- "x": 384,
- "fileNum": 17004,
- "id": 17753,
- "width": 192,
- "height": 148
- },
- {
- "x": 576,
- "fileNum": 17004,
- "id": 17754,
- "width": 192,
- "height": 148
- },
- {
- "y": 148,
- "fileNum": 17004,
- "id": 17755,
- "width": 192,
- "height": 148
- },
- {
- "x": 192,
- "y": 148,
- "fileNum": 17004,
- "id": 17756,
- "width": 192,
- "height": 148
- },
- {
- "x": 384,
- "y": 148,
- "fileNum": 17004,
- "id": 17757,
- "width": 192,
- "height": 148
- },
- {
- "x": 576,
- "y": 148,
- "fileNum": 17004,
- "id": 17758,
- "width": 192,
- "height": 148
- },
- {
- "y": 290,
- "fileNum": 17004,
- "id": 17759,
- "width": 132,
- "height": 214
- },
- {
- "x": 132,
- "y": 290,
- "fileNum": 17004,
- "id": 17760,
- "width": 132,
- "height": 214
- },
- {
- "x": 264,
- "y": 290,
- "fileNum": 17004,
- "id": 17761,
- "width": 132,
- "height": 214
- },
- {
- "x": 396,
- "y": 290,
- "fileNum": 17004,
- "id": 17762,
- "width": 132,
- "height": 214
- },
- {
- "y": 506,
- "fileNum": 17004,
- "id": 17763,
- "width": 132,
- "height": 214
- },
- {
- "x": 132,
- "y": 506,
- "fileNum": 17004,
- "id": 17764,
- "width": 132,
- "height": 214
- },
- {
- "x": 264,
- "y": 506,
- "fileNum": 17004,
- "id": 17765,
- "width": 132,
- "height": 214
- },
- {
- "x": 396,
- "y": 506,
- "fileNum": 17004,
- "id": 17766,
- "width": 132,
- "height": 214
- },
- {
- "fileNum": 17005,
- "id": 17771,
- "width": 192,
- "height": 148
- },
- {
- "x": 192,
- "fileNum": 17005,
- "id": 17772,
- "width": 192,
- "height": 148
- },
- {
- "x": 384,
- "fileNum": 17005,
- "id": 17773,
- "width": 192,
- "height": 148
- },
- {
- "x": 576,
- "fileNum": 17005,
- "id": 17774,
- "width": 192,
- "height": 148
- },
- {
- "y": 148,
- "fileNum": 17005,
- "id": 17775,
- "width": 192,
- "height": 148
- },
- {
- "x": 192,
- "y": 148,
- "fileNum": 17005,
- "id": 17776,
- "width": 192,
- "height": 148
- },
- {
- "x": 384,
- "y": 148,
- "fileNum": 17005,
- "id": 17777,
- "width": 192,
- "height": 148
- },
- {
- "x": 576,
- "y": 148,
- "fileNum": 17005,
- "id": 17778,
- "width": 192,
- "height": 148
- },
- {
- "y": 290,
- "fileNum": 17005,
- "id": 17779,
- "width": 132,
- "height": 214
- },
- {
- "x": 132,
- "y": 290,
- "fileNum": 17005,
- "id": 17780,
- "width": 132,
- "height": 214
- },
- {
- "x": 264,
- "y": 290,
- "fileNum": 17005,
- "id": 17781,
- "width": 132,
- "height": 214
- },
- {
- "x": 396,
- "y": 290,
- "fileNum": 17005,
- "id": 17782,
- "width": 132,
- "height": 214
- },
- {
- "y": 506,
- "fileNum": 17005,
- "id": 17783,
- "width": 132,
- "height": 214
- },
- {
- "x": 132,
- "y": 506,
- "fileNum": 17005,
- "id": 17784,
- "width": 132,
- "height": 214
- },
- {
- "x": 264,
- "y": 506,
- "fileNum": 17005,
- "id": 17785,
- "width": 132,
- "height": 214
- },
- {
- "x": 396,
- "y": 506,
- "fileNum": 17005,
- "id": 17786,
- "width": 132,
- "height": 214
- },
- {
- "fileNum": 17002,
- "id": 17791,
- "width": 192,
- "height": 158
- },
- {
- "x": 192,
- "fileNum": 17002,
- "id": 17792,
- "width": 192,
- "height": 158
- },
- {
- "x": 384,
- "fileNum": 17002,
- "id": 17793,
- "width": 192,
- "height": 158
- },
- {
- "x": 576,
- "fileNum": 17002,
- "id": 17794,
- "width": 192,
- "height": 158
- },
- {
- "y": 158,
- "fileNum": 17002,
- "id": 17795,
- "width": 192,
- "height": 158
- },
- {
- "x": 192,
- "y": 158,
- "fileNum": 17002,
- "id": 17796,
- "width": 192,
- "height": 158
- },
- {
- "x": 384,
- "y": 158,
- "fileNum": 17002,
- "id": 17797,
- "width": 192,
- "height": 158
- },
- {
- "x": 576,
- "y": 158,
- "fileNum": 17002,
- "id": 17798,
- "width": 192,
- "height": 158
- },
- {
- "y": 316,
- "fileNum": 17002,
- "id": 17799,
- "width": 132,
- "height": 196
- },
- {
- "x": 132,
- "y": 316,
- "fileNum": 17002,
- "id": 17800,
- "width": 132,
- "height": 196
- },
- {
- "x": 264,
- "y": 316,
- "fileNum": 17002,
- "id": 17801,
- "width": 132,
- "height": 196
- },
- {
- "x": 396,
- "y": 316,
- "fileNum": 17002,
- "id": 17802,
- "width": 132,
- "height": 196
- },
- {
- "y": 510,
- "fileNum": 17002,
- "id": 17803,
- "width": 132,
- "height": 196
- },
- {
- "x": 132,
- "y": 510,
- "fileNum": 17002,
- "id": 17804,
- "width": 132,
- "height": 196
- },
- {
- "x": 264,
- "y": 510,
- "fileNum": 17002,
- "id": 17805,
- "width": 132,
- "height": 196
- },
- {
- "x": 396,
- "y": 510,
- "fileNum": 17002,
- "id": 17806,
- "width": 132,
- "height": 196
- },
- {
- "fileNum": 17003,
- "id": 17811,
- "width": 192,
- "height": 158
- },
- {
- "x": 192,
- "fileNum": 17003,
- "id": 17812,
- "width": 192,
- "height": 158
- },
- {
- "x": 384,
- "fileNum": 17003,
- "id": 17813,
- "width": 192,
- "height": 158
- },
- {
- "x": 576,
- "fileNum": 17003,
- "id": 17814,
- "width": 192,
- "height": 158
- },
- {
- "y": 158,
- "fileNum": 17003,
- "id": 17815,
- "width": 192,
- "height": 158
- },
- {
- "x": 192,
- "y": 158,
- "fileNum": 17003,
- "id": 17816,
- "width": 192,
- "height": 158
- },
- {
- "x": 384,
- "y": 158,
- "fileNum": 17003,
- "id": 17817,
- "width": 192,
- "height": 158
- },
- {
- "x": 576,
- "y": 158,
- "fileNum": 17003,
- "id": 17818,
- "width": 192,
- "height": 158
- },
- {
- "y": 316,
- "fileNum": 17003,
- "id": 17819,
- "width": 132,
- "height": 196
- },
- {
- "x": 132,
- "y": 316,
- "fileNum": 17003,
- "id": 17820,
- "width": 132,
- "height": 196
- },
- {
- "x": 264,
- "y": 316,
- "fileNum": 17003,
- "id": 17821,
- "width": 132,
- "height": 196
- },
- {
- "x": 396,
- "y": 316,
- "fileNum": 17003,
- "id": 17822,
- "width": 132,
- "height": 196
- },
- {
- "y": 510,
- "fileNum": 17003,
- "id": 17823,
- "width": 132,
- "height": 196
- },
- {
- "x": 132,
- "y": 510,
- "fileNum": 17003,
- "id": 17824,
- "width": 132,
- "height": 196
- },
- {
- "x": 264,
- "y": 510,
- "fileNum": 17003,
- "id": 17825,
- "width": 132,
- "height": 196
- },
- {
- "x": 396,
- "y": 510,
- "fileNum": 17003,
- "id": 17826,
- "width": 132,
- "height": 196
- },
- {
- "fileNum": 2203,
- "id": 17831,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2203,
- "id": 17832,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2203,
- "id": 17833,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2203,
- "id": 17834,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2204,
- "id": 17835,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2204,
- "id": 17836,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2204,
- "id": 17837,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2204,
- "id": 17838,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2205,
- "id": 17839,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2205,
- "id": 17840,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2205,
- "id": 17841,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2205,
- "id": 17842,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2206,
- "id": 17843,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2206,
- "id": 17844,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2206,
- "id": 17845,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2206,
- "id": 17846,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2207,
- "id": 17847,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2207,
- "id": 17848,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2207,
- "id": 17849,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2207,
- "id": 17850,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2208,
- "id": 17851,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2208,
- "id": 17852,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2208,
- "id": 17853,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2208,
- "id": 17854,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2209,
- "id": 17855,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2209,
- "id": 17856,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2209,
- "id": 17857,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2209,
- "id": 17858,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 16069,
- "id": 17859,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16069,
- "id": 17860,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16069,
- "id": 17861,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16069,
- "id": 17862,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16069,
- "id": 17863,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16069,
- "id": 17864,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16069,
- "id": 17865,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16069,
- "id": 17866,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16069,
- "id": 17867,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16069,
- "id": 17868,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16069,
- "id": 17869,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16069,
- "id": 17870,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16069,
- "id": 17871,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16069,
- "id": 17872,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16069,
- "id": 17873,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16069,
- "id": 17874,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16069,
- "id": 17875,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16069,
- "id": 17876,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16069,
- "id": 17877,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16069,
- "id": 17878,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16069,
- "id": 17879,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16069,
- "id": 17880,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16070,
- "id": 17885,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16070,
- "id": 17886,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16070,
- "id": 17887,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16070,
- "id": 17888,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16070,
- "id": 17889,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16070,
- "id": 17890,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16070,
- "id": 17891,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16070,
- "id": 17892,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16070,
- "id": 17893,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16070,
- "id": 17894,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16070,
- "id": 17895,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16070,
- "id": 17896,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16070,
- "id": 17897,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16070,
- "id": 17898,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16070,
- "id": 17899,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16070,
- "id": 17900,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16070,
- "id": 17901,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16070,
- "id": 17902,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16070,
- "id": 17903,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16070,
- "id": 17904,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16070,
- "id": 17905,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16070,
- "id": 17906,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2210,
- "id": 17911,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2210,
- "id": 17912,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2210,
- "id": 17913,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2210,
- "id": 17914,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2211,
- "id": 17915,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2211,
- "id": 17916,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2211,
- "id": 17917,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2211,
- "id": 17918,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 8105,
- "id": 17921,
- "width": 250,
- "height": 280
- },
- {
- "fileNum": 8099,
- "id": 17922,
- "width": 140,
- "height": 240
- },
- {
- "fileNum": 8100,
- "id": 17923,
- "width": 34,
- "height": 210
- },
- {
- "x": 34,
- "fileNum": 8100,
- "id": 17924,
- "width": 32,
- "height": 210
- },
- {
- "fileNum": 8101,
- "id": 17925,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8102,
- "id": 17926,
- "width": 64,
- "height": 128
- },
- {
- "fileNum": 8103,
- "id": 17927,
- "width": 64,
- "height": 128
- },
- {
- "fileNum": 8104,
- "id": 17928,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8093,
- "id": 17929,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8094,
- "id": 17930,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8095,
- "id": 17931,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8096,
- "id": 17932,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8097,
- "id": 17933,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8098,
- "id": 17934,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8087,
- "id": 17935,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8088,
- "id": 17936,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8089,
- "id": 17937,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8090,
- "id": 17938,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8091,
- "id": 17939,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8092,
- "id": 17940,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8086,
- "id": 17941,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8083,
- "id": 17942,
- "width": 72,
- "height": 68
- },
- {
- "fileNum": 8081,
- "id": 17943,
- "width": 48,
- "height": 112
- },
- {
- "fileNum": 8082,
- "id": 17944,
- "width": 98,
- "height": 98
- },
- {
- "fileNum": 8084,
- "id": 17945,
- "width": 216,
- "height": 122
- },
- {
- "fileNum": 8085,
- "id": 17946,
- "width": 156,
- "height": 102
- },
- {
- "fileNum": 9003,
- "id": 17947,
- "width": 380,
- "height": 584
- },
- {
- "fileNum": 9004,
- "id": 17948,
- "width": 380,
- "height": 584
- },
- {
- "fileNum": 9001,
- "id": 17949,
- "width": 380,
- "height": 584
- },
- {
- "fileNum": 9002,
- "id": 17950,
- "width": 380,
- "height": 584
- },
- {
- "fileNum": 8077,
- "id": 17951,
- "width": 442,
- "height": 178
- },
- {
- "fileNum": 8078,
- "id": 17952,
- "width": 468,
- "height": 528
- },
- {
- "fileNum": 8079,
- "id": 17953,
- "width": 500,
- "height": 508
- },
- {
- "fileNum": 8080,
- "id": 17954,
- "width": 512,
- "height": 512
- },
- {
- "fileNum": 8076,
- "id": 17955,
- "width": 244,
- "height": 370
- },
- {
- "fileNum": 8075,
- "id": 17956,
- "width": 128,
- "height": 256
- },
- {
- "fileNum": 8074,
- "id": 17957,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8073,
- "id": 17958,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8072,
- "id": 17959,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8071,
- "id": 17960,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8070,
- "id": 17961,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8069,
- "id": 17962,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8068,
- "id": 17963,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8067,
- "id": 17964,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8066,
- "id": 17965,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8065,
- "id": 17966,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8064,
- "id": 17967,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8063,
- "id": 17968,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8062,
- "id": 17969,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8061,
- "id": 17970,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8059,
- "id": 17971,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8057,
- "id": 17972,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8055,
- "id": 17973,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8053,
- "id": 17974,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8054,
- "id": 17975,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 8056,
- "id": 17976,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 8058,
- "id": 17977,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 8060,
- "id": 17978,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 8037,
- "id": 17979,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8037,
- "id": 17980,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8037,
- "id": 17981,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8037,
- "id": 17982,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8038,
- "id": 17983,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8038,
- "id": 17984,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8038,
- "id": 17985,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8038,
- "id": 17986,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8039,
- "id": 17987,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8039,
- "id": 17988,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8039,
- "id": 17989,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8039,
- "id": 17990,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8040,
- "id": 17991,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8040,
- "id": 17992,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8040,
- "id": 17993,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8040,
- "id": 17994,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8041,
- "id": 17995,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8041,
- "id": 17996,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8041,
- "id": 17997,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8041,
- "id": 17998,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8042,
- "id": 17999,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8042,
- "id": 18000,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8042,
- "id": 18001,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8042,
- "id": 18002,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8043,
- "id": 18003,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8043,
- "id": 18004,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8043,
- "id": 18005,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8043,
- "id": 18006,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8044,
- "id": 18007,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8044,
- "id": 18008,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8044,
- "id": 18009,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8044,
- "id": 18010,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8045,
- "id": 18011,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8045,
- "id": 18012,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8045,
- "id": 18013,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8045,
- "id": 18014,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8046,
- "id": 18015,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8046,
- "id": 18016,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8046,
- "id": 18017,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8046,
- "id": 18018,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8047,
- "id": 18019,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8047,
- "id": 18020,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8047,
- "id": 18021,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8047,
- "id": 18022,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8048,
- "id": 18023,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8048,
- "id": 18024,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8048,
- "id": 18025,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8048,
- "id": 18026,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8049,
- "id": 18027,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8049,
- "id": 18028,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8049,
- "id": 18029,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8049,
- "id": 18030,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8050,
- "id": 18031,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8050,
- "id": 18032,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8050,
- "id": 18033,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8050,
- "id": 18034,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8051,
- "id": 18035,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8051,
- "id": 18036,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8051,
- "id": 18037,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8051,
- "id": 18038,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8052,
- "id": 18039,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8052,
- "id": 18040,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8052,
- "id": 18041,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8052,
- "id": 18042,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8106,
- "id": 18043,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8107,
- "id": 18044,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8108,
- "id": 18045,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 8109,
- "id": 18046,
- "width": 176,
- "height": 200
- },
- {
- "fileNum": 8110,
- "id": 18047,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 12021,
- "id": 18048,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12021,
- "id": 18049,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12021,
- "id": 18050,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12021,
- "id": 18051,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12021,
- "id": 18052,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12021,
- "id": 18053,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12021,
- "id": 18054,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12021,
- "id": 18055,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12021,
- "id": 18056,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12021,
- "id": 18057,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12021,
- "id": 18058,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12021,
- "id": 18059,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12021,
- "id": 18060,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12021,
- "id": 18061,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12021,
- "id": 18062,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12021,
- "id": 18063,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12022,
- "id": 18064,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12022,
- "id": 18065,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12022,
- "id": 18066,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12022,
- "id": 18067,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12022,
- "id": 18068,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12022,
- "id": 18069,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12022,
- "id": 18070,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12022,
- "id": 18071,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12022,
- "id": 18072,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12022,
- "id": 18073,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12022,
- "id": 18074,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12022,
- "id": 18075,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12022,
- "id": 18076,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12022,
- "id": 18077,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12022,
- "id": 18078,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12022,
- "id": 18079,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12023,
- "id": 18080,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12023,
- "id": 18081,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12023,
- "id": 18082,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12023,
- "id": 18083,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12023,
- "id": 18084,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12023,
- "id": 18085,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12023,
- "id": 18086,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12023,
- "id": 18087,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12023,
- "id": 18088,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12023,
- "id": 18089,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12023,
- "id": 18090,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12023,
- "id": 18091,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12023,
- "id": 18092,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12023,
- "id": 18093,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12023,
- "id": 18094,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12023,
- "id": 18095,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12024,
- "id": 18096,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12024,
- "id": 18097,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12024,
- "id": 18098,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12024,
- "id": 18099,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12024,
- "id": 18100,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12024,
- "id": 18101,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12024,
- "id": 18102,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12024,
- "id": 18103,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12024,
- "id": 18104,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12024,
- "id": 18105,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12024,
- "id": 18106,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12024,
- "id": 18107,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12024,
- "id": 18108,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12024,
- "id": 18109,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12024,
- "id": 18110,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12024,
- "id": 18111,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12025,
- "id": 18112,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12025,
- "id": 18113,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12025,
- "id": 18114,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12025,
- "id": 18115,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12025,
- "id": 18116,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12025,
- "id": 18117,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12025,
- "id": 18118,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12025,
- "id": 18119,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12025,
- "id": 18120,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12025,
- "id": 18121,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12025,
- "id": 18122,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12025,
- "id": 18123,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12025,
- "id": 18124,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12025,
- "id": 18125,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12025,
- "id": 18126,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12025,
- "id": 18127,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12026,
- "id": 18128,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 12026,
- "id": 18129,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 12026,
- "id": 18130,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12026,
- "id": 18131,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 12027,
- "id": 18132,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 12027,
- "id": 18133,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 12027,
- "id": 18134,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12027,
- "id": 18135,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 12028,
- "id": 18136,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12028,
- "id": 18137,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12028,
- "id": 18138,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12028,
- "id": 18139,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12028,
- "id": 18140,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12028,
- "id": 18141,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12028,
- "id": 18142,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12028,
- "id": 18143,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12028,
- "id": 18144,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12028,
- "id": 18145,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12028,
- "id": 18146,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12028,
- "id": 18147,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12028,
- "id": 18148,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12028,
- "id": 18149,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12028,
- "id": 18150,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12028,
- "id": 18151,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12029,
- "id": 18152,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 12029,
- "id": 18153,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 12029,
- "id": 18154,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12029,
- "id": 18155,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 12030,
- "id": 18156,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 12030,
- "id": 18157,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 12030,
- "id": 18158,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12030,
- "id": 18159,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 4003,
- "id": 18160,
- "width": 114,
- "height": 198
- },
- {
- "x": 114,
- "fileNum": 4003,
- "id": 18161,
- "width": 114,
- "height": 198
- },
- {
- "x": 228,
- "fileNum": 4003,
- "id": 18162,
- "width": 114,
- "height": 198
- },
- {
- "x": 342,
- "fileNum": 4003,
- "id": 18163,
- "width": 114,
- "height": 198
- },
- {
- "x": 456,
- "fileNum": 4003,
- "id": 18164,
- "width": 114,
- "height": 198
- },
- {
- "x": 570,
- "fileNum": 4003,
- "id": 18165,
- "width": 114,
- "height": 198
- },
- {
- "y": 198,
- "fileNum": 4003,
- "id": 18166,
- "width": 114,
- "height": 198
- },
- {
- "x": 114,
- "y": 198,
- "fileNum": 4003,
- "id": 18167,
- "width": 114,
- "height": 198
- },
- {
- "x": 228,
- "y": 198,
- "fileNum": 4003,
- "id": 18168,
- "width": 114,
- "height": 198
- },
- {
- "x": 342,
- "y": 198,
- "fileNum": 4003,
- "id": 18169,
- "width": 114,
- "height": 198
- },
- {
- "x": 456,
- "y": 198,
- "fileNum": 4003,
- "id": 18170,
- "width": 114,
- "height": 198
- },
- {
- "x": 570,
- "y": 198,
- "fileNum": 4003,
- "id": 18171,
- "width": 114,
- "height": 198
- },
- {
- "y": 396,
- "fileNum": 4003,
- "id": 18172,
- "width": 114,
- "height": 198
- },
- {
- "x": 114,
- "y": 396,
- "fileNum": 4003,
- "id": 18173,
- "width": 114,
- "height": 198
- },
- {
- "x": 228,
- "y": 396,
- "fileNum": 4003,
- "id": 18174,
- "width": 114,
- "height": 198
- },
- {
- "x": 342,
- "y": 396,
- "fileNum": 4003,
- "id": 18175,
- "width": 114,
- "height": 198
- },
- {
- "x": 456,
- "y": 396,
- "fileNum": 4003,
- "id": 18176,
- "width": 114,
- "height": 198
- },
- {
- "y": 594,
- "fileNum": 4003,
- "id": 18177,
- "width": 114,
- "height": 198
- },
- {
- "x": 114,
- "y": 594,
- "fileNum": 4003,
- "id": 18178,
- "width": 114,
- "height": 198
- },
- {
- "x": 228,
- "y": 594,
- "fileNum": 4003,
- "id": 18179,
- "width": 114,
- "height": 198
- },
- {
- "x": 342,
- "y": 594,
- "fileNum": 4003,
- "id": 18180,
- "width": 114,
- "height": 198
- },
- {
- "x": 456,
- "y": 594,
- "fileNum": 4003,
- "id": 18181,
- "width": 114,
- "height": 198
- },
- {
- "fileNum": 3065,
- "id": 18186,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 3065,
- "id": 18187,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 3065,
- "id": 18188,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "fileNum": 3065,
- "id": 18189,
- "width": 128,
- "height": 128
- },
- {
- "x": 512,
- "fileNum": 3065,
- "id": 18190,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 4004,
- "id": 18192,
- "width": 260,
- "height": 332
- },
- {
- "x": 260,
- "fileNum": 4004,
- "id": 18193,
- "width": 260,
- "height": 332
- },
- {
- "x": 520,
- "fileNum": 4004,
- "id": 18194,
- "width": 260,
- "height": 332
- },
- {
- "x": 780,
- "fileNum": 4004,
- "id": 18195,
- "width": 260,
- "height": 332
- },
- {
- "y": 332,
- "fileNum": 4004,
- "id": 18196,
- "width": 260,
- "height": 332
- },
- {
- "x": 260,
- "y": 332,
- "fileNum": 4004,
- "id": 18197,
- "width": 260,
- "height": 332
- },
- {
- "x": 520,
- "y": 332,
- "fileNum": 4004,
- "id": 18198,
- "width": 260,
- "height": 332
- },
- {
- "x": 780,
- "y": 332,
- "fileNum": 4004,
- "id": 18199,
- "width": 260,
- "height": 332
- },
- {
- "y": 664,
- "fileNum": 4004,
- "id": 18200,
- "width": 260,
- "height": 332
- },
- {
- "x": 260,
- "y": 664,
- "fileNum": 4004,
- "id": 18201,
- "width": 260,
- "height": 332
- },
- {
- "x": 520,
- "y": 664,
- "fileNum": 4004,
- "id": 18202,
- "width": 260,
- "height": 332
- },
- {
- "x": 780,
- "y": 664,
- "fileNum": 4004,
- "id": 18203,
- "width": 260,
- "height": 332
- },
- {
- "y": 996,
- "fileNum": 4004,
- "id": 18204,
- "width": 260,
- "height": 332
- },
- {
- "x": 260,
- "y": 996,
- "fileNum": 4004,
- "id": 18205,
- "width": 260,
- "height": 332
- },
- {
- "x": 520,
- "y": 996,
- "fileNum": 4004,
- "id": 18206,
- "width": 260,
- "height": 332
- },
- {
- "x": 780,
- "y": 996,
- "fileNum": 4004,
- "id": 18207,
- "width": 260,
- "height": 332
- },
- {
- "fileNum": 4005,
- "id": 18212,
- "width": 106,
- "height": 70
- },
- {
- "x": 106,
- "fileNum": 4005,
- "id": 18213,
- "width": 106,
- "height": 70
- },
- {
- "x": 212,
- "fileNum": 4005,
- "id": 18214,
- "width": 106,
- "height": 70
- },
- {
- "x": 318,
- "fileNum": 4005,
- "id": 18215,
- "width": 106,
- "height": 70
- },
- {
- "y": 70,
- "fileNum": 4005,
- "id": 18216,
- "width": 106,
- "height": 70
- },
- {
- "x": 106,
- "y": 70,
- "fileNum": 4005,
- "id": 18217,
- "width": 106,
- "height": 70
- },
- {
- "x": 212,
- "y": 70,
- "fileNum": 4005,
- "id": 18218,
- "width": 106,
- "height": 70
- },
- {
- "x": 318,
- "y": 70,
- "fileNum": 4005,
- "id": 18219,
- "width": 106,
- "height": 70
- },
- {
- "y": 140,
- "fileNum": 4005,
- "id": 18220,
- "width": 106,
- "height": 70
- },
- {
- "x": 106,
- "y": 140,
- "fileNum": 4005,
- "id": 18221,
- "width": 106,
- "height": 70
- },
- {
- "x": 212,
- "y": 140,
- "fileNum": 4005,
- "id": 18222,
- "width": 106,
- "height": 70
- },
- {
- "x": 318,
- "y": 140,
- "fileNum": 4005,
- "id": 18223,
- "width": 106,
- "height": 70
- },
- {
- "y": 210,
- "fileNum": 4005,
- "id": 18224,
- "width": 106,
- "height": 70
- },
- {
- "x": 106,
- "y": 210,
- "fileNum": 4005,
- "id": 18225,
- "width": 106,
- "height": 70
- },
- {
- "x": 212,
- "y": 210,
- "fileNum": 4005,
- "id": 18226,
- "width": 106,
- "height": 70
- },
- {
- "x": 318,
- "y": 210,
- "fileNum": 4005,
- "id": 18227,
- "width": 106,
- "height": 70
- },
- {
- "fileNum": 4000,
- "id": 18232,
- "width": 300,
- "height": 280
- },
- {
- "x": 300,
- "fileNum": 4000,
- "id": 18233,
- "width": 300,
- "height": 280
- },
- {
- "x": 600,
- "fileNum": 4000,
- "id": 18234,
- "width": 300,
- "height": 280
- },
- {
- "x": 900,
- "fileNum": 4000,
- "id": 18235,
- "width": 300,
- "height": 280
- },
- {
- "x": 1200,
- "fileNum": 4000,
- "id": 18236,
- "width": 300,
- "height": 280
- },
- {
- "x": 1500,
- "fileNum": 4000,
- "id": 18237,
- "width": 300,
- "height": 280
- },
- {
- "y": 280,
- "fileNum": 4000,
- "id": 18238,
- "width": 300,
- "height": 280
- },
- {
- "x": 300,
- "y": 280,
- "fileNum": 4000,
- "id": 18239,
- "width": 300,
- "height": 280
- },
- {
- "x": 600,
- "y": 280,
- "fileNum": 4000,
- "id": 18240,
- "width": 300,
- "height": 280
- },
- {
- "x": 900,
- "y": 280,
- "fileNum": 4000,
- "id": 18241,
- "width": 300,
- "height": 280
- },
- {
- "x": 1200,
- "y": 280,
- "fileNum": 4000,
- "id": 18242,
- "width": 300,
- "height": 280
- },
- {
- "x": 1500,
- "y": 280,
- "fileNum": 4000,
- "id": 18243,
- "width": 300,
- "height": 280
- },
- {
- "y": 560,
- "fileNum": 4000,
- "id": 18244,
- "width": 300,
- "height": 280
- },
- {
- "x": 300,
- "y": 560,
- "fileNum": 4000,
- "id": 18245,
- "width": 300,
- "height": 280
- },
- {
- "x": 600,
- "y": 560,
- "fileNum": 4000,
- "id": 18246,
- "width": 300,
- "height": 280
- },
- {
- "x": 900,
- "y": 560,
- "fileNum": 4000,
- "id": 18247,
- "width": 300,
- "height": 280
- },
- {
- "x": 1200,
- "y": 560,
- "fileNum": 4000,
- "id": 18248,
- "width": 300,
- "height": 280
- },
- {
- "x": 1500,
- "y": 560,
- "fileNum": 4000,
- "id": 18249,
- "width": 300,
- "height": 280
- },
- {
- "y": 840,
- "fileNum": 4000,
- "id": 18250,
- "width": 300,
- "height": 280
- },
- {
- "x": 300,
- "y": 840,
- "fileNum": 4000,
- "id": 18251,
- "width": 300,
- "height": 280
- },
- {
- "x": 600,
- "y": 840,
- "fileNum": 4000,
- "id": 18252,
- "width": 300,
- "height": 280
- },
- {
- "x": 900,
- "y": 840,
- "fileNum": 4000,
- "id": 18253,
- "width": 300,
- "height": 280
- },
- {
- "x": 1200,
- "y": 840,
- "fileNum": 4000,
- "id": 18254,
- "width": 300,
- "height": 280
- },
- {
- "x": 1500,
- "y": 840,
- "fileNum": 4000,
- "id": 18255,
- "width": 300,
- "height": 280
- },
- {
- "fileNum": 8014,
- "id": 18260,
- "width": 256,
- "height": 256
- },
- {
- "x": 256,
- "fileNum": 8014,
- "id": 18261,
- "width": 256,
- "height": 256
- },
- {
- "y": 256,
- "fileNum": 8014,
- "id": 18262,
- "width": 256,
- "height": 256
- },
- {
- "x": 256,
- "y": 256,
- "fileNum": 8014,
- "id": 18263,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8015,
- "id": 18264,
- "width": 256,
- "height": 256
- },
- {
- "x": 256,
- "fileNum": 8015,
- "id": 18265,
- "width": 256,
- "height": 256
- },
- {
- "y": 256,
- "fileNum": 8015,
- "id": 18266,
- "width": 256,
- "height": 256
- },
- {
- "x": 256,
- "y": 256,
- "fileNum": 8015,
- "id": 18267,
- "width": 256,
- "height": 256
- },
- {
- "fileNum": 8016,
- "id": 18268,
- "width": 146,
- "height": 604
- },
- {
- "fileNum": 8017,
- "id": 18269,
- "width": 290,
- "height": 570
- },
- {
- "fileNum": 8018,
- "id": 18270,
- "width": 158,
- "height": 368
- },
- {
- "fileNum": 8019,
- "id": 18271,
- "width": 200,
- "height": 162
- },
- {
- "x": 200,
- "fileNum": 8019,
- "id": 18272,
- "width": 200,
- "height": 162
- },
- {
- "x": 400,
- "fileNum": 8019,
- "id": 18273,
- "width": 200,
- "height": 162
- },
- {
- "fileNum": 8020,
- "id": 18275,
- "width": 280,
- "height": 110
- },
- {
- "fileNum": 8021,
- "id": 18276,
- "width": 200,
- "height": 280
- },
- {
- "fileNum": 4001,
- "id": 18277,
- "width": 368,
- "height": 332
- },
- {
- "x": 368,
- "fileNum": 4001,
- "id": 18278,
- "width": 368,
- "height": 332
- },
- {
- "x": 736,
- "fileNum": 4001,
- "id": 18279,
- "width": 368,
- "height": 332
- },
- {
- "y": 332,
- "fileNum": 4001,
- "id": 18280,
- "width": 368,
- "height": 332
- },
- {
- "x": 368,
- "y": 332,
- "fileNum": 4001,
- "id": 18281,
- "width": 368,
- "height": 332
- },
- {
- "x": 736,
- "y": 332,
- "fileNum": 4001,
- "id": 18282,
- "width": 368,
- "height": 332
- },
- {
- "y": 664,
- "fileNum": 4001,
- "id": 18283,
- "width": 368,
- "height": 332
- },
- {
- "x": 368,
- "y": 664,
- "fileNum": 4001,
- "id": 18284,
- "width": 368,
- "height": 332
- },
- {
- "x": 736,
- "y": 664,
- "fileNum": 4001,
- "id": 18285,
- "width": 368,
- "height": 332
- },
- {
- "y": 996,
- "fileNum": 4001,
- "id": 18286,
- "width": 368,
- "height": 332
- },
- {
- "x": 368,
- "y": 996,
- "fileNum": 4001,
- "id": 18287,
- "width": 368,
- "height": 332
- },
- {
- "x": 736,
- "y": 996,
- "fileNum": 4001,
- "id": 18288,
- "width": 368,
- "height": 332
- },
- {
- "fileNum": 107,
- "id": 18293,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 107,
- "id": 18294,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 107,
- "id": 18295,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 107,
- "id": 18296,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 107,
- "id": 18297,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 107,
- "id": 18298,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 107,
- "id": 18299,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 107,
- "id": 18300,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 107,
- "id": 18301,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 107,
- "id": 18302,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 107,
- "id": 18303,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 107,
- "id": 18304,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 107,
- "id": 18305,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 107,
- "id": 18306,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 107,
- "id": 18307,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 107,
- "id": 18308,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 107,
- "id": 18309,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 107,
- "id": 18310,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 107,
- "id": 18311,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 107,
- "id": 18312,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 107,
- "id": 18313,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 107,
- "id": 18314,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4048,
- "id": 18319,
- "width": 50,
- "height": 116
- },
- {
- "x": 50,
- "fileNum": 4048,
- "id": 18320,
- "width": 50,
- "height": 116
- },
- {
- "x": 100,
- "fileNum": 4048,
- "id": 18321,
- "width": 50,
- "height": 116
- },
- {
- "x": 150,
- "fileNum": 4048,
- "id": 18322,
- "width": 50,
- "height": 116
- },
- {
- "x": 200,
- "fileNum": 4048,
- "id": 18323,
- "width": 50,
- "height": 116
- },
- {
- "x": 250,
- "fileNum": 4048,
- "id": 18324,
- "width": 50,
- "height": 116
- },
- {
- "y": 116,
- "fileNum": 4048,
- "id": 18325,
- "width": 50,
- "height": 116
- },
- {
- "x": 50,
- "y": 116,
- "fileNum": 4048,
- "id": 18326,
- "width": 50,
- "height": 116
- },
- {
- "x": 100,
- "y": 116,
- "fileNum": 4048,
- "id": 18327,
- "width": 50,
- "height": 116
- },
- {
- "x": 150,
- "y": 116,
- "fileNum": 4048,
- "id": 18328,
- "width": 50,
- "height": 116
- },
- {
- "x": 200,
- "y": 116,
- "fileNum": 4048,
- "id": 18329,
- "width": 50,
- "height": 116
- },
- {
- "x": 250,
- "y": 116,
- "fileNum": 4048,
- "id": 18330,
- "width": 50,
- "height": 116
- },
- {
- "y": 232,
- "fileNum": 4048,
- "id": 18331,
- "width": 50,
- "height": 116
- },
- {
- "x": 50,
- "y": 232,
- "fileNum": 4048,
- "id": 18332,
- "width": 50,
- "height": 116
- },
- {
- "x": 100,
- "y": 232,
- "fileNum": 4048,
- "id": 18333,
- "width": 50,
- "height": 116
- },
- {
- "x": 150,
- "y": 232,
- "fileNum": 4048,
- "id": 18334,
- "width": 50,
- "height": 116
- },
- {
- "x": 200,
- "y": 232,
- "fileNum": 4048,
- "id": 18335,
- "width": 50,
- "height": 116
- },
- {
- "y": 348,
- "fileNum": 4048,
- "id": 18336,
- "width": 50,
- "height": 116
- },
- {
- "x": 50,
- "y": 348,
- "fileNum": 4048,
- "id": 18337,
- "width": 50,
- "height": 116
- },
- {
- "x": 100,
- "y": 348,
- "fileNum": 4048,
- "id": 18338,
- "width": 50,
- "height": 116
- },
- {
- "x": 150,
- "y": 348,
- "fileNum": 4048,
- "id": 18339,
- "width": 50,
- "height": 116
- },
- {
- "x": 200,
- "y": 348,
- "fileNum": 4048,
- "id": 18340,
- "width": 50,
- "height": 116
- },
- {
- "fileNum": 4049,
- "id": 18345,
- "width": 50,
- "height": 116
- },
- {
- "x": 50,
- "fileNum": 4049,
- "id": 18346,
- "width": 50,
- "height": 116
- },
- {
- "x": 100,
- "fileNum": 4049,
- "id": 18347,
- "width": 50,
- "height": 116
- },
- {
- "x": 150,
- "fileNum": 4049,
- "id": 18348,
- "width": 50,
- "height": 116
- },
- {
- "x": 200,
- "fileNum": 4049,
- "id": 18349,
- "width": 50,
- "height": 116
- },
- {
- "x": 250,
- "fileNum": 4049,
- "id": 18350,
- "width": 50,
- "height": 116
- },
- {
- "y": 116,
- "fileNum": 4049,
- "id": 18351,
- "width": 50,
- "height": 116
- },
- {
- "x": 50,
- "y": 116,
- "fileNum": 4049,
- "id": 18352,
- "width": 50,
- "height": 116
- },
- {
- "x": 100,
- "y": 116,
- "fileNum": 4049,
- "id": 18353,
- "width": 50,
- "height": 116
- },
- {
- "x": 150,
- "y": 116,
- "fileNum": 4049,
- "id": 18354,
- "width": 50,
- "height": 116
- },
- {
- "x": 200,
- "y": 116,
- "fileNum": 4049,
- "id": 18355,
- "width": 50,
- "height": 116
- },
- {
- "x": 250,
- "y": 116,
- "fileNum": 4049,
- "id": 18356,
- "width": 50,
- "height": 116
- },
- {
- "y": 232,
- "fileNum": 4049,
- "id": 18357,
- "width": 50,
- "height": 116
- },
- {
- "x": 50,
- "y": 232,
- "fileNum": 4049,
- "id": 18358,
- "width": 50,
- "height": 116
- },
- {
- "x": 100,
- "y": 232,
- "fileNum": 4049,
- "id": 18359,
- "width": 50,
- "height": 116
- },
- {
- "x": 150,
- "y": 232,
- "fileNum": 4049,
- "id": 18360,
- "width": 50,
- "height": 116
- },
- {
- "x": 200,
- "y": 232,
- "fileNum": 4049,
- "id": 18361,
- "width": 50,
- "height": 116
- },
- {
- "y": 348,
- "fileNum": 4049,
- "id": 18362,
- "width": 50,
- "height": 116
- },
- {
- "x": 50,
- "y": 348,
- "fileNum": 4049,
- "id": 18363,
- "width": 50,
- "height": 116
- },
- {
- "x": 100,
- "y": 348,
- "fileNum": 4049,
- "id": 18364,
- "width": 50,
- "height": 116
- },
- {
- "x": 150,
- "y": 348,
- "fileNum": 4049,
- "id": 18365,
- "width": 50,
- "height": 116
- },
- {
- "x": 200,
- "y": 348,
- "fileNum": 4049,
- "id": 18366,
- "width": 50,
- "height": 116
- },
- {
- "fileNum": 4041,
- "id": 18371,
- "width": 64,
- "height": 106
- },
- {
- "x": 64,
- "fileNum": 4041,
- "id": 18372,
- "width": 64,
- "height": 106
- },
- {
- "x": 128,
- "fileNum": 4041,
- "id": 18373,
- "width": 64,
- "height": 106
- },
- {
- "fileNum": 4042,
- "id": 18375,
- "width": 64,
- "height": 106
- },
- {
- "x": 64,
- "fileNum": 4042,
- "id": 18376,
- "width": 64,
- "height": 106
- },
- {
- "x": 128,
- "fileNum": 4042,
- "id": 18377,
- "width": 64,
- "height": 106
- },
- {
- "fileNum": 4043,
- "id": 18379,
- "width": 64,
- "height": 106
- },
- {
- "x": 64,
- "fileNum": 4043,
- "id": 18380,
- "width": 64,
- "height": 106
- },
- {
- "x": 128,
- "fileNum": 4043,
- "id": 18381,
- "width": 64,
- "height": 106
- },
- {
- "fileNum": 4044,
- "id": 18383,
- "width": 64,
- "height": 94
- },
- {
- "x": 64,
- "fileNum": 4044,
- "id": 18384,
- "width": 64,
- "height": 94
- },
- {
- "x": 128,
- "fileNum": 4044,
- "id": 18385,
- "width": 64,
- "height": 94
- },
- {
- "fileNum": 4046,
- "id": 18386,
- "width": 64,
- "height": 94
- },
- {
- "x": 64,
- "fileNum": 4046,
- "id": 18387,
- "width": 64,
- "height": 94
- },
- {
- "x": 128,
- "fileNum": 4046,
- "id": 18388,
- "width": 64,
- "height": 94
- },
- {
- "fileNum": 4045,
- "id": 18389,
- "width": 64,
- "height": 94
- },
- {
- "x": 64,
- "fileNum": 4045,
- "id": 18390,
- "width": 64,
- "height": 94
- },
- {
- "x": 128,
- "fileNum": 4045,
- "id": 18391,
- "width": 64,
- "height": 94
- },
- {
- "fileNum": 2127,
- "id": 18392,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2127,
- "id": 18393,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2127,
- "id": 18394,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2127,
- "id": 18395,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 3093,
- "id": 18396,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 3093,
- "id": 18397,
- "width": 128,
- "height": 128
- },
- {
- "x": 256,
- "fileNum": 3093,
- "id": 18398,
- "width": 128,
- "height": 128
- },
- {
- "x": 384,
- "fileNum": 3093,
- "id": 18399,
- "width": 128,
- "height": 128
- },
- {
- "x": 512,
- "fileNum": 3093,
- "id": 18400,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 4047,
- "id": 18402,
- "width": 94,
- "height": 120
- },
- {
- "fileNum": 3099,
- "id": 18403,
- "width": 280,
- "height": 530
- },
- {
- "x": 280,
- "fileNum": 3099,
- "id": 18404,
- "width": 280,
- "height": 530
- },
- {
- "x": 560,
- "fileNum": 3099,
- "id": 18405,
- "width": 280,
- "height": 530
- },
- {
- "x": 840,
- "fileNum": 3099,
- "id": 18406,
- "width": 280,
- "height": 530
- },
- {
- "x": 1120,
- "fileNum": 3099,
- "id": 18407,
- "width": 280,
- "height": 530
- },
- {
- "y": 530,
- "fileNum": 3099,
- "id": 18408,
- "width": 280,
- "height": 530
- },
- {
- "x": 280,
- "y": 530,
- "fileNum": 3099,
- "id": 18409,
- "width": 280,
- "height": 530
- },
- {
- "x": 560,
- "y": 530,
- "fileNum": 3099,
- "id": 18410,
- "width": 280,
- "height": 530
- },
- {
- "x": 840,
- "y": 530,
- "fileNum": 3099,
- "id": 18411,
- "width": 280,
- "height": 530
- },
- {
- "x": 1120,
- "y": 530,
- "fileNum": 3099,
- "id": 18412,
- "width": 280,
- "height": 530
- },
- {
- "fileNum": 12008,
- "id": 18414,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12008,
- "id": 18415,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12008,
- "id": 18416,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12008,
- "id": 18417,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12008,
- "id": 18418,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12008,
- "id": 18419,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12008,
- "id": 18420,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12008,
- "id": 18421,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12008,
- "id": 18422,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12008,
- "id": 18423,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12008,
- "id": 18424,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12008,
- "id": 18425,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12008,
- "id": 18426,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12008,
- "id": 18427,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12008,
- "id": 18428,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12008,
- "id": 18429,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12008,
- "id": 18430,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12008,
- "id": 18431,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12008,
- "id": 18432,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12008,
- "id": 18433,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12008,
- "id": 18434,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12008,
- "id": 18435,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12008,
- "id": 18436,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12008,
- "id": 18437,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12008,
- "id": 18438,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12008,
- "id": 18439,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12008,
- "id": 18440,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12008,
- "id": 18441,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12008,
- "id": 18442,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12008,
- "id": 18443,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12008,
- "id": 18444,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12008,
- "id": 18445,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12008,
- "id": 18446,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12008,
- "id": 18447,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12008,
- "id": 18448,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12008,
- "id": 18449,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12008,
- "id": 18450,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12008,
- "id": 18451,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12008,
- "id": 18452,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12008,
- "id": 18453,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12008,
- "id": 18454,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12008,
- "id": 18455,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12008,
- "id": 18456,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12008,
- "id": 18457,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12008,
- "id": 18458,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12008,
- "id": 18459,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12008,
- "id": 18460,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12008,
- "id": 18461,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "fileNum": 12008,
- "id": 18462,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "fileNum": 12008,
- "id": 18463,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "fileNum": 12008,
- "id": 18464,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "fileNum": 12008,
- "id": 18465,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 64,
- "fileNum": 12008,
- "id": 18466,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 64,
- "fileNum": 12008,
- "id": 18467,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 64,
- "fileNum": 12008,
- "id": 18468,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 64,
- "fileNum": 12008,
- "id": 18469,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 128,
- "fileNum": 12008,
- "id": 18470,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 128,
- "fileNum": 12008,
- "id": 18471,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 128,
- "fileNum": 12008,
- "id": 18472,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 128,
- "fileNum": 12008,
- "id": 18473,
- "width": 64,
- "height": 64
- },
- {
- "x": 768,
- "y": 192,
- "fileNum": 12008,
- "id": 18474,
- "width": 64,
- "height": 64
- },
- {
- "x": 832,
- "y": 192,
- "fileNum": 12008,
- "id": 18475,
- "width": 64,
- "height": 64
- },
- {
- "x": 896,
- "y": 192,
- "fileNum": 12008,
- "id": 18476,
- "width": 64,
- "height": 64
- },
- {
- "x": 960,
- "y": 192,
- "fileNum": 12008,
- "id": 18477,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 6011,
- "id": 18478,
- "width": 714,
- "height": 920
- },
- {
- "fileNum": 6012,
- "id": 18479,
- "width": 586,
- "height": 672
- },
- {
- "fileNum": 6013,
- "id": 18480,
- "width": 624,
- "height": 776
- },
- {
- "fileNum": 6014,
- "id": 18481,
- "width": 586,
- "height": 676
- },
- {
- "fileNum": 8000,
- "id": 18482,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8000,
- "id": 18483,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8000,
- "id": 18484,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8000,
- "id": 18485,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8000,
- "id": 18486,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8000,
- "id": 18487,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8000,
- "id": 18488,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8000,
- "id": 18489,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8000,
- "id": 18490,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8000,
- "id": 18491,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8000,
- "id": 18492,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8000,
- "id": 18493,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8000,
- "id": 18494,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8000,
- "id": 18495,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8000,
- "id": 18496,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8000,
- "id": 18497,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8001,
- "id": 18498,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8001,
- "id": 18499,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8001,
- "id": 18500,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8001,
- "id": 18501,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8001,
- "id": 18502,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8001,
- "id": 18503,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8001,
- "id": 18504,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8001,
- "id": 18505,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8001,
- "id": 18506,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8001,
- "id": 18507,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8001,
- "id": 18508,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8001,
- "id": 18509,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8001,
- "id": 18510,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8001,
- "id": 18511,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8001,
- "id": 18512,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8001,
- "id": 18513,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8002,
- "id": 18514,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8002,
- "id": 18515,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8002,
- "id": 18516,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8002,
- "id": 18517,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8002,
- "id": 18518,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8002,
- "id": 18519,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8002,
- "id": 18520,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8002,
- "id": 18521,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8002,
- "id": 18522,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8002,
- "id": 18523,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8002,
- "id": 18524,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8002,
- "id": 18525,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8002,
- "id": 18526,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8002,
- "id": 18527,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8002,
- "id": 18528,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8002,
- "id": 18529,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8003,
- "id": 18530,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8003,
- "id": 18531,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8003,
- "id": 18532,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8003,
- "id": 18533,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8003,
- "id": 18534,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8003,
- "id": 18535,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8003,
- "id": 18536,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8003,
- "id": 18537,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8003,
- "id": 18538,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8003,
- "id": 18539,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8003,
- "id": 18540,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8003,
- "id": 18541,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8003,
- "id": 18542,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8003,
- "id": 18543,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8003,
- "id": 18544,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8003,
- "id": 18545,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8004,
- "id": 18546,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8004,
- "id": 18547,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8004,
- "id": 18548,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8004,
- "id": 18549,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8004,
- "id": 18550,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8004,
- "id": 18551,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8004,
- "id": 18552,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8004,
- "id": 18553,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8004,
- "id": 18554,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8004,
- "id": 18555,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8004,
- "id": 18556,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8004,
- "id": 18557,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8004,
- "id": 18558,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8004,
- "id": 18559,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8004,
- "id": 18560,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8004,
- "id": 18561,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8005,
- "id": 18562,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8005,
- "id": 18563,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8005,
- "id": 18564,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8005,
- "id": 18565,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8005,
- "id": 18566,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8005,
- "id": 18567,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8005,
- "id": 18568,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8005,
- "id": 18569,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8005,
- "id": 18570,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8005,
- "id": 18571,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8005,
- "id": 18572,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8005,
- "id": 18573,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8005,
- "id": 18574,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8005,
- "id": 18575,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8005,
- "id": 18576,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8005,
- "id": 18577,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8006,
- "id": 18578,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8006,
- "id": 18579,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8006,
- "id": 18580,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8006,
- "id": 18581,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8006,
- "id": 18582,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8006,
- "id": 18583,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8006,
- "id": 18584,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8006,
- "id": 18585,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8006,
- "id": 18586,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8006,
- "id": 18587,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8006,
- "id": 18588,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8006,
- "id": 18589,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8006,
- "id": 18590,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8006,
- "id": 18591,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8006,
- "id": 18592,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8006,
- "id": 18593,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8007,
- "id": 18594,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8007,
- "id": 18595,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8007,
- "id": 18596,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8007,
- "id": 18597,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8007,
- "id": 18598,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8007,
- "id": 18599,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8007,
- "id": 18600,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8007,
- "id": 18601,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8007,
- "id": 18602,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8007,
- "id": 18603,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8007,
- "id": 18604,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8007,
- "id": 18605,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8007,
- "id": 18606,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8007,
- "id": 18607,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8007,
- "id": 18608,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8007,
- "id": 18609,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8008,
- "id": 18610,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8008,
- "id": 18611,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8008,
- "id": 18612,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8008,
- "id": 18613,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8008,
- "id": 18614,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8008,
- "id": 18615,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8008,
- "id": 18616,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8008,
- "id": 18617,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8008,
- "id": 18618,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8008,
- "id": 18619,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8008,
- "id": 18620,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8008,
- "id": 18621,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8008,
- "id": 18622,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8008,
- "id": 18623,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8008,
- "id": 18624,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8008,
- "id": 18625,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8009,
- "id": 18626,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8009,
- "id": 18627,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8009,
- "id": 18628,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8009,
- "id": 18629,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8009,
- "id": 18630,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8009,
- "id": 18631,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8009,
- "id": 18632,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8009,
- "id": 18633,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8009,
- "id": 18634,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8009,
- "id": 18635,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8009,
- "id": 18636,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8009,
- "id": 18637,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8009,
- "id": 18638,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8009,
- "id": 18639,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8009,
- "id": 18640,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8009,
- "id": 18641,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8010,
- "id": 18642,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8010,
- "id": 18643,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8010,
- "id": 18644,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8010,
- "id": 18645,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8010,
- "id": 18646,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8010,
- "id": 18647,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8010,
- "id": 18648,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8010,
- "id": 18649,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8010,
- "id": 18650,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8010,
- "id": 18651,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8010,
- "id": 18652,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8010,
- "id": 18653,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8010,
- "id": 18654,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8010,
- "id": 18655,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8010,
- "id": 18656,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8010,
- "id": 18657,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8011,
- "id": 18658,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8011,
- "id": 18659,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8011,
- "id": 18660,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8011,
- "id": 18661,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8011,
- "id": 18662,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8011,
- "id": 18663,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8011,
- "id": 18664,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8011,
- "id": 18665,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8011,
- "id": 18666,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8011,
- "id": 18667,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8011,
- "id": 18668,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8011,
- "id": 18669,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8011,
- "id": 18670,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8011,
- "id": 18671,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8011,
- "id": 18672,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8011,
- "id": 18673,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8012,
- "id": 18674,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8012,
- "id": 18675,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8012,
- "id": 18676,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8012,
- "id": 18677,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8012,
- "id": 18678,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8012,
- "id": 18679,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8012,
- "id": 18680,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8012,
- "id": 18681,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8012,
- "id": 18682,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8012,
- "id": 18683,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8012,
- "id": 18684,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8012,
- "id": 18685,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8012,
- "id": 18686,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8012,
- "id": 18687,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8012,
- "id": 18688,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8012,
- "id": 18689,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8013,
- "id": 18690,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8013,
- "id": 18691,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8013,
- "id": 18692,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8013,
- "id": 18693,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8013,
- "id": 18694,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8013,
- "id": 18695,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8013,
- "id": 18696,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8013,
- "id": 18697,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8013,
- "id": 18698,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8013,
- "id": 18699,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8013,
- "id": 18700,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8013,
- "id": 18701,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8013,
- "id": 18702,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8013,
- "id": 18703,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8013,
- "id": 18704,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8013,
- "id": 18705,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12003,
- "id": 18706,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12003,
- "id": 18707,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12003,
- "id": 18708,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12003,
- "id": 18709,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12003,
- "id": 18710,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12003,
- "id": 18711,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12003,
- "id": 18712,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12003,
- "id": 18713,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12003,
- "id": 18714,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12003,
- "id": 18715,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12003,
- "id": 18716,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12003,
- "id": 18717,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12003,
- "id": 18718,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12003,
- "id": 18719,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12003,
- "id": 18720,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12003,
- "id": 18721,
- "width": 64,
- "height": 64
- },
- {
- "y": 256,
- "fileNum": 12003,
- "id": 18722,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 256,
- "fileNum": 12003,
- "id": 18723,
- "width": 64,
- "height": 64
- },
- {
- "y": 320,
- "fileNum": 12003,
- "id": 18724,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 320,
- "fileNum": 12003,
- "id": 18725,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 256,
- "fileNum": 12003,
- "id": 18726,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 256,
- "fileNum": 12003,
- "id": 18727,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 320,
- "fileNum": 12003,
- "id": 18728,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 320,
- "fileNum": 12003,
- "id": 18729,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 256,
- "fileNum": 12003,
- "id": 18730,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 256,
- "fileNum": 12003,
- "id": 18731,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 320,
- "fileNum": 12003,
- "id": 18732,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 320,
- "fileNum": 12003,
- "id": 18733,
- "width": 64,
- "height": 64
- },
- {
- "y": 384,
- "fileNum": 12003,
- "id": 18734,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 384,
- "fileNum": 12003,
- "id": 18735,
- "width": 64,
- "height": 64
- },
- {
- "y": 448,
- "fileNum": 12003,
- "id": 18736,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 448,
- "fileNum": 12003,
- "id": 18737,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 384,
- "fileNum": 12003,
- "id": 18738,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 384,
- "fileNum": 12003,
- "id": 18739,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 448,
- "fileNum": 12003,
- "id": 18740,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 448,
- "fileNum": 12003,
- "id": 18741,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 384,
- "fileNum": 12003,
- "id": 18742,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 384,
- "fileNum": 12003,
- "id": 18743,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 448,
- "fileNum": 12003,
- "id": 18744,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 448,
- "fileNum": 12003,
- "id": 18745,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 256,
- "fileNum": 12003,
- "id": 18746,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 256,
- "fileNum": 12003,
- "id": 18747,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 320,
- "fileNum": 12003,
- "id": 18748,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 320,
- "fileNum": 12003,
- "id": 18749,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 384,
- "fileNum": 12003,
- "id": 18750,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 384,
- "fileNum": 12003,
- "id": 18751,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 448,
- "fileNum": 12003,
- "id": 18752,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 448,
- "fileNum": 12003,
- "id": 18753,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12003,
- "id": 18754,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12003,
- "id": 18755,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12003,
- "id": 18756,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12003,
- "id": 18757,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12003,
- "id": 18758,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12003,
- "id": 18759,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12003,
- "id": 18760,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12003,
- "id": 18761,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12003,
- "id": 18762,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12003,
- "id": 18763,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12003,
- "id": 18764,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12003,
- "id": 18765,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12003,
- "id": 18766,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12003,
- "id": 18767,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12003,
- "id": 18768,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12003,
- "id": 18769,
- "width": 64,
- "height": 64
- },
- {
- "y": 512,
- "fileNum": 12003,
- "id": 18770,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 512,
- "fileNum": 12003,
- "id": 18771,
- "width": 64,
- "height": 64
- },
- {
- "y": 576,
- "fileNum": 12003,
- "id": 18772,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 576,
- "fileNum": 12003,
- "id": 18773,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 512,
- "fileNum": 12003,
- "id": 18774,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 512,
- "fileNum": 12003,
- "id": 18775,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 576,
- "fileNum": 12003,
- "id": 18776,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 576,
- "fileNum": 12003,
- "id": 18777,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 512,
- "fileNum": 12003,
- "id": 18778,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 512,
- "fileNum": 12003,
- "id": 18779,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 576,
- "fileNum": 12003,
- "id": 18780,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 576,
- "fileNum": 12003,
- "id": 18781,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 512,
- "fileNum": 12003,
- "id": 18782,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 512,
- "fileNum": 12003,
- "id": 18783,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 576,
- "fileNum": 12003,
- "id": 18784,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 576,
- "fileNum": 12003,
- "id": 18785,
- "width": 64,
- "height": 64
- },
- {
- "y": 640,
- "fileNum": 12003,
- "id": 18786,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 640,
- "fileNum": 12003,
- "id": 18787,
- "width": 64,
- "height": 64
- },
- {
- "y": 704,
- "fileNum": 12003,
- "id": 18788,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 704,
- "fileNum": 12003,
- "id": 18789,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 640,
- "fileNum": 12003,
- "id": 18790,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 640,
- "fileNum": 12003,
- "id": 18791,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 704,
- "fileNum": 12003,
- "id": 18792,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 704,
- "fileNum": 12003,
- "id": 18793,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 640,
- "fileNum": 12003,
- "id": 18794,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 640,
- "fileNum": 12003,
- "id": 18795,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 704,
- "fileNum": 12003,
- "id": 18796,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 704,
- "fileNum": 12003,
- "id": 18797,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 640,
- "fileNum": 12003,
- "id": 18798,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 640,
- "fileNum": 12003,
- "id": 18799,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 704,
- "fileNum": 12003,
- "id": 18800,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 704,
- "fileNum": 12003,
- "id": 18801,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 6000,
- "id": 18802,
- "width": 512,
- "height": 590
- },
- {
- "fileNum": 6001,
- "id": 18803,
- "width": 512,
- "height": 590
- },
- {
- "fileNum": 6003,
- "id": 18804,
- "width": 714,
- "height": 920
- },
- {
- "fileNum": 4029,
- "id": 18805,
- "width": 158,
- "height": 120
- },
- {
- "x": 158,
- "fileNum": 4029,
- "id": 18806,
- "width": 158,
- "height": 120
- },
- {
- "x": 316,
- "fileNum": 4029,
- "id": 18807,
- "width": 158,
- "height": 120
- },
- {
- "x": 474,
- "fileNum": 4029,
- "id": 18808,
- "width": 158,
- "height": 120
- },
- {
- "y": 120,
- "fileNum": 4029,
- "id": 18809,
- "width": 158,
- "height": 120
- },
- {
- "x": 158,
- "y": 120,
- "fileNum": 4029,
- "id": 18810,
- "width": 158,
- "height": 120
- },
- {
- "x": 316,
- "y": 120,
- "fileNum": 4029,
- "id": 18811,
- "width": 158,
- "height": 120
- },
- {
- "x": 474,
- "y": 120,
- "fileNum": 4029,
- "id": 18812,
- "width": 158,
- "height": 120
- },
- {
- "y": 240,
- "fileNum": 4029,
- "id": 18813,
- "width": 158,
- "height": 120
- },
- {
- "x": 158,
- "y": 240,
- "fileNum": 4029,
- "id": 18814,
- "width": 158,
- "height": 120
- },
- {
- "x": 316,
- "y": 240,
- "fileNum": 4029,
- "id": 18815,
- "width": 158,
- "height": 120
- },
- {
- "x": 474,
- "y": 240,
- "fileNum": 4029,
- "id": 18816,
- "width": 158,
- "height": 120
- },
- {
- "y": 360,
- "fileNum": 4029,
- "id": 18817,
- "width": 158,
- "height": 120
- },
- {
- "x": 158,
- "y": 360,
- "fileNum": 4029,
- "id": 18818,
- "width": 158,
- "height": 120
- },
- {
- "x": 316,
- "y": 360,
- "fileNum": 4029,
- "id": 18819,
- "width": 158,
- "height": 120
- },
- {
- "x": 474,
- "y": 360,
- "fileNum": 4029,
- "id": 18820,
- "width": 158,
- "height": 120
- },
- {
- "fileNum": 4031,
- "id": 18825,
- "width": 100,
- "height": 92
- },
- {
- "x": 100,
- "fileNum": 4031,
- "id": 18826,
- "width": 100,
- "height": 92
- },
- {
- "x": 200,
- "fileNum": 4031,
- "id": 18827,
- "width": 100,
- "height": 92
- },
- {
- "x": 300,
- "fileNum": 4031,
- "id": 18828,
- "width": 100,
- "height": 92
- },
- {
- "y": 92,
- "fileNum": 4031,
- "id": 18829,
- "width": 100,
- "height": 92
- },
- {
- "x": 100,
- "y": 92,
- "fileNum": 4031,
- "id": 18830,
- "width": 100,
- "height": 92
- },
- {
- "x": 200,
- "y": 92,
- "fileNum": 4031,
- "id": 18831,
- "width": 100,
- "height": 92
- },
- {
- "x": 300,
- "y": 92,
- "fileNum": 4031,
- "id": 18832,
- "width": 100,
- "height": 92
- },
- {
- "y": 184,
- "fileNum": 4031,
- "id": 18833,
- "width": 100,
- "height": 92
- },
- {
- "x": 100,
- "y": 184,
- "fileNum": 4031,
- "id": 18834,
- "width": 100,
- "height": 92
- },
- {
- "x": 200,
- "y": 184,
- "fileNum": 4031,
- "id": 18835,
- "width": 100,
- "height": 92
- },
- {
- "x": 300,
- "y": 184,
- "fileNum": 4031,
- "id": 18836,
- "width": 100,
- "height": 92
- },
- {
- "y": 276,
- "fileNum": 4031,
- "id": 18837,
- "width": 100,
- "height": 92
- },
- {
- "x": 100,
- "y": 276,
- "fileNum": 4031,
- "id": 18838,
- "width": 100,
- "height": 92
- },
- {
- "x": 200,
- "y": 276,
- "fileNum": 4031,
- "id": 18839,
- "width": 100,
- "height": 92
- },
- {
- "x": 300,
- "y": 276,
- "fileNum": 4031,
- "id": 18840,
- "width": 100,
- "height": 92
- },
- {
- "fileNum": 2040,
- "id": 18845,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2040,
- "id": 18846,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2040,
- "id": 18847,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2040,
- "id": 18848,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 4012,
- "id": 18849,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 4012,
- "id": 18850,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 4012,
- "id": 18851,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 4012,
- "id": 18852,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 4012,
- "id": 18853,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 4012,
- "id": 18854,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 4012,
- "id": 18855,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 4012,
- "id": 18856,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 4012,
- "id": 18857,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 4012,
- "id": 18858,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 4012,
- "id": 18859,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 4012,
- "id": 18860,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 4012,
- "id": 18861,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 4012,
- "id": 18862,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 4012,
- "id": 18863,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 4012,
- "id": 18864,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 4012,
- "id": 18865,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 4012,
- "id": 18866,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 4012,
- "id": 18867,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 4012,
- "id": 18868,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 4012,
- "id": 18869,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 4012,
- "id": 18870,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 8022,
- "id": 18875,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8022,
- "id": 18876,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8022,
- "id": 18877,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8022,
- "id": 18878,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12004,
- "id": 18879,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12004,
- "id": 18880,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12004,
- "id": 18881,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12004,
- "id": 18882,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12004,
- "id": 18883,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12004,
- "id": 18884,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12004,
- "id": 18885,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12004,
- "id": 18886,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12004,
- "id": 18887,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12004,
- "id": 18888,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12004,
- "id": 18889,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12004,
- "id": 18890,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12004,
- "id": 18891,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12004,
- "id": 18892,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12004,
- "id": 18893,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12004,
- "id": 18894,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12005,
- "id": 18895,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12005,
- "id": 18896,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12005,
- "id": 18897,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12005,
- "id": 18898,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12005,
- "id": 18899,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12005,
- "id": 18900,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12005,
- "id": 18901,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12005,
- "id": 18902,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12005,
- "id": 18903,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12005,
- "id": 18904,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12005,
- "id": 18905,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12005,
- "id": 18906,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12005,
- "id": 18907,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12005,
- "id": 18908,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12005,
- "id": 18909,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12005,
- "id": 18910,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12007,
- "id": 18911,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12007,
- "id": 18912,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12007,
- "id": 18913,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12007,
- "id": 18914,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12007,
- "id": 18915,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12007,
- "id": 18916,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12007,
- "id": 18917,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12007,
- "id": 18918,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12007,
- "id": 18919,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12007,
- "id": 18920,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12007,
- "id": 18921,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12007,
- "id": 18922,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12007,
- "id": 18923,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12007,
- "id": 18924,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12007,
- "id": 18925,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12007,
- "id": 18926,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12007,
- "id": 18927,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12007,
- "id": 18928,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12007,
- "id": 18929,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12007,
- "id": 18930,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12007,
- "id": 18931,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12007,
- "id": 18932,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12007,
- "id": 18933,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12007,
- "id": 18934,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12007,
- "id": 18935,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12007,
- "id": 18936,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12007,
- "id": 18937,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12007,
- "id": 18938,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12007,
- "id": 18939,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12007,
- "id": 18940,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12007,
- "id": 18941,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12007,
- "id": 18942,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12007,
- "id": 18943,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "fileNum": 12007,
- "id": 18944,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "fileNum": 12007,
- "id": 18945,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12007,
- "id": 18946,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12007,
- "id": 18947,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 64,
- "fileNum": 12007,
- "id": 18948,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 64,
- "fileNum": 12007,
- "id": 18949,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12007,
- "id": 18950,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12007,
- "id": 18951,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 128,
- "fileNum": 12007,
- "id": 18952,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 128,
- "fileNum": 12007,
- "id": 18953,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12007,
- "id": 18954,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12007,
- "id": 18955,
- "width": 64,
- "height": 64
- },
- {
- "x": 640,
- "y": 192,
- "fileNum": 12007,
- "id": 18956,
- "width": 64,
- "height": 64
- },
- {
- "x": 704,
- "y": 192,
- "fileNum": 12007,
- "id": 18957,
- "width": 64,
- "height": 64
- },
- {
- "y": 256,
- "fileNum": 12007,
- "id": 18958,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 256,
- "fileNum": 12007,
- "id": 18959,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 256,
- "fileNum": 12007,
- "id": 18960,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 256,
- "fileNum": 12007,
- "id": 18961,
- "width": 64,
- "height": 64
- },
- {
- "y": 320,
- "fileNum": 12007,
- "id": 18962,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 320,
- "fileNum": 12007,
- "id": 18963,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 320,
- "fileNum": 12007,
- "id": 18964,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 320,
- "fileNum": 12007,
- "id": 18965,
- "width": 64,
- "height": 64
- },
- {
- "y": 384,
- "fileNum": 12007,
- "id": 18966,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 384,
- "fileNum": 12007,
- "id": 18967,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 384,
- "fileNum": 12007,
- "id": 18968,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 384,
- "fileNum": 12007,
- "id": 18969,
- "width": 64,
- "height": 64
- },
- {
- "y": 448,
- "fileNum": 12007,
- "id": 18970,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 448,
- "fileNum": 12007,
- "id": 18971,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 448,
- "fileNum": 12007,
- "id": 18972,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 448,
- "fileNum": 12007,
- "id": 18973,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 18004,
- "id": 18990,
- "width": 34,
- "height": 56
- },
- {
- "x": 34,
- "fileNum": 18004,
- "id": 18991,
- "width": 34,
- "height": 56
- },
- {
- "x": 68,
- "fileNum": 18004,
- "id": 18992,
- "width": 34,
- "height": 56
- },
- {
- "x": 102,
- "fileNum": 18004,
- "id": 18993,
- "width": 34,
- "height": 56
- },
- {
- "fileNum": 18005,
- "id": 18994,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 10000,
- "id": 18995,
- "width": 666,
- "height": 752
- },
- {
- "fileNum": 7000,
- "id": 18996,
- "width": 806,
- "height": 418
- },
- {
- "fileNum": 16016,
- "id": 18997,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16011,
- "id": 18998,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 12032,
- "id": 18999,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 12032,
- "id": 19000,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 12032,
- "id": 19001,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12032,
- "id": 19002,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 12033,
- "id": 19003,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 12033,
- "id": 19004,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 12033,
- "id": 19005,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12033,
- "id": 19006,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 12034,
- "id": 19007,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 12034,
- "id": 19008,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 12034,
- "id": 19009,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12034,
- "id": 19010,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 12035,
- "id": 19011,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "fileNum": 12035,
- "id": 19012,
- "width": 128,
- "height": 128
- },
- {
- "y": 128,
- "fileNum": 12035,
- "id": 19013,
- "width": 128,
- "height": 128
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12035,
- "id": 19014,
- "width": 128,
- "height": 128
- },
- {
- "fileNum": 8116,
- "id": 19015,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8116,
- "id": 19016,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8116,
- "id": 19017,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8116,
- "id": 19018,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8116,
- "id": 19019,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8116,
- "id": 19020,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8116,
- "id": 19021,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8116,
- "id": 19022,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8116,
- "id": 19023,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8116,
- "id": 19024,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8116,
- "id": 19025,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8116,
- "id": 19026,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8116,
- "id": 19027,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8116,
- "id": 19028,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8116,
- "id": 19029,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8116,
- "id": 19030,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8117,
- "id": 19031,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8117,
- "id": 19032,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8117,
- "id": 19033,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8117,
- "id": 19034,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8117,
- "id": 19035,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8117,
- "id": 19036,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8117,
- "id": 19037,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8117,
- "id": 19038,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8117,
- "id": 19039,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8117,
- "id": 19040,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8117,
- "id": 19041,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8117,
- "id": 19042,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8117,
- "id": 19043,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8117,
- "id": 19044,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8117,
- "id": 19045,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8117,
- "id": 19046,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8118,
- "id": 19047,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8118,
- "id": 19048,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8118,
- "id": 19049,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8118,
- "id": 19050,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8118,
- "id": 19051,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8118,
- "id": 19052,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8118,
- "id": 19053,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8118,
- "id": 19054,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8118,
- "id": 19055,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8118,
- "id": 19056,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8118,
- "id": 19057,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8118,
- "id": 19058,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8118,
- "id": 19059,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8118,
- "id": 19060,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8118,
- "id": 19061,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8118,
- "id": 19062,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8119,
- "id": 19063,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8119,
- "id": 19064,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8119,
- "id": 19065,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8119,
- "id": 19066,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8119,
- "id": 19067,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8119,
- "id": 19068,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8119,
- "id": 19069,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8119,
- "id": 19070,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8119,
- "id": 19071,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8119,
- "id": 19072,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8119,
- "id": 19073,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8119,
- "id": 19074,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8119,
- "id": 19075,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8119,
- "id": 19076,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8119,
- "id": 19077,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8119,
- "id": 19078,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8120,
- "id": 19079,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8120,
- "id": 19080,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8120,
- "id": 19081,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8120,
- "id": 19082,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8120,
- "id": 19083,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8120,
- "id": 19084,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8120,
- "id": 19085,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8120,
- "id": 19086,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8120,
- "id": 19087,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8120,
- "id": 19088,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8120,
- "id": 19089,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8120,
- "id": 19090,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8120,
- "id": 19091,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8120,
- "id": 19092,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8120,
- "id": 19093,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8120,
- "id": 19094,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8121,
- "id": 19095,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8121,
- "id": 19096,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8121,
- "id": 19097,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8121,
- "id": 19098,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8121,
- "id": 19099,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8121,
- "id": 19100,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8121,
- "id": 19101,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8121,
- "id": 19102,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8121,
- "id": 19103,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8121,
- "id": 19104,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8121,
- "id": 19105,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8121,
- "id": 19106,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8121,
- "id": 19107,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8121,
- "id": 19108,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8121,
- "id": 19109,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8121,
- "id": 19110,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8122,
- "id": 19111,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8122,
- "id": 19112,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8122,
- "id": 19113,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8122,
- "id": 19114,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8122,
- "id": 19115,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8122,
- "id": 19116,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8122,
- "id": 19117,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8122,
- "id": 19118,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8122,
- "id": 19119,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8122,
- "id": 19120,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8122,
- "id": 19121,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8122,
- "id": 19122,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8122,
- "id": 19123,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8122,
- "id": 19124,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8122,
- "id": 19125,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8122,
- "id": 19126,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8123,
- "id": 19127,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8123,
- "id": 19128,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8123,
- "id": 19129,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8123,
- "id": 19130,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8123,
- "id": 19131,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8123,
- "id": 19132,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8123,
- "id": 19133,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8123,
- "id": 19134,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8123,
- "id": 19135,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8123,
- "id": 19136,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8123,
- "id": 19137,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8123,
- "id": 19138,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8123,
- "id": 19139,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8123,
- "id": 19140,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8123,
- "id": 19141,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8123,
- "id": 19142,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8124,
- "id": 19143,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8124,
- "id": 19144,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8124,
- "id": 19145,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8124,
- "id": 19146,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8124,
- "id": 19147,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8124,
- "id": 19148,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8124,
- "id": 19149,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8124,
- "id": 19150,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8124,
- "id": 19151,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8124,
- "id": 19152,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8124,
- "id": 19153,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8124,
- "id": 19154,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8124,
- "id": 19155,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8124,
- "id": 19156,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8124,
- "id": 19157,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8124,
- "id": 19158,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8125,
- "id": 19159,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8125,
- "id": 19160,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8125,
- "id": 19161,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8125,
- "id": 19162,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8125,
- "id": 19163,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8125,
- "id": 19164,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8125,
- "id": 19165,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8125,
- "id": 19166,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8125,
- "id": 19167,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8125,
- "id": 19168,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8125,
- "id": 19169,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8125,
- "id": 19170,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8125,
- "id": 19171,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8125,
- "id": 19172,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8125,
- "id": 19173,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8125,
- "id": 19174,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8126,
- "id": 19175,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8126,
- "id": 19176,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8126,
- "id": 19177,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8126,
- "id": 19178,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8126,
- "id": 19179,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8126,
- "id": 19180,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8126,
- "id": 19181,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8126,
- "id": 19182,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8126,
- "id": 19183,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8126,
- "id": 19184,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8126,
- "id": 19185,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8126,
- "id": 19186,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8126,
- "id": 19187,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8126,
- "id": 19188,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8126,
- "id": 19189,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8126,
- "id": 19190,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8127,
- "id": 19191,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8127,
- "id": 19192,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8127,
- "id": 19193,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8127,
- "id": 19194,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8127,
- "id": 19195,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8127,
- "id": 19196,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8127,
- "id": 19197,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8127,
- "id": 19198,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8127,
- "id": 19199,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8127,
- "id": 19200,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8127,
- "id": 19201,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8127,
- "id": 19202,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8127,
- "id": 19203,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8127,
- "id": 19204,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8127,
- "id": 19205,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8127,
- "id": 19206,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8128,
- "id": 19207,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8128,
- "id": 19208,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8128,
- "id": 19209,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8128,
- "id": 19210,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8128,
- "id": 19211,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8128,
- "id": 19212,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8128,
- "id": 19213,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8128,
- "id": 19214,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8128,
- "id": 19215,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8128,
- "id": 19216,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8128,
- "id": 19217,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8128,
- "id": 19218,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8128,
- "id": 19219,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8128,
- "id": 19220,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8128,
- "id": 19221,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8128,
- "id": 19222,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8129,
- "id": 19223,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8129,
- "id": 19224,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8129,
- "id": 19225,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8129,
- "id": 19226,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8129,
- "id": 19227,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8129,
- "id": 19228,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8129,
- "id": 19229,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8129,
- "id": 19230,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8129,
- "id": 19231,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8129,
- "id": 19232,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8129,
- "id": 19233,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8129,
- "id": 19234,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8129,
- "id": 19235,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8129,
- "id": 19236,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8129,
- "id": 19237,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8129,
- "id": 19238,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8130,
- "id": 19239,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8130,
- "id": 19240,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8130,
- "id": 19241,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8130,
- "id": 19242,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8130,
- "id": 19243,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8130,
- "id": 19244,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8130,
- "id": 19245,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8130,
- "id": 19246,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8130,
- "id": 19247,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8130,
- "id": 19248,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8130,
- "id": 19249,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8130,
- "id": 19250,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8130,
- "id": 19251,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8130,
- "id": 19252,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8130,
- "id": 19253,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8130,
- "id": 19254,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8131,
- "id": 19255,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8131,
- "id": 19256,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8131,
- "id": 19257,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8131,
- "id": 19258,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8131,
- "id": 19259,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8131,
- "id": 19260,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8131,
- "id": 19261,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8131,
- "id": 19262,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8131,
- "id": 19263,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8131,
- "id": 19264,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8131,
- "id": 19265,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8131,
- "id": 19266,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8131,
- "id": 19267,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8131,
- "id": 19268,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8131,
- "id": 19269,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8131,
- "id": 19270,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8132,
- "id": 19271,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8132,
- "id": 19272,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8132,
- "id": 19273,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8132,
- "id": 19274,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8132,
- "id": 19275,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8132,
- "id": 19276,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8132,
- "id": 19277,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8132,
- "id": 19278,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8132,
- "id": 19279,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8132,
- "id": 19280,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8132,
- "id": 19281,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8132,
- "id": 19282,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8132,
- "id": 19283,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8132,
- "id": 19284,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8132,
- "id": 19285,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8132,
- "id": 19286,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8133,
- "id": 19287,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8133,
- "id": 19288,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8133,
- "id": 19289,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8133,
- "id": 19290,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8133,
- "id": 19291,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8133,
- "id": 19292,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8133,
- "id": 19293,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8133,
- "id": 19294,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8133,
- "id": 19295,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8133,
- "id": 19296,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8133,
- "id": 19297,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8133,
- "id": 19298,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8133,
- "id": 19299,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8133,
- "id": 19300,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8133,
- "id": 19301,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8133,
- "id": 19302,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8134,
- "id": 19303,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8134,
- "id": 19304,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8134,
- "id": 19305,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8134,
- "id": 19306,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8134,
- "id": 19307,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8134,
- "id": 19308,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8134,
- "id": 19309,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8134,
- "id": 19310,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8134,
- "id": 19311,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8134,
- "id": 19312,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8134,
- "id": 19313,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8134,
- "id": 19314,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8134,
- "id": 19315,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8134,
- "id": 19316,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8134,
- "id": 19317,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8134,
- "id": 19318,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8135,
- "id": 19319,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8135,
- "id": 19320,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8135,
- "id": 19321,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8135,
- "id": 19322,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8135,
- "id": 19323,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8135,
- "id": 19324,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8135,
- "id": 19325,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8135,
- "id": 19326,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8135,
- "id": 19327,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8135,
- "id": 19328,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8135,
- "id": 19329,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8135,
- "id": 19330,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8135,
- "id": 19331,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8135,
- "id": 19332,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8135,
- "id": 19333,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8135,
- "id": 19334,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8136,
- "id": 19335,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8136,
- "id": 19336,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8136,
- "id": 19337,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8136,
- "id": 19338,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8136,
- "id": 19339,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8136,
- "id": 19340,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8136,
- "id": 19341,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8136,
- "id": 19342,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8136,
- "id": 19343,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8136,
- "id": 19344,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8136,
- "id": 19345,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8136,
- "id": 19346,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8136,
- "id": 19347,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8136,
- "id": 19348,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8136,
- "id": 19349,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8136,
- "id": 19350,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8137,
- "id": 19351,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8137,
- "id": 19352,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8137,
- "id": 19353,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8137,
- "id": 19354,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8137,
- "id": 19355,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8137,
- "id": 19356,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8137,
- "id": 19357,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8137,
- "id": 19358,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8137,
- "id": 19359,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8137,
- "id": 19360,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8137,
- "id": 19361,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8137,
- "id": 19362,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8137,
- "id": 19363,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8137,
- "id": 19364,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8137,
- "id": 19365,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8137,
- "id": 19366,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8138,
- "id": 19367,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8138,
- "id": 19368,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8138,
- "id": 19369,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8138,
- "id": 19370,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8138,
- "id": 19371,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8138,
- "id": 19372,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8138,
- "id": 19373,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8138,
- "id": 19374,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8138,
- "id": 19375,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8138,
- "id": 19376,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8138,
- "id": 19377,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8138,
- "id": 19378,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8138,
- "id": 19379,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8138,
- "id": 19380,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8138,
- "id": 19381,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8138,
- "id": 19382,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8139,
- "id": 19383,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8139,
- "id": 19384,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8139,
- "id": 19385,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8139,
- "id": 19386,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8139,
- "id": 19387,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8139,
- "id": 19388,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8139,
- "id": 19389,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8139,
- "id": 19390,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8139,
- "id": 19391,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8139,
- "id": 19392,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8139,
- "id": 19393,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8139,
- "id": 19394,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8139,
- "id": 19395,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8139,
- "id": 19396,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8139,
- "id": 19397,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8139,
- "id": 19398,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8140,
- "id": 19399,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8140,
- "id": 19400,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8140,
- "id": 19401,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8140,
- "id": 19402,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8140,
- "id": 19403,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8140,
- "id": 19404,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8140,
- "id": 19405,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8140,
- "id": 19406,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8140,
- "id": 19407,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8140,
- "id": 19408,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8140,
- "id": 19409,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8140,
- "id": 19410,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8140,
- "id": 19411,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8140,
- "id": 19412,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8140,
- "id": 19413,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8140,
- "id": 19414,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 8141,
- "id": 19415,
- "width": 258,
- "height": 460
- },
- {
- "fileNum": 9005,
- "id": 19416,
- "width": 508,
- "height": 548
- },
- {
- "fileNum": 4055,
- "id": 19417,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 4055,
- "id": 19418,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 4055,
- "id": 19419,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 4055,
- "id": 19420,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 4055,
- "id": 19421,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 4055,
- "id": 19422,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 4055,
- "id": 19423,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 4055,
- "id": 19424,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 4055,
- "id": 19425,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 4055,
- "id": 19426,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 4055,
- "id": 19427,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 4055,
- "id": 19428,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 4055,
- "id": 19429,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 4055,
- "id": 19430,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 4055,
- "id": 19431,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 4055,
- "id": 19432,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 4055,
- "id": 19433,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 4055,
- "id": 19434,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 4055,
- "id": 19435,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 4055,
- "id": 19436,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 4055,
- "id": 19437,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 4055,
- "id": 19438,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2041,
- "id": 19443,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2041,
- "id": 19444,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2041,
- "id": 19445,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2041,
- "id": 19446,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 16020,
- "id": 19447,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16020,
- "id": 19448,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16020,
- "id": 19449,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16020,
- "id": 19450,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16020,
- "id": 19451,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16020,
- "id": 19452,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16020,
- "id": 19453,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16020,
- "id": 19454,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16020,
- "id": 19455,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16020,
- "id": 19456,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16020,
- "id": 19457,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16020,
- "id": 19458,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16020,
- "id": 19459,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16020,
- "id": 19460,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16020,
- "id": 19461,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16020,
- "id": 19462,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16020,
- "id": 19463,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16020,
- "id": 19464,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16020,
- "id": 19465,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16020,
- "id": 19466,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16020,
- "id": 19467,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16020,
- "id": 19468,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16034,
- "id": 19473,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 4056,
- "id": 19474,
- "width": 230,
- "height": 236
- },
- {
- "x": 230,
- "fileNum": 4056,
- "id": 19475,
- "width": 230,
- "height": 236
- },
- {
- "x": 460,
- "fileNum": 4056,
- "id": 19476,
- "width": 230,
- "height": 236
- },
- {
- "x": 690,
- "fileNum": 4056,
- "id": 19477,
- "width": 230,
- "height": 236
- },
- {
- "x": 920,
- "fileNum": 4056,
- "id": 19478,
- "width": 230,
- "height": 236
- },
- {
- "x": 1150,
- "fileNum": 4056,
- "id": 19479,
- "width": 230,
- "height": 236
- },
- {
- "x": 1380,
- "fileNum": 4056,
- "id": 19480,
- "width": 230,
- "height": 236
- },
- {
- "x": 1610,
- "fileNum": 4056,
- "id": 19481,
- "width": 230,
- "height": 236
- },
- {
- "y": 236,
- "fileNum": 4056,
- "id": 19482,
- "width": 230,
- "height": 236
- },
- {
- "x": 230,
- "y": 236,
- "fileNum": 4056,
- "id": 19483,
- "width": 230,
- "height": 236
- },
- {
- "x": 460,
- "y": 236,
- "fileNum": 4056,
- "id": 19484,
- "width": 230,
- "height": 236
- },
- {
- "x": 690,
- "y": 236,
- "fileNum": 4056,
- "id": 19485,
- "width": 230,
- "height": 236
- },
- {
- "x": 920,
- "y": 236,
- "fileNum": 4056,
- "id": 19486,
- "width": 230,
- "height": 236
- },
- {
- "x": 1150,
- "y": 236,
- "fileNum": 4056,
- "id": 19487,
- "width": 230,
- "height": 236
- },
- {
- "x": 1380,
- "y": 236,
- "fileNum": 4056,
- "id": 19488,
- "width": 230,
- "height": 236
- },
- {
- "x": 1610,
- "y": 236,
- "fileNum": 4056,
- "id": 19489,
- "width": 230,
- "height": 236
- },
- {
- "y": 472,
- "fileNum": 4056,
- "id": 19490,
- "width": 230,
- "height": 236
- },
- {
- "x": 230,
- "y": 472,
- "fileNum": 4056,
- "id": 19491,
- "width": 230,
- "height": 236
- },
- {
- "x": 460,
- "y": 472,
- "fileNum": 4056,
- "id": 19492,
- "width": 230,
- "height": 236
- },
- {
- "x": 690,
- "y": 472,
- "fileNum": 4056,
- "id": 19493,
- "width": 230,
- "height": 236
- },
- {
- "x": 920,
- "y": 472,
- "fileNum": 4056,
- "id": 19494,
- "width": 230,
- "height": 236
- },
- {
- "x": 1150,
- "y": 472,
- "fileNum": 4056,
- "id": 19495,
- "width": 230,
- "height": 236
- },
- {
- "x": 1380,
- "y": 472,
- "fileNum": 4056,
- "id": 19496,
- "width": 230,
- "height": 236
- },
- {
- "x": 1610,
- "y": 472,
- "fileNum": 4056,
- "id": 19497,
- "width": 230,
- "height": 236
- },
- {
- "y": 708,
- "fileNum": 4056,
- "id": 19498,
- "width": 230,
- "height": 236
- },
- {
- "x": 230,
- "y": 708,
- "fileNum": 4056,
- "id": 19499,
- "width": 230,
- "height": 236
- },
- {
- "x": 460,
- "y": 708,
- "fileNum": 4056,
- "id": 19500,
- "width": 230,
- "height": 236
- },
- {
- "x": 690,
- "y": 708,
- "fileNum": 4056,
- "id": 19501,
- "width": 230,
- "height": 236
- },
- {
- "x": 920,
- "y": 708,
- "fileNum": 4056,
- "id": 19502,
- "width": 230,
- "height": 236
- },
- {
- "x": 1150,
- "y": 708,
- "fileNum": 4056,
- "id": 19503,
- "width": 230,
- "height": 236
- },
- {
- "x": 1380,
- "y": 708,
- "fileNum": 4056,
- "id": 19504,
- "width": 230,
- "height": 236
- },
- {
- "x": 1610,
- "y": 708,
- "fileNum": 4056,
- "id": 19505,
- "width": 230,
- "height": 236
- },
- {
- "fileNum": 4057,
- "id": 19510,
- "width": 230,
- "height": 236
- },
- {
- "x": 230,
- "fileNum": 4057,
- "id": 19511,
- "width": 230,
- "height": 236
- },
- {
- "x": 460,
- "fileNum": 4057,
- "id": 19512,
- "width": 230,
- "height": 236
- },
- {
- "x": 690,
- "fileNum": 4057,
- "id": 19513,
- "width": 230,
- "height": 236
- },
- {
- "x": 920,
- "fileNum": 4057,
- "id": 19514,
- "width": 230,
- "height": 236
- },
- {
- "x": 1150,
- "fileNum": 4057,
- "id": 19515,
- "width": 230,
- "height": 236
- },
- {
- "x": 1380,
- "fileNum": 4057,
- "id": 19516,
- "width": 230,
- "height": 236
- },
- {
- "x": 1610,
- "fileNum": 4057,
- "id": 19517,
- "width": 230,
- "height": 236
- },
- {
- "y": 236,
- "fileNum": 4057,
- "id": 19518,
- "width": 230,
- "height": 236
- },
- {
- "x": 230,
- "y": 236,
- "fileNum": 4057,
- "id": 19519,
- "width": 230,
- "height": 236
- },
- {
- "x": 460,
- "y": 236,
- "fileNum": 4057,
- "id": 19520,
- "width": 230,
- "height": 236
- },
- {
- "x": 690,
- "y": 236,
- "fileNum": 4057,
- "id": 19521,
- "width": 230,
- "height": 236
- },
- {
- "x": 920,
- "y": 236,
- "fileNum": 4057,
- "id": 19522,
- "width": 230,
- "height": 236
- },
- {
- "x": 1150,
- "y": 236,
- "fileNum": 4057,
- "id": 19523,
- "width": 230,
- "height": 236
- },
- {
- "x": 1380,
- "y": 236,
- "fileNum": 4057,
- "id": 19524,
- "width": 230,
- "height": 236
- },
- {
- "x": 1610,
- "y": 236,
- "fileNum": 4057,
- "id": 19525,
- "width": 230,
- "height": 236
- },
- {
- "y": 472,
- "fileNum": 4057,
- "id": 19526,
- "width": 230,
- "height": 236
- },
- {
- "x": 230,
- "y": 472,
- "fileNum": 4057,
- "id": 19527,
- "width": 230,
- "height": 236
- },
- {
- "x": 460,
- "y": 472,
- "fileNum": 4057,
- "id": 19528,
- "width": 230,
- "height": 236
- },
- {
- "x": 690,
- "y": 472,
- "fileNum": 4057,
- "id": 19529,
- "width": 230,
- "height": 236
- },
- {
- "x": 920,
- "y": 472,
- "fileNum": 4057,
- "id": 19530,
- "width": 230,
- "height": 236
- },
- {
- "x": 1150,
- "y": 472,
- "fileNum": 4057,
- "id": 19531,
- "width": 230,
- "height": 236
- },
- {
- "x": 1380,
- "y": 472,
- "fileNum": 4057,
- "id": 19532,
- "width": 230,
- "height": 236
- },
- {
- "x": 1610,
- "y": 472,
- "fileNum": 4057,
- "id": 19533,
- "width": 230,
- "height": 236
- },
- {
- "y": 708,
- "fileNum": 4057,
- "id": 19534,
- "width": 230,
- "height": 236
- },
- {
- "x": 230,
- "y": 708,
- "fileNum": 4057,
- "id": 19535,
- "width": 230,
- "height": 236
- },
- {
- "x": 460,
- "y": 708,
- "fileNum": 4057,
- "id": 19536,
- "width": 230,
- "height": 236
- },
- {
- "x": 690,
- "y": 708,
- "fileNum": 4057,
- "id": 19537,
- "width": 230,
- "height": 236
- },
- {
- "x": 920,
- "y": 708,
- "fileNum": 4057,
- "id": 19538,
- "width": 230,
- "height": 236
- },
- {
- "x": 1150,
- "y": 708,
- "fileNum": 4057,
- "id": 19539,
- "width": 230,
- "height": 236
- },
- {
- "x": 1380,
- "y": 708,
- "fileNum": 4057,
- "id": 19540,
- "width": 230,
- "height": 236
- },
- {
- "x": 1610,
- "y": 708,
- "fileNum": 4057,
- "id": 19541,
- "width": 230,
- "height": 236
- },
- {
- "fileNum": 4058,
- "id": 19546,
- "width": 230,
- "height": 236
- },
- {
- "x": 230,
- "fileNum": 4058,
- "id": 19547,
- "width": 230,
- "height": 236
- },
- {
- "x": 460,
- "fileNum": 4058,
- "id": 19548,
- "width": 230,
- "height": 236
- },
- {
- "x": 690,
- "fileNum": 4058,
- "id": 19549,
- "width": 230,
- "height": 236
- },
- {
- "x": 920,
- "fileNum": 4058,
- "id": 19550,
- "width": 230,
- "height": 236
- },
- {
- "x": 1150,
- "fileNum": 4058,
- "id": 19551,
- "width": 230,
- "height": 236
- },
- {
- "x": 1380,
- "fileNum": 4058,
- "id": 19552,
- "width": 230,
- "height": 236
- },
- {
- "x": 1610,
- "fileNum": 4058,
- "id": 19553,
- "width": 230,
- "height": 236
- },
- {
- "y": 236,
- "fileNum": 4058,
- "id": 19554,
- "width": 230,
- "height": 236
- },
- {
- "x": 230,
- "y": 236,
- "fileNum": 4058,
- "id": 19555,
- "width": 230,
- "height": 236
- },
- {
- "x": 460,
- "y": 236,
- "fileNum": 4058,
- "id": 19556,
- "width": 230,
- "height": 236
- },
- {
- "x": 690,
- "y": 236,
- "fileNum": 4058,
- "id": 19557,
- "width": 230,
- "height": 236
- },
- {
- "x": 920,
- "y": 236,
- "fileNum": 4058,
- "id": 19558,
- "width": 230,
- "height": 236
- },
- {
- "x": 1150,
- "y": 236,
- "fileNum": 4058,
- "id": 19559,
- "width": 230,
- "height": 236
- },
- {
- "x": 1380,
- "y": 236,
- "fileNum": 4058,
- "id": 19560,
- "width": 230,
- "height": 236
- },
- {
- "x": 1610,
- "y": 236,
- "fileNum": 4058,
- "id": 19561,
- "width": 230,
- "height": 236
- },
- {
- "y": 472,
- "fileNum": 4058,
- "id": 19562,
- "width": 230,
- "height": 236
- },
- {
- "x": 230,
- "y": 472,
- "fileNum": 4058,
- "id": 19563,
- "width": 230,
- "height": 236
- },
- {
- "x": 460,
- "y": 472,
- "fileNum": 4058,
- "id": 19564,
- "width": 230,
- "height": 236
- },
- {
- "x": 690,
- "y": 472,
- "fileNum": 4058,
- "id": 19565,
- "width": 230,
- "height": 236
- },
- {
- "x": 920,
- "y": 472,
- "fileNum": 4058,
- "id": 19566,
- "width": 230,
- "height": 236
- },
- {
- "x": 1150,
- "y": 472,
- "fileNum": 4058,
- "id": 19567,
- "width": 230,
- "height": 236
- },
- {
- "x": 1380,
- "y": 472,
- "fileNum": 4058,
- "id": 19568,
- "width": 230,
- "height": 236
- },
- {
- "x": 1610,
- "y": 472,
- "fileNum": 4058,
- "id": 19569,
- "width": 230,
- "height": 236
- },
- {
- "y": 708,
- "fileNum": 4058,
- "id": 19570,
- "width": 230,
- "height": 236
- },
- {
- "x": 230,
- "y": 708,
- "fileNum": 4058,
- "id": 19571,
- "width": 230,
- "height": 236
- },
- {
- "x": 460,
- "y": 708,
- "fileNum": 4058,
- "id": 19572,
- "width": 230,
- "height": 236
- },
- {
- "x": 690,
- "y": 708,
- "fileNum": 4058,
- "id": 19573,
- "width": 230,
- "height": 236
- },
- {
- "x": 920,
- "y": 708,
- "fileNum": 4058,
- "id": 19574,
- "width": 230,
- "height": 236
- },
- {
- "x": 1150,
- "y": 708,
- "fileNum": 4058,
- "id": 19575,
- "width": 230,
- "height": 236
- },
- {
- "x": 1380,
- "y": 708,
- "fileNum": 4058,
- "id": 19576,
- "width": 230,
- "height": 236
- },
- {
- "x": 1610,
- "y": 708,
- "fileNum": 4058,
- "id": 19577,
- "width": 230,
- "height": 236
- },
- {
- "fileNum": 4059,
- "id": 19582,
- "width": 148,
- "height": 98
- },
- {
- "x": 148,
- "fileNum": 4059,
- "id": 19583,
- "width": 148,
- "height": 98
- },
- {
- "x": 296,
- "fileNum": 4059,
- "id": 19584,
- "width": 148,
- "height": 98
- },
- {
- "x": 444,
- "fileNum": 4059,
- "id": 19585,
- "width": 148,
- "height": 98
- },
- {
- "y": 98,
- "fileNum": 4059,
- "id": 19586,
- "width": 148,
- "height": 98
- },
- {
- "x": 148,
- "y": 98,
- "fileNum": 4059,
- "id": 19587,
- "width": 148,
- "height": 98
- },
- {
- "x": 296,
- "y": 98,
- "fileNum": 4059,
- "id": 19588,
- "width": 148,
- "height": 98
- },
- {
- "x": 444,
- "y": 98,
- "fileNum": 4059,
- "id": 19589,
- "width": 148,
- "height": 98
- },
- {
- "y": 196,
- "fileNum": 4059,
- "id": 19590,
- "width": 148,
- "height": 98
- },
- {
- "x": 148,
- "y": 196,
- "fileNum": 4059,
- "id": 19591,
- "width": 148,
- "height": 98
- },
- {
- "x": 296,
- "y": 196,
- "fileNum": 4059,
- "id": 19592,
- "width": 148,
- "height": 98
- },
- {
- "x": 444,
- "y": 196,
- "fileNum": 4059,
- "id": 19593,
- "width": 148,
- "height": 98
- },
- {
- "y": 294,
- "fileNum": 4059,
- "id": 19594,
- "width": 148,
- "height": 98
- },
- {
- "x": 148,
- "y": 294,
- "fileNum": 4059,
- "id": 19595,
- "width": 148,
- "height": 98
- },
- {
- "x": 296,
- "y": 294,
- "fileNum": 4059,
- "id": 19596,
- "width": 148,
- "height": 98
- },
- {
- "x": 444,
- "y": 294,
- "fileNum": 4059,
- "id": 19597,
- "width": 148,
- "height": 98
- },
- {
- "fileNum": 4060,
- "id": 19602,
- "width": 320,
- "height": 320
- },
- {
- "x": 320,
- "fileNum": 4060,
- "id": 19603,
- "width": 320,
- "height": 320
- },
- {
- "x": 640,
- "fileNum": 4060,
- "id": 19604,
- "width": 320,
- "height": 320
- },
- {
- "x": 960,
- "fileNum": 4060,
- "id": 19605,
- "width": 320,
- "height": 320
- },
- {
- "x": 1280,
- "fileNum": 4060,
- "id": 19606,
- "width": 320,
- "height": 320
- },
- {
- "x": 1600,
- "fileNum": 4060,
- "id": 19607,
- "width": 320,
- "height": 320
- },
- {
- "x": 1920,
- "fileNum": 4060,
- "id": 19608,
- "width": 320,
- "height": 320
- },
- {
- "x": 2240,
- "fileNum": 4060,
- "id": 19609,
- "width": 320,
- "height": 320
- },
- {
- "y": 320,
- "fileNum": 4060,
- "id": 19610,
- "width": 320,
- "height": 320
- },
- {
- "x": 320,
- "y": 320,
- "fileNum": 4060,
- "id": 19611,
- "width": 320,
- "height": 320
- },
- {
- "x": 640,
- "y": 320,
- "fileNum": 4060,
- "id": 19612,
- "width": 320,
- "height": 320
- },
- {
- "x": 960,
- "y": 320,
- "fileNum": 4060,
- "id": 19613,
- "width": 320,
- "height": 320
- },
- {
- "x": 1280,
- "y": 320,
- "fileNum": 4060,
- "id": 19614,
- "width": 320,
- "height": 320
- },
- {
- "x": 1600,
- "y": 320,
- "fileNum": 4060,
- "id": 19615,
- "width": 320,
- "height": 320
- },
- {
- "x": 1920,
- "y": 320,
- "fileNum": 4060,
- "id": 19616,
- "width": 320,
- "height": 320
- },
- {
- "x": 2240,
- "y": 320,
- "fileNum": 4060,
- "id": 19617,
- "width": 320,
- "height": 320
- },
- {
- "y": 640,
- "fileNum": 4060,
- "id": 19618,
- "width": 320,
- "height": 320
- },
- {
- "x": 320,
- "y": 640,
- "fileNum": 4060,
- "id": 19619,
- "width": 320,
- "height": 320
- },
- {
- "x": 640,
- "y": 640,
- "fileNum": 4060,
- "id": 19620,
- "width": 320,
- "height": 320
- },
- {
- "x": 960,
- "y": 640,
- "fileNum": 4060,
- "id": 19621,
- "width": 320,
- "height": 320
- },
- {
- "x": 1280,
- "y": 640,
- "fileNum": 4060,
- "id": 19622,
- "width": 320,
- "height": 320
- },
- {
- "x": 1600,
- "y": 640,
- "fileNum": 4060,
- "id": 19623,
- "width": 320,
- "height": 320
- },
- {
- "y": 960,
- "fileNum": 4060,
- "id": 19624,
- "width": 320,
- "height": 320
- },
- {
- "x": 320,
- "y": 960,
- "fileNum": 4060,
- "id": 19625,
- "width": 320,
- "height": 320
- },
- {
- "x": 640,
- "y": 960,
- "fileNum": 4060,
- "id": 19626,
- "width": 320,
- "height": 320
- },
- {
- "x": 960,
- "y": 960,
- "fileNum": 4060,
- "id": 19627,
- "width": 320,
- "height": 320
- },
- {
- "x": 1280,
- "y": 960,
- "fileNum": 4060,
- "id": 19628,
- "width": 320,
- "height": 320
- },
- {
- "x": 1600,
- "y": 960,
- "fileNum": 4060,
- "id": 19629,
- "width": 320,
- "height": 320
- },
- {
- "fileNum": 4061,
- "id": 19634,
- "width": 50,
- "height": 120
- },
- {
- "x": 50,
- "fileNum": 4061,
- "id": 19635,
- "width": 50,
- "height": 120
- },
- {
- "x": 100,
- "fileNum": 4061,
- "id": 19636,
- "width": 50,
- "height": 120
- },
- {
- "x": 150,
- "fileNum": 4061,
- "id": 19637,
- "width": 50,
- "height": 120
- },
- {
- "x": 200,
- "fileNum": 4061,
- "id": 19638,
- "width": 50,
- "height": 120
- },
- {
- "x": 250,
- "fileNum": 4061,
- "id": 19639,
- "width": 50,
- "height": 120
- },
- {
- "y": 120,
- "fileNum": 4061,
- "id": 19640,
- "width": 50,
- "height": 120
- },
- {
- "x": 50,
- "y": 120,
- "fileNum": 4061,
- "id": 19641,
- "width": 50,
- "height": 120
- },
- {
- "x": 100,
- "y": 120,
- "fileNum": 4061,
- "id": 19642,
- "width": 50,
- "height": 120
- },
- {
- "x": 150,
- "y": 120,
- "fileNum": 4061,
- "id": 19643,
- "width": 50,
- "height": 120
- },
- {
- "x": 200,
- "y": 120,
- "fileNum": 4061,
- "id": 19644,
- "width": 50,
- "height": 120
- },
- {
- "x": 250,
- "y": 120,
- "fileNum": 4061,
- "id": 19645,
- "width": 50,
- "height": 120
- },
- {
- "y": 240,
- "fileNum": 4061,
- "id": 19646,
- "width": 50,
- "height": 120
- },
- {
- "x": 50,
- "y": 240,
- "fileNum": 4061,
- "id": 19647,
- "width": 50,
- "height": 120
- },
- {
- "x": 100,
- "y": 240,
- "fileNum": 4061,
- "id": 19648,
- "width": 50,
- "height": 120
- },
- {
- "x": 150,
- "y": 240,
- "fileNum": 4061,
- "id": 19649,
- "width": 50,
- "height": 120
- },
- {
- "x": 200,
- "y": 240,
- "fileNum": 4061,
- "id": 19650,
- "width": 50,
- "height": 120
- },
- {
- "y": 360,
- "fileNum": 4061,
- "id": 19651,
- "width": 50,
- "height": 116
- },
- {
- "x": 50,
- "y": 360,
- "fileNum": 4061,
- "id": 19652,
- "width": 50,
- "height": 116
- },
- {
- "x": 100,
- "y": 360,
- "fileNum": 4061,
- "id": 19653,
- "width": 50,
- "height": 116
- },
- {
- "x": 150,
- "y": 360,
- "fileNum": 4061,
- "id": 19654,
- "width": 50,
- "height": 116
- },
- {
- "x": 200,
- "y": 360,
- "fileNum": 4061,
- "id": 19655,
- "width": 50,
- "height": 116
- },
- {
- "fileNum": 4062,
- "id": 19660,
- "width": 576,
- "height": 600
- },
- {
- "x": 576,
- "fileNum": 4062,
- "id": 19661,
- "width": 576,
- "height": 600
- },
- {
- "x": 1152,
- "fileNum": 4062,
- "id": 19662,
- "width": 576,
- "height": 600
- },
- {
- "y": 600,
- "fileNum": 4062,
- "id": 19663,
- "width": 576,
- "height": 600
- },
- {
- "x": 576,
- "y": 600,
- "fileNum": 4062,
- "id": 19664,
- "width": 576,
- "height": 600
- },
- {
- "x": 1152,
- "y": 600,
- "fileNum": 4062,
- "id": 19665,
- "width": 576,
- "height": 600
- },
- {
- "fileNum": 4063,
- "id": 19666,
- "width": 576,
- "height": 600
- },
- {
- "x": 576,
- "fileNum": 4063,
- "id": 19667,
- "width": 576,
- "height": 600
- },
- {
- "x": 1152,
- "fileNum": 4063,
- "id": 19668,
- "width": 576,
- "height": 600
- },
- {
- "y": 600,
- "fileNum": 4063,
- "id": 19669,
- "width": 576,
- "height": 600
- },
- {
- "x": 576,
- "y": 600,
- "fileNum": 4063,
- "id": 19670,
- "width": 576,
- "height": 600
- },
- {
- "x": 1152,
- "y": 600,
- "fileNum": 4063,
- "id": 19671,
- "width": 576,
- "height": 600
- },
- {
- "fileNum": 4064,
- "id": 19672,
- "width": 576,
- "height": 600
- },
- {
- "x": 576,
- "fileNum": 4064,
- "id": 19673,
- "width": 576,
- "height": 600
- },
- {
- "x": 1152,
- "fileNum": 4064,
- "id": 19674,
- "width": 576,
- "height": 600
- },
- {
- "y": 600,
- "fileNum": 4064,
- "id": 19675,
- "width": 576,
- "height": 600
- },
- {
- "x": 576,
- "y": 600,
- "fileNum": 4064,
- "id": 19676,
- "width": 576,
- "height": 600
- },
- {
- "x": 1152,
- "y": 600,
- "fileNum": 4064,
- "id": 19677,
- "width": 576,
- "height": 600
- },
- {
- "fileNum": 4065,
- "id": 19678,
- "width": 576,
- "height": 600
- },
- {
- "x": 576,
- "fileNum": 4065,
- "id": 19679,
- "width": 576,
- "height": 600
- },
- {
- "x": 1152,
- "fileNum": 4065,
- "id": 19680,
- "width": 576,
- "height": 600
- },
- {
- "y": 600,
- "fileNum": 4065,
- "id": 19681,
- "width": 576,
- "height": 600
- },
- {
- "x": 576,
- "y": 600,
- "fileNum": 4065,
- "id": 19682,
- "width": 576,
- "height": 600
- },
- {
- "x": 1152,
- "y": 600,
- "fileNum": 4065,
- "id": 19683,
- "width": 576,
- "height": 600
- },
- {
- "fileNum": 16017,
- "id": 19688,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16017,
- "id": 19689,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16017,
- "id": 19690,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16017,
- "id": 19691,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16017,
- "id": 19692,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16017,
- "id": 19693,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16017,
- "id": 19694,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16017,
- "id": 19695,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16017,
- "id": 19696,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16017,
- "id": 19697,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16017,
- "id": 19698,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16017,
- "id": 19699,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16017,
- "id": 19700,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16017,
- "id": 19701,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16017,
- "id": 19702,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16017,
- "id": 19703,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16017,
- "id": 19704,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16017,
- "id": 19705,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16017,
- "id": 19706,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16017,
- "id": 19707,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16017,
- "id": 19708,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16017,
- "id": 19709,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 10001,
- "id": 19714,
- "width": 490,
- "height": 512
- },
- {
- "fileNum": 7001,
- "id": 19715,
- "width": 640,
- "height": 364
- },
- {
- "fileNum": 18008,
- "id": 19716,
- "width": 34,
- "height": 32
- },
- {
- "x": 34,
- "fileNum": 18008,
- "id": 19717,
- "width": 34,
- "height": 32
- },
- {
- "x": 68,
- "fileNum": 18008,
- "id": 19718,
- "width": 34,
- "height": 32
- },
- {
- "x": 102,
- "fileNum": 18008,
- "id": 19719,
- "width": 34,
- "height": 32
- },
- {
- "fileNum": 18009,
- "id": 19720,
- "width": 34,
- "height": 32
- },
- {
- "x": 34,
- "fileNum": 18009,
- "id": 19721,
- "width": 34,
- "height": 32
- },
- {
- "x": 68,
- "fileNum": 18009,
- "id": 19722,
- "width": 34,
- "height": 32
- },
- {
- "x": 102,
- "fileNum": 18009,
- "id": 19723,
- "width": 34,
- "height": 32
- },
- {
- "fileNum": 21000,
- "id": 19724,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 21000,
- "id": 19725,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 21000,
- "id": 19726,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 21000,
- "id": 19727,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 21000,
- "id": 19728,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 21000,
- "id": 19729,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 21000,
- "id": 19730,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 21000,
- "id": 19731,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 21000,
- "id": 19732,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 21000,
- "id": 19733,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 21000,
- "id": 19734,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 21000,
- "id": 19735,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 21000,
- "id": 19736,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 21000,
- "id": 19737,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 21000,
- "id": 19738,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 21000,
- "id": 19739,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 21000,
- "id": 19740,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 21000,
- "id": 19741,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 21000,
- "id": 19742,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 21000,
- "id": 19743,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 21000,
- "id": 19744,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 21000,
- "id": 19745,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16021,
- "id": 19750,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16021,
- "id": 19751,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16021,
- "id": 19752,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16021,
- "id": 19753,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16021,
- "id": 19754,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16021,
- "id": 19755,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16021,
- "id": 19756,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16021,
- "id": 19757,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16021,
- "id": 19758,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16021,
- "id": 19759,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16021,
- "id": 19760,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16021,
- "id": 19761,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16021,
- "id": 19762,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16021,
- "id": 19763,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16021,
- "id": 19764,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16021,
- "id": 19765,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16021,
- "id": 19766,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16021,
- "id": 19767,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16021,
- "id": 19768,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16021,
- "id": 19769,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16021,
- "id": 19770,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16021,
- "id": 19771,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16022,
- "id": 19776,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16022,
- "id": 19777,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16022,
- "id": 19778,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16022,
- "id": 19779,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16022,
- "id": 19780,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16022,
- "id": 19781,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16022,
- "id": 19782,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16022,
- "id": 19783,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16022,
- "id": 19784,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16022,
- "id": 19785,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16022,
- "id": 19786,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16022,
- "id": 19787,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16022,
- "id": 19788,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16022,
- "id": 19789,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16022,
- "id": 19790,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16022,
- "id": 19791,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16022,
- "id": 19792,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16022,
- "id": 19793,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16022,
- "id": 19794,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16022,
- "id": 19795,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16022,
- "id": 19796,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16022,
- "id": 19797,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16023,
- "id": 19802,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16023,
- "id": 19803,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16023,
- "id": 19804,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16023,
- "id": 19805,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16023,
- "id": 19806,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16023,
- "id": 19807,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16023,
- "id": 19808,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16023,
- "id": 19809,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16023,
- "id": 19810,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16023,
- "id": 19811,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16023,
- "id": 19812,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16023,
- "id": 19813,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16023,
- "id": 19814,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16023,
- "id": 19815,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16023,
- "id": 19816,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16023,
- "id": 19817,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16023,
- "id": 19818,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16023,
- "id": 19819,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16023,
- "id": 19820,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16023,
- "id": 19821,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16023,
- "id": 19822,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16023,
- "id": 19823,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16024,
- "id": 19828,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16024,
- "id": 19829,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16024,
- "id": 19830,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16024,
- "id": 19831,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16024,
- "id": 19832,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16024,
- "id": 19833,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16024,
- "id": 19834,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16024,
- "id": 19835,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16024,
- "id": 19836,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16024,
- "id": 19837,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16024,
- "id": 19838,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16024,
- "id": 19839,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16024,
- "id": 19840,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16024,
- "id": 19841,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16024,
- "id": 19842,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16024,
- "id": 19843,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16024,
- "id": 19844,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16024,
- "id": 19845,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16024,
- "id": 19846,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16024,
- "id": 19847,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16024,
- "id": 19848,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16024,
- "id": 19849,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16025,
- "id": 19854,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16025,
- "id": 19855,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16025,
- "id": 19856,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16025,
- "id": 19857,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16025,
- "id": 19858,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16025,
- "id": 19859,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16025,
- "id": 19860,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16025,
- "id": 19861,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16025,
- "id": 19862,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16025,
- "id": 19863,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16025,
- "id": 19864,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16025,
- "id": 19865,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16025,
- "id": 19866,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16025,
- "id": 19867,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16025,
- "id": 19868,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16025,
- "id": 19869,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16025,
- "id": 19870,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16025,
- "id": 19871,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16025,
- "id": 19872,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16025,
- "id": 19873,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16025,
- "id": 19874,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16025,
- "id": 19875,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16026,
- "id": 19880,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16026,
- "id": 19881,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16026,
- "id": 19882,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16026,
- "id": 19883,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16026,
- "id": 19884,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16026,
- "id": 19885,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16026,
- "id": 19886,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16026,
- "id": 19887,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16026,
- "id": 19888,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16026,
- "id": 19889,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16026,
- "id": 19890,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16026,
- "id": 19891,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16026,
- "id": 19892,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16026,
- "id": 19893,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16026,
- "id": 19894,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16026,
- "id": 19895,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16026,
- "id": 19896,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16026,
- "id": 19897,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16026,
- "id": 19898,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16026,
- "id": 19899,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16026,
- "id": 19900,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16026,
- "id": 19901,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16027,
- "id": 19906,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16027,
- "id": 19907,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16027,
- "id": 19908,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16027,
- "id": 19909,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16027,
- "id": 19910,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16027,
- "id": 19911,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16027,
- "id": 19912,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16027,
- "id": 19913,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16027,
- "id": 19914,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16027,
- "id": 19915,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16027,
- "id": 19916,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16027,
- "id": 19917,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16027,
- "id": 19918,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16027,
- "id": 19919,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16027,
- "id": 19920,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16027,
- "id": 19921,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16027,
- "id": 19922,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16027,
- "id": 19923,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16027,
- "id": 19924,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16027,
- "id": 19925,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16027,
- "id": 19926,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16027,
- "id": 19927,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16028,
- "id": 19932,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16028,
- "id": 19933,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16028,
- "id": 19934,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16028,
- "id": 19935,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16028,
- "id": 19936,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16028,
- "id": 19937,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16028,
- "id": 19938,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16028,
- "id": 19939,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16028,
- "id": 19940,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16028,
- "id": 19941,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16028,
- "id": 19942,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16028,
- "id": 19943,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16028,
- "id": 19944,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16028,
- "id": 19945,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16028,
- "id": 19946,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16028,
- "id": 19947,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16028,
- "id": 19948,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16028,
- "id": 19949,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16028,
- "id": 19950,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16028,
- "id": 19951,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16028,
- "id": 19952,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16028,
- "id": 19953,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16029,
- "id": 19958,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16029,
- "id": 19959,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16029,
- "id": 19960,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16029,
- "id": 19961,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16029,
- "id": 19962,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16029,
- "id": 19963,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16029,
- "id": 19964,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16029,
- "id": 19965,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16029,
- "id": 19966,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16029,
- "id": 19967,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16029,
- "id": 19968,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16029,
- "id": 19969,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16029,
- "id": 19970,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16029,
- "id": 19971,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16029,
- "id": 19972,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16029,
- "id": 19973,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16029,
- "id": 19974,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16029,
- "id": 19975,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16029,
- "id": 19976,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16029,
- "id": 19977,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16029,
- "id": 19978,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16029,
- "id": 19979,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 21001,
- "id": 19984,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 21001,
- "id": 19985,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 21001,
- "id": 19986,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 21001,
- "id": 19987,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 21001,
- "id": 19988,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 21001,
- "id": 19989,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 21001,
- "id": 19990,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 21001,
- "id": 19991,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 21001,
- "id": 19992,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 21001,
- "id": 19993,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 21001,
- "id": 19994,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 21001,
- "id": 19995,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 21001,
- "id": 19996,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 21001,
- "id": 19997,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 21001,
- "id": 19998,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 21001,
- "id": 19999,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 21001,
- "id": 20000,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 21001,
- "id": 20001,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 21001,
- "id": 20002,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 21001,
- "id": 20003,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 21001,
- "id": 20004,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 21001,
- "id": 20005,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 21002,
- "id": 20010,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 21002,
- "id": 20011,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 21002,
- "id": 20012,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 21002,
- "id": 20013,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 21002,
- "id": 20014,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 21002,
- "id": 20015,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 21002,
- "id": 20016,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 21002,
- "id": 20017,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 21002,
- "id": 20018,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 21002,
- "id": 20019,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 21002,
- "id": 20020,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 21002,
- "id": 20021,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 21002,
- "id": 20022,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 21002,
- "id": 20023,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 21002,
- "id": 20024,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 21002,
- "id": 20025,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 21002,
- "id": 20026,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 21002,
- "id": 20027,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 21002,
- "id": 20028,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 21002,
- "id": 20029,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 21002,
- "id": 20030,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 21002,
- "id": 20031,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 21003,
- "id": 20036,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 21003,
- "id": 20037,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 21003,
- "id": 20038,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 21003,
- "id": 20039,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 21003,
- "id": 20040,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 21003,
- "id": 20041,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 21003,
- "id": 20042,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 21003,
- "id": 20043,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 21003,
- "id": 20044,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 21003,
- "id": 20045,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 21003,
- "id": 20046,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 21003,
- "id": 20047,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 21003,
- "id": 20048,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 21003,
- "id": 20049,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 21003,
- "id": 20050,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 21003,
- "id": 20051,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 21003,
- "id": 20052,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 21003,
- "id": 20053,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 21003,
- "id": 20054,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 21003,
- "id": 20055,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 21003,
- "id": 20056,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 21003,
- "id": 20057,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 18013,
- "id": 20062,
- "width": 34,
- "height": 32
- },
- {
- "x": 34,
- "fileNum": 18013,
- "id": 20063,
- "width": 34,
- "height": 32
- },
- {
- "x": 68,
- "fileNum": 18013,
- "id": 20064,
- "width": 34,
- "height": 32
- },
- {
- "x": 102,
- "fileNum": 18013,
- "id": 20065,
- "width": 34,
- "height": 32
- },
- {
- "fileNum": 18010,
- "id": 20066,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 18011,
- "id": 20067,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 18012,
- "id": 20068,
- "width": 64,
- "height": 64
- },
- {
- "x": 1104,
- "fileNum": 4001,
- "id": 20069,
- "width": 368,
- "height": 332
- },
- {
- "x": 1104,
- "y": 332,
- "fileNum": 4001,
- "id": 20070,
- "width": 368,
- "height": 332
- },
- {
- "x": 1104,
- "y": 664,
- "fileNum": 4001,
- "id": 20071,
- "width": 368,
- "height": 332
- },
- {
- "x": 1104,
- "y": 996,
- "fileNum": 4001,
- "id": 20072,
- "width": 368,
- "height": 332
- },
- {
- "fileNum": 4036,
- "id": 20073,
- "width": 60,
- "height": 48
- },
- {
- "x": 60,
- "fileNum": 4036,
- "id": 20074,
- "width": 60,
- "height": 48
- },
- {
- "x": 120,
- "fileNum": 4036,
- "id": 20075,
- "width": 60,
- "height": 48
- },
- {
- "y": 48,
- "fileNum": 4036,
- "id": 20076,
- "width": 60,
- "height": 48
- },
- {
- "x": 60,
- "y": 48,
- "fileNum": 4036,
- "id": 20077,
- "width": 60,
- "height": 48
- },
- {
- "x": 120,
- "y": 48,
- "fileNum": 4036,
- "id": 20078,
- "width": 60,
- "height": 48
- },
- {
- "y": 96,
- "fileNum": 4036,
- "id": 20079,
- "width": 60,
- "height": 48
- },
- {
- "x": 60,
- "y": 96,
- "fileNum": 4036,
- "id": 20080,
- "width": 60,
- "height": 48
- },
- {
- "x": 120,
- "y": 96,
- "fileNum": 4036,
- "id": 20081,
- "width": 60,
- "height": 48
- },
- {
- "y": 144,
- "fileNum": 4036,
- "id": 20082,
- "width": 60,
- "height": 48
- },
- {
- "x": 60,
- "y": 144,
- "fileNum": 4036,
- "id": 20083,
- "width": 60,
- "height": 48
- },
- {
- "x": 120,
- "y": 144,
- "fileNum": 4036,
- "id": 20084,
- "width": 60,
- "height": 48
- },
- {
- "fileNum": 4037,
- "id": 20089,
- "width": 148,
- "height": 98
- },
- {
- "x": 148,
- "fileNum": 4037,
- "id": 20090,
- "width": 148,
- "height": 98
- },
- {
- "x": 296,
- "fileNum": 4037,
- "id": 20091,
- "width": 148,
- "height": 98
- },
- {
- "x": 444,
- "fileNum": 4037,
- "id": 20092,
- "width": 148,
- "height": 98
- },
- {
- "y": 98,
- "fileNum": 4037,
- "id": 20093,
- "width": 148,
- "height": 98
- },
- {
- "x": 148,
- "y": 98,
- "fileNum": 4037,
- "id": 20094,
- "width": 148,
- "height": 98
- },
- {
- "x": 296,
- "y": 98,
- "fileNum": 4037,
- "id": 20095,
- "width": 148,
- "height": 98
- },
- {
- "x": 444,
- "y": 98,
- "fileNum": 4037,
- "id": 20096,
- "width": 148,
- "height": 98
- },
- {
- "y": 196,
- "fileNum": 4037,
- "id": 20097,
- "width": 148,
- "height": 98
- },
- {
- "x": 148,
- "y": 196,
- "fileNum": 4037,
- "id": 20098,
- "width": 148,
- "height": 98
- },
- {
- "x": 296,
- "y": 196,
- "fileNum": 4037,
- "id": 20099,
- "width": 148,
- "height": 98
- },
- {
- "x": 444,
- "y": 196,
- "fileNum": 4037,
- "id": 20100,
- "width": 148,
- "height": 98
- },
- {
- "y": 294,
- "fileNum": 4037,
- "id": 20101,
- "width": 148,
- "height": 98
- },
- {
- "x": 148,
- "y": 294,
- "fileNum": 4037,
- "id": 20102,
- "width": 148,
- "height": 98
- },
- {
- "x": 296,
- "y": 294,
- "fileNum": 4037,
- "id": 20103,
- "width": 148,
- "height": 98
- },
- {
- "x": 444,
- "y": 294,
- "fileNum": 4037,
- "id": 20104,
- "width": 148,
- "height": 98
- },
- {
- "fileNum": 4038,
- "id": 20109,
- "width": 160,
- "height": 100
- },
- {
- "x": 160,
- "fileNum": 4038,
- "id": 20110,
- "width": 160,
- "height": 100
- },
- {
- "x": 320,
- "fileNum": 4038,
- "id": 20111,
- "width": 160,
- "height": 100
- },
- {
- "x": 480,
- "fileNum": 4038,
- "id": 20112,
- "width": 160,
- "height": 100
- },
- {
- "y": 100,
- "fileNum": 4038,
- "id": 20113,
- "width": 160,
- "height": 100
- },
- {
- "x": 160,
- "y": 100,
- "fileNum": 4038,
- "id": 20114,
- "width": 160,
- "height": 100
- },
- {
- "x": 320,
- "y": 100,
- "fileNum": 4038,
- "id": 20115,
- "width": 160,
- "height": 100
- },
- {
- "x": 480,
- "y": 100,
- "fileNum": 4038,
- "id": 20116,
- "width": 160,
- "height": 100
- },
- {
- "y": 200,
- "fileNum": 4038,
- "id": 20117,
- "width": 160,
- "height": 100
- },
- {
- "x": 160,
- "y": 200,
- "fileNum": 4038,
- "id": 20118,
- "width": 160,
- "height": 100
- },
- {
- "x": 320,
- "y": 200,
- "fileNum": 4038,
- "id": 20119,
- "width": 160,
- "height": 100
- },
- {
- "x": 480,
- "y": 200,
- "fileNum": 4038,
- "id": 20120,
- "width": 160,
- "height": 100
- },
- {
- "y": 300,
- "fileNum": 4038,
- "id": 20121,
- "width": 160,
- "height": 100
- },
- {
- "x": 160,
- "y": 300,
- "fileNum": 4038,
- "id": 20122,
- "width": 160,
- "height": 100
- },
- {
- "x": 320,
- "y": 300,
- "fileNum": 4038,
- "id": 20123,
- "width": 160,
- "height": 100
- },
- {
- "x": 480,
- "y": 300,
- "fileNum": 4038,
- "id": 20124,
- "width": 160,
- "height": 100
- },
- {
- "fileNum": 4035,
- "id": 20129,
- "width": 406,
- "height": 248
- },
- {
- "x": 406,
- "fileNum": 4035,
- "id": 20130,
- "width": 406,
- "height": 248
- },
- {
- "x": 812,
- "fileNum": 4035,
- "id": 20131,
- "width": 406,
- "height": 248
- },
- {
- "x": 1218,
- "fileNum": 4035,
- "id": 20132,
- "width": 406,
- "height": 248
- },
- {
- "y": 248,
- "fileNum": 4035,
- "id": 20133,
- "width": 406,
- "height": 248
- },
- {
- "x": 406,
- "y": 248,
- "fileNum": 4035,
- "id": 20134,
- "width": 406,
- "height": 248
- },
- {
- "x": 812,
- "y": 248,
- "fileNum": 4035,
- "id": 20135,
- "width": 406,
- "height": 248
- },
- {
- "x": 1218,
- "y": 248,
- "fileNum": 4035,
- "id": 20136,
- "width": 406,
- "height": 248
- },
- {
- "y": 496,
- "fileNum": 4035,
- "id": 20137,
- "width": 406,
- "height": 248
- },
- {
- "x": 406,
- "y": 496,
- "fileNum": 4035,
- "id": 20138,
- "width": 406,
- "height": 248
- },
- {
- "x": 812,
- "y": 496,
- "fileNum": 4035,
- "id": 20139,
- "width": 406,
- "height": 248
- },
- {
- "x": 1218,
- "y": 496,
- "fileNum": 4035,
- "id": 20140,
- "width": 406,
- "height": 248
- },
- {
- "y": 744,
- "fileNum": 4035,
- "id": 20141,
- "width": 406,
- "height": 248
- },
- {
- "x": 406,
- "y": 744,
- "fileNum": 4035,
- "id": 20142,
- "width": 406,
- "height": 248
- },
- {
- "x": 812,
- "y": 744,
- "fileNum": 4035,
- "id": 20143,
- "width": 406,
- "height": 248
- },
- {
- "x": 1218,
- "y": 744,
- "fileNum": 4035,
- "id": 20144,
- "width": 406,
- "height": 248
- },
- {
- "y": 992,
- "fileNum": 4035,
- "id": 20145,
- "width": 406,
- "height": 248
- },
- {
- "x": 406,
- "y": 992,
- "fileNum": 4035,
- "id": 20146,
- "width": 406,
- "height": 248
- },
- {
- "x": 812,
- "y": 992,
- "fileNum": 4035,
- "id": 20147,
- "width": 406,
- "height": 248
- },
- {
- "x": 1218,
- "y": 992,
- "fileNum": 4035,
- "id": 20148,
- "width": 406,
- "height": 248
- },
- {
- "y": 1240,
- "fileNum": 4035,
- "id": 20149,
- "width": 406,
- "height": 248
- },
- {
- "x": 406,
- "y": 1240,
- "fileNum": 4035,
- "id": 20150,
- "width": 406,
- "height": 248
- },
- {
- "x": 812,
- "y": 1240,
- "fileNum": 4035,
- "id": 20151,
- "width": 406,
- "height": 248
- },
- {
- "x": 1218,
- "y": 1240,
- "fileNum": 4035,
- "id": 20152,
- "width": 406,
- "height": 248
- },
- {
- "y": 1488,
- "fileNum": 4035,
- "id": 20153,
- "width": 406,
- "height": 248
- },
- {
- "x": 406,
- "y": 1488,
- "fileNum": 4035,
- "id": 20154,
- "width": 406,
- "height": 248
- },
- {
- "x": 812,
- "y": 1488,
- "fileNum": 4035,
- "id": 20155,
- "width": 406,
- "height": 248
- },
- {
- "x": 1218,
- "y": 1488,
- "fileNum": 4035,
- "id": 20156,
- "width": 406,
- "height": 248
- },
- {
- "y": 1736,
- "fileNum": 4035,
- "id": 20157,
- "width": 406,
- "height": 248
- },
- {
- "x": 406,
- "y": 1736,
- "fileNum": 4035,
- "id": 20158,
- "width": 406,
- "height": 248
- },
- {
- "x": 812,
- "y": 1736,
- "fileNum": 4035,
- "id": 20159,
- "width": 406,
- "height": 248
- },
- {
- "x": 1218,
- "y": 1736,
- "fileNum": 4035,
- "id": 20160,
- "width": 406,
- "height": 248
- },
- {
- "fileNum": 5000,
- "id": 20165,
- "width": 164,
- "height": 210
- },
- {
- "fileNum": 5001,
- "id": 20166,
- "width": 164,
- "height": 210
- },
- {
- "fileNum": 5002,
- "id": 20167,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 5003,
- "id": 20168,
- "width": 354,
- "height": 302
- },
- {
- "fileNum": 5004,
- "id": 20169,
- "width": 280,
- "height": 280
- },
- {
- "fileNum": 5005,
- "id": 20170,
- "width": 146,
- "height": 386
- },
- {
- "fileNum": 5006,
- "id": 20171,
- "width": 184,
- "height": 434
- },
- {
- "fileNum": 5007,
- "id": 20172,
- "width": 186,
- "height": 178
- },
- {
- "fileNum": 5008,
- "id": 20173,
- "width": 44,
- "height": 102
- },
- {
- "fileNum": 5009,
- "id": 20174,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5010,
- "id": 20175,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5011,
- "id": 20176,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5012,
- "id": 20177,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5013,
- "id": 20178,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5014,
- "id": 20179,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5015,
- "id": 20180,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5016,
- "id": 20181,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5017,
- "id": 20182,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5018,
- "id": 20183,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5019,
- "id": 20184,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5020,
- "id": 20185,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5021,
- "id": 20186,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5022,
- "id": 20187,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5023,
- "id": 20188,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5024,
- "id": 20189,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5025,
- "id": 20190,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5026,
- "id": 20191,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5027,
- "id": 20192,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5028,
- "id": 20193,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5029,
- "id": 20194,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5030,
- "id": 20195,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5031,
- "id": 20196,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5032,
- "id": 20197,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5033,
- "id": 20198,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5034,
- "id": 20199,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5035,
- "id": 20200,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5036,
- "id": 20201,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5037,
- "id": 20202,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5038,
- "id": 20203,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5039,
- "id": 20204,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5040,
- "id": 20205,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 5041,
- "id": 20206,
- "width": 64,
- "height": 256
- },
- {
- "fileNum": 16031,
- "id": 20207,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16031,
- "id": 20208,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16031,
- "id": 20209,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16031,
- "id": 20210,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16031,
- "id": 20211,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16031,
- "id": 20212,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16031,
- "id": 20213,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16031,
- "id": 20214,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16031,
- "id": 20215,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16031,
- "id": 20216,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16031,
- "id": 20217,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16031,
- "id": 20218,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16031,
- "id": 20219,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16031,
- "id": 20220,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16031,
- "id": 20221,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16031,
- "id": 20222,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16031,
- "id": 20223,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16031,
- "id": 20224,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16031,
- "id": 20225,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16031,
- "id": 20226,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16031,
- "id": 20227,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16031,
- "id": 20228,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16030,
- "id": 20233,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 18014,
- "id": 20234,
- "width": 34,
- "height": 32
- },
- {
- "x": 34,
- "fileNum": 18014,
- "id": 20235,
- "width": 34,
- "height": 32
- },
- {
- "x": 68,
- "fileNum": 18014,
- "id": 20236,
- "width": 34,
- "height": 32
- },
- {
- "x": 102,
- "fileNum": 18014,
- "id": 20237,
- "width": 34,
- "height": 32
- },
- {
- "fileNum": 18015,
- "id": 20238,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 108,
- "id": 20239,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 109,
- "id": 20240,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 109,
- "id": 20241,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 109,
- "id": 20242,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 109,
- "id": 20243,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 109,
- "id": 20244,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 109,
- "id": 20245,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 109,
- "id": 20246,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 109,
- "id": 20247,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 109,
- "id": 20248,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 109,
- "id": 20249,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 109,
- "id": 20250,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 109,
- "id": 20251,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 109,
- "id": 20252,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 109,
- "id": 20253,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 109,
- "id": 20254,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 109,
- "id": 20255,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 109,
- "id": 20256,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 109,
- "id": 20257,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 109,
- "id": 20258,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 109,
- "id": 20259,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 109,
- "id": 20260,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 109,
- "id": 20261,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 110,
- "id": 20266,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 111,
- "id": 20267,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 111,
- "id": 20268,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 111,
- "id": 20269,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 111,
- "id": 20270,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 111,
- "id": 20271,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 111,
- "id": 20272,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 111,
- "id": 20273,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 111,
- "id": 20274,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 111,
- "id": 20275,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 111,
- "id": 20276,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 111,
- "id": 20277,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 111,
- "id": 20278,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 111,
- "id": 20279,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 111,
- "id": 20280,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 111,
- "id": 20281,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 111,
- "id": 20282,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 111,
- "id": 20283,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 111,
- "id": 20284,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 111,
- "id": 20285,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 111,
- "id": 20286,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 111,
- "id": 20287,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 111,
- "id": 20288,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 112,
- "id": 20293,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 113,
- "id": 20294,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 113,
- "id": 20295,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 113,
- "id": 20296,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 113,
- "id": 20297,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 113,
- "id": 20298,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 113,
- "id": 20299,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 113,
- "id": 20300,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 113,
- "id": 20301,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 113,
- "id": 20302,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 113,
- "id": 20303,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 113,
- "id": 20304,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 113,
- "id": 20305,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 113,
- "id": 20306,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 113,
- "id": 20307,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 113,
- "id": 20308,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 113,
- "id": 20309,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 113,
- "id": 20310,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 113,
- "id": 20311,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 113,
- "id": 20312,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 113,
- "id": 20313,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 113,
- "id": 20314,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 113,
- "id": 20315,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 114,
- "id": 20320,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 115,
- "id": 20321,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 115,
- "id": 20322,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 115,
- "id": 20323,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 115,
- "id": 20324,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 115,
- "id": 20325,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 115,
- "id": 20326,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 115,
- "id": 20327,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 115,
- "id": 20328,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 115,
- "id": 20329,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 115,
- "id": 20330,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 115,
- "id": 20331,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 115,
- "id": 20332,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 115,
- "id": 20333,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 115,
- "id": 20334,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 115,
- "id": 20335,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 115,
- "id": 20336,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 115,
- "id": 20337,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 115,
- "id": 20338,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 115,
- "id": 20339,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 115,
- "id": 20340,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 115,
- "id": 20341,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 115,
- "id": 20342,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 116,
- "id": 20347,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 117,
- "id": 20348,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 117,
- "id": 20349,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 117,
- "id": 20350,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 117,
- "id": 20351,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 117,
- "id": 20352,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 117,
- "id": 20353,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 117,
- "id": 20354,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 117,
- "id": 20355,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 117,
- "id": 20356,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 117,
- "id": 20357,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 117,
- "id": 20358,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 117,
- "id": 20359,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 117,
- "id": 20360,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 117,
- "id": 20361,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 117,
- "id": 20362,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 117,
- "id": 20363,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 117,
- "id": 20364,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 117,
- "id": 20365,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 117,
- "id": 20366,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 117,
- "id": 20367,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 117,
- "id": 20368,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 117,
- "id": 20369,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 118,
- "id": 20374,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 119,
- "id": 20375,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 119,
- "id": 20376,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 119,
- "id": 20377,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 119,
- "id": 20378,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 119,
- "id": 20379,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 119,
- "id": 20380,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 119,
- "id": 20381,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 119,
- "id": 20382,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 119,
- "id": 20383,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 119,
- "id": 20384,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 119,
- "id": 20385,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 119,
- "id": 20386,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 119,
- "id": 20387,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 119,
- "id": 20388,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 119,
- "id": 20389,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 119,
- "id": 20390,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 119,
- "id": 20391,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 119,
- "id": 20392,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 119,
- "id": 20393,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 119,
- "id": 20394,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 119,
- "id": 20395,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 119,
- "id": 20396,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 15112,
- "id": 20401,
- "width": 158,
- "height": 240
- },
- {
- "x": 158,
- "fileNum": 15112,
- "id": 20402,
- "width": 158,
- "height": 240
- },
- {
- "x": 316,
- "fileNum": 15112,
- "id": 20403,
- "width": 158,
- "height": 240
- },
- {
- "x": 474,
- "fileNum": 15112,
- "id": 20404,
- "width": 158,
- "height": 240
- },
- {
- "fileNum": 121,
- "id": 20406,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 120,
- "id": 20407,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 120,
- "id": 20408,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 120,
- "id": 20409,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 120,
- "id": 20410,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 120,
- "id": 20411,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 120,
- "id": 20412,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 120,
- "id": 20413,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 120,
- "id": 20414,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 120,
- "id": 20415,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 120,
- "id": 20416,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 120,
- "id": 20417,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 120,
- "id": 20418,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 120,
- "id": 20419,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 120,
- "id": 20420,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 120,
- "id": 20421,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 120,
- "id": 20422,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 120,
- "id": 20423,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 120,
- "id": 20424,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 120,
- "id": 20425,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 120,
- "id": 20426,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 120,
- "id": 20427,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 120,
- "id": 20428,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 123,
- "id": 20433,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 122,
- "id": 20434,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 122,
- "id": 20435,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 122,
- "id": 20436,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 122,
- "id": 20437,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 122,
- "id": 20438,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 122,
- "id": 20439,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 122,
- "id": 20440,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 122,
- "id": 20441,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 122,
- "id": 20442,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 122,
- "id": 20443,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 122,
- "id": 20444,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 122,
- "id": 20445,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 122,
- "id": 20446,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 122,
- "id": 20447,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 122,
- "id": 20448,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 122,
- "id": 20449,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 122,
- "id": 20450,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 122,
- "id": 20451,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 122,
- "id": 20452,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 122,
- "id": 20453,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 122,
- "id": 20454,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 122,
- "id": 20455,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 22003,
- "id": 20460,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16032,
- "id": 20461,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16032,
- "id": 20462,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16032,
- "id": 20463,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16032,
- "id": 20464,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16032,
- "id": 20465,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16032,
- "id": 20466,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16032,
- "id": 20467,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16032,
- "id": 20468,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16032,
- "id": 20469,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16032,
- "id": 20470,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16032,
- "id": 20471,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16032,
- "id": 20472,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16032,
- "id": 20473,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16032,
- "id": 20474,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16032,
- "id": 20475,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16032,
- "id": 20476,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16032,
- "id": 20477,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16032,
- "id": 20478,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16032,
- "id": 20479,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16032,
- "id": 20480,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16032,
- "id": 20481,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16032,
- "id": 20482,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 3096,
- "id": 20487,
- "width": 290,
- "height": 290
- },
- {
- "x": 290,
- "fileNum": 3096,
- "id": 20488,
- "width": 290,
- "height": 290
- },
- {
- "x": 580,
- "fileNum": 3096,
- "id": 20489,
- "width": 290,
- "height": 290
- },
- {
- "x": 870,
- "fileNum": 3096,
- "id": 20490,
- "width": 290,
- "height": 290
- },
- {
- "y": 290,
- "fileNum": 3096,
- "id": 20491,
- "width": 290,
- "height": 290
- },
- {
- "x": 290,
- "y": 290,
- "fileNum": 3096,
- "id": 20492,
- "width": 290,
- "height": 290
- },
- {
- "x": 580,
- "y": 290,
- "fileNum": 3096,
- "id": 20493,
- "width": 290,
- "height": 290
- },
- {
- "x": 870,
- "y": 290,
- "fileNum": 3096,
- "id": 20494,
- "width": 290,
- "height": 290
- },
- {
- "y": 580,
- "fileNum": 3096,
- "id": 20495,
- "width": 290,
- "height": 290
- },
- {
- "x": 290,
- "y": 580,
- "fileNum": 3096,
- "id": 20496,
- "width": 290,
- "height": 290
- },
- {
- "x": 580,
- "y": 580,
- "fileNum": 3096,
- "id": 20497,
- "width": 290,
- "height": 290
- },
- {
- "x": 870,
- "y": 580,
- "fileNum": 3096,
- "id": 20498,
- "width": 290,
- "height": 290
- },
- {
- "y": 870,
- "fileNum": 3096,
- "id": 20499,
- "width": 290,
- "height": 290
- },
- {
- "x": 290,
- "y": 870,
- "fileNum": 3096,
- "id": 20500,
- "width": 290,
- "height": 290
- },
- {
- "x": 580,
- "y": 870,
- "fileNum": 3096,
- "id": 20501,
- "width": 290,
- "height": 290
- },
- {
- "x": 870,
- "y": 870,
- "fileNum": 3096,
- "id": 20502,
- "width": 290,
- "height": 290
- },
- {
- "fileNum": 19000,
- "id": 20504,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19001,
- "id": 20505,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19002,
- "id": 20506,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19003,
- "id": 20507,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19004,
- "id": 20508,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 19005,
- "id": 20509,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16071,
- "id": 20510,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16071,
- "id": 20511,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16071,
- "id": 20512,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16071,
- "id": 20513,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16071,
- "id": 20514,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16071,
- "id": 20515,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16071,
- "id": 20516,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16071,
- "id": 20517,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16071,
- "id": 20518,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16071,
- "id": 20519,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16071,
- "id": 20520,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16071,
- "id": 20521,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16071,
- "id": 20522,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16071,
- "id": 20523,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16071,
- "id": 20524,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16071,
- "id": 20525,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16071,
- "id": 20526,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16071,
- "id": 20527,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16071,
- "id": 20528,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16071,
- "id": 20529,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16071,
- "id": 20530,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16071,
- "id": 20531,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 586,
- "id": 20536,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 587,
- "id": 20537,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 587,
- "id": 20538,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 587,
- "id": 20539,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 587,
- "id": 20540,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 587,
- "id": 20541,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 587,
- "id": 20542,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 587,
- "id": 20543,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 587,
- "id": 20544,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 587,
- "id": 20545,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 587,
- "id": 20546,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 587,
- "id": 20547,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 587,
- "id": 20548,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 587,
- "id": 20549,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 587,
- "id": 20550,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 587,
- "id": 20551,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 587,
- "id": 20552,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 587,
- "id": 20553,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 587,
- "id": 20554,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 587,
- "id": 20555,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 587,
- "id": 20556,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 587,
- "id": 20557,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 587,
- "id": 20558,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 588,
- "id": 20563,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 589,
- "id": 20564,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 589,
- "id": 20565,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 589,
- "id": 20566,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 589,
- "id": 20567,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 589,
- "id": 20568,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 589,
- "id": 20569,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 589,
- "id": 20570,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 589,
- "id": 20571,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 589,
- "id": 20572,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 589,
- "id": 20573,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 589,
- "id": 20574,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 589,
- "id": 20575,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 589,
- "id": 20576,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 589,
- "id": 20577,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 589,
- "id": 20578,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 589,
- "id": 20579,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 589,
- "id": 20580,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 589,
- "id": 20581,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 589,
- "id": 20582,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 589,
- "id": 20583,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 589,
- "id": 20584,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 589,
- "id": 20585,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 590,
- "id": 20590,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 591,
- "id": 20591,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 591,
- "id": 20592,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 591,
- "id": 20593,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 591,
- "id": 20594,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 591,
- "id": 20595,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 591,
- "id": 20596,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 591,
- "id": 20597,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 591,
- "id": 20598,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 591,
- "id": 20599,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 591,
- "id": 20600,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 591,
- "id": 20601,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 591,
- "id": 20602,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 591,
- "id": 20603,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 591,
- "id": 20604,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 591,
- "id": 20605,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 591,
- "id": 20606,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 591,
- "id": 20607,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 591,
- "id": 20608,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 591,
- "id": 20609,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 591,
- "id": 20610,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 591,
- "id": 20611,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 591,
- "id": 20612,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 592,
- "id": 20617,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 593,
- "id": 20618,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 593,
- "id": 20619,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 593,
- "id": 20620,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 593,
- "id": 20621,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 593,
- "id": 20622,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 593,
- "id": 20623,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 593,
- "id": 20624,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 593,
- "id": 20625,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 593,
- "id": 20626,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 593,
- "id": 20627,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 593,
- "id": 20628,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 593,
- "id": 20629,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 593,
- "id": 20630,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 593,
- "id": 20631,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 593,
- "id": 20632,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 593,
- "id": 20633,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 593,
- "id": 20634,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 593,
- "id": 20635,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 593,
- "id": 20636,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 593,
- "id": 20637,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 593,
- "id": 20638,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 593,
- "id": 20639,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 594,
- "id": 20644,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 595,
- "id": 20645,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 595,
- "id": 20646,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 595,
- "id": 20647,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 595,
- "id": 20648,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 595,
- "id": 20649,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 595,
- "id": 20650,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 595,
- "id": 20651,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 595,
- "id": 20652,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 595,
- "id": 20653,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 595,
- "id": 20654,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 595,
- "id": 20655,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 595,
- "id": 20656,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 595,
- "id": 20657,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 595,
- "id": 20658,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 595,
- "id": 20659,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 595,
- "id": 20660,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 595,
- "id": 20661,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 595,
- "id": 20662,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 595,
- "id": 20663,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 595,
- "id": 20664,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 595,
- "id": 20665,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 595,
- "id": 20666,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 596,
- "id": 20671,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 597,
- "id": 20672,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 597,
- "id": 20673,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 597,
- "id": 20674,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 597,
- "id": 20675,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 597,
- "id": 20676,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 597,
- "id": 20677,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 597,
- "id": 20678,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 597,
- "id": 20679,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 597,
- "id": 20680,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 597,
- "id": 20681,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 597,
- "id": 20682,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 597,
- "id": 20683,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 597,
- "id": 20684,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 597,
- "id": 20685,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 597,
- "id": 20686,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 597,
- "id": 20687,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 597,
- "id": 20688,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 597,
- "id": 20689,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 597,
- "id": 20690,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 597,
- "id": 20691,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 597,
- "id": 20692,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 597,
- "id": 20693,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 598,
- "id": 20698,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 599,
- "id": 20699,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 599,
- "id": 20700,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 599,
- "id": 20701,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 599,
- "id": 20702,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 599,
- "id": 20703,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 599,
- "id": 20704,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 599,
- "id": 20705,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 599,
- "id": 20706,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 599,
- "id": 20707,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 599,
- "id": 20708,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 599,
- "id": 20709,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 599,
- "id": 20710,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 599,
- "id": 20711,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 599,
- "id": 20712,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 599,
- "id": 20713,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 599,
- "id": 20714,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 599,
- "id": 20715,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 599,
- "id": 20716,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 599,
- "id": 20717,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 599,
- "id": 20718,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 599,
- "id": 20719,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 599,
- "id": 20720,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 600,
- "id": 20725,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 601,
- "id": 20726,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 601,
- "id": 20727,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 601,
- "id": 20728,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 601,
- "id": 20729,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 601,
- "id": 20730,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 601,
- "id": 20731,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 601,
- "id": 20732,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 601,
- "id": 20733,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 601,
- "id": 20734,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 601,
- "id": 20735,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 601,
- "id": 20736,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 601,
- "id": 20737,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 601,
- "id": 20738,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 601,
- "id": 20739,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 601,
- "id": 20740,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 601,
- "id": 20741,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 601,
- "id": 20742,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 601,
- "id": 20743,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 601,
- "id": 20744,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 601,
- "id": 20745,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 601,
- "id": 20746,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 601,
- "id": 20747,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 602,
- "id": 20752,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 603,
- "id": 20753,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 603,
- "id": 20754,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 603,
- "id": 20755,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 603,
- "id": 20756,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 603,
- "id": 20757,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 603,
- "id": 20758,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 603,
- "id": 20759,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 603,
- "id": 20760,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 603,
- "id": 20761,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 603,
- "id": 20762,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 603,
- "id": 20763,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 603,
- "id": 20764,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 603,
- "id": 20765,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 603,
- "id": 20766,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 603,
- "id": 20767,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 603,
- "id": 20768,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 603,
- "id": 20769,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 603,
- "id": 20770,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 603,
- "id": 20771,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 603,
- "id": 20772,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 603,
- "id": 20773,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 603,
- "id": 20774,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 604,
- "id": 20779,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 605,
- "id": 20780,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 605,
- "id": 20781,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 605,
- "id": 20782,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 605,
- "id": 20783,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 605,
- "id": 20784,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 605,
- "id": 20785,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 605,
- "id": 20786,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 605,
- "id": 20787,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 605,
- "id": 20788,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 605,
- "id": 20789,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 605,
- "id": 20790,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 605,
- "id": 20791,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 605,
- "id": 20792,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 605,
- "id": 20793,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 605,
- "id": 20794,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 605,
- "id": 20795,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 605,
- "id": 20796,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 605,
- "id": 20797,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 605,
- "id": 20798,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 605,
- "id": 20799,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 605,
- "id": 20800,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 605,
- "id": 20801,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 606,
- "id": 20806,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 607,
- "id": 20807,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 607,
- "id": 20808,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 607,
- "id": 20809,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 607,
- "id": 20810,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 607,
- "id": 20811,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 607,
- "id": 20812,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 607,
- "id": 20813,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 607,
- "id": 20814,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 607,
- "id": 20815,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 607,
- "id": 20816,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 607,
- "id": 20817,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 607,
- "id": 20818,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 607,
- "id": 20819,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 607,
- "id": 20820,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 607,
- "id": 20821,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 607,
- "id": 20822,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 607,
- "id": 20823,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 607,
- "id": 20824,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 607,
- "id": 20825,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 607,
- "id": 20826,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 607,
- "id": 20827,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 607,
- "id": 20828,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 608,
- "id": 20833,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 609,
- "id": 20834,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 609,
- "id": 20835,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 609,
- "id": 20836,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 609,
- "id": 20837,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 609,
- "id": 20838,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 609,
- "id": 20839,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 609,
- "id": 20840,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 609,
- "id": 20841,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 609,
- "id": 20842,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 609,
- "id": 20843,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 609,
- "id": 20844,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 609,
- "id": 20845,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 609,
- "id": 20846,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 609,
- "id": 20847,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 609,
- "id": 20848,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 609,
- "id": 20849,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 609,
- "id": 20850,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 609,
- "id": 20851,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 609,
- "id": 20852,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 609,
- "id": 20853,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 609,
- "id": 20854,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 609,
- "id": 20855,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 610,
- "id": 20860,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 611,
- "id": 20861,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 611,
- "id": 20862,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 611,
- "id": 20863,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 611,
- "id": 20864,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 611,
- "id": 20865,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 611,
- "id": 20866,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 611,
- "id": 20867,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 611,
- "id": 20868,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 611,
- "id": 20869,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 611,
- "id": 20870,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 611,
- "id": 20871,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 611,
- "id": 20872,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 611,
- "id": 20873,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 611,
- "id": 20874,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 611,
- "id": 20875,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 611,
- "id": 20876,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 611,
- "id": 20877,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 611,
- "id": 20878,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 611,
- "id": 20879,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 611,
- "id": 20880,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 611,
- "id": 20881,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 611,
- "id": 20882,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 612,
- "id": 20887,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 613,
- "id": 20888,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 613,
- "id": 20889,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 613,
- "id": 20890,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 613,
- "id": 20891,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 613,
- "id": 20892,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 613,
- "id": 20893,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 613,
- "id": 20894,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 613,
- "id": 20895,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 613,
- "id": 20896,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 613,
- "id": 20897,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 613,
- "id": 20898,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 613,
- "id": 20899,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 613,
- "id": 20900,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 613,
- "id": 20901,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 613,
- "id": 20902,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 613,
- "id": 20903,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 613,
- "id": 20904,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 613,
- "id": 20905,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 613,
- "id": 20906,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 613,
- "id": 20907,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 613,
- "id": 20908,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 613,
- "id": 20909,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 614,
- "id": 20914,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 615,
- "id": 20915,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 615,
- "id": 20916,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 615,
- "id": 20917,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 615,
- "id": 20918,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 615,
- "id": 20919,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 615,
- "id": 20920,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 615,
- "id": 20921,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 615,
- "id": 20922,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 615,
- "id": 20923,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 615,
- "id": 20924,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 615,
- "id": 20925,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 615,
- "id": 20926,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 615,
- "id": 20927,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 615,
- "id": 20928,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 615,
- "id": 20929,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 615,
- "id": 20930,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 615,
- "id": 20931,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 615,
- "id": 20932,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 615,
- "id": 20933,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 615,
- "id": 20934,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 615,
- "id": 20935,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 615,
- "id": 20936,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 616,
- "id": 20941,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 617,
- "id": 20942,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 617,
- "id": 20943,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 617,
- "id": 20944,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 617,
- "id": 20945,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 617,
- "id": 20946,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 617,
- "id": 20947,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 617,
- "id": 20948,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 617,
- "id": 20949,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 617,
- "id": 20950,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 617,
- "id": 20951,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 617,
- "id": 20952,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 617,
- "id": 20953,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 617,
- "id": 20954,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 617,
- "id": 20955,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 617,
- "id": 20956,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 617,
- "id": 20957,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 617,
- "id": 20958,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 617,
- "id": 20959,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 617,
- "id": 20960,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 617,
- "id": 20961,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 617,
- "id": 20962,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 617,
- "id": 20963,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 618,
- "id": 20968,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 619,
- "id": 20969,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 619,
- "id": 20970,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 619,
- "id": 20971,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 619,
- "id": 20972,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 619,
- "id": 20973,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 619,
- "id": 20974,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 619,
- "id": 20975,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 619,
- "id": 20976,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 619,
- "id": 20977,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 619,
- "id": 20978,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 619,
- "id": 20979,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 619,
- "id": 20980,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 619,
- "id": 20981,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 619,
- "id": 20982,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 619,
- "id": 20983,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 619,
- "id": 20984,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 619,
- "id": 20985,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 619,
- "id": 20986,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 619,
- "id": 20987,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 619,
- "id": 20988,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 619,
- "id": 20989,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 619,
- "id": 20990,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 620,
- "id": 20995,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 621,
- "id": 20996,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 621,
- "id": 20997,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 621,
- "id": 20998,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 621,
- "id": 20999,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 621,
- "id": 21000,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 621,
- "id": 21001,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 621,
- "id": 21002,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 621,
- "id": 21003,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 621,
- "id": 21004,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 621,
- "id": 21005,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 621,
- "id": 21006,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 621,
- "id": 21007,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 621,
- "id": 21008,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 621,
- "id": 21009,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 621,
- "id": 21010,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 621,
- "id": 21011,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 621,
- "id": 21012,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 621,
- "id": 21013,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 621,
- "id": 21014,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 621,
- "id": 21015,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 621,
- "id": 21016,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 621,
- "id": 21017,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 622,
- "id": 21022,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 623,
- "id": 21023,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 623,
- "id": 21024,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 623,
- "id": 21025,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 623,
- "id": 21026,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 623,
- "id": 21027,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 623,
- "id": 21028,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 623,
- "id": 21029,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 623,
- "id": 21030,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 623,
- "id": 21031,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 623,
- "id": 21032,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 623,
- "id": 21033,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 623,
- "id": 21034,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 623,
- "id": 21035,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 623,
- "id": 21036,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 623,
- "id": 21037,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 623,
- "id": 21038,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 623,
- "id": 21039,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 623,
- "id": 21040,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 623,
- "id": 21041,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 623,
- "id": 21042,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 623,
- "id": 21043,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 623,
- "id": 21044,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 624,
- "id": 21049,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 625,
- "id": 21050,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 625,
- "id": 21051,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 625,
- "id": 21052,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 625,
- "id": 21053,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 625,
- "id": 21054,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 625,
- "id": 21055,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 625,
- "id": 21056,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 625,
- "id": 21057,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 625,
- "id": 21058,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 625,
- "id": 21059,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 625,
- "id": 21060,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 625,
- "id": 21061,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 625,
- "id": 21062,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 625,
- "id": 21063,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 625,
- "id": 21064,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 625,
- "id": 21065,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 625,
- "id": 21066,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 625,
- "id": 21067,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 625,
- "id": 21068,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 625,
- "id": 21069,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 625,
- "id": 21070,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 625,
- "id": 21071,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 626,
- "id": 21076,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 627,
- "id": 21077,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 627,
- "id": 21078,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 627,
- "id": 21079,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 627,
- "id": 21080,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 627,
- "id": 21081,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 627,
- "id": 21082,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 627,
- "id": 21083,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 627,
- "id": 21084,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 627,
- "id": 21085,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 627,
- "id": 21086,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 627,
- "id": 21087,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 627,
- "id": 21088,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 627,
- "id": 21089,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 627,
- "id": 21090,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 627,
- "id": 21091,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 627,
- "id": 21092,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 627,
- "id": 21093,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 627,
- "id": 21094,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 627,
- "id": 21095,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 627,
- "id": 21096,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 627,
- "id": 21097,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 627,
- "id": 21098,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 628,
- "id": 21103,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 629,
- "id": 21104,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 629,
- "id": 21105,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 629,
- "id": 21106,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 629,
- "id": 21107,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 629,
- "id": 21108,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 629,
- "id": 21109,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 629,
- "id": 21110,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 629,
- "id": 21111,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 629,
- "id": 21112,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 629,
- "id": 21113,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 629,
- "id": 21114,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 629,
- "id": 21115,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 629,
- "id": 21116,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 629,
- "id": 21117,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 629,
- "id": 21118,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 629,
- "id": 21119,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 629,
- "id": 21120,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 629,
- "id": 21121,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 629,
- "id": 21122,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 629,
- "id": 21123,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 629,
- "id": 21124,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 629,
- "id": 21125,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 630,
- "id": 21130,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 631,
- "id": 21131,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 631,
- "id": 21132,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 631,
- "id": 21133,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 631,
- "id": 21134,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 631,
- "id": 21135,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 631,
- "id": 21136,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 631,
- "id": 21137,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 631,
- "id": 21138,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 631,
- "id": 21139,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 631,
- "id": 21140,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 631,
- "id": 21141,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 631,
- "id": 21142,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 631,
- "id": 21143,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 631,
- "id": 21144,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 631,
- "id": 21145,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 631,
- "id": 21146,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 631,
- "id": 21147,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 631,
- "id": 21148,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 631,
- "id": 21149,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 631,
- "id": 21150,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 631,
- "id": 21151,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 631,
- "id": 21152,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 632,
- "id": 21157,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 633,
- "id": 21158,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 633,
- "id": 21159,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 633,
- "id": 21160,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 633,
- "id": 21161,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 633,
- "id": 21162,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 633,
- "id": 21163,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 633,
- "id": 21164,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 633,
- "id": 21165,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 633,
- "id": 21166,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 633,
- "id": 21167,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 633,
- "id": 21168,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 633,
- "id": 21169,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 633,
- "id": 21170,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 633,
- "id": 21171,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 633,
- "id": 21172,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 633,
- "id": 21173,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 633,
- "id": 21174,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 633,
- "id": 21175,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 633,
- "id": 21176,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 633,
- "id": 21177,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 633,
- "id": 21178,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 633,
- "id": 21179,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 634,
- "id": 21184,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 635,
- "id": 21185,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 635,
- "id": 21186,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 635,
- "id": 21187,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 635,
- "id": 21188,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 635,
- "id": 21189,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 635,
- "id": 21190,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 635,
- "id": 21191,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 635,
- "id": 21192,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 635,
- "id": 21193,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 635,
- "id": 21194,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 635,
- "id": 21195,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 635,
- "id": 21196,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 635,
- "id": 21197,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 635,
- "id": 21198,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 635,
- "id": 21199,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 635,
- "id": 21200,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 635,
- "id": 21201,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 635,
- "id": 21202,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 635,
- "id": 21203,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 635,
- "id": 21204,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 635,
- "id": 21205,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 635,
- "id": 21206,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 636,
- "id": 21211,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 637,
- "id": 21212,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 637,
- "id": 21213,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 637,
- "id": 21214,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 637,
- "id": 21215,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 637,
- "id": 21216,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 637,
- "id": 21217,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 637,
- "id": 21218,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 637,
- "id": 21219,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 637,
- "id": 21220,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 637,
- "id": 21221,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 637,
- "id": 21222,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 637,
- "id": 21223,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 637,
- "id": 21224,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 637,
- "id": 21225,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 637,
- "id": 21226,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 637,
- "id": 21227,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 637,
- "id": 21228,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 637,
- "id": 21229,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 637,
- "id": 21230,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 637,
- "id": 21231,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 637,
- "id": 21232,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 637,
- "id": 21233,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 638,
- "id": 21238,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 639,
- "id": 21239,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 639,
- "id": 21240,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 639,
- "id": 21241,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 639,
- "id": 21242,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 639,
- "id": 21243,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 639,
- "id": 21244,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 639,
- "id": 21245,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 639,
- "id": 21246,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 639,
- "id": 21247,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 639,
- "id": 21248,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 639,
- "id": 21249,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 639,
- "id": 21250,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 639,
- "id": 21251,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 639,
- "id": 21252,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 639,
- "id": 21253,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 639,
- "id": 21254,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 639,
- "id": 21255,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 639,
- "id": 21256,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 639,
- "id": 21257,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 639,
- "id": 21258,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 639,
- "id": 21259,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 639,
- "id": 21260,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 640,
- "id": 21265,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 641,
- "id": 21266,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 641,
- "id": 21267,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 641,
- "id": 21268,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 641,
- "id": 21269,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 641,
- "id": 21270,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 641,
- "id": 21271,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 641,
- "id": 21272,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 641,
- "id": 21273,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 641,
- "id": 21274,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 641,
- "id": 21275,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 641,
- "id": 21276,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 641,
- "id": 21277,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 641,
- "id": 21278,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 641,
- "id": 21279,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 641,
- "id": 21280,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 641,
- "id": 21281,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 641,
- "id": 21282,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 641,
- "id": 21283,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 641,
- "id": 21284,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 641,
- "id": 21285,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 641,
- "id": 21286,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 641,
- "id": 21287,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 642,
- "id": 21292,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 643,
- "id": 21293,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 643,
- "id": 21294,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 643,
- "id": 21295,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 643,
- "id": 21296,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 643,
- "id": 21297,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 643,
- "id": 21298,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 643,
- "id": 21299,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 643,
- "id": 21300,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 643,
- "id": 21301,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 643,
- "id": 21302,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 643,
- "id": 21303,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 643,
- "id": 21304,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 643,
- "id": 21305,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 643,
- "id": 21306,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 643,
- "id": 21307,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 643,
- "id": 21308,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 643,
- "id": 21309,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 643,
- "id": 21310,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 643,
- "id": 21311,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 643,
- "id": 21312,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 643,
- "id": 21313,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 643,
- "id": 21314,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 644,
- "id": 21319,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 645,
- "id": 21320,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 645,
- "id": 21321,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 645,
- "id": 21322,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 645,
- "id": 21323,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 645,
- "id": 21324,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 645,
- "id": 21325,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 645,
- "id": 21326,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 645,
- "id": 21327,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 645,
- "id": 21328,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 645,
- "id": 21329,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 645,
- "id": 21330,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 645,
- "id": 21331,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 645,
- "id": 21332,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 645,
- "id": 21333,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 645,
- "id": 21334,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 645,
- "id": 21335,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 645,
- "id": 21336,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 645,
- "id": 21337,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 645,
- "id": 21338,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 645,
- "id": 21339,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 645,
- "id": 21340,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 645,
- "id": 21341,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 646,
- "id": 21346,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 647,
- "id": 21347,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 647,
- "id": 21348,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 647,
- "id": 21349,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 647,
- "id": 21350,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 647,
- "id": 21351,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 647,
- "id": 21352,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 647,
- "id": 21353,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 647,
- "id": 21354,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 647,
- "id": 21355,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 647,
- "id": 21356,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 647,
- "id": 21357,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 647,
- "id": 21358,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 647,
- "id": 21359,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 647,
- "id": 21360,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 647,
- "id": 21361,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 647,
- "id": 21362,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 647,
- "id": 21363,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 647,
- "id": 21364,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 647,
- "id": 21365,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 647,
- "id": 21366,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 647,
- "id": 21367,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 647,
- "id": 21368,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 648,
- "id": 21373,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 649,
- "id": 21374,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 649,
- "id": 21375,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 649,
- "id": 21376,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 649,
- "id": 21377,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 649,
- "id": 21378,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 649,
- "id": 21379,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 649,
- "id": 21380,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 649,
- "id": 21381,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 649,
- "id": 21382,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 649,
- "id": 21383,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 649,
- "id": 21384,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 649,
- "id": 21385,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 649,
- "id": 21386,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 649,
- "id": 21387,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 649,
- "id": 21388,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 649,
- "id": 21389,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 649,
- "id": 21390,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 649,
- "id": 21391,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 649,
- "id": 21392,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 649,
- "id": 21393,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 649,
- "id": 21394,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 649,
- "id": 21395,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 650,
- "id": 21400,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 651,
- "id": 21401,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 651,
- "id": 21402,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 651,
- "id": 21403,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 651,
- "id": 21404,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 651,
- "id": 21405,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 651,
- "id": 21406,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 651,
- "id": 21407,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 651,
- "id": 21408,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 651,
- "id": 21409,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 651,
- "id": 21410,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 651,
- "id": 21411,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 651,
- "id": 21412,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 651,
- "id": 21413,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 651,
- "id": 21414,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 651,
- "id": 21415,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 651,
- "id": 21416,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 651,
- "id": 21417,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 651,
- "id": 21418,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 651,
- "id": 21419,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 651,
- "id": 21420,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 651,
- "id": 21421,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 651,
- "id": 21422,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 652,
- "id": 21427,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 653,
- "id": 21428,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 653,
- "id": 21429,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 653,
- "id": 21430,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 653,
- "id": 21431,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 653,
- "id": 21432,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 653,
- "id": 21433,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 653,
- "id": 21434,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 653,
- "id": 21435,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 653,
- "id": 21436,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 653,
- "id": 21437,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 653,
- "id": 21438,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 653,
- "id": 21439,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 653,
- "id": 21440,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 653,
- "id": 21441,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 653,
- "id": 21442,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 653,
- "id": 21443,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 653,
- "id": 21444,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 653,
- "id": 21445,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 653,
- "id": 21446,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 653,
- "id": 21447,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 653,
- "id": 21448,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 653,
- "id": 21449,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 654,
- "id": 21454,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 655,
- "id": 21455,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 655,
- "id": 21456,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 655,
- "id": 21457,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 655,
- "id": 21458,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 655,
- "id": 21459,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 655,
- "id": 21460,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 655,
- "id": 21461,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 655,
- "id": 21462,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 655,
- "id": 21463,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 655,
- "id": 21464,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 655,
- "id": 21465,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 655,
- "id": 21466,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 655,
- "id": 21467,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 655,
- "id": 21468,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 655,
- "id": 21469,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 655,
- "id": 21470,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 655,
- "id": 21471,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 655,
- "id": 21472,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 655,
- "id": 21473,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 655,
- "id": 21474,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 655,
- "id": 21475,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 655,
- "id": 21476,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 656,
- "id": 21481,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 657,
- "id": 21482,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 657,
- "id": 21483,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 657,
- "id": 21484,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 657,
- "id": 21485,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 657,
- "id": 21486,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 657,
- "id": 21487,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 657,
- "id": 21488,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 657,
- "id": 21489,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 657,
- "id": 21490,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 657,
- "id": 21491,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 657,
- "id": 21492,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 657,
- "id": 21493,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 657,
- "id": 21494,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 657,
- "id": 21495,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 657,
- "id": 21496,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 657,
- "id": 21497,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 657,
- "id": 21498,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 657,
- "id": 21499,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 657,
- "id": 21500,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 657,
- "id": 21501,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 657,
- "id": 21502,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 657,
- "id": 21503,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 658,
- "id": 21508,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 659,
- "id": 21509,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 659,
- "id": 21510,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 659,
- "id": 21511,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 659,
- "id": 21512,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 659,
- "id": 21513,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 659,
- "id": 21514,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 659,
- "id": 21515,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 659,
- "id": 21516,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 659,
- "id": 21517,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 659,
- "id": 21518,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 659,
- "id": 21519,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 659,
- "id": 21520,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 659,
- "id": 21521,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 659,
- "id": 21522,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 659,
- "id": 21523,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 659,
- "id": 21524,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 659,
- "id": 21525,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 659,
- "id": 21526,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 659,
- "id": 21527,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 659,
- "id": 21528,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 659,
- "id": 21529,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 659,
- "id": 21530,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 660,
- "id": 21535,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 661,
- "id": 21536,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 661,
- "id": 21537,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 661,
- "id": 21538,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 661,
- "id": 21539,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 661,
- "id": 21540,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 661,
- "id": 21541,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 661,
- "id": 21542,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 661,
- "id": 21543,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 661,
- "id": 21544,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 661,
- "id": 21545,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 661,
- "id": 21546,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 661,
- "id": 21547,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 661,
- "id": 21548,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 661,
- "id": 21549,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 661,
- "id": 21550,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 661,
- "id": 21551,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 661,
- "id": 21552,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 661,
- "id": 21553,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 661,
- "id": 21554,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 661,
- "id": 21555,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 661,
- "id": 21556,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 661,
- "id": 21557,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 662,
- "id": 21562,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 663,
- "id": 21563,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 663,
- "id": 21564,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 663,
- "id": 21565,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 663,
- "id": 21566,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 663,
- "id": 21567,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 663,
- "id": 21568,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 663,
- "id": 21569,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 663,
- "id": 21570,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 663,
- "id": 21571,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 663,
- "id": 21572,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 663,
- "id": 21573,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 663,
- "id": 21574,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 663,
- "id": 21575,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 663,
- "id": 21576,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 663,
- "id": 21577,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 663,
- "id": 21578,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 663,
- "id": 21579,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 663,
- "id": 21580,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 663,
- "id": 21581,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 663,
- "id": 21582,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 663,
- "id": 21583,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 663,
- "id": 21584,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 664,
- "id": 21589,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 665,
- "id": 21590,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 665,
- "id": 21591,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 665,
- "id": 21592,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 665,
- "id": 21593,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 665,
- "id": 21594,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 665,
- "id": 21595,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 665,
- "id": 21596,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 665,
- "id": 21597,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 665,
- "id": 21598,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 665,
- "id": 21599,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 665,
- "id": 21600,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 665,
- "id": 21601,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 665,
- "id": 21602,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 665,
- "id": 21603,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 665,
- "id": 21604,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 665,
- "id": 21605,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 665,
- "id": 21606,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 665,
- "id": 21607,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 665,
- "id": 21608,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 665,
- "id": 21609,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 665,
- "id": 21610,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 665,
- "id": 21611,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 666,
- "id": 21616,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 667,
- "id": 21617,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 667,
- "id": 21618,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 667,
- "id": 21619,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 667,
- "id": 21620,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 667,
- "id": 21621,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 667,
- "id": 21622,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 667,
- "id": 21623,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 667,
- "id": 21624,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 667,
- "id": 21625,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 667,
- "id": 21626,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 667,
- "id": 21627,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 667,
- "id": 21628,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 667,
- "id": 21629,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 667,
- "id": 21630,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 667,
- "id": 21631,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 667,
- "id": 21632,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 667,
- "id": 21633,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 667,
- "id": 21634,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 667,
- "id": 21635,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 667,
- "id": 21636,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 667,
- "id": 21637,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 667,
- "id": 21638,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 668,
- "id": 21643,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 669,
- "id": 21644,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 669,
- "id": 21645,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 669,
- "id": 21646,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 669,
- "id": 21647,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 669,
- "id": 21648,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 669,
- "id": 21649,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 669,
- "id": 21650,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 669,
- "id": 21651,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 669,
- "id": 21652,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 669,
- "id": 21653,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 669,
- "id": 21654,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 669,
- "id": 21655,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 669,
- "id": 21656,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 669,
- "id": 21657,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 669,
- "id": 21658,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 669,
- "id": 21659,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 669,
- "id": 21660,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 669,
- "id": 21661,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 669,
- "id": 21662,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 669,
- "id": 21663,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 669,
- "id": 21664,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 669,
- "id": 21665,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 670,
- "id": 21670,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 671,
- "id": 21671,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 671,
- "id": 21672,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 671,
- "id": 21673,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 671,
- "id": 21674,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 671,
- "id": 21675,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 671,
- "id": 21676,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 671,
- "id": 21677,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 671,
- "id": 21678,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 671,
- "id": 21679,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 671,
- "id": 21680,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 671,
- "id": 21681,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 671,
- "id": 21682,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 671,
- "id": 21683,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 671,
- "id": 21684,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 671,
- "id": 21685,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 671,
- "id": 21686,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 671,
- "id": 21687,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 671,
- "id": 21688,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 671,
- "id": 21689,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 671,
- "id": 21690,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 671,
- "id": 21691,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 671,
- "id": 21692,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 672,
- "id": 21697,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 673,
- "id": 21698,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 673,
- "id": 21699,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 673,
- "id": 21700,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 673,
- "id": 21701,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 673,
- "id": 21702,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 673,
- "id": 21703,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 673,
- "id": 21704,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 673,
- "id": 21705,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 673,
- "id": 21706,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 673,
- "id": 21707,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 673,
- "id": 21708,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 673,
- "id": 21709,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 673,
- "id": 21710,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 673,
- "id": 21711,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 673,
- "id": 21712,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 673,
- "id": 21713,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 673,
- "id": 21714,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 673,
- "id": 21715,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 673,
- "id": 21716,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 673,
- "id": 21717,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 673,
- "id": 21718,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 673,
- "id": 21719,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2212,
- "id": 21724,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2212,
- "id": 21725,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2212,
- "id": 21726,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2212,
- "id": 21727,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2213,
- "id": 21728,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2213,
- "id": 21729,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2213,
- "id": 21730,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2213,
- "id": 21731,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2214,
- "id": 21732,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2214,
- "id": 21733,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2214,
- "id": 21734,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2214,
- "id": 21735,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2215,
- "id": 21736,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2215,
- "id": 21737,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2215,
- "id": 21738,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2215,
- "id": 21739,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2216,
- "id": 21740,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2216,
- "id": 21741,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2216,
- "id": 21742,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2216,
- "id": 21743,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2217,
- "id": 21744,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2217,
- "id": 21745,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2217,
- "id": 21746,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2217,
- "id": 21747,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2218,
- "id": 21748,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2218,
- "id": 21749,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2218,
- "id": 21750,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2218,
- "id": 21751,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2219,
- "id": 21752,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2219,
- "id": 21753,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2219,
- "id": 21754,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2219,
- "id": 21755,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2220,
- "id": 21756,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2220,
- "id": 21757,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2220,
- "id": 21758,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2220,
- "id": 21759,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2221,
- "id": 21760,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2221,
- "id": 21761,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2221,
- "id": 21762,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2221,
- "id": 21763,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2222,
- "id": 21764,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2222,
- "id": 21765,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2222,
- "id": 21766,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2222,
- "id": 21767,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2223,
- "id": 21768,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2223,
- "id": 21769,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2223,
- "id": 21770,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2223,
- "id": 21771,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2224,
- "id": 21772,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2224,
- "id": 21773,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2224,
- "id": 21774,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2224,
- "id": 21775,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2225,
- "id": 21776,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2225,
- "id": 21777,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2225,
- "id": 21778,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2225,
- "id": 21779,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2226,
- "id": 21780,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2226,
- "id": 21781,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2226,
- "id": 21782,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2226,
- "id": 21783,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2227,
- "id": 21784,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2227,
- "id": 21785,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2227,
- "id": 21786,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2227,
- "id": 21787,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2228,
- "id": 21788,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2228,
- "id": 21789,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2228,
- "id": 21790,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2228,
- "id": 21791,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 4158,
- "id": 21792,
- "width": 36,
- "height": 52
- },
- {
- "x": 36,
- "fileNum": 4158,
- "id": 21793,
- "width": 36,
- "height": 52
- },
- {
- "y": 52,
- "fileNum": 4158,
- "id": 21794,
- "width": 36,
- "height": 52
- },
- {
- "x": 36,
- "y": 52,
- "fileNum": 4158,
- "id": 21795,
- "width": 36,
- "height": 52
- },
- {
- "y": 104,
- "fileNum": 4158,
- "id": 21796,
- "width": 36,
- "height": 52
- },
- {
- "x": 36,
- "y": 104,
- "fileNum": 4158,
- "id": 21797,
- "width": 36,
- "height": 52
- },
- {
- "y": 156,
- "fileNum": 4158,
- "id": 21798,
- "width": 36,
- "height": 52
- },
- {
- "x": 36,
- "y": 156,
- "fileNum": 4158,
- "id": 21799,
- "width": 36,
- "height": 52
- },
- {
- "fileNum": 4159,
- "id": 21804,
- "width": 86,
- "height": 56
- },
- {
- "x": 86,
- "fileNum": 4159,
- "id": 21805,
- "width": 86,
- "height": 56
- },
- {
- "x": 172,
- "fileNum": 4159,
- "id": 21806,
- "width": 86,
- "height": 56
- },
- {
- "x": 258,
- "fileNum": 4159,
- "id": 21807,
- "width": 86,
- "height": 56
- },
- {
- "y": 56,
- "fileNum": 4159,
- "id": 21808,
- "width": 86,
- "height": 56
- },
- {
- "x": 86,
- "y": 56,
- "fileNum": 4159,
- "id": 21809,
- "width": 86,
- "height": 56
- },
- {
- "x": 172,
- "y": 56,
- "fileNum": 4159,
- "id": 21810,
- "width": 86,
- "height": 56
- },
- {
- "x": 258,
- "y": 56,
- "fileNum": 4159,
- "id": 21811,
- "width": 86,
- "height": 56
- },
- {
- "y": 112,
- "fileNum": 4159,
- "id": 21812,
- "width": 86,
- "height": 56
- },
- {
- "x": 86,
- "y": 112,
- "fileNum": 4159,
- "id": 21813,
- "width": 86,
- "height": 56
- },
- {
- "x": 172,
- "y": 112,
- "fileNum": 4159,
- "id": 21814,
- "width": 86,
- "height": 56
- },
- {
- "x": 258,
- "y": 112,
- "fileNum": 4159,
- "id": 21815,
- "width": 86,
- "height": 56
- },
- {
- "y": 168,
- "fileNum": 4159,
- "id": 21816,
- "width": 86,
- "height": 56
- },
- {
- "x": 86,
- "y": 168,
- "fileNum": 4159,
- "id": 21817,
- "width": 86,
- "height": 56
- },
- {
- "x": 172,
- "y": 168,
- "fileNum": 4159,
- "id": 21818,
- "width": 86,
- "height": 56
- },
- {
- "x": 258,
- "y": 168,
- "fileNum": 4159,
- "id": 21819,
- "width": 86,
- "height": 56
- },
- {
- "fileNum": 4160,
- "id": 21824,
- "width": 66,
- "height": 66
- },
- {
- "x": 66,
- "fileNum": 4160,
- "id": 21825,
- "width": 66,
- "height": 66
- },
- {
- "x": 132,
- "fileNum": 4160,
- "id": 21826,
- "width": 66,
- "height": 66
- },
- {
- "x": 198,
- "fileNum": 4160,
- "id": 21827,
- "width": 66,
- "height": 66
- },
- {
- "x": 264,
- "fileNum": 4160,
- "id": 21828,
- "width": 66,
- "height": 66
- },
- {
- "x": 330,
- "fileNum": 4160,
- "id": 21829,
- "width": 66,
- "height": 66
- },
- {
- "y": 66,
- "fileNum": 4160,
- "id": 21830,
- "width": 66,
- "height": 66
- },
- {
- "x": 66,
- "y": 66,
- "fileNum": 4160,
- "id": 21831,
- "width": 66,
- "height": 66
- },
- {
- "x": 132,
- "y": 66,
- "fileNum": 4160,
- "id": 21832,
- "width": 66,
- "height": 66
- },
- {
- "x": 198,
- "y": 66,
- "fileNum": 4160,
- "id": 21833,
- "width": 66,
- "height": 66
- },
- {
- "x": 264,
- "y": 66,
- "fileNum": 4160,
- "id": 21834,
- "width": 66,
- "height": 66
- },
- {
- "x": 330,
- "y": 66,
- "fileNum": 4160,
- "id": 21835,
- "width": 66,
- "height": 66
- },
- {
- "y": 132,
- "fileNum": 4160,
- "id": 21836,
- "width": 66,
- "height": 66
- },
- {
- "x": 66,
- "y": 132,
- "fileNum": 4160,
- "id": 21837,
- "width": 66,
- "height": 66
- },
- {
- "x": 132,
- "y": 132,
- "fileNum": 4160,
- "id": 21838,
- "width": 66,
- "height": 66
- },
- {
- "x": 198,
- "y": 132,
- "fileNum": 4160,
- "id": 21839,
- "width": 66,
- "height": 66
- },
- {
- "x": 264,
- "y": 132,
- "fileNum": 4160,
- "id": 21840,
- "width": 66,
- "height": 66
- },
- {
- "x": 330,
- "y": 132,
- "fileNum": 4160,
- "id": 21841,
- "width": 66,
- "height": 66
- },
- {
- "y": 198,
- "fileNum": 4160,
- "id": 21842,
- "width": 66,
- "height": 66
- },
- {
- "x": 66,
- "y": 198,
- "fileNum": 4160,
- "id": 21843,
- "width": 66,
- "height": 66
- },
- {
- "x": 132,
- "y": 198,
- "fileNum": 4160,
- "id": 21844,
- "width": 66,
- "height": 66
- },
- {
- "x": 198,
- "y": 198,
- "fileNum": 4160,
- "id": 21845,
- "width": 66,
- "height": 66
- },
- {
- "x": 264,
- "y": 198,
- "fileNum": 4160,
- "id": 21846,
- "width": 66,
- "height": 66
- },
- {
- "fileNum": 4161,
- "id": 21851,
- "width": 68,
- "height": 84
- },
- {
- "x": 68,
- "fileNum": 4161,
- "id": 21852,
- "width": 68,
- "height": 84
- },
- {
- "x": 136,
- "fileNum": 4161,
- "id": 21853,
- "width": 68,
- "height": 84
- },
- {
- "x": 204,
- "fileNum": 4161,
- "id": 21854,
- "width": 68,
- "height": 84
- },
- {
- "y": 84,
- "fileNum": 4161,
- "id": 21855,
- "width": 68,
- "height": 84
- },
- {
- "x": 68,
- "y": 84,
- "fileNum": 4161,
- "id": 21856,
- "width": 68,
- "height": 84
- },
- {
- "x": 136,
- "y": 84,
- "fileNum": 4161,
- "id": 21857,
- "width": 68,
- "height": 84
- },
- {
- "x": 204,
- "y": 84,
- "fileNum": 4161,
- "id": 21858,
- "width": 68,
- "height": 84
- },
- {
- "y": 168,
- "fileNum": 4161,
- "id": 21859,
- "width": 68,
- "height": 84
- },
- {
- "x": 68,
- "y": 168,
- "fileNum": 4161,
- "id": 21860,
- "width": 68,
- "height": 84
- },
- {
- "x": 136,
- "y": 168,
- "fileNum": 4161,
- "id": 21861,
- "width": 68,
- "height": 84
- },
- {
- "x": 204,
- "y": 168,
- "fileNum": 4161,
- "id": 21862,
- "width": 68,
- "height": 84
- },
- {
- "y": 252,
- "fileNum": 4161,
- "id": 21863,
- "width": 68,
- "height": 84
- },
- {
- "x": 68,
- "y": 252,
- "fileNum": 4161,
- "id": 21864,
- "width": 68,
- "height": 84
- },
- {
- "x": 136,
- "y": 252,
- "fileNum": 4161,
- "id": 21865,
- "width": 68,
- "height": 84
- },
- {
- "x": 204,
- "y": 252,
- "fileNum": 4161,
- "id": 21866,
- "width": 68,
- "height": 84
- },
- {
- "fileNum": 4162,
- "id": 21871,
- "width": 88,
- "height": 92
- },
- {
- "x": 88,
- "fileNum": 4162,
- "id": 21872,
- "width": 88,
- "height": 92
- },
- {
- "x": 176,
- "fileNum": 4162,
- "id": 21873,
- "width": 88,
- "height": 92
- },
- {
- "x": 264,
- "fileNum": 4162,
- "id": 21874,
- "width": 88,
- "height": 92
- },
- {
- "x": 352,
- "fileNum": 4162,
- "id": 21875,
- "width": 88,
- "height": 92
- },
- {
- "y": 92,
- "fileNum": 4162,
- "id": 21876,
- "width": 88,
- "height": 92
- },
- {
- "x": 88,
- "y": 92,
- "fileNum": 4162,
- "id": 21877,
- "width": 88,
- "height": 92
- },
- {
- "x": 176,
- "y": 92,
- "fileNum": 4162,
- "id": 21878,
- "width": 88,
- "height": 92
- },
- {
- "x": 264,
- "y": 92,
- "fileNum": 4162,
- "id": 21879,
- "width": 88,
- "height": 92
- },
- {
- "x": 352,
- "y": 92,
- "fileNum": 4162,
- "id": 21880,
- "width": 88,
- "height": 92
- },
- {
- "y": 184,
- "fileNum": 4162,
- "id": 21881,
- "width": 88,
- "height": 92
- },
- {
- "x": 88,
- "y": 184,
- "fileNum": 4162,
- "id": 21882,
- "width": 88,
- "height": 92
- },
- {
- "x": 176,
- "y": 184,
- "fileNum": 4162,
- "id": 21883,
- "width": 88,
- "height": 92
- },
- {
- "x": 264,
- "y": 184,
- "fileNum": 4162,
- "id": 21884,
- "width": 88,
- "height": 92
- },
- {
- "x": 352,
- "y": 184,
- "fileNum": 4162,
- "id": 21885,
- "width": 88,
- "height": 92
- },
- {
- "y": 276,
- "fileNum": 4162,
- "id": 21886,
- "width": 88,
- "height": 92
- },
- {
- "x": 88,
- "y": 276,
- "fileNum": 4162,
- "id": 21887,
- "width": 88,
- "height": 92
- },
- {
- "x": 176,
- "y": 276,
- "fileNum": 4162,
- "id": 21888,
- "width": 88,
- "height": 92
- },
- {
- "x": 264,
- "y": 276,
- "fileNum": 4162,
- "id": 21889,
- "width": 88,
- "height": 92
- },
- {
- "x": 352,
- "y": 276,
- "fileNum": 4162,
- "id": 21890,
- "width": 88,
- "height": 92
- },
- {
- "fileNum": 4163,
- "id": 21895,
- "width": 70,
- "height": 70
- },
- {
- "x": 70,
- "fileNum": 4163,
- "id": 21896,
- "width": 70,
- "height": 70
- },
- {
- "x": 140,
- "fileNum": 4163,
- "id": 21897,
- "width": 70,
- "height": 70
- },
- {
- "x": 210,
- "fileNum": 4163,
- "id": 21898,
- "width": 70,
- "height": 70
- },
- {
- "x": 280,
- "fileNum": 4163,
- "id": 21899,
- "width": 70,
- "height": 70
- },
- {
- "x": 350,
- "fileNum": 4163,
- "id": 21900,
- "width": 70,
- "height": 70
- },
- {
- "y": 70,
- "fileNum": 4163,
- "id": 21901,
- "width": 70,
- "height": 70
- },
- {
- "x": 70,
- "y": 70,
- "fileNum": 4163,
- "id": 21902,
- "width": 70,
- "height": 70
- },
- {
- "x": 140,
- "y": 70,
- "fileNum": 4163,
- "id": 21903,
- "width": 70,
- "height": 70
- },
- {
- "x": 210,
- "y": 70,
- "fileNum": 4163,
- "id": 21904,
- "width": 70,
- "height": 70
- },
- {
- "x": 280,
- "y": 70,
- "fileNum": 4163,
- "id": 21905,
- "width": 70,
- "height": 70
- },
- {
- "x": 350,
- "y": 70,
- "fileNum": 4163,
- "id": 21906,
- "width": 70,
- "height": 70
- },
- {
- "y": 140,
- "fileNum": 4163,
- "id": 21907,
- "width": 70,
- "height": 70
- },
- {
- "x": 70,
- "y": 140,
- "fileNum": 4163,
- "id": 21908,
- "width": 70,
- "height": 70
- },
- {
- "x": 140,
- "y": 140,
- "fileNum": 4163,
- "id": 21909,
- "width": 70,
- "height": 70
- },
- {
- "x": 210,
- "y": 140,
- "fileNum": 4163,
- "id": 21910,
- "width": 70,
- "height": 70
- },
- {
- "x": 280,
- "y": 140,
- "fileNum": 4163,
- "id": 21911,
- "width": 70,
- "height": 70
- },
- {
- "x": 350,
- "y": 140,
- "fileNum": 4163,
- "id": 21912,
- "width": 70,
- "height": 70
- },
- {
- "y": 210,
- "fileNum": 4163,
- "id": 21913,
- "width": 70,
- "height": 70
- },
- {
- "x": 70,
- "y": 210,
- "fileNum": 4163,
- "id": 21914,
- "width": 70,
- "height": 70
- },
- {
- "x": 140,
- "y": 210,
- "fileNum": 4163,
- "id": 21915,
- "width": 70,
- "height": 70
- },
- {
- "x": 210,
- "y": 210,
- "fileNum": 4163,
- "id": 21916,
- "width": 70,
- "height": 70
- },
- {
- "x": 280,
- "y": 210,
- "fileNum": 4163,
- "id": 21917,
- "width": 70,
- "height": 70
- },
- {
- "x": 350,
- "y": 210,
- "fileNum": 4163,
- "id": 21918,
- "width": 70,
- "height": 70
- },
- {
- "fileNum": 21010,
- "id": 21923,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 21010,
- "id": 21924,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 21010,
- "id": 21925,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 21010,
- "id": 21926,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 21010,
- "id": 21927,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 21010,
- "id": 21928,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 21010,
- "id": 21929,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 21010,
- "id": 21930,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 21010,
- "id": 21931,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 21010,
- "id": 21932,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 21010,
- "id": 21933,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 21010,
- "id": 21934,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 21010,
- "id": 21935,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 21010,
- "id": 21936,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 21010,
- "id": 21937,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 21010,
- "id": 21938,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 21010,
- "id": 21939,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 21010,
- "id": 21940,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 21010,
- "id": 21941,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 21010,
- "id": 21942,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 21010,
- "id": 21943,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 21010,
- "id": 21944,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 4164,
- "id": 21949,
- "width": 52,
- "height": 40
- },
- {
- "x": 52,
- "fileNum": 4164,
- "id": 21950,
- "width": 52,
- "height": 40
- },
- {
- "x": 104,
- "fileNum": 4164,
- "id": 21951,
- "width": 52,
- "height": 40
- },
- {
- "x": 156,
- "fileNum": 4164,
- "id": 21952,
- "width": 50,
- "height": 40
- },
- {
- "y": 40,
- "fileNum": 4164,
- "id": 21953,
- "width": 52,
- "height": 40
- },
- {
- "x": 52,
- "y": 40,
- "fileNum": 4164,
- "id": 21954,
- "width": 52,
- "height": 40
- },
- {
- "x": 104,
- "y": 40,
- "fileNum": 4164,
- "id": 21955,
- "width": 52,
- "height": 40
- },
- {
- "x": 156,
- "y": 40,
- "fileNum": 4164,
- "id": 21956,
- "width": 50,
- "height": 40
- },
- {
- "y": 80,
- "fileNum": 4164,
- "id": 21957,
- "width": 52,
- "height": 40
- },
- {
- "x": 52,
- "y": 80,
- "fileNum": 4164,
- "id": 21958,
- "width": 52,
- "height": 40
- },
- {
- "x": 104,
- "y": 80,
- "fileNum": 4164,
- "id": 21959,
- "width": 52,
- "height": 40
- },
- {
- "x": 156,
- "y": 80,
- "fileNum": 4164,
- "id": 21960,
- "width": 50,
- "height": 40
- },
- {
- "y": 120,
- "fileNum": 4164,
- "id": 21961,
- "width": 52,
- "height": 38
- },
- {
- "x": 52,
- "y": 120,
- "fileNum": 4164,
- "id": 21962,
- "width": 52,
- "height": 38
- },
- {
- "x": 104,
- "y": 120,
- "fileNum": 4164,
- "id": 21963,
- "width": 52,
- "height": 38
- },
- {
- "x": 156,
- "y": 120,
- "fileNum": 4164,
- "id": 21964,
- "width": 50,
- "height": 38
- },
- {
- "fileNum": 7060,
- "id": 21969,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7061,
- "id": 21970,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7062,
- "id": 21971,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7063,
- "id": 21972,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7064,
- "id": 21973,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7065,
- "id": 21974,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7066,
- "id": 21975,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7067,
- "id": 21976,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7068,
- "id": 21977,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7069,
- "id": 21978,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7070,
- "id": 21979,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 7071,
- "id": 21980,
- "width": 128,
- "height": 64
- },
- {
- "fileNum": 16073,
- "id": 21981,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16073,
- "id": 21982,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16073,
- "id": 21983,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16073,
- "id": 21984,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16073,
- "id": 21985,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16073,
- "id": 21986,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16073,
- "id": 21987,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16073,
- "id": 21988,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16073,
- "id": 21989,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16073,
- "id": 21990,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16073,
- "id": 21991,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16073,
- "id": 21992,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16073,
- "id": 21993,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16073,
- "id": 21994,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16073,
- "id": 21995,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16073,
- "id": 21996,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16073,
- "id": 21997,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16073,
- "id": 21998,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16073,
- "id": 21999,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16073,
- "id": 22000,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16073,
- "id": 22001,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16073,
- "id": 22002,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16074,
- "id": 22007,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16074,
- "id": 22008,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16074,
- "id": 22009,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16074,
- "id": 22010,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16074,
- "id": 22011,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16074,
- "id": 22012,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16074,
- "id": 22013,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16074,
- "id": 22014,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16074,
- "id": 22015,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16074,
- "id": 22016,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16074,
- "id": 22017,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16074,
- "id": 22018,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16074,
- "id": 22019,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16074,
- "id": 22020,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16074,
- "id": 22021,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16074,
- "id": 22022,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16074,
- "id": 22023,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16074,
- "id": 22024,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16074,
- "id": 22025,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16074,
- "id": 22026,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16074,
- "id": 22027,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16074,
- "id": 22028,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16075,
- "id": 22033,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 18025,
- "id": 22034,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 18026,
- "id": 22035,
- "width": 34,
- "height": 56
- },
- {
- "x": 34,
- "fileNum": 18026,
- "id": 22036,
- "width": 34,
- "height": 56
- },
- {
- "x": 68,
- "fileNum": 18026,
- "id": 22037,
- "width": 34,
- "height": 56
- },
- {
- "x": 102,
- "fileNum": 18026,
- "id": 22038,
- "width": 34,
- "height": 56
- },
- {
- "fileNum": 674,
- "id": 22039,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 675,
- "id": 22040,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 675,
- "id": 22041,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 675,
- "id": 22042,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 675,
- "id": 22043,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 675,
- "id": 22044,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 675,
- "id": 22045,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 675,
- "id": 22046,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 675,
- "id": 22047,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 675,
- "id": 22048,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 675,
- "id": 22049,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 675,
- "id": 22050,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 675,
- "id": 22051,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 675,
- "id": 22052,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 675,
- "id": 22053,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 675,
- "id": 22054,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 675,
- "id": 22055,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 675,
- "id": 22056,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 675,
- "id": 22057,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 675,
- "id": 22058,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 675,
- "id": 22059,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 675,
- "id": 22060,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 675,
- "id": 22061,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 11049,
- "id": 22066,
- "width": 64,
- "height": 192
- },
- {
- "fileNum": 15228,
- "id": 22067,
- "width": 532,
- "height": 512
- },
- {
- "x": 532,
- "fileNum": 15228,
- "id": 22068,
- "width": 532,
- "height": 512
- },
- {
- "x": 1064,
- "fileNum": 15228,
- "id": 22069,
- "width": 532,
- "height": 512
- },
- {
- "fileNum": 11048,
- "id": 22071,
- "width": 192,
- "height": 64
- },
- {
- "fileNum": 11050,
- "id": 22072,
- "width": 64,
- "height": 192
- },
- {
- "fileNum": 11051,
- "id": 22073,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 11051,
- "id": 22074,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11052,
- "id": 22075,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 11052,
- "id": 22076,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 11053,
- "id": 22077,
- "width": 192,
- "height": 64
- },
- {
- "fileNum": 8207,
- "id": 22078,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 8207,
- "id": 22079,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 8207,
- "id": 22080,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 8207,
- "id": 22081,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 8207,
- "id": 22082,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 8207,
- "id": 22083,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 8207,
- "id": 22084,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 8207,
- "id": 22085,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 8207,
- "id": 22086,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 8207,
- "id": 22087,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 8207,
- "id": 22088,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 8207,
- "id": 22089,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 8207,
- "id": 22090,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 8207,
- "id": 22091,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 8207,
- "id": 22092,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 8207,
- "id": 22093,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 9007,
- "id": 22095,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 9007,
- "id": 22096,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 9007,
- "id": 22097,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 9007,
- "id": 22098,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 9007,
- "id": 22099,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 9007,
- "id": 22100,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 9007,
- "id": 22101,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 9007,
- "id": 22102,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 9007,
- "id": 22103,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 9007,
- "id": 22104,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 9007,
- "id": 22105,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 9007,
- "id": 22106,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 9007,
- "id": 22107,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 9007,
- "id": 22108,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 9007,
- "id": 22109,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 9007,
- "id": 22110,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 9007,
- "id": 22111,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 9007,
- "id": 22112,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 9007,
- "id": 22113,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 9007,
- "id": 22114,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 9007,
- "id": 22115,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 9007,
- "id": 22116,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 9007,
- "id": 22117,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 9007,
- "id": 22118,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 9007,
- "id": 22119,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 9007,
- "id": 22120,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 9007,
- "id": 22121,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 9007,
- "id": 22122,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 9007,
- "id": 22123,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 9007,
- "id": 22124,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 9007,
- "id": 22125,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 9007,
- "id": 22126,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 9007,
- "id": 22127,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 9007,
- "id": 22128,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 9007,
- "id": 22129,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 9007,
- "id": 22130,
- "width": 64,
- "height": 64
- },
- {
- "y": 256,
- "fileNum": 9007,
- "id": 22131,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 256,
- "fileNum": 9007,
- "id": 22132,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 256,
- "fileNum": 9007,
- "id": 22133,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 256,
- "fileNum": 9007,
- "id": 22134,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 256,
- "fileNum": 9007,
- "id": 22135,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 256,
- "fileNum": 9007,
- "id": 22136,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 256,
- "fileNum": 9007,
- "id": 22137,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 256,
- "fileNum": 9007,
- "id": 22138,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 256,
- "fileNum": 9007,
- "id": 22139,
- "width": 64,
- "height": 64
- },
- {
- "y": 320,
- "fileNum": 9007,
- "id": 22140,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 320,
- "fileNum": 9007,
- "id": 22141,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 320,
- "fileNum": 9007,
- "id": 22142,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 320,
- "fileNum": 9007,
- "id": 22143,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 320,
- "fileNum": 9007,
- "id": 22144,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 320,
- "fileNum": 9007,
- "id": 22145,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 320,
- "fileNum": 9007,
- "id": 22146,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 320,
- "fileNum": 9007,
- "id": 22147,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 320,
- "fileNum": 9007,
- "id": 22148,
- "width": 64,
- "height": 64
- },
- {
- "y": 384,
- "fileNum": 9007,
- "id": 22149,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 384,
- "fileNum": 9007,
- "id": 22150,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 384,
- "fileNum": 9007,
- "id": 22151,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 384,
- "fileNum": 9007,
- "id": 22152,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 384,
- "fileNum": 9007,
- "id": 22153,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 384,
- "fileNum": 9007,
- "id": 22154,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 384,
- "fileNum": 9007,
- "id": 22155,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 384,
- "fileNum": 9007,
- "id": 22156,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 384,
- "fileNum": 9007,
- "id": 22157,
- "width": 64,
- "height": 64
- },
- {
- "y": 448,
- "fileNum": 9007,
- "id": 22158,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 448,
- "fileNum": 9007,
- "id": 22159,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 448,
- "fileNum": 9007,
- "id": 22160,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 448,
- "fileNum": 9007,
- "id": 22161,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 448,
- "fileNum": 9007,
- "id": 22162,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 448,
- "fileNum": 9007,
- "id": 22163,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 448,
- "fileNum": 9007,
- "id": 22164,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 448,
- "fileNum": 9007,
- "id": 22165,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 448,
- "fileNum": 9007,
- "id": 22166,
- "width": 64,
- "height": 64
- },
- {
- "y": 512,
- "fileNum": 9007,
- "id": 22167,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 512,
- "fileNum": 9007,
- "id": 22168,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 512,
- "fileNum": 9007,
- "id": 22169,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 512,
- "fileNum": 9007,
- "id": 22170,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 512,
- "fileNum": 9007,
- "id": 22171,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 512,
- "fileNum": 9007,
- "id": 22172,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 512,
- "fileNum": 9007,
- "id": 22173,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 512,
- "fileNum": 9007,
- "id": 22174,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 512,
- "fileNum": 9007,
- "id": 22175,
- "width": 64,
- "height": 64
- },
- {
- "y": 576,
- "fileNum": 9007,
- "id": 22176,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 576,
- "fileNum": 9007,
- "id": 22177,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 576,
- "fileNum": 9007,
- "id": 22178,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 576,
- "fileNum": 9007,
- "id": 22179,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 576,
- "fileNum": 9007,
- "id": 22180,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 576,
- "fileNum": 9007,
- "id": 22181,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 576,
- "fileNum": 9007,
- "id": 22182,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 576,
- "fileNum": 9007,
- "id": 22183,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 576,
- "fileNum": 9007,
- "id": 22184,
- "width": 64,
- "height": 64
- },
- {
- "y": 640,
- "fileNum": 9007,
- "id": 22185,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 640,
- "fileNum": 9007,
- "id": 22186,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 640,
- "fileNum": 9007,
- "id": 22187,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 640,
- "fileNum": 9007,
- "id": 22188,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 640,
- "fileNum": 9007,
- "id": 22189,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 640,
- "fileNum": 9007,
- "id": 22190,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 640,
- "fileNum": 9007,
- "id": 22191,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 640,
- "fileNum": 9007,
- "id": 22192,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 640,
- "fileNum": 9007,
- "id": 22193,
- "width": 64,
- "height": 64
- },
- {
- "y": 704,
- "fileNum": 9007,
- "id": 22194,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 704,
- "fileNum": 9007,
- "id": 22195,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 704,
- "fileNum": 9007,
- "id": 22196,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 704,
- "fileNum": 9007,
- "id": 22197,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 704,
- "fileNum": 9007,
- "id": 22198,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 704,
- "fileNum": 9007,
- "id": 22199,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 704,
- "fileNum": 9007,
- "id": 22200,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 704,
- "fileNum": 9007,
- "id": 22201,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 704,
- "fileNum": 9007,
- "id": 22202,
- "width": 64,
- "height": 64
- },
- {
- "y": 768,
- "fileNum": 9007,
- "id": 22203,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 768,
- "fileNum": 9007,
- "id": 22204,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 768,
- "fileNum": 9007,
- "id": 22205,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 768,
- "fileNum": 9007,
- "id": 22206,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 768,
- "fileNum": 9007,
- "id": 22207,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 768,
- "fileNum": 9007,
- "id": 22208,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 768,
- "fileNum": 9007,
- "id": 22209,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 768,
- "fileNum": 9007,
- "id": 22210,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 768,
- "fileNum": 9007,
- "id": 22211,
- "width": 16,
- "height": 64
- },
- {
- "fileNum": 4165,
- "id": 22212,
- "width": 50,
- "height": 116
- },
- {
- "x": 50,
- "fileNum": 4165,
- "id": 22213,
- "width": 50,
- "height": 116
- },
- {
- "x": 100,
- "fileNum": 4165,
- "id": 22214,
- "width": 50,
- "height": 116
- },
- {
- "x": 150,
- "fileNum": 4165,
- "id": 22215,
- "width": 50,
- "height": 116
- },
- {
- "x": 200,
- "fileNum": 4165,
- "id": 22216,
- "width": 50,
- "height": 116
- },
- {
- "x": 250,
- "fileNum": 4165,
- "id": 22217,
- "width": 50,
- "height": 116
- },
- {
- "y": 116,
- "fileNum": 4165,
- "id": 22218,
- "width": 50,
- "height": 116
- },
- {
- "x": 50,
- "y": 116,
- "fileNum": 4165,
- "id": 22219,
- "width": 50,
- "height": 116
- },
- {
- "x": 100,
- "y": 116,
- "fileNum": 4165,
- "id": 22220,
- "width": 50,
- "height": 116
- },
- {
- "x": 150,
- "y": 116,
- "fileNum": 4165,
- "id": 22221,
- "width": 50,
- "height": 116
- },
- {
- "x": 200,
- "y": 116,
- "fileNum": 4165,
- "id": 22222,
- "width": 50,
- "height": 116
- },
- {
- "x": 250,
- "y": 116,
- "fileNum": 4165,
- "id": 22223,
- "width": 50,
- "height": 116
- },
- {
- "y": 232,
- "fileNum": 4165,
- "id": 22224,
- "width": 50,
- "height": 116
- },
- {
- "x": 50,
- "y": 232,
- "fileNum": 4165,
- "id": 22225,
- "width": 50,
- "height": 116
- },
- {
- "x": 100,
- "y": 232,
- "fileNum": 4165,
- "id": 22226,
- "width": 50,
- "height": 116
- },
- {
- "x": 150,
- "y": 232,
- "fileNum": 4165,
- "id": 22227,
- "width": 50,
- "height": 116
- },
- {
- "x": 200,
- "y": 232,
- "fileNum": 4165,
- "id": 22228,
- "width": 50,
- "height": 116
- },
- {
- "y": 348,
- "fileNum": 4165,
- "id": 22229,
- "width": 50,
- "height": 116
- },
- {
- "x": 50,
- "y": 348,
- "fileNum": 4165,
- "id": 22230,
- "width": 50,
- "height": 116
- },
- {
- "x": 100,
- "y": 348,
- "fileNum": 4165,
- "id": 22231,
- "width": 50,
- "height": 116
- },
- {
- "x": 150,
- "y": 348,
- "fileNum": 4165,
- "id": 22232,
- "width": 50,
- "height": 116
- },
- {
- "x": 200,
- "y": 348,
- "fileNum": 4165,
- "id": 22233,
- "width": 50,
- "height": 116
- },
- {
- "fileNum": 9022,
- "id": 22238,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 9022,
- "id": 22239,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 9022,
- "id": 22240,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 9022,
- "id": 22241,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 9022,
- "id": 22242,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 9022,
- "id": 22243,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 9022,
- "id": 22244,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 9022,
- "id": 22245,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 9022,
- "id": 22246,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 9022,
- "id": 22247,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 9022,
- "id": 22248,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 9022,
- "id": 22249,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 9022,
- "id": 22250,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 9022,
- "id": 22251,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 9022,
- "id": 22252,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 9022,
- "id": 22253,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 15230,
- "id": 22254,
- "width": 512,
- "height": 512
- },
- {
- "fileNum": 15231,
- "id": 22255,
- "width": 512,
- "height": 512
- },
- {
- "fileNum": 4166,
- "id": 22256,
- "width": 80,
- "height": 100
- },
- {
- "x": 80,
- "fileNum": 4166,
- "id": 22257,
- "width": 80,
- "height": 100
- },
- {
- "x": 160,
- "fileNum": 4166,
- "id": 22258,
- "width": 80,
- "height": 100
- },
- {
- "x": 240,
- "fileNum": 4166,
- "id": 22259,
- "width": 80,
- "height": 100
- },
- {
- "y": 100,
- "fileNum": 4166,
- "id": 22260,
- "width": 80,
- "height": 100
- },
- {
- "x": 80,
- "y": 100,
- "fileNum": 4166,
- "id": 22261,
- "width": 80,
- "height": 100
- },
- {
- "x": 160,
- "y": 100,
- "fileNum": 4166,
- "id": 22262,
- "width": 80,
- "height": 100
- },
- {
- "x": 240,
- "y": 100,
- "fileNum": 4166,
- "id": 22263,
- "width": 80,
- "height": 100
- },
- {
- "y": 200,
- "fileNum": 4166,
- "id": 22264,
- "width": 80,
- "height": 100
- },
- {
- "fileNum": 16076,
- "id": 22266,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16076,
- "id": 22267,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16076,
- "id": 22268,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16076,
- "id": 22269,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16076,
- "id": 22270,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16076,
- "id": 22271,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16076,
- "id": 22272,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16076,
- "id": 22273,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16076,
- "id": 22274,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16076,
- "id": 22275,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16076,
- "id": 22276,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16076,
- "id": 22277,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16076,
- "id": 22278,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16076,
- "id": 22279,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16076,
- "id": 22280,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16076,
- "id": 22281,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16076,
- "id": 22282,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16076,
- "id": 22283,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16076,
- "id": 22284,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16076,
- "id": 22285,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16076,
- "id": 22286,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16076,
- "id": 22287,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16077,
- "id": 22292,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16077,
- "id": 22293,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16077,
- "id": 22294,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16077,
- "id": 22295,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16077,
- "id": 22296,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16077,
- "id": 22297,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16077,
- "id": 22298,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16077,
- "id": 22299,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16077,
- "id": 22300,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16077,
- "id": 22301,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16077,
- "id": 22302,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16077,
- "id": 22303,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16077,
- "id": 22304,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16077,
- "id": 22305,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16077,
- "id": 22306,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16077,
- "id": 22307,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16077,
- "id": 22308,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16077,
- "id": 22309,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16077,
- "id": 22310,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16077,
- "id": 22311,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16077,
- "id": 22312,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16077,
- "id": 22313,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16078,
- "id": 22318,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16078,
- "id": 22319,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16078,
- "id": 22320,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16078,
- "id": 22321,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16078,
- "id": 22322,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16078,
- "id": 22323,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16078,
- "id": 22324,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16078,
- "id": 22325,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16078,
- "id": 22326,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16078,
- "id": 22327,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16078,
- "id": 22328,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16078,
- "id": 22329,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16078,
- "id": 22330,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16078,
- "id": 22331,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16078,
- "id": 22332,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16078,
- "id": 22333,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16078,
- "id": 22334,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16078,
- "id": 22335,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16078,
- "id": 22336,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16078,
- "id": 22337,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16078,
- "id": 22338,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16078,
- "id": 22339,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16079,
- "id": 22344,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16079,
- "id": 22345,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16079,
- "id": 22346,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16079,
- "id": 22347,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16079,
- "id": 22348,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16079,
- "id": 22349,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16079,
- "id": 22350,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16079,
- "id": 22351,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16079,
- "id": 22352,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16079,
- "id": 22353,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16079,
- "id": 22354,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16079,
- "id": 22355,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16079,
- "id": 22356,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16079,
- "id": 22357,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16079,
- "id": 22358,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16079,
- "id": 22359,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16079,
- "id": 22360,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16079,
- "id": 22361,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16079,
- "id": 22362,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16079,
- "id": 22363,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16079,
- "id": 22364,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16079,
- "id": 22365,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16080,
- "id": 22370,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16080,
- "id": 22371,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16080,
- "id": 22372,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16080,
- "id": 22373,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16080,
- "id": 22374,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16080,
- "id": 22375,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16080,
- "id": 22376,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16080,
- "id": 22377,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16080,
- "id": 22378,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16080,
- "id": 22379,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16080,
- "id": 22380,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16080,
- "id": 22381,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16080,
- "id": 22382,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16080,
- "id": 22383,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16080,
- "id": 22384,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16080,
- "id": 22385,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16080,
- "id": 22386,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16080,
- "id": 22387,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16080,
- "id": 22388,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16080,
- "id": 22389,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16080,
- "id": 22390,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16080,
- "id": 22391,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16081,
- "id": 22396,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16081,
- "id": 22397,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16081,
- "id": 22398,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16081,
- "id": 22399,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16081,
- "id": 22400,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16081,
- "id": 22401,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16081,
- "id": 22402,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16081,
- "id": 22403,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16081,
- "id": 22404,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16081,
- "id": 22405,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16081,
- "id": 22406,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16081,
- "id": 22407,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16081,
- "id": 22408,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16081,
- "id": 22409,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16081,
- "id": 22410,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16081,
- "id": 22411,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16081,
- "id": 22412,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16081,
- "id": 22413,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16081,
- "id": 22414,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16081,
- "id": 22415,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16081,
- "id": 22416,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16081,
- "id": 22417,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16082,
- "id": 22422,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16082,
- "id": 22423,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16082,
- "id": 22424,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16082,
- "id": 22425,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16082,
- "id": 22426,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16082,
- "id": 22427,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16082,
- "id": 22428,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16082,
- "id": 22429,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16082,
- "id": 22430,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16082,
- "id": 22431,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16082,
- "id": 22432,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16082,
- "id": 22433,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16082,
- "id": 22434,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16082,
- "id": 22435,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16082,
- "id": 22436,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16082,
- "id": 22437,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16082,
- "id": 22438,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16082,
- "id": 22439,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16082,
- "id": 22440,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16082,
- "id": 22441,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16082,
- "id": 22442,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16082,
- "id": 22443,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16083,
- "id": 22448,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16083,
- "id": 22449,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16083,
- "id": 22450,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16083,
- "id": 22451,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16083,
- "id": 22452,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16083,
- "id": 22453,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16083,
- "id": 22454,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16083,
- "id": 22455,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16083,
- "id": 22456,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16083,
- "id": 22457,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16083,
- "id": 22458,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16083,
- "id": 22459,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16083,
- "id": 22460,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16083,
- "id": 22461,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16083,
- "id": 22462,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16083,
- "id": 22463,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16083,
- "id": 22464,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16083,
- "id": 22465,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16083,
- "id": 22466,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16083,
- "id": 22467,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16083,
- "id": 22468,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16083,
- "id": 22469,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 7072,
- "id": 22474,
- "width": 320,
- "height": 256
- },
- {
- "fileNum": 12093,
- "id": 22475,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "fileNum": 12093,
- "id": 22476,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "fileNum": 12093,
- "id": 22477,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "fileNum": 12093,
- "id": 22478,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "fileNum": 12093,
- "id": 22479,
- "width": 64,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 12093,
- "id": 22480,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 64,
- "fileNum": 12093,
- "id": 22481,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 64,
- "fileNum": 12093,
- "id": 22482,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 64,
- "fileNum": 12093,
- "id": 22483,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 64,
- "fileNum": 12093,
- "id": 22484,
- "width": 64,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 12093,
- "id": 22485,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 128,
- "fileNum": 12093,
- "id": 22486,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 128,
- "fileNum": 12093,
- "id": 22487,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 128,
- "fileNum": 12093,
- "id": 22488,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 128,
- "fileNum": 12093,
- "id": 22489,
- "width": 64,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 12093,
- "id": 22490,
- "width": 64,
- "height": 64
- },
- {
- "x": 64,
- "y": 192,
- "fileNum": 12093,
- "id": 22491,
- "width": 64,
- "height": 64
- },
- {
- "x": 128,
- "y": 192,
- "fileNum": 12093,
- "id": 22492,
- "width": 64,
- "height": 64
- },
- {
- "x": 192,
- "y": 192,
- "fileNum": 12093,
- "id": 22493,
- "width": 64,
- "height": 64
- },
- {
- "x": 256,
- "y": 192,
- "fileNum": 12093,
- "id": 22494,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "fileNum": 12093,
- "id": 22495,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "fileNum": 12093,
- "id": 22496,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "fileNum": 12093,
- "id": 22497,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "fileNum": 12093,
- "id": 22498,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "fileNum": 12093,
- "id": 22499,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 64,
- "fileNum": 12093,
- "id": 22500,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 64,
- "fileNum": 12093,
- "id": 22501,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 64,
- "fileNum": 12093,
- "id": 22502,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 64,
- "fileNum": 12093,
- "id": 22503,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 64,
- "fileNum": 12093,
- "id": 22504,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 128,
- "fileNum": 12093,
- "id": 22505,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 128,
- "fileNum": 12093,
- "id": 22506,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 128,
- "fileNum": 12093,
- "id": 22507,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 128,
- "fileNum": 12093,
- "id": 22508,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 128,
- "fileNum": 12093,
- "id": 22509,
- "width": 64,
- "height": 64
- },
- {
- "x": 320,
- "y": 192,
- "fileNum": 12093,
- "id": 22510,
- "width": 64,
- "height": 64
- },
- {
- "x": 384,
- "y": 192,
- "fileNum": 12093,
- "id": 22511,
- "width": 64,
- "height": 64
- },
- {
- "x": 448,
- "y": 192,
- "fileNum": 12093,
- "id": 22512,
- "width": 64,
- "height": 64
- },
- {
- "x": 512,
- "y": 192,
- "fileNum": 12093,
- "id": 22513,
- "width": 64,
- "height": 64
- },
- {
- "x": 576,
- "y": 192,
- "fileNum": 12093,
- "id": 22514,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16085,
- "id": 22515,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16085,
- "id": 22516,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16085,
- "id": 22517,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16085,
- "id": 22518,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16085,
- "id": 22519,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16085,
- "id": 22520,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16085,
- "id": 22521,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16085,
- "id": 22522,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16085,
- "id": 22523,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16085,
- "id": 22524,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16085,
- "id": 22525,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16085,
- "id": 22526,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16085,
- "id": 22527,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16085,
- "id": 22528,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16085,
- "id": 22529,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16085,
- "id": 22530,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16085,
- "id": 22531,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16085,
- "id": 22532,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16085,
- "id": 22533,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16085,
- "id": 22534,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16085,
- "id": 22535,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16085,
- "id": 22536,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16086,
- "id": 22541,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16086,
- "id": 22542,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16086,
- "id": 22543,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16086,
- "id": 22544,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16086,
- "id": 22545,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16086,
- "id": 22546,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16086,
- "id": 22547,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16086,
- "id": 22548,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16086,
- "id": 22549,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16086,
- "id": 22550,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16086,
- "id": 22551,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16086,
- "id": 22552,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16086,
- "id": 22553,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16086,
- "id": 22554,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16086,
- "id": 22555,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16086,
- "id": 22556,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16086,
- "id": 22557,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16086,
- "id": 22558,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16086,
- "id": 22559,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16086,
- "id": 22560,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16086,
- "id": 22561,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16086,
- "id": 22562,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16087,
- "id": 22567,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16087,
- "id": 22568,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16087,
- "id": 22569,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16087,
- "id": 22570,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16087,
- "id": 22571,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16087,
- "id": 22572,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16087,
- "id": 22573,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16087,
- "id": 22574,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16087,
- "id": 22575,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16087,
- "id": 22576,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16087,
- "id": 22577,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16087,
- "id": 22578,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16087,
- "id": 22579,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16087,
- "id": 22580,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16087,
- "id": 22581,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16087,
- "id": 22582,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16087,
- "id": 22583,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16087,
- "id": 22584,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16087,
- "id": 22585,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16087,
- "id": 22586,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16087,
- "id": 22587,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16087,
- "id": 22588,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16088,
- "id": 22593,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16088,
- "id": 22594,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16088,
- "id": 22595,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16088,
- "id": 22596,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16088,
- "id": 22597,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16088,
- "id": 22598,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16088,
- "id": 22599,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16088,
- "id": 22600,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16088,
- "id": 22601,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16088,
- "id": 22602,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16088,
- "id": 22603,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16088,
- "id": 22604,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16088,
- "id": 22605,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16088,
- "id": 22606,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16088,
- "id": 22607,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16088,
- "id": 22608,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16088,
- "id": 22609,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16088,
- "id": 22610,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16088,
- "id": 22611,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16088,
- "id": 22612,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16088,
- "id": 22613,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16088,
- "id": 22614,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16090,
- "id": 22619,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16090,
- "id": 22620,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16090,
- "id": 22621,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16090,
- "id": 22622,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16090,
- "id": 22623,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16090,
- "id": 22624,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16090,
- "id": 22625,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16090,
- "id": 22626,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16090,
- "id": 22627,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16090,
- "id": 22628,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16090,
- "id": 22629,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16090,
- "id": 22630,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16090,
- "id": 22631,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16090,
- "id": 22632,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16090,
- "id": 22633,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16090,
- "id": 22634,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16090,
- "id": 22635,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16090,
- "id": 22636,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16090,
- "id": 22637,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16090,
- "id": 22638,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16090,
- "id": 22639,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16090,
- "id": 22640,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16091,
- "id": 22645,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16091,
- "id": 22646,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16091,
- "id": 22647,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16091,
- "id": 22648,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16091,
- "id": 22649,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16091,
- "id": 22650,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16091,
- "id": 22651,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16091,
- "id": 22652,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16091,
- "id": 22653,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16091,
- "id": 22654,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16091,
- "id": 22655,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16091,
- "id": 22656,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16091,
- "id": 22657,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16091,
- "id": 22658,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16091,
- "id": 22659,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16091,
- "id": 22660,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16091,
- "id": 22661,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16091,
- "id": 22662,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16091,
- "id": 22663,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16091,
- "id": 22664,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16091,
- "id": 22665,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16091,
- "id": 22666,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16092,
- "id": 22671,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16092,
- "id": 22672,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16092,
- "id": 22673,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16092,
- "id": 22674,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16092,
- "id": 22675,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16092,
- "id": 22676,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16092,
- "id": 22677,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16092,
- "id": 22678,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16092,
- "id": 22679,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16092,
- "id": 22680,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16092,
- "id": 22681,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16092,
- "id": 22682,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16092,
- "id": 22683,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16092,
- "id": 22684,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16092,
- "id": 22685,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16092,
- "id": 22686,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16092,
- "id": 22687,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16092,
- "id": 22688,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16092,
- "id": 22689,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16092,
- "id": 22690,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16092,
- "id": 22691,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16092,
- "id": 22692,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16093,
- "id": 22697,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16093,
- "id": 22698,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16093,
- "id": 22699,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16093,
- "id": 22700,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16093,
- "id": 22701,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16093,
- "id": 22702,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16093,
- "id": 22703,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16093,
- "id": 22704,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16093,
- "id": 22705,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16093,
- "id": 22706,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16093,
- "id": 22707,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16093,
- "id": 22708,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16093,
- "id": 22709,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16093,
- "id": 22710,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16093,
- "id": 22711,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16093,
- "id": 22712,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16093,
- "id": 22713,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16093,
- "id": 22714,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16093,
- "id": 22715,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16093,
- "id": 22716,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16093,
- "id": 22717,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16093,
- "id": 22718,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16094,
- "id": 22723,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16095,
- "id": 22724,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16095,
- "id": 22725,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16095,
- "id": 22726,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16095,
- "id": 22727,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16095,
- "id": 22728,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16095,
- "id": 22729,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16095,
- "id": 22730,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16095,
- "id": 22731,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16095,
- "id": 22732,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16095,
- "id": 22733,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16095,
- "id": 22734,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16095,
- "id": 22735,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16095,
- "id": 22736,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16095,
- "id": 22737,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16095,
- "id": 22738,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16095,
- "id": 22739,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16095,
- "id": 22740,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16095,
- "id": 22741,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16095,
- "id": 22742,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16095,
- "id": 22743,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16095,
- "id": 22744,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16095,
- "id": 22745,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16096,
- "id": 22750,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16096,
- "id": 22751,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16096,
- "id": 22752,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16096,
- "id": 22753,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16096,
- "id": 22754,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16096,
- "id": 22755,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16096,
- "id": 22756,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16096,
- "id": 22757,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16096,
- "id": 22758,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16096,
- "id": 22759,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16096,
- "id": 22760,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16096,
- "id": 22761,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16096,
- "id": 22762,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16096,
- "id": 22763,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16096,
- "id": 22764,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16096,
- "id": 22765,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16096,
- "id": 22766,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16096,
- "id": 22767,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16096,
- "id": 22768,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16096,
- "id": 22769,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16096,
- "id": 22770,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16096,
- "id": 22771,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16097,
- "id": 22776,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16097,
- "id": 22777,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16097,
- "id": 22778,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16097,
- "id": 22779,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16097,
- "id": 22780,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16097,
- "id": 22781,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16097,
- "id": 22782,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16097,
- "id": 22783,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16097,
- "id": 22784,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16097,
- "id": 22785,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16097,
- "id": 22786,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16097,
- "id": 22787,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16097,
- "id": 22788,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16097,
- "id": 22789,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16097,
- "id": 22790,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16097,
- "id": 22791,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16097,
- "id": 22792,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16097,
- "id": 22793,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16097,
- "id": 22794,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16097,
- "id": 22795,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16097,
- "id": 22796,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16097,
- "id": 22797,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 2229,
- "id": 22802,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2229,
- "id": 22803,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2229,
- "id": 22804,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2229,
- "id": 22805,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2230,
- "id": 22806,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2230,
- "id": 22807,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2230,
- "id": 22808,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2230,
- "id": 22809,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2232,
- "id": 22810,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2232,
- "id": 22811,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2232,
- "id": 22812,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2232,
- "id": 22813,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2233,
- "id": 22814,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2233,
- "id": 22815,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2233,
- "id": 22816,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2233,
- "id": 22817,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2231,
- "id": 22818,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2231,
- "id": 22819,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2231,
- "id": 22820,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2231,
- "id": 22821,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2234,
- "id": 22822,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2234,
- "id": 22823,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2234,
- "id": 22824,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2234,
- "id": 22825,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 2235,
- "id": 22826,
- "width": 34,
- "height": 100
- },
- {
- "x": 34,
- "fileNum": 2235,
- "id": 22827,
- "width": 34,
- "height": 100
- },
- {
- "x": 68,
- "fileNum": 2235,
- "id": 22828,
- "width": 34,
- "height": 100
- },
- {
- "x": 102,
- "fileNum": 2235,
- "id": 22829,
- "width": 34,
- "height": 100
- },
- {
- "fileNum": 4167,
- "id": 22830,
- "width": 126,
- "height": 140
- },
- {
- "x": 126,
- "fileNum": 4167,
- "id": 22831,
- "width": 126,
- "height": 140
- },
- {
- "x": 252,
- "fileNum": 4167,
- "id": 22832,
- "width": 126,
- "height": 140
- },
- {
- "x": 378,
- "fileNum": 4167,
- "id": 22833,
- "width": 126,
- "height": 140
- },
- {
- "x": 504,
- "fileNum": 4167,
- "id": 22834,
- "width": 126,
- "height": 140
- },
- {
- "x": 630,
- "fileNum": 4167,
- "id": 22835,
- "width": 126,
- "height": 140
- },
- {
- "x": 756,
- "fileNum": 4167,
- "id": 22836,
- "width": 126,
- "height": 140
- },
- {
- "x": 882,
- "fileNum": 4167,
- "id": 22837,
- "width": 126,
- "height": 140
- },
- {
- "y": 140,
- "fileNum": 4167,
- "id": 22838,
- "width": 126,
- "height": 140
- },
- {
- "x": 126,
- "y": 140,
- "fileNum": 4167,
- "id": 22839,
- "width": 126,
- "height": 140
- },
- {
- "x": 252,
- "y": 140,
- "fileNum": 4167,
- "id": 22840,
- "width": 126,
- "height": 140
- },
- {
- "x": 378,
- "y": 140,
- "fileNum": 4167,
- "id": 22841,
- "width": 126,
- "height": 140
- },
- {
- "x": 504,
- "y": 140,
- "fileNum": 4167,
- "id": 22842,
- "width": 126,
- "height": 140
- },
- {
- "x": 630,
- "y": 140,
- "fileNum": 4167,
- "id": 22843,
- "width": 126,
- "height": 140
- },
- {
- "x": 756,
- "y": 140,
- "fileNum": 4167,
- "id": 22844,
- "width": 126,
- "height": 140
- },
- {
- "x": 882,
- "y": 140,
- "fileNum": 4167,
- "id": 22845,
- "width": 126,
- "height": 140
- },
- {
- "y": 280,
- "fileNum": 4167,
- "id": 22846,
- "width": 126,
- "height": 140
- },
- {
- "x": 126,
- "y": 280,
- "fileNum": 4167,
- "id": 22847,
- "width": 126,
- "height": 140
- },
- {
- "x": 252,
- "y": 280,
- "fileNum": 4167,
- "id": 22848,
- "width": 126,
- "height": 140
- },
- {
- "x": 378,
- "y": 280,
- "fileNum": 4167,
- "id": 22849,
- "width": 126,
- "height": 140
- },
- {
- "x": 504,
- "y": 280,
- "fileNum": 4167,
- "id": 22850,
- "width": 126,
- "height": 140
- },
- {
- "x": 630,
- "y": 280,
- "fileNum": 4167,
- "id": 22851,
- "width": 126,
- "height": 140
- },
- {
- "x": 756,
- "y": 280,
- "fileNum": 4167,
- "id": 22852,
- "width": 126,
- "height": 140
- },
- {
- "x": 882,
- "y": 280,
- "fileNum": 4167,
- "id": 22853,
- "width": 126,
- "height": 140
- },
- {
- "y": 420,
- "fileNum": 4167,
- "id": 22854,
- "width": 126,
- "height": 140
- },
- {
- "x": 126,
- "y": 420,
- "fileNum": 4167,
- "id": 22855,
- "width": 126,
- "height": 140
- },
- {
- "x": 252,
- "y": 420,
- "fileNum": 4167,
- "id": 22856,
- "width": 126,
- "height": 140
- },
- {
- "x": 378,
- "y": 420,
- "fileNum": 4167,
- "id": 22857,
- "width": 126,
- "height": 140
- },
- {
- "x": 504,
- "y": 420,
- "fileNum": 4167,
- "id": 22858,
- "width": 126,
- "height": 140
- },
- {
- "x": 630,
- "y": 420,
- "fileNum": 4167,
- "id": 22859,
- "width": 126,
- "height": 140
- },
- {
- "x": 756,
- "y": 420,
- "fileNum": 4167,
- "id": 22860,
- "width": 126,
- "height": 140
- },
- {
- "x": 882,
- "y": 420,
- "fileNum": 4167,
- "id": 22861,
- "width": 126,
- "height": 140
- },
- {
- "fileNum": 4168,
- "id": 22866,
- "width": 250,
- "height": 250
- },
- {
- "x": 250,
- "fileNum": 4168,
- "id": 22867,
- "width": 250,
- "height": 250
- },
- {
- "x": 500,
- "fileNum": 4168,
- "id": 22868,
- "width": 250,
- "height": 250
- },
- {
- "x": 750,
- "fileNum": 4168,
- "id": 22869,
- "width": 250,
- "height": 250
- },
- {
- "x": 1000,
- "fileNum": 4168,
- "id": 22870,
- "width": 250,
- "height": 250
- },
- {
- "x": 1250,
- "fileNum": 4168,
- "id": 22871,
- "width": 250,
- "height": 250
- },
- {
- "x": 1500,
- "fileNum": 4168,
- "id": 22872,
- "width": 250,
- "height": 250
- },
- {
- "x": 1750,
- "fileNum": 4168,
- "id": 22873,
- "width": 250,
- "height": 250
- },
- {
- "y": 250,
- "fileNum": 4168,
- "id": 22874,
- "width": 250,
- "height": 250
- },
- {
- "x": 250,
- "y": 250,
- "fileNum": 4168,
- "id": 22875,
- "width": 250,
- "height": 250
- },
- {
- "x": 500,
- "y": 250,
- "fileNum": 4168,
- "id": 22876,
- "width": 250,
- "height": 250
- },
- {
- "x": 750,
- "y": 250,
- "fileNum": 4168,
- "id": 22877,
- "width": 250,
- "height": 250
- },
- {
- "x": 1000,
- "y": 250,
- "fileNum": 4168,
- "id": 22878,
- "width": 250,
- "height": 250
- },
- {
- "x": 1250,
- "y": 250,
- "fileNum": 4168,
- "id": 22879,
- "width": 250,
- "height": 250
- },
- {
- "x": 1500,
- "y": 250,
- "fileNum": 4168,
- "id": 22880,
- "width": 250,
- "height": 250
- },
- {
- "x": 1750,
- "y": 250,
- "fileNum": 4168,
- "id": 22881,
- "width": 250,
- "height": 250
- },
- {
- "y": 500,
- "fileNum": 4168,
- "id": 22882,
- "width": 250,
- "height": 250
- },
- {
- "x": 250,
- "y": 500,
- "fileNum": 4168,
- "id": 22883,
- "width": 250,
- "height": 250
- },
- {
- "x": 500,
- "y": 500,
- "fileNum": 4168,
- "id": 22884,
- "width": 250,
- "height": 250
- },
- {
- "x": 750,
- "y": 500,
- "fileNum": 4168,
- "id": 22885,
- "width": 250,
- "height": 250
- },
- {
- "x": 1000,
- "y": 500,
- "fileNum": 4168,
- "id": 22886,
- "width": 250,
- "height": 250
- },
- {
- "x": 1250,
- "y": 500,
- "fileNum": 4168,
- "id": 22887,
- "width": 250,
- "height": 250
- },
- {
- "x": 1500,
- "y": 500,
- "fileNum": 4168,
- "id": 22888,
- "width": 250,
- "height": 250
- },
- {
- "x": 1750,
- "y": 500,
- "fileNum": 4168,
- "id": 22889,
- "width": 250,
- "height": 250
- },
- {
- "y": 750,
- "fileNum": 4168,
- "id": 22890,
- "width": 250,
- "height": 250
- },
- {
- "x": 250,
- "y": 750,
- "fileNum": 4168,
- "id": 22891,
- "width": 250,
- "height": 250
- },
- {
- "x": 500,
- "y": 750,
- "fileNum": 4168,
- "id": 22892,
- "width": 250,
- "height": 250
- },
- {
- "x": 750,
- "y": 750,
- "fileNum": 4168,
- "id": 22893,
- "width": 250,
- "height": 250
- },
- {
- "x": 1000,
- "y": 750,
- "fileNum": 4168,
- "id": 22894,
- "width": 250,
- "height": 250
- },
- {
- "x": 1250,
- "y": 750,
- "fileNum": 4168,
- "id": 22895,
- "width": 250,
- "height": 250
- },
- {
- "x": 1500,
- "y": 750,
- "fileNum": 4168,
- "id": 22896,
- "width": 250,
- "height": 250
- },
- {
- "x": 1750,
- "y": 750,
- "fileNum": 4168,
- "id": 22897,
- "width": 250,
- "height": 250
- },
- {
- "fileNum": 4169,
- "id": 22902,
- "width": 110,
- "height": 112
- },
- {
- "x": 110,
- "fileNum": 4169,
- "id": 22903,
- "width": 110,
- "height": 112
- },
- {
- "x": 220,
- "fileNum": 4169,
- "id": 22904,
- "width": 110,
- "height": 112
- },
- {
- "x": 330,
- "fileNum": 4169,
- "id": 22905,
- "width": 110,
- "height": 112
- },
- {
- "x": 440,
- "fileNum": 4169,
- "id": 22906,
- "width": 110,
- "height": 112
- },
- {
- "x": 550,
- "fileNum": 4169,
- "id": 22907,
- "width": 110,
- "height": 112
- },
- {
- "y": 112,
- "fileNum": 4169,
- "id": 22908,
- "width": 110,
- "height": 112
- },
- {
- "x": 110,
- "y": 112,
- "fileNum": 4169,
- "id": 22909,
- "width": 110,
- "height": 112
- },
- {
- "x": 220,
- "y": 112,
- "fileNum": 4169,
- "id": 22910,
- "width": 110,
- "height": 112
- },
- {
- "x": 330,
- "y": 112,
- "fileNum": 4169,
- "id": 22911,
- "width": 110,
- "height": 112
- },
- {
- "x": 440,
- "y": 112,
- "fileNum": 4169,
- "id": 22912,
- "width": 110,
- "height": 112
- },
- {
- "x": 550,
- "y": 112,
- "fileNum": 4169,
- "id": 22913,
- "width": 110,
- "height": 112
- },
- {
- "y": 224,
- "fileNum": 4169,
- "id": 22914,
- "width": 110,
- "height": 112
- },
- {
- "x": 110,
- "y": 224,
- "fileNum": 4169,
- "id": 22915,
- "width": 110,
- "height": 112
- },
- {
- "x": 220,
- "y": 224,
- "fileNum": 4169,
- "id": 22916,
- "width": 110,
- "height": 112
- },
- {
- "x": 330,
- "y": 224,
- "fileNum": 4169,
- "id": 22917,
- "width": 110,
- "height": 112
- },
- {
- "x": 440,
- "y": 224,
- "fileNum": 4169,
- "id": 22918,
- "width": 110,
- "height": 112
- },
- {
- "y": 336,
- "fileNum": 4169,
- "id": 22919,
- "width": 110,
- "height": 112
- },
- {
- "x": 110,
- "y": 336,
- "fileNum": 4169,
- "id": 22920,
- "width": 110,
- "height": 112
- },
- {
- "x": 220,
- "y": 336,
- "fileNum": 4169,
- "id": 22921,
- "width": 110,
- "height": 112
- },
- {
- "x": 330,
- "y": 336,
- "fileNum": 4169,
- "id": 22922,
- "width": 110,
- "height": 112
- },
- {
- "x": 440,
- "y": 336,
- "fileNum": 4169,
- "id": 22923,
- "width": 110,
- "height": 112
- },
- {
- "fileNum": 4170,
- "id": 22928,
- "width": 230,
- "height": 236
- },
- {
- "x": 230,
- "fileNum": 4170,
- "id": 22929,
- "width": 230,
- "height": 236
- },
- {
- "x": 460,
- "fileNum": 4170,
- "id": 22930,
- "width": 230,
- "height": 236
- },
- {
- "x": 690,
- "fileNum": 4170,
- "id": 22931,
- "width": 230,
- "height": 236
- },
- {
- "x": 920,
- "fileNum": 4170,
- "id": 22932,
- "width": 230,
- "height": 236
- },
- {
- "x": 1150,
- "fileNum": 4170,
- "id": 22933,
- "width": 230,
- "height": 236
- },
- {
- "x": 1380,
- "fileNum": 4170,
- "id": 22934,
- "width": 230,
- "height": 236
- },
- {
- "x": 1610,
- "fileNum": 4170,
- "id": 22935,
- "width": 230,
- "height": 236
- },
- {
- "y": 236,
- "fileNum": 4170,
- "id": 22936,
- "width": 230,
- "height": 236
- },
- {
- "x": 230,
- "y": 236,
- "fileNum": 4170,
- "id": 22937,
- "width": 230,
- "height": 236
- },
- {
- "x": 460,
- "y": 236,
- "fileNum": 4170,
- "id": 22938,
- "width": 230,
- "height": 236
- },
- {
- "x": 690,
- "y": 236,
- "fileNum": 4170,
- "id": 22939,
- "width": 230,
- "height": 236
- },
- {
- "x": 920,
- "y": 236,
- "fileNum": 4170,
- "id": 22940,
- "width": 230,
- "height": 236
- },
- {
- "x": 1150,
- "y": 236,
- "fileNum": 4170,
- "id": 22941,
- "width": 230,
- "height": 236
- },
- {
- "x": 1380,
- "y": 236,
- "fileNum": 4170,
- "id": 22942,
- "width": 230,
- "height": 236
- },
- {
- "x": 1610,
- "y": 236,
- "fileNum": 4170,
- "id": 22943,
- "width": 230,
- "height": 236
- },
- {
- "y": 472,
- "fileNum": 4170,
- "id": 22944,
- "width": 230,
- "height": 236
- },
- {
- "x": 230,
- "y": 472,
- "fileNum": 4170,
- "id": 22945,
- "width": 230,
- "height": 236
- },
- {
- "x": 460,
- "y": 472,
- "fileNum": 4170,
- "id": 22946,
- "width": 230,
- "height": 236
- },
- {
- "x": 690,
- "y": 472,
- "fileNum": 4170,
- "id": 22947,
- "width": 230,
- "height": 236
- },
- {
- "x": 920,
- "y": 472,
- "fileNum": 4170,
- "id": 22948,
- "width": 230,
- "height": 236
- },
- {
- "x": 1150,
- "y": 472,
- "fileNum": 4170,
- "id": 22949,
- "width": 230,
- "height": 236
- },
- {
- "x": 1380,
- "y": 472,
- "fileNum": 4170,
- "id": 22950,
- "width": 230,
- "height": 236
- },
- {
- "x": 1610,
- "y": 472,
- "fileNum": 4170,
- "id": 22951,
- "width": 230,
- "height": 236
- },
- {
- "y": 708,
- "fileNum": 4170,
- "id": 22952,
- "width": 230,
- "height": 236
- },
- {
- "x": 230,
- "y": 708,
- "fileNum": 4170,
- "id": 22953,
- "width": 230,
- "height": 236
- },
- {
- "x": 460,
- "y": 708,
- "fileNum": 4170,
- "id": 22954,
- "width": 230,
- "height": 236
- },
- {
- "x": 690,
- "y": 708,
- "fileNum": 4170,
- "id": 22955,
- "width": 230,
- "height": 236
- },
- {
- "x": 920,
- "y": 708,
- "fileNum": 4170,
- "id": 22956,
- "width": 230,
- "height": 236
- },
- {
- "x": 1150,
- "y": 708,
- "fileNum": 4170,
- "id": 22957,
- "width": 230,
- "height": 236
- },
- {
- "x": 1380,
- "y": 708,
- "fileNum": 4170,
- "id": 22958,
- "width": 230,
- "height": 236
- },
- {
- "x": 1610,
- "y": 708,
- "fileNum": 4170,
- "id": 22959,
- "width": 230,
- "height": 236
- },
- {
- "fileNum": 20014,
- "id": 22964,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 20014,
- "id": 22965,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 20014,
- "id": 22966,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 20014,
- "id": 22967,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 20014,
- "id": 22968,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 20014,
- "id": 22969,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 20014,
- "id": 22970,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 20014,
- "id": 22971,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 20014,
- "id": 22972,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 20014,
- "id": 22973,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 20014,
- "id": 22974,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 20014,
- "id": 22975,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 20014,
- "id": 22976,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 20014,
- "id": 22977,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 20014,
- "id": 22978,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 20014,
- "id": 22979,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 20014,
- "id": 22980,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 20014,
- "id": 22981,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 20014,
- "id": 22982,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 20014,
- "id": 22983,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 20014,
- "id": 22984,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 20014,
- "id": 22985,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 20015,
- "id": 22990,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 20015,
- "id": 22991,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 20015,
- "id": 22992,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 20015,
- "id": 22993,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 20015,
- "id": 22994,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 20015,
- "id": 22995,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 20015,
- "id": 22996,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 20015,
- "id": 22997,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 20015,
- "id": 22998,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 20015,
- "id": 22999,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 20015,
- "id": 23000,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 20015,
- "id": 23001,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 20015,
- "id": 23002,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 20015,
- "id": 23003,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 20015,
- "id": 23004,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 20015,
- "id": 23005,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 20015,
- "id": 23006,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 20015,
- "id": 23007,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 20015,
- "id": 23008,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 20015,
- "id": 23009,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 20015,
- "id": 23010,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 20015,
- "id": 23011,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 20016,
- "id": 23016,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 20016,
- "id": 23017,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 20016,
- "id": 23018,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 20016,
- "id": 23019,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 20016,
- "id": 23020,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 20016,
- "id": 23021,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 20016,
- "id": 23022,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 20016,
- "id": 23023,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 20016,
- "id": 23024,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 20016,
- "id": 23025,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 20016,
- "id": 23026,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 20016,
- "id": 23027,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 20016,
- "id": 23028,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 20016,
- "id": 23029,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 20016,
- "id": 23030,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 20016,
- "id": 23031,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 20016,
- "id": 23032,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 20016,
- "id": 23033,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 20016,
- "id": 23034,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 20016,
- "id": 23035,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 20016,
- "id": 23036,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 20016,
- "id": 23037,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 20017,
- "id": 23042,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 20017,
- "id": 23043,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 20017,
- "id": 23044,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 20017,
- "id": 23045,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 20017,
- "id": 23046,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 20017,
- "id": 23047,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 20017,
- "id": 23048,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 20017,
- "id": 23049,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 20017,
- "id": 23050,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 20017,
- "id": 23051,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 20017,
- "id": 23052,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 20017,
- "id": 23053,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 20017,
- "id": 23054,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 20017,
- "id": 23055,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 20017,
- "id": 23056,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 20017,
- "id": 23057,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 20017,
- "id": 23058,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 20017,
- "id": 23059,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 20017,
- "id": 23060,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 20017,
- "id": 23061,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 20017,
- "id": 23062,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 20017,
- "id": 23063,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 20018,
- "id": 23068,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 20019,
- "id": 23069,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 676,
- "id": 23070,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 676,
- "id": 23071,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 676,
- "id": 23072,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 676,
- "id": 23073,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 676,
- "id": 23074,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 676,
- "id": 23075,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 676,
- "id": 23076,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 676,
- "id": 23077,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 676,
- "id": 23078,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 676,
- "id": 23079,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 676,
- "id": 23080,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 676,
- "id": 23081,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 676,
- "id": 23082,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 676,
- "id": 23083,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 676,
- "id": 23084,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 676,
- "id": 23085,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 676,
- "id": 23086,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 676,
- "id": 23087,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 676,
- "id": 23088,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 676,
- "id": 23089,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 676,
- "id": 23090,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 676,
- "id": 23091,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 677,
- "id": 23096,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 678,
- "id": 23097,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 678,
- "id": 23098,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 678,
- "id": 23099,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 678,
- "id": 23100,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 678,
- "id": 23101,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 678,
- "id": 23102,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 678,
- "id": 23103,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 678,
- "id": 23104,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 678,
- "id": 23105,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 678,
- "id": 23106,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 678,
- "id": 23107,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 678,
- "id": 23108,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 678,
- "id": 23109,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 678,
- "id": 23110,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 678,
- "id": 23111,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 678,
- "id": 23112,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 678,
- "id": 23113,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 678,
- "id": 23114,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 678,
- "id": 23115,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 678,
- "id": 23116,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 678,
- "id": 23117,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 678,
- "id": 23118,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 679,
- "id": 23123,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 680,
- "id": 23124,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 680,
- "id": 23125,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 680,
- "id": 23126,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 680,
- "id": 23127,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 680,
- "id": 23128,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 680,
- "id": 23129,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 680,
- "id": 23130,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 680,
- "id": 23131,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 680,
- "id": 23132,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 680,
- "id": 23133,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 680,
- "id": 23134,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 680,
- "id": 23135,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 680,
- "id": 23136,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 680,
- "id": 23137,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 680,
- "id": 23138,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 680,
- "id": 23139,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 680,
- "id": 23140,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 680,
- "id": 23141,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 680,
- "id": 23142,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 680,
- "id": 23143,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 680,
- "id": 23144,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 680,
- "id": 23145,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 681,
- "id": 23150,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 682,
- "id": 23151,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 682,
- "id": 23152,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 682,
- "id": 23153,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 682,
- "id": 23154,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 682,
- "id": 23155,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 682,
- "id": 23156,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 682,
- "id": 23157,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 682,
- "id": 23158,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 682,
- "id": 23159,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 682,
- "id": 23160,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 682,
- "id": 23161,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 682,
- "id": 23162,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 682,
- "id": 23163,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 682,
- "id": 23164,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 682,
- "id": 23165,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 682,
- "id": 23166,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 682,
- "id": 23167,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 682,
- "id": 23168,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 682,
- "id": 23169,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 682,
- "id": 23170,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 682,
- "id": 23171,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 682,
- "id": 23172,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 683,
- "id": 23177,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 16098,
- "id": 23178,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16098,
- "id": 23179,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16098,
- "id": 23180,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16098,
- "id": 23181,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16098,
- "id": 23182,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16098,
- "id": 23183,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16098,
- "id": 23184,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16098,
- "id": 23185,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16098,
- "id": 23186,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16098,
- "id": 23187,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16098,
- "id": 23188,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16098,
- "id": 23189,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16098,
- "id": 23190,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16098,
- "id": 23191,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16098,
- "id": 23192,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16098,
- "id": 23193,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16098,
- "id": 23194,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16098,
- "id": 23195,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16098,
- "id": 23196,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16098,
- "id": 23197,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16098,
- "id": 23198,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16098,
- "id": 23199,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 18027,
- "id": 23204,
- "width": 64,
- "height": 64
- },
- {
- "fileNum": 18028,
- "id": 23205,
- "width": 34,
- "height": 56
- },
- {
- "x": 34,
- "fileNum": 18028,
- "id": 23206,
- "width": 34,
- "height": 56
- },
- {
- "x": 68,
- "fileNum": 18028,
- "id": 23207,
- "width": 34,
- "height": 56
- },
- {
- "x": 102,
- "fileNum": 18028,
- "id": 23208,
- "width": 34,
- "height": 56
- },
- {
- "fileNum": 16100,
- "id": 23209,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16100,
- "id": 23210,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16100,
- "id": 23211,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16100,
- "id": 23212,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16100,
- "id": 23213,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16100,
- "id": 23214,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16100,
- "id": 23215,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16100,
- "id": 23216,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16100,
- "id": 23217,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16100,
- "id": 23218,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16100,
- "id": 23219,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16100,
- "id": 23220,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16100,
- "id": 23221,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16100,
- "id": 23222,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16100,
- "id": 23223,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16100,
- "id": 23224,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16100,
- "id": 23225,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16100,
- "id": 23226,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16100,
- "id": 23227,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16100,
- "id": 23228,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16100,
- "id": 23229,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16100,
- "id": 23230,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16101,
- "id": 23235,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16101,
- "id": 23236,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16101,
- "id": 23237,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16101,
- "id": 23238,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16101,
- "id": 23239,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16101,
- "id": 23240,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16101,
- "id": 23241,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16101,
- "id": 23242,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16101,
- "id": 23243,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16101,
- "id": 23244,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16101,
- "id": 23245,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16101,
- "id": 23246,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16101,
- "id": 23247,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16101,
- "id": 23248,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16101,
- "id": 23249,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16101,
- "id": 23250,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16101,
- "id": 23251,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16101,
- "id": 23252,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16101,
- "id": 23253,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16101,
- "id": 23254,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16101,
- "id": 23255,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16101,
- "id": 23256,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16102,
- "id": 23261,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16102,
- "id": 23262,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16102,
- "id": 23263,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16102,
- "id": 23264,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16102,
- "id": 23265,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16102,
- "id": 23266,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16102,
- "id": 23267,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16102,
- "id": 23268,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16102,
- "id": 23269,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16102,
- "id": 23270,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16102,
- "id": 23271,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16102,
- "id": 23272,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16102,
- "id": 23273,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16102,
- "id": 23274,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16102,
- "id": 23275,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16102,
- "id": 23276,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16102,
- "id": 23277,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16102,
- "id": 23278,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16102,
- "id": 23279,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16102,
- "id": 23280,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16102,
- "id": 23281,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16102,
- "id": 23282,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16103,
- "id": 23287,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16103,
- "id": 23288,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16103,
- "id": 23289,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16103,
- "id": 23290,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16103,
- "id": 23291,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16103,
- "id": 23292,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16103,
- "id": 23293,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16103,
- "id": 23294,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16103,
- "id": 23295,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16103,
- "id": 23296,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16103,
- "id": 23297,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16103,
- "id": 23298,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16103,
- "id": 23299,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16103,
- "id": 23300,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16103,
- "id": 23301,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16103,
- "id": 23302,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16103,
- "id": 23303,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16103,
- "id": 23304,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16103,
- "id": 23305,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16103,
- "id": 23306,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16103,
- "id": 23307,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16103,
- "id": 23308,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16104,
- "id": 23313,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16104,
- "id": 23314,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16104,
- "id": 23315,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16104,
- "id": 23316,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16104,
- "id": 23317,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16104,
- "id": 23318,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16104,
- "id": 23319,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16104,
- "id": 23320,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16104,
- "id": 23321,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16104,
- "id": 23322,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16104,
- "id": 23323,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16104,
- "id": 23324,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16104,
- "id": 23325,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16104,
- "id": 23326,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16104,
- "id": 23327,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16104,
- "id": 23328,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16104,
- "id": 23329,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16104,
- "id": 23330,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16104,
- "id": 23331,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16104,
- "id": 23332,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16104,
- "id": 23333,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16104,
- "id": 23334,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16105,
- "id": 23339,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16105,
- "id": 23340,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16105,
- "id": 23341,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16105,
- "id": 23342,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16105,
- "id": 23343,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16105,
- "id": 23344,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16105,
- "id": 23345,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16105,
- "id": 23346,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16105,
- "id": 23347,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16105,
- "id": 23348,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16105,
- "id": 23349,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16105,
- "id": 23350,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16105,
- "id": 23351,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16105,
- "id": 23352,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16105,
- "id": 23353,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16105,
- "id": 23354,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16105,
- "id": 23355,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16105,
- "id": 23356,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16105,
- "id": 23357,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16105,
- "id": 23358,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16105,
- "id": 23359,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16105,
- "id": 23360,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16106,
- "id": 23365,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16106,
- "id": 23366,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16106,
- "id": 23367,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16106,
- "id": 23368,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16106,
- "id": 23369,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16106,
- "id": 23370,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16106,
- "id": 23371,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16106,
- "id": 23372,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16106,
- "id": 23373,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16106,
- "id": 23374,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16106,
- "id": 23375,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16106,
- "id": 23376,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16106,
- "id": 23377,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16106,
- "id": 23378,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16106,
- "id": 23379,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16106,
- "id": 23380,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16106,
- "id": 23381,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16106,
- "id": 23382,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16106,
- "id": 23383,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16106,
- "id": 23384,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16106,
- "id": 23385,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16106,
- "id": 23386,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16107,
- "id": 23391,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16107,
- "id": 23392,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16107,
- "id": 23393,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16107,
- "id": 23394,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16107,
- "id": 23395,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16107,
- "id": 23396,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16107,
- "id": 23397,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16107,
- "id": 23398,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16107,
- "id": 23399,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16107,
- "id": 23400,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16107,
- "id": 23401,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16107,
- "id": 23402,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16107,
- "id": 23403,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16107,
- "id": 23404,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16107,
- "id": 23405,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16107,
- "id": 23406,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16107,
- "id": 23407,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16107,
- "id": 23408,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16107,
- "id": 23409,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16107,
- "id": 23410,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16107,
- "id": 23411,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16107,
- "id": 23412,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16108,
- "id": 23417,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16108,
- "id": 23418,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16108,
- "id": 23419,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16108,
- "id": 23420,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16108,
- "id": 23421,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16108,
- "id": 23422,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16108,
- "id": 23423,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16108,
- "id": 23424,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16108,
- "id": 23425,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16108,
- "id": 23426,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16108,
- "id": 23427,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16108,
- "id": 23428,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16108,
- "id": 23429,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16108,
- "id": 23430,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16108,
- "id": 23431,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16108,
- "id": 23432,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16108,
- "id": 23433,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16108,
- "id": 23434,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16108,
- "id": 23435,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16108,
- "id": 23436,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16108,
- "id": 23437,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16108,
- "id": 23438,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16109,
- "id": 23443,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16109,
- "id": 23444,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16109,
- "id": 23445,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16109,
- "id": 23446,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16109,
- "id": 23447,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16109,
- "id": 23448,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16109,
- "id": 23449,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16109,
- "id": 23450,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16109,
- "id": 23451,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16109,
- "id": 23452,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16109,
- "id": 23453,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16109,
- "id": 23454,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16109,
- "id": 23455,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16109,
- "id": 23456,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16109,
- "id": 23457,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16109,
- "id": 23458,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16109,
- "id": 23459,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16109,
- "id": 23460,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16109,
- "id": 23461,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16109,
- "id": 23462,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16109,
- "id": 23463,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16109,
- "id": 23464,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16110,
- "id": 23469,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16110,
- "id": 23470,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16110,
- "id": 23471,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16110,
- "id": 23472,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16110,
- "id": 23473,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16110,
- "id": 23474,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16110,
- "id": 23475,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16110,
- "id": 23476,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16110,
- "id": 23477,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16110,
- "id": 23478,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16110,
- "id": 23479,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16110,
- "id": 23480,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16110,
- "id": 23481,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16110,
- "id": 23482,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16110,
- "id": 23483,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16110,
- "id": 23484,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16110,
- "id": 23485,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16110,
- "id": 23486,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16110,
- "id": 23487,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16110,
- "id": 23488,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16110,
- "id": 23489,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16110,
- "id": 23490,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16111,
- "id": 23495,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16111,
- "id": 23496,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16111,
- "id": 23497,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16111,
- "id": 23498,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16111,
- "id": 23499,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16111,
- "id": 23500,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16111,
- "id": 23501,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16111,
- "id": 23502,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16111,
- "id": 23503,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16111,
- "id": 23504,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16111,
- "id": 23505,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16111,
- "id": 23506,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16111,
- "id": 23507,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16111,
- "id": 23508,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16111,
- "id": 23509,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16111,
- "id": 23510,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16111,
- "id": 23511,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16111,
- "id": 23512,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16111,
- "id": 23513,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16111,
- "id": 23514,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16111,
- "id": 23515,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16111,
- "id": 23516,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 16112,
- "id": 23521,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 16112,
- "id": 23522,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 16112,
- "id": 23523,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 16112,
- "id": 23524,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 16112,
- "id": 23525,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 16112,
- "id": 23526,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 16112,
- "id": 23527,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 16112,
- "id": 23528,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 16112,
- "id": 23529,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 16112,
- "id": 23530,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 16112,
- "id": 23531,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 16112,
- "id": 23532,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 16112,
- "id": 23533,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 16112,
- "id": 23534,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 16112,
- "id": 23535,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 16112,
- "id": 23536,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 16112,
- "id": 23537,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 16112,
- "id": 23538,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 16112,
- "id": 23539,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 16112,
- "id": 23540,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 16112,
- "id": 23541,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 16112,
- "id": 23542,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 21011,
- "id": 23547,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 21011,
- "id": 23548,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 21011,
- "id": 23549,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 21011,
- "id": 23550,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 21011,
- "id": 23551,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 21011,
- "id": 23552,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 21011,
- "id": 23553,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 21011,
- "id": 23554,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 21011,
- "id": 23555,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 21011,
- "id": 23556,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 21011,
- "id": 23557,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 21011,
- "id": 23558,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 21011,
- "id": 23559,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 21011,
- "id": 23560,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 21011,
- "id": 23561,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 21011,
- "id": 23562,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 21011,
- "id": 23563,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 21011,
- "id": 23564,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 21011,
- "id": 23565,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 21011,
- "id": 23566,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 21011,
- "id": 23567,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 21011,
- "id": 23568,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 21012,
- "id": 23573,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 21012,
- "id": 23574,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 21012,
- "id": 23575,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 21012,
- "id": 23576,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 21012,
- "id": 23577,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 21012,
- "id": 23578,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 21012,
- "id": 23579,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 21012,
- "id": 23580,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 21012,
- "id": 23581,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 21012,
- "id": 23582,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 21012,
- "id": 23583,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 21012,
- "id": 23584,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 21012,
- "id": 23585,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 21012,
- "id": 23586,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 21012,
- "id": 23587,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 21012,
- "id": 23588,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 21012,
- "id": 23589,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 21012,
- "id": 23590,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 21012,
- "id": 23591,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 21012,
- "id": 23592,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 21012,
- "id": 23593,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 21012,
- "id": 23594,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 21013,
- "id": 23599,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 21013,
- "id": 23600,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 21013,
- "id": 23601,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 21013,
- "id": 23602,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 21013,
- "id": 23603,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 21013,
- "id": 23604,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 21013,
- "id": 23605,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 21013,
- "id": 23606,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 21013,
- "id": 23607,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 21013,
- "id": 23608,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 21013,
- "id": 23609,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 21013,
- "id": 23610,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 21013,
- "id": 23611,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 21013,
- "id": 23612,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 21013,
- "id": 23613,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 21013,
- "id": 23614,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 21013,
- "id": 23615,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 21013,
- "id": 23616,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 21013,
- "id": 23617,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 21013,
- "id": 23618,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 21013,
- "id": 23619,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 21013,
- "id": 23620,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 21014,
- "id": 23625,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "fileNum": 21014,
- "id": 23626,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "fileNum": 21014,
- "id": 23627,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "fileNum": 21014,
- "id": 23628,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "fileNum": 21014,
- "id": 23629,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "fileNum": 21014,
- "id": 23630,
- "width": 50,
- "height": 90
- },
- {
- "y": 90,
- "fileNum": 21014,
- "id": 23631,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 90,
- "fileNum": 21014,
- "id": 23632,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 90,
- "fileNum": 21014,
- "id": 23633,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 90,
- "fileNum": 21014,
- "id": 23634,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 90,
- "fileNum": 21014,
- "id": 23635,
- "width": 50,
- "height": 90
- },
- {
- "x": 250,
- "y": 90,
- "fileNum": 21014,
- "id": 23636,
- "width": 50,
- "height": 90
- },
- {
- "y": 180,
- "fileNum": 21014,
- "id": 23637,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 180,
- "fileNum": 21014,
- "id": 23638,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 180,
- "fileNum": 21014,
- "id": 23639,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 180,
- "fileNum": 21014,
- "id": 23640,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 180,
- "fileNum": 21014,
- "id": 23641,
- "width": 50,
- "height": 90
- },
- {
- "y": 270,
- "fileNum": 21014,
- "id": 23642,
- "width": 50,
- "height": 90
- },
- {
- "x": 50,
- "y": 270,
- "fileNum": 21014,
- "id": 23643,
- "width": 50,
- "height": 90
- },
- {
- "x": 100,
- "y": 270,
- "fileNum": 21014,
- "id": 23644,
- "width": 50,
- "height": 90
- },
- {
- "x": 150,
- "y": 270,
- "fileNum": 21014,
- "id": 23645,
- "width": 50,
- "height": 90
- },
- {
- "x": 200,
- "y": 270,
- "fileNum": 21014,
- "id": 23646,
- "width": 50,
- "height": 90
- },
- {
- "fileNum": 25005,
- "id": 23651,
- "width": 96,
- "height": 96
- },
- {
- "fileNum": 25006,
- "id": 23652,
- "width": 6,
- "height": 40
- },
- {
- "fileNum": 23669,
- "id": 23669,
- "width": 58,
- "height": 64
- },
- {
- "x": 58,
- "fileNum": 23669,
- "id": 23670,
- "width": 58,
- "height": 64
- },
- {
- "x": 116,
- "fileNum": 23669,
- "id": 23671,
- "width": 58,
- "height": 64
- },
- {
- "y": 64,
- "fileNum": 23669,
- "id": 23672,
- "width": 58,
- "height": 64
- },
- {
- "x": 58,
- "y": 64,
- "fileNum": 23669,
- "id": 23673,
- "width": 58,
- "height": 64
- },
- {
- "x": 116,
- "y": 64,
- "fileNum": 23669,
- "id": 23674,
- "width": 58,
- "height": 64
- },
- {
- "y": 128,
- "fileNum": 23669,
- "id": 23675,
- "width": 58,
- "height": 64
- },
- {
- "x": 58,
- "y": 128,
- "fileNum": 23669,
- "id": 23676,
- "width": 58,
- "height": 64
- },
- {
- "x": 116,
- "y": 128,
- "fileNum": 23669,
- "id": 23677,
- "width": 58,
- "height": 64
- },
- {
- "y": 192,
- "fileNum": 23669,
- "id": 23678,
- "width": 58,
- "height": 64
- },
- {
- "x": 58,
- "y": 192,
- "fileNum": 23669,
- "id": 23679,
- "width": 58,
- "height": 64
- },
- {
- "x": 116,
- "y": 192,
- "fileNum": 23669,
- "id": 23680,
- "width": 58,
- "height": 64
- }
-]
\ No newline at end of file
+[{"x":64,"y":0,"fileNum":1,"id":1,"width":32,"height":32},{"x":32,"y":0,"fileNum":1,"id":2,"width":32,"height":32},{"x":0,"y":0,"fileNum":1,"id":3,"width":32,"height":32},{"x":96,"y":0,"fileNum":1,"id":4,"width":32,"height":32},{"x":0,"y":0,"fileNum":11028,"id":5,"width":256,"height":160},{"x":0,"y":0,"fileNum":11030,"id":6,"width":256,"height":96},{"x":0,"y":0,"fileNum":11031,"id":7,"width":96,"height":96},{"x":0,"y":0,"fileNum":11032,"id":8,"width":96,"height":96},{"x":0,"y":0,"fileNum":14034,"id":9,"width":256,"height":188},{"x":0,"y":0,"fileNum":12050,"id":10,"width":32,"height":32},{"x":32,"y":0,"fileNum":12050,"id":11,"width":32,"height":32},{"x":0,"y":32,"fileNum":12050,"id":12,"width":32,"height":32},{"x":32,"y":32,"fileNum":12050,"id":13,"width":32,"height":32},{"x":0,"y":0,"fileNum":15157,"id":14,"width":50,"height":42},{"x":0,"y":0,"fileNum":15158,"id":15,"width":11,"height":30},{"x":11,"y":0,"fileNum":15158,"id":16,"width":11,"height":30},{"x":22,"y":0,"fileNum":15158,"id":17,"width":11,"height":30},{"x":33,"y":0,"fileNum":15158,"id":18,"width":11,"height":30},{"x":44,"y":0,"fileNum":15158,"id":19,"width":11,"height":30},{"x":55,"y":0,"fileNum":15158,"id":20,"width":11,"height":30},{"x":66,"y":0,"fileNum":15158,"id":21,"width":11,"height":30},{"x":77,"y":0,"fileNum":15158,"id":22,"width":11,"height":30},{"x":88,"y":0,"fileNum":15158,"id":23,"width":11,"height":30},{"x":99,"y":0,"fileNum":15158,"id":24,"width":11,"height":30},{"x":0,"y":0,"fileNum":15159,"id":26,"width":51,"height":81},{"x":51,"y":0,"fileNum":15159,"id":27,"width":51,"height":81},{"x":102,"y":0,"fileNum":15159,"id":28,"width":51,"height":81},{"x":153,"y":0,"fileNum":15159,"id":29,"width":51,"height":81},{"x":0,"y":0,"fileNum":15160,"id":31,"width":60,"height":54},{"x":0,"y":0,"fileNum":15161,"id":32,"width":40,"height":30},{"x":0,"y":0,"fileNum":14035,"id":33,"width":256,"height":188},{"x":0,"y":0,"fileNum":11034,"id":34,"width":256,"height":160},{"x":0,"y":0,"fileNum":11035,"id":35,"width":256,"height":96},{"x":0,"y":0,"fileNum":15162,"id":36,"width":35,"height":32},{"x":0,"y":0,"fileNum":15163,"id":37,"width":35,"height":32},{"x":0,"y":0,"fileNum":15164,"id":38,"width":35,"height":35},{"x":35,"y":0,"fileNum":15164,"id":39,"width":35,"height":35},{"x":70,"y":0,"fileNum":15164,"id":40,"width":35,"height":35},{"x":105,"y":0,"fileNum":15164,"id":41,"width":35,"height":35},{"x":140,"y":0,"fileNum":15164,"id":42,"width":35,"height":35},{"x":175,"y":0,"fileNum":15164,"id":43,"width":35,"height":35},{"x":210,"y":0,"fileNum":15164,"id":44,"width":35,"height":35},{"x":245,"y":0,"fileNum":15164,"id":45,"width":35,"height":35},{"x":280,"y":0,"fileNum":15164,"id":46,"width":35,"height":35},{"x":315,"y":0,"fileNum":15164,"id":47,"width":35,"height":35},{"x":350,"y":0,"fileNum":15164,"id":48,"width":35,"height":35},{"x":0,"y":0,"fileNum":15165,"id":50,"width":75,"height":75},{"x":0,"y":0,"fileNum":15166,"id":51,"width":35,"height":30},{"x":0,"y":0,"fileNum":15167,"id":52,"width":45,"height":37},{"x":0,"y":0,"fileNum":23005,"id":53,"width":32,"height":32},{"x":0,"y":0,"fileNum":22052,"id":54,"width":32,"height":32},{"x":0,"y":0,"fileNum":18024,"id":55,"width":32,"height":32},{"x":0,"y":0,"fileNum":15169,"id":56,"width":64,"height":64},{"x":64,"y":0,"fileNum":15169,"id":57,"width":64,"height":64},{"x":128,"y":0,"fileNum":15169,"id":58,"width":64,"height":64},{"x":192,"y":0,"fileNum":15169,"id":59,"width":64,"height":64},{"x":0,"y":0,"fileNum":4156,"id":61,"width":32,"height":64},{"x":29,"y":0,"fileNum":4156,"id":62,"width":32,"height":64},{"x":60,"y":0,"fileNum":4156,"id":63,"width":32,"height":64},{"x":90,"y":0,"fileNum":4156,"id":64,"width":32,"height":64},{"x":0,"y":64,"fileNum":4156,"id":65,"width":32,"height":85},{"x":29,"y":64,"fileNum":4156,"id":66,"width":32,"height":85},{"x":60,"y":64,"fileNum":4156,"id":67,"width":32,"height":85},{"x":90,"y":64,"fileNum":4156,"id":68,"width":32,"height":85},{"x":0,"y":142,"fileNum":4156,"id":69,"width":75,"height":70},{"x":75,"y":142,"fileNum":4156,"id":70,"width":75,"height":70},{"x":150,"y":142,"fileNum":4156,"id":71,"width":75,"height":70},{"x":225,"y":142,"fileNum":4156,"id":72,"width":75,"height":70},{"x":0,"y":210,"fileNum":4156,"id":73,"width":72,"height":65},{"x":72,"y":210,"fileNum":4156,"id":74,"width":72,"height":65},{"x":150,"y":210,"fileNum":4156,"id":75,"width":72,"height":65},{"x":227,"y":210,"fileNum":4156,"id":76,"width":72,"height":65},{"x":0,"y":0,"fileNum":18016,"id":81,"width":17,"height":16},{"x":17,"y":0,"fileNum":18016,"id":82,"width":17,"height":16},{"x":34,"y":0,"fileNum":18016,"id":83,"width":17,"height":16},{"x":51,"y":0,"fileNum":18016,"id":84,"width":17,"height":16},{"x":10,"y":0,"fileNum":4073,"id":85,"width":50,"height":130},{"x":100,"y":0,"fileNum":4073,"id":86,"width":50,"height":130},{"x":200,"y":0,"fileNum":4073,"id":87,"width":50,"height":130},{"x":300,"y":0,"fileNum":4073,"id":88,"width":50,"height":130},{"x":10,"y":150,"fileNum":4073,"id":89,"width":50,"height":130},{"x":100,"y":150,"fileNum":4073,"id":90,"width":50,"height":130},{"x":200,"y":150,"fileNum":4073,"id":91,"width":50,"height":130},{"x":300,"y":150,"fileNum":4073,"id":92,"width":50,"height":130},{"x":0,"y":0,"fileNum":15006,"id":94,"width":70,"height":35},{"x":0,"y":0,"fileNum":9000,"id":95,"width":128,"height":99},{"x":1,"y":0,"fileNum":15001,"id":96,"width":84,"height":93},{"x":85,"y":0,"fileNum":15001,"id":97,"width":84,"height":93},{"x":169,"y":0,"fileNum":15001,"id":98,"width":84,"height":93},{"x":0,"y":0,"fileNum":3051,"id":100,"width":128,"height":128},{"x":0,"y":0,"fileNum":3052,"id":101,"width":128,"height":128},{"x":0,"y":0,"fileNum":3053,"id":102,"width":128,"height":128},{"x":0,"y":0,"fileNum":3054,"id":103,"width":128,"height":128},{"x":0,"y":0,"fileNum":3055,"id":104,"width":128,"height":128},{"x":0,"y":0,"fileNum":3056,"id":105,"width":128,"height":128},{"x":0,"y":0,"fileNum":3057,"id":106,"width":128,"height":128},{"x":0,"y":0,"fileNum":3058,"id":107,"width":128,"height":128},{"x":0,"y":0,"fileNum":3059,"id":108,"width":128,"height":128},{"x":0,"y":0,"fileNum":3060,"id":109,"width":128,"height":128},{"x":0,"y":0,"fileNum":3061,"id":110,"width":128,"height":128},{"x":0,"y":0,"fileNum":3062,"id":111,"width":128,"height":128},{"x":0,"y":0,"fileNum":3063,"id":112,"width":128,"height":128},{"x":0,"y":0,"fileNum":3064,"id":113,"width":128,"height":128},{"x":0,"y":0,"fileNum":3066,"id":114,"width":128,"height":128},{"x":0,"y":0,"fileNum":3067,"id":116,"width":32,"height":32},{"x":32,"y":0,"fileNum":3067,"id":117,"width":32,"height":32},{"x":64,"y":0,"fileNum":3067,"id":118,"width":32,"height":32},{"x":0,"y":0,"fileNum":3068,"id":120,"width":32,"height":32},{"x":32,"y":0,"fileNum":3068,"id":121,"width":32,"height":32},{"x":64,"y":0,"fileNum":3068,"id":122,"width":32,"height":32},{"x":0,"y":0,"fileNum":3069,"id":124,"width":30,"height":40},{"x":30,"y":0,"fileNum":3069,"id":125,"width":30,"height":40},{"x":60,"y":0,"fileNum":3069,"id":126,"width":30,"height":40},{"x":90,"y":0,"fileNum":3069,"id":127,"width":30,"height":40},{"x":120,"y":0,"fileNum":3069,"id":128,"width":30,"height":40},{"x":0,"y":40,"fileNum":3069,"id":129,"width":30,"height":40},{"x":30,"y":40,"fileNum":3069,"id":130,"width":30,"height":40},{"x":60,"y":40,"fileNum":3069,"id":131,"width":30,"height":40},{"x":90,"y":40,"fileNum":3069,"id":132,"width":30,"height":40},{"x":120,"y":40,"fileNum":3069,"id":133,"width":30,"height":40},{"x":0,"y":0,"fileNum":3070,"id":135,"width":40,"height":85},{"x":40,"y":0,"fileNum":3070,"id":136,"width":40,"height":85},{"x":80,"y":0,"fileNum":3070,"id":137,"width":40,"height":85},{"x":120,"y":0,"fileNum":3070,"id":138,"width":40,"height":85},{"x":160,"y":0,"fileNum":3070,"id":139,"width":40,"height":85},{"x":0,"y":85,"fileNum":3070,"id":140,"width":40,"height":85},{"x":40,"y":85,"fileNum":3070,"id":141,"width":40,"height":85},{"x":80,"y":85,"fileNum":3070,"id":142,"width":40,"height":85},{"x":120,"y":85,"fileNum":3070,"id":143,"width":40,"height":85},{"x":160,"y":85,"fileNum":3070,"id":144,"width":40,"height":85},{"x":0,"y":0,"fileNum":3071,"id":146,"width":80,"height":170},{"x":80,"y":0,"fileNum":3071,"id":147,"width":80,"height":170},{"x":160,"y":0,"fileNum":3071,"id":148,"width":80,"height":170},{"x":240,"y":0,"fileNum":3071,"id":149,"width":80,"height":170},{"x":320,"y":0,"fileNum":3071,"id":150,"width":80,"height":170},{"x":0,"y":170,"fileNum":3071,"id":151,"width":80,"height":170},{"x":80,"y":170,"fileNum":3071,"id":152,"width":80,"height":170},{"x":160,"y":170,"fileNum":3071,"id":153,"width":80,"height":170},{"x":240,"y":170,"fileNum":3071,"id":154,"width":80,"height":170},{"x":320,"y":170,"fileNum":3071,"id":155,"width":80,"height":170},{"x":0,"y":0,"fileNum":3036,"id":157,"width":128,"height":128},{"x":0,"y":0,"fileNum":3037,"id":158,"width":128,"height":128},{"x":0,"y":0,"fileNum":3038,"id":159,"width":128,"height":128},{"x":0,"y":0,"fileNum":3039,"id":160,"width":128,"height":128},{"x":0,"y":0,"fileNum":3040,"id":161,"width":128,"height":128},{"x":0,"y":0,"fileNum":3041,"id":162,"width":128,"height":128},{"x":0,"y":0,"fileNum":3042,"id":163,"width":128,"height":128},{"x":0,"y":0,"fileNum":3043,"id":164,"width":128,"height":128},{"x":0,"y":0,"fileNum":3044,"id":165,"width":128,"height":128},{"x":0,"y":0,"fileNum":3045,"id":166,"width":128,"height":128},{"x":0,"y":0,"fileNum":3046,"id":167,"width":128,"height":128},{"x":0,"y":0,"fileNum":3047,"id":168,"width":128,"height":128},{"x":0,"y":0,"fileNum":3048,"id":169,"width":128,"height":128},{"x":0,"y":0,"fileNum":3049,"id":170,"width":128,"height":128},{"x":0,"y":0,"fileNum":3050,"id":171,"width":128,"height":128},{"x":0,"y":0,"fileNum":3089,"id":173,"width":96,"height":128},{"x":96,"y":0,"fileNum":3089,"id":174,"width":96,"height":128},{"x":192,"y":0,"fileNum":3089,"id":175,"width":96,"height":128},{"x":288,"y":0,"fileNum":3089,"id":176,"width":96,"height":128},{"x":384,"y":0,"fileNum":3089,"id":177,"width":96,"height":128},{"x":0,"y":128,"fileNum":3089,"id":178,"width":96,"height":128},{"x":96,"y":128,"fileNum":3089,"id":179,"width":96,"height":128},{"x":192,"y":128,"fileNum":3089,"id":180,"width":96,"height":128},{"x":288,"y":128,"fileNum":3089,"id":181,"width":96,"height":128},{"x":384,"y":128,"fileNum":3089,"id":182,"width":96,"height":128},{"x":0,"y":0,"fileNum":3090,"id":184,"width":96,"height":96},{"x":96,"y":0,"fileNum":3090,"id":185,"width":96,"height":96},{"x":192,"y":0,"fileNum":3090,"id":186,"width":96,"height":96},{"x":288,"y":0,"fileNum":3090,"id":187,"width":96,"height":96},{"x":384,"y":0,"fileNum":3090,"id":188,"width":96,"height":96},{"x":0,"y":96,"fileNum":3090,"id":189,"width":96,"height":96},{"x":96,"y":96,"fileNum":3090,"id":190,"width":96,"height":96},{"x":192,"y":96,"fileNum":3090,"id":191,"width":96,"height":96},{"x":288,"y":96,"fileNum":3090,"id":192,"width":96,"height":96},{"x":384,"y":96,"fileNum":3090,"id":193,"width":96,"height":96},{"x":0,"y":0,"fileNum":3091,"id":195,"width":64,"height":64},{"x":64,"y":0,"fileNum":3091,"id":196,"width":64,"height":64},{"x":128,"y":0,"fileNum":3091,"id":197,"width":64,"height":64},{"x":192,"y":0,"fileNum":3091,"id":198,"width":64,"height":64},{"x":256,"y":0,"fileNum":3091,"id":199,"width":64,"height":64},{"x":0,"y":64,"fileNum":3091,"id":200,"width":64,"height":64},{"x":64,"y":64,"fileNum":3091,"id":201,"width":64,"height":64},{"x":128,"y":64,"fileNum":3091,"id":202,"width":64,"height":64},{"x":192,"y":64,"fileNum":3091,"id":203,"width":64,"height":64},{"x":256,"y":64,"fileNum":3091,"id":204,"width":64,"height":64},{"x":0,"y":0,"fileNum":3021,"id":206,"width":128,"height":128},{"x":0,"y":0,"fileNum":3022,"id":207,"width":128,"height":128},{"x":0,"y":0,"fileNum":3023,"id":208,"width":128,"height":128},{"x":0,"y":0,"fileNum":3024,"id":209,"width":128,"height":128},{"x":0,"y":0,"fileNum":3025,"id":210,"width":128,"height":128},{"x":0,"y":0,"fileNum":3026,"id":211,"width":128,"height":128},{"x":0,"y":0,"fileNum":3027,"id":212,"width":128,"height":128},{"x":0,"y":0,"fileNum":3028,"id":213,"width":128,"height":128},{"x":0,"y":0,"fileNum":3029,"id":214,"width":128,"height":128},{"x":0,"y":0,"fileNum":3030,"id":215,"width":128,"height":128},{"x":0,"y":0,"fileNum":3031,"id":216,"width":128,"height":128},{"x":0,"y":0,"fileNum":3032,"id":217,"width":128,"height":128},{"x":0,"y":0,"fileNum":3033,"id":218,"width":128,"height":128},{"x":0,"y":0,"fileNum":3034,"id":219,"width":128,"height":128},{"x":0,"y":0,"fileNum":3035,"id":220,"width":128,"height":128},{"x":0,"y":0,"fileNum":3095,"id":222,"width":128,"height":128},{"x":128,"y":0,"fileNum":3095,"id":223,"width":128,"height":128},{"x":256,"y":0,"fileNum":3095,"id":224,"width":128,"height":128},{"x":384,"y":0,"fileNum":3095,"id":225,"width":128,"height":128},{"x":0,"y":128,"fileNum":3095,"id":226,"width":128,"height":128},{"x":128,"y":128,"fileNum":3095,"id":227,"width":128,"height":128},{"x":256,"y":128,"fileNum":3095,"id":228,"width":128,"height":128},{"x":384,"y":128,"fileNum":3095,"id":229,"width":128,"height":128},{"x":0,"y":256,"fileNum":3095,"id":230,"width":128,"height":128},{"x":128,"y":256,"fileNum":3095,"id":231,"width":128,"height":128},{"x":256,"y":256,"fileNum":3095,"id":232,"width":128,"height":128},{"x":384,"y":256,"fileNum":3095,"id":233,"width":128,"height":128},{"x":0,"y":384,"fileNum":3095,"id":234,"width":128,"height":128},{"x":128,"y":384,"fileNum":3095,"id":235,"width":128,"height":128},{"x":256,"y":384,"fileNum":3095,"id":236,"width":128,"height":128},{"x":0,"y":0,"fileNum":3000,"id":238,"width":145,"height":145},{"x":0,"y":0,"fileNum":3001,"id":239,"width":145,"height":145},{"x":0,"y":0,"fileNum":3002,"id":240,"width":145,"height":145},{"x":0,"y":0,"fileNum":3003,"id":241,"width":145,"height":145},{"x":0,"y":0,"fileNum":3004,"id":242,"width":145,"height":145},{"x":0,"y":0,"fileNum":3005,"id":243,"width":145,"height":145},{"x":0,"y":0,"fileNum":3006,"id":244,"width":145,"height":145},{"x":0,"y":0,"fileNum":3007,"id":245,"width":145,"height":145},{"x":0,"y":0,"fileNum":3008,"id":246,"width":145,"height":145},{"x":0,"y":0,"fileNum":3009,"id":247,"width":145,"height":145},{"x":0,"y":0,"fileNum":3010,"id":248,"width":145,"height":145},{"x":0,"y":0,"fileNum":3011,"id":249,"width":145,"height":145},{"x":0,"y":0,"fileNum":3012,"id":250,"width":145,"height":145},{"x":0,"y":0,"fileNum":3013,"id":251,"width":145,"height":145},{"x":0,"y":0,"fileNum":3014,"id":252,"width":145,"height":145},{"x":0,"y":0,"fileNum":3015,"id":253,"width":145,"height":145},{"x":0,"y":0,"fileNum":3016,"id":254,"width":145,"height":145},{"x":0,"y":0,"fileNum":3017,"id":255,"width":145,"height":145},{"x":0,"y":0,"fileNum":3018,"id":256,"width":145,"height":145},{"x":0,"y":0,"fileNum":3019,"id":257,"width":145,"height":145},{"x":0,"y":0,"fileNum":3020,"id":258,"width":145,"height":145},{"x":0,"y":0,"fileNum":3101,"id":260,"width":32,"height":32},{"x":0,"y":0,"fileNum":3102,"id":261,"width":32,"height":32},{"x":0,"y":0,"fileNum":3103,"id":262,"width":32,"height":32},{"x":0,"y":0,"fileNum":3104,"id":263,"width":32,"height":32},{"x":0,"y":0,"fileNum":3105,"id":264,"width":32,"height":32},{"x":0,"y":0,"fileNum":3106,"id":266,"width":15,"height":15},{"x":15,"y":0,"fileNum":3106,"id":267,"width":15,"height":15},{"x":30,"y":0,"fileNum":3106,"id":268,"width":15,"height":15},{"x":45,"y":0,"fileNum":3106,"id":269,"width":15,"height":15},{"x":60,"y":0,"fileNum":3106,"id":270,"width":15,"height":15},{"x":75,"y":0,"fileNum":3106,"id":271,"width":15,"height":15},{"x":90,"y":0,"fileNum":3106,"id":272,"width":15,"height":15},{"x":105,"y":0,"fileNum":3106,"id":273,"width":15,"height":15},{"x":0,"y":0,"fileNum":15002,"id":274,"width":128,"height":32},{"x":0,"y":0,"fileNum":3094,"id":276,"width":160,"height":170},{"x":160,"y":0,"fileNum":3094,"id":277,"width":160,"height":170},{"x":320,"y":0,"fileNum":3094,"id":278,"width":160,"height":170},{"x":480,"y":0,"fileNum":3094,"id":279,"width":160,"height":170},{"x":640,"y":0,"fileNum":3094,"id":280,"width":160,"height":170},{"x":0,"y":170,"fileNum":3094,"id":281,"width":160,"height":170},{"x":160,"y":170,"fileNum":3094,"id":282,"width":160,"height":170},{"x":320,"y":170,"fileNum":3094,"id":283,"width":160,"height":170},{"x":480,"y":170,"fileNum":3094,"id":284,"width":160,"height":170},{"x":640,"y":170,"fileNum":3094,"id":285,"width":160,"height":170},{"x":0,"y":0,"fileNum":4074,"id":287,"width":80,"height":170},{"x":80,"y":0,"fileNum":4074,"id":288,"width":80,"height":170},{"x":160,"y":0,"fileNum":4074,"id":289,"width":80,"height":170},{"x":240,"y":0,"fileNum":4074,"id":290,"width":80,"height":170},{"x":320,"y":0,"fileNum":4074,"id":291,"width":80,"height":170},{"x":0,"y":170,"fileNum":4074,"id":292,"width":80,"height":170},{"x":80,"y":170,"fileNum":4074,"id":293,"width":80,"height":170},{"x":160,"y":170,"fileNum":4074,"id":294,"width":80,"height":170},{"x":240,"y":170,"fileNum":4074,"id":295,"width":80,"height":170},{"x":320,"y":170,"fileNum":4074,"id":296,"width":80,"height":170},{"x":0,"y":0,"fileNum":4075,"id":298,"width":80,"height":170},{"x":80,"y":0,"fileNum":4075,"id":299,"width":80,"height":170},{"x":160,"y":0,"fileNum":4075,"id":300,"width":80,"height":170},{"x":240,"y":0,"fileNum":4075,"id":301,"width":80,"height":170},{"x":320,"y":0,"fileNum":4075,"id":302,"width":80,"height":170},{"x":0,"y":170,"fileNum":4075,"id":303,"width":80,"height":170},{"x":80,"y":170,"fileNum":4075,"id":304,"width":80,"height":170},{"x":160,"y":170,"fileNum":4075,"id":305,"width":80,"height":170},{"x":240,"y":170,"fileNum":4075,"id":306,"width":80,"height":170},{"x":320,"y":170,"fileNum":4075,"id":307,"width":80,"height":170},{"x":9,"y":0,"fileNum":15003,"id":309,"width":45,"height":64},{"x":0,"y":0,"fileNum":15004,"id":310,"width":32,"height":32},{"x":5,"y":11,"fileNum":15005,"id":311,"width":32,"height":32},{"x":8,"y":8,"fileNum":15007,"id":312,"width":25,"height":45},{"x":0,"y":6,"fileNum":15011,"id":313,"width":80,"height":39},{"x":1,"y":0,"fileNum":15013,"id":314,"width":32,"height":32},{"x":0,"y":0,"fileNum":15143,"id":315,"width":32,"height":32},{"x":0,"y":0,"fileNum":15144,"id":316,"width":32,"height":32},{"x":0,"y":0,"fileNum":15146,"id":317,"width":32,"height":32},{"x":0,"y":0,"fileNum":15147,"id":318,"width":32,"height":32},{"x":0,"y":0,"fileNum":15148,"id":319,"width":32,"height":32},{"x":0,"y":0,"fileNum":15149,"id":320,"width":32,"height":32},{"x":0,"y":0,"fileNum":15150,"id":321,"width":32,"height":32},{"x":0,"y":0,"fileNum":15151,"id":322,"width":32,"height":32},{"x":0,"y":0,"fileNum":15152,"id":323,"width":32,"height":32},{"x":0,"y":0,"fileNum":12039,"id":324,"width":32,"height":32},{"x":32,"y":0,"fileNum":12039,"id":325,"width":32,"height":32},{"x":64,"y":0,"fileNum":12039,"id":326,"width":32,"height":32},{"x":96,"y":0,"fileNum":12039,"id":327,"width":32,"height":32},{"x":0,"y":32,"fileNum":12039,"id":328,"width":32,"height":32},{"x":32,"y":32,"fileNum":12039,"id":329,"width":32,"height":32},{"x":64,"y":32,"fileNum":12039,"id":330,"width":32,"height":32},{"x":96,"y":32,"fileNum":12039,"id":331,"width":32,"height":32},{"x":0,"y":64,"fileNum":12039,"id":332,"width":32,"height":32},{"x":32,"y":64,"fileNum":12039,"id":333,"width":32,"height":32},{"x":64,"y":64,"fileNum":12039,"id":334,"width":32,"height":32},{"x":96,"y":64,"fileNum":12039,"id":335,"width":32,"height":32},{"x":0,"y":96,"fileNum":12039,"id":336,"width":32,"height":32},{"x":32,"y":96,"fileNum":12039,"id":337,"width":32,"height":32},{"x":64,"y":96,"fileNum":12039,"id":338,"width":32,"height":32},{"x":96,"y":96,"fileNum":12039,"id":339,"width":32,"height":32},{"x":128,"y":0,"fileNum":12039,"id":340,"width":32,"height":32},{"x":160,"y":0,"fileNum":12039,"id":341,"width":32,"height":32},{"x":192,"y":0,"fileNum":12039,"id":342,"width":32,"height":32},{"x":224,"y":0,"fileNum":12039,"id":343,"width":32,"height":32},{"x":128,"y":32,"fileNum":12039,"id":344,"width":32,"height":32},{"x":160,"y":32,"fileNum":12039,"id":345,"width":32,"height":32},{"x":192,"y":32,"fileNum":12039,"id":346,"width":32,"height":32},{"x":224,"y":32,"fileNum":12039,"id":347,"width":32,"height":32},{"x":128,"y":64,"fileNum":12039,"id":348,"width":32,"height":32},{"x":160,"y":64,"fileNum":12039,"id":349,"width":32,"height":32},{"x":192,"y":64,"fileNum":12039,"id":350,"width":32,"height":32},{"x":224,"y":64,"fileNum":12039,"id":351,"width":32,"height":32},{"x":128,"y":96,"fileNum":12039,"id":352,"width":32,"height":32},{"x":160,"y":96,"fileNum":12039,"id":353,"width":32,"height":32},{"x":192,"y":96,"fileNum":12039,"id":354,"width":32,"height":32},{"x":224,"y":96,"fileNum":12039,"id":355,"width":32,"height":32},{"x":256,"y":0,"fileNum":12039,"id":356,"width":32,"height":32},{"x":288,"y":0,"fileNum":12039,"id":357,"width":32,"height":32},{"x":320,"y":0,"fileNum":12039,"id":358,"width":32,"height":32},{"x":352,"y":0,"fileNum":12039,"id":359,"width":32,"height":32},{"x":256,"y":32,"fileNum":12039,"id":360,"width":32,"height":32},{"x":288,"y":32,"fileNum":12039,"id":361,"width":32,"height":32},{"x":320,"y":32,"fileNum":12039,"id":362,"width":32,"height":32},{"x":352,"y":32,"fileNum":12039,"id":363,"width":32,"height":32},{"x":256,"y":64,"fileNum":12039,"id":364,"width":32,"height":32},{"x":288,"y":64,"fileNum":12039,"id":365,"width":32,"height":32},{"x":320,"y":64,"fileNum":12039,"id":366,"width":32,"height":32},{"x":352,"y":64,"fileNum":12039,"id":367,"width":32,"height":32},{"x":256,"y":96,"fileNum":12039,"id":368,"width":32,"height":32},{"x":288,"y":96,"fileNum":12039,"id":369,"width":32,"height":32},{"x":320,"y":96,"fileNum":12039,"id":370,"width":32,"height":32},{"x":352,"y":96,"fileNum":12039,"id":371,"width":32,"height":32},{"x":0,"y":128,"fileNum":12039,"id":372,"width":32,"height":32},{"x":32,"y":128,"fileNum":12039,"id":373,"width":32,"height":32},{"x":64,"y":128,"fileNum":12039,"id":374,"width":32,"height":32},{"x":96,"y":128,"fileNum":12039,"id":375,"width":32,"height":32},{"x":0,"y":160,"fileNum":12039,"id":376,"width":32,"height":32},{"x":32,"y":160,"fileNum":12039,"id":377,"width":32,"height":32},{"x":64,"y":160,"fileNum":12039,"id":378,"width":32,"height":32},{"x":96,"y":160,"fileNum":12039,"id":379,"width":32,"height":32},{"x":0,"y":192,"fileNum":12039,"id":380,"width":32,"height":32},{"x":32,"y":192,"fileNum":12039,"id":381,"width":32,"height":32},{"x":64,"y":192,"fileNum":12039,"id":382,"width":32,"height":32},{"x":96,"y":192,"fileNum":12039,"id":383,"width":32,"height":32},{"x":0,"y":224,"fileNum":12039,"id":384,"width":32,"height":32},{"x":32,"y":224,"fileNum":12039,"id":385,"width":32,"height":32},{"x":64,"y":224,"fileNum":12039,"id":386,"width":32,"height":32},{"x":96,"y":224,"fileNum":12039,"id":387,"width":32,"height":32},{"x":0,"y":0,"fileNum":22008,"id":388,"width":32,"height":32},{"x":0,"y":0,"fileNum":8173,"id":389,"width":55,"height":50},{"x":45,"y":0,"fileNum":8173,"id":390,"width":55,"height":50},{"x":90,"y":0,"fileNum":8173,"id":391,"width":55,"height":50},{"x":155,"y":0,"fileNum":8173,"id":392,"width":50,"height":50},{"x":220,"y":0,"fileNum":8173,"id":393,"width":50,"height":50},{"x":275,"y":0,"fileNum":8173,"id":394,"width":50,"height":50},{"x":325,"y":0,"fileNum":8173,"id":395,"width":50,"height":50},{"x":375,"y":0,"fileNum":8173,"id":396,"width":50,"height":50},{"x":435,"y":0,"fileNum":8173,"id":397,"width":50,"height":50},{"x":495,"y":0,"fileNum":8173,"id":398,"width":50,"height":50},{"x":0,"y":0,"fileNum":18018,"id":399,"width":17,"height":16},{"x":17,"y":0,"fileNum":18018,"id":400,"width":17,"height":16},{"x":34,"y":0,"fileNum":18018,"id":401,"width":17,"height":16},{"x":51,"y":0,"fileNum":18018,"id":402,"width":17,"height":16},{"x":0,"y":0,"fileNum":22026,"id":403,"width":32,"height":32},{"x":0,"y":0,"fileNum":15199,"id":404,"width":32,"height":32},{"x":0,"y":76,"fileNum":3082,"id":405,"width":84,"height":76},{"x":84,"y":76,"fileNum":3082,"id":406,"width":84,"height":76},{"x":168,"y":76,"fileNum":3082,"id":407,"width":84,"height":76},{"x":252,"y":76,"fileNum":3082,"id":408,"width":84,"height":76},{"x":336,"y":76,"fileNum":3082,"id":409,"width":84,"height":76},{"x":420,"y":76,"fileNum":3082,"id":410,"width":84,"height":76},{"x":504,"y":76,"fileNum":3082,"id":411,"width":84,"height":76},{"x":0,"y":152,"fileNum":3082,"id":412,"width":84,"height":76},{"x":84,"y":152,"fileNum":3082,"id":413,"width":84,"height":76},{"x":168,"y":152,"fileNum":3082,"id":414,"width":84,"height":76},{"x":252,"y":152,"fileNum":3082,"id":415,"width":84,"height":76},{"x":336,"y":152,"fileNum":3082,"id":416,"width":84,"height":76},{"x":420,"y":152,"fileNum":3082,"id":417,"width":84,"height":76},{"x":0,"y":228,"fileNum":3082,"id":418,"width":84,"height":76},{"x":84,"y":228,"fileNum":3082,"id":419,"width":84,"height":76},{"x":0,"y":0,"fileNum":12048,"id":422,"width":176,"height":208},{"x":176,"y":0,"fileNum":12048,"id":423,"width":176,"height":208},{"x":0,"y":208,"fileNum":12048,"id":424,"width":176,"height":208},{"x":176,"y":208,"fileNum":12048,"id":425,"width":176,"height":208},{"x":0,"y":0,"fileNum":9006,"id":426,"width":128,"height":256},{"x":0,"y":0,"fileNum":14029,"id":427,"width":320,"height":284},{"x":0,"y":0,"fileNum":15122,"id":428,"width":359,"height":504},{"x":0,"y":0,"fileNum":15106,"id":429,"width":70,"height":42},{"x":0,"y":0,"fileNum":15107,"id":430,"width":53,"height":49},{"x":0,"y":0,"fileNum":15108,"id":431,"width":45,"height":29},{"x":40,"y":0,"fileNum":15108,"id":432,"width":31,"height":58},{"x":0,"y":29,"fileNum":15108,"id":433,"width":45,"height":29},{"x":40,"y":29,"fileNum":15108,"id":434,"width":31,"height":29},{"x":0,"y":0,"fileNum":15109,"id":435,"width":64,"height":64},{"x":0,"y":0,"fileNum":15110,"id":436,"width":64,"height":64},{"x":0,"y":0,"fileNum":15111,"id":437,"width":20,"height":34},{"x":0,"y":0,"fileNum":11014,"id":438,"width":256,"height":96},{"x":0,"y":0,"fileNum":11015,"id":439,"width":256,"height":160},{"x":0,"y":0,"fileNum":12020,"id":440,"width":32,"height":32},{"x":32,"y":0,"fileNum":12020,"id":441,"width":32,"height":32},{"x":0,"y":32,"fileNum":12020,"id":442,"width":32,"height":32},{"x":32,"y":32,"fileNum":12020,"id":443,"width":32,"height":32},{"x":0,"y":0,"fileNum":14007,"id":444,"width":256,"height":196},{"x":45,"y":0,"fileNum":15105,"id":445,"width":80,"height":48},{"x":0,"y":48,"fileNum":15105,"id":446,"width":80,"height":48},{"x":80,"y":48,"fileNum":15105,"id":447,"width":80,"height":48},{"x":0,"y":0,"fileNum":4067,"id":448,"width":26,"height":32},{"x":26,"y":0,"fileNum":4067,"id":449,"width":26,"height":32},{"x":52,"y":0,"fileNum":4067,"id":450,"width":26,"height":32},{"x":0,"y":32,"fileNum":4067,"id":451,"width":26,"height":32},{"x":26,"y":32,"fileNum":4067,"id":452,"width":26,"height":32},{"x":52,"y":32,"fileNum":4067,"id":453,"width":26,"height":32},{"x":0,"y":64,"fileNum":4067,"id":454,"width":26,"height":32},{"x":26,"y":64,"fileNum":4067,"id":455,"width":26,"height":32},{"x":52,"y":64,"fileNum":4067,"id":456,"width":26,"height":32},{"x":0,"y":96,"fileNum":4067,"id":457,"width":26,"height":32},{"x":26,"y":96,"fileNum":4067,"id":458,"width":26,"height":32},{"x":52,"y":96,"fileNum":4067,"id":459,"width":26,"height":32},{"x":0,"y":0,"fileNum":12042,"id":464,"width":128,"height":128},{"x":0,"y":0,"fileNum":499,"id":465,"width":32,"height":32},{"x":0,"y":0,"fileNum":10010,"id":466,"width":32,"height":70},{"x":0,"y":0,"fileNum":18017,"id":467,"width":32,"height":32},{"x":0,"y":0,"fileNum":4122,"id":468,"width":32,"height":67},{"x":32,"y":0,"fileNum":4122,"id":469,"width":32,"height":67},{"x":64,"y":0,"fileNum":4122,"id":470,"width":32,"height":67},{"x":96,"y":0,"fileNum":4122,"id":471,"width":32,"height":67},{"x":128,"y":0,"fileNum":4122,"id":472,"width":32,"height":67},{"x":0,"y":0,"fileNum":4123,"id":473,"width":32,"height":55},{"x":32,"y":0,"fileNum":4123,"id":474,"width":32,"height":55},{"x":64,"y":0,"fileNum":4123,"id":475,"width":32,"height":55},{"x":96,"y":0,"fileNum":4123,"id":476,"width":32,"height":55},{"x":128,"y":0,"fileNum":4123,"id":477,"width":32,"height":55},{"x":0,"y":0,"fileNum":4124,"id":478,"width":83,"height":45},{"x":83,"y":0,"fileNum":4124,"id":479,"width":83,"height":45},{"x":166,"y":0,"fileNum":4124,"id":480,"width":83,"height":45},{"x":249,"y":0,"fileNum":4124,"id":481,"width":83,"height":45},{"x":332,"y":0,"fileNum":4124,"id":482,"width":83,"height":45},{"x":0,"y":0,"fileNum":4125,"id":483,"width":83,"height":45},{"x":83,"y":0,"fileNum":4125,"id":484,"width":83,"height":45},{"x":166,"y":0,"fileNum":4125,"id":485,"width":83,"height":45},{"x":249,"y":0,"fileNum":4125,"id":486,"width":83,"height":45},{"x":332,"y":0,"fileNum":4125,"id":487,"width":83,"height":45},{"x":3,"y":0,"fileNum":15010,"id":492,"width":38,"height":37},{"x":4,"y":10,"fileNum":15012,"id":493,"width":42,"height":35},{"x":0,"y":0,"fileNum":15014,"id":494,"width":32,"height":32},{"x":0,"y":10,"fileNum":15016,"id":495,"width":40,"height":30},{"x":0,"y":0,"fileNum":15015,"id":496,"width":32,"height":40},{"x":0,"y":0,"fileNum":15017,"id":497,"width":32,"height":32},{"x":0,"y":0,"fileNum":15019,"id":498,"width":32,"height":32},{"x":5,"y":22,"fileNum":15021,"id":499,"width":100,"height":60},{"x":0,"y":0,"fileNum":7006,"id":500,"width":64,"height":32},{"x":0,"y":0,"fileNum":7007,"id":501,"width":319,"height":239},{"x":0,"y":0,"fileNum":15134,"id":502,"width":32,"height":32},{"x":0,"y":0,"fileNum":15135,"id":503,"width":32,"height":32},{"x":0,"y":0,"fileNum":16036,"id":504,"width":32,"height":32},{"x":0,"y":0,"fileNum":16037,"id":505,"width":32,"height":32},{"x":0,"y":0,"fileNum":19006,"id":506,"width":32,"height":32},{"x":0,"y":0,"fileNum":15028,"id":507,"width":20,"height":50},{"x":0,"y":0,"fileNum":16038,"id":508,"width":32,"height":32},{"x":0,"y":0,"fileNum":22009,"id":509,"width":32,"height":32},{"x":0,"y":0,"fileNum":16039,"id":510,"width":32,"height":32},{"x":0,"y":0,"fileNum":22010,"id":511,"width":32,"height":32},{"x":0,"y":0,"fileNum":7008,"id":512,"width":64,"height":32},{"x":0,"y":0,"fileNum":15137,"id":513,"width":32,"height":32},{"x":0,"y":0,"fileNum":15138,"id":514,"width":314,"height":234},{"x":0,"y":0,"fileNum":19007,"id":515,"width":32,"height":32},{"x":0,"y":0,"fileNum":19008,"id":516,"width":32,"height":32},{"x":0,"y":0,"fileNum":19009,"id":517,"width":32,"height":32},{"x":0,"y":0,"fileNum":19010,"id":518,"width":32,"height":32},{"x":0,"y":0,"fileNum":19011,"id":519,"width":32,"height":32},{"x":0,"y":0,"fileNum":19012,"id":520,"width":32,"height":32},{"x":0,"y":0,"fileNum":19013,"id":521,"width":32,"height":32},{"x":0,"y":0,"fileNum":19014,"id":522,"width":32,"height":32},{"x":0,"y":0,"fileNum":19015,"id":523,"width":32,"height":32},{"x":0,"y":0,"fileNum":15141,"id":524,"width":64,"height":104},{"x":0,"y":0,"fileNum":22011,"id":525,"width":42,"height":49},{"x":0,"y":0,"fileNum":163,"id":526,"width":32,"height":32},{"x":0,"y":0,"fileNum":164,"id":527,"width":32,"height":32},{"x":0,"y":0,"fileNum":165,"id":528,"width":32,"height":32},{"x":0,"y":0,"fileNum":7010,"id":529,"width":64,"height":32},{"x":0,"y":0,"fileNum":7011,"id":530,"width":64,"height":32},{"x":0,"y":0,"fileNum":7009,"id":531,"width":160,"height":128},{"x":0,"y":0,"fileNum":15018,"id":532,"width":45,"height":30},{"x":0,"y":0,"fileNum":15020,"id":533,"width":32,"height":32},{"x":0,"y":0,"fileNum":15022,"id":534,"width":34,"height":65},{"x":0,"y":0,"fileNum":166,"id":535,"width":32,"height":32},{"x":0,"y":0,"fileNum":19016,"id":536,"width":32,"height":32},{"x":0,"y":0,"fileNum":19017,"id":537,"width":32,"height":32},{"x":0,"y":0,"fileNum":22012,"id":538,"width":32,"height":32},{"x":0,"y":0,"fileNum":22013,"id":539,"width":32,"height":32},{"x":0,"y":0,"fileNum":23000,"id":540,"width":32,"height":32},{"x":0,"y":0,"fileNum":23001,"id":541,"width":32,"height":32},{"x":0,"y":0,"fileNum":23002,"id":542,"width":32,"height":32},{"x":0,"y":0,"fileNum":23003,"id":543,"width":32,"height":32},{"x":0,"y":0,"fileNum":270,"id":544,"width":32,"height":32},{"x":0,"y":0,"fileNum":7013,"id":545,"width":160,"height":128},{"x":0,"y":0,"fileNum":7002,"id":546,"width":64,"height":32},{"x":0,"y":0,"fileNum":7003,"id":547,"width":64,"height":32},{"x":0,"y":0,"fileNum":7004,"id":548,"width":64,"height":32},{"x":0,"y":0,"fileNum":7005,"id":549,"width":64,"height":32},{"x":0,"y":0,"fileNum":22014,"id":550,"width":32,"height":32},{"x":0,"y":0,"fileNum":7014,"id":551,"width":63,"height":32},{"x":0,"y":0,"fileNum":7015,"id":552,"width":63,"height":32},{"x":0,"y":0,"fileNum":7016,"id":553,"width":63,"height":32},{"x":0,"y":0,"fileNum":271,"id":554,"width":32,"height":32},{"x":0,"y":0,"fileNum":7017,"id":555,"width":63,"height":32},{"x":0,"y":0,"fileNum":7018,"id":556,"width":63,"height":32},{"x":0,"y":0,"fileNum":20011,"id":557,"width":32,"height":32},{"x":0,"y":0,"fileNum":18020,"id":558,"width":32,"height":32},{"x":0,"y":0,"fileNum":18021,"id":559,"width":32,"height":32},{"x":0,"y":0,"fileNum":20012,"id":560,"width":32,"height":32},{"x":0,"y":0,"fileNum":16040,"id":561,"width":32,"height":32},{"x":0,"y":0,"fileNum":16041,"id":562,"width":32,"height":32},{"x":0,"y":0,"fileNum":16042,"id":563,"width":32,"height":32},{"x":0,"y":0,"fileNum":16043,"id":564,"width":32,"height":32},{"x":0,"y":0,"fileNum":16044,"id":565,"width":32,"height":32},{"x":0,"y":0,"fileNum":16045,"id":566,"width":32,"height":32},{"x":0,"y":0,"fileNum":7019,"id":567,"width":63,"height":32},{"x":0,"y":0,"fileNum":7020,"id":568,"width":63,"height":32},{"x":0,"y":0,"fileNum":7021,"id":569,"width":63,"height":32},{"x":0,"y":0,"fileNum":7022,"id":570,"width":63,"height":32},{"x":0,"y":0,"fileNum":272,"id":571,"width":32,"height":32},{"x":0,"y":0,"fileNum":22015,"id":572,"width":32,"height":32},{"x":0,"y":0,"fileNum":19018,"id":573,"width":32,"height":32},{"x":0,"y":0,"fileNum":21004,"id":574,"width":32,"height":32},{"x":0,"y":0,"fileNum":22016,"id":575,"width":32,"height":32},{"x":0,"y":0,"fileNum":22017,"id":576,"width":32,"height":32},{"x":0,"y":0,"fileNum":22018,"id":577,"width":32,"height":32},{"x":0,"y":0,"fileNum":22019,"id":578,"width":32,"height":32},{"x":0,"y":0,"fileNum":22020,"id":579,"width":32,"height":32},{"x":0,"y":0,"fileNum":22021,"id":580,"width":32,"height":32},{"x":0,"y":0,"fileNum":19019,"id":581,"width":32,"height":32},{"x":0,"y":0,"fileNum":22022,"id":582,"width":32,"height":32},{"x":0,"y":0,"fileNum":16046,"id":583,"width":32,"height":32},{"x":0,"y":0,"fileNum":19020,"id":584,"width":32,"height":32},{"x":0,"y":0,"fileNum":19021,"id":585,"width":32,"height":32},{"x":0,"y":0,"fileNum":22023,"id":586,"width":32,"height":32},{"x":0,"y":0,"fileNum":22024,"id":587,"width":32,"height":32},{"x":0,"y":0,"fileNum":16047,"id":588,"width":32,"height":32},{"x":0,"y":0,"fileNum":15024,"id":589,"width":32,"height":32},{"x":0,"y":0,"fileNum":16048,"id":590,"width":32,"height":32},{"x":0,"y":0,"fileNum":19022,"id":591,"width":32,"height":32},{"x":0,"y":0,"fileNum":15170,"id":592,"width":32,"height":32},{"x":0,"y":0,"fileNum":22027,"id":593,"width":32,"height":32},{"x":0,"y":0,"fileNum":15171,"id":594,"width":32,"height":32},{"x":0,"y":0,"fileNum":15172,"id":595,"width":32,"height":32},{"x":0,"y":0,"fileNum":15173,"id":596,"width":32,"height":32},{"x":0,"y":0,"fileNum":15174,"id":597,"width":32,"height":32},{"x":0,"y":0,"fileNum":22028,"id":598,"width":32,"height":32},{"x":0,"y":0,"fileNum":22029,"id":599,"width":32,"height":32},{"x":0,"y":0,"fileNum":15175,"id":600,"width":32,"height":32},{"x":0,"y":0,"fileNum":23004,"id":601,"width":32,"height":32},{"x":0,"y":0,"fileNum":273,"id":602,"width":32,"height":32},{"x":0,"y":0,"fileNum":21005,"id":603,"width":32,"height":32},{"x":0,"y":0,"fileNum":22030,"id":604,"width":32,"height":32},{"x":0,"y":0,"fileNum":274,"id":605,"width":32,"height":32},{"x":0,"y":0,"fileNum":275,"id":606,"width":32,"height":32},{"x":0,"y":0,"fileNum":21006,"id":607,"width":32,"height":32},{"x":0,"y":0,"fileNum":21007,"id":608,"width":32,"height":32},{"x":0,"y":0,"fileNum":22031,"id":609,"width":32,"height":32},{"x":0,"y":0,"fileNum":7023,"id":610,"width":64,"height":32},{"x":0,"y":0,"fileNum":7024,"id":611,"width":64,"height":32},{"x":0,"y":0,"fileNum":7025,"id":612,"width":64,"height":32},{"x":0,"y":0,"fileNum":7026,"id":613,"width":64,"height":32},{"x":0,"y":0,"fileNum":7027,"id":614,"width":64,"height":32},{"x":0,"y":0,"fileNum":7028,"id":615,"width":64,"height":32},{"x":0,"y":0,"fileNum":7029,"id":616,"width":64,"height":32},{"x":0,"y":0,"fileNum":7030,"id":617,"width":64,"height":32},{"x":0,"y":0,"fileNum":7031,"id":618,"width":64,"height":32},{"x":0,"y":0,"fileNum":7032,"id":619,"width":64,"height":32},{"x":0,"y":0,"fileNum":7033,"id":620,"width":64,"height":32},{"x":0,"y":0,"fileNum":7034,"id":621,"width":64,"height":32},{"x":0,"y":0,"fileNum":7035,"id":622,"width":64,"height":32},{"x":0,"y":0,"fileNum":7036,"id":623,"width":64,"height":32},{"x":0,"y":0,"fileNum":7037,"id":624,"width":128,"height":64},{"x":0,"y":0,"fileNum":7038,"id":625,"width":128,"height":64},{"x":0,"y":0,"fileNum":7039,"id":626,"width":128,"height":64},{"x":0,"y":0,"fileNum":7040,"id":627,"width":128,"height":64},{"x":0,"y":0,"fileNum":7041,"id":628,"width":128,"height":64},{"x":0,"y":0,"fileNum":15176,"id":629,"width":64,"height":128},{"x":0,"y":0,"fileNum":15177,"id":630,"width":128,"height":64},{"x":0,"y":0,"fileNum":22032,"id":631,"width":32,"height":32},{"x":0,"y":0,"fileNum":22033,"id":632,"width":32,"height":32},{"x":0,"y":0,"fileNum":15178,"id":633,"width":256,"height":32},{"x":0,"y":32,"fileNum":15178,"id":634,"width":256,"height":32},{"x":0,"y":64,"fileNum":15178,"id":635,"width":256,"height":32},{"x":0,"y":96,"fileNum":15178,"id":636,"width":256,"height":32},{"x":0,"y":128,"fileNum":15178,"id":637,"width":256,"height":32},{"x":0,"y":160,"fileNum":15178,"id":638,"width":256,"height":32},{"x":0,"y":192,"fileNum":15178,"id":639,"width":256,"height":32},{"x":0,"y":224,"fileNum":15178,"id":640,"width":256,"height":32},{"x":0,"y":0,"fileNum":6065,"id":641,"width":128,"height":128},{"x":12,"y":15,"fileNum":15031,"id":642,"width":65,"height":50},{"x":0,"y":0,"fileNum":6066,"id":643,"width":256,"height":256},{"x":0,"y":0,"fileNum":6067,"id":644,"width":256,"height":256},{"x":0,"y":0,"fileNum":15179,"id":645,"width":256,"height":256},{"x":0,"y":0,"fileNum":15180,"id":646,"width":256,"height":256},{"x":0,"y":0,"fileNum":6068,"id":647,"width":128,"height":128},{"x":0,"y":0,"fileNum":6069,"id":648,"width":64,"height":64},{"x":0,"y":0,"fileNum":15184,"id":649,"width":64,"height":32},{"x":0,"y":0,"fileNum":15185,"id":650,"width":64,"height":96},{"x":0,"y":0,"fileNum":15186,"id":651,"width":96,"height":64},{"x":0,"y":0,"fileNum":15187,"id":652,"width":96,"height":64},{"x":0,"y":0,"fileNum":15188,"id":653,"width":64,"height":64},{"x":0,"y":0,"fileNum":276,"id":654,"width":32,"height":32},{"x":0,"y":0,"fileNum":277,"id":655,"width":32,"height":32},{"x":0,"y":0,"fileNum":278,"id":656,"width":32,"height":32},{"x":0,"y":0,"fileNum":279,"id":657,"width":32,"height":32},{"x":0,"y":0,"fileNum":280,"id":658,"width":32,"height":32},{"x":0,"y":0,"fileNum":281,"id":659,"width":32,"height":32},{"x":0,"y":0,"fileNum":7042,"id":660,"width":160,"height":128},{"x":0,"y":0,"fileNum":9017,"id":661,"width":43,"height":64},{"x":43,"y":0,"fileNum":9017,"id":662,"width":43,"height":64},{"x":86,"y":0,"fileNum":9017,"id":663,"width":43,"height":64},{"x":129,"y":0,"fileNum":9017,"id":664,"width":43,"height":64},{"x":172,"y":0,"fileNum":9017,"id":665,"width":43,"height":64},{"x":215,"y":0,"fileNum":9017,"id":666,"width":43,"height":64},{"x":258,"y":0,"fileNum":9017,"id":667,"width":43,"height":64},{"x":301,"y":0,"fileNum":9017,"id":668,"width":43,"height":64},{"x":0,"y":0,"fileNum":7043,"id":670,"width":64,"height":32},{"x":0,"y":0,"fileNum":7044,"id":671,"width":128,"height":64},{"x":0,"y":0,"fileNum":7045,"id":672,"width":64,"height":32},{"x":0,"y":0,"fileNum":7046,"id":673,"width":64,"height":32},{"x":0,"y":0,"fileNum":282,"id":674,"width":32,"height":32},{"x":0,"y":0,"fileNum":7047,"id":675,"width":128,"height":64},{"x":0,"y":0,"fileNum":7048,"id":676,"width":128,"height":64},{"x":0,"y":0,"fileNum":7049,"id":677,"width":128,"height":64},{"x":0,"y":0,"fileNum":15189,"id":678,"width":209,"height":107},{"x":0,"y":0,"fileNum":10008,"id":679,"width":47,"height":64},{"x":0,"y":0,"fileNum":283,"id":680,"width":32,"height":32},{"x":0,"y":0,"fileNum":284,"id":681,"width":32,"height":32},{"x":0,"y":0,"fileNum":285,"id":682,"width":32,"height":32},{"x":0,"y":0,"fileNum":286,"id":683,"width":32,"height":32},{"x":0,"y":0,"fileNum":22034,"id":684,"width":32,"height":32},{"x":0,"y":0,"fileNum":22035,"id":685,"width":32,"height":32},{"x":0,"y":0,"fileNum":22036,"id":686,"width":32,"height":32},{"x":0,"y":0,"fileNum":287,"id":687,"width":32,"height":32},{"x":0,"y":0,"fileNum":288,"id":688,"width":32,"height":32},{"x":0,"y":0,"fileNum":289,"id":689,"width":32,"height":32},{"x":0,"y":0,"fileNum":290,"id":690,"width":32,"height":32},{"x":0,"y":0,"fileNum":291,"id":691,"width":32,"height":32},{"x":0,"y":0,"fileNum":292,"id":692,"width":32,"height":32},{"x":0,"y":0,"fileNum":293,"id":693,"width":32,"height":32},{"x":0,"y":0,"fileNum":294,"id":694,"width":32,"height":32},{"x":0,"y":0,"fileNum":295,"id":695,"width":32,"height":32},{"x":0,"y":0,"fileNum":9010,"id":696,"width":178,"height":272},{"x":0,"y":0,"fileNum":22037,"id":697,"width":32,"height":32},{"x":0,"y":0,"fileNum":22038,"id":698,"width":32,"height":32},{"x":0,"y":0,"fileNum":22039,"id":699,"width":32,"height":32},{"x":0,"y":0,"fileNum":22040,"id":700,"width":32,"height":32},{"x":0,"y":0,"fileNum":22041,"id":701,"width":32,"height":32},{"x":0,"y":0,"fileNum":22042,"id":702,"width":32,"height":32},{"x":0,"y":0,"fileNum":22043,"id":703,"width":32,"height":32},{"x":0,"y":0,"fileNum":22045,"id":704,"width":32,"height":32},{"x":0,"y":0,"fileNum":22046,"id":705,"width":32,"height":32},{"x":0,"y":0,"fileNum":22047,"id":706,"width":32,"height":32},{"x":0,"y":0,"fileNum":22048,"id":707,"width":32,"height":32},{"x":0,"y":0,"fileNum":16051,"id":708,"width":32,"height":32},{"x":0,"y":0,"fileNum":16052,"id":709,"width":32,"height":32},{"x":0,"y":0,"fileNum":16053,"id":710,"width":32,"height":32},{"x":0,"y":0,"fileNum":16054,"id":711,"width":32,"height":32},{"x":0,"y":0,"fileNum":20013,"id":712,"width":32,"height":32},{"x":0,"y":0,"fileNum":16055,"id":713,"width":32,"height":32},{"x":0,"y":0,"fileNum":16056,"id":714,"width":32,"height":32},{"x":0,"y":0,"fileNum":16057,"id":715,"width":32,"height":32},{"x":0,"y":0,"fileNum":16058,"id":716,"width":32,"height":32},{"x":0,"y":0,"fileNum":18022,"id":717,"width":32,"height":32},{"x":0,"y":0,"fileNum":7050,"id":718,"width":128,"height":64},{"x":0,"y":0,"fileNum":7051,"id":719,"width":128,"height":64},{"x":0,"y":0,"fileNum":7052,"id":720,"width":128,"height":64},{"x":0,"y":0,"fileNum":7053,"id":721,"width":128,"height":64},{"x":0,"y":0,"fileNum":15192,"id":722,"width":32,"height":32},{"x":0,"y":0,"fileNum":22049,"id":723,"width":32,"height":32},{"x":0,"y":0,"fileNum":22050,"id":724,"width":32,"height":32},{"x":0,"y":0,"fileNum":22051,"id":725,"width":32,"height":32},{"x":0,"y":0,"fileNum":21008,"id":726,"width":32,"height":32},{"x":0,"y":0,"fileNum":15027,"id":727,"width":50,"height":50},{"x":0,"y":0,"fileNum":15193,"id":728,"width":128,"height":128},{"x":0,"y":0,"fileNum":13015,"id":729,"width":32,"height":32},{"x":0,"y":0,"fileNum":13016,"id":730,"width":32,"height":32},{"x":0,"y":0,"fileNum":13017,"id":731,"width":32,"height":32},{"x":0,"y":0,"fileNum":13018,"id":732,"width":32,"height":32},{"x":0,"y":0,"fileNum":13019,"id":733,"width":32,"height":32},{"x":0,"y":0,"fileNum":13020,"id":734,"width":32,"height":64},{"x":0,"y":0,"fileNum":6078,"id":735,"width":256,"height":256},{"x":0,"y":0,"fileNum":15194,"id":736,"width":64,"height":96},{"x":0,"y":0,"fileNum":15195,"id":737,"width":96,"height":64},{"x":0,"y":0,"fileNum":13021,"id":738,"width":32,"height":32},{"x":0,"y":10,"fileNum":15033,"id":739,"width":120,"height":90},{"x":0,"y":0,"fileNum":4053,"id":740,"width":109,"height":70},{"x":0,"y":0,"fileNum":15029,"id":741,"width":35,"height":31},{"x":37,"y":0,"fileNum":15029,"id":742,"width":36,"height":31},{"x":73,"y":0,"fileNum":15029,"id":743,"width":37,"height":31},{"x":0,"y":0,"fileNum":15023,"id":744,"width":13,"height":17},{"x":14,"y":0,"fileNum":15023,"id":745,"width":12,"height":17},{"x":24,"y":0,"fileNum":15023,"id":746,"width":12,"height":17},{"x":0,"y":8,"fileNum":15034,"id":747,"width":65,"height":50},{"x":0,"y":0,"fileNum":15036,"id":748,"width":40,"height":50},{"x":0,"y":0,"fileNum":17012,"id":749,"width":32,"height":32},{"x":0,"y":0,"fileNum":16062,"id":750,"width":32,"height":32},{"x":0,"y":0,"fileNum":16063,"id":751,"width":32,"height":32},{"x":0,"y":0,"fileNum":16065,"id":752,"width":32,"height":32},{"x":0,"y":0,"fileNum":16066,"id":753,"width":32,"height":32},{"x":0,"y":0,"fileNum":16067,"id":754,"width":32,"height":32},{"x":0,"y":0,"fileNum":16068,"id":755,"width":32,"height":32},{"x":0,"y":0,"fileNum":298,"id":756,"width":32,"height":32},{"x":0,"y":0,"fileNum":299,"id":757,"width":32,"height":32},{"x":0,"y":0,"fileNum":300,"id":758,"width":32,"height":32},{"x":0,"y":0,"fileNum":301,"id":759,"width":32,"height":32},{"x":0,"y":0,"fileNum":303,"id":760,"width":32,"height":32},{"x":0,"y":0,"fileNum":304,"id":761,"width":32,"height":32},{"x":0,"y":0,"fileNum":305,"id":762,"width":32,"height":32},{"x":0,"y":0,"fileNum":419,"id":763,"width":32,"height":32},{"x":0,"y":0,"fileNum":307,"id":764,"width":32,"height":32},{"x":0,"y":0,"fileNum":308,"id":765,"width":32,"height":32},{"x":0,"y":0,"fileNum":309,"id":766,"width":32,"height":32},{"x":0,"y":0,"fileNum":310,"id":767,"width":32,"height":32},{"x":0,"y":0,"fileNum":311,"id":768,"width":32,"height":32},{"x":0,"y":0,"fileNum":312,"id":769,"width":32,"height":32},{"x":0,"y":0,"fileNum":314,"id":770,"width":32,"height":32},{"x":0,"y":0,"fileNum":315,"id":771,"width":32,"height":32},{"x":0,"y":0,"fileNum":316,"id":772,"width":32,"height":32},{"x":0,"y":0,"fileNum":317,"id":773,"width":32,"height":32},{"x":0,"y":0,"fileNum":318,"id":774,"width":32,"height":32},{"x":0,"y":0,"fileNum":319,"id":775,"width":32,"height":32},{"x":0,"y":0,"fileNum":320,"id":776,"width":32,"height":32},{"x":0,"y":0,"fileNum":321,"id":777,"width":32,"height":32},{"x":0,"y":0,"fileNum":322,"id":778,"width":32,"height":32},{"x":0,"y":0,"fileNum":323,"id":779,"width":32,"height":32},{"x":0,"y":0,"fileNum":324,"id":780,"width":32,"height":32},{"x":0,"y":0,"fileNum":325,"id":781,"width":32,"height":32},{"x":0,"y":0,"fileNum":326,"id":782,"width":32,"height":32},{"x":0,"y":0,"fileNum":327,"id":783,"width":32,"height":32},{"x":0,"y":0,"fileNum":328,"id":784,"width":32,"height":32},{"x":0,"y":0,"fileNum":329,"id":785,"width":32,"height":32},{"x":0,"y":0,"fileNum":330,"id":786,"width":32,"height":32},{"x":0,"y":0,"fileNum":331,"id":787,"width":32,"height":32},{"x":0,"y":0,"fileNum":8164,"id":788,"width":218,"height":266},{"x":0,"y":0,"fileNum":333,"id":789,"width":32,"height":32},{"x":0,"y":0,"fileNum":335,"id":790,"width":32,"height":32},{"x":0,"y":0,"fileNum":336,"id":791,"width":32,"height":32},{"x":0,"y":0,"fileNum":337,"id":792,"width":32,"height":32},{"x":0,"y":0,"fileNum":338,"id":793,"width":32,"height":32},{"x":0,"y":0,"fileNum":339,"id":794,"width":32,"height":32},{"x":0,"y":0,"fileNum":340,"id":795,"width":32,"height":32},{"x":0,"y":0,"fileNum":341,"id":796,"width":32,"height":32},{"x":0,"y":0,"fileNum":342,"id":797,"width":32,"height":32},{"x":0,"y":0,"fileNum":417,"id":798,"width":32,"height":32},{"x":0,"y":0,"fileNum":344,"id":799,"width":32,"height":32},{"x":0,"y":0,"fileNum":347,"id":800,"width":32,"height":32},{"x":0,"y":0,"fileNum":349,"id":801,"width":32,"height":32},{"x":0,"y":0,"fileNum":359,"id":802,"width":32,"height":32},{"x":0,"y":0,"fileNum":367,"id":803,"width":32,"height":32},{"x":0,"y":0,"fileNum":378,"id":804,"width":32,"height":32},{"x":0,"y":0,"fileNum":389,"id":805,"width":32,"height":32},{"x":0,"y":0,"fileNum":400,"id":806,"width":32,"height":32},{"x":0,"y":0,"fileNum":408,"id":807,"width":32,"height":32},{"x":1,"y":0,"fileNum":9011,"id":808,"width":43,"height":64},{"x":43,"y":0,"fileNum":9011,"id":809,"width":43,"height":64},{"x":86,"y":0,"fileNum":9011,"id":810,"width":43,"height":64},{"x":128,"y":0,"fileNum":9011,"id":811,"width":43,"height":64},{"x":170,"y":0,"fileNum":9011,"id":812,"width":43,"height":64},{"x":213,"y":0,"fileNum":9011,"id":813,"width":43,"height":64},{"x":256,"y":0,"fileNum":9011,"id":814,"width":43,"height":64},{"x":298,"y":0,"fileNum":9011,"id":815,"width":43,"height":64},{"x":1,"y":0,"fileNum":9012,"id":817,"width":43,"height":64},{"x":43,"y":0,"fileNum":9012,"id":818,"width":43,"height":64},{"x":86,"y":0,"fileNum":9012,"id":819,"width":43,"height":64},{"x":128,"y":0,"fileNum":9012,"id":820,"width":43,"height":64},{"x":170,"y":0,"fileNum":9012,"id":821,"width":43,"height":64},{"x":213,"y":0,"fileNum":9012,"id":822,"width":43,"height":64},{"x":256,"y":0,"fileNum":9012,"id":823,"width":43,"height":64},{"x":298,"y":0,"fileNum":9012,"id":824,"width":43,"height":64},{"x":1,"y":0,"fileNum":9013,"id":826,"width":43,"height":64},{"x":43,"y":0,"fileNum":9013,"id":827,"width":43,"height":64},{"x":86,"y":0,"fileNum":9013,"id":828,"width":43,"height":64},{"x":128,"y":0,"fileNum":9013,"id":829,"width":43,"height":64},{"x":170,"y":0,"fileNum":9013,"id":830,"width":43,"height":64},{"x":213,"y":0,"fileNum":9013,"id":831,"width":43,"height":64},{"x":256,"y":0,"fileNum":9013,"id":832,"width":43,"height":64},{"x":298,"y":0,"fileNum":9013,"id":833,"width":43,"height":64},{"x":1,"y":0,"fileNum":9014,"id":835,"width":43,"height":64},{"x":43,"y":0,"fileNum":9014,"id":836,"width":43,"height":64},{"x":86,"y":0,"fileNum":9014,"id":837,"width":43,"height":64},{"x":128,"y":0,"fileNum":9014,"id":838,"width":43,"height":64},{"x":170,"y":0,"fileNum":9014,"id":839,"width":43,"height":64},{"x":213,"y":0,"fileNum":9014,"id":840,"width":43,"height":64},{"x":256,"y":0,"fileNum":9014,"id":841,"width":43,"height":64},{"x":298,"y":0,"fileNum":9014,"id":842,"width":43,"height":64},{"x":0,"y":0,"fileNum":21009,"id":844,"width":32,"height":32},{"x":0,"y":0,"fileNum":19023,"id":845,"width":32,"height":32},{"x":0,"y":0,"fileNum":19024,"id":846,"width":32,"height":32},{"x":0,"y":0,"fileNum":19025,"id":847,"width":32,"height":32},{"x":0,"y":0,"fileNum":19026,"id":848,"width":32,"height":32},{"x":0,"y":0,"fileNum":19027,"id":849,"width":32,"height":32},{"x":0,"y":0,"fileNum":19028,"id":850,"width":32,"height":32},{"x":0,"y":0,"fileNum":4157,"id":851,"width":18,"height":26},{"x":18,"y":0,"fileNum":4157,"id":852,"width":18,"height":26},{"x":0,"y":26,"fileNum":4157,"id":853,"width":18,"height":26},{"x":18,"y":26,"fileNum":4157,"id":854,"width":18,"height":26},{"x":0,"y":52,"fileNum":4157,"id":855,"width":18,"height":26},{"x":18,"y":52,"fileNum":4157,"id":856,"width":18,"height":26},{"x":0,"y":78,"fileNum":4157,"id":857,"width":18,"height":26},{"x":18,"y":78,"fileNum":4157,"id":858,"width":18,"height":26},{"x":0,"y":0,"fileNum":7054,"id":863,"width":128,"height":64},{"x":0,"y":0,"fileNum":7055,"id":864,"width":128,"height":64},{"x":0,"y":0,"fileNum":13022,"id":865,"width":75,"height":123},{"x":0,"y":0,"fileNum":13023,"id":866,"width":47,"height":91},{"x":0,"y":0,"fileNum":13024,"id":867,"width":62,"height":44},{"x":0,"y":0,"fileNum":13025,"id":868,"width":77,"height":58},{"x":0,"y":0,"fileNum":13026,"id":869,"width":75,"height":56},{"x":0,"y":0,"fileNum":13027,"id":870,"width":78,"height":55},{"x":0,"y":0,"fileNum":13028,"id":871,"width":54,"height":40},{"x":0,"y":0,"fileNum":13029,"id":872,"width":48,"height":41},{"x":0,"y":0,"fileNum":13030,"id":873,"width":56,"height":48},{"x":0,"y":0,"fileNum":13031,"id":874,"width":64,"height":44},{"x":0,"y":0,"fileNum":7056,"id":875,"width":128,"height":64},{"x":0,"y":0,"fileNum":7057,"id":876,"width":128,"height":64},{"x":0,"y":0,"fileNum":7058,"id":877,"width":128,"height":64},{"x":0,"y":0,"fileNum":7059,"id":878,"width":128,"height":64},{"x":0,"y":15,"fileNum":15044,"id":879,"width":27,"height":40},{"x":0,"y":0,"fileNum":20001,"id":880,"width":25,"height":45},{"x":25,"y":0,"fileNum":20001,"id":881,"width":25,"height":45},{"x":50,"y":0,"fileNum":20001,"id":882,"width":25,"height":45},{"x":75,"y":0,"fileNum":20001,"id":883,"width":25,"height":45},{"x":100,"y":0,"fileNum":20001,"id":884,"width":25,"height":45},{"x":125,"y":0,"fileNum":20001,"id":885,"width":25,"height":45},{"x":0,"y":45,"fileNum":20001,"id":886,"width":25,"height":45},{"x":25,"y":45,"fileNum":20001,"id":887,"width":25,"height":45},{"x":50,"y":45,"fileNum":20001,"id":888,"width":25,"height":45},{"x":75,"y":45,"fileNum":20001,"id":889,"width":25,"height":45},{"x":100,"y":45,"fileNum":20001,"id":890,"width":25,"height":45},{"x":125,"y":45,"fileNum":20001,"id":891,"width":25,"height":45},{"x":0,"y":90,"fileNum":20001,"id":892,"width":25,"height":45},{"x":25,"y":90,"fileNum":20001,"id":893,"width":25,"height":45},{"x":50,"y":90,"fileNum":20001,"id":894,"width":25,"height":45},{"x":75,"y":90,"fileNum":20001,"id":895,"width":25,"height":45},{"x":100,"y":90,"fileNum":20001,"id":896,"width":25,"height":45},{"x":0,"y":135,"fileNum":20001,"id":897,"width":25,"height":45},{"x":25,"y":135,"fileNum":20001,"id":898,"width":25,"height":45},{"x":50,"y":135,"fileNum":20001,"id":899,"width":25,"height":45},{"x":75,"y":135,"fileNum":20001,"id":900,"width":25,"height":45},{"x":100,"y":135,"fileNum":20001,"id":901,"width":25,"height":45},{"x":0,"y":0,"fileNum":20000,"id":906,"width":25,"height":45},{"x":25,"y":0,"fileNum":20000,"id":907,"width":25,"height":45},{"x":50,"y":0,"fileNum":20000,"id":908,"width":25,"height":45},{"x":75,"y":0,"fileNum":20000,"id":909,"width":25,"height":45},{"x":100,"y":0,"fileNum":20000,"id":910,"width":25,"height":45},{"x":125,"y":0,"fileNum":20000,"id":911,"width":25,"height":45},{"x":0,"y":45,"fileNum":20000,"id":912,"width":25,"height":45},{"x":25,"y":45,"fileNum":20000,"id":913,"width":25,"height":45},{"x":50,"y":45,"fileNum":20000,"id":914,"width":25,"height":45},{"x":75,"y":45,"fileNum":20000,"id":915,"width":25,"height":45},{"x":100,"y":45,"fileNum":20000,"id":916,"width":25,"height":45},{"x":125,"y":45,"fileNum":20000,"id":917,"width":25,"height":45},{"x":0,"y":90,"fileNum":20000,"id":918,"width":25,"height":45},{"x":25,"y":90,"fileNum":20000,"id":919,"width":25,"height":45},{"x":50,"y":90,"fileNum":20000,"id":920,"width":25,"height":45},{"x":75,"y":90,"fileNum":20000,"id":921,"width":25,"height":45},{"x":100,"y":90,"fileNum":20000,"id":922,"width":25,"height":45},{"x":0,"y":135,"fileNum":20000,"id":923,"width":25,"height":45},{"x":25,"y":135,"fileNum":20000,"id":924,"width":25,"height":45},{"x":50,"y":135,"fileNum":20000,"id":925,"width":25,"height":45},{"x":75,"y":135,"fileNum":20000,"id":926,"width":25,"height":45},{"x":100,"y":135,"fileNum":20000,"id":927,"width":25,"height":45},{"x":0,"y":0,"fileNum":16000,"id":932,"width":32,"height":32},{"x":0,"y":0,"fileNum":16001,"id":933,"width":25,"height":45},{"x":25,"y":0,"fileNum":16001,"id":934,"width":25,"height":45},{"x":50,"y":0,"fileNum":16001,"id":935,"width":25,"height":45},{"x":75,"y":0,"fileNum":16001,"id":936,"width":25,"height":45},{"x":100,"y":0,"fileNum":16001,"id":937,"width":25,"height":45},{"x":125,"y":0,"fileNum":16001,"id":938,"width":25,"height":45},{"x":0,"y":45,"fileNum":16001,"id":939,"width":25,"height":45},{"x":25,"y":45,"fileNum":16001,"id":940,"width":25,"height":45},{"x":50,"y":45,"fileNum":16001,"id":941,"width":25,"height":45},{"x":75,"y":45,"fileNum":16001,"id":942,"width":25,"height":45},{"x":100,"y":45,"fileNum":16001,"id":943,"width":25,"height":45},{"x":125,"y":45,"fileNum":16001,"id":944,"width":25,"height":45},{"x":0,"y":90,"fileNum":16001,"id":945,"width":25,"height":45},{"x":25,"y":90,"fileNum":16001,"id":946,"width":25,"height":45},{"x":50,"y":90,"fileNum":16001,"id":947,"width":25,"height":45},{"x":75,"y":90,"fileNum":16001,"id":948,"width":25,"height":45},{"x":100,"y":90,"fileNum":16001,"id":949,"width":25,"height":45},{"x":0,"y":135,"fileNum":16001,"id":950,"width":25,"height":45},{"x":25,"y":135,"fileNum":16001,"id":951,"width":25,"height":45},{"x":50,"y":135,"fileNum":16001,"id":952,"width":25,"height":45},{"x":75,"y":135,"fileNum":16001,"id":953,"width":25,"height":45},{"x":100,"y":135,"fileNum":16001,"id":954,"width":25,"height":45},{"x":0,"y":0,"fileNum":16002,"id":959,"width":32,"height":32},{"x":0,"y":0,"fileNum":16003,"id":960,"width":25,"height":45},{"x":25,"y":0,"fileNum":16003,"id":961,"width":25,"height":45},{"x":50,"y":0,"fileNum":16003,"id":962,"width":25,"height":45},{"x":75,"y":0,"fileNum":16003,"id":963,"width":25,"height":45},{"x":100,"y":0,"fileNum":16003,"id":964,"width":25,"height":45},{"x":125,"y":0,"fileNum":16003,"id":965,"width":25,"height":45},{"x":0,"y":45,"fileNum":16003,"id":966,"width":25,"height":45},{"x":25,"y":45,"fileNum":16003,"id":967,"width":25,"height":45},{"x":50,"y":45,"fileNum":16003,"id":968,"width":25,"height":45},{"x":75,"y":45,"fileNum":16003,"id":969,"width":25,"height":45},{"x":100,"y":45,"fileNum":16003,"id":970,"width":25,"height":45},{"x":125,"y":45,"fileNum":16003,"id":971,"width":25,"height":45},{"x":0,"y":90,"fileNum":16003,"id":972,"width":25,"height":45},{"x":25,"y":90,"fileNum":16003,"id":973,"width":25,"height":45},{"x":50,"y":90,"fileNum":16003,"id":974,"width":25,"height":45},{"x":75,"y":90,"fileNum":16003,"id":975,"width":25,"height":45},{"x":100,"y":90,"fileNum":16003,"id":976,"width":25,"height":45},{"x":0,"y":135,"fileNum":16003,"id":977,"width":25,"height":45},{"x":25,"y":135,"fileNum":16003,"id":978,"width":25,"height":45},{"x":50,"y":135,"fileNum":16003,"id":979,"width":25,"height":45},{"x":75,"y":135,"fileNum":16003,"id":980,"width":25,"height":45},{"x":100,"y":135,"fileNum":16003,"id":981,"width":25,"height":45},{"x":0,"y":0,"fileNum":16004,"id":986,"width":32,"height":32},{"x":0,"y":0,"fileNum":16005,"id":987,"width":25,"height":45},{"x":25,"y":0,"fileNum":16005,"id":988,"width":25,"height":45},{"x":50,"y":0,"fileNum":16005,"id":989,"width":25,"height":45},{"x":75,"y":0,"fileNum":16005,"id":990,"width":25,"height":45},{"x":100,"y":0,"fileNum":16005,"id":991,"width":25,"height":45},{"x":125,"y":0,"fileNum":16005,"id":992,"width":25,"height":45},{"x":0,"y":45,"fileNum":16005,"id":993,"width":25,"height":45},{"x":25,"y":45,"fileNum":16005,"id":994,"width":25,"height":45},{"x":50,"y":45,"fileNum":16005,"id":995,"width":25,"height":45},{"x":75,"y":45,"fileNum":16005,"id":996,"width":25,"height":45},{"x":100,"y":45,"fileNum":16005,"id":997,"width":25,"height":45},{"x":125,"y":45,"fileNum":16005,"id":998,"width":25,"height":45},{"x":0,"y":90,"fileNum":16005,"id":999,"width":25,"height":45},{"x":25,"y":90,"fileNum":16005,"id":1000,"width":25,"height":45},{"x":50,"y":90,"fileNum":16005,"id":1001,"width":25,"height":45},{"x":75,"y":90,"fileNum":16005,"id":1002,"width":25,"height":45},{"x":100,"y":90,"fileNum":16005,"id":1003,"width":25,"height":45},{"x":0,"y":135,"fileNum":16005,"id":1004,"width":25,"height":45},{"x":25,"y":135,"fileNum":16005,"id":1005,"width":25,"height":45},{"x":50,"y":135,"fileNum":16005,"id":1006,"width":25,"height":45},{"x":75,"y":135,"fileNum":16005,"id":1007,"width":25,"height":45},{"x":100,"y":135,"fileNum":16005,"id":1008,"width":25,"height":45},{"x":0,"y":0,"fileNum":18000,"id":1013,"width":32,"height":32},{"x":0,"y":0,"fileNum":18001,"id":1014,"width":17,"height":28},{"x":17,"y":0,"fileNum":18001,"id":1015,"width":17,"height":28},{"x":34,"y":0,"fileNum":18001,"id":1016,"width":17,"height":28},{"x":51,"y":0,"fileNum":18001,"id":1017,"width":17,"height":28},{"x":0,"y":0,"fileNum":18002,"id":1018,"width":32,"height":32},{"x":0,"y":0,"fileNum":18003,"id":1019,"width":17,"height":28},{"x":17,"y":0,"fileNum":18003,"id":1020,"width":17,"height":28},{"x":34,"y":0,"fileNum":18003,"id":1021,"width":17,"height":28},{"x":51,"y":0,"fileNum":18003,"id":1022,"width":17,"height":28},{"x":0,"y":0,"fileNum":16006,"id":1023,"width":32,"height":32},{"x":0,"y":0,"fileNum":16007,"id":1024,"width":32,"height":32},{"x":0,"y":0,"fileNum":16008,"id":1025,"width":32,"height":32},{"x":0,"y":0,"fileNum":16009,"id":1026,"width":25,"height":45},{"x":25,"y":0,"fileNum":16009,"id":1027,"width":25,"height":45},{"x":50,"y":0,"fileNum":16009,"id":1028,"width":25,"height":45},{"x":75,"y":0,"fileNum":16009,"id":1029,"width":25,"height":45},{"x":100,"y":0,"fileNum":16009,"id":1030,"width":25,"height":45},{"x":125,"y":0,"fileNum":16009,"id":1031,"width":25,"height":45},{"x":0,"y":45,"fileNum":16009,"id":1032,"width":25,"height":45},{"x":25,"y":45,"fileNum":16009,"id":1033,"width":25,"height":45},{"x":50,"y":45,"fileNum":16009,"id":1034,"width":25,"height":45},{"x":75,"y":45,"fileNum":16009,"id":1035,"width":25,"height":45},{"x":100,"y":45,"fileNum":16009,"id":1036,"width":25,"height":45},{"x":125,"y":45,"fileNum":16009,"id":1037,"width":25,"height":45},{"x":0,"y":90,"fileNum":16009,"id":1038,"width":25,"height":45},{"x":25,"y":90,"fileNum":16009,"id":1039,"width":25,"height":45},{"x":50,"y":90,"fileNum":16009,"id":1040,"width":25,"height":45},{"x":75,"y":90,"fileNum":16009,"id":1041,"width":25,"height":45},{"x":100,"y":90,"fileNum":16009,"id":1042,"width":25,"height":45},{"x":0,"y":135,"fileNum":16009,"id":1043,"width":25,"height":45},{"x":25,"y":135,"fileNum":16009,"id":1044,"width":25,"height":45},{"x":50,"y":135,"fileNum":16009,"id":1045,"width":25,"height":45},{"x":75,"y":135,"fileNum":16009,"id":1046,"width":25,"height":45},{"x":100,"y":135,"fileNum":16009,"id":1047,"width":25,"height":45},{"x":0,"y":0,"fileNum":12000,"id":1052,"width":32,"height":32},{"x":32,"y":0,"fileNum":12000,"id":1053,"width":32,"height":32},{"x":64,"y":0,"fileNum":12000,"id":1054,"width":32,"height":32},{"x":96,"y":0,"fileNum":12000,"id":1055,"width":32,"height":32},{"x":0,"y":32,"fileNum":12000,"id":1056,"width":32,"height":32},{"x":32,"y":32,"fileNum":12000,"id":1057,"width":32,"height":32},{"x":64,"y":32,"fileNum":12000,"id":1058,"width":32,"height":32},{"x":96,"y":32,"fileNum":12000,"id":1059,"width":32,"height":32},{"x":0,"y":64,"fileNum":12000,"id":1060,"width":32,"height":32},{"x":32,"y":64,"fileNum":12000,"id":1061,"width":32,"height":32},{"x":64,"y":64,"fileNum":12000,"id":1062,"width":32,"height":32},{"x":96,"y":64,"fileNum":12000,"id":1063,"width":32,"height":32},{"x":0,"y":96,"fileNum":12000,"id":1064,"width":32,"height":32},{"x":32,"y":96,"fileNum":12000,"id":1065,"width":32,"height":32},{"x":64,"y":96,"fileNum":12000,"id":1066,"width":32,"height":32},{"x":96,"y":96,"fileNum":12000,"id":1067,"width":32,"height":32},{"x":0,"y":0,"fileNum":12001,"id":1068,"width":32,"height":32},{"x":32,"y":0,"fileNum":12001,"id":1069,"width":32,"height":32},{"x":64,"y":0,"fileNum":12001,"id":1070,"width":32,"height":32},{"x":96,"y":0,"fileNum":12001,"id":1071,"width":32,"height":32},{"x":0,"y":32,"fileNum":12001,"id":1072,"width":32,"height":32},{"x":32,"y":32,"fileNum":12001,"id":1073,"width":32,"height":32},{"x":64,"y":32,"fileNum":12001,"id":1074,"width":32,"height":32},{"x":96,"y":32,"fileNum":12001,"id":1075,"width":32,"height":32},{"x":0,"y":64,"fileNum":12001,"id":1076,"width":32,"height":32},{"x":32,"y":64,"fileNum":12001,"id":1077,"width":32,"height":32},{"x":64,"y":64,"fileNum":12001,"id":1078,"width":32,"height":32},{"x":96,"y":64,"fileNum":12001,"id":1079,"width":32,"height":32},{"x":0,"y":96,"fileNum":12001,"id":1080,"width":32,"height":32},{"x":32,"y":96,"fileNum":12001,"id":1081,"width":32,"height":32},{"x":64,"y":96,"fileNum":12001,"id":1082,"width":32,"height":32},{"x":96,"y":96,"fileNum":12001,"id":1083,"width":32,"height":32},{"x":0,"y":0,"fileNum":12002,"id":1084,"width":32,"height":32},{"x":32,"y":0,"fileNum":12002,"id":1085,"width":32,"height":32},{"x":64,"y":0,"fileNum":12002,"id":1086,"width":32,"height":32},{"x":96,"y":0,"fileNum":12002,"id":1087,"width":32,"height":32},{"x":0,"y":32,"fileNum":12002,"id":1088,"width":32,"height":32},{"x":32,"y":32,"fileNum":12002,"id":1089,"width":32,"height":32},{"x":64,"y":32,"fileNum":12002,"id":1090,"width":32,"height":32},{"x":96,"y":32,"fileNum":12002,"id":1091,"width":32,"height":32},{"x":0,"y":64,"fileNum":12002,"id":1092,"width":32,"height":32},{"x":32,"y":64,"fileNum":12002,"id":1093,"width":32,"height":32},{"x":64,"y":64,"fileNum":12002,"id":1094,"width":32,"height":32},{"x":96,"y":64,"fileNum":12002,"id":1095,"width":32,"height":32},{"x":0,"y":96,"fileNum":12002,"id":1096,"width":32,"height":32},{"x":32,"y":96,"fileNum":12002,"id":1097,"width":32,"height":32},{"x":64,"y":96,"fileNum":12002,"id":1098,"width":32,"height":32},{"x":96,"y":96,"fileNum":12002,"id":1099,"width":32,"height":32},{"x":0,"y":0,"fileNum":6,"id":1100,"width":32,"height":32},{"x":0,"y":0,"fileNum":7,"id":1101,"width":25,"height":45},{"x":25,"y":0,"fileNum":7,"id":1102,"width":25,"height":45},{"x":50,"y":0,"fileNum":7,"id":1103,"width":25,"height":45},{"x":75,"y":0,"fileNum":7,"id":1104,"width":25,"height":45},{"x":100,"y":0,"fileNum":7,"id":1105,"width":25,"height":45},{"x":125,"y":0,"fileNum":7,"id":1106,"width":25,"height":45},{"x":0,"y":45,"fileNum":7,"id":1107,"width":25,"height":45},{"x":25,"y":45,"fileNum":7,"id":1108,"width":25,"height":45},{"x":50,"y":45,"fileNum":7,"id":1109,"width":25,"height":45},{"x":75,"y":45,"fileNum":7,"id":1110,"width":25,"height":45},{"x":100,"y":45,"fileNum":7,"id":1111,"width":25,"height":45},{"x":125,"y":45,"fileNum":7,"id":1112,"width":25,"height":45},{"x":0,"y":90,"fileNum":7,"id":1113,"width":25,"height":45},{"x":25,"y":90,"fileNum":7,"id":1114,"width":25,"height":45},{"x":50,"y":90,"fileNum":7,"id":1115,"width":25,"height":45},{"x":75,"y":90,"fileNum":7,"id":1116,"width":25,"height":45},{"x":100,"y":90,"fileNum":7,"id":1117,"width":25,"height":45},{"x":0,"y":135,"fileNum":7,"id":1118,"width":25,"height":45},{"x":25,"y":135,"fileNum":7,"id":1119,"width":25,"height":45},{"x":50,"y":135,"fileNum":7,"id":1120,"width":25,"height":45},{"x":75,"y":135,"fileNum":7,"id":1121,"width":25,"height":45},{"x":100,"y":135,"fileNum":7,"id":1122,"width":25,"height":45},{"x":0,"y":0,"fileNum":8,"id":1127,"width":32,"height":32},{"x":0,"y":0,"fileNum":9,"id":1128,"width":25,"height":45},{"x":25,"y":0,"fileNum":9,"id":1129,"width":25,"height":45},{"x":50,"y":0,"fileNum":9,"id":1130,"width":25,"height":45},{"x":75,"y":0,"fileNum":9,"id":1131,"width":25,"height":45},{"x":100,"y":0,"fileNum":9,"id":1132,"width":25,"height":45},{"x":125,"y":0,"fileNum":9,"id":1133,"width":25,"height":45},{"x":0,"y":45,"fileNum":9,"id":1134,"width":25,"height":45},{"x":25,"y":45,"fileNum":9,"id":1135,"width":25,"height":45},{"x":50,"y":45,"fileNum":9,"id":1136,"width":25,"height":45},{"x":75,"y":45,"fileNum":9,"id":1137,"width":25,"height":45},{"x":100,"y":45,"fileNum":9,"id":1138,"width":25,"height":45},{"x":125,"y":45,"fileNum":9,"id":1139,"width":25,"height":45},{"x":0,"y":90,"fileNum":9,"id":1140,"width":25,"height":45},{"x":25,"y":90,"fileNum":9,"id":1141,"width":25,"height":45},{"x":50,"y":90,"fileNum":9,"id":1142,"width":25,"height":45},{"x":75,"y":90,"fileNum":9,"id":1143,"width":25,"height":45},{"x":100,"y":90,"fileNum":9,"id":1144,"width":25,"height":45},{"x":0,"y":135,"fileNum":9,"id":1145,"width":25,"height":45},{"x":25,"y":135,"fileNum":9,"id":1146,"width":25,"height":45},{"x":50,"y":135,"fileNum":9,"id":1147,"width":25,"height":45},{"x":75,"y":135,"fileNum":9,"id":1148,"width":25,"height":45},{"x":100,"y":135,"fileNum":9,"id":1149,"width":25,"height":45},{"x":0,"y":0,"fileNum":10,"id":1154,"width":32,"height":32},{"x":0,"y":0,"fileNum":11,"id":1155,"width":25,"height":45},{"x":25,"y":0,"fileNum":11,"id":1156,"width":25,"height":45},{"x":50,"y":0,"fileNum":11,"id":1157,"width":25,"height":45},{"x":75,"y":0,"fileNum":11,"id":1158,"width":25,"height":45},{"x":100,"y":0,"fileNum":11,"id":1159,"width":25,"height":45},{"x":125,"y":0,"fileNum":11,"id":1160,"width":25,"height":45},{"x":0,"y":45,"fileNum":11,"id":1161,"width":25,"height":45},{"x":25,"y":45,"fileNum":11,"id":1162,"width":25,"height":45},{"x":50,"y":45,"fileNum":11,"id":1163,"width":25,"height":45},{"x":75,"y":45,"fileNum":11,"id":1164,"width":25,"height":45},{"x":100,"y":45,"fileNum":11,"id":1165,"width":25,"height":45},{"x":125,"y":45,"fileNum":11,"id":1166,"width":25,"height":45},{"x":0,"y":90,"fileNum":11,"id":1167,"width":25,"height":45},{"x":25,"y":90,"fileNum":11,"id":1168,"width":25,"height":45},{"x":50,"y":90,"fileNum":11,"id":1169,"width":25,"height":45},{"x":75,"y":90,"fileNum":11,"id":1170,"width":25,"height":45},{"x":100,"y":90,"fileNum":11,"id":1171,"width":25,"height":45},{"x":0,"y":135,"fileNum":11,"id":1172,"width":25,"height":45},{"x":25,"y":135,"fileNum":11,"id":1173,"width":25,"height":45},{"x":50,"y":135,"fileNum":11,"id":1174,"width":25,"height":45},{"x":75,"y":135,"fileNum":11,"id":1175,"width":25,"height":45},{"x":100,"y":135,"fileNum":11,"id":1176,"width":25,"height":45},{"x":0,"y":0,"fileNum":12,"id":1181,"width":32,"height":32},{"x":0,"y":0,"fileNum":13,"id":1182,"width":25,"height":45},{"x":25,"y":0,"fileNum":13,"id":1183,"width":25,"height":45},{"x":50,"y":0,"fileNum":13,"id":1184,"width":25,"height":45},{"x":75,"y":0,"fileNum":13,"id":1185,"width":25,"height":45},{"x":100,"y":0,"fileNum":13,"id":1186,"width":25,"height":45},{"x":125,"y":0,"fileNum":13,"id":1187,"width":25,"height":45},{"x":0,"y":45,"fileNum":13,"id":1188,"width":25,"height":45},{"x":25,"y":45,"fileNum":13,"id":1189,"width":25,"height":45},{"x":50,"y":45,"fileNum":13,"id":1190,"width":25,"height":45},{"x":75,"y":45,"fileNum":13,"id":1191,"width":25,"height":45},{"x":100,"y":45,"fileNum":13,"id":1192,"width":25,"height":45},{"x":125,"y":45,"fileNum":13,"id":1193,"width":25,"height":45},{"x":0,"y":90,"fileNum":13,"id":1194,"width":25,"height":45},{"x":25,"y":90,"fileNum":13,"id":1195,"width":25,"height":45},{"x":50,"y":90,"fileNum":13,"id":1196,"width":25,"height":45},{"x":75,"y":90,"fileNum":13,"id":1197,"width":25,"height":45},{"x":100,"y":90,"fileNum":13,"id":1198,"width":25,"height":45},{"x":0,"y":135,"fileNum":13,"id":1199,"width":25,"height":45},{"x":25,"y":135,"fileNum":13,"id":1200,"width":25,"height":45},{"x":50,"y":135,"fileNum":13,"id":1201,"width":25,"height":45},{"x":75,"y":135,"fileNum":13,"id":1202,"width":25,"height":45},{"x":100,"y":135,"fileNum":13,"id":1203,"width":25,"height":45},{"x":0,"y":0,"fileNum":14,"id":1208,"width":32,"height":32},{"x":0,"y":0,"fileNum":15,"id":1209,"width":25,"height":45},{"x":25,"y":0,"fileNum":15,"id":1210,"width":25,"height":45},{"x":50,"y":0,"fileNum":15,"id":1211,"width":25,"height":45},{"x":75,"y":0,"fileNum":15,"id":1212,"width":25,"height":45},{"x":100,"y":0,"fileNum":15,"id":1213,"width":25,"height":45},{"x":125,"y":0,"fileNum":15,"id":1214,"width":25,"height":45},{"x":0,"y":45,"fileNum":15,"id":1215,"width":25,"height":45},{"x":25,"y":45,"fileNum":15,"id":1216,"width":25,"height":45},{"x":50,"y":45,"fileNum":15,"id":1217,"width":25,"height":45},{"x":75,"y":45,"fileNum":15,"id":1218,"width":25,"height":45},{"x":100,"y":45,"fileNum":15,"id":1219,"width":25,"height":45},{"x":125,"y":45,"fileNum":15,"id":1220,"width":25,"height":45},{"x":0,"y":90,"fileNum":15,"id":1221,"width":25,"height":45},{"x":25,"y":90,"fileNum":15,"id":1222,"width":25,"height":45},{"x":50,"y":90,"fileNum":15,"id":1223,"width":25,"height":45},{"x":75,"y":90,"fileNum":15,"id":1224,"width":25,"height":45},{"x":100,"y":90,"fileNum":15,"id":1225,"width":25,"height":45},{"x":0,"y":135,"fileNum":15,"id":1226,"width":25,"height":45},{"x":25,"y":135,"fileNum":15,"id":1227,"width":25,"height":45},{"x":50,"y":135,"fileNum":15,"id":1228,"width":25,"height":45},{"x":75,"y":135,"fileNum":15,"id":1229,"width":25,"height":45},{"x":100,"y":135,"fileNum":15,"id":1230,"width":25,"height":45},{"x":0,"y":0,"fileNum":17,"id":1235,"width":32,"height":32},{"x":0,"y":0,"fileNum":18,"id":1236,"width":25,"height":45},{"x":25,"y":0,"fileNum":18,"id":1237,"width":25,"height":45},{"x":50,"y":0,"fileNum":18,"id":1238,"width":25,"height":45},{"x":75,"y":0,"fileNum":18,"id":1239,"width":25,"height":45},{"x":100,"y":0,"fileNum":18,"id":1240,"width":25,"height":45},{"x":125,"y":0,"fileNum":18,"id":1241,"width":25,"height":45},{"x":0,"y":45,"fileNum":18,"id":1242,"width":25,"height":45},{"x":25,"y":45,"fileNum":18,"id":1243,"width":25,"height":45},{"x":50,"y":45,"fileNum":18,"id":1244,"width":25,"height":45},{"x":75,"y":45,"fileNum":18,"id":1245,"width":25,"height":45},{"x":100,"y":45,"fileNum":18,"id":1246,"width":25,"height":45},{"x":125,"y":45,"fileNum":18,"id":1247,"width":25,"height":45},{"x":0,"y":90,"fileNum":18,"id":1248,"width":25,"height":45},{"x":25,"y":90,"fileNum":18,"id":1249,"width":25,"height":45},{"x":50,"y":90,"fileNum":18,"id":1250,"width":25,"height":45},{"x":75,"y":90,"fileNum":18,"id":1251,"width":25,"height":45},{"x":100,"y":90,"fileNum":18,"id":1252,"width":25,"height":45},{"x":0,"y":135,"fileNum":18,"id":1253,"width":25,"height":45},{"x":25,"y":135,"fileNum":18,"id":1254,"width":25,"height":45},{"x":50,"y":135,"fileNum":18,"id":1255,"width":25,"height":45},{"x":75,"y":135,"fileNum":18,"id":1256,"width":25,"height":45},{"x":100,"y":135,"fileNum":18,"id":1257,"width":25,"height":45},{"x":0,"y":0,"fileNum":19,"id":1262,"width":32,"height":32},{"x":0,"y":0,"fileNum":20,"id":1263,"width":25,"height":45},{"x":25,"y":0,"fileNum":20,"id":1264,"width":25,"height":45},{"x":50,"y":0,"fileNum":20,"id":1265,"width":25,"height":45},{"x":75,"y":0,"fileNum":20,"id":1266,"width":25,"height":45},{"x":100,"y":0,"fileNum":20,"id":1267,"width":25,"height":45},{"x":125,"y":0,"fileNum":20,"id":1268,"width":25,"height":45},{"x":0,"y":45,"fileNum":20,"id":1269,"width":25,"height":45},{"x":25,"y":45,"fileNum":20,"id":1270,"width":25,"height":45},{"x":50,"y":45,"fileNum":20,"id":1271,"width":25,"height":45},{"x":75,"y":45,"fileNum":20,"id":1272,"width":25,"height":45},{"x":100,"y":45,"fileNum":20,"id":1273,"width":25,"height":45},{"x":125,"y":45,"fileNum":20,"id":1274,"width":25,"height":45},{"x":0,"y":90,"fileNum":20,"id":1275,"width":25,"height":45},{"x":25,"y":90,"fileNum":20,"id":1276,"width":25,"height":45},{"x":50,"y":90,"fileNum":20,"id":1277,"width":25,"height":45},{"x":75,"y":90,"fileNum":20,"id":1278,"width":25,"height":45},{"x":100,"y":90,"fileNum":20,"id":1279,"width":25,"height":45},{"x":0,"y":135,"fileNum":20,"id":1280,"width":25,"height":45},{"x":25,"y":135,"fileNum":20,"id":1281,"width":25,"height":45},{"x":50,"y":135,"fileNum":20,"id":1282,"width":25,"height":45},{"x":75,"y":135,"fileNum":20,"id":1283,"width":25,"height":45},{"x":100,"y":135,"fileNum":20,"id":1284,"width":25,"height":45},{"x":0,"y":0,"fileNum":16010,"id":1289,"width":25,"height":45},{"x":25,"y":0,"fileNum":16010,"id":1290,"width":25,"height":45},{"x":50,"y":0,"fileNum":16010,"id":1291,"width":25,"height":45},{"x":75,"y":0,"fileNum":16010,"id":1292,"width":25,"height":45},{"x":100,"y":0,"fileNum":16010,"id":1293,"width":25,"height":45},{"x":125,"y":0,"fileNum":16010,"id":1294,"width":25,"height":45},{"x":0,"y":45,"fileNum":16010,"id":1295,"width":25,"height":45},{"x":25,"y":45,"fileNum":16010,"id":1296,"width":25,"height":45},{"x":50,"y":45,"fileNum":16010,"id":1297,"width":25,"height":45},{"x":75,"y":45,"fileNum":16010,"id":1298,"width":25,"height":45},{"x":100,"y":45,"fileNum":16010,"id":1299,"width":25,"height":45},{"x":125,"y":45,"fileNum":16010,"id":1300,"width":25,"height":45},{"x":0,"y":90,"fileNum":16010,"id":1301,"width":25,"height":45},{"x":25,"y":90,"fileNum":16010,"id":1302,"width":25,"height":45},{"x":50,"y":90,"fileNum":16010,"id":1303,"width":25,"height":45},{"x":75,"y":90,"fileNum":16010,"id":1304,"width":25,"height":45},{"x":100,"y":90,"fileNum":16010,"id":1305,"width":25,"height":45},{"x":0,"y":135,"fileNum":16010,"id":1306,"width":25,"height":45},{"x":25,"y":135,"fileNum":16010,"id":1307,"width":25,"height":45},{"x":50,"y":135,"fileNum":16010,"id":1308,"width":25,"height":45},{"x":75,"y":135,"fileNum":16010,"id":1309,"width":25,"height":45},{"x":100,"y":135,"fileNum":16010,"id":1310,"width":25,"height":45},{"x":0,"y":0,"fileNum":12051,"id":1315,"width":32,"height":32},{"x":32,"y":0,"fileNum":12051,"id":1316,"width":32,"height":32},{"x":64,"y":0,"fileNum":12051,"id":1317,"width":32,"height":32},{"x":96,"y":0,"fileNum":12051,"id":1318,"width":32,"height":32},{"x":0,"y":32,"fileNum":12051,"id":1319,"width":32,"height":32},{"x":32,"y":32,"fileNum":12051,"id":1320,"width":32,"height":32},{"x":64,"y":32,"fileNum":12051,"id":1321,"width":32,"height":32},{"x":96,"y":32,"fileNum":12051,"id":1322,"width":32,"height":32},{"x":0,"y":64,"fileNum":12051,"id":1323,"width":32,"height":32},{"x":32,"y":64,"fileNum":12051,"id":1324,"width":32,"height":32},{"x":64,"y":64,"fileNum":12051,"id":1325,"width":32,"height":32},{"x":96,"y":64,"fileNum":12051,"id":1326,"width":32,"height":32},{"x":0,"y":96,"fileNum":12051,"id":1327,"width":32,"height":32},{"x":32,"y":96,"fileNum":12051,"id":1328,"width":32,"height":32},{"x":64,"y":96,"fileNum":12051,"id":1329,"width":32,"height":32},{"x":96,"y":96,"fileNum":12051,"id":1330,"width":32,"height":32},{"x":0,"y":0,"fileNum":8165,"id":1331,"width":500,"height":395},{"x":0,"y":0,"fileNum":8166,"id":1332,"width":32,"height":32},{"x":32,"y":0,"fileNum":8166,"id":1333,"width":32,"height":32},{"x":64,"y":0,"fileNum":8166,"id":1334,"width":32,"height":32},{"x":96,"y":0,"fileNum":8166,"id":1335,"width":32,"height":32},{"x":0,"y":32,"fileNum":8166,"id":1336,"width":32,"height":32},{"x":32,"y":32,"fileNum":8166,"id":1337,"width":32,"height":32},{"x":64,"y":32,"fileNum":8166,"id":1338,"width":32,"height":32},{"x":96,"y":32,"fileNum":8166,"id":1339,"width":32,"height":32},{"x":0,"y":64,"fileNum":8166,"id":1340,"width":32,"height":32},{"x":32,"y":64,"fileNum":8166,"id":1341,"width":32,"height":32},{"x":64,"y":64,"fileNum":8166,"id":1342,"width":32,"height":32},{"x":96,"y":64,"fileNum":8166,"id":1343,"width":32,"height":32},{"x":0,"y":96,"fileNum":8166,"id":1344,"width":32,"height":32},{"x":32,"y":96,"fileNum":8166,"id":1345,"width":32,"height":32},{"x":64,"y":96,"fileNum":8166,"id":1346,"width":32,"height":32},{"x":96,"y":96,"fileNum":8166,"id":1347,"width":32,"height":32},{"x":128,"y":0,"fileNum":8166,"id":1348,"width":32,"height":32},{"x":160,"y":0,"fileNum":8166,"id":1349,"width":32,"height":32},{"x":192,"y":0,"fileNum":8166,"id":1350,"width":32,"height":32},{"x":224,"y":0,"fileNum":8166,"id":1351,"width":32,"height":32},{"x":128,"y":32,"fileNum":8166,"id":1352,"width":32,"height":32},{"x":160,"y":32,"fileNum":8166,"id":1353,"width":32,"height":32},{"x":192,"y":32,"fileNum":8166,"id":1354,"width":32,"height":32},{"x":224,"y":32,"fileNum":8166,"id":1355,"width":32,"height":32},{"x":128,"y":64,"fileNum":8166,"id":1356,"width":32,"height":32},{"x":160,"y":64,"fileNum":8166,"id":1357,"width":32,"height":32},{"x":192,"y":64,"fileNum":8166,"id":1358,"width":32,"height":32},{"x":224,"y":64,"fileNum":8166,"id":1359,"width":32,"height":32},{"x":128,"y":96,"fileNum":8166,"id":1360,"width":32,"height":32},{"x":160,"y":96,"fileNum":8166,"id":1361,"width":32,"height":32},{"x":192,"y":96,"fileNum":8166,"id":1362,"width":32,"height":32},{"x":224,"y":96,"fileNum":8166,"id":1363,"width":32,"height":32},{"x":256,"y":0,"fileNum":8166,"id":1364,"width":32,"height":32},{"x":288,"y":0,"fileNum":8166,"id":1365,"width":32,"height":32},{"x":320,"y":0,"fileNum":8166,"id":1366,"width":32,"height":32},{"x":352,"y":0,"fileNum":8166,"id":1367,"width":32,"height":32},{"x":256,"y":32,"fileNum":8166,"id":1368,"width":32,"height":32},{"x":288,"y":32,"fileNum":8166,"id":1369,"width":32,"height":32},{"x":320,"y":32,"fileNum":8166,"id":1370,"width":32,"height":32},{"x":352,"y":32,"fileNum":8166,"id":1371,"width":32,"height":32},{"x":256,"y":64,"fileNum":8166,"id":1372,"width":32,"height":32},{"x":288,"y":64,"fileNum":8166,"id":1373,"width":32,"height":32},{"x":320,"y":64,"fileNum":8166,"id":1374,"width":32,"height":32},{"x":352,"y":64,"fileNum":8166,"id":1375,"width":32,"height":32},{"x":256,"y":96,"fileNum":8166,"id":1376,"width":32,"height":32},{"x":288,"y":96,"fileNum":8166,"id":1377,"width":32,"height":32},{"x":320,"y":96,"fileNum":8166,"id":1378,"width":32,"height":32},{"x":352,"y":96,"fileNum":8166,"id":1379,"width":32,"height":32},{"x":384,"y":0,"fileNum":8166,"id":1380,"width":32,"height":32},{"x":416,"y":0,"fileNum":8166,"id":1381,"width":32,"height":32},{"x":448,"y":0,"fileNum":8166,"id":1382,"width":32,"height":32},{"x":480,"y":0,"fileNum":8166,"id":1383,"width":32,"height":32},{"x":384,"y":32,"fileNum":8166,"id":1384,"width":32,"height":32},{"x":416,"y":32,"fileNum":8166,"id":1385,"width":32,"height":32},{"x":448,"y":32,"fileNum":8166,"id":1386,"width":32,"height":32},{"x":480,"y":32,"fileNum":8166,"id":1387,"width":32,"height":32},{"x":384,"y":64,"fileNum":8166,"id":1388,"width":32,"height":32},{"x":416,"y":64,"fileNum":8166,"id":1389,"width":32,"height":32},{"x":448,"y":64,"fileNum":8166,"id":1390,"width":32,"height":32},{"x":480,"y":64,"fileNum":8166,"id":1391,"width":32,"height":32},{"x":384,"y":96,"fileNum":8166,"id":1392,"width":32,"height":32},{"x":416,"y":96,"fileNum":8166,"id":1393,"width":32,"height":32},{"x":448,"y":96,"fileNum":8166,"id":1394,"width":32,"height":32},{"x":480,"y":96,"fileNum":8166,"id":1395,"width":32,"height":32},{"x":0,"y":0,"fileNum":8167,"id":1396,"width":32,"height":32},{"x":32,"y":0,"fileNum":8167,"id":1397,"width":32,"height":32},{"x":64,"y":0,"fileNum":8167,"id":1398,"width":32,"height":32},{"x":96,"y":0,"fileNum":8167,"id":1399,"width":32,"height":32},{"x":0,"y":32,"fileNum":8167,"id":1400,"width":32,"height":32},{"x":32,"y":32,"fileNum":8167,"id":1401,"width":32,"height":32},{"x":64,"y":32,"fileNum":8167,"id":1402,"width":32,"height":32},{"x":96,"y":32,"fileNum":8167,"id":1403,"width":32,"height":32},{"x":0,"y":64,"fileNum":8167,"id":1404,"width":32,"height":32},{"x":32,"y":64,"fileNum":8167,"id":1405,"width":32,"height":32},{"x":64,"y":64,"fileNum":8167,"id":1406,"width":32,"height":32},{"x":96,"y":64,"fileNum":8167,"id":1407,"width":32,"height":32},{"x":0,"y":96,"fileNum":8167,"id":1408,"width":32,"height":32},{"x":32,"y":96,"fileNum":8167,"id":1409,"width":32,"height":32},{"x":64,"y":96,"fileNum":8167,"id":1410,"width":32,"height":32},{"x":96,"y":96,"fileNum":8167,"id":1411,"width":32,"height":32},{"x":128,"y":0,"fileNum":8167,"id":1412,"width":32,"height":32},{"x":160,"y":0,"fileNum":8167,"id":1413,"width":32,"height":32},{"x":192,"y":0,"fileNum":8167,"id":1414,"width":32,"height":32},{"x":224,"y":0,"fileNum":8167,"id":1415,"width":32,"height":32},{"x":128,"y":32,"fileNum":8167,"id":1416,"width":32,"height":32},{"x":160,"y":32,"fileNum":8167,"id":1417,"width":32,"height":32},{"x":192,"y":32,"fileNum":8167,"id":1418,"width":32,"height":32},{"x":224,"y":32,"fileNum":8167,"id":1419,"width":32,"height":32},{"x":128,"y":64,"fileNum":8167,"id":1420,"width":32,"height":32},{"x":160,"y":64,"fileNum":8167,"id":1421,"width":32,"height":32},{"x":192,"y":64,"fileNum":8167,"id":1422,"width":32,"height":32},{"x":224,"y":64,"fileNum":8167,"id":1423,"width":32,"height":32},{"x":128,"y":96,"fileNum":8167,"id":1424,"width":32,"height":32},{"x":160,"y":96,"fileNum":8167,"id":1425,"width":32,"height":32},{"x":192,"y":96,"fileNum":8167,"id":1426,"width":32,"height":32},{"x":224,"y":96,"fileNum":8167,"id":1427,"width":32,"height":32},{"x":256,"y":0,"fileNum":8167,"id":1428,"width":32,"height":32},{"x":288,"y":0,"fileNum":8167,"id":1429,"width":32,"height":32},{"x":320,"y":0,"fileNum":8167,"id":1430,"width":32,"height":32},{"x":352,"y":0,"fileNum":8167,"id":1431,"width":32,"height":32},{"x":256,"y":32,"fileNum":8167,"id":1432,"width":32,"height":32},{"x":288,"y":32,"fileNum":8167,"id":1433,"width":32,"height":32},{"x":320,"y":32,"fileNum":8167,"id":1434,"width":32,"height":32},{"x":352,"y":32,"fileNum":8167,"id":1435,"width":32,"height":32},{"x":256,"y":64,"fileNum":8167,"id":1436,"width":32,"height":32},{"x":288,"y":64,"fileNum":8167,"id":1437,"width":32,"height":32},{"x":320,"y":64,"fileNum":8167,"id":1438,"width":32,"height":32},{"x":352,"y":64,"fileNum":8167,"id":1439,"width":32,"height":32},{"x":256,"y":96,"fileNum":8167,"id":1440,"width":32,"height":32},{"x":288,"y":96,"fileNum":8167,"id":1441,"width":32,"height":32},{"x":320,"y":96,"fileNum":8167,"id":1442,"width":32,"height":32},{"x":352,"y":96,"fileNum":8167,"id":1443,"width":32,"height":32},{"x":384,"y":0,"fileNum":8167,"id":1444,"width":32,"height":32},{"x":416,"y":0,"fileNum":8167,"id":1445,"width":32,"height":32},{"x":448,"y":0,"fileNum":8167,"id":1446,"width":32,"height":32},{"x":480,"y":0,"fileNum":8167,"id":1447,"width":32,"height":32},{"x":384,"y":32,"fileNum":8167,"id":1448,"width":32,"height":32},{"x":416,"y":32,"fileNum":8167,"id":1449,"width":32,"height":32},{"x":448,"y":32,"fileNum":8167,"id":1450,"width":32,"height":32},{"x":480,"y":32,"fileNum":8167,"id":1451,"width":32,"height":32},{"x":384,"y":64,"fileNum":8167,"id":1452,"width":32,"height":32},{"x":416,"y":64,"fileNum":8167,"id":1453,"width":32,"height":32},{"x":448,"y":64,"fileNum":8167,"id":1454,"width":32,"height":32},{"x":480,"y":64,"fileNum":8167,"id":1455,"width":32,"height":32},{"x":384,"y":96,"fileNum":8167,"id":1456,"width":32,"height":32},{"x":416,"y":96,"fileNum":8167,"id":1457,"width":32,"height":32},{"x":448,"y":96,"fileNum":8167,"id":1458,"width":32,"height":32},{"x":480,"y":96,"fileNum":8167,"id":1459,"width":32,"height":32},{"x":0,"y":0,"fileNum":8169,"id":1460,"width":64,"height":192},{"x":0,"y":0,"fileNum":8170,"id":1461,"width":139,"height":123},{"x":0,"y":0,"fileNum":8171,"id":1462,"width":139,"height":123},{"x":0,"y":0,"fileNum":8172,"id":1463,"width":61,"height":126},{"x":0,"y":0,"fileNum":15198,"id":1464,"width":105,"height":222},{"x":105,"y":0,"fileNum":15198,"id":1465,"width":105,"height":222},{"x":210,"y":0,"fileNum":15198,"id":1466,"width":105,"height":222},{"x":315,"y":0,"fileNum":15198,"id":1467,"width":105,"height":222},{"x":0,"y":0,"fileNum":16035,"id":1469,"width":32,"height":32},{"x":0,"y":0,"fileNum":206,"id":1470,"width":32,"height":32},{"x":0,"y":0,"fileNum":7012,"id":1471,"width":128,"height":64},{"x":0,"y":0,"fileNum":15025,"id":1472,"width":22,"height":35},{"x":0,"y":0,"fileNum":15026,"id":1473,"width":18,"height":40},{"x":4,"y":0,"fileNum":15030,"id":1474,"width":85,"height":50},{"x":10,"y":10,"fileNum":15032,"id":1475,"width":85,"height":50},{"x":0,"y":0,"fileNum":205,"id":1476,"width":32,"height":32},{"x":0,"y":5,"fileNum":15035,"id":1477,"width":100,"height":110},{"x":15,"y":17,"fileNum":15041,"id":1478,"width":40,"height":40},{"x":0,"y":0,"fileNum":15042,"id":1479,"width":50,"height":90},{"x":0,"y":25,"fileNum":15043,"id":1480,"width":100,"height":70},{"x":0,"y":5,"fileNum":15045,"id":1481,"width":40,"height":30},{"x":0,"y":0,"fileNum":15046,"id":1482,"width":30,"height":30},{"x":0,"y":0,"fileNum":15047,"id":1483,"width":50,"height":43},{"x":0,"y":0,"fileNum":15037,"id":1484,"width":37,"height":40},{"x":0,"y":0,"fileNum":15038,"id":1485,"width":40,"height":40},{"x":0,"y":0,"fileNum":15039,"id":1486,"width":37,"height":40},{"x":0,"y":0,"fileNum":15040,"id":1487,"width":55,"height":40},{"x":0,"y":0,"fileNum":15048,"id":1488,"width":37,"height":35},{"x":0,"y":0,"fileNum":15049,"id":1489,"width":37,"height":35},{"x":0,"y":0,"fileNum":13000,"id":1490,"width":32,"height":50},{"x":0,"y":0,"fileNum":13001,"id":1491,"width":32,"height":50},{"x":0,"y":0,"fileNum":13002,"id":1492,"width":32,"height":50},{"x":0,"y":0,"fileNum":15050,"id":1493,"width":146,"height":33},{"x":0,"y":0,"fileNum":15051,"id":1494,"width":32,"height":32},{"x":0,"y":0,"fileNum":15052,"id":1495,"width":32,"height":32},{"x":0,"y":0,"fileNum":15053,"id":1496,"width":64,"height":64},{"x":0,"y":0,"fileNum":15054,"id":1497,"width":32,"height":32},{"x":0,"y":0,"fileNum":22001,"id":1498,"width":32,"height":32},{"x":5,"y":0,"fileNum":22002,"id":1499,"width":32,"height":87},{"x":0,"y":0,"fileNum":15056,"id":1500,"width":160,"height":96},{"x":0,"y":0,"fileNum":15057,"id":1501,"width":70,"height":42},{"x":0,"y":0,"fileNum":15058,"id":1502,"width":53,"height":49},{"x":0,"y":0,"fileNum":15059,"id":1503,"width":70,"height":38},{"x":0,"y":0,"fileNum":15060,"id":1504,"width":209,"height":107},{"x":0,"y":0,"fileNum":16049,"id":1522,"width":32,"height":32},{"x":0,"y":0,"fileNum":16050,"id":1523,"width":32,"height":32},{"x":0,"y":0,"fileNum":15071,"id":1524,"width":32,"height":32},{"x":0,"y":0,"fileNum":15072,"id":1525,"width":74,"height":64},{"x":74,"y":0,"fileNum":15072,"id":1526,"width":64,"height":64},{"x":128,"y":0,"fileNum":15072,"id":1527,"width":64,"height":64},{"x":0,"y":0,"fileNum":15073,"id":1528,"width":80,"height":80},{"x":0,"y":0,"fileNum":6002,"id":1529,"width":300,"height":270},{"x":0,"y":0,"fileNum":6004,"id":1530,"width":204,"height":204},{"x":0,"y":0,"fileNum":6005,"id":1531,"width":232,"height":300},{"x":0,"y":0,"fileNum":6006,"id":1532,"width":121,"height":292},{"x":0,"y":0,"fileNum":6007,"id":1533,"width":200,"height":207},{"x":0,"y":0,"fileNum":6008,"id":1534,"width":267,"height":297},{"x":0,"y":0,"fileNum":6009,"id":1535,"width":80,"height":64},{"x":0,"y":0,"fileNum":6010,"id":1536,"width":65,"height":64},{"x":0,"y":0,"fileNum":22025,"id":1537,"width":32,"height":32},{"x":0,"y":0,"fileNum":8174,"id":1538,"width":64,"height":64},{"x":0,"y":0,"fileNum":8175,"id":1539,"width":256,"height":160},{"x":0,"y":0,"fileNum":8190,"id":1540,"width":32,"height":32},{"x":32,"y":0,"fileNum":8190,"id":1541,"width":32,"height":32},{"x":64,"y":0,"fileNum":8190,"id":1542,"width":32,"height":32},{"x":96,"y":0,"fileNum":8190,"id":1543,"width":32,"height":32},{"x":0,"y":32,"fileNum":8190,"id":1544,"width":32,"height":32},{"x":32,"y":32,"fileNum":8190,"id":1545,"width":32,"height":32},{"x":64,"y":32,"fileNum":8190,"id":1546,"width":32,"height":32},{"x":96,"y":32,"fileNum":8190,"id":1547,"width":32,"height":32},{"x":0,"y":64,"fileNum":8190,"id":1548,"width":32,"height":32},{"x":32,"y":64,"fileNum":8190,"id":1549,"width":32,"height":32},{"x":64,"y":64,"fileNum":8190,"id":1550,"width":32,"height":32},{"x":96,"y":64,"fileNum":8190,"id":1551,"width":32,"height":32},{"x":0,"y":96,"fileNum":8190,"id":1552,"width":32,"height":32},{"x":32,"y":96,"fileNum":8190,"id":1553,"width":32,"height":32},{"x":64,"y":96,"fileNum":8190,"id":1554,"width":32,"height":32},{"x":96,"y":96,"fileNum":8190,"id":1555,"width":32,"height":32},{"x":0,"y":0,"fileNum":8191,"id":1556,"width":32,"height":32},{"x":32,"y":0,"fileNum":8191,"id":1557,"width":32,"height":32},{"x":64,"y":0,"fileNum":8191,"id":1558,"width":32,"height":32},{"x":96,"y":0,"fileNum":8191,"id":1559,"width":32,"height":32},{"x":0,"y":32,"fileNum":8191,"id":1560,"width":32,"height":32},{"x":32,"y":32,"fileNum":8191,"id":1561,"width":32,"height":32},{"x":64,"y":32,"fileNum":8191,"id":1562,"width":32,"height":32},{"x":96,"y":32,"fileNum":8191,"id":1563,"width":32,"height":32},{"x":0,"y":64,"fileNum":8191,"id":1564,"width":32,"height":32},{"x":32,"y":64,"fileNum":8191,"id":1565,"width":32,"height":32},{"x":64,"y":64,"fileNum":8191,"id":1566,"width":32,"height":32},{"x":96,"y":64,"fileNum":8191,"id":1567,"width":32,"height":32},{"x":0,"y":96,"fileNum":8191,"id":1568,"width":32,"height":32},{"x":32,"y":96,"fileNum":8191,"id":1569,"width":32,"height":32},{"x":64,"y":96,"fileNum":8191,"id":1570,"width":32,"height":32},{"x":96,"y":96,"fileNum":8191,"id":1571,"width":32,"height":32},{"x":0,"y":0,"fileNum":8192,"id":1572,"width":32,"height":32},{"x":32,"y":0,"fileNum":8192,"id":1573,"width":32,"height":32},{"x":64,"y":0,"fileNum":8192,"id":1574,"width":32,"height":32},{"x":96,"y":0,"fileNum":8192,"id":1575,"width":32,"height":32},{"x":0,"y":32,"fileNum":8192,"id":1576,"width":32,"height":32},{"x":32,"y":32,"fileNum":8192,"id":1577,"width":32,"height":32},{"x":64,"y":32,"fileNum":8192,"id":1578,"width":32,"height":32},{"x":96,"y":32,"fileNum":8192,"id":1579,"width":32,"height":32},{"x":0,"y":64,"fileNum":8192,"id":1580,"width":32,"height":32},{"x":32,"y":64,"fileNum":8192,"id":1581,"width":32,"height":32},{"x":64,"y":64,"fileNum":8192,"id":1582,"width":32,"height":32},{"x":96,"y":64,"fileNum":8192,"id":1583,"width":32,"height":32},{"x":0,"y":96,"fileNum":8192,"id":1584,"width":32,"height":32},{"x":32,"y":96,"fileNum":8192,"id":1585,"width":32,"height":32},{"x":64,"y":96,"fileNum":8192,"id":1586,"width":32,"height":32},{"x":96,"y":96,"fileNum":8192,"id":1587,"width":32,"height":32},{"x":0,"y":0,"fileNum":8193,"id":1588,"width":32,"height":32},{"x":32,"y":0,"fileNum":8193,"id":1589,"width":32,"height":32},{"x":64,"y":0,"fileNum":8193,"id":1590,"width":32,"height":32},{"x":96,"y":0,"fileNum":8193,"id":1591,"width":32,"height":32},{"x":0,"y":32,"fileNum":8193,"id":1592,"width":32,"height":32},{"x":32,"y":32,"fileNum":8193,"id":1593,"width":32,"height":32},{"x":64,"y":32,"fileNum":8193,"id":1594,"width":32,"height":32},{"x":96,"y":32,"fileNum":8193,"id":1595,"width":32,"height":32},{"x":0,"y":64,"fileNum":8193,"id":1596,"width":32,"height":32},{"x":32,"y":64,"fileNum":8193,"id":1597,"width":32,"height":32},{"x":64,"y":64,"fileNum":8193,"id":1598,"width":32,"height":32},{"x":96,"y":64,"fileNum":8193,"id":1599,"width":32,"height":32},{"x":0,"y":96,"fileNum":8193,"id":1600,"width":32,"height":32},{"x":32,"y":96,"fileNum":8193,"id":1601,"width":32,"height":32},{"x":64,"y":96,"fileNum":8193,"id":1602,"width":32,"height":32},{"x":96,"y":96,"fileNum":8193,"id":1603,"width":32,"height":32},{"x":0,"y":0,"fileNum":8194,"id":1604,"width":32,"height":32},{"x":32,"y":0,"fileNum":8194,"id":1605,"width":32,"height":32},{"x":64,"y":0,"fileNum":8194,"id":1606,"width":32,"height":32},{"x":96,"y":0,"fileNum":8194,"id":1607,"width":32,"height":32},{"x":0,"y":32,"fileNum":8194,"id":1608,"width":32,"height":32},{"x":32,"y":32,"fileNum":8194,"id":1609,"width":32,"height":32},{"x":64,"y":32,"fileNum":8194,"id":1610,"width":32,"height":32},{"x":96,"y":32,"fileNum":8194,"id":1611,"width":32,"height":32},{"x":0,"y":64,"fileNum":8194,"id":1612,"width":32,"height":32},{"x":32,"y":64,"fileNum":8194,"id":1613,"width":32,"height":32},{"x":64,"y":64,"fileNum":8194,"id":1614,"width":32,"height":32},{"x":96,"y":64,"fileNum":8194,"id":1615,"width":32,"height":32},{"x":0,"y":96,"fileNum":8194,"id":1616,"width":32,"height":32},{"x":32,"y":96,"fileNum":8194,"id":1617,"width":32,"height":32},{"x":64,"y":96,"fileNum":8194,"id":1618,"width":32,"height":32},{"x":96,"y":96,"fileNum":8194,"id":1619,"width":32,"height":32},{"x":0,"y":0,"fileNum":8195,"id":1620,"width":32,"height":32},{"x":32,"y":0,"fileNum":8195,"id":1621,"width":32,"height":32},{"x":64,"y":0,"fileNum":8195,"id":1622,"width":32,"height":32},{"x":96,"y":0,"fileNum":8195,"id":1623,"width":32,"height":32},{"x":0,"y":32,"fileNum":8195,"id":1624,"width":32,"height":32},{"x":32,"y":32,"fileNum":8195,"id":1625,"width":32,"height":32},{"x":64,"y":32,"fileNum":8195,"id":1626,"width":32,"height":32},{"x":96,"y":32,"fileNum":8195,"id":1627,"width":32,"height":32},{"x":0,"y":64,"fileNum":8195,"id":1628,"width":32,"height":32},{"x":32,"y":64,"fileNum":8195,"id":1629,"width":32,"height":32},{"x":64,"y":64,"fileNum":8195,"id":1630,"width":32,"height":32},{"x":96,"y":64,"fileNum":8195,"id":1631,"width":32,"height":32},{"x":0,"y":96,"fileNum":8195,"id":1632,"width":32,"height":32},{"x":32,"y":96,"fileNum":8195,"id":1633,"width":32,"height":32},{"x":64,"y":96,"fileNum":8195,"id":1634,"width":32,"height":32},{"x":96,"y":96,"fileNum":8195,"id":1635,"width":32,"height":32},{"x":0,"y":0,"fileNum":8196,"id":1636,"width":32,"height":32},{"x":32,"y":0,"fileNum":8196,"id":1637,"width":32,"height":32},{"x":64,"y":0,"fileNum":8196,"id":1638,"width":32,"height":32},{"x":96,"y":0,"fileNum":8196,"id":1639,"width":32,"height":32},{"x":0,"y":32,"fileNum":8196,"id":1640,"width":32,"height":32},{"x":32,"y":32,"fileNum":8196,"id":1641,"width":32,"height":32},{"x":64,"y":32,"fileNum":8196,"id":1642,"width":32,"height":32},{"x":96,"y":32,"fileNum":8196,"id":1643,"width":32,"height":32},{"x":0,"y":64,"fileNum":8196,"id":1644,"width":32,"height":32},{"x":32,"y":64,"fileNum":8196,"id":1645,"width":32,"height":32},{"x":64,"y":64,"fileNum":8196,"id":1646,"width":32,"height":32},{"x":96,"y":64,"fileNum":8196,"id":1647,"width":32,"height":32},{"x":0,"y":96,"fileNum":8196,"id":1648,"width":32,"height":32},{"x":32,"y":96,"fileNum":8196,"id":1649,"width":32,"height":32},{"x":64,"y":96,"fileNum":8196,"id":1650,"width":32,"height":32},{"x":96,"y":96,"fileNum":8196,"id":1651,"width":32,"height":32},{"x":0,"y":0,"fileNum":8197,"id":1652,"width":32,"height":32},{"x":32,"y":0,"fileNum":8197,"id":1653,"width":32,"height":32},{"x":64,"y":0,"fileNum":8197,"id":1654,"width":32,"height":32},{"x":96,"y":0,"fileNum":8197,"id":1655,"width":32,"height":32},{"x":0,"y":32,"fileNum":8197,"id":1656,"width":32,"height":32},{"x":32,"y":32,"fileNum":8197,"id":1657,"width":32,"height":32},{"x":64,"y":32,"fileNum":8197,"id":1658,"width":32,"height":32},{"x":96,"y":32,"fileNum":8197,"id":1659,"width":32,"height":32},{"x":0,"y":64,"fileNum":8197,"id":1660,"width":32,"height":32},{"x":32,"y":64,"fileNum":8197,"id":1661,"width":32,"height":32},{"x":64,"y":64,"fileNum":8197,"id":1662,"width":32,"height":32},{"x":96,"y":64,"fileNum":8197,"id":1663,"width":32,"height":32},{"x":0,"y":96,"fileNum":8197,"id":1664,"width":32,"height":32},{"x":32,"y":96,"fileNum":8197,"id":1665,"width":32,"height":32},{"x":64,"y":96,"fileNum":8197,"id":1666,"width":32,"height":32},{"x":96,"y":96,"fileNum":8197,"id":1667,"width":32,"height":32},{"x":0,"y":0,"fileNum":8198,"id":1668,"width":32,"height":32},{"x":32,"y":0,"fileNum":8198,"id":1669,"width":32,"height":32},{"x":64,"y":0,"fileNum":8198,"id":1670,"width":32,"height":32},{"x":96,"y":0,"fileNum":8198,"id":1671,"width":32,"height":32},{"x":0,"y":32,"fileNum":8198,"id":1672,"width":32,"height":32},{"x":32,"y":32,"fileNum":8198,"id":1673,"width":32,"height":32},{"x":64,"y":32,"fileNum":8198,"id":1674,"width":32,"height":32},{"x":96,"y":32,"fileNum":8198,"id":1675,"width":32,"height":32},{"x":0,"y":64,"fileNum":8198,"id":1676,"width":32,"height":32},{"x":32,"y":64,"fileNum":8198,"id":1677,"width":32,"height":32},{"x":64,"y":64,"fileNum":8198,"id":1678,"width":32,"height":32},{"x":96,"y":64,"fileNum":8198,"id":1679,"width":32,"height":32},{"x":0,"y":96,"fileNum":8198,"id":1680,"width":32,"height":32},{"x":32,"y":96,"fileNum":8198,"id":1681,"width":32,"height":32},{"x":64,"y":96,"fileNum":8198,"id":1682,"width":32,"height":32},{"x":96,"y":96,"fileNum":8198,"id":1683,"width":32,"height":32},{"x":0,"y":0,"fileNum":8199,"id":1684,"width":32,"height":32},{"x":32,"y":0,"fileNum":8199,"id":1685,"width":32,"height":32},{"x":64,"y":0,"fileNum":8199,"id":1686,"width":32,"height":32},{"x":96,"y":0,"fileNum":8199,"id":1687,"width":32,"height":32},{"x":0,"y":32,"fileNum":8199,"id":1688,"width":32,"height":32},{"x":32,"y":32,"fileNum":8199,"id":1689,"width":32,"height":32},{"x":64,"y":32,"fileNum":8199,"id":1690,"width":32,"height":32},{"x":96,"y":32,"fileNum":8199,"id":1691,"width":32,"height":32},{"x":0,"y":64,"fileNum":8199,"id":1692,"width":32,"height":32},{"x":32,"y":64,"fileNum":8199,"id":1693,"width":32,"height":32},{"x":64,"y":64,"fileNum":8199,"id":1694,"width":32,"height":32},{"x":96,"y":64,"fileNum":8199,"id":1695,"width":32,"height":32},{"x":0,"y":96,"fileNum":8199,"id":1696,"width":32,"height":32},{"x":32,"y":96,"fileNum":8199,"id":1697,"width":32,"height":32},{"x":64,"y":96,"fileNum":8199,"id":1698,"width":32,"height":32},{"x":96,"y":96,"fileNum":8199,"id":1699,"width":32,"height":32},{"x":0,"y":0,"fileNum":8200,"id":1700,"width":32,"height":32},{"x":32,"y":0,"fileNum":8200,"id":1701,"width":32,"height":32},{"x":64,"y":0,"fileNum":8200,"id":1702,"width":32,"height":32},{"x":96,"y":0,"fileNum":8200,"id":1703,"width":32,"height":32},{"x":0,"y":32,"fileNum":8200,"id":1704,"width":32,"height":32},{"x":32,"y":32,"fileNum":8200,"id":1705,"width":32,"height":32},{"x":64,"y":32,"fileNum":8200,"id":1706,"width":32,"height":32},{"x":96,"y":32,"fileNum":8200,"id":1707,"width":32,"height":32},{"x":0,"y":64,"fileNum":8200,"id":1708,"width":32,"height":32},{"x":32,"y":64,"fileNum":8200,"id":1709,"width":32,"height":32},{"x":64,"y":64,"fileNum":8200,"id":1710,"width":32,"height":32},{"x":96,"y":64,"fileNum":8200,"id":1711,"width":32,"height":32},{"x":0,"y":96,"fileNum":8200,"id":1712,"width":32,"height":32},{"x":32,"y":96,"fileNum":8200,"id":1713,"width":32,"height":32},{"x":64,"y":96,"fileNum":8200,"id":1714,"width":32,"height":32},{"x":96,"y":96,"fileNum":8200,"id":1715,"width":32,"height":32},{"x":0,"y":0,"fileNum":8201,"id":1716,"width":32,"height":32},{"x":32,"y":0,"fileNum":8201,"id":1717,"width":32,"height":32},{"x":64,"y":0,"fileNum":8201,"id":1718,"width":32,"height":32},{"x":96,"y":0,"fileNum":8201,"id":1719,"width":32,"height":32},{"x":0,"y":32,"fileNum":8201,"id":1720,"width":32,"height":32},{"x":32,"y":32,"fileNum":8201,"id":1721,"width":32,"height":32},{"x":64,"y":32,"fileNum":8201,"id":1722,"width":32,"height":32},{"x":96,"y":32,"fileNum":8201,"id":1723,"width":32,"height":32},{"x":0,"y":64,"fileNum":8201,"id":1724,"width":32,"height":32},{"x":32,"y":64,"fileNum":8201,"id":1725,"width":32,"height":32},{"x":64,"y":64,"fileNum":8201,"id":1726,"width":32,"height":32},{"x":96,"y":64,"fileNum":8201,"id":1727,"width":32,"height":32},{"x":0,"y":96,"fileNum":8201,"id":1728,"width":32,"height":32},{"x":32,"y":96,"fileNum":8201,"id":1729,"width":32,"height":32},{"x":64,"y":96,"fileNum":8201,"id":1730,"width":32,"height":32},{"x":96,"y":96,"fileNum":8201,"id":1731,"width":32,"height":32},{"x":0,"y":0,"fileNum":8202,"id":1732,"width":32,"height":32},{"x":32,"y":0,"fileNum":8202,"id":1733,"width":32,"height":32},{"x":64,"y":0,"fileNum":8202,"id":1734,"width":32,"height":32},{"x":96,"y":0,"fileNum":8202,"id":1735,"width":32,"height":32},{"x":0,"y":32,"fileNum":8202,"id":1736,"width":32,"height":32},{"x":32,"y":32,"fileNum":8202,"id":1737,"width":32,"height":32},{"x":64,"y":32,"fileNum":8202,"id":1738,"width":32,"height":32},{"x":96,"y":32,"fileNum":8202,"id":1739,"width":32,"height":32},{"x":0,"y":64,"fileNum":8202,"id":1740,"width":32,"height":32},{"x":32,"y":64,"fileNum":8202,"id":1741,"width":32,"height":32},{"x":64,"y":64,"fileNum":8202,"id":1742,"width":32,"height":32},{"x":96,"y":64,"fileNum":8202,"id":1743,"width":32,"height":32},{"x":0,"y":96,"fileNum":8202,"id":1744,"width":32,"height":32},{"x":32,"y":96,"fileNum":8202,"id":1745,"width":32,"height":32},{"x":64,"y":96,"fileNum":8202,"id":1746,"width":32,"height":32},{"x":96,"y":96,"fileNum":8202,"id":1747,"width":32,"height":32},{"x":0,"y":0,"fileNum":8203,"id":1748,"width":32,"height":32},{"x":32,"y":0,"fileNum":8203,"id":1749,"width":32,"height":32},{"x":64,"y":0,"fileNum":8203,"id":1750,"width":32,"height":32},{"x":96,"y":0,"fileNum":8203,"id":1751,"width":32,"height":32},{"x":0,"y":32,"fileNum":8203,"id":1752,"width":32,"height":32},{"x":32,"y":32,"fileNum":8203,"id":1753,"width":32,"height":32},{"x":64,"y":32,"fileNum":8203,"id":1754,"width":32,"height":32},{"x":96,"y":32,"fileNum":8203,"id":1755,"width":32,"height":32},{"x":0,"y":64,"fileNum":8203,"id":1756,"width":32,"height":32},{"x":32,"y":64,"fileNum":8203,"id":1757,"width":32,"height":32},{"x":64,"y":64,"fileNum":8203,"id":1758,"width":32,"height":32},{"x":96,"y":64,"fileNum":8203,"id":1759,"width":32,"height":32},{"x":0,"y":96,"fileNum":8203,"id":1760,"width":32,"height":32},{"x":32,"y":96,"fileNum":8203,"id":1761,"width":32,"height":32},{"x":64,"y":96,"fileNum":8203,"id":1762,"width":32,"height":32},{"x":96,"y":96,"fileNum":8203,"id":1763,"width":32,"height":32},{"x":0,"y":0,"fileNum":8204,"id":1764,"width":32,"height":32},{"x":32,"y":0,"fileNum":8204,"id":1765,"width":32,"height":32},{"x":64,"y":0,"fileNum":8204,"id":1766,"width":32,"height":32},{"x":96,"y":0,"fileNum":8204,"id":1767,"width":32,"height":32},{"x":0,"y":32,"fileNum":8204,"id":1768,"width":32,"height":32},{"x":32,"y":32,"fileNum":8204,"id":1769,"width":32,"height":32},{"x":64,"y":32,"fileNum":8204,"id":1770,"width":32,"height":32},{"x":96,"y":32,"fileNum":8204,"id":1771,"width":32,"height":32},{"x":0,"y":64,"fileNum":8204,"id":1772,"width":32,"height":32},{"x":32,"y":64,"fileNum":8204,"id":1773,"width":32,"height":32},{"x":64,"y":64,"fileNum":8204,"id":1774,"width":32,"height":32},{"x":96,"y":64,"fileNum":8204,"id":1775,"width":32,"height":32},{"x":0,"y":96,"fileNum":8204,"id":1776,"width":32,"height":32},{"x":32,"y":96,"fileNum":8204,"id":1777,"width":32,"height":32},{"x":64,"y":96,"fileNum":8204,"id":1778,"width":32,"height":32},{"x":96,"y":96,"fileNum":8204,"id":1779,"width":32,"height":32},{"x":0,"y":0,"fileNum":8205,"id":1780,"width":32,"height":32},{"x":32,"y":0,"fileNum":8205,"id":1781,"width":32,"height":32},{"x":64,"y":0,"fileNum":8205,"id":1782,"width":32,"height":32},{"x":96,"y":0,"fileNum":8205,"id":1783,"width":32,"height":32},{"x":0,"y":32,"fileNum":8205,"id":1784,"width":32,"height":32},{"x":32,"y":32,"fileNum":8205,"id":1785,"width":32,"height":32},{"x":64,"y":32,"fileNum":8205,"id":1786,"width":32,"height":32},{"x":96,"y":32,"fileNum":8205,"id":1787,"width":32,"height":32},{"x":0,"y":64,"fileNum":8205,"id":1788,"width":32,"height":32},{"x":32,"y":64,"fileNum":8205,"id":1789,"width":32,"height":32},{"x":64,"y":64,"fileNum":8205,"id":1790,"width":32,"height":32},{"x":96,"y":64,"fileNum":8205,"id":1791,"width":32,"height":32},{"x":0,"y":96,"fileNum":8205,"id":1792,"width":32,"height":32},{"x":32,"y":96,"fileNum":8205,"id":1793,"width":32,"height":32},{"x":64,"y":96,"fileNum":8205,"id":1794,"width":32,"height":32},{"x":96,"y":96,"fileNum":8205,"id":1795,"width":32,"height":32},{"x":0,"y":0,"fileNum":8206,"id":1796,"width":32,"height":32},{"x":32,"y":0,"fileNum":8206,"id":1797,"width":32,"height":32},{"x":64,"y":0,"fileNum":8206,"id":1798,"width":32,"height":32},{"x":96,"y":0,"fileNum":8206,"id":1799,"width":32,"height":32},{"x":0,"y":32,"fileNum":8206,"id":1800,"width":32,"height":32},{"x":32,"y":32,"fileNum":8206,"id":1801,"width":32,"height":32},{"x":64,"y":32,"fileNum":8206,"id":1802,"width":32,"height":32},{"x":96,"y":32,"fileNum":8206,"id":1803,"width":32,"height":32},{"x":0,"y":64,"fileNum":8206,"id":1804,"width":32,"height":32},{"x":32,"y":64,"fileNum":8206,"id":1805,"width":32,"height":32},{"x":64,"y":64,"fileNum":8206,"id":1806,"width":32,"height":32},{"x":96,"y":64,"fileNum":8206,"id":1807,"width":32,"height":32},{"x":0,"y":96,"fileNum":8206,"id":1808,"width":32,"height":32},{"x":32,"y":96,"fileNum":8206,"id":1809,"width":32,"height":32},{"x":64,"y":96,"fileNum":8206,"id":1810,"width":32,"height":32},{"x":96,"y":96,"fileNum":8206,"id":1811,"width":32,"height":32},{"x":0,"y":0,"fileNum":8207,"id":1812,"width":128,"height":128},{"x":0,"y":0,"fileNum":8168,"id":1813,"width":32,"height":32},{"x":32,"y":0,"fileNum":8168,"id":1814,"width":32,"height":32},{"x":64,"y":0,"fileNum":8168,"id":1815,"width":32,"height":32},{"x":96,"y":0,"fileNum":8168,"id":1816,"width":32,"height":32},{"x":0,"y":32,"fileNum":8168,"id":1817,"width":32,"height":32},{"x":32,"y":32,"fileNum":8168,"id":1818,"width":32,"height":32},{"x":64,"y":32,"fileNum":8168,"id":1819,"width":32,"height":32},{"x":96,"y":32,"fileNum":8168,"id":1820,"width":32,"height":32},{"x":0,"y":64,"fileNum":8168,"id":1821,"width":32,"height":32},{"x":32,"y":64,"fileNum":8168,"id":1822,"width":32,"height":32},{"x":64,"y":64,"fileNum":8168,"id":1823,"width":32,"height":32},{"x":96,"y":64,"fileNum":8168,"id":1824,"width":32,"height":32},{"x":0,"y":96,"fileNum":8168,"id":1825,"width":32,"height":32},{"x":32,"y":96,"fileNum":8168,"id":1826,"width":32,"height":32},{"x":64,"y":96,"fileNum":8168,"id":1827,"width":32,"height":32},{"x":96,"y":96,"fileNum":8168,"id":1828,"width":32,"height":32},{"x":128,"y":0,"fileNum":8168,"id":1829,"width":32,"height":32},{"x":160,"y":0,"fileNum":8168,"id":1830,"width":32,"height":32},{"x":192,"y":0,"fileNum":8168,"id":1831,"width":32,"height":32},{"x":224,"y":0,"fileNum":8168,"id":1832,"width":32,"height":32},{"x":128,"y":32,"fileNum":8168,"id":1833,"width":32,"height":32},{"x":160,"y":32,"fileNum":8168,"id":1834,"width":32,"height":32},{"x":192,"y":32,"fileNum":8168,"id":1835,"width":32,"height":32},{"x":224,"y":32,"fileNum":8168,"id":1836,"width":32,"height":32},{"x":128,"y":64,"fileNum":8168,"id":1837,"width":32,"height":32},{"x":160,"y":64,"fileNum":8168,"id":1838,"width":32,"height":32},{"x":192,"y":64,"fileNum":8168,"id":1839,"width":32,"height":32},{"x":224,"y":64,"fileNum":8168,"id":1840,"width":32,"height":32},{"x":128,"y":96,"fileNum":8168,"id":1841,"width":32,"height":32},{"x":160,"y":96,"fileNum":8168,"id":1842,"width":32,"height":32},{"x":192,"y":96,"fileNum":8168,"id":1843,"width":32,"height":32},{"x":224,"y":96,"fileNum":8168,"id":1844,"width":32,"height":32},{"x":256,"y":0,"fileNum":8168,"id":1845,"width":32,"height":32},{"x":288,"y":0,"fileNum":8168,"id":1846,"width":32,"height":32},{"x":320,"y":0,"fileNum":8168,"id":1847,"width":32,"height":32},{"x":352,"y":0,"fileNum":8168,"id":1848,"width":32,"height":32},{"x":256,"y":32,"fileNum":8168,"id":1849,"width":32,"height":32},{"x":288,"y":32,"fileNum":8168,"id":1850,"width":32,"height":32},{"x":320,"y":32,"fileNum":8168,"id":1851,"width":32,"height":32},{"x":352,"y":32,"fileNum":8168,"id":1852,"width":32,"height":32},{"x":256,"y":64,"fileNum":8168,"id":1853,"width":32,"height":32},{"x":288,"y":64,"fileNum":8168,"id":1854,"width":32,"height":32},{"x":320,"y":64,"fileNum":8168,"id":1855,"width":32,"height":32},{"x":352,"y":64,"fileNum":8168,"id":1856,"width":32,"height":32},{"x":256,"y":96,"fileNum":8168,"id":1857,"width":32,"height":32},{"x":288,"y":96,"fileNum":8168,"id":1858,"width":32,"height":32},{"x":320,"y":96,"fileNum":8168,"id":1859,"width":32,"height":32},{"x":352,"y":96,"fileNum":8168,"id":1860,"width":32,"height":32},{"x":384,"y":0,"fileNum":8168,"id":1861,"width":32,"height":32},{"x":416,"y":0,"fileNum":8168,"id":1862,"width":32,"height":32},{"x":448,"y":0,"fileNum":8168,"id":1863,"width":32,"height":32},{"x":480,"y":0,"fileNum":8168,"id":1864,"width":32,"height":32},{"x":384,"y":32,"fileNum":8168,"id":1865,"width":32,"height":32},{"x":416,"y":32,"fileNum":8168,"id":1866,"width":32,"height":32},{"x":448,"y":32,"fileNum":8168,"id":1867,"width":32,"height":32},{"x":480,"y":32,"fileNum":8168,"id":1868,"width":32,"height":32},{"x":384,"y":64,"fileNum":8168,"id":1869,"width":32,"height":32},{"x":416,"y":64,"fileNum":8168,"id":1870,"width":32,"height":32},{"x":448,"y":64,"fileNum":8168,"id":1871,"width":32,"height":32},{"x":480,"y":64,"fileNum":8168,"id":1872,"width":32,"height":32},{"x":384,"y":96,"fileNum":8168,"id":1873,"width":32,"height":32},{"x":416,"y":96,"fileNum":8168,"id":1874,"width":32,"height":32},{"x":448,"y":96,"fileNum":8168,"id":1875,"width":32,"height":32},{"x":480,"y":96,"fileNum":8168,"id":1876,"width":32,"height":32},{"x":0,"y":0,"fileNum":15062,"id":1877,"width":43,"height":63},{"x":43,"y":0,"fileNum":15062,"id":1878,"width":43,"height":63},{"x":86,"y":0,"fileNum":15062,"id":1879,"width":43,"height":63},{"x":126,"y":0,"fileNum":15062,"id":1880,"width":43,"height":63},{"x":169,"y":0,"fileNum":15062,"id":1881,"width":43,"height":63},{"x":212,"y":0,"fileNum":15062,"id":1882,"width":43,"height":63},{"x":255,"y":0,"fileNum":15062,"id":1883,"width":43,"height":63},{"x":298,"y":0,"fileNum":15062,"id":1884,"width":43,"height":63},{"x":0,"y":0,"fileNum":15063,"id":1886,"width":43,"height":63},{"x":43,"y":0,"fileNum":15063,"id":1887,"width":43,"height":63},{"x":86,"y":0,"fileNum":15063,"id":1888,"width":43,"height":63},{"x":126,"y":0,"fileNum":15063,"id":1889,"width":43,"height":63},{"x":169,"y":0,"fileNum":15063,"id":1890,"width":43,"height":63},{"x":212,"y":0,"fileNum":15063,"id":1891,"width":43,"height":63},{"x":255,"y":0,"fileNum":15063,"id":1892,"width":43,"height":63},{"x":298,"y":0,"fileNum":15063,"id":1893,"width":43,"height":63},{"x":0,"y":0,"fileNum":4009,"id":1895,"width":24,"height":51},{"x":24,"y":0,"fileNum":4009,"id":1896,"width":24,"height":51},{"x":48,"y":0,"fileNum":4009,"id":1897,"width":24,"height":51},{"x":72,"y":0,"fileNum":4009,"id":1898,"width":24,"height":51},{"x":96,"y":0,"fileNum":4009,"id":1899,"width":24,"height":51},{"x":120,"y":0,"fileNum":4009,"id":1900,"width":24,"height":51},{"x":0,"y":51,"fileNum":4009,"id":1901,"width":24,"height":51},{"x":24,"y":51,"fileNum":4009,"id":1902,"width":24,"height":51},{"x":48,"y":51,"fileNum":4009,"id":1903,"width":24,"height":51},{"x":72,"y":51,"fileNum":4009,"id":1904,"width":24,"height":51},{"x":96,"y":51,"fileNum":4009,"id":1905,"width":24,"height":51},{"x":120,"y":51,"fileNum":4009,"id":1906,"width":24,"height":51},{"x":0,"y":102,"fileNum":4009,"id":1907,"width":16,"height":51},{"x":16,"y":102,"fileNum":4009,"id":1908,"width":16,"height":51},{"x":37,"y":102,"fileNum":4009,"id":1909,"width":16,"height":51},{"x":56,"y":102,"fileNum":4009,"id":1910,"width":16,"height":51},{"x":74,"y":102,"fileNum":4009,"id":1911,"width":16,"height":51},{"x":0,"y":153,"fileNum":4009,"id":1912,"width":16,"height":50},{"x":16,"y":153,"fileNum":4009,"id":1913,"width":16,"height":50},{"x":36,"y":153,"fileNum":4009,"id":1914,"width":16,"height":50},{"x":54,"y":153,"fileNum":4009,"id":1915,"width":16,"height":50},{"x":71,"y":153,"fileNum":4009,"id":1916,"width":16,"height":50},{"x":0,"y":0,"fileNum":4010,"id":1921,"width":22,"height":53},{"x":22,"y":0,"fileNum":4010,"id":1922,"width":22,"height":53},{"x":44,"y":0,"fileNum":4010,"id":1923,"width":22,"height":53},{"x":66,"y":0,"fileNum":4010,"id":1924,"width":22,"height":53},{"x":88,"y":0,"fileNum":4010,"id":1925,"width":22,"height":53},{"x":110,"y":0,"fileNum":4010,"id":1926,"width":22,"height":53},{"x":0,"y":53,"fileNum":4010,"id":1927,"width":22,"height":53},{"x":22,"y":53,"fileNum":4010,"id":1928,"width":22,"height":53},{"x":44,"y":53,"fileNum":4010,"id":1929,"width":22,"height":53},{"x":67,"y":53,"fileNum":4010,"id":1930,"width":22,"height":53},{"x":89,"y":53,"fileNum":4010,"id":1931,"width":22,"height":53},{"x":111,"y":53,"fileNum":4010,"id":1932,"width":22,"height":53},{"x":0,"y":106,"fileNum":4010,"id":1933,"width":20,"height":53},{"x":20,"y":106,"fileNum":4010,"id":1934,"width":20,"height":53},{"x":40,"y":106,"fileNum":4010,"id":1935,"width":20,"height":53},{"x":60,"y":106,"fileNum":4010,"id":1936,"width":20,"height":53},{"x":80,"y":106,"fileNum":4010,"id":1937,"width":20,"height":53},{"x":0,"y":159,"fileNum":4010,"id":1938,"width":20,"height":53},{"x":17,"y":159,"fileNum":4010,"id":1939,"width":20,"height":53},{"x":40,"y":159,"fileNum":4010,"id":1940,"width":20,"height":53},{"x":60,"y":159,"fileNum":4010,"id":1941,"width":20,"height":53},{"x":80,"y":159,"fileNum":4010,"id":1942,"width":20,"height":53},{"x":0,"y":0,"fileNum":4011,"id":1947,"width":26,"height":67},{"x":26,"y":0,"fileNum":4011,"id":1948,"width":26,"height":67},{"x":52,"y":0,"fileNum":4011,"id":1949,"width":26,"height":67},{"x":78,"y":0,"fileNum":4011,"id":1950,"width":26,"height":67},{"x":104,"y":0,"fileNum":4011,"id":1951,"width":26,"height":67},{"x":130,"y":0,"fileNum":4011,"id":1952,"width":26,"height":67},{"x":0,"y":64,"fileNum":4011,"id":1953,"width":26,"height":67},{"x":26,"y":64,"fileNum":4011,"id":1954,"width":26,"height":67},{"x":52,"y":64,"fileNum":4011,"id":1955,"width":26,"height":67},{"x":78,"y":64,"fileNum":4011,"id":1956,"width":26,"height":67},{"x":104,"y":64,"fileNum":4011,"id":1957,"width":26,"height":67},{"x":130,"y":64,"fileNum":4011,"id":1958,"width":26,"height":67},{"x":0,"y":128,"fileNum":4011,"id":1959,"width":26,"height":67},{"x":26,"y":128,"fileNum":4011,"id":1960,"width":26,"height":67},{"x":52,"y":128,"fileNum":4011,"id":1961,"width":26,"height":67},{"x":78,"y":128,"fileNum":4011,"id":1962,"width":26,"height":67},{"x":104,"y":128,"fileNum":4011,"id":1963,"width":26,"height":67},{"x":0,"y":205,"fileNum":4011,"id":1964,"width":26,"height":64},{"x":23,"y":205,"fileNum":4011,"id":1965,"width":26,"height":64},{"x":48,"y":205,"fileNum":4011,"id":1966,"width":26,"height":64},{"x":76,"y":205,"fileNum":4011,"id":1967,"width":26,"height":64},{"x":102,"y":204,"fileNum":4011,"id":1968,"width":26,"height":64},{"x":0,"y":0,"fileNum":4021,"id":1973,"width":60,"height":170},{"x":0,"y":0,"fileNum":4022,"id":1974,"width":60,"height":170},{"x":0,"y":0,"fileNum":4023,"id":1975,"width":60,"height":170},{"x":0,"y":0,"fileNum":4024,"id":1976,"width":60,"height":170},{"x":0,"y":0,"fileNum":4025,"id":1977,"width":60,"height":170},{"x":0,"y":0,"fileNum":4026,"id":1978,"width":60,"height":170},{"x":0,"y":0,"fileNum":4027,"id":1979,"width":60,"height":170},{"x":0,"y":0,"fileNum":4028,"id":1980,"width":60,"height":170},{"x":0,"y":0,"fileNum":4017,"id":1981,"width":170,"height":60},{"x":0,"y":0,"fileNum":4018,"id":1982,"width":170,"height":60},{"x":0,"y":0,"fileNum":4019,"id":1983,"width":170,"height":60},{"x":0,"y":0,"fileNum":4020,"id":1984,"width":170,"height":60},{"x":0,"y":0,"fileNum":4013,"id":1985,"width":170,"height":60},{"x":0,"y":0,"fileNum":4014,"id":1986,"width":170,"height":60},{"x":0,"y":0,"fileNum":4015,"id":1987,"width":170,"height":60},{"x":0,"y":0,"fileNum":4016,"id":1988,"width":170,"height":60},{"x":0,"y":0,"fileNum":8115,"id":1993,"width":129,"height":128},{"x":129,"y":0,"fileNum":8115,"id":1994,"width":129,"height":128},{"x":256,"y":0,"fileNum":8115,"id":1995,"width":129,"height":128},{"x":384,"y":0,"fileNum":8115,"id":1996,"width":128,"height":128},{"x":0,"y":0,"fileNum":15204,"id":1997,"width":60,"height":60},{"x":0,"y":0,"fileNum":418,"id":1998,"width":32,"height":32},{"x":0,"y":0,"fileNum":22053,"id":1999,"width":32,"height":32},{"x":0,"y":0,"fileNum":24007,"id":2000,"width":25,"height":45},{"x":25,"y":0,"fileNum":24007,"id":2001,"width":25,"height":45},{"x":50,"y":0,"fileNum":24007,"id":2002,"width":25,"height":45},{"x":75,"y":0,"fileNum":24007,"id":2003,"width":25,"height":45},{"x":100,"y":0,"fileNum":24007,"id":2004,"width":25,"height":45},{"x":125,"y":0,"fileNum":24007,"id":2005,"width":25,"height":45},{"x":0,"y":45,"fileNum":24007,"id":2006,"width":25,"height":45},{"x":25,"y":45,"fileNum":24007,"id":2007,"width":25,"height":45},{"x":50,"y":45,"fileNum":24007,"id":2008,"width":25,"height":45},{"x":75,"y":45,"fileNum":24007,"id":2009,"width":25,"height":45},{"x":100,"y":45,"fileNum":24007,"id":2010,"width":25,"height":45},{"x":125,"y":45,"fileNum":24007,"id":2011,"width":25,"height":45},{"x":0,"y":90,"fileNum":24007,"id":2012,"width":25,"height":45},{"x":25,"y":90,"fileNum":24007,"id":2013,"width":25,"height":45},{"x":50,"y":90,"fileNum":24007,"id":2014,"width":25,"height":45},{"x":75,"y":90,"fileNum":24007,"id":2015,"width":25,"height":45},{"x":100,"y":90,"fileNum":24007,"id":2016,"width":25,"height":45},{"x":0,"y":135,"fileNum":24007,"id":2017,"width":25,"height":45},{"x":25,"y":135,"fileNum":24007,"id":2018,"width":25,"height":45},{"x":50,"y":135,"fileNum":24007,"id":2019,"width":25,"height":45},{"x":75,"y":135,"fileNum":24007,"id":2020,"width":25,"height":45},{"x":100,"y":135,"fileNum":24007,"id":2021,"width":25,"height":45},{"x":0,"y":0,"fileNum":190,"id":2022,"width":25,"height":45},{"x":25,"y":0,"fileNum":190,"id":2023,"width":25,"height":45},{"x":50,"y":0,"fileNum":190,"id":2024,"width":25,"height":45},{"x":75,"y":0,"fileNum":190,"id":2025,"width":25,"height":45},{"x":100,"y":0,"fileNum":190,"id":2026,"width":25,"height":45},{"x":125,"y":0,"fileNum":190,"id":2027,"width":25,"height":45},{"x":0,"y":45,"fileNum":190,"id":2028,"width":25,"height":45},{"x":25,"y":45,"fileNum":190,"id":2029,"width":25,"height":45},{"x":50,"y":45,"fileNum":190,"id":2030,"width":25,"height":45},{"x":75,"y":45,"fileNum":190,"id":2031,"width":25,"height":45},{"x":100,"y":45,"fileNum":190,"id":2032,"width":25,"height":45},{"x":125,"y":45,"fileNum":190,"id":2033,"width":25,"height":45},{"x":0,"y":90,"fileNum":190,"id":2034,"width":25,"height":45},{"x":25,"y":90,"fileNum":190,"id":2035,"width":25,"height":45},{"x":50,"y":90,"fileNum":190,"id":2036,"width":25,"height":45},{"x":75,"y":90,"fileNum":190,"id":2037,"width":25,"height":45},{"x":100,"y":90,"fileNum":190,"id":2038,"width":25,"height":45},{"x":0,"y":135,"fileNum":190,"id":2039,"width":25,"height":45},{"x":25,"y":135,"fileNum":190,"id":2040,"width":25,"height":45},{"x":50,"y":135,"fileNum":190,"id":2041,"width":25,"height":45},{"x":75,"y":135,"fileNum":190,"id":2042,"width":25,"height":45},{"x":100,"y":135,"fileNum":190,"id":2043,"width":25,"height":45},{"x":0,"y":0,"fileNum":191,"id":2044,"width":25,"height":45},{"x":25,"y":0,"fileNum":191,"id":2045,"width":25,"height":45},{"x":50,"y":0,"fileNum":191,"id":2046,"width":25,"height":45},{"x":75,"y":0,"fileNum":191,"id":2047,"width":25,"height":45},{"x":100,"y":0,"fileNum":191,"id":2048,"width":25,"height":45},{"x":125,"y":0,"fileNum":191,"id":2049,"width":25,"height":45},{"x":0,"y":45,"fileNum":191,"id":2050,"width":25,"height":45},{"x":25,"y":45,"fileNum":191,"id":2051,"width":25,"height":45},{"x":50,"y":45,"fileNum":191,"id":2052,"width":25,"height":45},{"x":75,"y":45,"fileNum":191,"id":2053,"width":25,"height":45},{"x":100,"y":45,"fileNum":191,"id":2054,"width":25,"height":45},{"x":125,"y":45,"fileNum":191,"id":2055,"width":25,"height":45},{"x":0,"y":90,"fileNum":191,"id":2056,"width":25,"height":45},{"x":25,"y":90,"fileNum":191,"id":2057,"width":25,"height":45},{"x":50,"y":90,"fileNum":191,"id":2058,"width":25,"height":45},{"x":75,"y":90,"fileNum":191,"id":2059,"width":25,"height":45},{"x":100,"y":90,"fileNum":191,"id":2060,"width":25,"height":45},{"x":0,"y":135,"fileNum":191,"id":2061,"width":25,"height":45},{"x":25,"y":135,"fileNum":191,"id":2062,"width":25,"height":45},{"x":50,"y":135,"fileNum":191,"id":2063,"width":25,"height":45},{"x":75,"y":135,"fileNum":191,"id":2064,"width":25,"height":45},{"x":100,"y":135,"fileNum":191,"id":2065,"width":25,"height":45},{"x":0,"y":0,"fileNum":192,"id":2066,"width":25,"height":45},{"x":25,"y":0,"fileNum":192,"id":2067,"width":25,"height":45},{"x":50,"y":0,"fileNum":192,"id":2068,"width":25,"height":45},{"x":75,"y":0,"fileNum":192,"id":2069,"width":25,"height":45},{"x":100,"y":0,"fileNum":192,"id":2070,"width":25,"height":45},{"x":125,"y":0,"fileNum":192,"id":2071,"width":25,"height":45},{"x":0,"y":45,"fileNum":192,"id":2072,"width":25,"height":45},{"x":25,"y":45,"fileNum":192,"id":2073,"width":25,"height":45},{"x":50,"y":45,"fileNum":192,"id":2074,"width":25,"height":45},{"x":75,"y":45,"fileNum":192,"id":2075,"width":25,"height":45},{"x":100,"y":45,"fileNum":192,"id":2076,"width":25,"height":45},{"x":125,"y":45,"fileNum":192,"id":2077,"width":25,"height":45},{"x":0,"y":90,"fileNum":192,"id":2078,"width":25,"height":45},{"x":25,"y":90,"fileNum":192,"id":2079,"width":25,"height":45},{"x":50,"y":90,"fileNum":192,"id":2080,"width":25,"height":45},{"x":75,"y":90,"fileNum":192,"id":2081,"width":25,"height":45},{"x":100,"y":90,"fileNum":192,"id":2082,"width":25,"height":45},{"x":0,"y":135,"fileNum":192,"id":2083,"width":25,"height":45},{"x":25,"y":135,"fileNum":192,"id":2084,"width":25,"height":45},{"x":50,"y":135,"fileNum":192,"id":2085,"width":25,"height":45},{"x":75,"y":135,"fileNum":192,"id":2086,"width":25,"height":45},{"x":100,"y":135,"fileNum":192,"id":2087,"width":25,"height":45},{"x":0,"y":0,"fileNum":193,"id":2088,"width":25,"height":45},{"x":25,"y":0,"fileNum":193,"id":2089,"width":25,"height":45},{"x":50,"y":0,"fileNum":193,"id":2090,"width":25,"height":45},{"x":75,"y":0,"fileNum":193,"id":2091,"width":25,"height":45},{"x":100,"y":0,"fileNum":193,"id":2092,"width":25,"height":45},{"x":125,"y":0,"fileNum":193,"id":2093,"width":25,"height":45},{"x":0,"y":45,"fileNum":193,"id":2094,"width":25,"height":45},{"x":25,"y":45,"fileNum":193,"id":2095,"width":25,"height":45},{"x":50,"y":45,"fileNum":193,"id":2096,"width":25,"height":45},{"x":75,"y":45,"fileNum":193,"id":2097,"width":25,"height":45},{"x":100,"y":45,"fileNum":193,"id":2098,"width":25,"height":45},{"x":125,"y":45,"fileNum":193,"id":2099,"width":25,"height":45},{"x":0,"y":90,"fileNum":193,"id":2100,"width":25,"height":45},{"x":25,"y":90,"fileNum":193,"id":2101,"width":25,"height":45},{"x":50,"y":90,"fileNum":193,"id":2102,"width":25,"height":45},{"x":75,"y":90,"fileNum":193,"id":2103,"width":25,"height":45},{"x":100,"y":90,"fileNum":193,"id":2104,"width":25,"height":45},{"x":0,"y":135,"fileNum":193,"id":2105,"width":25,"height":45},{"x":25,"y":135,"fileNum":193,"id":2106,"width":25,"height":45},{"x":50,"y":135,"fileNum":193,"id":2107,"width":25,"height":45},{"x":75,"y":135,"fileNum":193,"id":2108,"width":25,"height":45},{"x":100,"y":135,"fileNum":193,"id":2109,"width":25,"height":45},{"x":0,"y":0,"fileNum":17006,"id":2110,"width":97,"height":67},{"x":97,"y":0,"fileNum":17006,"id":2111,"width":97,"height":67},{"x":194,"y":0,"fileNum":17006,"id":2112,"width":97,"height":67},{"x":291,"y":0,"fileNum":17006,"id":2113,"width":97,"height":67},{"x":0,"y":67,"fileNum":17006,"id":2114,"width":97,"height":67},{"x":97,"y":67,"fileNum":17006,"id":2115,"width":97,"height":67},{"x":194,"y":67,"fileNum":17006,"id":2116,"width":97,"height":67},{"x":291,"y":67,"fileNum":17006,"id":2117,"width":97,"height":67},{"x":0,"y":134,"fileNum":17006,"id":2118,"width":65,"height":97},{"x":65,"y":134,"fileNum":17006,"id":2119,"width":65,"height":97},{"x":130,"y":134,"fileNum":17006,"id":2120,"width":65,"height":97},{"x":195,"y":134,"fileNum":17006,"id":2121,"width":65,"height":97},{"x":0,"y":231,"fileNum":17006,"id":2122,"width":65,"height":99},{"x":65,"y":231,"fileNum":17006,"id":2123,"width":65,"height":99},{"x":130,"y":231,"fileNum":17006,"id":2124,"width":65,"height":99},{"x":195,"y":231,"fileNum":17006,"id":2125,"width":65,"height":99},{"x":0,"y":0,"fileNum":15061,"id":2130,"width":33,"height":53},{"x":42,"y":0,"fileNum":15061,"id":2131,"width":33,"height":53},{"x":0,"y":53,"fileNum":15061,"id":2132,"width":33,"height":53},{"x":42,"y":53,"fileNum":15061,"id":2133,"width":33,"height":53},{"x":0,"y":0,"fileNum":13003,"id":2134,"width":32,"height":32},{"x":0,"y":0,"fileNum":13004,"id":2135,"width":32,"height":32},{"x":0,"y":0,"fileNum":13005,"id":2136,"width":32,"height":32},{"x":0,"y":0,"fileNum":13006,"id":2137,"width":32,"height":32},{"x":0,"y":0,"fileNum":15068,"id":2138,"width":70,"height":60},{"x":0,"y":0,"fileNum":15069,"id":2139,"width":70,"height":50},{"x":0,"y":0,"fileNum":4133,"id":2140,"width":24,"height":31},{"x":24,"y":0,"fileNum":4133,"id":2141,"width":24,"height":31},{"x":48,"y":0,"fileNum":4133,"id":2142,"width":24,"height":31},{"x":72,"y":0,"fileNum":4133,"id":2143,"width":24,"height":31},{"x":96,"y":0,"fileNum":4133,"id":2144,"width":24,"height":31},{"x":120,"y":0,"fileNum":4133,"id":2145,"width":24,"height":31},{"x":144,"y":0,"fileNum":4133,"id":2146,"width":24,"height":31},{"x":168,"y":0,"fileNum":4133,"id":2147,"width":24,"height":31},{"x":0,"y":31,"fileNum":4133,"id":2148,"width":24,"height":31},{"x":24,"y":31,"fileNum":4133,"id":2149,"width":24,"height":31},{"x":48,"y":31,"fileNum":4133,"id":2150,"width":24,"height":31},{"x":72,"y":31,"fileNum":4133,"id":2151,"width":24,"height":31},{"x":96,"y":31,"fileNum":4133,"id":2152,"width":24,"height":31},{"x":120,"y":31,"fileNum":4133,"id":2153,"width":24,"height":31},{"x":144,"y":31,"fileNum":4133,"id":2154,"width":24,"height":31},{"x":168,"y":31,"fileNum":4133,"id":2155,"width":24,"height":31},{"x":0,"y":62,"fileNum":4133,"id":2156,"width":24,"height":31},{"x":24,"y":62,"fileNum":4133,"id":2157,"width":24,"height":31},{"x":48,"y":62,"fileNum":4133,"id":2158,"width":24,"height":31},{"x":72,"y":62,"fileNum":4133,"id":2159,"width":24,"height":31},{"x":96,"y":62,"fileNum":4133,"id":2160,"width":24,"height":31},{"x":120,"y":62,"fileNum":4133,"id":2161,"width":24,"height":31},{"x":144,"y":62,"fileNum":4133,"id":2162,"width":24,"height":31},{"x":168,"y":62,"fileNum":4133,"id":2163,"width":24,"height":31},{"x":0,"y":93,"fileNum":4133,"id":2164,"width":24,"height":31},{"x":24,"y":93,"fileNum":4133,"id":2165,"width":24,"height":31},{"x":48,"y":93,"fileNum":4133,"id":2166,"width":24,"height":31},{"x":72,"y":93,"fileNum":4133,"id":2167,"width":24,"height":31},{"x":96,"y":93,"fileNum":4133,"id":2168,"width":24,"height":31},{"x":120,"y":93,"fileNum":4133,"id":2169,"width":24,"height":31},{"x":144,"y":93,"fileNum":4133,"id":2170,"width":24,"height":31},{"x":168,"y":93,"fileNum":4133,"id":2171,"width":24,"height":31},{"x":0,"y":0,"fileNum":15064,"id":2172,"width":24,"height":100},{"x":0,"y":0,"fileNum":15065,"id":2173,"width":17,"height":72},{"x":0,"y":0,"fileNum":15066,"id":2174,"width":125,"height":91},{"x":0,"y":0,"fileNum":15067,"id":2175,"width":105,"height":139},{"x":0,"y":0,"fileNum":9021,"id":2176,"width":49,"height":86},{"x":48,"y":0,"fileNum":9021,"id":2177,"width":49,"height":86},{"x":0,"y":0,"fileNum":4134,"id":2178,"width":51,"height":35},{"x":51,"y":0,"fileNum":4134,"id":2179,"width":51,"height":35},{"x":102,"y":0,"fileNum":4134,"id":2180,"width":51,"height":35},{"x":153,"y":0,"fileNum":4134,"id":2181,"width":51,"height":35},{"x":204,"y":0,"fileNum":4134,"id":2182,"width":51,"height":35},{"x":255,"y":0,"fileNum":4134,"id":2183,"width":51,"height":35},{"x":306,"y":0,"fileNum":4134,"id":2184,"width":51,"height":35},{"x":357,"y":0,"fileNum":4134,"id":2185,"width":51,"height":35},{"x":0,"y":35,"fileNum":4134,"id":2186,"width":51,"height":35},{"x":51,"y":35,"fileNum":4134,"id":2187,"width":51,"height":35},{"x":102,"y":35,"fileNum":4134,"id":2188,"width":51,"height":35},{"x":153,"y":35,"fileNum":4134,"id":2189,"width":51,"height":35},{"x":204,"y":35,"fileNum":4134,"id":2190,"width":51,"height":35},{"x":255,"y":35,"fileNum":4134,"id":2191,"width":51,"height":35},{"x":306,"y":35,"fileNum":4134,"id":2192,"width":51,"height":35},{"x":357,"y":35,"fileNum":4134,"id":2193,"width":51,"height":35},{"x":0,"y":70,"fileNum":4134,"id":2194,"width":51,"height":35},{"x":51,"y":70,"fileNum":4134,"id":2195,"width":51,"height":35},{"x":102,"y":70,"fileNum":4134,"id":2196,"width":51,"height":35},{"x":153,"y":70,"fileNum":4134,"id":2197,"width":51,"height":35},{"x":204,"y":70,"fileNum":4134,"id":2198,"width":51,"height":35},{"x":255,"y":70,"fileNum":4134,"id":2199,"width":51,"height":35},{"x":306,"y":70,"fileNum":4134,"id":2200,"width":51,"height":35},{"x":357,"y":70,"fileNum":4134,"id":2201,"width":51,"height":35},{"x":0,"y":105,"fileNum":4134,"id":2202,"width":51,"height":35},{"x":51,"y":105,"fileNum":4134,"id":2203,"width":51,"height":35},{"x":102,"y":105,"fileNum":4134,"id":2204,"width":51,"height":35},{"x":153,"y":105,"fileNum":4134,"id":2205,"width":51,"height":35},{"x":204,"y":105,"fileNum":4134,"id":2206,"width":51,"height":35},{"x":255,"y":105,"fileNum":4134,"id":2207,"width":51,"height":35},{"x":306,"y":105,"fileNum":4134,"id":2208,"width":51,"height":35},{"x":357,"y":105,"fileNum":4134,"id":2209,"width":51,"height":35},{"x":0,"y":0,"fileNum":4135,"id":2210,"width":80,"height":54},{"x":80,"y":0,"fileNum":4135,"id":2211,"width":80,"height":54},{"x":160,"y":0,"fileNum":4135,"id":2212,"width":80,"height":54},{"x":240,"y":0,"fileNum":4135,"id":2213,"width":80,"height":54},{"x":320,"y":0,"fileNum":4135,"id":2214,"width":80,"height":54},{"x":400,"y":0,"fileNum":4135,"id":2215,"width":80,"height":54},{"x":480,"y":0,"fileNum":4135,"id":2216,"width":80,"height":54},{"x":560,"y":0,"fileNum":4135,"id":2217,"width":80,"height":54},{"x":0,"y":54,"fileNum":4135,"id":2218,"width":80,"height":54},{"x":80,"y":54,"fileNum":4135,"id":2219,"width":80,"height":54},{"x":160,"y":54,"fileNum":4135,"id":2220,"width":80,"height":54},{"x":240,"y":54,"fileNum":4135,"id":2221,"width":80,"height":54},{"x":320,"y":54,"fileNum":4135,"id":2222,"width":80,"height":54},{"x":400,"y":54,"fileNum":4135,"id":2223,"width":80,"height":54},{"x":480,"y":54,"fileNum":4135,"id":2224,"width":80,"height":54},{"x":560,"y":54,"fileNum":4135,"id":2225,"width":80,"height":54},{"x":0,"y":108,"fileNum":4135,"id":2226,"width":80,"height":54},{"x":80,"y":108,"fileNum":4135,"id":2227,"width":80,"height":54},{"x":160,"y":108,"fileNum":4135,"id":2228,"width":80,"height":54},{"x":240,"y":108,"fileNum":4135,"id":2229,"width":80,"height":54},{"x":320,"y":108,"fileNum":4135,"id":2230,"width":80,"height":54},{"x":400,"y":108,"fileNum":4135,"id":2231,"width":80,"height":54},{"x":480,"y":108,"fileNum":4135,"id":2232,"width":80,"height":54},{"x":560,"y":108,"fileNum":4135,"id":2233,"width":80,"height":54},{"x":0,"y":162,"fileNum":4135,"id":2234,"width":80,"height":54},{"x":80,"y":162,"fileNum":4135,"id":2235,"width":80,"height":54},{"x":160,"y":162,"fileNum":4135,"id":2236,"width":80,"height":54},{"x":240,"y":162,"fileNum":4135,"id":2237,"width":80,"height":54},{"x":320,"y":162,"fileNum":4135,"id":2238,"width":80,"height":54},{"x":400,"y":162,"fileNum":4135,"id":2239,"width":80,"height":54},{"x":480,"y":162,"fileNum":4135,"id":2240,"width":80,"height":54},{"x":560,"y":162,"fileNum":4135,"id":2241,"width":80,"height":54},{"x":0,"y":0,"fileNum":4076,"id":2242,"width":29,"height":32},{"x":29,"y":0,"fileNum":4076,"id":2243,"width":29,"height":32},{"x":58,"y":0,"fileNum":4076,"id":2244,"width":29,"height":32},{"x":0,"y":32,"fileNum":4076,"id":2245,"width":29,"height":32},{"x":29,"y":32,"fileNum":4076,"id":2246,"width":29,"height":32},{"x":58,"y":32,"fileNum":4076,"id":2247,"width":29,"height":32},{"x":0,"y":64,"fileNum":4076,"id":2248,"width":29,"height":32},{"x":29,"y":64,"fileNum":4076,"id":2249,"width":29,"height":32},{"x":58,"y":64,"fileNum":4076,"id":2250,"width":29,"height":32},{"x":0,"y":96,"fileNum":4076,"id":2251,"width":29,"height":32},{"x":29,"y":96,"fileNum":4076,"id":2252,"width":29,"height":32},{"x":58,"y":96,"fileNum":4076,"id":2253,"width":29,"height":32},{"x":0,"y":0,"fileNum":4077,"id":2254,"width":32,"height":25},{"x":31,"y":0,"fileNum":4077,"id":2255,"width":32,"height":25},{"x":0,"y":24,"fileNum":4077,"id":2256,"width":32,"height":25},{"x":31,"y":24,"fileNum":4077,"id":2257,"width":32,"height":25},{"x":0,"y":48,"fileNum":4077,"id":2258,"width":32,"height":25},{"x":31,"y":48,"fileNum":4077,"id":2259,"width":32,"height":25},{"x":0,"y":72,"fileNum":4077,"id":2260,"width":32,"height":25},{"x":31,"y":72,"fileNum":4077,"id":2261,"width":32,"height":25},{"x":0,"y":0,"fileNum":4078,"id":2262,"width":75,"height":50},{"x":74,"y":0,"fileNum":4078,"id":2263,"width":75,"height":50},{"x":148,"y":0,"fileNum":4078,"id":2264,"width":75,"height":50},{"x":222,"y":0,"fileNum":4078,"id":2265,"width":75,"height":50},{"x":0,"y":49,"fileNum":4078,"id":2266,"width":75,"height":50},{"x":74,"y":49,"fileNum":4078,"id":2267,"width":75,"height":50},{"x":148,"y":49,"fileNum":4078,"id":2268,"width":75,"height":50},{"x":222,"y":49,"fileNum":4078,"id":2269,"width":75,"height":50},{"x":0,"y":98,"fileNum":4078,"id":2270,"width":75,"height":50},{"x":74,"y":98,"fileNum":4078,"id":2271,"width":75,"height":50},{"x":148,"y":98,"fileNum":4078,"id":2272,"width":75,"height":50},{"x":222,"y":98,"fileNum":4078,"id":2273,"width":75,"height":50},{"x":0,"y":147,"fileNum":4078,"id":2274,"width":75,"height":50},{"x":74,"y":147,"fileNum":4078,"id":2275,"width":75,"height":50},{"x":148,"y":147,"fileNum":4078,"id":2276,"width":75,"height":50},{"x":222,"y":147,"fileNum":4078,"id":2277,"width":75,"height":50},{"x":0,"y":0,"fileNum":3084,"id":2278,"width":32,"height":32},{"x":32,"y":0,"fileNum":3084,"id":2279,"width":32,"height":32},{"x":64,"y":0,"fileNum":3084,"id":2280,"width":32,"height":32},{"x":96,"y":0,"fileNum":3084,"id":2281,"width":32,"height":32},{"x":0,"y":32,"fileNum":3084,"id":2282,"width":32,"height":32},{"x":32,"y":32,"fileNum":3084,"id":2283,"width":32,"height":32},{"x":64,"y":32,"fileNum":3084,"id":2284,"width":32,"height":32},{"x":96,"y":32,"fileNum":3084,"id":2285,"width":32,"height":32},{"x":0,"y":64,"fileNum":3084,"id":2286,"width":32,"height":32},{"x":32,"y":64,"fileNum":3084,"id":2287,"width":32,"height":32},{"x":64,"y":64,"fileNum":3084,"id":2288,"width":32,"height":32},{"x":96,"y":64,"fileNum":3084,"id":2289,"width":32,"height":32},{"x":0,"y":96,"fileNum":3084,"id":2290,"width":32,"height":32},{"x":32,"y":96,"fileNum":3084,"id":2291,"width":32,"height":32},{"x":64,"y":96,"fileNum":3084,"id":2292,"width":32,"height":32},{"x":96,"y":96,"fileNum":3084,"id":2293,"width":32,"height":32},{"x":0,"y":0,"fileNum":12063,"id":2294,"width":32,"height":32},{"x":32,"y":0,"fileNum":12063,"id":2295,"width":32,"height":32},{"x":64,"y":0,"fileNum":12063,"id":2296,"width":32,"height":32},{"x":96,"y":0,"fileNum":12063,"id":2297,"width":32,"height":32},{"x":0,"y":32,"fileNum":12063,"id":2298,"width":32,"height":32},{"x":32,"y":32,"fileNum":12063,"id":2299,"width":32,"height":32},{"x":64,"y":32,"fileNum":12063,"id":2300,"width":32,"height":32},{"x":96,"y":32,"fileNum":12063,"id":2301,"width":32,"height":32},{"x":0,"y":64,"fileNum":12063,"id":2302,"width":32,"height":32},{"x":32,"y":64,"fileNum":12063,"id":2303,"width":32,"height":32},{"x":64,"y":64,"fileNum":12063,"id":2304,"width":32,"height":32},{"x":96,"y":64,"fileNum":12063,"id":2305,"width":32,"height":32},{"x":0,"y":96,"fileNum":12063,"id":2306,"width":32,"height":32},{"x":32,"y":96,"fileNum":12063,"id":2307,"width":32,"height":32},{"x":64,"y":96,"fileNum":12063,"id":2308,"width":32,"height":32},{"x":96,"y":96,"fileNum":12063,"id":2309,"width":32,"height":32},{"x":0,"y":0,"fileNum":3100,"id":2310,"width":100,"height":54},{"x":100,"y":0,"fileNum":3100,"id":2311,"width":100,"height":54},{"x":200,"y":0,"fileNum":3100,"id":2312,"width":100,"height":54},{"x":300,"y":0,"fileNum":3100,"id":2313,"width":100,"height":54},{"x":400,"y":0,"fileNum":3100,"id":2314,"width":100,"height":54},{"x":500,"y":0,"fileNum":3100,"id":2315,"width":100,"height":54},{"x":0,"y":0,"fileNum":12043,"id":2317,"width":32,"height":32},{"x":32,"y":0,"fileNum":12043,"id":2318,"width":32,"height":32},{"x":64,"y":0,"fileNum":12043,"id":2319,"width":32,"height":32},{"x":96,"y":0,"fileNum":12043,"id":2320,"width":32,"height":32},{"x":0,"y":32,"fileNum":12043,"id":2321,"width":32,"height":32},{"x":32,"y":32,"fileNum":12043,"id":2322,"width":32,"height":32},{"x":64,"y":32,"fileNum":12043,"id":2323,"width":32,"height":32},{"x":96,"y":32,"fileNum":12043,"id":2324,"width":32,"height":32},{"x":0,"y":64,"fileNum":12043,"id":2325,"width":32,"height":32},{"x":32,"y":64,"fileNum":12043,"id":2326,"width":32,"height":32},{"x":64,"y":64,"fileNum":12043,"id":2327,"width":32,"height":32},{"x":96,"y":64,"fileNum":12043,"id":2328,"width":32,"height":32},{"x":0,"y":96,"fileNum":12043,"id":2329,"width":32,"height":32},{"x":32,"y":96,"fileNum":12043,"id":2330,"width":32,"height":32},{"x":64,"y":96,"fileNum":12043,"id":2331,"width":32,"height":32},{"x":96,"y":96,"fileNum":12043,"id":2332,"width":32,"height":32},{"x":0,"y":0,"fileNum":9009,"id":2333,"width":117,"height":128},{"x":117,"y":0,"fileNum":9009,"id":2334,"width":117,"height":128},{"x":0,"y":117,"fileNum":9009,"id":2335,"width":117,"height":128},{"x":117,"y":128,"fileNum":9009,"id":2336,"width":117,"height":128},{"x":0,"y":0,"fileNum":2109,"id":2337,"width":17,"height":50},{"x":17,"y":0,"fileNum":2109,"id":2338,"width":17,"height":50},{"x":34,"y":0,"fileNum":2109,"id":2339,"width":17,"height":50},{"x":51,"y":0,"fileNum":2109,"id":2340,"width":17,"height":50},{"x":0,"y":0,"fileNum":16072,"id":2341,"width":32,"height":32},{"x":0,"y":0,"fileNum":4081,"id":2342,"width":31,"height":25},{"x":31,"y":0,"fileNum":4081,"id":2343,"width":31,"height":25},{"x":62,"y":0,"fileNum":4081,"id":2344,"width":31,"height":25},{"x":0,"y":25,"fileNum":4081,"id":2345,"width":31,"height":25},{"x":31,"y":25,"fileNum":4081,"id":2346,"width":31,"height":25},{"x":62,"y":25,"fileNum":4081,"id":2347,"width":31,"height":25},{"x":0,"y":50,"fileNum":4081,"id":2348,"width":31,"height":25},{"x":31,"y":50,"fileNum":4081,"id":2349,"width":31,"height":25},{"x":62,"y":50,"fileNum":4081,"id":2350,"width":31,"height":25},{"x":0,"y":75,"fileNum":4081,"id":2351,"width":31,"height":25},{"x":31,"y":75,"fileNum":4081,"id":2352,"width":31,"height":25},{"x":62,"y":75,"fileNum":4081,"id":2353,"width":31,"height":25},{"x":0,"y":0,"fileNum":4082,"id":2354,"width":25,"height":32},{"x":24,"y":0,"fileNum":4082,"id":2355,"width":25,"height":32},{"x":48,"y":0,"fileNum":4082,"id":2356,"width":25,"height":32},{"x":71,"y":0,"fileNum":4082,"id":2357,"width":25,"height":32},{"x":94,"y":0,"fileNum":4082,"id":2358,"width":25,"height":32},{"x":117,"y":0,"fileNum":4082,"id":2359,"width":25,"height":32},{"x":141,"y":0,"fileNum":4082,"id":2360,"width":25,"height":32},{"x":164,"y":0,"fileNum":4082,"id":2361,"width":25,"height":32},{"x":0,"y":31,"fileNum":4082,"id":2362,"width":25,"height":32},{"x":24,"y":31,"fileNum":4082,"id":2363,"width":25,"height":32},{"x":48,"y":31,"fileNum":4082,"id":2364,"width":25,"height":32},{"x":71,"y":31,"fileNum":4082,"id":2365,"width":25,"height":32},{"x":94,"y":31,"fileNum":4082,"id":2366,"width":25,"height":32},{"x":117,"y":31,"fileNum":4082,"id":2367,"width":25,"height":32},{"x":141,"y":31,"fileNum":4082,"id":2368,"width":25,"height":32},{"x":164,"y":31,"fileNum":4082,"id":2369,"width":25,"height":32},{"x":0,"y":62,"fileNum":4082,"id":2370,"width":25,"height":32},{"x":24,"y":62,"fileNum":4082,"id":2371,"width":25,"height":32},{"x":48,"y":62,"fileNum":4082,"id":2372,"width":25,"height":32},{"x":71,"y":62,"fileNum":4082,"id":2373,"width":25,"height":32},{"x":94,"y":62,"fileNum":4082,"id":2374,"width":25,"height":32},{"x":117,"y":62,"fileNum":4082,"id":2375,"width":25,"height":32},{"x":141,"y":62,"fileNum":4082,"id":2376,"width":25,"height":32},{"x":164,"y":62,"fileNum":4082,"id":2377,"width":25,"height":32},{"x":0,"y":93,"fileNum":4082,"id":2378,"width":25,"height":32},{"x":24,"y":93,"fileNum":4082,"id":2379,"width":25,"height":32},{"x":48,"y":93,"fileNum":4082,"id":2380,"width":25,"height":32},{"x":71,"y":93,"fileNum":4082,"id":2381,"width":25,"height":32},{"x":94,"y":93,"fileNum":4082,"id":2382,"width":25,"height":32},{"x":117,"y":93,"fileNum":4082,"id":2383,"width":25,"height":32},{"x":141,"y":93,"fileNum":4082,"id":2384,"width":25,"height":32},{"x":164,"y":93,"fileNum":4082,"id":2385,"width":25,"height":32},{"x":0,"y":0,"fileNum":4083,"id":2386,"width":28,"height":51},{"x":28,"y":0,"fileNum":4083,"id":2387,"width":28,"height":51},{"x":56,"y":0,"fileNum":4083,"id":2388,"width":28,"height":51},{"x":84,"y":0,"fileNum":4083,"id":2389,"width":28,"height":51},{"x":112,"y":0,"fileNum":4083,"id":2390,"width":28,"height":51},{"x":140,"y":0,"fileNum":4083,"id":2391,"width":28,"height":51},{"x":168,"y":0,"fileNum":4083,"id":2392,"width":28,"height":51},{"x":196,"y":0,"fileNum":4083,"id":2393,"width":28,"height":51},{"x":0,"y":51,"fileNum":4083,"id":2394,"width":28,"height":51},{"x":28,"y":51,"fileNum":4083,"id":2395,"width":28,"height":51},{"x":56,"y":51,"fileNum":4083,"id":2396,"width":28,"height":51},{"x":84,"y":51,"fileNum":4083,"id":2397,"width":28,"height":51},{"x":112,"y":51,"fileNum":4083,"id":2398,"width":28,"height":51},{"x":140,"y":51,"fileNum":4083,"id":2399,"width":28,"height":51},{"x":168,"y":51,"fileNum":4083,"id":2400,"width":28,"height":51},{"x":196,"y":51,"fileNum":4083,"id":2401,"width":28,"height":51},{"x":0,"y":102,"fileNum":4083,"id":2402,"width":28,"height":51},{"x":28,"y":102,"fileNum":4083,"id":2403,"width":28,"height":51},{"x":56,"y":102,"fileNum":4083,"id":2404,"width":28,"height":51},{"x":84,"y":102,"fileNum":4083,"id":2405,"width":28,"height":51},{"x":112,"y":102,"fileNum":4083,"id":2406,"width":28,"height":51},{"x":140,"y":102,"fileNum":4083,"id":2407,"width":28,"height":51},{"x":168,"y":102,"fileNum":4083,"id":2408,"width":28,"height":51},{"x":196,"y":102,"fileNum":4083,"id":2409,"width":28,"height":51},{"x":0,"y":153,"fileNum":4083,"id":2410,"width":28,"height":51},{"x":28,"y":153,"fileNum":4083,"id":2411,"width":28,"height":51},{"x":56,"y":153,"fileNum":4083,"id":2412,"width":28,"height":51},{"x":84,"y":153,"fileNum":4083,"id":2413,"width":28,"height":51},{"x":112,"y":153,"fileNum":4083,"id":2414,"width":28,"height":51},{"x":140,"y":153,"fileNum":4083,"id":2415,"width":28,"height":51},{"x":168,"y":153,"fileNum":4083,"id":2416,"width":28,"height":51},{"x":196,"y":153,"fileNum":4083,"id":2417,"width":28,"height":51},{"x":0,"y":0,"fileNum":4084,"id":2418,"width":25,"height":48},{"x":24,"y":0,"fileNum":4084,"id":2419,"width":25,"height":48},{"x":47,"y":0,"fileNum":4084,"id":2420,"width":25,"height":48},{"x":70,"y":0,"fileNum":4084,"id":2421,"width":25,"height":48},{"x":94,"y":0,"fileNum":4084,"id":2422,"width":25,"height":48},{"x":118,"y":0,"fileNum":4084,"id":2423,"width":25,"height":48},{"x":141,"y":0,"fileNum":4084,"id":2424,"width":25,"height":48},{"x":165,"y":0,"fileNum":4084,"id":2425,"width":25,"height":48},{"x":0,"y":47,"fileNum":4084,"id":2426,"width":25,"height":48},{"x":24,"y":47,"fileNum":4084,"id":2427,"width":25,"height":48},{"x":47,"y":47,"fileNum":4084,"id":2428,"width":25,"height":48},{"x":70,"y":47,"fileNum":4084,"id":2429,"width":25,"height":48},{"x":94,"y":47,"fileNum":4084,"id":2430,"width":25,"height":48},{"x":118,"y":47,"fileNum":4084,"id":2431,"width":25,"height":48},{"x":141,"y":47,"fileNum":4084,"id":2432,"width":25,"height":48},{"x":165,"y":47,"fileNum":4084,"id":2433,"width":25,"height":48},{"x":0,"y":94,"fileNum":4084,"id":2434,"width":25,"height":48},{"x":24,"y":94,"fileNum":4084,"id":2435,"width":25,"height":48},{"x":47,"y":94,"fileNum":4084,"id":2436,"width":25,"height":48},{"x":70,"y":94,"fileNum":4084,"id":2437,"width":25,"height":48},{"x":94,"y":94,"fileNum":4084,"id":2438,"width":25,"height":48},{"x":118,"y":94,"fileNum":4084,"id":2439,"width":25,"height":48},{"x":141,"y":94,"fileNum":4084,"id":2440,"width":25,"height":48},{"x":165,"y":94,"fileNum":4084,"id":2441,"width":25,"height":48},{"x":0,"y":141,"fileNum":4084,"id":2442,"width":25,"height":48},{"x":24,"y":141,"fileNum":4084,"id":2443,"width":25,"height":48},{"x":47,"y":141,"fileNum":4084,"id":2444,"width":25,"height":48},{"x":70,"y":141,"fileNum":4084,"id":2445,"width":25,"height":48},{"x":94,"y":141,"fileNum":4084,"id":2446,"width":25,"height":48},{"x":118,"y":141,"fileNum":4084,"id":2447,"width":25,"height":48},{"x":141,"y":141,"fileNum":4084,"id":2448,"width":25,"height":48},{"x":165,"y":141,"fileNum":4084,"id":2449,"width":25,"height":48},{"x":0,"y":0,"fileNum":4085,"id":2450,"width":35,"height":48},{"x":34,"y":0,"fileNum":4085,"id":2451,"width":35,"height":48},{"x":68,"y":0,"fileNum":4085,"id":2452,"width":35,"height":48},{"x":0,"y":0,"fileNum":4086,"id":2453,"width":25,"height":48},{"x":24,"y":0,"fileNum":4086,"id":2454,"width":25,"height":48},{"x":48,"y":0,"fileNum":4086,"id":2455,"width":25,"height":48},{"x":0,"y":47,"fileNum":4086,"id":2456,"width":25,"height":48},{"x":24,"y":47,"fileNum":4086,"id":2457,"width":25,"height":48},{"x":48,"y":47,"fileNum":4086,"id":2458,"width":25,"height":48},{"x":0,"y":94,"fileNum":4086,"id":2459,"width":25,"height":48},{"x":24,"y":94,"fileNum":4086,"id":2460,"width":25,"height":48},{"x":48,"y":94,"fileNum":4086,"id":2461,"width":25,"height":48},{"x":0,"y":141,"fileNum":4086,"id":2462,"width":25,"height":48},{"x":24,"y":141,"fileNum":4086,"id":2463,"width":25,"height":48},{"x":48,"y":141,"fileNum":4086,"id":2464,"width":25,"height":48},{"x":0,"y":0,"fileNum":4087,"id":2465,"width":24,"height":48},{"x":23,"y":0,"fileNum":4087,"id":2466,"width":24,"height":48},{"x":47,"y":0,"fileNum":4087,"id":2467,"width":24,"height":48},{"x":0,"y":47,"fileNum":4087,"id":2468,"width":24,"height":48},{"x":23,"y":47,"fileNum":4087,"id":2469,"width":24,"height":48},{"x":47,"y":47,"fileNum":4087,"id":2470,"width":24,"height":48},{"x":0,"y":94,"fileNum":4087,"id":2471,"width":24,"height":48},{"x":23,"y":94,"fileNum":4087,"id":2472,"width":24,"height":48},{"x":47,"y":94,"fileNum":4087,"id":2473,"width":24,"height":48},{"x":0,"y":141,"fileNum":4087,"id":2474,"width":24,"height":48},{"x":23,"y":141,"fileNum":4087,"id":2475,"width":24,"height":48},{"x":47,"y":141,"fileNum":4087,"id":2476,"width":24,"height":48},{"x":0,"y":0,"fileNum":4088,"id":2477,"width":24,"height":46},{"x":24,"y":0,"fileNum":4088,"id":2478,"width":24,"height":46},{"x":48,"y":0,"fileNum":4088,"id":2479,"width":24,"height":46},{"x":72,"y":0,"fileNum":4088,"id":2480,"width":24,"height":46},{"x":96,"y":0,"fileNum":4088,"id":2481,"width":24,"height":46},{"x":120,"y":0,"fileNum":4088,"id":2482,"width":24,"height":46},{"x":144,"y":0,"fileNum":4088,"id":2483,"width":24,"height":46},{"x":168,"y":0,"fileNum":4088,"id":2484,"width":24,"height":46},{"x":0,"y":46,"fileNum":4088,"id":2485,"width":24,"height":46},{"x":24,"y":46,"fileNum":4088,"id":2486,"width":24,"height":46},{"x":48,"y":46,"fileNum":4088,"id":2487,"width":24,"height":46},{"x":72,"y":46,"fileNum":4088,"id":2488,"width":24,"height":46},{"x":96,"y":46,"fileNum":4088,"id":2489,"width":24,"height":46},{"x":120,"y":46,"fileNum":4088,"id":2490,"width":24,"height":46},{"x":144,"y":46,"fileNum":4088,"id":2491,"width":24,"height":46},{"x":168,"y":46,"fileNum":4088,"id":2492,"width":24,"height":46},{"x":0,"y":92,"fileNum":4088,"id":2493,"width":24,"height":46},{"x":24,"y":92,"fileNum":4088,"id":2494,"width":24,"height":46},{"x":48,"y":92,"fileNum":4088,"id":2495,"width":24,"height":46},{"x":72,"y":92,"fileNum":4088,"id":2496,"width":24,"height":46},{"x":96,"y":92,"fileNum":4088,"id":2497,"width":24,"height":46},{"x":120,"y":92,"fileNum":4088,"id":2498,"width":24,"height":46},{"x":144,"y":92,"fileNum":4088,"id":2499,"width":24,"height":46},{"x":168,"y":92,"fileNum":4088,"id":2500,"width":24,"height":46},{"x":0,"y":138,"fileNum":4088,"id":2501,"width":24,"height":46},{"x":24,"y":138,"fileNum":4088,"id":2502,"width":24,"height":46},{"x":48,"y":138,"fileNum":4088,"id":2503,"width":24,"height":46},{"x":72,"y":138,"fileNum":4088,"id":2504,"width":24,"height":46},{"x":96,"y":138,"fileNum":4088,"id":2505,"width":24,"height":46},{"x":120,"y":138,"fileNum":4088,"id":2506,"width":24,"height":46},{"x":144,"y":138,"fileNum":4088,"id":2507,"width":24,"height":46},{"x":168,"y":138,"fileNum":4088,"id":2508,"width":24,"height":46},{"x":0,"y":0,"fileNum":167,"id":2509,"width":25,"height":45},{"x":25,"y":0,"fileNum":167,"id":2510,"width":25,"height":45},{"x":50,"y":0,"fileNum":167,"id":2511,"width":25,"height":45},{"x":75,"y":0,"fileNum":167,"id":2512,"width":25,"height":45},{"x":100,"y":0,"fileNum":167,"id":2513,"width":25,"height":45},{"x":125,"y":0,"fileNum":167,"id":2514,"width":25,"height":45},{"x":0,"y":45,"fileNum":167,"id":2515,"width":25,"height":45},{"x":25,"y":45,"fileNum":167,"id":2516,"width":25,"height":45},{"x":50,"y":45,"fileNum":167,"id":2517,"width":25,"height":45},{"x":75,"y":45,"fileNum":167,"id":2518,"width":25,"height":45},{"x":100,"y":45,"fileNum":167,"id":2519,"width":25,"height":45},{"x":125,"y":45,"fileNum":167,"id":2520,"width":25,"height":45},{"x":0,"y":90,"fileNum":167,"id":2521,"width":25,"height":45},{"x":25,"y":90,"fileNum":167,"id":2522,"width":25,"height":45},{"x":50,"y":90,"fileNum":167,"id":2523,"width":25,"height":45},{"x":75,"y":90,"fileNum":167,"id":2524,"width":25,"height":45},{"x":100,"y":90,"fileNum":167,"id":2525,"width":25,"height":45},{"x":0,"y":135,"fileNum":167,"id":2526,"width":25,"height":45},{"x":25,"y":135,"fileNum":167,"id":2527,"width":25,"height":45},{"x":50,"y":135,"fileNum":167,"id":2528,"width":25,"height":45},{"x":75,"y":135,"fileNum":167,"id":2529,"width":25,"height":45},{"x":100,"y":135,"fileNum":167,"id":2530,"width":25,"height":45},{"x":0,"y":0,"fileNum":168,"id":2531,"width":25,"height":45},{"x":25,"y":0,"fileNum":168,"id":2532,"width":25,"height":45},{"x":50,"y":0,"fileNum":168,"id":2533,"width":25,"height":45},{"x":75,"y":0,"fileNum":168,"id":2534,"width":25,"height":45},{"x":100,"y":0,"fileNum":168,"id":2535,"width":25,"height":45},{"x":125,"y":0,"fileNum":168,"id":2536,"width":25,"height":45},{"x":0,"y":45,"fileNum":168,"id":2537,"width":25,"height":45},{"x":25,"y":45,"fileNum":168,"id":2538,"width":25,"height":45},{"x":50,"y":45,"fileNum":168,"id":2539,"width":25,"height":45},{"x":75,"y":45,"fileNum":168,"id":2540,"width":25,"height":45},{"x":100,"y":45,"fileNum":168,"id":2541,"width":25,"height":45},{"x":125,"y":45,"fileNum":168,"id":2542,"width":25,"height":45},{"x":0,"y":90,"fileNum":168,"id":2543,"width":25,"height":45},{"x":25,"y":90,"fileNum":168,"id":2544,"width":25,"height":45},{"x":50,"y":90,"fileNum":168,"id":2545,"width":25,"height":45},{"x":75,"y":90,"fileNum":168,"id":2546,"width":25,"height":45},{"x":100,"y":90,"fileNum":168,"id":2547,"width":25,"height":45},{"x":0,"y":135,"fileNum":168,"id":2548,"width":25,"height":45},{"x":25,"y":135,"fileNum":168,"id":2549,"width":25,"height":45},{"x":50,"y":135,"fileNum":168,"id":2550,"width":25,"height":45},{"x":75,"y":135,"fileNum":168,"id":2551,"width":25,"height":45},{"x":100,"y":135,"fileNum":168,"id":2552,"width":25,"height":45},{"x":0,"y":0,"fileNum":169,"id":2553,"width":25,"height":45},{"x":25,"y":0,"fileNum":169,"id":2554,"width":25,"height":45},{"x":50,"y":0,"fileNum":169,"id":2555,"width":25,"height":45},{"x":75,"y":0,"fileNum":169,"id":2556,"width":25,"height":45},{"x":100,"y":0,"fileNum":169,"id":2557,"width":25,"height":45},{"x":125,"y":0,"fileNum":169,"id":2558,"width":25,"height":45},{"x":0,"y":45,"fileNum":169,"id":2559,"width":25,"height":45},{"x":25,"y":45,"fileNum":169,"id":2560,"width":25,"height":45},{"x":50,"y":45,"fileNum":169,"id":2561,"width":25,"height":45},{"x":75,"y":45,"fileNum":169,"id":2562,"width":25,"height":45},{"x":100,"y":45,"fileNum":169,"id":2563,"width":25,"height":45},{"x":125,"y":45,"fileNum":169,"id":2564,"width":25,"height":45},{"x":0,"y":90,"fileNum":169,"id":2565,"width":25,"height":45},{"x":25,"y":90,"fileNum":169,"id":2566,"width":25,"height":45},{"x":50,"y":90,"fileNum":169,"id":2567,"width":25,"height":45},{"x":75,"y":90,"fileNum":169,"id":2568,"width":25,"height":45},{"x":100,"y":90,"fileNum":169,"id":2569,"width":25,"height":45},{"x":0,"y":135,"fileNum":169,"id":2570,"width":25,"height":45},{"x":25,"y":135,"fileNum":169,"id":2571,"width":25,"height":45},{"x":50,"y":135,"fileNum":169,"id":2572,"width":25,"height":45},{"x":75,"y":135,"fileNum":169,"id":2573,"width":25,"height":45},{"x":100,"y":135,"fileNum":169,"id":2574,"width":25,"height":45},{"x":0,"y":0,"fileNum":170,"id":2575,"width":25,"height":45},{"x":25,"y":0,"fileNum":170,"id":2576,"width":25,"height":45},{"x":50,"y":0,"fileNum":170,"id":2577,"width":25,"height":45},{"x":75,"y":0,"fileNum":170,"id":2578,"width":25,"height":45},{"x":100,"y":0,"fileNum":170,"id":2579,"width":25,"height":45},{"x":125,"y":0,"fileNum":170,"id":2580,"width":25,"height":45},{"x":0,"y":45,"fileNum":170,"id":2581,"width":25,"height":45},{"x":25,"y":45,"fileNum":170,"id":2582,"width":25,"height":45},{"x":50,"y":45,"fileNum":170,"id":2583,"width":25,"height":45},{"x":75,"y":45,"fileNum":170,"id":2584,"width":25,"height":45},{"x":100,"y":45,"fileNum":170,"id":2585,"width":25,"height":45},{"x":125,"y":45,"fileNum":170,"id":2586,"width":25,"height":45},{"x":0,"y":90,"fileNum":170,"id":2587,"width":25,"height":45},{"x":25,"y":90,"fileNum":170,"id":2588,"width":25,"height":45},{"x":50,"y":90,"fileNum":170,"id":2589,"width":25,"height":45},{"x":75,"y":90,"fileNum":170,"id":2590,"width":25,"height":45},{"x":100,"y":90,"fileNum":170,"id":2591,"width":25,"height":45},{"x":0,"y":135,"fileNum":170,"id":2592,"width":25,"height":45},{"x":25,"y":135,"fileNum":170,"id":2593,"width":25,"height":45},{"x":50,"y":135,"fileNum":170,"id":2594,"width":25,"height":45},{"x":75,"y":135,"fileNum":170,"id":2595,"width":25,"height":45},{"x":100,"y":135,"fileNum":170,"id":2596,"width":25,"height":45},{"x":0,"y":0,"fileNum":24000,"id":2597,"width":25,"height":45},{"x":25,"y":0,"fileNum":24000,"id":2598,"width":25,"height":45},{"x":50,"y":0,"fileNum":24000,"id":2599,"width":25,"height":45},{"x":75,"y":0,"fileNum":24000,"id":2600,"width":25,"height":45},{"x":100,"y":0,"fileNum":24000,"id":2601,"width":25,"height":45},{"x":125,"y":0,"fileNum":24000,"id":2602,"width":25,"height":45},{"x":0,"y":45,"fileNum":24000,"id":2603,"width":25,"height":45},{"x":25,"y":45,"fileNum":24000,"id":2604,"width":25,"height":45},{"x":50,"y":45,"fileNum":24000,"id":2605,"width":25,"height":45},{"x":75,"y":45,"fileNum":24000,"id":2606,"width":25,"height":45},{"x":100,"y":45,"fileNum":24000,"id":2607,"width":25,"height":45},{"x":125,"y":45,"fileNum":24000,"id":2608,"width":25,"height":45},{"x":0,"y":90,"fileNum":24000,"id":2609,"width":25,"height":45},{"x":25,"y":90,"fileNum":24000,"id":2610,"width":25,"height":45},{"x":50,"y":90,"fileNum":24000,"id":2611,"width":25,"height":45},{"x":75,"y":90,"fileNum":24000,"id":2612,"width":25,"height":45},{"x":100,"y":90,"fileNum":24000,"id":2613,"width":25,"height":45},{"x":0,"y":135,"fileNum":24000,"id":2614,"width":25,"height":45},{"x":25,"y":135,"fileNum":24000,"id":2615,"width":25,"height":45},{"x":50,"y":135,"fileNum":24000,"id":2616,"width":25,"height":45},{"x":75,"y":135,"fileNum":24000,"id":2617,"width":25,"height":45},{"x":100,"y":135,"fileNum":24000,"id":2618,"width":25,"height":45},{"x":0,"y":0,"fileNum":15055,"id":2619,"width":40,"height":55},{"x":39,"y":9,"fileNum":15055,"id":2620,"width":62,"height":45},{"x":3,"y":58,"fileNum":15055,"id":2621,"width":70,"height":50},{"x":5,"y":110,"fileNum":15055,"id":2622,"width":50,"height":35},{"x":2,"y":145,"fileNum":15055,"id":2623,"width":83,"height":60},{"x":0,"y":205,"fileNum":15055,"id":2624,"width":70,"height":50},{"x":2,"y":254,"fileNum":15055,"id":2625,"width":45,"height":51},{"x":50,"y":256,"fileNum":15055,"id":2626,"width":40,"height":55},{"x":2,"y":308,"fileNum":15055,"id":2627,"width":38,"height":60},{"x":45,"y":315,"fileNum":15055,"id":2628,"width":52,"height":57},{"x":3,"y":370,"fileNum":15055,"id":2629,"width":58,"height":44},{"x":0,"y":0,"fileNum":15070,"id":2630,"width":23,"height":43},{"x":23,"y":0,"fileNum":15070,"id":2631,"width":23,"height":43},{"x":46,"y":0,"fileNum":15070,"id":2632,"width":23,"height":43},{"x":69,"y":0,"fileNum":15070,"id":2633,"width":23,"height":43},{"x":0,"y":0,"fileNum":2110,"id":2635,"width":17,"height":50},{"x":17,"y":0,"fileNum":2110,"id":2636,"width":17,"height":50},{"x":34,"y":0,"fileNum":2110,"id":2637,"width":17,"height":50},{"x":51,"y":0,"fileNum":2110,"id":2638,"width":17,"height":50},{"x":0,"y":0,"fileNum":22072,"id":2639,"width":25,"height":102},{"x":0,"y":0,"fileNum":15229,"id":2640,"width":66,"height":71},{"x":0,"y":0,"fileNum":172,"id":2641,"width":25,"height":45},{"x":25,"y":0,"fileNum":172,"id":2642,"width":25,"height":45},{"x":50,"y":0,"fileNum":172,"id":2643,"width":25,"height":45},{"x":75,"y":0,"fileNum":172,"id":2644,"width":25,"height":45},{"x":100,"y":0,"fileNum":172,"id":2645,"width":25,"height":45},{"x":125,"y":0,"fileNum":172,"id":2646,"width":25,"height":45},{"x":0,"y":45,"fileNum":172,"id":2647,"width":25,"height":45},{"x":25,"y":45,"fileNum":172,"id":2648,"width":25,"height":45},{"x":50,"y":45,"fileNum":172,"id":2649,"width":25,"height":45},{"x":75,"y":45,"fileNum":172,"id":2650,"width":25,"height":45},{"x":100,"y":45,"fileNum":172,"id":2651,"width":25,"height":45},{"x":125,"y":45,"fileNum":172,"id":2652,"width":25,"height":45},{"x":0,"y":90,"fileNum":172,"id":2653,"width":25,"height":45},{"x":25,"y":90,"fileNum":172,"id":2654,"width":25,"height":45},{"x":50,"y":90,"fileNum":172,"id":2655,"width":25,"height":45},{"x":75,"y":90,"fileNum":172,"id":2656,"width":25,"height":45},{"x":100,"y":90,"fileNum":172,"id":2657,"width":25,"height":45},{"x":0,"y":135,"fileNum":172,"id":2658,"width":25,"height":45},{"x":25,"y":135,"fileNum":172,"id":2659,"width":25,"height":45},{"x":50,"y":135,"fileNum":172,"id":2660,"width":25,"height":45},{"x":75,"y":135,"fileNum":172,"id":2661,"width":25,"height":45},{"x":100,"y":135,"fileNum":172,"id":2662,"width":25,"height":45},{"x":0,"y":0,"fileNum":24001,"id":2663,"width":25,"height":45},{"x":25,"y":0,"fileNum":24001,"id":2664,"width":25,"height":45},{"x":50,"y":0,"fileNum":24001,"id":2665,"width":25,"height":45},{"x":75,"y":0,"fileNum":24001,"id":2666,"width":25,"height":45},{"x":100,"y":0,"fileNum":24001,"id":2667,"width":25,"height":45},{"x":125,"y":0,"fileNum":24001,"id":2668,"width":25,"height":45},{"x":0,"y":45,"fileNum":24001,"id":2669,"width":25,"height":45},{"x":25,"y":45,"fileNum":24001,"id":2670,"width":25,"height":45},{"x":50,"y":45,"fileNum":24001,"id":2671,"width":25,"height":45},{"x":75,"y":45,"fileNum":24001,"id":2672,"width":25,"height":45},{"x":100,"y":45,"fileNum":24001,"id":2673,"width":25,"height":45},{"x":125,"y":45,"fileNum":24001,"id":2674,"width":25,"height":45},{"x":0,"y":90,"fileNum":24001,"id":2675,"width":25,"height":45},{"x":25,"y":90,"fileNum":24001,"id":2676,"width":25,"height":45},{"x":50,"y":90,"fileNum":24001,"id":2677,"width":25,"height":45},{"x":75,"y":90,"fileNum":24001,"id":2678,"width":25,"height":45},{"x":100,"y":90,"fileNum":24001,"id":2679,"width":25,"height":45},{"x":0,"y":135,"fileNum":24001,"id":2680,"width":25,"height":45},{"x":25,"y":135,"fileNum":24001,"id":2681,"width":25,"height":45},{"x":50,"y":135,"fileNum":24001,"id":2682,"width":25,"height":45},{"x":75,"y":135,"fileNum":24001,"id":2683,"width":25,"height":45},{"x":100,"y":135,"fileNum":24001,"id":2684,"width":25,"height":45},{"x":0,"y":0,"fileNum":4089,"id":2685,"width":26,"height":46},{"x":25,"y":0,"fileNum":4089,"id":2686,"width":26,"height":46},{"x":50,"y":0,"fileNum":4089,"id":2687,"width":26,"height":46},{"x":74,"y":0,"fileNum":4089,"id":2688,"width":26,"height":46},{"x":98,"y":0,"fileNum":4089,"id":2689,"width":26,"height":46},{"x":123,"y":0,"fileNum":4089,"id":2690,"width":26,"height":46},{"x":0,"y":45,"fileNum":4089,"id":2691,"width":26,"height":46},{"x":25,"y":45,"fileNum":4089,"id":2692,"width":26,"height":46},{"x":50,"y":45,"fileNum":4089,"id":2693,"width":26,"height":46},{"x":74,"y":45,"fileNum":4089,"id":2694,"width":26,"height":46},{"x":98,"y":45,"fileNum":4089,"id":2695,"width":26,"height":46},{"x":123,"y":45,"fileNum":4089,"id":2696,"width":26,"height":46},{"x":0,"y":90,"fileNum":4089,"id":2697,"width":26,"height":46},{"x":25,"y":90,"fileNum":4089,"id":2698,"width":26,"height":46},{"x":50,"y":90,"fileNum":4089,"id":2699,"width":26,"height":46},{"x":74,"y":90,"fileNum":4089,"id":2700,"width":26,"height":46},{"x":98,"y":90,"fileNum":4089,"id":2701,"width":26,"height":46},{"x":123,"y":90,"fileNum":4089,"id":2702,"width":26,"height":46},{"x":0,"y":135,"fileNum":4089,"id":2703,"width":26,"height":46},{"x":25,"y":135,"fileNum":4089,"id":2704,"width":26,"height":46},{"x":50,"y":135,"fileNum":4089,"id":2705,"width":26,"height":46},{"x":74,"y":135,"fileNum":4089,"id":2706,"width":26,"height":46},{"x":98,"y":135,"fileNum":4089,"id":2707,"width":26,"height":46},{"x":123,"y":135,"fileNum":4089,"id":2708,"width":26,"height":46},{"x":0,"y":0,"fileNum":4090,"id":2709,"width":26,"height":46},{"x":25,"y":0,"fileNum":4090,"id":2710,"width":26,"height":46},{"x":50,"y":0,"fileNum":4090,"id":2711,"width":26,"height":46},{"x":0,"y":45,"fileNum":4090,"id":2712,"width":26,"height":46},{"x":25,"y":45,"fileNum":4090,"id":2713,"width":26,"height":46},{"x":50,"y":45,"fileNum":4090,"id":2714,"width":26,"height":46},{"x":0,"y":90,"fileNum":4090,"id":2715,"width":26,"height":46},{"x":25,"y":90,"fileNum":4090,"id":2716,"width":26,"height":46},{"x":50,"y":90,"fileNum":4090,"id":2717,"width":26,"height":46},{"x":0,"y":135,"fileNum":4090,"id":2718,"width":26,"height":46},{"x":25,"y":135,"fileNum":4090,"id":2719,"width":26,"height":46},{"x":50,"y":135,"fileNum":4090,"id":2720,"width":26,"height":46},{"x":0,"y":0,"fileNum":173,"id":2721,"width":25,"height":45},{"x":25,"y":0,"fileNum":173,"id":2722,"width":25,"height":45},{"x":50,"y":0,"fileNum":173,"id":2723,"width":25,"height":45},{"x":75,"y":0,"fileNum":173,"id":2724,"width":25,"height":45},{"x":100,"y":0,"fileNum":173,"id":2725,"width":25,"height":45},{"x":125,"y":0,"fileNum":173,"id":2726,"width":25,"height":45},{"x":0,"y":45,"fileNum":173,"id":2727,"width":25,"height":45},{"x":25,"y":45,"fileNum":173,"id":2728,"width":25,"height":45},{"x":50,"y":45,"fileNum":173,"id":2729,"width":25,"height":45},{"x":75,"y":45,"fileNum":173,"id":2730,"width":25,"height":45},{"x":100,"y":45,"fileNum":173,"id":2731,"width":25,"height":45},{"x":125,"y":45,"fileNum":173,"id":2732,"width":25,"height":45},{"x":0,"y":90,"fileNum":173,"id":2733,"width":25,"height":45},{"x":25,"y":90,"fileNum":173,"id":2734,"width":25,"height":45},{"x":50,"y":90,"fileNum":173,"id":2735,"width":25,"height":45},{"x":75,"y":90,"fileNum":173,"id":2736,"width":25,"height":45},{"x":100,"y":90,"fileNum":173,"id":2737,"width":25,"height":45},{"x":0,"y":135,"fileNum":173,"id":2738,"width":25,"height":45},{"x":25,"y":135,"fileNum":173,"id":2739,"width":25,"height":45},{"x":50,"y":135,"fileNum":173,"id":2740,"width":25,"height":45},{"x":75,"y":135,"fileNum":173,"id":2741,"width":25,"height":45},{"x":100,"y":135,"fileNum":173,"id":2742,"width":25,"height":45},{"x":0,"y":0,"fileNum":4091,"id":2743,"width":26,"height":46},{"x":25,"y":0,"fileNum":4091,"id":2744,"width":26,"height":46},{"x":50,"y":0,"fileNum":4091,"id":2745,"width":26,"height":46},{"x":75,"y":0,"fileNum":4091,"id":2746,"width":26,"height":46},{"x":100,"y":0,"fileNum":4091,"id":2747,"width":26,"height":46},{"x":123,"y":0,"fileNum":4091,"id":2748,"width":26,"height":46},{"x":148,"y":0,"fileNum":4091,"id":2749,"width":26,"height":46},{"x":0,"y":45,"fileNum":4091,"id":2750,"width":26,"height":46},{"x":25,"y":45,"fileNum":4091,"id":2751,"width":26,"height":46},{"x":50,"y":45,"fileNum":4091,"id":2752,"width":26,"height":46},{"x":75,"y":45,"fileNum":4091,"id":2753,"width":26,"height":46},{"x":100,"y":45,"fileNum":4091,"id":2754,"width":26,"height":46},{"x":123,"y":45,"fileNum":4091,"id":2755,"width":26,"height":46},{"x":148,"y":45,"fileNum":4091,"id":2756,"width":26,"height":46},{"x":0,"y":90,"fileNum":4091,"id":2757,"width":26,"height":46},{"x":25,"y":90,"fileNum":4091,"id":2758,"width":26,"height":46},{"x":50,"y":90,"fileNum":4091,"id":2759,"width":26,"height":46},{"x":75,"y":90,"fileNum":4091,"id":2760,"width":26,"height":46},{"x":100,"y":90,"fileNum":4091,"id":2761,"width":26,"height":46},{"x":123,"y":90,"fileNum":4091,"id":2762,"width":26,"height":46},{"x":148,"y":90,"fileNum":4091,"id":2763,"width":26,"height":46},{"x":0,"y":135,"fileNum":4091,"id":2764,"width":26,"height":46},{"x":25,"y":135,"fileNum":4091,"id":2765,"width":26,"height":46},{"x":50,"y":135,"fileNum":4091,"id":2766,"width":26,"height":46},{"x":75,"y":135,"fileNum":4091,"id":2767,"width":26,"height":46},{"x":100,"y":135,"fileNum":4091,"id":2768,"width":26,"height":46},{"x":123,"y":135,"fileNum":4091,"id":2769,"width":26,"height":46},{"x":148,"y":135,"fileNum":4091,"id":2770,"width":26,"height":46},{"x":0,"y":0,"fileNum":174,"id":2771,"width":25,"height":45},{"x":25,"y":0,"fileNum":174,"id":2772,"width":25,"height":45},{"x":50,"y":0,"fileNum":174,"id":2773,"width":25,"height":45},{"x":75,"y":0,"fileNum":174,"id":2774,"width":25,"height":45},{"x":100,"y":0,"fileNum":174,"id":2775,"width":25,"height":45},{"x":125,"y":0,"fileNum":174,"id":2776,"width":25,"height":45},{"x":0,"y":45,"fileNum":174,"id":2777,"width":25,"height":45},{"x":25,"y":45,"fileNum":174,"id":2778,"width":25,"height":45},{"x":50,"y":45,"fileNum":174,"id":2779,"width":25,"height":45},{"x":75,"y":45,"fileNum":174,"id":2780,"width":25,"height":45},{"x":100,"y":45,"fileNum":174,"id":2781,"width":25,"height":45},{"x":125,"y":45,"fileNum":174,"id":2782,"width":25,"height":45},{"x":0,"y":90,"fileNum":174,"id":2783,"width":25,"height":45},{"x":25,"y":90,"fileNum":174,"id":2784,"width":25,"height":45},{"x":50,"y":90,"fileNum":174,"id":2785,"width":25,"height":45},{"x":75,"y":90,"fileNum":174,"id":2786,"width":25,"height":45},{"x":100,"y":90,"fileNum":174,"id":2787,"width":25,"height":45},{"x":0,"y":135,"fileNum":174,"id":2788,"width":25,"height":45},{"x":25,"y":135,"fileNum":174,"id":2789,"width":25,"height":45},{"x":50,"y":135,"fileNum":174,"id":2790,"width":25,"height":45},{"x":75,"y":135,"fileNum":174,"id":2791,"width":25,"height":45},{"x":100,"y":135,"fileNum":174,"id":2792,"width":25,"height":45},{"x":0,"y":0,"fileNum":24002,"id":2793,"width":25,"height":45},{"x":25,"y":0,"fileNum":24002,"id":2794,"width":25,"height":45},{"x":50,"y":0,"fileNum":24002,"id":2795,"width":25,"height":45},{"x":75,"y":0,"fileNum":24002,"id":2796,"width":25,"height":45},{"x":100,"y":0,"fileNum":24002,"id":2797,"width":25,"height":45},{"x":125,"y":0,"fileNum":24002,"id":2798,"width":25,"height":45},{"x":0,"y":45,"fileNum":24002,"id":2799,"width":25,"height":45},{"x":25,"y":45,"fileNum":24002,"id":2800,"width":25,"height":45},{"x":50,"y":45,"fileNum":24002,"id":2801,"width":25,"height":45},{"x":75,"y":45,"fileNum":24002,"id":2802,"width":25,"height":45},{"x":100,"y":45,"fileNum":24002,"id":2803,"width":25,"height":45},{"x":125,"y":45,"fileNum":24002,"id":2804,"width":25,"height":45},{"x":0,"y":90,"fileNum":24002,"id":2805,"width":25,"height":45},{"x":25,"y":90,"fileNum":24002,"id":2806,"width":25,"height":45},{"x":50,"y":90,"fileNum":24002,"id":2807,"width":25,"height":45},{"x":75,"y":90,"fileNum":24002,"id":2808,"width":25,"height":45},{"x":100,"y":90,"fileNum":24002,"id":2809,"width":25,"height":45},{"x":0,"y":135,"fileNum":24002,"id":2810,"width":25,"height":45},{"x":25,"y":135,"fileNum":24002,"id":2811,"width":25,"height":45},{"x":50,"y":135,"fileNum":24002,"id":2812,"width":25,"height":45},{"x":75,"y":135,"fileNum":24002,"id":2813,"width":25,"height":45},{"x":100,"y":135,"fileNum":24002,"id":2814,"width":25,"height":45},{"x":0,"y":0,"fileNum":24003,"id":2815,"width":25,"height":45},{"x":25,"y":0,"fileNum":24003,"id":2816,"width":25,"height":45},{"x":50,"y":0,"fileNum":24003,"id":2817,"width":25,"height":45},{"x":75,"y":0,"fileNum":24003,"id":2818,"width":25,"height":45},{"x":100,"y":0,"fileNum":24003,"id":2819,"width":25,"height":45},{"x":125,"y":0,"fileNum":24003,"id":2820,"width":25,"height":45},{"x":0,"y":45,"fileNum":24003,"id":2821,"width":25,"height":45},{"x":25,"y":45,"fileNum":24003,"id":2822,"width":25,"height":45},{"x":50,"y":45,"fileNum":24003,"id":2823,"width":25,"height":45},{"x":75,"y":45,"fileNum":24003,"id":2824,"width":25,"height":45},{"x":100,"y":45,"fileNum":24003,"id":2825,"width":25,"height":45},{"x":125,"y":45,"fileNum":24003,"id":2826,"width":25,"height":45},{"x":0,"y":90,"fileNum":24003,"id":2827,"width":25,"height":45},{"x":25,"y":90,"fileNum":24003,"id":2828,"width":25,"height":45},{"x":50,"y":90,"fileNum":24003,"id":2829,"width":25,"height":45},{"x":75,"y":90,"fileNum":24003,"id":2830,"width":25,"height":45},{"x":100,"y":90,"fileNum":24003,"id":2831,"width":25,"height":45},{"x":0,"y":135,"fileNum":24003,"id":2832,"width":25,"height":45},{"x":25,"y":135,"fileNum":24003,"id":2833,"width":25,"height":45},{"x":50,"y":135,"fileNum":24003,"id":2834,"width":25,"height":45},{"x":75,"y":135,"fileNum":24003,"id":2835,"width":25,"height":45},{"x":100,"y":135,"fileNum":24003,"id":2836,"width":25,"height":45},{"x":0,"y":0,"fileNum":4092,"id":2837,"width":99,"height":50},{"x":99,"y":0,"fileNum":4092,"id":2838,"width":99,"height":50},{"x":198,"y":0,"fileNum":4092,"id":2839,"width":99,"height":50},{"x":297,"y":0,"fileNum":4092,"id":2840,"width":99,"height":50},{"x":396,"y":0,"fileNum":4092,"id":2841,"width":99,"height":50},{"x":495,"y":0,"fileNum":4092,"id":2842,"width":99,"height":50},{"x":0,"y":50,"fileNum":4092,"id":2843,"width":99,"height":50},{"x":99,"y":50,"fileNum":4092,"id":2844,"width":99,"height":50},{"x":198,"y":50,"fileNum":4092,"id":2845,"width":99,"height":50},{"x":297,"y":50,"fileNum":4092,"id":2846,"width":99,"height":50},{"x":396,"y":50,"fileNum":4092,"id":2847,"width":99,"height":50},{"x":495,"y":50,"fileNum":4092,"id":2848,"width":99,"height":50},{"x":0,"y":100,"fileNum":4092,"id":2849,"width":99,"height":50},{"x":99,"y":100,"fileNum":4092,"id":2850,"width":99,"height":50},{"x":198,"y":100,"fileNum":4092,"id":2851,"width":99,"height":50},{"x":297,"y":100,"fileNum":4092,"id":2852,"width":99,"height":50},{"x":396,"y":100,"fileNum":4092,"id":2853,"width":99,"height":50},{"x":495,"y":100,"fileNum":4092,"id":2854,"width":99,"height":50},{"x":0,"y":150,"fileNum":4092,"id":2855,"width":99,"height":50},{"x":99,"y":150,"fileNum":4092,"id":2856,"width":99,"height":50},{"x":198,"y":150,"fileNum":4092,"id":2857,"width":99,"height":50},{"x":297,"y":150,"fileNum":4092,"id":2858,"width":99,"height":50},{"x":396,"y":150,"fileNum":4092,"id":2859,"width":99,"height":50},{"x":495,"y":150,"fileNum":4092,"id":2860,"width":99,"height":50},{"x":0,"y":0,"fileNum":4093,"id":2861,"width":54,"height":35},{"x":52,"y":0,"fileNum":4093,"id":2862,"width":54,"height":35},{"x":106,"y":0,"fileNum":4093,"id":2863,"width":54,"height":35},{"x":159,"y":0,"fileNum":4093,"id":2864,"width":54,"height":35},{"x":0,"y":34,"fileNum":4093,"id":2865,"width":54,"height":35},{"x":52,"y":34,"fileNum":4093,"id":2866,"width":54,"height":35},{"x":106,"y":34,"fileNum":4093,"id":2867,"width":54,"height":35},{"x":159,"y":34,"fileNum":4093,"id":2868,"width":54,"height":35},{"x":0,"y":69,"fileNum":4093,"id":2869,"width":54,"height":35},{"x":52,"y":69,"fileNum":4093,"id":2870,"width":54,"height":35},{"x":106,"y":69,"fileNum":4093,"id":2871,"width":54,"height":35},{"x":159,"y":69,"fileNum":4093,"id":2872,"width":54,"height":35},{"x":0,"y":104,"fileNum":4093,"id":2873,"width":54,"height":35},{"x":52,"y":104,"fileNum":4093,"id":2874,"width":54,"height":35},{"x":106,"y":104,"fileNum":4093,"id":2875,"width":54,"height":35},{"x":159,"y":104,"fileNum":4093,"id":2876,"width":54,"height":35},{"x":0,"y":0,"fileNum":4094,"id":2877,"width":60,"height":50},{"x":59,"y":0,"fileNum":4094,"id":2878,"width":60,"height":50},{"x":118,"y":0,"fileNum":4094,"id":2879,"width":60,"height":50},{"x":177,"y":0,"fileNum":4094,"id":2880,"width":60,"height":50},{"x":236,"y":0,"fileNum":4094,"id":2881,"width":60,"height":50},{"x":295,"y":0,"fileNum":4094,"id":2882,"width":60,"height":50},{"x":354,"y":0,"fileNum":4094,"id":2883,"width":60,"height":50},{"x":413,"y":0,"fileNum":4094,"id":2884,"width":60,"height":50},{"x":0,"y":49,"fileNum":4094,"id":2885,"width":60,"height":50},{"x":59,"y":49,"fileNum":4094,"id":2886,"width":60,"height":50},{"x":118,"y":49,"fileNum":4094,"id":2887,"width":60,"height":50},{"x":177,"y":49,"fileNum":4094,"id":2888,"width":60,"height":50},{"x":236,"y":49,"fileNum":4094,"id":2889,"width":60,"height":50},{"x":295,"y":49,"fileNum":4094,"id":2890,"width":60,"height":50},{"x":354,"y":49,"fileNum":4094,"id":2891,"width":60,"height":50},{"x":413,"y":49,"fileNum":4094,"id":2892,"width":60,"height":50},{"x":0,"y":98,"fileNum":4094,"id":2893,"width":60,"height":50},{"x":59,"y":98,"fileNum":4094,"id":2894,"width":60,"height":50},{"x":118,"y":98,"fileNum":4094,"id":2895,"width":60,"height":50},{"x":177,"y":98,"fileNum":4094,"id":2896,"width":60,"height":50},{"x":236,"y":98,"fileNum":4094,"id":2897,"width":60,"height":50},{"x":295,"y":98,"fileNum":4094,"id":2898,"width":60,"height":50},{"x":354,"y":98,"fileNum":4094,"id":2899,"width":60,"height":50},{"x":413,"y":98,"fileNum":4094,"id":2900,"width":60,"height":50},{"x":0,"y":147,"fileNum":4094,"id":2901,"width":60,"height":50},{"x":59,"y":147,"fileNum":4094,"id":2902,"width":60,"height":50},{"x":118,"y":147,"fileNum":4094,"id":2903,"width":60,"height":50},{"x":177,"y":147,"fileNum":4094,"id":2904,"width":60,"height":50},{"x":236,"y":147,"fileNum":4094,"id":2905,"width":60,"height":50},{"x":295,"y":147,"fileNum":4094,"id":2906,"width":60,"height":50},{"x":354,"y":147,"fileNum":4094,"id":2907,"width":60,"height":50},{"x":413,"y":147,"fileNum":4094,"id":2908,"width":60,"height":50},{"x":0,"y":0,"fileNum":175,"id":2909,"width":25,"height":45},{"x":25,"y":0,"fileNum":175,"id":2910,"width":25,"height":45},{"x":50,"y":0,"fileNum":175,"id":2911,"width":25,"height":45},{"x":75,"y":0,"fileNum":175,"id":2912,"width":25,"height":45},{"x":100,"y":0,"fileNum":175,"id":2913,"width":25,"height":45},{"x":125,"y":0,"fileNum":175,"id":2914,"width":25,"height":45},{"x":0,"y":45,"fileNum":175,"id":2915,"width":25,"height":45},{"x":25,"y":45,"fileNum":175,"id":2916,"width":25,"height":45},{"x":50,"y":45,"fileNum":175,"id":2917,"width":25,"height":45},{"x":75,"y":45,"fileNum":175,"id":2918,"width":25,"height":45},{"x":100,"y":45,"fileNum":175,"id":2919,"width":25,"height":45},{"x":125,"y":45,"fileNum":175,"id":2920,"width":25,"height":45},{"x":0,"y":90,"fileNum":175,"id":2921,"width":25,"height":45},{"x":25,"y":90,"fileNum":175,"id":2922,"width":25,"height":45},{"x":50,"y":90,"fileNum":175,"id":2923,"width":25,"height":45},{"x":75,"y":90,"fileNum":175,"id":2924,"width":25,"height":45},{"x":100,"y":90,"fileNum":175,"id":2925,"width":25,"height":45},{"x":0,"y":135,"fileNum":175,"id":2926,"width":25,"height":45},{"x":25,"y":135,"fileNum":175,"id":2927,"width":25,"height":45},{"x":50,"y":135,"fileNum":175,"id":2928,"width":25,"height":45},{"x":75,"y":135,"fileNum":175,"id":2929,"width":25,"height":45},{"x":100,"y":135,"fileNum":175,"id":2930,"width":25,"height":45},{"x":0,"y":0,"fileNum":176,"id":2931,"width":25,"height":45},{"x":25,"y":0,"fileNum":176,"id":2932,"width":25,"height":45},{"x":50,"y":0,"fileNum":176,"id":2933,"width":25,"height":45},{"x":75,"y":0,"fileNum":176,"id":2934,"width":25,"height":45},{"x":100,"y":0,"fileNum":176,"id":2935,"width":25,"height":45},{"x":125,"y":0,"fileNum":176,"id":2936,"width":25,"height":45},{"x":0,"y":45,"fileNum":176,"id":2937,"width":25,"height":45},{"x":25,"y":45,"fileNum":176,"id":2938,"width":25,"height":45},{"x":50,"y":45,"fileNum":176,"id":2939,"width":25,"height":45},{"x":75,"y":45,"fileNum":176,"id":2940,"width":25,"height":45},{"x":100,"y":45,"fileNum":176,"id":2941,"width":25,"height":45},{"x":125,"y":45,"fileNum":176,"id":2942,"width":25,"height":45},{"x":0,"y":90,"fileNum":176,"id":2943,"width":25,"height":45},{"x":25,"y":90,"fileNum":176,"id":2944,"width":25,"height":45},{"x":50,"y":90,"fileNum":176,"id":2945,"width":25,"height":45},{"x":75,"y":90,"fileNum":176,"id":2946,"width":25,"height":45},{"x":100,"y":90,"fileNum":176,"id":2947,"width":25,"height":45},{"x":0,"y":135,"fileNum":176,"id":2948,"width":25,"height":45},{"x":25,"y":135,"fileNum":176,"id":2949,"width":25,"height":45},{"x":50,"y":135,"fileNum":176,"id":2950,"width":25,"height":45},{"x":75,"y":135,"fileNum":176,"id":2951,"width":25,"height":45},{"x":100,"y":135,"fileNum":176,"id":2952,"width":25,"height":45},{"x":0,"y":0,"fileNum":177,"id":2953,"width":25,"height":45},{"x":25,"y":0,"fileNum":177,"id":2954,"width":25,"height":45},{"x":50,"y":0,"fileNum":177,"id":2955,"width":25,"height":45},{"x":75,"y":0,"fileNum":177,"id":2956,"width":25,"height":45},{"x":100,"y":0,"fileNum":177,"id":2957,"width":25,"height":45},{"x":125,"y":0,"fileNum":177,"id":2958,"width":25,"height":45},{"x":0,"y":45,"fileNum":177,"id":2959,"width":25,"height":45},{"x":25,"y":45,"fileNum":177,"id":2960,"width":25,"height":45},{"x":50,"y":45,"fileNum":177,"id":2961,"width":25,"height":45},{"x":75,"y":45,"fileNum":177,"id":2962,"width":25,"height":45},{"x":100,"y":45,"fileNum":177,"id":2963,"width":25,"height":45},{"x":125,"y":45,"fileNum":177,"id":2964,"width":25,"height":45},{"x":0,"y":90,"fileNum":177,"id":2965,"width":25,"height":45},{"x":25,"y":90,"fileNum":177,"id":2966,"width":25,"height":45},{"x":50,"y":90,"fileNum":177,"id":2967,"width":25,"height":45},{"x":75,"y":90,"fileNum":177,"id":2968,"width":25,"height":45},{"x":100,"y":90,"fileNum":177,"id":2969,"width":25,"height":45},{"x":0,"y":135,"fileNum":177,"id":2970,"width":25,"height":45},{"x":25,"y":135,"fileNum":177,"id":2971,"width":25,"height":45},{"x":50,"y":135,"fileNum":177,"id":2972,"width":25,"height":45},{"x":75,"y":135,"fileNum":177,"id":2973,"width":25,"height":45},{"x":100,"y":135,"fileNum":177,"id":2974,"width":25,"height":45},{"x":0,"y":0,"fileNum":178,"id":2975,"width":25,"height":45},{"x":25,"y":0,"fileNum":178,"id":2976,"width":25,"height":45},{"x":50,"y":0,"fileNum":178,"id":2977,"width":25,"height":45},{"x":75,"y":0,"fileNum":178,"id":2978,"width":25,"height":45},{"x":100,"y":0,"fileNum":178,"id":2979,"width":25,"height":45},{"x":125,"y":0,"fileNum":178,"id":2980,"width":25,"height":45},{"x":0,"y":45,"fileNum":178,"id":2981,"width":25,"height":45},{"x":25,"y":45,"fileNum":178,"id":2982,"width":25,"height":45},{"x":50,"y":45,"fileNum":178,"id":2983,"width":25,"height":45},{"x":75,"y":45,"fileNum":178,"id":2984,"width":25,"height":45},{"x":100,"y":45,"fileNum":178,"id":2985,"width":25,"height":45},{"x":125,"y":45,"fileNum":178,"id":2986,"width":25,"height":45},{"x":0,"y":90,"fileNum":178,"id":2987,"width":25,"height":45},{"x":25,"y":90,"fileNum":178,"id":2988,"width":25,"height":45},{"x":50,"y":90,"fileNum":178,"id":2989,"width":25,"height":45},{"x":75,"y":90,"fileNum":178,"id":2990,"width":25,"height":45},{"x":100,"y":90,"fileNum":178,"id":2991,"width":25,"height":45},{"x":0,"y":0,"fileNum":2111,"id":2992,"width":17,"height":50},{"x":17,"y":0,"fileNum":2111,"id":2993,"width":17,"height":50},{"x":34,"y":0,"fileNum":2111,"id":2994,"width":17,"height":50},{"x":51,"y":0,"fileNum":2111,"id":2995,"width":17,"height":50},{"x":0,"y":0,"fileNum":2062,"id":2996,"width":17,"height":50},{"x":17,"y":0,"fileNum":2062,"id":2997,"width":17,"height":50},{"x":34,"y":0,"fileNum":2062,"id":2998,"width":17,"height":50},{"x":51,"y":0,"fileNum":2062,"id":2999,"width":17,"height":50},{"x":0,"y":0,"fileNum":2053,"id":3000,"width":17,"height":50},{"x":17,"y":0,"fileNum":2053,"id":3001,"width":17,"height":50},{"x":34,"y":0,"fileNum":2053,"id":3002,"width":17,"height":50},{"x":51,"y":0,"fileNum":2053,"id":3003,"width":17,"height":50},{"x":0,"y":0,"fileNum":2043,"id":3004,"width":17,"height":50},{"x":17,"y":0,"fileNum":2043,"id":3005,"width":17,"height":50},{"x":34,"y":0,"fileNum":2043,"id":3006,"width":17,"height":50},{"x":51,"y":0,"fileNum":2043,"id":3007,"width":17,"height":50},{"x":0,"y":0,"fileNum":2045,"id":3008,"width":17,"height":50},{"x":17,"y":0,"fileNum":2045,"id":3009,"width":17,"height":50},{"x":34,"y":0,"fileNum":2045,"id":3010,"width":17,"height":50},{"x":51,"y":0,"fileNum":2045,"id":3011,"width":17,"height":50},{"x":0,"y":0,"fileNum":2050,"id":3012,"width":17,"height":50},{"x":17,"y":0,"fileNum":2050,"id":3013,"width":17,"height":50},{"x":34,"y":0,"fileNum":2050,"id":3014,"width":17,"height":50},{"x":51,"y":0,"fileNum":2050,"id":3015,"width":17,"height":50},{"x":0,"y":0,"fileNum":2052,"id":3016,"width":17,"height":50},{"x":17,"y":0,"fileNum":2052,"id":3017,"width":17,"height":50},{"x":34,"y":0,"fileNum":2052,"id":3018,"width":17,"height":50},{"x":51,"y":0,"fileNum":2052,"id":3019,"width":17,"height":50},{"x":0,"y":0,"fileNum":2063,"id":3020,"width":17,"height":50},{"x":17,"y":0,"fileNum":2063,"id":3021,"width":17,"height":50},{"x":34,"y":0,"fileNum":2063,"id":3022,"width":17,"height":50},{"x":51,"y":0,"fileNum":2063,"id":3023,"width":17,"height":50},{"x":0,"y":0,"fileNum":2066,"id":3024,"width":17,"height":50},{"x":17,"y":0,"fileNum":2066,"id":3025,"width":17,"height":50},{"x":34,"y":0,"fileNum":2066,"id":3026,"width":17,"height":50},{"x":51,"y":0,"fileNum":2066,"id":3027,"width":17,"height":50},{"x":0,"y":0,"fileNum":2068,"id":3028,"width":17,"height":50},{"x":17,"y":0,"fileNum":2068,"id":3029,"width":17,"height":50},{"x":34,"y":0,"fileNum":2068,"id":3030,"width":17,"height":50},{"x":51,"y":0,"fileNum":2068,"id":3031,"width":17,"height":50},{"x":0,"y":0,"fileNum":2074,"id":3032,"width":17,"height":50},{"x":17,"y":0,"fileNum":2074,"id":3033,"width":17,"height":50},{"x":34,"y":0,"fileNum":2074,"id":3034,"width":17,"height":50},{"x":51,"y":0,"fileNum":2074,"id":3035,"width":17,"height":50},{"x":0,"y":0,"fileNum":2085,"id":3036,"width":17,"height":50},{"x":17,"y":0,"fileNum":2085,"id":3037,"width":17,"height":50},{"x":34,"y":0,"fileNum":2085,"id":3038,"width":17,"height":50},{"x":51,"y":0,"fileNum":2085,"id":3039,"width":17,"height":50},{"x":0,"y":0,"fileNum":2087,"id":3040,"width":17,"height":50},{"x":17,"y":0,"fileNum":2087,"id":3041,"width":17,"height":50},{"x":34,"y":0,"fileNum":2087,"id":3042,"width":17,"height":50},{"x":51,"y":0,"fileNum":2087,"id":3043,"width":17,"height":50},{"x":0,"y":0,"fileNum":2088,"id":3044,"width":17,"height":50},{"x":17,"y":0,"fileNum":2088,"id":3045,"width":17,"height":50},{"x":34,"y":0,"fileNum":2088,"id":3046,"width":17,"height":50},{"x":51,"y":0,"fileNum":2088,"id":3047,"width":17,"height":50},{"x":0,"y":0,"fileNum":2089,"id":3048,"width":17,"height":50},{"x":17,"y":0,"fileNum":2089,"id":3049,"width":17,"height":50},{"x":34,"y":0,"fileNum":2089,"id":3050,"width":17,"height":50},{"x":51,"y":0,"fileNum":2089,"id":3051,"width":17,"height":50},{"x":0,"y":0,"fileNum":2091,"id":3052,"width":17,"height":50},{"x":17,"y":0,"fileNum":2091,"id":3053,"width":17,"height":50},{"x":34,"y":0,"fileNum":2091,"id":3054,"width":17,"height":50},{"x":51,"y":0,"fileNum":2091,"id":3055,"width":17,"height":50},{"x":0,"y":0,"fileNum":17007,"id":3056,"width":97,"height":67},{"x":97,"y":0,"fileNum":17007,"id":3057,"width":97,"height":67},{"x":194,"y":0,"fileNum":17007,"id":3058,"width":97,"height":67},{"x":291,"y":0,"fileNum":17007,"id":3059,"width":97,"height":67},{"x":0,"y":67,"fileNum":17007,"id":3060,"width":97,"height":67},{"x":97,"y":67,"fileNum":17007,"id":3061,"width":97,"height":67},{"x":194,"y":67,"fileNum":17007,"id":3062,"width":97,"height":67},{"x":291,"y":67,"fileNum":17007,"id":3063,"width":97,"height":67},{"x":0,"y":134,"fileNum":17007,"id":3064,"width":65,"height":97},{"x":65,"y":134,"fileNum":17007,"id":3065,"width":65,"height":97},{"x":130,"y":134,"fileNum":17007,"id":3066,"width":65,"height":97},{"x":195,"y":134,"fileNum":17007,"id":3067,"width":65,"height":97},{"x":0,"y":231,"fileNum":17007,"id":3068,"width":65,"height":99},{"x":65,"y":231,"fileNum":17007,"id":3069,"width":65,"height":99},{"x":130,"y":231,"fileNum":17007,"id":3070,"width":65,"height":99},{"x":195,"y":231,"fileNum":17007,"id":3071,"width":65,"height":99},{"x":0,"y":0,"fileNum":104,"id":3076,"width":25,"height":45},{"x":25,"y":0,"fileNum":104,"id":3077,"width":25,"height":45},{"x":50,"y":0,"fileNum":104,"id":3078,"width":25,"height":45},{"x":75,"y":0,"fileNum":104,"id":3079,"width":25,"height":45},{"x":100,"y":0,"fileNum":104,"id":3080,"width":25,"height":45},{"x":125,"y":0,"fileNum":104,"id":3081,"width":25,"height":45},{"x":0,"y":45,"fileNum":104,"id":3082,"width":25,"height":45},{"x":25,"y":45,"fileNum":104,"id":3083,"width":25,"height":45},{"x":50,"y":45,"fileNum":104,"id":3084,"width":25,"height":45},{"x":75,"y":45,"fileNum":104,"id":3085,"width":25,"height":45},{"x":100,"y":45,"fileNum":104,"id":3086,"width":25,"height":45},{"x":125,"y":45,"fileNum":104,"id":3087,"width":25,"height":45},{"x":0,"y":90,"fileNum":104,"id":3088,"width":25,"height":45},{"x":25,"y":90,"fileNum":104,"id":3089,"width":25,"height":45},{"x":50,"y":90,"fileNum":104,"id":3090,"width":25,"height":45},{"x":75,"y":90,"fileNum":104,"id":3091,"width":25,"height":45},{"x":100,"y":90,"fileNum":104,"id":3092,"width":25,"height":45},{"x":0,"y":135,"fileNum":104,"id":3093,"width":25,"height":45},{"x":25,"y":135,"fileNum":104,"id":3094,"width":25,"height":45},{"x":50,"y":135,"fileNum":104,"id":3095,"width":25,"height":45},{"x":75,"y":135,"fileNum":104,"id":3096,"width":25,"height":45},{"x":100,"y":135,"fileNum":104,"id":3097,"width":25,"height":45},{"x":0,"y":0,"fileNum":104,"id":3098,"width":25,"height":45},{"x":0,"y":0,"fileNum":104,"id":3099,"width":25,"height":45},{"x":0,"y":0,"fileNum":104,"id":3100,"width":25,"height":45},{"x":0,"y":0,"fileNum":2048,"id":3101,"width":17,"height":50},{"x":17,"y":0,"fileNum":2048,"id":3102,"width":17,"height":50},{"x":34,"y":0,"fileNum":2048,"id":3103,"width":17,"height":50},{"x":51,"y":0,"fileNum":2048,"id":3104,"width":17,"height":50},{"x":0,"y":0,"fileNum":2055,"id":3105,"width":17,"height":50},{"x":17,"y":0,"fileNum":2055,"id":3106,"width":17,"height":50},{"x":34,"y":0,"fileNum":2055,"id":3107,"width":17,"height":50},{"x":51,"y":0,"fileNum":2055,"id":3108,"width":17,"height":50},{"x":0,"y":0,"fileNum":2065,"id":3109,"width":17,"height":16},{"x":17,"y":0,"fileNum":2065,"id":3110,"width":17,"height":16},{"x":34,"y":0,"fileNum":2065,"id":3111,"width":17,"height":16},{"x":51,"y":0,"fileNum":2065,"id":3112,"width":17,"height":16},{"x":0,"y":0,"fileNum":2076,"id":3113,"width":17,"height":50},{"x":17,"y":0,"fileNum":2076,"id":3114,"width":17,"height":50},{"x":34,"y":0,"fileNum":2076,"id":3115,"width":17,"height":50},{"x":51,"y":0,"fileNum":2076,"id":3116,"width":17,"height":50},{"x":0,"y":0,"fileNum":2077,"id":3117,"width":17,"height":50},{"x":17,"y":0,"fileNum":2077,"id":3118,"width":17,"height":50},{"x":34,"y":0,"fileNum":2077,"id":3119,"width":17,"height":50},{"x":51,"y":0,"fileNum":2077,"id":3120,"width":17,"height":50},{"x":0,"y":0,"fileNum":2082,"id":3121,"width":17,"height":50},{"x":17,"y":0,"fileNum":2082,"id":3122,"width":17,"height":50},{"x":34,"y":0,"fileNum":2082,"id":3123,"width":17,"height":50},{"x":51,"y":0,"fileNum":2082,"id":3124,"width":17,"height":50},{"x":0,"y":0,"fileNum":2084,"id":3125,"width":17,"height":50},{"x":17,"y":0,"fileNum":2084,"id":3126,"width":17,"height":50},{"x":34,"y":0,"fileNum":2084,"id":3127,"width":17,"height":50},{"x":51,"y":0,"fileNum":2084,"id":3128,"width":17,"height":50},{"x":0,"y":0,"fileNum":77,"id":3129,"width":25,"height":45},{"x":25,"y":0,"fileNum":77,"id":3130,"width":25,"height":45},{"x":50,"y":0,"fileNum":77,"id":3131,"width":25,"height":45},{"x":75,"y":0,"fileNum":77,"id":3132,"width":25,"height":45},{"x":100,"y":0,"fileNum":77,"id":3133,"width":25,"height":45},{"x":125,"y":0,"fileNum":77,"id":3134,"width":25,"height":45},{"x":0,"y":45,"fileNum":77,"id":3135,"width":25,"height":45},{"x":25,"y":45,"fileNum":77,"id":3136,"width":25,"height":45},{"x":50,"y":45,"fileNum":77,"id":3137,"width":25,"height":45},{"x":75,"y":45,"fileNum":77,"id":3138,"width":25,"height":45},{"x":100,"y":45,"fileNum":77,"id":3139,"width":25,"height":45},{"x":125,"y":45,"fileNum":77,"id":3140,"width":25,"height":45},{"x":0,"y":90,"fileNum":77,"id":3141,"width":25,"height":45},{"x":25,"y":90,"fileNum":77,"id":3142,"width":25,"height":45},{"x":50,"y":90,"fileNum":77,"id":3143,"width":25,"height":45},{"x":75,"y":90,"fileNum":77,"id":3144,"width":25,"height":45},{"x":100,"y":90,"fileNum":77,"id":3145,"width":25,"height":45},{"x":0,"y":135,"fileNum":77,"id":3146,"width":25,"height":45},{"x":25,"y":135,"fileNum":77,"id":3147,"width":25,"height":45},{"x":50,"y":135,"fileNum":77,"id":3148,"width":25,"height":45},{"x":75,"y":135,"fileNum":77,"id":3149,"width":25,"height":45},{"x":100,"y":135,"fileNum":77,"id":3150,"width":25,"height":45},{"x":0,"y":0,"fileNum":76,"id":3155,"width":32,"height":32},{"x":0,"y":0,"fileNum":78,"id":3156,"width":32,"height":32},{"x":0,"y":0,"fileNum":79,"id":3157,"width":25,"height":45},{"x":25,"y":0,"fileNum":79,"id":3158,"width":25,"height":45},{"x":50,"y":0,"fileNum":79,"id":3159,"width":25,"height":45},{"x":75,"y":0,"fileNum":79,"id":3160,"width":25,"height":45},{"x":100,"y":0,"fileNum":79,"id":3161,"width":25,"height":45},{"x":125,"y":0,"fileNum":79,"id":3162,"width":25,"height":45},{"x":0,"y":45,"fileNum":79,"id":3163,"width":25,"height":45},{"x":25,"y":45,"fileNum":79,"id":3164,"width":25,"height":45},{"x":50,"y":45,"fileNum":79,"id":3165,"width":25,"height":45},{"x":75,"y":45,"fileNum":79,"id":3166,"width":25,"height":45},{"x":100,"y":45,"fileNum":79,"id":3167,"width":25,"height":45},{"x":125,"y":45,"fileNum":79,"id":3168,"width":25,"height":45},{"x":0,"y":90,"fileNum":79,"id":3169,"width":25,"height":45},{"x":25,"y":90,"fileNum":79,"id":3170,"width":25,"height":45},{"x":50,"y":90,"fileNum":79,"id":3171,"width":25,"height":45},{"x":75,"y":90,"fileNum":79,"id":3172,"width":25,"height":45},{"x":100,"y":90,"fileNum":79,"id":3173,"width":25,"height":45},{"x":0,"y":135,"fileNum":79,"id":3174,"width":25,"height":45},{"x":25,"y":135,"fileNum":79,"id":3175,"width":25,"height":45},{"x":50,"y":135,"fileNum":79,"id":3176,"width":25,"height":45},{"x":75,"y":135,"fileNum":79,"id":3177,"width":25,"height":45},{"x":100,"y":135,"fileNum":79,"id":3178,"width":25,"height":45},{"x":0,"y":0,"fileNum":15200,"id":3187,"width":55,"height":134},{"x":114,"y":0,"fileNum":15200,"id":3188,"width":55,"height":134},{"x":171,"y":0,"fileNum":15200,"id":3189,"width":55,"height":134},{"x":228,"y":0,"fileNum":15200,"id":3190,"width":55,"height":134},{"x":285,"y":0,"fileNum":15200,"id":3191,"width":55,"height":134},{"x":342,"y":0,"fileNum":15200,"id":3192,"width":55,"height":134},{"x":399,"y":0,"fileNum":15200,"id":3193,"width":55,"height":134},{"x":456,"y":0,"fileNum":15200,"id":3194,"width":55,"height":134},{"x":513,"y":0,"fileNum":15200,"id":3195,"width":55,"height":134},{"x":570,"y":0,"fileNum":15200,"id":3196,"width":55,"height":134},{"x":0,"y":0,"fileNum":2112,"id":3198,"width":17,"height":50},{"x":17,"y":0,"fileNum":2112,"id":3199,"width":17,"height":50},{"x":34,"y":0,"fileNum":2112,"id":3200,"width":17,"height":50},{"x":51,"y":0,"fileNum":2112,"id":3201,"width":17,"height":50},{"x":0,"y":0,"fileNum":2042,"id":3202,"width":17,"height":50},{"x":17,"y":0,"fileNum":2042,"id":3203,"width":17,"height":50},{"x":34,"y":0,"fileNum":2042,"id":3204,"width":17,"height":50},{"x":51,"y":0,"fileNum":2042,"id":3205,"width":17,"height":50},{"x":0,"y":0,"fileNum":2057,"id":3206,"width":17,"height":50},{"x":17,"y":0,"fileNum":2057,"id":3207,"width":17,"height":50},{"x":34,"y":0,"fileNum":2057,"id":3208,"width":17,"height":50},{"x":51,"y":0,"fileNum":2057,"id":3209,"width":17,"height":50},{"x":0,"y":0,"fileNum":2078,"id":3210,"width":17,"height":50},{"x":17,"y":0,"fileNum":2078,"id":3211,"width":17,"height":50},{"x":34,"y":0,"fileNum":2078,"id":3212,"width":17,"height":50},{"x":51,"y":0,"fileNum":2078,"id":3213,"width":17,"height":50},{"x":0,"y":0,"fileNum":2079,"id":3214,"width":17,"height":50},{"x":17,"y":0,"fileNum":2079,"id":3215,"width":17,"height":50},{"x":34,"y":0,"fileNum":2079,"id":3216,"width":17,"height":50},{"x":51,"y":0,"fileNum":2079,"id":3217,"width":17,"height":50},{"x":0,"y":0,"fileNum":2080,"id":3218,"width":17,"height":50},{"x":17,"y":0,"fileNum":2080,"id":3219,"width":17,"height":50},{"x":34,"y":0,"fileNum":2080,"id":3220,"width":17,"height":50},{"x":51,"y":0,"fileNum":2080,"id":3221,"width":17,"height":50},{"x":0,"y":0,"fileNum":2081,"id":3222,"width":17,"height":50},{"x":17,"y":0,"fileNum":2081,"id":3223,"width":17,"height":50},{"x":34,"y":0,"fileNum":2081,"id":3224,"width":17,"height":50},{"x":51,"y":0,"fileNum":2081,"id":3225,"width":17,"height":50},{"x":0,"y":0,"fileNum":80,"id":3226,"width":32,"height":32},{"x":0,"y":0,"fileNum":81,"id":3227,"width":25,"height":45},{"x":25,"y":0,"fileNum":81,"id":3228,"width":25,"height":45},{"x":50,"y":0,"fileNum":81,"id":3229,"width":25,"height":45},{"x":75,"y":0,"fileNum":81,"id":3230,"width":25,"height":45},{"x":100,"y":0,"fileNum":81,"id":3231,"width":25,"height":45},{"x":125,"y":0,"fileNum":81,"id":3232,"width":25,"height":45},{"x":0,"y":45,"fileNum":81,"id":3233,"width":25,"height":45},{"x":25,"y":45,"fileNum":81,"id":3234,"width":25,"height":45},{"x":50,"y":45,"fileNum":81,"id":3235,"width":25,"height":45},{"x":75,"y":45,"fileNum":81,"id":3236,"width":25,"height":45},{"x":100,"y":45,"fileNum":81,"id":3237,"width":25,"height":45},{"x":125,"y":45,"fileNum":81,"id":3238,"width":25,"height":45},{"x":0,"y":90,"fileNum":81,"id":3239,"width":25,"height":45},{"x":25,"y":90,"fileNum":81,"id":3240,"width":25,"height":45},{"x":50,"y":90,"fileNum":81,"id":3241,"width":25,"height":45},{"x":75,"y":90,"fileNum":81,"id":3242,"width":25,"height":45},{"x":100,"y":90,"fileNum":81,"id":3243,"width":25,"height":45},{"x":0,"y":135,"fileNum":81,"id":3244,"width":25,"height":45},{"x":25,"y":135,"fileNum":81,"id":3245,"width":25,"height":45},{"x":50,"y":135,"fileNum":81,"id":3246,"width":25,"height":45},{"x":75,"y":135,"fileNum":81,"id":3247,"width":25,"height":45},{"x":100,"y":135,"fileNum":81,"id":3248,"width":25,"height":45},{"x":0,"y":0,"fileNum":82,"id":3253,"width":32,"height":32},{"x":0,"y":0,"fileNum":83,"id":3254,"width":25,"height":45},{"x":25,"y":0,"fileNum":83,"id":3255,"width":25,"height":45},{"x":50,"y":0,"fileNum":83,"id":3256,"width":25,"height":45},{"x":75,"y":0,"fileNum":83,"id":3257,"width":25,"height":45},{"x":100,"y":0,"fileNum":83,"id":3258,"width":25,"height":45},{"x":125,"y":0,"fileNum":83,"id":3259,"width":25,"height":45},{"x":0,"y":45,"fileNum":83,"id":3260,"width":25,"height":45},{"x":25,"y":45,"fileNum":83,"id":3261,"width":25,"height":45},{"x":50,"y":45,"fileNum":83,"id":3262,"width":25,"height":45},{"x":75,"y":45,"fileNum":83,"id":3263,"width":25,"height":45},{"x":100,"y":45,"fileNum":83,"id":3264,"width":25,"height":45},{"x":125,"y":45,"fileNum":83,"id":3265,"width":25,"height":45},{"x":0,"y":90,"fileNum":83,"id":3266,"width":25,"height":45},{"x":25,"y":90,"fileNum":83,"id":3267,"width":25,"height":45},{"x":50,"y":90,"fileNum":83,"id":3268,"width":25,"height":45},{"x":75,"y":90,"fileNum":83,"id":3269,"width":25,"height":45},{"x":100,"y":90,"fileNum":83,"id":3270,"width":25,"height":45},{"x":0,"y":135,"fileNum":83,"id":3271,"width":25,"height":45},{"x":25,"y":135,"fileNum":83,"id":3272,"width":25,"height":45},{"x":50,"y":135,"fileNum":83,"id":3273,"width":25,"height":45},{"x":75,"y":135,"fileNum":83,"id":3274,"width":25,"height":45},{"x":100,"y":135,"fileNum":83,"id":3275,"width":25,"height":45},{"x":0,"y":0,"fileNum":15201,"id":3280,"width":55,"height":100},{"x":56,"y":0,"fileNum":15201,"id":3281,"width":55,"height":100},{"x":112,"y":0,"fileNum":15201,"id":3282,"width":55,"height":100},{"x":168,"y":0,"fileNum":15201,"id":3283,"width":55,"height":100},{"x":224,"y":0,"fileNum":15201,"id":3284,"width":55,"height":100},{"x":280,"y":0,"fileNum":15201,"id":3285,"width":55,"height":100},{"x":336,"y":0,"fileNum":15201,"id":3286,"width":55,"height":100},{"x":392,"y":0,"fileNum":15201,"id":3287,"width":55,"height":100},{"x":448,"y":0,"fileNum":15201,"id":3288,"width":55,"height":100},{"x":504,"y":0,"fileNum":15201,"id":3289,"width":55,"height":100},{"x":560,"y":0,"fileNum":15201,"id":3290,"width":55,"height":100},{"x":616,"y":0,"fileNum":15201,"id":3291,"width":55,"height":100},{"x":672,"y":0,"fileNum":15201,"id":3292,"width":55,"height":100},{"x":728,"y":0,"fileNum":15201,"id":3293,"width":55,"height":100},{"x":784,"y":0,"fileNum":15201,"id":3294,"width":55,"height":100},{"x":840,"y":0,"fileNum":15201,"id":3295,"width":55,"height":100},{"x":896,"y":0,"fileNum":15201,"id":3296,"width":55,"height":100},{"x":952,"y":0,"fileNum":15201,"id":3297,"width":55,"height":100},{"x":1008,"y":0,"fileNum":15201,"id":3298,"width":55,"height":100},{"x":1064,"y":0,"fileNum":15201,"id":3299,"width":55,"height":100},{"x":0,"y":0,"fileNum":2047,"id":3301,"width":17,"height":50},{"x":17,"y":0,"fileNum":2047,"id":3302,"width":17,"height":50},{"x":34,"y":0,"fileNum":2047,"id":3303,"width":17,"height":50},{"x":51,"y":0,"fileNum":2047,"id":3304,"width":17,"height":50},{"x":0,"y":0,"fileNum":2096,"id":3305,"width":17,"height":50},{"x":17,"y":0,"fileNum":2096,"id":3306,"width":17,"height":50},{"x":34,"y":0,"fileNum":2096,"id":3307,"width":17,"height":50},{"x":51,"y":0,"fileNum":2096,"id":3308,"width":17,"height":50},{"x":0,"y":0,"fileNum":2096,"id":3309,"width":17,"height":16},{"x":0,"y":0,"fileNum":8208,"id":3310,"width":32,"height":32},{"x":32,"y":0,"fileNum":8208,"id":3311,"width":32,"height":32},{"x":64,"y":0,"fileNum":8208,"id":3312,"width":32,"height":32},{"x":96,"y":0,"fileNum":8208,"id":3313,"width":32,"height":32},{"x":0,"y":32,"fileNum":8208,"id":3314,"width":32,"height":32},{"x":32,"y":32,"fileNum":8208,"id":3315,"width":32,"height":32},{"x":64,"y":32,"fileNum":8208,"id":3316,"width":32,"height":32},{"x":96,"y":32,"fileNum":8208,"id":3317,"width":32,"height":32},{"x":0,"y":64,"fileNum":8208,"id":3318,"width":32,"height":32},{"x":32,"y":64,"fileNum":8208,"id":3319,"width":32,"height":32},{"x":64,"y":64,"fileNum":8208,"id":3320,"width":32,"height":32},{"x":96,"y":64,"fileNum":8208,"id":3321,"width":32,"height":32},{"x":0,"y":96,"fileNum":8208,"id":3322,"width":32,"height":32},{"x":32,"y":96,"fileNum":8208,"id":3323,"width":32,"height":32},{"x":64,"y":96,"fileNum":8208,"id":3324,"width":32,"height":32},{"x":96,"y":96,"fileNum":8208,"id":3325,"width":32,"height":32},{"x":0,"y":0,"fileNum":8209,"id":3326,"width":32,"height":32},{"x":32,"y":0,"fileNum":8209,"id":3327,"width":32,"height":32},{"x":64,"y":0,"fileNum":8209,"id":3328,"width":32,"height":32},{"x":96,"y":0,"fileNum":8209,"id":3329,"width":32,"height":32},{"x":0,"y":32,"fileNum":8209,"id":3330,"width":32,"height":32},{"x":32,"y":32,"fileNum":8209,"id":3331,"width":32,"height":32},{"x":64,"y":32,"fileNum":8209,"id":3332,"width":32,"height":32},{"x":96,"y":32,"fileNum":8209,"id":3333,"width":32,"height":32},{"x":0,"y":64,"fileNum":8209,"id":3334,"width":32,"height":32},{"x":32,"y":64,"fileNum":8209,"id":3335,"width":32,"height":32},{"x":64,"y":64,"fileNum":8209,"id":3336,"width":32,"height":32},{"x":96,"y":64,"fileNum":8209,"id":3337,"width":32,"height":32},{"x":0,"y":96,"fileNum":8209,"id":3338,"width":32,"height":32},{"x":32,"y":96,"fileNum":8209,"id":3339,"width":32,"height":32},{"x":64,"y":96,"fileNum":8209,"id":3340,"width":32,"height":32},{"x":96,"y":96,"fileNum":8209,"id":3341,"width":32,"height":32},{"x":0,"y":0,"fileNum":8210,"id":3342,"width":32,"height":32},{"x":32,"y":0,"fileNum":8210,"id":3343,"width":32,"height":32},{"x":64,"y":0,"fileNum":8210,"id":3344,"width":32,"height":32},{"x":96,"y":0,"fileNum":8210,"id":3345,"width":32,"height":32},{"x":0,"y":32,"fileNum":8210,"id":3346,"width":32,"height":32},{"x":32,"y":32,"fileNum":8210,"id":3347,"width":32,"height":32},{"x":64,"y":32,"fileNum":8210,"id":3348,"width":32,"height":32},{"x":96,"y":32,"fileNum":8210,"id":3349,"width":32,"height":32},{"x":0,"y":64,"fileNum":8210,"id":3350,"width":32,"height":32},{"x":32,"y":64,"fileNum":8210,"id":3351,"width":32,"height":32},{"x":64,"y":64,"fileNum":8210,"id":3352,"width":32,"height":32},{"x":96,"y":64,"fileNum":8210,"id":3353,"width":32,"height":32},{"x":0,"y":96,"fileNum":8210,"id":3354,"width":32,"height":32},{"x":32,"y":96,"fileNum":8210,"id":3355,"width":32,"height":32},{"x":64,"y":96,"fileNum":8210,"id":3356,"width":32,"height":32},{"x":96,"y":96,"fileNum":8210,"id":3357,"width":32,"height":32},{"x":0,"y":0,"fileNum":8211,"id":3358,"width":32,"height":32},{"x":32,"y":0,"fileNum":8211,"id":3359,"width":32,"height":32},{"x":64,"y":0,"fileNum":8211,"id":3360,"width":32,"height":32},{"x":96,"y":0,"fileNum":8211,"id":3361,"width":32,"height":32},{"x":0,"y":32,"fileNum":8211,"id":3362,"width":32,"height":32},{"x":32,"y":32,"fileNum":8211,"id":3363,"width":32,"height":32},{"x":64,"y":32,"fileNum":8211,"id":3364,"width":32,"height":32},{"x":96,"y":32,"fileNum":8211,"id":3365,"width":32,"height":32},{"x":0,"y":64,"fileNum":8211,"id":3366,"width":32,"height":32},{"x":32,"y":64,"fileNum":8211,"id":3367,"width":32,"height":32},{"x":64,"y":64,"fileNum":8211,"id":3368,"width":32,"height":32},{"x":96,"y":64,"fileNum":8211,"id":3369,"width":32,"height":32},{"x":0,"y":96,"fileNum":8211,"id":3370,"width":32,"height":32},{"x":32,"y":96,"fileNum":8211,"id":3371,"width":32,"height":32},{"x":64,"y":96,"fileNum":8211,"id":3372,"width":32,"height":32},{"x":96,"y":96,"fileNum":8211,"id":3373,"width":32,"height":32},{"x":0,"y":0,"fileNum":8212,"id":3374,"width":32,"height":32},{"x":32,"y":0,"fileNum":8212,"id":3375,"width":32,"height":32},{"x":64,"y":0,"fileNum":8212,"id":3376,"width":32,"height":32},{"x":96,"y":0,"fileNum":8212,"id":3377,"width":32,"height":32},{"x":0,"y":32,"fileNum":8212,"id":3378,"width":32,"height":32},{"x":32,"y":32,"fileNum":8212,"id":3379,"width":32,"height":32},{"x":64,"y":32,"fileNum":8212,"id":3380,"width":32,"height":32},{"x":96,"y":32,"fileNum":8212,"id":3381,"width":32,"height":32},{"x":0,"y":64,"fileNum":8212,"id":3382,"width":32,"height":32},{"x":32,"y":64,"fileNum":8212,"id":3383,"width":32,"height":32},{"x":64,"y":64,"fileNum":8212,"id":3384,"width":32,"height":32},{"x":96,"y":64,"fileNum":8212,"id":3385,"width":32,"height":32},{"x":0,"y":96,"fileNum":8212,"id":3386,"width":32,"height":32},{"x":32,"y":96,"fileNum":8212,"id":3387,"width":32,"height":32},{"x":64,"y":96,"fileNum":8212,"id":3388,"width":32,"height":32},{"x":96,"y":96,"fileNum":8212,"id":3389,"width":32,"height":32},{"x":0,"y":0,"fileNum":8213,"id":3390,"width":32,"height":32},{"x":32,"y":0,"fileNum":8213,"id":3391,"width":32,"height":32},{"x":64,"y":0,"fileNum":8213,"id":3392,"width":32,"height":32},{"x":96,"y":0,"fileNum":8213,"id":3393,"width":32,"height":32},{"x":0,"y":32,"fileNum":8213,"id":3394,"width":32,"height":32},{"x":32,"y":32,"fileNum":8213,"id":3395,"width":32,"height":32},{"x":64,"y":32,"fileNum":8213,"id":3396,"width":32,"height":32},{"x":96,"y":32,"fileNum":8213,"id":3397,"width":32,"height":32},{"x":0,"y":64,"fileNum":8213,"id":3398,"width":32,"height":32},{"x":32,"y":64,"fileNum":8213,"id":3399,"width":32,"height":32},{"x":64,"y":64,"fileNum":8213,"id":3400,"width":32,"height":32},{"x":96,"y":64,"fileNum":8213,"id":3401,"width":32,"height":32},{"x":0,"y":96,"fileNum":8213,"id":3402,"width":32,"height":32},{"x":32,"y":96,"fileNum":8213,"id":3403,"width":32,"height":32},{"x":64,"y":96,"fileNum":8213,"id":3404,"width":32,"height":32},{"x":96,"y":96,"fileNum":8213,"id":3405,"width":32,"height":32},{"x":0,"y":0,"fileNum":8214,"id":3406,"width":32,"height":32},{"x":32,"y":0,"fileNum":8214,"id":3407,"width":32,"height":32},{"x":64,"y":0,"fileNum":8214,"id":3408,"width":32,"height":32},{"x":96,"y":0,"fileNum":8214,"id":3409,"width":32,"height":32},{"x":0,"y":32,"fileNum":8214,"id":3410,"width":32,"height":32},{"x":32,"y":32,"fileNum":8214,"id":3411,"width":32,"height":32},{"x":64,"y":32,"fileNum":8214,"id":3412,"width":32,"height":32},{"x":96,"y":32,"fileNum":8214,"id":3413,"width":32,"height":32},{"x":0,"y":64,"fileNum":8214,"id":3414,"width":32,"height":32},{"x":32,"y":64,"fileNum":8214,"id":3415,"width":32,"height":32},{"x":64,"y":64,"fileNum":8214,"id":3416,"width":32,"height":32},{"x":96,"y":64,"fileNum":8214,"id":3417,"width":32,"height":32},{"x":0,"y":96,"fileNum":8214,"id":3418,"width":32,"height":32},{"x":32,"y":96,"fileNum":8214,"id":3419,"width":32,"height":32},{"x":64,"y":96,"fileNum":8214,"id":3420,"width":32,"height":32},{"x":96,"y":96,"fileNum":8214,"id":3421,"width":32,"height":32},{"x":0,"y":0,"fileNum":8215,"id":3422,"width":32,"height":32},{"x":32,"y":0,"fileNum":8215,"id":3423,"width":32,"height":32},{"x":64,"y":0,"fileNum":8215,"id":3424,"width":32,"height":32},{"x":96,"y":0,"fileNum":8215,"id":3425,"width":32,"height":32},{"x":0,"y":32,"fileNum":8215,"id":3426,"width":32,"height":32},{"x":32,"y":32,"fileNum":8215,"id":3427,"width":32,"height":32},{"x":64,"y":32,"fileNum":8215,"id":3428,"width":32,"height":32},{"x":96,"y":32,"fileNum":8215,"id":3429,"width":32,"height":32},{"x":0,"y":64,"fileNum":8215,"id":3430,"width":32,"height":32},{"x":32,"y":64,"fileNum":8215,"id":3431,"width":32,"height":32},{"x":64,"y":64,"fileNum":8215,"id":3432,"width":32,"height":32},{"x":96,"y":64,"fileNum":8215,"id":3433,"width":32,"height":32},{"x":0,"y":96,"fileNum":8215,"id":3434,"width":32,"height":32},{"x":32,"y":96,"fileNum":8215,"id":3435,"width":32,"height":32},{"x":64,"y":96,"fileNum":8215,"id":3436,"width":32,"height":32},{"x":96,"y":96,"fileNum":8215,"id":3437,"width":32,"height":32},{"x":0,"y":0,"fileNum":8216,"id":3438,"width":32,"height":32},{"x":32,"y":0,"fileNum":8216,"id":3439,"width":32,"height":32},{"x":64,"y":0,"fileNum":8216,"id":3440,"width":32,"height":32},{"x":96,"y":0,"fileNum":8216,"id":3441,"width":32,"height":32},{"x":0,"y":32,"fileNum":8216,"id":3442,"width":32,"height":32},{"x":32,"y":32,"fileNum":8216,"id":3443,"width":32,"height":32},{"x":64,"y":32,"fileNum":8216,"id":3444,"width":32,"height":32},{"x":96,"y":32,"fileNum":8216,"id":3445,"width":32,"height":32},{"x":0,"y":64,"fileNum":8216,"id":3446,"width":32,"height":32},{"x":32,"y":64,"fileNum":8216,"id":3447,"width":32,"height":32},{"x":64,"y":64,"fileNum":8216,"id":3448,"width":32,"height":32},{"x":96,"y":64,"fileNum":8216,"id":3449,"width":32,"height":32},{"x":0,"y":96,"fileNum":8216,"id":3450,"width":32,"height":32},{"x":32,"y":96,"fileNum":8216,"id":3451,"width":32,"height":32},{"x":64,"y":96,"fileNum":8216,"id":3452,"width":32,"height":32},{"x":96,"y":96,"fileNum":8216,"id":3453,"width":32,"height":32},{"x":0,"y":0,"fileNum":8217,"id":3454,"width":32,"height":32},{"x":32,"y":0,"fileNum":8217,"id":3455,"width":32,"height":32},{"x":64,"y":0,"fileNum":8217,"id":3456,"width":32,"height":32},{"x":96,"y":0,"fileNum":8217,"id":3457,"width":32,"height":32},{"x":0,"y":32,"fileNum":8217,"id":3458,"width":32,"height":32},{"x":32,"y":32,"fileNum":8217,"id":3459,"width":32,"height":32},{"x":64,"y":32,"fileNum":8217,"id":3460,"width":32,"height":32},{"x":96,"y":32,"fileNum":8217,"id":3461,"width":32,"height":32},{"x":0,"y":64,"fileNum":8217,"id":3462,"width":32,"height":32},{"x":32,"y":64,"fileNum":8217,"id":3463,"width":32,"height":32},{"x":64,"y":64,"fileNum":8217,"id":3464,"width":32,"height":32},{"x":96,"y":64,"fileNum":8217,"id":3465,"width":32,"height":32},{"x":0,"y":96,"fileNum":8217,"id":3466,"width":32,"height":32},{"x":32,"y":96,"fileNum":8217,"id":3467,"width":32,"height":32},{"x":64,"y":96,"fileNum":8217,"id":3468,"width":32,"height":32},{"x":96,"y":96,"fileNum":8217,"id":3469,"width":32,"height":32},{"x":0,"y":0,"fileNum":8218,"id":3470,"width":32,"height":32},{"x":32,"y":0,"fileNum":8218,"id":3471,"width":32,"height":32},{"x":64,"y":0,"fileNum":8218,"id":3472,"width":32,"height":32},{"x":96,"y":0,"fileNum":8218,"id":3473,"width":32,"height":32},{"x":0,"y":32,"fileNum":8218,"id":3474,"width":32,"height":32},{"x":32,"y":32,"fileNum":8218,"id":3475,"width":32,"height":32},{"x":64,"y":32,"fileNum":8218,"id":3476,"width":32,"height":32},{"x":96,"y":32,"fileNum":8218,"id":3477,"width":32,"height":32},{"x":0,"y":64,"fileNum":8218,"id":3478,"width":32,"height":32},{"x":32,"y":64,"fileNum":8218,"id":3479,"width":32,"height":32},{"x":64,"y":64,"fileNum":8218,"id":3480,"width":32,"height":32},{"x":96,"y":64,"fileNum":8218,"id":3481,"width":32,"height":32},{"x":0,"y":96,"fileNum":8218,"id":3482,"width":32,"height":32},{"x":32,"y":96,"fileNum":8218,"id":3483,"width":32,"height":32},{"x":64,"y":96,"fileNum":8218,"id":3484,"width":32,"height":32},{"x":96,"y":96,"fileNum":8218,"id":3485,"width":32,"height":32},{"x":0,"y":0,"fileNum":8219,"id":3486,"width":32,"height":32},{"x":32,"y":0,"fileNum":8219,"id":3487,"width":32,"height":32},{"x":64,"y":0,"fileNum":8219,"id":3488,"width":32,"height":32},{"x":96,"y":0,"fileNum":8219,"id":3489,"width":32,"height":32},{"x":0,"y":32,"fileNum":8219,"id":3490,"width":32,"height":32},{"x":32,"y":32,"fileNum":8219,"id":3491,"width":32,"height":32},{"x":64,"y":32,"fileNum":8219,"id":3492,"width":32,"height":32},{"x":96,"y":32,"fileNum":8219,"id":3493,"width":32,"height":32},{"x":0,"y":64,"fileNum":8219,"id":3494,"width":32,"height":32},{"x":32,"y":64,"fileNum":8219,"id":3495,"width":32,"height":32},{"x":64,"y":64,"fileNum":8219,"id":3496,"width":32,"height":32},{"x":96,"y":64,"fileNum":8219,"id":3497,"width":32,"height":32},{"x":0,"y":96,"fileNum":8219,"id":3498,"width":32,"height":32},{"x":32,"y":96,"fileNum":8219,"id":3499,"width":32,"height":32},{"x":64,"y":96,"fileNum":8219,"id":3500,"width":32,"height":32},{"x":96,"y":96,"fileNum":8219,"id":3501,"width":32,"height":32},{"x":0,"y":0,"fileNum":8220,"id":3502,"width":32,"height":32},{"x":32,"y":0,"fileNum":8220,"id":3503,"width":32,"height":32},{"x":64,"y":0,"fileNum":8220,"id":3504,"width":32,"height":32},{"x":96,"y":0,"fileNum":8220,"id":3505,"width":32,"height":32},{"x":0,"y":32,"fileNum":8220,"id":3506,"width":32,"height":32},{"x":32,"y":32,"fileNum":8220,"id":3507,"width":32,"height":32},{"x":64,"y":32,"fileNum":8220,"id":3508,"width":32,"height":32},{"x":96,"y":32,"fileNum":8220,"id":3509,"width":32,"height":32},{"x":0,"y":64,"fileNum":8220,"id":3510,"width":32,"height":32},{"x":32,"y":64,"fileNum":8220,"id":3511,"width":32,"height":32},{"x":64,"y":64,"fileNum":8220,"id":3512,"width":32,"height":32},{"x":96,"y":64,"fileNum":8220,"id":3513,"width":32,"height":32},{"x":0,"y":96,"fileNum":8220,"id":3514,"width":32,"height":32},{"x":32,"y":96,"fileNum":8220,"id":3515,"width":32,"height":32},{"x":64,"y":96,"fileNum":8220,"id":3516,"width":32,"height":32},{"x":96,"y":96,"fileNum":8220,"id":3517,"width":32,"height":32},{"x":0,"y":0,"fileNum":8221,"id":3518,"width":32,"height":32},{"x":32,"y":0,"fileNum":8221,"id":3519,"width":32,"height":32},{"x":64,"y":0,"fileNum":8221,"id":3520,"width":32,"height":32},{"x":96,"y":0,"fileNum":8221,"id":3521,"width":32,"height":32},{"x":0,"y":32,"fileNum":8221,"id":3522,"width":32,"height":32},{"x":32,"y":32,"fileNum":8221,"id":3523,"width":32,"height":32},{"x":64,"y":32,"fileNum":8221,"id":3524,"width":32,"height":32},{"x":96,"y":32,"fileNum":8221,"id":3525,"width":32,"height":32},{"x":0,"y":64,"fileNum":8221,"id":3526,"width":32,"height":32},{"x":32,"y":64,"fileNum":8221,"id":3527,"width":32,"height":32},{"x":64,"y":64,"fileNum":8221,"id":3528,"width":32,"height":32},{"x":96,"y":64,"fileNum":8221,"id":3529,"width":32,"height":32},{"x":0,"y":96,"fileNum":8221,"id":3530,"width":32,"height":32},{"x":32,"y":96,"fileNum":8221,"id":3531,"width":32,"height":32},{"x":64,"y":96,"fileNum":8221,"id":3532,"width":32,"height":32},{"x":96,"y":96,"fileNum":8221,"id":3533,"width":32,"height":32},{"x":0,"y":0,"fileNum":8222,"id":3534,"width":32,"height":32},{"x":32,"y":0,"fileNum":8222,"id":3535,"width":32,"height":32},{"x":64,"y":0,"fileNum":8222,"id":3536,"width":32,"height":32},{"x":96,"y":0,"fileNum":8222,"id":3537,"width":32,"height":32},{"x":0,"y":32,"fileNum":8222,"id":3538,"width":32,"height":32},{"x":32,"y":32,"fileNum":8222,"id":3539,"width":32,"height":32},{"x":64,"y":32,"fileNum":8222,"id":3540,"width":32,"height":32},{"x":96,"y":32,"fileNum":8222,"id":3541,"width":32,"height":32},{"x":0,"y":64,"fileNum":8222,"id":3542,"width":32,"height":32},{"x":32,"y":64,"fileNum":8222,"id":3543,"width":32,"height":32},{"x":64,"y":64,"fileNum":8222,"id":3544,"width":32,"height":32},{"x":96,"y":64,"fileNum":8222,"id":3545,"width":32,"height":32},{"x":0,"y":96,"fileNum":8222,"id":3546,"width":32,"height":32},{"x":32,"y":96,"fileNum":8222,"id":3547,"width":32,"height":32},{"x":64,"y":96,"fileNum":8222,"id":3548,"width":32,"height":32},{"x":96,"y":96,"fileNum":8222,"id":3549,"width":32,"height":32},{"x":0,"y":0,"fileNum":8223,"id":3550,"width":32,"height":32},{"x":32,"y":0,"fileNum":8223,"id":3551,"width":32,"height":32},{"x":64,"y":0,"fileNum":8223,"id":3552,"width":32,"height":32},{"x":96,"y":0,"fileNum":8223,"id":3553,"width":32,"height":32},{"x":0,"y":32,"fileNum":8223,"id":3554,"width":32,"height":32},{"x":32,"y":32,"fileNum":8223,"id":3555,"width":32,"height":32},{"x":64,"y":32,"fileNum":8223,"id":3556,"width":32,"height":32},{"x":96,"y":32,"fileNum":8223,"id":3557,"width":32,"height":32},{"x":0,"y":64,"fileNum":8223,"id":3558,"width":32,"height":32},{"x":32,"y":64,"fileNum":8223,"id":3559,"width":32,"height":32},{"x":64,"y":64,"fileNum":8223,"id":3560,"width":32,"height":32},{"x":96,"y":64,"fileNum":8223,"id":3561,"width":32,"height":32},{"x":0,"y":96,"fileNum":8223,"id":3562,"width":32,"height":32},{"x":32,"y":96,"fileNum":8223,"id":3563,"width":32,"height":32},{"x":64,"y":96,"fileNum":8223,"id":3564,"width":32,"height":32},{"x":96,"y":96,"fileNum":8223,"id":3565,"width":32,"height":32},{"x":0,"y":0,"fileNum":8224,"id":3566,"width":32,"height":32},{"x":32,"y":0,"fileNum":8224,"id":3567,"width":32,"height":32},{"x":64,"y":0,"fileNum":8224,"id":3568,"width":32,"height":32},{"x":96,"y":0,"fileNum":8224,"id":3569,"width":32,"height":32},{"x":0,"y":32,"fileNum":8224,"id":3570,"width":32,"height":32},{"x":32,"y":32,"fileNum":8224,"id":3571,"width":32,"height":32},{"x":64,"y":32,"fileNum":8224,"id":3572,"width":32,"height":32},{"x":96,"y":32,"fileNum":8224,"id":3573,"width":32,"height":32},{"x":0,"y":64,"fileNum":8224,"id":3574,"width":32,"height":32},{"x":32,"y":64,"fileNum":8224,"id":3575,"width":32,"height":32},{"x":64,"y":64,"fileNum":8224,"id":3576,"width":32,"height":32},{"x":96,"y":64,"fileNum":8224,"id":3577,"width":32,"height":32},{"x":0,"y":96,"fileNum":8224,"id":3578,"width":32,"height":32},{"x":32,"y":96,"fileNum":8224,"id":3579,"width":32,"height":32},{"x":64,"y":96,"fileNum":8224,"id":3580,"width":32,"height":32},{"x":96,"y":96,"fileNum":8224,"id":3581,"width":32,"height":32},{"x":0,"y":0,"fileNum":11026,"id":3582,"width":320,"height":384},{"x":0,"y":0,"fileNum":11027,"id":3583,"width":320,"height":160},{"x":0,"y":0,"fileNum":14032,"id":3584,"width":384,"height":480},{"x":0,"y":0,"fileNum":22000,"id":3585,"width":25,"height":45},{"x":25,"y":0,"fileNum":22000,"id":3586,"width":25,"height":45},{"x":50,"y":0,"fileNum":22000,"id":3587,"width":25,"height":45},{"x":75,"y":0,"fileNum":22000,"id":3588,"width":25,"height":45},{"x":100,"y":0,"fileNum":22000,"id":3589,"width":25,"height":45},{"x":125,"y":0,"fileNum":22000,"id":3590,"width":25,"height":45},{"x":0,"y":45,"fileNum":22000,"id":3591,"width":25,"height":45},{"x":25,"y":45,"fileNum":22000,"id":3592,"width":25,"height":45},{"x":50,"y":45,"fileNum":22000,"id":3593,"width":25,"height":45},{"x":75,"y":45,"fileNum":22000,"id":3594,"width":25,"height":45},{"x":100,"y":45,"fileNum":22000,"id":3595,"width":25,"height":45},{"x":125,"y":45,"fileNum":22000,"id":3596,"width":25,"height":45},{"x":0,"y":90,"fileNum":22000,"id":3597,"width":25,"height":45},{"x":25,"y":90,"fileNum":22000,"id":3598,"width":25,"height":45},{"x":50,"y":90,"fileNum":22000,"id":3599,"width":25,"height":45},{"x":75,"y":90,"fileNum":22000,"id":3600,"width":25,"height":45},{"x":100,"y":90,"fileNum":22000,"id":3601,"width":25,"height":45},{"x":0,"y":135,"fileNum":22000,"id":3602,"width":25,"height":45},{"x":25,"y":135,"fileNum":22000,"id":3603,"width":25,"height":45},{"x":50,"y":135,"fileNum":22000,"id":3604,"width":25,"height":45},{"x":75,"y":135,"fileNum":22000,"id":3605,"width":25,"height":45},{"x":100,"y":135,"fileNum":22000,"id":3606,"width":25,"height":45},{"x":0,"y":0,"fileNum":22044,"id":3611,"width":25,"height":45},{"x":25,"y":0,"fileNum":22044,"id":3612,"width":25,"height":45},{"x":50,"y":0,"fileNum":22044,"id":3613,"width":25,"height":45},{"x":75,"y":0,"fileNum":22044,"id":3614,"width":25,"height":45},{"x":100,"y":0,"fileNum":22044,"id":3615,"width":25,"height":45},{"x":125,"y":0,"fileNum":22044,"id":3616,"width":25,"height":45},{"x":0,"y":45,"fileNum":22044,"id":3617,"width":25,"height":45},{"x":25,"y":45,"fileNum":22044,"id":3618,"width":25,"height":45},{"x":50,"y":45,"fileNum":22044,"id":3619,"width":25,"height":45},{"x":75,"y":45,"fileNum":22044,"id":3620,"width":25,"height":45},{"x":100,"y":45,"fileNum":22044,"id":3621,"width":25,"height":45},{"x":125,"y":45,"fileNum":22044,"id":3622,"width":25,"height":45},{"x":0,"y":90,"fileNum":22044,"id":3623,"width":25,"height":45},{"x":25,"y":90,"fileNum":22044,"id":3624,"width":25,"height":45},{"x":50,"y":90,"fileNum":22044,"id":3625,"width":25,"height":45},{"x":75,"y":90,"fileNum":22044,"id":3626,"width":25,"height":45},{"x":100,"y":90,"fileNum":22044,"id":3627,"width":25,"height":45},{"x":0,"y":135,"fileNum":22044,"id":3628,"width":25,"height":45},{"x":25,"y":135,"fileNum":22044,"id":3629,"width":25,"height":45},{"x":50,"y":135,"fileNum":22044,"id":3630,"width":25,"height":45},{"x":75,"y":135,"fileNum":22044,"id":3631,"width":25,"height":45},{"x":100,"y":135,"fileNum":22044,"id":3632,"width":25,"height":45},{"x":0,"y":0,"fileNum":16015,"id":3637,"width":25,"height":45},{"x":25,"y":0,"fileNum":16015,"id":3638,"width":25,"height":45},{"x":50,"y":0,"fileNum":16015,"id":3639,"width":25,"height":45},{"x":75,"y":0,"fileNum":16015,"id":3640,"width":25,"height":45},{"x":100,"y":0,"fileNum":16015,"id":3641,"width":25,"height":45},{"x":125,"y":0,"fileNum":16015,"id":3642,"width":25,"height":45},{"x":0,"y":45,"fileNum":16015,"id":3643,"width":25,"height":45},{"x":25,"y":45,"fileNum":16015,"id":3644,"width":25,"height":45},{"x":50,"y":45,"fileNum":16015,"id":3645,"width":25,"height":45},{"x":75,"y":45,"fileNum":16015,"id":3646,"width":25,"height":45},{"x":100,"y":45,"fileNum":16015,"id":3647,"width":25,"height":45},{"x":125,"y":45,"fileNum":16015,"id":3648,"width":25,"height":45},{"x":0,"y":90,"fileNum":16015,"id":3649,"width":25,"height":45},{"x":25,"y":90,"fileNum":16015,"id":3650,"width":25,"height":45},{"x":50,"y":90,"fileNum":16015,"id":3651,"width":25,"height":45},{"x":75,"y":90,"fileNum":16015,"id":3652,"width":25,"height":45},{"x":100,"y":90,"fileNum":16015,"id":3653,"width":25,"height":45},{"x":0,"y":135,"fileNum":16015,"id":3654,"width":25,"height":45},{"x":25,"y":135,"fileNum":16015,"id":3655,"width":25,"height":45},{"x":50,"y":135,"fileNum":16015,"id":3656,"width":25,"height":45},{"x":75,"y":135,"fileNum":16015,"id":3657,"width":25,"height":45},{"x":100,"y":135,"fileNum":16015,"id":3658,"width":25,"height":45},{"x":0,"y":0,"fileNum":4072,"id":3663,"width":32,"height":39},{"x":32,"y":0,"fileNum":4072,"id":3664,"width":32,"height":39},{"x":64,"y":0,"fileNum":4072,"id":3665,"width":32,"height":39},{"x":96,"y":0,"fileNum":4072,"id":3666,"width":32,"height":39},{"x":128,"y":0,"fileNum":4072,"id":3667,"width":32,"height":39},{"x":160,"y":0,"fileNum":4072,"id":3668,"width":32,"height":39},{"x":0,"y":39,"fileNum":4072,"id":3669,"width":32,"height":39},{"x":32,"y":39,"fileNum":4072,"id":3670,"width":32,"height":39},{"x":64,"y":39,"fileNum":4072,"id":3671,"width":32,"height":39},{"x":96,"y":39,"fileNum":4072,"id":3672,"width":32,"height":39},{"x":128,"y":39,"fileNum":4072,"id":3673,"width":32,"height":39},{"x":160,"y":39,"fileNum":4072,"id":3674,"width":32,"height":39},{"x":0,"y":78,"fileNum":4072,"id":3675,"width":32,"height":39},{"x":32,"y":78,"fileNum":4072,"id":3676,"width":32,"height":39},{"x":64,"y":78,"fileNum":4072,"id":3677,"width":32,"height":39},{"x":96,"y":78,"fileNum":4072,"id":3678,"width":32,"height":39},{"x":128,"y":78,"fileNum":4072,"id":3679,"width":32,"height":39},{"x":0,"y":118,"fileNum":4072,"id":3680,"width":32,"height":39},{"x":32,"y":118,"fileNum":4072,"id":3681,"width":32,"height":39},{"x":64,"y":118,"fileNum":4072,"id":3682,"width":32,"height":39},{"x":96,"y":118,"fileNum":4072,"id":3683,"width":32,"height":39},{"x":128,"y":118,"fileNum":4072,"id":3684,"width":32,"height":39},{"x":0,"y":0,"fileNum":105,"id":3689,"width":25,"height":45},{"x":25,"y":0,"fileNum":105,"id":3690,"width":25,"height":45},{"x":50,"y":0,"fileNum":105,"id":3691,"width":25,"height":45},{"x":75,"y":0,"fileNum":105,"id":3692,"width":25,"height":45},{"x":100,"y":0,"fileNum":105,"id":3693,"width":25,"height":45},{"x":125,"y":0,"fileNum":105,"id":3694,"width":25,"height":45},{"x":0,"y":45,"fileNum":105,"id":3695,"width":25,"height":45},{"x":25,"y":45,"fileNum":105,"id":3696,"width":25,"height":45},{"x":50,"y":45,"fileNum":105,"id":3697,"width":25,"height":45},{"x":75,"y":45,"fileNum":105,"id":3698,"width":25,"height":45},{"x":100,"y":45,"fileNum":105,"id":3699,"width":25,"height":45},{"x":125,"y":45,"fileNum":105,"id":3700,"width":25,"height":45},{"x":0,"y":90,"fileNum":105,"id":3701,"width":25,"height":45},{"x":25,"y":90,"fileNum":105,"id":3702,"width":25,"height":45},{"x":50,"y":90,"fileNum":105,"id":3703,"width":25,"height":45},{"x":75,"y":90,"fileNum":105,"id":3704,"width":25,"height":45},{"x":100,"y":90,"fileNum":105,"id":3705,"width":25,"height":45},{"x":0,"y":135,"fileNum":105,"id":3706,"width":25,"height":45},{"x":25,"y":135,"fileNum":105,"id":3707,"width":25,"height":45},{"x":50,"y":135,"fileNum":105,"id":3708,"width":25,"height":45},{"x":75,"y":135,"fileNum":105,"id":3709,"width":25,"height":45},{"x":100,"y":135,"fileNum":105,"id":3710,"width":25,"height":45},{"x":0,"y":0,"fileNum":106,"id":3715,"width":32,"height":32},{"x":0,"y":0,"fileNum":7073,"id":3716,"width":64,"height":32},{"x":0,"y":0,"fileNum":4070,"id":3717,"width":25,"height":45},{"x":25,"y":0,"fileNum":4070,"id":3718,"width":25,"height":45},{"x":50,"y":0,"fileNum":4070,"id":3719,"width":25,"height":45},{"x":75,"y":0,"fileNum":4070,"id":3720,"width":25,"height":45},{"x":100,"y":0,"fileNum":4070,"id":3721,"width":25,"height":45},{"x":125,"y":0,"fileNum":4070,"id":3722,"width":25,"height":45},{"x":0,"y":45,"fileNum":4070,"id":3723,"width":25,"height":45},{"x":25,"y":45,"fileNum":4070,"id":3724,"width":25,"height":45},{"x":50,"y":45,"fileNum":4070,"id":3725,"width":25,"height":45},{"x":75,"y":45,"fileNum":4070,"id":3726,"width":25,"height":45},{"x":100,"y":45,"fileNum":4070,"id":3727,"width":25,"height":45},{"x":125,"y":45,"fileNum":4070,"id":3728,"width":25,"height":45},{"x":0,"y":90,"fileNum":4070,"id":3729,"width":25,"height":45},{"x":25,"y":90,"fileNum":4070,"id":3730,"width":25,"height":45},{"x":50,"y":90,"fileNum":4070,"id":3731,"width":25,"height":45},{"x":75,"y":90,"fileNum":4070,"id":3732,"width":25,"height":45},{"x":100,"y":90,"fileNum":4070,"id":3733,"width":25,"height":45},{"x":0,"y":135,"fileNum":4070,"id":3734,"width":25,"height":45},{"x":25,"y":135,"fileNum":4070,"id":3735,"width":25,"height":45},{"x":50,"y":135,"fileNum":4070,"id":3736,"width":25,"height":45},{"x":75,"y":135,"fileNum":4070,"id":3737,"width":25,"height":45},{"x":100,"y":135,"fileNum":4070,"id":3738,"width":25,"height":45},{"x":0,"y":0,"fileNum":4071,"id":3743,"width":25,"height":45},{"x":25,"y":0,"fileNum":4071,"id":3744,"width":25,"height":45},{"x":50,"y":0,"fileNum":4071,"id":3745,"width":25,"height":45},{"x":75,"y":0,"fileNum":4071,"id":3746,"width":25,"height":45},{"x":100,"y":0,"fileNum":4071,"id":3747,"width":25,"height":45},{"x":125,"y":0,"fileNum":4071,"id":3748,"width":25,"height":45},{"x":0,"y":45,"fileNum":4071,"id":3749,"width":25,"height":45},{"x":25,"y":45,"fileNum":4071,"id":3750,"width":25,"height":45},{"x":50,"y":45,"fileNum":4071,"id":3751,"width":25,"height":45},{"x":75,"y":45,"fileNum":4071,"id":3752,"width":25,"height":45},{"x":100,"y":45,"fileNum":4071,"id":3753,"width":25,"height":45},{"x":125,"y":45,"fileNum":4071,"id":3754,"width":25,"height":45},{"x":0,"y":90,"fileNum":4071,"id":3755,"width":25,"height":45},{"x":25,"y":90,"fileNum":4071,"id":3756,"width":25,"height":45},{"x":50,"y":90,"fileNum":4071,"id":3757,"width":25,"height":45},{"x":75,"y":90,"fileNum":4071,"id":3758,"width":25,"height":45},{"x":100,"y":90,"fileNum":4071,"id":3759,"width":25,"height":45},{"x":0,"y":135,"fileNum":4071,"id":3760,"width":25,"height":45},{"x":25,"y":135,"fileNum":4071,"id":3761,"width":25,"height":45},{"x":50,"y":135,"fileNum":4071,"id":3762,"width":25,"height":45},{"x":75,"y":135,"fileNum":4071,"id":3763,"width":25,"height":45},{"x":100,"y":135,"fileNum":4071,"id":3764,"width":25,"height":45},{"x":0,"y":0,"fileNum":4069,"id":3769,"width":25,"height":45},{"x":25,"y":0,"fileNum":4069,"id":3770,"width":25,"height":45},{"x":50,"y":0,"fileNum":4069,"id":3771,"width":25,"height":45},{"x":75,"y":0,"fileNum":4069,"id":3772,"width":25,"height":45},{"x":100,"y":0,"fileNum":4069,"id":3773,"width":25,"height":45},{"x":125,"y":0,"fileNum":4069,"id":3774,"width":25,"height":45},{"x":0,"y":45,"fileNum":4069,"id":3775,"width":25,"height":45},{"x":25,"y":45,"fileNum":4069,"id":3776,"width":25,"height":45},{"x":50,"y":45,"fileNum":4069,"id":3777,"width":25,"height":45},{"x":75,"y":45,"fileNum":4069,"id":3778,"width":25,"height":45},{"x":100,"y":45,"fileNum":4069,"id":3779,"width":25,"height":45},{"x":125,"y":45,"fileNum":4069,"id":3780,"width":25,"height":45},{"x":0,"y":90,"fileNum":4069,"id":3781,"width":25,"height":45},{"x":25,"y":90,"fileNum":4069,"id":3782,"width":25,"height":45},{"x":50,"y":90,"fileNum":4069,"id":3783,"width":25,"height":45},{"x":75,"y":90,"fileNum":4069,"id":3784,"width":25,"height":45},{"x":100,"y":90,"fileNum":4069,"id":3785,"width":25,"height":45},{"x":0,"y":135,"fileNum":4069,"id":3786,"width":25,"height":45},{"x":25,"y":135,"fileNum":4069,"id":3787,"width":25,"height":45},{"x":50,"y":135,"fileNum":4069,"id":3788,"width":25,"height":45},{"x":75,"y":135,"fileNum":4069,"id":3789,"width":25,"height":45},{"x":100,"y":135,"fileNum":4069,"id":3790,"width":25,"height":45},{"x":0,"y":0,"fileNum":2039,"id":3795,"width":17,"height":50},{"x":17,"y":0,"fileNum":2039,"id":3796,"width":17,"height":50},{"x":34,"y":0,"fileNum":2039,"id":3797,"width":17,"height":50},{"x":51,"y":0,"fileNum":2039,"id":3798,"width":17,"height":50},{"x":0,"y":0,"fileNum":2098,"id":3799,"width":17,"height":50},{"x":17,"y":0,"fileNum":2098,"id":3800,"width":17,"height":50},{"x":34,"y":0,"fileNum":2098,"id":3801,"width":17,"height":50},{"x":51,"y":0,"fileNum":2098,"id":3802,"width":17,"height":50},{"x":0,"y":0,"fileNum":2099,"id":3803,"width":17,"height":50},{"x":17,"y":0,"fileNum":2099,"id":3804,"width":17,"height":50},{"x":34,"y":0,"fileNum":2099,"id":3805,"width":17,"height":50},{"x":51,"y":0,"fileNum":2099,"id":3806,"width":17,"height":50},{"x":0,"y":0,"fileNum":2100,"id":3807,"width":17,"height":50},{"x":17,"y":0,"fileNum":2100,"id":3808,"width":17,"height":50},{"x":34,"y":0,"fileNum":2100,"id":3809,"width":17,"height":50},{"x":51,"y":0,"fileNum":2100,"id":3810,"width":17,"height":50},{"x":0,"y":0,"fileNum":2101,"id":3811,"width":17,"height":50},{"x":17,"y":0,"fileNum":2101,"id":3812,"width":17,"height":50},{"x":34,"y":0,"fileNum":2101,"id":3813,"width":17,"height":50},{"x":51,"y":0,"fileNum":2101,"id":3814,"width":17,"height":50},{"x":0,"y":0,"fileNum":2102,"id":3815,"width":17,"height":50},{"x":17,"y":0,"fileNum":2102,"id":3816,"width":17,"height":50},{"x":34,"y":0,"fileNum":2102,"id":3817,"width":17,"height":50},{"x":51,"y":0,"fileNum":2102,"id":3818,"width":17,"height":50},{"x":0,"y":0,"fileNum":2103,"id":3819,"width":17,"height":50},{"x":17,"y":0,"fileNum":2103,"id":3820,"width":17,"height":50},{"x":34,"y":0,"fileNum":2103,"id":3821,"width":17,"height":50},{"x":51,"y":0,"fileNum":2103,"id":3822,"width":17,"height":50},{"x":0,"y":0,"fileNum":2104,"id":3823,"width":17,"height":50},{"x":17,"y":0,"fileNum":2104,"id":3824,"width":17,"height":50},{"x":34,"y":0,"fileNum":2104,"id":3825,"width":17,"height":50},{"x":51,"y":0,"fileNum":2104,"id":3826,"width":17,"height":50},{"x":0,"y":0,"fileNum":2107,"id":3827,"width":17,"height":50},{"x":17,"y":0,"fileNum":2107,"id":3828,"width":17,"height":50},{"x":34,"y":0,"fileNum":2107,"id":3829,"width":17,"height":50},{"x":51,"y":0,"fileNum":2107,"id":3830,"width":17,"height":50},{"x":0,"y":0,"fileNum":4079,"id":3831,"width":25,"height":52},{"x":25,"y":0,"fileNum":4079,"id":3832,"width":25,"height":52},{"x":50,"y":0,"fileNum":4079,"id":3833,"width":25,"height":52},{"x":75,"y":0,"fileNum":4079,"id":3834,"width":25,"height":52},{"x":100,"y":0,"fileNum":4079,"id":3835,"width":25,"height":52},{"x":125,"y":0,"fileNum":4079,"id":3836,"width":25,"height":52},{"x":0,"y":52,"fileNum":4079,"id":3837,"width":25,"height":52},{"x":25,"y":52,"fileNum":4079,"id":3838,"width":25,"height":52},{"x":50,"y":52,"fileNum":4079,"id":3839,"width":25,"height":52},{"x":75,"y":52,"fileNum":4079,"id":3840,"width":25,"height":52},{"x":100,"y":52,"fileNum":4079,"id":3841,"width":25,"height":52},{"x":125,"y":52,"fileNum":4079,"id":3842,"width":25,"height":52},{"x":0,"y":104,"fileNum":4079,"id":3843,"width":25,"height":52},{"x":25,"y":104,"fileNum":4079,"id":3844,"width":25,"height":52},{"x":50,"y":104,"fileNum":4079,"id":3845,"width":25,"height":52},{"x":75,"y":104,"fileNum":4079,"id":3846,"width":25,"height":52},{"x":100,"y":104,"fileNum":4079,"id":3847,"width":25,"height":52},{"x":0,"y":156,"fileNum":4079,"id":3848,"width":25,"height":52},{"x":25,"y":156,"fileNum":4079,"id":3849,"width":25,"height":52},{"x":50,"y":156,"fileNum":4079,"id":3850,"width":25,"height":52},{"x":75,"y":156,"fileNum":4079,"id":3851,"width":25,"height":52},{"x":100,"y":156,"fileNum":4079,"id":3852,"width":25,"height":52},{"x":0,"y":0,"fileNum":15202,"id":3857,"width":55,"height":100},{"x":56,"y":0,"fileNum":15202,"id":3858,"width":55,"height":100},{"x":112,"y":0,"fileNum":15202,"id":3859,"width":55,"height":100},{"x":168,"y":0,"fileNum":15202,"id":3860,"width":55,"height":100},{"x":224,"y":0,"fileNum":15202,"id":3861,"width":55,"height":100},{"x":280,"y":0,"fileNum":15202,"id":3862,"width":55,"height":100},{"x":336,"y":0,"fileNum":15202,"id":3863,"width":55,"height":100},{"x":392,"y":0,"fileNum":15202,"id":3864,"width":55,"height":100},{"x":448,"y":0,"fileNum":15202,"id":3865,"width":55,"height":100},{"x":504,"y":0,"fileNum":15202,"id":3866,"width":55,"height":100},{"x":560,"y":0,"fileNum":15202,"id":3867,"width":55,"height":100},{"x":616,"y":0,"fileNum":15202,"id":3868,"width":55,"height":100},{"x":672,"y":0,"fileNum":15202,"id":3869,"width":55,"height":100},{"x":728,"y":0,"fileNum":15202,"id":3870,"width":55,"height":100},{"x":784,"y":0,"fileNum":15202,"id":3871,"width":55,"height":100},{"x":840,"y":0,"fileNum":15202,"id":3872,"width":55,"height":100},{"x":896,"y":0,"fileNum":15202,"id":3873,"width":55,"height":100},{"x":952,"y":0,"fileNum":15202,"id":3874,"width":55,"height":100},{"x":1008,"y":0,"fileNum":15202,"id":3875,"width":55,"height":100},{"x":1064,"y":0,"fileNum":15202,"id":3876,"width":55,"height":100},{"x":0,"y":0,"fileNum":406,"id":3878,"width":25,"height":45},{"x":25,"y":0,"fileNum":406,"id":3879,"width":25,"height":45},{"x":50,"y":0,"fileNum":406,"id":3880,"width":25,"height":45},{"x":75,"y":0,"fileNum":406,"id":3881,"width":25,"height":45},{"x":100,"y":0,"fileNum":406,"id":3882,"width":25,"height":45},{"x":125,"y":0,"fileNum":406,"id":3883,"width":25,"height":45},{"x":0,"y":45,"fileNum":406,"id":3884,"width":25,"height":45},{"x":25,"y":45,"fileNum":406,"id":3885,"width":25,"height":45},{"x":50,"y":45,"fileNum":406,"id":3886,"width":25,"height":45},{"x":75,"y":45,"fileNum":406,"id":3887,"width":25,"height":45},{"x":100,"y":45,"fileNum":406,"id":3888,"width":25,"height":45},{"x":125,"y":45,"fileNum":406,"id":3889,"width":25,"height":45},{"x":0,"y":90,"fileNum":406,"id":3890,"width":25,"height":45},{"x":25,"y":90,"fileNum":406,"id":3891,"width":25,"height":45},{"x":50,"y":90,"fileNum":406,"id":3892,"width":25,"height":45},{"x":75,"y":90,"fileNum":406,"id":3893,"width":25,"height":45},{"x":100,"y":90,"fileNum":406,"id":3894,"width":25,"height":45},{"x":0,"y":135,"fileNum":406,"id":3895,"width":25,"height":45},{"x":25,"y":135,"fileNum":406,"id":3896,"width":25,"height":45},{"x":50,"y":135,"fileNum":406,"id":3897,"width":25,"height":45},{"x":75,"y":135,"fileNum":406,"id":3898,"width":25,"height":45},{"x":100,"y":135,"fileNum":406,"id":3899,"width":25,"height":45},{"x":0,"y":0,"fileNum":407,"id":3904,"width":25,"height":45},{"x":25,"y":0,"fileNum":407,"id":3905,"width":25,"height":45},{"x":50,"y":0,"fileNum":407,"id":3906,"width":25,"height":45},{"x":75,"y":0,"fileNum":407,"id":3907,"width":25,"height":45},{"x":100,"y":0,"fileNum":407,"id":3908,"width":25,"height":45},{"x":125,"y":0,"fileNum":407,"id":3909,"width":25,"height":45},{"x":0,"y":45,"fileNum":407,"id":3910,"width":25,"height":45},{"x":25,"y":45,"fileNum":407,"id":3911,"width":25,"height":45},{"x":50,"y":45,"fileNum":407,"id":3912,"width":25,"height":45},{"x":75,"y":45,"fileNum":407,"id":3913,"width":25,"height":45},{"x":100,"y":45,"fileNum":407,"id":3914,"width":25,"height":45},{"x":125,"y":45,"fileNum":407,"id":3915,"width":25,"height":45},{"x":0,"y":90,"fileNum":407,"id":3916,"width":25,"height":45},{"x":25,"y":90,"fileNum":407,"id":3917,"width":25,"height":45},{"x":50,"y":90,"fileNum":407,"id":3918,"width":25,"height":45},{"x":75,"y":90,"fileNum":407,"id":3919,"width":25,"height":45},{"x":100,"y":90,"fileNum":407,"id":3920,"width":25,"height":45},{"x":0,"y":135,"fileNum":407,"id":3921,"width":25,"height":45},{"x":25,"y":135,"fileNum":407,"id":3922,"width":25,"height":45},{"x":50,"y":135,"fileNum":407,"id":3923,"width":25,"height":45},{"x":75,"y":135,"fileNum":407,"id":3924,"width":25,"height":45},{"x":100,"y":135,"fileNum":407,"id":3925,"width":25,"height":45},{"x":0,"y":0,"fileNum":409,"id":3930,"width":25,"height":45},{"x":25,"y":0,"fileNum":409,"id":3931,"width":25,"height":45},{"x":50,"y":0,"fileNum":409,"id":3932,"width":25,"height":45},{"x":75,"y":0,"fileNum":409,"id":3933,"width":25,"height":45},{"x":100,"y":0,"fileNum":409,"id":3934,"width":25,"height":45},{"x":125,"y":0,"fileNum":409,"id":3935,"width":25,"height":45},{"x":0,"y":45,"fileNum":409,"id":3936,"width":25,"height":45},{"x":25,"y":45,"fileNum":409,"id":3937,"width":25,"height":45},{"x":50,"y":45,"fileNum":409,"id":3938,"width":25,"height":45},{"x":75,"y":45,"fileNum":409,"id":3939,"width":25,"height":45},{"x":100,"y":45,"fileNum":409,"id":3940,"width":25,"height":45},{"x":125,"y":45,"fileNum":409,"id":3941,"width":25,"height":45},{"x":0,"y":90,"fileNum":409,"id":3942,"width":25,"height":45},{"x":25,"y":90,"fileNum":409,"id":3943,"width":25,"height":45},{"x":50,"y":90,"fileNum":409,"id":3944,"width":25,"height":45},{"x":75,"y":90,"fileNum":409,"id":3945,"width":25,"height":45},{"x":100,"y":90,"fileNum":409,"id":3946,"width":25,"height":45},{"x":0,"y":135,"fileNum":409,"id":3947,"width":25,"height":45},{"x":25,"y":135,"fileNum":409,"id":3948,"width":25,"height":45},{"x":50,"y":135,"fileNum":409,"id":3949,"width":25,"height":45},{"x":75,"y":135,"fileNum":409,"id":3950,"width":25,"height":45},{"x":100,"y":135,"fileNum":409,"id":3951,"width":25,"height":45},{"x":0,"y":0,"fileNum":410,"id":3956,"width":25,"height":45},{"x":25,"y":0,"fileNum":410,"id":3957,"width":25,"height":45},{"x":50,"y":0,"fileNum":410,"id":3958,"width":25,"height":45},{"x":75,"y":0,"fileNum":410,"id":3959,"width":25,"height":45},{"x":100,"y":0,"fileNum":410,"id":3960,"width":25,"height":45},{"x":125,"y":0,"fileNum":410,"id":3961,"width":25,"height":45},{"x":0,"y":45,"fileNum":410,"id":3962,"width":25,"height":45},{"x":25,"y":45,"fileNum":410,"id":3963,"width":25,"height":45},{"x":50,"y":45,"fileNum":410,"id":3964,"width":25,"height":45},{"x":75,"y":45,"fileNum":410,"id":3965,"width":25,"height":45},{"x":100,"y":45,"fileNum":410,"id":3966,"width":25,"height":45},{"x":125,"y":45,"fileNum":410,"id":3967,"width":25,"height":45},{"x":0,"y":90,"fileNum":410,"id":3968,"width":25,"height":45},{"x":25,"y":90,"fileNum":410,"id":3969,"width":25,"height":45},{"x":50,"y":90,"fileNum":410,"id":3970,"width":25,"height":45},{"x":75,"y":90,"fileNum":410,"id":3971,"width":25,"height":45},{"x":100,"y":90,"fileNum":410,"id":3972,"width":25,"height":45},{"x":0,"y":135,"fileNum":410,"id":3973,"width":25,"height":45},{"x":25,"y":135,"fileNum":410,"id":3974,"width":25,"height":45},{"x":50,"y":135,"fileNum":410,"id":3975,"width":25,"height":45},{"x":75,"y":135,"fileNum":410,"id":3976,"width":25,"height":45},{"x":100,"y":135,"fileNum":410,"id":3977,"width":25,"height":45},{"x":0,"y":0,"fileNum":15203,"id":3982,"width":50,"height":50},{"x":51,"y":0,"fileNum":15203,"id":3983,"width":50,"height":50},{"x":102,"y":0,"fileNum":15203,"id":3984,"width":50,"height":50},{"x":153,"y":0,"fileNum":15203,"id":3985,"width":50,"height":50},{"x":204,"y":0,"fileNum":15203,"id":3986,"width":50,"height":50},{"x":255,"y":0,"fileNum":15203,"id":3987,"width":50,"height":50},{"x":306,"y":0,"fileNum":15203,"id":3988,"width":50,"height":50},{"x":357,"y":0,"fileNum":15203,"id":3989,"width":50,"height":50},{"x":408,"y":0,"fileNum":15203,"id":3990,"width":50,"height":50},{"x":459,"y":0,"fileNum":15203,"id":3991,"width":50,"height":50},{"x":510,"y":0,"fileNum":15203,"id":3992,"width":50,"height":50},{"x":0,"y":0,"fileNum":12011,"id":3994,"width":64,"height":64},{"x":64,"y":0,"fileNum":12011,"id":3995,"width":64,"height":64},{"x":0,"y":64,"fileNum":12011,"id":3996,"width":64,"height":64},{"x":64,"y":64,"fileNum":12011,"id":3997,"width":64,"height":64},{"x":0,"y":128,"fileNum":12011,"id":3998,"width":64,"height":64},{"x":64,"y":128,"fileNum":12011,"id":3999,"width":64,"height":64},{"x":0,"y":135,"fileNum":178,"id":4000,"width":25,"height":45},{"x":25,"y":135,"fileNum":178,"id":4001,"width":25,"height":45},{"x":50,"y":135,"fileNum":178,"id":4002,"width":25,"height":45},{"x":75,"y":135,"fileNum":178,"id":4003,"width":25,"height":45},{"x":100,"y":135,"fileNum":178,"id":4004,"width":25,"height":45},{"x":0,"y":0,"fileNum":179,"id":4005,"width":25,"height":45},{"x":25,"y":0,"fileNum":179,"id":4006,"width":25,"height":45},{"x":50,"y":0,"fileNum":179,"id":4007,"width":25,"height":45},{"x":75,"y":0,"fileNum":179,"id":4008,"width":25,"height":45},{"x":100,"y":0,"fileNum":179,"id":4009,"width":25,"height":45},{"x":125,"y":0,"fileNum":179,"id":4010,"width":25,"height":45},{"x":0,"y":45,"fileNum":179,"id":4011,"width":25,"height":45},{"x":25,"y":45,"fileNum":179,"id":4012,"width":25,"height":45},{"x":50,"y":45,"fileNum":179,"id":4013,"width":25,"height":45},{"x":75,"y":45,"fileNum":179,"id":4014,"width":25,"height":45},{"x":100,"y":45,"fileNum":179,"id":4015,"width":25,"height":45},{"x":125,"y":45,"fileNum":179,"id":4016,"width":25,"height":45},{"x":0,"y":90,"fileNum":179,"id":4017,"width":25,"height":45},{"x":25,"y":90,"fileNum":179,"id":4018,"width":25,"height":45},{"x":50,"y":90,"fileNum":179,"id":4019,"width":25,"height":45},{"x":75,"y":90,"fileNum":179,"id":4020,"width":25,"height":45},{"x":100,"y":90,"fileNum":179,"id":4021,"width":25,"height":45},{"x":0,"y":135,"fileNum":179,"id":4022,"width":25,"height":45},{"x":25,"y":135,"fileNum":179,"id":4023,"width":25,"height":45},{"x":50,"y":135,"fileNum":179,"id":4024,"width":25,"height":45},{"x":75,"y":135,"fileNum":179,"id":4025,"width":25,"height":45},{"x":100,"y":135,"fileNum":179,"id":4026,"width":25,"height":45},{"x":0,"y":0,"fileNum":180,"id":4027,"width":25,"height":45},{"x":25,"y":0,"fileNum":180,"id":4028,"width":25,"height":45},{"x":50,"y":0,"fileNum":180,"id":4029,"width":25,"height":45},{"x":75,"y":0,"fileNum":180,"id":4030,"width":25,"height":45},{"x":100,"y":0,"fileNum":180,"id":4031,"width":25,"height":45},{"x":125,"y":0,"fileNum":180,"id":4032,"width":25,"height":45},{"x":0,"y":45,"fileNum":180,"id":4033,"width":25,"height":45},{"x":25,"y":45,"fileNum":180,"id":4034,"width":25,"height":45},{"x":50,"y":45,"fileNum":180,"id":4035,"width":25,"height":45},{"x":75,"y":45,"fileNum":180,"id":4036,"width":25,"height":45},{"x":100,"y":45,"fileNum":180,"id":4037,"width":25,"height":45},{"x":125,"y":45,"fileNum":180,"id":4038,"width":25,"height":45},{"x":0,"y":90,"fileNum":180,"id":4039,"width":25,"height":45},{"x":25,"y":90,"fileNum":180,"id":4040,"width":25,"height":45},{"x":50,"y":90,"fileNum":180,"id":4041,"width":25,"height":45},{"x":75,"y":90,"fileNum":180,"id":4042,"width":25,"height":45},{"x":100,"y":90,"fileNum":180,"id":4043,"width":25,"height":45},{"x":0,"y":135,"fileNum":180,"id":4044,"width":25,"height":45},{"x":25,"y":135,"fileNum":180,"id":4045,"width":25,"height":45},{"x":50,"y":135,"fileNum":180,"id":4046,"width":25,"height":45},{"x":75,"y":135,"fileNum":180,"id":4047,"width":25,"height":45},{"x":100,"y":135,"fileNum":180,"id":4048,"width":25,"height":45},{"x":0,"y":0,"fileNum":181,"id":4049,"width":25,"height":45},{"x":25,"y":0,"fileNum":181,"id":4050,"width":25,"height":45},{"x":50,"y":0,"fileNum":181,"id":4051,"width":25,"height":45},{"x":75,"y":0,"fileNum":181,"id":4052,"width":25,"height":45},{"x":100,"y":0,"fileNum":181,"id":4053,"width":25,"height":45},{"x":125,"y":0,"fileNum":181,"id":4054,"width":25,"height":45},{"x":0,"y":45,"fileNum":181,"id":4055,"width":25,"height":45},{"x":25,"y":45,"fileNum":181,"id":4056,"width":25,"height":45},{"x":50,"y":45,"fileNum":181,"id":4057,"width":25,"height":45},{"x":75,"y":45,"fileNum":181,"id":4058,"width":25,"height":45},{"x":100,"y":45,"fileNum":181,"id":4059,"width":25,"height":45},{"x":125,"y":45,"fileNum":181,"id":4060,"width":25,"height":45},{"x":0,"y":90,"fileNum":181,"id":4061,"width":25,"height":45},{"x":25,"y":90,"fileNum":181,"id":4062,"width":25,"height":45},{"x":50,"y":90,"fileNum":181,"id":4063,"width":25,"height":45},{"x":75,"y":90,"fileNum":181,"id":4064,"width":25,"height":45},{"x":100,"y":90,"fileNum":181,"id":4065,"width":25,"height":45},{"x":0,"y":135,"fileNum":181,"id":4066,"width":25,"height":45},{"x":25,"y":135,"fileNum":181,"id":4067,"width":25,"height":45},{"x":50,"y":135,"fileNum":181,"id":4068,"width":25,"height":45},{"x":75,"y":135,"fileNum":181,"id":4069,"width":25,"height":45},{"x":100,"y":135,"fileNum":181,"id":4070,"width":25,"height":45},{"x":0,"y":0,"fileNum":4095,"id":4071,"width":30,"height":20},{"x":29,"y":0,"fileNum":4095,"id":4072,"width":30,"height":20},{"x":58,"y":0,"fileNum":4095,"id":4073,"width":30,"height":20},{"x":87,"y":0,"fileNum":4095,"id":4074,"width":30,"height":20},{"x":0,"y":19,"fileNum":4095,"id":4075,"width":30,"height":20},{"x":29,"y":19,"fileNum":4095,"id":4076,"width":30,"height":20},{"x":58,"y":19,"fileNum":4095,"id":4077,"width":30,"height":20},{"x":87,"y":19,"fileNum":4095,"id":4078,"width":30,"height":20},{"x":0,"y":38,"fileNum":4095,"id":4079,"width":30,"height":20},{"x":29,"y":38,"fileNum":4095,"id":4080,"width":30,"height":20},{"x":58,"y":38,"fileNum":4095,"id":4081,"width":30,"height":20},{"x":87,"y":38,"fileNum":4095,"id":4082,"width":30,"height":20},{"x":0,"y":57,"fileNum":4095,"id":4083,"width":30,"height":20},{"x":29,"y":57,"fileNum":4095,"id":4084,"width":30,"height":20},{"x":58,"y":57,"fileNum":4095,"id":4085,"width":30,"height":20},{"x":87,"y":57,"fileNum":4095,"id":4086,"width":30,"height":20},{"x":0,"y":0,"fileNum":182,"id":4087,"width":25,"height":45},{"x":25,"y":0,"fileNum":182,"id":4088,"width":25,"height":45},{"x":50,"y":0,"fileNum":182,"id":4089,"width":25,"height":45},{"x":75,"y":0,"fileNum":182,"id":4090,"width":25,"height":45},{"x":100,"y":0,"fileNum":182,"id":4091,"width":25,"height":45},{"x":125,"y":0,"fileNum":182,"id":4092,"width":25,"height":45},{"x":0,"y":45,"fileNum":182,"id":4093,"width":25,"height":45},{"x":25,"y":45,"fileNum":182,"id":4094,"width":25,"height":45},{"x":50,"y":45,"fileNum":182,"id":4095,"width":25,"height":45},{"x":75,"y":45,"fileNum":182,"id":4096,"width":25,"height":45},{"x":100,"y":45,"fileNum":182,"id":4097,"width":25,"height":45},{"x":125,"y":45,"fileNum":182,"id":4098,"width":25,"height":45},{"x":0,"y":90,"fileNum":182,"id":4099,"width":25,"height":45},{"x":25,"y":90,"fileNum":182,"id":4100,"width":25,"height":45},{"x":50,"y":90,"fileNum":182,"id":4101,"width":25,"height":45},{"x":75,"y":90,"fileNum":182,"id":4102,"width":25,"height":45},{"x":100,"y":90,"fileNum":182,"id":4103,"width":25,"height":45},{"x":0,"y":135,"fileNum":182,"id":4104,"width":25,"height":45},{"x":25,"y":135,"fileNum":182,"id":4105,"width":25,"height":45},{"x":50,"y":135,"fileNum":182,"id":4106,"width":25,"height":45},{"x":75,"y":135,"fileNum":182,"id":4107,"width":25,"height":45},{"x":100,"y":135,"fileNum":182,"id":4108,"width":25,"height":45},{"x":0,"y":0,"fileNum":24005,"id":4109,"width":25,"height":45},{"x":25,"y":0,"fileNum":24005,"id":4110,"width":25,"height":45},{"x":50,"y":0,"fileNum":24005,"id":4111,"width":25,"height":45},{"x":75,"y":0,"fileNum":24005,"id":4112,"width":25,"height":45},{"x":100,"y":0,"fileNum":24005,"id":4113,"width":25,"height":45},{"x":125,"y":0,"fileNum":24005,"id":4114,"width":25,"height":45},{"x":0,"y":45,"fileNum":24005,"id":4115,"width":25,"height":45},{"x":25,"y":45,"fileNum":24005,"id":4116,"width":25,"height":45},{"x":50,"y":45,"fileNum":24005,"id":4117,"width":25,"height":45},{"x":75,"y":45,"fileNum":24005,"id":4118,"width":25,"height":45},{"x":100,"y":45,"fileNum":24005,"id":4119,"width":25,"height":45},{"x":125,"y":45,"fileNum":24005,"id":4120,"width":25,"height":45},{"x":0,"y":90,"fileNum":24005,"id":4121,"width":25,"height":45},{"x":25,"y":90,"fileNum":24005,"id":4122,"width":25,"height":45},{"x":50,"y":90,"fileNum":24005,"id":4123,"width":25,"height":45},{"x":75,"y":90,"fileNum":24005,"id":4124,"width":25,"height":45},{"x":100,"y":90,"fileNum":24005,"id":4125,"width":25,"height":45},{"x":0,"y":135,"fileNum":24005,"id":4126,"width":25,"height":45},{"x":25,"y":135,"fileNum":24005,"id":4127,"width":25,"height":45},{"x":50,"y":135,"fileNum":24005,"id":4128,"width":25,"height":45},{"x":75,"y":135,"fileNum":24005,"id":4129,"width":25,"height":45},{"x":100,"y":135,"fileNum":24005,"id":4130,"width":25,"height":45},{"x":0,"y":192,"fileNum":12011,"id":4131,"width":64,"height":64},{"x":64,"y":192,"fileNum":12011,"id":4132,"width":64,"height":64},{"x":128,"y":128,"fileNum":12011,"id":4133,"width":64,"height":64},{"x":192,"y":128,"fileNum":12011,"id":4134,"width":64,"height":64},{"x":0,"y":0,"fileNum":183,"id":4135,"width":25,"height":45},{"x":25,"y":0,"fileNum":183,"id":4136,"width":25,"height":45},{"x":50,"y":0,"fileNum":183,"id":4137,"width":25,"height":45},{"x":75,"y":0,"fileNum":183,"id":4138,"width":25,"height":45},{"x":100,"y":0,"fileNum":183,"id":4139,"width":25,"height":45},{"x":125,"y":0,"fileNum":183,"id":4140,"width":25,"height":45},{"x":0,"y":45,"fileNum":183,"id":4141,"width":25,"height":45},{"x":25,"y":45,"fileNum":183,"id":4142,"width":25,"height":45},{"x":50,"y":45,"fileNum":183,"id":4143,"width":25,"height":45},{"x":75,"y":45,"fileNum":183,"id":4144,"width":25,"height":45},{"x":100,"y":45,"fileNum":183,"id":4145,"width":25,"height":45},{"x":125,"y":45,"fileNum":183,"id":4146,"width":25,"height":45},{"x":0,"y":90,"fileNum":183,"id":4147,"width":25,"height":45},{"x":25,"y":90,"fileNum":183,"id":4148,"width":25,"height":45},{"x":50,"y":90,"fileNum":183,"id":4149,"width":25,"height":45},{"x":75,"y":90,"fileNum":183,"id":4150,"width":25,"height":45},{"x":100,"y":90,"fileNum":183,"id":4151,"width":25,"height":45},{"x":0,"y":135,"fileNum":183,"id":4152,"width":25,"height":45},{"x":25,"y":135,"fileNum":183,"id":4153,"width":25,"height":45},{"x":50,"y":135,"fileNum":183,"id":4154,"width":25,"height":45},{"x":75,"y":135,"fileNum":183,"id":4155,"width":25,"height":45},{"x":100,"y":135,"fileNum":183,"id":4156,"width":25,"height":45},{"x":0,"y":0,"fileNum":184,"id":4157,"width":25,"height":45},{"x":25,"y":0,"fileNum":184,"id":4158,"width":25,"height":45},{"x":50,"y":0,"fileNum":184,"id":4159,"width":25,"height":45},{"x":75,"y":0,"fileNum":184,"id":4160,"width":25,"height":45},{"x":100,"y":0,"fileNum":184,"id":4161,"width":25,"height":45},{"x":125,"y":0,"fileNum":184,"id":4162,"width":25,"height":45},{"x":0,"y":45,"fileNum":184,"id":4163,"width":25,"height":45},{"x":25,"y":45,"fileNum":184,"id":4164,"width":25,"height":45},{"x":50,"y":45,"fileNum":184,"id":4165,"width":25,"height":45},{"x":75,"y":45,"fileNum":184,"id":4166,"width":25,"height":45},{"x":100,"y":45,"fileNum":184,"id":4167,"width":25,"height":45},{"x":125,"y":45,"fileNum":184,"id":4168,"width":25,"height":45},{"x":0,"y":90,"fileNum":184,"id":4169,"width":25,"height":45},{"x":25,"y":90,"fileNum":184,"id":4170,"width":25,"height":45},{"x":50,"y":90,"fileNum":184,"id":4171,"width":25,"height":45},{"x":75,"y":90,"fileNum":184,"id":4172,"width":25,"height":45},{"x":100,"y":90,"fileNum":184,"id":4173,"width":25,"height":45},{"x":0,"y":135,"fileNum":184,"id":4174,"width":25,"height":45},{"x":25,"y":135,"fileNum":184,"id":4175,"width":25,"height":45},{"x":50,"y":135,"fileNum":184,"id":4176,"width":25,"height":45},{"x":75,"y":135,"fileNum":184,"id":4177,"width":25,"height":45},{"x":100,"y":135,"fileNum":184,"id":4178,"width":25,"height":45},{"x":0,"y":0,"fileNum":185,"id":4179,"width":25,"height":45},{"x":25,"y":0,"fileNum":185,"id":4180,"width":25,"height":45},{"x":50,"y":0,"fileNum":185,"id":4181,"width":25,"height":45},{"x":75,"y":0,"fileNum":185,"id":4182,"width":25,"height":45},{"x":100,"y":0,"fileNum":185,"id":4183,"width":25,"height":45},{"x":125,"y":0,"fileNum":185,"id":4184,"width":25,"height":45},{"x":0,"y":45,"fileNum":185,"id":4185,"width":25,"height":45},{"x":25,"y":45,"fileNum":185,"id":4186,"width":25,"height":45},{"x":50,"y":45,"fileNum":185,"id":4187,"width":25,"height":45},{"x":75,"y":45,"fileNum":185,"id":4188,"width":25,"height":45},{"x":100,"y":45,"fileNum":185,"id":4189,"width":25,"height":45},{"x":125,"y":45,"fileNum":185,"id":4190,"width":25,"height":45},{"x":0,"y":90,"fileNum":185,"id":4191,"width":25,"height":45},{"x":25,"y":90,"fileNum":185,"id":4192,"width":25,"height":45},{"x":50,"y":90,"fileNum":185,"id":4193,"width":25,"height":45},{"x":75,"y":90,"fileNum":185,"id":4194,"width":25,"height":45},{"x":100,"y":90,"fileNum":185,"id":4195,"width":25,"height":45},{"x":0,"y":135,"fileNum":185,"id":4196,"width":25,"height":45},{"x":25,"y":135,"fileNum":185,"id":4197,"width":25,"height":45},{"x":50,"y":135,"fileNum":185,"id":4198,"width":25,"height":45},{"x":75,"y":135,"fileNum":185,"id":4199,"width":25,"height":45},{"x":100,"y":135,"fileNum":185,"id":4200,"width":25,"height":45},{"x":0,"y":0,"fileNum":186,"id":4201,"width":25,"height":45},{"x":25,"y":0,"fileNum":186,"id":4202,"width":25,"height":45},{"x":50,"y":0,"fileNum":186,"id":4203,"width":25,"height":45},{"x":75,"y":0,"fileNum":186,"id":4204,"width":25,"height":45},{"x":100,"y":0,"fileNum":186,"id":4205,"width":25,"height":45},{"x":125,"y":0,"fileNum":186,"id":4206,"width":25,"height":45},{"x":0,"y":45,"fileNum":186,"id":4207,"width":25,"height":45},{"x":25,"y":45,"fileNum":186,"id":4208,"width":25,"height":45},{"x":50,"y":45,"fileNum":186,"id":4209,"width":25,"height":45},{"x":75,"y":45,"fileNum":186,"id":4210,"width":25,"height":45},{"x":100,"y":45,"fileNum":186,"id":4211,"width":25,"height":45},{"x":125,"y":45,"fileNum":186,"id":4212,"width":25,"height":45},{"x":0,"y":90,"fileNum":186,"id":4213,"width":25,"height":45},{"x":25,"y":90,"fileNum":186,"id":4214,"width":25,"height":45},{"x":50,"y":90,"fileNum":186,"id":4215,"width":25,"height":45},{"x":75,"y":90,"fileNum":186,"id":4216,"width":25,"height":45},{"x":100,"y":90,"fileNum":186,"id":4217,"width":25,"height":45},{"x":0,"y":135,"fileNum":186,"id":4218,"width":25,"height":45},{"x":25,"y":135,"fileNum":186,"id":4219,"width":25,"height":45},{"x":50,"y":135,"fileNum":186,"id":4220,"width":25,"height":45},{"x":75,"y":135,"fileNum":186,"id":4221,"width":25,"height":45},{"x":100,"y":135,"fileNum":186,"id":4222,"width":25,"height":45},{"x":0,"y":0,"fileNum":187,"id":4223,"width":25,"height":45},{"x":25,"y":0,"fileNum":187,"id":4224,"width":25,"height":45},{"x":50,"y":0,"fileNum":187,"id":4225,"width":25,"height":45},{"x":75,"y":0,"fileNum":187,"id":4226,"width":25,"height":45},{"x":100,"y":0,"fileNum":187,"id":4227,"width":25,"height":45},{"x":125,"y":0,"fileNum":187,"id":4228,"width":25,"height":45},{"x":0,"y":45,"fileNum":187,"id":4229,"width":25,"height":45},{"x":25,"y":45,"fileNum":187,"id":4230,"width":25,"height":45},{"x":50,"y":45,"fileNum":187,"id":4231,"width":25,"height":45},{"x":75,"y":45,"fileNum":187,"id":4232,"width":25,"height":45},{"x":100,"y":45,"fileNum":187,"id":4233,"width":25,"height":45},{"x":125,"y":45,"fileNum":187,"id":4234,"width":25,"height":45},{"x":0,"y":90,"fileNum":187,"id":4235,"width":25,"height":45},{"x":25,"y":90,"fileNum":187,"id":4236,"width":25,"height":45},{"x":50,"y":90,"fileNum":187,"id":4237,"width":25,"height":45},{"x":75,"y":90,"fileNum":187,"id":4238,"width":25,"height":45},{"x":100,"y":90,"fileNum":187,"id":4239,"width":25,"height":45},{"x":0,"y":135,"fileNum":187,"id":4240,"width":25,"height":45},{"x":25,"y":135,"fileNum":187,"id":4241,"width":25,"height":45},{"x":50,"y":135,"fileNum":187,"id":4242,"width":25,"height":45},{"x":75,"y":135,"fileNum":187,"id":4243,"width":25,"height":45},{"x":100,"y":135,"fileNum":187,"id":4244,"width":25,"height":45},{"x":0,"y":0,"fileNum":16018,"id":4245,"width":25,"height":45},{"x":25,"y":0,"fileNum":16018,"id":4246,"width":25,"height":45},{"x":50,"y":0,"fileNum":16018,"id":4247,"width":25,"height":45},{"x":75,"y":0,"fileNum":16018,"id":4248,"width":25,"height":45},{"x":100,"y":0,"fileNum":16018,"id":4249,"width":25,"height":45},{"x":125,"y":0,"fileNum":16018,"id":4250,"width":25,"height":45},{"x":0,"y":45,"fileNum":16018,"id":4251,"width":25,"height":45},{"x":25,"y":45,"fileNum":16018,"id":4252,"width":25,"height":45},{"x":50,"y":45,"fileNum":16018,"id":4253,"width":25,"height":45},{"x":75,"y":45,"fileNum":16018,"id":4254,"width":25,"height":45},{"x":100,"y":45,"fileNum":16018,"id":4255,"width":25,"height":45},{"x":125,"y":45,"fileNum":16018,"id":4256,"width":25,"height":45},{"x":0,"y":90,"fileNum":16018,"id":4257,"width":25,"height":45},{"x":25,"y":90,"fileNum":16018,"id":4258,"width":25,"height":45},{"x":50,"y":90,"fileNum":16018,"id":4259,"width":25,"height":45},{"x":75,"y":90,"fileNum":16018,"id":4260,"width":25,"height":45},{"x":100,"y":90,"fileNum":16018,"id":4261,"width":25,"height":45},{"x":0,"y":135,"fileNum":16018,"id":4262,"width":25,"height":45},{"x":25,"y":135,"fileNum":16018,"id":4263,"width":25,"height":45},{"x":50,"y":135,"fileNum":16018,"id":4264,"width":25,"height":45},{"x":75,"y":135,"fileNum":16018,"id":4265,"width":25,"height":45},{"x":100,"y":135,"fileNum":16018,"id":4266,"width":25,"height":45},{"x":0,"y":0,"fileNum":16019,"id":4267,"width":25,"height":45},{"x":25,"y":0,"fileNum":16019,"id":4268,"width":25,"height":45},{"x":50,"y":0,"fileNum":16019,"id":4269,"width":25,"height":45},{"x":75,"y":0,"fileNum":16019,"id":4270,"width":25,"height":45},{"x":100,"y":0,"fileNum":16019,"id":4271,"width":25,"height":45},{"x":125,"y":0,"fileNum":16019,"id":4272,"width":25,"height":45},{"x":0,"y":45,"fileNum":16019,"id":4273,"width":25,"height":45},{"x":25,"y":45,"fileNum":16019,"id":4274,"width":25,"height":45},{"x":50,"y":45,"fileNum":16019,"id":4275,"width":25,"height":45},{"x":75,"y":45,"fileNum":16019,"id":4276,"width":25,"height":45},{"x":100,"y":45,"fileNum":16019,"id":4277,"width":25,"height":45},{"x":125,"y":45,"fileNum":16019,"id":4278,"width":25,"height":45},{"x":0,"y":90,"fileNum":16019,"id":4279,"width":25,"height":45},{"x":25,"y":90,"fileNum":16019,"id":4280,"width":25,"height":45},{"x":50,"y":90,"fileNum":16019,"id":4281,"width":25,"height":45},{"x":75,"y":90,"fileNum":16019,"id":4282,"width":25,"height":45},{"x":100,"y":90,"fileNum":16019,"id":4283,"width":25,"height":45},{"x":0,"y":135,"fileNum":16019,"id":4284,"width":25,"height":45},{"x":25,"y":135,"fileNum":16019,"id":4285,"width":25,"height":45},{"x":50,"y":135,"fileNum":16019,"id":4286,"width":25,"height":45},{"x":75,"y":135,"fileNum":16019,"id":4287,"width":25,"height":45},{"x":100,"y":135,"fileNum":16019,"id":4288,"width":25,"height":45},{"x":0,"y":0,"fileNum":20009,"id":4289,"width":25,"height":45},{"x":25,"y":0,"fileNum":20009,"id":4290,"width":25,"height":45},{"x":50,"y":0,"fileNum":20009,"id":4291,"width":25,"height":45},{"x":75,"y":0,"fileNum":20009,"id":4292,"width":25,"height":45},{"x":100,"y":0,"fileNum":20009,"id":4293,"width":25,"height":45},{"x":125,"y":0,"fileNum":20009,"id":4294,"width":25,"height":45},{"x":0,"y":45,"fileNum":20009,"id":4295,"width":25,"height":45},{"x":25,"y":45,"fileNum":20009,"id":4296,"width":25,"height":45},{"x":50,"y":45,"fileNum":20009,"id":4297,"width":25,"height":45},{"x":75,"y":45,"fileNum":20009,"id":4298,"width":25,"height":45},{"x":100,"y":45,"fileNum":20009,"id":4299,"width":25,"height":45},{"x":125,"y":45,"fileNum":20009,"id":4300,"width":25,"height":45},{"x":0,"y":90,"fileNum":20009,"id":4301,"width":25,"height":45},{"x":25,"y":90,"fileNum":20009,"id":4302,"width":25,"height":45},{"x":50,"y":90,"fileNum":20009,"id":4303,"width":25,"height":45},{"x":75,"y":90,"fileNum":20009,"id":4304,"width":25,"height":45},{"x":100,"y":90,"fileNum":20009,"id":4305,"width":25,"height":45},{"x":0,"y":135,"fileNum":20009,"id":4306,"width":25,"height":45},{"x":25,"y":135,"fileNum":20009,"id":4307,"width":25,"height":45},{"x":50,"y":135,"fileNum":20009,"id":4308,"width":25,"height":45},{"x":75,"y":135,"fileNum":20009,"id":4309,"width":25,"height":45},{"x":100,"y":135,"fileNum":20009,"id":4310,"width":25,"height":45},{"x":0,"y":0,"fileNum":18006,"id":4311,"width":17,"height":16},{"x":17,"y":0,"fileNum":18006,"id":4312,"width":17,"height":16},{"x":128,"y":192,"fileNum":12011,"id":4313,"width":64,"height":64},{"x":34,"y":0,"fileNum":18006,"id":4314,"width":17,"height":16},{"x":51,"y":0,"fileNum":18006,"id":4315,"width":17,"height":16},{"x":0,"y":0,"fileNum":18007,"id":4316,"width":17,"height":16},{"x":17,"y":0,"fileNum":18007,"id":4317,"width":17,"height":16},{"x":34,"y":0,"fileNum":18007,"id":4318,"width":17,"height":16},{"x":51,"y":0,"fileNum":18007,"id":4319,"width":17,"height":16},{"x":0,"y":0,"fileNum":4096,"id":4320,"width":32,"height":25},{"x":31,"y":0,"fileNum":4096,"id":4321,"width":32,"height":25},{"x":0,"y":24,"fileNum":4096,"id":4322,"width":32,"height":25},{"x":31,"y":24,"fileNum":4096,"id":4323,"width":32,"height":25},{"x":2,"y":48,"fileNum":4096,"id":4324,"width":32,"height":25},{"x":32,"y":48,"fileNum":4096,"id":4325,"width":32,"height":25},{"x":0,"y":72,"fileNum":4096,"id":4326,"width":32,"height":25},{"x":31,"y":72,"fileNum":4096,"id":4327,"width":32,"height":25},{"x":0,"y":0,"fileNum":4097,"id":4328,"width":32,"height":25},{"x":31,"y":0,"fileNum":4097,"id":4329,"width":32,"height":25},{"x":0,"y":24,"fileNum":4097,"id":4330,"width":32,"height":25},{"x":31,"y":24,"fileNum":4097,"id":4331,"width":32,"height":25},{"x":1,"y":48,"fileNum":4097,"id":4332,"width":32,"height":25},{"x":32,"y":48,"fileNum":4097,"id":4333,"width":32,"height":25},{"x":0,"y":72,"fileNum":4097,"id":4334,"width":32,"height":25},{"x":31,"y":72,"fileNum":4097,"id":4335,"width":32,"height":25},{"x":0,"y":0,"fileNum":4098,"id":4336,"width":24,"height":48},{"x":24,"y":0,"fileNum":4098,"id":4337,"width":24,"height":48},{"x":47,"y":0,"fileNum":4098,"id":4338,"width":24,"height":48},{"x":70,"y":0,"fileNum":4098,"id":4339,"width":24,"height":48},{"x":94,"y":0,"fileNum":4098,"id":4340,"width":24,"height":48},{"x":119,"y":0,"fileNum":4098,"id":4341,"width":24,"height":48},{"x":143,"y":0,"fileNum":4098,"id":4342,"width":24,"height":48},{"x":166,"y":0,"fileNum":4098,"id":4343,"width":24,"height":48},{"x":0,"y":48,"fileNum":4098,"id":4344,"width":24,"height":48},{"x":24,"y":48,"fileNum":4098,"id":4345,"width":24,"height":48},{"x":47,"y":48,"fileNum":4098,"id":4346,"width":24,"height":48},{"x":70,"y":48,"fileNum":4098,"id":4347,"width":24,"height":48},{"x":94,"y":48,"fileNum":4098,"id":4348,"width":24,"height":48},{"x":118,"y":48,"fileNum":4098,"id":4349,"width":24,"height":48},{"x":142,"y":48,"fileNum":4098,"id":4350,"width":24,"height":48},{"x":166,"y":48,"fileNum":4098,"id":4351,"width":24,"height":48},{"x":0,"y":94,"fileNum":4098,"id":4352,"width":24,"height":48},{"x":23,"y":94,"fileNum":4098,"id":4353,"width":24,"height":48},{"x":46,"y":94,"fileNum":4098,"id":4354,"width":24,"height":48},{"x":70,"y":94,"fileNum":4098,"id":4355,"width":24,"height":48},{"x":94,"y":94,"fileNum":4098,"id":4356,"width":24,"height":48},{"x":117,"y":94,"fileNum":4098,"id":4357,"width":24,"height":48},{"x":141,"y":94,"fileNum":4098,"id":4358,"width":24,"height":48},{"x":165,"y":94,"fileNum":4098,"id":4359,"width":24,"height":48},{"x":0,"y":141,"fileNum":4098,"id":4360,"width":24,"height":48},{"x":23,"y":141,"fileNum":4098,"id":4361,"width":24,"height":48},{"x":47,"y":141,"fileNum":4098,"id":4362,"width":24,"height":48},{"x":70,"y":141,"fileNum":4098,"id":4363,"width":24,"height":48},{"x":94,"y":141,"fileNum":4098,"id":4364,"width":24,"height":48},{"x":118,"y":141,"fileNum":4098,"id":4365,"width":24,"height":48},{"x":143,"y":141,"fileNum":4098,"id":4366,"width":24,"height":48},{"x":166,"y":141,"fileNum":4098,"id":4367,"width":24,"height":48},{"x":0,"y":0,"fileNum":4099,"id":4368,"width":32,"height":25},{"x":31,"y":0,"fileNum":4099,"id":4369,"width":32,"height":25},{"x":62,"y":0,"fileNum":4099,"id":4370,"width":32,"height":25},{"x":0,"y":24,"fileNum":4099,"id":4371,"width":32,"height":25},{"x":31,"y":24,"fileNum":4099,"id":4372,"width":32,"height":25},{"x":62,"y":24,"fileNum":4099,"id":4373,"width":32,"height":25},{"x":0,"y":48,"fileNum":4099,"id":4374,"width":32,"height":25},{"x":31,"y":48,"fileNum":4099,"id":4375,"width":32,"height":25},{"x":62,"y":48,"fileNum":4099,"id":4376,"width":32,"height":25},{"x":0,"y":72,"fileNum":4099,"id":4377,"width":32,"height":25},{"x":31,"y":72,"fileNum":4099,"id":4378,"width":32,"height":25},{"x":62,"y":72,"fileNum":4099,"id":4379,"width":32,"height":25},{"x":0,"y":0,"fileNum":4100,"id":4380,"width":32,"height":25},{"x":31,"y":0,"fileNum":4100,"id":4381,"width":32,"height":25},{"x":62,"y":0,"fileNum":4100,"id":4382,"width":32,"height":25},{"x":0,"y":24,"fileNum":4100,"id":4383,"width":32,"height":25},{"x":31,"y":24,"fileNum":4100,"id":4384,"width":32,"height":25},{"x":62,"y":24,"fileNum":4100,"id":4385,"width":32,"height":25},{"x":0,"y":48,"fileNum":4100,"id":4386,"width":32,"height":25},{"x":31,"y":48,"fileNum":4100,"id":4387,"width":32,"height":25},{"x":62,"y":48,"fileNum":4100,"id":4388,"width":32,"height":25},{"x":0,"y":72,"fileNum":4100,"id":4389,"width":32,"height":25},{"x":31,"y":72,"fileNum":4100,"id":4390,"width":32,"height":25},{"x":62,"y":72,"fileNum":4100,"id":4391,"width":32,"height":25},{"x":0,"y":0,"fileNum":15121,"id":4392,"width":100,"height":100},{"x":100,"y":0,"fileNum":15121,"id":4393,"width":100,"height":100},{"x":200,"y":0,"fileNum":15121,"id":4394,"width":100,"height":100},{"x":300,"y":0,"fileNum":15121,"id":4395,"width":100,"height":100},{"x":1,"y":100,"fileNum":15121,"id":4396,"width":100,"height":100},{"x":100,"y":100,"fileNum":15121,"id":4397,"width":100,"height":100},{"x":200,"y":100,"fileNum":15121,"id":4398,"width":100,"height":100},{"x":300,"y":100,"fileNum":15121,"id":4399,"width":100,"height":100},{"x":0,"y":200,"fileNum":15121,"id":4400,"width":100,"height":100},{"x":100,"y":200,"fileNum":15121,"id":4401,"width":100,"height":100},{"x":200,"y":200,"fileNum":15121,"id":4402,"width":100,"height":100},{"x":300,"y":200,"fileNum":15121,"id":4403,"width":100,"height":100},{"x":0,"y":0,"fileNum":4106,"id":4404,"width":64,"height":64},{"x":64,"y":0,"fileNum":4106,"id":4405,"width":64,"height":64},{"x":128,"y":0,"fileNum":4106,"id":4406,"width":64,"height":64},{"x":192,"y":0,"fileNum":4106,"id":4407,"width":64,"height":64},{"x":0,"y":64,"fileNum":4106,"id":4408,"width":64,"height":64},{"x":64,"y":64,"fileNum":4106,"id":4409,"width":64,"height":64},{"x":128,"y":64,"fileNum":4106,"id":4410,"width":64,"height":64},{"x":192,"y":64,"fileNum":4106,"id":4411,"width":64,"height":64},{"x":0,"y":0,"fileNum":4107,"id":4412,"width":64,"height":64},{"x":64,"y":0,"fileNum":4107,"id":4413,"width":64,"height":64},{"x":128,"y":0,"fileNum":4107,"id":4414,"width":64,"height":64},{"x":192,"y":0,"fileNum":4107,"id":4415,"width":64,"height":64},{"x":0,"y":64,"fileNum":4107,"id":4416,"width":64,"height":64},{"x":64,"y":64,"fileNum":4107,"id":4417,"width":64,"height":64},{"x":128,"y":64,"fileNum":4107,"id":4418,"width":64,"height":64},{"x":192,"y":64,"fileNum":4107,"id":4419,"width":64,"height":64},{"x":0,"y":0,"fileNum":4108,"id":4420,"width":64,"height":64},{"x":64,"y":0,"fileNum":4108,"id":4421,"width":64,"height":64},{"x":128,"y":0,"fileNum":4108,"id":4422,"width":64,"height":64},{"x":192,"y":0,"fileNum":4108,"id":4423,"width":64,"height":64},{"x":0,"y":64,"fileNum":4108,"id":4424,"width":64,"height":64},{"x":64,"y":64,"fileNum":4108,"id":4425,"width":64,"height":64},{"x":128,"y":64,"fileNum":4108,"id":4426,"width":64,"height":64},{"x":192,"y":64,"fileNum":4108,"id":4427,"width":64,"height":64},{"x":0,"y":0,"fileNum":4109,"id":4428,"width":64,"height":64},{"x":64,"y":0,"fileNum":4109,"id":4429,"width":64,"height":64},{"x":128,"y":0,"fileNum":4109,"id":4430,"width":64,"height":64},{"x":192,"y":0,"fileNum":4109,"id":4431,"width":64,"height":64},{"x":0,"y":64,"fileNum":4109,"id":4432,"width":64,"height":64},{"x":64,"y":64,"fileNum":4109,"id":4433,"width":64,"height":64},{"x":128,"y":64,"fileNum":4109,"id":4434,"width":64,"height":64},{"x":192,"y":64,"fileNum":4109,"id":4435,"width":64,"height":64},{"x":0,"y":0,"fileNum":4110,"id":4436,"width":64,"height":64},{"x":64,"y":0,"fileNum":4110,"id":4437,"width":64,"height":64},{"x":128,"y":0,"fileNum":4110,"id":4438,"width":64,"height":64},{"x":0,"y":64,"fileNum":4110,"id":4439,"width":64,"height":64},{"x":64,"y":64,"fileNum":4110,"id":4440,"width":64,"height":64},{"x":128,"y":64,"fileNum":4110,"id":4441,"width":64,"height":64},{"x":0,"y":0,"fileNum":4112,"id":4442,"width":64,"height":64},{"x":64,"y":0,"fileNum":4112,"id":4443,"width":64,"height":64},{"x":128,"y":0,"fileNum":4112,"id":4444,"width":64,"height":64},{"x":0,"y":64,"fileNum":4112,"id":4445,"width":64,"height":64},{"x":64,"y":64,"fileNum":4112,"id":4446,"width":64,"height":64},{"x":128,"y":64,"fileNum":4112,"id":4447,"width":64,"height":64},{"x":2,"y":0,"fileNum":4113,"id":4448,"width":64,"height":64},{"x":66,"y":0,"fileNum":4113,"id":4449,"width":64,"height":64},{"x":131,"y":0,"fileNum":4113,"id":4450,"width":64,"height":64},{"x":2,"y":64,"fileNum":4113,"id":4451,"width":64,"height":64},{"x":66,"y":64,"fileNum":4113,"id":4452,"width":64,"height":64},{"x":131,"y":64,"fileNum":4113,"id":4453,"width":64,"height":64},{"x":0,"y":0,"fileNum":4114,"id":4454,"width":64,"height":64},{"x":64,"y":0,"fileNum":4114,"id":4455,"width":64,"height":64},{"x":128,"y":0,"fileNum":4114,"id":4456,"width":64,"height":64},{"x":0,"y":64,"fileNum":4114,"id":4457,"width":64,"height":64},{"x":64,"y":64,"fileNum":4114,"id":4458,"width":64,"height":64},{"x":128,"y":64,"fileNum":4114,"id":4459,"width":64,"height":64},{"x":0,"y":0,"fileNum":2092,"id":4460,"width":17,"height":50},{"x":17,"y":0,"fileNum":2092,"id":4461,"width":17,"height":50},{"x":34,"y":0,"fileNum":2092,"id":4462,"width":17,"height":50},{"x":51,"y":0,"fileNum":2092,"id":4463,"width":17,"height":50},{"x":0,"y":0,"fileNum":4068,"id":4464,"width":31,"height":25},{"x":31,"y":0,"fileNum":4068,"id":4465,"width":31,"height":25},{"x":62,"y":0,"fileNum":4068,"id":4466,"width":31,"height":25},{"x":0,"y":24,"fileNum":4068,"id":4467,"width":31,"height":25},{"x":31,"y":24,"fileNum":4068,"id":4468,"width":31,"height":25},{"x":62,"y":24,"fileNum":4068,"id":4469,"width":31,"height":25},{"x":0,"y":48,"fileNum":4068,"id":4470,"width":31,"height":25},{"x":31,"y":48,"fileNum":4068,"id":4471,"width":31,"height":25},{"x":62,"y":48,"fileNum":4068,"id":4472,"width":31,"height":25},{"x":0,"y":72,"fileNum":4068,"id":4473,"width":31,"height":25},{"x":31,"y":72,"fileNum":4068,"id":4474,"width":31,"height":25},{"x":62,"y":72,"fileNum":4068,"id":4475,"width":31,"height":25},{"x":0,"y":0,"fileNum":15008,"id":4480,"width":25,"height":50},{"x":25,"y":0,"fileNum":15008,"id":4481,"width":25,"height":50},{"x":50,"y":0,"fileNum":15008,"id":4482,"width":25,"height":50},{"x":75,"y":0,"fileNum":15008,"id":4483,"width":25,"height":50},{"x":0,"y":0,"fileNum":15009,"id":4484,"width":48,"height":32},{"x":47,"y":0,"fileNum":15009,"id":4485,"width":48,"height":32},{"x":93,"y":0,"fileNum":15009,"id":4486,"width":48,"height":32},{"x":142,"y":0,"fileNum":15009,"id":4487,"width":48,"height":32},{"x":0,"y":0,"fileNum":2094,"id":4490,"width":17,"height":50},{"x":17,"y":0,"fileNum":2094,"id":4491,"width":17,"height":50},{"x":34,"y":0,"fileNum":2094,"id":4492,"width":17,"height":50},{"x":51,"y":0,"fileNum":2094,"id":4493,"width":17,"height":50},{"x":0,"y":0,"fileNum":2095,"id":4494,"width":17,"height":50},{"x":17,"y":0,"fileNum":2095,"id":4495,"width":17,"height":50},{"x":34,"y":0,"fileNum":2095,"id":4496,"width":17,"height":50},{"x":51,"y":0,"fileNum":2095,"id":4497,"width":17,"height":50},{"x":0,"y":0,"fileNum":11000,"id":4498,"width":256,"height":96},{"x":0,"y":0,"fileNum":11001,"id":4499,"width":256,"height":160},{"x":0,"y":0,"fileNum":15075,"id":4500,"width":50,"height":59},{"x":0,"y":0,"fileNum":15076,"id":4501,"width":116,"height":65},{"x":0,"y":0,"fileNum":12013,"id":4502,"width":64,"height":64},{"x":0,"y":0,"fileNum":14000,"id":4503,"width":256,"height":185},{"x":0,"y":0,"fileNum":15077,"id":4504,"width":62,"height":65},{"x":192,"y":192,"fileNum":12011,"id":4505,"width":64,"height":64},{"x":128,"y":0,"fileNum":12012,"id":4506,"width":64,"height":64},{"x":192,"y":0,"fileNum":12012,"id":4507,"width":64,"height":64},{"x":128,"y":64,"fileNum":12012,"id":4508,"width":64,"height":64},{"x":192,"y":64,"fileNum":12012,"id":4509,"width":64,"height":64},{"x":0,"y":256,"fileNum":12012,"id":4510,"width":64,"height":64},{"x":64,"y":256,"fileNum":12012,"id":4511,"width":64,"height":128},{"x":0,"y":320,"fileNum":12012,"id":4512,"width":64,"height":64},{"x":64,"y":320,"fileNum":12012,"id":4513,"width":64,"height":64},{"x":128,"y":256,"fileNum":12012,"id":4514,"width":64,"height":64},{"x":192,"y":256,"fileNum":12012,"id":4515,"width":64,"height":64},{"x":0,"y":0,"fileNum":15123,"id":4540,"width":298,"height":154},{"x":0,"y":0,"fileNum":15124,"id":4541,"width":298,"height":154},{"x":0,"y":0,"fileNum":15125,"id":4542,"width":298,"height":154},{"x":0,"y":0,"fileNum":15126,"id":4543,"width":298,"height":154},{"x":0,"y":0,"fileNum":9018,"id":4545,"width":256,"height":256},{"x":0,"y":0,"fileNum":9019,"id":4546,"width":253,"height":391},{"x":29,"y":38,"fileNum":9020,"id":4547,"width":232,"height":146},{"x":128,"y":320,"fileNum":12012,"id":4597,"width":64,"height":64},{"x":192,"y":320,"fileNum":12012,"id":4598,"width":64,"height":64},{"x":0,"y":0,"fileNum":11047,"id":4599,"width":288,"height":256},{"x":0,"y":32,"fileNum":11048,"id":4600,"width":96,"height":192},{"x":0,"y":0,"fileNum":10004,"id":4664,"width":256,"height":194},{"x":0,"y":0,"fileNum":10005,"id":4665,"width":93,"height":182},{"x":93,"y":0,"fileNum":10005,"id":4666,"width":93,"height":182},{"x":0,"y":0,"fileNum":10006,"id":4667,"width":152,"height":221},{"x":0,"y":0,"fileNum":10007,"id":4668,"width":104,"height":179},{"x":0,"y":0,"fileNum":18019,"id":4694,"width":17,"height":16},{"x":17,"y":0,"fileNum":18019,"id":4695,"width":17,"height":16},{"x":34,"y":0,"fileNum":18019,"id":4696,"width":17,"height":16},{"x":51,"y":0,"fileNum":18019,"id":4697,"width":17,"height":16},{"x":0,"y":0,"fileNum":2128,"id":4750,"width":17,"height":50},{"x":17,"y":0,"fileNum":2128,"id":4751,"width":17,"height":50},{"x":34,"y":0,"fileNum":2128,"id":4752,"width":17,"height":50},{"x":51,"y":0,"fileNum":2128,"id":4753,"width":17,"height":50},{"x":0,"y":0,"fileNum":3072,"id":4782,"width":128,"height":128},{"x":0,"y":0,"fileNum":3073,"id":4783,"width":128,"height":128},{"x":0,"y":0,"fileNum":3074,"id":4784,"width":128,"height":128},{"x":0,"y":0,"fileNum":3075,"id":4785,"width":128,"height":128},{"x":0,"y":0,"fileNum":3076,"id":4786,"width":128,"height":128},{"x":0,"y":0,"fileNum":3077,"id":4787,"width":128,"height":128},{"x":0,"y":0,"fileNum":3078,"id":4788,"width":128,"height":128},{"x":0,"y":0,"fileNum":3079,"id":4789,"width":128,"height":128},{"x":0,"y":0,"fileNum":3080,"id":4790,"width":128,"height":128},{"x":0,"y":0,"fileNum":3081,"id":4791,"width":128,"height":128},{"x":0,"y":0,"fileNum":3083,"id":4792,"width":128,"height":128},{"x":0,"y":0,"fileNum":3085,"id":4793,"width":128,"height":128},{"x":0,"y":0,"fileNum":3086,"id":4794,"width":128,"height":128},{"x":0,"y":0,"fileNum":3087,"id":4795,"width":128,"height":128},{"x":0,"y":0,"fileNum":3088,"id":4796,"width":128,"height":128},{"x":0,"y":0,"fileNum":4126,"id":4798,"width":55,"height":50},{"x":55,"y":0,"fileNum":4126,"id":4799,"width":55,"height":50},{"x":110,"y":0,"fileNum":4126,"id":4800,"width":55,"height":50},{"x":165,"y":0,"fileNum":4126,"id":4801,"width":55,"height":50},{"x":220,"y":0,"fileNum":4126,"id":4802,"width":55,"height":50},{"x":275,"y":0,"fileNum":4126,"id":4803,"width":55,"height":50},{"x":330,"y":0,"fileNum":4126,"id":4804,"width":55,"height":50},{"x":385,"y":0,"fileNum":4126,"id":4805,"width":55,"height":50},{"x":0,"y":0,"fileNum":4127,"id":4806,"width":55,"height":50},{"x":55,"y":0,"fileNum":4127,"id":4807,"width":55,"height":50},{"x":110,"y":0,"fileNum":4127,"id":4808,"width":55,"height":50},{"x":165,"y":0,"fileNum":4127,"id":4809,"width":55,"height":50},{"x":220,"y":0,"fileNum":4127,"id":4810,"width":55,"height":50},{"x":275,"y":0,"fileNum":4127,"id":4811,"width":55,"height":50},{"x":330,"y":0,"fileNum":4127,"id":4812,"width":55,"height":50},{"x":385,"y":0,"fileNum":4127,"id":4813,"width":55,"height":50},{"x":0,"y":0,"fileNum":4128,"id":4814,"width":55,"height":50},{"x":55,"y":0,"fileNum":4128,"id":4815,"width":55,"height":50},{"x":110,"y":0,"fileNum":4128,"id":4816,"width":55,"height":50},{"x":165,"y":0,"fileNum":4128,"id":4817,"width":55,"height":50},{"x":220,"y":0,"fileNum":4128,"id":4818,"width":55,"height":50},{"x":275,"y":0,"fileNum":4128,"id":4819,"width":55,"height":50},{"x":330,"y":0,"fileNum":4128,"id":4820,"width":55,"height":50},{"x":385,"y":0,"fileNum":4128,"id":4821,"width":55,"height":50},{"x":0,"y":0,"fileNum":4129,"id":4822,"width":55,"height":50},{"x":55,"y":0,"fileNum":4129,"id":4823,"width":55,"height":50},{"x":110,"y":0,"fileNum":4129,"id":4824,"width":55,"height":50},{"x":165,"y":0,"fileNum":4129,"id":4825,"width":55,"height":50},{"x":220,"y":0,"fileNum":4129,"id":4826,"width":55,"height":50},{"x":275,"y":0,"fileNum":4129,"id":4827,"width":55,"height":50},{"x":330,"y":0,"fileNum":4129,"id":4828,"width":55,"height":50},{"x":385,"y":0,"fileNum":4129,"id":4829,"width":55,"height":50},{"x":0,"y":0,"fileNum":20002,"id":4834,"width":25,"height":45},{"x":25,"y":0,"fileNum":20002,"id":4835,"width":25,"height":45},{"x":50,"y":0,"fileNum":20002,"id":4836,"width":25,"height":45},{"x":75,"y":0,"fileNum":20002,"id":4837,"width":25,"height":45},{"x":100,"y":0,"fileNum":20002,"id":4838,"width":25,"height":45},{"x":125,"y":0,"fileNum":20002,"id":4839,"width":25,"height":45},{"x":0,"y":45,"fileNum":20002,"id":4840,"width":25,"height":45},{"x":25,"y":45,"fileNum":20002,"id":4841,"width":25,"height":45},{"x":50,"y":45,"fileNum":20002,"id":4842,"width":25,"height":45},{"x":75,"y":45,"fileNum":20002,"id":4843,"width":25,"height":45},{"x":100,"y":45,"fileNum":20002,"id":4844,"width":25,"height":45},{"x":125,"y":45,"fileNum":20002,"id":4845,"width":25,"height":45},{"x":0,"y":90,"fileNum":20002,"id":4846,"width":25,"height":45},{"x":25,"y":90,"fileNum":20002,"id":4847,"width":25,"height":45},{"x":50,"y":90,"fileNum":20002,"id":4848,"width":25,"height":45},{"x":75,"y":90,"fileNum":20002,"id":4849,"width":25,"height":45},{"x":100,"y":90,"fileNum":20002,"id":4850,"width":25,"height":45},{"x":0,"y":135,"fileNum":20002,"id":4851,"width":25,"height":45},{"x":25,"y":135,"fileNum":20002,"id":4852,"width":25,"height":45},{"x":50,"y":135,"fileNum":20002,"id":4853,"width":25,"height":45},{"x":75,"y":135,"fileNum":20002,"id":4854,"width":25,"height":45},{"x":100,"y":135,"fileNum":20002,"id":4855,"width":25,"height":45},{"x":0,"y":0,"fileNum":20010,"id":4860,"width":32,"height":32},{"x":0,"y":0,"fileNum":8036,"id":4861,"width":70,"height":54},{"x":0,"y":0,"fileNum":8028,"id":4862,"width":276,"height":197},{"x":0,"y":0,"fileNum":8029,"id":4863,"width":74,"height":130},{"x":0,"y":0,"fileNum":8030,"id":4864,"width":290,"height":197},{"x":0,"y":0,"fileNum":8031,"id":4865,"width":290,"height":69},{"x":0,"y":0,"fileNum":8032,"id":4866,"width":276,"height":68},{"x":0,"y":0,"fileNum":8033,"id":4867,"width":276,"height":214},{"x":0,"y":0,"fileNum":8034,"id":4868,"width":290,"height":214},{"x":0,"y":0,"fileNum":8035,"id":4869,"width":74,"height":137},{"x":0,"y":0,"fileNum":11004,"id":4870,"width":256,"height":96},{"x":0,"y":0,"fileNum":15081,"id":4871,"width":33,"height":45},{"x":0,"y":0,"fileNum":11005,"id":4872,"width":256,"height":185},{"x":0,"y":0,"fileNum":15082,"id":4873,"width":26,"height":100},{"x":0,"y":0,"fileNum":15083,"id":4874,"width":33,"height":18},{"x":0,"y":0,"fileNum":15084,"id":4875,"width":33,"height":18},{"x":0,"y":0,"fileNum":14002,"id":4876,"width":256,"height":186},{"x":0,"y":0,"fileNum":11006,"id":4877,"width":256,"height":96},{"x":0,"y":0,"fileNum":11007,"id":4878,"width":256,"height":160},{"x":0,"y":0,"fileNum":15085,"id":4879,"width":26,"height":100},{"x":0,"y":0,"fileNum":15086,"id":4880,"width":50,"height":36},{"x":0,"y":0,"fileNum":15087,"id":4881,"width":50,"height":43},{"x":0,"y":0,"fileNum":12015,"id":4882,"width":62,"height":62},{"x":0,"y":0,"fileNum":15088,"id":4883,"width":40,"height":50},{"x":0,"y":0,"fileNum":15089,"id":4884,"width":20,"height":55},{"x":0,"y":0,"fileNum":14003,"id":4885,"width":256,"height":184},{"x":0,"y":0,"fileNum":15090,"id":4886,"width":45,"height":37},{"x":0,"y":0,"fileNum":11008,"id":4887,"width":300,"height":96},{"x":0,"y":0,"fileNum":11009,"id":4888,"width":300,"height":160},{"x":0,"y":0,"fileNum":15091,"id":4889,"width":33,"height":45},{"x":0,"y":0,"fileNum":15092,"id":4890,"width":40,"height":76},{"x":0,"y":0,"fileNum":15093,"id":4891,"width":100,"height":77},{"x":0,"y":0,"fileNum":12016,"id":4892,"width":40,"height":40},{"x":0,"y":0,"fileNum":14004,"id":4893,"width":300,"height":180},{"x":0,"y":0,"fileNum":15094,"id":4894,"width":70,"height":80},{"x":0,"y":0,"fileNum":11010,"id":4895,"width":256,"height":96},{"x":0,"y":0,"fileNum":11011,"id":4896,"width":256,"height":195},{"x":0,"y":0,"fileNum":15095,"id":4897,"width":150,"height":75},{"x":0,"y":0,"fileNum":12017,"id":4898,"width":64,"height":64},{"x":0,"y":0,"fileNum":14005,"id":4899,"width":256,"height":214},{"x":0,"y":0,"fileNum":20003,"id":4900,"width":32,"height":32},{"x":0,"y":0,"fileNum":20004,"id":4901,"width":32,"height":32},{"x":0,"y":0,"fileNum":20005,"id":4902,"width":32,"height":32},{"x":0,"y":0,"fileNum":20006,"id":4903,"width":32,"height":32},{"x":0,"y":0,"fileNum":2129,"id":4904,"width":17,"height":50},{"x":17,"y":0,"fileNum":2129,"id":4905,"width":17,"height":50},{"x":34,"y":0,"fileNum":2129,"id":4906,"width":17,"height":50},{"x":51,"y":0,"fileNum":2129,"id":4907,"width":17,"height":50},{"x":0,"y":256,"fileNum":11047,"id":4908,"width":288,"height":32},{"x":0,"y":0,"fileNum":7074,"id":4909,"width":128,"height":64},{"x":0,"y":0,"fileNum":87,"id":4910,"width":32,"height":32},{"x":0,"y":0,"fileNum":86,"id":4911,"width":32,"height":32},{"x":0,"y":0,"fileNum":84,"id":4912,"width":32,"height":32},{"x":0,"y":0,"fileNum":85,"id":4913,"width":32,"height":32},{"x":0,"y":0,"fileNum":100,"id":4914,"width":32,"height":32},{"x":0,"y":0,"fileNum":88,"id":4915,"width":32,"height":32},{"x":0,"y":0,"fileNum":91,"id":4916,"width":32,"height":32},{"x":0,"y":0,"fileNum":93,"id":4917,"width":32,"height":32},{"x":0,"y":0,"fileNum":94,"id":4918,"width":32,"height":32},{"x":0,"y":0,"fileNum":92,"id":4919,"width":32,"height":32},{"x":0,"y":0,"fileNum":90,"id":4920,"width":32,"height":32},{"x":0,"y":0,"fileNum":99,"id":4921,"width":32,"height":32},{"x":0,"y":0,"fileNum":89,"id":4922,"width":32,"height":32},{"x":0,"y":0,"fileNum":7075,"id":4923,"width":64,"height":32},{"x":0,"y":0,"fileNum":95,"id":4924,"width":32,"height":32},{"x":0,"y":0,"fileNum":96,"id":4925,"width":32,"height":32},{"x":0,"y":0,"fileNum":97,"id":4926,"width":32,"height":32},{"x":0,"y":0,"fileNum":98,"id":4927,"width":32,"height":32},{"x":0,"y":0,"fileNum":15096,"id":4928,"width":30,"height":42},{"x":0,"y":0,"fileNum":15097,"id":4929,"width":34,"height":40},{"x":0,"y":0,"fileNum":15098,"id":4930,"width":34,"height":40},{"x":0,"y":0,"fileNum":15099,"id":4931,"width":34,"height":30},{"x":0,"y":0,"fileNum":15100,"id":4932,"width":34,"height":23},{"x":0,"y":0,"fileNum":11012,"id":4933,"width":500,"height":96},{"x":0,"y":0,"fileNum":11013,"id":4934,"width":500,"height":160},{"x":0,"y":0,"fileNum":15101,"id":4935,"width":150,"height":80},{"x":0,"y":0,"fileNum":12018,"id":4936,"width":32,"height":32},{"x":32,"y":0,"fileNum":12018,"id":4937,"width":32,"height":32},{"x":0,"y":32,"fileNum":12018,"id":4938,"width":32,"height":32},{"x":32,"y":32,"fileNum":12018,"id":4939,"width":32,"height":32},{"x":0,"y":0,"fileNum":14006,"id":4940,"width":256,"height":187},{"x":0,"y":0,"fileNum":4101,"id":4941,"width":64,"height":64},{"x":64,"y":0,"fileNum":4101,"id":4942,"width":64,"height":64},{"x":128,"y":0,"fileNum":4101,"id":4943,"width":64,"height":64},{"x":0,"y":64,"fileNum":4101,"id":4944,"width":64,"height":64},{"x":64,"y":64,"fileNum":4101,"id":4945,"width":64,"height":64},{"x":128,"y":64,"fileNum":4101,"id":4946,"width":64,"height":64},{"x":0,"y":0,"fileNum":4102,"id":4947,"width":64,"height":64},{"x":64,"y":0,"fileNum":4102,"id":4948,"width":64,"height":64},{"x":128,"y":0,"fileNum":4102,"id":4949,"width":64,"height":64},{"x":0,"y":64,"fileNum":4102,"id":4950,"width":64,"height":64},{"x":64,"y":64,"fileNum":4102,"id":4951,"width":64,"height":64},{"x":128,"y":64,"fileNum":4102,"id":4952,"width":64,"height":64},{"x":0,"y":0,"fileNum":4103,"id":4953,"width":64,"height":64},{"x":64,"y":0,"fileNum":4103,"id":4954,"width":64,"height":64},{"x":128,"y":0,"fileNum":4103,"id":4955,"width":64,"height":64},{"x":0,"y":64,"fileNum":4103,"id":4956,"width":64,"height":64},{"x":64,"y":64,"fileNum":4103,"id":4957,"width":64,"height":64},{"x":128,"y":64,"fileNum":4103,"id":4958,"width":64,"height":64},{"x":0,"y":0,"fileNum":4104,"id":4959,"width":64,"height":64},{"x":64,"y":0,"fileNum":4104,"id":4960,"width":64,"height":64},{"x":128,"y":0,"fileNum":4104,"id":4961,"width":64,"height":64},{"x":0,"y":64,"fileNum":4104,"id":4962,"width":64,"height":64},{"x":64,"y":64,"fileNum":4104,"id":4963,"width":64,"height":64},{"x":128,"y":64,"fileNum":4104,"id":4964,"width":64,"height":64},{"x":0,"y":0,"fileNum":15127,"id":4969,"width":31,"height":85},{"x":31,"y":0,"fileNum":15127,"id":4970,"width":31,"height":85},{"x":62,"y":0,"fileNum":15127,"id":4971,"width":31,"height":85},{"x":93,"y":0,"fileNum":15127,"id":4972,"width":31,"height":85},{"x":124,"y":0,"fileNum":15127,"id":4973,"width":31,"height":85},{"x":155,"y":0,"fileNum":15127,"id":4974,"width":31,"height":85},{"x":186,"y":0,"fileNum":15127,"id":4975,"width":31,"height":85},{"x":217,"y":0,"fileNum":15127,"id":4976,"width":31,"height":85},{"x":0,"y":0,"fileNum":25000,"id":4978,"width":28,"height":30},{"x":25,"y":0,"fileNum":25000,"id":4979,"width":28,"height":30},{"x":50,"y":0,"fileNum":25000,"id":4980,"width":28,"height":30},{"x":75,"y":0,"fileNum":25000,"id":4981,"width":28,"height":30},{"x":0,"y":0,"fileNum":25001,"id":4982,"width":28,"height":30},{"x":25,"y":0,"fileNum":25001,"id":4983,"width":28,"height":30},{"x":50,"y":0,"fileNum":25001,"id":4984,"width":28,"height":30},{"x":75,"y":0,"fileNum":25001,"id":4985,"width":28,"height":30},{"x":0,"y":0,"fileNum":7076,"id":4986,"width":128,"height":64},{"x":0,"y":0,"fileNum":7077,"id":4987,"width":320,"height":240},{"x":0,"y":0,"fileNum":12019,"id":4988,"width":32,"height":32},{"x":32,"y":0,"fileNum":12019,"id":4989,"width":32,"height":32},{"x":0,"y":32,"fileNum":12019,"id":4990,"width":32,"height":32},{"x":32,"y":32,"fileNum":12019,"id":4991,"width":32,"height":32},{"x":0,"y":0,"fileNum":15102,"id":4992,"width":60,"height":60},{"x":0,"y":0,"fileNum":15103,"id":4993,"width":40,"height":60},{"x":0,"y":0,"fileNum":15104,"id":4994,"width":40,"height":60},{"x":0,"y":0,"fileNum":2130,"id":4995,"width":17,"height":50},{"x":17,"y":0,"fileNum":2130,"id":4996,"width":17,"height":50},{"x":34,"y":0,"fileNum":2130,"id":4997,"width":17,"height":50},{"x":51,"y":0,"fileNum":2130,"id":4998,"width":17,"height":50},{"x":0,"y":0,"fileNum":16084,"id":4999,"width":32,"height":32},{"x":0,"y":0,"fileNum":61,"id":5000,"width":25,"height":45},{"x":25,"y":0,"fileNum":61,"id":5001,"width":25,"height":45},{"x":50,"y":0,"fileNum":61,"id":5002,"width":25,"height":45},{"x":75,"y":0,"fileNum":61,"id":5003,"width":25,"height":45},{"x":100,"y":0,"fileNum":61,"id":5004,"width":25,"height":45},{"x":125,"y":0,"fileNum":61,"id":5005,"width":25,"height":45},{"x":0,"y":45,"fileNum":61,"id":5006,"width":25,"height":45},{"x":25,"y":45,"fileNum":61,"id":5007,"width":25,"height":45},{"x":50,"y":45,"fileNum":61,"id":5008,"width":25,"height":45},{"x":75,"y":45,"fileNum":61,"id":5009,"width":25,"height":45},{"x":100,"y":45,"fileNum":61,"id":5010,"width":25,"height":45},{"x":125,"y":45,"fileNum":61,"id":5011,"width":25,"height":45},{"x":0,"y":90,"fileNum":61,"id":5012,"width":25,"height":45},{"x":25,"y":90,"fileNum":61,"id":5013,"width":25,"height":45},{"x":50,"y":90,"fileNum":61,"id":5014,"width":25,"height":45},{"x":75,"y":90,"fileNum":61,"id":5015,"width":25,"height":45},{"x":100,"y":90,"fileNum":61,"id":5016,"width":25,"height":45},{"x":0,"y":135,"fileNum":61,"id":5017,"width":25,"height":45},{"x":25,"y":135,"fileNum":61,"id":5018,"width":25,"height":45},{"x":50,"y":135,"fileNum":61,"id":5019,"width":25,"height":45},{"x":75,"y":135,"fileNum":61,"id":5020,"width":25,"height":45},{"x":100,"y":135,"fileNum":61,"id":5021,"width":25,"height":45},{"x":0,"y":0,"fileNum":2131,"id":5026,"width":17,"height":50},{"x":17,"y":0,"fileNum":2131,"id":5027,"width":17,"height":50},{"x":34,"y":0,"fileNum":2131,"id":5028,"width":17,"height":50},{"x":51,"y":0,"fileNum":2131,"id":5029,"width":17,"height":50},{"x":0,"y":0,"fileNum":62,"id":5030,"width":25,"height":45},{"x":25,"y":0,"fileNum":62,"id":5031,"width":25,"height":45},{"x":50,"y":0,"fileNum":62,"id":5032,"width":25,"height":45},{"x":75,"y":0,"fileNum":62,"id":5033,"width":25,"height":45},{"x":100,"y":0,"fileNum":62,"id":5034,"width":25,"height":45},{"x":125,"y":0,"fileNum":62,"id":5035,"width":25,"height":45},{"x":0,"y":45,"fileNum":62,"id":5036,"width":25,"height":45},{"x":25,"y":45,"fileNum":62,"id":5037,"width":25,"height":45},{"x":50,"y":45,"fileNum":62,"id":5038,"width":25,"height":45},{"x":75,"y":45,"fileNum":62,"id":5039,"width":25,"height":45},{"x":100,"y":45,"fileNum":62,"id":5040,"width":25,"height":45},{"x":125,"y":45,"fileNum":62,"id":5041,"width":25,"height":45},{"x":0,"y":90,"fileNum":62,"id":5042,"width":25,"height":45},{"x":25,"y":90,"fileNum":62,"id":5043,"width":25,"height":45},{"x":50,"y":90,"fileNum":62,"id":5044,"width":25,"height":45},{"x":75,"y":90,"fileNum":62,"id":5045,"width":25,"height":45},{"x":100,"y":90,"fileNum":62,"id":5046,"width":25,"height":45},{"x":0,"y":135,"fileNum":62,"id":5047,"width":25,"height":45},{"x":25,"y":135,"fileNum":62,"id":5048,"width":25,"height":45},{"x":50,"y":135,"fileNum":62,"id":5049,"width":25,"height":45},{"x":75,"y":135,"fileNum":62,"id":5050,"width":25,"height":45},{"x":100,"y":135,"fileNum":62,"id":5051,"width":25,"height":45},{"x":0,"y":0,"fileNum":2132,"id":5056,"width":17,"height":50},{"x":17,"y":0,"fileNum":2132,"id":5057,"width":17,"height":50},{"x":34,"y":0,"fileNum":2132,"id":5058,"width":17,"height":50},{"x":51,"y":0,"fileNum":2132,"id":5059,"width":17,"height":50},{"x":0,"y":0,"fileNum":59,"id":5060,"width":25,"height":45},{"x":25,"y":0,"fileNum":59,"id":5061,"width":25,"height":45},{"x":50,"y":0,"fileNum":59,"id":5062,"width":25,"height":45},{"x":75,"y":0,"fileNum":59,"id":5063,"width":25,"height":45},{"x":100,"y":0,"fileNum":59,"id":5064,"width":25,"height":45},{"x":125,"y":0,"fileNum":59,"id":5065,"width":25,"height":45},{"x":0,"y":45,"fileNum":59,"id":5066,"width":25,"height":45},{"x":25,"y":45,"fileNum":59,"id":5067,"width":25,"height":45},{"x":50,"y":45,"fileNum":59,"id":5068,"width":25,"height":45},{"x":75,"y":45,"fileNum":59,"id":5069,"width":25,"height":45},{"x":100,"y":45,"fileNum":59,"id":5070,"width":25,"height":45},{"x":125,"y":45,"fileNum":59,"id":5071,"width":25,"height":45},{"x":0,"y":90,"fileNum":59,"id":5072,"width":25,"height":45},{"x":25,"y":90,"fileNum":59,"id":5073,"width":25,"height":45},{"x":50,"y":90,"fileNum":59,"id":5074,"width":25,"height":45},{"x":75,"y":90,"fileNum":59,"id":5075,"width":25,"height":45},{"x":100,"y":90,"fileNum":59,"id":5076,"width":25,"height":45},{"x":0,"y":135,"fileNum":59,"id":5077,"width":25,"height":45},{"x":25,"y":135,"fileNum":59,"id":5078,"width":25,"height":45},{"x":50,"y":135,"fileNum":59,"id":5079,"width":25,"height":45},{"x":75,"y":135,"fileNum":59,"id":5080,"width":25,"height":45},{"x":100,"y":135,"fileNum":59,"id":5081,"width":25,"height":45},{"x":0,"y":0,"fileNum":2133,"id":5086,"width":17,"height":50},{"x":17,"y":0,"fileNum":2133,"id":5087,"width":17,"height":50},{"x":34,"y":0,"fileNum":2133,"id":5088,"width":17,"height":50},{"x":51,"y":0,"fileNum":2133,"id":5089,"width":17,"height":50},{"x":0,"y":0,"fileNum":75,"id":5090,"width":25,"height":45},{"x":25,"y":0,"fileNum":75,"id":5091,"width":25,"height":45},{"x":50,"y":0,"fileNum":75,"id":5092,"width":25,"height":45},{"x":75,"y":0,"fileNum":75,"id":5093,"width":25,"height":45},{"x":100,"y":0,"fileNum":75,"id":5094,"width":25,"height":45},{"x":125,"y":0,"fileNum":75,"id":5095,"width":25,"height":45},{"x":0,"y":45,"fileNum":75,"id":5096,"width":25,"height":45},{"x":25,"y":45,"fileNum":75,"id":5097,"width":25,"height":45},{"x":50,"y":45,"fileNum":75,"id":5098,"width":25,"height":45},{"x":75,"y":45,"fileNum":75,"id":5099,"width":25,"height":45},{"x":100,"y":45,"fileNum":75,"id":5100,"width":25,"height":45},{"x":125,"y":45,"fileNum":75,"id":5101,"width":25,"height":45},{"x":0,"y":90,"fileNum":75,"id":5102,"width":25,"height":45},{"x":25,"y":90,"fileNum":75,"id":5103,"width":25,"height":45},{"x":50,"y":90,"fileNum":75,"id":5104,"width":25,"height":45},{"x":75,"y":90,"fileNum":75,"id":5105,"width":25,"height":45},{"x":100,"y":90,"fileNum":75,"id":5106,"width":25,"height":45},{"x":0,"y":135,"fileNum":75,"id":5107,"width":25,"height":45},{"x":25,"y":135,"fileNum":75,"id":5108,"width":25,"height":45},{"x":50,"y":135,"fileNum":75,"id":5109,"width":25,"height":45},{"x":75,"y":135,"fileNum":75,"id":5110,"width":25,"height":45},{"x":100,"y":135,"fileNum":75,"id":5111,"width":25,"height":45},{"x":0,"y":0,"fileNum":2134,"id":5116,"width":17,"height":50},{"x":17,"y":0,"fileNum":2134,"id":5117,"width":17,"height":50},{"x":34,"y":0,"fileNum":2134,"id":5118,"width":17,"height":50},{"x":51,"y":0,"fileNum":2134,"id":5119,"width":17,"height":50},{"x":0,"y":0,"fileNum":63,"id":5120,"width":25,"height":45},{"x":25,"y":0,"fileNum":63,"id":5121,"width":25,"height":45},{"x":50,"y":0,"fileNum":63,"id":5122,"width":25,"height":45},{"x":75,"y":0,"fileNum":63,"id":5123,"width":25,"height":45},{"x":100,"y":0,"fileNum":63,"id":5124,"width":25,"height":45},{"x":125,"y":0,"fileNum":63,"id":5125,"width":25,"height":45},{"x":0,"y":45,"fileNum":63,"id":5126,"width":25,"height":45},{"x":25,"y":45,"fileNum":63,"id":5127,"width":25,"height":45},{"x":50,"y":45,"fileNum":63,"id":5128,"width":25,"height":45},{"x":75,"y":45,"fileNum":63,"id":5129,"width":25,"height":45},{"x":100,"y":45,"fileNum":63,"id":5130,"width":25,"height":45},{"x":125,"y":45,"fileNum":63,"id":5131,"width":25,"height":45},{"x":0,"y":90,"fileNum":63,"id":5132,"width":25,"height":45},{"x":25,"y":90,"fileNum":63,"id":5133,"width":25,"height":45},{"x":50,"y":90,"fileNum":63,"id":5134,"width":25,"height":45},{"x":75,"y":90,"fileNum":63,"id":5135,"width":25,"height":45},{"x":100,"y":90,"fileNum":63,"id":5136,"width":25,"height":45},{"x":0,"y":135,"fileNum":63,"id":5137,"width":25,"height":45},{"x":25,"y":135,"fileNum":63,"id":5138,"width":25,"height":45},{"x":50,"y":135,"fileNum":63,"id":5139,"width":25,"height":45},{"x":75,"y":135,"fileNum":63,"id":5140,"width":25,"height":45},{"x":100,"y":135,"fileNum":63,"id":5141,"width":25,"height":45},{"x":0,"y":0,"fileNum":2135,"id":5146,"width":17,"height":50},{"x":17,"y":0,"fileNum":2135,"id":5147,"width":17,"height":50},{"x":34,"y":0,"fileNum":2135,"id":5148,"width":17,"height":50},{"x":51,"y":0,"fileNum":2135,"id":5149,"width":17,"height":50},{"x":0,"y":0,"fileNum":66,"id":5150,"width":25,"height":45},{"x":25,"y":0,"fileNum":66,"id":5151,"width":25,"height":45},{"x":50,"y":0,"fileNum":66,"id":5152,"width":25,"height":45},{"x":75,"y":0,"fileNum":66,"id":5153,"width":25,"height":45},{"x":100,"y":0,"fileNum":66,"id":5154,"width":25,"height":45},{"x":125,"y":0,"fileNum":66,"id":5155,"width":25,"height":45},{"x":0,"y":45,"fileNum":66,"id":5156,"width":25,"height":45},{"x":25,"y":45,"fileNum":66,"id":5157,"width":25,"height":45},{"x":50,"y":45,"fileNum":66,"id":5158,"width":25,"height":45},{"x":75,"y":45,"fileNum":66,"id":5159,"width":25,"height":45},{"x":100,"y":45,"fileNum":66,"id":5160,"width":25,"height":45},{"x":125,"y":45,"fileNum":66,"id":5161,"width":25,"height":45},{"x":0,"y":90,"fileNum":66,"id":5162,"width":25,"height":45},{"x":25,"y":90,"fileNum":66,"id":5163,"width":25,"height":45},{"x":50,"y":90,"fileNum":66,"id":5164,"width":25,"height":45},{"x":75,"y":90,"fileNum":66,"id":5165,"width":25,"height":45},{"x":100,"y":90,"fileNum":66,"id":5166,"width":25,"height":45},{"x":0,"y":135,"fileNum":66,"id":5167,"width":25,"height":45},{"x":25,"y":135,"fileNum":66,"id":5168,"width":25,"height":45},{"x":50,"y":135,"fileNum":66,"id":5169,"width":25,"height":45},{"x":75,"y":135,"fileNum":66,"id":5170,"width":25,"height":45},{"x":100,"y":135,"fileNum":66,"id":5171,"width":25,"height":45},{"x":0,"y":0,"fileNum":2136,"id":5176,"width":17,"height":50},{"x":17,"y":0,"fileNum":2136,"id":5177,"width":17,"height":50},{"x":34,"y":0,"fileNum":2136,"id":5178,"width":17,"height":50},{"x":51,"y":0,"fileNum":2136,"id":5179,"width":17,"height":50},{"x":0,"y":0,"fileNum":68,"id":5180,"width":25,"height":45},{"x":25,"y":0,"fileNum":68,"id":5181,"width":25,"height":45},{"x":50,"y":0,"fileNum":68,"id":5182,"width":25,"height":45},{"x":75,"y":0,"fileNum":68,"id":5183,"width":25,"height":45},{"x":100,"y":0,"fileNum":68,"id":5184,"width":25,"height":45},{"x":125,"y":0,"fileNum":68,"id":5185,"width":25,"height":45},{"x":0,"y":45,"fileNum":68,"id":5186,"width":25,"height":45},{"x":25,"y":45,"fileNum":68,"id":5187,"width":25,"height":45},{"x":50,"y":45,"fileNum":68,"id":5188,"width":25,"height":45},{"x":75,"y":45,"fileNum":68,"id":5189,"width":25,"height":45},{"x":100,"y":45,"fileNum":68,"id":5190,"width":25,"height":45},{"x":125,"y":45,"fileNum":68,"id":5191,"width":25,"height":45},{"x":0,"y":90,"fileNum":68,"id":5192,"width":25,"height":45},{"x":25,"y":90,"fileNum":68,"id":5193,"width":25,"height":45},{"x":50,"y":90,"fileNum":68,"id":5194,"width":25,"height":45},{"x":75,"y":90,"fileNum":68,"id":5195,"width":25,"height":45},{"x":100,"y":90,"fileNum":68,"id":5196,"width":25,"height":45},{"x":0,"y":135,"fileNum":68,"id":5197,"width":25,"height":45},{"x":25,"y":135,"fileNum":68,"id":5198,"width":25,"height":45},{"x":50,"y":135,"fileNum":68,"id":5199,"width":25,"height":45},{"x":75,"y":135,"fileNum":68,"id":5200,"width":25,"height":45},{"x":100,"y":135,"fileNum":68,"id":5201,"width":25,"height":45},{"x":0,"y":0,"fileNum":2137,"id":5206,"width":17,"height":50},{"x":17,"y":0,"fileNum":2137,"id":5207,"width":17,"height":50},{"x":34,"y":0,"fileNum":2137,"id":5208,"width":17,"height":50},{"x":51,"y":0,"fileNum":2137,"id":5209,"width":17,"height":50},{"x":0,"y":0,"fileNum":69,"id":5210,"width":25,"height":45},{"x":25,"y":0,"fileNum":69,"id":5211,"width":25,"height":45},{"x":50,"y":0,"fileNum":69,"id":5212,"width":25,"height":45},{"x":75,"y":0,"fileNum":69,"id":5213,"width":25,"height":45},{"x":100,"y":0,"fileNum":69,"id":5214,"width":25,"height":45},{"x":125,"y":0,"fileNum":69,"id":5215,"width":25,"height":45},{"x":0,"y":45,"fileNum":69,"id":5216,"width":25,"height":45},{"x":25,"y":45,"fileNum":69,"id":5217,"width":25,"height":45},{"x":50,"y":45,"fileNum":69,"id":5218,"width":25,"height":45},{"x":75,"y":45,"fileNum":69,"id":5219,"width":25,"height":45},{"x":100,"y":45,"fileNum":69,"id":5220,"width":25,"height":45},{"x":125,"y":45,"fileNum":69,"id":5221,"width":25,"height":45},{"x":0,"y":90,"fileNum":69,"id":5222,"width":25,"height":45},{"x":25,"y":90,"fileNum":69,"id":5223,"width":25,"height":45},{"x":50,"y":90,"fileNum":69,"id":5224,"width":25,"height":45},{"x":75,"y":90,"fileNum":69,"id":5225,"width":25,"height":45},{"x":100,"y":90,"fileNum":69,"id":5226,"width":25,"height":45},{"x":0,"y":135,"fileNum":69,"id":5227,"width":25,"height":45},{"x":25,"y":135,"fileNum":69,"id":5228,"width":25,"height":45},{"x":50,"y":135,"fileNum":69,"id":5229,"width":25,"height":45},{"x":75,"y":135,"fileNum":69,"id":5230,"width":25,"height":45},{"x":100,"y":135,"fileNum":69,"id":5231,"width":25,"height":45},{"x":0,"y":0,"fileNum":2138,"id":5236,"width":17,"height":50},{"x":17,"y":0,"fileNum":2138,"id":5237,"width":17,"height":50},{"x":34,"y":0,"fileNum":2138,"id":5238,"width":17,"height":50},{"x":51,"y":0,"fileNum":2138,"id":5239,"width":17,"height":50},{"x":0,"y":0,"fileNum":67,"id":5240,"width":25,"height":45},{"x":25,"y":0,"fileNum":67,"id":5241,"width":25,"height":45},{"x":50,"y":0,"fileNum":67,"id":5242,"width":25,"height":45},{"x":75,"y":0,"fileNum":67,"id":5243,"width":25,"height":45},{"x":100,"y":0,"fileNum":67,"id":5244,"width":25,"height":45},{"x":125,"y":0,"fileNum":67,"id":5245,"width":25,"height":45},{"x":0,"y":45,"fileNum":67,"id":5246,"width":25,"height":45},{"x":25,"y":45,"fileNum":67,"id":5247,"width":25,"height":45},{"x":50,"y":45,"fileNum":67,"id":5248,"width":25,"height":45},{"x":75,"y":45,"fileNum":67,"id":5249,"width":25,"height":45},{"x":100,"y":45,"fileNum":67,"id":5250,"width":25,"height":45},{"x":125,"y":45,"fileNum":67,"id":5251,"width":25,"height":45},{"x":0,"y":90,"fileNum":67,"id":5252,"width":25,"height":45},{"x":25,"y":90,"fileNum":67,"id":5253,"width":25,"height":45},{"x":50,"y":90,"fileNum":67,"id":5254,"width":25,"height":45},{"x":75,"y":90,"fileNum":67,"id":5255,"width":25,"height":45},{"x":100,"y":90,"fileNum":67,"id":5256,"width":25,"height":45},{"x":0,"y":135,"fileNum":67,"id":5257,"width":25,"height":45},{"x":25,"y":135,"fileNum":67,"id":5258,"width":25,"height":45},{"x":50,"y":135,"fileNum":67,"id":5259,"width":25,"height":45},{"x":75,"y":135,"fileNum":67,"id":5260,"width":25,"height":45},{"x":100,"y":135,"fileNum":67,"id":5261,"width":25,"height":45},{"x":0,"y":0,"fileNum":2139,"id":5266,"width":17,"height":50},{"x":17,"y":0,"fileNum":2139,"id":5267,"width":17,"height":50},{"x":34,"y":0,"fileNum":2139,"id":5268,"width":17,"height":50},{"x":51,"y":0,"fileNum":2139,"id":5269,"width":17,"height":50},{"x":0,"y":0,"fileNum":65,"id":5270,"width":25,"height":45},{"x":25,"y":0,"fileNum":65,"id":5271,"width":25,"height":45},{"x":50,"y":0,"fileNum":65,"id":5272,"width":25,"height":45},{"x":75,"y":0,"fileNum":65,"id":5273,"width":25,"height":45},{"x":100,"y":0,"fileNum":65,"id":5274,"width":25,"height":45},{"x":125,"y":0,"fileNum":65,"id":5275,"width":25,"height":45},{"x":0,"y":45,"fileNum":65,"id":5276,"width":25,"height":45},{"x":25,"y":45,"fileNum":65,"id":5277,"width":25,"height":45},{"x":50,"y":45,"fileNum":65,"id":5278,"width":25,"height":45},{"x":75,"y":45,"fileNum":65,"id":5279,"width":25,"height":45},{"x":100,"y":45,"fileNum":65,"id":5280,"width":25,"height":45},{"x":125,"y":45,"fileNum":65,"id":5281,"width":25,"height":45},{"x":0,"y":90,"fileNum":65,"id":5282,"width":25,"height":45},{"x":25,"y":90,"fileNum":65,"id":5283,"width":25,"height":45},{"x":50,"y":90,"fileNum":65,"id":5284,"width":25,"height":45},{"x":75,"y":90,"fileNum":65,"id":5285,"width":25,"height":45},{"x":100,"y":90,"fileNum":65,"id":5286,"width":25,"height":45},{"x":0,"y":135,"fileNum":65,"id":5287,"width":25,"height":45},{"x":25,"y":135,"fileNum":65,"id":5288,"width":25,"height":45},{"x":50,"y":135,"fileNum":65,"id":5289,"width":25,"height":45},{"x":75,"y":135,"fileNum":65,"id":5290,"width":25,"height":45},{"x":100,"y":135,"fileNum":65,"id":5291,"width":25,"height":45},{"x":0,"y":0,"fileNum":2140,"id":5296,"width":17,"height":50},{"x":17,"y":0,"fileNum":2140,"id":5297,"width":17,"height":50},{"x":34,"y":0,"fileNum":2140,"id":5298,"width":17,"height":50},{"x":51,"y":0,"fileNum":2140,"id":5299,"width":17,"height":50},{"x":0,"y":0,"fileNum":64,"id":5300,"width":25,"height":45},{"x":25,"y":0,"fileNum":64,"id":5301,"width":25,"height":45},{"x":50,"y":0,"fileNum":64,"id":5302,"width":25,"height":45},{"x":75,"y":0,"fileNum":64,"id":5303,"width":25,"height":45},{"x":100,"y":0,"fileNum":64,"id":5304,"width":25,"height":45},{"x":125,"y":0,"fileNum":64,"id":5305,"width":25,"height":45},{"x":0,"y":45,"fileNum":64,"id":5306,"width":25,"height":45},{"x":25,"y":45,"fileNum":64,"id":5307,"width":25,"height":45},{"x":50,"y":45,"fileNum":64,"id":5308,"width":25,"height":45},{"x":75,"y":45,"fileNum":64,"id":5309,"width":25,"height":45},{"x":100,"y":45,"fileNum":64,"id":5310,"width":25,"height":45},{"x":125,"y":45,"fileNum":64,"id":5311,"width":25,"height":45},{"x":0,"y":90,"fileNum":64,"id":5312,"width":25,"height":45},{"x":25,"y":90,"fileNum":64,"id":5313,"width":25,"height":45},{"x":50,"y":90,"fileNum":64,"id":5314,"width":25,"height":45},{"x":75,"y":90,"fileNum":64,"id":5315,"width":25,"height":45},{"x":100,"y":90,"fileNum":64,"id":5316,"width":25,"height":45},{"x":0,"y":135,"fileNum":64,"id":5317,"width":25,"height":45},{"x":25,"y":135,"fileNum":64,"id":5318,"width":25,"height":45},{"x":50,"y":135,"fileNum":64,"id":5319,"width":25,"height":45},{"x":75,"y":135,"fileNum":64,"id":5320,"width":25,"height":45},{"x":100,"y":135,"fileNum":64,"id":5321,"width":25,"height":45},{"x":0,"y":0,"fileNum":477,"id":5326,"width":32,"height":32},{"x":0,"y":0,"fileNum":345,"id":5327,"width":25,"height":45},{"x":25,"y":0,"fileNum":345,"id":5328,"width":25,"height":45},{"x":50,"y":0,"fileNum":345,"id":5329,"width":25,"height":45},{"x":75,"y":0,"fileNum":345,"id":5330,"width":25,"height":45},{"x":100,"y":0,"fileNum":345,"id":5331,"width":25,"height":45},{"x":125,"y":0,"fileNum":345,"id":5332,"width":25,"height":45},{"x":0,"y":45,"fileNum":345,"id":5333,"width":25,"height":45},{"x":25,"y":45,"fileNum":345,"id":5334,"width":25,"height":45},{"x":50,"y":45,"fileNum":345,"id":5335,"width":25,"height":45},{"x":75,"y":45,"fileNum":345,"id":5336,"width":25,"height":45},{"x":100,"y":45,"fileNum":345,"id":5337,"width":25,"height":45},{"x":125,"y":45,"fileNum":345,"id":5338,"width":25,"height":45},{"x":0,"y":90,"fileNum":345,"id":5339,"width":25,"height":45},{"x":25,"y":90,"fileNum":345,"id":5340,"width":25,"height":45},{"x":50,"y":90,"fileNum":345,"id":5341,"width":25,"height":45},{"x":75,"y":90,"fileNum":345,"id":5342,"width":25,"height":45},{"x":100,"y":90,"fileNum":345,"id":5343,"width":25,"height":45},{"x":0,"y":135,"fileNum":345,"id":5344,"width":25,"height":45},{"x":25,"y":135,"fileNum":345,"id":5345,"width":25,"height":45},{"x":50,"y":135,"fileNum":345,"id":5346,"width":25,"height":45},{"x":75,"y":135,"fileNum":345,"id":5347,"width":25,"height":45},{"x":100,"y":135,"fileNum":345,"id":5348,"width":25,"height":45},{"x":0,"y":0,"fileNum":2141,"id":5353,"width":17,"height":50},{"x":17,"y":0,"fileNum":2141,"id":5354,"width":17,"height":50},{"x":34,"y":0,"fileNum":2141,"id":5355,"width":17,"height":50},{"x":51,"y":0,"fileNum":2141,"id":5356,"width":17,"height":50},{"x":0,"y":0,"fileNum":25002,"id":5357,"width":10,"height":17},{"x":0,"y":0,"fileNum":25003,"id":5358,"width":19,"height":17},{"x":0,"y":0,"fileNum":25004,"id":5359,"width":19,"height":17},{"x":0,"y":0,"fileNum":70,"id":5360,"width":25,"height":45},{"x":25,"y":0,"fileNum":70,"id":5361,"width":25,"height":45},{"x":50,"y":0,"fileNum":70,"id":5362,"width":25,"height":45},{"x":75,"y":0,"fileNum":70,"id":5363,"width":25,"height":45},{"x":100,"y":0,"fileNum":70,"id":5364,"width":25,"height":45},{"x":125,"y":0,"fileNum":70,"id":5365,"width":25,"height":45},{"x":0,"y":45,"fileNum":70,"id":5366,"width":25,"height":45},{"x":25,"y":45,"fileNum":70,"id":5367,"width":25,"height":45},{"x":50,"y":45,"fileNum":70,"id":5368,"width":25,"height":45},{"x":75,"y":45,"fileNum":70,"id":5369,"width":25,"height":45},{"x":100,"y":45,"fileNum":70,"id":5370,"width":25,"height":45},{"x":125,"y":45,"fileNum":70,"id":5371,"width":25,"height":45},{"x":0,"y":90,"fileNum":70,"id":5372,"width":25,"height":45},{"x":25,"y":90,"fileNum":70,"id":5373,"width":25,"height":45},{"x":50,"y":90,"fileNum":70,"id":5374,"width":25,"height":45},{"x":75,"y":90,"fileNum":70,"id":5375,"width":25,"height":45},{"x":100,"y":90,"fileNum":70,"id":5376,"width":25,"height":45},{"x":0,"y":135,"fileNum":70,"id":5377,"width":25,"height":45},{"x":25,"y":135,"fileNum":70,"id":5378,"width":25,"height":45},{"x":50,"y":135,"fileNum":70,"id":5379,"width":25,"height":45},{"x":75,"y":135,"fileNum":70,"id":5380,"width":25,"height":45},{"x":100,"y":135,"fileNum":70,"id":5381,"width":25,"height":45},{"x":0,"y":0,"fileNum":2142,"id":5386,"width":17,"height":50},{"x":17,"y":0,"fileNum":2142,"id":5387,"width":17,"height":50},{"x":34,"y":0,"fileNum":2142,"id":5388,"width":17,"height":50},{"x":51,"y":0,"fileNum":2142,"id":5389,"width":17,"height":50},{"x":0,"y":0,"fileNum":71,"id":5390,"width":25,"height":45},{"x":25,"y":0,"fileNum":71,"id":5391,"width":25,"height":45},{"x":50,"y":0,"fileNum":71,"id":5392,"width":25,"height":45},{"x":75,"y":0,"fileNum":71,"id":5393,"width":25,"height":45},{"x":100,"y":0,"fileNum":71,"id":5394,"width":25,"height":45},{"x":125,"y":0,"fileNum":71,"id":5395,"width":25,"height":45},{"x":0,"y":45,"fileNum":71,"id":5396,"width":25,"height":45},{"x":25,"y":45,"fileNum":71,"id":5397,"width":25,"height":45},{"x":50,"y":45,"fileNum":71,"id":5398,"width":25,"height":45},{"x":75,"y":45,"fileNum":71,"id":5399,"width":25,"height":45},{"x":100,"y":45,"fileNum":71,"id":5400,"width":25,"height":45},{"x":125,"y":45,"fileNum":71,"id":5401,"width":25,"height":45},{"x":0,"y":90,"fileNum":71,"id":5402,"width":25,"height":45},{"x":25,"y":90,"fileNum":71,"id":5403,"width":25,"height":45},{"x":50,"y":90,"fileNum":71,"id":5404,"width":25,"height":45},{"x":75,"y":90,"fileNum":71,"id":5405,"width":25,"height":45},{"x":100,"y":90,"fileNum":71,"id":5406,"width":25,"height":45},{"x":0,"y":135,"fileNum":71,"id":5407,"width":25,"height":45},{"x":25,"y":135,"fileNum":71,"id":5408,"width":25,"height":45},{"x":50,"y":135,"fileNum":71,"id":5409,"width":25,"height":45},{"x":75,"y":135,"fileNum":71,"id":5410,"width":25,"height":45},{"x":100,"y":135,"fileNum":71,"id":5411,"width":25,"height":45},{"x":0,"y":0,"fileNum":2143,"id":5416,"width":17,"height":50},{"x":17,"y":0,"fileNum":2143,"id":5417,"width":17,"height":50},{"x":34,"y":0,"fileNum":2143,"id":5418,"width":17,"height":50},{"x":51,"y":0,"fileNum":2143,"id":5419,"width":17,"height":50},{"x":0,"y":0,"fileNum":72,"id":5420,"width":25,"height":45},{"x":25,"y":0,"fileNum":72,"id":5421,"width":25,"height":45},{"x":50,"y":0,"fileNum":72,"id":5422,"width":25,"height":45},{"x":75,"y":0,"fileNum":72,"id":5423,"width":25,"height":45},{"x":100,"y":0,"fileNum":72,"id":5424,"width":25,"height":45},{"x":125,"y":0,"fileNum":72,"id":5425,"width":25,"height":45},{"x":0,"y":45,"fileNum":72,"id":5426,"width":25,"height":45},{"x":25,"y":45,"fileNum":72,"id":5427,"width":25,"height":45},{"x":50,"y":45,"fileNum":72,"id":5428,"width":25,"height":45},{"x":75,"y":45,"fileNum":72,"id":5429,"width":25,"height":45},{"x":100,"y":45,"fileNum":72,"id":5430,"width":25,"height":45},{"x":125,"y":45,"fileNum":72,"id":5431,"width":25,"height":45},{"x":0,"y":90,"fileNum":72,"id":5432,"width":25,"height":45},{"x":25,"y":90,"fileNum":72,"id":5433,"width":25,"height":45},{"x":50,"y":90,"fileNum":72,"id":5434,"width":25,"height":45},{"x":75,"y":90,"fileNum":72,"id":5435,"width":25,"height":45},{"x":100,"y":90,"fileNum":72,"id":5436,"width":25,"height":45},{"x":0,"y":135,"fileNum":72,"id":5437,"width":25,"height":45},{"x":25,"y":135,"fileNum":72,"id":5438,"width":25,"height":45},{"x":50,"y":135,"fileNum":72,"id":5439,"width":25,"height":45},{"x":75,"y":135,"fileNum":72,"id":5440,"width":25,"height":45},{"x":100,"y":135,"fileNum":72,"id":5441,"width":25,"height":45},{"x":0,"y":0,"fileNum":2144,"id":5446,"width":17,"height":50},{"x":17,"y":0,"fileNum":2144,"id":5447,"width":17,"height":50},{"x":34,"y":0,"fileNum":2144,"id":5448,"width":17,"height":50},{"x":51,"y":0,"fileNum":2144,"id":5449,"width":17,"height":50},{"x":0,"y":0,"fileNum":73,"id":5450,"width":25,"height":45},{"x":25,"y":0,"fileNum":73,"id":5451,"width":25,"height":45},{"x":50,"y":0,"fileNum":73,"id":5452,"width":25,"height":45},{"x":75,"y":0,"fileNum":73,"id":5453,"width":25,"height":45},{"x":100,"y":0,"fileNum":73,"id":5454,"width":25,"height":45},{"x":125,"y":0,"fileNum":73,"id":5455,"width":25,"height":45},{"x":0,"y":45,"fileNum":73,"id":5456,"width":25,"height":45},{"x":25,"y":45,"fileNum":73,"id":5457,"width":25,"height":45},{"x":50,"y":45,"fileNum":73,"id":5458,"width":25,"height":45},{"x":75,"y":45,"fileNum":73,"id":5459,"width":25,"height":45},{"x":100,"y":45,"fileNum":73,"id":5460,"width":25,"height":45},{"x":125,"y":45,"fileNum":73,"id":5461,"width":25,"height":45},{"x":0,"y":90,"fileNum":73,"id":5462,"width":25,"height":45},{"x":25,"y":90,"fileNum":73,"id":5463,"width":25,"height":45},{"x":50,"y":90,"fileNum":73,"id":5464,"width":25,"height":45},{"x":75,"y":90,"fileNum":73,"id":5465,"width":25,"height":45},{"x":100,"y":90,"fileNum":73,"id":5466,"width":25,"height":45},{"x":0,"y":135,"fileNum":73,"id":5467,"width":25,"height":45},{"x":25,"y":135,"fileNum":73,"id":5468,"width":25,"height":45},{"x":50,"y":135,"fileNum":73,"id":5469,"width":25,"height":45},{"x":75,"y":135,"fileNum":73,"id":5470,"width":25,"height":45},{"x":100,"y":135,"fileNum":73,"id":5471,"width":25,"height":45},{"x":0,"y":0,"fileNum":4131,"id":5476,"width":53,"height":35},{"x":53,"y":0,"fileNum":4131,"id":5477,"width":53,"height":35},{"x":106,"y":0,"fileNum":4131,"id":5478,"width":53,"height":35},{"x":159,"y":0,"fileNum":4131,"id":5479,"width":53,"height":35},{"x":0,"y":35,"fileNum":4131,"id":5480,"width":53,"height":35},{"x":53,"y":35,"fileNum":4131,"id":5481,"width":53,"height":35},{"x":106,"y":35,"fileNum":4131,"id":5482,"width":53,"height":35},{"x":159,"y":35,"fileNum":4131,"id":5483,"width":53,"height":35},{"x":0,"y":70,"fileNum":4131,"id":5484,"width":53,"height":35},{"x":53,"y":70,"fileNum":4131,"id":5485,"width":53,"height":35},{"x":106,"y":70,"fileNum":4131,"id":5486,"width":53,"height":35},{"x":159,"y":70,"fileNum":4131,"id":5487,"width":53,"height":35},{"x":0,"y":105,"fileNum":4131,"id":5488,"width":53,"height":35},{"x":53,"y":105,"fileNum":4131,"id":5489,"width":53,"height":35},{"x":106,"y":105,"fileNum":4131,"id":5490,"width":53,"height":35},{"x":159,"y":105,"fileNum":4131,"id":5491,"width":53,"height":35},{"x":0,"y":0,"fileNum":2145,"id":5496,"width":17,"height":50},{"x":17,"y":0,"fileNum":2145,"id":5497,"width":17,"height":50},{"x":34,"y":0,"fileNum":2145,"id":5498,"width":17,"height":50},{"x":51,"y":0,"fileNum":2145,"id":5499,"width":17,"height":50},{"x":0,"y":0,"fileNum":12046,"id":5500,"width":32,"height":32},{"x":32,"y":0,"fileNum":12046,"id":5501,"width":32,"height":32},{"x":0,"y":32,"fileNum":12046,"id":5502,"width":32,"height":32},{"x":32,"y":32,"fileNum":12046,"id":5503,"width":32,"height":32},{"x":0,"y":0,"fileNum":60,"id":5504,"width":25,"height":45},{"x":25,"y":0,"fileNum":60,"id":5505,"width":25,"height":45},{"x":50,"y":0,"fileNum":60,"id":5506,"width":25,"height":45},{"x":75,"y":0,"fileNum":60,"id":5507,"width":25,"height":45},{"x":100,"y":0,"fileNum":60,"id":5508,"width":25,"height":45},{"x":125,"y":0,"fileNum":60,"id":5509,"width":25,"height":45},{"x":0,"y":45,"fileNum":60,"id":5510,"width":25,"height":45},{"x":25,"y":45,"fileNum":60,"id":5511,"width":25,"height":45},{"x":50,"y":45,"fileNum":60,"id":5512,"width":25,"height":45},{"x":75,"y":45,"fileNum":60,"id":5513,"width":25,"height":45},{"x":100,"y":45,"fileNum":60,"id":5514,"width":25,"height":45},{"x":125,"y":45,"fileNum":60,"id":5515,"width":25,"height":45},{"x":0,"y":90,"fileNum":60,"id":5516,"width":25,"height":45},{"x":25,"y":90,"fileNum":60,"id":5517,"width":25,"height":45},{"x":50,"y":90,"fileNum":60,"id":5518,"width":25,"height":45},{"x":75,"y":90,"fileNum":60,"id":5519,"width":25,"height":45},{"x":100,"y":90,"fileNum":60,"id":5520,"width":25,"height":45},{"x":0,"y":135,"fileNum":60,"id":5521,"width":25,"height":45},{"x":25,"y":135,"fileNum":60,"id":5522,"width":25,"height":45},{"x":50,"y":135,"fileNum":60,"id":5523,"width":25,"height":45},{"x":75,"y":135,"fileNum":60,"id":5524,"width":25,"height":45},{"x":100,"y":135,"fileNum":60,"id":5525,"width":25,"height":45},{"x":0,"y":0,"fileNum":74,"id":5530,"width":25,"height":45},{"x":25,"y":0,"fileNum":74,"id":5531,"width":25,"height":45},{"x":50,"y":0,"fileNum":74,"id":5532,"width":25,"height":45},{"x":75,"y":0,"fileNum":74,"id":5533,"width":25,"height":45},{"x":100,"y":0,"fileNum":74,"id":5534,"width":25,"height":45},{"x":125,"y":0,"fileNum":74,"id":5535,"width":25,"height":45},{"x":0,"y":45,"fileNum":74,"id":5536,"width":25,"height":45},{"x":25,"y":45,"fileNum":74,"id":5537,"width":25,"height":45},{"x":50,"y":45,"fileNum":74,"id":5538,"width":25,"height":45},{"x":75,"y":45,"fileNum":74,"id":5539,"width":25,"height":45},{"x":100,"y":45,"fileNum":74,"id":5540,"width":25,"height":45},{"x":125,"y":45,"fileNum":74,"id":5541,"width":25,"height":45},{"x":0,"y":90,"fileNum":74,"id":5542,"width":25,"height":45},{"x":25,"y":90,"fileNum":74,"id":5543,"width":25,"height":45},{"x":50,"y":90,"fileNum":74,"id":5544,"width":25,"height":45},{"x":75,"y":90,"fileNum":74,"id":5545,"width":25,"height":45},{"x":100,"y":90,"fileNum":74,"id":5546,"width":25,"height":45},{"x":0,"y":135,"fileNum":74,"id":5547,"width":25,"height":45},{"x":25,"y":135,"fileNum":74,"id":5548,"width":25,"height":45},{"x":50,"y":135,"fileNum":74,"id":5549,"width":25,"height":45},{"x":75,"y":135,"fileNum":74,"id":5550,"width":25,"height":45},{"x":100,"y":135,"fileNum":74,"id":5551,"width":25,"height":45},{"x":0,"y":0,"fileNum":346,"id":5556,"width":32,"height":32},{"x":0,"y":0,"fileNum":422,"id":5557,"width":25,"height":45},{"x":25,"y":0,"fileNum":422,"id":5558,"width":25,"height":45},{"x":50,"y":0,"fileNum":422,"id":5559,"width":25,"height":45},{"x":75,"y":0,"fileNum":422,"id":5560,"width":25,"height":45},{"x":100,"y":0,"fileNum":422,"id":5561,"width":25,"height":45},{"x":125,"y":0,"fileNum":422,"id":5562,"width":25,"height":45},{"x":0,"y":45,"fileNum":422,"id":5563,"width":25,"height":45},{"x":25,"y":45,"fileNum":422,"id":5564,"width":25,"height":45},{"x":50,"y":45,"fileNum":422,"id":5565,"width":25,"height":45},{"x":75,"y":45,"fileNum":422,"id":5566,"width":25,"height":45},{"x":100,"y":45,"fileNum":422,"id":5567,"width":25,"height":45},{"x":125,"y":45,"fileNum":422,"id":5568,"width":25,"height":45},{"x":0,"y":90,"fileNum":422,"id":5569,"width":25,"height":45},{"x":25,"y":90,"fileNum":422,"id":5570,"width":25,"height":45},{"x":50,"y":90,"fileNum":422,"id":5571,"width":25,"height":45},{"x":75,"y":90,"fileNum":422,"id":5572,"width":25,"height":45},{"x":100,"y":90,"fileNum":422,"id":5573,"width":25,"height":45},{"x":0,"y":135,"fileNum":422,"id":5574,"width":25,"height":45},{"x":25,"y":135,"fileNum":422,"id":5575,"width":25,"height":45},{"x":50,"y":135,"fileNum":422,"id":5576,"width":25,"height":45},{"x":75,"y":135,"fileNum":422,"id":5577,"width":25,"height":45},{"x":100,"y":135,"fileNum":422,"id":5578,"width":25,"height":45},{"x":0,"y":0,"fileNum":2146,"id":5583,"width":17,"height":50},{"x":17,"y":0,"fileNum":2146,"id":5584,"width":17,"height":50},{"x":34,"y":0,"fileNum":2146,"id":5585,"width":17,"height":50},{"x":51,"y":0,"fileNum":2146,"id":5586,"width":17,"height":50},{"x":0,"y":0,"fileNum":17013,"id":5587,"width":32,"height":32},{"x":0,"y":0,"fileNum":11019,"id":5588,"width":256,"height":32},{"x":0,"y":0,"fileNum":11021,"id":5589,"width":256,"height":160},{"x":0,"y":0,"fileNum":11020,"id":5590,"width":256,"height":96},{"x":0,"y":0,"fileNum":14028,"id":5591,"width":256,"height":320},{"x":0,"y":0,"fileNum":11022,"id":5592,"width":96,"height":64},{"x":96,"y":0,"fileNum":11022,"id":5593,"width":96,"height":64},{"x":0,"y":0,"fileNum":17014,"id":5594,"width":32,"height":32},{"x":0,"y":0,"fileNum":16089,"id":5595,"width":32,"height":32},{"x":0,"y":0,"fileNum":11023,"id":5596,"width":320,"height":96},{"x":0,"y":0,"fileNum":11024,"id":5597,"width":320,"height":224},{"x":0,"y":0,"fileNum":14030,"id":5598,"width":320,"height":284},{"x":0,"y":0,"fileNum":11025,"id":5599,"width":96,"height":64},{"x":96,"y":0,"fileNum":11025,"id":5600,"width":96,"height":64},{"x":0,"y":0,"fileNum":14031,"id":5601,"width":256,"height":300},{"x":32,"y":0,"fileNum":12038,"id":5602,"width":32,"height":32},{"x":64,"y":0,"fileNum":12038,"id":5603,"width":32,"height":32},{"x":96,"y":0,"fileNum":12038,"id":5604,"width":32,"height":32},{"x":0,"y":32,"fileNum":12038,"id":5605,"width":32,"height":32},{"x":32,"y":32,"fileNum":12038,"id":5606,"width":32,"height":32},{"x":64,"y":32,"fileNum":12038,"id":5607,"width":32,"height":32},{"x":96,"y":32,"fileNum":12038,"id":5608,"width":32,"height":32},{"x":0,"y":64,"fileNum":12038,"id":5609,"width":32,"height":32},{"x":32,"y":64,"fileNum":12038,"id":5610,"width":32,"height":32},{"x":64,"y":64,"fileNum":12038,"id":5611,"width":32,"height":32},{"x":96,"y":64,"fileNum":12038,"id":5612,"width":32,"height":32},{"x":0,"y":96,"fileNum":12038,"id":5613,"width":32,"height":32},{"x":32,"y":96,"fileNum":12038,"id":5614,"width":32,"height":32},{"x":64,"y":96,"fileNum":12038,"id":5615,"width":32,"height":32},{"x":96,"y":96,"fileNum":12038,"id":5616,"width":32,"height":32},{"x":128,"y":0,"fileNum":12038,"id":5617,"width":32,"height":32},{"x":160,"y":0,"fileNum":12038,"id":5618,"width":32,"height":32},{"x":192,"y":0,"fileNum":12038,"id":5619,"width":32,"height":32},{"x":224,"y":0,"fileNum":12038,"id":5620,"width":32,"height":32},{"x":128,"y":32,"fileNum":12038,"id":5621,"width":32,"height":32},{"x":160,"y":32,"fileNum":12038,"id":5622,"width":32,"height":32},{"x":192,"y":32,"fileNum":12038,"id":5623,"width":32,"height":32},{"x":224,"y":32,"fileNum":12038,"id":5624,"width":32,"height":32},{"x":128,"y":64,"fileNum":12038,"id":5625,"width":32,"height":32},{"x":160,"y":64,"fileNum":12038,"id":5626,"width":32,"height":32},{"x":192,"y":64,"fileNum":12038,"id":5627,"width":32,"height":32},{"x":224,"y":64,"fileNum":12038,"id":5628,"width":32,"height":32},{"x":128,"y":96,"fileNum":12038,"id":5629,"width":32,"height":32},{"x":160,"y":96,"fileNum":12038,"id":5630,"width":32,"height":32},{"x":192,"y":96,"fileNum":12038,"id":5631,"width":32,"height":32},{"x":224,"y":96,"fileNum":12038,"id":5632,"width":32,"height":32},{"x":256,"y":0,"fileNum":12038,"id":5633,"width":32,"height":32},{"x":288,"y":0,"fileNum":12038,"id":5634,"width":32,"height":32},{"x":320,"y":0,"fileNum":12038,"id":5635,"width":32,"height":32},{"x":352,"y":0,"fileNum":12038,"id":5636,"width":32,"height":32},{"x":256,"y":32,"fileNum":12038,"id":5637,"width":32,"height":32},{"x":288,"y":32,"fileNum":12038,"id":5638,"width":32,"height":32},{"x":320,"y":32,"fileNum":12038,"id":5639,"width":32,"height":32},{"x":352,"y":32,"fileNum":12038,"id":5640,"width":32,"height":32},{"x":256,"y":64,"fileNum":12038,"id":5641,"width":32,"height":32},{"x":288,"y":64,"fileNum":12038,"id":5642,"width":32,"height":32},{"x":320,"y":64,"fileNum":12038,"id":5643,"width":32,"height":32},{"x":352,"y":64,"fileNum":12038,"id":5644,"width":32,"height":32},{"x":256,"y":96,"fileNum":12038,"id":5645,"width":32,"height":32},{"x":288,"y":96,"fileNum":12038,"id":5646,"width":32,"height":32},{"x":320,"y":96,"fileNum":12038,"id":5647,"width":32,"height":32},{"x":352,"y":96,"fileNum":12038,"id":5648,"width":32,"height":32},{"x":0,"y":128,"fileNum":12038,"id":5649,"width":32,"height":32},{"x":32,"y":128,"fileNum":12038,"id":5650,"width":32,"height":32},{"x":64,"y":128,"fileNum":12038,"id":5651,"width":32,"height":32},{"x":96,"y":128,"fileNum":12038,"id":5652,"width":32,"height":32},{"x":0,"y":160,"fileNum":12038,"id":5653,"width":32,"height":32},{"x":32,"y":160,"fileNum":12038,"id":5654,"width":32,"height":32},{"x":64,"y":160,"fileNum":12038,"id":5655,"width":32,"height":32},{"x":96,"y":160,"fileNum":12038,"id":5656,"width":32,"height":32},{"x":0,"y":192,"fileNum":12038,"id":5657,"width":32,"height":32},{"x":32,"y":192,"fileNum":12038,"id":5658,"width":32,"height":32},{"x":64,"y":192,"fileNum":12038,"id":5659,"width":32,"height":32},{"x":96,"y":192,"fileNum":12038,"id":5660,"width":32,"height":32},{"x":0,"y":224,"fileNum":12038,"id":5661,"width":32,"height":32},{"x":32,"y":224,"fileNum":12038,"id":5662,"width":32,"height":32},{"x":64,"y":224,"fileNum":12038,"id":5663,"width":32,"height":32},{"x":96,"y":224,"fileNum":12038,"id":5664,"width":32,"height":32},{"x":0,"y":0,"fileNum":12062,"id":5681,"width":32,"height":32},{"x":32,"y":0,"fileNum":12062,"id":5682,"width":32,"height":32},{"x":64,"y":0,"fileNum":12062,"id":5683,"width":32,"height":32},{"x":96,"y":0,"fileNum":12062,"id":5684,"width":32,"height":32},{"x":0,"y":32,"fileNum":12062,"id":5685,"width":32,"height":32},{"x":32,"y":32,"fileNum":12062,"id":5686,"width":32,"height":32},{"x":64,"y":32,"fileNum":12062,"id":5687,"width":32,"height":32},{"x":96,"y":32,"fileNum":12062,"id":5688,"width":32,"height":32},{"x":0,"y":64,"fileNum":12062,"id":5689,"width":32,"height":32},{"x":32,"y":64,"fileNum":12062,"id":5690,"width":32,"height":32},{"x":64,"y":64,"fileNum":12062,"id":5691,"width":32,"height":32},{"x":96,"y":64,"fileNum":12062,"id":5692,"width":32,"height":32},{"x":0,"y":96,"fileNum":12062,"id":5693,"width":32,"height":32},{"x":32,"y":96,"fileNum":12062,"id":5694,"width":32,"height":32},{"x":64,"y":96,"fileNum":12062,"id":5695,"width":32,"height":32},{"x":96,"y":96,"fileNum":12062,"id":5696,"width":32,"height":32},{"x":128,"y":0,"fileNum":12062,"id":5697,"width":32,"height":32},{"x":160,"y":0,"fileNum":12062,"id":5698,"width":32,"height":32},{"x":192,"y":0,"fileNum":12062,"id":5699,"width":32,"height":32},{"x":224,"y":0,"fileNum":12062,"id":5700,"width":32,"height":32},{"x":128,"y":32,"fileNum":12062,"id":5701,"width":32,"height":32},{"x":160,"y":32,"fileNum":12062,"id":5702,"width":32,"height":32},{"x":192,"y":32,"fileNum":12062,"id":5703,"width":32,"height":32},{"x":224,"y":32,"fileNum":12062,"id":5704,"width":32,"height":32},{"x":128,"y":64,"fileNum":12062,"id":5705,"width":32,"height":32},{"x":160,"y":64,"fileNum":12062,"id":5706,"width":32,"height":32},{"x":192,"y":64,"fileNum":12062,"id":5707,"width":32,"height":32},{"x":224,"y":64,"fileNum":12062,"id":5708,"width":32,"height":32},{"x":128,"y":96,"fileNum":12062,"id":5709,"width":32,"height":32},{"x":160,"y":96,"fileNum":12062,"id":5710,"width":32,"height":32},{"x":192,"y":96,"fileNum":12062,"id":5711,"width":32,"height":32},{"x":224,"y":96,"fileNum":12062,"id":5712,"width":32,"height":32},{"x":256,"y":0,"fileNum":12062,"id":5713,"width":32,"height":32},{"x":288,"y":0,"fileNum":12062,"id":5714,"width":32,"height":32},{"x":320,"y":0,"fileNum":12062,"id":5715,"width":32,"height":32},{"x":352,"y":0,"fileNum":12062,"id":5716,"width":32,"height":32},{"x":256,"y":32,"fileNum":12062,"id":5717,"width":32,"height":32},{"x":288,"y":32,"fileNum":12062,"id":5718,"width":32,"height":32},{"x":320,"y":32,"fileNum":12062,"id":5719,"width":32,"height":32},{"x":352,"y":32,"fileNum":12062,"id":5720,"width":32,"height":32},{"x":256,"y":64,"fileNum":12062,"id":5721,"width":32,"height":32},{"x":288,"y":64,"fileNum":12062,"id":5722,"width":32,"height":32},{"x":320,"y":64,"fileNum":12062,"id":5723,"width":32,"height":32},{"x":352,"y":64,"fileNum":12062,"id":5724,"width":32,"height":32},{"x":256,"y":96,"fileNum":12062,"id":5725,"width":32,"height":32},{"x":288,"y":96,"fileNum":12062,"id":5726,"width":32,"height":32},{"x":320,"y":96,"fileNum":12062,"id":5727,"width":32,"height":32},{"x":352,"y":96,"fileNum":12062,"id":5728,"width":32,"height":32},{"x":0,"y":0,"fileNum":22054,"id":5729,"width":32,"height":32},{"x":0,"y":0,"fileNum":22055,"id":5730,"width":32,"height":32},{"x":0,"y":0,"fileNum":22056,"id":5731,"width":32,"height":32},{"x":0,"y":0,"fileNum":22057,"id":5732,"width":32,"height":32},{"x":0,"y":0,"fileNum":22058,"id":5733,"width":32,"height":32},{"x":0,"y":0,"fileNum":22059,"id":5734,"width":32,"height":32},{"x":0,"y":0,"fileNum":22060,"id":5735,"width":32,"height":32},{"x":0,"y":0,"fileNum":22061,"id":5736,"width":32,"height":32},{"x":0,"y":0,"fileNum":22062,"id":5737,"width":32,"height":32},{"x":0,"y":0,"fileNum":22063,"id":5738,"width":32,"height":32},{"x":0,"y":0,"fileNum":22064,"id":5739,"width":32,"height":32},{"x":0,"y":0,"fileNum":22065,"id":5740,"width":32,"height":32},{"x":0,"y":0,"fileNum":22066,"id":5741,"width":32,"height":32},{"x":0,"y":0,"fileNum":22067,"id":5742,"width":32,"height":32},{"x":0,"y":0,"fileNum":22068,"id":5743,"width":32,"height":32},{"x":0,"y":0,"fileNum":22069,"id":5744,"width":32,"height":32},{"x":0,"y":0,"fileNum":22070,"id":5745,"width":32,"height":32},{"x":0,"y":0,"fileNum":22071,"id":5746,"width":32,"height":32},{"x":0,"y":0,"fileNum":15153,"id":5747,"width":93,"height":32},{"x":0,"y":0,"fileNum":16099,"id":5748,"width":32,"height":32},{"x":4,"y":0,"fileNum":15155,"id":5749,"width":32,"height":512},{"x":0,"y":0,"fileNum":15154,"id":5752,"width":64,"height":288},{"x":0,"y":0,"fileNum":15140,"id":5753,"width":64,"height":128},{"x":0,"y":0,"fileNum":15156,"id":5754,"width":128,"height":175},{"x":0,"y":0,"fileNum":12009,"id":5755,"width":100,"height":100},{"x":0,"y":0,"fileNum":2147,"id":5756,"width":17,"height":50},{"x":17,"y":0,"fileNum":2147,"id":5757,"width":17,"height":50},{"x":34,"y":0,"fileNum":2147,"id":5758,"width":17,"height":50},{"x":51,"y":0,"fileNum":2147,"id":5759,"width":17,"height":50},{"x":0,"y":0,"fileNum":12010,"id":5762,"width":37,"height":47},{"x":37,"y":0,"fileNum":12010,"id":5763,"width":33,"height":47},{"x":70,"y":0,"fileNum":12010,"id":5764,"width":30,"height":47},{"x":0,"y":47,"fileNum":12010,"id":5765,"width":31,"height":53},{"x":31,"y":47,"fileNum":12010,"id":5766,"width":69,"height":53},{"x":0,"y":0,"fileNum":2148,"id":5767,"width":17,"height":50},{"x":17,"y":0,"fileNum":2148,"id":5768,"width":17,"height":50},{"x":34,"y":0,"fileNum":2148,"id":5769,"width":17,"height":50},{"x":51,"y":0,"fileNum":2148,"id":5770,"width":17,"height":50},{"x":0,"y":0,"fileNum":8027,"id":5772,"width":80,"height":80},{"x":0,"y":0,"fileNum":12036,"id":5773,"width":32,"height":32},{"x":32,"y":0,"fileNum":12036,"id":5774,"width":32,"height":32},{"x":64,"y":0,"fileNum":12036,"id":5775,"width":32,"height":32},{"x":96,"y":0,"fileNum":12036,"id":5776,"width":32,"height":32},{"x":0,"y":32,"fileNum":12036,"id":5777,"width":32,"height":32},{"x":32,"y":32,"fileNum":12036,"id":5778,"width":32,"height":32},{"x":64,"y":32,"fileNum":12036,"id":5779,"width":32,"height":32},{"x":96,"y":32,"fileNum":12036,"id":5780,"width":32,"height":32},{"x":0,"y":64,"fileNum":12036,"id":5781,"width":32,"height":32},{"x":32,"y":64,"fileNum":12036,"id":5782,"width":32,"height":32},{"x":64,"y":64,"fileNum":12036,"id":5783,"width":32,"height":32},{"x":96,"y":64,"fileNum":12036,"id":5784,"width":32,"height":32},{"x":0,"y":96,"fileNum":12036,"id":5785,"width":32,"height":32},{"x":32,"y":96,"fileNum":12036,"id":5786,"width":32,"height":32},{"x":64,"y":96,"fileNum":12036,"id":5787,"width":32,"height":32},{"x":96,"y":96,"fileNum":12036,"id":5788,"width":32,"height":32},{"x":128,"y":0,"fileNum":12036,"id":5789,"width":32,"height":32},{"x":160,"y":0,"fileNum":12036,"id":5790,"width":32,"height":32},{"x":192,"y":0,"fileNum":12036,"id":5791,"width":32,"height":32},{"x":224,"y":0,"fileNum":12036,"id":5792,"width":32,"height":32},{"x":128,"y":32,"fileNum":12036,"id":5793,"width":32,"height":32},{"x":160,"y":32,"fileNum":12036,"id":5794,"width":32,"height":32},{"x":192,"y":32,"fileNum":12036,"id":5795,"width":32,"height":32},{"x":224,"y":32,"fileNum":12036,"id":5796,"width":32,"height":32},{"x":128,"y":64,"fileNum":12036,"id":5797,"width":32,"height":32},{"x":160,"y":64,"fileNum":12036,"id":5798,"width":32,"height":32},{"x":192,"y":64,"fileNum":12036,"id":5799,"width":32,"height":32},{"x":224,"y":64,"fileNum":12036,"id":5800,"width":32,"height":32},{"x":128,"y":96,"fileNum":12036,"id":5801,"width":32,"height":32},{"x":160,"y":96,"fileNum":12036,"id":5802,"width":32,"height":32},{"x":192,"y":96,"fileNum":12036,"id":5803,"width":32,"height":32},{"x":224,"y":96,"fileNum":12036,"id":5804,"width":32,"height":32},{"x":256,"y":0,"fileNum":12036,"id":5805,"width":32,"height":32},{"x":288,"y":0,"fileNum":12036,"id":5806,"width":32,"height":32},{"x":320,"y":0,"fileNum":12036,"id":5807,"width":32,"height":32},{"x":352,"y":0,"fileNum":12036,"id":5808,"width":32,"height":32},{"x":256,"y":32,"fileNum":12036,"id":5809,"width":32,"height":32},{"x":288,"y":32,"fileNum":12036,"id":5810,"width":32,"height":32},{"x":320,"y":32,"fileNum":12036,"id":5811,"width":32,"height":32},{"x":352,"y":32,"fileNum":12036,"id":5812,"width":32,"height":32},{"x":256,"y":64,"fileNum":12036,"id":5813,"width":32,"height":32},{"x":288,"y":64,"fileNum":12036,"id":5814,"width":32,"height":32},{"x":320,"y":64,"fileNum":12036,"id":5815,"width":32,"height":32},{"x":352,"y":64,"fileNum":12036,"id":5816,"width":32,"height":32},{"x":256,"y":96,"fileNum":12036,"id":5817,"width":32,"height":32},{"x":288,"y":96,"fileNum":12036,"id":5818,"width":32,"height":32},{"x":320,"y":96,"fileNum":12036,"id":5819,"width":32,"height":32},{"x":352,"y":96,"fileNum":12036,"id":5820,"width":32,"height":32},{"x":0,"y":128,"fileNum":12036,"id":5821,"width":32,"height":32},{"x":32,"y":128,"fileNum":12036,"id":5822,"width":32,"height":32},{"x":64,"y":128,"fileNum":12036,"id":5823,"width":32,"height":32},{"x":96,"y":128,"fileNum":12036,"id":5824,"width":32,"height":32},{"x":0,"y":160,"fileNum":12036,"id":5825,"width":32,"height":32},{"x":32,"y":160,"fileNum":12036,"id":5826,"width":32,"height":32},{"x":64,"y":160,"fileNum":12036,"id":5827,"width":32,"height":32},{"x":96,"y":160,"fileNum":12036,"id":5828,"width":32,"height":32},{"x":0,"y":192,"fileNum":12036,"id":5829,"width":32,"height":32},{"x":32,"y":192,"fileNum":12036,"id":5830,"width":32,"height":32},{"x":64,"y":192,"fileNum":12036,"id":5831,"width":32,"height":32},{"x":96,"y":192,"fileNum":12036,"id":5832,"width":32,"height":32},{"x":0,"y":224,"fileNum":12036,"id":5833,"width":32,"height":32},{"x":32,"y":224,"fileNum":12036,"id":5834,"width":32,"height":32},{"x":64,"y":224,"fileNum":12036,"id":5835,"width":32,"height":32},{"x":96,"y":224,"fileNum":12036,"id":5836,"width":32,"height":32},{"x":0,"y":0,"fileNum":8023,"id":5853,"width":32,"height":32},{"x":32,"y":0,"fileNum":8023,"id":5854,"width":32,"height":32},{"x":64,"y":0,"fileNum":8023,"id":5855,"width":32,"height":32},{"x":96,"y":0,"fileNum":8023,"id":5856,"width":32,"height":32},{"x":0,"y":32,"fileNum":8023,"id":5857,"width":32,"height":32},{"x":32,"y":32,"fileNum":8023,"id":5858,"width":32,"height":32},{"x":64,"y":32,"fileNum":8023,"id":5859,"width":32,"height":32},{"x":96,"y":32,"fileNum":8023,"id":5860,"width":32,"height":32},{"x":0,"y":64,"fileNum":8023,"id":5861,"width":32,"height":32},{"x":32,"y":64,"fileNum":8023,"id":5862,"width":32,"height":32},{"x":64,"y":64,"fileNum":8023,"id":5863,"width":32,"height":32},{"x":96,"y":64,"fileNum":8023,"id":5864,"width":32,"height":32},{"x":0,"y":96,"fileNum":8023,"id":5865,"width":32,"height":32},{"x":32,"y":96,"fileNum":8023,"id":5866,"width":32,"height":32},{"x":64,"y":96,"fileNum":8023,"id":5867,"width":32,"height":32},{"x":96,"y":96,"fileNum":8023,"id":5868,"width":32,"height":32},{"x":128,"y":0,"fileNum":8023,"id":5869,"width":32,"height":32},{"x":160,"y":0,"fileNum":8023,"id":5870,"width":32,"height":32},{"x":192,"y":0,"fileNum":8023,"id":5871,"width":32,"height":32},{"x":224,"y":0,"fileNum":8023,"id":5872,"width":32,"height":32},{"x":128,"y":32,"fileNum":8023,"id":5873,"width":32,"height":32},{"x":160,"y":32,"fileNum":8023,"id":5874,"width":32,"height":32},{"x":192,"y":32,"fileNum":8023,"id":5875,"width":32,"height":32},{"x":224,"y":32,"fileNum":8023,"id":5876,"width":32,"height":32},{"x":128,"y":64,"fileNum":8023,"id":5877,"width":32,"height":32},{"x":160,"y":64,"fileNum":8023,"id":5878,"width":32,"height":32},{"x":192,"y":64,"fileNum":8023,"id":5879,"width":32,"height":32},{"x":224,"y":64,"fileNum":8023,"id":5880,"width":32,"height":32},{"x":128,"y":96,"fileNum":8023,"id":5881,"width":32,"height":32},{"x":160,"y":96,"fileNum":8023,"id":5882,"width":32,"height":32},{"x":192,"y":96,"fileNum":8023,"id":5883,"width":32,"height":32},{"x":224,"y":96,"fileNum":8023,"id":5884,"width":32,"height":32},{"x":256,"y":0,"fileNum":8023,"id":5885,"width":32,"height":32},{"x":288,"y":0,"fileNum":8023,"id":5886,"width":32,"height":32},{"x":320,"y":0,"fileNum":8023,"id":5887,"width":32,"height":32},{"x":352,"y":0,"fileNum":8023,"id":5888,"width":32,"height":32},{"x":256,"y":32,"fileNum":8023,"id":5889,"width":32,"height":32},{"x":288,"y":32,"fileNum":8023,"id":5890,"width":32,"height":32},{"x":320,"y":32,"fileNum":8023,"id":5891,"width":32,"height":32},{"x":352,"y":32,"fileNum":8023,"id":5892,"width":32,"height":32},{"x":256,"y":64,"fileNum":8023,"id":5893,"width":32,"height":32},{"x":288,"y":64,"fileNum":8023,"id":5894,"width":32,"height":32},{"x":320,"y":64,"fileNum":8023,"id":5895,"width":32,"height":32},{"x":352,"y":64,"fileNum":8023,"id":5896,"width":32,"height":32},{"x":256,"y":96,"fileNum":8023,"id":5897,"width":32,"height":32},{"x":288,"y":96,"fileNum":8023,"id":5898,"width":32,"height":32},{"x":320,"y":96,"fileNum":8023,"id":5899,"width":32,"height":32},{"x":352,"y":96,"fileNum":8023,"id":5900,"width":32,"height":32},{"x":384,"y":0,"fileNum":8023,"id":5901,"width":32,"height":32},{"x":416,"y":0,"fileNum":8023,"id":5902,"width":32,"height":32},{"x":448,"y":0,"fileNum":8023,"id":5903,"width":32,"height":32},{"x":480,"y":0,"fileNum":8023,"id":5904,"width":32,"height":32},{"x":384,"y":32,"fileNum":8023,"id":5905,"width":32,"height":32},{"x":416,"y":32,"fileNum":8023,"id":5906,"width":32,"height":32},{"x":448,"y":32,"fileNum":8023,"id":5907,"width":32,"height":32},{"x":480,"y":32,"fileNum":8023,"id":5908,"width":32,"height":32},{"x":384,"y":64,"fileNum":8023,"id":5909,"width":32,"height":32},{"x":416,"y":64,"fileNum":8023,"id":5910,"width":32,"height":32},{"x":448,"y":64,"fileNum":8023,"id":5911,"width":32,"height":32},{"x":480,"y":64,"fileNum":8023,"id":5912,"width":32,"height":32},{"x":384,"y":96,"fileNum":8023,"id":5913,"width":32,"height":32},{"x":416,"y":96,"fileNum":8023,"id":5914,"width":32,"height":32},{"x":448,"y":96,"fileNum":8023,"id":5915,"width":32,"height":32},{"x":480,"y":96,"fileNum":8023,"id":5916,"width":32,"height":32},{"x":0,"y":0,"fileNum":3092,"id":5918,"width":95,"height":110},{"x":95,"y":0,"fileNum":3092,"id":5919,"width":95,"height":110},{"x":190,"y":0,"fileNum":3092,"id":5920,"width":95,"height":110},{"x":285,"y":0,"fileNum":3092,"id":5921,"width":95,"height":110},{"x":380,"y":0,"fileNum":3092,"id":5922,"width":95,"height":110},{"x":475,"y":0,"fileNum":3092,"id":5923,"width":95,"height":110},{"x":570,"y":0,"fileNum":3092,"id":5924,"width":95,"height":110},{"x":665,"y":0,"fileNum":3092,"id":5925,"width":95,"height":110},{"x":0,"y":110,"fileNum":3092,"id":5926,"width":95,"height":110},{"x":95,"y":110,"fileNum":3092,"id":5927,"width":95,"height":110},{"x":190,"y":110,"fileNum":3092,"id":5928,"width":95,"height":110},{"x":285,"y":110,"fileNum":3092,"id":5929,"width":95,"height":110},{"x":380,"y":110,"fileNum":3092,"id":5930,"width":95,"height":110},{"x":475,"y":110,"fileNum":3092,"id":5931,"width":95,"height":110},{"x":570,"y":110,"fileNum":3092,"id":5932,"width":95,"height":110},{"x":0,"y":220,"fileNum":3092,"id":5933,"width":95,"height":110},{"x":95,"y":220,"fileNum":3092,"id":5934,"width":95,"height":110},{"x":190,"y":220,"fileNum":3092,"id":5935,"width":95,"height":110},{"x":285,"y":220,"fileNum":3092,"id":5936,"width":95,"height":110},{"x":380,"y":220,"fileNum":3092,"id":5937,"width":95,"height":110},{"x":475,"y":220,"fileNum":3092,"id":5938,"width":95,"height":110},{"x":570,"y":220,"fileNum":3092,"id":5939,"width":95,"height":110},{"x":665,"y":220,"fileNum":3092,"id":5940,"width":95,"height":110},{"x":0,"y":0,"fileNum":3098,"id":5944,"width":96,"height":128},{"x":96,"y":0,"fileNum":3098,"id":5945,"width":96,"height":128},{"x":192,"y":0,"fileNum":3098,"id":5946,"width":96,"height":128},{"x":288,"y":0,"fileNum":3098,"id":5947,"width":96,"height":128},{"x":384,"y":0,"fileNum":3098,"id":5948,"width":96,"height":128},{"x":0,"y":128,"fileNum":3098,"id":5949,"width":96,"height":128},{"x":96,"y":128,"fileNum":3098,"id":5950,"width":96,"height":128},{"x":192,"y":128,"fileNum":3098,"id":5951,"width":96,"height":128},{"x":288,"y":128,"fileNum":3098,"id":5952,"width":96,"height":128},{"x":384,"y":128,"fileNum":3098,"id":5953,"width":96,"height":128},{"x":0,"y":0,"fileNum":313,"id":5955,"width":32,"height":32},{"x":0,"y":0,"fileNum":302,"id":5956,"width":25,"height":45},{"x":25,"y":0,"fileNum":302,"id":5957,"width":25,"height":45},{"x":50,"y":0,"fileNum":302,"id":5958,"width":25,"height":45},{"x":75,"y":0,"fileNum":302,"id":5959,"width":25,"height":45},{"x":100,"y":0,"fileNum":302,"id":5960,"width":25,"height":45},{"x":125,"y":0,"fileNum":302,"id":5961,"width":25,"height":45},{"x":0,"y":45,"fileNum":302,"id":5962,"width":25,"height":45},{"x":25,"y":45,"fileNum":302,"id":5963,"width":25,"height":45},{"x":50,"y":45,"fileNum":302,"id":5964,"width":25,"height":45},{"x":75,"y":45,"fileNum":302,"id":5965,"width":25,"height":45},{"x":100,"y":45,"fileNum":302,"id":5966,"width":25,"height":45},{"x":125,"y":45,"fileNum":302,"id":5967,"width":25,"height":45},{"x":0,"y":90,"fileNum":302,"id":5968,"width":25,"height":45},{"x":25,"y":90,"fileNum":302,"id":5969,"width":25,"height":45},{"x":50,"y":90,"fileNum":302,"id":5970,"width":25,"height":45},{"x":75,"y":90,"fileNum":302,"id":5971,"width":25,"height":45},{"x":100,"y":90,"fileNum":302,"id":5972,"width":25,"height":45},{"x":0,"y":135,"fileNum":302,"id":5973,"width":25,"height":45},{"x":25,"y":135,"fileNum":302,"id":5974,"width":25,"height":45},{"x":50,"y":135,"fileNum":302,"id":5975,"width":25,"height":45},{"x":75,"y":135,"fileNum":302,"id":5976,"width":25,"height":45},{"x":100,"y":135,"fileNum":302,"id":5977,"width":25,"height":45},{"x":0,"y":0,"fileNum":2149,"id":5982,"width":17,"height":50},{"x":17,"y":0,"fileNum":2149,"id":5983,"width":17,"height":50},{"x":34,"y":0,"fileNum":2149,"id":5984,"width":17,"height":50},{"x":51,"y":0,"fileNum":2149,"id":5985,"width":17,"height":50},{"x":0,"y":0,"fileNum":2150,"id":5986,"width":17,"height":50},{"x":17,"y":0,"fileNum":2150,"id":5987,"width":17,"height":50},{"x":34,"y":0,"fileNum":2150,"id":5988,"width":17,"height":50},{"x":51,"y":0,"fileNum":2150,"id":5989,"width":17,"height":50},{"x":0,"y":0,"fileNum":2151,"id":5990,"width":17,"height":50},{"x":17,"y":0,"fileNum":2151,"id":5991,"width":17,"height":50},{"x":34,"y":0,"fileNum":2151,"id":5992,"width":17,"height":50},{"x":51,"y":0,"fileNum":2151,"id":5993,"width":17,"height":50},{"x":0,"y":0,"fileNum":2152,"id":5994,"width":17,"height":50},{"x":17,"y":0,"fileNum":2152,"id":5995,"width":17,"height":50},{"x":34,"y":0,"fileNum":2152,"id":5996,"width":17,"height":50},{"x":51,"y":0,"fileNum":2152,"id":5997,"width":17,"height":50},{"x":0,"y":0,"fileNum":12052,"id":6000,"width":32,"height":32},{"x":32,"y":0,"fileNum":12052,"id":6001,"width":32,"height":32},{"x":64,"y":0,"fileNum":12052,"id":6002,"width":32,"height":32},{"x":96,"y":0,"fileNum":12052,"id":6003,"width":32,"height":32},{"x":0,"y":32,"fileNum":12052,"id":6004,"width":32,"height":32},{"x":32,"y":32,"fileNum":12052,"id":6005,"width":32,"height":32},{"x":64,"y":32,"fileNum":12052,"id":6006,"width":32,"height":32},{"x":96,"y":32,"fileNum":12052,"id":6007,"width":32,"height":32},{"x":0,"y":64,"fileNum":12052,"id":6008,"width":32,"height":32},{"x":32,"y":64,"fileNum":12052,"id":6009,"width":32,"height":32},{"x":64,"y":64,"fileNum":12052,"id":6010,"width":32,"height":32},{"x":96,"y":64,"fileNum":12052,"id":6011,"width":32,"height":32},{"x":0,"y":96,"fileNum":12052,"id":6012,"width":32,"height":32},{"x":32,"y":96,"fileNum":12052,"id":6013,"width":32,"height":32},{"x":64,"y":96,"fileNum":12052,"id":6014,"width":32,"height":32},{"x":96,"y":96,"fileNum":12052,"id":6015,"width":32,"height":32},{"x":128,"y":0,"fileNum":12052,"id":6016,"width":32,"height":32},{"x":160,"y":0,"fileNum":12052,"id":6017,"width":32,"height":32},{"x":192,"y":0,"fileNum":12052,"id":6018,"width":32,"height":32},{"x":224,"y":0,"fileNum":12052,"id":6019,"width":32,"height":32},{"x":128,"y":32,"fileNum":12052,"id":6020,"width":32,"height":32},{"x":160,"y":32,"fileNum":12052,"id":6021,"width":32,"height":32},{"x":192,"y":32,"fileNum":12052,"id":6022,"width":32,"height":32},{"x":224,"y":32,"fileNum":12052,"id":6023,"width":32,"height":32},{"x":128,"y":64,"fileNum":12052,"id":6024,"width":32,"height":32},{"x":160,"y":64,"fileNum":12052,"id":6025,"width":32,"height":32},{"x":192,"y":64,"fileNum":12052,"id":6026,"width":32,"height":32},{"x":224,"y":64,"fileNum":12052,"id":6027,"width":32,"height":32},{"x":128,"y":96,"fileNum":12052,"id":6028,"width":32,"height":32},{"x":160,"y":96,"fileNum":12052,"id":6029,"width":32,"height":32},{"x":192,"y":96,"fileNum":12052,"id":6030,"width":32,"height":32},{"x":224,"y":96,"fileNum":12052,"id":6031,"width":32,"height":32},{"x":256,"y":0,"fileNum":12052,"id":6032,"width":32,"height":32},{"x":288,"y":0,"fileNum":12052,"id":6033,"width":32,"height":32},{"x":320,"y":0,"fileNum":12052,"id":6034,"width":32,"height":32},{"x":352,"y":0,"fileNum":12052,"id":6035,"width":32,"height":32},{"x":256,"y":32,"fileNum":12052,"id":6036,"width":32,"height":32},{"x":288,"y":32,"fileNum":12052,"id":6037,"width":32,"height":32},{"x":320,"y":32,"fileNum":12052,"id":6038,"width":32,"height":32},{"x":352,"y":32,"fileNum":12052,"id":6039,"width":32,"height":32},{"x":256,"y":64,"fileNum":12052,"id":6040,"width":32,"height":32},{"x":288,"y":64,"fileNum":12052,"id":6041,"width":32,"height":32},{"x":320,"y":64,"fileNum":12052,"id":6042,"width":32,"height":32},{"x":352,"y":64,"fileNum":12052,"id":6043,"width":32,"height":32},{"x":256,"y":96,"fileNum":12052,"id":6044,"width":32,"height":32},{"x":288,"y":96,"fileNum":12052,"id":6045,"width":32,"height":32},{"x":320,"y":96,"fileNum":12052,"id":6046,"width":32,"height":32},{"x":352,"y":96,"fileNum":12052,"id":6047,"width":32,"height":32},{"x":384,"y":0,"fileNum":12052,"id":6048,"width":32,"height":32},{"x":416,"y":0,"fileNum":12052,"id":6049,"width":32,"height":32},{"x":448,"y":0,"fileNum":12052,"id":6050,"width":32,"height":32},{"x":480,"y":0,"fileNum":12052,"id":6051,"width":32,"height":32},{"x":384,"y":32,"fileNum":12052,"id":6052,"width":32,"height":32},{"x":416,"y":32,"fileNum":12052,"id":6053,"width":32,"height":32},{"x":448,"y":32,"fileNum":12052,"id":6054,"width":32,"height":32},{"x":480,"y":32,"fileNum":12052,"id":6055,"width":32,"height":32},{"x":384,"y":64,"fileNum":12052,"id":6056,"width":32,"height":32},{"x":416,"y":64,"fileNum":12052,"id":6057,"width":32,"height":32},{"x":448,"y":64,"fileNum":12052,"id":6058,"width":32,"height":32},{"x":480,"y":64,"fileNum":12052,"id":6059,"width":32,"height":32},{"x":384,"y":96,"fileNum":12052,"id":6060,"width":32,"height":32},{"x":416,"y":96,"fileNum":12052,"id":6061,"width":32,"height":32},{"x":448,"y":96,"fileNum":12052,"id":6062,"width":32,"height":32},{"x":480,"y":96,"fileNum":12052,"id":6063,"width":32,"height":32},{"x":0,"y":0,"fileNum":12053,"id":6064,"width":32,"height":32},{"x":32,"y":0,"fileNum":12053,"id":6065,"width":32,"height":32},{"x":64,"y":0,"fileNum":12053,"id":6066,"width":32,"height":32},{"x":96,"y":0,"fileNum":12053,"id":6067,"width":32,"height":32},{"x":0,"y":32,"fileNum":12053,"id":6068,"width":32,"height":32},{"x":32,"y":32,"fileNum":12053,"id":6069,"width":32,"height":32},{"x":64,"y":32,"fileNum":12053,"id":6070,"width":32,"height":32},{"x":96,"y":32,"fileNum":12053,"id":6071,"width":32,"height":32},{"x":0,"y":64,"fileNum":12053,"id":6072,"width":32,"height":32},{"x":32,"y":64,"fileNum":12053,"id":6073,"width":32,"height":32},{"x":64,"y":64,"fileNum":12053,"id":6074,"width":32,"height":32},{"x":96,"y":64,"fileNum":12053,"id":6075,"width":32,"height":32},{"x":0,"y":96,"fileNum":12053,"id":6076,"width":32,"height":32},{"x":32,"y":96,"fileNum":12053,"id":6077,"width":32,"height":32},{"x":64,"y":96,"fileNum":12053,"id":6078,"width":32,"height":32},{"x":96,"y":96,"fileNum":12053,"id":6079,"width":32,"height":32},{"x":128,"y":0,"fileNum":12053,"id":6080,"width":32,"height":32},{"x":160,"y":0,"fileNum":12053,"id":6081,"width":32,"height":32},{"x":192,"y":0,"fileNum":12053,"id":6082,"width":32,"height":32},{"x":224,"y":0,"fileNum":12053,"id":6083,"width":32,"height":32},{"x":128,"y":32,"fileNum":12053,"id":6084,"width":32,"height":32},{"x":160,"y":32,"fileNum":12053,"id":6085,"width":32,"height":32},{"x":192,"y":32,"fileNum":12053,"id":6086,"width":32,"height":32},{"x":224,"y":32,"fileNum":12053,"id":6087,"width":32,"height":32},{"x":128,"y":64,"fileNum":12053,"id":6088,"width":32,"height":32},{"x":160,"y":64,"fileNum":12053,"id":6089,"width":32,"height":32},{"x":192,"y":64,"fileNum":12053,"id":6090,"width":32,"height":32},{"x":224,"y":64,"fileNum":12053,"id":6091,"width":32,"height":32},{"x":128,"y":96,"fileNum":12053,"id":6092,"width":32,"height":32},{"x":160,"y":96,"fileNum":12053,"id":6093,"width":32,"height":32},{"x":192,"y":96,"fileNum":12053,"id":6094,"width":32,"height":32},{"x":224,"y":96,"fileNum":12053,"id":6095,"width":32,"height":32},{"x":256,"y":0,"fileNum":12053,"id":6096,"width":32,"height":32},{"x":288,"y":0,"fileNum":12053,"id":6097,"width":32,"height":32},{"x":320,"y":0,"fileNum":12053,"id":6098,"width":32,"height":32},{"x":352,"y":0,"fileNum":12053,"id":6099,"width":32,"height":32},{"x":256,"y":32,"fileNum":12053,"id":6100,"width":32,"height":32},{"x":288,"y":32,"fileNum":12053,"id":6101,"width":32,"height":32},{"x":320,"y":32,"fileNum":12053,"id":6102,"width":32,"height":32},{"x":352,"y":32,"fileNum":12053,"id":6103,"width":32,"height":32},{"x":256,"y":64,"fileNum":12053,"id":6104,"width":32,"height":32},{"x":288,"y":64,"fileNum":12053,"id":6105,"width":32,"height":32},{"x":320,"y":64,"fileNum":12053,"id":6106,"width":32,"height":32},{"x":352,"y":64,"fileNum":12053,"id":6107,"width":32,"height":32},{"x":256,"y":96,"fileNum":12053,"id":6108,"width":32,"height":32},{"x":288,"y":96,"fileNum":12053,"id":6109,"width":32,"height":32},{"x":320,"y":96,"fileNum":12053,"id":6110,"width":32,"height":32},{"x":352,"y":96,"fileNum":12053,"id":6111,"width":32,"height":32},{"x":384,"y":0,"fileNum":12053,"id":6112,"width":32,"height":32},{"x":416,"y":0,"fileNum":12053,"id":6113,"width":32,"height":32},{"x":448,"y":0,"fileNum":12053,"id":6114,"width":32,"height":32},{"x":480,"y":0,"fileNum":12053,"id":6115,"width":32,"height":32},{"x":384,"y":32,"fileNum":12053,"id":6116,"width":32,"height":32},{"x":416,"y":32,"fileNum":12053,"id":6117,"width":32,"height":32},{"x":448,"y":32,"fileNum":12053,"id":6118,"width":32,"height":32},{"x":480,"y":32,"fileNum":12053,"id":6119,"width":32,"height":32},{"x":384,"y":64,"fileNum":12053,"id":6120,"width":32,"height":32},{"x":416,"y":64,"fileNum":12053,"id":6121,"width":32,"height":32},{"x":448,"y":64,"fileNum":12053,"id":6122,"width":32,"height":32},{"x":480,"y":64,"fileNum":12053,"id":6123,"width":32,"height":32},{"x":384,"y":96,"fileNum":12053,"id":6124,"width":32,"height":32},{"x":416,"y":96,"fileNum":12053,"id":6125,"width":32,"height":32},{"x":448,"y":96,"fileNum":12053,"id":6126,"width":32,"height":32},{"x":480,"y":96,"fileNum":12053,"id":6127,"width":32,"height":32},{"x":0,"y":0,"fileNum":12054,"id":6128,"width":32,"height":32},{"x":32,"y":0,"fileNum":12054,"id":6129,"width":32,"height":32},{"x":64,"y":0,"fileNum":12054,"id":6130,"width":32,"height":32},{"x":96,"y":0,"fileNum":12054,"id":6131,"width":32,"height":32},{"x":0,"y":32,"fileNum":12054,"id":6132,"width":32,"height":32},{"x":32,"y":32,"fileNum":12054,"id":6133,"width":32,"height":32},{"x":64,"y":32,"fileNum":12054,"id":6134,"width":32,"height":32},{"x":96,"y":32,"fileNum":12054,"id":6135,"width":32,"height":32},{"x":0,"y":64,"fileNum":12054,"id":6136,"width":32,"height":32},{"x":32,"y":64,"fileNum":12054,"id":6137,"width":32,"height":32},{"x":64,"y":64,"fileNum":12054,"id":6138,"width":32,"height":32},{"x":96,"y":64,"fileNum":12054,"id":6139,"width":32,"height":32},{"x":0,"y":96,"fileNum":12054,"id":6140,"width":32,"height":32},{"x":32,"y":96,"fileNum":12054,"id":6141,"width":32,"height":32},{"x":64,"y":96,"fileNum":12054,"id":6142,"width":32,"height":32},{"x":96,"y":96,"fileNum":12054,"id":6143,"width":32,"height":32},{"x":128,"y":0,"fileNum":12054,"id":6144,"width":32,"height":32},{"x":160,"y":0,"fileNum":12054,"id":6145,"width":32,"height":32},{"x":192,"y":0,"fileNum":12054,"id":6146,"width":32,"height":32},{"x":224,"y":0,"fileNum":12054,"id":6147,"width":32,"height":32},{"x":128,"y":32,"fileNum":12054,"id":6148,"width":32,"height":32},{"x":160,"y":32,"fileNum":12054,"id":6149,"width":32,"height":32},{"x":192,"y":32,"fileNum":12054,"id":6150,"width":32,"height":32},{"x":224,"y":32,"fileNum":12054,"id":6151,"width":32,"height":32},{"x":128,"y":64,"fileNum":12054,"id":6152,"width":32,"height":32},{"x":160,"y":64,"fileNum":12054,"id":6153,"width":32,"height":32},{"x":192,"y":64,"fileNum":12054,"id":6154,"width":32,"height":32},{"x":224,"y":64,"fileNum":12054,"id":6155,"width":32,"height":32},{"x":128,"y":96,"fileNum":12054,"id":6156,"width":32,"height":32},{"x":160,"y":96,"fileNum":12054,"id":6157,"width":32,"height":32},{"x":192,"y":96,"fileNum":12054,"id":6158,"width":32,"height":32},{"x":224,"y":96,"fileNum":12054,"id":6159,"width":32,"height":32},{"x":256,"y":0,"fileNum":12054,"id":6160,"width":32,"height":32},{"x":288,"y":0,"fileNum":12054,"id":6161,"width":32,"height":32},{"x":320,"y":0,"fileNum":12054,"id":6162,"width":32,"height":32},{"x":352,"y":0,"fileNum":12054,"id":6163,"width":32,"height":32},{"x":256,"y":32,"fileNum":12054,"id":6164,"width":32,"height":32},{"x":288,"y":32,"fileNum":12054,"id":6165,"width":32,"height":32},{"x":320,"y":32,"fileNum":12054,"id":6166,"width":32,"height":32},{"x":352,"y":32,"fileNum":12054,"id":6167,"width":32,"height":32},{"x":256,"y":64,"fileNum":12054,"id":6168,"width":32,"height":32},{"x":288,"y":64,"fileNum":12054,"id":6169,"width":32,"height":32},{"x":320,"y":64,"fileNum":12054,"id":6170,"width":32,"height":32},{"x":352,"y":64,"fileNum":12054,"id":6171,"width":32,"height":32},{"x":256,"y":96,"fileNum":12054,"id":6172,"width":32,"height":32},{"x":288,"y":96,"fileNum":12054,"id":6173,"width":32,"height":32},{"x":320,"y":96,"fileNum":12054,"id":6174,"width":32,"height":32},{"x":352,"y":96,"fileNum":12054,"id":6175,"width":32,"height":32},{"x":384,"y":0,"fileNum":12054,"id":6176,"width":32,"height":32},{"x":416,"y":0,"fileNum":12054,"id":6177,"width":32,"height":32},{"x":448,"y":0,"fileNum":12054,"id":6178,"width":32,"height":32},{"x":480,"y":0,"fileNum":12054,"id":6179,"width":32,"height":32},{"x":384,"y":32,"fileNum":12054,"id":6180,"width":32,"height":32},{"x":416,"y":32,"fileNum":12054,"id":6181,"width":32,"height":32},{"x":448,"y":32,"fileNum":12054,"id":6182,"width":32,"height":32},{"x":480,"y":32,"fileNum":12054,"id":6183,"width":32,"height":32},{"x":384,"y":64,"fileNum":12054,"id":6184,"width":32,"height":32},{"x":416,"y":64,"fileNum":12054,"id":6185,"width":32,"height":32},{"x":448,"y":64,"fileNum":12054,"id":6186,"width":32,"height":32},{"x":480,"y":64,"fileNum":12054,"id":6187,"width":32,"height":32},{"x":384,"y":96,"fileNum":12054,"id":6188,"width":32,"height":32},{"x":416,"y":96,"fileNum":12054,"id":6189,"width":32,"height":32},{"x":448,"y":96,"fileNum":12054,"id":6190,"width":32,"height":32},{"x":480,"y":96,"fileNum":12054,"id":6191,"width":32,"height":32},{"x":0,"y":0,"fileNum":12055,"id":6192,"width":32,"height":32},{"x":32,"y":0,"fileNum":12055,"id":6193,"width":32,"height":32},{"x":64,"y":0,"fileNum":12055,"id":6194,"width":32,"height":32},{"x":96,"y":0,"fileNum":12055,"id":6195,"width":32,"height":32},{"x":0,"y":32,"fileNum":12055,"id":6196,"width":32,"height":32},{"x":32,"y":32,"fileNum":12055,"id":6197,"width":32,"height":32},{"x":64,"y":32,"fileNum":12055,"id":6198,"width":32,"height":32},{"x":96,"y":32,"fileNum":12055,"id":6199,"width":32,"height":32},{"x":0,"y":64,"fileNum":12055,"id":6200,"width":32,"height":32},{"x":32,"y":64,"fileNum":12055,"id":6201,"width":32,"height":32},{"x":64,"y":64,"fileNum":12055,"id":6202,"width":32,"height":32},{"x":96,"y":64,"fileNum":12055,"id":6203,"width":32,"height":32},{"x":0,"y":96,"fileNum":12055,"id":6204,"width":32,"height":32},{"x":32,"y":96,"fileNum":12055,"id":6205,"width":32,"height":32},{"x":64,"y":96,"fileNum":12055,"id":6206,"width":32,"height":32},{"x":96,"y":96,"fileNum":12055,"id":6207,"width":32,"height":32},{"x":128,"y":0,"fileNum":12055,"id":6208,"width":32,"height":32},{"x":160,"y":0,"fileNum":12055,"id":6209,"width":32,"height":32},{"x":192,"y":0,"fileNum":12055,"id":6210,"width":32,"height":32},{"x":224,"y":0,"fileNum":12055,"id":6211,"width":32,"height":32},{"x":128,"y":32,"fileNum":12055,"id":6212,"width":32,"height":32},{"x":160,"y":32,"fileNum":12055,"id":6213,"width":32,"height":32},{"x":192,"y":32,"fileNum":12055,"id":6214,"width":32,"height":32},{"x":224,"y":32,"fileNum":12055,"id":6215,"width":32,"height":32},{"x":128,"y":64,"fileNum":12055,"id":6216,"width":32,"height":32},{"x":160,"y":64,"fileNum":12055,"id":6217,"width":32,"height":32},{"x":192,"y":64,"fileNum":12055,"id":6218,"width":32,"height":32},{"x":224,"y":64,"fileNum":12055,"id":6219,"width":32,"height":32},{"x":128,"y":96,"fileNum":12055,"id":6220,"width":32,"height":32},{"x":160,"y":96,"fileNum":12055,"id":6221,"width":32,"height":32},{"x":192,"y":96,"fileNum":12055,"id":6222,"width":32,"height":32},{"x":224,"y":96,"fileNum":12055,"id":6223,"width":32,"height":32},{"x":256,"y":0,"fileNum":12055,"id":6224,"width":32,"height":32},{"x":288,"y":0,"fileNum":12055,"id":6225,"width":32,"height":32},{"x":320,"y":0,"fileNum":12055,"id":6226,"width":32,"height":32},{"x":352,"y":0,"fileNum":12055,"id":6227,"width":32,"height":32},{"x":256,"y":32,"fileNum":12055,"id":6228,"width":32,"height":32},{"x":288,"y":32,"fileNum":12055,"id":6229,"width":32,"height":32},{"x":320,"y":32,"fileNum":12055,"id":6230,"width":32,"height":32},{"x":352,"y":32,"fileNum":12055,"id":6231,"width":32,"height":32},{"x":256,"y":64,"fileNum":12055,"id":6232,"width":32,"height":32},{"x":288,"y":64,"fileNum":12055,"id":6233,"width":32,"height":32},{"x":320,"y":64,"fileNum":12055,"id":6234,"width":32,"height":32},{"x":352,"y":64,"fileNum":12055,"id":6235,"width":32,"height":32},{"x":256,"y":96,"fileNum":12055,"id":6236,"width":32,"height":32},{"x":288,"y":96,"fileNum":12055,"id":6237,"width":32,"height":32},{"x":320,"y":96,"fileNum":12055,"id":6238,"width":32,"height":32},{"x":352,"y":96,"fileNum":12055,"id":6239,"width":32,"height":32},{"x":384,"y":0,"fileNum":12055,"id":6240,"width":32,"height":32},{"x":416,"y":0,"fileNum":12055,"id":6241,"width":32,"height":32},{"x":448,"y":0,"fileNum":12055,"id":6242,"width":32,"height":32},{"x":480,"y":0,"fileNum":12055,"id":6243,"width":32,"height":32},{"x":384,"y":32,"fileNum":12055,"id":6244,"width":32,"height":32},{"x":416,"y":32,"fileNum":12055,"id":6245,"width":32,"height":32},{"x":448,"y":32,"fileNum":12055,"id":6246,"width":32,"height":32},{"x":480,"y":32,"fileNum":12055,"id":6247,"width":32,"height":32},{"x":384,"y":64,"fileNum":12055,"id":6248,"width":32,"height":32},{"x":416,"y":64,"fileNum":12055,"id":6249,"width":32,"height":32},{"x":448,"y":64,"fileNum":12055,"id":6250,"width":32,"height":32},{"x":480,"y":64,"fileNum":12055,"id":6251,"width":32,"height":32},{"x":384,"y":96,"fileNum":12055,"id":6252,"width":32,"height":32},{"x":416,"y":96,"fileNum":12055,"id":6253,"width":32,"height":32},{"x":448,"y":96,"fileNum":12055,"id":6254,"width":32,"height":32},{"x":480,"y":96,"fileNum":12055,"id":6255,"width":32,"height":32},{"x":0,"y":0,"fileNum":12056,"id":6256,"width":32,"height":32},{"x":32,"y":0,"fileNum":12056,"id":6257,"width":32,"height":32},{"x":64,"y":0,"fileNum":12056,"id":6258,"width":32,"height":32},{"x":96,"y":0,"fileNum":12056,"id":6259,"width":32,"height":32},{"x":0,"y":32,"fileNum":12056,"id":6260,"width":32,"height":32},{"x":32,"y":32,"fileNum":12056,"id":6261,"width":32,"height":32},{"x":64,"y":32,"fileNum":12056,"id":6262,"width":32,"height":32},{"x":96,"y":32,"fileNum":12056,"id":6263,"width":32,"height":32},{"x":0,"y":64,"fileNum":12056,"id":6264,"width":32,"height":32},{"x":32,"y":64,"fileNum":12056,"id":6265,"width":32,"height":32},{"x":64,"y":64,"fileNum":12056,"id":6266,"width":32,"height":32},{"x":96,"y":64,"fileNum":12056,"id":6267,"width":32,"height":32},{"x":0,"y":96,"fileNum":12056,"id":6268,"width":32,"height":32},{"x":32,"y":96,"fileNum":12056,"id":6269,"width":32,"height":32},{"x":64,"y":96,"fileNum":12056,"id":6270,"width":32,"height":32},{"x":96,"y":96,"fileNum":12056,"id":6271,"width":32,"height":32},{"x":128,"y":0,"fileNum":12056,"id":6272,"width":32,"height":32},{"x":160,"y":0,"fileNum":12056,"id":6273,"width":32,"height":32},{"x":192,"y":0,"fileNum":12056,"id":6274,"width":32,"height":32},{"x":224,"y":0,"fileNum":12056,"id":6275,"width":32,"height":32},{"x":128,"y":32,"fileNum":12056,"id":6276,"width":32,"height":32},{"x":160,"y":32,"fileNum":12056,"id":6277,"width":32,"height":32},{"x":192,"y":32,"fileNum":12056,"id":6278,"width":32,"height":32},{"x":224,"y":32,"fileNum":12056,"id":6279,"width":32,"height":32},{"x":128,"y":64,"fileNum":12056,"id":6280,"width":32,"height":32},{"x":160,"y":64,"fileNum":12056,"id":6281,"width":32,"height":32},{"x":192,"y":64,"fileNum":12056,"id":6282,"width":32,"height":32},{"x":224,"y":64,"fileNum":12056,"id":6283,"width":32,"height":32},{"x":128,"y":96,"fileNum":12056,"id":6284,"width":32,"height":32},{"x":160,"y":96,"fileNum":12056,"id":6285,"width":32,"height":32},{"x":192,"y":96,"fileNum":12056,"id":6286,"width":32,"height":32},{"x":224,"y":96,"fileNum":12056,"id":6287,"width":32,"height":32},{"x":256,"y":0,"fileNum":12056,"id":6288,"width":32,"height":32},{"x":288,"y":0,"fileNum":12056,"id":6289,"width":32,"height":32},{"x":320,"y":0,"fileNum":12056,"id":6290,"width":32,"height":32},{"x":352,"y":0,"fileNum":12056,"id":6291,"width":32,"height":32},{"x":256,"y":32,"fileNum":12056,"id":6292,"width":32,"height":32},{"x":288,"y":32,"fileNum":12056,"id":6293,"width":32,"height":32},{"x":320,"y":32,"fileNum":12056,"id":6294,"width":32,"height":32},{"x":352,"y":32,"fileNum":12056,"id":6295,"width":32,"height":32},{"x":256,"y":64,"fileNum":12056,"id":6296,"width":32,"height":32},{"x":288,"y":64,"fileNum":12056,"id":6297,"width":32,"height":32},{"x":320,"y":64,"fileNum":12056,"id":6298,"width":32,"height":32},{"x":352,"y":64,"fileNum":12056,"id":6299,"width":32,"height":32},{"x":256,"y":96,"fileNum":12056,"id":6300,"width":32,"height":32},{"x":288,"y":96,"fileNum":12056,"id":6301,"width":32,"height":32},{"x":320,"y":96,"fileNum":12056,"id":6302,"width":32,"height":32},{"x":352,"y":96,"fileNum":12056,"id":6303,"width":32,"height":32},{"x":0,"y":0,"fileNum":12057,"id":6304,"width":32,"height":32},{"x":32,"y":0,"fileNum":12057,"id":6305,"width":32,"height":32},{"x":64,"y":0,"fileNum":12057,"id":6306,"width":32,"height":32},{"x":96,"y":0,"fileNum":12057,"id":6307,"width":32,"height":32},{"x":0,"y":32,"fileNum":12057,"id":6308,"width":32,"height":32},{"x":32,"y":32,"fileNum":12057,"id":6309,"width":32,"height":32},{"x":64,"y":32,"fileNum":12057,"id":6310,"width":32,"height":32},{"x":96,"y":32,"fileNum":12057,"id":6311,"width":32,"height":32},{"x":0,"y":64,"fileNum":12057,"id":6312,"width":32,"height":32},{"x":32,"y":64,"fileNum":12057,"id":6313,"width":32,"height":32},{"x":64,"y":64,"fileNum":12057,"id":6314,"width":32,"height":32},{"x":96,"y":64,"fileNum":12057,"id":6315,"width":32,"height":32},{"x":0,"y":96,"fileNum":12057,"id":6316,"width":32,"height":32},{"x":32,"y":96,"fileNum":12057,"id":6317,"width":32,"height":32},{"x":64,"y":96,"fileNum":12057,"id":6318,"width":32,"height":32},{"x":96,"y":96,"fileNum":12057,"id":6319,"width":32,"height":32},{"x":128,"y":0,"fileNum":12057,"id":6320,"width":32,"height":32},{"x":160,"y":0,"fileNum":12057,"id":6321,"width":32,"height":32},{"x":192,"y":0,"fileNum":12057,"id":6322,"width":32,"height":32},{"x":224,"y":0,"fileNum":12057,"id":6323,"width":32,"height":32},{"x":128,"y":32,"fileNum":12057,"id":6324,"width":32,"height":32},{"x":160,"y":32,"fileNum":12057,"id":6325,"width":32,"height":32},{"x":192,"y":32,"fileNum":12057,"id":6326,"width":32,"height":32},{"x":224,"y":32,"fileNum":12057,"id":6327,"width":32,"height":32},{"x":128,"y":64,"fileNum":12057,"id":6328,"width":32,"height":32},{"x":160,"y":64,"fileNum":12057,"id":6329,"width":32,"height":32},{"x":192,"y":64,"fileNum":12057,"id":6330,"width":32,"height":32},{"x":224,"y":64,"fileNum":12057,"id":6331,"width":32,"height":32},{"x":128,"y":96,"fileNum":12057,"id":6332,"width":32,"height":32},{"x":160,"y":96,"fileNum":12057,"id":6333,"width":32,"height":32},{"x":192,"y":96,"fileNum":12057,"id":6334,"width":32,"height":32},{"x":224,"y":96,"fileNum":12057,"id":6335,"width":32,"height":32},{"x":256,"y":0,"fileNum":12057,"id":6336,"width":32,"height":32},{"x":288,"y":0,"fileNum":12057,"id":6337,"width":32,"height":32},{"x":320,"y":0,"fileNum":12057,"id":6338,"width":32,"height":32},{"x":352,"y":0,"fileNum":12057,"id":6339,"width":32,"height":32},{"x":256,"y":32,"fileNum":12057,"id":6340,"width":32,"height":32},{"x":288,"y":32,"fileNum":12057,"id":6341,"width":32,"height":32},{"x":320,"y":32,"fileNum":12057,"id":6342,"width":32,"height":32},{"x":352,"y":32,"fileNum":12057,"id":6343,"width":32,"height":32},{"x":256,"y":64,"fileNum":12057,"id":6344,"width":32,"height":32},{"x":288,"y":64,"fileNum":12057,"id":6345,"width":32,"height":32},{"x":320,"y":64,"fileNum":12057,"id":6346,"width":32,"height":32},{"x":352,"y":64,"fileNum":12057,"id":6347,"width":32,"height":32},{"x":256,"y":96,"fileNum":12057,"id":6348,"width":32,"height":32},{"x":288,"y":96,"fileNum":12057,"id":6349,"width":32,"height":32},{"x":320,"y":96,"fileNum":12057,"id":6350,"width":32,"height":32},{"x":352,"y":96,"fileNum":12057,"id":6351,"width":32,"height":32},{"x":0,"y":0,"fileNum":12058,"id":6352,"width":32,"height":32},{"x":32,"y":0,"fileNum":12058,"id":6353,"width":32,"height":32},{"x":64,"y":0,"fileNum":12058,"id":6354,"width":32,"height":32},{"x":96,"y":0,"fileNum":12058,"id":6355,"width":32,"height":32},{"x":0,"y":32,"fileNum":12058,"id":6356,"width":32,"height":32},{"x":32,"y":32,"fileNum":12058,"id":6357,"width":32,"height":32},{"x":64,"y":32,"fileNum":12058,"id":6358,"width":32,"height":32},{"x":96,"y":32,"fileNum":12058,"id":6359,"width":32,"height":32},{"x":0,"y":64,"fileNum":12058,"id":6360,"width":32,"height":32},{"x":32,"y":64,"fileNum":12058,"id":6361,"width":32,"height":32},{"x":64,"y":64,"fileNum":12058,"id":6362,"width":32,"height":32},{"x":96,"y":64,"fileNum":12058,"id":6363,"width":32,"height":32},{"x":0,"y":96,"fileNum":12058,"id":6364,"width":32,"height":32},{"x":32,"y":96,"fileNum":12058,"id":6365,"width":32,"height":32},{"x":64,"y":96,"fileNum":12058,"id":6366,"width":32,"height":32},{"x":96,"y":96,"fileNum":12058,"id":6367,"width":32,"height":32},{"x":128,"y":0,"fileNum":12058,"id":6368,"width":32,"height":32},{"x":160,"y":0,"fileNum":12058,"id":6369,"width":32,"height":32},{"x":192,"y":0,"fileNum":12058,"id":6370,"width":32,"height":32},{"x":224,"y":0,"fileNum":12058,"id":6371,"width":32,"height":32},{"x":128,"y":32,"fileNum":12058,"id":6372,"width":32,"height":32},{"x":160,"y":32,"fileNum":12058,"id":6373,"width":32,"height":32},{"x":192,"y":32,"fileNum":12058,"id":6374,"width":32,"height":32},{"x":224,"y":32,"fileNum":12058,"id":6375,"width":32,"height":32},{"x":128,"y":64,"fileNum":12058,"id":6376,"width":32,"height":32},{"x":160,"y":64,"fileNum":12058,"id":6377,"width":32,"height":32},{"x":192,"y":64,"fileNum":12058,"id":6378,"width":32,"height":32},{"x":224,"y":64,"fileNum":12058,"id":6379,"width":32,"height":32},{"x":128,"y":96,"fileNum":12058,"id":6380,"width":32,"height":32},{"x":160,"y":96,"fileNum":12058,"id":6381,"width":32,"height":32},{"x":192,"y":96,"fileNum":12058,"id":6382,"width":32,"height":32},{"x":224,"y":96,"fileNum":12058,"id":6383,"width":32,"height":32},{"x":256,"y":0,"fileNum":12058,"id":6384,"width":32,"height":32},{"x":288,"y":0,"fileNum":12058,"id":6385,"width":32,"height":32},{"x":320,"y":0,"fileNum":12058,"id":6386,"width":32,"height":32},{"x":352,"y":0,"fileNum":12058,"id":6387,"width":32,"height":32},{"x":256,"y":32,"fileNum":12058,"id":6388,"width":32,"height":32},{"x":288,"y":32,"fileNum":12058,"id":6389,"width":32,"height":32},{"x":320,"y":32,"fileNum":12058,"id":6390,"width":32,"height":32},{"x":352,"y":32,"fileNum":12058,"id":6391,"width":32,"height":32},{"x":256,"y":64,"fileNum":12058,"id":6392,"width":32,"height":32},{"x":288,"y":64,"fileNum":12058,"id":6393,"width":32,"height":32},{"x":320,"y":64,"fileNum":12058,"id":6394,"width":32,"height":32},{"x":352,"y":64,"fileNum":12058,"id":6395,"width":32,"height":32},{"x":256,"y":96,"fileNum":12058,"id":6396,"width":32,"height":32},{"x":288,"y":96,"fileNum":12058,"id":6397,"width":32,"height":32},{"x":320,"y":96,"fileNum":12058,"id":6398,"width":32,"height":32},{"x":352,"y":96,"fileNum":12058,"id":6399,"width":32,"height":32},{"x":0,"y":0,"fileNum":12059,"id":6400,"width":32,"height":32},{"x":32,"y":0,"fileNum":12059,"id":6401,"width":32,"height":32},{"x":64,"y":0,"fileNum":12059,"id":6402,"width":32,"height":32},{"x":96,"y":0,"fileNum":12059,"id":6403,"width":32,"height":32},{"x":0,"y":32,"fileNum":12059,"id":6404,"width":32,"height":32},{"x":32,"y":32,"fileNum":12059,"id":6405,"width":32,"height":32},{"x":64,"y":32,"fileNum":12059,"id":6406,"width":32,"height":32},{"x":96,"y":32,"fileNum":12059,"id":6407,"width":32,"height":32},{"x":0,"y":64,"fileNum":12059,"id":6408,"width":32,"height":32},{"x":32,"y":64,"fileNum":12059,"id":6409,"width":32,"height":32},{"x":64,"y":64,"fileNum":12059,"id":6410,"width":32,"height":32},{"x":96,"y":64,"fileNum":12059,"id":6411,"width":32,"height":32},{"x":0,"y":96,"fileNum":12059,"id":6412,"width":32,"height":32},{"x":32,"y":96,"fileNum":12059,"id":6413,"width":32,"height":32},{"x":64,"y":96,"fileNum":12059,"id":6414,"width":32,"height":32},{"x":96,"y":96,"fileNum":12059,"id":6415,"width":32,"height":32},{"x":128,"y":0,"fileNum":12059,"id":6416,"width":32,"height":32},{"x":160,"y":0,"fileNum":12059,"id":6417,"width":32,"height":32},{"x":192,"y":0,"fileNum":12059,"id":6418,"width":32,"height":32},{"x":224,"y":0,"fileNum":12059,"id":6419,"width":32,"height":32},{"x":128,"y":32,"fileNum":12059,"id":6420,"width":32,"height":32},{"x":160,"y":32,"fileNum":12059,"id":6421,"width":32,"height":32},{"x":192,"y":32,"fileNum":12059,"id":6422,"width":32,"height":32},{"x":224,"y":32,"fileNum":12059,"id":6423,"width":32,"height":32},{"x":128,"y":64,"fileNum":12059,"id":6424,"width":32,"height":32},{"x":160,"y":64,"fileNum":12059,"id":6425,"width":32,"height":32},{"x":192,"y":64,"fileNum":12059,"id":6426,"width":32,"height":32},{"x":224,"y":64,"fileNum":12059,"id":6427,"width":32,"height":32},{"x":128,"y":96,"fileNum":12059,"id":6428,"width":32,"height":32},{"x":160,"y":96,"fileNum":12059,"id":6429,"width":32,"height":32},{"x":192,"y":96,"fileNum":12059,"id":6430,"width":32,"height":32},{"x":224,"y":96,"fileNum":12059,"id":6431,"width":32,"height":32},{"x":256,"y":0,"fileNum":12059,"id":6432,"width":32,"height":32},{"x":288,"y":0,"fileNum":12059,"id":6433,"width":32,"height":32},{"x":320,"y":0,"fileNum":12059,"id":6434,"width":32,"height":32},{"x":352,"y":0,"fileNum":12059,"id":6435,"width":32,"height":32},{"x":256,"y":32,"fileNum":12059,"id":6436,"width":32,"height":32},{"x":288,"y":32,"fileNum":12059,"id":6437,"width":32,"height":32},{"x":320,"y":32,"fileNum":12059,"id":6438,"width":32,"height":32},{"x":352,"y":32,"fileNum":12059,"id":6439,"width":32,"height":32},{"x":256,"y":64,"fileNum":12059,"id":6440,"width":32,"height":32},{"x":288,"y":64,"fileNum":12059,"id":6441,"width":32,"height":32},{"x":320,"y":64,"fileNum":12059,"id":6442,"width":32,"height":32},{"x":352,"y":64,"fileNum":12059,"id":6443,"width":32,"height":32},{"x":256,"y":96,"fileNum":12059,"id":6444,"width":32,"height":32},{"x":288,"y":96,"fileNum":12059,"id":6445,"width":32,"height":32},{"x":320,"y":96,"fileNum":12059,"id":6446,"width":32,"height":32},{"x":352,"y":96,"fileNum":12059,"id":6447,"width":32,"height":32},{"x":384,"y":0,"fileNum":12059,"id":6448,"width":32,"height":32},{"x":416,"y":0,"fileNum":12059,"id":6449,"width":32,"height":32},{"x":448,"y":0,"fileNum":12059,"id":6450,"width":32,"height":32},{"x":480,"y":0,"fileNum":12059,"id":6451,"width":32,"height":32},{"x":384,"y":32,"fileNum":12059,"id":6452,"width":32,"height":32},{"x":416,"y":32,"fileNum":12059,"id":6453,"width":32,"height":32},{"x":448,"y":32,"fileNum":12059,"id":6454,"width":32,"height":32},{"x":480,"y":32,"fileNum":12059,"id":6455,"width":32,"height":32},{"x":384,"y":64,"fileNum":12059,"id":6456,"width":32,"height":32},{"x":416,"y":64,"fileNum":12059,"id":6457,"width":32,"height":32},{"x":448,"y":64,"fileNum":12059,"id":6458,"width":32,"height":32},{"x":480,"y":64,"fileNum":12059,"id":6459,"width":32,"height":32},{"x":384,"y":96,"fileNum":12059,"id":6460,"width":32,"height":32},{"x":416,"y":96,"fileNum":12059,"id":6461,"width":32,"height":32},{"x":448,"y":96,"fileNum":12059,"id":6462,"width":32,"height":32},{"x":480,"y":96,"fileNum":12059,"id":6463,"width":32,"height":32},{"x":0,"y":0,"fileNum":12060,"id":6464,"width":32,"height":32},{"x":32,"y":0,"fileNum":12060,"id":6465,"width":32,"height":32},{"x":64,"y":0,"fileNum":12060,"id":6466,"width":32,"height":32},{"x":96,"y":0,"fileNum":12060,"id":6467,"width":32,"height":32},{"x":0,"y":32,"fileNum":12060,"id":6468,"width":32,"height":32},{"x":32,"y":32,"fileNum":12060,"id":6469,"width":32,"height":32},{"x":64,"y":32,"fileNum":12060,"id":6470,"width":32,"height":32},{"x":96,"y":32,"fileNum":12060,"id":6471,"width":32,"height":32},{"x":0,"y":64,"fileNum":12060,"id":6472,"width":32,"height":32},{"x":32,"y":64,"fileNum":12060,"id":6473,"width":32,"height":32},{"x":64,"y":64,"fileNum":12060,"id":6474,"width":32,"height":32},{"x":96,"y":64,"fileNum":12060,"id":6475,"width":32,"height":32},{"x":0,"y":96,"fileNum":12060,"id":6476,"width":32,"height":32},{"x":32,"y":96,"fileNum":12060,"id":6477,"width":32,"height":32},{"x":64,"y":96,"fileNum":12060,"id":6478,"width":32,"height":32},{"x":96,"y":96,"fileNum":12060,"id":6479,"width":32,"height":32},{"x":128,"y":0,"fileNum":12060,"id":6480,"width":32,"height":32},{"x":160,"y":0,"fileNum":12060,"id":6481,"width":32,"height":32},{"x":192,"y":0,"fileNum":12060,"id":6482,"width":32,"height":32},{"x":224,"y":0,"fileNum":12060,"id":6483,"width":32,"height":32},{"x":128,"y":32,"fileNum":12060,"id":6484,"width":32,"height":32},{"x":160,"y":32,"fileNum":12060,"id":6485,"width":32,"height":32},{"x":192,"y":32,"fileNum":12060,"id":6486,"width":32,"height":32},{"x":224,"y":32,"fileNum":12060,"id":6487,"width":32,"height":32},{"x":128,"y":64,"fileNum":12060,"id":6488,"width":32,"height":32},{"x":160,"y":64,"fileNum":12060,"id":6489,"width":32,"height":32},{"x":192,"y":64,"fileNum":12060,"id":6490,"width":32,"height":32},{"x":224,"y":64,"fileNum":12060,"id":6491,"width":32,"height":32},{"x":128,"y":96,"fileNum":12060,"id":6492,"width":32,"height":32},{"x":160,"y":96,"fileNum":12060,"id":6493,"width":32,"height":32},{"x":192,"y":96,"fileNum":12060,"id":6494,"width":32,"height":32},{"x":224,"y":96,"fileNum":12060,"id":6495,"width":32,"height":32},{"x":256,"y":0,"fileNum":12060,"id":6496,"width":32,"height":32},{"x":288,"y":0,"fileNum":12060,"id":6497,"width":32,"height":32},{"x":320,"y":0,"fileNum":12060,"id":6498,"width":32,"height":32},{"x":352,"y":0,"fileNum":12060,"id":6499,"width":32,"height":32},{"x":256,"y":32,"fileNum":12060,"id":6500,"width":32,"height":32},{"x":288,"y":32,"fileNum":12060,"id":6501,"width":32,"height":32},{"x":320,"y":32,"fileNum":12060,"id":6502,"width":32,"height":32},{"x":352,"y":32,"fileNum":12060,"id":6503,"width":32,"height":32},{"x":256,"y":64,"fileNum":12060,"id":6504,"width":32,"height":32},{"x":288,"y":64,"fileNum":12060,"id":6505,"width":32,"height":32},{"x":320,"y":64,"fileNum":12060,"id":6506,"width":32,"height":32},{"x":352,"y":64,"fileNum":12060,"id":6507,"width":32,"height":32},{"x":256,"y":96,"fileNum":12060,"id":6508,"width":32,"height":32},{"x":288,"y":96,"fileNum":12060,"id":6509,"width":32,"height":32},{"x":320,"y":96,"fileNum":12060,"id":6510,"width":32,"height":32},{"x":352,"y":96,"fileNum":12060,"id":6511,"width":32,"height":32},{"x":384,"y":0,"fileNum":12060,"id":6512,"width":32,"height":32},{"x":416,"y":0,"fileNum":12060,"id":6513,"width":32,"height":32},{"x":448,"y":0,"fileNum":12060,"id":6514,"width":32,"height":32},{"x":480,"y":0,"fileNum":12060,"id":6515,"width":32,"height":32},{"x":384,"y":32,"fileNum":12060,"id":6516,"width":32,"height":32},{"x":416,"y":32,"fileNum":12060,"id":6517,"width":32,"height":32},{"x":448,"y":32,"fileNum":12060,"id":6518,"width":32,"height":32},{"x":480,"y":32,"fileNum":12060,"id":6519,"width":32,"height":32},{"x":384,"y":64,"fileNum":12060,"id":6520,"width":32,"height":32},{"x":416,"y":64,"fileNum":12060,"id":6521,"width":32,"height":32},{"x":448,"y":64,"fileNum":12060,"id":6522,"width":32,"height":32},{"x":480,"y":64,"fileNum":12060,"id":6523,"width":32,"height":32},{"x":384,"y":96,"fileNum":12060,"id":6524,"width":32,"height":32},{"x":416,"y":96,"fileNum":12060,"id":6525,"width":32,"height":32},{"x":448,"y":96,"fileNum":12060,"id":6526,"width":32,"height":32},{"x":480,"y":96,"fileNum":12060,"id":6527,"width":32,"height":32},{"x":0,"y":0,"fileNum":12061,"id":6528,"width":32,"height":32},{"x":32,"y":0,"fileNum":12061,"id":6529,"width":32,"height":32},{"x":64,"y":0,"fileNum":12061,"id":6530,"width":32,"height":32},{"x":96,"y":0,"fileNum":12061,"id":6531,"width":32,"height":32},{"x":0,"y":32,"fileNum":12061,"id":6532,"width":32,"height":32},{"x":32,"y":32,"fileNum":12061,"id":6533,"width":32,"height":32},{"x":64,"y":32,"fileNum":12061,"id":6534,"width":32,"height":32},{"x":96,"y":32,"fileNum":12061,"id":6535,"width":32,"height":32},{"x":0,"y":64,"fileNum":12061,"id":6536,"width":32,"height":32},{"x":32,"y":64,"fileNum":12061,"id":6537,"width":32,"height":32},{"x":64,"y":64,"fileNum":12061,"id":6538,"width":32,"height":32},{"x":96,"y":64,"fileNum":12061,"id":6539,"width":32,"height":32},{"x":0,"y":96,"fileNum":12061,"id":6540,"width":32,"height":32},{"x":32,"y":96,"fileNum":12061,"id":6541,"width":32,"height":32},{"x":64,"y":96,"fileNum":12061,"id":6542,"width":32,"height":32},{"x":96,"y":96,"fileNum":12061,"id":6543,"width":32,"height":32},{"x":384,"y":0,"fileNum":12056,"id":6544,"width":32,"height":32},{"x":416,"y":0,"fileNum":12056,"id":6545,"width":32,"height":32},{"x":448,"y":0,"fileNum":12056,"id":6546,"width":32,"height":32},{"x":480,"y":0,"fileNum":12056,"id":6547,"width":32,"height":32},{"x":384,"y":32,"fileNum":12056,"id":6548,"width":32,"height":32},{"x":416,"y":32,"fileNum":12056,"id":6549,"width":32,"height":32},{"x":448,"y":32,"fileNum":12056,"id":6550,"width":32,"height":32},{"x":480,"y":32,"fileNum":12056,"id":6551,"width":32,"height":32},{"x":384,"y":64,"fileNum":12056,"id":6552,"width":32,"height":32},{"x":416,"y":64,"fileNum":12056,"id":6553,"width":32,"height":32},{"x":448,"y":64,"fileNum":12056,"id":6554,"width":32,"height":32},{"x":480,"y":64,"fileNum":12056,"id":6555,"width":32,"height":32},{"x":384,"y":96,"fileNum":12056,"id":6556,"width":32,"height":32},{"x":416,"y":96,"fileNum":12056,"id":6557,"width":32,"height":32},{"x":448,"y":96,"fileNum":12056,"id":6558,"width":32,"height":32},{"x":480,"y":96,"fileNum":12056,"id":6559,"width":32,"height":32},{"x":0,"y":0,"fileNum":15078,"id":6560,"width":82,"height":40},{"x":0,"y":0,"fileNum":11002,"id":6561,"width":256,"height":96},{"x":0,"y":0,"fileNum":11003,"id":6562,"width":256,"height":160},{"x":0,"y":0,"fileNum":15079,"id":6563,"width":43,"height":50},{"x":0,"y":0,"fileNum":15080,"id":6564,"width":100,"height":50},{"x":0,"y":0,"fileNum":12014,"id":6565,"width":64,"height":64},{"x":0,"y":0,"fileNum":14001,"id":6566,"width":256,"height":186},{"x":0,"y":0,"fileNum":2153,"id":6567,"width":17,"height":50},{"x":17,"y":0,"fileNum":2153,"id":6568,"width":17,"height":50},{"x":34,"y":0,"fileNum":2153,"id":6569,"width":17,"height":50},{"x":51,"y":0,"fileNum":2153,"id":6570,"width":17,"height":50},{"x":0,"y":0,"fileNum":2154,"id":6571,"width":17,"height":50},{"x":17,"y":0,"fileNum":2154,"id":6572,"width":17,"height":50},{"x":34,"y":0,"fileNum":2154,"id":6573,"width":17,"height":50},{"x":51,"y":0,"fileNum":2154,"id":6574,"width":17,"height":50},{"x":0,"y":0,"fileNum":2,"id":6577,"width":32,"height":32},{"x":32,"y":0,"fileNum":2,"id":6578,"width":32,"height":32},{"x":64,"y":0,"fileNum":2,"id":6579,"width":32,"height":32},{"x":0,"y":0,"fileNum":8026,"id":6581,"width":32,"height":32},{"x":32,"y":0,"fileNum":8026,"id":6582,"width":32,"height":32},{"x":64,"y":0,"fileNum":8026,"id":6583,"width":32,"height":32},{"x":96,"y":0,"fileNum":8026,"id":6584,"width":32,"height":32},{"x":0,"y":32,"fileNum":8026,"id":6585,"width":32,"height":32},{"x":32,"y":32,"fileNum":8026,"id":6586,"width":32,"height":32},{"x":64,"y":32,"fileNum":8026,"id":6587,"width":32,"height":32},{"x":96,"y":32,"fileNum":8026,"id":6588,"width":32,"height":32},{"x":0,"y":64,"fileNum":8026,"id":6589,"width":32,"height":32},{"x":32,"y":64,"fileNum":8026,"id":6590,"width":32,"height":32},{"x":64,"y":64,"fileNum":8026,"id":6591,"width":32,"height":32},{"x":96,"y":64,"fileNum":8026,"id":6592,"width":32,"height":32},{"x":0,"y":96,"fileNum":8026,"id":6593,"width":32,"height":32},{"x":32,"y":96,"fileNum":8026,"id":6594,"width":32,"height":32},{"x":64,"y":96,"fileNum":8026,"id":6595,"width":32,"height":32},{"x":96,"y":96,"fileNum":8026,"id":6596,"width":32,"height":32},{"x":0,"y":0,"fileNum":8025,"id":6597,"width":32,"height":32},{"x":32,"y":0,"fileNum":8025,"id":6598,"width":32,"height":32},{"x":64,"y":0,"fileNum":8025,"id":6599,"width":32,"height":32},{"x":96,"y":0,"fileNum":8025,"id":6600,"width":32,"height":32},{"x":0,"y":32,"fileNum":8025,"id":6601,"width":32,"height":32},{"x":32,"y":32,"fileNum":8025,"id":6602,"width":32,"height":32},{"x":64,"y":32,"fileNum":8025,"id":6603,"width":32,"height":32},{"x":96,"y":32,"fileNum":8025,"id":6604,"width":32,"height":32},{"x":0,"y":64,"fileNum":8025,"id":6605,"width":32,"height":32},{"x":32,"y":64,"fileNum":8025,"id":6606,"width":32,"height":32},{"x":64,"y":64,"fileNum":8025,"id":6607,"width":32,"height":32},{"x":96,"y":64,"fileNum":8025,"id":6608,"width":32,"height":32},{"x":0,"y":96,"fileNum":8025,"id":6609,"width":32,"height":32},{"x":32,"y":96,"fileNum":8025,"id":6610,"width":32,"height":32},{"x":64,"y":96,"fileNum":8025,"id":6611,"width":32,"height":32},{"x":96,"y":96,"fileNum":8025,"id":6612,"width":32,"height":32},{"x":128,"y":0,"fileNum":8025,"id":6613,"width":32,"height":32},{"x":160,"y":0,"fileNum":8025,"id":6614,"width":32,"height":32},{"x":192,"y":0,"fileNum":8025,"id":6615,"width":32,"height":32},{"x":224,"y":0,"fileNum":8025,"id":6616,"width":32,"height":32},{"x":128,"y":32,"fileNum":8025,"id":6617,"width":32,"height":32},{"x":160,"y":32,"fileNum":8025,"id":6618,"width":32,"height":32},{"x":192,"y":32,"fileNum":8025,"id":6619,"width":32,"height":32},{"x":224,"y":32,"fileNum":8025,"id":6620,"width":32,"height":32},{"x":128,"y":64,"fileNum":8025,"id":6621,"width":32,"height":32},{"x":160,"y":64,"fileNum":8025,"id":6622,"width":32,"height":32},{"x":192,"y":64,"fileNum":8025,"id":6623,"width":32,"height":32},{"x":224,"y":64,"fileNum":8025,"id":6624,"width":32,"height":32},{"x":128,"y":96,"fileNum":8025,"id":6625,"width":32,"height":32},{"x":160,"y":96,"fileNum":8025,"id":6626,"width":32,"height":32},{"x":192,"y":96,"fileNum":8025,"id":6627,"width":32,"height":32},{"x":224,"y":96,"fileNum":8025,"id":6628,"width":32,"height":32},{"x":256,"y":0,"fileNum":8025,"id":6629,"width":32,"height":32},{"x":288,"y":0,"fileNum":8025,"id":6630,"width":32,"height":32},{"x":320,"y":0,"fileNum":8025,"id":6631,"width":32,"height":32},{"x":352,"y":0,"fileNum":8025,"id":6632,"width":32,"height":32},{"x":256,"y":32,"fileNum":8025,"id":6633,"width":32,"height":32},{"x":288,"y":32,"fileNum":8025,"id":6634,"width":32,"height":32},{"x":320,"y":32,"fileNum":8025,"id":6635,"width":32,"height":32},{"x":352,"y":32,"fileNum":8025,"id":6636,"width":32,"height":32},{"x":256,"y":64,"fileNum":8025,"id":6637,"width":32,"height":32},{"x":288,"y":64,"fileNum":8025,"id":6638,"width":32,"height":32},{"x":320,"y":64,"fileNum":8025,"id":6639,"width":32,"height":32},{"x":352,"y":64,"fileNum":8025,"id":6640,"width":32,"height":32},{"x":256,"y":96,"fileNum":8025,"id":6641,"width":32,"height":32},{"x":288,"y":96,"fileNum":8025,"id":6642,"width":32,"height":32},{"x":320,"y":96,"fileNum":8025,"id":6643,"width":32,"height":32},{"x":352,"y":96,"fileNum":8025,"id":6644,"width":32,"height":32},{"x":384,"y":0,"fileNum":8025,"id":6645,"width":32,"height":32},{"x":416,"y":0,"fileNum":8025,"id":6646,"width":32,"height":32},{"x":448,"y":0,"fileNum":8025,"id":6647,"width":32,"height":32},{"x":480,"y":0,"fileNum":8025,"id":6648,"width":32,"height":32},{"x":384,"y":32,"fileNum":8025,"id":6649,"width":32,"height":32},{"x":416,"y":32,"fileNum":8025,"id":6650,"width":32,"height":32},{"x":448,"y":32,"fileNum":8025,"id":6651,"width":32,"height":32},{"x":480,"y":32,"fileNum":8025,"id":6652,"width":32,"height":32},{"x":384,"y":64,"fileNum":8025,"id":6653,"width":32,"height":32},{"x":416,"y":64,"fileNum":8025,"id":6654,"width":32,"height":32},{"x":448,"y":64,"fileNum":8025,"id":6655,"width":32,"height":32},{"x":480,"y":64,"fileNum":8025,"id":6656,"width":32,"height":32},{"x":384,"y":96,"fileNum":8025,"id":6657,"width":32,"height":32},{"x":416,"y":96,"fileNum":8025,"id":6658,"width":32,"height":32},{"x":448,"y":96,"fileNum":8025,"id":6659,"width":32,"height":32},{"x":480,"y":96,"fileNum":8025,"id":6660,"width":32,"height":32},{"x":0,"y":0,"fileNum":8024,"id":6661,"width":32,"height":32},{"x":32,"y":0,"fileNum":8024,"id":6662,"width":32,"height":32},{"x":64,"y":0,"fileNum":8024,"id":6663,"width":32,"height":32},{"x":96,"y":0,"fileNum":8024,"id":6664,"width":32,"height":32},{"x":0,"y":32,"fileNum":8024,"id":6665,"width":32,"height":32},{"x":32,"y":32,"fileNum":8024,"id":6666,"width":32,"height":32},{"x":64,"y":32,"fileNum":8024,"id":6667,"width":32,"height":32},{"x":96,"y":32,"fileNum":8024,"id":6668,"width":32,"height":32},{"x":0,"y":64,"fileNum":8024,"id":6669,"width":32,"height":32},{"x":32,"y":64,"fileNum":8024,"id":6670,"width":32,"height":32},{"x":64,"y":64,"fileNum":8024,"id":6671,"width":32,"height":32},{"x":96,"y":64,"fileNum":8024,"id":6672,"width":32,"height":32},{"x":0,"y":96,"fileNum":8024,"id":6673,"width":32,"height":32},{"x":32,"y":96,"fileNum":8024,"id":6674,"width":32,"height":32},{"x":64,"y":96,"fileNum":8024,"id":6675,"width":32,"height":32},{"x":96,"y":96,"fileNum":8024,"id":6676,"width":32,"height":32},{"x":128,"y":0,"fileNum":8024,"id":6677,"width":32,"height":32},{"x":160,"y":0,"fileNum":8024,"id":6678,"width":32,"height":32},{"x":192,"y":0,"fileNum":8024,"id":6679,"width":32,"height":32},{"x":224,"y":0,"fileNum":8024,"id":6680,"width":32,"height":32},{"x":128,"y":32,"fileNum":8024,"id":6681,"width":32,"height":32},{"x":160,"y":32,"fileNum":8024,"id":6682,"width":32,"height":32},{"x":192,"y":32,"fileNum":8024,"id":6683,"width":32,"height":32},{"x":224,"y":32,"fileNum":8024,"id":6684,"width":32,"height":32},{"x":128,"y":64,"fileNum":8024,"id":6685,"width":32,"height":32},{"x":160,"y":64,"fileNum":8024,"id":6686,"width":32,"height":32},{"x":192,"y":64,"fileNum":8024,"id":6687,"width":32,"height":32},{"x":224,"y":64,"fileNum":8024,"id":6688,"width":32,"height":32},{"x":128,"y":96,"fileNum":8024,"id":6689,"width":32,"height":32},{"x":160,"y":96,"fileNum":8024,"id":6690,"width":32,"height":32},{"x":192,"y":96,"fileNum":8024,"id":6691,"width":32,"height":32},{"x":224,"y":96,"fileNum":8024,"id":6692,"width":32,"height":32},{"x":256,"y":0,"fileNum":8024,"id":6693,"width":32,"height":32},{"x":288,"y":0,"fileNum":8024,"id":6694,"width":32,"height":32},{"x":320,"y":0,"fileNum":8024,"id":6695,"width":32,"height":32},{"x":352,"y":0,"fileNum":8024,"id":6696,"width":32,"height":32},{"x":256,"y":32,"fileNum":8024,"id":6697,"width":32,"height":32},{"x":288,"y":32,"fileNum":8024,"id":6698,"width":32,"height":32},{"x":320,"y":32,"fileNum":8024,"id":6699,"width":32,"height":32},{"x":352,"y":32,"fileNum":8024,"id":6700,"width":32,"height":32},{"x":256,"y":64,"fileNum":8024,"id":6701,"width":32,"height":32},{"x":288,"y":64,"fileNum":8024,"id":6702,"width":32,"height":32},{"x":320,"y":64,"fileNum":8024,"id":6703,"width":32,"height":32},{"x":352,"y":64,"fileNum":8024,"id":6704,"width":32,"height":32},{"x":256,"y":96,"fileNum":8024,"id":6705,"width":32,"height":32},{"x":288,"y":96,"fileNum":8024,"id":6706,"width":32,"height":32},{"x":320,"y":96,"fileNum":8024,"id":6707,"width":32,"height":32},{"x":352,"y":96,"fileNum":8024,"id":6708,"width":32,"height":32},{"x":384,"y":0,"fileNum":8024,"id":6709,"width":32,"height":32},{"x":416,"y":0,"fileNum":8024,"id":6710,"width":32,"height":32},{"x":448,"y":0,"fileNum":8024,"id":6711,"width":32,"height":32},{"x":480,"y":0,"fileNum":8024,"id":6712,"width":32,"height":32},{"x":384,"y":32,"fileNum":8024,"id":6713,"width":32,"height":32},{"x":416,"y":32,"fileNum":8024,"id":6714,"width":32,"height":32},{"x":448,"y":32,"fileNum":8024,"id":6715,"width":32,"height":32},{"x":480,"y":32,"fileNum":8024,"id":6716,"width":32,"height":32},{"x":384,"y":64,"fileNum":8024,"id":6717,"width":32,"height":32},{"x":416,"y":64,"fileNum":8024,"id":6718,"width":32,"height":32},{"x":448,"y":64,"fileNum":8024,"id":6719,"width":32,"height":32},{"x":480,"y":64,"fileNum":8024,"id":6720,"width":32,"height":32},{"x":384,"y":96,"fileNum":8024,"id":6721,"width":32,"height":32},{"x":416,"y":96,"fileNum":8024,"id":6722,"width":32,"height":32},{"x":448,"y":96,"fileNum":8024,"id":6723,"width":32,"height":32},{"x":480,"y":96,"fileNum":8024,"id":6724,"width":32,"height":32},{"x":0,"y":0,"fileNum":12084,"id":6725,"width":32,"height":32},{"x":32,"y":0,"fileNum":12084,"id":6726,"width":32,"height":32},{"x":64,"y":0,"fileNum":12084,"id":6727,"width":32,"height":32},{"x":96,"y":0,"fileNum":12084,"id":6728,"width":32,"height":32},{"x":0,"y":32,"fileNum":12084,"id":6729,"width":32,"height":32},{"x":32,"y":32,"fileNum":12084,"id":6730,"width":32,"height":32},{"x":64,"y":32,"fileNum":12084,"id":6731,"width":32,"height":32},{"x":96,"y":32,"fileNum":12084,"id":6732,"width":32,"height":32},{"x":0,"y":64,"fileNum":12084,"id":6733,"width":32,"height":32},{"x":32,"y":64,"fileNum":12084,"id":6734,"width":32,"height":32},{"x":64,"y":64,"fileNum":12084,"id":6735,"width":32,"height":32},{"x":96,"y":64,"fileNum":12084,"id":6736,"width":32,"height":32},{"x":0,"y":96,"fileNum":12084,"id":6737,"width":32,"height":32},{"x":32,"y":96,"fileNum":12084,"id":6738,"width":32,"height":32},{"x":64,"y":96,"fileNum":12084,"id":6739,"width":32,"height":32},{"x":96,"y":96,"fileNum":12084,"id":6740,"width":32,"height":32},{"x":0,"y":0,"fileNum":12031,"id":6741,"width":32,"height":32},{"x":32,"y":0,"fileNum":12031,"id":6742,"width":32,"height":32},{"x":64,"y":0,"fileNum":12031,"id":6743,"width":32,"height":32},{"x":96,"y":0,"fileNum":12031,"id":6744,"width":32,"height":32},{"x":0,"y":32,"fileNum":12031,"id":6745,"width":32,"height":32},{"x":32,"y":32,"fileNum":12031,"id":6746,"width":32,"height":32},{"x":64,"y":32,"fileNum":12031,"id":6747,"width":32,"height":32},{"x":96,"y":32,"fileNum":12031,"id":6748,"width":32,"height":32},{"x":0,"y":64,"fileNum":12031,"id":6749,"width":32,"height":32},{"x":32,"y":64,"fileNum":12031,"id":6750,"width":32,"height":32},{"x":64,"y":64,"fileNum":12031,"id":6751,"width":32,"height":32},{"x":96,"y":64,"fileNum":12031,"id":6752,"width":32,"height":32},{"x":0,"y":96,"fileNum":12031,"id":6753,"width":32,"height":32},{"x":32,"y":96,"fileNum":12031,"id":6754,"width":32,"height":32},{"x":64,"y":96,"fileNum":12031,"id":6755,"width":32,"height":32},{"x":96,"y":96,"fileNum":12031,"id":6756,"width":32,"height":32},{"x":0,"y":0,"fileNum":15000,"id":6757,"width":40,"height":40},{"x":0,"y":0,"fileNum":58,"id":6758,"width":25,"height":45},{"x":25,"y":0,"fileNum":58,"id":6759,"width":25,"height":45},{"x":50,"y":0,"fileNum":58,"id":6760,"width":25,"height":45},{"x":75,"y":0,"fileNum":58,"id":6761,"width":25,"height":45},{"x":100,"y":0,"fileNum":58,"id":6762,"width":25,"height":45},{"x":125,"y":0,"fileNum":58,"id":6763,"width":25,"height":45},{"x":0,"y":45,"fileNum":58,"id":6765,"width":25,"height":45},{"x":25,"y":45,"fileNum":58,"id":6766,"width":25,"height":45},{"x":50,"y":45,"fileNum":58,"id":6767,"width":25,"height":45},{"x":75,"y":45,"fileNum":58,"id":6768,"width":25,"height":45},{"x":100,"y":45,"fileNum":58,"id":6769,"width":25,"height":45},{"x":125,"y":45,"fileNum":58,"id":6770,"width":25,"height":45},{"x":0,"y":90,"fileNum":58,"id":6772,"width":25,"height":45},{"x":25,"y":90,"fileNum":58,"id":6773,"width":25,"height":45},{"x":50,"y":90,"fileNum":58,"id":6774,"width":25,"height":45},{"x":75,"y":90,"fileNum":58,"id":6775,"width":25,"height":45},{"x":100,"y":90,"fileNum":58,"id":6776,"width":25,"height":45},{"x":0,"y":135,"fileNum":58,"id":6778,"width":25,"height":45},{"x":25,"y":135,"fileNum":58,"id":6779,"width":25,"height":45},{"x":50,"y":135,"fileNum":58,"id":6780,"width":25,"height":45},{"x":75,"y":135,"fileNum":58,"id":6781,"width":25,"height":45},{"x":100,"y":135,"fileNum":58,"id":6782,"width":25,"height":45},{"x":0,"y":0,"fileNum":4008,"id":6787,"width":50,"height":78},{"x":50,"y":0,"fileNum":4008,"id":6788,"width":50,"height":78},{"x":100,"y":0,"fileNum":4008,"id":6789,"width":50,"height":78},{"x":150,"y":0,"fileNum":4008,"id":6790,"width":50,"height":78},{"x":200,"y":0,"fileNum":4008,"id":6791,"width":50,"height":78},{"x":250,"y":0,"fileNum":4008,"id":6792,"width":50,"height":78},{"x":300,"y":0,"fileNum":4008,"id":6793,"width":50,"height":78},{"x":350,"y":0,"fileNum":4008,"id":6794,"width":50,"height":78},{"x":0,"y":78,"fileNum":4008,"id":6795,"width":50,"height":78},{"x":50,"y":78,"fileNum":4008,"id":6796,"width":50,"height":78},{"x":100,"y":78,"fileNum":4008,"id":6797,"width":50,"height":78},{"x":150,"y":78,"fileNum":4008,"id":6798,"width":50,"height":78},{"x":200,"y":78,"fileNum":4008,"id":6799,"width":50,"height":78},{"x":250,"y":78,"fileNum":4008,"id":6800,"width":50,"height":78},{"x":300,"y":78,"fileNum":4008,"id":6801,"width":50,"height":78},{"x":350,"y":78,"fileNum":4008,"id":6802,"width":50,"height":78},{"x":0,"y":156,"fileNum":4008,"id":6803,"width":50,"height":78},{"x":50,"y":156,"fileNum":4008,"id":6804,"width":50,"height":78},{"x":100,"y":156,"fileNum":4008,"id":6805,"width":50,"height":78},{"x":150,"y":156,"fileNum":4008,"id":6806,"width":50,"height":78},{"x":200,"y":156,"fileNum":4008,"id":6807,"width":50,"height":78},{"x":0,"y":234,"fileNum":4008,"id":6808,"width":50,"height":78},{"x":50,"y":234,"fileNum":4008,"id":6809,"width":50,"height":78},{"x":100,"y":234,"fileNum":4008,"id":6810,"width":50,"height":78},{"x":150,"y":234,"fileNum":4008,"id":6811,"width":50,"height":78},{"x":200,"y":234,"fileNum":4008,"id":6812,"width":50,"height":78},{"x":0,"y":0,"fileNum":2155,"id":6817,"width":17,"height":50},{"x":17,"y":0,"fileNum":2155,"id":6818,"width":17,"height":50},{"x":34,"y":0,"fileNum":2155,"id":6819,"width":17,"height":50},{"x":51,"y":0,"fileNum":2155,"id":6820,"width":17,"height":50},{"x":0,"y":0,"fileNum":4002,"id":6821,"width":57,"height":100},{"x":57,"y":0,"fileNum":4002,"id":6822,"width":57,"height":100},{"x":114,"y":0,"fileNum":4002,"id":6823,"width":57,"height":100},{"x":171,"y":0,"fileNum":4002,"id":6824,"width":57,"height":100},{"x":228,"y":0,"fileNum":4002,"id":6825,"width":57,"height":100},{"x":285,"y":0,"fileNum":4002,"id":6826,"width":57,"height":100},{"x":0,"y":100,"fileNum":4002,"id":6828,"width":57,"height":100},{"x":57,"y":100,"fileNum":4002,"id":6829,"width":57,"height":100},{"x":114,"y":100,"fileNum":4002,"id":6830,"width":57,"height":100},{"x":171,"y":100,"fileNum":4002,"id":6831,"width":57,"height":100},{"x":228,"y":100,"fileNum":4002,"id":6832,"width":57,"height":100},{"x":285,"y":100,"fileNum":4002,"id":6833,"width":57,"height":100},{"x":0,"y":200,"fileNum":4002,"id":6835,"width":57,"height":100},{"x":57,"y":200,"fileNum":4002,"id":6836,"width":57,"height":100},{"x":114,"y":200,"fileNum":4002,"id":6837,"width":57,"height":100},{"x":171,"y":200,"fileNum":4002,"id":6838,"width":57,"height":100},{"x":228,"y":200,"fileNum":4002,"id":6839,"width":57,"height":100},{"x":0,"y":300,"fileNum":4002,"id":6841,"width":57,"height":100},{"x":57,"y":300,"fileNum":4002,"id":6842,"width":57,"height":100},{"x":114,"y":300,"fileNum":4002,"id":6843,"width":57,"height":100},{"x":171,"y":300,"fileNum":4002,"id":6844,"width":57,"height":100},{"x":228,"y":300,"fileNum":4002,"id":6845,"width":57,"height":100},{"x":0,"y":0,"fileNum":4006,"id":6850,"width":57,"height":98},{"x":57,"y":0,"fileNum":4006,"id":6851,"width":57,"height":98},{"x":114,"y":0,"fileNum":4006,"id":6852,"width":57,"height":98},{"x":171,"y":0,"fileNum":4006,"id":6853,"width":57,"height":98},{"x":228,"y":0,"fileNum":4006,"id":6854,"width":57,"height":98},{"x":285,"y":0,"fileNum":4006,"id":6855,"width":57,"height":98},{"x":0,"y":98,"fileNum":4006,"id":6857,"width":57,"height":98},{"x":57,"y":98,"fileNum":4006,"id":6858,"width":57,"height":98},{"x":114,"y":98,"fileNum":4006,"id":6859,"width":57,"height":98},{"x":171,"y":98,"fileNum":4006,"id":6860,"width":57,"height":98},{"x":228,"y":98,"fileNum":4006,"id":6861,"width":57,"height":98},{"x":285,"y":98,"fileNum":4006,"id":6862,"width":57,"height":98},{"x":0,"y":196,"fileNum":4006,"id":6864,"width":57,"height":98},{"x":57,"y":196,"fileNum":4006,"id":6865,"width":57,"height":98},{"x":114,"y":196,"fileNum":4006,"id":6866,"width":57,"height":98},{"x":171,"y":196,"fileNum":4006,"id":6867,"width":57,"height":98},{"x":228,"y":196,"fileNum":4006,"id":6868,"width":57,"height":98},{"x":0,"y":294,"fileNum":4006,"id":6870,"width":57,"height":98},{"x":57,"y":294,"fileNum":4006,"id":6871,"width":57,"height":98},{"x":114,"y":294,"fileNum":4006,"id":6872,"width":57,"height":98},{"x":171,"y":294,"fileNum":4006,"id":6873,"width":57,"height":98},{"x":228,"y":294,"fileNum":4006,"id":6874,"width":57,"height":98},{"x":0,"y":0,"fileNum":4007,"id":6879,"width":31,"height":25},{"x":31,"y":0,"fileNum":4007,"id":6880,"width":31,"height":25},{"x":62,"y":0,"fileNum":4007,"id":6881,"width":31,"height":25},{"x":0,"y":25,"fileNum":4007,"id":6883,"width":31,"height":25},{"x":31,"y":25,"fileNum":4007,"id":6884,"width":31,"height":25},{"x":62,"y":25,"fileNum":4007,"id":6885,"width":31,"height":25},{"x":0,"y":50,"fileNum":4007,"id":6887,"width":31,"height":25},{"x":31,"y":50,"fileNum":4007,"id":6888,"width":31,"height":25},{"x":62,"y":50,"fileNum":4007,"id":6889,"width":31,"height":25},{"x":0,"y":75,"fileNum":4007,"id":6891,"width":31,"height":25},{"x":31,"y":75,"fileNum":4007,"id":6892,"width":31,"height":25},{"x":62,"y":75,"fileNum":4007,"id":6893,"width":31,"height":25},{"x":0,"y":0,"fileNum":4132,"id":6898,"width":48,"height":48},{"x":48,"y":0,"fileNum":4132,"id":6899,"width":48,"height":48},{"x":96,"y":0,"fileNum":4132,"id":6900,"width":48,"height":48},{"x":144,"y":0,"fileNum":4132,"id":6901,"width":48,"height":48},{"x":0,"y":48,"fileNum":4132,"id":6902,"width":48,"height":48},{"x":48,"y":48,"fileNum":4132,"id":6903,"width":48,"height":48},{"x":96,"y":48,"fileNum":4132,"id":6904,"width":48,"height":48},{"x":144,"y":48,"fileNum":4132,"id":6905,"width":48,"height":48},{"x":0,"y":96,"fileNum":4132,"id":6906,"width":48,"height":48},{"x":48,"y":96,"fileNum":4132,"id":6907,"width":48,"height":48},{"x":96,"y":96,"fileNum":4132,"id":6908,"width":48,"height":48},{"x":144,"y":96,"fileNum":4132,"id":6909,"width":48,"height":48},{"x":0,"y":144,"fileNum":4132,"id":6910,"width":48,"height":48},{"x":48,"y":144,"fileNum":4132,"id":6911,"width":48,"height":48},{"x":96,"y":144,"fileNum":4132,"id":6912,"width":48,"height":48},{"x":144,"y":144,"fileNum":4132,"id":6913,"width":48,"height":48},{"x":0,"y":0,"fileNum":4080,"id":6918,"width":25,"height":52},{"x":25,"y":0,"fileNum":4080,"id":6919,"width":25,"height":52},{"x":50,"y":0,"fileNum":4080,"id":6920,"width":25,"height":52},{"x":75,"y":0,"fileNum":4080,"id":6921,"width":25,"height":52},{"x":100,"y":0,"fileNum":4080,"id":6922,"width":25,"height":52},{"x":125,"y":0,"fileNum":4080,"id":6923,"width":25,"height":52},{"x":0,"y":52,"fileNum":4080,"id":6924,"width":25,"height":52},{"x":25,"y":52,"fileNum":4080,"id":6925,"width":25,"height":52},{"x":50,"y":52,"fileNum":4080,"id":6926,"width":25,"height":52},{"x":75,"y":52,"fileNum":4080,"id":6927,"width":25,"height":52},{"x":100,"y":52,"fileNum":4080,"id":6928,"width":25,"height":52},{"x":125,"y":52,"fileNum":4080,"id":6929,"width":25,"height":52},{"x":0,"y":104,"fileNum":4080,"id":6930,"width":25,"height":52},{"x":25,"y":104,"fileNum":4080,"id":6931,"width":25,"height":52},{"x":50,"y":104,"fileNum":4080,"id":6932,"width":25,"height":52},{"x":75,"y":104,"fileNum":4080,"id":6933,"width":25,"height":52},{"x":100,"y":104,"fileNum":4080,"id":6934,"width":25,"height":52},{"x":0,"y":156,"fileNum":4080,"id":6935,"width":25,"height":52},{"x":25,"y":156,"fileNum":4080,"id":6936,"width":25,"height":52},{"x":50,"y":156,"fileNum":4080,"id":6937,"width":25,"height":52},{"x":75,"y":156,"fileNum":4080,"id":6938,"width":25,"height":52},{"x":100,"y":156,"fileNum":4080,"id":6939,"width":25,"height":52},{"x":0,"y":0,"fileNum":2156,"id":6944,"width":17,"height":50},{"x":17,"y":0,"fileNum":2156,"id":6945,"width":17,"height":50},{"x":34,"y":0,"fileNum":2156,"id":6946,"width":17,"height":50},{"x":51,"y":0,"fileNum":2156,"id":6947,"width":17,"height":50},{"x":0,"y":0,"fileNum":2157,"id":6948,"width":17,"height":50},{"x":17,"y":0,"fileNum":2157,"id":6949,"width":17,"height":50},{"x":34,"y":0,"fileNum":2157,"id":6950,"width":17,"height":50},{"x":51,"y":0,"fileNum":2157,"id":6951,"width":17,"height":50},{"x":0,"y":0,"fileNum":2158,"id":6952,"width":17,"height":50},{"x":17,"y":0,"fileNum":2158,"id":6953,"width":17,"height":50},{"x":34,"y":0,"fileNum":2158,"id":6954,"width":17,"height":50},{"x":51,"y":0,"fileNum":2158,"id":6955,"width":17,"height":50},{"x":0,"y":0,"fileNum":2159,"id":6956,"width":17,"height":50},{"x":17,"y":0,"fileNum":2159,"id":6957,"width":17,"height":50},{"x":34,"y":0,"fileNum":2159,"id":6958,"width":17,"height":50},{"x":51,"y":0,"fileNum":2159,"id":6959,"width":17,"height":50},{"x":0,"y":0,"fileNum":2160,"id":6960,"width":17,"height":50},{"x":17,"y":0,"fileNum":2160,"id":6961,"width":17,"height":50},{"x":34,"y":0,"fileNum":2160,"id":6962,"width":17,"height":50},{"x":51,"y":0,"fileNum":2160,"id":6963,"width":17,"height":50},{"x":0,"y":0,"fileNum":188,"id":6967,"width":32,"height":32},{"x":0,"y":0,"fileNum":189,"id":6968,"width":25,"height":45},{"x":25,"y":0,"fileNum":189,"id":6969,"width":25,"height":45},{"x":50,"y":0,"fileNum":189,"id":6970,"width":25,"height":45},{"x":75,"y":0,"fileNum":189,"id":6971,"width":25,"height":45},{"x":100,"y":0,"fileNum":189,"id":6972,"width":25,"height":45},{"x":125,"y":0,"fileNum":189,"id":6973,"width":25,"height":45},{"x":0,"y":45,"fileNum":189,"id":6974,"width":25,"height":45},{"x":25,"y":45,"fileNum":189,"id":6975,"width":25,"height":45},{"x":50,"y":45,"fileNum":189,"id":6976,"width":25,"height":45},{"x":75,"y":45,"fileNum":189,"id":6977,"width":25,"height":45},{"x":100,"y":45,"fileNum":189,"id":6978,"width":25,"height":45},{"x":125,"y":45,"fileNum":189,"id":6979,"width":25,"height":45},{"x":0,"y":90,"fileNum":189,"id":6980,"width":25,"height":45},{"x":25,"y":90,"fileNum":189,"id":6981,"width":25,"height":45},{"x":50,"y":90,"fileNum":189,"id":6982,"width":25,"height":45},{"x":75,"y":90,"fileNum":189,"id":6983,"width":25,"height":45},{"x":100,"y":90,"fileNum":189,"id":6984,"width":25,"height":45},{"x":0,"y":135,"fileNum":189,"id":6985,"width":25,"height":45},{"x":25,"y":135,"fileNum":189,"id":6986,"width":25,"height":45},{"x":50,"y":135,"fileNum":189,"id":6987,"width":25,"height":45},{"x":75,"y":135,"fileNum":189,"id":6988,"width":25,"height":45},{"x":100,"y":135,"fileNum":189,"id":6989,"width":25,"height":45},{"x":0,"y":0,"fileNum":2161,"id":6994,"width":17,"height":50},{"x":17,"y":0,"fileNum":2161,"id":6995,"width":17,"height":50},{"x":34,"y":0,"fileNum":2161,"id":6996,"width":17,"height":50},{"x":51,"y":0,"fileNum":2161,"id":6997,"width":17,"height":50},{"x":0,"y":0,"fileNum":6070,"id":7000,"width":256,"height":256},{"x":0,"y":0,"fileNum":6071,"id":7001,"width":256,"height":256},{"x":0,"y":0,"fileNum":6072,"id":7002,"width":256,"height":256},{"x":0,"y":0,"fileNum":4030,"id":7003,"width":38,"height":56},{"x":38,"y":0,"fileNum":4030,"id":7004,"width":38,"height":56},{"x":76,"y":0,"fileNum":4030,"id":7005,"width":38,"height":56},{"x":114,"y":0,"fileNum":4030,"id":7006,"width":38,"height":56},{"x":152,"y":0,"fileNum":4030,"id":7007,"width":38,"height":56},{"x":190,"y":0,"fileNum":4030,"id":7008,"width":38,"height":56},{"x":0,"y":56,"fileNum":4030,"id":7010,"width":38,"height":56},{"x":38,"y":56,"fileNum":4030,"id":7011,"width":38,"height":56},{"x":76,"y":56,"fileNum":4030,"id":7012,"width":38,"height":56},{"x":114,"y":56,"fileNum":4030,"id":7013,"width":38,"height":56},{"x":152,"y":56,"fileNum":4030,"id":7014,"width":38,"height":56},{"x":190,"y":56,"fileNum":4030,"id":7015,"width":38,"height":56},{"x":0,"y":112,"fileNum":4030,"id":7017,"width":38,"height":56},{"x":38,"y":112,"fileNum":4030,"id":7018,"width":38,"height":56},{"x":76,"y":112,"fileNum":4030,"id":7019,"width":38,"height":56},{"x":114,"y":112,"fileNum":4030,"id":7020,"width":38,"height":56},{"x":152,"y":112,"fileNum":4030,"id":7021,"width":38,"height":56},{"x":190,"y":112,"fileNum":4030,"id":7022,"width":38,"height":56},{"x":0,"y":168,"fileNum":4030,"id":7024,"width":38,"height":56},{"x":38,"y":168,"fileNum":4030,"id":7025,"width":38,"height":56},{"x":76,"y":168,"fileNum":4030,"id":7026,"width":38,"height":56},{"x":114,"y":168,"fileNum":4030,"id":7027,"width":38,"height":56},{"x":152,"y":168,"fileNum":4030,"id":7028,"width":38,"height":56},{"x":190,"y":168,"fileNum":4030,"id":7029,"width":38,"height":56},{"x":0,"y":0,"fileNum":4032,"id":7034,"width":52,"height":81},{"x":52,"y":0,"fileNum":4032,"id":7035,"width":52,"height":81},{"x":104,"y":0,"fileNum":4032,"id":7036,"width":52,"height":81},{"x":156,"y":0,"fileNum":4032,"id":7037,"width":52,"height":81},{"x":208,"y":0,"fileNum":4032,"id":7038,"width":52,"height":81},{"x":260,"y":0,"fileNum":4032,"id":7039,"width":52,"height":81},{"x":0,"y":81,"fileNum":4032,"id":7041,"width":52,"height":81},{"x":52,"y":81,"fileNum":4032,"id":7042,"width":52,"height":81},{"x":104,"y":81,"fileNum":4032,"id":7043,"width":52,"height":81},{"x":156,"y":81,"fileNum":4032,"id":7044,"width":52,"height":81},{"x":207,"y":81,"fileNum":4032,"id":7045,"width":52,"height":81},{"x":260,"y":81,"fileNum":4032,"id":7046,"width":52,"height":81},{"x":0,"y":162,"fileNum":4032,"id":7048,"width":52,"height":81},{"x":52,"y":162,"fileNum":4032,"id":7049,"width":52,"height":81},{"x":104,"y":162,"fileNum":4032,"id":7050,"width":52,"height":81},{"x":156,"y":162,"fileNum":4032,"id":7051,"width":52,"height":81},{"x":208,"y":162,"fileNum":4032,"id":7052,"width":52,"height":81},{"x":260,"y":162,"fileNum":4032,"id":7053,"width":52,"height":81},{"x":0,"y":243,"fileNum":4032,"id":7055,"width":52,"height":81},{"x":52,"y":243,"fileNum":4032,"id":7056,"width":52,"height":81},{"x":104,"y":243,"fileNum":4032,"id":7057,"width":52,"height":81},{"x":156,"y":243,"fileNum":4032,"id":7058,"width":52,"height":81},{"x":208,"y":243,"fileNum":4032,"id":7059,"width":52,"height":81},{"x":260,"y":243,"fileNum":4032,"id":7060,"width":52,"height":81},{"x":0,"y":0,"fileNum":4033,"id":7065,"width":52,"height":81},{"x":52,"y":0,"fileNum":4033,"id":7066,"width":52,"height":81},{"x":104,"y":0,"fileNum":4033,"id":7067,"width":52,"height":81},{"x":156,"y":0,"fileNum":4033,"id":7068,"width":52,"height":81},{"x":208,"y":0,"fileNum":4033,"id":7069,"width":52,"height":81},{"x":260,"y":0,"fileNum":4033,"id":7070,"width":52,"height":81},{"x":0,"y":81,"fileNum":4033,"id":7072,"width":52,"height":81},{"x":52,"y":81,"fileNum":4033,"id":7073,"width":52,"height":81},{"x":104,"y":81,"fileNum":4033,"id":7074,"width":52,"height":81},{"x":156,"y":81,"fileNum":4033,"id":7075,"width":52,"height":81},{"x":207,"y":81,"fileNum":4033,"id":7076,"width":52,"height":81},{"x":260,"y":81,"fileNum":4033,"id":7077,"width":52,"height":81},{"x":0,"y":162,"fileNum":4033,"id":7079,"width":52,"height":81},{"x":52,"y":162,"fileNum":4033,"id":7080,"width":52,"height":81},{"x":104,"y":162,"fileNum":4033,"id":7081,"width":52,"height":81},{"x":156,"y":162,"fileNum":4033,"id":7082,"width":52,"height":81},{"x":208,"y":162,"fileNum":4033,"id":7083,"width":52,"height":81},{"x":260,"y":162,"fileNum":4033,"id":7084,"width":52,"height":81},{"x":0,"y":243,"fileNum":4033,"id":7086,"width":52,"height":81},{"x":52,"y":243,"fileNum":4033,"id":7087,"width":52,"height":81},{"x":104,"y":243,"fileNum":4033,"id":7088,"width":52,"height":81},{"x":156,"y":243,"fileNum":4033,"id":7089,"width":52,"height":81},{"x":208,"y":243,"fileNum":4033,"id":7090,"width":52,"height":81},{"x":260,"y":243,"fileNum":4033,"id":7091,"width":52,"height":81},{"x":0,"y":0,"fileNum":2162,"id":7096,"width":17,"height":50},{"x":17,"y":0,"fileNum":2162,"id":7097,"width":17,"height":50},{"x":34,"y":0,"fileNum":2162,"id":7098,"width":17,"height":50},{"x":51,"y":0,"fileNum":2162,"id":7099,"width":17,"height":50},{"x":0,"y":0,"fileNum":15190,"id":7100,"width":32,"height":32},{"x":32,"y":0,"fileNum":15190,"id":7101,"width":32,"height":32},{"x":64,"y":0,"fileNum":15190,"id":7102,"width":32,"height":32},{"x":0,"y":32,"fileNum":15190,"id":7103,"width":32,"height":32},{"x":32,"y":32,"fileNum":15190,"id":7104,"width":32,"height":32},{"x":64,"y":32,"fileNum":15190,"id":7105,"width":32,"height":32},{"x":0,"y":64,"fileNum":15190,"id":7106,"width":32,"height":32},{"x":32,"y":64,"fileNum":15190,"id":7107,"width":32,"height":32},{"x":64,"y":64,"fileNum":15190,"id":7108,"width":32,"height":32},{"x":96,"y":0,"fileNum":15190,"id":7109,"width":32,"height":32},{"x":128,"y":0,"fileNum":15190,"id":7110,"width":32,"height":32},{"x":160,"y":0,"fileNum":15190,"id":7111,"width":32,"height":32},{"x":96,"y":32,"fileNum":15190,"id":7112,"width":32,"height":32},{"x":128,"y":32,"fileNum":15190,"id":7113,"width":32,"height":32},{"x":160,"y":32,"fileNum":15190,"id":7114,"width":32,"height":32},{"x":96,"y":64,"fileNum":15190,"id":7115,"width":32,"height":32},{"x":128,"y":64,"fileNum":15190,"id":7116,"width":32,"height":32},{"x":160,"y":64,"fileNum":15190,"id":7117,"width":32,"height":32},{"x":192,"y":0,"fileNum":15190,"id":7118,"width":32,"height":32},{"x":224,"y":0,"fileNum":15190,"id":7119,"width":32,"height":32},{"x":256,"y":0,"fileNum":15190,"id":7120,"width":32,"height":32},{"x":192,"y":32,"fileNum":15190,"id":7121,"width":32,"height":32},{"x":224,"y":32,"fileNum":15190,"id":7122,"width":32,"height":32},{"x":256,"y":32,"fileNum":15190,"id":7123,"width":32,"height":32},{"x":192,"y":64,"fileNum":15190,"id":7124,"width":32,"height":32},{"x":224,"y":64,"fileNum":15190,"id":7125,"width":32,"height":32},{"x":256,"y":64,"fileNum":15190,"id":7126,"width":32,"height":32},{"x":288,"y":0,"fileNum":15190,"id":7127,"width":32,"height":32},{"x":320,"y":0,"fileNum":15190,"id":7128,"width":32,"height":32},{"x":288,"y":32,"fileNum":15190,"id":7129,"width":32,"height":32},{"x":320,"y":32,"fileNum":15190,"id":7130,"width":32,"height":32},{"x":288,"y":64,"fileNum":15190,"id":7131,"width":32,"height":32},{"x":320,"y":64,"fileNum":15190,"id":7132,"width":32,"height":32},{"x":352,"y":0,"fileNum":15190,"id":7133,"width":32,"height":32},{"x":352,"y":32,"fileNum":15190,"id":7134,"width":32,"height":32},{"x":384,"y":0,"fileNum":15190,"id":7135,"width":32,"height":32},{"x":384,"y":32,"fileNum":15190,"id":7136,"width":32,"height":32},{"x":352,"y":64,"fileNum":15190,"id":7137,"width":32,"height":32},{"x":384,"y":64,"fileNum":15190,"id":7138,"width":32,"height":32},{"x":416,"y":0,"fileNum":15190,"id":7139,"width":32,"height":32},{"x":448,"y":0,"fileNum":15190,"id":7140,"width":32,"height":32},{"x":416,"y":32,"fileNum":15190,"id":7141,"width":32,"height":32},{"x":448,"y":32,"fileNum":15190,"id":7142,"width":32,"height":32},{"x":416,"y":64,"fileNum":15190,"id":7143,"width":32,"height":32},{"x":448,"y":64,"fileNum":15190,"id":7144,"width":32,"height":32},{"x":0,"y":96,"fileNum":15190,"id":7145,"width":32,"height":32},{"x":32,"y":96,"fileNum":15190,"id":7146,"width":32,"height":32},{"x":64,"y":96,"fileNum":15190,"id":7147,"width":32,"height":32},{"x":96,"y":96,"fileNum":15190,"id":7148,"width":32,"height":32},{"x":128,"y":96,"fileNum":15190,"id":7149,"width":32,"height":32},{"x":160,"y":96,"fileNum":15190,"id":7150,"width":32,"height":32},{"x":192,"y":96,"fileNum":15190,"id":7151,"width":32,"height":32},{"x":224,"y":96,"fileNum":15190,"id":7152,"width":32,"height":32},{"x":256,"y":96,"fileNum":15190,"id":7153,"width":32,"height":32},{"x":288,"y":96,"fileNum":15190,"id":7154,"width":32,"height":32},{"x":320,"y":96,"fileNum":15190,"id":7155,"width":32,"height":32},{"x":352,"y":96,"fileNum":15190,"id":7156,"width":32,"height":32},{"x":384,"y":96,"fileNum":15190,"id":7157,"width":32,"height":32},{"x":416,"y":96,"fileNum":15190,"id":7158,"width":32,"height":32},{"x":448,"y":96,"fileNum":15190,"id":7159,"width":32,"height":32},{"x":480,"y":96,"fileNum":15190,"id":7160,"width":32,"height":32},{"x":480,"y":0,"fileNum":15190,"id":7161,"width":32,"height":32},{"x":480,"y":32,"fileNum":15190,"id":7162,"width":32,"height":32},{"x":0,"y":0,"fileNum":15191,"id":7163,"width":256,"height":32},{"x":0,"y":32,"fileNum":15191,"id":7164,"width":256,"height":32},{"x":0,"y":64,"fileNum":15191,"id":7165,"width":256,"height":32},{"x":0,"y":96,"fileNum":15191,"id":7166,"width":256,"height":32},{"x":0,"y":128,"fileNum":15191,"id":7167,"width":256,"height":32},{"x":0,"y":160,"fileNum":15191,"id":7168,"width":256,"height":32},{"x":0,"y":192,"fileNum":15191,"id":7169,"width":256,"height":32},{"x":0,"y":224,"fileNum":15191,"id":7170,"width":256,"height":32},{"x":0,"y":0,"fileNum":4034,"id":7171,"width":98,"height":85},{"x":98,"y":0,"fileNum":4034,"id":7172,"width":98,"height":85},{"x":196,"y":0,"fileNum":4034,"id":7173,"width":98,"height":85},{"x":294,"y":0,"fileNum":4034,"id":7174,"width":98,"height":85},{"x":392,"y":0,"fileNum":4034,"id":7175,"width":98,"height":85},{"x":0,"y":85,"fileNum":4034,"id":7177,"width":98,"height":85},{"x":98,"y":85,"fileNum":4034,"id":7178,"width":98,"height":85},{"x":196,"y":85,"fileNum":4034,"id":7179,"width":98,"height":85},{"x":294,"y":85,"fileNum":4034,"id":7180,"width":98,"height":85},{"x":392,"y":85,"fileNum":4034,"id":7181,"width":98,"height":85},{"x":0,"y":170,"fileNum":4034,"id":7183,"width":98,"height":85},{"x":98,"y":170,"fileNum":4034,"id":7184,"width":98,"height":85},{"x":196,"y":170,"fileNum":4034,"id":7185,"width":98,"height":85},{"x":294,"y":170,"fileNum":4034,"id":7186,"width":98,"height":85},{"x":392,"y":170,"fileNum":4034,"id":7187,"width":98,"height":85},{"x":0,"y":255,"fileNum":4034,"id":7189,"width":98,"height":85},{"x":98,"y":255,"fileNum":4034,"id":7190,"width":98,"height":85},{"x":196,"y":255,"fileNum":4034,"id":7191,"width":98,"height":85},{"x":294,"y":255,"fileNum":4034,"id":7192,"width":98,"height":85},{"x":392,"y":255,"fileNum":4034,"id":7193,"width":98,"height":85},{"x":0,"y":0,"fileNum":9007,"id":7198,"width":320,"height":128},{"x":0,"y":128,"fileNum":9007,"id":7199,"width":320,"height":128},{"x":0,"y":256,"fileNum":9007,"id":7200,"width":320,"height":128},{"x":0,"y":384,"fileNum":9007,"id":7201,"width":320,"height":32},{"x":0,"y":0,"fileNum":2163,"id":7202,"width":17,"height":50},{"x":17,"y":0,"fileNum":2163,"id":7203,"width":17,"height":50},{"x":34,"y":0,"fileNum":2163,"id":7204,"width":17,"height":50},{"x":51,"y":0,"fileNum":2163,"id":7205,"width":17,"height":50},{"x":0,"y":0,"fileNum":2164,"id":7206,"width":17,"height":50},{"x":17,"y":0,"fileNum":2164,"id":7207,"width":17,"height":50},{"x":34,"y":0,"fileNum":2164,"id":7208,"width":17,"height":50},{"x":51,"y":0,"fileNum":2164,"id":7209,"width":17,"height":50},{"x":0,"y":0,"fileNum":2165,"id":7210,"width":17,"height":50},{"x":17,"y":0,"fileNum":2165,"id":7211,"width":17,"height":50},{"x":34,"y":0,"fileNum":2165,"id":7212,"width":17,"height":50},{"x":51,"y":0,"fileNum":2165,"id":7213,"width":17,"height":50},{"x":0,"y":0,"fileNum":2166,"id":7214,"width":17,"height":50},{"x":17,"y":0,"fileNum":2166,"id":7215,"width":17,"height":50},{"x":34,"y":0,"fileNum":2166,"id":7216,"width":17,"height":50},{"x":51,"y":0,"fileNum":2166,"id":7217,"width":17,"height":50},{"x":0,"y":0,"fileNum":2167,"id":7218,"width":17,"height":50},{"x":17,"y":0,"fileNum":2167,"id":7219,"width":17,"height":50},{"x":34,"y":0,"fileNum":2167,"id":7220,"width":17,"height":50},{"x":51,"y":0,"fileNum":2167,"id":7221,"width":17,"height":50},{"x":0,"y":0,"fileNum":6073,"id":7222,"width":256,"height":320},{"x":0,"y":0,"fileNum":6074,"id":7223,"width":256,"height":320},{"x":0,"y":0,"fileNum":6076,"id":7224,"width":256,"height":320},{"x":0,"y":0,"fileNum":6075,"id":7225,"width":256,"height":320},{"x":0,"y":0,"fileNum":6077,"id":7226,"width":282,"height":320},{"x":0,"y":0,"fileNum":2168,"id":7227,"width":17,"height":50},{"x":17,"y":0,"fileNum":2168,"id":7228,"width":17,"height":50},{"x":34,"y":0,"fileNum":2168,"id":7229,"width":17,"height":50},{"x":51,"y":0,"fileNum":2168,"id":7230,"width":17,"height":50},{"x":0,"y":0,"fileNum":11017,"id":7231,"width":160,"height":128},{"x":0,"y":0,"fileNum":11018,"id":7232,"width":32,"height":160},{"x":0,"y":0,"fileNum":9008,"id":7233,"width":256,"height":256},{"x":0,"y":0,"fileNum":12045,"id":7234,"width":32,"height":32},{"x":32,"y":0,"fileNum":12045,"id":7235,"width":32,"height":32},{"x":64,"y":0,"fileNum":12045,"id":7236,"width":32,"height":32},{"x":96,"y":0,"fileNum":12045,"id":7237,"width":32,"height":32},{"x":0,"y":32,"fileNum":12045,"id":7238,"width":32,"height":32},{"x":32,"y":32,"fileNum":12045,"id":7239,"width":32,"height":32},{"x":64,"y":32,"fileNum":12045,"id":7240,"width":32,"height":32},{"x":96,"y":32,"fileNum":12045,"id":7241,"width":32,"height":32},{"x":0,"y":64,"fileNum":12045,"id":7242,"width":32,"height":32},{"x":32,"y":64,"fileNum":12045,"id":7243,"width":32,"height":32},{"x":64,"y":64,"fileNum":12045,"id":7244,"width":32,"height":32},{"x":96,"y":64,"fileNum":12045,"id":7245,"width":32,"height":32},{"x":0,"y":96,"fileNum":12045,"id":7246,"width":32,"height":32},{"x":32,"y":96,"fileNum":12045,"id":7247,"width":32,"height":32},{"x":64,"y":96,"fileNum":12045,"id":7248,"width":32,"height":32},{"x":96,"y":96,"fileNum":12045,"id":7249,"width":32,"height":32},{"x":0,"y":0,"fileNum":12047,"id":7250,"width":32,"height":32},{"x":32,"y":0,"fileNum":12047,"id":7251,"width":32,"height":32},{"x":64,"y":0,"fileNum":12047,"id":7252,"width":32,"height":32},{"x":96,"y":0,"fileNum":12047,"id":7253,"width":32,"height":32},{"x":0,"y":32,"fileNum":12047,"id":7254,"width":32,"height":32},{"x":32,"y":32,"fileNum":12047,"id":7255,"width":32,"height":32},{"x":64,"y":32,"fileNum":12047,"id":7256,"width":32,"height":32},{"x":96,"y":32,"fileNum":12047,"id":7257,"width":32,"height":32},{"x":0,"y":64,"fileNum":12047,"id":7258,"width":32,"height":32},{"x":32,"y":64,"fileNum":12047,"id":7259,"width":32,"height":32},{"x":64,"y":64,"fileNum":12047,"id":7260,"width":32,"height":32},{"x":96,"y":64,"fileNum":12047,"id":7261,"width":32,"height":32},{"x":0,"y":96,"fileNum":12047,"id":7262,"width":32,"height":32},{"x":32,"y":96,"fileNum":12047,"id":7263,"width":32,"height":32},{"x":64,"y":96,"fileNum":12047,"id":7264,"width":32,"height":32},{"x":96,"y":96,"fileNum":12047,"id":7265,"width":32,"height":32},{"x":0,"y":0,"fileNum":12049,"id":7266,"width":32,"height":32},{"x":32,"y":0,"fileNum":12049,"id":7267,"width":32,"height":32},{"x":64,"y":0,"fileNum":12049,"id":7268,"width":32,"height":32},{"x":96,"y":0,"fileNum":12049,"id":7269,"width":32,"height":32},{"x":0,"y":32,"fileNum":12049,"id":7270,"width":32,"height":32},{"x":32,"y":32,"fileNum":12049,"id":7271,"width":32,"height":32},{"x":64,"y":32,"fileNum":12049,"id":7272,"width":32,"height":32},{"x":96,"y":32,"fileNum":12049,"id":7273,"width":32,"height":32},{"x":0,"y":64,"fileNum":12049,"id":7274,"width":32,"height":32},{"x":32,"y":64,"fileNum":12049,"id":7275,"width":32,"height":32},{"x":64,"y":64,"fileNum":12049,"id":7276,"width":32,"height":32},{"x":96,"y":64,"fileNum":12049,"id":7277,"width":32,"height":32},{"x":0,"y":96,"fileNum":12049,"id":7278,"width":32,"height":32},{"x":32,"y":96,"fileNum":12049,"id":7279,"width":32,"height":32},{"x":64,"y":96,"fileNum":12049,"id":7280,"width":32,"height":32},{"x":96,"y":96,"fileNum":12049,"id":7281,"width":32,"height":32},{"x":0,"y":0,"fileNum":11033,"id":7282,"width":32,"height":160},{"x":0,"y":0,"fileNum":12083,"id":7283,"width":32,"height":32},{"x":32,"y":0,"fileNum":12083,"id":7284,"width":32,"height":32},{"x":0,"y":32,"fileNum":12083,"id":7285,"width":32,"height":32},{"x":32,"y":32,"fileNum":12083,"id":7286,"width":32,"height":32},{"x":64,"y":0,"fileNum":12083,"id":7287,"width":32,"height":32},{"x":96,"y":0,"fileNum":12083,"id":7288,"width":32,"height":32},{"x":64,"y":32,"fileNum":12083,"id":7289,"width":32,"height":32},{"x":96,"y":32,"fileNum":12083,"id":7290,"width":32,"height":32},{"x":0,"y":64,"fileNum":12083,"id":7291,"width":32,"height":32},{"x":32,"y":64,"fileNum":12083,"id":7292,"width":32,"height":32},{"x":0,"y":96,"fileNum":12083,"id":7293,"width":32,"height":32},{"x":32,"y":96,"fileNum":12083,"id":7294,"width":32,"height":32},{"x":64,"y":64,"fileNum":12083,"id":7295,"width":32,"height":32},{"x":96,"y":64,"fileNum":12083,"id":7296,"width":32,"height":32},{"x":64,"y":96,"fileNum":12083,"id":7297,"width":32,"height":32},{"x":96,"y":96,"fileNum":12083,"id":7298,"width":32,"height":32},{"x":0,"y":128,"fileNum":12083,"id":7299,"width":32,"height":32},{"x":32,"y":128,"fileNum":12083,"id":7300,"width":32,"height":32},{"x":0,"y":160,"fileNum":12083,"id":7301,"width":32,"height":32},{"x":32,"y":160,"fileNum":12083,"id":7302,"width":32,"height":32},{"x":64,"y":128,"fileNum":12083,"id":7303,"width":32,"height":32},{"x":96,"y":128,"fileNum":12083,"id":7304,"width":32,"height":32},{"x":64,"y":160,"fileNum":12083,"id":7305,"width":32,"height":32},{"x":96,"y":160,"fileNum":12083,"id":7306,"width":32,"height":32},{"x":192,"y":128,"fileNum":12083,"id":7307,"width":32,"height":32},{"x":224,"y":128,"fileNum":12083,"id":7308,"width":32,"height":32},{"x":192,"y":160,"fileNum":12083,"id":7309,"width":32,"height":32},{"x":224,"y":160,"fileNum":12083,"id":7310,"width":32,"height":32},{"x":0,"y":192,"fileNum":12083,"id":7311,"width":32,"height":32},{"x":32,"y":192,"fileNum":12083,"id":7312,"width":32,"height":32},{"x":0,"y":224,"fileNum":12083,"id":7313,"width":32,"height":32},{"x":32,"y":224,"fileNum":12083,"id":7314,"width":32,"height":32},{"x":64,"y":192,"fileNum":12083,"id":7315,"width":32,"height":32},{"x":96,"y":192,"fileNum":12083,"id":7316,"width":32,"height":32},{"x":64,"y":224,"fileNum":12083,"id":7317,"width":32,"height":32},{"x":96,"y":224,"fileNum":12083,"id":7318,"width":32,"height":32},{"x":128,"y":192,"fileNum":12083,"id":7319,"width":32,"height":32},{"x":160,"y":192,"fileNum":12083,"id":7320,"width":32,"height":32},{"x":128,"y":224,"fileNum":12083,"id":7321,"width":32,"height":32},{"x":160,"y":224,"fileNum":12083,"id":7322,"width":32,"height":32},{"x":128,"y":128,"fileNum":12083,"id":7323,"width":32,"height":32},{"x":160,"y":128,"fileNum":12083,"id":7324,"width":32,"height":32},{"x":128,"y":160,"fileNum":12083,"id":7325,"width":32,"height":32},{"x":160,"y":160,"fileNum":12083,"id":7326,"width":32,"height":32},{"x":192,"y":192,"fileNum":12083,"id":7327,"width":32,"height":32},{"x":224,"y":192,"fileNum":12083,"id":7328,"width":32,"height":32},{"x":192,"y":224,"fileNum":12083,"id":7329,"width":32,"height":32},{"x":224,"y":224,"fileNum":12083,"id":7330,"width":32,"height":32},{"x":128,"y":0,"fileNum":12083,"id":7331,"width":32,"height":32},{"x":160,"y":0,"fileNum":12083,"id":7332,"width":32,"height":32},{"x":128,"y":32,"fileNum":12083,"id":7333,"width":32,"height":32},{"x":160,"y":32,"fileNum":12083,"id":7334,"width":32,"height":32},{"x":192,"y":0,"fileNum":12083,"id":7335,"width":32,"height":32},{"x":224,"y":0,"fileNum":12083,"id":7336,"width":32,"height":32},{"x":192,"y":32,"fileNum":12083,"id":7337,"width":32,"height":32},{"x":224,"y":32,"fileNum":12083,"id":7338,"width":32,"height":32},{"x":128,"y":64,"fileNum":12083,"id":7339,"width":32,"height":32},{"x":160,"y":64,"fileNum":12083,"id":7340,"width":32,"height":32},{"x":128,"y":96,"fileNum":12083,"id":7341,"width":32,"height":32},{"x":160,"y":96,"fileNum":12083,"id":7342,"width":32,"height":32},{"x":192,"y":64,"fileNum":12083,"id":7343,"width":32,"height":32},{"x":224,"y":64,"fileNum":12083,"id":7344,"width":32,"height":32},{"x":192,"y":96,"fileNum":12083,"id":7345,"width":32,"height":32},{"x":224,"y":96,"fileNum":12083,"id":7346,"width":32,"height":32},{"x":0,"y":256,"fileNum":12083,"id":7347,"width":32,"height":32},{"x":32,"y":256,"fileNum":12083,"id":7348,"width":32,"height":32},{"x":0,"y":288,"fileNum":12083,"id":7349,"width":32,"height":32},{"x":32,"y":288,"fileNum":12083,"id":7350,"width":32,"height":32},{"x":64,"y":256,"fileNum":12083,"id":7351,"width":32,"height":32},{"x":96,"y":256,"fileNum":12083,"id":7352,"width":32,"height":32},{"x":64,"y":288,"fileNum":12083,"id":7353,"width":32,"height":32},{"x":96,"y":288,"fileNum":12083,"id":7354,"width":32,"height":32},{"x":128,"y":256,"fileNum":12083,"id":7355,"width":32,"height":32},{"x":160,"y":256,"fileNum":12083,"id":7356,"width":32,"height":32},{"x":128,"y":288,"fileNum":12083,"id":7357,"width":32,"height":32},{"x":160,"y":288,"fileNum":12083,"id":7358,"width":32,"height":32},{"x":192,"y":256,"fileNum":12083,"id":7359,"width":32,"height":32},{"x":224,"y":256,"fileNum":12083,"id":7360,"width":32,"height":32},{"x":192,"y":288,"fileNum":12083,"id":7361,"width":32,"height":32},{"x":224,"y":288,"fileNum":12083,"id":7362,"width":32,"height":32},{"x":0,"y":320,"fileNum":12083,"id":7363,"width":32,"height":32},{"x":32,"y":320,"fileNum":12083,"id":7364,"width":32,"height":32},{"x":0,"y":352,"fileNum":12083,"id":7365,"width":32,"height":32},{"x":32,"y":352,"fileNum":12083,"id":7366,"width":32,"height":32},{"x":64,"y":320,"fileNum":12083,"id":7367,"width":32,"height":32},{"x":96,"y":320,"fileNum":12083,"id":7368,"width":32,"height":32},{"x":64,"y":352,"fileNum":12083,"id":7369,"width":32,"height":32},{"x":96,"y":352,"fileNum":12083,"id":7370,"width":32,"height":32},{"x":128,"y":320,"fileNum":12083,"id":7371,"width":32,"height":32},{"x":160,"y":320,"fileNum":12083,"id":7372,"width":32,"height":32},{"x":128,"y":352,"fileNum":12083,"id":7373,"width":32,"height":32},{"x":160,"y":352,"fileNum":12083,"id":7374,"width":32,"height":32},{"x":192,"y":320,"fileNum":12083,"id":7375,"width":32,"height":32},{"x":224,"y":320,"fileNum":12083,"id":7376,"width":32,"height":32},{"x":192,"y":352,"fileNum":12083,"id":7377,"width":32,"height":32},{"x":224,"y":352,"fileNum":12083,"id":7378,"width":32,"height":32},{"x":96,"y":96,"fileNum":12064,"id":7379,"width":32,"height":32},{"x":128,"y":0,"fileNum":12064,"id":7380,"width":32,"height":32},{"x":160,"y":0,"fileNum":12064,"id":7381,"width":32,"height":32},{"x":192,"y":0,"fileNum":12064,"id":7382,"width":32,"height":32},{"x":224,"y":0,"fileNum":12064,"id":7383,"width":32,"height":32},{"x":128,"y":32,"fileNum":12064,"id":7384,"width":32,"height":32},{"x":160,"y":32,"fileNum":12064,"id":7385,"width":32,"height":32},{"x":192,"y":32,"fileNum":12064,"id":7386,"width":32,"height":32},{"x":224,"y":32,"fileNum":12064,"id":7387,"width":32,"height":32},{"x":128,"y":64,"fileNum":12064,"id":7388,"width":32,"height":32},{"x":160,"y":64,"fileNum":12064,"id":7389,"width":32,"height":32},{"x":192,"y":64,"fileNum":12064,"id":7390,"width":32,"height":32},{"x":224,"y":64,"fileNum":12064,"id":7391,"width":32,"height":32},{"x":128,"y":96,"fileNum":12064,"id":7392,"width":32,"height":32},{"x":160,"y":96,"fileNum":12064,"id":7393,"width":32,"height":32},{"x":192,"y":96,"fileNum":12064,"id":7394,"width":32,"height":32},{"x":224,"y":96,"fileNum":12064,"id":7395,"width":32,"height":32},{"x":256,"y":0,"fileNum":12064,"id":7396,"width":32,"height":32},{"x":288,"y":0,"fileNum":12064,"id":7397,"width":32,"height":32},{"x":320,"y":0,"fileNum":12064,"id":7398,"width":32,"height":32},{"x":352,"y":0,"fileNum":12064,"id":7399,"width":32,"height":32},{"x":256,"y":32,"fileNum":12064,"id":7400,"width":32,"height":32},{"x":288,"y":32,"fileNum":12064,"id":7401,"width":32,"height":32},{"x":320,"y":32,"fileNum":12064,"id":7402,"width":32,"height":32},{"x":352,"y":32,"fileNum":12064,"id":7403,"width":32,"height":32},{"x":256,"y":64,"fileNum":12064,"id":7404,"width":32,"height":32},{"x":288,"y":64,"fileNum":12064,"id":7405,"width":32,"height":32},{"x":320,"y":64,"fileNum":12064,"id":7406,"width":32,"height":32},{"x":352,"y":64,"fileNum":12064,"id":7407,"width":32,"height":32},{"x":256,"y":96,"fileNum":12064,"id":7408,"width":32,"height":32},{"x":288,"y":96,"fileNum":12064,"id":7409,"width":32,"height":32},{"x":320,"y":96,"fileNum":12064,"id":7410,"width":32,"height":32},{"x":352,"y":96,"fileNum":12064,"id":7411,"width":32,"height":32},{"x":384,"y":0,"fileNum":12064,"id":7412,"width":32,"height":32},{"x":416,"y":0,"fileNum":12064,"id":7413,"width":32,"height":32},{"x":448,"y":0,"fileNum":12064,"id":7414,"width":32,"height":32},{"x":480,"y":0,"fileNum":12064,"id":7415,"width":32,"height":32},{"x":384,"y":32,"fileNum":12064,"id":7416,"width":32,"height":32},{"x":416,"y":32,"fileNum":12064,"id":7417,"width":32,"height":32},{"x":448,"y":32,"fileNum":12064,"id":7418,"width":32,"height":32},{"x":480,"y":32,"fileNum":12064,"id":7419,"width":32,"height":32},{"x":384,"y":64,"fileNum":12064,"id":7420,"width":32,"height":32},{"x":416,"y":64,"fileNum":12064,"id":7421,"width":32,"height":32},{"x":448,"y":64,"fileNum":12064,"id":7422,"width":32,"height":32},{"x":480,"y":64,"fileNum":12064,"id":7423,"width":32,"height":32},{"x":384,"y":96,"fileNum":12064,"id":7424,"width":32,"height":32},{"x":416,"y":96,"fileNum":12064,"id":7425,"width":32,"height":32},{"x":448,"y":96,"fileNum":12064,"id":7426,"width":32,"height":32},{"x":480,"y":96,"fileNum":12064,"id":7427,"width":32,"height":32},{"x":0,"y":0,"fileNum":12065,"id":7428,"width":32,"height":32},{"x":32,"y":0,"fileNum":12065,"id":7429,"width":32,"height":32},{"x":64,"y":0,"fileNum":12065,"id":7430,"width":32,"height":32},{"x":96,"y":0,"fileNum":12065,"id":7431,"width":32,"height":32},{"x":0,"y":32,"fileNum":12065,"id":7432,"width":32,"height":32},{"x":32,"y":32,"fileNum":12065,"id":7433,"width":32,"height":32},{"x":64,"y":32,"fileNum":12065,"id":7434,"width":32,"height":32},{"x":96,"y":32,"fileNum":12065,"id":7435,"width":32,"height":32},{"x":0,"y":64,"fileNum":12065,"id":7436,"width":32,"height":32},{"x":32,"y":64,"fileNum":12065,"id":7437,"width":32,"height":32},{"x":64,"y":64,"fileNum":12065,"id":7438,"width":32,"height":32},{"x":96,"y":64,"fileNum":12065,"id":7439,"width":32,"height":32},{"x":0,"y":96,"fileNum":12065,"id":7440,"width":32,"height":32},{"x":32,"y":96,"fileNum":12065,"id":7441,"width":32,"height":32},{"x":64,"y":96,"fileNum":12065,"id":7442,"width":32,"height":32},{"x":96,"y":96,"fileNum":12065,"id":7443,"width":32,"height":32},{"x":128,"y":0,"fileNum":12065,"id":7444,"width":32,"height":32},{"x":160,"y":0,"fileNum":12065,"id":7445,"width":32,"height":32},{"x":192,"y":0,"fileNum":12065,"id":7446,"width":32,"height":32},{"x":224,"y":0,"fileNum":12065,"id":7447,"width":32,"height":32},{"x":128,"y":32,"fileNum":12065,"id":7448,"width":32,"height":32},{"x":160,"y":32,"fileNum":12065,"id":7449,"width":32,"height":32},{"x":192,"y":32,"fileNum":12065,"id":7450,"width":32,"height":32},{"x":224,"y":32,"fileNum":12065,"id":7451,"width":32,"height":32},{"x":128,"y":64,"fileNum":12065,"id":7452,"width":32,"height":32},{"x":160,"y":64,"fileNum":12065,"id":7453,"width":32,"height":32},{"x":192,"y":64,"fileNum":12065,"id":7454,"width":32,"height":32},{"x":224,"y":64,"fileNum":12065,"id":7455,"width":32,"height":32},{"x":128,"y":96,"fileNum":12065,"id":7456,"width":32,"height":32},{"x":160,"y":96,"fileNum":12065,"id":7457,"width":32,"height":32},{"x":192,"y":96,"fileNum":12065,"id":7458,"width":32,"height":32},{"x":224,"y":96,"fileNum":12065,"id":7459,"width":32,"height":32},{"x":256,"y":0,"fileNum":12065,"id":7460,"width":32,"height":32},{"x":288,"y":0,"fileNum":12065,"id":7461,"width":32,"height":32},{"x":320,"y":0,"fileNum":12065,"id":7462,"width":32,"height":32},{"x":352,"y":0,"fileNum":12065,"id":7463,"width":32,"height":32},{"x":256,"y":32,"fileNum":12065,"id":7464,"width":32,"height":32},{"x":288,"y":32,"fileNum":12065,"id":7465,"width":32,"height":32},{"x":320,"y":32,"fileNum":12065,"id":7466,"width":32,"height":32},{"x":352,"y":32,"fileNum":12065,"id":7467,"width":32,"height":32},{"x":256,"y":64,"fileNum":12065,"id":7468,"width":32,"height":32},{"x":288,"y":64,"fileNum":12065,"id":7469,"width":32,"height":32},{"x":320,"y":64,"fileNum":12065,"id":7470,"width":32,"height":32},{"x":352,"y":64,"fileNum":12065,"id":7471,"width":32,"height":32},{"x":256,"y":96,"fileNum":12065,"id":7472,"width":32,"height":32},{"x":288,"y":96,"fileNum":12065,"id":7473,"width":32,"height":32},{"x":320,"y":96,"fileNum":12065,"id":7474,"width":32,"height":32},{"x":352,"y":96,"fileNum":12065,"id":7475,"width":32,"height":32},{"x":384,"y":0,"fileNum":12065,"id":7476,"width":32,"height":32},{"x":416,"y":0,"fileNum":12065,"id":7477,"width":32,"height":32},{"x":448,"y":0,"fileNum":12065,"id":7478,"width":32,"height":32},{"x":480,"y":0,"fileNum":12065,"id":7479,"width":32,"height":32},{"x":384,"y":32,"fileNum":12065,"id":7480,"width":32,"height":32},{"x":416,"y":32,"fileNum":12065,"id":7481,"width":32,"height":32},{"x":448,"y":32,"fileNum":12065,"id":7482,"width":32,"height":32},{"x":480,"y":32,"fileNum":12065,"id":7483,"width":32,"height":32},{"x":384,"y":64,"fileNum":12065,"id":7484,"width":32,"height":32},{"x":416,"y":64,"fileNum":12065,"id":7485,"width":32,"height":32},{"x":448,"y":64,"fileNum":12065,"id":7486,"width":32,"height":32},{"x":480,"y":64,"fileNum":12065,"id":7487,"width":32,"height":32},{"x":384,"y":96,"fileNum":12065,"id":7488,"width":32,"height":32},{"x":416,"y":96,"fileNum":12065,"id":7489,"width":32,"height":32},{"x":448,"y":96,"fileNum":12065,"id":7490,"width":32,"height":32},{"x":480,"y":96,"fileNum":12065,"id":7491,"width":32,"height":32},{"x":0,"y":0,"fileNum":12066,"id":7492,"width":32,"height":32},{"x":32,"y":0,"fileNum":12066,"id":7493,"width":32,"height":32},{"x":64,"y":0,"fileNum":12066,"id":7494,"width":32,"height":32},{"x":96,"y":0,"fileNum":12066,"id":7495,"width":32,"height":32},{"x":0,"y":32,"fileNum":12066,"id":7496,"width":32,"height":32},{"x":32,"y":32,"fileNum":12066,"id":7497,"width":32,"height":32},{"x":64,"y":32,"fileNum":12066,"id":7498,"width":32,"height":32},{"x":96,"y":32,"fileNum":12066,"id":7499,"width":32,"height":32},{"x":0,"y":64,"fileNum":12066,"id":7500,"width":32,"height":32},{"x":32,"y":64,"fileNum":12066,"id":7501,"width":32,"height":32},{"x":64,"y":64,"fileNum":12066,"id":7502,"width":32,"height":32},{"x":96,"y":64,"fileNum":12066,"id":7503,"width":32,"height":32},{"x":0,"y":96,"fileNum":12066,"id":7504,"width":32,"height":32},{"x":32,"y":96,"fileNum":12066,"id":7505,"width":32,"height":32},{"x":64,"y":96,"fileNum":12066,"id":7506,"width":32,"height":32},{"x":96,"y":96,"fileNum":12066,"id":7507,"width":32,"height":32},{"x":0,"y":0,"fileNum":12067,"id":7508,"width":32,"height":32},{"x":32,"y":0,"fileNum":12067,"id":7509,"width":32,"height":32},{"x":64,"y":0,"fileNum":12067,"id":7510,"width":32,"height":32},{"x":96,"y":0,"fileNum":12067,"id":7511,"width":32,"height":32},{"x":0,"y":32,"fileNum":12067,"id":7512,"width":32,"height":32},{"x":32,"y":32,"fileNum":12067,"id":7513,"width":32,"height":32},{"x":64,"y":32,"fileNum":12067,"id":7514,"width":32,"height":32},{"x":96,"y":32,"fileNum":12067,"id":7515,"width":32,"height":32},{"x":0,"y":64,"fileNum":12067,"id":7516,"width":32,"height":32},{"x":32,"y":64,"fileNum":12067,"id":7517,"width":32,"height":32},{"x":64,"y":64,"fileNum":12067,"id":7518,"width":32,"height":32},{"x":96,"y":64,"fileNum":12067,"id":7519,"width":32,"height":32},{"x":0,"y":96,"fileNum":12067,"id":7520,"width":32,"height":32},{"x":32,"y":96,"fileNum":12067,"id":7521,"width":32,"height":32},{"x":64,"y":96,"fileNum":12067,"id":7522,"width":32,"height":32},{"x":96,"y":96,"fileNum":12067,"id":7523,"width":32,"height":32},{"x":128,"y":0,"fileNum":12067,"id":7524,"width":32,"height":32},{"x":160,"y":0,"fileNum":12067,"id":7525,"width":32,"height":32},{"x":192,"y":0,"fileNum":12067,"id":7526,"width":32,"height":32},{"x":224,"y":0,"fileNum":12067,"id":7527,"width":32,"height":32},{"x":128,"y":32,"fileNum":12067,"id":7528,"width":32,"height":32},{"x":160,"y":32,"fileNum":12067,"id":7529,"width":32,"height":32},{"x":192,"y":32,"fileNum":12067,"id":7530,"width":32,"height":32},{"x":224,"y":32,"fileNum":12067,"id":7531,"width":32,"height":32},{"x":128,"y":64,"fileNum":12067,"id":7532,"width":32,"height":32},{"x":160,"y":64,"fileNum":12067,"id":7533,"width":32,"height":32},{"x":192,"y":64,"fileNum":12067,"id":7534,"width":32,"height":32},{"x":224,"y":64,"fileNum":12067,"id":7535,"width":32,"height":32},{"x":128,"y":96,"fileNum":12067,"id":7536,"width":32,"height":32},{"x":160,"y":96,"fileNum":12067,"id":7537,"width":32,"height":32},{"x":192,"y":96,"fileNum":12067,"id":7538,"width":32,"height":32},{"x":224,"y":96,"fileNum":12067,"id":7539,"width":32,"height":32},{"x":256,"y":0,"fileNum":12067,"id":7540,"width":32,"height":32},{"x":288,"y":0,"fileNum":12067,"id":7541,"width":32,"height":32},{"x":320,"y":0,"fileNum":12067,"id":7542,"width":32,"height":32},{"x":352,"y":0,"fileNum":12067,"id":7543,"width":32,"height":32},{"x":256,"y":32,"fileNum":12067,"id":7544,"width":32,"height":32},{"x":288,"y":32,"fileNum":12067,"id":7545,"width":32,"height":32},{"x":320,"y":32,"fileNum":12067,"id":7546,"width":32,"height":32},{"x":352,"y":32,"fileNum":12067,"id":7547,"width":32,"height":32},{"x":256,"y":64,"fileNum":12067,"id":7548,"width":32,"height":32},{"x":288,"y":64,"fileNum":12067,"id":7549,"width":32,"height":32},{"x":320,"y":64,"fileNum":12067,"id":7550,"width":32,"height":32},{"x":352,"y":64,"fileNum":12067,"id":7551,"width":32,"height":32},{"x":256,"y":96,"fileNum":12067,"id":7552,"width":32,"height":32},{"x":288,"y":96,"fileNum":12067,"id":7553,"width":32,"height":32},{"x":320,"y":96,"fileNum":12067,"id":7554,"width":32,"height":32},{"x":352,"y":96,"fileNum":12067,"id":7555,"width":32,"height":32},{"x":384,"y":0,"fileNum":12067,"id":7556,"width":32,"height":32},{"x":416,"y":0,"fileNum":12067,"id":7557,"width":32,"height":32},{"x":448,"y":0,"fileNum":12067,"id":7558,"width":32,"height":32},{"x":480,"y":0,"fileNum":12067,"id":7559,"width":32,"height":32},{"x":384,"y":32,"fileNum":12067,"id":7560,"width":32,"height":32},{"x":416,"y":32,"fileNum":12067,"id":7561,"width":32,"height":32},{"x":448,"y":32,"fileNum":12067,"id":7562,"width":32,"height":32},{"x":480,"y":32,"fileNum":12067,"id":7563,"width":32,"height":32},{"x":384,"y":64,"fileNum":12067,"id":7564,"width":32,"height":32},{"x":416,"y":64,"fileNum":12067,"id":7565,"width":32,"height":32},{"x":448,"y":64,"fileNum":12067,"id":7566,"width":32,"height":32},{"x":480,"y":64,"fileNum":12067,"id":7567,"width":32,"height":32},{"x":384,"y":96,"fileNum":12067,"id":7568,"width":32,"height":32},{"x":416,"y":96,"fileNum":12067,"id":7569,"width":32,"height":32},{"x":448,"y":96,"fileNum":12067,"id":7570,"width":32,"height":32},{"x":480,"y":96,"fileNum":12067,"id":7571,"width":32,"height":32},{"x":0,"y":0,"fileNum":12068,"id":7572,"width":32,"height":32},{"x":32,"y":0,"fileNum":12068,"id":7573,"width":32,"height":32},{"x":64,"y":0,"fileNum":12068,"id":7574,"width":32,"height":32},{"x":96,"y":0,"fileNum":12068,"id":7575,"width":32,"height":32},{"x":0,"y":32,"fileNum":12068,"id":7576,"width":32,"height":32},{"x":32,"y":32,"fileNum":12068,"id":7577,"width":32,"height":32},{"x":64,"y":32,"fileNum":12068,"id":7578,"width":32,"height":32},{"x":96,"y":32,"fileNum":12068,"id":7579,"width":32,"height":32},{"x":0,"y":64,"fileNum":12068,"id":7580,"width":32,"height":32},{"x":32,"y":64,"fileNum":12068,"id":7581,"width":32,"height":32},{"x":64,"y":64,"fileNum":12068,"id":7582,"width":32,"height":32},{"x":96,"y":64,"fileNum":12068,"id":7583,"width":32,"height":32},{"x":0,"y":96,"fileNum":12068,"id":7584,"width":32,"height":32},{"x":32,"y":96,"fileNum":12068,"id":7585,"width":32,"height":32},{"x":64,"y":96,"fileNum":12068,"id":7586,"width":32,"height":32},{"x":96,"y":96,"fileNum":12068,"id":7587,"width":32,"height":32},{"x":128,"y":0,"fileNum":12068,"id":7588,"width":32,"height":32},{"x":160,"y":0,"fileNum":12068,"id":7589,"width":32,"height":32},{"x":192,"y":0,"fileNum":12068,"id":7590,"width":32,"height":32},{"x":224,"y":0,"fileNum":12068,"id":7591,"width":32,"height":32},{"x":128,"y":32,"fileNum":12068,"id":7592,"width":32,"height":32},{"x":160,"y":32,"fileNum":12068,"id":7593,"width":32,"height":32},{"x":192,"y":32,"fileNum":12068,"id":7594,"width":32,"height":32},{"x":224,"y":32,"fileNum":12068,"id":7595,"width":32,"height":32},{"x":128,"y":64,"fileNum":12068,"id":7596,"width":32,"height":32},{"x":160,"y":64,"fileNum":12068,"id":7597,"width":32,"height":32},{"x":192,"y":64,"fileNum":12068,"id":7598,"width":32,"height":32},{"x":224,"y":64,"fileNum":12068,"id":7599,"width":32,"height":32},{"x":128,"y":96,"fileNum":12068,"id":7600,"width":32,"height":32},{"x":160,"y":96,"fileNum":12068,"id":7601,"width":32,"height":32},{"x":192,"y":96,"fileNum":12068,"id":7602,"width":32,"height":32},{"x":224,"y":96,"fileNum":12068,"id":7603,"width":32,"height":32},{"x":256,"y":0,"fileNum":12068,"id":7604,"width":32,"height":32},{"x":288,"y":0,"fileNum":12068,"id":7605,"width":32,"height":32},{"x":320,"y":0,"fileNum":12068,"id":7606,"width":32,"height":32},{"x":352,"y":0,"fileNum":12068,"id":7607,"width":32,"height":32},{"x":256,"y":32,"fileNum":12068,"id":7608,"width":32,"height":32},{"x":288,"y":32,"fileNum":12068,"id":7609,"width":32,"height":32},{"x":320,"y":32,"fileNum":12068,"id":7610,"width":32,"height":32},{"x":352,"y":32,"fileNum":12068,"id":7611,"width":32,"height":32},{"x":256,"y":64,"fileNum":12068,"id":7612,"width":32,"height":32},{"x":288,"y":64,"fileNum":12068,"id":7613,"width":32,"height":32},{"x":320,"y":64,"fileNum":12068,"id":7614,"width":32,"height":32},{"x":352,"y":64,"fileNum":12068,"id":7615,"width":32,"height":32},{"x":256,"y":96,"fileNum":12068,"id":7616,"width":32,"height":32},{"x":288,"y":96,"fileNum":12068,"id":7617,"width":32,"height":32},{"x":320,"y":96,"fileNum":12068,"id":7618,"width":32,"height":32},{"x":352,"y":96,"fileNum":12068,"id":7619,"width":32,"height":32},{"x":384,"y":0,"fileNum":12068,"id":7620,"width":32,"height":32},{"x":416,"y":0,"fileNum":12068,"id":7621,"width":32,"height":32},{"x":448,"y":0,"fileNum":12068,"id":7622,"width":32,"height":32},{"x":480,"y":0,"fileNum":12068,"id":7623,"width":32,"height":32},{"x":384,"y":32,"fileNum":12068,"id":7624,"width":32,"height":32},{"x":416,"y":32,"fileNum":12068,"id":7625,"width":32,"height":32},{"x":448,"y":32,"fileNum":12068,"id":7626,"width":32,"height":32},{"x":480,"y":32,"fileNum":12068,"id":7627,"width":32,"height":32},{"x":384,"y":64,"fileNum":12068,"id":7628,"width":32,"height":32},{"x":416,"y":64,"fileNum":12068,"id":7629,"width":32,"height":32},{"x":448,"y":64,"fileNum":12068,"id":7630,"width":32,"height":32},{"x":480,"y":64,"fileNum":12068,"id":7631,"width":32,"height":32},{"x":384,"y":96,"fileNum":12068,"id":7632,"width":32,"height":32},{"x":416,"y":96,"fileNum":12068,"id":7633,"width":32,"height":32},{"x":448,"y":96,"fileNum":12068,"id":7634,"width":32,"height":32},{"x":480,"y":96,"fileNum":12068,"id":7635,"width":32,"height":32},{"x":0,"y":0,"fileNum":12069,"id":7636,"width":32,"height":32},{"x":32,"y":0,"fileNum":12069,"id":7637,"width":32,"height":32},{"x":64,"y":0,"fileNum":12069,"id":7638,"width":32,"height":32},{"x":96,"y":0,"fileNum":12069,"id":7639,"width":32,"height":32},{"x":0,"y":32,"fileNum":12069,"id":7640,"width":32,"height":32},{"x":32,"y":32,"fileNum":12069,"id":7641,"width":32,"height":32},{"x":64,"y":32,"fileNum":12069,"id":7642,"width":32,"height":32},{"x":96,"y":32,"fileNum":12069,"id":7643,"width":32,"height":32},{"x":0,"y":64,"fileNum":12069,"id":7644,"width":32,"height":32},{"x":32,"y":64,"fileNum":12069,"id":7645,"width":32,"height":32},{"x":64,"y":64,"fileNum":12069,"id":7646,"width":32,"height":32},{"x":96,"y":64,"fileNum":12069,"id":7647,"width":32,"height":32},{"x":0,"y":96,"fileNum":12069,"id":7648,"width":32,"height":32},{"x":32,"y":96,"fileNum":12069,"id":7649,"width":32,"height":32},{"x":64,"y":96,"fileNum":12069,"id":7650,"width":32,"height":32},{"x":96,"y":96,"fileNum":12069,"id":7651,"width":32,"height":32},{"x":128,"y":0,"fileNum":12069,"id":7652,"width":32,"height":32},{"x":160,"y":0,"fileNum":12069,"id":7653,"width":32,"height":32},{"x":192,"y":0,"fileNum":12069,"id":7654,"width":32,"height":32},{"x":224,"y":0,"fileNum":12069,"id":7655,"width":32,"height":32},{"x":128,"y":32,"fileNum":12069,"id":7656,"width":32,"height":32},{"x":160,"y":32,"fileNum":12069,"id":7657,"width":32,"height":32},{"x":192,"y":32,"fileNum":12069,"id":7658,"width":32,"height":32},{"x":224,"y":32,"fileNum":12069,"id":7659,"width":32,"height":32},{"x":128,"y":64,"fileNum":12069,"id":7660,"width":32,"height":32},{"x":160,"y":64,"fileNum":12069,"id":7661,"width":32,"height":32},{"x":192,"y":64,"fileNum":12069,"id":7662,"width":32,"height":32},{"x":224,"y":64,"fileNum":12069,"id":7663,"width":32,"height":32},{"x":128,"y":96,"fileNum":12069,"id":7664,"width":32,"height":32},{"x":160,"y":96,"fileNum":12069,"id":7665,"width":32,"height":32},{"x":192,"y":96,"fileNum":12069,"id":7666,"width":32,"height":32},{"x":224,"y":96,"fileNum":12069,"id":7667,"width":32,"height":32},{"x":256,"y":0,"fileNum":12069,"id":7668,"width":32,"height":32},{"x":288,"y":0,"fileNum":12069,"id":7669,"width":32,"height":32},{"x":320,"y":0,"fileNum":12069,"id":7670,"width":32,"height":32},{"x":352,"y":0,"fileNum":12069,"id":7671,"width":32,"height":32},{"x":256,"y":32,"fileNum":12069,"id":7672,"width":32,"height":32},{"x":288,"y":32,"fileNum":12069,"id":7673,"width":32,"height":32},{"x":320,"y":32,"fileNum":12069,"id":7674,"width":32,"height":32},{"x":352,"y":32,"fileNum":12069,"id":7675,"width":32,"height":32},{"x":256,"y":64,"fileNum":12069,"id":7676,"width":32,"height":32},{"x":288,"y":64,"fileNum":12069,"id":7677,"width":32,"height":32},{"x":320,"y":64,"fileNum":12069,"id":7678,"width":32,"height":32},{"x":352,"y":64,"fileNum":12069,"id":7679,"width":32,"height":32},{"x":256,"y":96,"fileNum":12069,"id":7680,"width":32,"height":32},{"x":288,"y":96,"fileNum":12069,"id":7681,"width":32,"height":32},{"x":320,"y":96,"fileNum":12069,"id":7682,"width":32,"height":32},{"x":352,"y":96,"fileNum":12069,"id":7683,"width":32,"height":32},{"x":0,"y":0,"fileNum":2169,"id":7684,"width":17,"height":50},{"x":17,"y":0,"fileNum":2169,"id":7685,"width":17,"height":50},{"x":34,"y":0,"fileNum":2169,"id":7686,"width":17,"height":50},{"x":51,"y":0,"fileNum":2169,"id":7687,"width":17,"height":50},{"x":384,"y":0,"fileNum":12069,"id":7688,"width":32,"height":32},{"x":416,"y":0,"fileNum":12069,"id":7689,"width":32,"height":32},{"x":448,"y":0,"fileNum":12069,"id":7690,"width":32,"height":32},{"x":480,"y":0,"fileNum":12069,"id":7691,"width":32,"height":32},{"x":384,"y":32,"fileNum":12069,"id":7692,"width":32,"height":32},{"x":416,"y":32,"fileNum":12069,"id":7693,"width":32,"height":32},{"x":448,"y":32,"fileNum":12069,"id":7694,"width":32,"height":32},{"x":480,"y":32,"fileNum":12069,"id":7695,"width":32,"height":32},{"x":384,"y":64,"fileNum":12069,"id":7696,"width":32,"height":32},{"x":416,"y":64,"fileNum":12069,"id":7697,"width":32,"height":32},{"x":448,"y":64,"fileNum":12069,"id":7698,"width":32,"height":32},{"x":480,"y":64,"fileNum":12069,"id":7699,"width":32,"height":32},{"x":384,"y":96,"fileNum":12069,"id":7700,"width":32,"height":32},{"x":416,"y":96,"fileNum":12069,"id":7701,"width":32,"height":32},{"x":448,"y":96,"fileNum":12069,"id":7702,"width":32,"height":32},{"x":480,"y":96,"fileNum":12069,"id":7703,"width":32,"height":32},{"x":0,"y":0,"fileNum":12070,"id":7704,"width":32,"height":32},{"x":32,"y":0,"fileNum":12070,"id":7705,"width":32,"height":32},{"x":64,"y":0,"fileNum":12070,"id":7706,"width":32,"height":32},{"x":96,"y":0,"fileNum":12070,"id":7707,"width":32,"height":32},{"x":0,"y":32,"fileNum":12070,"id":7708,"width":32,"height":32},{"x":32,"y":32,"fileNum":12070,"id":7709,"width":32,"height":32},{"x":64,"y":32,"fileNum":12070,"id":7710,"width":32,"height":32},{"x":96,"y":32,"fileNum":12070,"id":7711,"width":32,"height":32},{"x":0,"y":64,"fileNum":12070,"id":7712,"width":32,"height":32},{"x":32,"y":64,"fileNum":12070,"id":7713,"width":32,"height":32},{"x":64,"y":64,"fileNum":12070,"id":7714,"width":32,"height":32},{"x":96,"y":64,"fileNum":12070,"id":7715,"width":32,"height":32},{"x":0,"y":96,"fileNum":12070,"id":7716,"width":32,"height":32},{"x":32,"y":96,"fileNum":12070,"id":7717,"width":32,"height":32},{"x":64,"y":96,"fileNum":12070,"id":7718,"width":32,"height":32},{"x":96,"y":96,"fileNum":12070,"id":7719,"width":32,"height":32},{"x":0,"y":0,"fileNum":12071,"id":7720,"width":32,"height":32},{"x":32,"y":0,"fileNum":12071,"id":7721,"width":32,"height":32},{"x":64,"y":0,"fileNum":12071,"id":7722,"width":32,"height":32},{"x":96,"y":0,"fileNum":12071,"id":7723,"width":32,"height":32},{"x":0,"y":32,"fileNum":12071,"id":7724,"width":32,"height":32},{"x":32,"y":32,"fileNum":12071,"id":7725,"width":32,"height":32},{"x":64,"y":32,"fileNum":12071,"id":7726,"width":32,"height":32},{"x":96,"y":32,"fileNum":12071,"id":7727,"width":32,"height":32},{"x":0,"y":64,"fileNum":12071,"id":7728,"width":32,"height":32},{"x":32,"y":64,"fileNum":12071,"id":7729,"width":32,"height":32},{"x":64,"y":64,"fileNum":12071,"id":7730,"width":32,"height":32},{"x":96,"y":64,"fileNum":12071,"id":7731,"width":32,"height":32},{"x":0,"y":96,"fileNum":12071,"id":7732,"width":32,"height":32},{"x":32,"y":96,"fileNum":12071,"id":7733,"width":32,"height":32},{"x":64,"y":96,"fileNum":12071,"id":7734,"width":32,"height":32},{"x":96,"y":96,"fileNum":12071,"id":7735,"width":32,"height":32},{"x":0,"y":0,"fileNum":12072,"id":7736,"width":32,"height":32},{"x":32,"y":0,"fileNum":12072,"id":7737,"width":32,"height":32},{"x":64,"y":0,"fileNum":12072,"id":7738,"width":32,"height":32},{"x":96,"y":0,"fileNum":12072,"id":7739,"width":32,"height":32},{"x":0,"y":32,"fileNum":12072,"id":7740,"width":32,"height":32},{"x":32,"y":32,"fileNum":12072,"id":7741,"width":32,"height":32},{"x":64,"y":32,"fileNum":12072,"id":7742,"width":32,"height":32},{"x":96,"y":32,"fileNum":12072,"id":7743,"width":32,"height":32},{"x":0,"y":64,"fileNum":12072,"id":7744,"width":32,"height":32},{"x":32,"y":64,"fileNum":12072,"id":7745,"width":32,"height":32},{"x":64,"y":64,"fileNum":12072,"id":7746,"width":32,"height":32},{"x":96,"y":64,"fileNum":12072,"id":7747,"width":32,"height":32},{"x":0,"y":96,"fileNum":12072,"id":7748,"width":32,"height":32},{"x":32,"y":96,"fileNum":12072,"id":7749,"width":32,"height":32},{"x":64,"y":96,"fileNum":12072,"id":7750,"width":32,"height":32},{"x":96,"y":96,"fileNum":12072,"id":7751,"width":32,"height":32},{"x":128,"y":0,"fileNum":12072,"id":7752,"width":32,"height":32},{"x":160,"y":0,"fileNum":12072,"id":7753,"width":32,"height":32},{"x":192,"y":0,"fileNum":12072,"id":7754,"width":32,"height":32},{"x":224,"y":0,"fileNum":12072,"id":7755,"width":32,"height":32},{"x":128,"y":32,"fileNum":12072,"id":7756,"width":32,"height":32},{"x":160,"y":32,"fileNum":12072,"id":7757,"width":32,"height":32},{"x":192,"y":32,"fileNum":12072,"id":7758,"width":32,"height":32},{"x":224,"y":32,"fileNum":12072,"id":7759,"width":32,"height":32},{"x":128,"y":64,"fileNum":12072,"id":7760,"width":32,"height":32},{"x":160,"y":64,"fileNum":12072,"id":7761,"width":32,"height":32},{"x":192,"y":64,"fileNum":12072,"id":7762,"width":32,"height":32},{"x":224,"y":64,"fileNum":12072,"id":7763,"width":32,"height":32},{"x":128,"y":96,"fileNum":12072,"id":7764,"width":32,"height":32},{"x":160,"y":96,"fileNum":12072,"id":7765,"width":32,"height":32},{"x":192,"y":96,"fileNum":12072,"id":7766,"width":32,"height":32},{"x":224,"y":96,"fileNum":12072,"id":7767,"width":32,"height":32},{"x":256,"y":0,"fileNum":12072,"id":7768,"width":32,"height":32},{"x":288,"y":0,"fileNum":12072,"id":7769,"width":32,"height":32},{"x":320,"y":0,"fileNum":12072,"id":7770,"width":32,"height":32},{"x":352,"y":0,"fileNum":12072,"id":7771,"width":32,"height":32},{"x":256,"y":32,"fileNum":12072,"id":7772,"width":32,"height":32},{"x":288,"y":32,"fileNum":12072,"id":7773,"width":32,"height":32},{"x":320,"y":32,"fileNum":12072,"id":7774,"width":32,"height":32},{"x":352,"y":32,"fileNum":12072,"id":7775,"width":32,"height":32},{"x":256,"y":64,"fileNum":12072,"id":7776,"width":32,"height":32},{"x":288,"y":64,"fileNum":12072,"id":7777,"width":32,"height":32},{"x":320,"y":64,"fileNum":12072,"id":7778,"width":32,"height":32},{"x":352,"y":64,"fileNum":12072,"id":7779,"width":32,"height":32},{"x":256,"y":96,"fileNum":12072,"id":7780,"width":32,"height":32},{"x":288,"y":96,"fileNum":12072,"id":7781,"width":32,"height":32},{"x":320,"y":96,"fileNum":12072,"id":7782,"width":32,"height":32},{"x":352,"y":96,"fileNum":12072,"id":7783,"width":32,"height":32},{"x":384,"y":0,"fileNum":12072,"id":7784,"width":32,"height":32},{"x":416,"y":0,"fileNum":12072,"id":7785,"width":32,"height":32},{"x":448,"y":0,"fileNum":12072,"id":7786,"width":32,"height":32},{"x":480,"y":0,"fileNum":12072,"id":7787,"width":32,"height":32},{"x":384,"y":32,"fileNum":12072,"id":7788,"width":32,"height":32},{"x":416,"y":32,"fileNum":12072,"id":7789,"width":32,"height":32},{"x":448,"y":32,"fileNum":12072,"id":7790,"width":32,"height":32},{"x":480,"y":32,"fileNum":12072,"id":7791,"width":32,"height":32},{"x":384,"y":64,"fileNum":12072,"id":7792,"width":32,"height":32},{"x":416,"y":64,"fileNum":12072,"id":7793,"width":32,"height":32},{"x":448,"y":64,"fileNum":12072,"id":7794,"width":32,"height":32},{"x":480,"y":64,"fileNum":12072,"id":7795,"width":32,"height":32},{"x":384,"y":96,"fileNum":12072,"id":7796,"width":32,"height":32},{"x":416,"y":96,"fileNum":12072,"id":7797,"width":32,"height":32},{"x":448,"y":96,"fileNum":12072,"id":7798,"width":32,"height":32},{"x":480,"y":96,"fileNum":12072,"id":7799,"width":32,"height":32},{"x":0,"y":0,"fileNum":12073,"id":7800,"width":32,"height":32},{"x":32,"y":0,"fileNum":12073,"id":7801,"width":32,"height":32},{"x":64,"y":0,"fileNum":12073,"id":7802,"width":32,"height":32},{"x":96,"y":0,"fileNum":12073,"id":7803,"width":32,"height":32},{"x":0,"y":32,"fileNum":12073,"id":7804,"width":32,"height":32},{"x":32,"y":32,"fileNum":12073,"id":7805,"width":32,"height":32},{"x":64,"y":32,"fileNum":12073,"id":7806,"width":32,"height":32},{"x":96,"y":32,"fileNum":12073,"id":7807,"width":32,"height":32},{"x":0,"y":64,"fileNum":12073,"id":7808,"width":32,"height":32},{"x":32,"y":64,"fileNum":12073,"id":7809,"width":32,"height":32},{"x":64,"y":64,"fileNum":12073,"id":7810,"width":32,"height":32},{"x":96,"y":64,"fileNum":12073,"id":7811,"width":32,"height":32},{"x":0,"y":96,"fileNum":12073,"id":7812,"width":32,"height":32},{"x":32,"y":96,"fileNum":12073,"id":7813,"width":32,"height":32},{"x":64,"y":96,"fileNum":12073,"id":7814,"width":32,"height":32},{"x":96,"y":96,"fileNum":12073,"id":7815,"width":32,"height":32},{"x":128,"y":0,"fileNum":12073,"id":7816,"width":32,"height":32},{"x":160,"y":0,"fileNum":12073,"id":7817,"width":32,"height":32},{"x":192,"y":0,"fileNum":12073,"id":7818,"width":32,"height":32},{"x":224,"y":0,"fileNum":12073,"id":7819,"width":32,"height":32},{"x":128,"y":32,"fileNum":12073,"id":7820,"width":32,"height":32},{"x":160,"y":32,"fileNum":12073,"id":7821,"width":32,"height":32},{"x":192,"y":32,"fileNum":12073,"id":7822,"width":32,"height":32},{"x":224,"y":32,"fileNum":12073,"id":7823,"width":32,"height":32},{"x":128,"y":64,"fileNum":12073,"id":7824,"width":32,"height":32},{"x":160,"y":64,"fileNum":12073,"id":7825,"width":32,"height":32},{"x":192,"y":64,"fileNum":12073,"id":7826,"width":32,"height":32},{"x":224,"y":64,"fileNum":12073,"id":7827,"width":32,"height":32},{"x":128,"y":96,"fileNum":12073,"id":7828,"width":32,"height":32},{"x":160,"y":96,"fileNum":12073,"id":7829,"width":32,"height":32},{"x":192,"y":96,"fileNum":12073,"id":7830,"width":32,"height":32},{"x":224,"y":96,"fileNum":12073,"id":7831,"width":32,"height":32},{"x":256,"y":0,"fileNum":12073,"id":7832,"width":32,"height":32},{"x":288,"y":0,"fileNum":12073,"id":7833,"width":32,"height":32},{"x":320,"y":0,"fileNum":12073,"id":7834,"width":32,"height":32},{"x":352,"y":0,"fileNum":12073,"id":7835,"width":32,"height":32},{"x":256,"y":32,"fileNum":12073,"id":7836,"width":32,"height":32},{"x":288,"y":32,"fileNum":12073,"id":7837,"width":32,"height":32},{"x":320,"y":32,"fileNum":12073,"id":7838,"width":32,"height":32},{"x":352,"y":32,"fileNum":12073,"id":7839,"width":32,"height":32},{"x":256,"y":64,"fileNum":12073,"id":7840,"width":32,"height":32},{"x":288,"y":64,"fileNum":12073,"id":7841,"width":32,"height":32},{"x":320,"y":64,"fileNum":12073,"id":7842,"width":32,"height":32},{"x":352,"y":64,"fileNum":12073,"id":7843,"width":32,"height":32},{"x":256,"y":96,"fileNum":12073,"id":7844,"width":32,"height":32},{"x":288,"y":96,"fileNum":12073,"id":7845,"width":32,"height":32},{"x":320,"y":96,"fileNum":12073,"id":7846,"width":32,"height":32},{"x":352,"y":96,"fileNum":12073,"id":7847,"width":32,"height":32},{"x":384,"y":0,"fileNum":12073,"id":7848,"width":32,"height":32},{"x":416,"y":0,"fileNum":12073,"id":7849,"width":32,"height":32},{"x":448,"y":0,"fileNum":12073,"id":7850,"width":32,"height":32},{"x":480,"y":0,"fileNum":12073,"id":7851,"width":32,"height":32},{"x":384,"y":32,"fileNum":12073,"id":7852,"width":32,"height":32},{"x":416,"y":32,"fileNum":12073,"id":7853,"width":32,"height":32},{"x":448,"y":32,"fileNum":12073,"id":7854,"width":32,"height":32},{"x":480,"y":32,"fileNum":12073,"id":7855,"width":32,"height":32},{"x":384,"y":64,"fileNum":12073,"id":7856,"width":32,"height":32},{"x":416,"y":64,"fileNum":12073,"id":7857,"width":32,"height":32},{"x":448,"y":64,"fileNum":12073,"id":7858,"width":32,"height":32},{"x":480,"y":64,"fileNum":12073,"id":7859,"width":32,"height":32},{"x":384,"y":96,"fileNum":12073,"id":7860,"width":32,"height":32},{"x":416,"y":96,"fileNum":12073,"id":7861,"width":32,"height":32},{"x":448,"y":96,"fileNum":12073,"id":7862,"width":32,"height":32},{"x":480,"y":96,"fileNum":12073,"id":7863,"width":32,"height":32},{"x":0,"y":0,"fileNum":12074,"id":7864,"width":32,"height":32},{"x":32,"y":0,"fileNum":12074,"id":7865,"width":32,"height":32},{"x":64,"y":0,"fileNum":12074,"id":7866,"width":32,"height":32},{"x":96,"y":0,"fileNum":12074,"id":7867,"width":32,"height":32},{"x":0,"y":32,"fileNum":12074,"id":7868,"width":32,"height":32},{"x":32,"y":32,"fileNum":12074,"id":7869,"width":32,"height":32},{"x":64,"y":32,"fileNum":12074,"id":7870,"width":32,"height":32},{"x":96,"y":32,"fileNum":12074,"id":7871,"width":32,"height":32},{"x":0,"y":64,"fileNum":12074,"id":7872,"width":32,"height":32},{"x":32,"y":64,"fileNum":12074,"id":7873,"width":32,"height":32},{"x":64,"y":64,"fileNum":12074,"id":7874,"width":32,"height":32},{"x":96,"y":64,"fileNum":12074,"id":7875,"width":32,"height":32},{"x":0,"y":96,"fileNum":12074,"id":7876,"width":32,"height":32},{"x":32,"y":96,"fileNum":12074,"id":7877,"width":32,"height":32},{"x":64,"y":96,"fileNum":12074,"id":7878,"width":32,"height":32},{"x":96,"y":96,"fileNum":12074,"id":7879,"width":32,"height":32},{"x":128,"y":0,"fileNum":12074,"id":7880,"width":32,"height":32},{"x":160,"y":0,"fileNum":12074,"id":7881,"width":32,"height":32},{"x":192,"y":0,"fileNum":12074,"id":7882,"width":32,"height":32},{"x":224,"y":0,"fileNum":12074,"id":7883,"width":32,"height":32},{"x":128,"y":32,"fileNum":12074,"id":7884,"width":32,"height":32},{"x":160,"y":32,"fileNum":12074,"id":7885,"width":32,"height":32},{"x":192,"y":32,"fileNum":12074,"id":7886,"width":32,"height":32},{"x":224,"y":32,"fileNum":12074,"id":7887,"width":32,"height":32},{"x":128,"y":64,"fileNum":12074,"id":7888,"width":32,"height":32},{"x":160,"y":64,"fileNum":12074,"id":7889,"width":32,"height":32},{"x":192,"y":64,"fileNum":12074,"id":7890,"width":32,"height":32},{"x":224,"y":64,"fileNum":12074,"id":7891,"width":32,"height":32},{"x":128,"y":96,"fileNum":12074,"id":7892,"width":32,"height":32},{"x":160,"y":96,"fileNum":12074,"id":7893,"width":32,"height":32},{"x":192,"y":96,"fileNum":12074,"id":7894,"width":32,"height":32},{"x":224,"y":96,"fileNum":12074,"id":7895,"width":32,"height":32},{"x":256,"y":0,"fileNum":12074,"id":7896,"width":32,"height":32},{"x":288,"y":0,"fileNum":12074,"id":7897,"width":32,"height":32},{"x":320,"y":0,"fileNum":12074,"id":7898,"width":32,"height":32},{"x":352,"y":0,"fileNum":12074,"id":7899,"width":32,"height":32},{"x":256,"y":32,"fileNum":12074,"id":7900,"width":32,"height":32},{"x":288,"y":32,"fileNum":12074,"id":7901,"width":32,"height":32},{"x":320,"y":32,"fileNum":12074,"id":7902,"width":32,"height":32},{"x":352,"y":32,"fileNum":12074,"id":7903,"width":32,"height":32},{"x":256,"y":64,"fileNum":12074,"id":7904,"width":32,"height":32},{"x":288,"y":64,"fileNum":12074,"id":7905,"width":32,"height":32},{"x":320,"y":64,"fileNum":12074,"id":7906,"width":32,"height":32},{"x":352,"y":64,"fileNum":12074,"id":7907,"width":32,"height":32},{"x":256,"y":96,"fileNum":12074,"id":7908,"width":32,"height":32},{"x":288,"y":96,"fileNum":12074,"id":7909,"width":32,"height":32},{"x":320,"y":96,"fileNum":12074,"id":7910,"width":32,"height":32},{"x":352,"y":96,"fileNum":12074,"id":7911,"width":32,"height":32},{"x":384,"y":0,"fileNum":12074,"id":7912,"width":32,"height":32},{"x":416,"y":0,"fileNum":12074,"id":7913,"width":32,"height":32},{"x":448,"y":0,"fileNum":12074,"id":7914,"width":32,"height":32},{"x":480,"y":0,"fileNum":12074,"id":7915,"width":32,"height":32},{"x":384,"y":32,"fileNum":12074,"id":7916,"width":32,"height":32},{"x":416,"y":32,"fileNum":12074,"id":7917,"width":32,"height":32},{"x":448,"y":32,"fileNum":12074,"id":7918,"width":32,"height":32},{"x":480,"y":32,"fileNum":12074,"id":7919,"width":32,"height":32},{"x":384,"y":64,"fileNum":12074,"id":7920,"width":32,"height":32},{"x":416,"y":64,"fileNum":12074,"id":7921,"width":32,"height":32},{"x":448,"y":64,"fileNum":12074,"id":7922,"width":32,"height":32},{"x":480,"y":64,"fileNum":12074,"id":7923,"width":32,"height":32},{"x":384,"y":96,"fileNum":12074,"id":7924,"width":32,"height":32},{"x":416,"y":96,"fileNum":12074,"id":7925,"width":32,"height":32},{"x":448,"y":96,"fileNum":12074,"id":7926,"width":32,"height":32},{"x":480,"y":96,"fileNum":12074,"id":7927,"width":32,"height":32},{"x":0,"y":0,"fileNum":12075,"id":7928,"width":32,"height":32},{"x":32,"y":0,"fileNum":12075,"id":7929,"width":32,"height":32},{"x":64,"y":0,"fileNum":12075,"id":7930,"width":32,"height":32},{"x":96,"y":0,"fileNum":12075,"id":7931,"width":32,"height":32},{"x":0,"y":32,"fileNum":12075,"id":7932,"width":32,"height":32},{"x":32,"y":32,"fileNum":12075,"id":7933,"width":32,"height":32},{"x":64,"y":32,"fileNum":12075,"id":7934,"width":32,"height":32},{"x":96,"y":32,"fileNum":12075,"id":7935,"width":32,"height":32},{"x":0,"y":64,"fileNum":12075,"id":7936,"width":32,"height":32},{"x":32,"y":64,"fileNum":12075,"id":7937,"width":32,"height":32},{"x":64,"y":64,"fileNum":12075,"id":7938,"width":32,"height":32},{"x":96,"y":64,"fileNum":12075,"id":7939,"width":32,"height":32},{"x":0,"y":96,"fileNum":12075,"id":7940,"width":32,"height":32},{"x":32,"y":96,"fileNum":12075,"id":7941,"width":32,"height":32},{"x":64,"y":96,"fileNum":12075,"id":7942,"width":32,"height":32},{"x":96,"y":96,"fileNum":12075,"id":7943,"width":32,"height":32},{"x":128,"y":0,"fileNum":12075,"id":7944,"width":32,"height":32},{"x":160,"y":0,"fileNum":12075,"id":7945,"width":32,"height":32},{"x":192,"y":0,"fileNum":12075,"id":7946,"width":32,"height":32},{"x":224,"y":0,"fileNum":12075,"id":7947,"width":32,"height":32},{"x":128,"y":32,"fileNum":12075,"id":7948,"width":32,"height":32},{"x":160,"y":32,"fileNum":12075,"id":7949,"width":32,"height":32},{"x":192,"y":32,"fileNum":12075,"id":7950,"width":32,"height":32},{"x":224,"y":32,"fileNum":12075,"id":7951,"width":32,"height":32},{"x":128,"y":64,"fileNum":12075,"id":7952,"width":32,"height":32},{"x":160,"y":64,"fileNum":12075,"id":7953,"width":32,"height":32},{"x":192,"y":64,"fileNum":12075,"id":7954,"width":32,"height":32},{"x":224,"y":64,"fileNum":12075,"id":7955,"width":32,"height":32},{"x":128,"y":96,"fileNum":12075,"id":7956,"width":32,"height":32},{"x":160,"y":96,"fileNum":12075,"id":7957,"width":32,"height":32},{"x":192,"y":96,"fileNum":12075,"id":7958,"width":32,"height":32},{"x":224,"y":96,"fileNum":12075,"id":7959,"width":32,"height":32},{"x":0,"y":0,"fileNum":12076,"id":7960,"width":32,"height":32},{"x":32,"y":0,"fileNum":12076,"id":7961,"width":32,"height":32},{"x":64,"y":0,"fileNum":12076,"id":7962,"width":32,"height":32},{"x":96,"y":0,"fileNum":12076,"id":7963,"width":32,"height":32},{"x":0,"y":32,"fileNum":12076,"id":7964,"width":32,"height":32},{"x":32,"y":32,"fileNum":12076,"id":7965,"width":32,"height":32},{"x":64,"y":32,"fileNum":12076,"id":7966,"width":32,"height":32},{"x":96,"y":32,"fileNum":12076,"id":7967,"width":32,"height":32},{"x":0,"y":64,"fileNum":12076,"id":7968,"width":32,"height":32},{"x":32,"y":64,"fileNum":12076,"id":7969,"width":32,"height":32},{"x":64,"y":64,"fileNum":12076,"id":7970,"width":32,"height":32},{"x":96,"y":64,"fileNum":12076,"id":7971,"width":32,"height":32},{"x":0,"y":96,"fileNum":12076,"id":7972,"width":32,"height":32},{"x":32,"y":96,"fileNum":12076,"id":7973,"width":32,"height":32},{"x":64,"y":96,"fileNum":12076,"id":7974,"width":32,"height":32},{"x":96,"y":96,"fileNum":12076,"id":7975,"width":32,"height":32},{"x":128,"y":0,"fileNum":12076,"id":7976,"width":32,"height":32},{"x":160,"y":0,"fileNum":12076,"id":7977,"width":32,"height":32},{"x":192,"y":0,"fileNum":12076,"id":7978,"width":32,"height":32},{"x":224,"y":0,"fileNum":12076,"id":7979,"width":32,"height":32},{"x":128,"y":32,"fileNum":12076,"id":7980,"width":32,"height":32},{"x":160,"y":32,"fileNum":12076,"id":7981,"width":32,"height":32},{"x":192,"y":32,"fileNum":12076,"id":7982,"width":32,"height":32},{"x":224,"y":32,"fileNum":12076,"id":7983,"width":32,"height":32},{"x":128,"y":64,"fileNum":12076,"id":7984,"width":32,"height":32},{"x":160,"y":64,"fileNum":12076,"id":7985,"width":32,"height":32},{"x":192,"y":64,"fileNum":12076,"id":7986,"width":32,"height":32},{"x":224,"y":64,"fileNum":12076,"id":7987,"width":32,"height":32},{"x":128,"y":96,"fileNum":12076,"id":7988,"width":32,"height":32},{"x":160,"y":96,"fileNum":12076,"id":7989,"width":32,"height":32},{"x":192,"y":96,"fileNum":12076,"id":7990,"width":32,"height":32},{"x":224,"y":96,"fileNum":12076,"id":7991,"width":32,"height":32},{"x":256,"y":0,"fileNum":12076,"id":7992,"width":32,"height":32},{"x":288,"y":0,"fileNum":12076,"id":7993,"width":32,"height":32},{"x":320,"y":0,"fileNum":12076,"id":7994,"width":32,"height":32},{"x":352,"y":0,"fileNum":12076,"id":7995,"width":32,"height":32},{"x":256,"y":32,"fileNum":12076,"id":7996,"width":32,"height":32},{"x":288,"y":32,"fileNum":12076,"id":7997,"width":32,"height":32},{"x":320,"y":32,"fileNum":12076,"id":7998,"width":32,"height":32},{"x":352,"y":32,"fileNum":12076,"id":7999,"width":32,"height":32},{"x":256,"y":64,"fileNum":12076,"id":8000,"width":32,"height":32},{"x":288,"y":64,"fileNum":12076,"id":8001,"width":32,"height":32},{"x":320,"y":64,"fileNum":12076,"id":8002,"width":32,"height":32},{"x":352,"y":64,"fileNum":12076,"id":8003,"width":32,"height":32},{"x":256,"y":96,"fileNum":12076,"id":8004,"width":32,"height":32},{"x":288,"y":96,"fileNum":12076,"id":8005,"width":32,"height":32},{"x":320,"y":96,"fileNum":12076,"id":8006,"width":32,"height":32},{"x":352,"y":96,"fileNum":12076,"id":8007,"width":32,"height":32},{"x":384,"y":0,"fileNum":12076,"id":8008,"width":32,"height":32},{"x":416,"y":0,"fileNum":12076,"id":8009,"width":32,"height":32},{"x":448,"y":0,"fileNum":12076,"id":8010,"width":32,"height":32},{"x":480,"y":0,"fileNum":12076,"id":8011,"width":32,"height":32},{"x":384,"y":32,"fileNum":12076,"id":8012,"width":32,"height":32},{"x":416,"y":32,"fileNum":12076,"id":8013,"width":32,"height":32},{"x":448,"y":32,"fileNum":12076,"id":8014,"width":32,"height":32},{"x":480,"y":32,"fileNum":12076,"id":8015,"width":32,"height":32},{"x":384,"y":64,"fileNum":12076,"id":8016,"width":32,"height":32},{"x":416,"y":64,"fileNum":12076,"id":8017,"width":32,"height":32},{"x":448,"y":64,"fileNum":12076,"id":8018,"width":32,"height":32},{"x":480,"y":64,"fileNum":12076,"id":8019,"width":32,"height":32},{"x":384,"y":96,"fileNum":12076,"id":8020,"width":32,"height":32},{"x":416,"y":96,"fileNum":12076,"id":8021,"width":32,"height":32},{"x":448,"y":96,"fileNum":12076,"id":8022,"width":32,"height":32},{"x":480,"y":96,"fileNum":12076,"id":8023,"width":32,"height":32},{"x":0,"y":0,"fileNum":12077,"id":8024,"width":32,"height":32},{"x":32,"y":0,"fileNum":12077,"id":8025,"width":32,"height":32},{"x":64,"y":0,"fileNum":12077,"id":8026,"width":32,"height":32},{"x":96,"y":0,"fileNum":12077,"id":8027,"width":32,"height":32},{"x":0,"y":32,"fileNum":12077,"id":8028,"width":32,"height":32},{"x":32,"y":32,"fileNum":12077,"id":8029,"width":32,"height":32},{"x":64,"y":32,"fileNum":12077,"id":8030,"width":32,"height":32},{"x":96,"y":32,"fileNum":12077,"id":8031,"width":32,"height":32},{"x":0,"y":64,"fileNum":12077,"id":8032,"width":32,"height":32},{"x":32,"y":64,"fileNum":12077,"id":8033,"width":32,"height":32},{"x":64,"y":64,"fileNum":12077,"id":8034,"width":32,"height":32},{"x":96,"y":64,"fileNum":12077,"id":8035,"width":32,"height":32},{"x":0,"y":96,"fileNum":12077,"id":8036,"width":32,"height":32},{"x":32,"y":96,"fileNum":12077,"id":8037,"width":32,"height":32},{"x":64,"y":96,"fileNum":12077,"id":8038,"width":32,"height":32},{"x":96,"y":96,"fileNum":12077,"id":8039,"width":32,"height":32},{"x":128,"y":0,"fileNum":12077,"id":8040,"width":32,"height":32},{"x":160,"y":0,"fileNum":12077,"id":8041,"width":32,"height":32},{"x":192,"y":0,"fileNum":12077,"id":8042,"width":32,"height":32},{"x":224,"y":0,"fileNum":12077,"id":8043,"width":32,"height":32},{"x":128,"y":32,"fileNum":12077,"id":8044,"width":32,"height":32},{"x":160,"y":32,"fileNum":12077,"id":8045,"width":32,"height":32},{"x":192,"y":32,"fileNum":12077,"id":8046,"width":32,"height":32},{"x":224,"y":32,"fileNum":12077,"id":8047,"width":32,"height":32},{"x":128,"y":64,"fileNum":12077,"id":8048,"width":32,"height":32},{"x":160,"y":64,"fileNum":12077,"id":8049,"width":32,"height":32},{"x":192,"y":64,"fileNum":12077,"id":8050,"width":32,"height":32},{"x":224,"y":64,"fileNum":12077,"id":8051,"width":32,"height":32},{"x":128,"y":96,"fileNum":12077,"id":8052,"width":32,"height":32},{"x":160,"y":96,"fileNum":12077,"id":8053,"width":32,"height":32},{"x":192,"y":96,"fileNum":12077,"id":8054,"width":32,"height":32},{"x":224,"y":96,"fileNum":12077,"id":8055,"width":32,"height":32},{"x":256,"y":0,"fileNum":12077,"id":8056,"width":32,"height":32},{"x":288,"y":0,"fileNum":12077,"id":8057,"width":32,"height":32},{"x":320,"y":0,"fileNum":12077,"id":8058,"width":32,"height":32},{"x":352,"y":0,"fileNum":12077,"id":8059,"width":32,"height":32},{"x":256,"y":32,"fileNum":12077,"id":8060,"width":32,"height":32},{"x":288,"y":32,"fileNum":12077,"id":8061,"width":32,"height":32},{"x":320,"y":32,"fileNum":12077,"id":8062,"width":32,"height":32},{"x":352,"y":32,"fileNum":12077,"id":8063,"width":32,"height":32},{"x":256,"y":64,"fileNum":12077,"id":8064,"width":32,"height":32},{"x":288,"y":64,"fileNum":12077,"id":8065,"width":32,"height":32},{"x":320,"y":64,"fileNum":12077,"id":8066,"width":32,"height":32},{"x":352,"y":64,"fileNum":12077,"id":8067,"width":32,"height":32},{"x":256,"y":96,"fileNum":12077,"id":8068,"width":32,"height":32},{"x":288,"y":96,"fileNum":12077,"id":8069,"width":32,"height":32},{"x":320,"y":96,"fileNum":12077,"id":8070,"width":32,"height":32},{"x":352,"y":96,"fileNum":12077,"id":8071,"width":32,"height":32},{"x":384,"y":0,"fileNum":12077,"id":8072,"width":32,"height":32},{"x":416,"y":0,"fileNum":12077,"id":8073,"width":32,"height":32},{"x":448,"y":0,"fileNum":12077,"id":8074,"width":32,"height":32},{"x":480,"y":0,"fileNum":12077,"id":8075,"width":32,"height":32},{"x":384,"y":32,"fileNum":12077,"id":8076,"width":32,"height":32},{"x":416,"y":32,"fileNum":12077,"id":8077,"width":32,"height":32},{"x":448,"y":32,"fileNum":12077,"id":8078,"width":32,"height":32},{"x":480,"y":32,"fileNum":12077,"id":8079,"width":32,"height":32},{"x":384,"y":64,"fileNum":12077,"id":8080,"width":32,"height":32},{"x":416,"y":64,"fileNum":12077,"id":8081,"width":32,"height":32},{"x":448,"y":64,"fileNum":12077,"id":8082,"width":32,"height":32},{"x":480,"y":64,"fileNum":12077,"id":8083,"width":32,"height":32},{"x":384,"y":96,"fileNum":12077,"id":8084,"width":32,"height":32},{"x":416,"y":96,"fileNum":12077,"id":8085,"width":32,"height":32},{"x":448,"y":96,"fileNum":12077,"id":8086,"width":32,"height":32},{"x":480,"y":96,"fileNum":12077,"id":8087,"width":32,"height":32},{"x":0,"y":0,"fileNum":12078,"id":8088,"width":32,"height":32},{"x":32,"y":0,"fileNum":12078,"id":8089,"width":32,"height":32},{"x":64,"y":0,"fileNum":12078,"id":8090,"width":32,"height":32},{"x":96,"y":0,"fileNum":12078,"id":8091,"width":32,"height":32},{"x":0,"y":32,"fileNum":12078,"id":8092,"width":32,"height":32},{"x":32,"y":32,"fileNum":12078,"id":8093,"width":32,"height":32},{"x":64,"y":32,"fileNum":12078,"id":8094,"width":32,"height":32},{"x":96,"y":32,"fileNum":12078,"id":8095,"width":32,"height":32},{"x":0,"y":64,"fileNum":12078,"id":8096,"width":32,"height":32},{"x":32,"y":64,"fileNum":12078,"id":8097,"width":32,"height":32},{"x":64,"y":64,"fileNum":12078,"id":8098,"width":32,"height":32},{"x":96,"y":64,"fileNum":12078,"id":8099,"width":32,"height":32},{"x":0,"y":96,"fileNum":12078,"id":8100,"width":32,"height":32},{"x":32,"y":96,"fileNum":12078,"id":8101,"width":32,"height":32},{"x":64,"y":96,"fileNum":12078,"id":8102,"width":32,"height":32},{"x":96,"y":96,"fileNum":12078,"id":8103,"width":32,"height":32},{"x":128,"y":0,"fileNum":12078,"id":8104,"width":32,"height":32},{"x":160,"y":0,"fileNum":12078,"id":8105,"width":32,"height":32},{"x":192,"y":0,"fileNum":12078,"id":8106,"width":32,"height":32},{"x":224,"y":0,"fileNum":12078,"id":8107,"width":32,"height":32},{"x":128,"y":32,"fileNum":12078,"id":8108,"width":32,"height":32},{"x":160,"y":32,"fileNum":12078,"id":8109,"width":32,"height":32},{"x":192,"y":32,"fileNum":12078,"id":8110,"width":32,"height":32},{"x":224,"y":32,"fileNum":12078,"id":8111,"width":32,"height":32},{"x":128,"y":64,"fileNum":12078,"id":8112,"width":32,"height":32},{"x":160,"y":64,"fileNum":12078,"id":8113,"width":32,"height":32},{"x":192,"y":64,"fileNum":12078,"id":8114,"width":32,"height":32},{"x":224,"y":64,"fileNum":12078,"id":8115,"width":32,"height":32},{"x":128,"y":96,"fileNum":12078,"id":8116,"width":32,"height":32},{"x":160,"y":96,"fileNum":12078,"id":8117,"width":32,"height":32},{"x":192,"y":96,"fileNum":12078,"id":8118,"width":32,"height":32},{"x":224,"y":96,"fileNum":12078,"id":8119,"width":32,"height":32},{"x":256,"y":0,"fileNum":12078,"id":8120,"width":32,"height":32},{"x":288,"y":0,"fileNum":12078,"id":8121,"width":32,"height":32},{"x":320,"y":0,"fileNum":12078,"id":8122,"width":32,"height":32},{"x":352,"y":0,"fileNum":12078,"id":8123,"width":32,"height":32},{"x":256,"y":32,"fileNum":12078,"id":8124,"width":32,"height":32},{"x":288,"y":32,"fileNum":12078,"id":8125,"width":32,"height":32},{"x":320,"y":32,"fileNum":12078,"id":8126,"width":32,"height":32},{"x":352,"y":32,"fileNum":12078,"id":8127,"width":32,"height":32},{"x":256,"y":64,"fileNum":12078,"id":8128,"width":32,"height":32},{"x":288,"y":64,"fileNum":12078,"id":8129,"width":32,"height":32},{"x":320,"y":64,"fileNum":12078,"id":8130,"width":32,"height":32},{"x":352,"y":64,"fileNum":12078,"id":8131,"width":32,"height":32},{"x":256,"y":96,"fileNum":12078,"id":8132,"width":32,"height":32},{"x":288,"y":96,"fileNum":12078,"id":8133,"width":32,"height":32},{"x":320,"y":96,"fileNum":12078,"id":8134,"width":32,"height":32},{"x":384,"y":0,"fileNum":12078,"id":8135,"width":32,"height":32},{"x":416,"y":0,"fileNum":12078,"id":8136,"width":32,"height":32},{"x":448,"y":0,"fileNum":12078,"id":8137,"width":32,"height":32},{"x":480,"y":0,"fileNum":12078,"id":8138,"width":32,"height":32},{"x":384,"y":32,"fileNum":12078,"id":8139,"width":32,"height":32},{"x":416,"y":32,"fileNum":12078,"id":8140,"width":32,"height":32},{"x":448,"y":32,"fileNum":12078,"id":8141,"width":32,"height":32},{"x":480,"y":32,"fileNum":12078,"id":8142,"width":32,"height":32},{"x":384,"y":64,"fileNum":12078,"id":8143,"width":32,"height":32},{"x":416,"y":64,"fileNum":12078,"id":8144,"width":32,"height":32},{"x":448,"y":64,"fileNum":12078,"id":8145,"width":32,"height":32},{"x":480,"y":64,"fileNum":12078,"id":8146,"width":32,"height":32},{"x":384,"y":96,"fileNum":12078,"id":8147,"width":32,"height":32},{"x":416,"y":96,"fileNum":12078,"id":8148,"width":32,"height":32},{"x":448,"y":96,"fileNum":12078,"id":8149,"width":32,"height":32},{"x":480,"y":96,"fileNum":12078,"id":8150,"width":32,"height":32},{"x":0,"y":0,"fileNum":12079,"id":8151,"width":32,"height":32},{"x":32,"y":0,"fileNum":12079,"id":8152,"width":32,"height":32},{"x":64,"y":0,"fileNum":12079,"id":8153,"width":32,"height":32},{"x":96,"y":0,"fileNum":12079,"id":8154,"width":32,"height":32},{"x":0,"y":32,"fileNum":12079,"id":8155,"width":32,"height":32},{"x":32,"y":32,"fileNum":12079,"id":8156,"width":32,"height":32},{"x":64,"y":32,"fileNum":12079,"id":8157,"width":32,"height":32},{"x":96,"y":32,"fileNum":12079,"id":8158,"width":32,"height":32},{"x":0,"y":64,"fileNum":12079,"id":8159,"width":32,"height":32},{"x":32,"y":64,"fileNum":12079,"id":8160,"width":32,"height":32},{"x":64,"y":64,"fileNum":12079,"id":8161,"width":32,"height":32},{"x":96,"y":64,"fileNum":12079,"id":8162,"width":32,"height":32},{"x":0,"y":96,"fileNum":12079,"id":8163,"width":32,"height":32},{"x":32,"y":96,"fileNum":12079,"id":8164,"width":32,"height":32},{"x":64,"y":96,"fileNum":12079,"id":8165,"width":32,"height":32},{"x":96,"y":96,"fileNum":12079,"id":8166,"width":32,"height":32},{"x":0,"y":0,"fileNum":15197,"id":8167,"width":64,"height":384},{"x":0,"y":0,"fileNum":15196,"id":8168,"width":288,"height":96},{"x":256,"y":0,"fileNum":12075,"id":8169,"width":32,"height":32},{"x":288,"y":0,"fileNum":12075,"id":8170,"width":32,"height":32},{"x":320,"y":0,"fileNum":12075,"id":8171,"width":32,"height":32},{"x":352,"y":0,"fileNum":12075,"id":8172,"width":32,"height":32},{"x":256,"y":32,"fileNum":12075,"id":8173,"width":32,"height":32},{"x":288,"y":32,"fileNum":12075,"id":8174,"width":32,"height":32},{"x":320,"y":32,"fileNum":12075,"id":8175,"width":32,"height":32},{"x":352,"y":32,"fileNum":12075,"id":8176,"width":32,"height":32},{"x":256,"y":64,"fileNum":12075,"id":8177,"width":32,"height":32},{"x":288,"y":64,"fileNum":12075,"id":8178,"width":32,"height":32},{"x":320,"y":64,"fileNum":12075,"id":8179,"width":32,"height":32},{"x":352,"y":64,"fileNum":12075,"id":8180,"width":32,"height":32},{"x":256,"y":96,"fileNum":12075,"id":8181,"width":32,"height":32},{"x":288,"y":96,"fileNum":12075,"id":8182,"width":32,"height":32},{"x":320,"y":96,"fileNum":12075,"id":8183,"width":32,"height":32},{"x":352,"y":96,"fileNum":12075,"id":8184,"width":32,"height":32},{"x":384,"y":0,"fileNum":12075,"id":8185,"width":32,"height":32},{"x":416,"y":0,"fileNum":12075,"id":8186,"width":32,"height":32},{"x":448,"y":0,"fileNum":12075,"id":8187,"width":32,"height":32},{"x":480,"y":0,"fileNum":12075,"id":8188,"width":32,"height":32},{"x":384,"y":32,"fileNum":12075,"id":8189,"width":32,"height":32},{"x":416,"y":32,"fileNum":12075,"id":8190,"width":32,"height":32},{"x":448,"y":32,"fileNum":12075,"id":8191,"width":32,"height":32},{"x":480,"y":32,"fileNum":12075,"id":8192,"width":32,"height":32},{"x":384,"y":64,"fileNum":12075,"id":8193,"width":32,"height":32},{"x":416,"y":64,"fileNum":12075,"id":8194,"width":32,"height":32},{"x":448,"y":64,"fileNum":12075,"id":8195,"width":32,"height":32},{"x":480,"y":64,"fileNum":12075,"id":8196,"width":32,"height":32},{"x":384,"y":96,"fileNum":12075,"id":8197,"width":32,"height":32},{"x":416,"y":96,"fileNum":12075,"id":8198,"width":32,"height":32},{"x":448,"y":96,"fileNum":12075,"id":8199,"width":32,"height":32},{"x":480,"y":96,"fileNum":12075,"id":8200,"width":32,"height":32},{"x":0,"y":0,"fileNum":8143,"id":8201,"width":32,"height":32},{"x":32,"y":0,"fileNum":8143,"id":8202,"width":32,"height":32},{"x":64,"y":0,"fileNum":8143,"id":8203,"width":32,"height":32},{"x":96,"y":0,"fileNum":8143,"id":8204,"width":32,"height":32},{"x":0,"y":32,"fileNum":8143,"id":8205,"width":32,"height":32},{"x":32,"y":32,"fileNum":8143,"id":8206,"width":32,"height":32},{"x":64,"y":32,"fileNum":8143,"id":8207,"width":32,"height":32},{"x":96,"y":32,"fileNum":8143,"id":8208,"width":32,"height":32},{"x":0,"y":64,"fileNum":8143,"id":8209,"width":32,"height":32},{"x":32,"y":64,"fileNum":8143,"id":8210,"width":32,"height":32},{"x":64,"y":64,"fileNum":8143,"id":8211,"width":32,"height":32},{"x":96,"y":64,"fileNum":8143,"id":8212,"width":32,"height":32},{"x":0,"y":96,"fileNum":8143,"id":8213,"width":32,"height":32},{"x":32,"y":96,"fileNum":8143,"id":8214,"width":32,"height":32},{"x":64,"y":96,"fileNum":8143,"id":8215,"width":32,"height":32},{"x":96,"y":96,"fileNum":8143,"id":8216,"width":32,"height":32},{"x":0,"y":0,"fileNum":8144,"id":8217,"width":32,"height":32},{"x":32,"y":0,"fileNum":8144,"id":8218,"width":32,"height":32},{"x":64,"y":0,"fileNum":8144,"id":8219,"width":32,"height":32},{"x":96,"y":0,"fileNum":8144,"id":8220,"width":32,"height":32},{"x":0,"y":32,"fileNum":8144,"id":8221,"width":32,"height":32},{"x":32,"y":32,"fileNum":8144,"id":8222,"width":32,"height":32},{"x":64,"y":32,"fileNum":8144,"id":8223,"width":32,"height":32},{"x":96,"y":32,"fileNum":8144,"id":8224,"width":32,"height":32},{"x":0,"y":64,"fileNum":8144,"id":8225,"width":32,"height":32},{"x":32,"y":64,"fileNum":8144,"id":8226,"width":32,"height":32},{"x":64,"y":64,"fileNum":8144,"id":8227,"width":32,"height":32},{"x":96,"y":64,"fileNum":8144,"id":8228,"width":32,"height":32},{"x":0,"y":96,"fileNum":8144,"id":8229,"width":32,"height":32},{"x":32,"y":96,"fileNum":8144,"id":8230,"width":32,"height":32},{"x":64,"y":96,"fileNum":8144,"id":8231,"width":32,"height":32},{"x":96,"y":96,"fileNum":8144,"id":8232,"width":32,"height":32},{"x":0,"y":0,"fileNum":8145,"id":8233,"width":32,"height":32},{"x":32,"y":0,"fileNum":8145,"id":8234,"width":32,"height":32},{"x":64,"y":0,"fileNum":8145,"id":8235,"width":32,"height":32},{"x":96,"y":0,"fileNum":8145,"id":8236,"width":32,"height":32},{"x":0,"y":32,"fileNum":8145,"id":8237,"width":32,"height":32},{"x":32,"y":32,"fileNum":8145,"id":8238,"width":32,"height":32},{"x":64,"y":32,"fileNum":8145,"id":8239,"width":32,"height":32},{"x":96,"y":32,"fileNum":8145,"id":8240,"width":32,"height":32},{"x":0,"y":64,"fileNum":8145,"id":8241,"width":32,"height":32},{"x":32,"y":64,"fileNum":8145,"id":8242,"width":32,"height":32},{"x":64,"y":64,"fileNum":8145,"id":8243,"width":32,"height":32},{"x":96,"y":64,"fileNum":8145,"id":8244,"width":32,"height":32},{"x":0,"y":96,"fileNum":8145,"id":8245,"width":32,"height":32},{"x":32,"y":96,"fileNum":8145,"id":8246,"width":32,"height":32},{"x":64,"y":96,"fileNum":8145,"id":8247,"width":32,"height":32},{"x":96,"y":96,"fileNum":8145,"id":8248,"width":32,"height":32},{"x":0,"y":0,"fileNum":8146,"id":8249,"width":32,"height":32},{"x":32,"y":0,"fileNum":8146,"id":8250,"width":32,"height":32},{"x":64,"y":0,"fileNum":8146,"id":8251,"width":32,"height":32},{"x":96,"y":0,"fileNum":8146,"id":8252,"width":32,"height":32},{"x":0,"y":32,"fileNum":8146,"id":8253,"width":32,"height":32},{"x":32,"y":32,"fileNum":8146,"id":8254,"width":32,"height":32},{"x":64,"y":32,"fileNum":8146,"id":8255,"width":32,"height":32},{"x":96,"y":32,"fileNum":8146,"id":8256,"width":32,"height":32},{"x":0,"y":64,"fileNum":8146,"id":8257,"width":32,"height":32},{"x":32,"y":64,"fileNum":8146,"id":8258,"width":32,"height":32},{"x":64,"y":64,"fileNum":8146,"id":8259,"width":32,"height":32},{"x":96,"y":64,"fileNum":8146,"id":8260,"width":32,"height":32},{"x":0,"y":96,"fileNum":8146,"id":8261,"width":32,"height":32},{"x":32,"y":96,"fileNum":8146,"id":8262,"width":32,"height":32},{"x":64,"y":96,"fileNum":8146,"id":8263,"width":32,"height":32},{"x":96,"y":96,"fileNum":8146,"id":8264,"width":32,"height":32},{"x":0,"y":0,"fileNum":8147,"id":8265,"width":32,"height":32},{"x":32,"y":0,"fileNum":8147,"id":8266,"width":32,"height":32},{"x":64,"y":0,"fileNum":8147,"id":8267,"width":32,"height":32},{"x":96,"y":0,"fileNum":8147,"id":8268,"width":32,"height":32},{"x":0,"y":32,"fileNum":8147,"id":8269,"width":32,"height":32},{"x":32,"y":32,"fileNum":8147,"id":8270,"width":32,"height":32},{"x":64,"y":32,"fileNum":8147,"id":8271,"width":32,"height":32},{"x":96,"y":32,"fileNum":8147,"id":8272,"width":32,"height":32},{"x":0,"y":64,"fileNum":8147,"id":8273,"width":32,"height":32},{"x":32,"y":64,"fileNum":8147,"id":8274,"width":32,"height":32},{"x":64,"y":64,"fileNum":8147,"id":8275,"width":32,"height":32},{"x":96,"y":64,"fileNum":8147,"id":8276,"width":32,"height":32},{"x":0,"y":96,"fileNum":8147,"id":8277,"width":32,"height":32},{"x":32,"y":96,"fileNum":8147,"id":8278,"width":32,"height":32},{"x":64,"y":96,"fileNum":8147,"id":8279,"width":32,"height":32},{"x":96,"y":96,"fileNum":8147,"id":8280,"width":32,"height":32},{"x":0,"y":0,"fileNum":8148,"id":8281,"width":32,"height":32},{"x":32,"y":0,"fileNum":8148,"id":8282,"width":32,"height":32},{"x":64,"y":0,"fileNum":8148,"id":8283,"width":32,"height":32},{"x":96,"y":0,"fileNum":8148,"id":8284,"width":32,"height":32},{"x":0,"y":32,"fileNum":8148,"id":8285,"width":32,"height":32},{"x":32,"y":32,"fileNum":8148,"id":8286,"width":32,"height":32},{"x":64,"y":32,"fileNum":8148,"id":8287,"width":32,"height":32},{"x":96,"y":32,"fileNum":8148,"id":8288,"width":32,"height":32},{"x":0,"y":64,"fileNum":8148,"id":8289,"width":32,"height":32},{"x":32,"y":64,"fileNum":8148,"id":8290,"width":32,"height":32},{"x":64,"y":64,"fileNum":8148,"id":8291,"width":32,"height":32},{"x":96,"y":64,"fileNum":8148,"id":8292,"width":32,"height":32},{"x":0,"y":96,"fileNum":8148,"id":8293,"width":32,"height":32},{"x":32,"y":96,"fileNum":8148,"id":8294,"width":32,"height":32},{"x":64,"y":96,"fileNum":8148,"id":8295,"width":32,"height":32},{"x":96,"y":96,"fileNum":8148,"id":8296,"width":32,"height":32},{"x":0,"y":0,"fileNum":8149,"id":8297,"width":32,"height":32},{"x":32,"y":0,"fileNum":8149,"id":8298,"width":32,"height":32},{"x":64,"y":0,"fileNum":8149,"id":8299,"width":32,"height":32},{"x":96,"y":0,"fileNum":8149,"id":8300,"width":32,"height":32},{"x":0,"y":32,"fileNum":8149,"id":8301,"width":32,"height":32},{"x":32,"y":32,"fileNum":8149,"id":8302,"width":32,"height":32},{"x":64,"y":32,"fileNum":8149,"id":8303,"width":32,"height":32},{"x":96,"y":32,"fileNum":8149,"id":8304,"width":32,"height":32},{"x":0,"y":64,"fileNum":8149,"id":8305,"width":32,"height":32},{"x":32,"y":64,"fileNum":8149,"id":8306,"width":32,"height":32},{"x":64,"y":64,"fileNum":8149,"id":8307,"width":32,"height":32},{"x":96,"y":64,"fileNum":8149,"id":8308,"width":32,"height":32},{"x":0,"y":96,"fileNum":8149,"id":8309,"width":32,"height":32},{"x":32,"y":96,"fileNum":8149,"id":8310,"width":32,"height":32},{"x":64,"y":96,"fileNum":8149,"id":8311,"width":32,"height":32},{"x":96,"y":96,"fileNum":8149,"id":8312,"width":32,"height":32},{"x":0,"y":0,"fileNum":8150,"id":8313,"width":32,"height":32},{"x":32,"y":0,"fileNum":8150,"id":8314,"width":32,"height":32},{"x":64,"y":0,"fileNum":8150,"id":8315,"width":32,"height":32},{"x":96,"y":0,"fileNum":8150,"id":8316,"width":32,"height":32},{"x":0,"y":32,"fileNum":8150,"id":8317,"width":32,"height":32},{"x":32,"y":32,"fileNum":8150,"id":8318,"width":32,"height":32},{"x":64,"y":32,"fileNum":8150,"id":8319,"width":32,"height":32},{"x":96,"y":32,"fileNum":8150,"id":8320,"width":32,"height":32},{"x":0,"y":64,"fileNum":8150,"id":8321,"width":32,"height":32},{"x":32,"y":64,"fileNum":8150,"id":8322,"width":32,"height":32},{"x":64,"y":64,"fileNum":8150,"id":8323,"width":32,"height":32},{"x":96,"y":64,"fileNum":8150,"id":8324,"width":32,"height":32},{"x":0,"y":96,"fileNum":8150,"id":8325,"width":32,"height":32},{"x":32,"y":96,"fileNum":8150,"id":8326,"width":32,"height":32},{"x":64,"y":96,"fileNum":8150,"id":8327,"width":32,"height":32},{"x":96,"y":96,"fileNum":8150,"id":8328,"width":32,"height":32},{"x":0,"y":0,"fileNum":8151,"id":8329,"width":32,"height":32},{"x":32,"y":0,"fileNum":8151,"id":8330,"width":32,"height":32},{"x":64,"y":0,"fileNum":8151,"id":8331,"width":32,"height":32},{"x":96,"y":0,"fileNum":8151,"id":8332,"width":32,"height":32},{"x":0,"y":32,"fileNum":8151,"id":8333,"width":32,"height":32},{"x":32,"y":32,"fileNum":8151,"id":8334,"width":32,"height":32},{"x":64,"y":32,"fileNum":8151,"id":8335,"width":32,"height":32},{"x":96,"y":32,"fileNum":8151,"id":8336,"width":32,"height":32},{"x":0,"y":64,"fileNum":8151,"id":8337,"width":32,"height":32},{"x":32,"y":64,"fileNum":8151,"id":8338,"width":32,"height":32},{"x":64,"y":64,"fileNum":8151,"id":8339,"width":32,"height":32},{"x":96,"y":64,"fileNum":8151,"id":8340,"width":32,"height":32},{"x":0,"y":96,"fileNum":8151,"id":8341,"width":32,"height":32},{"x":32,"y":96,"fileNum":8151,"id":8342,"width":32,"height":32},{"x":64,"y":96,"fileNum":8151,"id":8343,"width":32,"height":32},{"x":96,"y":96,"fileNum":8151,"id":8344,"width":32,"height":32},{"x":0,"y":0,"fileNum":8152,"id":8345,"width":32,"height":32},{"x":32,"y":0,"fileNum":8152,"id":8346,"width":32,"height":32},{"x":64,"y":0,"fileNum":8152,"id":8347,"width":32,"height":32},{"x":96,"y":0,"fileNum":8152,"id":8348,"width":32,"height":32},{"x":0,"y":32,"fileNum":8152,"id":8349,"width":32,"height":32},{"x":32,"y":32,"fileNum":8152,"id":8350,"width":32,"height":32},{"x":64,"y":32,"fileNum":8152,"id":8351,"width":32,"height":32},{"x":96,"y":32,"fileNum":8152,"id":8352,"width":32,"height":32},{"x":0,"y":64,"fileNum":8152,"id":8353,"width":32,"height":32},{"x":32,"y":64,"fileNum":8152,"id":8354,"width":32,"height":32},{"x":64,"y":64,"fileNum":8152,"id":8355,"width":32,"height":32},{"x":96,"y":64,"fileNum":8152,"id":8356,"width":32,"height":32},{"x":0,"y":96,"fileNum":8152,"id":8357,"width":32,"height":32},{"x":32,"y":96,"fileNum":8152,"id":8358,"width":32,"height":32},{"x":64,"y":96,"fileNum":8152,"id":8359,"width":32,"height":32},{"x":96,"y":96,"fileNum":8152,"id":8360,"width":32,"height":32},{"x":0,"y":0,"fileNum":8153,"id":8361,"width":32,"height":32},{"x":32,"y":0,"fileNum":8153,"id":8362,"width":32,"height":32},{"x":64,"y":0,"fileNum":8153,"id":8363,"width":32,"height":32},{"x":96,"y":0,"fileNum":8153,"id":8364,"width":32,"height":32},{"x":0,"y":32,"fileNum":8153,"id":8365,"width":32,"height":32},{"x":32,"y":32,"fileNum":8153,"id":8366,"width":32,"height":32},{"x":64,"y":32,"fileNum":8153,"id":8367,"width":32,"height":32},{"x":96,"y":32,"fileNum":8153,"id":8368,"width":32,"height":32},{"x":0,"y":64,"fileNum":8153,"id":8369,"width":32,"height":32},{"x":32,"y":64,"fileNum":8153,"id":8370,"width":32,"height":32},{"x":64,"y":64,"fileNum":8153,"id":8371,"width":32,"height":32},{"x":96,"y":64,"fileNum":8153,"id":8372,"width":32,"height":32},{"x":0,"y":96,"fileNum":8153,"id":8373,"width":32,"height":32},{"x":32,"y":96,"fileNum":8153,"id":8374,"width":32,"height":32},{"x":64,"y":96,"fileNum":8153,"id":8375,"width":32,"height":32},{"x":96,"y":96,"fileNum":8153,"id":8376,"width":32,"height":32},{"x":0,"y":0,"fileNum":8154,"id":8377,"width":32,"height":32},{"x":32,"y":0,"fileNum":8154,"id":8378,"width":32,"height":32},{"x":64,"y":0,"fileNum":8154,"id":8379,"width":32,"height":32},{"x":96,"y":0,"fileNum":8154,"id":8380,"width":32,"height":32},{"x":0,"y":32,"fileNum":8154,"id":8381,"width":32,"height":32},{"x":32,"y":32,"fileNum":8154,"id":8382,"width":32,"height":32},{"x":64,"y":32,"fileNum":8154,"id":8383,"width":32,"height":32},{"x":96,"y":32,"fileNum":8154,"id":8384,"width":32,"height":32},{"x":0,"y":64,"fileNum":8154,"id":8385,"width":32,"height":32},{"x":32,"y":64,"fileNum":8154,"id":8386,"width":32,"height":32},{"x":64,"y":64,"fileNum":8154,"id":8387,"width":32,"height":32},{"x":96,"y":64,"fileNum":8154,"id":8388,"width":32,"height":32},{"x":0,"y":96,"fileNum":8154,"id":8389,"width":32,"height":32},{"x":32,"y":96,"fileNum":8154,"id":8390,"width":32,"height":32},{"x":64,"y":96,"fileNum":8154,"id":8391,"width":32,"height":32},{"x":96,"y":96,"fileNum":8154,"id":8392,"width":32,"height":32},{"x":0,"y":0,"fileNum":8155,"id":8393,"width":32,"height":32},{"x":32,"y":0,"fileNum":8155,"id":8394,"width":32,"height":32},{"x":64,"y":0,"fileNum":8155,"id":8395,"width":32,"height":32},{"x":96,"y":0,"fileNum":8155,"id":8396,"width":32,"height":32},{"x":0,"y":32,"fileNum":8155,"id":8397,"width":32,"height":32},{"x":32,"y":32,"fileNum":8155,"id":8398,"width":32,"height":32},{"x":64,"y":32,"fileNum":8155,"id":8399,"width":32,"height":32},{"x":96,"y":32,"fileNum":8155,"id":8400,"width":32,"height":32},{"x":0,"y":64,"fileNum":8155,"id":8401,"width":32,"height":32},{"x":32,"y":64,"fileNum":8155,"id":8402,"width":32,"height":32},{"x":64,"y":64,"fileNum":8155,"id":8403,"width":32,"height":32},{"x":96,"y":64,"fileNum":8155,"id":8404,"width":32,"height":32},{"x":0,"y":96,"fileNum":8155,"id":8405,"width":32,"height":32},{"x":32,"y":96,"fileNum":8155,"id":8406,"width":32,"height":32},{"x":64,"y":96,"fileNum":8155,"id":8407,"width":32,"height":32},{"x":96,"y":96,"fileNum":8155,"id":8408,"width":32,"height":32},{"x":0,"y":0,"fileNum":8156,"id":8409,"width":32,"height":32},{"x":32,"y":0,"fileNum":8156,"id":8410,"width":32,"height":32},{"x":64,"y":0,"fileNum":8156,"id":8411,"width":32,"height":32},{"x":96,"y":0,"fileNum":8156,"id":8412,"width":32,"height":32},{"x":0,"y":32,"fileNum":8156,"id":8413,"width":32,"height":32},{"x":32,"y":32,"fileNum":8156,"id":8414,"width":32,"height":32},{"x":64,"y":32,"fileNum":8156,"id":8415,"width":32,"height":32},{"x":96,"y":32,"fileNum":8156,"id":8416,"width":32,"height":32},{"x":0,"y":64,"fileNum":8156,"id":8417,"width":32,"height":32},{"x":32,"y":64,"fileNum":8156,"id":8418,"width":32,"height":32},{"x":64,"y":64,"fileNum":8156,"id":8419,"width":32,"height":32},{"x":96,"y":64,"fileNum":8156,"id":8420,"width":32,"height":32},{"x":0,"y":96,"fileNum":8156,"id":8421,"width":32,"height":32},{"x":32,"y":96,"fileNum":8156,"id":8422,"width":32,"height":32},{"x":64,"y":96,"fileNum":8156,"id":8423,"width":32,"height":32},{"x":96,"y":96,"fileNum":8156,"id":8424,"width":32,"height":32},{"x":0,"y":0,"fileNum":8157,"id":8425,"width":32,"height":32},{"x":32,"y":0,"fileNum":8157,"id":8426,"width":32,"height":32},{"x":64,"y":0,"fileNum":8157,"id":8427,"width":32,"height":32},{"x":96,"y":0,"fileNum":8157,"id":8428,"width":32,"height":32},{"x":0,"y":32,"fileNum":8157,"id":8429,"width":32,"height":32},{"x":32,"y":32,"fileNum":8157,"id":8430,"width":32,"height":32},{"x":64,"y":32,"fileNum":8157,"id":8431,"width":32,"height":32},{"x":96,"y":32,"fileNum":8157,"id":8432,"width":32,"height":32},{"x":0,"y":64,"fileNum":8157,"id":8433,"width":32,"height":32},{"x":32,"y":64,"fileNum":8157,"id":8434,"width":32,"height":32},{"x":64,"y":64,"fileNum":8157,"id":8435,"width":32,"height":32},{"x":96,"y":64,"fileNum":8157,"id":8436,"width":32,"height":32},{"x":0,"y":96,"fileNum":8157,"id":8437,"width":32,"height":32},{"x":32,"y":96,"fileNum":8157,"id":8438,"width":32,"height":32},{"x":64,"y":96,"fileNum":8157,"id":8439,"width":32,"height":32},{"x":96,"y":96,"fileNum":8157,"id":8440,"width":32,"height":32},{"x":0,"y":0,"fileNum":8158,"id":8441,"width":32,"height":32},{"x":32,"y":0,"fileNum":8158,"id":8442,"width":32,"height":32},{"x":64,"y":0,"fileNum":8158,"id":8443,"width":32,"height":32},{"x":96,"y":0,"fileNum":8158,"id":8444,"width":32,"height":32},{"x":0,"y":32,"fileNum":8158,"id":8445,"width":32,"height":32},{"x":32,"y":32,"fileNum":8158,"id":8446,"width":32,"height":32},{"x":64,"y":32,"fileNum":8158,"id":8447,"width":32,"height":32},{"x":96,"y":32,"fileNum":8158,"id":8448,"width":32,"height":32},{"x":0,"y":64,"fileNum":8158,"id":8449,"width":32,"height":32},{"x":32,"y":64,"fileNum":8158,"id":8450,"width":32,"height":32},{"x":64,"y":64,"fileNum":8158,"id":8451,"width":32,"height":32},{"x":96,"y":64,"fileNum":8158,"id":8452,"width":32,"height":32},{"x":0,"y":96,"fileNum":8158,"id":8453,"width":32,"height":32},{"x":32,"y":96,"fileNum":8158,"id":8454,"width":32,"height":32},{"x":64,"y":96,"fileNum":8158,"id":8455,"width":32,"height":32},{"x":96,"y":96,"fileNum":8158,"id":8456,"width":32,"height":32},{"x":0,"y":0,"fileNum":8159,"id":8457,"width":32,"height":47},{"x":32,"y":0,"fileNum":8159,"id":8458,"width":32,"height":47},{"x":64,"y":0,"fileNum":8159,"id":8459,"width":32,"height":47},{"x":96,"y":0,"fileNum":8159,"id":8460,"width":32,"height":47},{"x":0,"y":47,"fileNum":8159,"id":8461,"width":32,"height":47},{"x":32,"y":47,"fileNum":8159,"id":8462,"width":32,"height":47},{"x":64,"y":47,"fileNum":8159,"id":8463,"width":32,"height":47},{"x":96,"y":47,"fileNum":8159,"id":8464,"width":32,"height":47},{"x":0,"y":94,"fileNum":8159,"id":8465,"width":32,"height":47},{"x":32,"y":94,"fileNum":8159,"id":8466,"width":32,"height":47},{"x":64,"y":94,"fileNum":8159,"id":8467,"width":32,"height":47},{"x":96,"y":94,"fileNum":8159,"id":8468,"width":32,"height":47},{"x":0,"y":141,"fileNum":8159,"id":8469,"width":32,"height":47},{"x":32,"y":141,"fileNum":8159,"id":8470,"width":32,"height":47},{"x":64,"y":141,"fileNum":8159,"id":8471,"width":32,"height":47},{"x":96,"y":141,"fileNum":8159,"id":8472,"width":32,"height":47},{"x":0,"y":0,"fileNum":8160,"id":8473,"width":32,"height":32},{"x":32,"y":0,"fileNum":8160,"id":8474,"width":32,"height":32},{"x":64,"y":0,"fileNum":8160,"id":8475,"width":32,"height":32},{"x":96,"y":0,"fileNum":8160,"id":8476,"width":32,"height":32},{"x":0,"y":32,"fileNum":8160,"id":8477,"width":32,"height":32},{"x":32,"y":32,"fileNum":8160,"id":8478,"width":32,"height":32},{"x":64,"y":32,"fileNum":8160,"id":8479,"width":32,"height":32},{"x":96,"y":32,"fileNum":8160,"id":8480,"width":32,"height":32},{"x":0,"y":64,"fileNum":8160,"id":8481,"width":32,"height":32},{"x":32,"y":64,"fileNum":8160,"id":8482,"width":32,"height":32},{"x":64,"y":64,"fileNum":8160,"id":8483,"width":32,"height":32},{"x":96,"y":64,"fileNum":8160,"id":8484,"width":32,"height":32},{"x":0,"y":96,"fileNum":8160,"id":8485,"width":32,"height":32},{"x":32,"y":96,"fileNum":8160,"id":8486,"width":32,"height":32},{"x":64,"y":96,"fileNum":8160,"id":8487,"width":32,"height":32},{"x":96,"y":96,"fileNum":8160,"id":8488,"width":32,"height":32},{"x":0,"y":0,"fileNum":8161,"id":8489,"width":32,"height":32},{"x":32,"y":0,"fileNum":8161,"id":8490,"width":32,"height":32},{"x":64,"y":0,"fileNum":8161,"id":8491,"width":32,"height":32},{"x":96,"y":0,"fileNum":8161,"id":8492,"width":32,"height":32},{"x":0,"y":32,"fileNum":8161,"id":8493,"width":32,"height":32},{"x":32,"y":32,"fileNum":8161,"id":8494,"width":32,"height":32},{"x":64,"y":32,"fileNum":8161,"id":8495,"width":32,"height":32},{"x":96,"y":32,"fileNum":8161,"id":8496,"width":32,"height":32},{"x":0,"y":64,"fileNum":8161,"id":8497,"width":32,"height":32},{"x":32,"y":64,"fileNum":8161,"id":8498,"width":32,"height":32},{"x":64,"y":64,"fileNum":8161,"id":8499,"width":32,"height":32},{"x":96,"y":64,"fileNum":8161,"id":8500,"width":32,"height":32},{"x":0,"y":96,"fileNum":8161,"id":8501,"width":32,"height":32},{"x":32,"y":96,"fileNum":8161,"id":8502,"width":32,"height":32},{"x":64,"y":96,"fileNum":8161,"id":8503,"width":32,"height":32},{"x":96,"y":96,"fileNum":8161,"id":8504,"width":32,"height":32},{"x":0,"y":0,"fileNum":8162,"id":8505,"width":32,"height":32},{"x":32,"y":0,"fileNum":8162,"id":8506,"width":32,"height":32},{"x":64,"y":0,"fileNum":8162,"id":8507,"width":32,"height":32},{"x":96,"y":0,"fileNum":8162,"id":8508,"width":32,"height":32},{"x":0,"y":32,"fileNum":8162,"id":8509,"width":32,"height":32},{"x":32,"y":32,"fileNum":8162,"id":8510,"width":32,"height":32},{"x":64,"y":32,"fileNum":8162,"id":8511,"width":32,"height":32},{"x":96,"y":32,"fileNum":8162,"id":8512,"width":32,"height":32},{"x":0,"y":64,"fileNum":8162,"id":8513,"width":32,"height":32},{"x":32,"y":64,"fileNum":8162,"id":8514,"width":32,"height":32},{"x":64,"y":64,"fileNum":8162,"id":8515,"width":32,"height":32},{"x":96,"y":64,"fileNum":8162,"id":8516,"width":32,"height":32},{"x":0,"y":96,"fileNum":8162,"id":8517,"width":32,"height":32},{"x":32,"y":96,"fileNum":8162,"id":8518,"width":32,"height":32},{"x":64,"y":96,"fileNum":8162,"id":8519,"width":32,"height":32},{"x":96,"y":96,"fileNum":8162,"id":8520,"width":32,"height":32},{"x":0,"y":0,"fileNum":4039,"id":8521,"width":57,"height":48},{"x":57,"y":0,"fileNum":4039,"id":8522,"width":57,"height":48},{"x":114,"y":0,"fileNum":4039,"id":8523,"width":57,"height":48},{"x":171,"y":0,"fileNum":4039,"id":8524,"width":57,"height":48},{"x":228,"y":0,"fileNum":4039,"id":8525,"width":57,"height":48},{"x":285,"y":0,"fileNum":4039,"id":8526,"width":57,"height":48},{"x":342,"y":0,"fileNum":4039,"id":8527,"width":57,"height":48},{"x":0,"y":48,"fileNum":4039,"id":8528,"width":57,"height":48},{"x":57,"y":48,"fileNum":4039,"id":8529,"width":57,"height":48},{"x":114,"y":48,"fileNum":4039,"id":8530,"width":57,"height":48},{"x":171,"y":48,"fileNum":4039,"id":8531,"width":57,"height":48},{"x":228,"y":48,"fileNum":4039,"id":8532,"width":57,"height":48},{"x":285,"y":48,"fileNum":4039,"id":8533,"width":57,"height":48},{"x":342,"y":48,"fileNum":4039,"id":8534,"width":57,"height":48},{"x":0,"y":96,"fileNum":4039,"id":8535,"width":57,"height":48},{"x":57,"y":96,"fileNum":4039,"id":8536,"width":57,"height":48},{"x":114,"y":96,"fileNum":4039,"id":8537,"width":57,"height":48},{"x":171,"y":96,"fileNum":4039,"id":8538,"width":57,"height":48},{"x":228,"y":96,"fileNum":4039,"id":8539,"width":57,"height":48},{"x":285,"y":96,"fileNum":4039,"id":8540,"width":57,"height":48},{"x":342,"y":96,"fileNum":4039,"id":8541,"width":57,"height":48},{"x":0,"y":144,"fileNum":4039,"id":8542,"width":57,"height":48},{"x":57,"y":144,"fileNum":4039,"id":8543,"width":57,"height":48},{"x":114,"y":144,"fileNum":4039,"id":8544,"width":57,"height":48},{"x":171,"y":144,"fileNum":4039,"id":8545,"width":57,"height":48},{"x":228,"y":144,"fileNum":4039,"id":8546,"width":57,"height":48},{"x":285,"y":144,"fileNum":4039,"id":8547,"width":57,"height":48},{"x":342,"y":144,"fileNum":4039,"id":8548,"width":57,"height":48},{"x":0,"y":0,"fileNum":4051,"id":8556,"width":89,"height":60},{"x":89,"y":0,"fileNum":4051,"id":8557,"width":89,"height":60},{"x":178,"y":0,"fileNum":4051,"id":8558,"width":89,"height":60},{"x":267,"y":0,"fileNum":4051,"id":8559,"width":89,"height":60},{"x":356,"y":0,"fileNum":4051,"id":8560,"width":89,"height":60},{"x":0,"y":60,"fileNum":4051,"id":8562,"width":89,"height":60},{"x":89,"y":60,"fileNum":4051,"id":8563,"width":89,"height":60},{"x":178,"y":60,"fileNum":4051,"id":8564,"width":89,"height":60},{"x":267,"y":60,"fileNum":4051,"id":8565,"width":89,"height":60},{"x":356,"y":60,"fileNum":4051,"id":8566,"width":89,"height":60},{"x":0,"y":120,"fileNum":4051,"id":8568,"width":89,"height":60},{"x":89,"y":120,"fileNum":4051,"id":8569,"width":89,"height":60},{"x":178,"y":120,"fileNum":4051,"id":8570,"width":89,"height":60},{"x":267,"y":120,"fileNum":4051,"id":8571,"width":89,"height":60},{"x":356,"y":120,"fileNum":4051,"id":8572,"width":89,"height":60},{"x":0,"y":180,"fileNum":4051,"id":8574,"width":89,"height":60},{"x":89,"y":180,"fileNum":4051,"id":8575,"width":89,"height":60},{"x":178,"y":180,"fileNum":4051,"id":8576,"width":89,"height":60},{"x":267,"y":180,"fileNum":4051,"id":8577,"width":89,"height":60},{"x":356,"y":180,"fileNum":4051,"id":8578,"width":89,"height":60},{"x":0,"y":0,"fileNum":4052,"id":8583,"width":50,"height":50},{"x":50,"y":0,"fileNum":4052,"id":8584,"width":50,"height":50},{"x":100,"y":0,"fileNum":4052,"id":8585,"width":50,"height":50},{"x":0,"y":50,"fileNum":4052,"id":8587,"width":50,"height":50},{"x":50,"y":50,"fileNum":4052,"id":8588,"width":50,"height":50},{"x":100,"y":50,"fileNum":4052,"id":8589,"width":50,"height":50},{"x":0,"y":100,"fileNum":4052,"id":8591,"width":50,"height":50},{"x":50,"y":100,"fileNum":4052,"id":8592,"width":50,"height":50},{"x":100,"y":100,"fileNum":4052,"id":8593,"width":50,"height":50},{"x":0,"y":150,"fileNum":4052,"id":8595,"width":50,"height":50},{"x":50,"y":150,"fileNum":4052,"id":8596,"width":50,"height":50},{"x":100,"y":150,"fileNum":4052,"id":8597,"width":50,"height":50},{"x":0,"y":0,"fileNum":2170,"id":8602,"width":17,"height":50},{"x":17,"y":0,"fileNum":2170,"id":8603,"width":17,"height":50},{"x":34,"y":0,"fileNum":2170,"id":8604,"width":17,"height":50},{"x":51,"y":0,"fileNum":2170,"id":8605,"width":17,"height":50},{"x":0,"y":0,"fileNum":15181,"id":8608,"width":64,"height":64},{"x":64,"y":0,"fileNum":15181,"id":8609,"width":64,"height":64},{"x":128,"y":0,"fileNum":15181,"id":8610,"width":32,"height":32},{"x":128,"y":32,"fileNum":15181,"id":8611,"width":32,"height":32},{"x":0,"y":0,"fileNum":15183,"id":8612,"width":64,"height":64},{"x":64,"y":0,"fileNum":15183,"id":8613,"width":64,"height":64},{"x":128,"y":0,"fileNum":15183,"id":8614,"width":32,"height":32},{"x":128,"y":32,"fileNum":15183,"id":8615,"width":32,"height":32},{"x":0,"y":0,"fileNum":15182,"id":8616,"width":64,"height":64},{"x":64,"y":0,"fileNum":15182,"id":8617,"width":64,"height":64},{"x":128,"y":0,"fileNum":15182,"id":8618,"width":32,"height":32},{"x":128,"y":32,"fileNum":15182,"id":8619,"width":32,"height":32},{"x":0,"y":0,"fileNum":11036,"id":8620,"width":32,"height":32},{"x":32,"y":0,"fileNum":11036,"id":8621,"width":32,"height":32},{"x":64,"y":0,"fileNum":11036,"id":8622,"width":32,"height":32},{"x":0,"y":32,"fileNum":11036,"id":8623,"width":32,"height":32},{"x":32,"y":32,"fileNum":11036,"id":8624,"width":32,"height":32},{"x":64,"y":32,"fileNum":11036,"id":8625,"width":32,"height":32},{"x":0,"y":64,"fileNum":11036,"id":8626,"width":32,"height":32},{"x":32,"y":64,"fileNum":11036,"id":8627,"width":32,"height":32},{"x":64,"y":64,"fileNum":11036,"id":8628,"width":32,"height":32},{"x":0,"y":0,"fileNum":12080,"id":8629,"width":32,"height":32},{"x":32,"y":0,"fileNum":12080,"id":8630,"width":32,"height":32},{"x":0,"y":32,"fileNum":12080,"id":8631,"width":32,"height":32},{"x":32,"y":32,"fileNum":12080,"id":8632,"width":32,"height":32},{"x":0,"y":0,"fileNum":12081,"id":8633,"width":32,"height":32},{"x":32,"y":0,"fileNum":12081,"id":8634,"width":32,"height":32},{"x":0,"y":32,"fileNum":12081,"id":8635,"width":32,"height":32},{"x":32,"y":32,"fileNum":12081,"id":8636,"width":32,"height":32},{"x":0,"y":0,"fileNum":11038,"id":8637,"width":32,"height":32},{"x":0,"y":0,"fileNum":11039,"id":8638,"width":32,"height":32},{"x":32,"y":0,"fileNum":11039,"id":8639,"width":32,"height":32},{"x":64,"y":0,"fileNum":11039,"id":8640,"width":32,"height":32},{"x":0,"y":32,"fileNum":11039,"id":8641,"width":32,"height":32},{"x":32,"y":32,"fileNum":11039,"id":8642,"width":32,"height":32},{"x":64,"y":32,"fileNum":11039,"id":8643,"width":32,"height":32},{"x":0,"y":64,"fileNum":11039,"id":8644,"width":32,"height":32},{"x":32,"y":64,"fileNum":11039,"id":8645,"width":32,"height":32},{"x":64,"y":64,"fileNum":11039,"id":8646,"width":32,"height":32},{"x":0,"y":0,"fileNum":11040,"id":8647,"width":32,"height":32},{"x":32,"y":0,"fileNum":11040,"id":8648,"width":32,"height":32},{"x":64,"y":0,"fileNum":11040,"id":8649,"width":32,"height":32},{"x":0,"y":32,"fileNum":11040,"id":8650,"width":32,"height":32},{"x":32,"y":32,"fileNum":11040,"id":8651,"width":32,"height":32},{"x":64,"y":32,"fileNum":11040,"id":8652,"width":32,"height":32},{"x":0,"y":64,"fileNum":11040,"id":8653,"width":32,"height":32},{"x":32,"y":64,"fileNum":11040,"id":8654,"width":32,"height":32},{"x":64,"y":64,"fileNum":11040,"id":8655,"width":32,"height":32},{"x":0,"y":0,"fileNum":11041,"id":8656,"width":32,"height":32},{"x":32,"y":0,"fileNum":11041,"id":8657,"width":32,"height":32},{"x":64,"y":0,"fileNum":11041,"id":8658,"width":32,"height":32},{"x":0,"y":32,"fileNum":11041,"id":8659,"width":32,"height":32},{"x":32,"y":32,"fileNum":11041,"id":8660,"width":32,"height":32},{"x":64,"y":32,"fileNum":11041,"id":8661,"width":32,"height":32},{"x":0,"y":64,"fileNum":11041,"id":8662,"width":32,"height":32},{"x":32,"y":64,"fileNum":11041,"id":8663,"width":32,"height":32},{"x":64,"y":64,"fileNum":11041,"id":8664,"width":32,"height":32},{"x":0,"y":0,"fileNum":11042,"id":8665,"width":32,"height":32},{"x":32,"y":0,"fileNum":11042,"id":8666,"width":32,"height":32},{"x":64,"y":0,"fileNum":11042,"id":8667,"width":32,"height":32},{"x":0,"y":32,"fileNum":11042,"id":8668,"width":32,"height":32},{"x":32,"y":32,"fileNum":11042,"id":8669,"width":32,"height":32},{"x":64,"y":32,"fileNum":11042,"id":8670,"width":32,"height":32},{"x":0,"y":64,"fileNum":11042,"id":8671,"width":32,"height":32},{"x":32,"y":64,"fileNum":11042,"id":8672,"width":32,"height":32},{"x":64,"y":64,"fileNum":11042,"id":8673,"width":32,"height":32},{"x":0,"y":0,"fileNum":11043,"id":8674,"width":32,"height":32},{"x":32,"y":0,"fileNum":11043,"id":8675,"width":32,"height":32},{"x":64,"y":0,"fileNum":11043,"id":8676,"width":32,"height":32},{"x":0,"y":32,"fileNum":11043,"id":8677,"width":32,"height":32},{"x":32,"y":32,"fileNum":11043,"id":8678,"width":32,"height":32},{"x":64,"y":32,"fileNum":11043,"id":8679,"width":32,"height":32},{"x":0,"y":64,"fileNum":11043,"id":8680,"width":32,"height":32},{"x":32,"y":64,"fileNum":11043,"id":8681,"width":32,"height":32},{"x":64,"y":64,"fileNum":11043,"id":8682,"width":32,"height":32},{"x":0,"y":0,"fileNum":11037,"id":8684,"width":96,"height":96},{"x":96,"y":0,"fileNum":11037,"id":8685,"width":96,"height":96},{"x":0,"y":0,"fileNum":12040,"id":8686,"width":32,"height":32},{"x":32,"y":0,"fileNum":12040,"id":8687,"width":32,"height":32},{"x":0,"y":32,"fileNum":12040,"id":8688,"width":32,"height":32},{"x":32,"y":32,"fileNum":12040,"id":8689,"width":32,"height":32},{"x":64,"y":0,"fileNum":12040,"id":8690,"width":32,"height":32},{"x":96,"y":0,"fileNum":12040,"id":8691,"width":32,"height":32},{"x":64,"y":32,"fileNum":12040,"id":8692,"width":32,"height":32},{"x":96,"y":32,"fileNum":12040,"id":8693,"width":32,"height":32},{"x":128,"y":0,"fileNum":12040,"id":8694,"width":32,"height":32},{"x":160,"y":0,"fileNum":12040,"id":8695,"width":32,"height":32},{"x":128,"y":32,"fileNum":12040,"id":8696,"width":32,"height":32},{"x":160,"y":32,"fileNum":12040,"id":8697,"width":32,"height":32},{"x":192,"y":0,"fileNum":12040,"id":8698,"width":32,"height":32},{"x":224,"y":0,"fileNum":12040,"id":8699,"width":32,"height":32},{"x":192,"y":32,"fileNum":12040,"id":8700,"width":32,"height":32},{"x":224,"y":32,"fileNum":12040,"id":8701,"width":32,"height":32},{"x":256,"y":0,"fileNum":12040,"id":8702,"width":32,"height":32},{"x":288,"y":0,"fileNum":12040,"id":8703,"width":32,"height":32},{"x":256,"y":32,"fileNum":12040,"id":8704,"width":32,"height":32},{"x":288,"y":32,"fileNum":12040,"id":8705,"width":32,"height":32},{"x":320,"y":0,"fileNum":12040,"id":8706,"width":32,"height":32},{"x":352,"y":0,"fileNum":12040,"id":8707,"width":32,"height":32},{"x":320,"y":32,"fileNum":12040,"id":8708,"width":32,"height":32},{"x":352,"y":32,"fileNum":12040,"id":8709,"width":32,"height":32},{"x":384,"y":0,"fileNum":12040,"id":8710,"width":32,"height":32},{"x":416,"y":0,"fileNum":12040,"id":8711,"width":32,"height":32},{"x":384,"y":32,"fileNum":12040,"id":8712,"width":32,"height":32},{"x":416,"y":32,"fileNum":12040,"id":8713,"width":32,"height":32},{"x":448,"y":0,"fileNum":12040,"id":8714,"width":32,"height":32},{"x":480,"y":0,"fileNum":12040,"id":8715,"width":32,"height":32},{"x":448,"y":32,"fileNum":12040,"id":8716,"width":32,"height":32},{"x":480,"y":32,"fileNum":12040,"id":8717,"width":32,"height":32},{"x":512,"y":0,"fileNum":12040,"id":8718,"width":32,"height":32},{"x":544,"y":0,"fileNum":12040,"id":8719,"width":32,"height":32},{"x":512,"y":32,"fileNum":12040,"id":8720,"width":32,"height":32},{"x":544,"y":32,"fileNum":12040,"id":8721,"width":32,"height":32},{"x":576,"y":0,"fileNum":12040,"id":8722,"width":32,"height":32},{"x":608,"y":0,"fileNum":12040,"id":8723,"width":32,"height":32},{"x":576,"y":32,"fileNum":12040,"id":8724,"width":32,"height":32},{"x":608,"y":32,"fileNum":12040,"id":8725,"width":32,"height":32},{"x":0,"y":64,"fileNum":12040,"id":8726,"width":32,"height":32},{"x":32,"y":64,"fileNum":12040,"id":8727,"width":32,"height":32},{"x":0,"y":96,"fileNum":12040,"id":8728,"width":32,"height":32},{"x":32,"y":96,"fileNum":12040,"id":8729,"width":32,"height":32},{"x":64,"y":64,"fileNum":12040,"id":8730,"width":32,"height":32},{"x":96,"y":64,"fileNum":12040,"id":8731,"width":32,"height":32},{"x":64,"y":96,"fileNum":12040,"id":8732,"width":32,"height":32},{"x":96,"y":96,"fileNum":12040,"id":8733,"width":32,"height":32},{"x":128,"y":64,"fileNum":12040,"id":8734,"width":32,"height":32},{"x":160,"y":64,"fileNum":12040,"id":8735,"width":32,"height":32},{"x":128,"y":96,"fileNum":12040,"id":8736,"width":32,"height":32},{"x":160,"y":96,"fileNum":12040,"id":8737,"width":32,"height":32},{"x":192,"y":64,"fileNum":12040,"id":8738,"width":32,"height":32},{"x":224,"y":64,"fileNum":12040,"id":8739,"width":32,"height":32},{"x":192,"y":96,"fileNum":12040,"id":8740,"width":32,"height":32},{"x":224,"y":96,"fileNum":12040,"id":8741,"width":32,"height":32},{"x":256,"y":64,"fileNum":12040,"id":8742,"width":32,"height":32},{"x":288,"y":64,"fileNum":12040,"id":8743,"width":32,"height":32},{"x":256,"y":96,"fileNum":12040,"id":8744,"width":32,"height":32},{"x":288,"y":96,"fileNum":12040,"id":8745,"width":32,"height":32},{"x":320,"y":64,"fileNum":12040,"id":8746,"width":32,"height":32},{"x":352,"y":64,"fileNum":12040,"id":8747,"width":32,"height":32},{"x":320,"y":96,"fileNum":12040,"id":8748,"width":32,"height":32},{"x":352,"y":96,"fileNum":12040,"id":8749,"width":32,"height":32},{"x":384,"y":64,"fileNum":12040,"id":8750,"width":32,"height":32},{"x":416,"y":64,"fileNum":12040,"id":8751,"width":32,"height":32},{"x":384,"y":96,"fileNum":12040,"id":8752,"width":32,"height":32},{"x":416,"y":96,"fileNum":12040,"id":8753,"width":32,"height":32},{"x":448,"y":64,"fileNum":12040,"id":8754,"width":32,"height":32},{"x":480,"y":64,"fileNum":12040,"id":8755,"width":32,"height":32},{"x":448,"y":96,"fileNum":12040,"id":8756,"width":32,"height":32},{"x":480,"y":96,"fileNum":12040,"id":8757,"width":32,"height":32},{"x":512,"y":64,"fileNum":12040,"id":8758,"width":32,"height":32},{"x":544,"y":64,"fileNum":12040,"id":8759,"width":32,"height":32},{"x":512,"y":96,"fileNum":12040,"id":8760,"width":32,"height":32},{"x":544,"y":96,"fileNum":12040,"id":8761,"width":32,"height":32},{"x":576,"y":64,"fileNum":12040,"id":8762,"width":32,"height":32},{"x":608,"y":64,"fileNum":12040,"id":8763,"width":32,"height":32},{"x":576,"y":96,"fileNum":12040,"id":8764,"width":32,"height":32},{"x":608,"y":96,"fileNum":12040,"id":8765,"width":32,"height":32},{"x":0,"y":128,"fileNum":12040,"id":8766,"width":32,"height":32},{"x":32,"y":128,"fileNum":12040,"id":8767,"width":32,"height":32},{"x":0,"y":160,"fileNum":12040,"id":8768,"width":32,"height":32},{"x":32,"y":160,"fileNum":12040,"id":8769,"width":32,"height":32},{"x":64,"y":128,"fileNum":12040,"id":8770,"width":32,"height":32},{"x":96,"y":128,"fileNum":12040,"id":8771,"width":32,"height":32},{"x":64,"y":160,"fileNum":12040,"id":8772,"width":32,"height":32},{"x":96,"y":160,"fileNum":12040,"id":8773,"width":32,"height":32},{"x":128,"y":128,"fileNum":12040,"id":8774,"width":32,"height":32},{"x":160,"y":128,"fileNum":12040,"id":8775,"width":32,"height":32},{"x":128,"y":160,"fileNum":12040,"id":8776,"width":32,"height":32},{"x":160,"y":160,"fileNum":12040,"id":8777,"width":32,"height":32},{"x":192,"y":128,"fileNum":12040,"id":8778,"width":32,"height":32},{"x":224,"y":128,"fileNum":12040,"id":8779,"width":32,"height":32},{"x":192,"y":160,"fileNum":12040,"id":8780,"width":32,"height":32},{"x":224,"y":160,"fileNum":12040,"id":8781,"width":32,"height":32},{"x":256,"y":128,"fileNum":12040,"id":8782,"width":32,"height":32},{"x":288,"y":128,"fileNum":12040,"id":8783,"width":32,"height":32},{"x":256,"y":160,"fileNum":12040,"id":8784,"width":32,"height":32},{"x":288,"y":160,"fileNum":12040,"id":8785,"width":32,"height":32},{"x":320,"y":128,"fileNum":12040,"id":8786,"width":32,"height":32},{"x":352,"y":128,"fileNum":12040,"id":8787,"width":32,"height":32},{"x":320,"y":160,"fileNum":12040,"id":8788,"width":32,"height":32},{"x":352,"y":160,"fileNum":12040,"id":8789,"width":32,"height":32},{"x":384,"y":128,"fileNum":12040,"id":8790,"width":32,"height":32},{"x":416,"y":128,"fileNum":12040,"id":8791,"width":32,"height":32},{"x":384,"y":160,"fileNum":12040,"id":8792,"width":32,"height":32},{"x":416,"y":160,"fileNum":12040,"id":8793,"width":32,"height":32},{"x":448,"y":128,"fileNum":12040,"id":8794,"width":32,"height":32},{"x":480,"y":128,"fileNum":12040,"id":8795,"width":32,"height":32},{"x":448,"y":160,"fileNum":12040,"id":8796,"width":32,"height":32},{"x":480,"y":160,"fileNum":12040,"id":8797,"width":32,"height":32},{"x":512,"y":128,"fileNum":12040,"id":8798,"width":32,"height":32},{"x":544,"y":128,"fileNum":12040,"id":8799,"width":32,"height":32},{"x":512,"y":160,"fileNum":12040,"id":8800,"width":32,"height":32},{"x":544,"y":160,"fileNum":12040,"id":8801,"width":32,"height":32},{"x":576,"y":128,"fileNum":12040,"id":8802,"width":32,"height":32},{"x":608,"y":128,"fileNum":12040,"id":8803,"width":32,"height":32},{"x":576,"y":160,"fileNum":12040,"id":8804,"width":32,"height":32},{"x":608,"y":160,"fileNum":12040,"id":8805,"width":32,"height":32},{"x":0,"y":192,"fileNum":12040,"id":8806,"width":32,"height":32},{"x":32,"y":192,"fileNum":12040,"id":8807,"width":32,"height":32},{"x":0,"y":224,"fileNum":12040,"id":8808,"width":32,"height":32},{"x":32,"y":224,"fileNum":12040,"id":8809,"width":32,"height":32},{"x":64,"y":192,"fileNum":12040,"id":8810,"width":32,"height":32},{"x":96,"y":192,"fileNum":12040,"id":8811,"width":32,"height":32},{"x":64,"y":224,"fileNum":12040,"id":8812,"width":32,"height":32},{"x":96,"y":224,"fileNum":12040,"id":8813,"width":32,"height":32},{"x":128,"y":192,"fileNum":12040,"id":8814,"width":32,"height":32},{"x":160,"y":192,"fileNum":12040,"id":8815,"width":32,"height":32},{"x":128,"y":224,"fileNum":12040,"id":8816,"width":32,"height":32},{"x":160,"y":224,"fileNum":12040,"id":8817,"width":32,"height":32},{"x":192,"y":192,"fileNum":12040,"id":8818,"width":32,"height":32},{"x":224,"y":192,"fileNum":12040,"id":8819,"width":32,"height":32},{"x":192,"y":224,"fileNum":12040,"id":8820,"width":32,"height":32},{"x":224,"y":224,"fileNum":12040,"id":8821,"width":32,"height":32},{"x":256,"y":192,"fileNum":12040,"id":8822,"width":32,"height":32},{"x":288,"y":192,"fileNum":12040,"id":8823,"width":32,"height":32},{"x":256,"y":224,"fileNum":12040,"id":8824,"width":32,"height":32},{"x":288,"y":224,"fileNum":12040,"id":8825,"width":32,"height":32},{"x":320,"y":192,"fileNum":12040,"id":8826,"width":32,"height":32},{"x":352,"y":192,"fileNum":12040,"id":8827,"width":32,"height":32},{"x":320,"y":224,"fileNum":12040,"id":8828,"width":32,"height":32},{"x":352,"y":224,"fileNum":12040,"id":8829,"width":32,"height":32},{"x":384,"y":192,"fileNum":12040,"id":8830,"width":32,"height":32},{"x":416,"y":192,"fileNum":12040,"id":8831,"width":32,"height":32},{"x":384,"y":224,"fileNum":12040,"id":8832,"width":32,"height":32},{"x":416,"y":224,"fileNum":12040,"id":8833,"width":32,"height":32},{"x":448,"y":192,"fileNum":12040,"id":8834,"width":32,"height":32},{"x":480,"y":192,"fileNum":12040,"id":8835,"width":32,"height":32},{"x":448,"y":224,"fileNum":12040,"id":8836,"width":32,"height":32},{"x":480,"y":224,"fileNum":12040,"id":8837,"width":32,"height":32},{"x":512,"y":192,"fileNum":12040,"id":8838,"width":32,"height":32},{"x":544,"y":192,"fileNum":12040,"id":8839,"width":32,"height":32},{"x":512,"y":224,"fileNum":12040,"id":8840,"width":32,"height":32},{"x":544,"y":224,"fileNum":12040,"id":8841,"width":32,"height":32},{"x":576,"y":192,"fileNum":12040,"id":8842,"width":32,"height":32},{"x":608,"y":192,"fileNum":12040,"id":8843,"width":32,"height":32},{"x":576,"y":224,"fileNum":12040,"id":8844,"width":32,"height":32},{"x":608,"y":224,"fileNum":12040,"id":8845,"width":32,"height":32},{"x":0,"y":256,"fileNum":12040,"id":8846,"width":32,"height":32},{"x":32,"y":256,"fileNum":12040,"id":8847,"width":32,"height":32},{"x":0,"y":288,"fileNum":12040,"id":8848,"width":32,"height":32},{"x":32,"y":288,"fileNum":12040,"id":8849,"width":32,"height":32},{"x":64,"y":256,"fileNum":12040,"id":8850,"width":32,"height":32},{"x":96,"y":256,"fileNum":12040,"id":8851,"width":32,"height":32},{"x":64,"y":288,"fileNum":12040,"id":8852,"width":32,"height":32},{"x":96,"y":288,"fileNum":12040,"id":8853,"width":32,"height":32},{"x":128,"y":256,"fileNum":12040,"id":8854,"width":32,"height":32},{"x":160,"y":256,"fileNum":12040,"id":8855,"width":32,"height":32},{"x":128,"y":288,"fileNum":12040,"id":8856,"width":32,"height":32},{"x":160,"y":288,"fileNum":12040,"id":8857,"width":32,"height":32},{"x":192,"y":256,"fileNum":12040,"id":8858,"width":32,"height":32},{"x":224,"y":256,"fileNum":12040,"id":8859,"width":32,"height":32},{"x":192,"y":288,"fileNum":12040,"id":8860,"width":32,"height":32},{"x":224,"y":288,"fileNum":12040,"id":8861,"width":32,"height":32},{"x":256,"y":256,"fileNum":12040,"id":8862,"width":32,"height":32},{"x":288,"y":256,"fileNum":12040,"id":8863,"width":32,"height":32},{"x":256,"y":288,"fileNum":12040,"id":8864,"width":32,"height":32},{"x":288,"y":288,"fileNum":12040,"id":8865,"width":32,"height":32},{"x":320,"y":256,"fileNum":12040,"id":8866,"width":32,"height":32},{"x":352,"y":256,"fileNum":12040,"id":8867,"width":32,"height":32},{"x":320,"y":288,"fileNum":12040,"id":8868,"width":32,"height":32},{"x":352,"y":288,"fileNum":12040,"id":8869,"width":32,"height":32},{"x":384,"y":256,"fileNum":12040,"id":8870,"width":32,"height":32},{"x":416,"y":256,"fileNum":12040,"id":8871,"width":32,"height":32},{"x":384,"y":288,"fileNum":12040,"id":8872,"width":32,"height":32},{"x":416,"y":288,"fileNum":12040,"id":8873,"width":32,"height":32},{"x":448,"y":256,"fileNum":12040,"id":8874,"width":32,"height":32},{"x":480,"y":256,"fileNum":12040,"id":8875,"width":32,"height":32},{"x":448,"y":288,"fileNum":12040,"id":8876,"width":32,"height":32},{"x":480,"y":288,"fileNum":12040,"id":8877,"width":32,"height":32},{"x":512,"y":256,"fileNum":12040,"id":8878,"width":32,"height":32},{"x":544,"y":256,"fileNum":12040,"id":8879,"width":32,"height":32},{"x":512,"y":288,"fileNum":12040,"id":8880,"width":32,"height":32},{"x":544,"y":288,"fileNum":12040,"id":8881,"width":32,"height":32},{"x":576,"y":256,"fileNum":12040,"id":8882,"width":32,"height":32},{"x":608,"y":256,"fileNum":12040,"id":8883,"width":32,"height":32},{"x":576,"y":288,"fileNum":12040,"id":8884,"width":32,"height":32},{"x":608,"y":288,"fileNum":12040,"id":8885,"width":32,"height":32},{"x":0,"y":320,"fileNum":12040,"id":8886,"width":32,"height":32},{"x":32,"y":320,"fileNum":12040,"id":8887,"width":32,"height":32},{"x":0,"y":352,"fileNum":12040,"id":8888,"width":32,"height":32},{"x":32,"y":352,"fileNum":12040,"id":8889,"width":32,"height":32},{"x":64,"y":320,"fileNum":12040,"id":8890,"width":32,"height":32},{"x":96,"y":320,"fileNum":12040,"id":8891,"width":32,"height":32},{"x":64,"y":352,"fileNum":12040,"id":8892,"width":32,"height":32},{"x":96,"y":352,"fileNum":12040,"id":8893,"width":32,"height":32},{"x":128,"y":320,"fileNum":12040,"id":8894,"width":32,"height":32},{"x":160,"y":320,"fileNum":12040,"id":8895,"width":32,"height":32},{"x":128,"y":352,"fileNum":12040,"id":8896,"width":32,"height":32},{"x":160,"y":352,"fileNum":12040,"id":8897,"width":32,"height":32},{"x":192,"y":320,"fileNum":12040,"id":8898,"width":32,"height":32},{"x":224,"y":320,"fileNum":12040,"id":8899,"width":32,"height":32},{"x":192,"y":352,"fileNum":12040,"id":8900,"width":32,"height":32},{"x":224,"y":352,"fileNum":12040,"id":8901,"width":32,"height":32},{"x":256,"y":320,"fileNum":12040,"id":8902,"width":32,"height":32},{"x":288,"y":320,"fileNum":12040,"id":8903,"width":32,"height":32},{"x":256,"y":352,"fileNum":12040,"id":8904,"width":32,"height":32},{"x":288,"y":352,"fileNum":12040,"id":8905,"width":32,"height":32},{"x":320,"y":320,"fileNum":12040,"id":8906,"width":32,"height":32},{"x":352,"y":320,"fileNum":12040,"id":8907,"width":32,"height":32},{"x":320,"y":352,"fileNum":12040,"id":8908,"width":32,"height":32},{"x":352,"y":352,"fileNum":12040,"id":8909,"width":32,"height":32},{"x":384,"y":320,"fileNum":12040,"id":8910,"width":32,"height":32},{"x":416,"y":320,"fileNum":12040,"id":8911,"width":32,"height":32},{"x":384,"y":352,"fileNum":12040,"id":8912,"width":32,"height":32},{"x":416,"y":352,"fileNum":12040,"id":8913,"width":32,"height":32},{"x":448,"y":320,"fileNum":12040,"id":8914,"width":32,"height":32},{"x":480,"y":320,"fileNum":12040,"id":8915,"width":32,"height":32},{"x":448,"y":352,"fileNum":12040,"id":8916,"width":32,"height":32},{"x":480,"y":352,"fileNum":12040,"id":8917,"width":32,"height":32},{"x":512,"y":320,"fileNum":12040,"id":8918,"width":32,"height":32},{"x":544,"y":320,"fileNum":12040,"id":8919,"width":32,"height":32},{"x":512,"y":352,"fileNum":12040,"id":8920,"width":32,"height":32},{"x":544,"y":352,"fileNum":12040,"id":8921,"width":32,"height":32},{"x":576,"y":320,"fileNum":12040,"id":8922,"width":32,"height":32},{"x":608,"y":320,"fileNum":12040,"id":8923,"width":32,"height":32},{"x":576,"y":352,"fileNum":12040,"id":8924,"width":32,"height":32},{"x":608,"y":352,"fileNum":12040,"id":8925,"width":32,"height":32},{"x":0,"y":384,"fileNum":12040,"id":8926,"width":32,"height":32},{"x":32,"y":384,"fileNum":12040,"id":8927,"width":32,"height":32},{"x":0,"y":416,"fileNum":12040,"id":8928,"width":32,"height":32},{"x":32,"y":416,"fileNum":12040,"id":8929,"width":32,"height":32},{"x":64,"y":384,"fileNum":12040,"id":8930,"width":32,"height":32},{"x":96,"y":384,"fileNum":12040,"id":8931,"width":32,"height":32},{"x":64,"y":416,"fileNum":12040,"id":8932,"width":32,"height":32},{"x":96,"y":416,"fileNum":12040,"id":8933,"width":32,"height":32},{"x":128,"y":384,"fileNum":12040,"id":8934,"width":32,"height":32},{"x":160,"y":384,"fileNum":12040,"id":8935,"width":32,"height":32},{"x":128,"y":416,"fileNum":12040,"id":8936,"width":32,"height":32},{"x":160,"y":416,"fileNum":12040,"id":8937,"width":32,"height":32},{"x":192,"y":384,"fileNum":12040,"id":8938,"width":32,"height":32},{"x":224,"y":384,"fileNum":12040,"id":8939,"width":32,"height":32},{"x":192,"y":416,"fileNum":12040,"id":8940,"width":32,"height":32},{"x":224,"y":416,"fileNum":12040,"id":8941,"width":32,"height":32},{"x":256,"y":384,"fileNum":12040,"id":8942,"width":32,"height":32},{"x":288,"y":384,"fileNum":12040,"id":8943,"width":32,"height":32},{"x":256,"y":416,"fileNum":12040,"id":8944,"width":32,"height":32},{"x":288,"y":416,"fileNum":12040,"id":8945,"width":32,"height":32},{"x":320,"y":384,"fileNum":12040,"id":8946,"width":32,"height":32},{"x":352,"y":384,"fileNum":12040,"id":8947,"width":32,"height":32},{"x":320,"y":416,"fileNum":12040,"id":8948,"width":32,"height":32},{"x":352,"y":416,"fileNum":12040,"id":8949,"width":32,"height":32},{"x":384,"y":384,"fileNum":12040,"id":8950,"width":32,"height":32},{"x":416,"y":384,"fileNum":12040,"id":8951,"width":32,"height":32},{"x":384,"y":416,"fileNum":12040,"id":8952,"width":32,"height":32},{"x":416,"y":416,"fileNum":12040,"id":8953,"width":32,"height":32},{"x":448,"y":384,"fileNum":12040,"id":8954,"width":32,"height":32},{"x":480,"y":384,"fileNum":12040,"id":8955,"width":32,"height":32},{"x":448,"y":416,"fileNum":12040,"id":8956,"width":32,"height":32},{"x":480,"y":416,"fileNum":12040,"id":8957,"width":32,"height":32},{"x":512,"y":384,"fileNum":12040,"id":8958,"width":32,"height":32},{"x":544,"y":384,"fileNum":12040,"id":8959,"width":32,"height":32},{"x":512,"y":416,"fileNum":12040,"id":8960,"width":32,"height":32},{"x":544,"y":416,"fileNum":12040,"id":8961,"width":32,"height":32},{"x":576,"y":384,"fileNum":12040,"id":8962,"width":32,"height":32},{"x":608,"y":384,"fileNum":12040,"id":8963,"width":32,"height":32},{"x":576,"y":416,"fileNum":12040,"id":8964,"width":32,"height":32},{"x":608,"y":416,"fileNum":12040,"id":8965,"width":32,"height":32},{"x":0,"y":448,"fileNum":12040,"id":8966,"width":32,"height":32},{"x":32,"y":448,"fileNum":12040,"id":8967,"width":32,"height":32},{"x":0,"y":480,"fileNum":12040,"id":8968,"width":32,"height":32},{"x":32,"y":480,"fileNum":12040,"id":8969,"width":32,"height":32},{"x":64,"y":448,"fileNum":12040,"id":8970,"width":32,"height":32},{"x":96,"y":448,"fileNum":12040,"id":8971,"width":32,"height":32},{"x":64,"y":480,"fileNum":12040,"id":8972,"width":32,"height":32},{"x":96,"y":480,"fileNum":12040,"id":8973,"width":32,"height":32},{"x":128,"y":448,"fileNum":12040,"id":8974,"width":32,"height":32},{"x":160,"y":448,"fileNum":12040,"id":8975,"width":32,"height":32},{"x":128,"y":480,"fileNum":12040,"id":8976,"width":32,"height":32},{"x":160,"y":480,"fileNum":12040,"id":8977,"width":32,"height":32},{"x":192,"y":448,"fileNum":12040,"id":8978,"width":32,"height":32},{"x":224,"y":448,"fileNum":12040,"id":8979,"width":32,"height":32},{"x":192,"y":480,"fileNum":12040,"id":8980,"width":32,"height":32},{"x":224,"y":480,"fileNum":12040,"id":8981,"width":32,"height":32},{"x":256,"y":448,"fileNum":12040,"id":8982,"width":32,"height":32},{"x":288,"y":448,"fileNum":12040,"id":8983,"width":32,"height":32},{"x":256,"y":480,"fileNum":12040,"id":8984,"width":32,"height":32},{"x":288,"y":480,"fileNum":12040,"id":8985,"width":32,"height":32},{"x":320,"y":448,"fileNum":12040,"id":8986,"width":32,"height":32},{"x":352,"y":448,"fileNum":12040,"id":8987,"width":32,"height":32},{"x":320,"y":480,"fileNum":12040,"id":8988,"width":32,"height":32},{"x":352,"y":480,"fileNum":12040,"id":8989,"width":32,"height":32},{"x":384,"y":448,"fileNum":12040,"id":8990,"width":32,"height":32},{"x":416,"y":448,"fileNum":12040,"id":8991,"width":32,"height":32},{"x":384,"y":480,"fileNum":12040,"id":8992,"width":32,"height":32},{"x":416,"y":480,"fileNum":12040,"id":8993,"width":32,"height":32},{"x":448,"y":448,"fileNum":12040,"id":8994,"width":32,"height":32},{"x":480,"y":448,"fileNum":12040,"id":8995,"width":32,"height":32},{"x":448,"y":480,"fileNum":12040,"id":8996,"width":32,"height":32},{"x":480,"y":480,"fileNum":12040,"id":8997,"width":32,"height":32},{"x":512,"y":448,"fileNum":12040,"id":8998,"width":32,"height":32},{"x":544,"y":448,"fileNum":12040,"id":8999,"width":32,"height":32},{"x":512,"y":480,"fileNum":12040,"id":9000,"width":32,"height":32},{"x":544,"y":480,"fileNum":12040,"id":9001,"width":32,"height":32},{"x":576,"y":448,"fileNum":12040,"id":9002,"width":32,"height":32},{"x":608,"y":448,"fileNum":12040,"id":9003,"width":32,"height":32},{"x":576,"y":480,"fileNum":12040,"id":9004,"width":32,"height":32},{"x":608,"y":480,"fileNum":12040,"id":9005,"width":32,"height":32},{"x":0,"y":512,"fileNum":12040,"id":9006,"width":32,"height":32},{"x":32,"y":512,"fileNum":12040,"id":9007,"width":32,"height":32},{"x":0,"y":544,"fileNum":12040,"id":9008,"width":32,"height":32},{"x":32,"y":544,"fileNum":12040,"id":9009,"width":32,"height":32},{"x":64,"y":512,"fileNum":12040,"id":9010,"width":32,"height":32},{"x":96,"y":512,"fileNum":12040,"id":9011,"width":32,"height":32},{"x":64,"y":544,"fileNum":12040,"id":9012,"width":32,"height":32},{"x":96,"y":544,"fileNum":12040,"id":9013,"width":32,"height":32},{"x":128,"y":512,"fileNum":12040,"id":9014,"width":32,"height":32},{"x":160,"y":512,"fileNum":12040,"id":9015,"width":32,"height":32},{"x":128,"y":544,"fileNum":12040,"id":9016,"width":32,"height":32},{"x":160,"y":544,"fileNum":12040,"id":9017,"width":32,"height":32},{"x":192,"y":512,"fileNum":12040,"id":9018,"width":32,"height":32},{"x":224,"y":512,"fileNum":12040,"id":9019,"width":32,"height":32},{"x":192,"y":544,"fileNum":12040,"id":9020,"width":32,"height":32},{"x":224,"y":544,"fileNum":12040,"id":9021,"width":32,"height":32},{"x":256,"y":512,"fileNum":12040,"id":9022,"width":32,"height":32},{"x":288,"y":512,"fileNum":12040,"id":9023,"width":32,"height":32},{"x":256,"y":544,"fileNum":12040,"id":9024,"width":32,"height":32},{"x":288,"y":544,"fileNum":12040,"id":9025,"width":32,"height":32},{"x":320,"y":512,"fileNum":12040,"id":9026,"width":32,"height":32},{"x":352,"y":512,"fileNum":12040,"id":9027,"width":32,"height":32},{"x":320,"y":544,"fileNum":12040,"id":9028,"width":32,"height":32},{"x":352,"y":544,"fileNum":12040,"id":9029,"width":32,"height":32},{"x":384,"y":512,"fileNum":12040,"id":9030,"width":32,"height":32},{"x":416,"y":512,"fileNum":12040,"id":9031,"width":32,"height":32},{"x":384,"y":544,"fileNum":12040,"id":9032,"width":32,"height":32},{"x":416,"y":544,"fileNum":12040,"id":9033,"width":32,"height":32},{"x":448,"y":512,"fileNum":12040,"id":9034,"width":32,"height":32},{"x":480,"y":512,"fileNum":12040,"id":9035,"width":32,"height":32},{"x":448,"y":544,"fileNum":12040,"id":9036,"width":32,"height":32},{"x":480,"y":544,"fileNum":12040,"id":9037,"width":32,"height":32},{"x":512,"y":512,"fileNum":12040,"id":9038,"width":32,"height":32},{"x":544,"y":512,"fileNum":12040,"id":9039,"width":32,"height":32},{"x":512,"y":544,"fileNum":12040,"id":9040,"width":32,"height":32},{"x":544,"y":544,"fileNum":12040,"id":9041,"width":32,"height":32},{"x":576,"y":512,"fileNum":12040,"id":9042,"width":32,"height":32},{"x":608,"y":512,"fileNum":12040,"id":9043,"width":32,"height":32},{"x":576,"y":544,"fileNum":12040,"id":9044,"width":32,"height":32},{"x":608,"y":544,"fileNum":12040,"id":9045,"width":32,"height":32},{"x":0,"y":576,"fileNum":12040,"id":9046,"width":32,"height":32},{"x":32,"y":576,"fileNum":12040,"id":9047,"width":32,"height":32},{"x":0,"y":608,"fileNum":12040,"id":9048,"width":32,"height":32},{"x":32,"y":608,"fileNum":12040,"id":9049,"width":32,"height":32},{"x":64,"y":576,"fileNum":12040,"id":9050,"width":32,"height":32},{"x":96,"y":576,"fileNum":12040,"id":9051,"width":32,"height":32},{"x":64,"y":608,"fileNum":12040,"id":9052,"width":32,"height":32},{"x":96,"y":608,"fileNum":12040,"id":9053,"width":32,"height":32},{"x":128,"y":576,"fileNum":12040,"id":9054,"width":32,"height":32},{"x":160,"y":576,"fileNum":12040,"id":9055,"width":32,"height":32},{"x":128,"y":608,"fileNum":12040,"id":9056,"width":32,"height":32},{"x":160,"y":608,"fileNum":12040,"id":9057,"width":32,"height":32},{"x":192,"y":576,"fileNum":12040,"id":9058,"width":32,"height":32},{"x":224,"y":576,"fileNum":12040,"id":9059,"width":32,"height":32},{"x":192,"y":608,"fileNum":12040,"id":9060,"width":32,"height":32},{"x":224,"y":608,"fileNum":12040,"id":9061,"width":32,"height":32},{"x":256,"y":576,"fileNum":12040,"id":9062,"width":32,"height":32},{"x":288,"y":576,"fileNum":12040,"id":9063,"width":32,"height":32},{"x":256,"y":608,"fileNum":12040,"id":9064,"width":32,"height":32},{"x":288,"y":608,"fileNum":12040,"id":9065,"width":32,"height":32},{"x":320,"y":576,"fileNum":12040,"id":9066,"width":32,"height":32},{"x":352,"y":576,"fileNum":12040,"id":9067,"width":32,"height":32},{"x":320,"y":608,"fileNum":12040,"id":9068,"width":32,"height":32},{"x":352,"y":608,"fileNum":12040,"id":9069,"width":32,"height":32},{"x":384,"y":576,"fileNum":12040,"id":9070,"width":32,"height":32},{"x":416,"y":576,"fileNum":12040,"id":9071,"width":32,"height":32},{"x":384,"y":608,"fileNum":12040,"id":9072,"width":32,"height":32},{"x":416,"y":608,"fileNum":12040,"id":9073,"width":32,"height":32},{"x":448,"y":576,"fileNum":12040,"id":9074,"width":32,"height":32},{"x":480,"y":576,"fileNum":12040,"id":9075,"width":32,"height":32},{"x":448,"y":608,"fileNum":12040,"id":9076,"width":32,"height":32},{"x":480,"y":608,"fileNum":12040,"id":9077,"width":32,"height":32},{"x":512,"y":576,"fileNum":12040,"id":9078,"width":32,"height":32},{"x":544,"y":576,"fileNum":12040,"id":9079,"width":32,"height":32},{"x":512,"y":608,"fileNum":12040,"id":9080,"width":32,"height":32},{"x":544,"y":608,"fileNum":12040,"id":9081,"width":32,"height":32},{"x":576,"y":576,"fileNum":12040,"id":9082,"width":32,"height":32},{"x":608,"y":576,"fileNum":12040,"id":9083,"width":32,"height":32},{"x":576,"y":608,"fileNum":12040,"id":9084,"width":32,"height":32},{"x":608,"y":608,"fileNum":12040,"id":9085,"width":32,"height":32},{"x":0,"y":0,"fileNum":11044,"id":9087,"width":32,"height":32},{"x":32,"y":0,"fileNum":11044,"id":9088,"width":32,"height":32},{"x":64,"y":0,"fileNum":11044,"id":9089,"width":32,"height":32},{"x":0,"y":32,"fileNum":11044,"id":9090,"width":32,"height":32},{"x":32,"y":32,"fileNum":11044,"id":9091,"width":32,"height":32},{"x":64,"y":32,"fileNum":11044,"id":9092,"width":32,"height":32},{"x":0,"y":64,"fileNum":11044,"id":9093,"width":32,"height":32},{"x":32,"y":64,"fileNum":11044,"id":9094,"width":32,"height":32},{"x":64,"y":64,"fileNum":11044,"id":9095,"width":32,"height":32},{"x":96,"y":0,"fileNum":11044,"id":9096,"width":32,"height":32},{"x":128,"y":0,"fileNum":11044,"id":9097,"width":32,"height":32},{"x":160,"y":0,"fileNum":11044,"id":9098,"width":32,"height":32},{"x":96,"y":32,"fileNum":11044,"id":9099,"width":32,"height":32},{"x":128,"y":32,"fileNum":11044,"id":9100,"width":32,"height":32},{"x":160,"y":32,"fileNum":11044,"id":9101,"width":32,"height":32},{"x":96,"y":64,"fileNum":11044,"id":9102,"width":32,"height":32},{"x":128,"y":64,"fileNum":11044,"id":9103,"width":32,"height":32},{"x":160,"y":64,"fileNum":11044,"id":9104,"width":32,"height":32},{"x":192,"y":0,"fileNum":11044,"id":9105,"width":32,"height":32},{"x":224,"y":0,"fileNum":11044,"id":9106,"width":32,"height":32},{"x":256,"y":0,"fileNum":11044,"id":9107,"width":32,"height":32},{"x":192,"y":32,"fileNum":11044,"id":9108,"width":32,"height":32},{"x":224,"y":32,"fileNum":11044,"id":9109,"width":32,"height":32},{"x":256,"y":32,"fileNum":11044,"id":9110,"width":32,"height":32},{"x":192,"y":64,"fileNum":11044,"id":9111,"width":32,"height":32},{"x":224,"y":64,"fileNum":11044,"id":9112,"width":32,"height":32},{"x":256,"y":64,"fileNum":11044,"id":9113,"width":32,"height":32},{"x":0,"y":96,"fileNum":11044,"id":9114,"width":32,"height":32},{"x":32,"y":96,"fileNum":11044,"id":9115,"width":32,"height":32},{"x":64,"y":96,"fileNum":11044,"id":9116,"width":32,"height":32},{"x":0,"y":128,"fileNum":11044,"id":9117,"width":32,"height":32},{"x":32,"y":128,"fileNum":11044,"id":9118,"width":32,"height":32},{"x":64,"y":128,"fileNum":11044,"id":9119,"width":32,"height":32},{"x":0,"y":160,"fileNum":11044,"id":9120,"width":32,"height":32},{"x":32,"y":160,"fileNum":11044,"id":9121,"width":32,"height":32},{"x":64,"y":160,"fileNum":11044,"id":9122,"width":32,"height":32},{"x":96,"y":96,"fileNum":11044,"id":9123,"width":32,"height":32},{"x":128,"y":96,"fileNum":11044,"id":9124,"width":32,"height":32},{"x":160,"y":96,"fileNum":11044,"id":9125,"width":32,"height":32},{"x":96,"y":128,"fileNum":11044,"id":9126,"width":32,"height":32},{"x":128,"y":128,"fileNum":11044,"id":9127,"width":32,"height":32},{"x":160,"y":128,"fileNum":11044,"id":9128,"width":32,"height":32},{"x":96,"y":160,"fileNum":11044,"id":9129,"width":32,"height":32},{"x":128,"y":160,"fileNum":11044,"id":9130,"width":32,"height":32},{"x":160,"y":160,"fileNum":11044,"id":9131,"width":32,"height":32},{"x":192,"y":96,"fileNum":11044,"id":9132,"width":32,"height":32},{"x":224,"y":96,"fileNum":11044,"id":9133,"width":32,"height":32},{"x":256,"y":96,"fileNum":11044,"id":9134,"width":32,"height":32},{"x":192,"y":128,"fileNum":11044,"id":9135,"width":32,"height":32},{"x":224,"y":128,"fileNum":11044,"id":9136,"width":32,"height":32},{"x":256,"y":128,"fileNum":11044,"id":9137,"width":32,"height":32},{"x":192,"y":160,"fileNum":11044,"id":9138,"width":32,"height":32},{"x":224,"y":160,"fileNum":11044,"id":9139,"width":32,"height":32},{"x":256,"y":160,"fileNum":11044,"id":9140,"width":32,"height":32},{"x":0,"y":0,"fileNum":14036,"id":9141,"width":32,"height":32},{"x":32,"y":0,"fileNum":14036,"id":9142,"width":32,"height":32},{"x":0,"y":32,"fileNum":14036,"id":9143,"width":32,"height":32},{"x":32,"y":32,"fileNum":14036,"id":9144,"width":32,"height":32},{"x":64,"y":0,"fileNum":14036,"id":9145,"width":32,"height":32},{"x":96,"y":0,"fileNum":14036,"id":9146,"width":32,"height":32},{"x":64,"y":32,"fileNum":14036,"id":9147,"width":32,"height":32},{"x":96,"y":32,"fileNum":14036,"id":9148,"width":32,"height":32},{"x":128,"y":0,"fileNum":14036,"id":9149,"width":32,"height":32},{"x":160,"y":0,"fileNum":14036,"id":9150,"width":32,"height":32},{"x":128,"y":32,"fileNum":14036,"id":9151,"width":32,"height":32},{"x":160,"y":32,"fileNum":14036,"id":9152,"width":32,"height":32},{"x":192,"y":0,"fileNum":14036,"id":9153,"width":32,"height":32},{"x":224,"y":0,"fileNum":14036,"id":9154,"width":32,"height":32},{"x":192,"y":32,"fileNum":14036,"id":9155,"width":32,"height":32},{"x":224,"y":32,"fileNum":14036,"id":9156,"width":32,"height":32},{"x":0,"y":0,"fileNum":14037,"id":9157,"width":32,"height":32},{"x":32,"y":0,"fileNum":14037,"id":9158,"width":32,"height":32},{"x":0,"y":32,"fileNum":14037,"id":9159,"width":32,"height":32},{"x":32,"y":32,"fileNum":14037,"id":9160,"width":32,"height":32},{"x":64,"y":0,"fileNum":14037,"id":9161,"width":32,"height":32},{"x":96,"y":0,"fileNum":14037,"id":9162,"width":32,"height":32},{"x":64,"y":32,"fileNum":14037,"id":9163,"width":32,"height":32},{"x":96,"y":32,"fileNum":14037,"id":9164,"width":32,"height":32},{"x":128,"y":0,"fileNum":14037,"id":9165,"width":32,"height":32},{"x":160,"y":0,"fileNum":14037,"id":9166,"width":32,"height":32},{"x":128,"y":32,"fileNum":14037,"id":9167,"width":32,"height":32},{"x":160,"y":32,"fileNum":14037,"id":9168,"width":32,"height":32},{"x":192,"y":0,"fileNum":14037,"id":9169,"width":32,"height":32},{"x":224,"y":0,"fileNum":14037,"id":9170,"width":32,"height":32},{"x":192,"y":32,"fileNum":14037,"id":9171,"width":32,"height":32},{"x":224,"y":32,"fileNum":14037,"id":9172,"width":32,"height":32},{"x":0,"y":0,"fileNum":14038,"id":9173,"width":32,"height":32},{"x":32,"y":0,"fileNum":14038,"id":9174,"width":32,"height":32},{"x":0,"y":32,"fileNum":14038,"id":9175,"width":32,"height":32},{"x":32,"y":32,"fileNum":14038,"id":9176,"width":32,"height":32},{"x":64,"y":0,"fileNum":14038,"id":9177,"width":32,"height":32},{"x":96,"y":0,"fileNum":14038,"id":9178,"width":32,"height":32},{"x":64,"y":32,"fileNum":14038,"id":9179,"width":32,"height":32},{"x":96,"y":32,"fileNum":14038,"id":9180,"width":32,"height":32},{"x":128,"y":0,"fileNum":14038,"id":9181,"width":32,"height":32},{"x":160,"y":0,"fileNum":14038,"id":9182,"width":32,"height":32},{"x":128,"y":32,"fileNum":14038,"id":9183,"width":32,"height":32},{"x":160,"y":32,"fileNum":14038,"id":9184,"width":32,"height":32},{"x":192,"y":0,"fileNum":14038,"id":9185,"width":32,"height":32},{"x":224,"y":0,"fileNum":14038,"id":9186,"width":32,"height":32},{"x":192,"y":32,"fileNum":14038,"id":9187,"width":32,"height":32},{"x":224,"y":32,"fileNum":14038,"id":9188,"width":32,"height":32},{"x":0,"y":0,"fileNum":14039,"id":9189,"width":32,"height":32},{"x":32,"y":0,"fileNum":14039,"id":9190,"width":32,"height":32},{"x":0,"y":32,"fileNum":14039,"id":9191,"width":32,"height":32},{"x":32,"y":32,"fileNum":14039,"id":9192,"width":32,"height":32},{"x":0,"y":0,"fileNum":11045,"id":9193,"width":96,"height":96},{"x":96,"y":0,"fileNum":11045,"id":9194,"width":96,"height":96},{"x":192,"y":0,"fileNum":11045,"id":9195,"width":96,"height":96},{"x":0,"y":96,"fileNum":11045,"id":9196,"width":96,"height":96},{"x":96,"y":96,"fileNum":11045,"id":9197,"width":96,"height":96},{"x":192,"y":96,"fileNum":11045,"id":9198,"width":96,"height":96},{"x":0,"y":0,"fileNum":11046,"id":9199,"width":96,"height":96},{"x":96,"y":0,"fileNum":11046,"id":9200,"width":96,"height":96},{"x":192,"y":0,"fileNum":11046,"id":9201,"width":96,"height":96},{"x":0,"y":96,"fileNum":11046,"id":9202,"width":96,"height":96},{"x":96,"y":96,"fileNum":11046,"id":9203,"width":96,"height":96},{"x":192,"y":96,"fileNum":11046,"id":9204,"width":96,"height":96},{"x":0,"y":0,"fileNum":10009,"id":9205,"width":204,"height":192},{"x":0,"y":192,"fileNum":10009,"id":9206,"width":204,"height":160},{"x":0,"y":0,"fileNum":2171,"id":9207,"width":17,"height":50},{"x":17,"y":0,"fileNum":2171,"id":9208,"width":17,"height":50},{"x":34,"y":0,"fileNum":2171,"id":9209,"width":17,"height":50},{"x":51,"y":0,"fileNum":2171,"id":9210,"width":17,"height":50},{"x":0,"y":0,"fileNum":2172,"id":9211,"width":17,"height":50},{"x":17,"y":0,"fileNum":2172,"id":9212,"width":17,"height":50},{"x":34,"y":0,"fileNum":2172,"id":9213,"width":17,"height":50},{"x":51,"y":0,"fileNum":2172,"id":9214,"width":17,"height":50},{"x":0,"y":0,"fileNum":2173,"id":9215,"width":17,"height":50},{"x":17,"y":0,"fileNum":2173,"id":9216,"width":17,"height":50},{"x":34,"y":0,"fileNum":2173,"id":9217,"width":17,"height":50},{"x":51,"y":0,"fileNum":2173,"id":9218,"width":17,"height":50},{"x":0,"y":0,"fileNum":10009,"id":9219,"width":204,"height":201},{"x":0,"y":0,"fileNum":8111,"id":9220,"width":32,"height":32},{"x":32,"y":0,"fileNum":8111,"id":9221,"width":32,"height":32},{"x":64,"y":0,"fileNum":8111,"id":9222,"width":32,"height":32},{"x":96,"y":0,"fileNum":8111,"id":9223,"width":32,"height":32},{"x":0,"y":32,"fileNum":8111,"id":9224,"width":32,"height":32},{"x":32,"y":32,"fileNum":8111,"id":9225,"width":32,"height":32},{"x":64,"y":32,"fileNum":8111,"id":9226,"width":32,"height":32},{"x":96,"y":32,"fileNum":8111,"id":9227,"width":32,"height":32},{"x":0,"y":64,"fileNum":8111,"id":9228,"width":32,"height":32},{"x":32,"y":64,"fileNum":8111,"id":9229,"width":32,"height":32},{"x":64,"y":64,"fileNum":8111,"id":9230,"width":32,"height":32},{"x":96,"y":64,"fileNum":8111,"id":9231,"width":32,"height":32},{"x":0,"y":96,"fileNum":8111,"id":9232,"width":32,"height":32},{"x":32,"y":96,"fileNum":8111,"id":9233,"width":32,"height":32},{"x":64,"y":96,"fileNum":8111,"id":9234,"width":32,"height":32},{"x":96,"y":96,"fileNum":8111,"id":9235,"width":32,"height":32},{"x":128,"y":0,"fileNum":8111,"id":9236,"width":32,"height":32},{"x":160,"y":0,"fileNum":8111,"id":9237,"width":32,"height":32},{"x":192,"y":0,"fileNum":8111,"id":9238,"width":32,"height":32},{"x":224,"y":0,"fileNum":8111,"id":9239,"width":32,"height":32},{"x":128,"y":32,"fileNum":8111,"id":9240,"width":32,"height":32},{"x":160,"y":32,"fileNum":8111,"id":9241,"width":32,"height":32},{"x":192,"y":32,"fileNum":8111,"id":9242,"width":32,"height":32},{"x":224,"y":32,"fileNum":8111,"id":9243,"width":32,"height":32},{"x":128,"y":64,"fileNum":8111,"id":9244,"width":32,"height":32},{"x":160,"y":64,"fileNum":8111,"id":9245,"width":32,"height":32},{"x":192,"y":64,"fileNum":8111,"id":9246,"width":32,"height":32},{"x":224,"y":64,"fileNum":8111,"id":9247,"width":32,"height":32},{"x":128,"y":96,"fileNum":8111,"id":9248,"width":32,"height":32},{"x":160,"y":96,"fileNum":8111,"id":9249,"width":32,"height":32},{"x":192,"y":96,"fileNum":8111,"id":9250,"width":32,"height":32},{"x":224,"y":96,"fileNum":8111,"id":9251,"width":32,"height":32},{"x":256,"y":0,"fileNum":8111,"id":9252,"width":32,"height":32},{"x":288,"y":0,"fileNum":8111,"id":9253,"width":32,"height":32},{"x":320,"y":0,"fileNum":8111,"id":9254,"width":32,"height":32},{"x":352,"y":0,"fileNum":8111,"id":9255,"width":32,"height":32},{"x":256,"y":32,"fileNum":8111,"id":9256,"width":32,"height":32},{"x":288,"y":32,"fileNum":8111,"id":9257,"width":32,"height":32},{"x":320,"y":32,"fileNum":8111,"id":9258,"width":32,"height":32},{"x":352,"y":32,"fileNum":8111,"id":9259,"width":32,"height":32},{"x":256,"y":64,"fileNum":8111,"id":9260,"width":32,"height":32},{"x":288,"y":64,"fileNum":8111,"id":9261,"width":32,"height":32},{"x":320,"y":64,"fileNum":8111,"id":9262,"width":32,"height":32},{"x":352,"y":64,"fileNum":8111,"id":9263,"width":32,"height":32},{"x":256,"y":96,"fileNum":8111,"id":9264,"width":32,"height":32},{"x":288,"y":96,"fileNum":8111,"id":9265,"width":32,"height":32},{"x":320,"y":96,"fileNum":8111,"id":9266,"width":32,"height":32},{"x":352,"y":96,"fileNum":8111,"id":9267,"width":32,"height":32},{"x":384,"y":0,"fileNum":8111,"id":9268,"width":32,"height":32},{"x":416,"y":0,"fileNum":8111,"id":9269,"width":32,"height":32},{"x":448,"y":0,"fileNum":8111,"id":9270,"width":32,"height":32},{"x":480,"y":0,"fileNum":8111,"id":9271,"width":32,"height":32},{"x":384,"y":32,"fileNum":8111,"id":9272,"width":32,"height":32},{"x":416,"y":32,"fileNum":8111,"id":9273,"width":32,"height":32},{"x":448,"y":32,"fileNum":8111,"id":9274,"width":32,"height":32},{"x":480,"y":32,"fileNum":8111,"id":9275,"width":32,"height":32},{"x":384,"y":64,"fileNum":8111,"id":9276,"width":32,"height":32},{"x":416,"y":64,"fileNum":8111,"id":9277,"width":32,"height":32},{"x":448,"y":64,"fileNum":8111,"id":9278,"width":32,"height":32},{"x":480,"y":64,"fileNum":8111,"id":9279,"width":32,"height":32},{"x":384,"y":96,"fileNum":8111,"id":9280,"width":32,"height":32},{"x":416,"y":96,"fileNum":8111,"id":9281,"width":32,"height":32},{"x":448,"y":96,"fileNum":8111,"id":9282,"width":32,"height":32},{"x":480,"y":96,"fileNum":8111,"id":9283,"width":32,"height":32},{"x":0,"y":0,"fileNum":8112,"id":9284,"width":32,"height":32},{"x":32,"y":0,"fileNum":8112,"id":9285,"width":32,"height":32},{"x":64,"y":0,"fileNum":8112,"id":9286,"width":32,"height":32},{"x":96,"y":0,"fileNum":8112,"id":9287,"width":32,"height":32},{"x":0,"y":32,"fileNum":8112,"id":9288,"width":32,"height":32},{"x":32,"y":32,"fileNum":8112,"id":9289,"width":32,"height":32},{"x":64,"y":32,"fileNum":8112,"id":9290,"width":32,"height":32},{"x":96,"y":32,"fileNum":8112,"id":9291,"width":32,"height":32},{"x":0,"y":64,"fileNum":8112,"id":9292,"width":32,"height":32},{"x":32,"y":64,"fileNum":8112,"id":9293,"width":32,"height":32},{"x":64,"y":64,"fileNum":8112,"id":9294,"width":32,"height":32},{"x":96,"y":64,"fileNum":8112,"id":9295,"width":32,"height":32},{"x":0,"y":96,"fileNum":8112,"id":9296,"width":32,"height":32},{"x":32,"y":96,"fileNum":8112,"id":9297,"width":32,"height":32},{"x":64,"y":96,"fileNum":8112,"id":9298,"width":32,"height":32},{"x":96,"y":96,"fileNum":8112,"id":9299,"width":32,"height":32},{"x":128,"y":0,"fileNum":8112,"id":9300,"width":32,"height":32},{"x":160,"y":0,"fileNum":8112,"id":9301,"width":32,"height":32},{"x":192,"y":0,"fileNum":8112,"id":9302,"width":32,"height":32},{"x":224,"y":0,"fileNum":8112,"id":9303,"width":32,"height":32},{"x":128,"y":32,"fileNum":8112,"id":9304,"width":32,"height":32},{"x":160,"y":32,"fileNum":8112,"id":9305,"width":32,"height":32},{"x":192,"y":32,"fileNum":8112,"id":9306,"width":32,"height":32},{"x":224,"y":32,"fileNum":8112,"id":9307,"width":32,"height":32},{"x":128,"y":64,"fileNum":8112,"id":9308,"width":32,"height":32},{"x":160,"y":64,"fileNum":8112,"id":9309,"width":32,"height":32},{"x":192,"y":64,"fileNum":8112,"id":9310,"width":32,"height":32},{"x":224,"y":64,"fileNum":8112,"id":9311,"width":32,"height":32},{"x":128,"y":96,"fileNum":8112,"id":9312,"width":32,"height":32},{"x":160,"y":96,"fileNum":8112,"id":9313,"width":32,"height":32},{"x":192,"y":96,"fileNum":8112,"id":9314,"width":32,"height":32},{"x":224,"y":96,"fileNum":8112,"id":9315,"width":32,"height":32},{"x":256,"y":0,"fileNum":8112,"id":9316,"width":32,"height":32},{"x":288,"y":0,"fileNum":8112,"id":9317,"width":32,"height":32},{"x":320,"y":0,"fileNum":8112,"id":9318,"width":32,"height":32},{"x":352,"y":0,"fileNum":8112,"id":9319,"width":32,"height":32},{"x":256,"y":32,"fileNum":8112,"id":9320,"width":32,"height":32},{"x":288,"y":32,"fileNum":8112,"id":9321,"width":32,"height":32},{"x":320,"y":32,"fileNum":8112,"id":9322,"width":32,"height":32},{"x":352,"y":32,"fileNum":8112,"id":9323,"width":32,"height":32},{"x":256,"y":64,"fileNum":8112,"id":9324,"width":32,"height":32},{"x":288,"y":64,"fileNum":8112,"id":9325,"width":32,"height":32},{"x":320,"y":64,"fileNum":8112,"id":9326,"width":32,"height":32},{"x":352,"y":64,"fileNum":8112,"id":9327,"width":32,"height":32},{"x":256,"y":96,"fileNum":8112,"id":9328,"width":32,"height":32},{"x":288,"y":96,"fileNum":8112,"id":9329,"width":32,"height":32},{"x":320,"y":96,"fileNum":8112,"id":9330,"width":32,"height":32},{"x":352,"y":96,"fileNum":8112,"id":9331,"width":32,"height":32},{"x":384,"y":0,"fileNum":8112,"id":9332,"width":32,"height":32},{"x":416,"y":0,"fileNum":8112,"id":9333,"width":32,"height":32},{"x":448,"y":0,"fileNum":8112,"id":9334,"width":32,"height":32},{"x":480,"y":0,"fileNum":8112,"id":9335,"width":32,"height":32},{"x":384,"y":32,"fileNum":8112,"id":9336,"width":32,"height":32},{"x":416,"y":32,"fileNum":8112,"id":9337,"width":32,"height":32},{"x":448,"y":32,"fileNum":8112,"id":9338,"width":32,"height":32},{"x":480,"y":32,"fileNum":8112,"id":9339,"width":32,"height":32},{"x":384,"y":64,"fileNum":8112,"id":9340,"width":32,"height":32},{"x":416,"y":64,"fileNum":8112,"id":9341,"width":32,"height":32},{"x":448,"y":64,"fileNum":8112,"id":9342,"width":32,"height":32},{"x":480,"y":64,"fileNum":8112,"id":9343,"width":32,"height":32},{"x":384,"y":96,"fileNum":8112,"id":9344,"width":32,"height":32},{"x":416,"y":96,"fileNum":8112,"id":9345,"width":32,"height":32},{"x":448,"y":96,"fileNum":8112,"id":9346,"width":32,"height":32},{"x":480,"y":96,"fileNum":8112,"id":9347,"width":32,"height":32},{"x":0,"y":0,"fileNum":8113,"id":9348,"width":32,"height":32},{"x":32,"y":0,"fileNum":8113,"id":9349,"width":32,"height":32},{"x":64,"y":0,"fileNum":8113,"id":9350,"width":32,"height":32},{"x":96,"y":0,"fileNum":8113,"id":9351,"width":32,"height":32},{"x":0,"y":32,"fileNum":8113,"id":9352,"width":32,"height":32},{"x":32,"y":32,"fileNum":8113,"id":9353,"width":32,"height":32},{"x":64,"y":32,"fileNum":8113,"id":9354,"width":32,"height":32},{"x":96,"y":32,"fileNum":8113,"id":9355,"width":32,"height":32},{"x":0,"y":64,"fileNum":8113,"id":9356,"width":32,"height":32},{"x":32,"y":64,"fileNum":8113,"id":9357,"width":32,"height":32},{"x":64,"y":64,"fileNum":8113,"id":9358,"width":32,"height":32},{"x":96,"y":64,"fileNum":8113,"id":9359,"width":32,"height":32},{"x":0,"y":96,"fileNum":8113,"id":9360,"width":32,"height":32},{"x":32,"y":96,"fileNum":8113,"id":9361,"width":32,"height":32},{"x":64,"y":96,"fileNum":8113,"id":9362,"width":32,"height":32},{"x":96,"y":96,"fileNum":8113,"id":9363,"width":32,"height":32},{"x":128,"y":0,"fileNum":8113,"id":9364,"width":32,"height":32},{"x":160,"y":0,"fileNum":8113,"id":9365,"width":32,"height":32},{"x":192,"y":0,"fileNum":8113,"id":9366,"width":32,"height":32},{"x":224,"y":0,"fileNum":8113,"id":9367,"width":32,"height":32},{"x":128,"y":32,"fileNum":8113,"id":9368,"width":32,"height":32},{"x":160,"y":32,"fileNum":8113,"id":9369,"width":32,"height":32},{"x":192,"y":32,"fileNum":8113,"id":9370,"width":32,"height":32},{"x":224,"y":32,"fileNum":8113,"id":9371,"width":32,"height":32},{"x":128,"y":64,"fileNum":8113,"id":9372,"width":32,"height":32},{"x":160,"y":64,"fileNum":8113,"id":9373,"width":32,"height":32},{"x":192,"y":64,"fileNum":8113,"id":9374,"width":32,"height":32},{"x":224,"y":64,"fileNum":8113,"id":9375,"width":32,"height":32},{"x":128,"y":96,"fileNum":8113,"id":9376,"width":32,"height":32},{"x":160,"y":96,"fileNum":8113,"id":9377,"width":32,"height":32},{"x":192,"y":96,"fileNum":8113,"id":9378,"width":32,"height":32},{"x":224,"y":96,"fileNum":8113,"id":9379,"width":32,"height":32},{"x":256,"y":0,"fileNum":8113,"id":9380,"width":32,"height":32},{"x":288,"y":0,"fileNum":8113,"id":9381,"width":32,"height":32},{"x":320,"y":0,"fileNum":8113,"id":9382,"width":32,"height":32},{"x":352,"y":0,"fileNum":8113,"id":9383,"width":32,"height":32},{"x":256,"y":32,"fileNum":8113,"id":9384,"width":32,"height":32},{"x":288,"y":32,"fileNum":8113,"id":9385,"width":32,"height":32},{"x":320,"y":32,"fileNum":8113,"id":9386,"width":32,"height":32},{"x":352,"y":32,"fileNum":8113,"id":9387,"width":32,"height":32},{"x":256,"y":64,"fileNum":8113,"id":9388,"width":32,"height":32},{"x":288,"y":64,"fileNum":8113,"id":9389,"width":32,"height":32},{"x":320,"y":64,"fileNum":8113,"id":9390,"width":32,"height":32},{"x":352,"y":64,"fileNum":8113,"id":9391,"width":32,"height":32},{"x":256,"y":96,"fileNum":8113,"id":9392,"width":32,"height":32},{"x":288,"y":96,"fileNum":8113,"id":9393,"width":32,"height":32},{"x":320,"y":96,"fileNum":8113,"id":9394,"width":32,"height":32},{"x":352,"y":96,"fileNum":8113,"id":9395,"width":32,"height":32},{"x":384,"y":0,"fileNum":8113,"id":9396,"width":32,"height":32},{"x":416,"y":0,"fileNum":8113,"id":9397,"width":32,"height":32},{"x":448,"y":0,"fileNum":8113,"id":9398,"width":32,"height":32},{"x":480,"y":0,"fileNum":8113,"id":9399,"width":32,"height":32},{"x":384,"y":32,"fileNum":8113,"id":9400,"width":32,"height":32},{"x":416,"y":32,"fileNum":8113,"id":9401,"width":32,"height":32},{"x":448,"y":32,"fileNum":8113,"id":9402,"width":32,"height":32},{"x":480,"y":32,"fileNum":8113,"id":9403,"width":32,"height":32},{"x":384,"y":64,"fileNum":8113,"id":9404,"width":32,"height":32},{"x":416,"y":64,"fileNum":8113,"id":9405,"width":32,"height":32},{"x":448,"y":64,"fileNum":8113,"id":9406,"width":32,"height":32},{"x":480,"y":64,"fileNum":8113,"id":9407,"width":32,"height":32},{"x":384,"y":96,"fileNum":8113,"id":9408,"width":32,"height":32},{"x":416,"y":96,"fileNum":8113,"id":9409,"width":32,"height":32},{"x":448,"y":96,"fileNum":8113,"id":9410,"width":32,"height":32},{"x":480,"y":96,"fileNum":8113,"id":9411,"width":32,"height":32},{"x":0,"y":0,"fileNum":8113,"id":9412,"width":32,"height":32},{"x":32,"y":0,"fileNum":8113,"id":9413,"width":32,"height":32},{"x":64,"y":0,"fileNum":8113,"id":9414,"width":32,"height":32},{"x":96,"y":0,"fileNum":8113,"id":9415,"width":32,"height":32},{"x":0,"y":32,"fileNum":8113,"id":9416,"width":32,"height":32},{"x":32,"y":32,"fileNum":8113,"id":9417,"width":32,"height":32},{"x":64,"y":32,"fileNum":8113,"id":9418,"width":32,"height":32},{"x":96,"y":32,"fileNum":8113,"id":9419,"width":32,"height":32},{"x":0,"y":64,"fileNum":8113,"id":9420,"width":32,"height":32},{"x":32,"y":64,"fileNum":8113,"id":9421,"width":32,"height":32},{"x":64,"y":64,"fileNum":8113,"id":9422,"width":32,"height":32},{"x":96,"y":64,"fileNum":8113,"id":9423,"width":32,"height":32},{"x":0,"y":96,"fileNum":8113,"id":9424,"width":32,"height":32},{"x":32,"y":96,"fileNum":8113,"id":9425,"width":32,"height":32},{"x":64,"y":96,"fileNum":8113,"id":9426,"width":32,"height":32},{"x":96,"y":96,"fileNum":8113,"id":9427,"width":32,"height":32},{"x":0,"y":0,"fileNum":8114,"id":9428,"width":32,"height":32},{"x":32,"y":0,"fileNum":8114,"id":9429,"width":32,"height":32},{"x":64,"y":0,"fileNum":8114,"id":9430,"width":32,"height":32},{"x":96,"y":0,"fileNum":8114,"id":9431,"width":32,"height":32},{"x":0,"y":32,"fileNum":8114,"id":9432,"width":32,"height":32},{"x":32,"y":32,"fileNum":8114,"id":9433,"width":32,"height":32},{"x":64,"y":32,"fileNum":8114,"id":9434,"width":32,"height":32},{"x":96,"y":32,"fileNum":8114,"id":9435,"width":32,"height":32},{"x":0,"y":64,"fileNum":8114,"id":9436,"width":32,"height":32},{"x":32,"y":64,"fileNum":8114,"id":9437,"width":32,"height":32},{"x":64,"y":64,"fileNum":8114,"id":9438,"width":32,"height":32},{"x":96,"y":64,"fileNum":8114,"id":9439,"width":32,"height":32},{"x":0,"y":96,"fileNum":8114,"id":9440,"width":32,"height":32},{"x":32,"y":96,"fileNum":8114,"id":9441,"width":32,"height":32},{"x":64,"y":96,"fileNum":8114,"id":9442,"width":32,"height":32},{"x":96,"y":96,"fileNum":8114,"id":9443,"width":32,"height":32},{"x":0,"y":0,"fileNum":4054,"id":9444,"width":50,"height":70},{"x":50,"y":0,"fileNum":4054,"id":9445,"width":50,"height":70},{"x":100,"y":0,"fileNum":4054,"id":9446,"width":50,"height":70},{"x":0,"y":70,"fileNum":4054,"id":9448,"width":50,"height":70},{"x":50,"y":70,"fileNum":4054,"id":9449,"width":50,"height":70},{"x":100,"y":70,"fileNum":4054,"id":9450,"width":50,"height":70},{"x":0,"y":140,"fileNum":4054,"id":9452,"width":50,"height":70},{"x":50,"y":140,"fileNum":4054,"id":9453,"width":50,"height":70},{"x":100,"y":140,"fileNum":4054,"id":9454,"width":50,"height":70},{"x":0,"y":210,"fileNum":4054,"id":9456,"width":50,"height":70},{"x":50,"y":210,"fileNum":4054,"id":9457,"width":50,"height":70},{"x":100,"y":210,"fileNum":4054,"id":9458,"width":50,"height":70},{"x":0,"y":0,"fileNum":9015,"id":9463,"width":44,"height":64},{"x":44,"y":0,"fileNum":9015,"id":9464,"width":44,"height":64},{"x":88,"y":0,"fileNum":9015,"id":9465,"width":44,"height":64},{"x":132,"y":0,"fileNum":9015,"id":9466,"width":44,"height":64},{"x":176,"y":0,"fileNum":9015,"id":9467,"width":44,"height":64},{"x":220,"y":0,"fileNum":9015,"id":9468,"width":44,"height":64},{"x":264,"y":0,"fileNum":9015,"id":9469,"width":44,"height":64},{"x":308,"y":0,"fileNum":9015,"id":9470,"width":44,"height":64},{"x":0,"y":0,"fileNum":2113,"id":9472,"width":17,"height":50},{"x":17,"y":0,"fileNum":2113,"id":9473,"width":17,"height":50},{"x":34,"y":0,"fileNum":2113,"id":9474,"width":17,"height":50},{"x":51,"y":0,"fileNum":2113,"id":9475,"width":17,"height":50},{"x":0,"y":0,"fileNum":2114,"id":9476,"width":17,"height":50},{"x":17,"y":0,"fileNum":2114,"id":9477,"width":17,"height":50},{"x":34,"y":0,"fileNum":2114,"id":9478,"width":17,"height":50},{"x":51,"y":0,"fileNum":2114,"id":9479,"width":17,"height":50},{"x":0,"y":0,"fileNum":2115,"id":9480,"width":17,"height":50},{"x":17,"y":0,"fileNum":2115,"id":9481,"width":17,"height":50},{"x":34,"y":0,"fileNum":2115,"id":9482,"width":17,"height":50},{"x":51,"y":0,"fileNum":2115,"id":9483,"width":17,"height":50},{"x":0,"y":0,"fileNum":2116,"id":9484,"width":17,"height":50},{"x":17,"y":0,"fileNum":2116,"id":9485,"width":17,"height":50},{"x":34,"y":0,"fileNum":2116,"id":9486,"width":17,"height":50},{"x":51,"y":0,"fileNum":2116,"id":9487,"width":17,"height":50},{"x":0,"y":0,"fileNum":2117,"id":9488,"width":17,"height":50},{"x":17,"y":0,"fileNum":2117,"id":9489,"width":17,"height":50},{"x":34,"y":0,"fileNum":2117,"id":9490,"width":17,"height":50},{"x":51,"y":0,"fileNum":2117,"id":9491,"width":17,"height":50},{"x":0,"y":0,"fileNum":2118,"id":9492,"width":17,"height":50},{"x":17,"y":0,"fileNum":2118,"id":9493,"width":17,"height":50},{"x":34,"y":0,"fileNum":2118,"id":9494,"width":17,"height":50},{"x":51,"y":0,"fileNum":2118,"id":9495,"width":17,"height":50},{"x":0,"y":0,"fileNum":2119,"id":9496,"width":17,"height":50},{"x":17,"y":0,"fileNum":2119,"id":9497,"width":17,"height":50},{"x":34,"y":0,"fileNum":2119,"id":9498,"width":17,"height":50},{"x":51,"y":0,"fileNum":2119,"id":9499,"width":17,"height":50},{"x":0,"y":0,"fileNum":2120,"id":9500,"width":17,"height":50},{"x":17,"y":0,"fileNum":2120,"id":9501,"width":17,"height":50},{"x":34,"y":0,"fileNum":2120,"id":9502,"width":17,"height":50},{"x":51,"y":0,"fileNum":2120,"id":9503,"width":17,"height":50},{"x":0,"y":0,"fileNum":2121,"id":9504,"width":17,"height":50},{"x":17,"y":0,"fileNum":2121,"id":9505,"width":17,"height":50},{"x":34,"y":0,"fileNum":2121,"id":9506,"width":17,"height":50},{"x":51,"y":0,"fileNum":2121,"id":9507,"width":17,"height":50},{"x":0,"y":0,"fileNum":2122,"id":9508,"width":17,"height":50},{"x":17,"y":0,"fileNum":2122,"id":9509,"width":17,"height":50},{"x":34,"y":0,"fileNum":2122,"id":9510,"width":17,"height":50},{"x":51,"y":0,"fileNum":2122,"id":9511,"width":17,"height":50},{"x":0,"y":0,"fileNum":2123,"id":9512,"width":17,"height":50},{"x":17,"y":0,"fileNum":2123,"id":9513,"width":17,"height":50},{"x":34,"y":0,"fileNum":2123,"id":9514,"width":17,"height":50},{"x":51,"y":0,"fileNum":2123,"id":9515,"width":17,"height":50},{"x":0,"y":0,"fileNum":2124,"id":9516,"width":17,"height":50},{"x":17,"y":0,"fileNum":2124,"id":9517,"width":17,"height":50},{"x":34,"y":0,"fileNum":2124,"id":9518,"width":17,"height":50},{"x":51,"y":0,"fileNum":2124,"id":9519,"width":17,"height":50},{"x":0,"y":0,"fileNum":18023,"id":9520,"width":17,"height":16},{"x":17,"y":0,"fileNum":18023,"id":9521,"width":17,"height":16},{"x":34,"y":0,"fileNum":18023,"id":9522,"width":17,"height":16},{"x":51,"y":0,"fileNum":18023,"id":9523,"width":17,"height":16},{"x":0,"y":0,"fileNum":2125,"id":9524,"width":17,"height":50},{"x":17,"y":0,"fileNum":2125,"id":9525,"width":17,"height":50},{"x":34,"y":0,"fileNum":2125,"id":9526,"width":17,"height":50},{"x":51,"y":0,"fileNum":2125,"id":9527,"width":17,"height":50},{"x":0,"y":0,"fileNum":126,"id":9529,"width":32,"height":32},{"x":0,"y":0,"fileNum":127,"id":9530,"width":25,"height":45},{"x":25,"y":0,"fileNum":127,"id":9531,"width":25,"height":45},{"x":50,"y":0,"fileNum":127,"id":9532,"width":25,"height":45},{"x":75,"y":0,"fileNum":127,"id":9533,"width":25,"height":45},{"x":100,"y":0,"fileNum":127,"id":9534,"width":25,"height":45},{"x":125,"y":0,"fileNum":127,"id":9535,"width":25,"height":45},{"x":0,"y":45,"fileNum":127,"id":9536,"width":25,"height":45},{"x":25,"y":45,"fileNum":127,"id":9537,"width":25,"height":45},{"x":50,"y":45,"fileNum":127,"id":9538,"width":25,"height":45},{"x":75,"y":45,"fileNum":127,"id":9539,"width":25,"height":45},{"x":100,"y":45,"fileNum":127,"id":9540,"width":25,"height":45},{"x":125,"y":45,"fileNum":127,"id":9541,"width":25,"height":45},{"x":0,"y":90,"fileNum":127,"id":9542,"width":25,"height":45},{"x":25,"y":90,"fileNum":127,"id":9543,"width":25,"height":45},{"x":50,"y":90,"fileNum":127,"id":9544,"width":25,"height":45},{"x":75,"y":90,"fileNum":127,"id":9545,"width":25,"height":45},{"x":100,"y":90,"fileNum":127,"id":9546,"width":25,"height":45},{"x":0,"y":135,"fileNum":127,"id":9547,"width":25,"height":45},{"x":25,"y":135,"fileNum":127,"id":9548,"width":25,"height":45},{"x":50,"y":135,"fileNum":127,"id":9549,"width":25,"height":45},{"x":75,"y":135,"fileNum":127,"id":9550,"width":25,"height":45},{"x":100,"y":135,"fileNum":127,"id":9551,"width":25,"height":45},{"x":0,"y":0,"fileNum":8142,"id":9556,"width":100,"height":81},{"x":100,"y":0,"fileNum":8142,"id":9557,"width":100,"height":81},{"x":200,"y":0,"fileNum":8142,"id":9558,"width":100,"height":81},{"x":0,"y":0,"fileNum":15113,"id":9559,"width":140,"height":55},{"x":0,"y":0,"fileNum":3097,"id":9560,"width":75,"height":90},{"x":0,"y":90,"fileNum":3097,"id":9561,"width":75,"height":90},{"x":0,"y":180,"fileNum":3097,"id":9562,"width":75,"height":90},{"x":0,"y":270,"fileNum":3097,"id":9563,"width":75,"height":90},{"x":0,"y":360,"fileNum":3097,"id":9564,"width":75,"height":90},{"x":0,"y":450,"fileNum":3097,"id":9565,"width":75,"height":90},{"x":0,"y":540,"fileNum":3097,"id":9566,"width":75,"height":90},{"x":0,"y":630,"fileNum":3097,"id":9567,"width":75,"height":90},{"x":0,"y":0,"fileNum":10002,"id":9569,"width":130,"height":145},{"x":0,"y":0,"fileNum":15114,"id":9570,"width":100,"height":150},{"x":100,"y":0,"fileNum":15114,"id":9571,"width":100,"height":150},{"x":200,"y":0,"fileNum":15114,"id":9572,"width":100,"height":150},{"x":0,"y":150,"fileNum":15114,"id":9573,"width":100,"height":150},{"x":100,"y":150,"fileNum":15114,"id":9574,"width":100,"height":150},{"x":200,"y":150,"fileNum":15114,"id":9575,"width":100,"height":150},{"x":0,"y":0,"fileNum":2174,"id":9576,"width":17,"height":50},{"x":17,"y":0,"fileNum":2174,"id":9577,"width":17,"height":50},{"x":34,"y":0,"fileNum":2174,"id":9578,"width":17,"height":50},{"x":51,"y":0,"fileNum":2174,"id":9579,"width":17,"height":50},{"x":0,"y":0,"fileNum":15115,"id":9580,"width":300,"height":500},{"x":0,"y":0,"fileNum":130,"id":9581,"width":32,"height":32},{"x":0,"y":0,"fileNum":129,"id":9582,"width":25,"height":45},{"x":25,"y":0,"fileNum":129,"id":9583,"width":25,"height":45},{"x":50,"y":0,"fileNum":129,"id":9584,"width":25,"height":45},{"x":75,"y":0,"fileNum":129,"id":9585,"width":25,"height":45},{"x":100,"y":0,"fileNum":129,"id":9586,"width":25,"height":45},{"x":125,"y":0,"fileNum":129,"id":9587,"width":25,"height":45},{"x":0,"y":45,"fileNum":129,"id":9588,"width":25,"height":45},{"x":25,"y":45,"fileNum":129,"id":9589,"width":25,"height":45},{"x":50,"y":45,"fileNum":129,"id":9590,"width":25,"height":45},{"x":75,"y":45,"fileNum":129,"id":9591,"width":25,"height":45},{"x":100,"y":45,"fileNum":129,"id":9592,"width":25,"height":45},{"x":125,"y":45,"fileNum":129,"id":9593,"width":25,"height":45},{"x":0,"y":90,"fileNum":129,"id":9594,"width":25,"height":45},{"x":25,"y":90,"fileNum":129,"id":9595,"width":25,"height":45},{"x":50,"y":90,"fileNum":129,"id":9596,"width":25,"height":45},{"x":75,"y":90,"fileNum":129,"id":9597,"width":25,"height":45},{"x":100,"y":90,"fileNum":129,"id":9598,"width":25,"height":45},{"x":0,"y":135,"fileNum":129,"id":9599,"width":25,"height":45},{"x":25,"y":135,"fileNum":129,"id":9600,"width":25,"height":45},{"x":50,"y":135,"fileNum":129,"id":9601,"width":25,"height":45},{"x":75,"y":135,"fileNum":129,"id":9602,"width":25,"height":45},{"x":100,"y":135,"fileNum":129,"id":9603,"width":25,"height":45},{"x":0,"y":0,"fileNum":2175,"id":9608,"width":17,"height":50},{"x":17,"y":0,"fileNum":2175,"id":9609,"width":17,"height":50},{"x":34,"y":0,"fileNum":2175,"id":9610,"width":17,"height":50},{"x":51,"y":0,"fileNum":2175,"id":9611,"width":17,"height":50},{"x":0,"y":0,"fileNum":2176,"id":9612,"width":17,"height":50},{"x":17,"y":0,"fileNum":2176,"id":9613,"width":17,"height":50},{"x":34,"y":0,"fileNum":2176,"id":9614,"width":17,"height":50},{"x":51,"y":0,"fileNum":2176,"id":9615,"width":17,"height":50},{"x":0,"y":0,"fileNum":2177,"id":9616,"width":17,"height":50},{"x":17,"y":0,"fileNum":2177,"id":9617,"width":17,"height":50},{"x":34,"y":0,"fileNum":2177,"id":9618,"width":17,"height":50},{"x":51,"y":0,"fileNum":2177,"id":9619,"width":17,"height":50},{"x":0,"y":0,"fileNum":2178,"id":9620,"width":17,"height":50},{"x":17,"y":0,"fileNum":2178,"id":9621,"width":17,"height":50},{"x":34,"y":0,"fileNum":2178,"id":9622,"width":17,"height":50},{"x":51,"y":0,"fileNum":2178,"id":9623,"width":17,"height":50},{"x":0,"y":0,"fileNum":2179,"id":9624,"width":17,"height":50},{"x":17,"y":0,"fileNum":2179,"id":9625,"width":17,"height":50},{"x":34,"y":0,"fileNum":2179,"id":9626,"width":17,"height":50},{"x":51,"y":0,"fileNum":2179,"id":9627,"width":17,"height":50},{"x":0,"y":0,"fileNum":2180,"id":9628,"width":17,"height":50},{"x":17,"y":0,"fileNum":2180,"id":9629,"width":17,"height":50},{"x":34,"y":0,"fileNum":2180,"id":9630,"width":17,"height":50},{"x":51,"y":0,"fileNum":2180,"id":9631,"width":17,"height":50},{"x":0,"y":0,"fileNum":131,"id":9632,"width":32,"height":32},{"x":0,"y":0,"fileNum":132,"id":9633,"width":25,"height":45},{"x":25,"y":0,"fileNum":132,"id":9634,"width":25,"height":45},{"x":50,"y":0,"fileNum":132,"id":9635,"width":25,"height":45},{"x":75,"y":0,"fileNum":132,"id":9636,"width":25,"height":45},{"x":100,"y":0,"fileNum":132,"id":9637,"width":25,"height":45},{"x":125,"y":0,"fileNum":132,"id":9638,"width":25,"height":45},{"x":0,"y":45,"fileNum":132,"id":9639,"width":25,"height":45},{"x":25,"y":45,"fileNum":132,"id":9640,"width":25,"height":45},{"x":50,"y":45,"fileNum":132,"id":9641,"width":25,"height":45},{"x":75,"y":45,"fileNum":132,"id":9642,"width":25,"height":45},{"x":100,"y":45,"fileNum":132,"id":9643,"width":25,"height":45},{"x":125,"y":45,"fileNum":132,"id":9644,"width":25,"height":45},{"x":0,"y":90,"fileNum":132,"id":9645,"width":25,"height":45},{"x":25,"y":90,"fileNum":132,"id":9646,"width":25,"height":45},{"x":50,"y":90,"fileNum":132,"id":9647,"width":25,"height":45},{"x":75,"y":90,"fileNum":132,"id":9648,"width":25,"height":45},{"x":100,"y":90,"fileNum":132,"id":9649,"width":25,"height":45},{"x":0,"y":135,"fileNum":132,"id":9650,"width":25,"height":45},{"x":25,"y":135,"fileNum":132,"id":9651,"width":25,"height":45},{"x":50,"y":135,"fileNum":132,"id":9652,"width":25,"height":45},{"x":75,"y":135,"fileNum":132,"id":9653,"width":25,"height":45},{"x":100,"y":135,"fileNum":132,"id":9654,"width":25,"height":45},{"x":0,"y":0,"fileNum":133,"id":9659,"width":32,"height":32},{"x":0,"y":0,"fileNum":134,"id":9660,"width":25,"height":45},{"x":25,"y":0,"fileNum":134,"id":9661,"width":25,"height":45},{"x":50,"y":0,"fileNum":134,"id":9662,"width":25,"height":45},{"x":75,"y":0,"fileNum":134,"id":9663,"width":25,"height":45},{"x":100,"y":0,"fileNum":134,"id":9664,"width":25,"height":45},{"x":125,"y":0,"fileNum":134,"id":9665,"width":25,"height":45},{"x":0,"y":45,"fileNum":134,"id":9666,"width":25,"height":45},{"x":25,"y":45,"fileNum":134,"id":9667,"width":25,"height":45},{"x":50,"y":45,"fileNum":134,"id":9668,"width":25,"height":45},{"x":75,"y":45,"fileNum":134,"id":9669,"width":25,"height":45},{"x":100,"y":45,"fileNum":134,"id":9670,"width":25,"height":45},{"x":125,"y":45,"fileNum":134,"id":9671,"width":25,"height":45},{"x":0,"y":90,"fileNum":134,"id":9672,"width":25,"height":45},{"x":25,"y":90,"fileNum":134,"id":9673,"width":25,"height":45},{"x":50,"y":90,"fileNum":134,"id":9674,"width":25,"height":45},{"x":75,"y":90,"fileNum":134,"id":9675,"width":25,"height":45},{"x":100,"y":90,"fileNum":134,"id":9676,"width":25,"height":45},{"x":0,"y":135,"fileNum":134,"id":9677,"width":25,"height":45},{"x":25,"y":135,"fileNum":134,"id":9678,"width":25,"height":45},{"x":50,"y":135,"fileNum":134,"id":9679,"width":25,"height":45},{"x":75,"y":135,"fileNum":134,"id":9680,"width":25,"height":45},{"x":100,"y":135,"fileNum":134,"id":9681,"width":25,"height":45},{"x":0,"y":0,"fileNum":135,"id":9686,"width":32,"height":32},{"x":0,"y":0,"fileNum":136,"id":9687,"width":25,"height":45},{"x":25,"y":0,"fileNum":136,"id":9688,"width":25,"height":45},{"x":50,"y":0,"fileNum":136,"id":9689,"width":25,"height":45},{"x":75,"y":0,"fileNum":136,"id":9690,"width":25,"height":45},{"x":100,"y":0,"fileNum":136,"id":9691,"width":25,"height":45},{"x":125,"y":0,"fileNum":136,"id":9692,"width":25,"height":45},{"x":0,"y":45,"fileNum":136,"id":9693,"width":25,"height":45},{"x":25,"y":45,"fileNum":136,"id":9694,"width":25,"height":45},{"x":50,"y":45,"fileNum":136,"id":9695,"width":25,"height":45},{"x":75,"y":45,"fileNum":136,"id":9696,"width":25,"height":45},{"x":100,"y":45,"fileNum":136,"id":9697,"width":25,"height":45},{"x":125,"y":45,"fileNum":136,"id":9698,"width":25,"height":45},{"x":0,"y":90,"fileNum":136,"id":9699,"width":25,"height":45},{"x":25,"y":90,"fileNum":136,"id":9700,"width":25,"height":45},{"x":50,"y":90,"fileNum":136,"id":9701,"width":25,"height":45},{"x":75,"y":90,"fileNum":136,"id":9702,"width":25,"height":45},{"x":100,"y":90,"fileNum":136,"id":9703,"width":25,"height":45},{"x":0,"y":135,"fileNum":136,"id":9704,"width":25,"height":45},{"x":25,"y":135,"fileNum":136,"id":9705,"width":25,"height":45},{"x":50,"y":135,"fileNum":136,"id":9706,"width":25,"height":45},{"x":75,"y":135,"fileNum":136,"id":9707,"width":25,"height":45},{"x":100,"y":135,"fileNum":136,"id":9708,"width":25,"height":45},{"x":0,"y":0,"fileNum":137,"id":9713,"width":32,"height":32},{"x":0,"y":0,"fileNum":138,"id":9714,"width":25,"height":45},{"x":25,"y":0,"fileNum":138,"id":9715,"width":25,"height":45},{"x":50,"y":0,"fileNum":138,"id":9716,"width":25,"height":45},{"x":75,"y":0,"fileNum":138,"id":9717,"width":25,"height":45},{"x":100,"y":0,"fileNum":138,"id":9718,"width":25,"height":45},{"x":125,"y":0,"fileNum":138,"id":9719,"width":25,"height":45},{"x":0,"y":45,"fileNum":138,"id":9720,"width":25,"height":45},{"x":25,"y":45,"fileNum":138,"id":9721,"width":25,"height":45},{"x":50,"y":45,"fileNum":138,"id":9722,"width":25,"height":45},{"x":75,"y":45,"fileNum":138,"id":9723,"width":25,"height":45},{"x":100,"y":45,"fileNum":138,"id":9724,"width":25,"height":45},{"x":125,"y":45,"fileNum":138,"id":9725,"width":25,"height":45},{"x":0,"y":90,"fileNum":138,"id":9726,"width":25,"height":45},{"x":25,"y":90,"fileNum":138,"id":9727,"width":25,"height":45},{"x":50,"y":90,"fileNum":138,"id":9728,"width":25,"height":45},{"x":75,"y":90,"fileNum":138,"id":9729,"width":25,"height":45},{"x":100,"y":90,"fileNum":138,"id":9730,"width":25,"height":45},{"x":0,"y":135,"fileNum":138,"id":9731,"width":25,"height":45},{"x":25,"y":135,"fileNum":138,"id":9732,"width":25,"height":45},{"x":50,"y":135,"fileNum":138,"id":9733,"width":25,"height":45},{"x":75,"y":135,"fileNum":138,"id":9734,"width":25,"height":45},{"x":100,"y":135,"fileNum":138,"id":9735,"width":25,"height":45},{"x":0,"y":0,"fileNum":139,"id":9740,"width":32,"height":32},{"x":0,"y":0,"fileNum":140,"id":9741,"width":25,"height":45},{"x":25,"y":0,"fileNum":140,"id":9742,"width":25,"height":45},{"x":50,"y":0,"fileNum":140,"id":9743,"width":25,"height":45},{"x":75,"y":0,"fileNum":140,"id":9744,"width":25,"height":45},{"x":100,"y":0,"fileNum":140,"id":9745,"width":25,"height":45},{"x":125,"y":0,"fileNum":140,"id":9746,"width":25,"height":45},{"x":0,"y":45,"fileNum":140,"id":9747,"width":25,"height":45},{"x":25,"y":45,"fileNum":140,"id":9748,"width":25,"height":45},{"x":50,"y":45,"fileNum":140,"id":9749,"width":25,"height":45},{"x":75,"y":45,"fileNum":140,"id":9750,"width":25,"height":45},{"x":100,"y":45,"fileNum":140,"id":9751,"width":25,"height":45},{"x":125,"y":45,"fileNum":140,"id":9752,"width":25,"height":45},{"x":0,"y":90,"fileNum":140,"id":9753,"width":25,"height":45},{"x":25,"y":90,"fileNum":140,"id":9754,"width":25,"height":45},{"x":50,"y":90,"fileNum":140,"id":9755,"width":25,"height":45},{"x":75,"y":90,"fileNum":140,"id":9756,"width":25,"height":45},{"x":100,"y":90,"fileNum":140,"id":9757,"width":25,"height":45},{"x":0,"y":135,"fileNum":140,"id":9758,"width":25,"height":45},{"x":25,"y":135,"fileNum":140,"id":9759,"width":25,"height":45},{"x":50,"y":135,"fileNum":140,"id":9760,"width":25,"height":45},{"x":75,"y":135,"fileNum":140,"id":9761,"width":25,"height":45},{"x":100,"y":135,"fileNum":140,"id":9762,"width":25,"height":45},{"x":0,"y":0,"fileNum":141,"id":9767,"width":32,"height":32},{"x":0,"y":0,"fileNum":142,"id":9768,"width":25,"height":45},{"x":25,"y":0,"fileNum":142,"id":9769,"width":25,"height":45},{"x":50,"y":0,"fileNum":142,"id":9770,"width":25,"height":45},{"x":75,"y":0,"fileNum":142,"id":9771,"width":25,"height":45},{"x":100,"y":0,"fileNum":142,"id":9772,"width":25,"height":45},{"x":125,"y":0,"fileNum":142,"id":9773,"width":25,"height":45},{"x":0,"y":45,"fileNum":142,"id":9774,"width":25,"height":45},{"x":25,"y":45,"fileNum":142,"id":9775,"width":25,"height":45},{"x":50,"y":45,"fileNum":142,"id":9776,"width":25,"height":45},{"x":75,"y":45,"fileNum":142,"id":9777,"width":25,"height":45},{"x":100,"y":45,"fileNum":142,"id":9778,"width":25,"height":45},{"x":125,"y":45,"fileNum":142,"id":9779,"width":25,"height":45},{"x":0,"y":90,"fileNum":142,"id":9780,"width":25,"height":45},{"x":25,"y":90,"fileNum":142,"id":9781,"width":25,"height":45},{"x":50,"y":90,"fileNum":142,"id":9782,"width":25,"height":45},{"x":75,"y":90,"fileNum":142,"id":9783,"width":25,"height":45},{"x":100,"y":90,"fileNum":142,"id":9784,"width":25,"height":45},{"x":0,"y":135,"fileNum":142,"id":9785,"width":25,"height":45},{"x":25,"y":135,"fileNum":142,"id":9786,"width":25,"height":45},{"x":50,"y":135,"fileNum":142,"id":9787,"width":25,"height":45},{"x":75,"y":135,"fileNum":142,"id":9788,"width":25,"height":45},{"x":100,"y":135,"fileNum":142,"id":9789,"width":25,"height":45},{"x":0,"y":0,"fileNum":143,"id":9794,"width":33,"height":65},{"x":33,"y":0,"fileNum":143,"id":9795,"width":33,"height":65},{"x":66,"y":0,"fileNum":143,"id":9796,"width":33,"height":65},{"x":99,"y":0,"fileNum":143,"id":9797,"width":33,"height":65},{"x":132,"y":0,"fileNum":143,"id":9798,"width":33,"height":65},{"x":165,"y":0,"fileNum":143,"id":9799,"width":33,"height":65},{"x":198,"y":0,"fileNum":143,"id":9800,"width":33,"height":65},{"x":0,"y":65,"fileNum":143,"id":9801,"width":33,"height":65},{"x":33,"y":65,"fileNum":143,"id":9802,"width":33,"height":65},{"x":66,"y":65,"fileNum":143,"id":9803,"width":33,"height":65},{"x":99,"y":65,"fileNum":143,"id":9804,"width":33,"height":65},{"x":132,"y":65,"fileNum":143,"id":9805,"width":33,"height":65},{"x":165,"y":65,"fileNum":143,"id":9806,"width":33,"height":65},{"x":198,"y":65,"fileNum":143,"id":9807,"width":33,"height":65},{"x":0,"y":130,"fileNum":143,"id":9808,"width":33,"height":65},{"x":33,"y":130,"fileNum":143,"id":9809,"width":33,"height":65},{"x":66,"y":130,"fileNum":143,"id":9810,"width":33,"height":65},{"x":99,"y":130,"fileNum":143,"id":9811,"width":33,"height":65},{"x":132,"y":130,"fileNum":143,"id":9812,"width":33,"height":65},{"x":165,"y":130,"fileNum":143,"id":9813,"width":33,"height":65},{"x":0,"y":195,"fileNum":143,"id":9814,"width":33,"height":65},{"x":33,"y":195,"fileNum":143,"id":9815,"width":33,"height":65},{"x":66,"y":195,"fileNum":143,"id":9816,"width":33,"height":65},{"x":99,"y":195,"fileNum":143,"id":9817,"width":33,"height":65},{"x":132,"y":195,"fileNum":143,"id":9818,"width":33,"height":65},{"x":165,"y":195,"fileNum":143,"id":9819,"width":33,"height":65},{"x":0,"y":0,"fileNum":4040,"id":9824,"width":33,"height":33},{"x":33,"y":0,"fileNum":4040,"id":9825,"width":33,"height":33},{"x":66,"y":0,"fileNum":4040,"id":9826,"width":33,"height":33},{"x":99,"y":0,"fileNum":4040,"id":9827,"width":33,"height":33},{"x":132,"y":0,"fileNum":4040,"id":9828,"width":33,"height":33},{"x":165,"y":0,"fileNum":4040,"id":9829,"width":33,"height":33},{"x":0,"y":33,"fileNum":4040,"id":9830,"width":33,"height":33},{"x":33,"y":33,"fileNum":4040,"id":9831,"width":33,"height":33},{"x":66,"y":33,"fileNum":4040,"id":9832,"width":33,"height":33},{"x":99,"y":33,"fileNum":4040,"id":9833,"width":33,"height":33},{"x":132,"y":33,"fileNum":4040,"id":9834,"width":33,"height":33},{"x":165,"y":33,"fileNum":4040,"id":9835,"width":33,"height":33},{"x":0,"y":66,"fileNum":4040,"id":9836,"width":33,"height":33},{"x":33,"y":66,"fileNum":4040,"id":9837,"width":33,"height":33},{"x":66,"y":66,"fileNum":4040,"id":9838,"width":33,"height":33},{"x":99,"y":66,"fileNum":4040,"id":9839,"width":33,"height":33},{"x":132,"y":66,"fileNum":4040,"id":9840,"width":33,"height":33},{"x":165,"y":66,"fileNum":4040,"id":9841,"width":33,"height":33},{"x":0,"y":99,"fileNum":4040,"id":9842,"width":33,"height":33},{"x":33,"y":99,"fileNum":4040,"id":9843,"width":33,"height":33},{"x":66,"y":99,"fileNum":4040,"id":9844,"width":33,"height":33},{"x":99,"y":99,"fileNum":4040,"id":9845,"width":33,"height":33},{"x":132,"y":99,"fileNum":4040,"id":9846,"width":33,"height":33},{"x":0,"y":0,"fileNum":4050,"id":9852,"width":33,"height":33},{"x":33,"y":0,"fileNum":4050,"id":9853,"width":33,"height":33},{"x":66,"y":0,"fileNum":4050,"id":9854,"width":33,"height":33},{"x":99,"y":0,"fileNum":4050,"id":9855,"width":33,"height":33},{"x":132,"y":0,"fileNum":4050,"id":9856,"width":33,"height":33},{"x":165,"y":0,"fileNum":4050,"id":9857,"width":33,"height":33},{"x":198,"y":0,"fileNum":4050,"id":9858,"width":33,"height":33},{"x":0,"y":33,"fileNum":4050,"id":9859,"width":33,"height":33},{"x":33,"y":33,"fileNum":4050,"id":9860,"width":33,"height":33},{"x":66,"y":33,"fileNum":4050,"id":9861,"width":33,"height":33},{"x":99,"y":33,"fileNum":4050,"id":9862,"width":33,"height":33},{"x":132,"y":33,"fileNum":4050,"id":9863,"width":33,"height":33},{"x":165,"y":33,"fileNum":4050,"id":9864,"width":33,"height":33},{"x":198,"y":33,"fileNum":4050,"id":9865,"width":33,"height":33},{"x":0,"y":66,"fileNum":4050,"id":9866,"width":33,"height":33},{"x":33,"y":66,"fileNum":4050,"id":9867,"width":33,"height":33},{"x":66,"y":66,"fileNum":4050,"id":9868,"width":33,"height":33},{"x":99,"y":66,"fileNum":4050,"id":9869,"width":33,"height":33},{"x":132,"y":66,"fileNum":4050,"id":9870,"width":33,"height":33},{"x":165,"y":66,"fileNum":4050,"id":9871,"width":33,"height":33},{"x":0,"y":99,"fileNum":4050,"id":9873,"width":33,"height":33},{"x":33,"y":99,"fileNum":4050,"id":9874,"width":33,"height":33},{"x":66,"y":99,"fileNum":4050,"id":9875,"width":33,"height":33},{"x":99,"y":99,"fileNum":4050,"id":9876,"width":33,"height":33},{"x":132,"y":99,"fileNum":4050,"id":9877,"width":33,"height":33},{"x":165,"y":99,"fileNum":4050,"id":9878,"width":33,"height":33},{"x":0,"y":0,"fileNum":144,"id":9884,"width":25,"height":45},{"x":25,"y":0,"fileNum":144,"id":9885,"width":25,"height":45},{"x":50,"y":0,"fileNum":144,"id":9886,"width":25,"height":45},{"x":75,"y":0,"fileNum":144,"id":9887,"width":25,"height":45},{"x":100,"y":0,"fileNum":144,"id":9888,"width":25,"height":45},{"x":125,"y":0,"fileNum":144,"id":9889,"width":25,"height":45},{"x":0,"y":45,"fileNum":144,"id":9890,"width":25,"height":45},{"x":25,"y":45,"fileNum":144,"id":9891,"width":25,"height":45},{"x":50,"y":45,"fileNum":144,"id":9892,"width":25,"height":45},{"x":75,"y":45,"fileNum":144,"id":9893,"width":25,"height":45},{"x":100,"y":45,"fileNum":144,"id":9894,"width":25,"height":45},{"x":125,"y":45,"fileNum":144,"id":9895,"width":25,"height":45},{"x":0,"y":90,"fileNum":144,"id":9896,"width":25,"height":45},{"x":25,"y":90,"fileNum":144,"id":9897,"width":25,"height":45},{"x":50,"y":90,"fileNum":144,"id":9898,"width":25,"height":45},{"x":75,"y":90,"fileNum":144,"id":9899,"width":25,"height":45},{"x":100,"y":90,"fileNum":144,"id":9900,"width":25,"height":45},{"x":0,"y":135,"fileNum":144,"id":9901,"width":25,"height":45},{"x":25,"y":135,"fileNum":144,"id":9902,"width":25,"height":45},{"x":50,"y":135,"fileNum":144,"id":9903,"width":25,"height":45},{"x":75,"y":135,"fileNum":144,"id":9904,"width":25,"height":45},{"x":100,"y":135,"fileNum":144,"id":9905,"width":25,"height":45},{"x":0,"y":0,"fileNum":146,"id":9910,"width":32,"height":32},{"x":0,"y":0,"fileNum":145,"id":9911,"width":25,"height":45},{"x":25,"y":0,"fileNum":145,"id":9912,"width":25,"height":45},{"x":50,"y":0,"fileNum":145,"id":9913,"width":25,"height":45},{"x":75,"y":0,"fileNum":145,"id":9914,"width":25,"height":45},{"x":100,"y":0,"fileNum":145,"id":9915,"width":25,"height":45},{"x":125,"y":0,"fileNum":145,"id":9916,"width":25,"height":45},{"x":0,"y":45,"fileNum":145,"id":9917,"width":25,"height":45},{"x":25,"y":45,"fileNum":145,"id":9918,"width":25,"height":45},{"x":50,"y":45,"fileNum":145,"id":9919,"width":25,"height":45},{"x":75,"y":45,"fileNum":145,"id":9920,"width":25,"height":45},{"x":100,"y":45,"fileNum":145,"id":9921,"width":25,"height":45},{"x":125,"y":45,"fileNum":145,"id":9922,"width":25,"height":45},{"x":0,"y":90,"fileNum":145,"id":9923,"width":25,"height":45},{"x":25,"y":90,"fileNum":145,"id":9924,"width":25,"height":45},{"x":50,"y":90,"fileNum":145,"id":9925,"width":25,"height":45},{"x":75,"y":90,"fileNum":145,"id":9926,"width":25,"height":45},{"x":100,"y":90,"fileNum":145,"id":9927,"width":25,"height":45},{"x":0,"y":135,"fileNum":145,"id":9928,"width":25,"height":45},{"x":25,"y":135,"fileNum":145,"id":9929,"width":25,"height":45},{"x":50,"y":135,"fileNum":145,"id":9930,"width":25,"height":45},{"x":75,"y":135,"fileNum":145,"id":9931,"width":25,"height":45},{"x":100,"y":135,"fileNum":145,"id":9932,"width":25,"height":45},{"x":0,"y":0,"fileNum":148,"id":9937,"width":32,"height":32},{"x":0,"y":0,"fileNum":147,"id":9938,"width":25,"height":45},{"x":25,"y":0,"fileNum":147,"id":9939,"width":25,"height":45},{"x":50,"y":0,"fileNum":147,"id":9940,"width":25,"height":45},{"x":75,"y":0,"fileNum":147,"id":9941,"width":25,"height":45},{"x":100,"y":0,"fileNum":147,"id":9942,"width":25,"height":45},{"x":125,"y":0,"fileNum":147,"id":9943,"width":25,"height":45},{"x":0,"y":45,"fileNum":147,"id":9944,"width":25,"height":45},{"x":25,"y":45,"fileNum":147,"id":9945,"width":25,"height":45},{"x":50,"y":45,"fileNum":147,"id":9946,"width":25,"height":45},{"x":75,"y":45,"fileNum":147,"id":9947,"width":25,"height":45},{"x":100,"y":45,"fileNum":147,"id":9948,"width":25,"height":45},{"x":125,"y":45,"fileNum":147,"id":9949,"width":25,"height":45},{"x":0,"y":90,"fileNum":147,"id":9950,"width":25,"height":45},{"x":25,"y":90,"fileNum":147,"id":9951,"width":25,"height":45},{"x":50,"y":90,"fileNum":147,"id":9952,"width":25,"height":45},{"x":75,"y":90,"fileNum":147,"id":9953,"width":25,"height":45},{"x":100,"y":90,"fileNum":147,"id":9954,"width":25,"height":45},{"x":0,"y":135,"fileNum":147,"id":9955,"width":25,"height":45},{"x":25,"y":135,"fileNum":147,"id":9956,"width":25,"height":45},{"x":50,"y":135,"fileNum":147,"id":9957,"width":25,"height":45},{"x":75,"y":135,"fileNum":147,"id":9958,"width":25,"height":45},{"x":100,"y":135,"fileNum":147,"id":9959,"width":25,"height":45},{"x":0,"y":0,"fileNum":150,"id":9964,"width":32,"height":32},{"x":0,"y":0,"fileNum":149,"id":9965,"width":25,"height":45},{"x":25,"y":0,"fileNum":149,"id":9966,"width":25,"height":45},{"x":50,"y":0,"fileNum":149,"id":9967,"width":25,"height":45},{"x":75,"y":0,"fileNum":149,"id":9968,"width":25,"height":45},{"x":100,"y":0,"fileNum":149,"id":9969,"width":25,"height":45},{"x":125,"y":0,"fileNum":149,"id":9970,"width":25,"height":45},{"x":0,"y":45,"fileNum":149,"id":9971,"width":25,"height":45},{"x":25,"y":45,"fileNum":149,"id":9972,"width":25,"height":45},{"x":50,"y":45,"fileNum":149,"id":9973,"width":25,"height":45},{"x":75,"y":45,"fileNum":149,"id":9974,"width":25,"height":45},{"x":100,"y":45,"fileNum":149,"id":9975,"width":25,"height":45},{"x":125,"y":45,"fileNum":149,"id":9976,"width":25,"height":45},{"x":0,"y":90,"fileNum":149,"id":9977,"width":25,"height":45},{"x":25,"y":90,"fileNum":149,"id":9978,"width":25,"height":45},{"x":50,"y":90,"fileNum":149,"id":9979,"width":25,"height":45},{"x":75,"y":90,"fileNum":149,"id":9980,"width":25,"height":45},{"x":100,"y":90,"fileNum":149,"id":9981,"width":25,"height":45},{"x":0,"y":135,"fileNum":149,"id":9982,"width":25,"height":45},{"x":25,"y":135,"fileNum":149,"id":9983,"width":25,"height":45},{"x":50,"y":135,"fileNum":149,"id":9984,"width":25,"height":45},{"x":75,"y":135,"fileNum":149,"id":9985,"width":25,"height":45},{"x":100,"y":135,"fileNum":149,"id":9986,"width":25,"height":45},{"x":0,"y":0,"fileNum":2181,"id":9991,"width":17,"height":50},{"x":17,"y":0,"fileNum":2181,"id":9992,"width":17,"height":50},{"x":34,"y":0,"fileNum":2181,"id":9993,"width":17,"height":50},{"x":51,"y":0,"fileNum":2181,"id":9994,"width":17,"height":50},{"x":0,"y":0,"fileNum":2182,"id":9995,"width":17,"height":50},{"x":17,"y":0,"fileNum":2182,"id":9996,"width":17,"height":50},{"x":34,"y":0,"fileNum":2182,"id":9997,"width":17,"height":50},{"x":51,"y":0,"fileNum":2182,"id":9998,"width":17,"height":50},{"x":0,"y":0,"fileNum":4115,"id":10000,"width":25,"height":32},{"x":24,"y":0,"fileNum":4115,"id":10001,"width":25,"height":32},{"x":48,"y":0,"fileNum":4115,"id":10002,"width":25,"height":32},{"x":71,"y":0,"fileNum":4115,"id":10003,"width":25,"height":32},{"x":94,"y":0,"fileNum":4115,"id":10004,"width":25,"height":32},{"x":117,"y":0,"fileNum":4115,"id":10005,"width":25,"height":32},{"x":141,"y":0,"fileNum":4115,"id":10006,"width":25,"height":32},{"x":164,"y":0,"fileNum":4115,"id":10007,"width":25,"height":32},{"x":0,"y":31,"fileNum":4115,"id":10008,"width":25,"height":32},{"x":24,"y":31,"fileNum":4115,"id":10009,"width":25,"height":32},{"x":48,"y":31,"fileNum":4115,"id":10010,"width":25,"height":32},{"x":71,"y":31,"fileNum":4115,"id":10011,"width":25,"height":32},{"x":94,"y":31,"fileNum":4115,"id":10012,"width":25,"height":32},{"x":117,"y":31,"fileNum":4115,"id":10013,"width":25,"height":32},{"x":141,"y":31,"fileNum":4115,"id":10014,"width":25,"height":32},{"x":164,"y":31,"fileNum":4115,"id":10015,"width":25,"height":32},{"x":0,"y":62,"fileNum":4115,"id":10016,"width":25,"height":32},{"x":24,"y":62,"fileNum":4115,"id":10017,"width":25,"height":32},{"x":48,"y":62,"fileNum":4115,"id":10018,"width":25,"height":32},{"x":71,"y":62,"fileNum":4115,"id":10019,"width":25,"height":32},{"x":94,"y":62,"fileNum":4115,"id":10020,"width":25,"height":32},{"x":117,"y":62,"fileNum":4115,"id":10021,"width":25,"height":32},{"x":141,"y":62,"fileNum":4115,"id":10022,"width":25,"height":32},{"x":164,"y":62,"fileNum":4115,"id":10023,"width":25,"height":32},{"x":0,"y":93,"fileNum":4115,"id":10024,"width":25,"height":32},{"x":24,"y":93,"fileNum":4115,"id":10025,"width":25,"height":32},{"x":48,"y":93,"fileNum":4115,"id":10026,"width":25,"height":32},{"x":71,"y":93,"fileNum":4115,"id":10027,"width":25,"height":32},{"x":94,"y":93,"fileNum":4115,"id":10028,"width":25,"height":32},{"x":117,"y":93,"fileNum":4115,"id":10029,"width":25,"height":32},{"x":141,"y":93,"fileNum":4115,"id":10030,"width":25,"height":32},{"x":164,"y":93,"fileNum":4115,"id":10031,"width":25,"height":32},{"x":0,"y":0,"fileNum":4116,"id":10036,"width":57,"height":98},{"x":57,"y":0,"fileNum":4116,"id":10037,"width":57,"height":98},{"x":114,"y":0,"fileNum":4116,"id":10038,"width":57,"height":98},{"x":171,"y":0,"fileNum":4116,"id":10039,"width":57,"height":98},{"x":228,"y":0,"fileNum":4116,"id":10040,"width":57,"height":98},{"x":285,"y":0,"fileNum":4116,"id":10041,"width":57,"height":98},{"x":0,"y":98,"fileNum":4116,"id":10042,"width":57,"height":98},{"x":57,"y":98,"fileNum":4116,"id":10043,"width":57,"height":98},{"x":114,"y":98,"fileNum":4116,"id":10044,"width":57,"height":98},{"x":171,"y":98,"fileNum":4116,"id":10045,"width":57,"height":98},{"x":228,"y":98,"fileNum":4116,"id":10046,"width":57,"height":98},{"x":285,"y":98,"fileNum":4116,"id":10047,"width":57,"height":98},{"x":0,"y":196,"fileNum":4116,"id":10048,"width":57,"height":98},{"x":57,"y":196,"fileNum":4116,"id":10049,"width":57,"height":98},{"x":114,"y":196,"fileNum":4116,"id":10050,"width":57,"height":98},{"x":171,"y":196,"fileNum":4116,"id":10051,"width":57,"height":98},{"x":228,"y":196,"fileNum":4116,"id":10052,"width":57,"height":98},{"x":0,"y":294,"fileNum":4116,"id":10053,"width":57,"height":98},{"x":57,"y":294,"fileNum":4116,"id":10054,"width":57,"height":98},{"x":114,"y":294,"fileNum":4116,"id":10055,"width":57,"height":98},{"x":171,"y":294,"fileNum":4116,"id":10056,"width":57,"height":98},{"x":228,"y":294,"fileNum":4116,"id":10057,"width":57,"height":98},{"x":0,"y":0,"fileNum":194,"id":10064,"width":25,"height":45},{"x":25,"y":0,"fileNum":194,"id":10065,"width":25,"height":45},{"x":50,"y":0,"fileNum":194,"id":10066,"width":25,"height":45},{"x":75,"y":0,"fileNum":194,"id":10067,"width":25,"height":45},{"x":100,"y":0,"fileNum":194,"id":10068,"width":25,"height":45},{"x":125,"y":0,"fileNum":194,"id":10069,"width":25,"height":45},{"x":0,"y":45,"fileNum":194,"id":10070,"width":25,"height":45},{"x":25,"y":45,"fileNum":194,"id":10071,"width":25,"height":45},{"x":50,"y":45,"fileNum":194,"id":10072,"width":25,"height":45},{"x":75,"y":45,"fileNum":194,"id":10073,"width":25,"height":45},{"x":100,"y":45,"fileNum":194,"id":10074,"width":25,"height":45},{"x":125,"y":45,"fileNum":194,"id":10075,"width":25,"height":45},{"x":0,"y":90,"fileNum":194,"id":10076,"width":25,"height":45},{"x":25,"y":90,"fileNum":194,"id":10077,"width":25,"height":45},{"x":50,"y":90,"fileNum":194,"id":10078,"width":25,"height":45},{"x":75,"y":90,"fileNum":194,"id":10079,"width":25,"height":45},{"x":100,"y":90,"fileNum":194,"id":10080,"width":25,"height":45},{"x":0,"y":135,"fileNum":194,"id":10081,"width":25,"height":45},{"x":25,"y":135,"fileNum":194,"id":10082,"width":25,"height":45},{"x":50,"y":135,"fileNum":194,"id":10083,"width":25,"height":45},{"x":75,"y":135,"fileNum":194,"id":10084,"width":25,"height":45},{"x":100,"y":135,"fileNum":194,"id":10085,"width":25,"height":45},{"x":0,"y":0,"fileNum":195,"id":10090,"width":25,"height":45},{"x":25,"y":0,"fileNum":195,"id":10091,"width":25,"height":45},{"x":50,"y":0,"fileNum":195,"id":10092,"width":25,"height":45},{"x":75,"y":0,"fileNum":195,"id":10093,"width":25,"height":45},{"x":100,"y":0,"fileNum":195,"id":10094,"width":25,"height":45},{"x":125,"y":0,"fileNum":195,"id":10095,"width":25,"height":45},{"x":0,"y":45,"fileNum":195,"id":10096,"width":25,"height":45},{"x":25,"y":45,"fileNum":195,"id":10097,"width":25,"height":45},{"x":50,"y":45,"fileNum":195,"id":10098,"width":25,"height":45},{"x":75,"y":45,"fileNum":195,"id":10099,"width":25,"height":45},{"x":100,"y":45,"fileNum":195,"id":10100,"width":25,"height":45},{"x":125,"y":45,"fileNum":195,"id":10101,"width":25,"height":45},{"x":0,"y":90,"fileNum":195,"id":10102,"width":25,"height":45},{"x":25,"y":90,"fileNum":195,"id":10103,"width":25,"height":45},{"x":50,"y":90,"fileNum":195,"id":10104,"width":25,"height":45},{"x":75,"y":90,"fileNum":195,"id":10105,"width":25,"height":45},{"x":100,"y":90,"fileNum":195,"id":10106,"width":25,"height":45},{"x":0,"y":135,"fileNum":195,"id":10107,"width":25,"height":45},{"x":25,"y":135,"fileNum":195,"id":10108,"width":25,"height":45},{"x":50,"y":135,"fileNum":195,"id":10109,"width":25,"height":45},{"x":75,"y":135,"fileNum":195,"id":10110,"width":25,"height":45},{"x":100,"y":135,"fileNum":195,"id":10111,"width":25,"height":45},{"x":0,"y":0,"fileNum":196,"id":10116,"width":25,"height":45},{"x":25,"y":0,"fileNum":196,"id":10117,"width":25,"height":45},{"x":50,"y":0,"fileNum":196,"id":10118,"width":25,"height":45},{"x":75,"y":0,"fileNum":196,"id":10119,"width":25,"height":45},{"x":100,"y":0,"fileNum":196,"id":10120,"width":25,"height":45},{"x":125,"y":0,"fileNum":196,"id":10121,"width":25,"height":45},{"x":0,"y":45,"fileNum":196,"id":10122,"width":25,"height":45},{"x":25,"y":45,"fileNum":196,"id":10123,"width":25,"height":45},{"x":50,"y":45,"fileNum":196,"id":10124,"width":25,"height":45},{"x":75,"y":45,"fileNum":196,"id":10125,"width":25,"height":45},{"x":100,"y":45,"fileNum":196,"id":10126,"width":25,"height":45},{"x":125,"y":45,"fileNum":196,"id":10127,"width":25,"height":45},{"x":0,"y":90,"fileNum":196,"id":10128,"width":25,"height":45},{"x":25,"y":90,"fileNum":196,"id":10129,"width":25,"height":45},{"x":50,"y":90,"fileNum":196,"id":10130,"width":25,"height":45},{"x":75,"y":90,"fileNum":196,"id":10131,"width":25,"height":45},{"x":100,"y":90,"fileNum":196,"id":10132,"width":25,"height":45},{"x":0,"y":135,"fileNum":196,"id":10133,"width":25,"height":45},{"x":25,"y":135,"fileNum":196,"id":10134,"width":25,"height":45},{"x":50,"y":135,"fileNum":196,"id":10135,"width":25,"height":45},{"x":75,"y":135,"fileNum":196,"id":10136,"width":25,"height":45},{"x":100,"y":135,"fileNum":196,"id":10137,"width":25,"height":45},{"x":0,"y":0,"fileNum":197,"id":10142,"width":25,"height":45},{"x":25,"y":0,"fileNum":197,"id":10143,"width":25,"height":45},{"x":50,"y":0,"fileNum":197,"id":10144,"width":25,"height":45},{"x":75,"y":0,"fileNum":197,"id":10145,"width":25,"height":45},{"x":100,"y":0,"fileNum":197,"id":10146,"width":25,"height":45},{"x":125,"y":0,"fileNum":197,"id":10147,"width":25,"height":45},{"x":0,"y":45,"fileNum":197,"id":10148,"width":25,"height":45},{"x":25,"y":45,"fileNum":197,"id":10149,"width":25,"height":45},{"x":50,"y":45,"fileNum":197,"id":10150,"width":25,"height":45},{"x":75,"y":45,"fileNum":197,"id":10151,"width":25,"height":45},{"x":100,"y":45,"fileNum":197,"id":10152,"width":25,"height":45},{"x":125,"y":45,"fileNum":197,"id":10153,"width":25,"height":45},{"x":0,"y":90,"fileNum":197,"id":10154,"width":25,"height":45},{"x":25,"y":90,"fileNum":197,"id":10155,"width":25,"height":45},{"x":50,"y":90,"fileNum":197,"id":10156,"width":25,"height":45},{"x":75,"y":90,"fileNum":197,"id":10157,"width":25,"height":45},{"x":100,"y":90,"fileNum":197,"id":10158,"width":25,"height":45},{"x":0,"y":135,"fileNum":197,"id":10159,"width":25,"height":45},{"x":25,"y":135,"fileNum":197,"id":10160,"width":25,"height":45},{"x":50,"y":135,"fileNum":197,"id":10161,"width":25,"height":45},{"x":75,"y":135,"fileNum":197,"id":10162,"width":25,"height":45},{"x":100,"y":135,"fileNum":197,"id":10163,"width":25,"height":45},{"x":0,"y":0,"fileNum":198,"id":10168,"width":25,"height":45},{"x":25,"y":0,"fileNum":198,"id":10169,"width":25,"height":45},{"x":50,"y":0,"fileNum":198,"id":10170,"width":25,"height":45},{"x":75,"y":0,"fileNum":198,"id":10171,"width":25,"height":45},{"x":100,"y":0,"fileNum":198,"id":10172,"width":25,"height":45},{"x":125,"y":0,"fileNum":198,"id":10173,"width":25,"height":45},{"x":0,"y":45,"fileNum":198,"id":10174,"width":25,"height":45},{"x":25,"y":45,"fileNum":198,"id":10175,"width":25,"height":45},{"x":50,"y":45,"fileNum":198,"id":10176,"width":25,"height":45},{"x":75,"y":45,"fileNum":198,"id":10177,"width":25,"height":45},{"x":100,"y":45,"fileNum":198,"id":10178,"width":25,"height":45},{"x":125,"y":45,"fileNum":198,"id":10179,"width":25,"height":45},{"x":0,"y":90,"fileNum":198,"id":10180,"width":25,"height":45},{"x":25,"y":90,"fileNum":198,"id":10181,"width":25,"height":45},{"x":50,"y":90,"fileNum":198,"id":10182,"width":25,"height":45},{"x":75,"y":90,"fileNum":198,"id":10183,"width":25,"height":45},{"x":100,"y":90,"fileNum":198,"id":10184,"width":25,"height":45},{"x":0,"y":135,"fileNum":198,"id":10185,"width":25,"height":45},{"x":25,"y":135,"fileNum":198,"id":10186,"width":25,"height":45},{"x":50,"y":135,"fileNum":198,"id":10187,"width":25,"height":45},{"x":75,"y":135,"fileNum":198,"id":10188,"width":25,"height":45},{"x":100,"y":135,"fileNum":198,"id":10189,"width":25,"height":45},{"x":0,"y":0,"fileNum":4119,"id":10194,"width":285,"height":232},{"x":285,"y":0,"fileNum":4119,"id":10195,"width":285,"height":232},{"x":570,"y":0,"fileNum":4119,"id":10196,"width":285,"height":232},{"x":0,"y":232,"fileNum":4119,"id":10197,"width":285,"height":232},{"x":285,"y":232,"fileNum":4119,"id":10198,"width":285,"height":232},{"x":570,"y":232,"fileNum":4119,"id":10199,"width":285,"height":232},{"x":0,"y":464,"fileNum":4119,"id":10200,"width":285,"height":232},{"x":285,"y":464,"fileNum":4119,"id":10201,"width":285,"height":232},{"x":570,"y":464,"fileNum":4119,"id":10202,"width":285,"height":232},{"x":0,"y":696,"fileNum":4119,"id":10203,"width":285,"height":232},{"x":285,"y":696,"fileNum":4119,"id":10204,"width":285,"height":232},{"x":570,"y":696,"fileNum":4119,"id":10205,"width":285,"height":232},{"x":0,"y":0,"fileNum":4120,"id":10206,"width":288,"height":282},{"x":288,"y":0,"fileNum":4120,"id":10207,"width":288,"height":282},{"x":576,"y":0,"fileNum":4120,"id":10208,"width":288,"height":282},{"x":0,"y":282,"fileNum":4120,"id":10209,"width":288,"height":282},{"x":288,"y":282,"fileNum":4120,"id":10210,"width":288,"height":282},{"x":576,"y":282,"fileNum":4120,"id":10211,"width":288,"height":282},{"x":0,"y":564,"fileNum":4120,"id":10212,"width":288,"height":282},{"x":288,"y":564,"fileNum":4120,"id":10213,"width":288,"height":282},{"x":576,"y":564,"fileNum":4120,"id":10214,"width":288,"height":282},{"x":0,"y":846,"fileNum":4120,"id":10215,"width":288,"height":282},{"x":288,"y":846,"fileNum":4120,"id":10216,"width":288,"height":282},{"x":576,"y":846,"fileNum":4120,"id":10217,"width":288,"height":282},{"x":0,"y":0,"fileNum":4117,"id":10218,"width":373,"height":236},{"x":373,"y":0,"fileNum":4117,"id":10219,"width":373,"height":236},{"x":746,"y":0,"fileNum":4117,"id":10220,"width":373,"height":236},{"x":0,"y":236,"fileNum":4117,"id":10221,"width":373,"height":236},{"x":373,"y":236,"fileNum":4117,"id":10222,"width":373,"height":236},{"x":746,"y":236,"fileNum":4117,"id":10223,"width":373,"height":236},{"x":0,"y":472,"fileNum":4117,"id":10224,"width":373,"height":236},{"x":373,"y":472,"fileNum":4117,"id":10225,"width":373,"height":236},{"x":746,"y":472,"fileNum":4117,"id":10226,"width":373,"height":236},{"x":0,"y":708,"fileNum":4117,"id":10227,"width":373,"height":236},{"x":373,"y":708,"fileNum":4117,"id":10228,"width":373,"height":236},{"x":746,"y":708,"fileNum":4117,"id":10229,"width":373,"height":236},{"x":0,"y":0,"fileNum":4118,"id":10230,"width":373,"height":236},{"x":373,"y":0,"fileNum":4118,"id":10231,"width":373,"height":236},{"x":746,"y":0,"fileNum":4118,"id":10232,"width":373,"height":236},{"x":0,"y":236,"fileNum":4118,"id":10233,"width":373,"height":236},{"x":373,"y":236,"fileNum":4118,"id":10234,"width":373,"height":236},{"x":746,"y":236,"fileNum":4118,"id":10235,"width":373,"height":236},{"x":0,"y":472,"fileNum":4118,"id":10236,"width":373,"height":236},{"x":373,"y":472,"fileNum":4118,"id":10237,"width":373,"height":236},{"x":746,"y":472,"fileNum":4118,"id":10238,"width":373,"height":236},{"x":0,"y":708,"fileNum":4118,"id":10239,"width":373,"height":236},{"x":373,"y":708,"fileNum":4118,"id":10240,"width":373,"height":236},{"x":746,"y":708,"fileNum":4118,"id":10241,"width":373,"height":236},{"x":0,"y":0,"fileNum":16059,"id":10246,"width":25,"height":45},{"x":25,"y":0,"fileNum":16059,"id":10247,"width":25,"height":45},{"x":50,"y":0,"fileNum":16059,"id":10248,"width":25,"height":45},{"x":75,"y":0,"fileNum":16059,"id":10249,"width":25,"height":45},{"x":100,"y":0,"fileNum":16059,"id":10250,"width":25,"height":45},{"x":125,"y":0,"fileNum":16059,"id":10251,"width":25,"height":45},{"x":0,"y":45,"fileNum":16059,"id":10252,"width":25,"height":45},{"x":25,"y":45,"fileNum":16059,"id":10253,"width":25,"height":45},{"x":50,"y":45,"fileNum":16059,"id":10254,"width":25,"height":45},{"x":75,"y":45,"fileNum":16059,"id":10255,"width":25,"height":45},{"x":100,"y":45,"fileNum":16059,"id":10256,"width":25,"height":45},{"x":125,"y":45,"fileNum":16059,"id":10257,"width":25,"height":45},{"x":0,"y":90,"fileNum":16059,"id":10258,"width":25,"height":45},{"x":25,"y":90,"fileNum":16059,"id":10259,"width":25,"height":45},{"x":50,"y":90,"fileNum":16059,"id":10260,"width":25,"height":45},{"x":75,"y":90,"fileNum":16059,"id":10261,"width":25,"height":45},{"x":100,"y":90,"fileNum":16059,"id":10262,"width":25,"height":45},{"x":0,"y":135,"fileNum":16059,"id":10263,"width":25,"height":45},{"x":25,"y":135,"fileNum":16059,"id":10264,"width":25,"height":45},{"x":50,"y":135,"fileNum":16059,"id":10265,"width":25,"height":45},{"x":75,"y":135,"fileNum":16059,"id":10266,"width":25,"height":45},{"x":100,"y":135,"fileNum":16059,"id":10267,"width":25,"height":45},{"x":0,"y":0,"fileNum":16060,"id":10272,"width":25,"height":45},{"x":25,"y":0,"fileNum":16060,"id":10273,"width":25,"height":45},{"x":50,"y":0,"fileNum":16060,"id":10274,"width":25,"height":45},{"x":75,"y":0,"fileNum":16060,"id":10275,"width":25,"height":45},{"x":100,"y":0,"fileNum":16060,"id":10276,"width":25,"height":45},{"x":125,"y":0,"fileNum":16060,"id":10277,"width":25,"height":45},{"x":0,"y":45,"fileNum":16060,"id":10278,"width":25,"height":45},{"x":25,"y":45,"fileNum":16060,"id":10279,"width":25,"height":45},{"x":50,"y":45,"fileNum":16060,"id":10280,"width":25,"height":45},{"x":75,"y":45,"fileNum":16060,"id":10281,"width":25,"height":45},{"x":100,"y":45,"fileNum":16060,"id":10282,"width":25,"height":45},{"x":125,"y":45,"fileNum":16060,"id":10283,"width":25,"height":45},{"x":0,"y":90,"fileNum":16060,"id":10284,"width":25,"height":45},{"x":25,"y":90,"fileNum":16060,"id":10285,"width":25,"height":45},{"x":50,"y":90,"fileNum":16060,"id":10286,"width":25,"height":45},{"x":75,"y":90,"fileNum":16060,"id":10287,"width":25,"height":45},{"x":100,"y":90,"fileNum":16060,"id":10288,"width":25,"height":45},{"x":0,"y":135,"fileNum":16060,"id":10289,"width":25,"height":45},{"x":25,"y":135,"fileNum":16060,"id":10290,"width":25,"height":45},{"x":50,"y":135,"fileNum":16060,"id":10291,"width":25,"height":45},{"x":75,"y":135,"fileNum":16060,"id":10292,"width":25,"height":45},{"x":100,"y":135,"fileNum":16060,"id":10293,"width":25,"height":45},{"x":0,"y":0,"fileNum":16061,"id":10298,"width":25,"height":45},{"x":25,"y":0,"fileNum":16061,"id":10299,"width":25,"height":45},{"x":50,"y":0,"fileNum":16061,"id":10300,"width":25,"height":45},{"x":75,"y":0,"fileNum":16061,"id":10301,"width":25,"height":45},{"x":100,"y":0,"fileNum":16061,"id":10302,"width":25,"height":45},{"x":125,"y":0,"fileNum":16061,"id":10303,"width":25,"height":45},{"x":0,"y":45,"fileNum":16061,"id":10304,"width":25,"height":45},{"x":25,"y":45,"fileNum":16061,"id":10305,"width":25,"height":45},{"x":50,"y":45,"fileNum":16061,"id":10306,"width":25,"height":45},{"x":75,"y":45,"fileNum":16061,"id":10307,"width":25,"height":45},{"x":100,"y":45,"fileNum":16061,"id":10308,"width":25,"height":45},{"x":125,"y":45,"fileNum":16061,"id":10309,"width":25,"height":45},{"x":0,"y":90,"fileNum":16061,"id":10310,"width":25,"height":45},{"x":25,"y":90,"fileNum":16061,"id":10311,"width":25,"height":45},{"x":50,"y":90,"fileNum":16061,"id":10312,"width":25,"height":45},{"x":75,"y":90,"fileNum":16061,"id":10313,"width":25,"height":45},{"x":100,"y":90,"fileNum":16061,"id":10314,"width":25,"height":45},{"x":0,"y":135,"fileNum":16061,"id":10315,"width":25,"height":45},{"x":25,"y":135,"fileNum":16061,"id":10316,"width":25,"height":45},{"x":50,"y":135,"fileNum":16061,"id":10317,"width":25,"height":45},{"x":75,"y":135,"fileNum":16061,"id":10318,"width":25,"height":45},{"x":100,"y":135,"fileNum":16061,"id":10319,"width":25,"height":45},{"x":0,"y":0,"fileNum":4121,"id":10324,"width":50,"height":75},{"x":50,"y":0,"fileNum":4121,"id":10325,"width":50,"height":75},{"x":100,"y":0,"fileNum":4121,"id":10326,"width":50,"height":75},{"x":150,"y":0,"fileNum":4121,"id":10327,"width":50,"height":75},{"x":200,"y":0,"fileNum":4121,"id":10328,"width":50,"height":75},{"x":250,"y":0,"fileNum":4121,"id":10329,"width":50,"height":75},{"x":300,"y":0,"fileNum":4121,"id":10330,"width":50,"height":75},{"x":350,"y":0,"fileNum":4121,"id":10331,"width":50,"height":75},{"x":400,"y":0,"fileNum":4121,"id":10332,"width":50,"height":75},{"x":0,"y":75,"fileNum":4121,"id":10333,"width":50,"height":75},{"x":50,"y":75,"fileNum":4121,"id":10334,"width":50,"height":75},{"x":100,"y":75,"fileNum":4121,"id":10335,"width":50,"height":75},{"x":150,"y":75,"fileNum":4121,"id":10336,"width":50,"height":75},{"x":200,"y":75,"fileNum":4121,"id":10337,"width":50,"height":75},{"x":250,"y":75,"fileNum":4121,"id":10338,"width":50,"height":75},{"x":300,"y":75,"fileNum":4121,"id":10339,"width":50,"height":75},{"x":350,"y":75,"fileNum":4121,"id":10340,"width":50,"height":75},{"x":400,"y":75,"fileNum":4121,"id":10341,"width":50,"height":75},{"x":0,"y":150,"fileNum":4121,"id":10342,"width":59,"height":75},{"x":59,"y":150,"fileNum":4121,"id":10343,"width":59,"height":75},{"x":118,"y":150,"fileNum":4121,"id":10344,"width":59,"height":75},{"x":177,"y":150,"fileNum":4121,"id":10345,"width":59,"height":75},{"x":236,"y":150,"fileNum":4121,"id":10346,"width":59,"height":75},{"x":295,"y":150,"fileNum":4121,"id":10347,"width":59,"height":75},{"x":354,"y":150,"fileNum":4121,"id":10348,"width":59,"height":75},{"x":413,"y":150,"fileNum":4121,"id":10349,"width":59,"height":75},{"x":472,"y":150,"fileNum":4121,"id":10350,"width":59,"height":75},{"x":0,"y":225,"fileNum":4121,"id":10351,"width":59,"height":75},{"x":59,"y":225,"fileNum":4121,"id":10352,"width":59,"height":75},{"x":118,"y":225,"fileNum":4121,"id":10353,"width":59,"height":75},{"x":177,"y":225,"fileNum":4121,"id":10354,"width":59,"height":75},{"x":236,"y":225,"fileNum":4121,"id":10355,"width":59,"height":75},{"x":295,"y":225,"fileNum":4121,"id":10356,"width":59,"height":75},{"x":354,"y":225,"fileNum":4121,"id":10357,"width":59,"height":75},{"x":413,"y":225,"fileNum":4121,"id":10358,"width":59,"height":75},{"x":472,"y":225,"fileNum":4121,"id":10359,"width":59,"height":75},{"x":0,"y":0,"fileNum":17008,"id":10364,"width":96,"height":66},{"x":96,"y":0,"fileNum":17008,"id":10365,"width":96,"height":66},{"x":192,"y":0,"fileNum":17008,"id":10366,"width":96,"height":66},{"x":288,"y":0,"fileNum":17008,"id":10367,"width":96,"height":66},{"x":0,"y":66,"fileNum":17008,"id":10368,"width":96,"height":66},{"x":96,"y":66,"fileNum":17008,"id":10369,"width":96,"height":66},{"x":192,"y":66,"fileNum":17008,"id":10370,"width":96,"height":66},{"x":288,"y":66,"fileNum":17008,"id":10371,"width":96,"height":66},{"x":0,"y":132,"fileNum":17008,"id":10372,"width":66,"height":94},{"x":66,"y":132,"fileNum":17008,"id":10373,"width":66,"height":94},{"x":132,"y":132,"fileNum":17008,"id":10374,"width":66,"height":94},{"x":198,"y":132,"fileNum":17008,"id":10375,"width":66,"height":94},{"x":0,"y":226,"fileNum":17008,"id":10376,"width":66,"height":94},{"x":66,"y":226,"fileNum":17008,"id":10377,"width":66,"height":94},{"x":132,"y":227,"fileNum":17008,"id":10378,"width":66,"height":94},{"x":198,"y":226,"fileNum":17008,"id":10379,"width":66,"height":94},{"x":0,"y":0,"fileNum":17009,"id":10384,"width":97,"height":67},{"x":97,"y":0,"fileNum":17009,"id":10385,"width":97,"height":67},{"x":194,"y":0,"fileNum":17009,"id":10386,"width":97,"height":67},{"x":291,"y":0,"fileNum":17009,"id":10387,"width":97,"height":67},{"x":0,"y":67,"fileNum":17009,"id":10388,"width":97,"height":67},{"x":97,"y":67,"fileNum":17009,"id":10389,"width":97,"height":67},{"x":194,"y":67,"fileNum":17009,"id":10390,"width":97,"height":67},{"x":291,"y":67,"fileNum":17009,"id":10391,"width":97,"height":67},{"x":0,"y":134,"fileNum":17009,"id":10392,"width":65,"height":97},{"x":65,"y":134,"fileNum":17009,"id":10393,"width":65,"height":97},{"x":130,"y":134,"fileNum":17009,"id":10394,"width":65,"height":97},{"x":195,"y":134,"fileNum":17009,"id":10395,"width":65,"height":97},{"x":0,"y":231,"fileNum":17009,"id":10396,"width":65,"height":99},{"x":65,"y":231,"fileNum":17009,"id":10397,"width":65,"height":99},{"x":130,"y":231,"fileNum":17009,"id":10398,"width":65,"height":99},{"x":195,"y":231,"fileNum":17009,"id":10399,"width":65,"height":99},{"x":0,"y":0,"fileNum":17010,"id":10404,"width":97,"height":67},{"x":97,"y":0,"fileNum":17010,"id":10405,"width":97,"height":67},{"x":194,"y":0,"fileNum":17010,"id":10406,"width":97,"height":67},{"x":291,"y":0,"fileNum":17010,"id":10407,"width":97,"height":67},{"x":0,"y":67,"fileNum":17010,"id":10408,"width":97,"height":67},{"x":97,"y":67,"fileNum":17010,"id":10409,"width":97,"height":67},{"x":194,"y":67,"fileNum":17010,"id":10410,"width":97,"height":67},{"x":291,"y":67,"fileNum":17010,"id":10411,"width":97,"height":67},{"x":0,"y":134,"fileNum":17010,"id":10412,"width":65,"height":97},{"x":65,"y":134,"fileNum":17010,"id":10413,"width":65,"height":97},{"x":130,"y":134,"fileNum":17010,"id":10414,"width":65,"height":97},{"x":195,"y":134,"fileNum":17010,"id":10415,"width":65,"height":97},{"x":0,"y":231,"fileNum":17010,"id":10416,"width":65,"height":99},{"x":65,"y":231,"fileNum":17010,"id":10417,"width":65,"height":99},{"x":130,"y":231,"fileNum":17010,"id":10418,"width":65,"height":99},{"x":195,"y":231,"fileNum":17010,"id":10419,"width":65,"height":99},{"x":0,"y":0,"fileNum":17011,"id":10424,"width":97,"height":67},{"x":97,"y":0,"fileNum":17011,"id":10425,"width":97,"height":67},{"x":194,"y":0,"fileNum":17011,"id":10426,"width":97,"height":67},{"x":291,"y":0,"fileNum":17011,"id":10427,"width":97,"height":67},{"x":0,"y":67,"fileNum":17011,"id":10428,"width":97,"height":67},{"x":97,"y":67,"fileNum":17011,"id":10429,"width":97,"height":67},{"x":194,"y":67,"fileNum":17011,"id":10430,"width":97,"height":67},{"x":291,"y":67,"fileNum":17011,"id":10431,"width":97,"height":67},{"x":0,"y":134,"fileNum":17011,"id":10432,"width":65,"height":97},{"x":65,"y":134,"fileNum":17011,"id":10433,"width":65,"height":97},{"x":130,"y":134,"fileNum":17011,"id":10434,"width":65,"height":97},{"x":195,"y":134,"fileNum":17011,"id":10435,"width":65,"height":97},{"x":0,"y":231,"fileNum":17011,"id":10436,"width":65,"height":99},{"x":65,"y":231,"fileNum":17011,"id":10437,"width":65,"height":99},{"x":130,"y":231,"fileNum":17011,"id":10438,"width":65,"height":99},{"x":195,"y":231,"fileNum":17011,"id":10439,"width":65,"height":99},{"x":0,"y":0,"fileNum":16064,"id":10444,"width":25,"height":45},{"x":25,"y":0,"fileNum":16064,"id":10445,"width":25,"height":45},{"x":50,"y":0,"fileNum":16064,"id":10446,"width":25,"height":45},{"x":75,"y":0,"fileNum":16064,"id":10447,"width":25,"height":45},{"x":100,"y":0,"fileNum":16064,"id":10448,"width":25,"height":45},{"x":125,"y":0,"fileNum":16064,"id":10449,"width":25,"height":45},{"x":0,"y":45,"fileNum":16064,"id":10450,"width":25,"height":45},{"x":25,"y":45,"fileNum":16064,"id":10451,"width":25,"height":45},{"x":50,"y":45,"fileNum":16064,"id":10452,"width":25,"height":45},{"x":75,"y":45,"fileNum":16064,"id":10453,"width":25,"height":45},{"x":100,"y":45,"fileNum":16064,"id":10454,"width":25,"height":45},{"x":125,"y":45,"fileNum":16064,"id":10455,"width":25,"height":45},{"x":0,"y":90,"fileNum":16064,"id":10456,"width":25,"height":45},{"x":25,"y":90,"fileNum":16064,"id":10457,"width":25,"height":45},{"x":50,"y":90,"fileNum":16064,"id":10458,"width":25,"height":45},{"x":75,"y":90,"fileNum":16064,"id":10459,"width":25,"height":45},{"x":100,"y":90,"fileNum":16064,"id":10460,"width":25,"height":45},{"x":0,"y":135,"fileNum":16064,"id":10461,"width":25,"height":45},{"x":25,"y":135,"fileNum":16064,"id":10462,"width":25,"height":45},{"x":50,"y":135,"fileNum":16064,"id":10463,"width":25,"height":45},{"x":75,"y":135,"fileNum":16064,"id":10464,"width":25,"height":45},{"x":100,"y":135,"fileNum":16064,"id":10465,"width":25,"height":45},{"x":0,"y":0,"fileNum":4138,"id":10470,"width":24,"height":31},{"x":24,"y":0,"fileNum":4138,"id":10471,"width":24,"height":31},{"x":48,"y":0,"fileNum":4138,"id":10472,"width":24,"height":31},{"x":72,"y":0,"fileNum":4138,"id":10473,"width":24,"height":31},{"x":96,"y":0,"fileNum":4138,"id":10474,"width":24,"height":31},{"x":120,"y":0,"fileNum":4138,"id":10475,"width":24,"height":31},{"x":144,"y":0,"fileNum":4138,"id":10476,"width":24,"height":31},{"x":168,"y":0,"fileNum":4138,"id":10477,"width":24,"height":31},{"x":0,"y":31,"fileNum":4138,"id":10478,"width":24,"height":31},{"x":24,"y":31,"fileNum":4138,"id":10479,"width":24,"height":31},{"x":48,"y":31,"fileNum":4138,"id":10480,"width":24,"height":31},{"x":72,"y":31,"fileNum":4138,"id":10481,"width":24,"height":31},{"x":96,"y":31,"fileNum":4138,"id":10482,"width":24,"height":31},{"x":120,"y":31,"fileNum":4138,"id":10483,"width":24,"height":31},{"x":144,"y":31,"fileNum":4138,"id":10484,"width":24,"height":31},{"x":168,"y":31,"fileNum":4138,"id":10485,"width":24,"height":31},{"x":0,"y":62,"fileNum":4138,"id":10486,"width":24,"height":31},{"x":24,"y":62,"fileNum":4138,"id":10487,"width":24,"height":31},{"x":48,"y":62,"fileNum":4138,"id":10488,"width":24,"height":31},{"x":72,"y":62,"fileNum":4138,"id":10489,"width":24,"height":31},{"x":96,"y":62,"fileNum":4138,"id":10490,"width":24,"height":31},{"x":120,"y":62,"fileNum":4138,"id":10491,"width":24,"height":31},{"x":144,"y":62,"fileNum":4138,"id":10492,"width":24,"height":31},{"x":168,"y":62,"fileNum":4138,"id":10493,"width":24,"height":31},{"x":0,"y":93,"fileNum":4138,"id":10494,"width":24,"height":31},{"x":24,"y":93,"fileNum":4138,"id":10495,"width":24,"height":31},{"x":48,"y":93,"fileNum":4138,"id":10496,"width":24,"height":31},{"x":72,"y":93,"fileNum":4138,"id":10497,"width":24,"height":31},{"x":96,"y":93,"fileNum":4138,"id":10498,"width":24,"height":31},{"x":120,"y":93,"fileNum":4138,"id":10499,"width":24,"height":31},{"x":144,"y":93,"fileNum":4138,"id":10500,"width":24,"height":31},{"x":168,"y":93,"fileNum":4138,"id":10501,"width":24,"height":31},{"x":0,"y":0,"fileNum":348,"id":10506,"width":25,"height":45},{"x":25,"y":0,"fileNum":348,"id":10507,"width":25,"height":45},{"x":50,"y":0,"fileNum":348,"id":10508,"width":25,"height":45},{"x":75,"y":0,"fileNum":348,"id":10509,"width":25,"height":45},{"x":100,"y":0,"fileNum":348,"id":10510,"width":25,"height":45},{"x":125,"y":0,"fileNum":348,"id":10511,"width":25,"height":45},{"x":0,"y":45,"fileNum":348,"id":10512,"width":25,"height":45},{"x":25,"y":45,"fileNum":348,"id":10513,"width":25,"height":45},{"x":50,"y":45,"fileNum":348,"id":10514,"width":25,"height":45},{"x":75,"y":45,"fileNum":348,"id":10515,"width":25,"height":45},{"x":100,"y":45,"fileNum":348,"id":10516,"width":25,"height":45},{"x":125,"y":45,"fileNum":348,"id":10517,"width":25,"height":45},{"x":0,"y":90,"fileNum":348,"id":10518,"width":25,"height":45},{"x":25,"y":90,"fileNum":348,"id":10519,"width":25,"height":45},{"x":50,"y":90,"fileNum":348,"id":10520,"width":25,"height":45},{"x":75,"y":90,"fileNum":348,"id":10521,"width":25,"height":45},{"x":100,"y":90,"fileNum":348,"id":10522,"width":25,"height":45},{"x":0,"y":135,"fileNum":348,"id":10523,"width":25,"height":45},{"x":25,"y":135,"fileNum":348,"id":10524,"width":25,"height":45},{"x":50,"y":135,"fileNum":348,"id":10525,"width":25,"height":45},{"x":75,"y":135,"fileNum":348,"id":10526,"width":25,"height":45},{"x":100,"y":135,"fileNum":348,"id":10527,"width":25,"height":45},{"x":0,"y":0,"fileNum":350,"id":10532,"width":25,"height":45},{"x":25,"y":0,"fileNum":350,"id":10533,"width":25,"height":45},{"x":50,"y":0,"fileNum":350,"id":10534,"width":25,"height":45},{"x":75,"y":0,"fileNum":350,"id":10535,"width":25,"height":45},{"x":100,"y":0,"fileNum":350,"id":10536,"width":25,"height":45},{"x":125,"y":0,"fileNum":350,"id":10537,"width":25,"height":45},{"x":0,"y":45,"fileNum":350,"id":10538,"width":25,"height":45},{"x":25,"y":45,"fileNum":350,"id":10539,"width":25,"height":45},{"x":50,"y":45,"fileNum":350,"id":10540,"width":25,"height":45},{"x":75,"y":45,"fileNum":350,"id":10541,"width":25,"height":45},{"x":100,"y":45,"fileNum":350,"id":10542,"width":25,"height":45},{"x":125,"y":45,"fileNum":350,"id":10543,"width":25,"height":45},{"x":0,"y":90,"fileNum":350,"id":10544,"width":25,"height":45},{"x":25,"y":90,"fileNum":350,"id":10545,"width":25,"height":45},{"x":50,"y":90,"fileNum":350,"id":10546,"width":25,"height":45},{"x":75,"y":90,"fileNum":350,"id":10547,"width":25,"height":45},{"x":100,"y":90,"fileNum":350,"id":10548,"width":25,"height":45},{"x":0,"y":135,"fileNum":350,"id":10549,"width":25,"height":45},{"x":25,"y":135,"fileNum":350,"id":10550,"width":25,"height":45},{"x":50,"y":135,"fileNum":350,"id":10551,"width":25,"height":45},{"x":75,"y":135,"fileNum":350,"id":10552,"width":25,"height":45},{"x":100,"y":135,"fileNum":350,"id":10553,"width":25,"height":45},{"x":0,"y":0,"fileNum":351,"id":10558,"width":25,"height":45},{"x":25,"y":0,"fileNum":351,"id":10559,"width":25,"height":45},{"x":50,"y":0,"fileNum":351,"id":10560,"width":25,"height":45},{"x":75,"y":0,"fileNum":351,"id":10561,"width":25,"height":45},{"x":100,"y":0,"fileNum":351,"id":10562,"width":25,"height":45},{"x":125,"y":0,"fileNum":351,"id":10563,"width":25,"height":45},{"x":0,"y":45,"fileNum":351,"id":10564,"width":25,"height":45},{"x":25,"y":45,"fileNum":351,"id":10565,"width":25,"height":45},{"x":50,"y":45,"fileNum":351,"id":10566,"width":25,"height":45},{"x":75,"y":45,"fileNum":351,"id":10567,"width":25,"height":45},{"x":100,"y":45,"fileNum":351,"id":10568,"width":25,"height":45},{"x":125,"y":45,"fileNum":351,"id":10569,"width":25,"height":45},{"x":0,"y":90,"fileNum":351,"id":10570,"width":25,"height":45},{"x":25,"y":90,"fileNum":351,"id":10571,"width":25,"height":45},{"x":50,"y":90,"fileNum":351,"id":10572,"width":25,"height":45},{"x":75,"y":90,"fileNum":351,"id":10573,"width":25,"height":45},{"x":100,"y":90,"fileNum":351,"id":10574,"width":25,"height":45},{"x":0,"y":135,"fileNum":351,"id":10575,"width":25,"height":45},{"x":25,"y":135,"fileNum":351,"id":10576,"width":25,"height":45},{"x":50,"y":135,"fileNum":351,"id":10577,"width":25,"height":45},{"x":75,"y":135,"fileNum":351,"id":10578,"width":25,"height":45},{"x":100,"y":135,"fileNum":351,"id":10579,"width":25,"height":45},{"x":0,"y":0,"fileNum":352,"id":10584,"width":25,"height":45},{"x":25,"y":0,"fileNum":352,"id":10585,"width":25,"height":45},{"x":50,"y":0,"fileNum":352,"id":10586,"width":25,"height":45},{"x":75,"y":0,"fileNum":352,"id":10587,"width":25,"height":45},{"x":100,"y":0,"fileNum":352,"id":10588,"width":25,"height":45},{"x":125,"y":0,"fileNum":352,"id":10589,"width":25,"height":45},{"x":0,"y":45,"fileNum":352,"id":10590,"width":25,"height":45},{"x":25,"y":45,"fileNum":352,"id":10591,"width":25,"height":45},{"x":50,"y":45,"fileNum":352,"id":10592,"width":25,"height":45},{"x":75,"y":45,"fileNum":352,"id":10593,"width":25,"height":45},{"x":100,"y":45,"fileNum":352,"id":10594,"width":25,"height":45},{"x":125,"y":45,"fileNum":352,"id":10595,"width":25,"height":45},{"x":0,"y":90,"fileNum":352,"id":10596,"width":25,"height":45},{"x":25,"y":90,"fileNum":352,"id":10597,"width":25,"height":45},{"x":50,"y":90,"fileNum":352,"id":10598,"width":25,"height":45},{"x":75,"y":90,"fileNum":352,"id":10599,"width":25,"height":45},{"x":100,"y":90,"fileNum":352,"id":10600,"width":25,"height":45},{"x":0,"y":135,"fileNum":352,"id":10601,"width":25,"height":45},{"x":25,"y":135,"fileNum":352,"id":10602,"width":25,"height":45},{"x":50,"y":135,"fileNum":352,"id":10603,"width":25,"height":45},{"x":75,"y":135,"fileNum":352,"id":10604,"width":25,"height":45},{"x":100,"y":135,"fileNum":352,"id":10605,"width":25,"height":45},{"x":0,"y":0,"fileNum":353,"id":10610,"width":25,"height":45},{"x":25,"y":0,"fileNum":353,"id":10611,"width":25,"height":45},{"x":50,"y":0,"fileNum":353,"id":10612,"width":25,"height":45},{"x":75,"y":0,"fileNum":353,"id":10613,"width":25,"height":45},{"x":100,"y":0,"fileNum":353,"id":10614,"width":25,"height":45},{"x":125,"y":0,"fileNum":353,"id":10615,"width":25,"height":45},{"x":0,"y":45,"fileNum":353,"id":10616,"width":25,"height":45},{"x":25,"y":45,"fileNum":353,"id":10617,"width":25,"height":45},{"x":50,"y":45,"fileNum":353,"id":10618,"width":25,"height":45},{"x":75,"y":45,"fileNum":353,"id":10619,"width":25,"height":45},{"x":100,"y":45,"fileNum":353,"id":10620,"width":25,"height":45},{"x":125,"y":45,"fileNum":353,"id":10621,"width":25,"height":45},{"x":0,"y":90,"fileNum":353,"id":10622,"width":25,"height":45},{"x":25,"y":90,"fileNum":353,"id":10623,"width":25,"height":45},{"x":50,"y":90,"fileNum":353,"id":10624,"width":25,"height":45},{"x":75,"y":90,"fileNum":353,"id":10625,"width":25,"height":45},{"x":100,"y":90,"fileNum":353,"id":10626,"width":25,"height":45},{"x":0,"y":135,"fileNum":353,"id":10627,"width":25,"height":45},{"x":25,"y":135,"fileNum":353,"id":10628,"width":25,"height":45},{"x":50,"y":135,"fileNum":353,"id":10629,"width":25,"height":45},{"x":75,"y":135,"fileNum":353,"id":10630,"width":25,"height":45},{"x":100,"y":135,"fileNum":353,"id":10631,"width":25,"height":45},{"x":0,"y":0,"fileNum":354,"id":10636,"width":25,"height":45},{"x":25,"y":0,"fileNum":354,"id":10637,"width":25,"height":45},{"x":50,"y":0,"fileNum":354,"id":10638,"width":25,"height":45},{"x":75,"y":0,"fileNum":354,"id":10639,"width":25,"height":45},{"x":100,"y":0,"fileNum":354,"id":10640,"width":25,"height":45},{"x":125,"y":0,"fileNum":354,"id":10641,"width":25,"height":45},{"x":0,"y":45,"fileNum":354,"id":10642,"width":25,"height":45},{"x":25,"y":45,"fileNum":354,"id":10643,"width":25,"height":45},{"x":50,"y":45,"fileNum":354,"id":10644,"width":25,"height":45},{"x":75,"y":45,"fileNum":354,"id":10645,"width":25,"height":45},{"x":100,"y":45,"fileNum":354,"id":10646,"width":25,"height":45},{"x":125,"y":45,"fileNum":354,"id":10647,"width":25,"height":45},{"x":0,"y":90,"fileNum":354,"id":10648,"width":25,"height":45},{"x":25,"y":90,"fileNum":354,"id":10649,"width":25,"height":45},{"x":50,"y":90,"fileNum":354,"id":10650,"width":25,"height":45},{"x":75,"y":90,"fileNum":354,"id":10651,"width":25,"height":45},{"x":100,"y":90,"fileNum":354,"id":10652,"width":25,"height":45},{"x":0,"y":135,"fileNum":354,"id":10653,"width":25,"height":45},{"x":25,"y":135,"fileNum":354,"id":10654,"width":25,"height":45},{"x":50,"y":135,"fileNum":354,"id":10655,"width":25,"height":45},{"x":75,"y":135,"fileNum":354,"id":10656,"width":25,"height":45},{"x":100,"y":135,"fileNum":354,"id":10657,"width":25,"height":45},{"x":0,"y":0,"fileNum":355,"id":10662,"width":25,"height":45},{"x":25,"y":0,"fileNum":355,"id":10663,"width":25,"height":45},{"x":50,"y":0,"fileNum":355,"id":10664,"width":25,"height":45},{"x":75,"y":0,"fileNum":355,"id":10665,"width":25,"height":45},{"x":100,"y":0,"fileNum":355,"id":10666,"width":25,"height":45},{"x":125,"y":0,"fileNum":355,"id":10667,"width":25,"height":45},{"x":0,"y":45,"fileNum":355,"id":10668,"width":25,"height":45},{"x":25,"y":45,"fileNum":355,"id":10669,"width":25,"height":45},{"x":50,"y":45,"fileNum":355,"id":10670,"width":25,"height":45},{"x":75,"y":45,"fileNum":355,"id":10671,"width":25,"height":45},{"x":100,"y":45,"fileNum":355,"id":10672,"width":25,"height":45},{"x":125,"y":45,"fileNum":355,"id":10673,"width":25,"height":45},{"x":0,"y":90,"fileNum":355,"id":10674,"width":25,"height":45},{"x":25,"y":90,"fileNum":355,"id":10675,"width":25,"height":45},{"x":50,"y":90,"fileNum":355,"id":10676,"width":25,"height":45},{"x":75,"y":90,"fileNum":355,"id":10677,"width":25,"height":45},{"x":100,"y":90,"fileNum":355,"id":10678,"width":25,"height":45},{"x":0,"y":135,"fileNum":355,"id":10679,"width":25,"height":45},{"x":25,"y":135,"fileNum":355,"id":10680,"width":25,"height":45},{"x":50,"y":135,"fileNum":355,"id":10681,"width":25,"height":45},{"x":75,"y":135,"fileNum":355,"id":10682,"width":25,"height":45},{"x":100,"y":135,"fileNum":355,"id":10683,"width":25,"height":45},{"x":0,"y":0,"fileNum":356,"id":10688,"width":25,"height":45},{"x":25,"y":0,"fileNum":356,"id":10689,"width":25,"height":45},{"x":50,"y":0,"fileNum":356,"id":10690,"width":25,"height":45},{"x":75,"y":0,"fileNum":356,"id":10691,"width":25,"height":45},{"x":100,"y":0,"fileNum":356,"id":10692,"width":25,"height":45},{"x":125,"y":0,"fileNum":356,"id":10693,"width":25,"height":45},{"x":0,"y":45,"fileNum":356,"id":10694,"width":25,"height":45},{"x":25,"y":45,"fileNum":356,"id":10695,"width":25,"height":45},{"x":50,"y":45,"fileNum":356,"id":10696,"width":25,"height":45},{"x":75,"y":45,"fileNum":356,"id":10697,"width":25,"height":45},{"x":100,"y":45,"fileNum":356,"id":10698,"width":25,"height":45},{"x":125,"y":45,"fileNum":356,"id":10699,"width":25,"height":45},{"x":0,"y":90,"fileNum":356,"id":10700,"width":25,"height":45},{"x":25,"y":90,"fileNum":356,"id":10701,"width":25,"height":45},{"x":50,"y":90,"fileNum":356,"id":10702,"width":25,"height":45},{"x":75,"y":90,"fileNum":356,"id":10703,"width":25,"height":45},{"x":100,"y":90,"fileNum":356,"id":10704,"width":25,"height":45},{"x":0,"y":135,"fileNum":356,"id":10705,"width":25,"height":45},{"x":25,"y":135,"fileNum":356,"id":10706,"width":25,"height":45},{"x":50,"y":135,"fileNum":356,"id":10707,"width":25,"height":45},{"x":75,"y":135,"fileNum":356,"id":10708,"width":25,"height":45},{"x":100,"y":135,"fileNum":356,"id":10709,"width":25,"height":45},{"x":0,"y":0,"fileNum":357,"id":10714,"width":25,"height":45},{"x":25,"y":0,"fileNum":357,"id":10715,"width":25,"height":45},{"x":50,"y":0,"fileNum":357,"id":10716,"width":25,"height":45},{"x":75,"y":0,"fileNum":357,"id":10717,"width":25,"height":45},{"x":100,"y":0,"fileNum":357,"id":10718,"width":25,"height":45},{"x":125,"y":0,"fileNum":357,"id":10719,"width":25,"height":45},{"x":0,"y":45,"fileNum":357,"id":10720,"width":25,"height":45},{"x":25,"y":45,"fileNum":357,"id":10721,"width":25,"height":45},{"x":50,"y":45,"fileNum":357,"id":10722,"width":25,"height":45},{"x":75,"y":45,"fileNum":357,"id":10723,"width":25,"height":45},{"x":100,"y":45,"fileNum":357,"id":10724,"width":25,"height":45},{"x":125,"y":45,"fileNum":357,"id":10725,"width":25,"height":45},{"x":0,"y":90,"fileNum":357,"id":10726,"width":25,"height":45},{"x":25,"y":90,"fileNum":357,"id":10727,"width":25,"height":45},{"x":50,"y":90,"fileNum":357,"id":10728,"width":25,"height":45},{"x":75,"y":90,"fileNum":357,"id":10729,"width":25,"height":45},{"x":100,"y":90,"fileNum":357,"id":10730,"width":25,"height":45},{"x":0,"y":135,"fileNum":357,"id":10731,"width":25,"height":45},{"x":25,"y":135,"fileNum":357,"id":10732,"width":25,"height":45},{"x":50,"y":135,"fileNum":357,"id":10733,"width":25,"height":45},{"x":75,"y":135,"fileNum":357,"id":10734,"width":25,"height":45},{"x":100,"y":135,"fileNum":357,"id":10735,"width":25,"height":45},{"x":0,"y":0,"fileNum":358,"id":10740,"width":25,"height":45},{"x":25,"y":0,"fileNum":358,"id":10741,"width":25,"height":45},{"x":50,"y":0,"fileNum":358,"id":10742,"width":25,"height":45},{"x":75,"y":0,"fileNum":358,"id":10743,"width":25,"height":45},{"x":100,"y":0,"fileNum":358,"id":10744,"width":25,"height":45},{"x":125,"y":0,"fileNum":358,"id":10745,"width":25,"height":45},{"x":0,"y":45,"fileNum":358,"id":10746,"width":25,"height":45},{"x":25,"y":45,"fileNum":358,"id":10747,"width":25,"height":45},{"x":50,"y":45,"fileNum":358,"id":10748,"width":25,"height":45},{"x":75,"y":45,"fileNum":358,"id":10749,"width":25,"height":45},{"x":100,"y":45,"fileNum":358,"id":10750,"width":25,"height":45},{"x":125,"y":45,"fileNum":358,"id":10751,"width":25,"height":45},{"x":0,"y":90,"fileNum":358,"id":10752,"width":25,"height":45},{"x":25,"y":90,"fileNum":358,"id":10753,"width":25,"height":45},{"x":50,"y":90,"fileNum":358,"id":10754,"width":25,"height":45},{"x":75,"y":90,"fileNum":358,"id":10755,"width":25,"height":45},{"x":100,"y":90,"fileNum":358,"id":10756,"width":25,"height":45},{"x":0,"y":135,"fileNum":358,"id":10757,"width":25,"height":45},{"x":25,"y":135,"fileNum":358,"id":10758,"width":25,"height":45},{"x":50,"y":135,"fileNum":358,"id":10759,"width":25,"height":45},{"x":75,"y":135,"fileNum":358,"id":10760,"width":25,"height":45},{"x":100,"y":135,"fileNum":358,"id":10761,"width":25,"height":45},{"x":0,"y":0,"fileNum":4140,"id":10766,"width":49,"height":200},{"x":49,"y":0,"fileNum":4140,"id":10767,"width":49,"height":200},{"x":98,"y":0,"fileNum":4140,"id":10768,"width":49,"height":200},{"x":147,"y":0,"fileNum":4140,"id":10769,"width":49,"height":200},{"x":196,"y":0,"fileNum":4140,"id":10770,"width":49,"height":200},{"x":0,"y":0,"fileNum":4141,"id":10771,"width":49,"height":200},{"x":49,"y":0,"fileNum":4141,"id":10772,"width":49,"height":200},{"x":98,"y":0,"fileNum":4141,"id":10773,"width":49,"height":200},{"x":147,"y":0,"fileNum":4141,"id":10774,"width":49,"height":200},{"x":196,"y":0,"fileNum":4141,"id":10775,"width":49,"height":200},{"x":0,"y":0,"fileNum":4139,"id":10776,"width":328,"height":65},{"x":0,"y":65,"fileNum":4139,"id":10777,"width":328,"height":65},{"x":0,"y":130,"fileNum":4139,"id":10778,"width":328,"height":65},{"x":0,"y":195,"fileNum":4139,"id":10779,"width":328,"height":65},{"x":0,"y":260,"fileNum":4139,"id":10780,"width":328,"height":65},{"x":0,"y":0,"fileNum":4142,"id":10781,"width":328,"height":65},{"x":0,"y":65,"fileNum":4142,"id":10782,"width":328,"height":65},{"x":0,"y":130,"fileNum":4142,"id":10783,"width":328,"height":65},{"x":0,"y":195,"fileNum":4142,"id":10784,"width":328,"height":65},{"x":0,"y":260,"fileNum":4142,"id":10785,"width":328,"height":65},{"x":0,"y":0,"fileNum":360,"id":10790,"width":25,"height":45},{"x":25,"y":0,"fileNum":360,"id":10791,"width":25,"height":45},{"x":50,"y":0,"fileNum":360,"id":10792,"width":25,"height":45},{"x":75,"y":0,"fileNum":360,"id":10793,"width":25,"height":45},{"x":100,"y":0,"fileNum":360,"id":10794,"width":25,"height":45},{"x":125,"y":0,"fileNum":360,"id":10795,"width":25,"height":45},{"x":0,"y":45,"fileNum":360,"id":10796,"width":25,"height":45},{"x":25,"y":45,"fileNum":360,"id":10797,"width":25,"height":45},{"x":50,"y":45,"fileNum":360,"id":10798,"width":25,"height":45},{"x":75,"y":45,"fileNum":360,"id":10799,"width":25,"height":45},{"x":100,"y":45,"fileNum":360,"id":10800,"width":25,"height":45},{"x":125,"y":45,"fileNum":360,"id":10801,"width":25,"height":45},{"x":0,"y":90,"fileNum":360,"id":10802,"width":25,"height":45},{"x":25,"y":90,"fileNum":360,"id":10803,"width":25,"height":45},{"x":50,"y":90,"fileNum":360,"id":10804,"width":25,"height":45},{"x":75,"y":90,"fileNum":360,"id":10805,"width":25,"height":45},{"x":100,"y":90,"fileNum":360,"id":10806,"width":25,"height":45},{"x":0,"y":135,"fileNum":360,"id":10807,"width":25,"height":45},{"x":25,"y":135,"fileNum":360,"id":10808,"width":25,"height":45},{"x":50,"y":135,"fileNum":360,"id":10809,"width":25,"height":45},{"x":75,"y":135,"fileNum":360,"id":10810,"width":25,"height":45},{"x":100,"y":135,"fileNum":360,"id":10811,"width":25,"height":45},{"x":0,"y":0,"fileNum":361,"id":10816,"width":25,"height":45},{"x":25,"y":0,"fileNum":361,"id":10817,"width":25,"height":45},{"x":50,"y":0,"fileNum":361,"id":10818,"width":25,"height":45},{"x":75,"y":0,"fileNum":361,"id":10819,"width":25,"height":45},{"x":100,"y":0,"fileNum":361,"id":10820,"width":25,"height":45},{"x":125,"y":0,"fileNum":361,"id":10821,"width":25,"height":45},{"x":0,"y":45,"fileNum":361,"id":10822,"width":25,"height":45},{"x":25,"y":45,"fileNum":361,"id":10823,"width":25,"height":45},{"x":50,"y":45,"fileNum":361,"id":10824,"width":25,"height":45},{"x":75,"y":45,"fileNum":361,"id":10825,"width":25,"height":45},{"x":100,"y":45,"fileNum":361,"id":10826,"width":25,"height":45},{"x":125,"y":45,"fileNum":361,"id":10827,"width":25,"height":45},{"x":0,"y":90,"fileNum":361,"id":10828,"width":25,"height":45},{"x":25,"y":90,"fileNum":361,"id":10829,"width":25,"height":45},{"x":50,"y":90,"fileNum":361,"id":10830,"width":25,"height":45},{"x":75,"y":90,"fileNum":361,"id":10831,"width":25,"height":45},{"x":100,"y":90,"fileNum":361,"id":10832,"width":25,"height":45},{"x":0,"y":135,"fileNum":361,"id":10833,"width":25,"height":45},{"x":25,"y":135,"fileNum":361,"id":10834,"width":25,"height":45},{"x":50,"y":135,"fileNum":361,"id":10835,"width":25,"height":45},{"x":75,"y":135,"fileNum":361,"id":10836,"width":25,"height":45},{"x":100,"y":135,"fileNum":361,"id":10837,"width":25,"height":45},{"x":0,"y":0,"fileNum":362,"id":10842,"width":25,"height":45},{"x":25,"y":0,"fileNum":362,"id":10843,"width":25,"height":45},{"x":50,"y":0,"fileNum":362,"id":10844,"width":25,"height":45},{"x":75,"y":0,"fileNum":362,"id":10845,"width":25,"height":45},{"x":100,"y":0,"fileNum":362,"id":10846,"width":25,"height":45},{"x":125,"y":0,"fileNum":362,"id":10847,"width":25,"height":45},{"x":0,"y":45,"fileNum":362,"id":10848,"width":25,"height":45},{"x":25,"y":45,"fileNum":362,"id":10849,"width":25,"height":45},{"x":50,"y":45,"fileNum":362,"id":10850,"width":25,"height":45},{"x":75,"y":45,"fileNum":362,"id":10851,"width":25,"height":45},{"x":100,"y":45,"fileNum":362,"id":10852,"width":25,"height":45},{"x":125,"y":45,"fileNum":362,"id":10853,"width":25,"height":45},{"x":0,"y":90,"fileNum":362,"id":10854,"width":25,"height":45},{"x":25,"y":90,"fileNum":362,"id":10855,"width":25,"height":45},{"x":50,"y":90,"fileNum":362,"id":10856,"width":25,"height":45},{"x":75,"y":90,"fileNum":362,"id":10857,"width":25,"height":45},{"x":100,"y":90,"fileNum":362,"id":10858,"width":25,"height":45},{"x":0,"y":135,"fileNum":362,"id":10859,"width":25,"height":45},{"x":25,"y":135,"fileNum":362,"id":10860,"width":25,"height":45},{"x":50,"y":135,"fileNum":362,"id":10861,"width":25,"height":45},{"x":75,"y":135,"fileNum":362,"id":10862,"width":25,"height":45},{"x":100,"y":135,"fileNum":362,"id":10863,"width":25,"height":45},{"x":0,"y":0,"fileNum":2183,"id":10868,"width":17,"height":50},{"x":17,"y":0,"fileNum":2183,"id":10869,"width":17,"height":50},{"x":34,"y":0,"fileNum":2183,"id":10870,"width":17,"height":50},{"x":51,"y":0,"fileNum":2183,"id":10871,"width":17,"height":50},{"x":0,"y":0,"fileNum":2184,"id":10872,"width":17,"height":50},{"x":17,"y":0,"fileNum":2184,"id":10873,"width":17,"height":50},{"x":34,"y":0,"fileNum":2184,"id":10874,"width":17,"height":50},{"x":51,"y":0,"fileNum":2184,"id":10875,"width":17,"height":50},{"x":0,"y":0,"fileNum":2185,"id":10876,"width":17,"height":50},{"x":17,"y":0,"fileNum":2185,"id":10877,"width":17,"height":50},{"x":34,"y":0,"fileNum":2185,"id":10878,"width":17,"height":50},{"x":51,"y":0,"fileNum":2185,"id":10879,"width":17,"height":50},{"x":0,"y":0,"fileNum":2186,"id":10880,"width":17,"height":50},{"x":17,"y":0,"fileNum":2186,"id":10881,"width":17,"height":50},{"x":34,"y":0,"fileNum":2186,"id":10882,"width":17,"height":50},{"x":51,"y":0,"fileNum":2186,"id":10883,"width":17,"height":50},{"x":0,"y":0,"fileNum":2187,"id":10884,"width":17,"height":50},{"x":17,"y":0,"fileNum":2187,"id":10885,"width":17,"height":50},{"x":34,"y":0,"fileNum":2187,"id":10886,"width":17,"height":50},{"x":51,"y":0,"fileNum":2187,"id":10887,"width":17,"height":50},{"x":0,"y":0,"fileNum":2188,"id":10888,"width":17,"height":50},{"x":17,"y":0,"fileNum":2188,"id":10889,"width":17,"height":50},{"x":34,"y":0,"fileNum":2188,"id":10890,"width":17,"height":50},{"x":51,"y":0,"fileNum":2188,"id":10891,"width":17,"height":50},{"x":0,"y":0,"fileNum":364,"id":10893,"width":25,"height":45},{"x":25,"y":0,"fileNum":364,"id":10894,"width":25,"height":45},{"x":50,"y":0,"fileNum":364,"id":10895,"width":25,"height":45},{"x":75,"y":0,"fileNum":364,"id":10896,"width":25,"height":45},{"x":100,"y":0,"fileNum":364,"id":10897,"width":25,"height":45},{"x":125,"y":0,"fileNum":364,"id":10898,"width":25,"height":45},{"x":0,"y":45,"fileNum":364,"id":10899,"width":25,"height":45},{"x":25,"y":45,"fileNum":364,"id":10900,"width":25,"height":45},{"x":50,"y":45,"fileNum":364,"id":10901,"width":25,"height":45},{"x":75,"y":45,"fileNum":364,"id":10902,"width":25,"height":45},{"x":100,"y":45,"fileNum":364,"id":10903,"width":25,"height":45},{"x":125,"y":45,"fileNum":364,"id":10904,"width":25,"height":45},{"x":0,"y":90,"fileNum":364,"id":10905,"width":25,"height":45},{"x":25,"y":90,"fileNum":364,"id":10906,"width":25,"height":45},{"x":50,"y":90,"fileNum":364,"id":10907,"width":25,"height":45},{"x":75,"y":90,"fileNum":364,"id":10908,"width":25,"height":45},{"x":100,"y":90,"fileNum":364,"id":10909,"width":25,"height":45},{"x":0,"y":135,"fileNum":364,"id":10910,"width":25,"height":45},{"x":25,"y":135,"fileNum":364,"id":10911,"width":25,"height":45},{"x":50,"y":135,"fileNum":364,"id":10912,"width":25,"height":45},{"x":75,"y":135,"fileNum":364,"id":10913,"width":25,"height":45},{"x":100,"y":135,"fileNum":364,"id":10914,"width":25,"height":45},{"x":0,"y":0,"fileNum":365,"id":10919,"width":25,"height":45},{"x":25,"y":0,"fileNum":365,"id":10920,"width":25,"height":45},{"x":50,"y":0,"fileNum":365,"id":10921,"width":25,"height":45},{"x":75,"y":0,"fileNum":365,"id":10922,"width":25,"height":45},{"x":100,"y":0,"fileNum":365,"id":10923,"width":25,"height":45},{"x":125,"y":0,"fileNum":365,"id":10924,"width":25,"height":45},{"x":0,"y":45,"fileNum":365,"id":10925,"width":25,"height":45},{"x":25,"y":45,"fileNum":365,"id":10926,"width":25,"height":45},{"x":50,"y":45,"fileNum":365,"id":10927,"width":25,"height":45},{"x":75,"y":45,"fileNum":365,"id":10928,"width":25,"height":45},{"x":100,"y":45,"fileNum":365,"id":10929,"width":25,"height":45},{"x":125,"y":45,"fileNum":365,"id":10930,"width":25,"height":45},{"x":0,"y":90,"fileNum":365,"id":10931,"width":25,"height":45},{"x":25,"y":90,"fileNum":365,"id":10932,"width":25,"height":45},{"x":50,"y":90,"fileNum":365,"id":10933,"width":25,"height":45},{"x":75,"y":90,"fileNum":365,"id":10934,"width":25,"height":45},{"x":100,"y":90,"fileNum":365,"id":10935,"width":25,"height":45},{"x":0,"y":135,"fileNum":365,"id":10936,"width":25,"height":45},{"x":25,"y":135,"fileNum":365,"id":10937,"width":25,"height":45},{"x":50,"y":135,"fileNum":365,"id":10938,"width":25,"height":45},{"x":75,"y":135,"fileNum":365,"id":10939,"width":25,"height":45},{"x":100,"y":135,"fileNum":365,"id":10940,"width":25,"height":45},{"x":0,"y":0,"fileNum":366,"id":10945,"width":25,"height":45},{"x":25,"y":0,"fileNum":366,"id":10946,"width":25,"height":45},{"x":50,"y":0,"fileNum":366,"id":10947,"width":25,"height":45},{"x":75,"y":0,"fileNum":366,"id":10948,"width":25,"height":45},{"x":100,"y":0,"fileNum":366,"id":10949,"width":25,"height":45},{"x":125,"y":0,"fileNum":366,"id":10950,"width":25,"height":45},{"x":0,"y":45,"fileNum":366,"id":10951,"width":25,"height":45},{"x":25,"y":45,"fileNum":366,"id":10952,"width":25,"height":45},{"x":50,"y":45,"fileNum":366,"id":10953,"width":25,"height":45},{"x":75,"y":45,"fileNum":366,"id":10954,"width":25,"height":45},{"x":100,"y":45,"fileNum":366,"id":10955,"width":25,"height":45},{"x":125,"y":45,"fileNum":366,"id":10956,"width":25,"height":45},{"x":0,"y":90,"fileNum":366,"id":10957,"width":25,"height":45},{"x":25,"y":90,"fileNum":366,"id":10958,"width":25,"height":45},{"x":50,"y":90,"fileNum":366,"id":10959,"width":25,"height":45},{"x":75,"y":90,"fileNum":366,"id":10960,"width":25,"height":45},{"x":100,"y":90,"fileNum":366,"id":10961,"width":25,"height":45},{"x":0,"y":135,"fileNum":366,"id":10962,"width":25,"height":45},{"x":25,"y":135,"fileNum":366,"id":10963,"width":25,"height":45},{"x":50,"y":135,"fileNum":366,"id":10964,"width":25,"height":45},{"x":75,"y":135,"fileNum":366,"id":10965,"width":25,"height":45},{"x":100,"y":135,"fileNum":366,"id":10966,"width":25,"height":45},{"x":0,"y":0,"fileNum":368,"id":10971,"width":25,"height":45},{"x":25,"y":0,"fileNum":368,"id":10972,"width":25,"height":45},{"x":50,"y":0,"fileNum":368,"id":10973,"width":25,"height":45},{"x":75,"y":0,"fileNum":368,"id":10974,"width":25,"height":45},{"x":100,"y":0,"fileNum":368,"id":10975,"width":25,"height":45},{"x":125,"y":0,"fileNum":368,"id":10976,"width":25,"height":45},{"x":0,"y":45,"fileNum":368,"id":10977,"width":25,"height":45},{"x":25,"y":45,"fileNum":368,"id":10978,"width":25,"height":45},{"x":50,"y":45,"fileNum":368,"id":10979,"width":25,"height":45},{"x":75,"y":45,"fileNum":368,"id":10980,"width":25,"height":45},{"x":100,"y":45,"fileNum":368,"id":10981,"width":25,"height":45},{"x":125,"y":45,"fileNum":368,"id":10982,"width":25,"height":45},{"x":0,"y":90,"fileNum":368,"id":10983,"width":25,"height":45},{"x":25,"y":90,"fileNum":368,"id":10984,"width":25,"height":45},{"x":50,"y":90,"fileNum":368,"id":10985,"width":25,"height":45},{"x":75,"y":90,"fileNum":368,"id":10986,"width":25,"height":45},{"x":100,"y":90,"fileNum":368,"id":10987,"width":25,"height":45},{"x":0,"y":135,"fileNum":368,"id":10988,"width":25,"height":45},{"x":25,"y":135,"fileNum":368,"id":10989,"width":25,"height":45},{"x":50,"y":135,"fileNum":368,"id":10990,"width":25,"height":45},{"x":75,"y":135,"fileNum":368,"id":10991,"width":25,"height":45},{"x":100,"y":135,"fileNum":368,"id":10992,"width":25,"height":45},{"x":0,"y":0,"fileNum":369,"id":10997,"width":25,"height":45},{"x":25,"y":0,"fileNum":369,"id":10998,"width":25,"height":45},{"x":50,"y":0,"fileNum":369,"id":10999,"width":25,"height":45},{"x":75,"y":0,"fileNum":369,"id":11000,"width":25,"height":45},{"x":100,"y":0,"fileNum":369,"id":11001,"width":25,"height":45},{"x":125,"y":0,"fileNum":369,"id":11002,"width":25,"height":45},{"x":0,"y":45,"fileNum":369,"id":11003,"width":25,"height":45},{"x":25,"y":45,"fileNum":369,"id":11004,"width":25,"height":45},{"x":50,"y":45,"fileNum":369,"id":11005,"width":25,"height":45},{"x":75,"y":45,"fileNum":369,"id":11006,"width":25,"height":45},{"x":100,"y":45,"fileNum":369,"id":11007,"width":25,"height":45},{"x":125,"y":45,"fileNum":369,"id":11008,"width":25,"height":45},{"x":0,"y":90,"fileNum":369,"id":11009,"width":25,"height":45},{"x":25,"y":90,"fileNum":369,"id":11010,"width":25,"height":45},{"x":50,"y":90,"fileNum":369,"id":11011,"width":25,"height":45},{"x":75,"y":90,"fileNum":369,"id":11012,"width":25,"height":45},{"x":100,"y":90,"fileNum":369,"id":11013,"width":25,"height":45},{"x":0,"y":135,"fileNum":369,"id":11014,"width":25,"height":45},{"x":25,"y":135,"fileNum":369,"id":11015,"width":25,"height":45},{"x":50,"y":135,"fileNum":369,"id":11016,"width":25,"height":45},{"x":75,"y":135,"fileNum":369,"id":11017,"width":25,"height":45},{"x":100,"y":135,"fileNum":369,"id":11018,"width":25,"height":45},{"x":0,"y":0,"fileNum":370,"id":11023,"width":25,"height":45},{"x":25,"y":0,"fileNum":370,"id":11024,"width":25,"height":45},{"x":50,"y":0,"fileNum":370,"id":11025,"width":25,"height":45},{"x":75,"y":0,"fileNum":370,"id":11026,"width":25,"height":45},{"x":100,"y":0,"fileNum":370,"id":11027,"width":25,"height":45},{"x":125,"y":0,"fileNum":370,"id":11028,"width":25,"height":45},{"x":0,"y":45,"fileNum":370,"id":11029,"width":25,"height":45},{"x":25,"y":45,"fileNum":370,"id":11030,"width":25,"height":45},{"x":50,"y":45,"fileNum":370,"id":11031,"width":25,"height":45},{"x":75,"y":45,"fileNum":370,"id":11032,"width":25,"height":45},{"x":100,"y":45,"fileNum":370,"id":11033,"width":25,"height":45},{"x":125,"y":45,"fileNum":370,"id":11034,"width":25,"height":45},{"x":0,"y":90,"fileNum":370,"id":11035,"width":25,"height":45},{"x":25,"y":90,"fileNum":370,"id":11036,"width":25,"height":45},{"x":50,"y":90,"fileNum":370,"id":11037,"width":25,"height":45},{"x":75,"y":90,"fileNum":370,"id":11038,"width":25,"height":45},{"x":100,"y":90,"fileNum":370,"id":11039,"width":25,"height":45},{"x":0,"y":135,"fileNum":370,"id":11040,"width":25,"height":45},{"x":25,"y":135,"fileNum":370,"id":11041,"width":25,"height":45},{"x":50,"y":135,"fileNum":370,"id":11042,"width":25,"height":45},{"x":75,"y":135,"fileNum":370,"id":11043,"width":25,"height":45},{"x":100,"y":135,"fileNum":370,"id":11044,"width":25,"height":45},{"x":0,"y":0,"fileNum":371,"id":11049,"width":25,"height":45},{"x":25,"y":0,"fileNum":371,"id":11050,"width":25,"height":45},{"x":50,"y":0,"fileNum":371,"id":11051,"width":25,"height":45},{"x":75,"y":0,"fileNum":371,"id":11052,"width":25,"height":45},{"x":100,"y":0,"fileNum":371,"id":11053,"width":25,"height":45},{"x":125,"y":0,"fileNum":371,"id":11054,"width":25,"height":45},{"x":0,"y":45,"fileNum":371,"id":11055,"width":25,"height":45},{"x":25,"y":45,"fileNum":371,"id":11056,"width":25,"height":45},{"x":50,"y":45,"fileNum":371,"id":11057,"width":25,"height":45},{"x":75,"y":45,"fileNum":371,"id":11058,"width":25,"height":45},{"x":100,"y":45,"fileNum":371,"id":11059,"width":25,"height":45},{"x":125,"y":45,"fileNum":371,"id":11060,"width":25,"height":45},{"x":0,"y":90,"fileNum":371,"id":11061,"width":25,"height":45},{"x":25,"y":90,"fileNum":371,"id":11062,"width":25,"height":45},{"x":50,"y":90,"fileNum":371,"id":11063,"width":25,"height":45},{"x":75,"y":90,"fileNum":371,"id":11064,"width":25,"height":45},{"x":100,"y":90,"fileNum":371,"id":11065,"width":25,"height":45},{"x":0,"y":135,"fileNum":371,"id":11066,"width":25,"height":45},{"x":25,"y":135,"fileNum":371,"id":11067,"width":25,"height":45},{"x":50,"y":135,"fileNum":371,"id":11068,"width":25,"height":45},{"x":75,"y":135,"fileNum":371,"id":11069,"width":25,"height":45},{"x":100,"y":135,"fileNum":371,"id":11070,"width":25,"height":45},{"x":0,"y":0,"fileNum":372,"id":11075,"width":25,"height":45},{"x":25,"y":0,"fileNum":372,"id":11076,"width":25,"height":45},{"x":50,"y":0,"fileNum":372,"id":11077,"width":25,"height":45},{"x":75,"y":0,"fileNum":372,"id":11078,"width":25,"height":45},{"x":100,"y":0,"fileNum":372,"id":11079,"width":25,"height":45},{"x":125,"y":0,"fileNum":372,"id":11080,"width":25,"height":45},{"x":0,"y":45,"fileNum":372,"id":11081,"width":25,"height":45},{"x":25,"y":45,"fileNum":372,"id":11082,"width":25,"height":45},{"x":50,"y":45,"fileNum":372,"id":11083,"width":25,"height":45},{"x":75,"y":45,"fileNum":372,"id":11084,"width":25,"height":45},{"x":100,"y":45,"fileNum":372,"id":11085,"width":25,"height":45},{"x":125,"y":45,"fileNum":372,"id":11086,"width":25,"height":45},{"x":0,"y":90,"fileNum":372,"id":11087,"width":25,"height":45},{"x":25,"y":90,"fileNum":372,"id":11088,"width":25,"height":45},{"x":50,"y":90,"fileNum":372,"id":11089,"width":25,"height":45},{"x":75,"y":90,"fileNum":372,"id":11090,"width":25,"height":45},{"x":100,"y":90,"fileNum":372,"id":11091,"width":25,"height":45},{"x":0,"y":135,"fileNum":372,"id":11092,"width":25,"height":45},{"x":25,"y":135,"fileNum":372,"id":11093,"width":25,"height":45},{"x":50,"y":135,"fileNum":372,"id":11094,"width":25,"height":45},{"x":75,"y":135,"fileNum":372,"id":11095,"width":25,"height":45},{"x":100,"y":135,"fileNum":372,"id":11096,"width":25,"height":45},{"x":0,"y":0,"fileNum":373,"id":11101,"width":25,"height":45},{"x":25,"y":0,"fileNum":373,"id":11102,"width":25,"height":45},{"x":50,"y":0,"fileNum":373,"id":11103,"width":25,"height":45},{"x":75,"y":0,"fileNum":373,"id":11104,"width":25,"height":45},{"x":100,"y":0,"fileNum":373,"id":11105,"width":25,"height":45},{"x":125,"y":0,"fileNum":373,"id":11106,"width":25,"height":45},{"x":0,"y":45,"fileNum":373,"id":11107,"width":25,"height":45},{"x":25,"y":45,"fileNum":373,"id":11108,"width":25,"height":45},{"x":50,"y":45,"fileNum":373,"id":11109,"width":25,"height":45},{"x":75,"y":45,"fileNum":373,"id":11110,"width":25,"height":45},{"x":100,"y":45,"fileNum":373,"id":11111,"width":25,"height":45},{"x":125,"y":45,"fileNum":373,"id":11112,"width":25,"height":45},{"x":0,"y":90,"fileNum":373,"id":11113,"width":25,"height":45},{"x":25,"y":90,"fileNum":373,"id":11114,"width":25,"height":45},{"x":50,"y":90,"fileNum":373,"id":11115,"width":25,"height":45},{"x":75,"y":90,"fileNum":373,"id":11116,"width":25,"height":45},{"x":100,"y":90,"fileNum":373,"id":11117,"width":25,"height":45},{"x":0,"y":135,"fileNum":373,"id":11118,"width":25,"height":45},{"x":25,"y":135,"fileNum":373,"id":11119,"width":25,"height":45},{"x":50,"y":135,"fileNum":373,"id":11120,"width":25,"height":45},{"x":75,"y":135,"fileNum":373,"id":11121,"width":25,"height":45},{"x":100,"y":135,"fileNum":373,"id":11122,"width":25,"height":45},{"x":0,"y":0,"fileNum":374,"id":11127,"width":25,"height":45},{"x":25,"y":0,"fileNum":374,"id":11128,"width":25,"height":45},{"x":50,"y":0,"fileNum":374,"id":11129,"width":25,"height":45},{"x":75,"y":0,"fileNum":374,"id":11130,"width":25,"height":45},{"x":100,"y":0,"fileNum":374,"id":11131,"width":25,"height":45},{"x":125,"y":0,"fileNum":374,"id":11132,"width":25,"height":45},{"x":0,"y":45,"fileNum":374,"id":11133,"width":25,"height":45},{"x":25,"y":45,"fileNum":374,"id":11134,"width":25,"height":45},{"x":50,"y":45,"fileNum":374,"id":11135,"width":25,"height":45},{"x":75,"y":45,"fileNum":374,"id":11136,"width":25,"height":45},{"x":100,"y":45,"fileNum":374,"id":11137,"width":25,"height":45},{"x":125,"y":45,"fileNum":374,"id":11138,"width":25,"height":45},{"x":0,"y":90,"fileNum":374,"id":11139,"width":25,"height":45},{"x":25,"y":90,"fileNum":374,"id":11140,"width":25,"height":45},{"x":50,"y":90,"fileNum":374,"id":11141,"width":25,"height":45},{"x":75,"y":90,"fileNum":374,"id":11142,"width":25,"height":45},{"x":100,"y":90,"fileNum":374,"id":11143,"width":25,"height":45},{"x":0,"y":135,"fileNum":374,"id":11144,"width":25,"height":45},{"x":25,"y":135,"fileNum":374,"id":11145,"width":25,"height":45},{"x":50,"y":135,"fileNum":374,"id":11146,"width":25,"height":45},{"x":75,"y":135,"fileNum":374,"id":11147,"width":25,"height":45},{"x":100,"y":135,"fileNum":374,"id":11148,"width":25,"height":45},{"x":0,"y":0,"fileNum":375,"id":11153,"width":25,"height":45},{"x":25,"y":0,"fileNum":375,"id":11154,"width":25,"height":45},{"x":50,"y":0,"fileNum":375,"id":11155,"width":25,"height":45},{"x":75,"y":0,"fileNum":375,"id":11156,"width":25,"height":45},{"x":100,"y":0,"fileNum":375,"id":11157,"width":25,"height":45},{"x":125,"y":0,"fileNum":375,"id":11158,"width":25,"height":45},{"x":0,"y":45,"fileNum":375,"id":11159,"width":25,"height":45},{"x":25,"y":45,"fileNum":375,"id":11160,"width":25,"height":45},{"x":50,"y":45,"fileNum":375,"id":11161,"width":25,"height":45},{"x":75,"y":45,"fileNum":375,"id":11162,"width":25,"height":45},{"x":100,"y":45,"fileNum":375,"id":11163,"width":25,"height":45},{"x":125,"y":45,"fileNum":375,"id":11164,"width":25,"height":45},{"x":0,"y":90,"fileNum":375,"id":11165,"width":25,"height":45},{"x":25,"y":90,"fileNum":375,"id":11166,"width":25,"height":45},{"x":50,"y":90,"fileNum":375,"id":11167,"width":25,"height":45},{"x":75,"y":90,"fileNum":375,"id":11168,"width":25,"height":45},{"x":100,"y":90,"fileNum":375,"id":11169,"width":25,"height":45},{"x":0,"y":135,"fileNum":375,"id":11170,"width":25,"height":45},{"x":25,"y":135,"fileNum":375,"id":11171,"width":25,"height":45},{"x":50,"y":135,"fileNum":375,"id":11172,"width":25,"height":45},{"x":75,"y":135,"fileNum":375,"id":11173,"width":25,"height":45},{"x":100,"y":135,"fileNum":375,"id":11174,"width":25,"height":45},{"x":0,"y":0,"fileNum":376,"id":11179,"width":25,"height":45},{"x":25,"y":0,"fileNum":376,"id":11180,"width":25,"height":45},{"x":50,"y":0,"fileNum":376,"id":11181,"width":25,"height":45},{"x":75,"y":0,"fileNum":376,"id":11182,"width":25,"height":45},{"x":100,"y":0,"fileNum":376,"id":11183,"width":25,"height":45},{"x":125,"y":0,"fileNum":376,"id":11184,"width":25,"height":45},{"x":0,"y":45,"fileNum":376,"id":11185,"width":25,"height":45},{"x":25,"y":45,"fileNum":376,"id":11186,"width":25,"height":45},{"x":50,"y":45,"fileNum":376,"id":11187,"width":25,"height":45},{"x":75,"y":45,"fileNum":376,"id":11188,"width":25,"height":45},{"x":100,"y":45,"fileNum":376,"id":11189,"width":25,"height":45},{"x":125,"y":45,"fileNum":376,"id":11190,"width":25,"height":45},{"x":0,"y":90,"fileNum":376,"id":11191,"width":25,"height":45},{"x":25,"y":90,"fileNum":376,"id":11192,"width":25,"height":45},{"x":50,"y":90,"fileNum":376,"id":11193,"width":25,"height":45},{"x":75,"y":90,"fileNum":376,"id":11194,"width":25,"height":45},{"x":100,"y":90,"fileNum":376,"id":11195,"width":25,"height":45},{"x":0,"y":135,"fileNum":376,"id":11196,"width":25,"height":45},{"x":25,"y":135,"fileNum":376,"id":11197,"width":25,"height":45},{"x":50,"y":135,"fileNum":376,"id":11198,"width":25,"height":45},{"x":75,"y":135,"fileNum":376,"id":11199,"width":25,"height":45},{"x":100,"y":135,"fileNum":376,"id":11200,"width":25,"height":45},{"x":0,"y":0,"fileNum":377,"id":11205,"width":25,"height":45},{"x":25,"y":0,"fileNum":377,"id":11206,"width":25,"height":45},{"x":50,"y":0,"fileNum":377,"id":11207,"width":25,"height":45},{"x":75,"y":0,"fileNum":377,"id":11208,"width":25,"height":45},{"x":100,"y":0,"fileNum":377,"id":11209,"width":25,"height":45},{"x":125,"y":0,"fileNum":377,"id":11210,"width":25,"height":45},{"x":0,"y":45,"fileNum":377,"id":11211,"width":25,"height":45},{"x":25,"y":45,"fileNum":377,"id":11212,"width":25,"height":45},{"x":50,"y":45,"fileNum":377,"id":11213,"width":25,"height":45},{"x":75,"y":45,"fileNum":377,"id":11214,"width":25,"height":45},{"x":100,"y":45,"fileNum":377,"id":11215,"width":25,"height":45},{"x":125,"y":45,"fileNum":377,"id":11216,"width":25,"height":45},{"x":0,"y":90,"fileNum":377,"id":11217,"width":25,"height":45},{"x":25,"y":90,"fileNum":377,"id":11218,"width":25,"height":45},{"x":50,"y":90,"fileNum":377,"id":11219,"width":25,"height":45},{"x":75,"y":90,"fileNum":377,"id":11220,"width":25,"height":45},{"x":100,"y":90,"fileNum":377,"id":11221,"width":25,"height":45},{"x":0,"y":135,"fileNum":377,"id":11222,"width":25,"height":45},{"x":25,"y":135,"fileNum":377,"id":11223,"width":25,"height":45},{"x":50,"y":135,"fileNum":377,"id":11224,"width":25,"height":45},{"x":75,"y":135,"fileNum":377,"id":11225,"width":25,"height":45},{"x":100,"y":135,"fileNum":377,"id":11226,"width":25,"height":45},{"x":0,"y":0,"fileNum":379,"id":11231,"width":25,"height":45},{"x":25,"y":0,"fileNum":379,"id":11232,"width":25,"height":45},{"x":50,"y":0,"fileNum":379,"id":11233,"width":25,"height":45},{"x":75,"y":0,"fileNum":379,"id":11234,"width":25,"height":45},{"x":100,"y":0,"fileNum":379,"id":11235,"width":25,"height":45},{"x":125,"y":0,"fileNum":379,"id":11236,"width":25,"height":45},{"x":0,"y":45,"fileNum":379,"id":11237,"width":25,"height":45},{"x":25,"y":45,"fileNum":379,"id":11238,"width":25,"height":45},{"x":50,"y":45,"fileNum":379,"id":11239,"width":25,"height":45},{"x":75,"y":45,"fileNum":379,"id":11240,"width":25,"height":45},{"x":100,"y":45,"fileNum":379,"id":11241,"width":25,"height":45},{"x":125,"y":45,"fileNum":379,"id":11242,"width":25,"height":45},{"x":0,"y":90,"fileNum":379,"id":11243,"width":25,"height":45},{"x":25,"y":90,"fileNum":379,"id":11244,"width":25,"height":45},{"x":50,"y":90,"fileNum":379,"id":11245,"width":25,"height":45},{"x":75,"y":90,"fileNum":379,"id":11246,"width":25,"height":45},{"x":100,"y":90,"fileNum":379,"id":11247,"width":25,"height":45},{"x":0,"y":135,"fileNum":379,"id":11248,"width":25,"height":45},{"x":25,"y":135,"fileNum":379,"id":11249,"width":25,"height":45},{"x":50,"y":135,"fileNum":379,"id":11250,"width":25,"height":45},{"x":75,"y":135,"fileNum":379,"id":11251,"width":25,"height":45},{"x":100,"y":135,"fileNum":379,"id":11252,"width":25,"height":45},{"x":0,"y":0,"fileNum":380,"id":11257,"width":25,"height":45},{"x":25,"y":0,"fileNum":380,"id":11258,"width":25,"height":45},{"x":50,"y":0,"fileNum":380,"id":11259,"width":25,"height":45},{"x":75,"y":0,"fileNum":380,"id":11260,"width":25,"height":45},{"x":100,"y":0,"fileNum":380,"id":11261,"width":25,"height":45},{"x":125,"y":0,"fileNum":380,"id":11262,"width":25,"height":45},{"x":0,"y":45,"fileNum":380,"id":11263,"width":25,"height":45},{"x":25,"y":45,"fileNum":380,"id":11264,"width":25,"height":45},{"x":50,"y":45,"fileNum":380,"id":11265,"width":25,"height":45},{"x":75,"y":45,"fileNum":380,"id":11266,"width":25,"height":45},{"x":100,"y":45,"fileNum":380,"id":11267,"width":25,"height":45},{"x":125,"y":45,"fileNum":380,"id":11268,"width":25,"height":45},{"x":0,"y":90,"fileNum":380,"id":11269,"width":25,"height":45},{"x":25,"y":90,"fileNum":380,"id":11270,"width":25,"height":45},{"x":50,"y":90,"fileNum":380,"id":11271,"width":25,"height":45},{"x":75,"y":90,"fileNum":380,"id":11272,"width":25,"height":45},{"x":100,"y":90,"fileNum":380,"id":11273,"width":25,"height":45},{"x":0,"y":135,"fileNum":380,"id":11274,"width":25,"height":45},{"x":25,"y":135,"fileNum":380,"id":11275,"width":25,"height":45},{"x":50,"y":135,"fileNum":380,"id":11276,"width":25,"height":45},{"x":75,"y":135,"fileNum":380,"id":11277,"width":25,"height":45},{"x":100,"y":135,"fileNum":380,"id":11278,"width":25,"height":45},{"x":0,"y":0,"fileNum":381,"id":11283,"width":25,"height":45},{"x":25,"y":0,"fileNum":381,"id":11284,"width":25,"height":45},{"x":50,"y":0,"fileNum":381,"id":11285,"width":25,"height":45},{"x":75,"y":0,"fileNum":381,"id":11286,"width":25,"height":45},{"x":100,"y":0,"fileNum":381,"id":11287,"width":25,"height":45},{"x":125,"y":0,"fileNum":381,"id":11288,"width":25,"height":45},{"x":0,"y":45,"fileNum":381,"id":11289,"width":25,"height":45},{"x":25,"y":45,"fileNum":381,"id":11290,"width":25,"height":45},{"x":50,"y":45,"fileNum":381,"id":11291,"width":25,"height":45},{"x":75,"y":45,"fileNum":381,"id":11292,"width":25,"height":45},{"x":100,"y":45,"fileNum":381,"id":11293,"width":25,"height":45},{"x":125,"y":45,"fileNum":381,"id":11294,"width":25,"height":45},{"x":0,"y":90,"fileNum":381,"id":11295,"width":25,"height":45},{"x":25,"y":90,"fileNum":381,"id":11296,"width":25,"height":45},{"x":50,"y":90,"fileNum":381,"id":11297,"width":25,"height":45},{"x":75,"y":90,"fileNum":381,"id":11298,"width":25,"height":45},{"x":100,"y":90,"fileNum":381,"id":11299,"width":25,"height":45},{"x":0,"y":135,"fileNum":381,"id":11300,"width":25,"height":45},{"x":25,"y":135,"fileNum":381,"id":11301,"width":25,"height":45},{"x":50,"y":135,"fileNum":381,"id":11302,"width":25,"height":45},{"x":75,"y":135,"fileNum":381,"id":11303,"width":25,"height":45},{"x":100,"y":135,"fileNum":381,"id":11304,"width":25,"height":45},{"x":0,"y":0,"fileNum":382,"id":11309,"width":25,"height":45},{"x":25,"y":0,"fileNum":382,"id":11310,"width":25,"height":45},{"x":50,"y":0,"fileNum":382,"id":11311,"width":25,"height":45},{"x":75,"y":0,"fileNum":382,"id":11312,"width":25,"height":45},{"x":100,"y":0,"fileNum":382,"id":11313,"width":25,"height":45},{"x":125,"y":0,"fileNum":382,"id":11314,"width":25,"height":45},{"x":0,"y":45,"fileNum":382,"id":11315,"width":25,"height":45},{"x":25,"y":45,"fileNum":382,"id":11316,"width":25,"height":45},{"x":50,"y":45,"fileNum":382,"id":11317,"width":25,"height":45},{"x":75,"y":45,"fileNum":382,"id":11318,"width":25,"height":45},{"x":100,"y":45,"fileNum":382,"id":11319,"width":25,"height":45},{"x":125,"y":45,"fileNum":382,"id":11320,"width":25,"height":45},{"x":0,"y":90,"fileNum":382,"id":11321,"width":25,"height":45},{"x":25,"y":90,"fileNum":382,"id":11322,"width":25,"height":45},{"x":50,"y":90,"fileNum":382,"id":11323,"width":25,"height":45},{"x":75,"y":90,"fileNum":382,"id":11324,"width":25,"height":45},{"x":100,"y":90,"fileNum":382,"id":11325,"width":25,"height":45},{"x":0,"y":135,"fileNum":382,"id":11326,"width":25,"height":45},{"x":25,"y":135,"fileNum":382,"id":11327,"width":25,"height":45},{"x":50,"y":135,"fileNum":382,"id":11328,"width":25,"height":45},{"x":75,"y":135,"fileNum":382,"id":11329,"width":25,"height":45},{"x":100,"y":135,"fileNum":382,"id":11330,"width":25,"height":45},{"x":0,"y":0,"fileNum":383,"id":11335,"width":25,"height":45},{"x":25,"y":0,"fileNum":383,"id":11336,"width":25,"height":45},{"x":50,"y":0,"fileNum":383,"id":11337,"width":25,"height":45},{"x":75,"y":0,"fileNum":383,"id":11338,"width":25,"height":45},{"x":100,"y":0,"fileNum":383,"id":11339,"width":25,"height":45},{"x":125,"y":0,"fileNum":383,"id":11340,"width":25,"height":45},{"x":0,"y":45,"fileNum":383,"id":11341,"width":25,"height":45},{"x":25,"y":45,"fileNum":383,"id":11342,"width":25,"height":45},{"x":50,"y":45,"fileNum":383,"id":11343,"width":25,"height":45},{"x":75,"y":45,"fileNum":383,"id":11344,"width":25,"height":45},{"x":100,"y":45,"fileNum":383,"id":11345,"width":25,"height":45},{"x":125,"y":45,"fileNum":383,"id":11346,"width":25,"height":45},{"x":0,"y":90,"fileNum":383,"id":11347,"width":25,"height":45},{"x":25,"y":90,"fileNum":383,"id":11348,"width":25,"height":45},{"x":50,"y":90,"fileNum":383,"id":11349,"width":25,"height":45},{"x":75,"y":90,"fileNum":383,"id":11350,"width":25,"height":45},{"x":100,"y":90,"fileNum":383,"id":11351,"width":25,"height":45},{"x":0,"y":135,"fileNum":383,"id":11352,"width":25,"height":45},{"x":25,"y":135,"fileNum":383,"id":11353,"width":25,"height":45},{"x":50,"y":135,"fileNum":383,"id":11354,"width":25,"height":45},{"x":75,"y":135,"fileNum":383,"id":11355,"width":25,"height":45},{"x":100,"y":135,"fileNum":383,"id":11356,"width":25,"height":45},{"x":0,"y":0,"fileNum":384,"id":11361,"width":25,"height":45},{"x":25,"y":0,"fileNum":384,"id":11362,"width":25,"height":45},{"x":50,"y":0,"fileNum":384,"id":11363,"width":25,"height":45},{"x":75,"y":0,"fileNum":384,"id":11364,"width":25,"height":45},{"x":100,"y":0,"fileNum":384,"id":11365,"width":25,"height":45},{"x":125,"y":0,"fileNum":384,"id":11366,"width":25,"height":45},{"x":0,"y":45,"fileNum":384,"id":11367,"width":25,"height":45},{"x":25,"y":45,"fileNum":384,"id":11368,"width":25,"height":45},{"x":50,"y":45,"fileNum":384,"id":11369,"width":25,"height":45},{"x":75,"y":45,"fileNum":384,"id":11370,"width":25,"height":45},{"x":100,"y":45,"fileNum":384,"id":11371,"width":25,"height":45},{"x":125,"y":45,"fileNum":384,"id":11372,"width":25,"height":45},{"x":0,"y":90,"fileNum":384,"id":11373,"width":25,"height":45},{"x":25,"y":90,"fileNum":384,"id":11374,"width":25,"height":45},{"x":50,"y":90,"fileNum":384,"id":11375,"width":25,"height":45},{"x":75,"y":90,"fileNum":384,"id":11376,"width":25,"height":45},{"x":100,"y":90,"fileNum":384,"id":11377,"width":25,"height":45},{"x":0,"y":135,"fileNum":384,"id":11378,"width":25,"height":45},{"x":25,"y":135,"fileNum":384,"id":11379,"width":25,"height":45},{"x":50,"y":135,"fileNum":384,"id":11380,"width":25,"height":45},{"x":75,"y":135,"fileNum":384,"id":11381,"width":25,"height":45},{"x":100,"y":135,"fileNum":384,"id":11382,"width":25,"height":45},{"x":0,"y":0,"fileNum":385,"id":11387,"width":25,"height":45},{"x":25,"y":0,"fileNum":385,"id":11388,"width":25,"height":45},{"x":50,"y":0,"fileNum":385,"id":11389,"width":25,"height":45},{"x":75,"y":0,"fileNum":385,"id":11390,"width":25,"height":45},{"x":100,"y":0,"fileNum":385,"id":11391,"width":25,"height":45},{"x":125,"y":0,"fileNum":385,"id":11392,"width":25,"height":45},{"x":0,"y":45,"fileNum":385,"id":11393,"width":25,"height":45},{"x":25,"y":45,"fileNum":385,"id":11394,"width":25,"height":45},{"x":50,"y":45,"fileNum":385,"id":11395,"width":25,"height":45},{"x":75,"y":45,"fileNum":385,"id":11396,"width":25,"height":45},{"x":100,"y":45,"fileNum":385,"id":11397,"width":25,"height":45},{"x":125,"y":45,"fileNum":385,"id":11398,"width":25,"height":45},{"x":0,"y":90,"fileNum":385,"id":11399,"width":25,"height":45},{"x":25,"y":90,"fileNum":385,"id":11400,"width":25,"height":45},{"x":50,"y":90,"fileNum":385,"id":11401,"width":25,"height":45},{"x":75,"y":90,"fileNum":385,"id":11402,"width":25,"height":45},{"x":100,"y":90,"fileNum":385,"id":11403,"width":25,"height":45},{"x":0,"y":135,"fileNum":385,"id":11404,"width":25,"height":45},{"x":25,"y":135,"fileNum":385,"id":11405,"width":25,"height":45},{"x":50,"y":135,"fileNum":385,"id":11406,"width":25,"height":45},{"x":75,"y":135,"fileNum":385,"id":11407,"width":25,"height":45},{"x":100,"y":135,"fileNum":385,"id":11408,"width":25,"height":45},{"x":0,"y":0,"fileNum":386,"id":11413,"width":25,"height":45},{"x":25,"y":0,"fileNum":386,"id":11414,"width":25,"height":45},{"x":50,"y":0,"fileNum":386,"id":11415,"width":25,"height":45},{"x":75,"y":0,"fileNum":386,"id":11416,"width":25,"height":45},{"x":100,"y":0,"fileNum":386,"id":11417,"width":25,"height":45},{"x":125,"y":0,"fileNum":386,"id":11418,"width":25,"height":45},{"x":0,"y":45,"fileNum":386,"id":11419,"width":25,"height":45},{"x":25,"y":45,"fileNum":386,"id":11420,"width":25,"height":45},{"x":50,"y":45,"fileNum":386,"id":11421,"width":25,"height":45},{"x":75,"y":45,"fileNum":386,"id":11422,"width":25,"height":45},{"x":100,"y":45,"fileNum":386,"id":11423,"width":25,"height":45},{"x":125,"y":45,"fileNum":386,"id":11424,"width":25,"height":45},{"x":0,"y":90,"fileNum":386,"id":11425,"width":25,"height":45},{"x":25,"y":90,"fileNum":386,"id":11426,"width":25,"height":45},{"x":50,"y":90,"fileNum":386,"id":11427,"width":25,"height":45},{"x":75,"y":90,"fileNum":386,"id":11428,"width":25,"height":45},{"x":100,"y":90,"fileNum":386,"id":11429,"width":25,"height":45},{"x":0,"y":135,"fileNum":386,"id":11430,"width":25,"height":45},{"x":25,"y":135,"fileNum":386,"id":11431,"width":25,"height":45},{"x":50,"y":135,"fileNum":386,"id":11432,"width":25,"height":45},{"x":75,"y":135,"fileNum":386,"id":11433,"width":25,"height":45},{"x":100,"y":135,"fileNum":386,"id":11434,"width":25,"height":45},{"x":0,"y":0,"fileNum":387,"id":11439,"width":25,"height":45},{"x":25,"y":0,"fileNum":387,"id":11440,"width":25,"height":45},{"x":50,"y":0,"fileNum":387,"id":11441,"width":25,"height":45},{"x":75,"y":0,"fileNum":387,"id":11442,"width":25,"height":45},{"x":100,"y":0,"fileNum":387,"id":11443,"width":25,"height":45},{"x":125,"y":0,"fileNum":387,"id":11444,"width":25,"height":45},{"x":0,"y":45,"fileNum":387,"id":11445,"width":25,"height":45},{"x":25,"y":45,"fileNum":387,"id":11446,"width":25,"height":45},{"x":50,"y":45,"fileNum":387,"id":11447,"width":25,"height":45},{"x":75,"y":45,"fileNum":387,"id":11448,"width":25,"height":45},{"x":100,"y":45,"fileNum":387,"id":11449,"width":25,"height":45},{"x":125,"y":45,"fileNum":387,"id":11450,"width":25,"height":45},{"x":0,"y":90,"fileNum":387,"id":11451,"width":25,"height":45},{"x":25,"y":90,"fileNum":387,"id":11452,"width":25,"height":45},{"x":50,"y":90,"fileNum":387,"id":11453,"width":25,"height":45},{"x":75,"y":90,"fileNum":387,"id":11454,"width":25,"height":45},{"x":100,"y":90,"fileNum":387,"id":11455,"width":25,"height":45},{"x":0,"y":135,"fileNum":387,"id":11456,"width":25,"height":45},{"x":25,"y":135,"fileNum":387,"id":11457,"width":25,"height":45},{"x":50,"y":135,"fileNum":387,"id":11458,"width":25,"height":45},{"x":75,"y":135,"fileNum":387,"id":11459,"width":25,"height":45},{"x":100,"y":135,"fileNum":387,"id":11460,"width":25,"height":45},{"x":0,"y":0,"fileNum":388,"id":11465,"width":25,"height":45},{"x":25,"y":0,"fileNum":388,"id":11466,"width":25,"height":45},{"x":50,"y":0,"fileNum":388,"id":11467,"width":25,"height":45},{"x":75,"y":0,"fileNum":388,"id":11468,"width":25,"height":45},{"x":100,"y":0,"fileNum":388,"id":11469,"width":25,"height":45},{"x":125,"y":0,"fileNum":388,"id":11470,"width":25,"height":45},{"x":0,"y":45,"fileNum":388,"id":11471,"width":25,"height":45},{"x":25,"y":45,"fileNum":388,"id":11472,"width":25,"height":45},{"x":50,"y":45,"fileNum":388,"id":11473,"width":25,"height":45},{"x":75,"y":45,"fileNum":388,"id":11474,"width":25,"height":45},{"x":100,"y":45,"fileNum":388,"id":11475,"width":25,"height":45},{"x":125,"y":45,"fileNum":388,"id":11476,"width":25,"height":45},{"x":0,"y":90,"fileNum":388,"id":11477,"width":25,"height":45},{"x":25,"y":90,"fileNum":388,"id":11478,"width":25,"height":45},{"x":50,"y":90,"fileNum":388,"id":11479,"width":25,"height":45},{"x":75,"y":90,"fileNum":388,"id":11480,"width":25,"height":45},{"x":100,"y":90,"fileNum":388,"id":11481,"width":25,"height":45},{"x":0,"y":135,"fileNum":388,"id":11482,"width":25,"height":45},{"x":25,"y":135,"fileNum":388,"id":11483,"width":25,"height":45},{"x":50,"y":135,"fileNum":388,"id":11484,"width":25,"height":45},{"x":75,"y":135,"fileNum":388,"id":11485,"width":25,"height":45},{"x":100,"y":135,"fileNum":388,"id":11486,"width":25,"height":45},{"x":0,"y":0,"fileNum":390,"id":11491,"width":25,"height":45},{"x":25,"y":0,"fileNum":390,"id":11492,"width":25,"height":45},{"x":50,"y":0,"fileNum":390,"id":11493,"width":25,"height":45},{"x":75,"y":0,"fileNum":390,"id":11494,"width":25,"height":45},{"x":100,"y":0,"fileNum":390,"id":11495,"width":25,"height":45},{"x":125,"y":0,"fileNum":390,"id":11496,"width":25,"height":45},{"x":0,"y":45,"fileNum":390,"id":11497,"width":25,"height":45},{"x":25,"y":45,"fileNum":390,"id":11498,"width":25,"height":45},{"x":50,"y":45,"fileNum":390,"id":11499,"width":25,"height":45},{"x":75,"y":45,"fileNum":390,"id":11500,"width":25,"height":45},{"x":100,"y":45,"fileNum":390,"id":11501,"width":25,"height":45},{"x":125,"y":45,"fileNum":390,"id":11502,"width":25,"height":45},{"x":0,"y":90,"fileNum":390,"id":11503,"width":25,"height":45},{"x":25,"y":90,"fileNum":390,"id":11504,"width":25,"height":45},{"x":50,"y":90,"fileNum":390,"id":11505,"width":25,"height":45},{"x":75,"y":90,"fileNum":390,"id":11506,"width":25,"height":45},{"x":100,"y":90,"fileNum":390,"id":11507,"width":25,"height":45},{"x":0,"y":135,"fileNum":390,"id":11508,"width":25,"height":45},{"x":25,"y":135,"fileNum":390,"id":11509,"width":25,"height":45},{"x":50,"y":135,"fileNum":390,"id":11510,"width":25,"height":45},{"x":75,"y":135,"fileNum":390,"id":11511,"width":25,"height":45},{"x":100,"y":135,"fileNum":390,"id":11512,"width":25,"height":45},{"x":0,"y":0,"fileNum":391,"id":11517,"width":25,"height":45},{"x":25,"y":0,"fileNum":391,"id":11518,"width":25,"height":45},{"x":50,"y":0,"fileNum":391,"id":11519,"width":25,"height":45},{"x":75,"y":0,"fileNum":391,"id":11520,"width":25,"height":45},{"x":100,"y":0,"fileNum":391,"id":11521,"width":25,"height":45},{"x":125,"y":0,"fileNum":391,"id":11522,"width":25,"height":45},{"x":0,"y":45,"fileNum":391,"id":11523,"width":25,"height":45},{"x":25,"y":45,"fileNum":391,"id":11524,"width":25,"height":45},{"x":50,"y":45,"fileNum":391,"id":11525,"width":25,"height":45},{"x":75,"y":45,"fileNum":391,"id":11526,"width":25,"height":45},{"x":100,"y":45,"fileNum":391,"id":11527,"width":25,"height":45},{"x":125,"y":45,"fileNum":391,"id":11528,"width":25,"height":45},{"x":0,"y":90,"fileNum":391,"id":11529,"width":25,"height":45},{"x":25,"y":90,"fileNum":391,"id":11530,"width":25,"height":45},{"x":50,"y":90,"fileNum":391,"id":11531,"width":25,"height":45},{"x":75,"y":90,"fileNum":391,"id":11532,"width":25,"height":45},{"x":100,"y":90,"fileNum":391,"id":11533,"width":25,"height":45},{"x":0,"y":135,"fileNum":391,"id":11534,"width":25,"height":45},{"x":25,"y":135,"fileNum":391,"id":11535,"width":25,"height":45},{"x":50,"y":135,"fileNum":391,"id":11536,"width":25,"height":45},{"x":75,"y":135,"fileNum":391,"id":11537,"width":25,"height":45},{"x":100,"y":135,"fileNum":391,"id":11538,"width":25,"height":45},{"x":0,"y":0,"fileNum":392,"id":11543,"width":25,"height":45},{"x":25,"y":0,"fileNum":392,"id":11544,"width":25,"height":45},{"x":50,"y":0,"fileNum":392,"id":11545,"width":25,"height":45},{"x":75,"y":0,"fileNum":392,"id":11546,"width":25,"height":45},{"x":100,"y":0,"fileNum":392,"id":11547,"width":25,"height":45},{"x":125,"y":0,"fileNum":392,"id":11548,"width":25,"height":45},{"x":0,"y":45,"fileNum":392,"id":11549,"width":25,"height":45},{"x":25,"y":45,"fileNum":392,"id":11550,"width":25,"height":45},{"x":50,"y":45,"fileNum":392,"id":11551,"width":25,"height":45},{"x":75,"y":45,"fileNum":392,"id":11552,"width":25,"height":45},{"x":100,"y":45,"fileNum":392,"id":11553,"width":25,"height":45},{"x":125,"y":45,"fileNum":392,"id":11554,"width":25,"height":45},{"x":0,"y":90,"fileNum":392,"id":11555,"width":25,"height":45},{"x":25,"y":90,"fileNum":392,"id":11556,"width":25,"height":45},{"x":50,"y":90,"fileNum":392,"id":11557,"width":25,"height":45},{"x":75,"y":90,"fileNum":392,"id":11558,"width":25,"height":45},{"x":100,"y":90,"fileNum":392,"id":11559,"width":25,"height":45},{"x":0,"y":135,"fileNum":392,"id":11560,"width":25,"height":45},{"x":25,"y":135,"fileNum":392,"id":11561,"width":25,"height":45},{"x":50,"y":135,"fileNum":392,"id":11562,"width":25,"height":45},{"x":75,"y":135,"fileNum":392,"id":11563,"width":25,"height":45},{"x":100,"y":135,"fileNum":392,"id":11564,"width":25,"height":45},{"x":0,"y":0,"fileNum":393,"id":11569,"width":25,"height":45},{"x":25,"y":0,"fileNum":393,"id":11570,"width":25,"height":45},{"x":50,"y":0,"fileNum":393,"id":11571,"width":25,"height":45},{"x":75,"y":0,"fileNum":393,"id":11572,"width":25,"height":45},{"x":100,"y":0,"fileNum":393,"id":11573,"width":25,"height":45},{"x":125,"y":0,"fileNum":393,"id":11574,"width":25,"height":45},{"x":0,"y":45,"fileNum":393,"id":11575,"width":25,"height":45},{"x":25,"y":45,"fileNum":393,"id":11576,"width":25,"height":45},{"x":50,"y":45,"fileNum":393,"id":11577,"width":25,"height":45},{"x":75,"y":45,"fileNum":393,"id":11578,"width":25,"height":45},{"x":100,"y":45,"fileNum":393,"id":11579,"width":25,"height":45},{"x":125,"y":45,"fileNum":393,"id":11580,"width":25,"height":45},{"x":0,"y":90,"fileNum":393,"id":11581,"width":25,"height":45},{"x":25,"y":90,"fileNum":393,"id":11582,"width":25,"height":45},{"x":50,"y":90,"fileNum":393,"id":11583,"width":25,"height":45},{"x":75,"y":90,"fileNum":393,"id":11584,"width":25,"height":45},{"x":100,"y":90,"fileNum":393,"id":11585,"width":25,"height":45},{"x":0,"y":135,"fileNum":393,"id":11586,"width":25,"height":45},{"x":25,"y":135,"fileNum":393,"id":11587,"width":25,"height":45},{"x":50,"y":135,"fileNum":393,"id":11588,"width":25,"height":45},{"x":75,"y":135,"fileNum":393,"id":11589,"width":25,"height":45},{"x":100,"y":135,"fileNum":393,"id":11590,"width":25,"height":45},{"x":0,"y":0,"fileNum":394,"id":11595,"width":25,"height":45},{"x":25,"y":0,"fileNum":394,"id":11596,"width":25,"height":45},{"x":50,"y":0,"fileNum":394,"id":11597,"width":25,"height":45},{"x":75,"y":0,"fileNum":394,"id":11598,"width":25,"height":45},{"x":100,"y":0,"fileNum":394,"id":11599,"width":25,"height":45},{"x":125,"y":0,"fileNum":394,"id":11600,"width":25,"height":45},{"x":0,"y":45,"fileNum":394,"id":11601,"width":25,"height":45},{"x":25,"y":45,"fileNum":394,"id":11602,"width":25,"height":45},{"x":50,"y":45,"fileNum":394,"id":11603,"width":25,"height":45},{"x":75,"y":45,"fileNum":394,"id":11604,"width":25,"height":45},{"x":100,"y":45,"fileNum":394,"id":11605,"width":25,"height":45},{"x":125,"y":45,"fileNum":394,"id":11606,"width":25,"height":45},{"x":0,"y":90,"fileNum":394,"id":11607,"width":25,"height":45},{"x":25,"y":90,"fileNum":394,"id":11608,"width":25,"height":45},{"x":50,"y":90,"fileNum":394,"id":11609,"width":25,"height":45},{"x":75,"y":90,"fileNum":394,"id":11610,"width":25,"height":45},{"x":100,"y":90,"fileNum":394,"id":11611,"width":25,"height":45},{"x":0,"y":135,"fileNum":394,"id":11612,"width":25,"height":45},{"x":25,"y":135,"fileNum":394,"id":11613,"width":25,"height":45},{"x":50,"y":135,"fileNum":394,"id":11614,"width":25,"height":45},{"x":75,"y":135,"fileNum":394,"id":11615,"width":25,"height":45},{"x":100,"y":135,"fileNum":394,"id":11616,"width":25,"height":45},{"x":0,"y":0,"fileNum":395,"id":11621,"width":25,"height":45},{"x":25,"y":0,"fileNum":395,"id":11622,"width":25,"height":45},{"x":50,"y":0,"fileNum":395,"id":11623,"width":25,"height":45},{"x":75,"y":0,"fileNum":395,"id":11624,"width":25,"height":45},{"x":100,"y":0,"fileNum":395,"id":11625,"width":25,"height":45},{"x":125,"y":0,"fileNum":395,"id":11626,"width":25,"height":45},{"x":0,"y":45,"fileNum":395,"id":11627,"width":25,"height":45},{"x":25,"y":45,"fileNum":395,"id":11628,"width":25,"height":45},{"x":50,"y":45,"fileNum":395,"id":11629,"width":25,"height":45},{"x":75,"y":45,"fileNum":395,"id":11630,"width":25,"height":45},{"x":100,"y":45,"fileNum":395,"id":11631,"width":25,"height":45},{"x":125,"y":45,"fileNum":395,"id":11632,"width":25,"height":45},{"x":0,"y":90,"fileNum":395,"id":11633,"width":25,"height":45},{"x":25,"y":90,"fileNum":395,"id":11634,"width":25,"height":45},{"x":50,"y":90,"fileNum":395,"id":11635,"width":25,"height":45},{"x":75,"y":90,"fileNum":395,"id":11636,"width":25,"height":45},{"x":100,"y":90,"fileNum":395,"id":11637,"width":25,"height":45},{"x":0,"y":135,"fileNum":395,"id":11638,"width":25,"height":45},{"x":25,"y":135,"fileNum":395,"id":11639,"width":25,"height":45},{"x":50,"y":135,"fileNum":395,"id":11640,"width":25,"height":45},{"x":75,"y":135,"fileNum":395,"id":11641,"width":25,"height":45},{"x":100,"y":135,"fileNum":395,"id":11642,"width":25,"height":45},{"x":0,"y":0,"fileNum":396,"id":11647,"width":25,"height":45},{"x":25,"y":0,"fileNum":396,"id":11648,"width":25,"height":45},{"x":50,"y":0,"fileNum":396,"id":11649,"width":25,"height":45},{"x":75,"y":0,"fileNum":396,"id":11650,"width":25,"height":45},{"x":100,"y":0,"fileNum":396,"id":11651,"width":25,"height":45},{"x":125,"y":0,"fileNum":396,"id":11652,"width":25,"height":45},{"x":0,"y":45,"fileNum":396,"id":11653,"width":25,"height":45},{"x":25,"y":45,"fileNum":396,"id":11654,"width":25,"height":45},{"x":50,"y":45,"fileNum":396,"id":11655,"width":25,"height":45},{"x":75,"y":45,"fileNum":396,"id":11656,"width":25,"height":45},{"x":100,"y":45,"fileNum":396,"id":11657,"width":25,"height":45},{"x":125,"y":45,"fileNum":396,"id":11658,"width":25,"height":45},{"x":0,"y":90,"fileNum":396,"id":11659,"width":25,"height":45},{"x":25,"y":90,"fileNum":396,"id":11660,"width":25,"height":45},{"x":50,"y":90,"fileNum":396,"id":11661,"width":25,"height":45},{"x":75,"y":90,"fileNum":396,"id":11662,"width":25,"height":45},{"x":100,"y":90,"fileNum":396,"id":11663,"width":25,"height":45},{"x":0,"y":135,"fileNum":396,"id":11664,"width":25,"height":45},{"x":25,"y":135,"fileNum":396,"id":11665,"width":25,"height":45},{"x":50,"y":135,"fileNum":396,"id":11666,"width":25,"height":45},{"x":75,"y":135,"fileNum":396,"id":11667,"width":25,"height":45},{"x":100,"y":135,"fileNum":396,"id":11668,"width":25,"height":45},{"x":0,"y":0,"fileNum":397,"id":11673,"width":25,"height":45},{"x":25,"y":0,"fileNum":397,"id":11674,"width":25,"height":45},{"x":50,"y":0,"fileNum":397,"id":11675,"width":25,"height":45},{"x":75,"y":0,"fileNum":397,"id":11676,"width":25,"height":45},{"x":100,"y":0,"fileNum":397,"id":11677,"width":25,"height":45},{"x":125,"y":0,"fileNum":397,"id":11678,"width":25,"height":45},{"x":0,"y":45,"fileNum":397,"id":11679,"width":25,"height":45},{"x":25,"y":45,"fileNum":397,"id":11680,"width":25,"height":45},{"x":50,"y":45,"fileNum":397,"id":11681,"width":25,"height":45},{"x":75,"y":45,"fileNum":397,"id":11682,"width":25,"height":45},{"x":100,"y":45,"fileNum":397,"id":11683,"width":25,"height":45},{"x":125,"y":45,"fileNum":397,"id":11684,"width":25,"height":45},{"x":0,"y":90,"fileNum":397,"id":11685,"width":25,"height":45},{"x":25,"y":90,"fileNum":397,"id":11686,"width":25,"height":45},{"x":50,"y":90,"fileNum":397,"id":11687,"width":25,"height":45},{"x":75,"y":90,"fileNum":397,"id":11688,"width":25,"height":45},{"x":100,"y":90,"fileNum":397,"id":11689,"width":25,"height":45},{"x":0,"y":135,"fileNum":397,"id":11690,"width":25,"height":45},{"x":25,"y":135,"fileNum":397,"id":11691,"width":25,"height":45},{"x":50,"y":135,"fileNum":397,"id":11692,"width":25,"height":45},{"x":75,"y":135,"fileNum":397,"id":11693,"width":25,"height":45},{"x":100,"y":135,"fileNum":397,"id":11694,"width":25,"height":45},{"x":0,"y":0,"fileNum":398,"id":11699,"width":25,"height":45},{"x":25,"y":0,"fileNum":398,"id":11700,"width":25,"height":45},{"x":50,"y":0,"fileNum":398,"id":11701,"width":25,"height":45},{"x":75,"y":0,"fileNum":398,"id":11702,"width":25,"height":45},{"x":100,"y":0,"fileNum":398,"id":11703,"width":25,"height":45},{"x":125,"y":0,"fileNum":398,"id":11704,"width":25,"height":45},{"x":0,"y":45,"fileNum":398,"id":11705,"width":25,"height":45},{"x":25,"y":45,"fileNum":398,"id":11706,"width":25,"height":45},{"x":50,"y":45,"fileNum":398,"id":11707,"width":25,"height":45},{"x":75,"y":45,"fileNum":398,"id":11708,"width":25,"height":45},{"x":100,"y":45,"fileNum":398,"id":11709,"width":25,"height":45},{"x":125,"y":45,"fileNum":398,"id":11710,"width":25,"height":45},{"x":0,"y":90,"fileNum":398,"id":11711,"width":25,"height":45},{"x":25,"y":90,"fileNum":398,"id":11712,"width":25,"height":45},{"x":50,"y":90,"fileNum":398,"id":11713,"width":25,"height":45},{"x":75,"y":90,"fileNum":398,"id":11714,"width":25,"height":45},{"x":100,"y":90,"fileNum":398,"id":11715,"width":25,"height":45},{"x":0,"y":135,"fileNum":398,"id":11716,"width":25,"height":45},{"x":25,"y":135,"fileNum":398,"id":11717,"width":25,"height":45},{"x":50,"y":135,"fileNum":398,"id":11718,"width":25,"height":45},{"x":75,"y":135,"fileNum":398,"id":11719,"width":25,"height":45},{"x":100,"y":135,"fileNum":398,"id":11720,"width":25,"height":45},{"x":0,"y":0,"fileNum":399,"id":11725,"width":25,"height":45},{"x":25,"y":0,"fileNum":399,"id":11726,"width":25,"height":45},{"x":50,"y":0,"fileNum":399,"id":11727,"width":25,"height":45},{"x":75,"y":0,"fileNum":399,"id":11728,"width":25,"height":45},{"x":100,"y":0,"fileNum":399,"id":11729,"width":25,"height":45},{"x":125,"y":0,"fileNum":399,"id":11730,"width":25,"height":45},{"x":0,"y":45,"fileNum":399,"id":11731,"width":25,"height":45},{"x":25,"y":45,"fileNum":399,"id":11732,"width":25,"height":45},{"x":50,"y":45,"fileNum":399,"id":11733,"width":25,"height":45},{"x":75,"y":45,"fileNum":399,"id":11734,"width":25,"height":45},{"x":100,"y":45,"fileNum":399,"id":11735,"width":25,"height":45},{"x":125,"y":45,"fileNum":399,"id":11736,"width":25,"height":45},{"x":0,"y":90,"fileNum":399,"id":11737,"width":25,"height":45},{"x":25,"y":90,"fileNum":399,"id":11738,"width":25,"height":45},{"x":50,"y":90,"fileNum":399,"id":11739,"width":25,"height":45},{"x":75,"y":90,"fileNum":399,"id":11740,"width":25,"height":45},{"x":100,"y":90,"fileNum":399,"id":11741,"width":25,"height":45},{"x":0,"y":135,"fileNum":399,"id":11742,"width":25,"height":45},{"x":25,"y":135,"fileNum":399,"id":11743,"width":25,"height":45},{"x":50,"y":135,"fileNum":399,"id":11744,"width":25,"height":45},{"x":75,"y":135,"fileNum":399,"id":11745,"width":25,"height":45},{"x":100,"y":135,"fileNum":399,"id":11746,"width":25,"height":45},{"x":0,"y":0,"fileNum":401,"id":11751,"width":25,"height":45},{"x":25,"y":0,"fileNum":401,"id":11752,"width":25,"height":45},{"x":50,"y":0,"fileNum":401,"id":11753,"width":25,"height":45},{"x":75,"y":0,"fileNum":401,"id":11754,"width":25,"height":45},{"x":100,"y":0,"fileNum":401,"id":11755,"width":25,"height":45},{"x":125,"y":0,"fileNum":401,"id":11756,"width":25,"height":45},{"x":0,"y":45,"fileNum":401,"id":11757,"width":25,"height":45},{"x":25,"y":45,"fileNum":401,"id":11758,"width":25,"height":45},{"x":50,"y":45,"fileNum":401,"id":11759,"width":25,"height":45},{"x":75,"y":45,"fileNum":401,"id":11760,"width":25,"height":45},{"x":100,"y":45,"fileNum":401,"id":11761,"width":25,"height":45},{"x":125,"y":45,"fileNum":401,"id":11762,"width":25,"height":45},{"x":0,"y":90,"fileNum":401,"id":11763,"width":25,"height":45},{"x":25,"y":90,"fileNum":401,"id":11764,"width":25,"height":45},{"x":50,"y":90,"fileNum":401,"id":11765,"width":25,"height":45},{"x":75,"y":90,"fileNum":401,"id":11766,"width":25,"height":45},{"x":100,"y":90,"fileNum":401,"id":11767,"width":25,"height":45},{"x":0,"y":135,"fileNum":401,"id":11768,"width":25,"height":45},{"x":25,"y":135,"fileNum":401,"id":11769,"width":25,"height":45},{"x":50,"y":135,"fileNum":401,"id":11770,"width":25,"height":45},{"x":75,"y":135,"fileNum":401,"id":11771,"width":25,"height":45},{"x":100,"y":135,"fileNum":401,"id":11772,"width":25,"height":45},{"x":0,"y":0,"fileNum":402,"id":11777,"width":25,"height":45},{"x":25,"y":0,"fileNum":402,"id":11778,"width":25,"height":45},{"x":50,"y":0,"fileNum":402,"id":11779,"width":25,"height":45},{"x":75,"y":0,"fileNum":402,"id":11780,"width":25,"height":45},{"x":100,"y":0,"fileNum":402,"id":11781,"width":25,"height":45},{"x":125,"y":0,"fileNum":402,"id":11782,"width":25,"height":45},{"x":0,"y":45,"fileNum":402,"id":11783,"width":25,"height":45},{"x":25,"y":45,"fileNum":402,"id":11784,"width":25,"height":45},{"x":50,"y":45,"fileNum":402,"id":11785,"width":25,"height":45},{"x":75,"y":45,"fileNum":402,"id":11786,"width":25,"height":45},{"x":100,"y":45,"fileNum":402,"id":11787,"width":25,"height":45},{"x":125,"y":45,"fileNum":402,"id":11788,"width":25,"height":45},{"x":0,"y":90,"fileNum":402,"id":11789,"width":25,"height":45},{"x":25,"y":90,"fileNum":402,"id":11790,"width":25,"height":45},{"x":50,"y":90,"fileNum":402,"id":11791,"width":25,"height":45},{"x":75,"y":90,"fileNum":402,"id":11792,"width":25,"height":45},{"x":100,"y":90,"fileNum":402,"id":11793,"width":25,"height":45},{"x":0,"y":135,"fileNum":402,"id":11794,"width":25,"height":45},{"x":25,"y":135,"fileNum":402,"id":11795,"width":25,"height":45},{"x":50,"y":135,"fileNum":402,"id":11796,"width":25,"height":45},{"x":75,"y":135,"fileNum":402,"id":11797,"width":25,"height":45},{"x":100,"y":135,"fileNum":402,"id":11798,"width":25,"height":45},{"x":0,"y":0,"fileNum":403,"id":11803,"width":25,"height":45},{"x":25,"y":0,"fileNum":403,"id":11804,"width":25,"height":45},{"x":50,"y":0,"fileNum":403,"id":11805,"width":25,"height":45},{"x":75,"y":0,"fileNum":403,"id":11806,"width":25,"height":45},{"x":100,"y":0,"fileNum":403,"id":11807,"width":25,"height":45},{"x":125,"y":0,"fileNum":403,"id":11808,"width":25,"height":45},{"x":0,"y":45,"fileNum":403,"id":11809,"width":25,"height":45},{"x":25,"y":45,"fileNum":403,"id":11810,"width":25,"height":45},{"x":50,"y":45,"fileNum":403,"id":11811,"width":25,"height":45},{"x":75,"y":45,"fileNum":403,"id":11812,"width":25,"height":45},{"x":100,"y":45,"fileNum":403,"id":11813,"width":25,"height":45},{"x":125,"y":45,"fileNum":403,"id":11814,"width":25,"height":45},{"x":0,"y":90,"fileNum":403,"id":11815,"width":25,"height":45},{"x":25,"y":90,"fileNum":403,"id":11816,"width":25,"height":45},{"x":50,"y":90,"fileNum":403,"id":11817,"width":25,"height":45},{"x":75,"y":90,"fileNum":403,"id":11818,"width":25,"height":45},{"x":100,"y":90,"fileNum":403,"id":11819,"width":25,"height":45},{"x":0,"y":135,"fileNum":403,"id":11820,"width":25,"height":45},{"x":25,"y":135,"fileNum":403,"id":11821,"width":25,"height":45},{"x":50,"y":135,"fileNum":403,"id":11822,"width":25,"height":45},{"x":75,"y":135,"fileNum":403,"id":11823,"width":25,"height":45},{"x":100,"y":135,"fileNum":403,"id":11824,"width":25,"height":45},{"x":0,"y":0,"fileNum":404,"id":11829,"width":25,"height":45},{"x":25,"y":0,"fileNum":404,"id":11830,"width":25,"height":45},{"x":50,"y":0,"fileNum":404,"id":11831,"width":25,"height":45},{"x":75,"y":0,"fileNum":404,"id":11832,"width":25,"height":45},{"x":100,"y":0,"fileNum":404,"id":11833,"width":25,"height":45},{"x":125,"y":0,"fileNum":404,"id":11834,"width":25,"height":45},{"x":0,"y":45,"fileNum":404,"id":11835,"width":25,"height":45},{"x":25,"y":45,"fileNum":404,"id":11836,"width":25,"height":45},{"x":50,"y":45,"fileNum":404,"id":11837,"width":25,"height":45},{"x":75,"y":45,"fileNum":404,"id":11838,"width":25,"height":45},{"x":100,"y":45,"fileNum":404,"id":11839,"width":25,"height":45},{"x":125,"y":45,"fileNum":404,"id":11840,"width":25,"height":45},{"x":0,"y":90,"fileNum":404,"id":11841,"width":25,"height":45},{"x":25,"y":90,"fileNum":404,"id":11842,"width":25,"height":45},{"x":50,"y":90,"fileNum":404,"id":11843,"width":25,"height":45},{"x":75,"y":90,"fileNum":404,"id":11844,"width":25,"height":45},{"x":100,"y":90,"fileNum":404,"id":11845,"width":25,"height":45},{"x":0,"y":135,"fileNum":404,"id":11846,"width":25,"height":45},{"x":25,"y":135,"fileNum":404,"id":11847,"width":25,"height":45},{"x":50,"y":135,"fileNum":404,"id":11848,"width":25,"height":45},{"x":75,"y":135,"fileNum":404,"id":11849,"width":25,"height":45},{"x":100,"y":135,"fileNum":404,"id":11850,"width":25,"height":45},{"x":0,"y":0,"fileNum":405,"id":11855,"width":25,"height":45},{"x":25,"y":0,"fileNum":405,"id":11856,"width":25,"height":45},{"x":50,"y":0,"fileNum":405,"id":11857,"width":25,"height":45},{"x":75,"y":0,"fileNum":405,"id":11858,"width":25,"height":45},{"x":100,"y":0,"fileNum":405,"id":11859,"width":25,"height":45},{"x":125,"y":0,"fileNum":405,"id":11860,"width":25,"height":45},{"x":0,"y":45,"fileNum":405,"id":11861,"width":25,"height":45},{"x":25,"y":45,"fileNum":405,"id":11862,"width":25,"height":45},{"x":50,"y":45,"fileNum":405,"id":11863,"width":25,"height":45},{"x":75,"y":45,"fileNum":405,"id":11864,"width":25,"height":45},{"x":100,"y":45,"fileNum":405,"id":11865,"width":25,"height":45},{"x":125,"y":45,"fileNum":405,"id":11866,"width":25,"height":45},{"x":0,"y":90,"fileNum":405,"id":11867,"width":25,"height":45},{"x":25,"y":90,"fileNum":405,"id":11868,"width":25,"height":45},{"x":50,"y":90,"fileNum":405,"id":11869,"width":25,"height":45},{"x":75,"y":90,"fileNum":405,"id":11870,"width":25,"height":45},{"x":100,"y":90,"fileNum":405,"id":11871,"width":25,"height":45},{"x":0,"y":135,"fileNum":405,"id":11872,"width":25,"height":45},{"x":25,"y":135,"fileNum":405,"id":11873,"width":25,"height":45},{"x":50,"y":135,"fileNum":405,"id":11874,"width":25,"height":45},{"x":75,"y":135,"fileNum":405,"id":11875,"width":25,"height":45},{"x":100,"y":135,"fileNum":405,"id":11876,"width":25,"height":45},{"x":0,"y":0,"fileNum":4143,"id":11881,"width":140,"height":170},{"x":140,"y":0,"fileNum":4143,"id":11882,"width":140,"height":170},{"x":280,"y":0,"fileNum":4143,"id":11883,"width":140,"height":170},{"x":420,"y":0,"fileNum":4143,"id":11884,"width":140,"height":170},{"x":560,"y":0,"fileNum":4143,"id":11885,"width":140,"height":170},{"x":700,"y":0,"fileNum":4143,"id":11886,"width":140,"height":170},{"x":840,"y":0,"fileNum":4143,"id":11887,"width":140,"height":170},{"x":980,"y":0,"fileNum":4143,"id":11888,"width":140,"height":170},{"x":0,"y":170,"fileNum":4143,"id":11889,"width":140,"height":170},{"x":140,"y":170,"fileNum":4143,"id":11890,"width":140,"height":170},{"x":280,"y":170,"fileNum":4143,"id":11891,"width":140,"height":170},{"x":420,"y":170,"fileNum":4143,"id":11892,"width":140,"height":170},{"x":560,"y":170,"fileNum":4143,"id":11893,"width":140,"height":170},{"x":700,"y":170,"fileNum":4143,"id":11894,"width":140,"height":170},{"x":840,"y":170,"fileNum":4143,"id":11895,"width":140,"height":170},{"x":980,"y":170,"fileNum":4143,"id":11896,"width":140,"height":170},{"x":0,"y":510,"fileNum":4143,"id":11897,"width":140,"height":170},{"x":140,"y":510,"fileNum":4143,"id":11898,"width":140,"height":170},{"x":280,"y":510,"fileNum":4143,"id":11899,"width":140,"height":170},{"x":420,"y":510,"fileNum":4143,"id":11900,"width":140,"height":170},{"x":560,"y":510,"fileNum":4143,"id":11901,"width":140,"height":170},{"x":698,"y":510,"fileNum":4143,"id":11902,"width":140,"height":170},{"x":840,"y":510,"fileNum":4143,"id":11903,"width":140,"height":170},{"x":980,"y":510,"fileNum":4143,"id":11904,"width":140,"height":170},{"x":0,"y":340,"fileNum":4143,"id":11905,"width":140,"height":170},{"x":140,"y":340,"fileNum":4143,"id":11906,"width":140,"height":170},{"x":280,"y":341,"fileNum":4143,"id":11907,"width":140,"height":170},{"x":421,"y":340,"fileNum":4143,"id":11908,"width":140,"height":170},{"x":560,"y":340,"fileNum":4143,"id":11909,"width":140,"height":170},{"x":700,"y":340,"fileNum":4143,"id":11910,"width":140,"height":170},{"x":840,"y":340,"fileNum":4143,"id":11911,"width":140,"height":170},{"x":980,"y":340,"fileNum":4143,"id":11912,"width":140,"height":170},{"x":0,"y":0,"fileNum":363,"id":11917,"width":25,"height":45},{"x":25,"y":0,"fileNum":363,"id":11918,"width":25,"height":45},{"x":50,"y":0,"fileNum":363,"id":11919,"width":25,"height":45},{"x":75,"y":0,"fileNum":363,"id":11920,"width":25,"height":45},{"x":100,"y":0,"fileNum":363,"id":11921,"width":25,"height":45},{"x":125,"y":0,"fileNum":363,"id":11922,"width":25,"height":45},{"x":0,"y":45,"fileNum":363,"id":11923,"width":25,"height":45},{"x":25,"y":45,"fileNum":363,"id":11924,"width":25,"height":45},{"x":50,"y":45,"fileNum":363,"id":11925,"width":25,"height":45},{"x":75,"y":45,"fileNum":363,"id":11926,"width":25,"height":45},{"x":100,"y":45,"fileNum":363,"id":11927,"width":25,"height":45},{"x":125,"y":45,"fileNum":363,"id":11928,"width":25,"height":45},{"x":0,"y":90,"fileNum":363,"id":11929,"width":25,"height":45},{"x":25,"y":90,"fileNum":363,"id":11930,"width":25,"height":45},{"x":50,"y":90,"fileNum":363,"id":11931,"width":25,"height":45},{"x":75,"y":90,"fileNum":363,"id":11932,"width":25,"height":45},{"x":100,"y":90,"fileNum":363,"id":11933,"width":25,"height":45},{"x":0,"y":135,"fileNum":363,"id":11934,"width":25,"height":45},{"x":25,"y":135,"fileNum":363,"id":11935,"width":25,"height":45},{"x":50,"y":135,"fileNum":363,"id":11936,"width":25,"height":45},{"x":75,"y":135,"fileNum":363,"id":11937,"width":25,"height":45},{"x":100,"y":135,"fileNum":363,"id":11938,"width":25,"height":45},{"x":0,"y":0,"fileNum":4144,"id":11943,"width":140,"height":170},{"x":140,"y":0,"fileNum":4144,"id":11944,"width":140,"height":170},{"x":280,"y":0,"fileNum":4144,"id":11945,"width":140,"height":170},{"x":420,"y":0,"fileNum":4144,"id":11946,"width":140,"height":170},{"x":560,"y":0,"fileNum":4144,"id":11947,"width":140,"height":170},{"x":700,"y":0,"fileNum":4144,"id":11948,"width":140,"height":170},{"x":840,"y":0,"fileNum":4144,"id":11949,"width":140,"height":170},{"x":980,"y":0,"fileNum":4144,"id":11950,"width":140,"height":170},{"x":0,"y":170,"fileNum":4144,"id":11951,"width":140,"height":170},{"x":140,"y":170,"fileNum":4144,"id":11952,"width":140,"height":170},{"x":280,"y":170,"fileNum":4144,"id":11953,"width":140,"height":170},{"x":420,"y":170,"fileNum":4144,"id":11954,"width":140,"height":170},{"x":560,"y":170,"fileNum":4144,"id":11955,"width":140,"height":170},{"x":700,"y":170,"fileNum":4144,"id":11956,"width":140,"height":170},{"x":840,"y":170,"fileNum":4144,"id":11957,"width":140,"height":170},{"x":980,"y":170,"fileNum":4144,"id":11958,"width":140,"height":170},{"x":0,"y":510,"fileNum":4144,"id":11959,"width":140,"height":170},{"x":140,"y":510,"fileNum":4144,"id":11960,"width":140,"height":170},{"x":280,"y":510,"fileNum":4144,"id":11961,"width":140,"height":170},{"x":420,"y":510,"fileNum":4144,"id":11962,"width":140,"height":170},{"x":560,"y":510,"fileNum":4144,"id":11963,"width":140,"height":170},{"x":700,"y":510,"fileNum":4144,"id":11964,"width":140,"height":170},{"x":840,"y":510,"fileNum":4144,"id":11965,"width":140,"height":170},{"x":980,"y":510,"fileNum":4144,"id":11966,"width":140,"height":170},{"x":0,"y":340,"fileNum":4144,"id":11967,"width":140,"height":170},{"x":140,"y":340,"fileNum":4144,"id":11968,"width":140,"height":170},{"x":280,"y":342,"fileNum":4144,"id":11969,"width":140,"height":170},{"x":422,"y":340,"fileNum":4144,"id":11970,"width":140,"height":170},{"x":560,"y":340,"fileNum":4144,"id":11971,"width":140,"height":170},{"x":700,"y":340,"fileNum":4144,"id":11972,"width":140,"height":170},{"x":840,"y":340,"fileNum":4144,"id":11973,"width":140,"height":170},{"x":980,"y":340,"fileNum":4144,"id":11974,"width":140,"height":170},{"x":0,"y":0,"fileNum":22006,"id":11979,"width":32,"height":32},{"x":0,"y":0,"fileNum":22007,"id":11980,"width":32,"height":32},{"x":0,"y":0,"fileNum":2189,"id":11981,"width":17,"height":50},{"x":17,"y":0,"fileNum":2189,"id":11982,"width":17,"height":50},{"x":34,"y":0,"fileNum":2189,"id":11983,"width":17,"height":50},{"x":51,"y":0,"fileNum":2189,"id":11984,"width":17,"height":50},{"x":0,"y":0,"fileNum":2190,"id":11985,"width":17,"height":50},{"x":17,"y":0,"fileNum":2190,"id":11986,"width":17,"height":50},{"x":34,"y":0,"fileNum":2190,"id":11987,"width":17,"height":50},{"x":51,"y":0,"fileNum":2190,"id":11988,"width":17,"height":50},{"x":0,"y":0,"fileNum":2191,"id":11989,"width":17,"height":50},{"x":17,"y":0,"fileNum":2191,"id":11990,"width":17,"height":50},{"x":34,"y":0,"fileNum":2191,"id":11991,"width":17,"height":50},{"x":51,"y":0,"fileNum":2191,"id":11992,"width":17,"height":50},{"x":0,"y":0,"fileNum":2192,"id":11993,"width":17,"height":50},{"x":17,"y":0,"fileNum":2192,"id":11994,"width":17,"height":50},{"x":34,"y":0,"fileNum":2192,"id":11995,"width":17,"height":50},{"x":51,"y":0,"fileNum":2192,"id":11996,"width":17,"height":50},{"x":0,"y":0,"fileNum":2126,"id":12000,"width":17,"height":50},{"x":16,"y":0,"fileNum":2126,"id":12001,"width":17,"height":50},{"x":34,"y":0,"fileNum":2126,"id":12002,"width":17,"height":50},{"x":51,"y":0,"fileNum":2126,"id":12003,"width":17,"height":50},{"x":0,"y":0,"fileNum":4146,"id":12004,"width":29,"height":32},{"x":29,"y":0,"fileNum":4146,"id":12005,"width":29,"height":32},{"x":58,"y":0,"fileNum":4146,"id":12006,"width":29,"height":32},{"x":0,"y":32,"fileNum":4146,"id":12007,"width":29,"height":32},{"x":29,"y":32,"fileNum":4146,"id":12008,"width":29,"height":32},{"x":58,"y":32,"fileNum":4146,"id":12009,"width":29,"height":32},{"x":0,"y":64,"fileNum":4146,"id":12010,"width":29,"height":32},{"x":29,"y":64,"fileNum":4146,"id":12011,"width":29,"height":32},{"x":58,"y":64,"fileNum":4146,"id":12012,"width":29,"height":32},{"x":0,"y":96,"fileNum":4146,"id":12013,"width":29,"height":32},{"x":29,"y":96,"fileNum":4146,"id":12014,"width":29,"height":32},{"x":58,"y":96,"fileNum":4146,"id":12015,"width":29,"height":32},{"x":0,"y":0,"fileNum":4147,"id":12020,"width":32,"height":25},{"x":31,"y":0,"fileNum":4147,"id":12021,"width":32,"height":25},{"x":0,"y":24,"fileNum":4147,"id":12022,"width":32,"height":25},{"x":31,"y":24,"fileNum":4147,"id":12023,"width":32,"height":25},{"x":0,"y":48,"fileNum":4147,"id":12024,"width":32,"height":25},{"x":31,"y":48,"fileNum":4147,"id":12025,"width":32,"height":25},{"x":0,"y":72,"fileNum":4147,"id":12026,"width":32,"height":25},{"x":31,"y":72,"fileNum":4147,"id":12027,"width":32,"height":25},{"x":0,"y":0,"fileNum":4148,"id":12032,"width":75,"height":50},{"x":74,"y":0,"fileNum":4148,"id":12033,"width":75,"height":50},{"x":148,"y":0,"fileNum":4148,"id":12034,"width":75,"height":50},{"x":222,"y":0,"fileNum":4148,"id":12035,"width":75,"height":50},{"x":0,"y":49,"fileNum":4148,"id":12036,"width":75,"height":50},{"x":74,"y":49,"fileNum":4148,"id":12037,"width":75,"height":50},{"x":148,"y":49,"fileNum":4148,"id":12038,"width":75,"height":50},{"x":222,"y":49,"fileNum":4148,"id":12039,"width":75,"height":50},{"x":0,"y":98,"fileNum":4148,"id":12040,"width":75,"height":50},{"x":74,"y":98,"fileNum":4148,"id":12041,"width":75,"height":50},{"x":148,"y":98,"fileNum":4148,"id":12042,"width":75,"height":50},{"x":222,"y":98,"fileNum":4148,"id":12043,"width":75,"height":50},{"x":0,"y":147,"fileNum":4148,"id":12044,"width":75,"height":50},{"x":74,"y":147,"fileNum":4148,"id":12045,"width":75,"height":50},{"x":148,"y":147,"fileNum":4148,"id":12046,"width":75,"height":50},{"x":222,"y":147,"fileNum":4148,"id":12047,"width":75,"height":50},{"x":0,"y":0,"fileNum":4149,"id":12052,"width":75,"height":50},{"x":74,"y":0,"fileNum":4149,"id":12053,"width":75,"height":50},{"x":148,"y":0,"fileNum":4149,"id":12054,"width":75,"height":50},{"x":222,"y":0,"fileNum":4149,"id":12055,"width":75,"height":50},{"x":0,"y":49,"fileNum":4149,"id":12056,"width":75,"height":50},{"x":74,"y":49,"fileNum":4149,"id":12057,"width":75,"height":50},{"x":148,"y":49,"fileNum":4149,"id":12058,"width":75,"height":50},{"x":222,"y":49,"fileNum":4149,"id":12059,"width":75,"height":50},{"x":0,"y":100,"fileNum":4149,"id":12060,"width":75,"height":50},{"x":74,"y":100,"fileNum":4149,"id":12061,"width":75,"height":50},{"x":148,"y":100,"fileNum":4149,"id":12062,"width":75,"height":50},{"x":222,"y":100,"fileNum":4149,"id":12063,"width":75,"height":50},{"x":0,"y":147,"fileNum":4149,"id":12064,"width":75,"height":50},{"x":74,"y":147,"fileNum":4149,"id":12065,"width":75,"height":50},{"x":148,"y":147,"fileNum":4149,"id":12066,"width":75,"height":50},{"x":222,"y":147,"fileNum":4149,"id":12067,"width":75,"height":50},{"x":0,"y":0,"fileNum":4150,"id":12072,"width":27,"height":52},{"x":27,"y":0,"fileNum":4150,"id":12073,"width":27,"height":52},{"x":54,"y":0,"fileNum":4150,"id":12074,"width":27,"height":52},{"x":81,"y":0,"fileNum":4150,"id":12075,"width":27,"height":52},{"x":108,"y":0,"fileNum":4150,"id":12076,"width":27,"height":52},{"x":135,"y":0,"fileNum":4150,"id":12077,"width":27,"height":52},{"x":162,"y":0,"fileNum":4150,"id":12078,"width":27,"height":52},{"x":189,"y":0,"fileNum":4150,"id":12079,"width":27,"height":52},{"x":0,"y":52,"fileNum":4150,"id":12080,"width":27,"height":52},{"x":27,"y":52,"fileNum":4150,"id":12081,"width":27,"height":52},{"x":54,"y":52,"fileNum":4150,"id":12082,"width":27,"height":52},{"x":81,"y":52,"fileNum":4150,"id":12083,"width":27,"height":52},{"x":108,"y":52,"fileNum":4150,"id":12084,"width":27,"height":52},{"x":135,"y":52,"fileNum":4150,"id":12085,"width":27,"height":52},{"x":162,"y":52,"fileNum":4150,"id":12086,"width":27,"height":52},{"x":189,"y":52,"fileNum":4150,"id":12087,"width":27,"height":52},{"x":0,"y":104,"fileNum":4150,"id":12088,"width":27,"height":52},{"x":27,"y":104,"fileNum":4150,"id":12089,"width":27,"height":52},{"x":54,"y":104,"fileNum":4150,"id":12090,"width":27,"height":52},{"x":81,"y":104,"fileNum":4150,"id":12091,"width":27,"height":52},{"x":108,"y":104,"fileNum":4150,"id":12092,"width":27,"height":52},{"x":135,"y":104,"fileNum":4150,"id":12093,"width":27,"height":52},{"x":162,"y":104,"fileNum":4150,"id":12094,"width":27,"height":52},{"x":189,"y":104,"fileNum":4150,"id":12095,"width":27,"height":52},{"x":0,"y":156,"fileNum":4150,"id":12096,"width":27,"height":52},{"x":27,"y":156,"fileNum":4150,"id":12097,"width":27,"height":52},{"x":54,"y":156,"fileNum":4150,"id":12098,"width":27,"height":52},{"x":81,"y":156,"fileNum":4150,"id":12099,"width":27,"height":52},{"x":108,"y":156,"fileNum":4150,"id":12100,"width":27,"height":52},{"x":135,"y":156,"fileNum":4150,"id":12101,"width":27,"height":52},{"x":162,"y":156,"fileNum":4150,"id":12102,"width":27,"height":52},{"x":189,"y":156,"fileNum":4150,"id":12103,"width":27,"height":52},{"x":0,"y":0,"fileNum":4151,"id":12108,"width":52,"height":35},{"x":52,"y":0,"fileNum":4151,"id":12109,"width":52,"height":35},{"x":104,"y":0,"fileNum":4151,"id":12110,"width":52,"height":35},{"x":156,"y":0,"fileNum":4151,"id":12111,"width":52,"height":35},{"x":208,"y":0,"fileNum":4151,"id":12112,"width":52,"height":35},{"x":260,"y":0,"fileNum":4151,"id":12113,"width":52,"height":35},{"x":312,"y":0,"fileNum":4151,"id":12114,"width":52,"height":35},{"x":364,"y":0,"fileNum":4151,"id":12115,"width":52,"height":35},{"x":0,"y":35,"fileNum":4151,"id":12116,"width":52,"height":35},{"x":52,"y":35,"fileNum":4151,"id":12117,"width":52,"height":35},{"x":104,"y":35,"fileNum":4151,"id":12118,"width":52,"height":35},{"x":156,"y":35,"fileNum":4151,"id":12119,"width":52,"height":35},{"x":208,"y":35,"fileNum":4151,"id":12120,"width":52,"height":35},{"x":260,"y":35,"fileNum":4151,"id":12121,"width":52,"height":35},{"x":312,"y":35,"fileNum":4151,"id":12122,"width":52,"height":35},{"x":364,"y":35,"fileNum":4151,"id":12123,"width":52,"height":35},{"x":0,"y":70,"fileNum":4151,"id":12124,"width":52,"height":35},{"x":52,"y":70,"fileNum":4151,"id":12125,"width":52,"height":35},{"x":104,"y":70,"fileNum":4151,"id":12126,"width":52,"height":35},{"x":156,"y":70,"fileNum":4151,"id":12127,"width":52,"height":35},{"x":208,"y":70,"fileNum":4151,"id":12128,"width":52,"height":35},{"x":260,"y":70,"fileNum":4151,"id":12129,"width":52,"height":35},{"x":312,"y":70,"fileNum":4151,"id":12130,"width":52,"height":35},{"x":364,"y":70,"fileNum":4151,"id":12131,"width":52,"height":35},{"x":0,"y":105,"fileNum":4151,"id":12132,"width":52,"height":35},{"x":52,"y":105,"fileNum":4151,"id":12133,"width":52,"height":35},{"x":104,"y":105,"fileNum":4151,"id":12134,"width":52,"height":35},{"x":156,"y":105,"fileNum":4151,"id":12135,"width":52,"height":35},{"x":208,"y":105,"fileNum":4151,"id":12136,"width":52,"height":35},{"x":260,"y":105,"fileNum":4151,"id":12137,"width":52,"height":35},{"x":312,"y":105,"fileNum":4151,"id":12138,"width":52,"height":35},{"x":364,"y":105,"fileNum":4151,"id":12139,"width":52,"height":35},{"x":0,"y":0,"fileNum":4152,"id":12144,"width":49,"height":75},{"x":49,"y":0,"fileNum":4152,"id":12145,"width":49,"height":75},{"x":98,"y":0,"fileNum":4152,"id":12146,"width":49,"height":75},{"x":147,"y":0,"fileNum":4152,"id":12147,"width":49,"height":75},{"x":196,"y":0,"fileNum":4152,"id":12148,"width":49,"height":75},{"x":245,"y":0,"fileNum":4152,"id":12149,"width":49,"height":75},{"x":294,"y":0,"fileNum":4152,"id":12150,"width":49,"height":75},{"x":343,"y":0,"fileNum":4152,"id":12151,"width":49,"height":75},{"x":392,"y":0,"fileNum":4152,"id":12152,"width":49,"height":75},{"x":0,"y":75,"fileNum":4152,"id":12153,"width":49,"height":75},{"x":49,"y":75,"fileNum":4152,"id":12154,"width":49,"height":75},{"x":98,"y":75,"fileNum":4152,"id":12155,"width":49,"height":75},{"x":147,"y":75,"fileNum":4152,"id":12156,"width":49,"height":75},{"x":196,"y":75,"fileNum":4152,"id":12157,"width":49,"height":75},{"x":245,"y":75,"fileNum":4152,"id":12158,"width":49,"height":75},{"x":294,"y":75,"fileNum":4152,"id":12159,"width":49,"height":75},{"x":343,"y":75,"fileNum":4152,"id":12160,"width":49,"height":75},{"x":392,"y":75,"fileNum":4152,"id":12161,"width":49,"height":75},{"x":0,"y":150,"fileNum":4152,"id":12162,"width":59,"height":75},{"x":59,"y":150,"fileNum":4152,"id":12163,"width":59,"height":75},{"x":118,"y":150,"fileNum":4152,"id":12164,"width":59,"height":75},{"x":177,"y":150,"fileNum":4152,"id":12165,"width":59,"height":75},{"x":236,"y":150,"fileNum":4152,"id":12166,"width":59,"height":75},{"x":295,"y":150,"fileNum":4152,"id":12167,"width":59,"height":75},{"x":354,"y":150,"fileNum":4152,"id":12168,"width":59,"height":75},{"x":413,"y":150,"fileNum":4152,"id":12169,"width":59,"height":75},{"x":472,"y":150,"fileNum":4152,"id":12170,"width":59,"height":75},{"x":0,"y":225,"fileNum":4152,"id":12171,"width":59,"height":75},{"x":59,"y":225,"fileNum":4152,"id":12172,"width":59,"height":75},{"x":118,"y":225,"fileNum":4152,"id":12173,"width":59,"height":75},{"x":177,"y":225,"fileNum":4152,"id":12174,"width":59,"height":75},{"x":236,"y":225,"fileNum":4152,"id":12175,"width":59,"height":75},{"x":295,"y":225,"fileNum":4152,"id":12176,"width":59,"height":75},{"x":354,"y":225,"fileNum":4152,"id":12177,"width":59,"height":75},{"x":413,"y":225,"fileNum":4152,"id":12178,"width":59,"height":75},{"x":475,"y":225,"fileNum":4152,"id":12179,"width":59,"height":75},{"x":0,"y":0,"fileNum":4153,"id":12184,"width":48,"height":64},{"x":48,"y":0,"fileNum":4153,"id":12185,"width":48,"height":64},{"x":96,"y":0,"fileNum":4153,"id":12186,"width":48,"height":64},{"x":144,"y":0,"fileNum":4153,"id":12187,"width":48,"height":64},{"x":192,"y":0,"fileNum":4153,"id":12188,"width":48,"height":64},{"x":240,"y":0,"fileNum":4153,"id":12189,"width":48,"height":64},{"x":288,"y":0,"fileNum":4153,"id":12190,"width":48,"height":64},{"x":336,"y":0,"fileNum":4153,"id":12191,"width":48,"height":64},{"x":0,"y":64,"fileNum":4153,"id":12192,"width":48,"height":64},{"x":48,"y":64,"fileNum":4153,"id":12193,"width":48,"height":64},{"x":96,"y":64,"fileNum":4153,"id":12194,"width":48,"height":64},{"x":144,"y":64,"fileNum":4153,"id":12195,"width":48,"height":64},{"x":192,"y":64,"fileNum":4153,"id":12196,"width":48,"height":64},{"x":240,"y":64,"fileNum":4153,"id":12197,"width":48,"height":64},{"x":288,"y":64,"fileNum":4153,"id":12198,"width":48,"height":64},{"x":336,"y":64,"fileNum":4153,"id":12199,"width":48,"height":64},{"x":0,"y":128,"fileNum":4153,"id":12200,"width":48,"height":64},{"x":48,"y":128,"fileNum":4153,"id":12201,"width":48,"height":64},{"x":96,"y":128,"fileNum":4153,"id":12202,"width":48,"height":64},{"x":144,"y":128,"fileNum":4153,"id":12203,"width":48,"height":64},{"x":192,"y":128,"fileNum":4153,"id":12204,"width":48,"height":64},{"x":240,"y":128,"fileNum":4153,"id":12205,"width":48,"height":64},{"x":288,"y":128,"fileNum":4153,"id":12206,"width":48,"height":64},{"x":336,"y":128,"fileNum":4153,"id":12207,"width":48,"height":64},{"x":0,"y":192,"fileNum":4153,"id":12208,"width":48,"height":64},{"x":48,"y":192,"fileNum":4153,"id":12209,"width":48,"height":64},{"x":96,"y":192,"fileNum":4153,"id":12210,"width":48,"height":64},{"x":144,"y":192,"fileNum":4153,"id":12211,"width":48,"height":64},{"x":192,"y":192,"fileNum":4153,"id":12212,"width":48,"height":64},{"x":240,"y":192,"fileNum":4153,"id":12213,"width":48,"height":64},{"x":288,"y":192,"fileNum":4153,"id":12214,"width":48,"height":64},{"x":336,"y":192,"fileNum":4153,"id":12215,"width":48,"height":64},{"x":0,"y":0,"fileNum":4154,"id":12220,"width":48,"height":64},{"x":48,"y":0,"fileNum":4154,"id":12221,"width":48,"height":64},{"x":96,"y":0,"fileNum":4154,"id":12222,"width":48,"height":64},{"x":144,"y":0,"fileNum":4154,"id":12223,"width":48,"height":64},{"x":192,"y":0,"fileNum":4154,"id":12224,"width":48,"height":64},{"x":240,"y":0,"fileNum":4154,"id":12225,"width":48,"height":64},{"x":288,"y":0,"fileNum":4154,"id":12226,"width":48,"height":64},{"x":336,"y":0,"fileNum":4154,"id":12227,"width":48,"height":64},{"x":0,"y":64,"fileNum":4154,"id":12228,"width":48,"height":64},{"x":48,"y":64,"fileNum":4154,"id":12229,"width":48,"height":64},{"x":96,"y":64,"fileNum":4154,"id":12230,"width":48,"height":64},{"x":144,"y":64,"fileNum":4154,"id":12231,"width":48,"height":64},{"x":192,"y":64,"fileNum":4154,"id":12232,"width":48,"height":64},{"x":240,"y":64,"fileNum":4154,"id":12233,"width":48,"height":64},{"x":288,"y":64,"fileNum":4154,"id":12234,"width":48,"height":64},{"x":336,"y":64,"fileNum":4154,"id":12235,"width":48,"height":64},{"x":0,"y":128,"fileNum":4154,"id":12236,"width":48,"height":64},{"x":48,"y":128,"fileNum":4154,"id":12237,"width":48,"height":64},{"x":96,"y":128,"fileNum":4154,"id":12238,"width":48,"height":64},{"x":144,"y":128,"fileNum":4154,"id":12239,"width":48,"height":64},{"x":192,"y":128,"fileNum":4154,"id":12240,"width":48,"height":64},{"x":240,"y":128,"fileNum":4154,"id":12241,"width":48,"height":64},{"x":288,"y":128,"fileNum":4154,"id":12242,"width":48,"height":64},{"x":336,"y":128,"fileNum":4154,"id":12243,"width":48,"height":64},{"x":0,"y":192,"fileNum":4154,"id":12244,"width":48,"height":64},{"x":48,"y":192,"fileNum":4154,"id":12245,"width":48,"height":64},{"x":96,"y":192,"fileNum":4154,"id":12246,"width":48,"height":64},{"x":144,"y":192,"fileNum":4154,"id":12247,"width":48,"height":64},{"x":192,"y":192,"fileNum":4154,"id":12248,"width":48,"height":64},{"x":240,"y":192,"fileNum":4154,"id":12249,"width":48,"height":64},{"x":288,"y":192,"fileNum":4154,"id":12250,"width":48,"height":64},{"x":336,"y":192,"fileNum":4154,"id":12251,"width":48,"height":64},{"x":0,"y":0,"fileNum":4155,"id":12256,"width":48,"height":64},{"x":48,"y":0,"fileNum":4155,"id":12257,"width":48,"height":64},{"x":96,"y":0,"fileNum":4155,"id":12258,"width":48,"height":64},{"x":144,"y":0,"fileNum":4155,"id":12259,"width":48,"height":64},{"x":191,"y":0,"fileNum":4155,"id":12260,"width":48,"height":64},{"x":240,"y":0,"fileNum":4155,"id":12261,"width":48,"height":64},{"x":288,"y":0,"fileNum":4155,"id":12262,"width":48,"height":64},{"x":336,"y":0,"fileNum":4155,"id":12263,"width":48,"height":64},{"x":0,"y":64,"fileNum":4155,"id":12264,"width":48,"height":64},{"x":48,"y":64,"fileNum":4155,"id":12265,"width":48,"height":64},{"x":96,"y":64,"fileNum":4155,"id":12266,"width":48,"height":64},{"x":144,"y":64,"fileNum":4155,"id":12267,"width":48,"height":64},{"x":192,"y":64,"fileNum":4155,"id":12268,"width":48,"height":64},{"x":240,"y":64,"fileNum":4155,"id":12269,"width":48,"height":64},{"x":288,"y":64,"fileNum":4155,"id":12270,"width":48,"height":64},{"x":336,"y":64,"fileNum":4155,"id":12271,"width":48,"height":64},{"x":0,"y":129,"fileNum":4155,"id":12272,"width":48,"height":64},{"x":48,"y":129,"fileNum":4155,"id":12273,"width":48,"height":64},{"x":96,"y":129,"fileNum":4155,"id":12274,"width":48,"height":64},{"x":144,"y":129,"fileNum":4155,"id":12275,"width":48,"height":64},{"x":192,"y":129,"fileNum":4155,"id":12276,"width":48,"height":64},{"x":240,"y":129,"fileNum":4155,"id":12277,"width":48,"height":64},{"x":288,"y":129,"fileNum":4155,"id":12278,"width":48,"height":64},{"x":336,"y":129,"fileNum":4155,"id":12279,"width":48,"height":64},{"x":0,"y":192,"fileNum":4155,"id":12280,"width":48,"height":64},{"x":48,"y":192,"fileNum":4155,"id":12281,"width":48,"height":64},{"x":96,"y":192,"fileNum":4155,"id":12282,"width":48,"height":64},{"x":144,"y":192,"fileNum":4155,"id":12283,"width":48,"height":64},{"x":192,"y":192,"fileNum":4155,"id":12284,"width":48,"height":64},{"x":240,"y":192,"fileNum":4155,"id":12285,"width":48,"height":64},{"x":288,"y":192,"fileNum":4155,"id":12286,"width":48,"height":64},{"x":336,"y":192,"fileNum":4155,"id":12287,"width":48,"height":64},{"x":0,"y":0,"fileNum":4130,"id":12292,"width":42,"height":55},{"x":42,"y":0,"fileNum":4130,"id":12293,"width":42,"height":55},{"x":84,"y":0,"fileNum":4130,"id":12294,"width":42,"height":55},{"x":126,"y":0,"fileNum":4130,"id":12295,"width":42,"height":55},{"x":168,"y":0,"fileNum":4130,"id":12296,"width":42,"height":55},{"x":0,"y":55,"fileNum":4130,"id":12298,"width":42,"height":55},{"x":42,"y":55,"fileNum":4130,"id":12299,"width":42,"height":55},{"x":84,"y":55,"fileNum":4130,"id":12300,"width":42,"height":55},{"x":126,"y":55,"fileNum":4130,"id":12301,"width":42,"height":55},{"x":168,"y":55,"fileNum":4130,"id":12302,"width":42,"height":55},{"x":0,"y":0,"fileNum":6079,"id":12305,"width":256,"height":256},{"x":0,"y":0,"fileNum":6080,"id":12306,"width":256,"height":256},{"x":0,"y":0,"fileNum":6080,"id":12307,"width":1,"height":1},{"x":0,"y":0,"fileNum":6080,"id":12308,"width":1,"height":1},{"x":0,"y":0,"fileNum":6082,"id":12309,"width":128,"height":128},{"x":0,"y":0,"fileNum":6081,"id":12310,"width":128,"height":128},{"x":0,"y":110,"fileNum":4130,"id":12311,"width":42,"height":55},{"x":42,"y":110,"fileNum":4130,"id":12312,"width":42,"height":55},{"x":84,"y":110,"fileNum":4130,"id":12313,"width":42,"height":55},{"x":126,"y":110,"fileNum":4130,"id":12314,"width":42,"height":55},{"x":168,"y":110,"fileNum":4130,"id":12315,"width":42,"height":55},{"x":0,"y":165,"fileNum":4130,"id":12317,"width":42,"height":55},{"x":42,"y":165,"fileNum":4130,"id":12318,"width":42,"height":55},{"x":84,"y":165,"fileNum":4130,"id":12319,"width":42,"height":55},{"x":126,"y":165,"fileNum":4130,"id":12320,"width":42,"height":55},{"x":168,"y":165,"fileNum":4130,"id":12321,"width":42,"height":55},{"x":0,"y":0,"fileNum":8184,"id":12328,"width":128,"height":128},{"x":0,"y":0,"fileNum":8185,"id":12329,"width":128,"height":128},{"x":0,"y":0,"fileNum":8186,"id":12330,"width":128,"height":128},{"x":0,"y":0,"fileNum":8187,"id":12331,"width":128,"height":128},{"x":0,"y":0,"fileNum":8188,"id":12332,"width":128,"height":128},{"x":0,"y":0,"fileNum":8189,"id":12333,"width":128,"height":128},{"x":0,"y":0,"fileNum":6064,"id":12334,"width":256,"height":295},{"x":0,"y":0,"fileNum":2108,"id":12335,"width":17,"height":50},{"x":17,"y":0,"fileNum":2108,"id":12336,"width":17,"height":50},{"x":34,"y":0,"fileNum":2108,"id":12337,"width":17,"height":50},{"x":51,"y":0,"fileNum":2108,"id":12338,"width":17,"height":50},{"x":0,"y":0,"fileNum":15210,"id":12340,"width":64,"height":64},{"x":0,"y":0,"fileNum":15211,"id":12341,"width":64,"height":64},{"x":0,"y":0,"fileNum":15212,"id":12342,"width":64,"height":64},{"x":0,"y":0,"fileNum":15213,"id":12343,"width":64,"height":64},{"x":0,"y":0,"fileNum":15214,"id":12344,"width":64,"height":64},{"x":0,"y":0,"fileNum":15215,"id":12345,"width":64,"height":64},{"x":0,"y":0,"fileNum":15216,"id":12346,"width":64,"height":64},{"x":0,"y":0,"fileNum":2193,"id":12347,"width":17,"height":50},{"x":17,"y":0,"fileNum":2193,"id":12348,"width":17,"height":50},{"x":34,"y":0,"fileNum":2193,"id":12349,"width":17,"height":50},{"x":51,"y":0,"fileNum":2193,"id":12350,"width":17,"height":50},{"x":0,"y":0,"fileNum":2194,"id":12351,"width":17,"height":50},{"x":17,"y":0,"fileNum":2194,"id":12352,"width":17,"height":50},{"x":34,"y":0,"fileNum":2194,"id":12353,"width":17,"height":50},{"x":51,"y":0,"fileNum":2194,"id":12354,"width":17,"height":50},{"x":0,"y":0,"fileNum":12085,"id":12358,"width":32,"height":32},{"x":32,"y":0,"fileNum":12085,"id":12359,"width":32,"height":32},{"x":0,"y":32,"fileNum":12085,"id":12360,"width":32,"height":32},{"x":32,"y":32,"fileNum":12085,"id":12361,"width":32,"height":32},{"x":0,"y":0,"fileNum":12086,"id":12362,"width":32,"height":32},{"x":32,"y":0,"fileNum":12086,"id":12363,"width":32,"height":32},{"x":0,"y":32,"fileNum":12086,"id":12364,"width":32,"height":32},{"x":32,"y":32,"fileNum":12086,"id":12365,"width":32,"height":32},{"x":0,"y":0,"fileNum":12087,"id":12366,"width":32,"height":32},{"x":32,"y":0,"fileNum":12087,"id":12367,"width":32,"height":32},{"x":0,"y":32,"fileNum":12087,"id":12368,"width":32,"height":32},{"x":32,"y":32,"fileNum":12087,"id":12369,"width":32,"height":32},{"x":0,"y":0,"fileNum":12088,"id":12370,"width":32,"height":32},{"x":32,"y":0,"fileNum":12088,"id":12371,"width":32,"height":32},{"x":0,"y":32,"fileNum":12088,"id":12372,"width":32,"height":32},{"x":32,"y":32,"fileNum":12088,"id":12373,"width":32,"height":32},{"x":0,"y":0,"fileNum":12089,"id":12374,"width":32,"height":32},{"x":32,"y":0,"fileNum":12089,"id":12375,"width":32,"height":32},{"x":0,"y":32,"fileNum":12089,"id":12376,"width":32,"height":32},{"x":32,"y":32,"fileNum":12089,"id":12377,"width":32,"height":32},{"x":0,"y":0,"fileNum":12090,"id":12378,"width":32,"height":32},{"x":32,"y":0,"fileNum":12090,"id":12379,"width":32,"height":32},{"x":0,"y":32,"fileNum":12090,"id":12380,"width":32,"height":32},{"x":32,"y":32,"fileNum":12090,"id":12381,"width":32,"height":32},{"x":0,"y":0,"fileNum":12091,"id":12382,"width":32,"height":32},{"x":32,"y":0,"fileNum":12091,"id":12383,"width":32,"height":32},{"x":0,"y":32,"fileNum":12091,"id":12384,"width":32,"height":32},{"x":32,"y":32,"fileNum":12091,"id":12385,"width":32,"height":32},{"x":0,"y":0,"fileNum":12092,"id":12386,"width":32,"height":32},{"x":32,"y":0,"fileNum":12092,"id":12387,"width":32,"height":32},{"x":0,"y":32,"fileNum":12092,"id":12388,"width":32,"height":32},{"x":32,"y":32,"fileNum":12092,"id":12389,"width":32,"height":32},{"x":0,"y":0,"fileNum":2195,"id":12390,"width":17,"height":50},{"x":17,"y":0,"fileNum":2195,"id":12391,"width":17,"height":50},{"x":34,"y":0,"fileNum":2195,"id":12392,"width":17,"height":50},{"x":51,"y":0,"fileNum":2195,"id":12393,"width":17,"height":50},{"x":0,"y":0,"fileNum":2196,"id":12394,"width":17,"height":50},{"x":17,"y":0,"fileNum":2196,"id":12395,"width":17,"height":50},{"x":34,"y":0,"fileNum":2196,"id":12396,"width":17,"height":50},{"x":51,"y":0,"fileNum":2196,"id":12397,"width":17,"height":50},{"x":0,"y":0,"fileNum":15217,"id":12400,"width":32,"height":32},{"x":32,"y":0,"fileNum":15217,"id":12401,"width":32,"height":32},{"x":0,"y":0,"fileNum":15218,"id":12402,"width":32,"height":32},{"x":32,"y":0,"fileNum":15218,"id":12403,"width":32,"height":32},{"x":0,"y":0,"fileNum":15219,"id":12404,"width":32,"height":32},{"x":32,"y":0,"fileNum":15219,"id":12405,"width":32,"height":32},{"x":0,"y":0,"fileNum":15220,"id":12406,"width":32,"height":32},{"x":0,"y":32,"fileNum":15220,"id":12407,"width":32,"height":32},{"x":0,"y":0,"fileNum":15221,"id":12408,"width":32,"height":32},{"x":0,"y":32,"fileNum":15221,"id":12409,"width":32,"height":32},{"x":0,"y":0,"fileNum":15222,"id":12410,"width":32,"height":32},{"x":0,"y":32,"fileNum":15222,"id":12411,"width":32,"height":32},{"x":0,"y":0,"fileNum":15223,"id":12412,"width":32,"height":32},{"x":0,"y":32,"fileNum":15223,"id":12413,"width":32,"height":32},{"x":0,"y":0,"fileNum":15224,"id":12414,"width":32,"height":32},{"x":0,"y":32,"fileNum":15224,"id":12415,"width":32,"height":32},{"x":0,"y":0,"fileNum":15225,"id":12416,"width":32,"height":32},{"x":0,"y":32,"fileNum":15225,"id":12417,"width":32,"height":32},{"x":0,"y":0,"fileNum":15226,"id":12418,"width":32,"height":32},{"x":0,"y":32,"fileNum":15226,"id":12419,"width":32,"height":32},{"x":0,"y":0,"fileNum":15227,"id":12420,"width":32,"height":32},{"x":0,"y":32,"fileNum":15227,"id":12421,"width":32,"height":32},{"x":0,"y":0,"fileNum":15205,"id":12422,"width":32,"height":32},{"x":32,"y":0,"fileNum":15205,"id":12423,"width":32,"height":32},{"x":64,"y":0,"fileNum":15205,"id":12424,"width":32,"height":32},{"x":96,"y":0,"fileNum":15205,"id":12425,"width":32,"height":32},{"x":0,"y":0,"fileNum":6079,"id":12426,"width":256,"height":256},{"x":0,"y":0,"fileNum":15206,"id":12428,"width":160,"height":128},{"x":0,"y":0,"fileNum":15207,"id":12429,"width":64,"height":64},{"x":0,"y":0,"fileNum":15208,"id":12432,"width":64,"height":64},{"x":0,"y":32,"fileNum":15209,"id":12433,"width":256,"height":32},{"x":0,"y":64,"fileNum":15209,"id":12434,"width":256,"height":32},{"x":0,"y":96,"fileNum":15209,"id":12435,"width":256,"height":32},{"x":0,"y":128,"fileNum":15209,"id":12436,"width":256,"height":32},{"x":0,"y":160,"fileNum":15209,"id":12437,"width":256,"height":32},{"x":0,"y":192,"fileNum":15209,"id":12438,"width":256,"height":32},{"x":0,"y":0,"fileNum":8176,"id":12439,"width":32,"height":32},{"x":32,"y":0,"fileNum":8176,"id":12440,"width":32,"height":32},{"x":64,"y":0,"fileNum":8176,"id":12441,"width":32,"height":32},{"x":96,"y":0,"fileNum":8176,"id":12442,"width":32,"height":32},{"x":0,"y":32,"fileNum":8176,"id":12443,"width":32,"height":32},{"x":32,"y":32,"fileNum":8176,"id":12444,"width":32,"height":32},{"x":64,"y":32,"fileNum":8176,"id":12445,"width":32,"height":32},{"x":96,"y":32,"fileNum":8176,"id":12446,"width":32,"height":32},{"x":0,"y":64,"fileNum":8176,"id":12447,"width":32,"height":32},{"x":32,"y":64,"fileNum":8176,"id":12448,"width":32,"height":32},{"x":64,"y":64,"fileNum":8176,"id":12449,"width":32,"height":32},{"x":96,"y":64,"fileNum":8176,"id":12450,"width":32,"height":32},{"x":0,"y":96,"fileNum":8176,"id":12451,"width":32,"height":32},{"x":32,"y":96,"fileNum":8176,"id":12452,"width":32,"height":32},{"x":64,"y":96,"fileNum":8176,"id":12453,"width":32,"height":32},{"x":96,"y":96,"fileNum":8176,"id":12454,"width":32,"height":32},{"x":0,"y":0,"fileNum":8177,"id":12455,"width":32,"height":32},{"x":32,"y":0,"fileNum":8177,"id":12456,"width":32,"height":32},{"x":64,"y":0,"fileNum":8177,"id":12457,"width":32,"height":32},{"x":96,"y":0,"fileNum":8177,"id":12458,"width":32,"height":32},{"x":0,"y":32,"fileNum":8177,"id":12459,"width":32,"height":32},{"x":32,"y":32,"fileNum":8177,"id":12460,"width":32,"height":32},{"x":64,"y":32,"fileNum":8177,"id":12461,"width":32,"height":32},{"x":96,"y":32,"fileNum":8177,"id":12462,"width":32,"height":32},{"x":0,"y":64,"fileNum":8177,"id":12463,"width":32,"height":32},{"x":32,"y":64,"fileNum":8177,"id":12464,"width":32,"height":32},{"x":64,"y":64,"fileNum":8177,"id":12465,"width":32,"height":32},{"x":96,"y":64,"fileNum":8177,"id":12466,"width":32,"height":32},{"x":0,"y":96,"fileNum":8177,"id":12467,"width":32,"height":32},{"x":32,"y":96,"fileNum":8177,"id":12468,"width":32,"height":32},{"x":64,"y":96,"fileNum":8177,"id":12469,"width":32,"height":32},{"x":96,"y":96,"fileNum":8177,"id":12470,"width":32,"height":32},{"x":0,"y":0,"fileNum":8178,"id":12471,"width":32,"height":32},{"x":32,"y":0,"fileNum":8178,"id":12472,"width":32,"height":32},{"x":64,"y":0,"fileNum":8178,"id":12473,"width":32,"height":32},{"x":96,"y":0,"fileNum":8178,"id":12474,"width":32,"height":32},{"x":0,"y":32,"fileNum":8178,"id":12475,"width":32,"height":32},{"x":32,"y":32,"fileNum":8178,"id":12476,"width":32,"height":32},{"x":64,"y":32,"fileNum":8178,"id":12477,"width":32,"height":32},{"x":96,"y":32,"fileNum":8178,"id":12478,"width":32,"height":32},{"x":0,"y":64,"fileNum":8178,"id":12479,"width":32,"height":32},{"x":32,"y":64,"fileNum":8178,"id":12480,"width":32,"height":32},{"x":64,"y":64,"fileNum":8178,"id":12481,"width":32,"height":32},{"x":96,"y":64,"fileNum":8178,"id":12482,"width":32,"height":32},{"x":0,"y":96,"fileNum":8178,"id":12483,"width":32,"height":32},{"x":32,"y":96,"fileNum":8178,"id":12484,"width":32,"height":32},{"x":64,"y":96,"fileNum":8178,"id":12485,"width":32,"height":32},{"x":96,"y":96,"fileNum":8178,"id":12486,"width":32,"height":32},{"x":0,"y":0,"fileNum":8179,"id":12487,"width":32,"height":32},{"x":32,"y":0,"fileNum":8179,"id":12488,"width":32,"height":32},{"x":64,"y":0,"fileNum":8179,"id":12489,"width":32,"height":32},{"x":96,"y":0,"fileNum":8179,"id":12490,"width":32,"height":32},{"x":0,"y":32,"fileNum":8179,"id":12491,"width":32,"height":32},{"x":32,"y":32,"fileNum":8179,"id":12492,"width":32,"height":32},{"x":64,"y":32,"fileNum":8179,"id":12493,"width":32,"height":32},{"x":96,"y":32,"fileNum":8179,"id":12494,"width":32,"height":32},{"x":0,"y":64,"fileNum":8179,"id":12495,"width":32,"height":32},{"x":32,"y":64,"fileNum":8179,"id":12496,"width":32,"height":32},{"x":64,"y":64,"fileNum":8179,"id":12497,"width":32,"height":32},{"x":96,"y":64,"fileNum":8179,"id":12498,"width":32,"height":32},{"x":0,"y":96,"fileNum":8179,"id":12499,"width":32,"height":32},{"x":32,"y":96,"fileNum":8179,"id":12500,"width":32,"height":32},{"x":64,"y":96,"fileNum":8179,"id":12501,"width":32,"height":32},{"x":96,"y":96,"fileNum":8179,"id":12502,"width":32,"height":32},{"x":0,"y":0,"fileNum":8180,"id":12503,"width":32,"height":32},{"x":32,"y":0,"fileNum":8180,"id":12504,"width":32,"height":32},{"x":64,"y":0,"fileNum":8180,"id":12505,"width":32,"height":32},{"x":96,"y":0,"fileNum":8180,"id":12506,"width":32,"height":32},{"x":0,"y":32,"fileNum":8180,"id":12507,"width":32,"height":32},{"x":32,"y":32,"fileNum":8180,"id":12508,"width":32,"height":32},{"x":64,"y":32,"fileNum":8180,"id":12509,"width":32,"height":32},{"x":96,"y":32,"fileNum":8180,"id":12510,"width":32,"height":32},{"x":0,"y":64,"fileNum":8180,"id":12511,"width":32,"height":32},{"x":32,"y":64,"fileNum":8180,"id":12512,"width":32,"height":32},{"x":64,"y":64,"fileNum":8180,"id":12513,"width":32,"height":32},{"x":96,"y":64,"fileNum":8180,"id":12514,"width":32,"height":32},{"x":0,"y":96,"fileNum":8180,"id":12515,"width":32,"height":32},{"x":32,"y":96,"fileNum":8180,"id":12516,"width":32,"height":32},{"x":64,"y":96,"fileNum":8180,"id":12517,"width":32,"height":32},{"x":96,"y":96,"fileNum":8180,"id":12518,"width":32,"height":32},{"x":0,"y":0,"fileNum":8181,"id":12519,"width":32,"height":32},{"x":32,"y":0,"fileNum":8181,"id":12520,"width":32,"height":32},{"x":64,"y":0,"fileNum":8181,"id":12521,"width":32,"height":32},{"x":96,"y":0,"fileNum":8181,"id":12522,"width":32,"height":32},{"x":0,"y":32,"fileNum":8181,"id":12523,"width":32,"height":32},{"x":32,"y":32,"fileNum":8181,"id":12524,"width":32,"height":32},{"x":64,"y":32,"fileNum":8181,"id":12525,"width":32,"height":32},{"x":96,"y":32,"fileNum":8181,"id":12526,"width":32,"height":32},{"x":0,"y":64,"fileNum":8181,"id":12527,"width":32,"height":32},{"x":32,"y":64,"fileNum":8181,"id":12528,"width":32,"height":32},{"x":64,"y":64,"fileNum":8181,"id":12529,"width":32,"height":32},{"x":96,"y":64,"fileNum":8181,"id":12530,"width":32,"height":32},{"x":0,"y":96,"fileNum":8181,"id":12531,"width":32,"height":32},{"x":32,"y":96,"fileNum":8181,"id":12532,"width":32,"height":32},{"x":64,"y":96,"fileNum":8181,"id":12533,"width":32,"height":32},{"x":96,"y":96,"fileNum":8181,"id":12534,"width":32,"height":32},{"x":0,"y":0,"fileNum":8182,"id":12535,"width":32,"height":32},{"x":32,"y":0,"fileNum":8182,"id":12536,"width":32,"height":32},{"x":64,"y":0,"fileNum":8182,"id":12537,"width":32,"height":32},{"x":96,"y":0,"fileNum":8182,"id":12538,"width":32,"height":32},{"x":0,"y":32,"fileNum":8182,"id":12539,"width":32,"height":32},{"x":32,"y":32,"fileNum":8182,"id":12540,"width":32,"height":32},{"x":64,"y":32,"fileNum":8182,"id":12541,"width":32,"height":32},{"x":96,"y":32,"fileNum":8182,"id":12542,"width":32,"height":32},{"x":0,"y":64,"fileNum":8182,"id":12543,"width":32,"height":32},{"x":32,"y":64,"fileNum":8182,"id":12544,"width":32,"height":32},{"x":64,"y":64,"fileNum":8182,"id":12545,"width":32,"height":32},{"x":96,"y":64,"fileNum":8182,"id":12546,"width":32,"height":32},{"x":0,"y":96,"fileNum":8182,"id":12547,"width":32,"height":32},{"x":32,"y":96,"fileNum":8182,"id":12548,"width":32,"height":32},{"x":64,"y":96,"fileNum":8182,"id":12549,"width":32,"height":32},{"x":96,"y":96,"fileNum":8182,"id":12550,"width":32,"height":32},{"x":0,"y":0,"fileNum":8183,"id":12551,"width":32,"height":32},{"x":32,"y":0,"fileNum":8183,"id":12552,"width":32,"height":32},{"x":64,"y":0,"fileNum":8183,"id":12553,"width":32,"height":32},{"x":96,"y":0,"fileNum":8183,"id":12554,"width":32,"height":32},{"x":0,"y":32,"fileNum":8183,"id":12555,"width":32,"height":32},{"x":32,"y":32,"fileNum":8183,"id":12556,"width":32,"height":32},{"x":64,"y":32,"fileNum":8183,"id":12557,"width":32,"height":32},{"x":96,"y":32,"fileNum":8183,"id":12558,"width":32,"height":32},{"x":0,"y":64,"fileNum":8183,"id":12559,"width":32,"height":32},{"x":32,"y":64,"fileNum":8183,"id":12560,"width":32,"height":32},{"x":64,"y":64,"fileNum":8183,"id":12561,"width":32,"height":32},{"x":96,"y":64,"fileNum":8183,"id":12562,"width":32,"height":32},{"x":0,"y":96,"fileNum":8183,"id":12563,"width":32,"height":32},{"x":32,"y":96,"fileNum":8183,"id":12564,"width":32,"height":32},{"x":64,"y":96,"fileNum":8183,"id":12565,"width":32,"height":32},{"x":96,"y":96,"fileNum":8183,"id":12566,"width":32,"height":32},{"x":0,"y":0,"fileNum":8184,"id":12567,"width":32,"height":32},{"x":32,"y":0,"fileNum":8184,"id":12568,"width":32,"height":32},{"x":64,"y":0,"fileNum":8184,"id":12569,"width":32,"height":32},{"x":96,"y":0,"fileNum":8184,"id":12570,"width":32,"height":32},{"x":0,"y":32,"fileNum":8184,"id":12571,"width":32,"height":32},{"x":32,"y":32,"fileNum":8184,"id":12572,"width":32,"height":32},{"x":64,"y":32,"fileNum":8184,"id":12573,"width":32,"height":32},{"x":96,"y":32,"fileNum":8184,"id":12574,"width":32,"height":32},{"x":0,"y":64,"fileNum":8184,"id":12575,"width":32,"height":32},{"x":32,"y":64,"fileNum":8184,"id":12576,"width":32,"height":32},{"x":64,"y":64,"fileNum":8184,"id":12577,"width":32,"height":32},{"x":96,"y":64,"fileNum":8184,"id":12578,"width":32,"height":32},{"x":0,"y":96,"fileNum":8184,"id":12579,"width":32,"height":32},{"x":32,"y":96,"fileNum":8184,"id":12580,"width":32,"height":32},{"x":64,"y":96,"fileNum":8184,"id":12581,"width":32,"height":32},{"x":96,"y":96,"fileNum":8184,"id":12582,"width":32,"height":32},{"x":0,"y":0,"fileNum":8185,"id":12583,"width":32,"height":32},{"x":32,"y":0,"fileNum":8185,"id":12584,"width":32,"height":32},{"x":64,"y":0,"fileNum":8185,"id":12585,"width":32,"height":32},{"x":96,"y":0,"fileNum":8185,"id":12586,"width":32,"height":32},{"x":0,"y":32,"fileNum":8185,"id":12587,"width":32,"height":32},{"x":32,"y":32,"fileNum":8185,"id":12588,"width":32,"height":32},{"x":64,"y":32,"fileNum":8185,"id":12589,"width":32,"height":32},{"x":96,"y":32,"fileNum":8185,"id":12590,"width":32,"height":32},{"x":0,"y":64,"fileNum":8185,"id":12591,"width":32,"height":32},{"x":32,"y":64,"fileNum":8185,"id":12592,"width":32,"height":32},{"x":64,"y":64,"fileNum":8185,"id":12593,"width":32,"height":32},{"x":96,"y":64,"fileNum":8185,"id":12594,"width":32,"height":32},{"x":0,"y":96,"fileNum":8185,"id":12595,"width":32,"height":32},{"x":32,"y":96,"fileNum":8185,"id":12596,"width":32,"height":32},{"x":64,"y":96,"fileNum":8185,"id":12597,"width":32,"height":32},{"x":96,"y":96,"fileNum":8185,"id":12598,"width":32,"height":32},{"x":0,"y":0,"fileNum":8186,"id":12599,"width":32,"height":32},{"x":32,"y":0,"fileNum":8186,"id":12600,"width":32,"height":32},{"x":64,"y":0,"fileNum":8186,"id":12601,"width":32,"height":32},{"x":96,"y":0,"fileNum":8186,"id":12602,"width":32,"height":32},{"x":0,"y":32,"fileNum":8186,"id":12603,"width":32,"height":32},{"x":32,"y":32,"fileNum":8186,"id":12604,"width":32,"height":32},{"x":64,"y":32,"fileNum":8186,"id":12605,"width":32,"height":32},{"x":96,"y":32,"fileNum":8186,"id":12606,"width":32,"height":32},{"x":0,"y":64,"fileNum":8186,"id":12607,"width":32,"height":32},{"x":32,"y":64,"fileNum":8186,"id":12608,"width":32,"height":32},{"x":64,"y":64,"fileNum":8186,"id":12609,"width":32,"height":32},{"x":96,"y":64,"fileNum":8186,"id":12610,"width":32,"height":32},{"x":0,"y":96,"fileNum":8186,"id":12611,"width":32,"height":32},{"x":32,"y":96,"fileNum":8186,"id":12612,"width":32,"height":32},{"x":64,"y":96,"fileNum":8186,"id":12613,"width":32,"height":32},{"x":96,"y":96,"fileNum":8186,"id":12614,"width":32,"height":32},{"x":0,"y":0,"fileNum":8187,"id":12615,"width":32,"height":32},{"x":32,"y":0,"fileNum":8187,"id":12616,"width":32,"height":32},{"x":64,"y":0,"fileNum":8187,"id":12617,"width":32,"height":32},{"x":96,"y":0,"fileNum":8187,"id":12618,"width":32,"height":32},{"x":0,"y":32,"fileNum":8187,"id":12619,"width":32,"height":32},{"x":32,"y":32,"fileNum":8187,"id":12620,"width":32,"height":32},{"x":64,"y":32,"fileNum":8187,"id":12621,"width":32,"height":32},{"x":96,"y":32,"fileNum":8187,"id":12622,"width":32,"height":32},{"x":0,"y":64,"fileNum":8187,"id":12623,"width":32,"height":32},{"x":32,"y":64,"fileNum":8187,"id":12624,"width":32,"height":32},{"x":64,"y":64,"fileNum":8187,"id":12625,"width":32,"height":32},{"x":96,"y":64,"fileNum":8187,"id":12626,"width":32,"height":32},{"x":0,"y":96,"fileNum":8187,"id":12627,"width":32,"height":32},{"x":32,"y":96,"fileNum":8187,"id":12628,"width":32,"height":32},{"x":64,"y":96,"fileNum":8187,"id":12629,"width":32,"height":32},{"x":96,"y":96,"fileNum":8187,"id":12630,"width":32,"height":32},{"x":0,"y":0,"fileNum":8188,"id":12631,"width":32,"height":32},{"x":32,"y":0,"fileNum":8188,"id":12632,"width":32,"height":32},{"x":64,"y":0,"fileNum":8188,"id":12633,"width":32,"height":32},{"x":96,"y":0,"fileNum":8188,"id":12634,"width":32,"height":32},{"x":0,"y":32,"fileNum":8188,"id":12635,"width":32,"height":32},{"x":32,"y":32,"fileNum":8188,"id":12636,"width":32,"height":32},{"x":64,"y":32,"fileNum":8188,"id":12637,"width":32,"height":32},{"x":96,"y":32,"fileNum":8188,"id":12638,"width":32,"height":32},{"x":0,"y":64,"fileNum":8188,"id":12639,"width":32,"height":32},{"x":32,"y":64,"fileNum":8188,"id":12640,"width":32,"height":32},{"x":64,"y":64,"fileNum":8188,"id":12641,"width":32,"height":32},{"x":96,"y":64,"fileNum":8188,"id":12642,"width":32,"height":32},{"x":0,"y":96,"fileNum":8188,"id":12643,"width":32,"height":32},{"x":32,"y":96,"fileNum":8188,"id":12644,"width":32,"height":32},{"x":64,"y":96,"fileNum":8188,"id":12645,"width":32,"height":32},{"x":96,"y":96,"fileNum":8188,"id":12646,"width":32,"height":32},{"x":0,"y":0,"fileNum":8189,"id":12647,"width":32,"height":32},{"x":32,"y":0,"fileNum":8189,"id":12648,"width":32,"height":32},{"x":64,"y":0,"fileNum":8189,"id":12649,"width":32,"height":32},{"x":96,"y":0,"fileNum":8189,"id":12650,"width":32,"height":32},{"x":0,"y":32,"fileNum":8189,"id":12651,"width":32,"height":32},{"x":32,"y":32,"fileNum":8189,"id":12652,"width":32,"height":32},{"x":64,"y":32,"fileNum":8189,"id":12653,"width":32,"height":32},{"x":96,"y":32,"fileNum":8189,"id":12654,"width":32,"height":32},{"x":0,"y":64,"fileNum":8189,"id":12655,"width":32,"height":32},{"x":32,"y":64,"fileNum":8189,"id":12656,"width":32,"height":32},{"x":64,"y":64,"fileNum":8189,"id":12657,"width":32,"height":32},{"x":96,"y":64,"fileNum":8189,"id":12658,"width":32,"height":32},{"x":0,"y":96,"fileNum":8189,"id":12659,"width":32,"height":32},{"x":32,"y":96,"fileNum":8189,"id":12660,"width":32,"height":32},{"x":64,"y":96,"fileNum":8189,"id":12661,"width":32,"height":32},{"x":96,"y":96,"fileNum":8189,"id":12662,"width":32,"height":32},{"x":0,"y":0,"fileNum":4145,"id":12663,"width":140,"height":170},{"x":140,"y":0,"fileNum":4145,"id":12664,"width":140,"height":170},{"x":280,"y":0,"fileNum":4145,"id":12665,"width":140,"height":170},{"x":420,"y":0,"fileNum":4145,"id":12666,"width":140,"height":170},{"x":560,"y":0,"fileNum":4145,"id":12667,"width":140,"height":170},{"x":700,"y":0,"fileNum":4145,"id":12668,"width":140,"height":170},{"x":840,"y":0,"fileNum":4145,"id":12669,"width":140,"height":170},{"x":980,"y":0,"fileNum":4145,"id":12670,"width":140,"height":170},{"x":0,"y":170,"fileNum":4145,"id":12671,"width":140,"height":170},{"x":140,"y":170,"fileNum":4145,"id":12672,"width":140,"height":170},{"x":280,"y":170,"fileNum":4145,"id":12673,"width":140,"height":170},{"x":420,"y":170,"fileNum":4145,"id":12674,"width":140,"height":170},{"x":560,"y":170,"fileNum":4145,"id":12675,"width":140,"height":170},{"x":700,"y":170,"fileNum":4145,"id":12676,"width":140,"height":170},{"x":840,"y":170,"fileNum":4145,"id":12677,"width":140,"height":170},{"x":980,"y":170,"fileNum":4145,"id":12678,"width":140,"height":170},{"x":0,"y":510,"fileNum":4145,"id":12679,"width":140,"height":170},{"x":140,"y":510,"fileNum":4145,"id":12680,"width":140,"height":170},{"x":280,"y":510,"fileNum":4145,"id":12681,"width":140,"height":170},{"x":420,"y":510,"fileNum":4145,"id":12682,"width":140,"height":170},{"x":560,"y":510,"fileNum":4145,"id":12683,"width":140,"height":170},{"x":700,"y":510,"fileNum":4145,"id":12684,"width":140,"height":170},{"x":840,"y":510,"fileNum":4145,"id":12685,"width":140,"height":170},{"x":980,"y":510,"fileNum":4145,"id":12686,"width":140,"height":170},{"x":0,"y":340,"fileNum":4145,"id":12687,"width":140,"height":170},{"x":140,"y":340,"fileNum":4145,"id":12688,"width":140,"height":170},{"x":280,"y":340,"fileNum":4145,"id":12689,"width":140,"height":170},{"x":420,"y":340,"fileNum":4145,"id":12690,"width":140,"height":170},{"x":560,"y":340,"fileNum":4145,"id":12691,"width":140,"height":170},{"x":700,"y":340,"fileNum":4145,"id":12692,"width":140,"height":170},{"x":840,"y":340,"fileNum":4145,"id":12693,"width":140,"height":170},{"x":980,"y":340,"fileNum":4145,"id":12694,"width":140,"height":170},{"x":0,"y":0,"fileNum":15074,"id":12700,"width":32,"height":32},{"x":0,"y":0,"fileNum":13007,"id":12703,"width":180,"height":210},{"x":0,"y":0,"fileNum":13008,"id":12704,"width":76,"height":68},{"x":0,"y":0,"fileNum":13009,"id":12705,"width":45,"height":100},{"x":0,"y":0,"fileNum":15116,"id":12706,"width":32,"height":49},{"x":0,"y":0,"fileNum":15117,"id":12707,"width":41,"height":54},{"x":0,"y":0,"fileNum":15118,"id":12708,"width":66,"height":71},{"x":0,"y":0,"fileNum":13010,"id":12709,"width":44,"height":50},{"x":0,"y":0,"fileNum":15119,"id":12710,"width":61,"height":75},{"x":0,"y":0,"fileNum":15120,"id":12711,"width":61,"height":75},{"x":0,"y":0,"fileNum":12044,"id":12712,"width":32,"height":32},{"x":32,"y":0,"fileNum":12044,"id":12713,"width":32,"height":32},{"x":0,"y":32,"fileNum":12044,"id":12714,"width":32,"height":32},{"x":32,"y":32,"fileNum":12044,"id":12715,"width":32,"height":32},{"x":0,"y":0,"fileNum":13011,"id":12716,"width":54,"height":43},{"x":0,"y":0,"fileNum":13012,"id":12717,"width":51,"height":43},{"x":0,"y":0,"fileNum":13013,"id":12718,"width":53,"height":48},{"x":0,"y":0,"fileNum":13014,"id":12719,"width":47,"height":46},{"x":0,"y":0,"fileNum":15130,"id":12720,"width":35,"height":35},{"x":0,"y":0,"fileNum":15131,"id":12721,"width":35,"height":35},{"x":0,"y":0,"fileNum":15132,"id":12722,"width":35,"height":35},{"x":0,"y":0,"fileNum":15133,"id":12723,"width":80,"height":51},{"x":0,"y":0,"fileNum":15136,"id":12724,"width":32,"height":35},{"x":0,"y":0,"fileNum":15139,"id":12725,"width":32,"height":32},{"x":0,"y":0,"fileNum":15142,"id":12726,"width":32,"height":32},{"x":0,"y":0,"fileNum":15145,"id":12727,"width":32,"height":32},{"x":0,"y":0,"fileNum":4111,"id":12728,"width":65,"height":66},{"x":65,"y":0,"fileNum":4111,"id":12729,"width":65,"height":66},{"x":130,"y":0,"fileNum":4111,"id":12730,"width":65,"height":66},{"x":195,"y":0,"fileNum":4111,"id":12731,"width":65,"height":66},{"x":260,"y":0,"fileNum":4111,"id":12732,"width":65,"height":66},{"x":0,"y":65,"fileNum":4111,"id":12733,"width":65,"height":66},{"x":65,"y":65,"fileNum":4111,"id":12734,"width":65,"height":66},{"x":130,"y":65,"fileNum":4111,"id":12735,"width":65,"height":66},{"x":195,"y":65,"fileNum":4111,"id":12736,"width":65,"height":66},{"x":260,"y":65,"fileNum":4111,"id":12737,"width":65,"height":66},{"x":0,"y":132,"fileNum":4111,"id":12738,"width":65,"height":66},{"x":65,"y":132,"fileNum":4111,"id":12739,"width":65,"height":66},{"x":130,"y":132,"fileNum":4111,"id":12740,"width":65,"height":66},{"x":195,"y":132,"fileNum":4111,"id":12741,"width":65,"height":66},{"x":260,"y":132,"fileNum":4111,"id":12742,"width":65,"height":66},{"x":0,"y":198,"fileNum":4111,"id":12743,"width":65,"height":66},{"x":65,"y":198,"fileNum":4111,"id":12744,"width":65,"height":66},{"x":130,"y":198,"fileNum":4111,"id":12745,"width":65,"height":66},{"x":195,"y":198,"fileNum":4111,"id":12746,"width":65,"height":66},{"x":260,"y":198,"fileNum":4111,"id":12747,"width":65,"height":66},{"x":0,"y":0,"fileNum":229,"id":12752,"width":32,"height":32},{"x":0,"y":0,"fileNum":218,"id":12753,"width":25,"height":45},{"x":25,"y":0,"fileNum":218,"id":12754,"width":25,"height":45},{"x":50,"y":0,"fileNum":218,"id":12755,"width":25,"height":45},{"x":75,"y":0,"fileNum":218,"id":12756,"width":25,"height":45},{"x":100,"y":0,"fileNum":218,"id":12757,"width":25,"height":45},{"x":125,"y":0,"fileNum":218,"id":12758,"width":25,"height":45},{"x":0,"y":45,"fileNum":218,"id":12759,"width":25,"height":45},{"x":25,"y":45,"fileNum":218,"id":12760,"width":25,"height":45},{"x":50,"y":45,"fileNum":218,"id":12761,"width":25,"height":45},{"x":75,"y":45,"fileNum":218,"id":12762,"width":25,"height":45},{"x":100,"y":45,"fileNum":218,"id":12763,"width":25,"height":45},{"x":125,"y":45,"fileNum":218,"id":12764,"width":25,"height":45},{"x":0,"y":90,"fileNum":218,"id":12765,"width":25,"height":45},{"x":25,"y":90,"fileNum":218,"id":12766,"width":25,"height":45},{"x":50,"y":90,"fileNum":218,"id":12767,"width":25,"height":45},{"x":75,"y":90,"fileNum":218,"id":12768,"width":25,"height":45},{"x":100,"y":90,"fileNum":218,"id":12769,"width":25,"height":45},{"x":0,"y":135,"fileNum":218,"id":12770,"width":25,"height":45},{"x":25,"y":135,"fileNum":218,"id":12771,"width":25,"height":45},{"x":50,"y":135,"fileNum":218,"id":12772,"width":25,"height":45},{"x":75,"y":135,"fileNum":218,"id":12773,"width":25,"height":45},{"x":100,"y":135,"fileNum":218,"id":12774,"width":25,"height":45},{"x":0,"y":0,"fileNum":207,"id":12779,"width":32,"height":32},{"x":0,"y":0,"fileNum":203,"id":12780,"width":25,"height":45},{"x":25,"y":0,"fileNum":203,"id":12781,"width":25,"height":45},{"x":50,"y":0,"fileNum":203,"id":12782,"width":25,"height":45},{"x":75,"y":0,"fileNum":203,"id":12783,"width":25,"height":45},{"x":100,"y":0,"fileNum":203,"id":12784,"width":25,"height":45},{"x":125,"y":0,"fileNum":203,"id":12785,"width":25,"height":45},{"x":0,"y":45,"fileNum":203,"id":12786,"width":25,"height":45},{"x":25,"y":45,"fileNum":203,"id":12787,"width":25,"height":45},{"x":50,"y":45,"fileNum":203,"id":12788,"width":25,"height":45},{"x":75,"y":45,"fileNum":203,"id":12789,"width":25,"height":45},{"x":100,"y":45,"fileNum":203,"id":12790,"width":25,"height":45},{"x":125,"y":45,"fileNum":203,"id":12791,"width":25,"height":45},{"x":0,"y":90,"fileNum":203,"id":12792,"width":25,"height":45},{"x":25,"y":90,"fileNum":203,"id":12793,"width":25,"height":45},{"x":50,"y":90,"fileNum":203,"id":12794,"width":25,"height":45},{"x":75,"y":90,"fileNum":203,"id":12795,"width":25,"height":45},{"x":100,"y":90,"fileNum":203,"id":12796,"width":25,"height":45},{"x":0,"y":135,"fileNum":203,"id":12797,"width":25,"height":45},{"x":25,"y":135,"fileNum":203,"id":12798,"width":25,"height":45},{"x":50,"y":135,"fileNum":203,"id":12799,"width":25,"height":45},{"x":75,"y":135,"fileNum":203,"id":12800,"width":25,"height":45},{"x":100,"y":135,"fileNum":203,"id":12801,"width":25,"height":45},{"x":0,"y":0,"fileNum":152,"id":12806,"width":32,"height":32},{"x":0,"y":0,"fileNum":151,"id":12807,"width":25,"height":45},{"x":25,"y":0,"fileNum":151,"id":12808,"width":25,"height":45},{"x":50,"y":0,"fileNum":151,"id":12809,"width":25,"height":45},{"x":75,"y":0,"fileNum":151,"id":12810,"width":25,"height":45},{"x":100,"y":0,"fileNum":151,"id":12811,"width":25,"height":45},{"x":125,"y":0,"fileNum":151,"id":12812,"width":25,"height":45},{"x":0,"y":45,"fileNum":151,"id":12813,"width":25,"height":45},{"x":25,"y":45,"fileNum":151,"id":12814,"width":25,"height":45},{"x":50,"y":45,"fileNum":151,"id":12815,"width":25,"height":45},{"x":75,"y":45,"fileNum":151,"id":12816,"width":25,"height":45},{"x":100,"y":45,"fileNum":151,"id":12817,"width":25,"height":45},{"x":125,"y":45,"fileNum":151,"id":12818,"width":25,"height":45},{"x":0,"y":90,"fileNum":151,"id":12819,"width":25,"height":45},{"x":25,"y":90,"fileNum":151,"id":12820,"width":25,"height":45},{"x":50,"y":90,"fileNum":151,"id":12821,"width":25,"height":45},{"x":75,"y":90,"fileNum":151,"id":12822,"width":25,"height":45},{"x":100,"y":90,"fileNum":151,"id":12823,"width":25,"height":45},{"x":0,"y":135,"fileNum":151,"id":12824,"width":25,"height":45},{"x":25,"y":135,"fileNum":151,"id":12825,"width":25,"height":45},{"x":50,"y":135,"fileNum":151,"id":12826,"width":25,"height":45},{"x":75,"y":135,"fileNum":151,"id":12827,"width":25,"height":45},{"x":100,"y":135,"fileNum":151,"id":12828,"width":25,"height":45},{"x":0,"y":0,"fileNum":154,"id":12833,"width":32,"height":32},{"x":0,"y":0,"fileNum":153,"id":12834,"width":25,"height":45},{"x":25,"y":0,"fileNum":153,"id":12835,"width":25,"height":45},{"x":50,"y":0,"fileNum":153,"id":12836,"width":25,"height":45},{"x":75,"y":0,"fileNum":153,"id":12837,"width":25,"height":45},{"x":100,"y":0,"fileNum":153,"id":12838,"width":25,"height":45},{"x":125,"y":0,"fileNum":153,"id":12839,"width":25,"height":45},{"x":0,"y":45,"fileNum":153,"id":12840,"width":25,"height":45},{"x":25,"y":45,"fileNum":153,"id":12841,"width":25,"height":45},{"x":50,"y":45,"fileNum":153,"id":12842,"width":25,"height":45},{"x":75,"y":45,"fileNum":153,"id":12843,"width":25,"height":45},{"x":100,"y":45,"fileNum":153,"id":12844,"width":25,"height":45},{"x":125,"y":45,"fileNum":153,"id":12845,"width":25,"height":45},{"x":0,"y":90,"fileNum":153,"id":12846,"width":25,"height":45},{"x":25,"y":90,"fileNum":153,"id":12847,"width":25,"height":45},{"x":50,"y":90,"fileNum":153,"id":12848,"width":25,"height":45},{"x":75,"y":90,"fileNum":153,"id":12849,"width":25,"height":45},{"x":100,"y":90,"fileNum":153,"id":12850,"width":25,"height":45},{"x":0,"y":135,"fileNum":153,"id":12851,"width":25,"height":45},{"x":25,"y":135,"fileNum":153,"id":12852,"width":25,"height":45},{"x":50,"y":135,"fileNum":153,"id":12853,"width":25,"height":45},{"x":75,"y":135,"fileNum":153,"id":12854,"width":25,"height":45},{"x":100,"y":135,"fileNum":153,"id":12855,"width":25,"height":45},{"x":0,"y":0,"fileNum":156,"id":12860,"width":32,"height":32},{"x":0,"y":0,"fileNum":155,"id":12861,"width":25,"height":45},{"x":25,"y":0,"fileNum":155,"id":12862,"width":25,"height":45},{"x":50,"y":0,"fileNum":155,"id":12863,"width":25,"height":45},{"x":75,"y":0,"fileNum":155,"id":12864,"width":25,"height":45},{"x":100,"y":0,"fileNum":155,"id":12865,"width":25,"height":45},{"x":125,"y":0,"fileNum":155,"id":12866,"width":25,"height":45},{"x":0,"y":45,"fileNum":155,"id":12867,"width":25,"height":45},{"x":25,"y":45,"fileNum":155,"id":12868,"width":25,"height":45},{"x":50,"y":45,"fileNum":155,"id":12869,"width":25,"height":45},{"x":75,"y":45,"fileNum":155,"id":12870,"width":25,"height":45},{"x":100,"y":45,"fileNum":155,"id":12871,"width":25,"height":45},{"x":125,"y":45,"fileNum":155,"id":12872,"width":25,"height":45},{"x":0,"y":90,"fileNum":155,"id":12873,"width":25,"height":45},{"x":25,"y":90,"fileNum":155,"id":12874,"width":25,"height":45},{"x":50,"y":90,"fileNum":155,"id":12875,"width":25,"height":45},{"x":75,"y":90,"fileNum":155,"id":12876,"width":25,"height":45},{"x":100,"y":90,"fileNum":155,"id":12877,"width":25,"height":45},{"x":0,"y":135,"fileNum":155,"id":12878,"width":25,"height":45},{"x":25,"y":135,"fileNum":155,"id":12879,"width":25,"height":45},{"x":50,"y":135,"fileNum":155,"id":12880,"width":25,"height":45},{"x":75,"y":135,"fileNum":155,"id":12881,"width":25,"height":45},{"x":100,"y":135,"fileNum":155,"id":12882,"width":25,"height":45},{"x":0,"y":0,"fileNum":158,"id":12887,"width":32,"height":32},{"x":0,"y":0,"fileNum":157,"id":12888,"width":25,"height":45},{"x":25,"y":0,"fileNum":157,"id":12889,"width":25,"height":45},{"x":50,"y":0,"fileNum":157,"id":12890,"width":25,"height":45},{"x":75,"y":0,"fileNum":157,"id":12891,"width":25,"height":45},{"x":100,"y":0,"fileNum":157,"id":12892,"width":25,"height":45},{"x":125,"y":0,"fileNum":157,"id":12893,"width":25,"height":45},{"x":0,"y":45,"fileNum":157,"id":12894,"width":25,"height":45},{"x":25,"y":45,"fileNum":157,"id":12895,"width":25,"height":45},{"x":50,"y":45,"fileNum":157,"id":12896,"width":25,"height":45},{"x":75,"y":45,"fileNum":157,"id":12897,"width":25,"height":45},{"x":100,"y":45,"fileNum":157,"id":12898,"width":25,"height":45},{"x":125,"y":45,"fileNum":157,"id":12899,"width":25,"height":45},{"x":0,"y":90,"fileNum":157,"id":12900,"width":25,"height":45},{"x":25,"y":90,"fileNum":157,"id":12901,"width":25,"height":45},{"x":50,"y":90,"fileNum":157,"id":12902,"width":25,"height":45},{"x":75,"y":90,"fileNum":157,"id":12903,"width":25,"height":45},{"x":100,"y":90,"fileNum":157,"id":12904,"width":25,"height":45},{"x":0,"y":135,"fileNum":157,"id":12905,"width":25,"height":45},{"x":25,"y":135,"fileNum":157,"id":12906,"width":25,"height":45},{"x":50,"y":135,"fileNum":157,"id":12907,"width":25,"height":45},{"x":75,"y":135,"fileNum":157,"id":12908,"width":25,"height":45},{"x":100,"y":135,"fileNum":157,"id":12909,"width":25,"height":45},{"x":0,"y":0,"fileNum":160,"id":12914,"width":32,"height":32},{"x":0,"y":0,"fileNum":159,"id":12915,"width":25,"height":45},{"x":25,"y":0,"fileNum":159,"id":12916,"width":25,"height":45},{"x":50,"y":0,"fileNum":159,"id":12917,"width":25,"height":45},{"x":75,"y":0,"fileNum":159,"id":12918,"width":25,"height":45},{"x":100,"y":0,"fileNum":159,"id":12919,"width":25,"height":45},{"x":125,"y":0,"fileNum":159,"id":12920,"width":25,"height":45},{"x":0,"y":45,"fileNum":159,"id":12921,"width":25,"height":45},{"x":25,"y":45,"fileNum":159,"id":12922,"width":25,"height":45},{"x":50,"y":45,"fileNum":159,"id":12923,"width":25,"height":45},{"x":75,"y":45,"fileNum":159,"id":12924,"width":25,"height":45},{"x":100,"y":45,"fileNum":159,"id":12925,"width":25,"height":45},{"x":125,"y":45,"fileNum":159,"id":12926,"width":25,"height":45},{"x":0,"y":90,"fileNum":159,"id":12927,"width":25,"height":45},{"x":25,"y":90,"fileNum":159,"id":12928,"width":25,"height":45},{"x":50,"y":90,"fileNum":159,"id":12929,"width":25,"height":45},{"x":75,"y":90,"fileNum":159,"id":12930,"width":25,"height":45},{"x":100,"y":90,"fileNum":159,"id":12931,"width":25,"height":45},{"x":0,"y":135,"fileNum":159,"id":12932,"width":25,"height":45},{"x":25,"y":135,"fileNum":159,"id":12933,"width":25,"height":45},{"x":50,"y":135,"fileNum":159,"id":12934,"width":25,"height":45},{"x":75,"y":135,"fileNum":159,"id":12935,"width":25,"height":45},{"x":100,"y":135,"fileNum":159,"id":12936,"width":25,"height":45},{"x":0,"y":0,"fileNum":4066,"id":12941,"width":57,"height":99},{"x":57,"y":0,"fileNum":4066,"id":12942,"width":57,"height":99},{"x":114,"y":0,"fileNum":4066,"id":12943,"width":57,"height":99},{"x":171,"y":0,"fileNum":4066,"id":12944,"width":57,"height":99},{"x":228,"y":0,"fileNum":4066,"id":12945,"width":57,"height":99},{"x":285,"y":0,"fileNum":4066,"id":12946,"width":57,"height":99},{"x":0,"y":99,"fileNum":4066,"id":12947,"width":57,"height":99},{"x":57,"y":99,"fileNum":4066,"id":12948,"width":57,"height":99},{"x":114,"y":99,"fileNum":4066,"id":12949,"width":57,"height":99},{"x":171,"y":99,"fileNum":4066,"id":12950,"width":57,"height":99},{"x":228,"y":99,"fileNum":4066,"id":12951,"width":57,"height":99},{"x":285,"y":99,"fileNum":4066,"id":12952,"width":57,"height":99},{"x":0,"y":198,"fileNum":4066,"id":12953,"width":57,"height":99},{"x":57,"y":198,"fileNum":4066,"id":12954,"width":57,"height":99},{"x":114,"y":198,"fileNum":4066,"id":12955,"width":57,"height":99},{"x":171,"y":198,"fileNum":4066,"id":12956,"width":57,"height":99},{"x":228,"y":198,"fileNum":4066,"id":12957,"width":57,"height":99},{"x":0,"y":297,"fileNum":4066,"id":12958,"width":57,"height":99},{"x":57,"y":297,"fileNum":4066,"id":12959,"width":57,"height":99},{"x":114,"y":297,"fileNum":4066,"id":12960,"width":57,"height":99},{"x":171,"y":297,"fileNum":4066,"id":12961,"width":57,"height":99},{"x":228,"y":297,"fileNum":4066,"id":12962,"width":57,"height":99},{"x":0,"y":0,"fileNum":22005,"id":12967,"width":32,"height":32},{"x":0,"y":0,"fileNum":22004,"id":12968,"width":25,"height":45},{"x":25,"y":0,"fileNum":22004,"id":12969,"width":25,"height":45},{"x":50,"y":0,"fileNum":22004,"id":12970,"width":25,"height":45},{"x":75,"y":0,"fileNum":22004,"id":12971,"width":25,"height":45},{"x":100,"y":0,"fileNum":22004,"id":12972,"width":25,"height":45},{"x":125,"y":0,"fileNum":22004,"id":12973,"width":25,"height":45},{"x":0,"y":45,"fileNum":22004,"id":12974,"width":25,"height":45},{"x":25,"y":45,"fileNum":22004,"id":12975,"width":25,"height":45},{"x":50,"y":45,"fileNum":22004,"id":12976,"width":25,"height":45},{"x":75,"y":45,"fileNum":22004,"id":12977,"width":25,"height":45},{"x":100,"y":45,"fileNum":22004,"id":12978,"width":25,"height":45},{"x":125,"y":45,"fileNum":22004,"id":12979,"width":25,"height":45},{"x":0,"y":90,"fileNum":22004,"id":12980,"width":25,"height":45},{"x":25,"y":90,"fileNum":22004,"id":12981,"width":25,"height":45},{"x":50,"y":90,"fileNum":22004,"id":12982,"width":25,"height":45},{"x":75,"y":90,"fileNum":22004,"id":12983,"width":25,"height":45},{"x":100,"y":90,"fileNum":22004,"id":12984,"width":25,"height":45},{"x":0,"y":135,"fileNum":22004,"id":12985,"width":25,"height":45},{"x":25,"y":135,"fileNum":22004,"id":12986,"width":25,"height":45},{"x":50,"y":135,"fileNum":22004,"id":12987,"width":25,"height":45},{"x":75,"y":135,"fileNum":22004,"id":12988,"width":25,"height":45},{"x":100,"y":135,"fileNum":22004,"id":12989,"width":25,"height":45},{"x":0,"y":0,"fileNum":2197,"id":12994,"width":17,"height":50},{"x":17,"y":0,"fileNum":2197,"id":12995,"width":17,"height":50},{"x":34,"y":0,"fileNum":2197,"id":12996,"width":17,"height":50},{"x":51,"y":0,"fileNum":2197,"id":12997,"width":17,"height":50},{"x":0,"y":0,"fileNum":2198,"id":12998,"width":17,"height":50},{"x":17,"y":0,"fileNum":2198,"id":12999,"width":17,"height":50},{"x":34,"y":0,"fileNum":2198,"id":13000,"width":17,"height":50},{"x":51,"y":0,"fileNum":2198,"id":13001,"width":17,"height":50},{"x":0,"y":0,"fileNum":2044,"id":13003,"width":17,"height":50},{"x":17,"y":0,"fileNum":2044,"id":13004,"width":17,"height":50},{"x":34,"y":0,"fileNum":2044,"id":13005,"width":17,"height":50},{"x":51,"y":0,"fileNum":2044,"id":13006,"width":17,"height":50},{"x":0,"y":0,"fileNum":2046,"id":13007,"width":17,"height":50},{"x":17,"y":0,"fileNum":2046,"id":13008,"width":17,"height":50},{"x":34,"y":0,"fileNum":2046,"id":13009,"width":17,"height":50},{"x":51,"y":0,"fileNum":2046,"id":13010,"width":17,"height":50},{"x":0,"y":0,"fileNum":2049,"id":13011,"width":17,"height":50},{"x":17,"y":0,"fileNum":2049,"id":13012,"width":17,"height":50},{"x":34,"y":0,"fileNum":2049,"id":13013,"width":17,"height":50},{"x":51,"y":0,"fileNum":2049,"id":13014,"width":17,"height":50},{"x":0,"y":0,"fileNum":2051,"id":13015,"width":17,"height":50},{"x":17,"y":0,"fileNum":2051,"id":13016,"width":17,"height":50},{"x":34,"y":0,"fileNum":2051,"id":13017,"width":17,"height":50},{"x":51,"y":0,"fileNum":2051,"id":13018,"width":17,"height":50},{"x":0,"y":0,"fileNum":2054,"id":13019,"width":17,"height":50},{"x":17,"y":0,"fileNum":2054,"id":13020,"width":17,"height":50},{"x":34,"y":0,"fileNum":2054,"id":13021,"width":17,"height":50},{"x":51,"y":0,"fileNum":2054,"id":13022,"width":17,"height":50},{"x":0,"y":0,"fileNum":2056,"id":13023,"width":17,"height":50},{"x":17,"y":0,"fileNum":2056,"id":13024,"width":17,"height":50},{"x":34,"y":0,"fileNum":2056,"id":13025,"width":17,"height":50},{"x":51,"y":0,"fileNum":2056,"id":13026,"width":17,"height":50},{"x":0,"y":0,"fileNum":2064,"id":13027,"width":17,"height":50},{"x":17,"y":0,"fileNum":2064,"id":13028,"width":17,"height":50},{"x":34,"y":0,"fileNum":2064,"id":13029,"width":17,"height":50},{"x":51,"y":0,"fileNum":2064,"id":13030,"width":17,"height":50},{"x":0,"y":0,"fileNum":2067,"id":13031,"width":17,"height":50},{"x":17,"y":0,"fileNum":2067,"id":13032,"width":17,"height":50},{"x":34,"y":0,"fileNum":2067,"id":13033,"width":17,"height":50},{"x":51,"y":0,"fileNum":2067,"id":13034,"width":17,"height":50},{"x":0,"y":0,"fileNum":2069,"id":13035,"width":17,"height":50},{"x":17,"y":0,"fileNum":2069,"id":13036,"width":17,"height":50},{"x":34,"y":0,"fileNum":2069,"id":13037,"width":17,"height":50},{"x":51,"y":0,"fileNum":2069,"id":13038,"width":17,"height":50},{"x":0,"y":0,"fileNum":2075,"id":13039,"width":17,"height":50},{"x":17,"y":0,"fileNum":2075,"id":13040,"width":17,"height":50},{"x":34,"y":0,"fileNum":2075,"id":13041,"width":17,"height":50},{"x":51,"y":0,"fileNum":2075,"id":13042,"width":17,"height":50},{"x":0,"y":0,"fileNum":2083,"id":13043,"width":17,"height":50},{"x":17,"y":0,"fileNum":2083,"id":13044,"width":17,"height":50},{"x":34,"y":0,"fileNum":2083,"id":13045,"width":17,"height":50},{"x":51,"y":0,"fileNum":2083,"id":13046,"width":17,"height":50},{"x":0,"y":0,"fileNum":2086,"id":13047,"width":17,"height":50},{"x":17,"y":0,"fileNum":2086,"id":13048,"width":17,"height":50},{"x":34,"y":0,"fileNum":2086,"id":13049,"width":17,"height":50},{"x":51,"y":0,"fileNum":2086,"id":13050,"width":17,"height":50},{"x":0,"y":0,"fileNum":2090,"id":13051,"width":17,"height":50},{"x":17,"y":0,"fileNum":2090,"id":13052,"width":17,"height":50},{"x":34,"y":0,"fileNum":2090,"id":13053,"width":17,"height":50},{"x":51,"y":0,"fileNum":2090,"id":13054,"width":17,"height":50},{"x":0,"y":0,"fileNum":2097,"id":13055,"width":17,"height":50},{"x":17,"y":0,"fileNum":2097,"id":13056,"width":17,"height":50},{"x":34,"y":0,"fileNum":2097,"id":13057,"width":17,"height":50},{"x":51,"y":0,"fileNum":2097,"id":13058,"width":17,"height":50},{"x":0,"y":0,"fileNum":2059,"id":13059,"width":17,"height":50},{"x":17,"y":0,"fileNum":2059,"id":13060,"width":17,"height":50},{"x":34,"y":0,"fileNum":2059,"id":13061,"width":17,"height":50},{"x":51,"y":0,"fileNum":2059,"id":13062,"width":17,"height":50},{"x":0,"y":0,"fileNum":2060,"id":13063,"width":17,"height":50},{"x":17,"y":0,"fileNum":2060,"id":13064,"width":17,"height":50},{"x":34,"y":0,"fileNum":2060,"id":13065,"width":17,"height":50},{"x":51,"y":0,"fileNum":2060,"id":13066,"width":17,"height":50},{"x":0,"y":0,"fileNum":2061,"id":13067,"width":17,"height":50},{"x":17,"y":0,"fileNum":2061,"id":13068,"width":17,"height":50},{"x":34,"y":0,"fileNum":2061,"id":13069,"width":17,"height":50},{"x":51,"y":0,"fileNum":2061,"id":13070,"width":17,"height":50},{"x":0,"y":0,"fileNum":2058,"id":13071,"width":17,"height":50},{"x":17,"y":0,"fileNum":2058,"id":13072,"width":17,"height":50},{"x":34,"y":0,"fileNum":2058,"id":13073,"width":17,"height":50},{"x":51,"y":0,"fileNum":2058,"id":13074,"width":17,"height":50},{"x":0,"y":0,"fileNum":2105,"id":13075,"width":17,"height":50},{"x":17,"y":0,"fileNum":2105,"id":13076,"width":17,"height":50},{"x":34,"y":0,"fileNum":2105,"id":13077,"width":17,"height":50},{"x":51,"y":0,"fileNum":2105,"id":13078,"width":17,"height":50},{"x":0,"y":0,"fileNum":2106,"id":13079,"width":17,"height":50},{"x":17,"y":0,"fileNum":2106,"id":13080,"width":17,"height":50},{"x":34,"y":0,"fileNum":2106,"id":13081,"width":17,"height":50},{"x":51,"y":0,"fileNum":2106,"id":13082,"width":17,"height":50},{"x":0,"y":0,"fileNum":2072,"id":13083,"width":17,"height":50},{"x":17,"y":0,"fileNum":2072,"id":13084,"width":17,"height":50},{"x":34,"y":0,"fileNum":2072,"id":13085,"width":17,"height":50},{"x":51,"y":0,"fileNum":2072,"id":13086,"width":17,"height":50},{"x":0,"y":0,"fileNum":2071,"id":13087,"width":17,"height":50},{"x":17,"y":0,"fileNum":2071,"id":13088,"width":17,"height":50},{"x":34,"y":0,"fileNum":2071,"id":13089,"width":17,"height":50},{"x":51,"y":0,"fileNum":2071,"id":13090,"width":17,"height":50},{"x":0,"y":0,"fileNum":2073,"id":13091,"width":17,"height":50},{"x":17,"y":0,"fileNum":2073,"id":13092,"width":17,"height":50},{"x":34,"y":0,"fileNum":2073,"id":13093,"width":17,"height":50},{"x":51,"y":0,"fileNum":2073,"id":13094,"width":17,"height":50},{"x":0,"y":0,"fileNum":2070,"id":13095,"width":17,"height":50},{"x":17,"y":0,"fileNum":2070,"id":13096,"width":17,"height":50},{"x":34,"y":0,"fileNum":2070,"id":13097,"width":17,"height":50},{"x":51,"y":0,"fileNum":2070,"id":13098,"width":17,"height":50},{"x":0,"y":0,"fileNum":2093,"id":13099,"width":17,"height":50},{"x":17,"y":0,"fileNum":2093,"id":13100,"width":17,"height":50},{"x":34,"y":0,"fileNum":2093,"id":13101,"width":17,"height":50},{"x":51,"y":0,"fileNum":2093,"id":13102,"width":17,"height":50},{"x":0,"y":0,"fileNum":2001,"id":13103,"width":17,"height":50},{"x":17,"y":0,"fileNum":2001,"id":13104,"width":17,"height":50},{"x":34,"y":0,"fileNum":2001,"id":13105,"width":17,"height":50},{"x":51,"y":0,"fileNum":2001,"id":13106,"width":17,"height":50},{"x":0,"y":0,"fileNum":2002,"id":13107,"width":17,"height":50},{"x":17,"y":0,"fileNum":2002,"id":13108,"width":17,"height":50},{"x":34,"y":0,"fileNum":2002,"id":13109,"width":17,"height":50},{"x":51,"y":0,"fileNum":2002,"id":13110,"width":17,"height":50},{"x":0,"y":0,"fileNum":2003,"id":13111,"width":17,"height":50},{"x":17,"y":0,"fileNum":2003,"id":13112,"width":17,"height":50},{"x":34,"y":0,"fileNum":2003,"id":13113,"width":17,"height":50},{"x":51,"y":0,"fileNum":2003,"id":13114,"width":17,"height":50},{"x":0,"y":0,"fileNum":2004,"id":13115,"width":17,"height":50},{"x":17,"y":0,"fileNum":2004,"id":13116,"width":17,"height":50},{"x":34,"y":0,"fileNum":2004,"id":13117,"width":17,"height":50},{"x":51,"y":0,"fileNum":2004,"id":13118,"width":17,"height":50},{"x":0,"y":0,"fileNum":2005,"id":13119,"width":17,"height":50},{"x":17,"y":0,"fileNum":2005,"id":13120,"width":17,"height":50},{"x":34,"y":0,"fileNum":2005,"id":13121,"width":17,"height":50},{"x":51,"y":0,"fileNum":2005,"id":13122,"width":17,"height":50},{"x":0,"y":0,"fileNum":2006,"id":13123,"width":17,"height":50},{"x":17,"y":0,"fileNum":2006,"id":13124,"width":17,"height":50},{"x":34,"y":0,"fileNum":2006,"id":13125,"width":17,"height":50},{"x":51,"y":0,"fileNum":2006,"id":13126,"width":17,"height":50},{"x":0,"y":0,"fileNum":2007,"id":13127,"width":17,"height":50},{"x":17,"y":0,"fileNum":2007,"id":13128,"width":17,"height":50},{"x":34,"y":0,"fileNum":2007,"id":13129,"width":17,"height":50},{"x":51,"y":0,"fileNum":2007,"id":13130,"width":17,"height":50},{"x":0,"y":0,"fileNum":2008,"id":13131,"width":17,"height":50},{"x":17,"y":0,"fileNum":2008,"id":13132,"width":17,"height":50},{"x":34,"y":0,"fileNum":2008,"id":13133,"width":17,"height":50},{"x":51,"y":0,"fileNum":2008,"id":13134,"width":17,"height":50},{"x":0,"y":0,"fileNum":2009,"id":13135,"width":17,"height":50},{"x":17,"y":0,"fileNum":2009,"id":13136,"width":17,"height":50},{"x":34,"y":0,"fileNum":2009,"id":13137,"width":17,"height":50},{"x":51,"y":0,"fileNum":2009,"id":13138,"width":17,"height":50},{"x":0,"y":0,"fileNum":2010,"id":13139,"width":17,"height":50},{"x":17,"y":0,"fileNum":2010,"id":13140,"width":17,"height":50},{"x":34,"y":0,"fileNum":2010,"id":13141,"width":17,"height":50},{"x":51,"y":0,"fileNum":2010,"id":13142,"width":17,"height":50},{"x":0,"y":0,"fileNum":2011,"id":13143,"width":17,"height":50},{"x":17,"y":0,"fileNum":2011,"id":13144,"width":17,"height":50},{"x":34,"y":0,"fileNum":2011,"id":13145,"width":17,"height":50},{"x":51,"y":0,"fileNum":2011,"id":13146,"width":17,"height":50},{"x":0,"y":0,"fileNum":2012,"id":13147,"width":17,"height":50},{"x":17,"y":0,"fileNum":2012,"id":13148,"width":17,"height":50},{"x":34,"y":0,"fileNum":2012,"id":13149,"width":17,"height":50},{"x":51,"y":0,"fileNum":2012,"id":13150,"width":17,"height":50},{"x":0,"y":0,"fileNum":2013,"id":13151,"width":17,"height":50},{"x":17,"y":0,"fileNum":2013,"id":13152,"width":17,"height":50},{"x":34,"y":0,"fileNum":2013,"id":13153,"width":17,"height":50},{"x":51,"y":0,"fileNum":2013,"id":13154,"width":17,"height":50},{"x":0,"y":0,"fileNum":2014,"id":13155,"width":17,"height":50},{"x":17,"y":0,"fileNum":2014,"id":13156,"width":17,"height":50},{"x":34,"y":0,"fileNum":2014,"id":13157,"width":17,"height":50},{"x":51,"y":0,"fileNum":2014,"id":13158,"width":17,"height":50},{"x":0,"y":0,"fileNum":2015,"id":13159,"width":17,"height":50},{"x":17,"y":0,"fileNum":2015,"id":13160,"width":17,"height":50},{"x":34,"y":0,"fileNum":2015,"id":13161,"width":17,"height":50},{"x":51,"y":0,"fileNum":2015,"id":13162,"width":17,"height":50},{"x":0,"y":0,"fileNum":2016,"id":13163,"width":17,"height":50},{"x":17,"y":0,"fileNum":2016,"id":13164,"width":17,"height":50},{"x":34,"y":0,"fileNum":2016,"id":13165,"width":17,"height":50},{"x":51,"y":0,"fileNum":2016,"id":13166,"width":17,"height":50},{"x":0,"y":0,"fileNum":2017,"id":13167,"width":17,"height":50},{"x":17,"y":0,"fileNum":2017,"id":13168,"width":17,"height":50},{"x":34,"y":0,"fileNum":2017,"id":13169,"width":17,"height":50},{"x":51,"y":0,"fileNum":2017,"id":13170,"width":17,"height":50},{"x":0,"y":0,"fileNum":2018,"id":13171,"width":17,"height":50},{"x":17,"y":0,"fileNum":2018,"id":13172,"width":17,"height":50},{"x":34,"y":0,"fileNum":2018,"id":13173,"width":17,"height":50},{"x":51,"y":0,"fileNum":2018,"id":13174,"width":17,"height":50},{"x":0,"y":0,"fileNum":2019,"id":13175,"width":17,"height":50},{"x":17,"y":0,"fileNum":2019,"id":13176,"width":17,"height":50},{"x":34,"y":0,"fileNum":2019,"id":13177,"width":17,"height":50},{"x":51,"y":0,"fileNum":2019,"id":13178,"width":17,"height":50},{"x":0,"y":0,"fileNum":2020,"id":13179,"width":17,"height":50},{"x":17,"y":0,"fileNum":2020,"id":13180,"width":17,"height":50},{"x":34,"y":0,"fileNum":2020,"id":13181,"width":17,"height":50},{"x":51,"y":0,"fileNum":2020,"id":13182,"width":17,"height":50},{"x":0,"y":0,"fileNum":2021,"id":13183,"width":17,"height":50},{"x":17,"y":0,"fileNum":2021,"id":13184,"width":17,"height":50},{"x":34,"y":0,"fileNum":2021,"id":13185,"width":17,"height":50},{"x":51,"y":0,"fileNum":2021,"id":13186,"width":17,"height":50},{"x":0,"y":0,"fileNum":2022,"id":13187,"width":17,"height":50},{"x":17,"y":0,"fileNum":2022,"id":13188,"width":17,"height":50},{"x":34,"y":0,"fileNum":2022,"id":13189,"width":17,"height":50},{"x":51,"y":0,"fileNum":2022,"id":13190,"width":17,"height":50},{"x":0,"y":0,"fileNum":2023,"id":13191,"width":17,"height":50},{"x":17,"y":0,"fileNum":2023,"id":13192,"width":17,"height":50},{"x":34,"y":0,"fileNum":2023,"id":13193,"width":17,"height":50},{"x":51,"y":0,"fileNum":2023,"id":13194,"width":17,"height":50},{"x":0,"y":0,"fileNum":2024,"id":13195,"width":17,"height":50},{"x":17,"y":0,"fileNum":2024,"id":13196,"width":17,"height":50},{"x":34,"y":0,"fileNum":2024,"id":13197,"width":17,"height":50},{"x":51,"y":0,"fileNum":2024,"id":13198,"width":17,"height":50},{"x":0,"y":0,"fileNum":2025,"id":13199,"width":17,"height":50},{"x":17,"y":0,"fileNum":2025,"id":13200,"width":17,"height":50},{"x":34,"y":0,"fileNum":2025,"id":13201,"width":17,"height":50},{"x":51,"y":0,"fileNum":2025,"id":13202,"width":17,"height":50},{"x":0,"y":0,"fileNum":2026,"id":13203,"width":17,"height":50},{"x":17,"y":0,"fileNum":2026,"id":13204,"width":17,"height":50},{"x":34,"y":0,"fileNum":2026,"id":13205,"width":17,"height":50},{"x":51,"y":0,"fileNum":2026,"id":13206,"width":17,"height":50},{"x":0,"y":0,"fileNum":2027,"id":13207,"width":17,"height":50},{"x":17,"y":0,"fileNum":2027,"id":13208,"width":17,"height":50},{"x":34,"y":0,"fileNum":2027,"id":13209,"width":17,"height":50},{"x":51,"y":0,"fileNum":2027,"id":13210,"width":17,"height":50},{"x":0,"y":0,"fileNum":2028,"id":13211,"width":17,"height":50},{"x":17,"y":0,"fileNum":2028,"id":13212,"width":17,"height":50},{"x":34,"y":0,"fileNum":2028,"id":13213,"width":17,"height":50},{"x":51,"y":0,"fileNum":2028,"id":13214,"width":17,"height":50},{"x":0,"y":0,"fileNum":2029,"id":13215,"width":17,"height":50},{"x":17,"y":0,"fileNum":2029,"id":13216,"width":17,"height":50},{"x":34,"y":0,"fileNum":2029,"id":13217,"width":17,"height":50},{"x":51,"y":0,"fileNum":2029,"id":13218,"width":17,"height":50},{"x":0,"y":0,"fileNum":2030,"id":13219,"width":17,"height":50},{"x":17,"y":0,"fileNum":2030,"id":13220,"width":17,"height":50},{"x":34,"y":0,"fileNum":2030,"id":13221,"width":17,"height":50},{"x":51,"y":0,"fileNum":2030,"id":13222,"width":17,"height":50},{"x":0,"y":0,"fileNum":2031,"id":13223,"width":17,"height":50},{"x":17,"y":0,"fileNum":2031,"id":13224,"width":17,"height":50},{"x":34,"y":0,"fileNum":2031,"id":13225,"width":17,"height":50},{"x":51,"y":0,"fileNum":2031,"id":13226,"width":17,"height":50},{"x":0,"y":0,"fileNum":2032,"id":13227,"width":17,"height":50},{"x":17,"y":0,"fileNum":2032,"id":13228,"width":17,"height":50},{"x":34,"y":0,"fileNum":2032,"id":13229,"width":17,"height":50},{"x":51,"y":0,"fileNum":2032,"id":13230,"width":17,"height":50},{"x":0,"y":0,"fileNum":2033,"id":13231,"width":17,"height":50},{"x":17,"y":0,"fileNum":2033,"id":13232,"width":17,"height":50},{"x":34,"y":0,"fileNum":2033,"id":13233,"width":17,"height":50},{"x":51,"y":0,"fileNum":2033,"id":13234,"width":17,"height":50},{"x":0,"y":0,"fileNum":2034,"id":13235,"width":17,"height":50},{"x":17,"y":0,"fileNum":2034,"id":13236,"width":17,"height":50},{"x":34,"y":0,"fileNum":2034,"id":13237,"width":17,"height":50},{"x":51,"y":0,"fileNum":2034,"id":13238,"width":17,"height":50},{"x":0,"y":0,"fileNum":2035,"id":13239,"width":17,"height":50},{"x":17,"y":0,"fileNum":2035,"id":13240,"width":17,"height":50},{"x":34,"y":0,"fileNum":2035,"id":13241,"width":17,"height":50},{"x":51,"y":0,"fileNum":2035,"id":13242,"width":17,"height":50},{"x":0,"y":0,"fileNum":2036,"id":13243,"width":17,"height":50},{"x":17,"y":0,"fileNum":2036,"id":13244,"width":17,"height":50},{"x":34,"y":0,"fileNum":2036,"id":13245,"width":17,"height":50},{"x":51,"y":0,"fileNum":2036,"id":13246,"width":17,"height":50},{"x":0,"y":0,"fileNum":2037,"id":13247,"width":17,"height":50},{"x":17,"y":0,"fileNum":2037,"id":13248,"width":17,"height":50},{"x":34,"y":0,"fileNum":2037,"id":13249,"width":17,"height":50},{"x":51,"y":0,"fileNum":2037,"id":13250,"width":17,"height":50},{"x":0,"y":0,"fileNum":2038,"id":13251,"width":17,"height":50},{"x":17,"y":0,"fileNum":2038,"id":13252,"width":17,"height":50},{"x":34,"y":0,"fileNum":2038,"id":13253,"width":17,"height":50},{"x":51,"y":0,"fileNum":2038,"id":13254,"width":17,"height":50},{"x":0,"y":0,"fileNum":20007,"id":13255,"width":32,"height":32},{"x":0,"y":0,"fileNum":20008,"id":13256,"width":25,"height":45},{"x":25,"y":0,"fileNum":20008,"id":13257,"width":25,"height":45},{"x":50,"y":0,"fileNum":20008,"id":13258,"width":25,"height":45},{"x":75,"y":0,"fileNum":20008,"id":13259,"width":25,"height":45},{"x":100,"y":0,"fileNum":20008,"id":13260,"width":25,"height":45},{"x":125,"y":0,"fileNum":20008,"id":13261,"width":25,"height":45},{"x":0,"y":45,"fileNum":20008,"id":13262,"width":25,"height":45},{"x":25,"y":45,"fileNum":20008,"id":13263,"width":25,"height":45},{"x":50,"y":45,"fileNum":20008,"id":13264,"width":25,"height":45},{"x":75,"y":45,"fileNum":20008,"id":13265,"width":25,"height":45},{"x":100,"y":45,"fileNum":20008,"id":13266,"width":25,"height":45},{"x":125,"y":45,"fileNum":20008,"id":13267,"width":25,"height":45},{"x":0,"y":90,"fileNum":20008,"id":13268,"width":25,"height":45},{"x":25,"y":90,"fileNum":20008,"id":13269,"width":25,"height":45},{"x":50,"y":90,"fileNum":20008,"id":13270,"width":25,"height":45},{"x":75,"y":90,"fileNum":20008,"id":13271,"width":25,"height":45},{"x":100,"y":90,"fileNum":20008,"id":13272,"width":25,"height":45},{"x":0,"y":135,"fileNum":20008,"id":13273,"width":25,"height":45},{"x":25,"y":135,"fileNum":20008,"id":13274,"width":25,"height":45},{"x":50,"y":135,"fileNum":20008,"id":13275,"width":25,"height":45},{"x":75,"y":135,"fileNum":20008,"id":13276,"width":25,"height":45},{"x":100,"y":135,"fileNum":20008,"id":13277,"width":25,"height":45},{"x":0,"y":0,"fileNum":102,"id":13282,"width":32,"height":32},{"x":0,"y":0,"fileNum":103,"id":13283,"width":25,"height":45},{"x":25,"y":0,"fileNum":103,"id":13284,"width":25,"height":45},{"x":50,"y":0,"fileNum":103,"id":13285,"width":25,"height":45},{"x":75,"y":0,"fileNum":103,"id":13286,"width":25,"height":45},{"x":100,"y":0,"fileNum":103,"id":13287,"width":25,"height":45},{"x":125,"y":0,"fileNum":103,"id":13288,"width":25,"height":45},{"x":0,"y":45,"fileNum":103,"id":13289,"width":25,"height":45},{"x":25,"y":45,"fileNum":103,"id":13290,"width":25,"height":45},{"x":50,"y":45,"fileNum":103,"id":13291,"width":25,"height":45},{"x":75,"y":45,"fileNum":103,"id":13292,"width":25,"height":45},{"x":100,"y":45,"fileNum":103,"id":13293,"width":25,"height":45},{"x":125,"y":45,"fileNum":103,"id":13294,"width":25,"height":45},{"x":0,"y":90,"fileNum":103,"id":13295,"width":25,"height":45},{"x":25,"y":90,"fileNum":103,"id":13296,"width":25,"height":45},{"x":50,"y":90,"fileNum":103,"id":13297,"width":25,"height":45},{"x":75,"y":90,"fileNum":103,"id":13298,"width":25,"height":45},{"x":100,"y":90,"fileNum":103,"id":13299,"width":25,"height":45},{"x":0,"y":135,"fileNum":103,"id":13300,"width":25,"height":45},{"x":25,"y":135,"fileNum":103,"id":13301,"width":25,"height":45},{"x":50,"y":135,"fileNum":103,"id":13302,"width":25,"height":45},{"x":75,"y":135,"fileNum":103,"id":13303,"width":25,"height":45},{"x":100,"y":135,"fileNum":103,"id":13304,"width":25,"height":45},{"x":0,"y":0,"fileNum":16012,"id":13309,"width":25,"height":45},{"x":25,"y":0,"fileNum":16012,"id":13310,"width":25,"height":45},{"x":50,"y":0,"fileNum":16012,"id":13311,"width":25,"height":45},{"x":75,"y":0,"fileNum":16012,"id":13312,"width":25,"height":45},{"x":100,"y":0,"fileNum":16012,"id":13313,"width":25,"height":45},{"x":125,"y":0,"fileNum":16012,"id":13314,"width":25,"height":45},{"x":0,"y":45,"fileNum":16012,"id":13315,"width":25,"height":45},{"x":25,"y":45,"fileNum":16012,"id":13316,"width":25,"height":45},{"x":50,"y":45,"fileNum":16012,"id":13317,"width":25,"height":45},{"x":75,"y":45,"fileNum":16012,"id":13318,"width":25,"height":45},{"x":100,"y":45,"fileNum":16012,"id":13319,"width":25,"height":45},{"x":125,"y":45,"fileNum":16012,"id":13320,"width":25,"height":45},{"x":0,"y":90,"fileNum":16012,"id":13321,"width":25,"height":45},{"x":25,"y":90,"fileNum":16012,"id":13322,"width":25,"height":45},{"x":50,"y":90,"fileNum":16012,"id":13323,"width":25,"height":45},{"x":75,"y":90,"fileNum":16012,"id":13324,"width":25,"height":45},{"x":100,"y":90,"fileNum":16012,"id":13325,"width":25,"height":45},{"x":0,"y":135,"fileNum":16012,"id":13326,"width":25,"height":45},{"x":25,"y":135,"fileNum":16012,"id":13327,"width":25,"height":45},{"x":50,"y":135,"fileNum":16012,"id":13328,"width":25,"height":45},{"x":75,"y":135,"fileNum":16012,"id":13329,"width":25,"height":45},{"x":100,"y":135,"fileNum":16012,"id":13330,"width":25,"height":45},{"x":0,"y":0,"fileNum":16013,"id":13335,"width":25,"height":45},{"x":25,"y":0,"fileNum":16013,"id":13336,"width":25,"height":45},{"x":50,"y":0,"fileNum":16013,"id":13337,"width":25,"height":45},{"x":75,"y":0,"fileNum":16013,"id":13338,"width":25,"height":45},{"x":100,"y":0,"fileNum":16013,"id":13339,"width":25,"height":45},{"x":125,"y":0,"fileNum":16013,"id":13340,"width":25,"height":45},{"x":0,"y":45,"fileNum":16013,"id":13341,"width":25,"height":45},{"x":25,"y":45,"fileNum":16013,"id":13342,"width":25,"height":45},{"x":50,"y":45,"fileNum":16013,"id":13343,"width":25,"height":45},{"x":75,"y":45,"fileNum":16013,"id":13344,"width":25,"height":45},{"x":100,"y":45,"fileNum":16013,"id":13345,"width":25,"height":45},{"x":125,"y":45,"fileNum":16013,"id":13346,"width":25,"height":45},{"x":0,"y":90,"fileNum":16013,"id":13347,"width":25,"height":45},{"x":25,"y":90,"fileNum":16013,"id":13348,"width":25,"height":45},{"x":50,"y":90,"fileNum":16013,"id":13349,"width":25,"height":45},{"x":75,"y":90,"fileNum":16013,"id":13350,"width":25,"height":45},{"x":100,"y":90,"fileNum":16013,"id":13351,"width":25,"height":45},{"x":0,"y":135,"fileNum":16013,"id":13352,"width":25,"height":45},{"x":25,"y":135,"fileNum":16013,"id":13353,"width":25,"height":45},{"x":50,"y":135,"fileNum":16013,"id":13354,"width":25,"height":45},{"x":75,"y":135,"fileNum":16013,"id":13355,"width":25,"height":45},{"x":100,"y":135,"fileNum":16013,"id":13356,"width":25,"height":45},{"x":0,"y":0,"fileNum":16014,"id":13361,"width":25,"height":45},{"x":25,"y":0,"fileNum":16014,"id":13362,"width":25,"height":45},{"x":50,"y":0,"fileNum":16014,"id":13363,"width":25,"height":45},{"x":75,"y":0,"fileNum":16014,"id":13364,"width":25,"height":45},{"x":100,"y":0,"fileNum":16014,"id":13365,"width":25,"height":45},{"x":125,"y":0,"fileNum":16014,"id":13366,"width":25,"height":45},{"x":0,"y":45,"fileNum":16014,"id":13367,"width":25,"height":45},{"x":25,"y":45,"fileNum":16014,"id":13368,"width":25,"height":45},{"x":50,"y":45,"fileNum":16014,"id":13369,"width":25,"height":45},{"x":75,"y":45,"fileNum":16014,"id":13370,"width":25,"height":45},{"x":100,"y":45,"fileNum":16014,"id":13371,"width":25,"height":45},{"x":125,"y":45,"fileNum":16014,"id":13372,"width":25,"height":45},{"x":0,"y":90,"fileNum":16014,"id":13373,"width":25,"height":45},{"x":25,"y":90,"fileNum":16014,"id":13374,"width":25,"height":45},{"x":50,"y":90,"fileNum":16014,"id":13375,"width":25,"height":45},{"x":75,"y":90,"fileNum":16014,"id":13376,"width":25,"height":45},{"x":100,"y":90,"fileNum":16014,"id":13377,"width":25,"height":45},{"x":0,"y":135,"fileNum":16014,"id":13378,"width":25,"height":45},{"x":25,"y":135,"fileNum":16014,"id":13379,"width":25,"height":45},{"x":50,"y":135,"fileNum":16014,"id":13380,"width":25,"height":45},{"x":75,"y":135,"fileNum":16014,"id":13381,"width":25,"height":45},{"x":100,"y":135,"fileNum":16014,"id":13382,"width":25,"height":45},{"x":0,"y":0,"fileNum":12082,"id":13387,"width":32,"height":32},{"x":32,"y":0,"fileNum":12082,"id":13388,"width":32,"height":32},{"x":0,"y":32,"fileNum":12082,"id":13389,"width":32,"height":32},{"x":32,"y":32,"fileNum":12082,"id":13390,"width":32,"height":32},{"x":64,"y":0,"fileNum":12082,"id":13391,"width":32,"height":32},{"x":96,"y":0,"fileNum":12082,"id":13392,"width":32,"height":32},{"x":64,"y":32,"fileNum":12082,"id":13393,"width":32,"height":32},{"x":96,"y":32,"fileNum":12082,"id":13394,"width":32,"height":32},{"x":0,"y":64,"fileNum":12082,"id":13395,"width":32,"height":32},{"x":32,"y":64,"fileNum":12082,"id":13396,"width":32,"height":32},{"x":0,"y":96,"fileNum":12082,"id":13397,"width":32,"height":32},{"x":32,"y":96,"fileNum":12082,"id":13398,"width":32,"height":32},{"x":64,"y":64,"fileNum":12082,"id":13399,"width":32,"height":32},{"x":96,"y":64,"fileNum":12082,"id":13400,"width":32,"height":32},{"x":64,"y":96,"fileNum":12082,"id":13401,"width":32,"height":32},{"x":96,"y":96,"fileNum":12082,"id":13402,"width":32,"height":32},{"x":0,"y":128,"fileNum":12082,"id":13403,"width":32,"height":32},{"x":32,"y":128,"fileNum":12082,"id":13404,"width":32,"height":32},{"x":0,"y":160,"fileNum":12082,"id":13405,"width":32,"height":32},{"x":32,"y":160,"fileNum":12082,"id":13406,"width":32,"height":32},{"x":64,"y":128,"fileNum":12082,"id":13407,"width":32,"height":32},{"x":96,"y":128,"fileNum":12082,"id":13408,"width":32,"height":32},{"x":64,"y":160,"fileNum":12082,"id":13409,"width":32,"height":32},{"x":96,"y":160,"fileNum":12082,"id":13410,"width":32,"height":32},{"x":192,"y":128,"fileNum":12082,"id":13411,"width":32,"height":32},{"x":224,"y":128,"fileNum":12082,"id":13412,"width":32,"height":32},{"x":192,"y":160,"fileNum":12082,"id":13413,"width":32,"height":32},{"x":224,"y":160,"fileNum":12082,"id":13414,"width":32,"height":32},{"x":0,"y":192,"fileNum":12082,"id":13415,"width":32,"height":32},{"x":32,"y":192,"fileNum":12082,"id":13416,"width":32,"height":32},{"x":0,"y":224,"fileNum":12082,"id":13417,"width":32,"height":32},{"x":32,"y":224,"fileNum":12082,"id":13418,"width":32,"height":32},{"x":64,"y":192,"fileNum":12082,"id":13419,"width":32,"height":32},{"x":96,"y":192,"fileNum":12082,"id":13420,"width":32,"height":32},{"x":64,"y":224,"fileNum":12082,"id":13421,"width":32,"height":32},{"x":96,"y":224,"fileNum":12082,"id":13422,"width":32,"height":32},{"x":128,"y":192,"fileNum":12082,"id":13423,"width":32,"height":32},{"x":160,"y":192,"fileNum":12082,"id":13424,"width":32,"height":32},{"x":128,"y":224,"fileNum":12082,"id":13425,"width":32,"height":32},{"x":160,"y":224,"fileNum":12082,"id":13426,"width":32,"height":32},{"x":128,"y":128,"fileNum":12082,"id":13427,"width":32,"height":32},{"x":160,"y":128,"fileNum":12082,"id":13428,"width":32,"height":32},{"x":128,"y":160,"fileNum":12082,"id":13429,"width":32,"height":32},{"x":160,"y":160,"fileNum":12082,"id":13430,"width":32,"height":32},{"x":192,"y":192,"fileNum":12082,"id":13431,"width":32,"height":32},{"x":224,"y":192,"fileNum":12082,"id":13432,"width":32,"height":32},{"x":192,"y":224,"fileNum":12082,"id":13433,"width":32,"height":32},{"x":224,"y":224,"fileNum":12082,"id":13434,"width":32,"height":32},{"x":128,"y":0,"fileNum":12082,"id":13435,"width":32,"height":32},{"x":160,"y":0,"fileNum":12082,"id":13436,"width":32,"height":32},{"x":128,"y":32,"fileNum":12082,"id":13437,"width":32,"height":32},{"x":160,"y":32,"fileNum":12082,"id":13438,"width":32,"height":32},{"x":192,"y":0,"fileNum":12082,"id":13439,"width":32,"height":32},{"x":224,"y":0,"fileNum":12082,"id":13440,"width":32,"height":32},{"x":192,"y":32,"fileNum":12082,"id":13441,"width":32,"height":32},{"x":224,"y":32,"fileNum":12082,"id":13442,"width":32,"height":32},{"x":128,"y":64,"fileNum":12082,"id":13443,"width":32,"height":32},{"x":160,"y":64,"fileNum":12082,"id":13444,"width":32,"height":32},{"x":128,"y":96,"fileNum":12082,"id":13445,"width":32,"height":32},{"x":160,"y":96,"fileNum":12082,"id":13446,"width":32,"height":32},{"x":192,"y":64,"fileNum":12082,"id":13447,"width":32,"height":32},{"x":224,"y":64,"fileNum":12082,"id":13448,"width":32,"height":32},{"x":192,"y":96,"fileNum":12082,"id":13449,"width":32,"height":32},{"x":224,"y":96,"fileNum":12082,"id":13450,"width":32,"height":32},{"x":0,"y":256,"fileNum":12082,"id":13451,"width":32,"height":32},{"x":32,"y":256,"fileNum":12082,"id":13452,"width":32,"height":32},{"x":0,"y":288,"fileNum":12082,"id":13453,"width":32,"height":32},{"x":32,"y":288,"fileNum":12082,"id":13454,"width":32,"height":32},{"x":64,"y":256,"fileNum":12082,"id":13455,"width":32,"height":32},{"x":96,"y":256,"fileNum":12082,"id":13456,"width":32,"height":32},{"x":64,"y":288,"fileNum":12082,"id":13457,"width":32,"height":32},{"x":96,"y":288,"fileNum":12082,"id":13458,"width":32,"height":32},{"x":128,"y":256,"fileNum":12082,"id":13459,"width":32,"height":32},{"x":160,"y":256,"fileNum":12082,"id":13460,"width":32,"height":32},{"x":128,"y":288,"fileNum":12082,"id":13461,"width":32,"height":32},{"x":160,"y":288,"fileNum":12082,"id":13462,"width":32,"height":32},{"x":192,"y":256,"fileNum":12082,"id":13463,"width":32,"height":32},{"x":224,"y":256,"fileNum":12082,"id":13464,"width":32,"height":32},{"x":192,"y":288,"fileNum":12082,"id":13465,"width":32,"height":32},{"x":224,"y":288,"fileNum":12082,"id":13466,"width":32,"height":32},{"x":0,"y":320,"fileNum":12082,"id":13467,"width":32,"height":32},{"x":32,"y":320,"fileNum":12082,"id":13468,"width":32,"height":32},{"x":0,"y":352,"fileNum":12082,"id":13469,"width":32,"height":32},{"x":32,"y":352,"fileNum":12082,"id":13470,"width":32,"height":32},{"x":64,"y":320,"fileNum":12082,"id":13471,"width":32,"height":32},{"x":96,"y":320,"fileNum":12082,"id":13472,"width":32,"height":32},{"x":64,"y":352,"fileNum":12082,"id":13473,"width":32,"height":32},{"x":96,"y":352,"fileNum":12082,"id":13474,"width":32,"height":32},{"x":128,"y":320,"fileNum":12082,"id":13475,"width":32,"height":32},{"x":160,"y":320,"fileNum":12082,"id":13476,"width":32,"height":32},{"x":128,"y":352,"fileNum":12082,"id":13477,"width":32,"height":32},{"x":160,"y":352,"fileNum":12082,"id":13478,"width":32,"height":32},{"x":192,"y":320,"fileNum":12082,"id":13479,"width":32,"height":32},{"x":224,"y":320,"fileNum":12082,"id":13480,"width":32,"height":32},{"x":192,"y":352,"fileNum":12082,"id":13481,"width":32,"height":32},{"x":224,"y":352,"fileNum":12082,"id":13482,"width":32,"height":32},{"x":0,"y":0,"fileNum":12037,"id":13483,"width":32,"height":32},{"x":32,"y":0,"fileNum":12037,"id":13484,"width":32,"height":32},{"x":64,"y":0,"fileNum":12037,"id":13485,"width":32,"height":32},{"x":96,"y":0,"fileNum":12037,"id":13486,"width":32,"height":32},{"x":0,"y":32,"fileNum":12037,"id":13487,"width":32,"height":32},{"x":32,"y":32,"fileNum":12037,"id":13488,"width":32,"height":32},{"x":64,"y":32,"fileNum":12037,"id":13489,"width":32,"height":32},{"x":96,"y":32,"fileNum":12037,"id":13490,"width":32,"height":32},{"x":0,"y":64,"fileNum":12037,"id":13491,"width":32,"height":32},{"x":32,"y":64,"fileNum":12037,"id":13492,"width":32,"height":32},{"x":64,"y":64,"fileNum":12037,"id":13493,"width":32,"height":32},{"x":96,"y":64,"fileNum":12037,"id":13494,"width":32,"height":32},{"x":0,"y":96,"fileNum":12037,"id":13495,"width":32,"height":32},{"x":32,"y":96,"fileNum":12037,"id":13496,"width":32,"height":32},{"x":64,"y":96,"fileNum":12037,"id":13497,"width":32,"height":32},{"x":96,"y":96,"fileNum":12037,"id":13498,"width":32,"height":32},{"x":128,"y":0,"fileNum":12037,"id":13499,"width":32,"height":32},{"x":160,"y":0,"fileNum":12037,"id":13500,"width":32,"height":32},{"x":192,"y":0,"fileNum":12037,"id":13501,"width":32,"height":32},{"x":224,"y":0,"fileNum":12037,"id":13502,"width":32,"height":32},{"x":128,"y":32,"fileNum":12037,"id":13503,"width":32,"height":32},{"x":160,"y":32,"fileNum":12037,"id":13504,"width":32,"height":32},{"x":192,"y":32,"fileNum":12037,"id":13505,"width":32,"height":32},{"x":224,"y":32,"fileNum":12037,"id":13506,"width":32,"height":32},{"x":128,"y":64,"fileNum":12037,"id":13507,"width":32,"height":32},{"x":160,"y":64,"fileNum":12037,"id":13508,"width":32,"height":32},{"x":192,"y":64,"fileNum":12037,"id":13509,"width":32,"height":32},{"x":224,"y":64,"fileNum":12037,"id":13510,"width":32,"height":32},{"x":128,"y":96,"fileNum":12037,"id":13511,"width":32,"height":32},{"x":160,"y":96,"fileNum":12037,"id":13512,"width":32,"height":32},{"x":192,"y":96,"fileNum":12037,"id":13513,"width":32,"height":32},{"x":224,"y":96,"fileNum":12037,"id":13514,"width":32,"height":32},{"x":256,"y":0,"fileNum":12037,"id":13515,"width":32,"height":32},{"x":288,"y":0,"fileNum":12037,"id":13516,"width":32,"height":32},{"x":320,"y":0,"fileNum":12037,"id":13517,"width":32,"height":32},{"x":352,"y":0,"fileNum":12037,"id":13518,"width":32,"height":32},{"x":256,"y":32,"fileNum":12037,"id":13519,"width":32,"height":32},{"x":288,"y":32,"fileNum":12037,"id":13520,"width":32,"height":32},{"x":320,"y":32,"fileNum":12037,"id":13521,"width":32,"height":32},{"x":352,"y":32,"fileNum":12037,"id":13522,"width":32,"height":32},{"x":256,"y":64,"fileNum":12037,"id":13523,"width":32,"height":32},{"x":288,"y":64,"fileNum":12037,"id":13524,"width":32,"height":32},{"x":320,"y":64,"fileNum":12037,"id":13525,"width":32,"height":32},{"x":352,"y":64,"fileNum":12037,"id":13526,"width":32,"height":32},{"x":256,"y":96,"fileNum":12037,"id":13527,"width":32,"height":32},{"x":288,"y":96,"fileNum":12037,"id":13528,"width":32,"height":32},{"x":320,"y":96,"fileNum":12037,"id":13529,"width":32,"height":32},{"x":352,"y":96,"fileNum":12037,"id":13530,"width":32,"height":32},{"x":0,"y":128,"fileNum":12037,"id":13531,"width":32,"height":32},{"x":32,"y":128,"fileNum":12037,"id":13532,"width":32,"height":32},{"x":64,"y":128,"fileNum":12037,"id":13533,"width":32,"height":32},{"x":96,"y":128,"fileNum":12037,"id":13534,"width":32,"height":32},{"x":0,"y":160,"fileNum":12037,"id":13535,"width":32,"height":32},{"x":32,"y":160,"fileNum":12037,"id":13536,"width":32,"height":32},{"x":64,"y":160,"fileNum":12037,"id":13537,"width":32,"height":32},{"x":96,"y":160,"fileNum":12037,"id":13538,"width":32,"height":32},{"x":0,"y":192,"fileNum":12037,"id":13539,"width":32,"height":32},{"x":32,"y":192,"fileNum":12037,"id":13540,"width":32,"height":32},{"x":64,"y":192,"fileNum":12037,"id":13541,"width":32,"height":32},{"x":96,"y":192,"fileNum":12037,"id":13542,"width":32,"height":32},{"x":0,"y":224,"fileNum":12037,"id":13543,"width":32,"height":32},{"x":32,"y":224,"fileNum":12037,"id":13544,"width":32,"height":32},{"x":64,"y":224,"fileNum":12037,"id":13545,"width":32,"height":32},{"x":96,"y":224,"fileNum":12037,"id":13546,"width":32,"height":32},{"x":0,"y":0,"fileNum":161,"id":13563,"width":25,"height":45},{"x":25,"y":0,"fileNum":161,"id":13564,"width":25,"height":45},{"x":50,"y":0,"fileNum":161,"id":13565,"width":25,"height":45},{"x":75,"y":0,"fileNum":161,"id":13566,"width":25,"height":45},{"x":100,"y":0,"fileNum":161,"id":13567,"width":25,"height":45},{"x":125,"y":0,"fileNum":161,"id":13568,"width":25,"height":45},{"x":0,"y":45,"fileNum":161,"id":13569,"width":25,"height":45},{"x":25,"y":45,"fileNum":161,"id":13570,"width":25,"height":45},{"x":50,"y":45,"fileNum":161,"id":13571,"width":25,"height":45},{"x":75,"y":45,"fileNum":161,"id":13572,"width":25,"height":45},{"x":100,"y":45,"fileNum":161,"id":13573,"width":25,"height":45},{"x":125,"y":45,"fileNum":161,"id":13574,"width":25,"height":45},{"x":0,"y":90,"fileNum":161,"id":13575,"width":25,"height":45},{"x":25,"y":90,"fileNum":161,"id":13576,"width":25,"height":45},{"x":50,"y":90,"fileNum":161,"id":13577,"width":25,"height":45},{"x":75,"y":90,"fileNum":161,"id":13578,"width":25,"height":45},{"x":100,"y":90,"fileNum":161,"id":13579,"width":25,"height":45},{"x":0,"y":135,"fileNum":161,"id":13580,"width":25,"height":45},{"x":25,"y":135,"fileNum":161,"id":13581,"width":25,"height":45},{"x":50,"y":135,"fileNum":161,"id":13582,"width":25,"height":45},{"x":75,"y":135,"fileNum":161,"id":13583,"width":25,"height":45},{"x":100,"y":135,"fileNum":161,"id":13584,"width":25,"height":45},{"x":0,"y":0,"fileNum":162,"id":13589,"width":32,"height":32},{"x":0,"y":0,"fileNum":296,"id":13590,"width":32,"height":32},{"x":0,"y":0,"fileNum":297,"id":13591,"width":25,"height":45},{"x":25,"y":0,"fileNum":297,"id":13592,"width":25,"height":45},{"x":50,"y":0,"fileNum":297,"id":13593,"width":25,"height":45},{"x":75,"y":0,"fileNum":297,"id":13594,"width":25,"height":45},{"x":100,"y":0,"fileNum":297,"id":13595,"width":25,"height":45},{"x":125,"y":0,"fileNum":297,"id":13596,"width":25,"height":45},{"x":0,"y":45,"fileNum":297,"id":13597,"width":25,"height":45},{"x":25,"y":45,"fileNum":297,"id":13598,"width":25,"height":45},{"x":50,"y":45,"fileNum":297,"id":13599,"width":25,"height":45},{"x":75,"y":45,"fileNum":297,"id":13600,"width":25,"height":45},{"x":100,"y":45,"fileNum":297,"id":13601,"width":25,"height":45},{"x":125,"y":45,"fileNum":297,"id":13602,"width":25,"height":45},{"x":0,"y":90,"fileNum":297,"id":13603,"width":25,"height":45},{"x":25,"y":90,"fileNum":297,"id":13604,"width":25,"height":45},{"x":50,"y":90,"fileNum":297,"id":13605,"width":25,"height":45},{"x":75,"y":90,"fileNum":297,"id":13606,"width":25,"height":45},{"x":100,"y":90,"fileNum":297,"id":13607,"width":25,"height":45},{"x":0,"y":135,"fileNum":297,"id":13608,"width":25,"height":45},{"x":25,"y":135,"fileNum":297,"id":13609,"width":25,"height":45},{"x":50,"y":135,"fileNum":297,"id":13610,"width":25,"height":45},{"x":75,"y":135,"fileNum":297,"id":13611,"width":25,"height":45},{"x":100,"y":135,"fileNum":297,"id":13612,"width":25,"height":45},{"x":0,"y":0,"fileNum":334,"id":13617,"width":25,"height":45},{"x":25,"y":0,"fileNum":334,"id":13618,"width":25,"height":45},{"x":50,"y":0,"fileNum":334,"id":13619,"width":25,"height":45},{"x":75,"y":0,"fileNum":334,"id":13620,"width":25,"height":45},{"x":100,"y":0,"fileNum":334,"id":13621,"width":25,"height":45},{"x":125,"y":0,"fileNum":334,"id":13622,"width":25,"height":45},{"x":0,"y":45,"fileNum":334,"id":13623,"width":25,"height":45},{"x":25,"y":45,"fileNum":334,"id":13624,"width":25,"height":45},{"x":50,"y":45,"fileNum":334,"id":13625,"width":25,"height":45},{"x":75,"y":45,"fileNum":334,"id":13626,"width":25,"height":45},{"x":100,"y":45,"fileNum":334,"id":13627,"width":25,"height":45},{"x":125,"y":45,"fileNum":334,"id":13628,"width":25,"height":45},{"x":0,"y":90,"fileNum":334,"id":13629,"width":25,"height":45},{"x":25,"y":90,"fileNum":334,"id":13630,"width":25,"height":45},{"x":50,"y":90,"fileNum":334,"id":13631,"width":25,"height":45},{"x":75,"y":90,"fileNum":334,"id":13632,"width":25,"height":45},{"x":100,"y":90,"fileNum":334,"id":13633,"width":25,"height":45},{"x":0,"y":135,"fileNum":334,"id":13634,"width":25,"height":45},{"x":25,"y":135,"fileNum":334,"id":13635,"width":25,"height":45},{"x":50,"y":135,"fileNum":334,"id":13636,"width":25,"height":45},{"x":75,"y":135,"fileNum":334,"id":13637,"width":25,"height":45},{"x":100,"y":135,"fileNum":334,"id":13638,"width":25,"height":45},{"x":0,"y":0,"fileNum":423,"id":13639,"width":32,"height":32},{"x":0,"y":0,"fileNum":429,"id":13644,"width":25,"height":45},{"x":25,"y":0,"fileNum":429,"id":13645,"width":25,"height":45},{"x":50,"y":0,"fileNum":429,"id":13646,"width":25,"height":45},{"x":75,"y":0,"fileNum":429,"id":13647,"width":25,"height":45},{"x":100,"y":0,"fileNum":429,"id":13648,"width":25,"height":45},{"x":125,"y":0,"fileNum":429,"id":13649,"width":25,"height":45},{"x":0,"y":45,"fileNum":429,"id":13650,"width":25,"height":45},{"x":25,"y":45,"fileNum":429,"id":13651,"width":25,"height":45},{"x":50,"y":45,"fileNum":429,"id":13652,"width":25,"height":45},{"x":75,"y":45,"fileNum":429,"id":13653,"width":25,"height":45},{"x":100,"y":45,"fileNum":429,"id":13654,"width":25,"height":45},{"x":125,"y":45,"fileNum":429,"id":13655,"width":25,"height":45},{"x":0,"y":90,"fileNum":429,"id":13656,"width":25,"height":45},{"x":25,"y":90,"fileNum":429,"id":13657,"width":25,"height":45},{"x":50,"y":90,"fileNum":429,"id":13658,"width":25,"height":45},{"x":75,"y":90,"fileNum":429,"id":13659,"width":25,"height":45},{"x":100,"y":90,"fileNum":429,"id":13660,"width":25,"height":45},{"x":0,"y":135,"fileNum":429,"id":13661,"width":25,"height":45},{"x":25,"y":135,"fileNum":429,"id":13662,"width":25,"height":45},{"x":50,"y":135,"fileNum":429,"id":13663,"width":25,"height":45},{"x":75,"y":135,"fileNum":429,"id":13664,"width":25,"height":45},{"x":100,"y":135,"fileNum":429,"id":13665,"width":25,"height":45},{"x":0,"y":0,"fileNum":435,"id":13666,"width":32,"height":32},{"x":0,"y":0,"fileNum":446,"id":13671,"width":25,"height":45},{"x":25,"y":0,"fileNum":446,"id":13672,"width":25,"height":45},{"x":50,"y":0,"fileNum":446,"id":13673,"width":25,"height":45},{"x":75,"y":0,"fileNum":446,"id":13674,"width":25,"height":45},{"x":100,"y":0,"fileNum":446,"id":13675,"width":25,"height":45},{"x":125,"y":0,"fileNum":446,"id":13676,"width":25,"height":45},{"x":0,"y":45,"fileNum":446,"id":13677,"width":25,"height":45},{"x":25,"y":45,"fileNum":446,"id":13678,"width":25,"height":45},{"x":50,"y":45,"fileNum":446,"id":13679,"width":25,"height":45},{"x":75,"y":45,"fileNum":446,"id":13680,"width":25,"height":45},{"x":100,"y":45,"fileNum":446,"id":13681,"width":25,"height":45},{"x":125,"y":45,"fileNum":446,"id":13682,"width":25,"height":45},{"x":0,"y":90,"fileNum":446,"id":13683,"width":25,"height":45},{"x":25,"y":90,"fileNum":446,"id":13684,"width":25,"height":45},{"x":50,"y":90,"fileNum":446,"id":13685,"width":25,"height":45},{"x":75,"y":90,"fileNum":446,"id":13686,"width":25,"height":45},{"x":100,"y":90,"fileNum":446,"id":13687,"width":25,"height":45},{"x":0,"y":135,"fileNum":446,"id":13688,"width":25,"height":45},{"x":25,"y":135,"fileNum":446,"id":13689,"width":25,"height":45},{"x":50,"y":135,"fileNum":446,"id":13690,"width":25,"height":45},{"x":75,"y":135,"fileNum":446,"id":13691,"width":25,"height":45},{"x":100,"y":135,"fileNum":446,"id":13692,"width":25,"height":45},{"x":0,"y":0,"fileNum":457,"id":13693,"width":32,"height":32},{"x":0,"y":0,"fileNum":468,"id":13698,"width":25,"height":45},{"x":25,"y":0,"fileNum":468,"id":13699,"width":25,"height":45},{"x":50,"y":0,"fileNum":468,"id":13700,"width":25,"height":45},{"x":75,"y":0,"fileNum":468,"id":13701,"width":25,"height":45},{"x":100,"y":0,"fileNum":468,"id":13702,"width":25,"height":45},{"x":125,"y":0,"fileNum":468,"id":13703,"width":25,"height":45},{"x":0,"y":45,"fileNum":468,"id":13704,"width":25,"height":45},{"x":25,"y":45,"fileNum":468,"id":13705,"width":25,"height":45},{"x":50,"y":45,"fileNum":468,"id":13706,"width":25,"height":45},{"x":75,"y":45,"fileNum":468,"id":13707,"width":25,"height":45},{"x":100,"y":45,"fileNum":468,"id":13708,"width":25,"height":45},{"x":125,"y":45,"fileNum":468,"id":13709,"width":25,"height":45},{"x":0,"y":90,"fileNum":468,"id":13710,"width":25,"height":45},{"x":25,"y":90,"fileNum":468,"id":13711,"width":25,"height":45},{"x":50,"y":90,"fileNum":468,"id":13712,"width":25,"height":45},{"x":75,"y":90,"fileNum":468,"id":13713,"width":25,"height":45},{"x":100,"y":90,"fileNum":468,"id":13714,"width":25,"height":45},{"x":0,"y":135,"fileNum":468,"id":13715,"width":25,"height":45},{"x":25,"y":135,"fileNum":468,"id":13716,"width":25,"height":45},{"x":50,"y":135,"fileNum":468,"id":13717,"width":25,"height":45},{"x":75,"y":135,"fileNum":468,"id":13718,"width":25,"height":45},{"x":100,"y":135,"fileNum":468,"id":13719,"width":25,"height":45},{"x":0,"y":0,"fileNum":478,"id":13720,"width":32,"height":32},{"x":0,"y":0,"fileNum":488,"id":13725,"width":25,"height":45},{"x":25,"y":0,"fileNum":488,"id":13726,"width":25,"height":45},{"x":50,"y":0,"fileNum":488,"id":13727,"width":25,"height":45},{"x":75,"y":0,"fileNum":488,"id":13728,"width":25,"height":45},{"x":100,"y":0,"fileNum":488,"id":13729,"width":25,"height":45},{"x":125,"y":0,"fileNum":488,"id":13730,"width":25,"height":45},{"x":0,"y":45,"fileNum":488,"id":13731,"width":25,"height":45},{"x":25,"y":45,"fileNum":488,"id":13732,"width":25,"height":45},{"x":50,"y":45,"fileNum":488,"id":13733,"width":25,"height":45},{"x":75,"y":45,"fileNum":488,"id":13734,"width":25,"height":45},{"x":100,"y":45,"fileNum":488,"id":13735,"width":25,"height":45},{"x":125,"y":45,"fileNum":488,"id":13736,"width":25,"height":45},{"x":0,"y":90,"fileNum":488,"id":13737,"width":25,"height":45},{"x":25,"y":90,"fileNum":488,"id":13738,"width":25,"height":45},{"x":50,"y":90,"fileNum":488,"id":13739,"width":25,"height":45},{"x":75,"y":90,"fileNum":488,"id":13740,"width":25,"height":45},{"x":100,"y":90,"fileNum":488,"id":13741,"width":25,"height":45},{"x":0,"y":135,"fileNum":488,"id":13742,"width":25,"height":45},{"x":25,"y":135,"fileNum":488,"id":13743,"width":25,"height":45},{"x":50,"y":135,"fileNum":488,"id":13744,"width":25,"height":45},{"x":75,"y":135,"fileNum":488,"id":13745,"width":25,"height":45},{"x":100,"y":135,"fileNum":488,"id":13746,"width":25,"height":45},{"x":0,"y":0,"fileNum":509,"id":13751,"width":25,"height":45},{"x":25,"y":0,"fileNum":509,"id":13752,"width":25,"height":45},{"x":50,"y":0,"fileNum":509,"id":13753,"width":25,"height":45},{"x":75,"y":0,"fileNum":509,"id":13754,"width":25,"height":45},{"x":100,"y":0,"fileNum":509,"id":13755,"width":25,"height":45},{"x":125,"y":0,"fileNum":509,"id":13756,"width":25,"height":45},{"x":0,"y":45,"fileNum":509,"id":13757,"width":25,"height":45},{"x":25,"y":45,"fileNum":509,"id":13758,"width":25,"height":45},{"x":50,"y":45,"fileNum":509,"id":13759,"width":25,"height":45},{"x":75,"y":45,"fileNum":509,"id":13760,"width":25,"height":45},{"x":100,"y":45,"fileNum":509,"id":13761,"width":25,"height":45},{"x":125,"y":45,"fileNum":509,"id":13762,"width":25,"height":45},{"x":0,"y":90,"fileNum":509,"id":13763,"width":25,"height":45},{"x":25,"y":90,"fileNum":509,"id":13764,"width":25,"height":45},{"x":50,"y":90,"fileNum":509,"id":13765,"width":25,"height":45},{"x":75,"y":90,"fileNum":509,"id":13766,"width":25,"height":45},{"x":100,"y":90,"fileNum":509,"id":13767,"width":25,"height":45},{"x":0,"y":135,"fileNum":509,"id":13768,"width":25,"height":45},{"x":25,"y":135,"fileNum":509,"id":13769,"width":25,"height":45},{"x":50,"y":135,"fileNum":509,"id":13770,"width":25,"height":45},{"x":75,"y":135,"fileNum":509,"id":13771,"width":25,"height":45},{"x":100,"y":135,"fileNum":509,"id":13772,"width":25,"height":45},{"x":0,"y":0,"fileNum":520,"id":13773,"width":32,"height":32},{"x":0,"y":0,"fileNum":531,"id":13778,"width":25,"height":45},{"x":25,"y":0,"fileNum":531,"id":13779,"width":25,"height":45},{"x":50,"y":0,"fileNum":531,"id":13780,"width":25,"height":45},{"x":75,"y":0,"fileNum":531,"id":13781,"width":25,"height":45},{"x":100,"y":0,"fileNum":531,"id":13782,"width":25,"height":45},{"x":125,"y":0,"fileNum":531,"id":13783,"width":25,"height":45},{"x":0,"y":45,"fileNum":531,"id":13784,"width":25,"height":45},{"x":25,"y":45,"fileNum":531,"id":13785,"width":25,"height":45},{"x":50,"y":45,"fileNum":531,"id":13786,"width":25,"height":45},{"x":75,"y":45,"fileNum":531,"id":13787,"width":25,"height":45},{"x":100,"y":45,"fileNum":531,"id":13788,"width":25,"height":45},{"x":125,"y":45,"fileNum":531,"id":13789,"width":25,"height":45},{"x":0,"y":90,"fileNum":531,"id":13790,"width":25,"height":45},{"x":25,"y":90,"fileNum":531,"id":13791,"width":25,"height":45},{"x":50,"y":90,"fileNum":531,"id":13792,"width":25,"height":45},{"x":75,"y":90,"fileNum":531,"id":13793,"width":25,"height":45},{"x":100,"y":90,"fileNum":531,"id":13794,"width":25,"height":45},{"x":0,"y":135,"fileNum":531,"id":13795,"width":25,"height":45},{"x":25,"y":135,"fileNum":531,"id":13796,"width":25,"height":45},{"x":50,"y":135,"fileNum":531,"id":13797,"width":25,"height":45},{"x":75,"y":135,"fileNum":531,"id":13798,"width":25,"height":45},{"x":100,"y":135,"fileNum":531,"id":13799,"width":25,"height":45},{"x":0,"y":0,"fileNum":542,"id":13800,"width":32,"height":32},{"x":0,"y":0,"fileNum":553,"id":13805,"width":25,"height":45},{"x":25,"y":0,"fileNum":553,"id":13806,"width":25,"height":45},{"x":50,"y":0,"fileNum":553,"id":13807,"width":25,"height":45},{"x":75,"y":0,"fileNum":553,"id":13808,"width":25,"height":45},{"x":100,"y":0,"fileNum":553,"id":13809,"width":25,"height":45},{"x":125,"y":0,"fileNum":553,"id":13810,"width":25,"height":45},{"x":0,"y":45,"fileNum":553,"id":13811,"width":25,"height":45},{"x":25,"y":45,"fileNum":553,"id":13812,"width":25,"height":45},{"x":50,"y":45,"fileNum":553,"id":13813,"width":25,"height":45},{"x":75,"y":45,"fileNum":553,"id":13814,"width":25,"height":45},{"x":100,"y":45,"fileNum":553,"id":13815,"width":25,"height":45},{"x":125,"y":45,"fileNum":553,"id":13816,"width":25,"height":45},{"x":0,"y":90,"fileNum":553,"id":13817,"width":25,"height":45},{"x":25,"y":90,"fileNum":553,"id":13818,"width":25,"height":45},{"x":50,"y":90,"fileNum":553,"id":13819,"width":25,"height":45},{"x":75,"y":90,"fileNum":553,"id":13820,"width":25,"height":45},{"x":100,"y":90,"fileNum":553,"id":13821,"width":25,"height":45},{"x":0,"y":135,"fileNum":553,"id":13822,"width":25,"height":45},{"x":25,"y":135,"fileNum":553,"id":13823,"width":25,"height":45},{"x":50,"y":135,"fileNum":553,"id":13824,"width":25,"height":45},{"x":75,"y":135,"fileNum":553,"id":13825,"width":25,"height":45},{"x":100,"y":135,"fileNum":553,"id":13826,"width":25,"height":45},{"x":0,"y":0,"fileNum":564,"id":13827,"width":32,"height":32},{"x":0,"y":0,"fileNum":575,"id":13832,"width":25,"height":45},{"x":25,"y":0,"fileNum":575,"id":13833,"width":25,"height":45},{"x":50,"y":0,"fileNum":575,"id":13834,"width":25,"height":45},{"x":75,"y":0,"fileNum":575,"id":13835,"width":25,"height":45},{"x":100,"y":0,"fileNum":575,"id":13836,"width":25,"height":45},{"x":125,"y":0,"fileNum":575,"id":13837,"width":25,"height":45},{"x":0,"y":45,"fileNum":575,"id":13838,"width":25,"height":45},{"x":25,"y":45,"fileNum":575,"id":13839,"width":25,"height":45},{"x":50,"y":45,"fileNum":575,"id":13840,"width":25,"height":45},{"x":75,"y":45,"fileNum":575,"id":13841,"width":25,"height":45},{"x":100,"y":45,"fileNum":575,"id":13842,"width":25,"height":45},{"x":125,"y":45,"fileNum":575,"id":13843,"width":25,"height":45},{"x":0,"y":90,"fileNum":575,"id":13844,"width":25,"height":45},{"x":25,"y":90,"fileNum":575,"id":13845,"width":25,"height":45},{"x":50,"y":90,"fileNum":575,"id":13846,"width":25,"height":45},{"x":75,"y":90,"fileNum":575,"id":13847,"width":25,"height":45},{"x":100,"y":90,"fileNum":575,"id":13848,"width":25,"height":45},{"x":0,"y":135,"fileNum":575,"id":13849,"width":25,"height":45},{"x":25,"y":135,"fileNum":575,"id":13850,"width":25,"height":45},{"x":50,"y":135,"fileNum":575,"id":13851,"width":25,"height":45},{"x":75,"y":135,"fileNum":575,"id":13852,"width":25,"height":45},{"x":100,"y":135,"fileNum":575,"id":13853,"width":25,"height":45},{"x":0,"y":0,"fileNum":101,"id":13854,"width":32,"height":32},{"x":0,"y":0,"fileNum":124,"id":13859,"width":25,"height":45},{"x":25,"y":0,"fileNum":124,"id":13860,"width":25,"height":45},{"x":50,"y":0,"fileNum":124,"id":13861,"width":25,"height":45},{"x":75,"y":0,"fileNum":124,"id":13862,"width":25,"height":45},{"x":100,"y":0,"fileNum":124,"id":13863,"width":25,"height":45},{"x":125,"y":0,"fileNum":124,"id":13864,"width":25,"height":45},{"x":0,"y":45,"fileNum":124,"id":13865,"width":25,"height":45},{"x":25,"y":45,"fileNum":124,"id":13866,"width":25,"height":45},{"x":50,"y":45,"fileNum":124,"id":13867,"width":25,"height":45},{"x":75,"y":45,"fileNum":124,"id":13868,"width":25,"height":45},{"x":100,"y":45,"fileNum":124,"id":13869,"width":25,"height":45},{"x":125,"y":45,"fileNum":124,"id":13870,"width":25,"height":45},{"x":0,"y":90,"fileNum":124,"id":13871,"width":25,"height":45},{"x":25,"y":90,"fileNum":124,"id":13872,"width":25,"height":45},{"x":50,"y":90,"fileNum":124,"id":13873,"width":25,"height":45},{"x":75,"y":90,"fileNum":124,"id":13874,"width":25,"height":45},{"x":100,"y":90,"fileNum":124,"id":13875,"width":25,"height":45},{"x":0,"y":135,"fileNum":124,"id":13876,"width":25,"height":45},{"x":25,"y":135,"fileNum":124,"id":13877,"width":25,"height":45},{"x":50,"y":135,"fileNum":124,"id":13878,"width":25,"height":45},{"x":75,"y":135,"fileNum":124,"id":13879,"width":25,"height":45},{"x":100,"y":135,"fileNum":124,"id":13880,"width":25,"height":45},{"x":0,"y":0,"fileNum":125,"id":13881,"width":32,"height":32},{"x":0,"y":0,"fileNum":24006,"id":13886,"width":25,"height":45},{"x":25,"y":0,"fileNum":24006,"id":13887,"width":25,"height":45},{"x":50,"y":0,"fileNum":24006,"id":13888,"width":25,"height":45},{"x":75,"y":0,"fileNum":24006,"id":13889,"width":25,"height":45},{"x":100,"y":0,"fileNum":24006,"id":13890,"width":25,"height":45},{"x":125,"y":0,"fileNum":24006,"id":13891,"width":25,"height":45},{"x":0,"y":45,"fileNum":24006,"id":13892,"width":25,"height":45},{"x":25,"y":45,"fileNum":24006,"id":13893,"width":25,"height":45},{"x":50,"y":45,"fileNum":24006,"id":13894,"width":25,"height":45},{"x":75,"y":45,"fileNum":24006,"id":13895,"width":25,"height":45},{"x":100,"y":45,"fileNum":24006,"id":13896,"width":25,"height":45},{"x":125,"y":45,"fileNum":24006,"id":13897,"width":25,"height":45},{"x":0,"y":90,"fileNum":24006,"id":13898,"width":25,"height":45},{"x":25,"y":90,"fileNum":24006,"id":13899,"width":25,"height":45},{"x":50,"y":90,"fileNum":24006,"id":13900,"width":25,"height":45},{"x":75,"y":90,"fileNum":24006,"id":13901,"width":25,"height":45},{"x":100,"y":90,"fileNum":24006,"id":13902,"width":25,"height":45},{"x":0,"y":135,"fileNum":24006,"id":13903,"width":25,"height":45},{"x":25,"y":135,"fileNum":24006,"id":13904,"width":25,"height":45},{"x":50,"y":135,"fileNum":24006,"id":13905,"width":25,"height":45},{"x":75,"y":135,"fileNum":24006,"id":13906,"width":25,"height":45},{"x":100,"y":135,"fileNum":24006,"id":13907,"width":25,"height":45},{"x":0,"y":0,"fileNum":12041,"id":13912,"width":37,"height":38},{"x":37,"y":0,"fileNum":12041,"id":13913,"width":37,"height":38},{"x":74,"y":0,"fileNum":12041,"id":13914,"width":37,"height":38},{"x":111,"y":0,"fileNum":12041,"id":13915,"width":37,"height":38},{"x":148,"y":0,"fileNum":12041,"id":13916,"width":37,"height":38},{"x":185,"y":0,"fileNum":12041,"id":13917,"width":37,"height":38},{"x":0,"y":38,"fileNum":12041,"id":13918,"width":37,"height":38},{"x":37,"y":38,"fileNum":12041,"id":13919,"width":37,"height":38},{"x":74,"y":38,"fileNum":12041,"id":13920,"width":37,"height":38},{"x":111,"y":38,"fileNum":12041,"id":13921,"width":37,"height":38},{"x":148,"y":38,"fileNum":12041,"id":13922,"width":37,"height":38},{"x":185,"y":38,"fileNum":12041,"id":13923,"width":37,"height":38},{"x":0,"y":0,"fileNum":16033,"id":13926,"width":25,"height":45},{"x":25,"y":0,"fileNum":16033,"id":13927,"width":25,"height":45},{"x":50,"y":0,"fileNum":16033,"id":13928,"width":25,"height":45},{"x":75,"y":0,"fileNum":16033,"id":13929,"width":25,"height":45},{"x":100,"y":0,"fileNum":16033,"id":13930,"width":25,"height":45},{"x":125,"y":0,"fileNum":16033,"id":13931,"width":25,"height":45},{"x":0,"y":45,"fileNum":16033,"id":13932,"width":25,"height":45},{"x":25,"y":45,"fileNum":16033,"id":13933,"width":25,"height":45},{"x":50,"y":45,"fileNum":16033,"id":13934,"width":25,"height":45},{"x":75,"y":45,"fileNum":16033,"id":13935,"width":25,"height":45},{"x":100,"y":45,"fileNum":16033,"id":13936,"width":25,"height":45},{"x":125,"y":45,"fileNum":16033,"id":13937,"width":25,"height":45},{"x":0,"y":90,"fileNum":16033,"id":13938,"width":25,"height":45},{"x":25,"y":90,"fileNum":16033,"id":13939,"width":25,"height":45},{"x":50,"y":90,"fileNum":16033,"id":13940,"width":25,"height":45},{"x":75,"y":90,"fileNum":16033,"id":13941,"width":25,"height":45},{"x":100,"y":90,"fileNum":16033,"id":13942,"width":25,"height":45},{"x":0,"y":135,"fileNum":16033,"id":13943,"width":25,"height":45},{"x":25,"y":135,"fileNum":16033,"id":13944,"width":25,"height":45},{"x":50,"y":135,"fileNum":16033,"id":13945,"width":25,"height":45},{"x":75,"y":135,"fileNum":16033,"id":13946,"width":25,"height":45},{"x":100,"y":135,"fileNum":16033,"id":13947,"width":25,"height":45},{"x":0,"y":0,"fileNum":11029,"id":13952,"width":256,"height":160},{"x":0,"y":0,"fileNum":14033,"id":13953,"width":256,"height":196},{"x":0,"y":0,"fileNum":8175,"id":13954,"width":128,"height":80},{"x":128,"y":0,"fileNum":8175,"id":13955,"width":128,"height":80},{"x":0,"y":80,"fileNum":8175,"id":13956,"width":128,"height":80},{"x":128,"y":80,"fileNum":8175,"id":13957,"width":128,"height":80},{"x":0,"y":0,"fileNum":8163,"id":13958,"width":160,"height":146},{"x":0,"y":0,"fileNum":2000,"id":13959,"width":17,"height":50},{"x":17,"y":0,"fileNum":2000,"id":13960,"width":17,"height":50},{"x":34,"y":0,"fileNum":2000,"id":13961,"width":17,"height":50},{"x":51,"y":0,"fileNum":2000,"id":13962,"width":17,"height":50},{"x":0,"y":0,"fileNum":10003,"id":13963,"width":120,"height":222},{"x":0,"y":0,"fileNum":171,"id":13964,"width":25,"height":45},{"x":25,"y":0,"fileNum":171,"id":13965,"width":25,"height":45},{"x":50,"y":0,"fileNum":171,"id":13966,"width":25,"height":45},{"x":75,"y":0,"fileNum":171,"id":13967,"width":25,"height":45},{"x":100,"y":0,"fileNum":171,"id":13968,"width":25,"height":45},{"x":125,"y":0,"fileNum":171,"id":13969,"width":25,"height":45},{"x":0,"y":45,"fileNum":171,"id":13970,"width":25,"height":45},{"x":25,"y":45,"fileNum":171,"id":13971,"width":25,"height":45},{"x":50,"y":45,"fileNum":171,"id":13972,"width":25,"height":45},{"x":75,"y":45,"fileNum":171,"id":13973,"width":25,"height":45},{"x":100,"y":45,"fileNum":171,"id":13974,"width":25,"height":45},{"x":125,"y":45,"fileNum":171,"id":13975,"width":25,"height":45},{"x":0,"y":90,"fileNum":171,"id":13976,"width":25,"height":45},{"x":25,"y":90,"fileNum":171,"id":13977,"width":25,"height":45},{"x":50,"y":90,"fileNum":171,"id":13978,"width":25,"height":45},{"x":75,"y":90,"fileNum":171,"id":13979,"width":25,"height":45},{"x":100,"y":90,"fileNum":171,"id":13980,"width":25,"height":45},{"x":0,"y":135,"fileNum":171,"id":13981,"width":25,"height":45},{"x":25,"y":135,"fileNum":171,"id":13982,"width":25,"height":45},{"x":50,"y":135,"fileNum":171,"id":13983,"width":25,"height":45},{"x":75,"y":135,"fileNum":171,"id":13984,"width":25,"height":45},{"x":100,"y":135,"fileNum":171,"id":13985,"width":25,"height":45},{"x":0,"y":0,"fileNum":2199,"id":13990,"width":17,"height":50},{"x":17,"y":0,"fileNum":2199,"id":13991,"width":17,"height":50},{"x":34,"y":0,"fileNum":2199,"id":13992,"width":17,"height":50},{"x":51,"y":0,"fileNum":2199,"id":13993,"width":17,"height":50},{"x":0,"y":0,"fileNum":2200,"id":13994,"width":17,"height":50},{"x":17,"y":0,"fileNum":2200,"id":13995,"width":17,"height":50},{"x":34,"y":0,"fileNum":2200,"id":13996,"width":17,"height":50},{"x":51,"y":0,"fileNum":2200,"id":13997,"width":17,"height":50},{"x":0,"y":0,"fileNum":24004,"id":14000,"width":25,"height":45},{"x":25,"y":0,"fileNum":24004,"id":14001,"width":25,"height":45},{"x":50,"y":0,"fileNum":24004,"id":14002,"width":25,"height":45},{"x":75,"y":0,"fileNum":24004,"id":14003,"width":25,"height":45},{"x":100,"y":0,"fileNum":24004,"id":14004,"width":25,"height":45},{"x":125,"y":0,"fileNum":24004,"id":14005,"width":25,"height":45},{"x":0,"y":45,"fileNum":24004,"id":14006,"width":25,"height":45},{"x":25,"y":45,"fileNum":24004,"id":14007,"width":25,"height":45},{"x":50,"y":45,"fileNum":24004,"id":14008,"width":25,"height":45},{"x":75,"y":45,"fileNum":24004,"id":14009,"width":25,"height":45},{"x":100,"y":45,"fileNum":24004,"id":14010,"width":25,"height":45},{"x":125,"y":45,"fileNum":24004,"id":14011,"width":25,"height":45},{"x":0,"y":90,"fileNum":24004,"id":14012,"width":25,"height":45},{"x":25,"y":90,"fileNum":24004,"id":14013,"width":25,"height":45},{"x":50,"y":90,"fileNum":24004,"id":14014,"width":25,"height":45},{"x":75,"y":90,"fileNum":24004,"id":14015,"width":25,"height":45},{"x":100,"y":90,"fileNum":24004,"id":14016,"width":25,"height":45},{"x":0,"y":135,"fileNum":24004,"id":14017,"width":25,"height":45},{"x":25,"y":135,"fileNum":24004,"id":14018,"width":25,"height":45},{"x":50,"y":135,"fileNum":24004,"id":14019,"width":25,"height":45},{"x":75,"y":135,"fileNum":24004,"id":14020,"width":25,"height":45},{"x":100,"y":135,"fileNum":24004,"id":14021,"width":25,"height":45},{"x":0,"y":0,"fileNum":199,"id":14026,"width":31,"height":48},{"x":31,"y":0,"fileNum":199,"id":14027,"width":31,"height":48},{"x":62,"y":0,"fileNum":199,"id":14028,"width":31,"height":48},{"x":93,"y":0,"fileNum":199,"id":14029,"width":31,"height":48},{"x":124,"y":0,"fileNum":199,"id":14030,"width":31,"height":48},{"x":155,"y":0,"fileNum":199,"id":14031,"width":31,"height":48},{"x":0,"y":48,"fileNum":199,"id":14032,"width":31,"height":48},{"x":31,"y":48,"fileNum":199,"id":14033,"width":31,"height":48},{"x":62,"y":48,"fileNum":199,"id":14034,"width":31,"height":48},{"x":93,"y":48,"fileNum":199,"id":14035,"width":31,"height":48},{"x":124,"y":48,"fileNum":199,"id":14036,"width":31,"height":48},{"x":155,"y":48,"fileNum":199,"id":14037,"width":31,"height":48},{"x":0,"y":96,"fileNum":199,"id":14038,"width":31,"height":48},{"x":31,"y":96,"fileNum":199,"id":14039,"width":31,"height":48},{"x":62,"y":96,"fileNum":199,"id":14040,"width":31,"height":48},{"x":93,"y":96,"fileNum":199,"id":14041,"width":31,"height":48},{"x":124,"y":96,"fileNum":199,"id":14042,"width":31,"height":48},{"x":0,"y":144,"fileNum":199,"id":14043,"width":31,"height":48},{"x":31,"y":144,"fileNum":199,"id":14044,"width":31,"height":48},{"x":62,"y":144,"fileNum":199,"id":14045,"width":31,"height":48},{"x":93,"y":144,"fileNum":199,"id":14046,"width":31,"height":48},{"x":124,"y":144,"fileNum":199,"id":14047,"width":31,"height":48},{"x":0,"y":0,"fileNum":128,"id":14052,"width":32,"height":32},{"x":0,"y":0,"fileNum":200,"id":14053,"width":25,"height":45},{"x":25,"y":0,"fileNum":200,"id":14054,"width":25,"height":45},{"x":50,"y":0,"fileNum":200,"id":14055,"width":25,"height":45},{"x":75,"y":0,"fileNum":200,"id":14056,"width":25,"height":45},{"x":100,"y":0,"fileNum":200,"id":14057,"width":25,"height":45},{"x":125,"y":0,"fileNum":200,"id":14058,"width":25,"height":45},{"x":0,"y":45,"fileNum":200,"id":14059,"width":25,"height":45},{"x":25,"y":45,"fileNum":200,"id":14060,"width":25,"height":45},{"x":50,"y":45,"fileNum":200,"id":14061,"width":25,"height":45},{"x":75,"y":45,"fileNum":200,"id":14062,"width":25,"height":45},{"x":100,"y":45,"fileNum":200,"id":14063,"width":25,"height":45},{"x":125,"y":45,"fileNum":200,"id":14064,"width":25,"height":45},{"x":0,"y":90,"fileNum":200,"id":14065,"width":25,"height":45},{"x":25,"y":90,"fileNum":200,"id":14066,"width":25,"height":45},{"x":50,"y":90,"fileNum":200,"id":14067,"width":25,"height":45},{"x":75,"y":90,"fileNum":200,"id":14068,"width":25,"height":45},{"x":100,"y":90,"fileNum":200,"id":14069,"width":25,"height":45},{"x":0,"y":135,"fileNum":200,"id":14070,"width":25,"height":45},{"x":25,"y":135,"fileNum":200,"id":14071,"width":25,"height":45},{"x":50,"y":135,"fileNum":200,"id":14072,"width":25,"height":45},{"x":75,"y":135,"fileNum":200,"id":14073,"width":25,"height":45},{"x":100,"y":135,"fileNum":200,"id":14074,"width":25,"height":45},{"x":0,"y":0,"fileNum":204,"id":14079,"width":32,"height":32},{"x":0,"y":0,"fileNum":201,"id":14080,"width":25,"height":45},{"x":25,"y":0,"fileNum":201,"id":14081,"width":25,"height":45},{"x":50,"y":0,"fileNum":201,"id":14082,"width":25,"height":45},{"x":75,"y":0,"fileNum":201,"id":14083,"width":25,"height":45},{"x":100,"y":0,"fileNum":201,"id":14084,"width":25,"height":45},{"x":125,"y":0,"fileNum":201,"id":14085,"width":25,"height":45},{"x":0,"y":45,"fileNum":201,"id":14086,"width":25,"height":45},{"x":25,"y":45,"fileNum":201,"id":14087,"width":25,"height":45},{"x":50,"y":45,"fileNum":201,"id":14088,"width":25,"height":45},{"x":75,"y":45,"fileNum":201,"id":14089,"width":25,"height":45},{"x":100,"y":45,"fileNum":201,"id":14090,"width":25,"height":45},{"x":125,"y":45,"fileNum":201,"id":14091,"width":25,"height":45},{"x":0,"y":90,"fileNum":201,"id":14092,"width":25,"height":45},{"x":25,"y":90,"fileNum":201,"id":14093,"width":25,"height":45},{"x":50,"y":90,"fileNum":201,"id":14094,"width":25,"height":45},{"x":75,"y":90,"fileNum":201,"id":14095,"width":25,"height":45},{"x":100,"y":90,"fileNum":201,"id":14096,"width":25,"height":45},{"x":0,"y":135,"fileNum":201,"id":14097,"width":25,"height":45},{"x":25,"y":135,"fileNum":201,"id":14098,"width":25,"height":45},{"x":50,"y":135,"fileNum":201,"id":14099,"width":25,"height":45},{"x":75,"y":135,"fileNum":201,"id":14100,"width":25,"height":45},{"x":100,"y":135,"fileNum":201,"id":14101,"width":25,"height":45},{"x":0,"y":0,"fileNum":202,"id":14106,"width":25,"height":45},{"x":25,"y":0,"fileNum":202,"id":14107,"width":25,"height":45},{"x":50,"y":0,"fileNum":202,"id":14108,"width":25,"height":45},{"x":75,"y":0,"fileNum":202,"id":14109,"width":25,"height":45},{"x":100,"y":0,"fileNum":202,"id":14110,"width":25,"height":45},{"x":125,"y":0,"fileNum":202,"id":14111,"width":25,"height":45},{"x":0,"y":45,"fileNum":202,"id":14112,"width":25,"height":45},{"x":25,"y":45,"fileNum":202,"id":14113,"width":25,"height":45},{"x":50,"y":45,"fileNum":202,"id":14114,"width":25,"height":45},{"x":75,"y":45,"fileNum":202,"id":14115,"width":25,"height":45},{"x":100,"y":45,"fileNum":202,"id":14116,"width":25,"height":45},{"x":125,"y":45,"fileNum":202,"id":14117,"width":25,"height":45},{"x":0,"y":90,"fileNum":202,"id":14118,"width":25,"height":45},{"x":25,"y":90,"fileNum":202,"id":14119,"width":25,"height":45},{"x":50,"y":90,"fileNum":202,"id":14120,"width":25,"height":45},{"x":75,"y":90,"fileNum":202,"id":14121,"width":25,"height":45},{"x":100,"y":90,"fileNum":202,"id":14122,"width":25,"height":45},{"x":0,"y":135,"fileNum":202,"id":14123,"width":25,"height":45},{"x":25,"y":135,"fileNum":202,"id":14124,"width":25,"height":45},{"x":50,"y":135,"fileNum":202,"id":14125,"width":25,"height":45},{"x":75,"y":135,"fileNum":202,"id":14126,"width":25,"height":45},{"x":100,"y":135,"fileNum":202,"id":14127,"width":25,"height":45},{"x":0,"y":0,"fileNum":24008,"id":14132,"width":25,"height":45},{"x":25,"y":0,"fileNum":24008,"id":14133,"width":25,"height":45},{"x":50,"y":0,"fileNum":24008,"id":14134,"width":25,"height":45},{"x":75,"y":0,"fileNum":24008,"id":14135,"width":25,"height":45},{"x":100,"y":0,"fileNum":24008,"id":14136,"width":25,"height":45},{"x":125,"y":0,"fileNum":24008,"id":14137,"width":25,"height":45},{"x":0,"y":45,"fileNum":24008,"id":14138,"width":25,"height":45},{"x":25,"y":45,"fileNum":24008,"id":14139,"width":25,"height":45},{"x":50,"y":45,"fileNum":24008,"id":14140,"width":25,"height":45},{"x":75,"y":45,"fileNum":24008,"id":14141,"width":25,"height":45},{"x":100,"y":45,"fileNum":24008,"id":14142,"width":25,"height":45},{"x":125,"y":45,"fileNum":24008,"id":14143,"width":25,"height":45},{"x":0,"y":90,"fileNum":24008,"id":14144,"width":25,"height":45},{"x":25,"y":90,"fileNum":24008,"id":14145,"width":25,"height":45},{"x":50,"y":90,"fileNum":24008,"id":14146,"width":25,"height":45},{"x":75,"y":90,"fileNum":24008,"id":14147,"width":25,"height":45},{"x":100,"y":90,"fileNum":24008,"id":14148,"width":25,"height":45},{"x":0,"y":135,"fileNum":24008,"id":14149,"width":25,"height":45},{"x":25,"y":135,"fileNum":24008,"id":14150,"width":25,"height":45},{"x":50,"y":135,"fileNum":24008,"id":14151,"width":25,"height":45},{"x":75,"y":135,"fileNum":24008,"id":14152,"width":25,"height":45},{"x":100,"y":135,"fileNum":24008,"id":14153,"width":25,"height":45},{"x":0,"y":0,"fileNum":24009,"id":14158,"width":25,"height":45},{"x":25,"y":0,"fileNum":24009,"id":14159,"width":25,"height":45},{"x":50,"y":0,"fileNum":24009,"id":14160,"width":25,"height":45},{"x":75,"y":0,"fileNum":24009,"id":14161,"width":25,"height":45},{"x":100,"y":0,"fileNum":24009,"id":14162,"width":25,"height":45},{"x":125,"y":0,"fileNum":24009,"id":14163,"width":25,"height":45},{"x":0,"y":45,"fileNum":24009,"id":14164,"width":25,"height":45},{"x":25,"y":45,"fileNum":24009,"id":14165,"width":25,"height":45},{"x":50,"y":45,"fileNum":24009,"id":14166,"width":25,"height":45},{"x":75,"y":45,"fileNum":24009,"id":14167,"width":25,"height":45},{"x":100,"y":45,"fileNum":24009,"id":14168,"width":25,"height":45},{"x":125,"y":45,"fileNum":24009,"id":14169,"width":25,"height":45},{"x":0,"y":90,"fileNum":24009,"id":14170,"width":25,"height":45},{"x":25,"y":90,"fileNum":24009,"id":14171,"width":25,"height":45},{"x":50,"y":90,"fileNum":24009,"id":14172,"width":25,"height":45},{"x":75,"y":90,"fileNum":24009,"id":14173,"width":25,"height":45},{"x":100,"y":90,"fileNum":24009,"id":14174,"width":25,"height":45},{"x":0,"y":135,"fileNum":24009,"id":14175,"width":25,"height":45},{"x":25,"y":135,"fileNum":24009,"id":14176,"width":25,"height":45},{"x":50,"y":135,"fileNum":24009,"id":14177,"width":25,"height":45},{"x":75,"y":135,"fileNum":24009,"id":14178,"width":25,"height":45},{"x":100,"y":135,"fileNum":24009,"id":14179,"width":25,"height":45},{"x":0,"y":0,"fileNum":15128,"id":14184,"width":25,"height":123},{"x":0,"y":0,"fileNum":15129,"id":14185,"width":25,"height":124},{"x":0,"y":0,"fileNum":2201,"id":14186,"width":17,"height":50},{"x":17,"y":0,"fileNum":2201,"id":14187,"width":17,"height":50},{"x":34,"y":0,"fileNum":2201,"id":14188,"width":17,"height":50},{"x":51,"y":0,"fileNum":2201,"id":14189,"width":17,"height":50},{"x":0,"y":0,"fileNum":2202,"id":14190,"width":17,"height":50},{"x":17,"y":0,"fileNum":2202,"id":14191,"width":17,"height":50},{"x":34,"y":0,"fileNum":2202,"id":14192,"width":17,"height":50},{"x":51,"y":0,"fileNum":2202,"id":14193,"width":17,"height":50},{"x":0,"y":0,"fileNum":209,"id":14196,"width":32,"height":32},{"x":0,"y":0,"fileNum":208,"id":14197,"width":25,"height":45},{"x":25,"y":0,"fileNum":208,"id":14198,"width":25,"height":45},{"x":50,"y":0,"fileNum":208,"id":14199,"width":25,"height":45},{"x":75,"y":0,"fileNum":208,"id":14200,"width":25,"height":45},{"x":100,"y":0,"fileNum":208,"id":14201,"width":25,"height":45},{"x":125,"y":0,"fileNum":208,"id":14202,"width":25,"height":45},{"x":0,"y":45,"fileNum":208,"id":14203,"width":25,"height":45},{"x":25,"y":45,"fileNum":208,"id":14204,"width":25,"height":45},{"x":50,"y":45,"fileNum":208,"id":14205,"width":25,"height":45},{"x":75,"y":45,"fileNum":208,"id":14206,"width":25,"height":45},{"x":100,"y":45,"fileNum":208,"id":14207,"width":25,"height":45},{"x":125,"y":45,"fileNum":208,"id":14208,"width":25,"height":45},{"x":0,"y":90,"fileNum":208,"id":14209,"width":25,"height":45},{"x":25,"y":90,"fileNum":208,"id":14210,"width":25,"height":45},{"x":50,"y":90,"fileNum":208,"id":14211,"width":25,"height":45},{"x":75,"y":90,"fileNum":208,"id":14212,"width":25,"height":45},{"x":100,"y":90,"fileNum":208,"id":14213,"width":25,"height":45},{"x":0,"y":135,"fileNum":208,"id":14214,"width":25,"height":45},{"x":25,"y":135,"fileNum":208,"id":14215,"width":25,"height":45},{"x":50,"y":135,"fileNum":208,"id":14216,"width":25,"height":45},{"x":75,"y":135,"fileNum":208,"id":14217,"width":25,"height":45},{"x":100,"y":135,"fileNum":208,"id":14218,"width":25,"height":45},{"x":0,"y":0,"fileNum":211,"id":14223,"width":32,"height":32},{"x":0,"y":0,"fileNum":210,"id":14224,"width":25,"height":45},{"x":25,"y":0,"fileNum":210,"id":14225,"width":25,"height":45},{"x":50,"y":0,"fileNum":210,"id":14226,"width":25,"height":45},{"x":75,"y":0,"fileNum":210,"id":14227,"width":25,"height":45},{"x":100,"y":0,"fileNum":210,"id":14228,"width":25,"height":45},{"x":125,"y":0,"fileNum":210,"id":14229,"width":25,"height":45},{"x":0,"y":45,"fileNum":210,"id":14230,"width":25,"height":45},{"x":25,"y":45,"fileNum":210,"id":14231,"width":25,"height":45},{"x":50,"y":45,"fileNum":210,"id":14232,"width":25,"height":45},{"x":75,"y":45,"fileNum":210,"id":14233,"width":25,"height":45},{"x":100,"y":45,"fileNum":210,"id":14234,"width":25,"height":45},{"x":125,"y":45,"fileNum":210,"id":14235,"width":25,"height":45},{"x":0,"y":90,"fileNum":210,"id":14236,"width":25,"height":45},{"x":25,"y":90,"fileNum":210,"id":14237,"width":25,"height":45},{"x":50,"y":90,"fileNum":210,"id":14238,"width":25,"height":45},{"x":75,"y":90,"fileNum":210,"id":14239,"width":25,"height":45},{"x":100,"y":90,"fileNum":210,"id":14240,"width":25,"height":45},{"x":0,"y":135,"fileNum":210,"id":14241,"width":25,"height":45},{"x":25,"y":135,"fileNum":210,"id":14242,"width":25,"height":45},{"x":50,"y":135,"fileNum":210,"id":14243,"width":25,"height":45},{"x":75,"y":135,"fileNum":210,"id":14244,"width":25,"height":45},{"x":100,"y":135,"fileNum":210,"id":14245,"width":25,"height":45},{"x":0,"y":0,"fileNum":213,"id":14250,"width":32,"height":32},{"x":0,"y":0,"fileNum":212,"id":14251,"width":25,"height":45},{"x":25,"y":0,"fileNum":212,"id":14252,"width":25,"height":45},{"x":50,"y":0,"fileNum":212,"id":14253,"width":25,"height":45},{"x":75,"y":0,"fileNum":212,"id":14254,"width":25,"height":45},{"x":100,"y":0,"fileNum":212,"id":14255,"width":25,"height":45},{"x":125,"y":0,"fileNum":212,"id":14256,"width":25,"height":45},{"x":0,"y":45,"fileNum":212,"id":14257,"width":25,"height":45},{"x":25,"y":45,"fileNum":212,"id":14258,"width":25,"height":45},{"x":50,"y":45,"fileNum":212,"id":14259,"width":25,"height":45},{"x":75,"y":45,"fileNum":212,"id":14260,"width":25,"height":45},{"x":100,"y":45,"fileNum":212,"id":14261,"width":25,"height":45},{"x":125,"y":45,"fileNum":212,"id":14262,"width":25,"height":45},{"x":0,"y":90,"fileNum":212,"id":14263,"width":25,"height":45},{"x":25,"y":90,"fileNum":212,"id":14264,"width":25,"height":45},{"x":50,"y":90,"fileNum":212,"id":14265,"width":25,"height":45},{"x":75,"y":90,"fileNum":212,"id":14266,"width":25,"height":45},{"x":100,"y":90,"fileNum":212,"id":14267,"width":25,"height":45},{"x":0,"y":135,"fileNum":212,"id":14268,"width":25,"height":45},{"x":25,"y":135,"fileNum":212,"id":14269,"width":25,"height":45},{"x":50,"y":135,"fileNum":212,"id":14270,"width":25,"height":45},{"x":75,"y":135,"fileNum":212,"id":14271,"width":25,"height":45},{"x":100,"y":135,"fileNum":212,"id":14272,"width":25,"height":45},{"x":0,"y":0,"fileNum":215,"id":14277,"width":32,"height":32},{"x":0,"y":0,"fileNum":214,"id":14278,"width":25,"height":45},{"x":25,"y":0,"fileNum":214,"id":14279,"width":25,"height":45},{"x":50,"y":0,"fileNum":214,"id":14280,"width":25,"height":45},{"x":75,"y":0,"fileNum":214,"id":14281,"width":25,"height":45},{"x":100,"y":0,"fileNum":214,"id":14282,"width":25,"height":45},{"x":125,"y":0,"fileNum":214,"id":14283,"width":25,"height":45},{"x":0,"y":45,"fileNum":214,"id":14284,"width":25,"height":45},{"x":25,"y":45,"fileNum":214,"id":14285,"width":25,"height":45},{"x":50,"y":45,"fileNum":214,"id":14286,"width":25,"height":45},{"x":75,"y":45,"fileNum":214,"id":14287,"width":25,"height":45},{"x":100,"y":45,"fileNum":214,"id":14288,"width":25,"height":45},{"x":125,"y":45,"fileNum":214,"id":14289,"width":25,"height":45},{"x":0,"y":90,"fileNum":214,"id":14290,"width":25,"height":45},{"x":25,"y":90,"fileNum":214,"id":14291,"width":25,"height":45},{"x":50,"y":90,"fileNum":214,"id":14292,"width":25,"height":45},{"x":75,"y":90,"fileNum":214,"id":14293,"width":25,"height":45},{"x":100,"y":90,"fileNum":214,"id":14294,"width":25,"height":45},{"x":0,"y":135,"fileNum":214,"id":14295,"width":25,"height":45},{"x":25,"y":135,"fileNum":214,"id":14296,"width":25,"height":45},{"x":50,"y":135,"fileNum":214,"id":14297,"width":25,"height":45},{"x":75,"y":135,"fileNum":214,"id":14298,"width":25,"height":45},{"x":100,"y":135,"fileNum":214,"id":14299,"width":25,"height":45},{"x":0,"y":0,"fileNum":217,"id":14304,"width":32,"height":32},{"x":0,"y":0,"fileNum":216,"id":14305,"width":25,"height":45},{"x":25,"y":0,"fileNum":216,"id":14306,"width":25,"height":45},{"x":50,"y":0,"fileNum":216,"id":14307,"width":25,"height":45},{"x":75,"y":0,"fileNum":216,"id":14308,"width":25,"height":45},{"x":100,"y":0,"fileNum":216,"id":14309,"width":25,"height":45},{"x":125,"y":0,"fileNum":216,"id":14310,"width":25,"height":45},{"x":0,"y":45,"fileNum":216,"id":14311,"width":25,"height":45},{"x":25,"y":45,"fileNum":216,"id":14312,"width":25,"height":45},{"x":50,"y":45,"fileNum":216,"id":14313,"width":25,"height":45},{"x":75,"y":45,"fileNum":216,"id":14314,"width":25,"height":45},{"x":100,"y":45,"fileNum":216,"id":14315,"width":25,"height":45},{"x":125,"y":45,"fileNum":216,"id":14316,"width":25,"height":45},{"x":0,"y":90,"fileNum":216,"id":14317,"width":25,"height":45},{"x":25,"y":90,"fileNum":216,"id":14318,"width":25,"height":45},{"x":50,"y":90,"fileNum":216,"id":14319,"width":25,"height":45},{"x":75,"y":90,"fileNum":216,"id":14320,"width":25,"height":45},{"x":100,"y":90,"fileNum":216,"id":14321,"width":25,"height":45},{"x":0,"y":135,"fileNum":216,"id":14322,"width":25,"height":45},{"x":25,"y":135,"fileNum":216,"id":14323,"width":25,"height":45},{"x":50,"y":135,"fileNum":216,"id":14324,"width":25,"height":45},{"x":75,"y":135,"fileNum":216,"id":14325,"width":25,"height":45},{"x":100,"y":135,"fileNum":216,"id":14326,"width":25,"height":45},{"x":0,"y":0,"fileNum":220,"id":14331,"width":32,"height":32},{"x":0,"y":0,"fileNum":219,"id":14332,"width":25,"height":45},{"x":25,"y":0,"fileNum":219,"id":14333,"width":25,"height":45},{"x":50,"y":0,"fileNum":219,"id":14334,"width":25,"height":45},{"x":75,"y":0,"fileNum":219,"id":14335,"width":25,"height":45},{"x":100,"y":0,"fileNum":219,"id":14336,"width":25,"height":45},{"x":125,"y":0,"fileNum":219,"id":14337,"width":25,"height":45},{"x":0,"y":45,"fileNum":219,"id":14338,"width":25,"height":45},{"x":25,"y":45,"fileNum":219,"id":14339,"width":25,"height":45},{"x":50,"y":45,"fileNum":219,"id":14340,"width":25,"height":45},{"x":75,"y":45,"fileNum":219,"id":14341,"width":25,"height":45},{"x":100,"y":45,"fileNum":219,"id":14342,"width":25,"height":45},{"x":125,"y":45,"fileNum":219,"id":14343,"width":25,"height":45},{"x":0,"y":90,"fileNum":219,"id":14344,"width":25,"height":45},{"x":25,"y":90,"fileNum":219,"id":14345,"width":25,"height":45},{"x":50,"y":90,"fileNum":219,"id":14346,"width":25,"height":45},{"x":75,"y":90,"fileNum":219,"id":14347,"width":25,"height":45},{"x":100,"y":90,"fileNum":219,"id":14348,"width":25,"height":45},{"x":0,"y":135,"fileNum":219,"id":14349,"width":25,"height":45},{"x":25,"y":135,"fileNum":219,"id":14350,"width":25,"height":45},{"x":50,"y":135,"fileNum":219,"id":14351,"width":25,"height":45},{"x":75,"y":135,"fileNum":219,"id":14352,"width":25,"height":45},{"x":100,"y":135,"fileNum":219,"id":14353,"width":25,"height":45},{"x":0,"y":0,"fileNum":222,"id":14358,"width":32,"height":32},{"x":0,"y":0,"fileNum":221,"id":14359,"width":25,"height":45},{"x":25,"y":0,"fileNum":221,"id":14360,"width":25,"height":45},{"x":50,"y":0,"fileNum":221,"id":14361,"width":25,"height":45},{"x":75,"y":0,"fileNum":221,"id":14362,"width":25,"height":45},{"x":100,"y":0,"fileNum":221,"id":14363,"width":25,"height":45},{"x":125,"y":0,"fileNum":221,"id":14364,"width":25,"height":45},{"x":0,"y":45,"fileNum":221,"id":14365,"width":25,"height":45},{"x":25,"y":45,"fileNum":221,"id":14366,"width":25,"height":45},{"x":50,"y":45,"fileNum":221,"id":14367,"width":25,"height":45},{"x":75,"y":45,"fileNum":221,"id":14368,"width":25,"height":45},{"x":100,"y":45,"fileNum":221,"id":14369,"width":25,"height":45},{"x":125,"y":45,"fileNum":221,"id":14370,"width":25,"height":45},{"x":0,"y":90,"fileNum":221,"id":14371,"width":25,"height":45},{"x":25,"y":90,"fileNum":221,"id":14372,"width":25,"height":45},{"x":50,"y":90,"fileNum":221,"id":14373,"width":25,"height":45},{"x":75,"y":90,"fileNum":221,"id":14374,"width":25,"height":45},{"x":100,"y":90,"fileNum":221,"id":14375,"width":25,"height":45},{"x":0,"y":135,"fileNum":221,"id":14376,"width":25,"height":45},{"x":25,"y":135,"fileNum":221,"id":14377,"width":25,"height":45},{"x":50,"y":135,"fileNum":221,"id":14378,"width":25,"height":45},{"x":75,"y":135,"fileNum":221,"id":14379,"width":25,"height":45},{"x":100,"y":135,"fileNum":221,"id":14380,"width":25,"height":45},{"x":0,"y":0,"fileNum":224,"id":14385,"width":32,"height":32},{"x":0,"y":0,"fileNum":223,"id":14386,"width":25,"height":45},{"x":25,"y":0,"fileNum":223,"id":14387,"width":25,"height":45},{"x":50,"y":0,"fileNum":223,"id":14388,"width":25,"height":45},{"x":75,"y":0,"fileNum":223,"id":14389,"width":25,"height":45},{"x":100,"y":0,"fileNum":223,"id":14390,"width":25,"height":45},{"x":125,"y":0,"fileNum":223,"id":14391,"width":25,"height":45},{"x":0,"y":45,"fileNum":223,"id":14392,"width":25,"height":45},{"x":25,"y":45,"fileNum":223,"id":14393,"width":25,"height":45},{"x":50,"y":45,"fileNum":223,"id":14394,"width":25,"height":45},{"x":75,"y":45,"fileNum":223,"id":14395,"width":25,"height":45},{"x":100,"y":45,"fileNum":223,"id":14396,"width":25,"height":45},{"x":125,"y":45,"fileNum":223,"id":14397,"width":25,"height":45},{"x":0,"y":90,"fileNum":223,"id":14398,"width":25,"height":45},{"x":25,"y":90,"fileNum":223,"id":14399,"width":25,"height":45},{"x":50,"y":90,"fileNum":223,"id":14400,"width":25,"height":45},{"x":75,"y":90,"fileNum":223,"id":14401,"width":25,"height":45},{"x":100,"y":90,"fileNum":223,"id":14402,"width":25,"height":45},{"x":0,"y":135,"fileNum":223,"id":14403,"width":25,"height":45},{"x":25,"y":135,"fileNum":223,"id":14404,"width":25,"height":45},{"x":50,"y":135,"fileNum":223,"id":14405,"width":25,"height":45},{"x":75,"y":135,"fileNum":223,"id":14406,"width":25,"height":45},{"x":100,"y":135,"fileNum":223,"id":14407,"width":25,"height":45},{"x":0,"y":0,"fileNum":226,"id":14412,"width":32,"height":32},{"x":0,"y":0,"fileNum":225,"id":14413,"width":25,"height":45},{"x":25,"y":0,"fileNum":225,"id":14414,"width":25,"height":45},{"x":50,"y":0,"fileNum":225,"id":14415,"width":25,"height":45},{"x":75,"y":0,"fileNum":225,"id":14416,"width":25,"height":45},{"x":100,"y":0,"fileNum":225,"id":14417,"width":25,"height":45},{"x":125,"y":0,"fileNum":225,"id":14418,"width":25,"height":45},{"x":0,"y":45,"fileNum":225,"id":14419,"width":25,"height":45},{"x":25,"y":45,"fileNum":225,"id":14420,"width":25,"height":45},{"x":50,"y":45,"fileNum":225,"id":14421,"width":25,"height":45},{"x":75,"y":45,"fileNum":225,"id":14422,"width":25,"height":45},{"x":100,"y":45,"fileNum":225,"id":14423,"width":25,"height":45},{"x":125,"y":45,"fileNum":225,"id":14424,"width":25,"height":45},{"x":0,"y":90,"fileNum":225,"id":14425,"width":25,"height":45},{"x":25,"y":90,"fileNum":225,"id":14426,"width":25,"height":45},{"x":50,"y":90,"fileNum":225,"id":14427,"width":25,"height":45},{"x":75,"y":90,"fileNum":225,"id":14428,"width":25,"height":45},{"x":100,"y":90,"fileNum":225,"id":14429,"width":25,"height":45},{"x":0,"y":135,"fileNum":225,"id":14430,"width":25,"height":45},{"x":25,"y":135,"fileNum":225,"id":14431,"width":25,"height":45},{"x":50,"y":135,"fileNum":225,"id":14432,"width":25,"height":45},{"x":75,"y":135,"fileNum":225,"id":14433,"width":25,"height":45},{"x":100,"y":135,"fileNum":225,"id":14434,"width":25,"height":45},{"x":0,"y":0,"fileNum":231,"id":14439,"width":32,"height":32},{"x":0,"y":0,"fileNum":230,"id":14440,"width":25,"height":45},{"x":25,"y":0,"fileNum":230,"id":14441,"width":25,"height":45},{"x":50,"y":0,"fileNum":230,"id":14442,"width":25,"height":45},{"x":75,"y":0,"fileNum":230,"id":14443,"width":25,"height":45},{"x":100,"y":0,"fileNum":230,"id":14444,"width":25,"height":45},{"x":125,"y":0,"fileNum":230,"id":14445,"width":25,"height":45},{"x":0,"y":45,"fileNum":230,"id":14446,"width":25,"height":45},{"x":25,"y":45,"fileNum":230,"id":14447,"width":25,"height":45},{"x":50,"y":45,"fileNum":230,"id":14448,"width":25,"height":45},{"x":75,"y":45,"fileNum":230,"id":14449,"width":25,"height":45},{"x":100,"y":45,"fileNum":230,"id":14450,"width":25,"height":45},{"x":125,"y":45,"fileNum":230,"id":14451,"width":25,"height":45},{"x":0,"y":90,"fileNum":230,"id":14452,"width":25,"height":45},{"x":25,"y":90,"fileNum":230,"id":14453,"width":25,"height":45},{"x":50,"y":90,"fileNum":230,"id":14454,"width":25,"height":45},{"x":75,"y":90,"fileNum":230,"id":14455,"width":25,"height":45},{"x":100,"y":90,"fileNum":230,"id":14456,"width":25,"height":45},{"x":0,"y":135,"fileNum":230,"id":14457,"width":25,"height":45},{"x":25,"y":135,"fileNum":230,"id":14458,"width":25,"height":45},{"x":50,"y":135,"fileNum":230,"id":14459,"width":25,"height":45},{"x":75,"y":135,"fileNum":230,"id":14460,"width":25,"height":45},{"x":100,"y":135,"fileNum":230,"id":14461,"width":25,"height":45},{"x":0,"y":0,"fileNum":233,"id":14466,"width":32,"height":32},{"x":0,"y":0,"fileNum":232,"id":14467,"width":25,"height":45},{"x":25,"y":0,"fileNum":232,"id":14468,"width":25,"height":45},{"x":50,"y":0,"fileNum":232,"id":14469,"width":25,"height":45},{"x":75,"y":0,"fileNum":232,"id":14470,"width":25,"height":45},{"x":100,"y":0,"fileNum":232,"id":14471,"width":25,"height":45},{"x":125,"y":0,"fileNum":232,"id":14472,"width":25,"height":45},{"x":0,"y":45,"fileNum":232,"id":14473,"width":25,"height":45},{"x":25,"y":45,"fileNum":232,"id":14474,"width":25,"height":45},{"x":50,"y":45,"fileNum":232,"id":14475,"width":25,"height":45},{"x":75,"y":45,"fileNum":232,"id":14476,"width":25,"height":45},{"x":100,"y":45,"fileNum":232,"id":14477,"width":25,"height":45},{"x":125,"y":45,"fileNum":232,"id":14478,"width":25,"height":45},{"x":0,"y":90,"fileNum":232,"id":14479,"width":25,"height":45},{"x":25,"y":90,"fileNum":232,"id":14480,"width":25,"height":45},{"x":50,"y":90,"fileNum":232,"id":14481,"width":25,"height":45},{"x":75,"y":90,"fileNum":232,"id":14482,"width":25,"height":45},{"x":100,"y":90,"fileNum":232,"id":14483,"width":25,"height":45},{"x":0,"y":135,"fileNum":232,"id":14484,"width":25,"height":45},{"x":25,"y":135,"fileNum":232,"id":14485,"width":25,"height":45},{"x":50,"y":135,"fileNum":232,"id":14486,"width":25,"height":45},{"x":75,"y":135,"fileNum":232,"id":14487,"width":25,"height":45},{"x":100,"y":135,"fileNum":232,"id":14488,"width":25,"height":45},{"x":0,"y":0,"fileNum":228,"id":14493,"width":32,"height":32},{"x":0,"y":0,"fileNum":227,"id":14494,"width":25,"height":45},{"x":25,"y":0,"fileNum":227,"id":14495,"width":25,"height":45},{"x":50,"y":0,"fileNum":227,"id":14496,"width":25,"height":45},{"x":75,"y":0,"fileNum":227,"id":14497,"width":25,"height":45},{"x":100,"y":0,"fileNum":227,"id":14498,"width":25,"height":45},{"x":125,"y":0,"fileNum":227,"id":14499,"width":25,"height":45},{"x":0,"y":45,"fileNum":227,"id":14500,"width":25,"height":45},{"x":25,"y":45,"fileNum":227,"id":14501,"width":25,"height":45},{"x":50,"y":45,"fileNum":227,"id":14502,"width":25,"height":45},{"x":75,"y":45,"fileNum":227,"id":14503,"width":25,"height":45},{"x":100,"y":45,"fileNum":227,"id":14504,"width":25,"height":45},{"x":125,"y":45,"fileNum":227,"id":14505,"width":25,"height":45},{"x":0,"y":90,"fileNum":227,"id":14506,"width":25,"height":45},{"x":25,"y":90,"fileNum":227,"id":14507,"width":25,"height":45},{"x":50,"y":90,"fileNum":227,"id":14508,"width":25,"height":45},{"x":75,"y":90,"fileNum":227,"id":14509,"width":25,"height":45},{"x":100,"y":90,"fileNum":227,"id":14510,"width":25,"height":45},{"x":0,"y":135,"fileNum":227,"id":14511,"width":25,"height":45},{"x":25,"y":135,"fileNum":227,"id":14512,"width":25,"height":45},{"x":50,"y":135,"fileNum":227,"id":14513,"width":25,"height":45},{"x":75,"y":135,"fileNum":227,"id":14514,"width":25,"height":45},{"x":100,"y":135,"fileNum":227,"id":14515,"width":25,"height":45},{"x":0,"y":0,"fileNum":235,"id":14520,"width":32,"height":32},{"x":0,"y":0,"fileNum":234,"id":14521,"width":25,"height":45},{"x":25,"y":0,"fileNum":234,"id":14522,"width":25,"height":45},{"x":50,"y":0,"fileNum":234,"id":14523,"width":25,"height":45},{"x":75,"y":0,"fileNum":234,"id":14524,"width":25,"height":45},{"x":100,"y":0,"fileNum":234,"id":14525,"width":25,"height":45},{"x":125,"y":0,"fileNum":234,"id":14526,"width":25,"height":45},{"x":0,"y":45,"fileNum":234,"id":14527,"width":25,"height":45},{"x":25,"y":45,"fileNum":234,"id":14528,"width":25,"height":45},{"x":50,"y":45,"fileNum":234,"id":14529,"width":25,"height":45},{"x":75,"y":45,"fileNum":234,"id":14530,"width":25,"height":45},{"x":100,"y":45,"fileNum":234,"id":14531,"width":25,"height":45},{"x":125,"y":45,"fileNum":234,"id":14532,"width":25,"height":45},{"x":0,"y":90,"fileNum":234,"id":14533,"width":25,"height":45},{"x":25,"y":90,"fileNum":234,"id":14534,"width":25,"height":45},{"x":50,"y":90,"fileNum":234,"id":14535,"width":25,"height":45},{"x":75,"y":90,"fileNum":234,"id":14536,"width":25,"height":45},{"x":100,"y":90,"fileNum":234,"id":14537,"width":25,"height":45},{"x":0,"y":135,"fileNum":234,"id":14538,"width":25,"height":45},{"x":25,"y":135,"fileNum":234,"id":14539,"width":25,"height":45},{"x":50,"y":135,"fileNum":234,"id":14540,"width":25,"height":45},{"x":75,"y":135,"fileNum":234,"id":14541,"width":25,"height":45},{"x":100,"y":135,"fileNum":234,"id":14542,"width":25,"height":45},{"x":0,"y":0,"fileNum":237,"id":14547,"width":32,"height":32},{"x":0,"y":0,"fileNum":236,"id":14548,"width":25,"height":45},{"x":25,"y":0,"fileNum":236,"id":14549,"width":25,"height":45},{"x":50,"y":0,"fileNum":236,"id":14550,"width":25,"height":45},{"x":75,"y":0,"fileNum":236,"id":14551,"width":25,"height":45},{"x":100,"y":0,"fileNum":236,"id":14552,"width":25,"height":45},{"x":125,"y":0,"fileNum":236,"id":14553,"width":25,"height":45},{"x":0,"y":45,"fileNum":236,"id":14554,"width":25,"height":45},{"x":25,"y":45,"fileNum":236,"id":14555,"width":25,"height":45},{"x":50,"y":45,"fileNum":236,"id":14556,"width":25,"height":45},{"x":75,"y":45,"fileNum":236,"id":14557,"width":25,"height":45},{"x":100,"y":45,"fileNum":236,"id":14558,"width":25,"height":45},{"x":125,"y":45,"fileNum":236,"id":14559,"width":25,"height":45},{"x":0,"y":90,"fileNum":236,"id":14560,"width":25,"height":45},{"x":25,"y":90,"fileNum":236,"id":14561,"width":25,"height":45},{"x":50,"y":90,"fileNum":236,"id":14562,"width":25,"height":45},{"x":75,"y":90,"fileNum":236,"id":14563,"width":25,"height":45},{"x":100,"y":90,"fileNum":236,"id":14564,"width":25,"height":45},{"x":0,"y":135,"fileNum":236,"id":14565,"width":25,"height":45},{"x":25,"y":135,"fileNum":236,"id":14566,"width":25,"height":45},{"x":50,"y":135,"fileNum":236,"id":14567,"width":25,"height":45},{"x":75,"y":135,"fileNum":236,"id":14568,"width":25,"height":45},{"x":100,"y":135,"fileNum":236,"id":14569,"width":25,"height":45},{"x":0,"y":0,"fileNum":239,"id":14574,"width":32,"height":32},{"x":0,"y":0,"fileNum":238,"id":14575,"width":25,"height":45},{"x":25,"y":0,"fileNum":238,"id":14576,"width":25,"height":45},{"x":50,"y":0,"fileNum":238,"id":14577,"width":25,"height":45},{"x":75,"y":0,"fileNum":238,"id":14578,"width":25,"height":45},{"x":100,"y":0,"fileNum":238,"id":14579,"width":25,"height":45},{"x":125,"y":0,"fileNum":238,"id":14580,"width":25,"height":45},{"x":0,"y":45,"fileNum":238,"id":14581,"width":25,"height":45},{"x":25,"y":45,"fileNum":238,"id":14582,"width":25,"height":45},{"x":50,"y":45,"fileNum":238,"id":14583,"width":25,"height":45},{"x":75,"y":45,"fileNum":238,"id":14584,"width":25,"height":45},{"x":100,"y":45,"fileNum":238,"id":14585,"width":25,"height":45},{"x":125,"y":45,"fileNum":238,"id":14586,"width":25,"height":45},{"x":0,"y":90,"fileNum":238,"id":14587,"width":25,"height":45},{"x":25,"y":90,"fileNum":238,"id":14588,"width":25,"height":45},{"x":50,"y":90,"fileNum":238,"id":14589,"width":25,"height":45},{"x":75,"y":90,"fileNum":238,"id":14590,"width":25,"height":45},{"x":100,"y":90,"fileNum":238,"id":14591,"width":25,"height":45},{"x":0,"y":135,"fileNum":238,"id":14592,"width":25,"height":45},{"x":25,"y":135,"fileNum":238,"id":14593,"width":25,"height":45},{"x":50,"y":135,"fileNum":238,"id":14594,"width":25,"height":45},{"x":75,"y":135,"fileNum":238,"id":14595,"width":25,"height":45},{"x":100,"y":135,"fileNum":238,"id":14596,"width":25,"height":45},{"x":0,"y":0,"fileNum":241,"id":14601,"width":32,"height":32},{"x":0,"y":0,"fileNum":240,"id":14602,"width":25,"height":45},{"x":25,"y":0,"fileNum":240,"id":14603,"width":25,"height":45},{"x":50,"y":0,"fileNum":240,"id":14604,"width":25,"height":45},{"x":75,"y":0,"fileNum":240,"id":14605,"width":25,"height":45},{"x":100,"y":0,"fileNum":240,"id":14606,"width":25,"height":45},{"x":125,"y":0,"fileNum":240,"id":14607,"width":25,"height":45},{"x":0,"y":45,"fileNum":240,"id":14608,"width":25,"height":45},{"x":25,"y":45,"fileNum":240,"id":14609,"width":25,"height":45},{"x":50,"y":45,"fileNum":240,"id":14610,"width":25,"height":45},{"x":75,"y":45,"fileNum":240,"id":14611,"width":25,"height":45},{"x":100,"y":45,"fileNum":240,"id":14612,"width":25,"height":45},{"x":125,"y":45,"fileNum":240,"id":14613,"width":25,"height":45},{"x":0,"y":90,"fileNum":240,"id":14614,"width":25,"height":45},{"x":25,"y":90,"fileNum":240,"id":14615,"width":25,"height":45},{"x":50,"y":90,"fileNum":240,"id":14616,"width":25,"height":45},{"x":75,"y":90,"fileNum":240,"id":14617,"width":25,"height":45},{"x":100,"y":90,"fileNum":240,"id":14618,"width":25,"height":45},{"x":0,"y":135,"fileNum":240,"id":14619,"width":25,"height":45},{"x":25,"y":135,"fileNum":240,"id":14620,"width":25,"height":45},{"x":50,"y":135,"fileNum":240,"id":14621,"width":25,"height":45},{"x":75,"y":135,"fileNum":240,"id":14622,"width":25,"height":45},{"x":100,"y":135,"fileNum":240,"id":14623,"width":25,"height":45},{"x":0,"y":0,"fileNum":243,"id":14628,"width":32,"height":32},{"x":0,"y":0,"fileNum":242,"id":14629,"width":25,"height":45},{"x":25,"y":0,"fileNum":242,"id":14630,"width":25,"height":45},{"x":50,"y":0,"fileNum":242,"id":14631,"width":25,"height":45},{"x":75,"y":0,"fileNum":242,"id":14632,"width":25,"height":45},{"x":100,"y":0,"fileNum":242,"id":14633,"width":25,"height":45},{"x":125,"y":0,"fileNum":242,"id":14634,"width":25,"height":45},{"x":0,"y":45,"fileNum":242,"id":14635,"width":25,"height":45},{"x":25,"y":45,"fileNum":242,"id":14636,"width":25,"height":45},{"x":50,"y":45,"fileNum":242,"id":14637,"width":25,"height":45},{"x":75,"y":45,"fileNum":242,"id":14638,"width":25,"height":45},{"x":100,"y":45,"fileNum":242,"id":14639,"width":25,"height":45},{"x":125,"y":45,"fileNum":242,"id":14640,"width":25,"height":45},{"x":0,"y":90,"fileNum":242,"id":14641,"width":25,"height":45},{"x":25,"y":90,"fileNum":242,"id":14642,"width":25,"height":45},{"x":50,"y":90,"fileNum":242,"id":14643,"width":25,"height":45},{"x":75,"y":90,"fileNum":242,"id":14644,"width":25,"height":45},{"x":100,"y":90,"fileNum":242,"id":14645,"width":25,"height":45},{"x":0,"y":135,"fileNum":242,"id":14646,"width":25,"height":45},{"x":25,"y":135,"fileNum":242,"id":14647,"width":25,"height":45},{"x":50,"y":135,"fileNum":242,"id":14648,"width":25,"height":45},{"x":75,"y":135,"fileNum":242,"id":14649,"width":25,"height":45},{"x":100,"y":135,"fileNum":242,"id":14650,"width":25,"height":45},{"x":0,"y":0,"fileNum":245,"id":14655,"width":32,"height":32},{"x":0,"y":0,"fileNum":244,"id":14656,"width":25,"height":45},{"x":25,"y":0,"fileNum":244,"id":14657,"width":25,"height":45},{"x":50,"y":0,"fileNum":244,"id":14658,"width":25,"height":45},{"x":75,"y":0,"fileNum":244,"id":14659,"width":25,"height":45},{"x":100,"y":0,"fileNum":244,"id":14660,"width":25,"height":45},{"x":125,"y":0,"fileNum":244,"id":14661,"width":25,"height":45},{"x":0,"y":45,"fileNum":244,"id":14662,"width":25,"height":45},{"x":25,"y":45,"fileNum":244,"id":14663,"width":25,"height":45},{"x":50,"y":45,"fileNum":244,"id":14664,"width":25,"height":45},{"x":75,"y":45,"fileNum":244,"id":14665,"width":25,"height":45},{"x":100,"y":45,"fileNum":244,"id":14666,"width":25,"height":45},{"x":125,"y":45,"fileNum":244,"id":14667,"width":25,"height":45},{"x":0,"y":90,"fileNum":244,"id":14668,"width":25,"height":45},{"x":25,"y":90,"fileNum":244,"id":14669,"width":25,"height":45},{"x":50,"y":90,"fileNum":244,"id":14670,"width":25,"height":45},{"x":75,"y":90,"fileNum":244,"id":14671,"width":25,"height":45},{"x":100,"y":90,"fileNum":244,"id":14672,"width":25,"height":45},{"x":0,"y":135,"fileNum":244,"id":14673,"width":25,"height":45},{"x":25,"y":135,"fileNum":244,"id":14674,"width":25,"height":45},{"x":50,"y":135,"fileNum":244,"id":14675,"width":25,"height":45},{"x":75,"y":135,"fileNum":244,"id":14676,"width":25,"height":45},{"x":100,"y":135,"fileNum":244,"id":14677,"width":25,"height":45},{"x":0,"y":0,"fileNum":247,"id":14682,"width":32,"height":32},{"x":0,"y":0,"fileNum":246,"id":14683,"width":25,"height":45},{"x":25,"y":0,"fileNum":246,"id":14684,"width":25,"height":45},{"x":50,"y":0,"fileNum":246,"id":14685,"width":25,"height":45},{"x":75,"y":0,"fileNum":246,"id":14686,"width":25,"height":45},{"x":100,"y":0,"fileNum":246,"id":14687,"width":25,"height":45},{"x":125,"y":0,"fileNum":246,"id":14688,"width":25,"height":45},{"x":0,"y":45,"fileNum":246,"id":14689,"width":25,"height":45},{"x":25,"y":45,"fileNum":246,"id":14690,"width":25,"height":45},{"x":50,"y":45,"fileNum":246,"id":14691,"width":25,"height":45},{"x":75,"y":45,"fileNum":246,"id":14692,"width":25,"height":45},{"x":100,"y":45,"fileNum":246,"id":14693,"width":25,"height":45},{"x":125,"y":45,"fileNum":246,"id":14694,"width":25,"height":45},{"x":0,"y":90,"fileNum":246,"id":14695,"width":25,"height":45},{"x":25,"y":90,"fileNum":246,"id":14696,"width":25,"height":45},{"x":50,"y":90,"fileNum":246,"id":14697,"width":25,"height":45},{"x":75,"y":90,"fileNum":246,"id":14698,"width":25,"height":45},{"x":100,"y":90,"fileNum":246,"id":14699,"width":25,"height":45},{"x":0,"y":135,"fileNum":246,"id":14700,"width":25,"height":45},{"x":25,"y":135,"fileNum":246,"id":14701,"width":25,"height":45},{"x":50,"y":135,"fileNum":246,"id":14702,"width":25,"height":45},{"x":75,"y":135,"fileNum":246,"id":14703,"width":25,"height":45},{"x":100,"y":135,"fileNum":246,"id":14704,"width":25,"height":45},{"x":0,"y":0,"fileNum":249,"id":14709,"width":32,"height":32},{"x":0,"y":0,"fileNum":248,"id":14710,"width":25,"height":45},{"x":25,"y":0,"fileNum":248,"id":14711,"width":25,"height":45},{"x":50,"y":0,"fileNum":248,"id":14712,"width":25,"height":45},{"x":75,"y":0,"fileNum":248,"id":14713,"width":25,"height":45},{"x":100,"y":0,"fileNum":248,"id":14714,"width":25,"height":45},{"x":125,"y":0,"fileNum":248,"id":14715,"width":25,"height":45},{"x":0,"y":45,"fileNum":248,"id":14716,"width":25,"height":45},{"x":25,"y":45,"fileNum":248,"id":14717,"width":25,"height":45},{"x":50,"y":45,"fileNum":248,"id":14718,"width":25,"height":45},{"x":75,"y":45,"fileNum":248,"id":14719,"width":25,"height":45},{"x":100,"y":45,"fileNum":248,"id":14720,"width":25,"height":45},{"x":125,"y":45,"fileNum":248,"id":14721,"width":25,"height":45},{"x":0,"y":90,"fileNum":248,"id":14722,"width":25,"height":45},{"x":25,"y":90,"fileNum":248,"id":14723,"width":25,"height":45},{"x":50,"y":90,"fileNum":248,"id":14724,"width":25,"height":45},{"x":75,"y":90,"fileNum":248,"id":14725,"width":25,"height":45},{"x":100,"y":90,"fileNum":248,"id":14726,"width":25,"height":45},{"x":0,"y":135,"fileNum":248,"id":14727,"width":25,"height":45},{"x":25,"y":135,"fileNum":248,"id":14728,"width":25,"height":45},{"x":50,"y":135,"fileNum":248,"id":14729,"width":25,"height":45},{"x":75,"y":135,"fileNum":248,"id":14730,"width":25,"height":45},{"x":100,"y":135,"fileNum":248,"id":14731,"width":25,"height":45},{"x":0,"y":0,"fileNum":251,"id":14736,"width":32,"height":32},{"x":0,"y":0,"fileNum":250,"id":14737,"width":25,"height":45},{"x":25,"y":0,"fileNum":250,"id":14738,"width":25,"height":45},{"x":50,"y":0,"fileNum":250,"id":14739,"width":25,"height":45},{"x":75,"y":0,"fileNum":250,"id":14740,"width":25,"height":45},{"x":100,"y":0,"fileNum":250,"id":14741,"width":25,"height":45},{"x":125,"y":0,"fileNum":250,"id":14742,"width":25,"height":45},{"x":0,"y":45,"fileNum":250,"id":14743,"width":25,"height":45},{"x":25,"y":45,"fileNum":250,"id":14744,"width":25,"height":45},{"x":50,"y":45,"fileNum":250,"id":14745,"width":25,"height":45},{"x":75,"y":45,"fileNum":250,"id":14746,"width":25,"height":45},{"x":100,"y":45,"fileNum":250,"id":14747,"width":25,"height":45},{"x":125,"y":45,"fileNum":250,"id":14748,"width":25,"height":45},{"x":0,"y":90,"fileNum":250,"id":14749,"width":25,"height":45},{"x":25,"y":90,"fileNum":250,"id":14750,"width":25,"height":45},{"x":50,"y":90,"fileNum":250,"id":14751,"width":25,"height":45},{"x":75,"y":90,"fileNum":250,"id":14752,"width":25,"height":45},{"x":100,"y":90,"fileNum":250,"id":14753,"width":25,"height":45},{"x":0,"y":135,"fileNum":250,"id":14754,"width":25,"height":45},{"x":25,"y":135,"fileNum":250,"id":14755,"width":25,"height":45},{"x":50,"y":135,"fileNum":250,"id":14756,"width":25,"height":45},{"x":75,"y":135,"fileNum":250,"id":14757,"width":25,"height":45},{"x":100,"y":135,"fileNum":250,"id":14758,"width":25,"height":45},{"x":0,"y":0,"fileNum":253,"id":14763,"width":32,"height":32},{"x":0,"y":0,"fileNum":252,"id":14764,"width":25,"height":45},{"x":25,"y":0,"fileNum":252,"id":14765,"width":25,"height":45},{"x":50,"y":0,"fileNum":252,"id":14766,"width":25,"height":45},{"x":75,"y":0,"fileNum":252,"id":14767,"width":25,"height":45},{"x":100,"y":0,"fileNum":252,"id":14768,"width":25,"height":45},{"x":125,"y":0,"fileNum":252,"id":14769,"width":25,"height":45},{"x":0,"y":45,"fileNum":252,"id":14770,"width":25,"height":45},{"x":25,"y":45,"fileNum":252,"id":14771,"width":25,"height":45},{"x":50,"y":45,"fileNum":252,"id":14772,"width":25,"height":45},{"x":75,"y":45,"fileNum":252,"id":14773,"width":25,"height":45},{"x":100,"y":45,"fileNum":252,"id":14774,"width":25,"height":45},{"x":125,"y":45,"fileNum":252,"id":14775,"width":25,"height":45},{"x":0,"y":90,"fileNum":252,"id":14776,"width":25,"height":45},{"x":25,"y":90,"fileNum":252,"id":14777,"width":25,"height":45},{"x":50,"y":90,"fileNum":252,"id":14778,"width":25,"height":45},{"x":75,"y":90,"fileNum":252,"id":14779,"width":25,"height":45},{"x":100,"y":90,"fileNum":252,"id":14780,"width":25,"height":45},{"x":0,"y":135,"fileNum":252,"id":14781,"width":25,"height":45},{"x":25,"y":135,"fileNum":252,"id":14782,"width":25,"height":45},{"x":50,"y":135,"fileNum":252,"id":14783,"width":25,"height":45},{"x":75,"y":135,"fileNum":252,"id":14784,"width":25,"height":45},{"x":100,"y":135,"fileNum":252,"id":14785,"width":25,"height":45},{"x":0,"y":0,"fileNum":255,"id":14790,"width":32,"height":32},{"x":0,"y":0,"fileNum":254,"id":14791,"width":25,"height":45},{"x":25,"y":0,"fileNum":254,"id":14792,"width":25,"height":45},{"x":50,"y":0,"fileNum":254,"id":14793,"width":25,"height":45},{"x":75,"y":0,"fileNum":254,"id":14794,"width":25,"height":45},{"x":100,"y":0,"fileNum":254,"id":14795,"width":25,"height":45},{"x":125,"y":0,"fileNum":254,"id":14796,"width":25,"height":45},{"x":0,"y":45,"fileNum":254,"id":14797,"width":25,"height":45},{"x":25,"y":45,"fileNum":254,"id":14798,"width":25,"height":45},{"x":50,"y":45,"fileNum":254,"id":14799,"width":25,"height":45},{"x":75,"y":45,"fileNum":254,"id":14800,"width":25,"height":45},{"x":100,"y":45,"fileNum":254,"id":14801,"width":25,"height":45},{"x":125,"y":45,"fileNum":254,"id":14802,"width":25,"height":45},{"x":0,"y":90,"fileNum":254,"id":14803,"width":25,"height":45},{"x":25,"y":90,"fileNum":254,"id":14804,"width":25,"height":45},{"x":50,"y":90,"fileNum":254,"id":14805,"width":25,"height":45},{"x":75,"y":90,"fileNum":254,"id":14806,"width":25,"height":45},{"x":100,"y":90,"fileNum":254,"id":14807,"width":25,"height":45},{"x":0,"y":135,"fileNum":254,"id":14808,"width":25,"height":45},{"x":25,"y":135,"fileNum":254,"id":14809,"width":25,"height":45},{"x":50,"y":135,"fileNum":254,"id":14810,"width":25,"height":45},{"x":75,"y":135,"fileNum":254,"id":14811,"width":25,"height":45},{"x":100,"y":135,"fileNum":254,"id":14812,"width":25,"height":45},{"x":0,"y":0,"fileNum":257,"id":14817,"width":32,"height":32},{"x":0,"y":0,"fileNum":256,"id":14818,"width":25,"height":45},{"x":25,"y":0,"fileNum":256,"id":14819,"width":25,"height":45},{"x":50,"y":0,"fileNum":256,"id":14820,"width":25,"height":45},{"x":75,"y":0,"fileNum":256,"id":14821,"width":25,"height":45},{"x":100,"y":0,"fileNum":256,"id":14822,"width":25,"height":45},{"x":125,"y":0,"fileNum":256,"id":14823,"width":25,"height":45},{"x":0,"y":45,"fileNum":256,"id":14824,"width":25,"height":45},{"x":25,"y":45,"fileNum":256,"id":14825,"width":25,"height":45},{"x":50,"y":45,"fileNum":256,"id":14826,"width":25,"height":45},{"x":75,"y":45,"fileNum":256,"id":14827,"width":25,"height":45},{"x":100,"y":45,"fileNum":256,"id":14828,"width":25,"height":45},{"x":125,"y":45,"fileNum":256,"id":14829,"width":25,"height":45},{"x":0,"y":90,"fileNum":256,"id":14830,"width":25,"height":45},{"x":25,"y":90,"fileNum":256,"id":14831,"width":25,"height":45},{"x":50,"y":90,"fileNum":256,"id":14832,"width":25,"height":45},{"x":75,"y":90,"fileNum":256,"id":14833,"width":25,"height":45},{"x":100,"y":90,"fileNum":256,"id":14834,"width":25,"height":45},{"x":0,"y":135,"fileNum":256,"id":14835,"width":25,"height":45},{"x":25,"y":135,"fileNum":256,"id":14836,"width":25,"height":45},{"x":50,"y":135,"fileNum":256,"id":14837,"width":25,"height":45},{"x":75,"y":135,"fileNum":256,"id":14838,"width":25,"height":45},{"x":100,"y":135,"fileNum":256,"id":14839,"width":25,"height":45},{"x":0,"y":0,"fileNum":259,"id":14844,"width":32,"height":32},{"x":0,"y":0,"fileNum":258,"id":14845,"width":25,"height":45},{"x":25,"y":0,"fileNum":258,"id":14846,"width":25,"height":45},{"x":50,"y":0,"fileNum":258,"id":14847,"width":25,"height":45},{"x":75,"y":0,"fileNum":258,"id":14848,"width":25,"height":45},{"x":100,"y":0,"fileNum":258,"id":14849,"width":25,"height":45},{"x":125,"y":0,"fileNum":258,"id":14850,"width":25,"height":45},{"x":0,"y":45,"fileNum":258,"id":14851,"width":25,"height":45},{"x":25,"y":45,"fileNum":258,"id":14852,"width":25,"height":45},{"x":50,"y":45,"fileNum":258,"id":14853,"width":25,"height":45},{"x":75,"y":45,"fileNum":258,"id":14854,"width":25,"height":45},{"x":100,"y":45,"fileNum":258,"id":14855,"width":25,"height":45},{"x":125,"y":45,"fileNum":258,"id":14856,"width":25,"height":45},{"x":0,"y":90,"fileNum":258,"id":14857,"width":25,"height":45},{"x":25,"y":90,"fileNum":258,"id":14858,"width":25,"height":45},{"x":50,"y":90,"fileNum":258,"id":14859,"width":25,"height":45},{"x":75,"y":90,"fileNum":258,"id":14860,"width":25,"height":45},{"x":100,"y":90,"fileNum":258,"id":14861,"width":25,"height":45},{"x":0,"y":135,"fileNum":258,"id":14862,"width":25,"height":45},{"x":25,"y":135,"fileNum":258,"id":14863,"width":25,"height":45},{"x":50,"y":135,"fileNum":258,"id":14864,"width":25,"height":45},{"x":75,"y":135,"fileNum":258,"id":14865,"width":25,"height":45},{"x":100,"y":135,"fileNum":258,"id":14866,"width":25,"height":45},{"x":0,"y":0,"fileNum":261,"id":14871,"width":32,"height":32},{"x":0,"y":0,"fileNum":260,"id":14872,"width":25,"height":45},{"x":25,"y":0,"fileNum":260,"id":14873,"width":25,"height":45},{"x":50,"y":0,"fileNum":260,"id":14874,"width":25,"height":45},{"x":75,"y":0,"fileNum":260,"id":14875,"width":25,"height":45},{"x":100,"y":0,"fileNum":260,"id":14876,"width":25,"height":45},{"x":125,"y":0,"fileNum":260,"id":14877,"width":25,"height":45},{"x":0,"y":45,"fileNum":260,"id":14878,"width":25,"height":45},{"x":25,"y":45,"fileNum":260,"id":14879,"width":25,"height":45},{"x":50,"y":45,"fileNum":260,"id":14880,"width":25,"height":45},{"x":75,"y":45,"fileNum":260,"id":14881,"width":25,"height":45},{"x":100,"y":45,"fileNum":260,"id":14882,"width":25,"height":45},{"x":125,"y":45,"fileNum":260,"id":14883,"width":25,"height":45},{"x":0,"y":90,"fileNum":260,"id":14884,"width":25,"height":45},{"x":25,"y":90,"fileNum":260,"id":14885,"width":25,"height":45},{"x":50,"y":90,"fileNum":260,"id":14886,"width":25,"height":45},{"x":75,"y":90,"fileNum":260,"id":14887,"width":25,"height":45},{"x":100,"y":90,"fileNum":260,"id":14888,"width":25,"height":45},{"x":0,"y":135,"fileNum":260,"id":14889,"width":25,"height":45},{"x":25,"y":135,"fileNum":260,"id":14890,"width":25,"height":45},{"x":50,"y":135,"fileNum":260,"id":14891,"width":25,"height":45},{"x":75,"y":135,"fileNum":260,"id":14892,"width":25,"height":45},{"x":100,"y":135,"fileNum":260,"id":14893,"width":25,"height":45},{"x":0,"y":0,"fileNum":263,"id":14898,"width":32,"height":32},{"x":0,"y":0,"fileNum":262,"id":14899,"width":25,"height":45},{"x":25,"y":0,"fileNum":262,"id":14900,"width":25,"height":45},{"x":50,"y":0,"fileNum":262,"id":14901,"width":25,"height":45},{"x":75,"y":0,"fileNum":262,"id":14902,"width":25,"height":45},{"x":100,"y":0,"fileNum":262,"id":14903,"width":25,"height":45},{"x":125,"y":0,"fileNum":262,"id":14904,"width":25,"height":45},{"x":0,"y":45,"fileNum":262,"id":14905,"width":25,"height":45},{"x":25,"y":45,"fileNum":262,"id":14906,"width":25,"height":45},{"x":50,"y":45,"fileNum":262,"id":14907,"width":25,"height":45},{"x":75,"y":45,"fileNum":262,"id":14908,"width":25,"height":45},{"x":100,"y":45,"fileNum":262,"id":14909,"width":25,"height":45},{"x":125,"y":45,"fileNum":262,"id":14910,"width":25,"height":45},{"x":0,"y":90,"fileNum":262,"id":14911,"width":25,"height":45},{"x":25,"y":90,"fileNum":262,"id":14912,"width":25,"height":45},{"x":50,"y":90,"fileNum":262,"id":14913,"width":25,"height":45},{"x":75,"y":90,"fileNum":262,"id":14914,"width":25,"height":45},{"x":100,"y":90,"fileNum":262,"id":14915,"width":25,"height":45},{"x":0,"y":135,"fileNum":262,"id":14916,"width":25,"height":45},{"x":25,"y":135,"fileNum":262,"id":14917,"width":25,"height":45},{"x":50,"y":135,"fileNum":262,"id":14918,"width":25,"height":45},{"x":75,"y":135,"fileNum":262,"id":14919,"width":25,"height":45},{"x":100,"y":135,"fileNum":262,"id":14920,"width":25,"height":45},{"x":0,"y":0,"fileNum":265,"id":14925,"width":32,"height":32},{"x":0,"y":0,"fileNum":264,"id":14926,"width":25,"height":45},{"x":25,"y":0,"fileNum":264,"id":14927,"width":25,"height":45},{"x":50,"y":0,"fileNum":264,"id":14928,"width":25,"height":45},{"x":75,"y":0,"fileNum":264,"id":14929,"width":25,"height":45},{"x":100,"y":0,"fileNum":264,"id":14930,"width":25,"height":45},{"x":125,"y":0,"fileNum":264,"id":14931,"width":25,"height":45},{"x":0,"y":45,"fileNum":264,"id":14932,"width":25,"height":45},{"x":25,"y":45,"fileNum":264,"id":14933,"width":25,"height":45},{"x":50,"y":45,"fileNum":264,"id":14934,"width":25,"height":45},{"x":75,"y":45,"fileNum":264,"id":14935,"width":25,"height":45},{"x":100,"y":45,"fileNum":264,"id":14936,"width":25,"height":45},{"x":125,"y":45,"fileNum":264,"id":14937,"width":25,"height":45},{"x":0,"y":90,"fileNum":264,"id":14938,"width":25,"height":45},{"x":25,"y":90,"fileNum":264,"id":14939,"width":25,"height":45},{"x":50,"y":90,"fileNum":264,"id":14940,"width":25,"height":45},{"x":75,"y":90,"fileNum":264,"id":14941,"width":25,"height":45},{"x":100,"y":90,"fileNum":264,"id":14942,"width":25,"height":45},{"x":0,"y":135,"fileNum":264,"id":14943,"width":25,"height":45},{"x":25,"y":135,"fileNum":264,"id":14944,"width":25,"height":45},{"x":50,"y":135,"fileNum":264,"id":14945,"width":25,"height":45},{"x":75,"y":135,"fileNum":264,"id":14946,"width":25,"height":45},{"x":100,"y":135,"fileNum":264,"id":14947,"width":25,"height":45},{"x":0,"y":0,"fileNum":267,"id":14952,"width":32,"height":32},{"x":0,"y":0,"fileNum":266,"id":14953,"width":25,"height":45},{"x":25,"y":0,"fileNum":266,"id":14954,"width":25,"height":45},{"x":50,"y":0,"fileNum":266,"id":14955,"width":25,"height":45},{"x":75,"y":0,"fileNum":266,"id":14956,"width":25,"height":45},{"x":100,"y":0,"fileNum":266,"id":14957,"width":25,"height":45},{"x":125,"y":0,"fileNum":266,"id":14958,"width":25,"height":45},{"x":0,"y":45,"fileNum":266,"id":14959,"width":25,"height":45},{"x":25,"y":45,"fileNum":266,"id":14960,"width":25,"height":45},{"x":50,"y":45,"fileNum":266,"id":14961,"width":25,"height":45},{"x":75,"y":45,"fileNum":266,"id":14962,"width":25,"height":45},{"x":100,"y":45,"fileNum":266,"id":14963,"width":25,"height":45},{"x":125,"y":45,"fileNum":266,"id":14964,"width":25,"height":45},{"x":0,"y":90,"fileNum":266,"id":14965,"width":25,"height":45},{"x":25,"y":90,"fileNum":266,"id":14966,"width":25,"height":45},{"x":50,"y":90,"fileNum":266,"id":14967,"width":25,"height":45},{"x":75,"y":90,"fileNum":266,"id":14968,"width":25,"height":45},{"x":100,"y":90,"fileNum":266,"id":14969,"width":25,"height":45},{"x":0,"y":135,"fileNum":266,"id":14970,"width":25,"height":45},{"x":25,"y":135,"fileNum":266,"id":14971,"width":25,"height":45},{"x":50,"y":135,"fileNum":266,"id":14972,"width":25,"height":45},{"x":75,"y":135,"fileNum":266,"id":14973,"width":25,"height":45},{"x":100,"y":135,"fileNum":266,"id":14974,"width":25,"height":45},{"x":0,"y":0,"fileNum":269,"id":14979,"width":32,"height":32},{"x":0,"y":0,"fileNum":268,"id":14980,"width":25,"height":45},{"x":25,"y":0,"fileNum":268,"id":14981,"width":25,"height":45},{"x":50,"y":0,"fileNum":268,"id":14982,"width":25,"height":45},{"x":75,"y":0,"fileNum":268,"id":14983,"width":25,"height":45},{"x":100,"y":0,"fileNum":268,"id":14984,"width":25,"height":45},{"x":125,"y":0,"fileNum":268,"id":14985,"width":25,"height":45},{"x":0,"y":45,"fileNum":268,"id":14986,"width":25,"height":45},{"x":25,"y":45,"fileNum":268,"id":14987,"width":25,"height":45},{"x":50,"y":45,"fileNum":268,"id":14988,"width":25,"height":45},{"x":75,"y":45,"fileNum":268,"id":14989,"width":25,"height":45},{"x":100,"y":45,"fileNum":268,"id":14990,"width":25,"height":45},{"x":125,"y":45,"fileNum":268,"id":14991,"width":25,"height":45},{"x":0,"y":90,"fileNum":268,"id":14992,"width":25,"height":45},{"x":25,"y":90,"fileNum":268,"id":14993,"width":25,"height":45},{"x":50,"y":90,"fileNum":268,"id":14994,"width":25,"height":45},{"x":75,"y":90,"fileNum":268,"id":14995,"width":25,"height":45},{"x":100,"y":90,"fileNum":268,"id":14996,"width":25,"height":45},{"x":0,"y":135,"fileNum":268,"id":14997,"width":25,"height":45},{"x":25,"y":135,"fileNum":268,"id":14998,"width":25,"height":45},{"x":50,"y":135,"fileNum":268,"id":14999,"width":25,"height":45},{"x":75,"y":135,"fileNum":268,"id":15000,"width":25,"height":45},{"x":100,"y":135,"fileNum":268,"id":15001,"width":25,"height":45},{"x":0,"y":0,"fileNum":425,"id":15006,"width":32,"height":32},{"x":0,"y":0,"fileNum":424,"id":15007,"width":25,"height":45},{"x":25,"y":0,"fileNum":424,"id":15008,"width":25,"height":45},{"x":50,"y":0,"fileNum":424,"id":15009,"width":25,"height":45},{"x":75,"y":0,"fileNum":424,"id":15010,"width":25,"height":45},{"x":100,"y":0,"fileNum":424,"id":15011,"width":25,"height":45},{"x":125,"y":0,"fileNum":424,"id":15012,"width":25,"height":45},{"x":0,"y":45,"fileNum":424,"id":15013,"width":25,"height":45},{"x":25,"y":45,"fileNum":424,"id":15014,"width":25,"height":45},{"x":50,"y":45,"fileNum":424,"id":15015,"width":25,"height":45},{"x":75,"y":45,"fileNum":424,"id":15016,"width":25,"height":45},{"x":100,"y":45,"fileNum":424,"id":15017,"width":25,"height":45},{"x":125,"y":45,"fileNum":424,"id":15018,"width":25,"height":45},{"x":0,"y":90,"fileNum":424,"id":15019,"width":25,"height":45},{"x":25,"y":90,"fileNum":424,"id":15020,"width":25,"height":45},{"x":50,"y":90,"fileNum":424,"id":15021,"width":25,"height":45},{"x":75,"y":90,"fileNum":424,"id":15022,"width":25,"height":45},{"x":100,"y":90,"fileNum":424,"id":15023,"width":25,"height":45},{"x":0,"y":135,"fileNum":424,"id":15024,"width":25,"height":45},{"x":25,"y":135,"fileNum":424,"id":15025,"width":25,"height":45},{"x":50,"y":135,"fileNum":424,"id":15026,"width":25,"height":45},{"x":75,"y":135,"fileNum":424,"id":15027,"width":25,"height":45},{"x":100,"y":135,"fileNum":424,"id":15028,"width":25,"height":45},{"x":0,"y":0,"fileNum":427,"id":15033,"width":32,"height":32},{"x":0,"y":0,"fileNum":426,"id":15034,"width":25,"height":45},{"x":25,"y":0,"fileNum":426,"id":15035,"width":25,"height":45},{"x":50,"y":0,"fileNum":426,"id":15036,"width":25,"height":45},{"x":75,"y":0,"fileNum":426,"id":15037,"width":25,"height":45},{"x":100,"y":0,"fileNum":426,"id":15038,"width":25,"height":45},{"x":125,"y":0,"fileNum":426,"id":15039,"width":25,"height":45},{"x":0,"y":45,"fileNum":426,"id":15040,"width":25,"height":45},{"x":25,"y":45,"fileNum":426,"id":15041,"width":25,"height":45},{"x":50,"y":45,"fileNum":426,"id":15042,"width":25,"height":45},{"x":75,"y":45,"fileNum":426,"id":15043,"width":25,"height":45},{"x":100,"y":45,"fileNum":426,"id":15044,"width":25,"height":45},{"x":125,"y":45,"fileNum":426,"id":15045,"width":25,"height":45},{"x":0,"y":90,"fileNum":426,"id":15046,"width":25,"height":45},{"x":25,"y":90,"fileNum":426,"id":15047,"width":25,"height":45},{"x":50,"y":90,"fileNum":426,"id":15048,"width":25,"height":45},{"x":75,"y":90,"fileNum":426,"id":15049,"width":25,"height":45},{"x":100,"y":90,"fileNum":426,"id":15050,"width":25,"height":45},{"x":0,"y":135,"fileNum":426,"id":15051,"width":25,"height":45},{"x":25,"y":135,"fileNum":426,"id":15052,"width":25,"height":45},{"x":50,"y":135,"fileNum":426,"id":15053,"width":25,"height":45},{"x":75,"y":135,"fileNum":426,"id":15054,"width":25,"height":45},{"x":100,"y":135,"fileNum":426,"id":15055,"width":25,"height":45},{"x":0,"y":0,"fileNum":430,"id":15060,"width":32,"height":32},{"x":0,"y":0,"fileNum":428,"id":15061,"width":25,"height":45},{"x":25,"y":0,"fileNum":428,"id":15062,"width":25,"height":45},{"x":50,"y":0,"fileNum":428,"id":15063,"width":25,"height":45},{"x":75,"y":0,"fileNum":428,"id":15064,"width":25,"height":45},{"x":100,"y":0,"fileNum":428,"id":15065,"width":25,"height":45},{"x":125,"y":0,"fileNum":428,"id":15066,"width":25,"height":45},{"x":0,"y":45,"fileNum":428,"id":15067,"width":25,"height":45},{"x":25,"y":45,"fileNum":428,"id":15068,"width":25,"height":45},{"x":50,"y":45,"fileNum":428,"id":15069,"width":25,"height":45},{"x":75,"y":45,"fileNum":428,"id":15070,"width":25,"height":45},{"x":100,"y":45,"fileNum":428,"id":15071,"width":25,"height":45},{"x":125,"y":45,"fileNum":428,"id":15072,"width":25,"height":45},{"x":0,"y":90,"fileNum":428,"id":15073,"width":25,"height":45},{"x":25,"y":90,"fileNum":428,"id":15074,"width":25,"height":45},{"x":50,"y":90,"fileNum":428,"id":15075,"width":25,"height":45},{"x":75,"y":90,"fileNum":428,"id":15076,"width":25,"height":45},{"x":100,"y":90,"fileNum":428,"id":15077,"width":25,"height":45},{"x":0,"y":135,"fileNum":428,"id":15078,"width":25,"height":45},{"x":25,"y":135,"fileNum":428,"id":15079,"width":25,"height":45},{"x":50,"y":135,"fileNum":428,"id":15080,"width":25,"height":45},{"x":75,"y":135,"fileNum":428,"id":15081,"width":25,"height":45},{"x":100,"y":135,"fileNum":428,"id":15082,"width":25,"height":45},{"x":0,"y":0,"fileNum":432,"id":15087,"width":32,"height":32},{"x":0,"y":0,"fileNum":431,"id":15088,"width":25,"height":45},{"x":25,"y":0,"fileNum":431,"id":15089,"width":25,"height":45},{"x":50,"y":0,"fileNum":431,"id":15090,"width":25,"height":45},{"x":75,"y":0,"fileNum":431,"id":15091,"width":25,"height":45},{"x":100,"y":0,"fileNum":431,"id":15092,"width":25,"height":45},{"x":125,"y":0,"fileNum":431,"id":15093,"width":25,"height":45},{"x":0,"y":45,"fileNum":431,"id":15094,"width":25,"height":45},{"x":25,"y":45,"fileNum":431,"id":15095,"width":25,"height":45},{"x":50,"y":45,"fileNum":431,"id":15096,"width":25,"height":45},{"x":75,"y":45,"fileNum":431,"id":15097,"width":25,"height":45},{"x":100,"y":45,"fileNum":431,"id":15098,"width":25,"height":45},{"x":125,"y":45,"fileNum":431,"id":15099,"width":25,"height":45},{"x":0,"y":90,"fileNum":431,"id":15100,"width":25,"height":45},{"x":25,"y":90,"fileNum":431,"id":15101,"width":25,"height":45},{"x":50,"y":90,"fileNum":431,"id":15102,"width":25,"height":45},{"x":75,"y":90,"fileNum":431,"id":15103,"width":25,"height":45},{"x":100,"y":90,"fileNum":431,"id":15104,"width":25,"height":45},{"x":0,"y":135,"fileNum":431,"id":15105,"width":25,"height":45},{"x":25,"y":135,"fileNum":431,"id":15106,"width":25,"height":45},{"x":50,"y":135,"fileNum":431,"id":15107,"width":25,"height":45},{"x":75,"y":135,"fileNum":431,"id":15108,"width":25,"height":45},{"x":100,"y":135,"fileNum":431,"id":15109,"width":25,"height":45},{"x":0,"y":0,"fileNum":434,"id":15114,"width":32,"height":32},{"x":0,"y":0,"fileNum":433,"id":15115,"width":25,"height":45},{"x":25,"y":0,"fileNum":433,"id":15116,"width":25,"height":45},{"x":50,"y":0,"fileNum":433,"id":15117,"width":25,"height":45},{"x":75,"y":0,"fileNum":433,"id":15118,"width":25,"height":45},{"x":100,"y":0,"fileNum":433,"id":15119,"width":25,"height":45},{"x":125,"y":0,"fileNum":433,"id":15120,"width":25,"height":45},{"x":0,"y":45,"fileNum":433,"id":15121,"width":25,"height":45},{"x":25,"y":45,"fileNum":433,"id":15122,"width":25,"height":45},{"x":50,"y":45,"fileNum":433,"id":15123,"width":25,"height":45},{"x":75,"y":45,"fileNum":433,"id":15124,"width":25,"height":45},{"x":100,"y":45,"fileNum":433,"id":15125,"width":25,"height":45},{"x":125,"y":45,"fileNum":433,"id":15126,"width":25,"height":45},{"x":0,"y":90,"fileNum":433,"id":15127,"width":25,"height":45},{"x":25,"y":90,"fileNum":433,"id":15128,"width":25,"height":45},{"x":50,"y":90,"fileNum":433,"id":15129,"width":25,"height":45},{"x":75,"y":90,"fileNum":433,"id":15130,"width":25,"height":45},{"x":100,"y":90,"fileNum":433,"id":15131,"width":25,"height":45},{"x":0,"y":135,"fileNum":433,"id":15132,"width":25,"height":45},{"x":25,"y":135,"fileNum":433,"id":15133,"width":25,"height":45},{"x":50,"y":135,"fileNum":433,"id":15134,"width":25,"height":45},{"x":75,"y":135,"fileNum":433,"id":15135,"width":25,"height":45},{"x":100,"y":135,"fileNum":433,"id":15136,"width":25,"height":45},{"x":0,"y":0,"fileNum":437,"id":15141,"width":32,"height":32},{"x":0,"y":0,"fileNum":436,"id":15142,"width":25,"height":45},{"x":25,"y":0,"fileNum":436,"id":15143,"width":25,"height":45},{"x":50,"y":0,"fileNum":436,"id":15144,"width":25,"height":45},{"x":75,"y":0,"fileNum":436,"id":15145,"width":25,"height":45},{"x":100,"y":0,"fileNum":436,"id":15146,"width":25,"height":45},{"x":125,"y":0,"fileNum":436,"id":15147,"width":25,"height":45},{"x":0,"y":45,"fileNum":436,"id":15148,"width":25,"height":45},{"x":25,"y":45,"fileNum":436,"id":15149,"width":25,"height":45},{"x":50,"y":45,"fileNum":436,"id":15150,"width":25,"height":45},{"x":75,"y":45,"fileNum":436,"id":15151,"width":25,"height":45},{"x":100,"y":45,"fileNum":436,"id":15152,"width":25,"height":45},{"x":125,"y":45,"fileNum":436,"id":15153,"width":25,"height":45},{"x":0,"y":90,"fileNum":436,"id":15154,"width":25,"height":45},{"x":25,"y":90,"fileNum":436,"id":15155,"width":25,"height":45},{"x":50,"y":90,"fileNum":436,"id":15156,"width":25,"height":45},{"x":75,"y":90,"fileNum":436,"id":15157,"width":25,"height":45},{"x":100,"y":90,"fileNum":436,"id":15158,"width":25,"height":45},{"x":0,"y":135,"fileNum":436,"id":15159,"width":25,"height":45},{"x":25,"y":135,"fileNum":436,"id":15160,"width":25,"height":45},{"x":50,"y":135,"fileNum":436,"id":15161,"width":25,"height":45},{"x":75,"y":135,"fileNum":436,"id":15162,"width":25,"height":45},{"x":100,"y":135,"fileNum":436,"id":15163,"width":25,"height":45},{"x":0,"y":0,"fileNum":439,"id":15168,"width":32,"height":32},{"x":0,"y":0,"fileNum":438,"id":15169,"width":25,"height":45},{"x":25,"y":0,"fileNum":438,"id":15170,"width":25,"height":45},{"x":50,"y":0,"fileNum":438,"id":15171,"width":25,"height":45},{"x":75,"y":0,"fileNum":438,"id":15172,"width":25,"height":45},{"x":100,"y":0,"fileNum":438,"id":15173,"width":25,"height":45},{"x":125,"y":0,"fileNum":438,"id":15174,"width":25,"height":45},{"x":0,"y":45,"fileNum":438,"id":15175,"width":25,"height":45},{"x":25,"y":45,"fileNum":438,"id":15176,"width":25,"height":45},{"x":50,"y":45,"fileNum":438,"id":15177,"width":25,"height":45},{"x":75,"y":45,"fileNum":438,"id":15178,"width":25,"height":45},{"x":100,"y":45,"fileNum":438,"id":15179,"width":25,"height":45},{"x":125,"y":45,"fileNum":438,"id":15180,"width":25,"height":45},{"x":0,"y":90,"fileNum":438,"id":15181,"width":25,"height":45},{"x":25,"y":90,"fileNum":438,"id":15182,"width":25,"height":45},{"x":50,"y":90,"fileNum":438,"id":15183,"width":25,"height":45},{"x":75,"y":90,"fileNum":438,"id":15184,"width":25,"height":45},{"x":100,"y":90,"fileNum":438,"id":15185,"width":25,"height":45},{"x":0,"y":135,"fileNum":438,"id":15186,"width":25,"height":45},{"x":25,"y":135,"fileNum":438,"id":15187,"width":25,"height":45},{"x":50,"y":135,"fileNum":438,"id":15188,"width":25,"height":45},{"x":75,"y":135,"fileNum":438,"id":15189,"width":25,"height":45},{"x":100,"y":135,"fileNum":438,"id":15190,"width":25,"height":45},{"x":0,"y":0,"fileNum":441,"id":15195,"width":32,"height":32},{"x":0,"y":0,"fileNum":440,"id":15196,"width":25,"height":45},{"x":25,"y":0,"fileNum":440,"id":15197,"width":25,"height":45},{"x":50,"y":0,"fileNum":440,"id":15198,"width":25,"height":45},{"x":75,"y":0,"fileNum":440,"id":15199,"width":25,"height":45},{"x":100,"y":0,"fileNum":440,"id":15200,"width":25,"height":45},{"x":125,"y":0,"fileNum":440,"id":15201,"width":25,"height":45},{"x":0,"y":45,"fileNum":440,"id":15202,"width":25,"height":45},{"x":25,"y":45,"fileNum":440,"id":15203,"width":25,"height":45},{"x":50,"y":45,"fileNum":440,"id":15204,"width":25,"height":45},{"x":75,"y":45,"fileNum":440,"id":15205,"width":25,"height":45},{"x":100,"y":45,"fileNum":440,"id":15206,"width":25,"height":45},{"x":125,"y":45,"fileNum":440,"id":15207,"width":25,"height":45},{"x":0,"y":90,"fileNum":440,"id":15208,"width":25,"height":45},{"x":25,"y":90,"fileNum":440,"id":15209,"width":25,"height":45},{"x":50,"y":90,"fileNum":440,"id":15210,"width":25,"height":45},{"x":75,"y":90,"fileNum":440,"id":15211,"width":25,"height":45},{"x":100,"y":90,"fileNum":440,"id":15212,"width":25,"height":45},{"x":0,"y":135,"fileNum":440,"id":15213,"width":25,"height":45},{"x":25,"y":135,"fileNum":440,"id":15214,"width":25,"height":45},{"x":50,"y":135,"fileNum":440,"id":15215,"width":25,"height":45},{"x":75,"y":135,"fileNum":440,"id":15216,"width":25,"height":45},{"x":100,"y":135,"fileNum":440,"id":15217,"width":25,"height":45},{"x":0,"y":0,"fileNum":443,"id":15222,"width":32,"height":32},{"x":0,"y":0,"fileNum":442,"id":15223,"width":25,"height":45},{"x":25,"y":0,"fileNum":442,"id":15224,"width":25,"height":45},{"x":50,"y":0,"fileNum":442,"id":15225,"width":25,"height":45},{"x":75,"y":0,"fileNum":442,"id":15226,"width":25,"height":45},{"x":100,"y":0,"fileNum":442,"id":15227,"width":25,"height":45},{"x":125,"y":0,"fileNum":442,"id":15228,"width":25,"height":45},{"x":0,"y":45,"fileNum":442,"id":15229,"width":25,"height":45},{"x":25,"y":45,"fileNum":442,"id":15230,"width":25,"height":45},{"x":50,"y":45,"fileNum":442,"id":15231,"width":25,"height":45},{"x":75,"y":45,"fileNum":442,"id":15232,"width":25,"height":45},{"x":100,"y":45,"fileNum":442,"id":15233,"width":25,"height":45},{"x":125,"y":45,"fileNum":442,"id":15234,"width":25,"height":45},{"x":0,"y":90,"fileNum":442,"id":15235,"width":25,"height":45},{"x":25,"y":90,"fileNum":442,"id":15236,"width":25,"height":45},{"x":50,"y":90,"fileNum":442,"id":15237,"width":25,"height":45},{"x":75,"y":90,"fileNum":442,"id":15238,"width":25,"height":45},{"x":100,"y":90,"fileNum":442,"id":15239,"width":25,"height":45},{"x":0,"y":135,"fileNum":442,"id":15240,"width":25,"height":45},{"x":25,"y":135,"fileNum":442,"id":15241,"width":25,"height":45},{"x":50,"y":135,"fileNum":442,"id":15242,"width":25,"height":45},{"x":75,"y":135,"fileNum":442,"id":15243,"width":25,"height":45},{"x":100,"y":135,"fileNum":442,"id":15244,"width":25,"height":45},{"x":0,"y":0,"fileNum":445,"id":15249,"width":32,"height":32},{"x":0,"y":0,"fileNum":444,"id":15250,"width":25,"height":45},{"x":25,"y":0,"fileNum":444,"id":15251,"width":25,"height":45},{"x":50,"y":0,"fileNum":444,"id":15252,"width":25,"height":45},{"x":75,"y":0,"fileNum":444,"id":15253,"width":25,"height":45},{"x":100,"y":0,"fileNum":444,"id":15254,"width":25,"height":45},{"x":125,"y":0,"fileNum":444,"id":15255,"width":25,"height":45},{"x":0,"y":45,"fileNum":444,"id":15256,"width":25,"height":45},{"x":25,"y":45,"fileNum":444,"id":15257,"width":25,"height":45},{"x":50,"y":45,"fileNum":444,"id":15258,"width":25,"height":45},{"x":75,"y":45,"fileNum":444,"id":15259,"width":25,"height":45},{"x":100,"y":45,"fileNum":444,"id":15260,"width":25,"height":45},{"x":125,"y":45,"fileNum":444,"id":15261,"width":25,"height":45},{"x":0,"y":90,"fileNum":444,"id":15262,"width":25,"height":45},{"x":25,"y":90,"fileNum":444,"id":15263,"width":25,"height":45},{"x":50,"y":90,"fileNum":444,"id":15264,"width":25,"height":45},{"x":75,"y":90,"fileNum":444,"id":15265,"width":25,"height":45},{"x":100,"y":90,"fileNum":444,"id":15266,"width":25,"height":45},{"x":0,"y":135,"fileNum":444,"id":15267,"width":25,"height":45},{"x":25,"y":135,"fileNum":444,"id":15268,"width":25,"height":45},{"x":50,"y":135,"fileNum":444,"id":15269,"width":25,"height":45},{"x":75,"y":135,"fileNum":444,"id":15270,"width":25,"height":45},{"x":100,"y":135,"fileNum":444,"id":15271,"width":25,"height":45},{"x":0,"y":0,"fileNum":448,"id":15276,"width":32,"height":32},{"x":0,"y":0,"fileNum":447,"id":15277,"width":25,"height":45},{"x":25,"y":0,"fileNum":447,"id":15278,"width":25,"height":45},{"x":50,"y":0,"fileNum":447,"id":15279,"width":25,"height":45},{"x":75,"y":0,"fileNum":447,"id":15280,"width":25,"height":45},{"x":100,"y":0,"fileNum":447,"id":15281,"width":25,"height":45},{"x":125,"y":0,"fileNum":447,"id":15282,"width":25,"height":45},{"x":0,"y":45,"fileNum":447,"id":15283,"width":25,"height":45},{"x":25,"y":45,"fileNum":447,"id":15284,"width":25,"height":45},{"x":50,"y":45,"fileNum":447,"id":15285,"width":25,"height":45},{"x":75,"y":45,"fileNum":447,"id":15286,"width":25,"height":45},{"x":100,"y":45,"fileNum":447,"id":15287,"width":25,"height":45},{"x":125,"y":45,"fileNum":447,"id":15288,"width":25,"height":45},{"x":0,"y":90,"fileNum":447,"id":15289,"width":25,"height":45},{"x":25,"y":90,"fileNum":447,"id":15290,"width":25,"height":45},{"x":50,"y":90,"fileNum":447,"id":15291,"width":25,"height":45},{"x":75,"y":90,"fileNum":447,"id":15292,"width":25,"height":45},{"x":100,"y":90,"fileNum":447,"id":15293,"width":25,"height":45},{"x":0,"y":135,"fileNum":447,"id":15294,"width":25,"height":45},{"x":25,"y":135,"fileNum":447,"id":15295,"width":25,"height":45},{"x":50,"y":135,"fileNum":447,"id":15296,"width":25,"height":45},{"x":75,"y":135,"fileNum":447,"id":15297,"width":25,"height":45},{"x":100,"y":135,"fileNum":447,"id":15298,"width":25,"height":45},{"x":0,"y":0,"fileNum":450,"id":15303,"width":32,"height":32},{"x":0,"y":0,"fileNum":449,"id":15304,"width":25,"height":45},{"x":25,"y":0,"fileNum":449,"id":15305,"width":25,"height":45},{"x":50,"y":0,"fileNum":449,"id":15306,"width":25,"height":45},{"x":75,"y":0,"fileNum":449,"id":15307,"width":25,"height":45},{"x":100,"y":0,"fileNum":449,"id":15308,"width":25,"height":45},{"x":125,"y":0,"fileNum":449,"id":15309,"width":25,"height":45},{"x":0,"y":45,"fileNum":449,"id":15310,"width":25,"height":45},{"x":25,"y":45,"fileNum":449,"id":15311,"width":25,"height":45},{"x":50,"y":45,"fileNum":449,"id":15312,"width":25,"height":45},{"x":75,"y":45,"fileNum":449,"id":15313,"width":25,"height":45},{"x":100,"y":45,"fileNum":449,"id":15314,"width":25,"height":45},{"x":125,"y":45,"fileNum":449,"id":15315,"width":25,"height":45},{"x":0,"y":90,"fileNum":449,"id":15316,"width":25,"height":45},{"x":25,"y":90,"fileNum":449,"id":15317,"width":25,"height":45},{"x":50,"y":90,"fileNum":449,"id":15318,"width":25,"height":45},{"x":75,"y":90,"fileNum":449,"id":15319,"width":25,"height":45},{"x":100,"y":90,"fileNum":449,"id":15320,"width":25,"height":45},{"x":0,"y":135,"fileNum":449,"id":15321,"width":25,"height":45},{"x":25,"y":135,"fileNum":449,"id":15322,"width":25,"height":45},{"x":50,"y":135,"fileNum":449,"id":15323,"width":25,"height":45},{"x":75,"y":135,"fileNum":449,"id":15324,"width":25,"height":45},{"x":100,"y":135,"fileNum":449,"id":15325,"width":25,"height":45},{"x":0,"y":0,"fileNum":452,"id":15330,"width":32,"height":32},{"x":0,"y":0,"fileNum":451,"id":15331,"width":25,"height":45},{"x":25,"y":0,"fileNum":451,"id":15332,"width":25,"height":45},{"x":50,"y":0,"fileNum":451,"id":15333,"width":25,"height":45},{"x":75,"y":0,"fileNum":451,"id":15334,"width":25,"height":45},{"x":100,"y":0,"fileNum":451,"id":15335,"width":25,"height":45},{"x":125,"y":0,"fileNum":451,"id":15336,"width":25,"height":45},{"x":0,"y":45,"fileNum":451,"id":15337,"width":25,"height":45},{"x":25,"y":45,"fileNum":451,"id":15338,"width":25,"height":45},{"x":50,"y":45,"fileNum":451,"id":15339,"width":25,"height":45},{"x":75,"y":45,"fileNum":451,"id":15340,"width":25,"height":45},{"x":100,"y":45,"fileNum":451,"id":15341,"width":25,"height":45},{"x":125,"y":45,"fileNum":451,"id":15342,"width":25,"height":45},{"x":0,"y":90,"fileNum":451,"id":15343,"width":25,"height":45},{"x":25,"y":90,"fileNum":451,"id":15344,"width":25,"height":45},{"x":50,"y":90,"fileNum":451,"id":15345,"width":25,"height":45},{"x":75,"y":90,"fileNum":451,"id":15346,"width":25,"height":45},{"x":100,"y":90,"fileNum":451,"id":15347,"width":25,"height":45},{"x":0,"y":135,"fileNum":451,"id":15348,"width":25,"height":45},{"x":25,"y":135,"fileNum":451,"id":15349,"width":25,"height":45},{"x":50,"y":135,"fileNum":451,"id":15350,"width":25,"height":45},{"x":75,"y":135,"fileNum":451,"id":15351,"width":25,"height":45},{"x":100,"y":135,"fileNum":451,"id":15352,"width":25,"height":45},{"x":0,"y":0,"fileNum":454,"id":15357,"width":32,"height":32},{"x":0,"y":0,"fileNum":453,"id":15358,"width":25,"height":45},{"x":25,"y":0,"fileNum":453,"id":15359,"width":25,"height":45},{"x":50,"y":0,"fileNum":453,"id":15360,"width":25,"height":45},{"x":75,"y":0,"fileNum":453,"id":15361,"width":25,"height":45},{"x":100,"y":0,"fileNum":453,"id":15362,"width":25,"height":45},{"x":125,"y":0,"fileNum":453,"id":15363,"width":25,"height":45},{"x":0,"y":45,"fileNum":453,"id":15364,"width":25,"height":45},{"x":25,"y":45,"fileNum":453,"id":15365,"width":25,"height":45},{"x":50,"y":45,"fileNum":453,"id":15366,"width":25,"height":45},{"x":75,"y":45,"fileNum":453,"id":15367,"width":25,"height":45},{"x":100,"y":45,"fileNum":453,"id":15368,"width":25,"height":45},{"x":125,"y":45,"fileNum":453,"id":15369,"width":25,"height":45},{"x":0,"y":90,"fileNum":453,"id":15370,"width":25,"height":45},{"x":25,"y":90,"fileNum":453,"id":15371,"width":25,"height":45},{"x":50,"y":90,"fileNum":453,"id":15372,"width":25,"height":45},{"x":75,"y":90,"fileNum":453,"id":15373,"width":25,"height":45},{"x":100,"y":90,"fileNum":453,"id":15374,"width":25,"height":45},{"x":0,"y":135,"fileNum":453,"id":15375,"width":25,"height":45},{"x":25,"y":135,"fileNum":453,"id":15376,"width":25,"height":45},{"x":50,"y":135,"fileNum":453,"id":15377,"width":25,"height":45},{"x":75,"y":135,"fileNum":453,"id":15378,"width":25,"height":45},{"x":100,"y":135,"fileNum":453,"id":15379,"width":25,"height":45},{"x":0,"y":0,"fileNum":456,"id":15384,"width":32,"height":32},{"x":0,"y":0,"fileNum":455,"id":15385,"width":25,"height":45},{"x":25,"y":0,"fileNum":455,"id":15386,"width":25,"height":45},{"x":50,"y":0,"fileNum":455,"id":15387,"width":25,"height":45},{"x":75,"y":0,"fileNum":455,"id":15388,"width":25,"height":45},{"x":100,"y":0,"fileNum":455,"id":15389,"width":25,"height":45},{"x":125,"y":0,"fileNum":455,"id":15390,"width":25,"height":45},{"x":0,"y":45,"fileNum":455,"id":15391,"width":25,"height":45},{"x":25,"y":45,"fileNum":455,"id":15392,"width":25,"height":45},{"x":50,"y":45,"fileNum":455,"id":15393,"width":25,"height":45},{"x":75,"y":45,"fileNum":455,"id":15394,"width":25,"height":45},{"x":100,"y":45,"fileNum":455,"id":15395,"width":25,"height":45},{"x":125,"y":45,"fileNum":455,"id":15396,"width":25,"height":45},{"x":0,"y":90,"fileNum":455,"id":15397,"width":25,"height":45},{"x":25,"y":90,"fileNum":455,"id":15398,"width":25,"height":45},{"x":50,"y":90,"fileNum":455,"id":15399,"width":25,"height":45},{"x":75,"y":90,"fileNum":455,"id":15400,"width":25,"height":45},{"x":100,"y":90,"fileNum":455,"id":15401,"width":25,"height":45},{"x":0,"y":135,"fileNum":455,"id":15402,"width":25,"height":45},{"x":25,"y":135,"fileNum":455,"id":15403,"width":25,"height":45},{"x":50,"y":135,"fileNum":455,"id":15404,"width":25,"height":45},{"x":75,"y":135,"fileNum":455,"id":15405,"width":25,"height":45},{"x":100,"y":135,"fileNum":455,"id":15406,"width":25,"height":45},{"x":0,"y":0,"fileNum":459,"id":15411,"width":32,"height":32},{"x":0,"y":0,"fileNum":458,"id":15412,"width":25,"height":45},{"x":25,"y":0,"fileNum":458,"id":15413,"width":25,"height":45},{"x":50,"y":0,"fileNum":458,"id":15414,"width":25,"height":45},{"x":75,"y":0,"fileNum":458,"id":15415,"width":25,"height":45},{"x":100,"y":0,"fileNum":458,"id":15416,"width":25,"height":45},{"x":125,"y":0,"fileNum":458,"id":15417,"width":25,"height":45},{"x":0,"y":45,"fileNum":458,"id":15418,"width":25,"height":45},{"x":25,"y":45,"fileNum":458,"id":15419,"width":25,"height":45},{"x":50,"y":45,"fileNum":458,"id":15420,"width":25,"height":45},{"x":75,"y":45,"fileNum":458,"id":15421,"width":25,"height":45},{"x":100,"y":45,"fileNum":458,"id":15422,"width":25,"height":45},{"x":125,"y":45,"fileNum":458,"id":15423,"width":25,"height":45},{"x":0,"y":90,"fileNum":458,"id":15424,"width":25,"height":45},{"x":25,"y":90,"fileNum":458,"id":15425,"width":25,"height":45},{"x":50,"y":90,"fileNum":458,"id":15426,"width":25,"height":45},{"x":75,"y":90,"fileNum":458,"id":15427,"width":25,"height":45},{"x":100,"y":90,"fileNum":458,"id":15428,"width":25,"height":45},{"x":0,"y":135,"fileNum":458,"id":15429,"width":25,"height":45},{"x":25,"y":135,"fileNum":458,"id":15430,"width":25,"height":45},{"x":50,"y":135,"fileNum":458,"id":15431,"width":25,"height":45},{"x":75,"y":135,"fileNum":458,"id":15432,"width":25,"height":45},{"x":100,"y":135,"fileNum":458,"id":15433,"width":25,"height":45},{"x":0,"y":0,"fileNum":461,"id":15438,"width":32,"height":32},{"x":0,"y":0,"fileNum":460,"id":15439,"width":25,"height":45},{"x":25,"y":0,"fileNum":460,"id":15440,"width":25,"height":45},{"x":50,"y":0,"fileNum":460,"id":15441,"width":25,"height":45},{"x":75,"y":0,"fileNum":460,"id":15442,"width":25,"height":45},{"x":100,"y":0,"fileNum":460,"id":15443,"width":25,"height":45},{"x":125,"y":0,"fileNum":460,"id":15444,"width":25,"height":45},{"x":0,"y":45,"fileNum":460,"id":15445,"width":25,"height":45},{"x":25,"y":45,"fileNum":460,"id":15446,"width":25,"height":45},{"x":50,"y":45,"fileNum":460,"id":15447,"width":25,"height":45},{"x":75,"y":45,"fileNum":460,"id":15448,"width":25,"height":45},{"x":100,"y":45,"fileNum":460,"id":15449,"width":25,"height":45},{"x":125,"y":45,"fileNum":460,"id":15450,"width":25,"height":45},{"x":0,"y":90,"fileNum":460,"id":15451,"width":25,"height":45},{"x":25,"y":90,"fileNum":460,"id":15452,"width":25,"height":45},{"x":50,"y":90,"fileNum":460,"id":15453,"width":25,"height":45},{"x":75,"y":90,"fileNum":460,"id":15454,"width":25,"height":45},{"x":100,"y":90,"fileNum":460,"id":15455,"width":25,"height":45},{"x":0,"y":135,"fileNum":460,"id":15456,"width":25,"height":45},{"x":25,"y":135,"fileNum":460,"id":15457,"width":25,"height":45},{"x":50,"y":135,"fileNum":460,"id":15458,"width":25,"height":45},{"x":75,"y":135,"fileNum":460,"id":15459,"width":25,"height":45},{"x":100,"y":135,"fileNum":460,"id":15460,"width":25,"height":45},{"x":0,"y":0,"fileNum":463,"id":15465,"width":32,"height":32},{"x":0,"y":0,"fileNum":462,"id":15466,"width":25,"height":45},{"x":25,"y":0,"fileNum":462,"id":15467,"width":25,"height":45},{"x":50,"y":0,"fileNum":462,"id":15468,"width":25,"height":45},{"x":75,"y":0,"fileNum":462,"id":15469,"width":25,"height":45},{"x":100,"y":0,"fileNum":462,"id":15470,"width":25,"height":45},{"x":125,"y":0,"fileNum":462,"id":15471,"width":25,"height":45},{"x":0,"y":45,"fileNum":462,"id":15472,"width":25,"height":45},{"x":25,"y":45,"fileNum":462,"id":15473,"width":25,"height":45},{"x":50,"y":45,"fileNum":462,"id":15474,"width":25,"height":45},{"x":75,"y":45,"fileNum":462,"id":15475,"width":25,"height":45},{"x":100,"y":45,"fileNum":462,"id":15476,"width":25,"height":45},{"x":125,"y":45,"fileNum":462,"id":15477,"width":25,"height":45},{"x":0,"y":90,"fileNum":462,"id":15478,"width":25,"height":45},{"x":25,"y":90,"fileNum":462,"id":15479,"width":25,"height":45},{"x":50,"y":90,"fileNum":462,"id":15480,"width":25,"height":45},{"x":75,"y":90,"fileNum":462,"id":15481,"width":25,"height":45},{"x":100,"y":90,"fileNum":462,"id":15482,"width":25,"height":45},{"x":0,"y":135,"fileNum":462,"id":15483,"width":25,"height":45},{"x":25,"y":135,"fileNum":462,"id":15484,"width":25,"height":45},{"x":50,"y":135,"fileNum":462,"id":15485,"width":25,"height":45},{"x":75,"y":135,"fileNum":462,"id":15486,"width":25,"height":45},{"x":100,"y":135,"fileNum":462,"id":15487,"width":25,"height":45},{"x":0,"y":0,"fileNum":465,"id":15492,"width":32,"height":32},{"x":0,"y":0,"fileNum":464,"id":15493,"width":25,"height":45},{"x":25,"y":0,"fileNum":464,"id":15494,"width":25,"height":45},{"x":50,"y":0,"fileNum":464,"id":15495,"width":25,"height":45},{"x":75,"y":0,"fileNum":464,"id":15496,"width":25,"height":45},{"x":100,"y":0,"fileNum":464,"id":15497,"width":25,"height":45},{"x":125,"y":0,"fileNum":464,"id":15498,"width":25,"height":45},{"x":0,"y":45,"fileNum":464,"id":15499,"width":25,"height":45},{"x":25,"y":45,"fileNum":464,"id":15500,"width":25,"height":45},{"x":50,"y":45,"fileNum":464,"id":15501,"width":25,"height":45},{"x":75,"y":45,"fileNum":464,"id":15502,"width":25,"height":45},{"x":100,"y":45,"fileNum":464,"id":15503,"width":25,"height":45},{"x":125,"y":45,"fileNum":464,"id":15504,"width":25,"height":45},{"x":0,"y":90,"fileNum":464,"id":15505,"width":25,"height":45},{"x":25,"y":90,"fileNum":464,"id":15506,"width":25,"height":45},{"x":50,"y":90,"fileNum":464,"id":15507,"width":25,"height":45},{"x":75,"y":90,"fileNum":464,"id":15508,"width":25,"height":45},{"x":100,"y":90,"fileNum":464,"id":15509,"width":25,"height":45},{"x":0,"y":135,"fileNum":464,"id":15510,"width":25,"height":45},{"x":25,"y":135,"fileNum":464,"id":15511,"width":25,"height":45},{"x":50,"y":135,"fileNum":464,"id":15512,"width":25,"height":45},{"x":75,"y":135,"fileNum":464,"id":15513,"width":25,"height":45},{"x":100,"y":135,"fileNum":464,"id":15514,"width":25,"height":45},{"x":0,"y":0,"fileNum":467,"id":15519,"width":32,"height":32},{"x":0,"y":0,"fileNum":466,"id":15520,"width":25,"height":45},{"x":25,"y":0,"fileNum":466,"id":15521,"width":25,"height":45},{"x":50,"y":0,"fileNum":466,"id":15522,"width":25,"height":45},{"x":75,"y":0,"fileNum":466,"id":15523,"width":25,"height":45},{"x":100,"y":0,"fileNum":466,"id":15524,"width":25,"height":45},{"x":125,"y":0,"fileNum":466,"id":15525,"width":25,"height":45},{"x":0,"y":45,"fileNum":466,"id":15526,"width":25,"height":45},{"x":25,"y":45,"fileNum":466,"id":15527,"width":25,"height":45},{"x":50,"y":45,"fileNum":466,"id":15528,"width":25,"height":45},{"x":75,"y":45,"fileNum":466,"id":15529,"width":25,"height":45},{"x":100,"y":45,"fileNum":466,"id":15530,"width":25,"height":45},{"x":125,"y":45,"fileNum":466,"id":15531,"width":25,"height":45},{"x":0,"y":90,"fileNum":466,"id":15532,"width":25,"height":45},{"x":25,"y":90,"fileNum":466,"id":15533,"width":25,"height":45},{"x":50,"y":90,"fileNum":466,"id":15534,"width":25,"height":45},{"x":75,"y":90,"fileNum":466,"id":15535,"width":25,"height":45},{"x":100,"y":90,"fileNum":466,"id":15536,"width":25,"height":45},{"x":0,"y":135,"fileNum":466,"id":15537,"width":25,"height":45},{"x":25,"y":135,"fileNum":466,"id":15538,"width":25,"height":45},{"x":50,"y":135,"fileNum":466,"id":15539,"width":25,"height":45},{"x":75,"y":135,"fileNum":466,"id":15540,"width":25,"height":45},{"x":100,"y":135,"fileNum":466,"id":15541,"width":25,"height":45},{"x":0,"y":0,"fileNum":470,"id":15546,"width":32,"height":32},{"x":0,"y":0,"fileNum":469,"id":15547,"width":25,"height":45},{"x":25,"y":0,"fileNum":469,"id":15548,"width":25,"height":45},{"x":50,"y":0,"fileNum":469,"id":15549,"width":25,"height":45},{"x":75,"y":0,"fileNum":469,"id":15550,"width":25,"height":45},{"x":100,"y":0,"fileNum":469,"id":15551,"width":25,"height":45},{"x":125,"y":0,"fileNum":469,"id":15552,"width":25,"height":45},{"x":0,"y":45,"fileNum":469,"id":15553,"width":25,"height":45},{"x":25,"y":45,"fileNum":469,"id":15554,"width":25,"height":45},{"x":50,"y":45,"fileNum":469,"id":15555,"width":25,"height":45},{"x":75,"y":45,"fileNum":469,"id":15556,"width":25,"height":45},{"x":100,"y":45,"fileNum":469,"id":15557,"width":25,"height":45},{"x":125,"y":45,"fileNum":469,"id":15558,"width":25,"height":45},{"x":0,"y":90,"fileNum":469,"id":15559,"width":25,"height":45},{"x":25,"y":90,"fileNum":469,"id":15560,"width":25,"height":45},{"x":50,"y":90,"fileNum":469,"id":15561,"width":25,"height":45},{"x":75,"y":90,"fileNum":469,"id":15562,"width":25,"height":45},{"x":100,"y":90,"fileNum":469,"id":15563,"width":25,"height":45},{"x":0,"y":135,"fileNum":469,"id":15564,"width":25,"height":45},{"x":25,"y":135,"fileNum":469,"id":15565,"width":25,"height":45},{"x":50,"y":135,"fileNum":469,"id":15566,"width":25,"height":45},{"x":75,"y":135,"fileNum":469,"id":15567,"width":25,"height":45},{"x":100,"y":135,"fileNum":469,"id":15568,"width":25,"height":45},{"x":0,"y":0,"fileNum":471,"id":15574,"width":25,"height":45},{"x":25,"y":0,"fileNum":471,"id":15575,"width":25,"height":45},{"x":50,"y":0,"fileNum":471,"id":15576,"width":25,"height":45},{"x":75,"y":0,"fileNum":471,"id":15577,"width":25,"height":45},{"x":100,"y":0,"fileNum":471,"id":15578,"width":25,"height":45},{"x":125,"y":0,"fileNum":471,"id":15579,"width":25,"height":45},{"x":0,"y":45,"fileNum":471,"id":15580,"width":25,"height":45},{"x":25,"y":45,"fileNum":471,"id":15581,"width":25,"height":45},{"x":50,"y":45,"fileNum":471,"id":15582,"width":25,"height":45},{"x":75,"y":45,"fileNum":471,"id":15583,"width":25,"height":45},{"x":100,"y":45,"fileNum":471,"id":15584,"width":25,"height":45},{"x":125,"y":45,"fileNum":471,"id":15585,"width":25,"height":45},{"x":0,"y":90,"fileNum":471,"id":15586,"width":25,"height":45},{"x":25,"y":90,"fileNum":471,"id":15587,"width":25,"height":45},{"x":50,"y":90,"fileNum":471,"id":15588,"width":25,"height":45},{"x":75,"y":90,"fileNum":471,"id":15589,"width":25,"height":45},{"x":100,"y":90,"fileNum":471,"id":15590,"width":25,"height":45},{"x":0,"y":135,"fileNum":471,"id":15591,"width":25,"height":45},{"x":25,"y":135,"fileNum":471,"id":15592,"width":25,"height":45},{"x":50,"y":135,"fileNum":471,"id":15593,"width":25,"height":45},{"x":75,"y":135,"fileNum":471,"id":15594,"width":25,"height":45},{"x":100,"y":135,"fileNum":471,"id":15595,"width":25,"height":45},{"x":0,"y":0,"fileNum":473,"id":15600,"width":32,"height":32},{"x":0,"y":0,"fileNum":472,"id":15601,"width":25,"height":45},{"x":25,"y":0,"fileNum":472,"id":15602,"width":25,"height":45},{"x":50,"y":0,"fileNum":472,"id":15603,"width":25,"height":45},{"x":75,"y":0,"fileNum":472,"id":15604,"width":25,"height":45},{"x":100,"y":0,"fileNum":472,"id":15605,"width":25,"height":45},{"x":125,"y":0,"fileNum":472,"id":15606,"width":25,"height":45},{"x":0,"y":45,"fileNum":472,"id":15607,"width":25,"height":45},{"x":25,"y":45,"fileNum":472,"id":15608,"width":25,"height":45},{"x":50,"y":45,"fileNum":472,"id":15609,"width":25,"height":45},{"x":75,"y":45,"fileNum":472,"id":15610,"width":25,"height":45},{"x":100,"y":45,"fileNum":472,"id":15611,"width":25,"height":45},{"x":125,"y":45,"fileNum":472,"id":15612,"width":25,"height":45},{"x":0,"y":90,"fileNum":472,"id":15613,"width":25,"height":45},{"x":25,"y":90,"fileNum":472,"id":15614,"width":25,"height":45},{"x":50,"y":90,"fileNum":472,"id":15615,"width":25,"height":45},{"x":75,"y":90,"fileNum":472,"id":15616,"width":25,"height":45},{"x":100,"y":90,"fileNum":472,"id":15617,"width":25,"height":45},{"x":0,"y":135,"fileNum":472,"id":15618,"width":25,"height":45},{"x":25,"y":135,"fileNum":472,"id":15619,"width":25,"height":45},{"x":50,"y":135,"fileNum":472,"id":15620,"width":25,"height":45},{"x":75,"y":135,"fileNum":472,"id":15621,"width":25,"height":45},{"x":100,"y":135,"fileNum":472,"id":15622,"width":25,"height":45},{"x":0,"y":0,"fileNum":475,"id":15627,"width":32,"height":32},{"x":0,"y":0,"fileNum":474,"id":15628,"width":25,"height":45},{"x":25,"y":0,"fileNum":474,"id":15629,"width":25,"height":45},{"x":50,"y":0,"fileNum":474,"id":15630,"width":25,"height":45},{"x":75,"y":0,"fileNum":474,"id":15631,"width":25,"height":45},{"x":100,"y":0,"fileNum":474,"id":15632,"width":25,"height":45},{"x":125,"y":0,"fileNum":474,"id":15633,"width":25,"height":45},{"x":0,"y":45,"fileNum":474,"id":15634,"width":25,"height":45},{"x":25,"y":45,"fileNum":474,"id":15635,"width":25,"height":45},{"x":50,"y":45,"fileNum":474,"id":15636,"width":25,"height":45},{"x":75,"y":45,"fileNum":474,"id":15637,"width":25,"height":45},{"x":100,"y":45,"fileNum":474,"id":15638,"width":25,"height":45},{"x":125,"y":45,"fileNum":474,"id":15639,"width":25,"height":45},{"x":0,"y":90,"fileNum":474,"id":15640,"width":25,"height":45},{"x":25,"y":90,"fileNum":474,"id":15641,"width":25,"height":45},{"x":50,"y":90,"fileNum":474,"id":15642,"width":25,"height":45},{"x":75,"y":90,"fileNum":474,"id":15643,"width":25,"height":45},{"x":100,"y":90,"fileNum":474,"id":15644,"width":25,"height":45},{"x":0,"y":135,"fileNum":474,"id":15645,"width":25,"height":45},{"x":25,"y":135,"fileNum":474,"id":15646,"width":25,"height":45},{"x":50,"y":135,"fileNum":474,"id":15647,"width":25,"height":45},{"x":75,"y":135,"fileNum":474,"id":15648,"width":25,"height":45},{"x":100,"y":135,"fileNum":474,"id":15649,"width":25,"height":45},{"x":0,"y":0,"fileNum":476,"id":15655,"width":25,"height":45},{"x":25,"y":0,"fileNum":476,"id":15656,"width":25,"height":45},{"x":50,"y":0,"fileNum":476,"id":15657,"width":25,"height":45},{"x":75,"y":0,"fileNum":476,"id":15658,"width":25,"height":45},{"x":100,"y":0,"fileNum":476,"id":15659,"width":25,"height":45},{"x":125,"y":0,"fileNum":476,"id":15660,"width":25,"height":45},{"x":0,"y":45,"fileNum":476,"id":15661,"width":25,"height":45},{"x":25,"y":45,"fileNum":476,"id":15662,"width":25,"height":45},{"x":50,"y":45,"fileNum":476,"id":15663,"width":25,"height":45},{"x":75,"y":45,"fileNum":476,"id":15664,"width":25,"height":45},{"x":100,"y":45,"fileNum":476,"id":15665,"width":25,"height":45},{"x":125,"y":45,"fileNum":476,"id":15666,"width":25,"height":45},{"x":0,"y":90,"fileNum":476,"id":15667,"width":25,"height":45},{"x":25,"y":90,"fileNum":476,"id":15668,"width":25,"height":45},{"x":50,"y":90,"fileNum":476,"id":15669,"width":25,"height":45},{"x":75,"y":90,"fileNum":476,"id":15670,"width":25,"height":45},{"x":100,"y":90,"fileNum":476,"id":15671,"width":25,"height":45},{"x":0,"y":135,"fileNum":476,"id":15672,"width":25,"height":45},{"x":25,"y":135,"fileNum":476,"id":15673,"width":25,"height":45},{"x":50,"y":135,"fileNum":476,"id":15674,"width":25,"height":45},{"x":75,"y":135,"fileNum":476,"id":15675,"width":25,"height":45},{"x":100,"y":135,"fileNum":476,"id":15676,"width":25,"height":45},{"x":0,"y":0,"fileNum":480,"id":15681,"width":32,"height":32},{"x":0,"y":0,"fileNum":479,"id":15682,"width":25,"height":45},{"x":25,"y":0,"fileNum":479,"id":15683,"width":25,"height":45},{"x":50,"y":0,"fileNum":479,"id":15684,"width":25,"height":45},{"x":75,"y":0,"fileNum":479,"id":15685,"width":25,"height":45},{"x":100,"y":0,"fileNum":479,"id":15686,"width":25,"height":45},{"x":125,"y":0,"fileNum":479,"id":15687,"width":25,"height":45},{"x":0,"y":45,"fileNum":479,"id":15688,"width":25,"height":45},{"x":25,"y":45,"fileNum":479,"id":15689,"width":25,"height":45},{"x":50,"y":45,"fileNum":479,"id":15690,"width":25,"height":45},{"x":75,"y":45,"fileNum":479,"id":15691,"width":25,"height":45},{"x":100,"y":45,"fileNum":479,"id":15692,"width":25,"height":45},{"x":125,"y":45,"fileNum":479,"id":15693,"width":25,"height":45},{"x":0,"y":90,"fileNum":479,"id":15694,"width":25,"height":45},{"x":25,"y":90,"fileNum":479,"id":15695,"width":25,"height":45},{"x":50,"y":90,"fileNum":479,"id":15696,"width":25,"height":45},{"x":75,"y":90,"fileNum":479,"id":15697,"width":25,"height":45},{"x":100,"y":90,"fileNum":479,"id":15698,"width":25,"height":45},{"x":0,"y":135,"fileNum":479,"id":15699,"width":25,"height":45},{"x":25,"y":135,"fileNum":479,"id":15700,"width":25,"height":45},{"x":50,"y":135,"fileNum":479,"id":15701,"width":25,"height":45},{"x":75,"y":135,"fileNum":479,"id":15702,"width":25,"height":45},{"x":100,"y":135,"fileNum":479,"id":15703,"width":25,"height":45},{"x":0,"y":0,"fileNum":482,"id":15708,"width":32,"height":32},{"x":0,"y":0,"fileNum":481,"id":15709,"width":25,"height":45},{"x":25,"y":0,"fileNum":481,"id":15710,"width":25,"height":45},{"x":50,"y":0,"fileNum":481,"id":15711,"width":25,"height":45},{"x":75,"y":0,"fileNum":481,"id":15712,"width":25,"height":45},{"x":100,"y":0,"fileNum":481,"id":15713,"width":25,"height":45},{"x":125,"y":0,"fileNum":481,"id":15714,"width":25,"height":45},{"x":0,"y":45,"fileNum":481,"id":15715,"width":25,"height":45},{"x":25,"y":45,"fileNum":481,"id":15716,"width":25,"height":45},{"x":50,"y":45,"fileNum":481,"id":15717,"width":25,"height":45},{"x":75,"y":45,"fileNum":481,"id":15718,"width":25,"height":45},{"x":100,"y":45,"fileNum":481,"id":15719,"width":25,"height":45},{"x":125,"y":45,"fileNum":481,"id":15720,"width":25,"height":45},{"x":0,"y":90,"fileNum":481,"id":15721,"width":25,"height":45},{"x":25,"y":90,"fileNum":481,"id":15722,"width":25,"height":45},{"x":50,"y":90,"fileNum":481,"id":15723,"width":25,"height":45},{"x":75,"y":90,"fileNum":481,"id":15724,"width":25,"height":45},{"x":100,"y":90,"fileNum":481,"id":15725,"width":25,"height":45},{"x":0,"y":135,"fileNum":481,"id":15726,"width":25,"height":45},{"x":25,"y":135,"fileNum":481,"id":15727,"width":25,"height":45},{"x":50,"y":135,"fileNum":481,"id":15728,"width":25,"height":45},{"x":75,"y":135,"fileNum":481,"id":15729,"width":25,"height":45},{"x":100,"y":135,"fileNum":481,"id":15730,"width":25,"height":45},{"x":0,"y":0,"fileNum":483,"id":15736,"width":25,"height":45},{"x":25,"y":0,"fileNum":483,"id":15737,"width":25,"height":45},{"x":50,"y":0,"fileNum":483,"id":15738,"width":25,"height":45},{"x":75,"y":0,"fileNum":483,"id":15739,"width":25,"height":45},{"x":100,"y":0,"fileNum":483,"id":15740,"width":25,"height":45},{"x":125,"y":0,"fileNum":483,"id":15741,"width":25,"height":45},{"x":0,"y":45,"fileNum":483,"id":15742,"width":25,"height":45},{"x":25,"y":45,"fileNum":483,"id":15743,"width":25,"height":45},{"x":50,"y":45,"fileNum":483,"id":15744,"width":25,"height":45},{"x":75,"y":45,"fileNum":483,"id":15745,"width":25,"height":45},{"x":100,"y":45,"fileNum":483,"id":15746,"width":25,"height":45},{"x":125,"y":45,"fileNum":483,"id":15747,"width":25,"height":45},{"x":0,"y":90,"fileNum":483,"id":15748,"width":25,"height":45},{"x":25,"y":90,"fileNum":483,"id":15749,"width":25,"height":45},{"x":50,"y":90,"fileNum":483,"id":15750,"width":25,"height":45},{"x":75,"y":90,"fileNum":483,"id":15751,"width":25,"height":45},{"x":100,"y":90,"fileNum":483,"id":15752,"width":25,"height":45},{"x":0,"y":135,"fileNum":483,"id":15753,"width":25,"height":45},{"x":25,"y":135,"fileNum":483,"id":15754,"width":25,"height":45},{"x":50,"y":135,"fileNum":483,"id":15755,"width":25,"height":45},{"x":75,"y":135,"fileNum":483,"id":15756,"width":25,"height":45},{"x":100,"y":135,"fileNum":483,"id":15757,"width":25,"height":45},{"x":0,"y":0,"fileNum":485,"id":15762,"width":32,"height":32},{"x":0,"y":0,"fileNum":484,"id":15763,"width":25,"height":45},{"x":25,"y":0,"fileNum":484,"id":15764,"width":25,"height":45},{"x":50,"y":0,"fileNum":484,"id":15765,"width":25,"height":45},{"x":75,"y":0,"fileNum":484,"id":15766,"width":25,"height":45},{"x":100,"y":0,"fileNum":484,"id":15767,"width":25,"height":45},{"x":125,"y":0,"fileNum":484,"id":15768,"width":25,"height":45},{"x":0,"y":45,"fileNum":484,"id":15769,"width":25,"height":45},{"x":25,"y":45,"fileNum":484,"id":15770,"width":25,"height":45},{"x":50,"y":45,"fileNum":484,"id":15771,"width":25,"height":45},{"x":75,"y":45,"fileNum":484,"id":15772,"width":25,"height":45},{"x":100,"y":45,"fileNum":484,"id":15773,"width":25,"height":45},{"x":125,"y":45,"fileNum":484,"id":15774,"width":25,"height":45},{"x":0,"y":90,"fileNum":484,"id":15775,"width":25,"height":45},{"x":25,"y":90,"fileNum":484,"id":15776,"width":25,"height":45},{"x":50,"y":90,"fileNum":484,"id":15777,"width":25,"height":45},{"x":75,"y":90,"fileNum":484,"id":15778,"width":25,"height":45},{"x":100,"y":90,"fileNum":484,"id":15779,"width":25,"height":45},{"x":0,"y":135,"fileNum":484,"id":15780,"width":25,"height":45},{"x":25,"y":135,"fileNum":484,"id":15781,"width":25,"height":45},{"x":50,"y":135,"fileNum":484,"id":15782,"width":25,"height":45},{"x":75,"y":135,"fileNum":484,"id":15783,"width":25,"height":45},{"x":100,"y":135,"fileNum":484,"id":15784,"width":25,"height":45},{"x":0,"y":0,"fileNum":487,"id":15789,"width":32,"height":32},{"x":0,"y":0,"fileNum":486,"id":15790,"width":25,"height":45},{"x":25,"y":0,"fileNum":486,"id":15791,"width":25,"height":45},{"x":50,"y":0,"fileNum":486,"id":15792,"width":25,"height":45},{"x":75,"y":0,"fileNum":486,"id":15793,"width":25,"height":45},{"x":100,"y":0,"fileNum":486,"id":15794,"width":25,"height":45},{"x":125,"y":0,"fileNum":486,"id":15795,"width":25,"height":45},{"x":0,"y":45,"fileNum":486,"id":15796,"width":25,"height":45},{"x":25,"y":45,"fileNum":486,"id":15797,"width":25,"height":45},{"x":50,"y":45,"fileNum":486,"id":15798,"width":25,"height":45},{"x":75,"y":45,"fileNum":486,"id":15799,"width":25,"height":45},{"x":100,"y":45,"fileNum":486,"id":15800,"width":25,"height":45},{"x":125,"y":45,"fileNum":486,"id":15801,"width":25,"height":45},{"x":0,"y":90,"fileNum":486,"id":15802,"width":25,"height":45},{"x":25,"y":90,"fileNum":486,"id":15803,"width":25,"height":45},{"x":50,"y":90,"fileNum":486,"id":15804,"width":25,"height":45},{"x":75,"y":90,"fileNum":486,"id":15805,"width":25,"height":45},{"x":100,"y":90,"fileNum":486,"id":15806,"width":25,"height":45},{"x":0,"y":135,"fileNum":486,"id":15807,"width":25,"height":45},{"x":25,"y":135,"fileNum":486,"id":15808,"width":25,"height":45},{"x":50,"y":135,"fileNum":486,"id":15809,"width":25,"height":45},{"x":75,"y":135,"fileNum":486,"id":15810,"width":25,"height":45},{"x":100,"y":135,"fileNum":486,"id":15811,"width":25,"height":45},{"x":0,"y":0,"fileNum":490,"id":15816,"width":32,"height":32},{"x":0,"y":0,"fileNum":489,"id":15817,"width":25,"height":45},{"x":25,"y":0,"fileNum":489,"id":15818,"width":25,"height":45},{"x":50,"y":0,"fileNum":489,"id":15819,"width":25,"height":45},{"x":75,"y":0,"fileNum":489,"id":15820,"width":25,"height":45},{"x":100,"y":0,"fileNum":489,"id":15821,"width":25,"height":45},{"x":125,"y":0,"fileNum":489,"id":15822,"width":25,"height":45},{"x":0,"y":45,"fileNum":489,"id":15823,"width":25,"height":45},{"x":25,"y":45,"fileNum":489,"id":15824,"width":25,"height":45},{"x":50,"y":45,"fileNum":489,"id":15825,"width":25,"height":45},{"x":75,"y":45,"fileNum":489,"id":15826,"width":25,"height":45},{"x":100,"y":45,"fileNum":489,"id":15827,"width":25,"height":45},{"x":125,"y":45,"fileNum":489,"id":15828,"width":25,"height":45},{"x":0,"y":90,"fileNum":489,"id":15829,"width":25,"height":45},{"x":25,"y":90,"fileNum":489,"id":15830,"width":25,"height":45},{"x":50,"y":90,"fileNum":489,"id":15831,"width":25,"height":45},{"x":75,"y":90,"fileNum":489,"id":15832,"width":25,"height":45},{"x":100,"y":90,"fileNum":489,"id":15833,"width":25,"height":45},{"x":0,"y":135,"fileNum":489,"id":15834,"width":25,"height":45},{"x":25,"y":135,"fileNum":489,"id":15835,"width":25,"height":45},{"x":50,"y":135,"fileNum":489,"id":15836,"width":25,"height":45},{"x":75,"y":135,"fileNum":489,"id":15837,"width":25,"height":45},{"x":100,"y":135,"fileNum":489,"id":15838,"width":25,"height":45},{"x":0,"y":0,"fileNum":492,"id":15843,"width":32,"height":32},{"x":0,"y":0,"fileNum":491,"id":15844,"width":25,"height":45},{"x":25,"y":0,"fileNum":491,"id":15845,"width":25,"height":45},{"x":50,"y":0,"fileNum":491,"id":15846,"width":25,"height":45},{"x":75,"y":0,"fileNum":491,"id":15847,"width":25,"height":45},{"x":100,"y":0,"fileNum":491,"id":15848,"width":25,"height":45},{"x":125,"y":0,"fileNum":491,"id":15849,"width":25,"height":45},{"x":0,"y":45,"fileNum":491,"id":15850,"width":25,"height":45},{"x":25,"y":45,"fileNum":491,"id":15851,"width":25,"height":45},{"x":50,"y":45,"fileNum":491,"id":15852,"width":25,"height":45},{"x":75,"y":45,"fileNum":491,"id":15853,"width":25,"height":45},{"x":100,"y":45,"fileNum":491,"id":15854,"width":25,"height":45},{"x":125,"y":45,"fileNum":491,"id":15855,"width":25,"height":45},{"x":0,"y":90,"fileNum":491,"id":15856,"width":25,"height":45},{"x":25,"y":90,"fileNum":491,"id":15857,"width":25,"height":45},{"x":50,"y":90,"fileNum":491,"id":15858,"width":25,"height":45},{"x":75,"y":90,"fileNum":491,"id":15859,"width":25,"height":45},{"x":100,"y":90,"fileNum":491,"id":15860,"width":25,"height":45},{"x":0,"y":135,"fileNum":491,"id":15861,"width":25,"height":45},{"x":25,"y":135,"fileNum":491,"id":15862,"width":25,"height":45},{"x":50,"y":135,"fileNum":491,"id":15863,"width":25,"height":45},{"x":75,"y":135,"fileNum":491,"id":15864,"width":25,"height":45},{"x":100,"y":135,"fileNum":491,"id":15865,"width":25,"height":45},{"x":0,"y":0,"fileNum":494,"id":15870,"width":32,"height":32},{"x":0,"y":0,"fileNum":493,"id":15871,"width":25,"height":45},{"x":25,"y":0,"fileNum":493,"id":15872,"width":25,"height":45},{"x":50,"y":0,"fileNum":493,"id":15873,"width":25,"height":45},{"x":75,"y":0,"fileNum":493,"id":15874,"width":25,"height":45},{"x":100,"y":0,"fileNum":493,"id":15875,"width":25,"height":45},{"x":125,"y":0,"fileNum":493,"id":15876,"width":25,"height":45},{"x":0,"y":45,"fileNum":493,"id":15877,"width":25,"height":45},{"x":25,"y":45,"fileNum":493,"id":15878,"width":25,"height":45},{"x":50,"y":45,"fileNum":493,"id":15879,"width":25,"height":45},{"x":75,"y":45,"fileNum":493,"id":15880,"width":25,"height":45},{"x":100,"y":45,"fileNum":493,"id":15881,"width":25,"height":45},{"x":125,"y":45,"fileNum":493,"id":15882,"width":25,"height":45},{"x":0,"y":90,"fileNum":493,"id":15883,"width":25,"height":45},{"x":25,"y":90,"fileNum":493,"id":15884,"width":25,"height":45},{"x":50,"y":90,"fileNum":493,"id":15885,"width":25,"height":45},{"x":75,"y":90,"fileNum":493,"id":15886,"width":25,"height":45},{"x":100,"y":90,"fileNum":493,"id":15887,"width":25,"height":45},{"x":0,"y":135,"fileNum":493,"id":15888,"width":25,"height":45},{"x":25,"y":135,"fileNum":493,"id":15889,"width":25,"height":45},{"x":50,"y":135,"fileNum":493,"id":15890,"width":25,"height":45},{"x":75,"y":135,"fileNum":493,"id":15891,"width":25,"height":45},{"x":100,"y":135,"fileNum":493,"id":15892,"width":25,"height":45},{"x":0,"y":0,"fileNum":496,"id":15897,"width":32,"height":32},{"x":0,"y":0,"fileNum":495,"id":15898,"width":25,"height":45},{"x":25,"y":0,"fileNum":495,"id":15899,"width":25,"height":45},{"x":50,"y":0,"fileNum":495,"id":15900,"width":25,"height":45},{"x":75,"y":0,"fileNum":495,"id":15901,"width":25,"height":45},{"x":100,"y":0,"fileNum":495,"id":15902,"width":25,"height":45},{"x":125,"y":0,"fileNum":495,"id":15903,"width":25,"height":45},{"x":0,"y":45,"fileNum":495,"id":15904,"width":25,"height":45},{"x":25,"y":45,"fileNum":495,"id":15905,"width":25,"height":45},{"x":50,"y":45,"fileNum":495,"id":15906,"width":25,"height":45},{"x":75,"y":45,"fileNum":495,"id":15907,"width":25,"height":45},{"x":100,"y":45,"fileNum":495,"id":15908,"width":25,"height":45},{"x":125,"y":45,"fileNum":495,"id":15909,"width":25,"height":45},{"x":0,"y":90,"fileNum":495,"id":15910,"width":25,"height":45},{"x":25,"y":90,"fileNum":495,"id":15911,"width":25,"height":45},{"x":50,"y":90,"fileNum":495,"id":15912,"width":25,"height":45},{"x":75,"y":90,"fileNum":495,"id":15913,"width":25,"height":45},{"x":100,"y":90,"fileNum":495,"id":15914,"width":25,"height":45},{"x":0,"y":135,"fileNum":495,"id":15915,"width":25,"height":45},{"x":25,"y":135,"fileNum":495,"id":15916,"width":25,"height":45},{"x":50,"y":135,"fileNum":495,"id":15917,"width":25,"height":45},{"x":75,"y":135,"fileNum":495,"id":15918,"width":25,"height":45},{"x":100,"y":135,"fileNum":495,"id":15919,"width":25,"height":45},{"x":0,"y":0,"fileNum":498,"id":15924,"width":32,"height":32},{"x":0,"y":0,"fileNum":497,"id":15925,"width":25,"height":45},{"x":25,"y":0,"fileNum":497,"id":15926,"width":25,"height":45},{"x":50,"y":0,"fileNum":497,"id":15927,"width":25,"height":45},{"x":75,"y":0,"fileNum":497,"id":15928,"width":25,"height":45},{"x":100,"y":0,"fileNum":497,"id":15929,"width":25,"height":45},{"x":125,"y":0,"fileNum":497,"id":15930,"width":25,"height":45},{"x":0,"y":45,"fileNum":497,"id":15931,"width":25,"height":45},{"x":25,"y":45,"fileNum":497,"id":15932,"width":25,"height":45},{"x":50,"y":45,"fileNum":497,"id":15933,"width":25,"height":45},{"x":75,"y":45,"fileNum":497,"id":15934,"width":25,"height":45},{"x":100,"y":45,"fileNum":497,"id":15935,"width":25,"height":45},{"x":125,"y":45,"fileNum":497,"id":15936,"width":25,"height":45},{"x":0,"y":90,"fileNum":497,"id":15937,"width":25,"height":45},{"x":25,"y":90,"fileNum":497,"id":15938,"width":25,"height":45},{"x":50,"y":90,"fileNum":497,"id":15939,"width":25,"height":45},{"x":75,"y":90,"fileNum":497,"id":15940,"width":25,"height":45},{"x":100,"y":90,"fileNum":497,"id":15941,"width":25,"height":45},{"x":0,"y":135,"fileNum":497,"id":15942,"width":25,"height":45},{"x":25,"y":135,"fileNum":497,"id":15943,"width":25,"height":45},{"x":50,"y":135,"fileNum":497,"id":15944,"width":25,"height":45},{"x":75,"y":135,"fileNum":497,"id":15945,"width":25,"height":45},{"x":100,"y":135,"fileNum":497,"id":15946,"width":25,"height":45},{"x":0,"y":0,"fileNum":501,"id":15951,"width":32,"height":32},{"x":0,"y":0,"fileNum":500,"id":15952,"width":25,"height":45},{"x":25,"y":0,"fileNum":500,"id":15953,"width":25,"height":45},{"x":50,"y":0,"fileNum":500,"id":15954,"width":25,"height":45},{"x":75,"y":0,"fileNum":500,"id":15955,"width":25,"height":45},{"x":100,"y":0,"fileNum":500,"id":15956,"width":25,"height":45},{"x":125,"y":0,"fileNum":500,"id":15957,"width":25,"height":45},{"x":0,"y":45,"fileNum":500,"id":15958,"width":25,"height":45},{"x":25,"y":45,"fileNum":500,"id":15959,"width":25,"height":45},{"x":50,"y":45,"fileNum":500,"id":15960,"width":25,"height":45},{"x":75,"y":45,"fileNum":500,"id":15961,"width":25,"height":45},{"x":100,"y":45,"fileNum":500,"id":15962,"width":25,"height":45},{"x":125,"y":45,"fileNum":500,"id":15963,"width":25,"height":45},{"x":0,"y":90,"fileNum":500,"id":15964,"width":25,"height":45},{"x":25,"y":90,"fileNum":500,"id":15965,"width":25,"height":45},{"x":50,"y":90,"fileNum":500,"id":15966,"width":25,"height":45},{"x":75,"y":90,"fileNum":500,"id":15967,"width":25,"height":45},{"x":100,"y":90,"fileNum":500,"id":15968,"width":25,"height":45},{"x":0,"y":135,"fileNum":500,"id":15969,"width":25,"height":45},{"x":25,"y":135,"fileNum":500,"id":15970,"width":25,"height":45},{"x":50,"y":135,"fileNum":500,"id":15971,"width":25,"height":45},{"x":75,"y":135,"fileNum":500,"id":15972,"width":25,"height":45},{"x":100,"y":135,"fileNum":500,"id":15973,"width":25,"height":45},{"x":0,"y":0,"fileNum":503,"id":15978,"width":32,"height":32},{"x":0,"y":0,"fileNum":502,"id":15979,"width":25,"height":45},{"x":25,"y":0,"fileNum":502,"id":15980,"width":25,"height":45},{"x":50,"y":0,"fileNum":502,"id":15981,"width":25,"height":45},{"x":75,"y":0,"fileNum":502,"id":15982,"width":25,"height":45},{"x":100,"y":0,"fileNum":502,"id":15983,"width":25,"height":45},{"x":125,"y":0,"fileNum":502,"id":15984,"width":25,"height":45},{"x":0,"y":45,"fileNum":502,"id":15985,"width":25,"height":45},{"x":25,"y":45,"fileNum":502,"id":15986,"width":25,"height":45},{"x":50,"y":45,"fileNum":502,"id":15987,"width":25,"height":45},{"x":75,"y":45,"fileNum":502,"id":15988,"width":25,"height":45},{"x":100,"y":45,"fileNum":502,"id":15989,"width":25,"height":45},{"x":125,"y":45,"fileNum":502,"id":15990,"width":25,"height":45},{"x":0,"y":90,"fileNum":502,"id":15991,"width":25,"height":45},{"x":25,"y":90,"fileNum":502,"id":15992,"width":25,"height":45},{"x":50,"y":90,"fileNum":502,"id":15993,"width":25,"height":45},{"x":75,"y":90,"fileNum":502,"id":15994,"width":25,"height":45},{"x":100,"y":90,"fileNum":502,"id":15995,"width":25,"height":45},{"x":0,"y":135,"fileNum":502,"id":15996,"width":25,"height":45},{"x":25,"y":135,"fileNum":502,"id":15997,"width":25,"height":45},{"x":50,"y":135,"fileNum":502,"id":15998,"width":25,"height":45},{"x":75,"y":135,"fileNum":502,"id":15999,"width":25,"height":45},{"x":100,"y":135,"fileNum":502,"id":16000,"width":25,"height":45},{"x":0,"y":0,"fileNum":505,"id":16005,"width":32,"height":32},{"x":0,"y":0,"fileNum":504,"id":16006,"width":25,"height":45},{"x":25,"y":0,"fileNum":504,"id":16007,"width":25,"height":45},{"x":50,"y":0,"fileNum":504,"id":16008,"width":25,"height":45},{"x":75,"y":0,"fileNum":504,"id":16009,"width":25,"height":45},{"x":100,"y":0,"fileNum":504,"id":16010,"width":25,"height":45},{"x":125,"y":0,"fileNum":504,"id":16011,"width":25,"height":45},{"x":0,"y":45,"fileNum":504,"id":16012,"width":25,"height":45},{"x":25,"y":45,"fileNum":504,"id":16013,"width":25,"height":45},{"x":50,"y":45,"fileNum":504,"id":16014,"width":25,"height":45},{"x":75,"y":45,"fileNum":504,"id":16015,"width":25,"height":45},{"x":100,"y":45,"fileNum":504,"id":16016,"width":25,"height":45},{"x":125,"y":45,"fileNum":504,"id":16017,"width":25,"height":45},{"x":0,"y":90,"fileNum":504,"id":16018,"width":25,"height":45},{"x":25,"y":90,"fileNum":504,"id":16019,"width":25,"height":45},{"x":50,"y":90,"fileNum":504,"id":16020,"width":25,"height":45},{"x":75,"y":90,"fileNum":504,"id":16021,"width":25,"height":45},{"x":100,"y":90,"fileNum":504,"id":16022,"width":25,"height":45},{"x":0,"y":135,"fileNum":504,"id":16023,"width":25,"height":45},{"x":25,"y":135,"fileNum":504,"id":16024,"width":25,"height":45},{"x":50,"y":135,"fileNum":504,"id":16025,"width":25,"height":45},{"x":75,"y":135,"fileNum":504,"id":16026,"width":25,"height":45},{"x":100,"y":135,"fileNum":504,"id":16027,"width":25,"height":45},{"x":0,"y":0,"fileNum":507,"id":16032,"width":32,"height":32},{"x":0,"y":0,"fileNum":506,"id":16033,"width":25,"height":45},{"x":25,"y":0,"fileNum":506,"id":16034,"width":25,"height":45},{"x":50,"y":0,"fileNum":506,"id":16035,"width":25,"height":45},{"x":75,"y":0,"fileNum":506,"id":16036,"width":25,"height":45},{"x":100,"y":0,"fileNum":506,"id":16037,"width":25,"height":45},{"x":125,"y":0,"fileNum":506,"id":16038,"width":25,"height":45},{"x":0,"y":45,"fileNum":506,"id":16039,"width":25,"height":45},{"x":25,"y":45,"fileNum":506,"id":16040,"width":25,"height":45},{"x":50,"y":45,"fileNum":506,"id":16041,"width":25,"height":45},{"x":75,"y":45,"fileNum":506,"id":16042,"width":25,"height":45},{"x":100,"y":45,"fileNum":506,"id":16043,"width":25,"height":45},{"x":125,"y":45,"fileNum":506,"id":16044,"width":25,"height":45},{"x":0,"y":90,"fileNum":506,"id":16045,"width":25,"height":45},{"x":25,"y":90,"fileNum":506,"id":16046,"width":25,"height":45},{"x":50,"y":90,"fileNum":506,"id":16047,"width":25,"height":45},{"x":75,"y":90,"fileNum":506,"id":16048,"width":25,"height":45},{"x":100,"y":90,"fileNum":506,"id":16049,"width":25,"height":45},{"x":0,"y":135,"fileNum":506,"id":16050,"width":25,"height":45},{"x":25,"y":135,"fileNum":506,"id":16051,"width":25,"height":45},{"x":50,"y":135,"fileNum":506,"id":16052,"width":25,"height":45},{"x":75,"y":135,"fileNum":506,"id":16053,"width":25,"height":45},{"x":100,"y":135,"fileNum":506,"id":16054,"width":25,"height":45},{"x":0,"y":0,"fileNum":510,"id":16059,"width":32,"height":32},{"x":0,"y":0,"fileNum":508,"id":16060,"width":25,"height":45},{"x":25,"y":0,"fileNum":508,"id":16061,"width":25,"height":45},{"x":50,"y":0,"fileNum":508,"id":16062,"width":25,"height":45},{"x":75,"y":0,"fileNum":508,"id":16063,"width":25,"height":45},{"x":100,"y":0,"fileNum":508,"id":16064,"width":25,"height":45},{"x":125,"y":0,"fileNum":508,"id":16065,"width":25,"height":45},{"x":0,"y":45,"fileNum":508,"id":16066,"width":25,"height":45},{"x":25,"y":45,"fileNum":508,"id":16067,"width":25,"height":45},{"x":50,"y":45,"fileNum":508,"id":16068,"width":25,"height":45},{"x":75,"y":45,"fileNum":508,"id":16069,"width":25,"height":45},{"x":100,"y":45,"fileNum":508,"id":16070,"width":25,"height":45},{"x":125,"y":45,"fileNum":508,"id":16071,"width":25,"height":45},{"x":0,"y":90,"fileNum":508,"id":16072,"width":25,"height":45},{"x":25,"y":90,"fileNum":508,"id":16073,"width":25,"height":45},{"x":50,"y":90,"fileNum":508,"id":16074,"width":25,"height":45},{"x":75,"y":90,"fileNum":508,"id":16075,"width":25,"height":45},{"x":100,"y":90,"fileNum":508,"id":16076,"width":25,"height":45},{"x":0,"y":135,"fileNum":508,"id":16077,"width":25,"height":45},{"x":25,"y":135,"fileNum":508,"id":16078,"width":25,"height":45},{"x":50,"y":135,"fileNum":508,"id":16079,"width":25,"height":45},{"x":75,"y":135,"fileNum":508,"id":16080,"width":25,"height":45},{"x":100,"y":135,"fileNum":508,"id":16081,"width":25,"height":45},{"x":0,"y":0,"fileNum":512,"id":16086,"width":32,"height":32},{"x":0,"y":0,"fileNum":511,"id":16087,"width":25,"height":45},{"x":25,"y":0,"fileNum":511,"id":16088,"width":25,"height":45},{"x":50,"y":0,"fileNum":511,"id":16089,"width":25,"height":45},{"x":75,"y":0,"fileNum":511,"id":16090,"width":25,"height":45},{"x":100,"y":0,"fileNum":511,"id":16091,"width":25,"height":45},{"x":125,"y":0,"fileNum":511,"id":16092,"width":25,"height":45},{"x":0,"y":45,"fileNum":511,"id":16093,"width":25,"height":45},{"x":25,"y":45,"fileNum":511,"id":16094,"width":25,"height":45},{"x":50,"y":45,"fileNum":511,"id":16095,"width":25,"height":45},{"x":75,"y":45,"fileNum":511,"id":16096,"width":25,"height":45},{"x":100,"y":45,"fileNum":511,"id":16097,"width":25,"height":45},{"x":125,"y":45,"fileNum":511,"id":16098,"width":25,"height":45},{"x":0,"y":90,"fileNum":511,"id":16099,"width":25,"height":45},{"x":25,"y":90,"fileNum":511,"id":16100,"width":25,"height":45},{"x":50,"y":90,"fileNum":511,"id":16101,"width":25,"height":45},{"x":75,"y":90,"fileNum":511,"id":16102,"width":25,"height":45},{"x":100,"y":90,"fileNum":511,"id":16103,"width":25,"height":45},{"x":0,"y":135,"fileNum":511,"id":16104,"width":25,"height":45},{"x":25,"y":135,"fileNum":511,"id":16105,"width":25,"height":45},{"x":50,"y":135,"fileNum":511,"id":16106,"width":25,"height":45},{"x":75,"y":135,"fileNum":511,"id":16107,"width":25,"height":45},{"x":100,"y":135,"fileNum":511,"id":16108,"width":25,"height":45},{"x":0,"y":0,"fileNum":514,"id":16113,"width":32,"height":32},{"x":0,"y":0,"fileNum":513,"id":16114,"width":25,"height":45},{"x":25,"y":0,"fileNum":513,"id":16115,"width":25,"height":45},{"x":50,"y":0,"fileNum":513,"id":16116,"width":25,"height":45},{"x":75,"y":0,"fileNum":513,"id":16117,"width":25,"height":45},{"x":100,"y":0,"fileNum":513,"id":16118,"width":25,"height":45},{"x":125,"y":0,"fileNum":513,"id":16119,"width":25,"height":45},{"x":0,"y":45,"fileNum":513,"id":16120,"width":25,"height":45},{"x":25,"y":45,"fileNum":513,"id":16121,"width":25,"height":45},{"x":50,"y":45,"fileNum":513,"id":16122,"width":25,"height":45},{"x":75,"y":45,"fileNum":513,"id":16123,"width":25,"height":45},{"x":100,"y":45,"fileNum":513,"id":16124,"width":25,"height":45},{"x":125,"y":45,"fileNum":513,"id":16125,"width":25,"height":45},{"x":0,"y":90,"fileNum":513,"id":16126,"width":25,"height":45},{"x":25,"y":90,"fileNum":513,"id":16127,"width":25,"height":45},{"x":50,"y":90,"fileNum":513,"id":16128,"width":25,"height":45},{"x":75,"y":90,"fileNum":513,"id":16129,"width":25,"height":45},{"x":100,"y":90,"fileNum":513,"id":16130,"width":25,"height":45},{"x":0,"y":135,"fileNum":513,"id":16131,"width":25,"height":45},{"x":25,"y":135,"fileNum":513,"id":16132,"width":25,"height":45},{"x":50,"y":135,"fileNum":513,"id":16133,"width":25,"height":45},{"x":75,"y":135,"fileNum":513,"id":16134,"width":25,"height":45},{"x":100,"y":135,"fileNum":513,"id":16135,"width":25,"height":45},{"x":0,"y":0,"fileNum":516,"id":16140,"width":32,"height":32},{"x":0,"y":0,"fileNum":515,"id":16141,"width":25,"height":45},{"x":25,"y":0,"fileNum":515,"id":16142,"width":25,"height":45},{"x":50,"y":0,"fileNum":515,"id":16143,"width":25,"height":45},{"x":75,"y":0,"fileNum":515,"id":16144,"width":25,"height":45},{"x":100,"y":0,"fileNum":515,"id":16145,"width":25,"height":45},{"x":125,"y":0,"fileNum":515,"id":16146,"width":25,"height":45},{"x":0,"y":45,"fileNum":515,"id":16147,"width":25,"height":45},{"x":25,"y":45,"fileNum":515,"id":16148,"width":25,"height":45},{"x":50,"y":45,"fileNum":515,"id":16149,"width":25,"height":45},{"x":75,"y":45,"fileNum":515,"id":16150,"width":25,"height":45},{"x":100,"y":45,"fileNum":515,"id":16151,"width":25,"height":45},{"x":125,"y":45,"fileNum":515,"id":16152,"width":25,"height":45},{"x":0,"y":90,"fileNum":515,"id":16153,"width":25,"height":45},{"x":25,"y":90,"fileNum":515,"id":16154,"width":25,"height":45},{"x":50,"y":90,"fileNum":515,"id":16155,"width":25,"height":45},{"x":75,"y":90,"fileNum":515,"id":16156,"width":25,"height":45},{"x":100,"y":90,"fileNum":515,"id":16157,"width":25,"height":45},{"x":0,"y":135,"fileNum":515,"id":16158,"width":25,"height":45},{"x":25,"y":135,"fileNum":515,"id":16159,"width":25,"height":45},{"x":50,"y":135,"fileNum":515,"id":16160,"width":25,"height":45},{"x":75,"y":135,"fileNum":515,"id":16161,"width":25,"height":45},{"x":100,"y":135,"fileNum":515,"id":16162,"width":25,"height":45},{"x":0,"y":0,"fileNum":518,"id":16167,"width":32,"height":32},{"x":0,"y":0,"fileNum":517,"id":16168,"width":25,"height":45},{"x":25,"y":0,"fileNum":517,"id":16169,"width":25,"height":45},{"x":50,"y":0,"fileNum":517,"id":16170,"width":25,"height":45},{"x":75,"y":0,"fileNum":517,"id":16171,"width":25,"height":45},{"x":100,"y":0,"fileNum":517,"id":16172,"width":25,"height":45},{"x":125,"y":0,"fileNum":517,"id":16173,"width":25,"height":45},{"x":0,"y":45,"fileNum":517,"id":16174,"width":25,"height":45},{"x":25,"y":45,"fileNum":517,"id":16175,"width":25,"height":45},{"x":50,"y":45,"fileNum":517,"id":16176,"width":25,"height":45},{"x":75,"y":45,"fileNum":517,"id":16177,"width":25,"height":45},{"x":100,"y":45,"fileNum":517,"id":16178,"width":25,"height":45},{"x":125,"y":45,"fileNum":517,"id":16179,"width":25,"height":45},{"x":0,"y":90,"fileNum":517,"id":16180,"width":25,"height":45},{"x":25,"y":90,"fileNum":517,"id":16181,"width":25,"height":45},{"x":50,"y":90,"fileNum":517,"id":16182,"width":25,"height":45},{"x":75,"y":90,"fileNum":517,"id":16183,"width":25,"height":45},{"x":100,"y":90,"fileNum":517,"id":16184,"width":25,"height":45},{"x":0,"y":135,"fileNum":517,"id":16185,"width":25,"height":45},{"x":25,"y":135,"fileNum":517,"id":16186,"width":25,"height":45},{"x":50,"y":135,"fileNum":517,"id":16187,"width":25,"height":45},{"x":75,"y":135,"fileNum":517,"id":16188,"width":25,"height":45},{"x":100,"y":135,"fileNum":517,"id":16189,"width":25,"height":45},{"x":0,"y":0,"fileNum":521,"id":16194,"width":32,"height":32},{"x":0,"y":0,"fileNum":519,"id":16195,"width":25,"height":45},{"x":25,"y":0,"fileNum":519,"id":16196,"width":25,"height":45},{"x":50,"y":0,"fileNum":519,"id":16197,"width":25,"height":45},{"x":75,"y":0,"fileNum":519,"id":16198,"width":25,"height":45},{"x":100,"y":0,"fileNum":519,"id":16199,"width":25,"height":45},{"x":125,"y":0,"fileNum":519,"id":16200,"width":25,"height":45},{"x":0,"y":45,"fileNum":519,"id":16201,"width":25,"height":45},{"x":25,"y":45,"fileNum":519,"id":16202,"width":25,"height":45},{"x":50,"y":45,"fileNum":519,"id":16203,"width":25,"height":45},{"x":75,"y":45,"fileNum":519,"id":16204,"width":25,"height":45},{"x":100,"y":45,"fileNum":519,"id":16205,"width":25,"height":45},{"x":125,"y":45,"fileNum":519,"id":16206,"width":25,"height":45},{"x":0,"y":90,"fileNum":519,"id":16207,"width":25,"height":45},{"x":25,"y":90,"fileNum":519,"id":16208,"width":25,"height":45},{"x":50,"y":90,"fileNum":519,"id":16209,"width":25,"height":45},{"x":75,"y":90,"fileNum":519,"id":16210,"width":25,"height":45},{"x":100,"y":90,"fileNum":519,"id":16211,"width":25,"height":45},{"x":0,"y":135,"fileNum":519,"id":16212,"width":25,"height":45},{"x":25,"y":135,"fileNum":519,"id":16213,"width":25,"height":45},{"x":50,"y":135,"fileNum":519,"id":16214,"width":25,"height":45},{"x":75,"y":135,"fileNum":519,"id":16215,"width":25,"height":45},{"x":100,"y":135,"fileNum":519,"id":16216,"width":25,"height":45},{"x":0,"y":0,"fileNum":523,"id":16221,"width":32,"height":32},{"x":0,"y":0,"fileNum":522,"id":16222,"width":25,"height":45},{"x":25,"y":0,"fileNum":522,"id":16223,"width":25,"height":45},{"x":50,"y":0,"fileNum":522,"id":16224,"width":25,"height":45},{"x":75,"y":0,"fileNum":522,"id":16225,"width":25,"height":45},{"x":100,"y":0,"fileNum":522,"id":16226,"width":25,"height":45},{"x":125,"y":0,"fileNum":522,"id":16227,"width":25,"height":45},{"x":0,"y":45,"fileNum":522,"id":16228,"width":25,"height":45},{"x":25,"y":45,"fileNum":522,"id":16229,"width":25,"height":45},{"x":50,"y":45,"fileNum":522,"id":16230,"width":25,"height":45},{"x":75,"y":45,"fileNum":522,"id":16231,"width":25,"height":45},{"x":100,"y":45,"fileNum":522,"id":16232,"width":25,"height":45},{"x":125,"y":45,"fileNum":522,"id":16233,"width":25,"height":45},{"x":0,"y":90,"fileNum":522,"id":16234,"width":25,"height":45},{"x":25,"y":90,"fileNum":522,"id":16235,"width":25,"height":45},{"x":50,"y":90,"fileNum":522,"id":16236,"width":25,"height":45},{"x":75,"y":90,"fileNum":522,"id":16237,"width":25,"height":45},{"x":100,"y":90,"fileNum":522,"id":16238,"width":25,"height":45},{"x":0,"y":135,"fileNum":522,"id":16239,"width":25,"height":45},{"x":25,"y":135,"fileNum":522,"id":16240,"width":25,"height":45},{"x":50,"y":135,"fileNum":522,"id":16241,"width":25,"height":45},{"x":75,"y":135,"fileNum":522,"id":16242,"width":25,"height":45},{"x":100,"y":135,"fileNum":522,"id":16243,"width":25,"height":45},{"x":0,"y":0,"fileNum":525,"id":16248,"width":32,"height":32},{"x":0,"y":0,"fileNum":524,"id":16249,"width":25,"height":45},{"x":25,"y":0,"fileNum":524,"id":16250,"width":25,"height":45},{"x":50,"y":0,"fileNum":524,"id":16251,"width":25,"height":45},{"x":75,"y":0,"fileNum":524,"id":16252,"width":25,"height":45},{"x":100,"y":0,"fileNum":524,"id":16253,"width":25,"height":45},{"x":125,"y":0,"fileNum":524,"id":16254,"width":25,"height":45},{"x":0,"y":45,"fileNum":524,"id":16255,"width":25,"height":45},{"x":25,"y":45,"fileNum":524,"id":16256,"width":25,"height":45},{"x":50,"y":45,"fileNum":524,"id":16257,"width":25,"height":45},{"x":75,"y":45,"fileNum":524,"id":16258,"width":25,"height":45},{"x":100,"y":45,"fileNum":524,"id":16259,"width":25,"height":45},{"x":125,"y":45,"fileNum":524,"id":16260,"width":25,"height":45},{"x":0,"y":90,"fileNum":524,"id":16261,"width":25,"height":45},{"x":25,"y":90,"fileNum":524,"id":16262,"width":25,"height":45},{"x":50,"y":90,"fileNum":524,"id":16263,"width":25,"height":45},{"x":75,"y":90,"fileNum":524,"id":16264,"width":25,"height":45},{"x":100,"y":90,"fileNum":524,"id":16265,"width":25,"height":45},{"x":0,"y":135,"fileNum":524,"id":16266,"width":25,"height":45},{"x":25,"y":135,"fileNum":524,"id":16267,"width":25,"height":45},{"x":50,"y":135,"fileNum":524,"id":16268,"width":25,"height":45},{"x":75,"y":135,"fileNum":524,"id":16269,"width":25,"height":45},{"x":100,"y":135,"fileNum":524,"id":16270,"width":25,"height":45},{"x":0,"y":0,"fileNum":527,"id":16275,"width":32,"height":32},{"x":0,"y":0,"fileNum":526,"id":16276,"width":25,"height":45},{"x":25,"y":0,"fileNum":526,"id":16277,"width":25,"height":45},{"x":50,"y":0,"fileNum":526,"id":16278,"width":25,"height":45},{"x":75,"y":0,"fileNum":526,"id":16279,"width":25,"height":45},{"x":100,"y":0,"fileNum":526,"id":16280,"width":25,"height":45},{"x":125,"y":0,"fileNum":526,"id":16281,"width":25,"height":45},{"x":0,"y":45,"fileNum":526,"id":16282,"width":25,"height":45},{"x":25,"y":45,"fileNum":526,"id":16283,"width":25,"height":45},{"x":50,"y":45,"fileNum":526,"id":16284,"width":25,"height":45},{"x":75,"y":45,"fileNum":526,"id":16285,"width":25,"height":45},{"x":100,"y":45,"fileNum":526,"id":16286,"width":25,"height":45},{"x":125,"y":45,"fileNum":526,"id":16287,"width":25,"height":45},{"x":0,"y":90,"fileNum":526,"id":16288,"width":25,"height":45},{"x":25,"y":90,"fileNum":526,"id":16289,"width":25,"height":45},{"x":50,"y":90,"fileNum":526,"id":16290,"width":25,"height":45},{"x":75,"y":90,"fileNum":526,"id":16291,"width":25,"height":45},{"x":100,"y":90,"fileNum":526,"id":16292,"width":25,"height":45},{"x":0,"y":135,"fileNum":526,"id":16293,"width":25,"height":45},{"x":25,"y":135,"fileNum":526,"id":16294,"width":25,"height":45},{"x":50,"y":135,"fileNum":526,"id":16295,"width":25,"height":45},{"x":75,"y":135,"fileNum":526,"id":16296,"width":25,"height":45},{"x":100,"y":135,"fileNum":526,"id":16297,"width":25,"height":45},{"x":0,"y":0,"fileNum":529,"id":16302,"width":32,"height":32},{"x":0,"y":0,"fileNum":528,"id":16303,"width":25,"height":45},{"x":25,"y":0,"fileNum":528,"id":16304,"width":25,"height":45},{"x":50,"y":0,"fileNum":528,"id":16305,"width":25,"height":45},{"x":75,"y":0,"fileNum":528,"id":16306,"width":25,"height":45},{"x":100,"y":0,"fileNum":528,"id":16307,"width":25,"height":45},{"x":125,"y":0,"fileNum":528,"id":16308,"width":25,"height":45},{"x":0,"y":45,"fileNum":528,"id":16309,"width":25,"height":45},{"x":25,"y":45,"fileNum":528,"id":16310,"width":25,"height":45},{"x":50,"y":45,"fileNum":528,"id":16311,"width":25,"height":45},{"x":75,"y":45,"fileNum":528,"id":16312,"width":25,"height":45},{"x":100,"y":45,"fileNum":528,"id":16313,"width":25,"height":45},{"x":125,"y":45,"fileNum":528,"id":16314,"width":25,"height":45},{"x":0,"y":90,"fileNum":528,"id":16315,"width":25,"height":45},{"x":25,"y":90,"fileNum":528,"id":16316,"width":25,"height":45},{"x":50,"y":90,"fileNum":528,"id":16317,"width":25,"height":45},{"x":75,"y":90,"fileNum":528,"id":16318,"width":25,"height":45},{"x":100,"y":90,"fileNum":528,"id":16319,"width":25,"height":45},{"x":0,"y":135,"fileNum":528,"id":16320,"width":25,"height":45},{"x":25,"y":135,"fileNum":528,"id":16321,"width":25,"height":45},{"x":50,"y":135,"fileNum":528,"id":16322,"width":25,"height":45},{"x":75,"y":135,"fileNum":528,"id":16323,"width":25,"height":45},{"x":100,"y":135,"fileNum":528,"id":16324,"width":25,"height":45},{"x":0,"y":0,"fileNum":532,"id":16329,"width":32,"height":32},{"x":0,"y":0,"fileNum":530,"id":16330,"width":25,"height":45},{"x":25,"y":0,"fileNum":530,"id":16331,"width":25,"height":45},{"x":50,"y":0,"fileNum":530,"id":16332,"width":25,"height":45},{"x":75,"y":0,"fileNum":530,"id":16333,"width":25,"height":45},{"x":100,"y":0,"fileNum":530,"id":16334,"width":25,"height":45},{"x":125,"y":0,"fileNum":530,"id":16335,"width":25,"height":45},{"x":0,"y":45,"fileNum":530,"id":16336,"width":25,"height":45},{"x":25,"y":45,"fileNum":530,"id":16337,"width":25,"height":45},{"x":50,"y":45,"fileNum":530,"id":16338,"width":25,"height":45},{"x":75,"y":45,"fileNum":530,"id":16339,"width":25,"height":45},{"x":100,"y":45,"fileNum":530,"id":16340,"width":25,"height":45},{"x":125,"y":45,"fileNum":530,"id":16341,"width":25,"height":45},{"x":0,"y":90,"fileNum":530,"id":16342,"width":25,"height":45},{"x":25,"y":90,"fileNum":530,"id":16343,"width":25,"height":45},{"x":50,"y":90,"fileNum":530,"id":16344,"width":25,"height":45},{"x":75,"y":90,"fileNum":530,"id":16345,"width":25,"height":45},{"x":100,"y":90,"fileNum":530,"id":16346,"width":25,"height":45},{"x":0,"y":135,"fileNum":530,"id":16347,"width":25,"height":45},{"x":25,"y":135,"fileNum":530,"id":16348,"width":25,"height":45},{"x":50,"y":135,"fileNum":530,"id":16349,"width":25,"height":45},{"x":75,"y":135,"fileNum":530,"id":16350,"width":25,"height":45},{"x":100,"y":135,"fileNum":530,"id":16351,"width":25,"height":45},{"x":0,"y":0,"fileNum":534,"id":16356,"width":32,"height":32},{"x":0,"y":0,"fileNum":533,"id":16357,"width":25,"height":45},{"x":25,"y":0,"fileNum":533,"id":16358,"width":25,"height":45},{"x":50,"y":0,"fileNum":533,"id":16359,"width":25,"height":45},{"x":75,"y":0,"fileNum":533,"id":16360,"width":25,"height":45},{"x":100,"y":0,"fileNum":533,"id":16361,"width":25,"height":45},{"x":125,"y":0,"fileNum":533,"id":16362,"width":25,"height":45},{"x":0,"y":45,"fileNum":533,"id":16363,"width":25,"height":45},{"x":25,"y":45,"fileNum":533,"id":16364,"width":25,"height":45},{"x":50,"y":45,"fileNum":533,"id":16365,"width":25,"height":45},{"x":75,"y":45,"fileNum":533,"id":16366,"width":25,"height":45},{"x":100,"y":45,"fileNum":533,"id":16367,"width":25,"height":45},{"x":125,"y":45,"fileNum":533,"id":16368,"width":25,"height":45},{"x":0,"y":90,"fileNum":533,"id":16369,"width":25,"height":45},{"x":25,"y":90,"fileNum":533,"id":16370,"width":25,"height":45},{"x":50,"y":90,"fileNum":533,"id":16371,"width":25,"height":45},{"x":75,"y":90,"fileNum":533,"id":16372,"width":25,"height":45},{"x":100,"y":90,"fileNum":533,"id":16373,"width":25,"height":45},{"x":0,"y":135,"fileNum":533,"id":16374,"width":25,"height":45},{"x":25,"y":135,"fileNum":533,"id":16375,"width":25,"height":45},{"x":50,"y":135,"fileNum":533,"id":16376,"width":25,"height":45},{"x":75,"y":135,"fileNum":533,"id":16377,"width":25,"height":45},{"x":100,"y":135,"fileNum":533,"id":16378,"width":25,"height":45},{"x":0,"y":0,"fileNum":536,"id":16383,"width":32,"height":32},{"x":0,"y":0,"fileNum":535,"id":16384,"width":25,"height":45},{"x":25,"y":0,"fileNum":535,"id":16385,"width":25,"height":45},{"x":50,"y":0,"fileNum":535,"id":16386,"width":25,"height":45},{"x":75,"y":0,"fileNum":535,"id":16387,"width":25,"height":45},{"x":100,"y":0,"fileNum":535,"id":16388,"width":25,"height":45},{"x":125,"y":0,"fileNum":535,"id":16389,"width":25,"height":45},{"x":0,"y":45,"fileNum":535,"id":16390,"width":25,"height":45},{"x":25,"y":45,"fileNum":535,"id":16391,"width":25,"height":45},{"x":50,"y":45,"fileNum":535,"id":16392,"width":25,"height":45},{"x":75,"y":45,"fileNum":535,"id":16393,"width":25,"height":45},{"x":100,"y":45,"fileNum":535,"id":16394,"width":25,"height":45},{"x":125,"y":45,"fileNum":535,"id":16395,"width":25,"height":45},{"x":0,"y":90,"fileNum":535,"id":16396,"width":25,"height":45},{"x":25,"y":90,"fileNum":535,"id":16397,"width":25,"height":45},{"x":50,"y":90,"fileNum":535,"id":16398,"width":25,"height":45},{"x":75,"y":90,"fileNum":535,"id":16399,"width":25,"height":45},{"x":100,"y":90,"fileNum":535,"id":16400,"width":25,"height":45},{"x":0,"y":135,"fileNum":535,"id":16401,"width":25,"height":45},{"x":25,"y":135,"fileNum":535,"id":16402,"width":25,"height":45},{"x":50,"y":135,"fileNum":535,"id":16403,"width":25,"height":45},{"x":75,"y":135,"fileNum":535,"id":16404,"width":25,"height":45},{"x":100,"y":135,"fileNum":535,"id":16405,"width":25,"height":45},{"x":0,"y":0,"fileNum":538,"id":16410,"width":32,"height":32},{"x":0,"y":0,"fileNum":537,"id":16411,"width":25,"height":45},{"x":25,"y":0,"fileNum":537,"id":16412,"width":25,"height":45},{"x":50,"y":0,"fileNum":537,"id":16413,"width":25,"height":45},{"x":75,"y":0,"fileNum":537,"id":16414,"width":25,"height":45},{"x":100,"y":0,"fileNum":537,"id":16415,"width":25,"height":45},{"x":125,"y":0,"fileNum":537,"id":16416,"width":25,"height":45},{"x":0,"y":45,"fileNum":537,"id":16417,"width":25,"height":45},{"x":25,"y":45,"fileNum":537,"id":16418,"width":25,"height":45},{"x":50,"y":45,"fileNum":537,"id":16419,"width":25,"height":45},{"x":75,"y":45,"fileNum":537,"id":16420,"width":25,"height":45},{"x":100,"y":45,"fileNum":537,"id":16421,"width":25,"height":45},{"x":125,"y":45,"fileNum":537,"id":16422,"width":25,"height":45},{"x":0,"y":90,"fileNum":537,"id":16423,"width":25,"height":45},{"x":25,"y":90,"fileNum":537,"id":16424,"width":25,"height":45},{"x":50,"y":90,"fileNum":537,"id":16425,"width":25,"height":45},{"x":75,"y":90,"fileNum":537,"id":16426,"width":25,"height":45},{"x":100,"y":90,"fileNum":537,"id":16427,"width":25,"height":45},{"x":0,"y":135,"fileNum":537,"id":16428,"width":25,"height":45},{"x":25,"y":135,"fileNum":537,"id":16429,"width":25,"height":45},{"x":50,"y":135,"fileNum":537,"id":16430,"width":25,"height":45},{"x":75,"y":135,"fileNum":537,"id":16431,"width":25,"height":45},{"x":100,"y":135,"fileNum":537,"id":16432,"width":25,"height":45},{"x":0,"y":0,"fileNum":541,"id":16437,"width":32,"height":32},{"x":0,"y":0,"fileNum":539,"id":16438,"width":25,"height":45},{"x":25,"y":0,"fileNum":539,"id":16439,"width":25,"height":45},{"x":50,"y":0,"fileNum":539,"id":16440,"width":25,"height":45},{"x":75,"y":0,"fileNum":539,"id":16441,"width":25,"height":45},{"x":100,"y":0,"fileNum":539,"id":16442,"width":25,"height":45},{"x":125,"y":0,"fileNum":539,"id":16443,"width":25,"height":45},{"x":0,"y":45,"fileNum":539,"id":16444,"width":25,"height":45},{"x":25,"y":45,"fileNum":539,"id":16445,"width":25,"height":45},{"x":50,"y":45,"fileNum":539,"id":16446,"width":25,"height":45},{"x":75,"y":45,"fileNum":539,"id":16447,"width":25,"height":45},{"x":100,"y":45,"fileNum":539,"id":16448,"width":25,"height":45},{"x":125,"y":45,"fileNum":539,"id":16449,"width":25,"height":45},{"x":0,"y":90,"fileNum":539,"id":16450,"width":25,"height":45},{"x":25,"y":90,"fileNum":539,"id":16451,"width":25,"height":45},{"x":50,"y":90,"fileNum":539,"id":16452,"width":25,"height":45},{"x":75,"y":90,"fileNum":539,"id":16453,"width":25,"height":45},{"x":100,"y":90,"fileNum":539,"id":16454,"width":25,"height":45},{"x":0,"y":135,"fileNum":539,"id":16455,"width":25,"height":45},{"x":25,"y":135,"fileNum":539,"id":16456,"width":25,"height":45},{"x":50,"y":135,"fileNum":539,"id":16457,"width":25,"height":45},{"x":75,"y":135,"fileNum":539,"id":16458,"width":25,"height":45},{"x":100,"y":135,"fileNum":539,"id":16459,"width":25,"height":45},{"x":0,"y":0,"fileNum":540,"id":16464,"width":25,"height":45},{"x":25,"y":0,"fileNum":540,"id":16465,"width":25,"height":45},{"x":50,"y":0,"fileNum":540,"id":16466,"width":25,"height":45},{"x":75,"y":0,"fileNum":540,"id":16467,"width":25,"height":45},{"x":100,"y":0,"fileNum":540,"id":16468,"width":25,"height":45},{"x":125,"y":0,"fileNum":540,"id":16469,"width":25,"height":45},{"x":0,"y":45,"fileNum":540,"id":16470,"width":25,"height":45},{"x":25,"y":45,"fileNum":540,"id":16471,"width":25,"height":45},{"x":50,"y":45,"fileNum":540,"id":16472,"width":25,"height":45},{"x":75,"y":45,"fileNum":540,"id":16473,"width":25,"height":45},{"x":100,"y":45,"fileNum":540,"id":16474,"width":25,"height":45},{"x":125,"y":45,"fileNum":540,"id":16475,"width":25,"height":45},{"x":0,"y":90,"fileNum":540,"id":16476,"width":25,"height":45},{"x":25,"y":90,"fileNum":540,"id":16477,"width":25,"height":45},{"x":50,"y":90,"fileNum":540,"id":16478,"width":25,"height":45},{"x":75,"y":90,"fileNum":540,"id":16479,"width":25,"height":45},{"x":100,"y":90,"fileNum":540,"id":16480,"width":25,"height":45},{"x":0,"y":135,"fileNum":540,"id":16481,"width":25,"height":45},{"x":25,"y":135,"fileNum":540,"id":16482,"width":25,"height":45},{"x":50,"y":135,"fileNum":540,"id":16483,"width":25,"height":45},{"x":75,"y":135,"fileNum":540,"id":16484,"width":25,"height":45},{"x":100,"y":135,"fileNum":540,"id":16485,"width":25,"height":45},{"x":0,"y":0,"fileNum":544,"id":16490,"width":32,"height":32},{"x":0,"y":0,"fileNum":543,"id":16491,"width":25,"height":45},{"x":25,"y":0,"fileNum":543,"id":16492,"width":25,"height":45},{"x":50,"y":0,"fileNum":543,"id":16493,"width":25,"height":45},{"x":75,"y":0,"fileNum":543,"id":16494,"width":25,"height":45},{"x":100,"y":0,"fileNum":543,"id":16495,"width":25,"height":45},{"x":125,"y":0,"fileNum":543,"id":16496,"width":25,"height":45},{"x":0,"y":45,"fileNum":543,"id":16497,"width":25,"height":45},{"x":25,"y":45,"fileNum":543,"id":16498,"width":25,"height":45},{"x":50,"y":45,"fileNum":543,"id":16499,"width":25,"height":45},{"x":75,"y":45,"fileNum":543,"id":16500,"width":25,"height":45},{"x":100,"y":45,"fileNum":543,"id":16501,"width":25,"height":45},{"x":125,"y":45,"fileNum":543,"id":16502,"width":25,"height":45},{"x":0,"y":90,"fileNum":543,"id":16503,"width":25,"height":45},{"x":25,"y":90,"fileNum":543,"id":16504,"width":25,"height":45},{"x":50,"y":90,"fileNum":543,"id":16505,"width":25,"height":45},{"x":75,"y":90,"fileNum":543,"id":16506,"width":25,"height":45},{"x":100,"y":90,"fileNum":543,"id":16507,"width":25,"height":45},{"x":0,"y":135,"fileNum":543,"id":16508,"width":25,"height":45},{"x":25,"y":135,"fileNum":543,"id":16509,"width":25,"height":45},{"x":50,"y":135,"fileNum":543,"id":16510,"width":25,"height":45},{"x":75,"y":135,"fileNum":543,"id":16511,"width":25,"height":45},{"x":100,"y":135,"fileNum":543,"id":16512,"width":25,"height":45},{"x":0,"y":0,"fileNum":546,"id":16517,"width":32,"height":32},{"x":0,"y":0,"fileNum":545,"id":16518,"width":25,"height":45},{"x":25,"y":0,"fileNum":545,"id":16519,"width":25,"height":45},{"x":50,"y":0,"fileNum":545,"id":16520,"width":25,"height":45},{"x":75,"y":0,"fileNum":545,"id":16521,"width":25,"height":45},{"x":100,"y":0,"fileNum":545,"id":16522,"width":25,"height":45},{"x":125,"y":0,"fileNum":545,"id":16523,"width":25,"height":45},{"x":0,"y":45,"fileNum":545,"id":16524,"width":25,"height":45},{"x":25,"y":45,"fileNum":545,"id":16525,"width":25,"height":45},{"x":50,"y":45,"fileNum":545,"id":16526,"width":25,"height":45},{"x":75,"y":45,"fileNum":545,"id":16527,"width":25,"height":45},{"x":100,"y":45,"fileNum":545,"id":16528,"width":25,"height":45},{"x":125,"y":45,"fileNum":545,"id":16529,"width":25,"height":45},{"x":0,"y":90,"fileNum":545,"id":16530,"width":25,"height":45},{"x":25,"y":90,"fileNum":545,"id":16531,"width":25,"height":45},{"x":50,"y":90,"fileNum":545,"id":16532,"width":25,"height":45},{"x":75,"y":90,"fileNum":545,"id":16533,"width":25,"height":45},{"x":100,"y":90,"fileNum":545,"id":16534,"width":25,"height":45},{"x":0,"y":135,"fileNum":545,"id":16535,"width":25,"height":45},{"x":25,"y":135,"fileNum":545,"id":16536,"width":25,"height":45},{"x":50,"y":135,"fileNum":545,"id":16537,"width":25,"height":45},{"x":75,"y":135,"fileNum":545,"id":16538,"width":25,"height":45},{"x":100,"y":135,"fileNum":545,"id":16539,"width":25,"height":45},{"x":0,"y":0,"fileNum":548,"id":16544,"width":32,"height":32},{"x":0,"y":0,"fileNum":547,"id":16545,"width":25,"height":45},{"x":25,"y":0,"fileNum":547,"id":16546,"width":25,"height":45},{"x":50,"y":0,"fileNum":547,"id":16547,"width":25,"height":45},{"x":75,"y":0,"fileNum":547,"id":16548,"width":25,"height":45},{"x":100,"y":0,"fileNum":547,"id":16549,"width":25,"height":45},{"x":125,"y":0,"fileNum":547,"id":16550,"width":25,"height":45},{"x":0,"y":45,"fileNum":547,"id":16551,"width":25,"height":45},{"x":25,"y":45,"fileNum":547,"id":16552,"width":25,"height":45},{"x":50,"y":45,"fileNum":547,"id":16553,"width":25,"height":45},{"x":75,"y":45,"fileNum":547,"id":16554,"width":25,"height":45},{"x":100,"y":45,"fileNum":547,"id":16555,"width":25,"height":45},{"x":125,"y":45,"fileNum":547,"id":16556,"width":25,"height":45},{"x":0,"y":90,"fileNum":547,"id":16557,"width":25,"height":45},{"x":25,"y":90,"fileNum":547,"id":16558,"width":25,"height":45},{"x":50,"y":90,"fileNum":547,"id":16559,"width":25,"height":45},{"x":75,"y":90,"fileNum":547,"id":16560,"width":25,"height":45},{"x":100,"y":90,"fileNum":547,"id":16561,"width":25,"height":45},{"x":0,"y":135,"fileNum":547,"id":16562,"width":25,"height":45},{"x":25,"y":135,"fileNum":547,"id":16563,"width":25,"height":45},{"x":50,"y":135,"fileNum":547,"id":16564,"width":25,"height":45},{"x":75,"y":135,"fileNum":547,"id":16565,"width":25,"height":45},{"x":100,"y":135,"fileNum":547,"id":16566,"width":25,"height":45},{"x":0,"y":0,"fileNum":550,"id":16571,"width":32,"height":32},{"x":0,"y":0,"fileNum":549,"id":16572,"width":25,"height":45},{"x":25,"y":0,"fileNum":549,"id":16573,"width":25,"height":45},{"x":50,"y":0,"fileNum":549,"id":16574,"width":25,"height":45},{"x":75,"y":0,"fileNum":549,"id":16575,"width":25,"height":45},{"x":100,"y":0,"fileNum":549,"id":16576,"width":25,"height":45},{"x":125,"y":0,"fileNum":549,"id":16577,"width":25,"height":45},{"x":0,"y":45,"fileNum":549,"id":16578,"width":25,"height":45},{"x":25,"y":45,"fileNum":549,"id":16579,"width":25,"height":45},{"x":50,"y":45,"fileNum":549,"id":16580,"width":25,"height":45},{"x":75,"y":45,"fileNum":549,"id":16581,"width":25,"height":45},{"x":100,"y":45,"fileNum":549,"id":16582,"width":25,"height":45},{"x":125,"y":45,"fileNum":549,"id":16583,"width":25,"height":45},{"x":0,"y":90,"fileNum":549,"id":16584,"width":25,"height":45},{"x":25,"y":90,"fileNum":549,"id":16585,"width":25,"height":45},{"x":50,"y":90,"fileNum":549,"id":16586,"width":25,"height":45},{"x":75,"y":90,"fileNum":549,"id":16587,"width":25,"height":45},{"x":100,"y":90,"fileNum":549,"id":16588,"width":25,"height":45},{"x":0,"y":135,"fileNum":549,"id":16589,"width":25,"height":45},{"x":25,"y":135,"fileNum":549,"id":16590,"width":25,"height":45},{"x":50,"y":135,"fileNum":549,"id":16591,"width":25,"height":45},{"x":75,"y":135,"fileNum":549,"id":16592,"width":25,"height":45},{"x":100,"y":135,"fileNum":549,"id":16593,"width":25,"height":45},{"x":0,"y":0,"fileNum":552,"id":16598,"width":32,"height":32},{"x":0,"y":0,"fileNum":551,"id":16599,"width":25,"height":45},{"x":25,"y":0,"fileNum":551,"id":16600,"width":25,"height":45},{"x":50,"y":0,"fileNum":551,"id":16601,"width":25,"height":45},{"x":75,"y":0,"fileNum":551,"id":16602,"width":25,"height":45},{"x":100,"y":0,"fileNum":551,"id":16603,"width":25,"height":45},{"x":125,"y":0,"fileNum":551,"id":16604,"width":25,"height":45},{"x":0,"y":45,"fileNum":551,"id":16605,"width":25,"height":45},{"x":25,"y":45,"fileNum":551,"id":16606,"width":25,"height":45},{"x":50,"y":45,"fileNum":551,"id":16607,"width":25,"height":45},{"x":75,"y":45,"fileNum":551,"id":16608,"width":25,"height":45},{"x":100,"y":45,"fileNum":551,"id":16609,"width":25,"height":45},{"x":125,"y":45,"fileNum":551,"id":16610,"width":25,"height":45},{"x":0,"y":90,"fileNum":551,"id":16611,"width":25,"height":45},{"x":25,"y":90,"fileNum":551,"id":16612,"width":25,"height":45},{"x":50,"y":90,"fileNum":551,"id":16613,"width":25,"height":45},{"x":75,"y":90,"fileNum":551,"id":16614,"width":25,"height":45},{"x":100,"y":90,"fileNum":551,"id":16615,"width":25,"height":45},{"x":0,"y":135,"fileNum":551,"id":16616,"width":25,"height":45},{"x":25,"y":135,"fileNum":551,"id":16617,"width":25,"height":45},{"x":50,"y":135,"fileNum":551,"id":16618,"width":25,"height":45},{"x":75,"y":135,"fileNum":551,"id":16619,"width":25,"height":45},{"x":100,"y":135,"fileNum":551,"id":16620,"width":25,"height":45},{"x":0,"y":0,"fileNum":555,"id":16625,"width":32,"height":32},{"x":0,"y":0,"fileNum":554,"id":16626,"width":25,"height":45},{"x":25,"y":0,"fileNum":554,"id":16627,"width":25,"height":45},{"x":50,"y":0,"fileNum":554,"id":16628,"width":25,"height":45},{"x":75,"y":0,"fileNum":554,"id":16629,"width":25,"height":45},{"x":100,"y":0,"fileNum":554,"id":16630,"width":25,"height":45},{"x":125,"y":0,"fileNum":554,"id":16631,"width":25,"height":45},{"x":0,"y":45,"fileNum":554,"id":16632,"width":25,"height":45},{"x":25,"y":45,"fileNum":554,"id":16633,"width":25,"height":45},{"x":50,"y":45,"fileNum":554,"id":16634,"width":25,"height":45},{"x":75,"y":45,"fileNum":554,"id":16635,"width":25,"height":45},{"x":100,"y":45,"fileNum":554,"id":16636,"width":25,"height":45},{"x":125,"y":45,"fileNum":554,"id":16637,"width":25,"height":45},{"x":0,"y":90,"fileNum":554,"id":16638,"width":25,"height":45},{"x":25,"y":90,"fileNum":554,"id":16639,"width":25,"height":45},{"x":50,"y":90,"fileNum":554,"id":16640,"width":25,"height":45},{"x":75,"y":90,"fileNum":554,"id":16641,"width":25,"height":45},{"x":100,"y":90,"fileNum":554,"id":16642,"width":25,"height":45},{"x":0,"y":135,"fileNum":554,"id":16643,"width":25,"height":45},{"x":25,"y":135,"fileNum":554,"id":16644,"width":25,"height":45},{"x":50,"y":135,"fileNum":554,"id":16645,"width":25,"height":45},{"x":75,"y":135,"fileNum":554,"id":16646,"width":25,"height":45},{"x":100,"y":135,"fileNum":554,"id":16647,"width":25,"height":45},{"x":0,"y":0,"fileNum":557,"id":16652,"width":32,"height":32},{"x":0,"y":0,"fileNum":556,"id":16653,"width":25,"height":45},{"x":25,"y":0,"fileNum":556,"id":16654,"width":25,"height":45},{"x":50,"y":0,"fileNum":556,"id":16655,"width":25,"height":45},{"x":75,"y":0,"fileNum":556,"id":16656,"width":25,"height":45},{"x":100,"y":0,"fileNum":556,"id":16657,"width":25,"height":45},{"x":125,"y":0,"fileNum":556,"id":16658,"width":25,"height":45},{"x":0,"y":45,"fileNum":556,"id":16659,"width":25,"height":45},{"x":25,"y":45,"fileNum":556,"id":16660,"width":25,"height":45},{"x":50,"y":45,"fileNum":556,"id":16661,"width":25,"height":45},{"x":75,"y":45,"fileNum":556,"id":16662,"width":25,"height":45},{"x":100,"y":45,"fileNum":556,"id":16663,"width":25,"height":45},{"x":125,"y":45,"fileNum":556,"id":16664,"width":25,"height":45},{"x":0,"y":90,"fileNum":556,"id":16665,"width":25,"height":45},{"x":25,"y":90,"fileNum":556,"id":16666,"width":25,"height":45},{"x":50,"y":90,"fileNum":556,"id":16667,"width":25,"height":45},{"x":75,"y":90,"fileNum":556,"id":16668,"width":25,"height":45},{"x":100,"y":90,"fileNum":556,"id":16669,"width":25,"height":45},{"x":0,"y":135,"fileNum":556,"id":16670,"width":25,"height":45},{"x":25,"y":135,"fileNum":556,"id":16671,"width":25,"height":45},{"x":50,"y":135,"fileNum":556,"id":16672,"width":25,"height":45},{"x":75,"y":135,"fileNum":556,"id":16673,"width":25,"height":45},{"x":100,"y":135,"fileNum":556,"id":16674,"width":25,"height":45},{"x":0,"y":0,"fileNum":559,"id":16679,"width":32,"height":32},{"x":0,"y":0,"fileNum":558,"id":16680,"width":25,"height":45},{"x":25,"y":0,"fileNum":558,"id":16681,"width":25,"height":45},{"x":50,"y":0,"fileNum":558,"id":16682,"width":25,"height":45},{"x":75,"y":0,"fileNum":558,"id":16683,"width":25,"height":45},{"x":100,"y":0,"fileNum":558,"id":16684,"width":25,"height":45},{"x":125,"y":0,"fileNum":558,"id":16685,"width":25,"height":45},{"x":0,"y":45,"fileNum":558,"id":16686,"width":25,"height":45},{"x":25,"y":45,"fileNum":558,"id":16687,"width":25,"height":45},{"x":50,"y":45,"fileNum":558,"id":16688,"width":25,"height":45},{"x":75,"y":45,"fileNum":558,"id":16689,"width":25,"height":45},{"x":100,"y":45,"fileNum":558,"id":16690,"width":25,"height":45},{"x":125,"y":45,"fileNum":558,"id":16691,"width":25,"height":45},{"x":0,"y":90,"fileNum":558,"id":16692,"width":25,"height":45},{"x":25,"y":90,"fileNum":558,"id":16693,"width":25,"height":45},{"x":50,"y":90,"fileNum":558,"id":16694,"width":25,"height":45},{"x":75,"y":90,"fileNum":558,"id":16695,"width":25,"height":45},{"x":100,"y":90,"fileNum":558,"id":16696,"width":25,"height":45},{"x":0,"y":135,"fileNum":558,"id":16697,"width":25,"height":45},{"x":25,"y":135,"fileNum":558,"id":16698,"width":25,"height":45},{"x":50,"y":135,"fileNum":558,"id":16699,"width":25,"height":45},{"x":75,"y":135,"fileNum":558,"id":16700,"width":25,"height":45},{"x":100,"y":135,"fileNum":558,"id":16701,"width":25,"height":45},{"x":0,"y":0,"fileNum":55,"id":16706,"width":32,"height":32},{"x":0,"y":0,"fileNum":561,"id":16707,"width":32,"height":32},{"x":0,"y":0,"fileNum":560,"id":16708,"width":25,"height":45},{"x":25,"y":0,"fileNum":560,"id":16709,"width":25,"height":45},{"x":50,"y":0,"fileNum":560,"id":16710,"width":25,"height":45},{"x":75,"y":0,"fileNum":560,"id":16711,"width":25,"height":45},{"x":100,"y":0,"fileNum":560,"id":16712,"width":25,"height":45},{"x":125,"y":0,"fileNum":560,"id":16713,"width":25,"height":45},{"x":0,"y":45,"fileNum":560,"id":16714,"width":25,"height":45},{"x":25,"y":45,"fileNum":560,"id":16715,"width":25,"height":45},{"x":50,"y":45,"fileNum":560,"id":16716,"width":25,"height":45},{"x":75,"y":45,"fileNum":560,"id":16717,"width":25,"height":45},{"x":100,"y":45,"fileNum":560,"id":16718,"width":25,"height":45},{"x":125,"y":45,"fileNum":560,"id":16719,"width":25,"height":45},{"x":0,"y":90,"fileNum":560,"id":16720,"width":25,"height":45},{"x":25,"y":90,"fileNum":560,"id":16721,"width":25,"height":45},{"x":50,"y":90,"fileNum":560,"id":16722,"width":25,"height":45},{"x":75,"y":90,"fileNum":560,"id":16723,"width":25,"height":45},{"x":100,"y":90,"fileNum":560,"id":16724,"width":25,"height":45},{"x":0,"y":135,"fileNum":560,"id":16725,"width":25,"height":45},{"x":25,"y":135,"fileNum":560,"id":16726,"width":25,"height":45},{"x":50,"y":135,"fileNum":560,"id":16727,"width":25,"height":45},{"x":75,"y":135,"fileNum":560,"id":16728,"width":25,"height":45},{"x":100,"y":135,"fileNum":560,"id":16729,"width":25,"height":45},{"x":0,"y":0,"fileNum":563,"id":16734,"width":32,"height":32},{"x":0,"y":0,"fileNum":562,"id":16735,"width":25,"height":45},{"x":25,"y":0,"fileNum":562,"id":16736,"width":25,"height":45},{"x":50,"y":0,"fileNum":562,"id":16737,"width":25,"height":45},{"x":75,"y":0,"fileNum":562,"id":16738,"width":25,"height":45},{"x":100,"y":0,"fileNum":562,"id":16739,"width":25,"height":45},{"x":125,"y":0,"fileNum":562,"id":16740,"width":25,"height":45},{"x":0,"y":45,"fileNum":562,"id":16741,"width":25,"height":45},{"x":25,"y":45,"fileNum":562,"id":16742,"width":25,"height":45},{"x":50,"y":45,"fileNum":562,"id":16743,"width":25,"height":45},{"x":75,"y":45,"fileNum":562,"id":16744,"width":25,"height":45},{"x":100,"y":45,"fileNum":562,"id":16745,"width":25,"height":45},{"x":125,"y":45,"fileNum":562,"id":16746,"width":25,"height":45},{"x":0,"y":90,"fileNum":562,"id":16747,"width":25,"height":45},{"x":25,"y":90,"fileNum":562,"id":16748,"width":25,"height":45},{"x":50,"y":90,"fileNum":562,"id":16749,"width":25,"height":45},{"x":75,"y":90,"fileNum":562,"id":16750,"width":25,"height":45},{"x":100,"y":90,"fileNum":562,"id":16751,"width":25,"height":45},{"x":0,"y":135,"fileNum":562,"id":16752,"width":25,"height":45},{"x":25,"y":135,"fileNum":562,"id":16753,"width":25,"height":45},{"x":50,"y":135,"fileNum":562,"id":16754,"width":25,"height":45},{"x":75,"y":135,"fileNum":562,"id":16755,"width":25,"height":45},{"x":100,"y":135,"fileNum":562,"id":16756,"width":25,"height":45},{"x":0,"y":0,"fileNum":566,"id":16761,"width":32,"height":32},{"x":0,"y":0,"fileNum":565,"id":16762,"width":25,"height":45},{"x":25,"y":0,"fileNum":565,"id":16763,"width":25,"height":45},{"x":50,"y":0,"fileNum":565,"id":16764,"width":25,"height":45},{"x":75,"y":0,"fileNum":565,"id":16765,"width":25,"height":45},{"x":100,"y":0,"fileNum":565,"id":16766,"width":25,"height":45},{"x":125,"y":0,"fileNum":565,"id":16767,"width":25,"height":45},{"x":0,"y":45,"fileNum":565,"id":16768,"width":25,"height":45},{"x":25,"y":45,"fileNum":565,"id":16769,"width":25,"height":45},{"x":50,"y":45,"fileNum":565,"id":16770,"width":25,"height":45},{"x":75,"y":45,"fileNum":565,"id":16771,"width":25,"height":45},{"x":100,"y":45,"fileNum":565,"id":16772,"width":25,"height":45},{"x":125,"y":45,"fileNum":565,"id":16773,"width":25,"height":45},{"x":0,"y":90,"fileNum":565,"id":16774,"width":25,"height":45},{"x":25,"y":90,"fileNum":565,"id":16775,"width":25,"height":45},{"x":50,"y":90,"fileNum":565,"id":16776,"width":25,"height":45},{"x":75,"y":90,"fileNum":565,"id":16777,"width":25,"height":45},{"x":100,"y":90,"fileNum":565,"id":16778,"width":25,"height":45},{"x":0,"y":135,"fileNum":565,"id":16779,"width":25,"height":45},{"x":25,"y":135,"fileNum":565,"id":16780,"width":25,"height":45},{"x":50,"y":135,"fileNum":565,"id":16781,"width":25,"height":45},{"x":75,"y":135,"fileNum":565,"id":16782,"width":25,"height":45},{"x":100,"y":135,"fileNum":565,"id":16783,"width":25,"height":45},{"x":0,"y":0,"fileNum":568,"id":16788,"width":32,"height":32},{"x":0,"y":0,"fileNum":567,"id":16789,"width":25,"height":45},{"x":25,"y":0,"fileNum":567,"id":16790,"width":25,"height":45},{"x":50,"y":0,"fileNum":567,"id":16791,"width":25,"height":45},{"x":75,"y":0,"fileNum":567,"id":16792,"width":25,"height":45},{"x":100,"y":0,"fileNum":567,"id":16793,"width":25,"height":45},{"x":125,"y":0,"fileNum":567,"id":16794,"width":25,"height":45},{"x":0,"y":45,"fileNum":567,"id":16795,"width":25,"height":45},{"x":25,"y":45,"fileNum":567,"id":16796,"width":25,"height":45},{"x":50,"y":45,"fileNum":567,"id":16797,"width":25,"height":45},{"x":75,"y":45,"fileNum":567,"id":16798,"width":25,"height":45},{"x":100,"y":45,"fileNum":567,"id":16799,"width":25,"height":45},{"x":125,"y":45,"fileNum":567,"id":16800,"width":25,"height":45},{"x":0,"y":90,"fileNum":567,"id":16801,"width":25,"height":45},{"x":25,"y":90,"fileNum":567,"id":16802,"width":25,"height":45},{"x":50,"y":90,"fileNum":567,"id":16803,"width":25,"height":45},{"x":75,"y":90,"fileNum":567,"id":16804,"width":25,"height":45},{"x":100,"y":90,"fileNum":567,"id":16805,"width":25,"height":45},{"x":0,"y":135,"fileNum":567,"id":16806,"width":25,"height":45},{"x":25,"y":135,"fileNum":567,"id":16807,"width":25,"height":45},{"x":50,"y":135,"fileNum":567,"id":16808,"width":25,"height":45},{"x":75,"y":135,"fileNum":567,"id":16809,"width":25,"height":45},{"x":100,"y":135,"fileNum":567,"id":16810,"width":25,"height":45},{"x":0,"y":0,"fileNum":57,"id":16815,"width":32,"height":32},{"x":0,"y":0,"fileNum":56,"id":16816,"width":25,"height":45},{"x":25,"y":0,"fileNum":56,"id":16817,"width":25,"height":45},{"x":50,"y":0,"fileNum":56,"id":16818,"width":25,"height":45},{"x":75,"y":0,"fileNum":56,"id":16819,"width":25,"height":45},{"x":100,"y":0,"fileNum":56,"id":16820,"width":25,"height":45},{"x":125,"y":0,"fileNum":56,"id":16821,"width":25,"height":45},{"x":0,"y":45,"fileNum":56,"id":16822,"width":25,"height":45},{"x":25,"y":45,"fileNum":56,"id":16823,"width":25,"height":45},{"x":50,"y":45,"fileNum":56,"id":16824,"width":25,"height":45},{"x":75,"y":45,"fileNum":56,"id":16825,"width":25,"height":45},{"x":100,"y":45,"fileNum":56,"id":16826,"width":25,"height":45},{"x":125,"y":45,"fileNum":56,"id":16827,"width":25,"height":45},{"x":0,"y":90,"fileNum":56,"id":16828,"width":25,"height":45},{"x":25,"y":90,"fileNum":56,"id":16829,"width":25,"height":45},{"x":50,"y":90,"fileNum":56,"id":16830,"width":25,"height":45},{"x":75,"y":90,"fileNum":56,"id":16831,"width":25,"height":45},{"x":100,"y":90,"fileNum":56,"id":16832,"width":25,"height":45},{"x":0,"y":135,"fileNum":56,"id":16833,"width":25,"height":45},{"x":25,"y":135,"fileNum":56,"id":16834,"width":25,"height":45},{"x":50,"y":135,"fileNum":56,"id":16835,"width":25,"height":45},{"x":75,"y":135,"fileNum":56,"id":16836,"width":25,"height":45},{"x":100,"y":135,"fileNum":56,"id":16837,"width":25,"height":45},{"x":0,"y":0,"fileNum":570,"id":16842,"width":32,"height":32},{"x":0,"y":0,"fileNum":569,"id":16843,"width":25,"height":45},{"x":25,"y":0,"fileNum":569,"id":16844,"width":25,"height":45},{"x":50,"y":0,"fileNum":569,"id":16845,"width":25,"height":45},{"x":75,"y":0,"fileNum":569,"id":16846,"width":25,"height":45},{"x":100,"y":0,"fileNum":569,"id":16847,"width":25,"height":45},{"x":125,"y":0,"fileNum":569,"id":16848,"width":25,"height":45},{"x":0,"y":45,"fileNum":569,"id":16849,"width":25,"height":45},{"x":25,"y":45,"fileNum":569,"id":16850,"width":25,"height":45},{"x":50,"y":45,"fileNum":569,"id":16851,"width":25,"height":45},{"x":75,"y":45,"fileNum":569,"id":16852,"width":25,"height":45},{"x":100,"y":45,"fileNum":569,"id":16853,"width":25,"height":45},{"x":125,"y":45,"fileNum":569,"id":16854,"width":25,"height":45},{"x":0,"y":90,"fileNum":569,"id":16855,"width":25,"height":45},{"x":25,"y":90,"fileNum":569,"id":16856,"width":25,"height":45},{"x":50,"y":90,"fileNum":569,"id":16857,"width":25,"height":45},{"x":75,"y":90,"fileNum":569,"id":16858,"width":25,"height":45},{"x":100,"y":90,"fileNum":569,"id":16859,"width":25,"height":45},{"x":0,"y":135,"fileNum":569,"id":16860,"width":25,"height":45},{"x":25,"y":135,"fileNum":569,"id":16861,"width":25,"height":45},{"x":50,"y":135,"fileNum":569,"id":16862,"width":25,"height":45},{"x":75,"y":135,"fileNum":569,"id":16863,"width":25,"height":45},{"x":100,"y":135,"fileNum":569,"id":16864,"width":25,"height":45},{"x":0,"y":0,"fileNum":572,"id":16869,"width":32,"height":32},{"x":0,"y":0,"fileNum":571,"id":16870,"width":25,"height":45},{"x":25,"y":0,"fileNum":571,"id":16871,"width":25,"height":45},{"x":50,"y":0,"fileNum":571,"id":16872,"width":25,"height":45},{"x":75,"y":0,"fileNum":571,"id":16873,"width":25,"height":45},{"x":100,"y":0,"fileNum":571,"id":16874,"width":25,"height":45},{"x":125,"y":0,"fileNum":571,"id":16875,"width":25,"height":45},{"x":0,"y":45,"fileNum":571,"id":16876,"width":25,"height":45},{"x":25,"y":45,"fileNum":571,"id":16877,"width":25,"height":45},{"x":50,"y":45,"fileNum":571,"id":16878,"width":25,"height":45},{"x":75,"y":45,"fileNum":571,"id":16879,"width":25,"height":45},{"x":100,"y":45,"fileNum":571,"id":16880,"width":25,"height":45},{"x":125,"y":45,"fileNum":571,"id":16881,"width":25,"height":45},{"x":0,"y":90,"fileNum":571,"id":16882,"width":25,"height":45},{"x":25,"y":90,"fileNum":571,"id":16883,"width":25,"height":45},{"x":50,"y":90,"fileNum":571,"id":16884,"width":25,"height":45},{"x":75,"y":90,"fileNum":571,"id":16885,"width":25,"height":45},{"x":100,"y":90,"fileNum":571,"id":16886,"width":25,"height":45},{"x":0,"y":135,"fileNum":571,"id":16887,"width":25,"height":45},{"x":25,"y":135,"fileNum":571,"id":16888,"width":25,"height":45},{"x":50,"y":135,"fileNum":571,"id":16889,"width":25,"height":45},{"x":75,"y":135,"fileNum":571,"id":16890,"width":25,"height":45},{"x":100,"y":135,"fileNum":571,"id":16891,"width":25,"height":45},{"x":0,"y":0,"fileNum":574,"id":16896,"width":32,"height":32},{"x":0,"y":0,"fileNum":573,"id":16897,"width":25,"height":45},{"x":25,"y":0,"fileNum":573,"id":16898,"width":25,"height":45},{"x":50,"y":0,"fileNum":573,"id":16899,"width":25,"height":45},{"x":75,"y":0,"fileNum":573,"id":16900,"width":25,"height":45},{"x":100,"y":0,"fileNum":573,"id":16901,"width":25,"height":45},{"x":125,"y":0,"fileNum":573,"id":16902,"width":25,"height":45},{"x":0,"y":45,"fileNum":573,"id":16903,"width":25,"height":45},{"x":25,"y":45,"fileNum":573,"id":16904,"width":25,"height":45},{"x":50,"y":45,"fileNum":573,"id":16905,"width":25,"height":45},{"x":75,"y":45,"fileNum":573,"id":16906,"width":25,"height":45},{"x":100,"y":45,"fileNum":573,"id":16907,"width":25,"height":45},{"x":125,"y":45,"fileNum":573,"id":16908,"width":25,"height":45},{"x":0,"y":90,"fileNum":573,"id":16909,"width":25,"height":45},{"x":25,"y":90,"fileNum":573,"id":16910,"width":25,"height":45},{"x":50,"y":90,"fileNum":573,"id":16911,"width":25,"height":45},{"x":75,"y":90,"fileNum":573,"id":16912,"width":25,"height":45},{"x":100,"y":90,"fileNum":573,"id":16913,"width":25,"height":45},{"x":0,"y":135,"fileNum":573,"id":16914,"width":25,"height":45},{"x":25,"y":135,"fileNum":573,"id":16915,"width":25,"height":45},{"x":50,"y":135,"fileNum":573,"id":16916,"width":25,"height":45},{"x":75,"y":135,"fileNum":573,"id":16917,"width":25,"height":45},{"x":100,"y":135,"fileNum":573,"id":16918,"width":25,"height":45},{"x":0,"y":0,"fileNum":577,"id":16923,"width":32,"height":32},{"x":0,"y":0,"fileNum":576,"id":16924,"width":25,"height":45},{"x":25,"y":0,"fileNum":576,"id":16925,"width":25,"height":45},{"x":50,"y":0,"fileNum":576,"id":16926,"width":25,"height":45},{"x":75,"y":0,"fileNum":576,"id":16927,"width":25,"height":45},{"x":100,"y":0,"fileNum":576,"id":16928,"width":25,"height":45},{"x":125,"y":0,"fileNum":576,"id":16929,"width":25,"height":45},{"x":0,"y":45,"fileNum":576,"id":16930,"width":25,"height":45},{"x":25,"y":45,"fileNum":576,"id":16931,"width":25,"height":45},{"x":50,"y":45,"fileNum":576,"id":16932,"width":25,"height":45},{"x":75,"y":45,"fileNum":576,"id":16933,"width":25,"height":45},{"x":100,"y":45,"fileNum":576,"id":16934,"width":25,"height":45},{"x":125,"y":45,"fileNum":576,"id":16935,"width":25,"height":45},{"x":0,"y":90,"fileNum":576,"id":16936,"width":25,"height":45},{"x":25,"y":90,"fileNum":576,"id":16937,"width":25,"height":45},{"x":50,"y":90,"fileNum":576,"id":16938,"width":25,"height":45},{"x":75,"y":90,"fileNum":576,"id":16939,"width":25,"height":45},{"x":100,"y":90,"fileNum":576,"id":16940,"width":25,"height":45},{"x":0,"y":135,"fileNum":576,"id":16941,"width":25,"height":45},{"x":25,"y":135,"fileNum":576,"id":16942,"width":25,"height":45},{"x":50,"y":135,"fileNum":576,"id":16943,"width":25,"height":45},{"x":75,"y":135,"fileNum":576,"id":16944,"width":25,"height":45},{"x":100,"y":135,"fileNum":576,"id":16945,"width":25,"height":45},{"x":0,"y":0,"fileNum":579,"id":16950,"width":32,"height":32},{"x":0,"y":0,"fileNum":578,"id":16951,"width":25,"height":45},{"x":25,"y":0,"fileNum":578,"id":16952,"width":25,"height":45},{"x":50,"y":0,"fileNum":578,"id":16953,"width":25,"height":45},{"x":75,"y":0,"fileNum":578,"id":16954,"width":25,"height":45},{"x":100,"y":0,"fileNum":578,"id":16955,"width":25,"height":45},{"x":125,"y":0,"fileNum":578,"id":16956,"width":25,"height":45},{"x":0,"y":45,"fileNum":578,"id":16957,"width":25,"height":45},{"x":25,"y":45,"fileNum":578,"id":16958,"width":25,"height":45},{"x":50,"y":45,"fileNum":578,"id":16959,"width":25,"height":45},{"x":75,"y":45,"fileNum":578,"id":16960,"width":25,"height":45},{"x":100,"y":45,"fileNum":578,"id":16961,"width":25,"height":45},{"x":125,"y":45,"fileNum":578,"id":16962,"width":25,"height":45},{"x":0,"y":90,"fileNum":578,"id":16963,"width":25,"height":45},{"x":25,"y":90,"fileNum":578,"id":16964,"width":25,"height":45},{"x":50,"y":90,"fileNum":578,"id":16965,"width":25,"height":45},{"x":75,"y":90,"fileNum":578,"id":16966,"width":25,"height":45},{"x":100,"y":90,"fileNum":578,"id":16967,"width":25,"height":45},{"x":0,"y":135,"fileNum":578,"id":16968,"width":25,"height":45},{"x":25,"y":135,"fileNum":578,"id":16969,"width":25,"height":45},{"x":50,"y":135,"fileNum":578,"id":16970,"width":25,"height":45},{"x":75,"y":135,"fileNum":578,"id":16971,"width":25,"height":45},{"x":100,"y":135,"fileNum":578,"id":16972,"width":25,"height":45},{"x":0,"y":0,"fileNum":581,"id":16977,"width":32,"height":32},{"x":0,"y":0,"fileNum":580,"id":16978,"width":25,"height":45},{"x":25,"y":0,"fileNum":580,"id":16979,"width":25,"height":45},{"x":50,"y":0,"fileNum":580,"id":16980,"width":25,"height":45},{"x":75,"y":0,"fileNum":580,"id":16981,"width":25,"height":45},{"x":100,"y":0,"fileNum":580,"id":16982,"width":25,"height":45},{"x":125,"y":0,"fileNum":580,"id":16983,"width":25,"height":45},{"x":0,"y":45,"fileNum":580,"id":16984,"width":25,"height":45},{"x":25,"y":45,"fileNum":580,"id":16985,"width":25,"height":45},{"x":50,"y":45,"fileNum":580,"id":16986,"width":25,"height":45},{"x":75,"y":45,"fileNum":580,"id":16987,"width":25,"height":45},{"x":100,"y":45,"fileNum":580,"id":16988,"width":25,"height":45},{"x":125,"y":45,"fileNum":580,"id":16989,"width":25,"height":45},{"x":0,"y":90,"fileNum":580,"id":16990,"width":25,"height":45},{"x":25,"y":90,"fileNum":580,"id":16991,"width":25,"height":45},{"x":50,"y":90,"fileNum":580,"id":16992,"width":25,"height":45},{"x":75,"y":90,"fileNum":580,"id":16993,"width":25,"height":45},{"x":100,"y":90,"fileNum":580,"id":16994,"width":25,"height":45},{"x":0,"y":135,"fileNum":580,"id":16995,"width":25,"height":45},{"x":25,"y":135,"fileNum":580,"id":16996,"width":25,"height":45},{"x":50,"y":135,"fileNum":580,"id":16997,"width":25,"height":45},{"x":75,"y":135,"fileNum":580,"id":16998,"width":25,"height":45},{"x":100,"y":135,"fileNum":580,"id":16999,"width":25,"height":45},{"x":0,"y":0,"fileNum":583,"id":17004,"width":32,"height":32},{"x":0,"y":0,"fileNum":582,"id":17005,"width":25,"height":45},{"x":25,"y":0,"fileNum":582,"id":17006,"width":25,"height":45},{"x":50,"y":0,"fileNum":582,"id":17007,"width":25,"height":45},{"x":75,"y":0,"fileNum":582,"id":17008,"width":25,"height":45},{"x":100,"y":0,"fileNum":582,"id":17009,"width":25,"height":45},{"x":125,"y":0,"fileNum":582,"id":17010,"width":25,"height":45},{"x":0,"y":45,"fileNum":582,"id":17011,"width":25,"height":45},{"x":25,"y":45,"fileNum":582,"id":17012,"width":25,"height":45},{"x":50,"y":45,"fileNum":582,"id":17013,"width":25,"height":45},{"x":75,"y":45,"fileNum":582,"id":17014,"width":25,"height":45},{"x":100,"y":45,"fileNum":582,"id":17015,"width":25,"height":45},{"x":125,"y":45,"fileNum":582,"id":17016,"width":25,"height":45},{"x":0,"y":90,"fileNum":582,"id":17017,"width":25,"height":45},{"x":25,"y":90,"fileNum":582,"id":17018,"width":25,"height":45},{"x":50,"y":90,"fileNum":582,"id":17019,"width":25,"height":45},{"x":75,"y":90,"fileNum":582,"id":17020,"width":25,"height":45},{"x":100,"y":90,"fileNum":582,"id":17021,"width":25,"height":45},{"x":0,"y":135,"fileNum":582,"id":17022,"width":25,"height":45},{"x":25,"y":135,"fileNum":582,"id":17023,"width":25,"height":45},{"x":50,"y":135,"fileNum":582,"id":17024,"width":25,"height":45},{"x":75,"y":135,"fileNum":582,"id":17025,"width":25,"height":45},{"x":100,"y":135,"fileNum":582,"id":17026,"width":25,"height":45},{"x":0,"y":0,"fileNum":585,"id":17031,"width":32,"height":32},{"x":0,"y":0,"fileNum":584,"id":17032,"width":25,"height":45},{"x":25,"y":0,"fileNum":584,"id":17033,"width":25,"height":45},{"x":50,"y":0,"fileNum":584,"id":17034,"width":25,"height":45},{"x":75,"y":0,"fileNum":584,"id":17035,"width":25,"height":45},{"x":100,"y":0,"fileNum":584,"id":17036,"width":25,"height":45},{"x":125,"y":0,"fileNum":584,"id":17037,"width":25,"height":45},{"x":0,"y":45,"fileNum":584,"id":17038,"width":25,"height":45},{"x":25,"y":45,"fileNum":584,"id":17039,"width":25,"height":45},{"x":50,"y":45,"fileNum":584,"id":17040,"width":25,"height":45},{"x":75,"y":45,"fileNum":584,"id":17041,"width":25,"height":45},{"x":100,"y":45,"fileNum":584,"id":17042,"width":25,"height":45},{"x":125,"y":45,"fileNum":584,"id":17043,"width":25,"height":45},{"x":0,"y":90,"fileNum":584,"id":17044,"width":25,"height":45},{"x":25,"y":90,"fileNum":584,"id":17045,"width":25,"height":45},{"x":50,"y":90,"fileNum":584,"id":17046,"width":25,"height":45},{"x":75,"y":90,"fileNum":584,"id":17047,"width":25,"height":45},{"x":100,"y":90,"fileNum":584,"id":17048,"width":25,"height":45},{"x":0,"y":135,"fileNum":584,"id":17049,"width":25,"height":45},{"x":25,"y":135,"fileNum":584,"id":17050,"width":25,"height":45},{"x":50,"y":135,"fileNum":584,"id":17051,"width":25,"height":45},{"x":75,"y":135,"fileNum":584,"id":17052,"width":25,"height":45},{"x":100,"y":135,"fileNum":584,"id":17053,"width":25,"height":45},{"x":0,"y":0,"fileNum":4,"id":17058,"width":32,"height":32},{"x":0,"y":0,"fileNum":3,"id":17059,"width":25,"height":45},{"x":25,"y":0,"fileNum":3,"id":17060,"width":25,"height":45},{"x":50,"y":0,"fileNum":3,"id":17061,"width":25,"height":45},{"x":75,"y":0,"fileNum":3,"id":17062,"width":25,"height":45},{"x":100,"y":0,"fileNum":3,"id":17063,"width":25,"height":45},{"x":125,"y":0,"fileNum":3,"id":17064,"width":25,"height":45},{"x":0,"y":45,"fileNum":3,"id":17065,"width":25,"height":45},{"x":25,"y":45,"fileNum":3,"id":17066,"width":25,"height":45},{"x":50,"y":45,"fileNum":3,"id":17067,"width":25,"height":45},{"x":75,"y":45,"fileNum":3,"id":17068,"width":25,"height":45},{"x":100,"y":45,"fileNum":3,"id":17069,"width":25,"height":45},{"x":125,"y":45,"fileNum":3,"id":17070,"width":25,"height":45},{"x":0,"y":90,"fileNum":3,"id":17071,"width":25,"height":45},{"x":25,"y":90,"fileNum":3,"id":17072,"width":25,"height":45},{"x":50,"y":90,"fileNum":3,"id":17073,"width":25,"height":45},{"x":75,"y":90,"fileNum":3,"id":17074,"width":25,"height":45},{"x":100,"y":90,"fileNum":3,"id":17075,"width":25,"height":45},{"x":0,"y":135,"fileNum":3,"id":17076,"width":25,"height":45},{"x":25,"y":135,"fileNum":3,"id":17077,"width":25,"height":45},{"x":50,"y":135,"fileNum":3,"id":17078,"width":25,"height":45},{"x":75,"y":135,"fileNum":3,"id":17079,"width":25,"height":45},{"x":100,"y":135,"fileNum":3,"id":17080,"width":25,"height":45},{"x":0,"y":0,"fileNum":16,"id":17085,"width":32,"height":32},{"x":0,"y":0,"fileNum":5,"id":17086,"width":25,"height":45},{"x":25,"y":0,"fileNum":5,"id":17087,"width":25,"height":45},{"x":50,"y":0,"fileNum":5,"id":17088,"width":25,"height":45},{"x":75,"y":0,"fileNum":5,"id":17089,"width":25,"height":45},{"x":100,"y":0,"fileNum":5,"id":17090,"width":25,"height":45},{"x":125,"y":0,"fileNum":5,"id":17091,"width":25,"height":45},{"x":0,"y":45,"fileNum":5,"id":17092,"width":25,"height":45},{"x":25,"y":45,"fileNum":5,"id":17093,"width":25,"height":45},{"x":50,"y":45,"fileNum":5,"id":17094,"width":25,"height":45},{"x":75,"y":45,"fileNum":5,"id":17095,"width":25,"height":45},{"x":100,"y":45,"fileNum":5,"id":17096,"width":25,"height":45},{"x":125,"y":45,"fileNum":5,"id":17097,"width":25,"height":45},{"x":0,"y":90,"fileNum":5,"id":17098,"width":25,"height":45},{"x":25,"y":90,"fileNum":5,"id":17099,"width":25,"height":45},{"x":50,"y":90,"fileNum":5,"id":17100,"width":25,"height":45},{"x":75,"y":90,"fileNum":5,"id":17101,"width":25,"height":45},{"x":100,"y":90,"fileNum":5,"id":17102,"width":25,"height":45},{"x":0,"y":135,"fileNum":5,"id":17103,"width":25,"height":45},{"x":25,"y":135,"fileNum":5,"id":17104,"width":25,"height":45},{"x":50,"y":135,"fileNum":5,"id":17105,"width":25,"height":45},{"x":75,"y":135,"fileNum":5,"id":17106,"width":25,"height":45},{"x":100,"y":135,"fileNum":5,"id":17107,"width":25,"height":45},{"x":0,"y":0,"fileNum":22,"id":17112,"width":32,"height":32},{"x":0,"y":0,"fileNum":21,"id":17113,"width":25,"height":45},{"x":25,"y":0,"fileNum":21,"id":17114,"width":25,"height":45},{"x":50,"y":0,"fileNum":21,"id":17115,"width":25,"height":45},{"x":75,"y":0,"fileNum":21,"id":17116,"width":25,"height":45},{"x":100,"y":0,"fileNum":21,"id":17117,"width":25,"height":45},{"x":125,"y":0,"fileNum":21,"id":17118,"width":25,"height":45},{"x":0,"y":45,"fileNum":21,"id":17119,"width":25,"height":45},{"x":25,"y":45,"fileNum":21,"id":17120,"width":25,"height":45},{"x":50,"y":45,"fileNum":21,"id":17121,"width":25,"height":45},{"x":75,"y":45,"fileNum":21,"id":17122,"width":25,"height":45},{"x":100,"y":45,"fileNum":21,"id":17123,"width":25,"height":45},{"x":125,"y":45,"fileNum":21,"id":17124,"width":25,"height":45},{"x":0,"y":90,"fileNum":21,"id":17125,"width":25,"height":45},{"x":25,"y":90,"fileNum":21,"id":17126,"width":25,"height":45},{"x":50,"y":90,"fileNum":21,"id":17127,"width":25,"height":45},{"x":75,"y":90,"fileNum":21,"id":17128,"width":25,"height":45},{"x":100,"y":90,"fileNum":21,"id":17129,"width":25,"height":45},{"x":0,"y":135,"fileNum":21,"id":17130,"width":25,"height":45},{"x":25,"y":135,"fileNum":21,"id":17131,"width":25,"height":45},{"x":50,"y":135,"fileNum":21,"id":17132,"width":25,"height":45},{"x":75,"y":135,"fileNum":21,"id":17133,"width":25,"height":45},{"x":100,"y":135,"fileNum":21,"id":17134,"width":25,"height":45},{"x":0,"y":0,"fileNum":24,"id":17139,"width":32,"height":32},{"x":0,"y":0,"fileNum":23,"id":17140,"width":25,"height":45},{"x":25,"y":0,"fileNum":23,"id":17141,"width":25,"height":45},{"x":50,"y":0,"fileNum":23,"id":17142,"width":25,"height":45},{"x":75,"y":0,"fileNum":23,"id":17143,"width":25,"height":45},{"x":100,"y":0,"fileNum":23,"id":17144,"width":25,"height":45},{"x":125,"y":0,"fileNum":23,"id":17145,"width":25,"height":45},{"x":0,"y":45,"fileNum":23,"id":17146,"width":25,"height":45},{"x":25,"y":45,"fileNum":23,"id":17147,"width":25,"height":45},{"x":50,"y":45,"fileNum":23,"id":17148,"width":25,"height":45},{"x":75,"y":45,"fileNum":23,"id":17149,"width":25,"height":45},{"x":100,"y":45,"fileNum":23,"id":17150,"width":25,"height":45},{"x":125,"y":45,"fileNum":23,"id":17151,"width":25,"height":45},{"x":0,"y":90,"fileNum":23,"id":17152,"width":25,"height":45},{"x":25,"y":90,"fileNum":23,"id":17153,"width":25,"height":45},{"x":50,"y":90,"fileNum":23,"id":17154,"width":25,"height":45},{"x":75,"y":90,"fileNum":23,"id":17155,"width":25,"height":45},{"x":100,"y":90,"fileNum":23,"id":17156,"width":25,"height":45},{"x":0,"y":135,"fileNum":23,"id":17157,"width":25,"height":45},{"x":25,"y":135,"fileNum":23,"id":17158,"width":25,"height":45},{"x":50,"y":135,"fileNum":23,"id":17159,"width":25,"height":45},{"x":75,"y":135,"fileNum":23,"id":17160,"width":25,"height":45},{"x":100,"y":135,"fileNum":23,"id":17161,"width":25,"height":45},{"x":0,"y":0,"fileNum":26,"id":17166,"width":32,"height":32},{"x":0,"y":0,"fileNum":25,"id":17167,"width":25,"height":45},{"x":25,"y":0,"fileNum":25,"id":17168,"width":25,"height":45},{"x":50,"y":0,"fileNum":25,"id":17169,"width":25,"height":45},{"x":75,"y":0,"fileNum":25,"id":17170,"width":25,"height":45},{"x":100,"y":0,"fileNum":25,"id":17171,"width":25,"height":45},{"x":125,"y":0,"fileNum":25,"id":17172,"width":25,"height":45},{"x":0,"y":45,"fileNum":25,"id":17173,"width":25,"height":45},{"x":25,"y":45,"fileNum":25,"id":17174,"width":25,"height":45},{"x":50,"y":45,"fileNum":25,"id":17175,"width":25,"height":45},{"x":75,"y":45,"fileNum":25,"id":17176,"width":25,"height":45},{"x":100,"y":45,"fileNum":25,"id":17177,"width":25,"height":45},{"x":125,"y":45,"fileNum":25,"id":17178,"width":25,"height":45},{"x":0,"y":90,"fileNum":25,"id":17179,"width":25,"height":45},{"x":25,"y":90,"fileNum":25,"id":17180,"width":25,"height":45},{"x":50,"y":90,"fileNum":25,"id":17181,"width":25,"height":45},{"x":75,"y":90,"fileNum":25,"id":17182,"width":25,"height":45},{"x":100,"y":90,"fileNum":25,"id":17183,"width":25,"height":45},{"x":0,"y":135,"fileNum":25,"id":17184,"width":25,"height":45},{"x":25,"y":135,"fileNum":25,"id":17185,"width":25,"height":45},{"x":50,"y":135,"fileNum":25,"id":17186,"width":25,"height":45},{"x":75,"y":135,"fileNum":25,"id":17187,"width":25,"height":45},{"x":100,"y":135,"fileNum":25,"id":17188,"width":25,"height":45},{"x":0,"y":0,"fileNum":28,"id":17193,"width":32,"height":32},{"x":0,"y":0,"fileNum":27,"id":17194,"width":25,"height":45},{"x":25,"y":0,"fileNum":27,"id":17195,"width":25,"height":45},{"x":50,"y":0,"fileNum":27,"id":17196,"width":25,"height":45},{"x":75,"y":0,"fileNum":27,"id":17197,"width":25,"height":45},{"x":100,"y":0,"fileNum":27,"id":17198,"width":25,"height":45},{"x":125,"y":0,"fileNum":27,"id":17199,"width":25,"height":45},{"x":0,"y":45,"fileNum":27,"id":17200,"width":25,"height":45},{"x":25,"y":45,"fileNum":27,"id":17201,"width":25,"height":45},{"x":50,"y":45,"fileNum":27,"id":17202,"width":25,"height":45},{"x":75,"y":45,"fileNum":27,"id":17203,"width":25,"height":45},{"x":100,"y":45,"fileNum":27,"id":17204,"width":25,"height":45},{"x":125,"y":45,"fileNum":27,"id":17205,"width":25,"height":45},{"x":0,"y":90,"fileNum":27,"id":17206,"width":25,"height":45},{"x":25,"y":90,"fileNum":27,"id":17207,"width":25,"height":45},{"x":50,"y":90,"fileNum":27,"id":17208,"width":25,"height":45},{"x":75,"y":90,"fileNum":27,"id":17209,"width":25,"height":45},{"x":100,"y":90,"fileNum":27,"id":17210,"width":25,"height":45},{"x":0,"y":135,"fileNum":27,"id":17211,"width":25,"height":45},{"x":25,"y":135,"fileNum":27,"id":17212,"width":25,"height":45},{"x":50,"y":135,"fileNum":27,"id":17213,"width":25,"height":45},{"x":75,"y":135,"fileNum":27,"id":17214,"width":25,"height":45},{"x":100,"y":135,"fileNum":27,"id":17215,"width":25,"height":45},{"x":0,"y":0,"fileNum":30,"id":17220,"width":32,"height":32},{"x":0,"y":0,"fileNum":29,"id":17221,"width":25,"height":45},{"x":25,"y":0,"fileNum":29,"id":17222,"width":25,"height":45},{"x":50,"y":0,"fileNum":29,"id":17223,"width":25,"height":45},{"x":75,"y":0,"fileNum":29,"id":17224,"width":25,"height":45},{"x":100,"y":0,"fileNum":29,"id":17225,"width":25,"height":45},{"x":125,"y":0,"fileNum":29,"id":17226,"width":25,"height":45},{"x":0,"y":45,"fileNum":29,"id":17227,"width":25,"height":45},{"x":25,"y":45,"fileNum":29,"id":17228,"width":25,"height":45},{"x":50,"y":45,"fileNum":29,"id":17229,"width":25,"height":45},{"x":75,"y":45,"fileNum":29,"id":17230,"width":25,"height":45},{"x":100,"y":45,"fileNum":29,"id":17231,"width":25,"height":45},{"x":125,"y":45,"fileNum":29,"id":17232,"width":25,"height":45},{"x":0,"y":90,"fileNum":29,"id":17233,"width":25,"height":45},{"x":25,"y":90,"fileNum":29,"id":17234,"width":25,"height":45},{"x":50,"y":90,"fileNum":29,"id":17235,"width":25,"height":45},{"x":75,"y":90,"fileNum":29,"id":17236,"width":25,"height":45},{"x":100,"y":90,"fileNum":29,"id":17237,"width":25,"height":45},{"x":0,"y":135,"fileNum":29,"id":17238,"width":25,"height":45},{"x":25,"y":135,"fileNum":29,"id":17239,"width":25,"height":45},{"x":50,"y":135,"fileNum":29,"id":17240,"width":25,"height":45},{"x":75,"y":135,"fileNum":29,"id":17241,"width":25,"height":45},{"x":100,"y":135,"fileNum":29,"id":17242,"width":25,"height":45},{"x":0,"y":0,"fileNum":32,"id":17247,"width":32,"height":32},{"x":0,"y":0,"fileNum":31,"id":17248,"width":25,"height":45},{"x":25,"y":0,"fileNum":31,"id":17249,"width":25,"height":45},{"x":50,"y":0,"fileNum":31,"id":17250,"width":25,"height":45},{"x":75,"y":0,"fileNum":31,"id":17251,"width":25,"height":45},{"x":100,"y":0,"fileNum":31,"id":17252,"width":25,"height":45},{"x":125,"y":0,"fileNum":31,"id":17253,"width":25,"height":45},{"x":0,"y":45,"fileNum":31,"id":17254,"width":25,"height":45},{"x":25,"y":45,"fileNum":31,"id":17255,"width":25,"height":45},{"x":50,"y":45,"fileNum":31,"id":17256,"width":25,"height":45},{"x":75,"y":45,"fileNum":31,"id":17257,"width":25,"height":45},{"x":100,"y":45,"fileNum":31,"id":17258,"width":25,"height":45},{"x":125,"y":45,"fileNum":31,"id":17259,"width":25,"height":45},{"x":0,"y":90,"fileNum":31,"id":17260,"width":25,"height":45},{"x":25,"y":90,"fileNum":31,"id":17261,"width":25,"height":45},{"x":50,"y":90,"fileNum":31,"id":17262,"width":25,"height":45},{"x":75,"y":90,"fileNum":31,"id":17263,"width":25,"height":45},{"x":100,"y":90,"fileNum":31,"id":17264,"width":25,"height":45},{"x":0,"y":135,"fileNum":31,"id":17265,"width":25,"height":45},{"x":25,"y":135,"fileNum":31,"id":17266,"width":25,"height":45},{"x":50,"y":135,"fileNum":31,"id":17267,"width":25,"height":45},{"x":75,"y":135,"fileNum":31,"id":17268,"width":25,"height":45},{"x":100,"y":135,"fileNum":31,"id":17269,"width":25,"height":45},{"x":0,"y":0,"fileNum":34,"id":17274,"width":32,"height":32},{"x":0,"y":0,"fileNum":33,"id":17275,"width":25,"height":45},{"x":25,"y":0,"fileNum":33,"id":17276,"width":25,"height":45},{"x":50,"y":0,"fileNum":33,"id":17277,"width":25,"height":45},{"x":75,"y":0,"fileNum":33,"id":17278,"width":25,"height":45},{"x":100,"y":0,"fileNum":33,"id":17279,"width":25,"height":45},{"x":125,"y":0,"fileNum":33,"id":17280,"width":25,"height":45},{"x":0,"y":45,"fileNum":33,"id":17281,"width":25,"height":45},{"x":25,"y":45,"fileNum":33,"id":17282,"width":25,"height":45},{"x":50,"y":45,"fileNum":33,"id":17283,"width":25,"height":45},{"x":75,"y":45,"fileNum":33,"id":17284,"width":25,"height":45},{"x":100,"y":45,"fileNum":33,"id":17285,"width":25,"height":45},{"x":125,"y":45,"fileNum":33,"id":17286,"width":25,"height":45},{"x":0,"y":90,"fileNum":33,"id":17287,"width":25,"height":45},{"x":25,"y":90,"fileNum":33,"id":17288,"width":25,"height":45},{"x":50,"y":90,"fileNum":33,"id":17289,"width":25,"height":45},{"x":75,"y":90,"fileNum":33,"id":17290,"width":25,"height":45},{"x":100,"y":90,"fileNum":33,"id":17291,"width":25,"height":45},{"x":0,"y":135,"fileNum":33,"id":17292,"width":25,"height":45},{"x":25,"y":135,"fileNum":33,"id":17293,"width":25,"height":45},{"x":50,"y":135,"fileNum":33,"id":17294,"width":25,"height":45},{"x":75,"y":135,"fileNum":33,"id":17295,"width":25,"height":45},{"x":100,"y":135,"fileNum":33,"id":17296,"width":25,"height":45},{"x":0,"y":0,"fileNum":36,"id":17301,"width":32,"height":32},{"x":0,"y":0,"fileNum":35,"id":17302,"width":25,"height":45},{"x":25,"y":0,"fileNum":35,"id":17303,"width":25,"height":45},{"x":50,"y":0,"fileNum":35,"id":17304,"width":25,"height":45},{"x":75,"y":0,"fileNum":35,"id":17305,"width":25,"height":45},{"x":100,"y":0,"fileNum":35,"id":17306,"width":25,"height":45},{"x":125,"y":0,"fileNum":35,"id":17307,"width":25,"height":45},{"x":0,"y":45,"fileNum":35,"id":17308,"width":25,"height":45},{"x":25,"y":45,"fileNum":35,"id":17309,"width":25,"height":45},{"x":50,"y":45,"fileNum":35,"id":17310,"width":25,"height":45},{"x":75,"y":45,"fileNum":35,"id":17311,"width":25,"height":45},{"x":100,"y":45,"fileNum":35,"id":17312,"width":25,"height":45},{"x":125,"y":45,"fileNum":35,"id":17313,"width":25,"height":45},{"x":0,"y":90,"fileNum":35,"id":17314,"width":25,"height":45},{"x":25,"y":90,"fileNum":35,"id":17315,"width":25,"height":45},{"x":50,"y":90,"fileNum":35,"id":17316,"width":25,"height":45},{"x":75,"y":90,"fileNum":35,"id":17317,"width":25,"height":45},{"x":100,"y":90,"fileNum":35,"id":17318,"width":25,"height":45},{"x":0,"y":135,"fileNum":35,"id":17319,"width":25,"height":45},{"x":25,"y":135,"fileNum":35,"id":17320,"width":25,"height":45},{"x":50,"y":135,"fileNum":35,"id":17321,"width":25,"height":45},{"x":75,"y":135,"fileNum":35,"id":17322,"width":25,"height":45},{"x":100,"y":135,"fileNum":35,"id":17323,"width":25,"height":45},{"x":0,"y":0,"fileNum":38,"id":17328,"width":32,"height":32},{"x":0,"y":0,"fileNum":37,"id":17329,"width":25,"height":45},{"x":25,"y":0,"fileNum":37,"id":17330,"width":25,"height":45},{"x":50,"y":0,"fileNum":37,"id":17331,"width":25,"height":45},{"x":75,"y":0,"fileNum":37,"id":17332,"width":25,"height":45},{"x":100,"y":0,"fileNum":37,"id":17333,"width":25,"height":45},{"x":125,"y":0,"fileNum":37,"id":17334,"width":25,"height":45},{"x":0,"y":45,"fileNum":37,"id":17335,"width":25,"height":45},{"x":25,"y":45,"fileNum":37,"id":17336,"width":25,"height":45},{"x":50,"y":45,"fileNum":37,"id":17337,"width":25,"height":45},{"x":75,"y":45,"fileNum":37,"id":17338,"width":25,"height":45},{"x":100,"y":45,"fileNum":37,"id":17339,"width":25,"height":45},{"x":125,"y":45,"fileNum":37,"id":17340,"width":25,"height":45},{"x":0,"y":90,"fileNum":37,"id":17341,"width":25,"height":45},{"x":25,"y":90,"fileNum":37,"id":17342,"width":25,"height":45},{"x":50,"y":90,"fileNum":37,"id":17343,"width":25,"height":45},{"x":75,"y":90,"fileNum":37,"id":17344,"width":25,"height":45},{"x":100,"y":90,"fileNum":37,"id":17345,"width":25,"height":45},{"x":0,"y":135,"fileNum":37,"id":17346,"width":25,"height":45},{"x":25,"y":135,"fileNum":37,"id":17347,"width":25,"height":45},{"x":50,"y":135,"fileNum":37,"id":17348,"width":25,"height":45},{"x":75,"y":135,"fileNum":37,"id":17349,"width":25,"height":45},{"x":100,"y":135,"fileNum":37,"id":17350,"width":25,"height":45},{"x":0,"y":0,"fileNum":40,"id":17355,"width":32,"height":32},{"x":0,"y":0,"fileNum":39,"id":17356,"width":25,"height":45},{"x":25,"y":0,"fileNum":39,"id":17357,"width":25,"height":45},{"x":50,"y":0,"fileNum":39,"id":17358,"width":25,"height":45},{"x":75,"y":0,"fileNum":39,"id":17359,"width":25,"height":45},{"x":100,"y":0,"fileNum":39,"id":17360,"width":25,"height":45},{"x":125,"y":0,"fileNum":39,"id":17361,"width":25,"height":45},{"x":0,"y":45,"fileNum":39,"id":17362,"width":25,"height":45},{"x":25,"y":45,"fileNum":39,"id":17363,"width":25,"height":45},{"x":50,"y":45,"fileNum":39,"id":17364,"width":25,"height":45},{"x":75,"y":45,"fileNum":39,"id":17365,"width":25,"height":45},{"x":100,"y":45,"fileNum":39,"id":17366,"width":25,"height":45},{"x":125,"y":45,"fileNum":39,"id":17367,"width":25,"height":45},{"x":0,"y":90,"fileNum":39,"id":17368,"width":25,"height":45},{"x":25,"y":90,"fileNum":39,"id":17369,"width":25,"height":45},{"x":50,"y":90,"fileNum":39,"id":17370,"width":25,"height":45},{"x":75,"y":90,"fileNum":39,"id":17371,"width":25,"height":45},{"x":100,"y":90,"fileNum":39,"id":17372,"width":25,"height":45},{"x":0,"y":135,"fileNum":39,"id":17373,"width":25,"height":45},{"x":25,"y":135,"fileNum":39,"id":17374,"width":25,"height":45},{"x":50,"y":135,"fileNum":39,"id":17375,"width":25,"height":45},{"x":75,"y":135,"fileNum":39,"id":17376,"width":25,"height":45},{"x":100,"y":135,"fileNum":39,"id":17377,"width":25,"height":45},{"x":0,"y":0,"fileNum":42,"id":17382,"width":32,"height":32},{"x":0,"y":0,"fileNum":41,"id":17383,"width":25,"height":45},{"x":25,"y":0,"fileNum":41,"id":17384,"width":25,"height":45},{"x":50,"y":0,"fileNum":41,"id":17385,"width":25,"height":45},{"x":75,"y":0,"fileNum":41,"id":17386,"width":25,"height":45},{"x":100,"y":0,"fileNum":41,"id":17387,"width":25,"height":45},{"x":125,"y":0,"fileNum":41,"id":17388,"width":25,"height":45},{"x":0,"y":45,"fileNum":41,"id":17389,"width":25,"height":45},{"x":25,"y":45,"fileNum":41,"id":17390,"width":25,"height":45},{"x":50,"y":45,"fileNum":41,"id":17391,"width":25,"height":45},{"x":75,"y":45,"fileNum":41,"id":17392,"width":25,"height":45},{"x":100,"y":45,"fileNum":41,"id":17393,"width":25,"height":45},{"x":125,"y":45,"fileNum":41,"id":17394,"width":25,"height":45},{"x":0,"y":90,"fileNum":41,"id":17395,"width":25,"height":45},{"x":25,"y":90,"fileNum":41,"id":17396,"width":25,"height":45},{"x":50,"y":90,"fileNum":41,"id":17397,"width":25,"height":45},{"x":75,"y":90,"fileNum":41,"id":17398,"width":25,"height":45},{"x":100,"y":90,"fileNum":41,"id":17399,"width":25,"height":45},{"x":0,"y":135,"fileNum":41,"id":17400,"width":25,"height":45},{"x":25,"y":135,"fileNum":41,"id":17401,"width":25,"height":45},{"x":50,"y":135,"fileNum":41,"id":17402,"width":25,"height":45},{"x":75,"y":135,"fileNum":41,"id":17403,"width":25,"height":45},{"x":100,"y":135,"fileNum":41,"id":17404,"width":25,"height":45},{"x":0,"y":0,"fileNum":44,"id":17409,"width":32,"height":32},{"x":0,"y":0,"fileNum":43,"id":17410,"width":25,"height":45},{"x":25,"y":0,"fileNum":43,"id":17411,"width":25,"height":45},{"x":50,"y":0,"fileNum":43,"id":17412,"width":25,"height":45},{"x":75,"y":0,"fileNum":43,"id":17413,"width":25,"height":45},{"x":100,"y":0,"fileNum":43,"id":17414,"width":25,"height":45},{"x":125,"y":0,"fileNum":43,"id":17415,"width":25,"height":45},{"x":0,"y":45,"fileNum":43,"id":17416,"width":25,"height":45},{"x":25,"y":45,"fileNum":43,"id":17417,"width":25,"height":45},{"x":50,"y":45,"fileNum":43,"id":17418,"width":25,"height":45},{"x":75,"y":45,"fileNum":43,"id":17419,"width":25,"height":45},{"x":100,"y":45,"fileNum":43,"id":17420,"width":25,"height":45},{"x":125,"y":45,"fileNum":43,"id":17421,"width":25,"height":45},{"x":0,"y":90,"fileNum":43,"id":17422,"width":25,"height":45},{"x":25,"y":90,"fileNum":43,"id":17423,"width":25,"height":45},{"x":50,"y":90,"fileNum":43,"id":17424,"width":25,"height":45},{"x":75,"y":90,"fileNum":43,"id":17425,"width":25,"height":45},{"x":100,"y":90,"fileNum":43,"id":17426,"width":25,"height":45},{"x":0,"y":135,"fileNum":43,"id":17427,"width":25,"height":45},{"x":25,"y":135,"fileNum":43,"id":17428,"width":25,"height":45},{"x":50,"y":135,"fileNum":43,"id":17429,"width":25,"height":45},{"x":75,"y":135,"fileNum":43,"id":17430,"width":25,"height":45},{"x":100,"y":135,"fileNum":43,"id":17431,"width":25,"height":45},{"x":0,"y":0,"fileNum":46,"id":17436,"width":32,"height":32},{"x":0,"y":0,"fileNum":45,"id":17437,"width":25,"height":45},{"x":25,"y":0,"fileNum":45,"id":17438,"width":25,"height":45},{"x":50,"y":0,"fileNum":45,"id":17439,"width":25,"height":45},{"x":75,"y":0,"fileNum":45,"id":17440,"width":25,"height":45},{"x":100,"y":0,"fileNum":45,"id":17441,"width":25,"height":45},{"x":125,"y":0,"fileNum":45,"id":17442,"width":25,"height":45},{"x":0,"y":45,"fileNum":45,"id":17443,"width":25,"height":45},{"x":25,"y":45,"fileNum":45,"id":17444,"width":25,"height":45},{"x":50,"y":45,"fileNum":45,"id":17445,"width":25,"height":45},{"x":75,"y":45,"fileNum":45,"id":17446,"width":25,"height":45},{"x":100,"y":45,"fileNum":45,"id":17447,"width":25,"height":45},{"x":125,"y":45,"fileNum":45,"id":17448,"width":25,"height":45},{"x":0,"y":90,"fileNum":45,"id":17449,"width":25,"height":45},{"x":25,"y":90,"fileNum":45,"id":17450,"width":25,"height":45},{"x":50,"y":90,"fileNum":45,"id":17451,"width":25,"height":45},{"x":75,"y":90,"fileNum":45,"id":17452,"width":25,"height":45},{"x":100,"y":90,"fileNum":45,"id":17453,"width":25,"height":45},{"x":0,"y":135,"fileNum":45,"id":17454,"width":25,"height":45},{"x":25,"y":135,"fileNum":45,"id":17455,"width":25,"height":45},{"x":50,"y":135,"fileNum":45,"id":17456,"width":25,"height":45},{"x":75,"y":135,"fileNum":45,"id":17457,"width":25,"height":45},{"x":100,"y":135,"fileNum":45,"id":17458,"width":25,"height":45},{"x":0,"y":0,"fileNum":48,"id":17463,"width":32,"height":32},{"x":0,"y":0,"fileNum":47,"id":17464,"width":25,"height":45},{"x":25,"y":0,"fileNum":47,"id":17465,"width":25,"height":45},{"x":50,"y":0,"fileNum":47,"id":17466,"width":25,"height":45},{"x":75,"y":0,"fileNum":47,"id":17467,"width":25,"height":45},{"x":100,"y":0,"fileNum":47,"id":17468,"width":25,"height":45},{"x":125,"y":0,"fileNum":47,"id":17469,"width":25,"height":45},{"x":0,"y":45,"fileNum":47,"id":17470,"width":25,"height":45},{"x":25,"y":45,"fileNum":47,"id":17471,"width":25,"height":45},{"x":50,"y":45,"fileNum":47,"id":17472,"width":25,"height":45},{"x":75,"y":45,"fileNum":47,"id":17473,"width":25,"height":45},{"x":100,"y":45,"fileNum":47,"id":17474,"width":25,"height":45},{"x":125,"y":45,"fileNum":47,"id":17475,"width":25,"height":45},{"x":0,"y":90,"fileNum":47,"id":17476,"width":25,"height":45},{"x":25,"y":90,"fileNum":47,"id":17477,"width":25,"height":45},{"x":50,"y":90,"fileNum":47,"id":17478,"width":25,"height":45},{"x":75,"y":90,"fileNum":47,"id":17479,"width":25,"height":45},{"x":100,"y":90,"fileNum":47,"id":17480,"width":25,"height":45},{"x":0,"y":135,"fileNum":47,"id":17481,"width":25,"height":45},{"x":25,"y":135,"fileNum":47,"id":17482,"width":25,"height":45},{"x":50,"y":135,"fileNum":47,"id":17483,"width":25,"height":45},{"x":75,"y":135,"fileNum":47,"id":17484,"width":25,"height":45},{"x":100,"y":135,"fileNum":47,"id":17485,"width":25,"height":45},{"x":0,"y":0,"fileNum":50,"id":17490,"width":32,"height":32},{"x":0,"y":0,"fileNum":49,"id":17491,"width":25,"height":45},{"x":25,"y":0,"fileNum":49,"id":17492,"width":25,"height":45},{"x":50,"y":0,"fileNum":49,"id":17493,"width":25,"height":45},{"x":75,"y":0,"fileNum":49,"id":17494,"width":25,"height":45},{"x":100,"y":0,"fileNum":49,"id":17495,"width":25,"height":45},{"x":125,"y":0,"fileNum":49,"id":17496,"width":25,"height":45},{"x":0,"y":45,"fileNum":49,"id":17497,"width":25,"height":45},{"x":25,"y":45,"fileNum":49,"id":17498,"width":25,"height":45},{"x":50,"y":45,"fileNum":49,"id":17499,"width":25,"height":45},{"x":75,"y":45,"fileNum":49,"id":17500,"width":25,"height":45},{"x":100,"y":45,"fileNum":49,"id":17501,"width":25,"height":45},{"x":125,"y":45,"fileNum":49,"id":17502,"width":25,"height":45},{"x":0,"y":90,"fileNum":49,"id":17503,"width":25,"height":45},{"x":25,"y":90,"fileNum":49,"id":17504,"width":25,"height":45},{"x":50,"y":90,"fileNum":49,"id":17505,"width":25,"height":45},{"x":75,"y":90,"fileNum":49,"id":17506,"width":25,"height":45},{"x":100,"y":90,"fileNum":49,"id":17507,"width":25,"height":45},{"x":0,"y":135,"fileNum":49,"id":17508,"width":25,"height":45},{"x":25,"y":135,"fileNum":49,"id":17509,"width":25,"height":45},{"x":50,"y":135,"fileNum":49,"id":17510,"width":25,"height":45},{"x":75,"y":135,"fileNum":49,"id":17511,"width":25,"height":45},{"x":100,"y":135,"fileNum":49,"id":17512,"width":25,"height":45},{"x":0,"y":0,"fileNum":52,"id":17517,"width":32,"height":32},{"x":0,"y":0,"fileNum":51,"id":17518,"width":25,"height":45},{"x":25,"y":0,"fileNum":51,"id":17519,"width":25,"height":45},{"x":50,"y":0,"fileNum":51,"id":17520,"width":25,"height":45},{"x":75,"y":0,"fileNum":51,"id":17521,"width":25,"height":45},{"x":100,"y":0,"fileNum":51,"id":17522,"width":25,"height":45},{"x":125,"y":0,"fileNum":51,"id":17523,"width":25,"height":45},{"x":0,"y":45,"fileNum":51,"id":17524,"width":25,"height":45},{"x":25,"y":45,"fileNum":51,"id":17525,"width":25,"height":45},{"x":50,"y":45,"fileNum":51,"id":17526,"width":25,"height":45},{"x":75,"y":45,"fileNum":51,"id":17527,"width":25,"height":45},{"x":100,"y":45,"fileNum":51,"id":17528,"width":25,"height":45},{"x":125,"y":45,"fileNum":51,"id":17529,"width":25,"height":45},{"x":0,"y":90,"fileNum":51,"id":17530,"width":25,"height":45},{"x":25,"y":90,"fileNum":51,"id":17531,"width":25,"height":45},{"x":50,"y":90,"fileNum":51,"id":17532,"width":25,"height":45},{"x":75,"y":90,"fileNum":51,"id":17533,"width":25,"height":45},{"x":100,"y":90,"fileNum":51,"id":17534,"width":25,"height":45},{"x":0,"y":135,"fileNum":51,"id":17535,"width":25,"height":45},{"x":25,"y":135,"fileNum":51,"id":17536,"width":25,"height":45},{"x":50,"y":135,"fileNum":51,"id":17537,"width":25,"height":45},{"x":75,"y":135,"fileNum":51,"id":17538,"width":25,"height":45},{"x":100,"y":135,"fileNum":51,"id":17539,"width":25,"height":45},{"x":0,"y":0,"fileNum":54,"id":17544,"width":32,"height":32},{"x":0,"y":0,"fileNum":53,"id":17545,"width":25,"height":45},{"x":25,"y":0,"fileNum":53,"id":17546,"width":25,"height":45},{"x":50,"y":0,"fileNum":53,"id":17547,"width":25,"height":45},{"x":75,"y":0,"fileNum":53,"id":17548,"width":25,"height":45},{"x":100,"y":0,"fileNum":53,"id":17549,"width":25,"height":45},{"x":125,"y":0,"fileNum":53,"id":17550,"width":25,"height":45},{"x":0,"y":45,"fileNum":53,"id":17551,"width":25,"height":45},{"x":25,"y":45,"fileNum":53,"id":17552,"width":25,"height":45},{"x":50,"y":45,"fileNum":53,"id":17553,"width":25,"height":45},{"x":75,"y":45,"fileNum":53,"id":17554,"width":25,"height":45},{"x":100,"y":45,"fileNum":53,"id":17555,"width":25,"height":45},{"x":125,"y":45,"fileNum":53,"id":17556,"width":25,"height":45},{"x":0,"y":90,"fileNum":53,"id":17557,"width":25,"height":45},{"x":25,"y":90,"fileNum":53,"id":17558,"width":25,"height":45},{"x":50,"y":90,"fileNum":53,"id":17559,"width":25,"height":45},{"x":75,"y":90,"fileNum":53,"id":17560,"width":25,"height":45},{"x":100,"y":90,"fileNum":53,"id":17561,"width":25,"height":45},{"x":0,"y":135,"fileNum":53,"id":17562,"width":25,"height":45},{"x":25,"y":135,"fileNum":53,"id":17563,"width":25,"height":45},{"x":50,"y":135,"fileNum":53,"id":17564,"width":25,"height":45},{"x":75,"y":135,"fileNum":53,"id":17565,"width":25,"height":45},{"x":100,"y":135,"fileNum":53,"id":17566,"width":25,"height":45},{"x":0,"y":0,"fileNum":4105,"id":17571,"width":35,"height":53},{"x":35,"y":0,"fileNum":4105,"id":17572,"width":35,"height":53},{"x":70,"y":0,"fileNum":4105,"id":17573,"width":35,"height":53},{"x":105,"y":0,"fileNum":4105,"id":17574,"width":35,"height":53},{"x":140,"y":0,"fileNum":4105,"id":17575,"width":35,"height":53},{"x":175,"y":0,"fileNum":4105,"id":17576,"width":35,"height":53},{"x":210,"y":0,"fileNum":4105,"id":17577,"width":35,"height":53},{"x":245,"y":0,"fileNum":4105,"id":17578,"width":35,"height":53},{"x":0,"y":53,"fileNum":4105,"id":17579,"width":35,"height":53},{"x":35,"y":53,"fileNum":4105,"id":17580,"width":35,"height":53},{"x":70,"y":53,"fileNum":4105,"id":17581,"width":35,"height":53},{"x":105,"y":53,"fileNum":4105,"id":17582,"width":35,"height":53},{"x":140,"y":53,"fileNum":4105,"id":17583,"width":35,"height":53},{"x":175,"y":53,"fileNum":4105,"id":17584,"width":35,"height":53},{"x":210,"y":53,"fileNum":4105,"id":17585,"width":35,"height":53},{"x":245,"y":53,"fileNum":4105,"id":17586,"width":35,"height":53},{"x":0,"y":106,"fileNum":4105,"id":17587,"width":35,"height":53},{"x":35,"y":106,"fileNum":4105,"id":17588,"width":35,"height":53},{"x":70,"y":106,"fileNum":4105,"id":17589,"width":35,"height":53},{"x":105,"y":106,"fileNum":4105,"id":17590,"width":35,"height":53},{"x":140,"y":106,"fileNum":4105,"id":17591,"width":35,"height":53},{"x":0,"y":159,"fileNum":4105,"id":17592,"width":35,"height":53},{"x":35,"y":159,"fileNum":4105,"id":17593,"width":35,"height":53},{"x":70,"y":159,"fileNum":4105,"id":17594,"width":35,"height":53},{"x":105,"y":159,"fileNum":4105,"id":17595,"width":35,"height":53},{"x":140,"y":159,"fileNum":4105,"id":17596,"width":35,"height":53},{"x":0,"y":0,"fileNum":4136,"id":17601,"width":96,"height":96},{"x":96,"y":0,"fileNum":4136,"id":17602,"width":96,"height":96},{"x":192,"y":0,"fileNum":4136,"id":17603,"width":96,"height":96},{"x":288,"y":0,"fileNum":4136,"id":17604,"width":96,"height":96},{"x":384,"y":0,"fileNum":4136,"id":17605,"width":96,"height":96},{"x":480,"y":0,"fileNum":4136,"id":17606,"width":96,"height":96},{"x":0,"y":96,"fileNum":4136,"id":17607,"width":96,"height":96},{"x":96,"y":96,"fileNum":4136,"id":17608,"width":96,"height":96},{"x":192,"y":96,"fileNum":4136,"id":17609,"width":96,"height":96},{"x":288,"y":96,"fileNum":4136,"id":17610,"width":96,"height":96},{"x":384,"y":96,"fileNum":4136,"id":17611,"width":96,"height":96},{"x":480,"y":96,"fileNum":4136,"id":17612,"width":96,"height":96},{"x":0,"y":192,"fileNum":4136,"id":17613,"width":96,"height":96},{"x":96,"y":192,"fileNum":4136,"id":17614,"width":96,"height":96},{"x":192,"y":192,"fileNum":4136,"id":17615,"width":96,"height":96},{"x":288,"y":192,"fileNum":4136,"id":17616,"width":96,"height":96},{"x":384,"y":192,"fileNum":4136,"id":17617,"width":96,"height":96},{"x":480,"y":192,"fileNum":4136,"id":17618,"width":96,"height":96},{"x":0,"y":288,"fileNum":4136,"id":17619,"width":96,"height":96},{"x":96,"y":288,"fileNum":4136,"id":17620,"width":96,"height":96},{"x":192,"y":288,"fileNum":4136,"id":17621,"width":96,"height":96},{"x":288,"y":288,"fileNum":4136,"id":17622,"width":96,"height":96},{"x":384,"y":288,"fileNum":4136,"id":17623,"width":96,"height":96},{"x":480,"y":288,"fileNum":4136,"id":17624,"width":96,"height":96},{"x":0,"y":0,"fileNum":4137,"id":17629,"width":96,"height":96},{"x":96,"y":0,"fileNum":4137,"id":17630,"width":96,"height":96},{"x":192,"y":0,"fileNum":4137,"id":17631,"width":96,"height":96},{"x":288,"y":0,"fileNum":4137,"id":17632,"width":96,"height":96},{"x":384,"y":0,"fileNum":4137,"id":17633,"width":96,"height":96},{"x":480,"y":0,"fileNum":4137,"id":17634,"width":96,"height":96},{"x":0,"y":96,"fileNum":4137,"id":17635,"width":96,"height":96},{"x":96,"y":96,"fileNum":4137,"id":17636,"width":96,"height":96},{"x":192,"y":96,"fileNum":4137,"id":17637,"width":96,"height":96},{"x":288,"y":96,"fileNum":4137,"id":17638,"width":96,"height":96},{"x":384,"y":96,"fileNum":4137,"id":17639,"width":96,"height":96},{"x":480,"y":96,"fileNum":4137,"id":17640,"width":96,"height":96},{"x":0,"y":192,"fileNum":4137,"id":17641,"width":96,"height":96},{"x":96,"y":192,"fileNum":4137,"id":17642,"width":96,"height":96},{"x":192,"y":192,"fileNum":4137,"id":17643,"width":96,"height":96},{"x":288,"y":192,"fileNum":4137,"id":17644,"width":96,"height":96},{"x":384,"y":192,"fileNum":4137,"id":17645,"width":96,"height":96},{"x":480,"y":192,"fileNum":4137,"id":17646,"width":96,"height":96},{"x":0,"y":288,"fileNum":4137,"id":17647,"width":96,"height":96},{"x":96,"y":288,"fileNum":4137,"id":17648,"width":96,"height":96},{"x":192,"y":288,"fileNum":4137,"id":17649,"width":96,"height":96},{"x":288,"y":288,"fileNum":4137,"id":17650,"width":96,"height":96},{"x":384,"y":288,"fileNum":4137,"id":17651,"width":96,"height":96},{"x":480,"y":288,"fileNum":4137,"id":17652,"width":96,"height":96},{"x":0,"y":0,"fileNum":412,"id":17657,"width":32,"height":32},{"x":0,"y":0,"fileNum":411,"id":17658,"width":25,"height":45},{"x":25,"y":0,"fileNum":411,"id":17659,"width":25,"height":45},{"x":50,"y":0,"fileNum":411,"id":17660,"width":25,"height":45},{"x":75,"y":0,"fileNum":411,"id":17661,"width":25,"height":45},{"x":100,"y":0,"fileNum":411,"id":17662,"width":25,"height":45},{"x":125,"y":0,"fileNum":411,"id":17663,"width":25,"height":45},{"x":0,"y":45,"fileNum":411,"id":17664,"width":25,"height":45},{"x":25,"y":45,"fileNum":411,"id":17665,"width":25,"height":45},{"x":50,"y":45,"fileNum":411,"id":17666,"width":25,"height":45},{"x":75,"y":45,"fileNum":411,"id":17667,"width":25,"height":45},{"x":100,"y":45,"fileNum":411,"id":17668,"width":25,"height":45},{"x":125,"y":45,"fileNum":411,"id":17669,"width":25,"height":45},{"x":0,"y":90,"fileNum":411,"id":17670,"width":25,"height":45},{"x":25,"y":90,"fileNum":411,"id":17671,"width":25,"height":45},{"x":50,"y":90,"fileNum":411,"id":17672,"width":25,"height":45},{"x":75,"y":90,"fileNum":411,"id":17673,"width":25,"height":45},{"x":100,"y":90,"fileNum":411,"id":17674,"width":25,"height":45},{"x":0,"y":135,"fileNum":411,"id":17675,"width":25,"height":45},{"x":25,"y":135,"fileNum":411,"id":17676,"width":25,"height":45},{"x":50,"y":135,"fileNum":411,"id":17677,"width":25,"height":45},{"x":75,"y":135,"fileNum":411,"id":17678,"width":25,"height":45},{"x":100,"y":135,"fileNum":411,"id":17679,"width":25,"height":45},{"x":0,"y":0,"fileNum":414,"id":17684,"width":32,"height":32},{"x":0,"y":0,"fileNum":413,"id":17685,"width":25,"height":45},{"x":25,"y":0,"fileNum":413,"id":17686,"width":25,"height":45},{"x":50,"y":0,"fileNum":413,"id":17687,"width":25,"height":45},{"x":75,"y":0,"fileNum":413,"id":17688,"width":25,"height":45},{"x":100,"y":0,"fileNum":413,"id":17689,"width":25,"height":45},{"x":125,"y":0,"fileNum":413,"id":17690,"width":25,"height":45},{"x":0,"y":45,"fileNum":413,"id":17691,"width":25,"height":45},{"x":25,"y":45,"fileNum":413,"id":17692,"width":25,"height":45},{"x":50,"y":45,"fileNum":413,"id":17693,"width":25,"height":45},{"x":75,"y":45,"fileNum":413,"id":17694,"width":25,"height":45},{"x":100,"y":45,"fileNum":413,"id":17695,"width":25,"height":45},{"x":125,"y":45,"fileNum":413,"id":17696,"width":25,"height":45},{"x":0,"y":90,"fileNum":413,"id":17697,"width":25,"height":45},{"x":25,"y":90,"fileNum":413,"id":17698,"width":25,"height":45},{"x":50,"y":90,"fileNum":413,"id":17699,"width":25,"height":45},{"x":75,"y":90,"fileNum":413,"id":17700,"width":25,"height":45},{"x":100,"y":90,"fileNum":413,"id":17701,"width":25,"height":45},{"x":0,"y":135,"fileNum":413,"id":17702,"width":25,"height":45},{"x":25,"y":135,"fileNum":413,"id":17703,"width":25,"height":45},{"x":50,"y":135,"fileNum":413,"id":17704,"width":25,"height":45},{"x":75,"y":135,"fileNum":413,"id":17705,"width":25,"height":45},{"x":100,"y":135,"fileNum":413,"id":17706,"width":25,"height":45},{"x":0,"y":0,"fileNum":17000,"id":17711,"width":96,"height":78},{"x":96,"y":0,"fileNum":17000,"id":17712,"width":96,"height":78},{"x":192,"y":0,"fileNum":17000,"id":17713,"width":96,"height":78},{"x":288,"y":0,"fileNum":17000,"id":17714,"width":96,"height":78},{"x":0,"y":78,"fileNum":17000,"id":17715,"width":96,"height":78},{"x":96,"y":78,"fileNum":17000,"id":17716,"width":96,"height":78},{"x":192,"y":78,"fileNum":17000,"id":17717,"width":96,"height":78},{"x":288,"y":78,"fileNum":17000,"id":17718,"width":96,"height":78},{"x":0,"y":156,"fileNum":17000,"id":17719,"width":66,"height":96},{"x":66,"y":156,"fileNum":17000,"id":17720,"width":66,"height":96},{"x":132,"y":156,"fileNum":17000,"id":17721,"width":66,"height":96},{"x":198,"y":156,"fileNum":17000,"id":17722,"width":66,"height":96},{"x":0,"y":267,"fileNum":17000,"id":17723,"width":66,"height":81},{"x":66,"y":267,"fileNum":17000,"id":17724,"width":66,"height":81},{"x":132,"y":267,"fileNum":17000,"id":17725,"width":66,"height":81},{"x":198,"y":267,"fileNum":17000,"id":17726,"width":66,"height":81},{"x":0,"y":0,"fileNum":17001,"id":17731,"width":96,"height":78},{"x":96,"y":0,"fileNum":17001,"id":17732,"width":96,"height":78},{"x":192,"y":0,"fileNum":17001,"id":17733,"width":96,"height":78},{"x":288,"y":0,"fileNum":17001,"id":17734,"width":96,"height":78},{"x":0,"y":78,"fileNum":17001,"id":17735,"width":96,"height":78},{"x":96,"y":78,"fileNum":17001,"id":17736,"width":96,"height":78},{"x":192,"y":78,"fileNum":17001,"id":17737,"width":96,"height":78},{"x":288,"y":78,"fileNum":17001,"id":17738,"width":96,"height":78},{"x":0,"y":156,"fileNum":17001,"id":17739,"width":66,"height":96},{"x":66,"y":156,"fileNum":17001,"id":17740,"width":66,"height":96},{"x":132,"y":156,"fileNum":17001,"id":17741,"width":66,"height":96},{"x":198,"y":156,"fileNum":17001,"id":17742,"width":66,"height":96},{"x":0,"y":267,"fileNum":17001,"id":17743,"width":66,"height":81},{"x":66,"y":267,"fileNum":17001,"id":17744,"width":66,"height":81},{"x":132,"y":267,"fileNum":17001,"id":17745,"width":66,"height":81},{"x":198,"y":267,"fileNum":17001,"id":17746,"width":66,"height":81},{"x":0,"y":0,"fileNum":17004,"id":17751,"width":96,"height":74},{"x":96,"y":0,"fileNum":17004,"id":17752,"width":96,"height":74},{"x":192,"y":0,"fileNum":17004,"id":17753,"width":96,"height":74},{"x":288,"y":0,"fileNum":17004,"id":17754,"width":96,"height":74},{"x":0,"y":74,"fileNum":17004,"id":17755,"width":96,"height":74},{"x":96,"y":74,"fileNum":17004,"id":17756,"width":96,"height":74},{"x":192,"y":74,"fileNum":17004,"id":17757,"width":96,"height":74},{"x":288,"y":74,"fileNum":17004,"id":17758,"width":96,"height":74},{"x":0,"y":145,"fileNum":17004,"id":17759,"width":66,"height":107},{"x":66,"y":145,"fileNum":17004,"id":17760,"width":66,"height":107},{"x":132,"y":145,"fileNum":17004,"id":17761,"width":66,"height":107},{"x":198,"y":145,"fileNum":17004,"id":17762,"width":66,"height":107},{"x":0,"y":253,"fileNum":17004,"id":17763,"width":66,"height":107},{"x":66,"y":253,"fileNum":17004,"id":17764,"width":66,"height":107},{"x":132,"y":253,"fileNum":17004,"id":17765,"width":66,"height":107},{"x":198,"y":253,"fileNum":17004,"id":17766,"width":66,"height":107},{"x":0,"y":0,"fileNum":17005,"id":17771,"width":96,"height":74},{"x":96,"y":0,"fileNum":17005,"id":17772,"width":96,"height":74},{"x":192,"y":0,"fileNum":17005,"id":17773,"width":96,"height":74},{"x":288,"y":0,"fileNum":17005,"id":17774,"width":96,"height":74},{"x":0,"y":74,"fileNum":17005,"id":17775,"width":96,"height":74},{"x":96,"y":74,"fileNum":17005,"id":17776,"width":96,"height":74},{"x":192,"y":74,"fileNum":17005,"id":17777,"width":96,"height":74},{"x":288,"y":74,"fileNum":17005,"id":17778,"width":96,"height":74},{"x":0,"y":145,"fileNum":17005,"id":17779,"width":66,"height":107},{"x":66,"y":145,"fileNum":17005,"id":17780,"width":66,"height":107},{"x":132,"y":145,"fileNum":17005,"id":17781,"width":66,"height":107},{"x":198,"y":145,"fileNum":17005,"id":17782,"width":66,"height":107},{"x":0,"y":253,"fileNum":17005,"id":17783,"width":66,"height":107},{"x":66,"y":253,"fileNum":17005,"id":17784,"width":66,"height":107},{"x":132,"y":253,"fileNum":17005,"id":17785,"width":66,"height":107},{"x":198,"y":253,"fileNum":17005,"id":17786,"width":66,"height":107},{"x":0,"y":0,"fileNum":17002,"id":17791,"width":96,"height":79},{"x":96,"y":0,"fileNum":17002,"id":17792,"width":96,"height":79},{"x":192,"y":0,"fileNum":17002,"id":17793,"width":96,"height":79},{"x":288,"y":0,"fileNum":17002,"id":17794,"width":96,"height":79},{"x":0,"y":79,"fileNum":17002,"id":17795,"width":96,"height":79},{"x":96,"y":79,"fileNum":17002,"id":17796,"width":96,"height":79},{"x":192,"y":79,"fileNum":17002,"id":17797,"width":96,"height":79},{"x":288,"y":79,"fileNum":17002,"id":17798,"width":96,"height":79},{"x":0,"y":158,"fileNum":17002,"id":17799,"width":66,"height":98},{"x":66,"y":158,"fileNum":17002,"id":17800,"width":66,"height":98},{"x":132,"y":158,"fileNum":17002,"id":17801,"width":66,"height":98},{"x":198,"y":158,"fileNum":17002,"id":17802,"width":66,"height":98},{"x":0,"y":255,"fileNum":17002,"id":17803,"width":66,"height":98},{"x":66,"y":255,"fileNum":17002,"id":17804,"width":66,"height":98},{"x":132,"y":255,"fileNum":17002,"id":17805,"width":66,"height":98},{"x":198,"y":255,"fileNum":17002,"id":17806,"width":66,"height":98},{"x":0,"y":0,"fileNum":17003,"id":17811,"width":96,"height":79},{"x":96,"y":0,"fileNum":17003,"id":17812,"width":96,"height":79},{"x":192,"y":0,"fileNum":17003,"id":17813,"width":96,"height":79},{"x":288,"y":0,"fileNum":17003,"id":17814,"width":96,"height":79},{"x":0,"y":79,"fileNum":17003,"id":17815,"width":96,"height":79},{"x":96,"y":79,"fileNum":17003,"id":17816,"width":96,"height":79},{"x":192,"y":79,"fileNum":17003,"id":17817,"width":96,"height":79},{"x":288,"y":79,"fileNum":17003,"id":17818,"width":96,"height":79},{"x":0,"y":158,"fileNum":17003,"id":17819,"width":66,"height":98},{"x":66,"y":158,"fileNum":17003,"id":17820,"width":66,"height":98},{"x":132,"y":158,"fileNum":17003,"id":17821,"width":66,"height":98},{"x":198,"y":158,"fileNum":17003,"id":17822,"width":66,"height":98},{"x":0,"y":255,"fileNum":17003,"id":17823,"width":66,"height":98},{"x":66,"y":255,"fileNum":17003,"id":17824,"width":66,"height":98},{"x":132,"y":255,"fileNum":17003,"id":17825,"width":66,"height":98},{"x":198,"y":255,"fileNum":17003,"id":17826,"width":66,"height":98},{"x":0,"y":0,"fileNum":2203,"id":17831,"width":17,"height":50},{"x":17,"y":0,"fileNum":2203,"id":17832,"width":17,"height":50},{"x":34,"y":0,"fileNum":2203,"id":17833,"width":17,"height":50},{"x":51,"y":0,"fileNum":2203,"id":17834,"width":17,"height":50},{"x":0,"y":0,"fileNum":2204,"id":17835,"width":17,"height":50},{"x":17,"y":0,"fileNum":2204,"id":17836,"width":17,"height":50},{"x":34,"y":0,"fileNum":2204,"id":17837,"width":17,"height":50},{"x":51,"y":0,"fileNum":2204,"id":17838,"width":17,"height":50},{"x":0,"y":0,"fileNum":2205,"id":17839,"width":17,"height":50},{"x":17,"y":0,"fileNum":2205,"id":17840,"width":17,"height":50},{"x":34,"y":0,"fileNum":2205,"id":17841,"width":17,"height":50},{"x":51,"y":0,"fileNum":2205,"id":17842,"width":17,"height":50},{"x":0,"y":0,"fileNum":2206,"id":17843,"width":17,"height":50},{"x":17,"y":0,"fileNum":2206,"id":17844,"width":17,"height":50},{"x":34,"y":0,"fileNum":2206,"id":17845,"width":17,"height":50},{"x":51,"y":0,"fileNum":2206,"id":17846,"width":17,"height":50},{"x":0,"y":0,"fileNum":2207,"id":17847,"width":17,"height":50},{"x":17,"y":0,"fileNum":2207,"id":17848,"width":17,"height":50},{"x":34,"y":0,"fileNum":2207,"id":17849,"width":17,"height":50},{"x":51,"y":0,"fileNum":2207,"id":17850,"width":17,"height":50},{"x":0,"y":0,"fileNum":2208,"id":17851,"width":17,"height":50},{"x":17,"y":0,"fileNum":2208,"id":17852,"width":17,"height":50},{"x":34,"y":0,"fileNum":2208,"id":17853,"width":17,"height":50},{"x":51,"y":0,"fileNum":2208,"id":17854,"width":17,"height":50},{"x":0,"y":0,"fileNum":2209,"id":17855,"width":17,"height":50},{"x":17,"y":0,"fileNum":2209,"id":17856,"width":17,"height":50},{"x":34,"y":0,"fileNum":2209,"id":17857,"width":17,"height":50},{"x":51,"y":0,"fileNum":2209,"id":17858,"width":17,"height":50},{"x":0,"y":0,"fileNum":16069,"id":17859,"width":25,"height":45},{"x":25,"y":0,"fileNum":16069,"id":17860,"width":25,"height":45},{"x":50,"y":0,"fileNum":16069,"id":17861,"width":25,"height":45},{"x":75,"y":0,"fileNum":16069,"id":17862,"width":25,"height":45},{"x":100,"y":0,"fileNum":16069,"id":17863,"width":25,"height":45},{"x":125,"y":0,"fileNum":16069,"id":17864,"width":25,"height":45},{"x":0,"y":45,"fileNum":16069,"id":17865,"width":25,"height":45},{"x":25,"y":45,"fileNum":16069,"id":17866,"width":25,"height":45},{"x":50,"y":45,"fileNum":16069,"id":17867,"width":25,"height":45},{"x":75,"y":45,"fileNum":16069,"id":17868,"width":25,"height":45},{"x":100,"y":45,"fileNum":16069,"id":17869,"width":25,"height":45},{"x":125,"y":45,"fileNum":16069,"id":17870,"width":25,"height":45},{"x":0,"y":90,"fileNum":16069,"id":17871,"width":25,"height":45},{"x":25,"y":90,"fileNum":16069,"id":17872,"width":25,"height":45},{"x":50,"y":90,"fileNum":16069,"id":17873,"width":25,"height":45},{"x":75,"y":90,"fileNum":16069,"id":17874,"width":25,"height":45},{"x":100,"y":90,"fileNum":16069,"id":17875,"width":25,"height":45},{"x":0,"y":135,"fileNum":16069,"id":17876,"width":25,"height":45},{"x":25,"y":135,"fileNum":16069,"id":17877,"width":25,"height":45},{"x":50,"y":135,"fileNum":16069,"id":17878,"width":25,"height":45},{"x":75,"y":135,"fileNum":16069,"id":17879,"width":25,"height":45},{"x":100,"y":135,"fileNum":16069,"id":17880,"width":25,"height":45},{"x":0,"y":0,"fileNum":16070,"id":17885,"width":25,"height":45},{"x":25,"y":0,"fileNum":16070,"id":17886,"width":25,"height":45},{"x":50,"y":0,"fileNum":16070,"id":17887,"width":25,"height":45},{"x":75,"y":0,"fileNum":16070,"id":17888,"width":25,"height":45},{"x":100,"y":0,"fileNum":16070,"id":17889,"width":25,"height":45},{"x":125,"y":0,"fileNum":16070,"id":17890,"width":25,"height":45},{"x":0,"y":45,"fileNum":16070,"id":17891,"width":25,"height":45},{"x":25,"y":45,"fileNum":16070,"id":17892,"width":25,"height":45},{"x":50,"y":45,"fileNum":16070,"id":17893,"width":25,"height":45},{"x":75,"y":45,"fileNum":16070,"id":17894,"width":25,"height":45},{"x":100,"y":45,"fileNum":16070,"id":17895,"width":25,"height":45},{"x":125,"y":45,"fileNum":16070,"id":17896,"width":25,"height":45},{"x":0,"y":90,"fileNum":16070,"id":17897,"width":25,"height":45},{"x":25,"y":90,"fileNum":16070,"id":17898,"width":25,"height":45},{"x":50,"y":90,"fileNum":16070,"id":17899,"width":25,"height":45},{"x":75,"y":90,"fileNum":16070,"id":17900,"width":25,"height":45},{"x":100,"y":90,"fileNum":16070,"id":17901,"width":25,"height":45},{"x":0,"y":135,"fileNum":16070,"id":17902,"width":25,"height":45},{"x":25,"y":135,"fileNum":16070,"id":17903,"width":25,"height":45},{"x":50,"y":135,"fileNum":16070,"id":17904,"width":25,"height":45},{"x":75,"y":135,"fileNum":16070,"id":17905,"width":25,"height":45},{"x":100,"y":135,"fileNum":16070,"id":17906,"width":25,"height":45},{"x":0,"y":0,"fileNum":2210,"id":17911,"width":17,"height":50},{"x":17,"y":0,"fileNum":2210,"id":17912,"width":17,"height":50},{"x":34,"y":0,"fileNum":2210,"id":17913,"width":17,"height":50},{"x":51,"y":0,"fileNum":2210,"id":17914,"width":17,"height":50},{"x":0,"y":0,"fileNum":2211,"id":17915,"width":17,"height":50},{"x":17,"y":0,"fileNum":2211,"id":17916,"width":17,"height":50},{"x":34,"y":0,"fileNum":2211,"id":17917,"width":17,"height":50},{"x":51,"y":0,"fileNum":2211,"id":17918,"width":17,"height":50},{"x":0,"y":0,"fileNum":8105,"id":17921,"width":125,"height":140},{"x":0,"y":0,"fileNum":8099,"id":17922,"width":70,"height":120},{"x":0,"y":0,"fileNum":8100,"id":17923,"width":17,"height":105},{"x":17,"y":0,"fileNum":8100,"id":17924,"width":16,"height":105},{"x":0,"y":0,"fileNum":8101,"id":17925,"width":32,"height":32},{"x":0,"y":0,"fileNum":8102,"id":17926,"width":32,"height":64},{"x":0,"y":0,"fileNum":8103,"id":17927,"width":32,"height":64},{"x":0,"y":0,"fileNum":8104,"id":17928,"width":32,"height":32},{"x":0,"y":0,"fileNum":8093,"id":17929,"width":32,"height":32},{"x":0,"y":0,"fileNum":8094,"id":17930,"width":32,"height":32},{"x":0,"y":0,"fileNum":8095,"id":17931,"width":32,"height":32},{"x":0,"y":0,"fileNum":8096,"id":17932,"width":32,"height":32},{"x":0,"y":0,"fileNum":8097,"id":17933,"width":32,"height":32},{"x":0,"y":0,"fileNum":8098,"id":17934,"width":32,"height":32},{"x":0,"y":0,"fileNum":8087,"id":17935,"width":32,"height":32},{"x":0,"y":0,"fileNum":8088,"id":17936,"width":32,"height":32},{"x":0,"y":0,"fileNum":8089,"id":17937,"width":32,"height":32},{"x":0,"y":0,"fileNum":8090,"id":17938,"width":32,"height":32},{"x":0,"y":0,"fileNum":8091,"id":17939,"width":32,"height":32},{"x":0,"y":0,"fileNum":8092,"id":17940,"width":32,"height":32},{"x":0,"y":0,"fileNum":8086,"id":17941,"width":32,"height":32},{"x":0,"y":0,"fileNum":8083,"id":17942,"width":36,"height":34},{"x":0,"y":0,"fileNum":8081,"id":17943,"width":24,"height":56},{"x":0,"y":0,"fileNum":8082,"id":17944,"width":49,"height":49},{"x":0,"y":0,"fileNum":8084,"id":17945,"width":108,"height":61},{"x":0,"y":0,"fileNum":8085,"id":17946,"width":78,"height":51},{"x":0,"y":0,"fileNum":9003,"id":17947,"width":190,"height":292},{"x":0,"y":0,"fileNum":9004,"id":17948,"width":190,"height":292},{"x":0,"y":0,"fileNum":9001,"id":17949,"width":190,"height":292},{"x":0,"y":0,"fileNum":9002,"id":17950,"width":190,"height":292},{"x":0,"y":0,"fileNum":8077,"id":17951,"width":221,"height":89},{"x":0,"y":0,"fileNum":8078,"id":17952,"width":234,"height":264},{"x":0,"y":0,"fileNum":8079,"id":17953,"width":250,"height":254},{"x":0,"y":0,"fileNum":8080,"id":17954,"width":256,"height":256},{"x":0,"y":0,"fileNum":8076,"id":17955,"width":122,"height":185},{"x":0,"y":0,"fileNum":8075,"id":17956,"width":64,"height":128},{"x":0,"y":0,"fileNum":8074,"id":17957,"width":128,"height":128},{"x":0,"y":0,"fileNum":8073,"id":17958,"width":128,"height":128},{"x":0,"y":0,"fileNum":8072,"id":17959,"width":128,"height":128},{"x":0,"y":0,"fileNum":8071,"id":17960,"width":128,"height":128},{"x":0,"y":0,"fileNum":8070,"id":17961,"width":128,"height":128},{"x":0,"y":0,"fileNum":8069,"id":17962,"width":128,"height":128},{"x":0,"y":0,"fileNum":8068,"id":17963,"width":128,"height":128},{"x":0,"y":0,"fileNum":8067,"id":17964,"width":128,"height":128},{"x":0,"y":0,"fileNum":8066,"id":17965,"width":128,"height":128},{"x":0,"y":0,"fileNum":8065,"id":17966,"width":128,"height":128},{"x":0,"y":0,"fileNum":8064,"id":17967,"width":128,"height":128},{"x":0,"y":0,"fileNum":8063,"id":17968,"width":128,"height":128},{"x":0,"y":0,"fileNum":8062,"id":17969,"width":128,"height":128},{"x":0,"y":0,"fileNum":8061,"id":17970,"width":128,"height":128},{"x":0,"y":0,"fileNum":8059,"id":17971,"width":128,"height":128},{"x":0,"y":0,"fileNum":8057,"id":17972,"width":128,"height":128},{"x":0,"y":0,"fileNum":8055,"id":17973,"width":128,"height":128},{"x":0,"y":0,"fileNum":8053,"id":17974,"width":128,"height":128},{"x":0,"y":0,"fileNum":8054,"id":17975,"width":32,"height":128},{"x":0,"y":0,"fileNum":8056,"id":17976,"width":32,"height":128},{"x":0,"y":0,"fileNum":8058,"id":17977,"width":32,"height":128},{"x":0,"y":0,"fileNum":8060,"id":17978,"width":32,"height":128},{"x":0,"y":0,"fileNum":8037,"id":17979,"width":32,"height":32},{"x":32,"y":0,"fileNum":8037,"id":17980,"width":32,"height":32},{"x":0,"y":32,"fileNum":8037,"id":17981,"width":32,"height":32},{"x":32,"y":32,"fileNum":8037,"id":17982,"width":32,"height":32},{"x":0,"y":0,"fileNum":8038,"id":17983,"width":32,"height":32},{"x":32,"y":0,"fileNum":8038,"id":17984,"width":32,"height":32},{"x":0,"y":32,"fileNum":8038,"id":17985,"width":32,"height":32},{"x":32,"y":32,"fileNum":8038,"id":17986,"width":32,"height":32},{"x":0,"y":0,"fileNum":8039,"id":17987,"width":32,"height":32},{"x":32,"y":0,"fileNum":8039,"id":17988,"width":32,"height":32},{"x":0,"y":32,"fileNum":8039,"id":17989,"width":32,"height":32},{"x":32,"y":32,"fileNum":8039,"id":17990,"width":32,"height":32},{"x":0,"y":0,"fileNum":8040,"id":17991,"width":32,"height":32},{"x":32,"y":0,"fileNum":8040,"id":17992,"width":32,"height":32},{"x":0,"y":32,"fileNum":8040,"id":17993,"width":32,"height":32},{"x":32,"y":32,"fileNum":8040,"id":17994,"width":32,"height":32},{"x":0,"y":0,"fileNum":8041,"id":17995,"width":32,"height":32},{"x":32,"y":0,"fileNum":8041,"id":17996,"width":32,"height":32},{"x":0,"y":32,"fileNum":8041,"id":17997,"width":32,"height":32},{"x":32,"y":32,"fileNum":8041,"id":17998,"width":32,"height":32},{"x":0,"y":0,"fileNum":8042,"id":17999,"width":32,"height":32},{"x":32,"y":0,"fileNum":8042,"id":18000,"width":32,"height":32},{"x":0,"y":32,"fileNum":8042,"id":18001,"width":32,"height":32},{"x":32,"y":32,"fileNum":8042,"id":18002,"width":32,"height":32},{"x":0,"y":0,"fileNum":8043,"id":18003,"width":32,"height":32},{"x":32,"y":0,"fileNum":8043,"id":18004,"width":32,"height":32},{"x":0,"y":32,"fileNum":8043,"id":18005,"width":32,"height":32},{"x":32,"y":32,"fileNum":8043,"id":18006,"width":32,"height":32},{"x":0,"y":0,"fileNum":8044,"id":18007,"width":32,"height":32},{"x":32,"y":0,"fileNum":8044,"id":18008,"width":32,"height":32},{"x":0,"y":32,"fileNum":8044,"id":18009,"width":32,"height":32},{"x":32,"y":32,"fileNum":8044,"id":18010,"width":32,"height":32},{"x":0,"y":0,"fileNum":8045,"id":18011,"width":32,"height":32},{"x":32,"y":0,"fileNum":8045,"id":18012,"width":32,"height":32},{"x":0,"y":32,"fileNum":8045,"id":18013,"width":32,"height":32},{"x":32,"y":32,"fileNum":8045,"id":18014,"width":32,"height":32},{"x":0,"y":0,"fileNum":8046,"id":18015,"width":32,"height":32},{"x":32,"y":0,"fileNum":8046,"id":18016,"width":32,"height":32},{"x":0,"y":32,"fileNum":8046,"id":18017,"width":32,"height":32},{"x":32,"y":32,"fileNum":8046,"id":18018,"width":32,"height":32},{"x":0,"y":0,"fileNum":8047,"id":18019,"width":32,"height":32},{"x":32,"y":0,"fileNum":8047,"id":18020,"width":32,"height":32},{"x":0,"y":32,"fileNum":8047,"id":18021,"width":32,"height":32},{"x":32,"y":32,"fileNum":8047,"id":18022,"width":32,"height":32},{"x":0,"y":0,"fileNum":8048,"id":18023,"width":32,"height":32},{"x":32,"y":0,"fileNum":8048,"id":18024,"width":32,"height":32},{"x":0,"y":32,"fileNum":8048,"id":18025,"width":32,"height":32},{"x":32,"y":32,"fileNum":8048,"id":18026,"width":32,"height":32},{"x":0,"y":0,"fileNum":8049,"id":18027,"width":32,"height":32},{"x":32,"y":0,"fileNum":8049,"id":18028,"width":32,"height":32},{"x":0,"y":32,"fileNum":8049,"id":18029,"width":32,"height":32},{"x":32,"y":32,"fileNum":8049,"id":18030,"width":32,"height":32},{"x":0,"y":0,"fileNum":8050,"id":18031,"width":32,"height":32},{"x":32,"y":0,"fileNum":8050,"id":18032,"width":32,"height":32},{"x":0,"y":32,"fileNum":8050,"id":18033,"width":32,"height":32},{"x":32,"y":32,"fileNum":8050,"id":18034,"width":32,"height":32},{"x":0,"y":0,"fileNum":8051,"id":18035,"width":32,"height":32},{"x":32,"y":0,"fileNum":8051,"id":18036,"width":32,"height":32},{"x":0,"y":32,"fileNum":8051,"id":18037,"width":32,"height":32},{"x":32,"y":32,"fileNum":8051,"id":18038,"width":32,"height":32},{"x":0,"y":0,"fileNum":8052,"id":18039,"width":32,"height":32},{"x":32,"y":0,"fileNum":8052,"id":18040,"width":32,"height":32},{"x":0,"y":32,"fileNum":8052,"id":18041,"width":32,"height":32},{"x":32,"y":32,"fileNum":8052,"id":18042,"width":32,"height":32},{"x":0,"y":0,"fileNum":8106,"id":18043,"width":128,"height":128},{"x":0,"y":0,"fileNum":8107,"id":18044,"width":32,"height":32},{"x":0,"y":0,"fileNum":8108,"id":18045,"width":64,"height":64},{"x":0,"y":0,"fileNum":8109,"id":18046,"width":88,"height":100},{"x":0,"y":0,"fileNum":8110,"id":18047,"width":64,"height":64},{"x":0,"y":0,"fileNum":12021,"id":18048,"width":32,"height":32},{"x":32,"y":0,"fileNum":12021,"id":18049,"width":32,"height":32},{"x":64,"y":0,"fileNum":12021,"id":18050,"width":32,"height":32},{"x":96,"y":0,"fileNum":12021,"id":18051,"width":32,"height":32},{"x":0,"y":32,"fileNum":12021,"id":18052,"width":32,"height":32},{"x":32,"y":32,"fileNum":12021,"id":18053,"width":32,"height":32},{"x":64,"y":32,"fileNum":12021,"id":18054,"width":32,"height":32},{"x":96,"y":32,"fileNum":12021,"id":18055,"width":32,"height":32},{"x":0,"y":64,"fileNum":12021,"id":18056,"width":32,"height":32},{"x":32,"y":64,"fileNum":12021,"id":18057,"width":32,"height":32},{"x":64,"y":64,"fileNum":12021,"id":18058,"width":32,"height":32},{"x":96,"y":64,"fileNum":12021,"id":18059,"width":32,"height":32},{"x":0,"y":96,"fileNum":12021,"id":18060,"width":32,"height":32},{"x":32,"y":96,"fileNum":12021,"id":18061,"width":32,"height":32},{"x":64,"y":96,"fileNum":12021,"id":18062,"width":32,"height":32},{"x":96,"y":96,"fileNum":12021,"id":18063,"width":32,"height":32},{"x":0,"y":0,"fileNum":12022,"id":18064,"width":32,"height":32},{"x":32,"y":0,"fileNum":12022,"id":18065,"width":32,"height":32},{"x":64,"y":0,"fileNum":12022,"id":18066,"width":32,"height":32},{"x":96,"y":0,"fileNum":12022,"id":18067,"width":32,"height":32},{"x":0,"y":32,"fileNum":12022,"id":18068,"width":32,"height":32},{"x":32,"y":32,"fileNum":12022,"id":18069,"width":32,"height":32},{"x":64,"y":32,"fileNum":12022,"id":18070,"width":32,"height":32},{"x":96,"y":32,"fileNum":12022,"id":18071,"width":32,"height":32},{"x":0,"y":64,"fileNum":12022,"id":18072,"width":32,"height":32},{"x":32,"y":64,"fileNum":12022,"id":18073,"width":32,"height":32},{"x":64,"y":64,"fileNum":12022,"id":18074,"width":32,"height":32},{"x":96,"y":64,"fileNum":12022,"id":18075,"width":32,"height":32},{"x":0,"y":96,"fileNum":12022,"id":18076,"width":32,"height":32},{"x":32,"y":96,"fileNum":12022,"id":18077,"width":32,"height":32},{"x":64,"y":96,"fileNum":12022,"id":18078,"width":32,"height":32},{"x":96,"y":96,"fileNum":12022,"id":18079,"width":32,"height":32},{"x":0,"y":0,"fileNum":12023,"id":18080,"width":32,"height":32},{"x":32,"y":0,"fileNum":12023,"id":18081,"width":32,"height":32},{"x":64,"y":0,"fileNum":12023,"id":18082,"width":32,"height":32},{"x":96,"y":0,"fileNum":12023,"id":18083,"width":32,"height":32},{"x":0,"y":32,"fileNum":12023,"id":18084,"width":32,"height":32},{"x":32,"y":32,"fileNum":12023,"id":18085,"width":32,"height":32},{"x":64,"y":32,"fileNum":12023,"id":18086,"width":32,"height":32},{"x":96,"y":32,"fileNum":12023,"id":18087,"width":32,"height":32},{"x":0,"y":64,"fileNum":12023,"id":18088,"width":32,"height":32},{"x":32,"y":64,"fileNum":12023,"id":18089,"width":32,"height":32},{"x":64,"y":64,"fileNum":12023,"id":18090,"width":32,"height":32},{"x":96,"y":64,"fileNum":12023,"id":18091,"width":32,"height":32},{"x":0,"y":96,"fileNum":12023,"id":18092,"width":32,"height":32},{"x":32,"y":96,"fileNum":12023,"id":18093,"width":32,"height":32},{"x":64,"y":96,"fileNum":12023,"id":18094,"width":32,"height":32},{"x":96,"y":96,"fileNum":12023,"id":18095,"width":32,"height":32},{"x":0,"y":0,"fileNum":12024,"id":18096,"width":32,"height":32},{"x":32,"y":0,"fileNum":12024,"id":18097,"width":32,"height":32},{"x":64,"y":0,"fileNum":12024,"id":18098,"width":32,"height":32},{"x":96,"y":0,"fileNum":12024,"id":18099,"width":32,"height":32},{"x":0,"y":32,"fileNum":12024,"id":18100,"width":32,"height":32},{"x":32,"y":32,"fileNum":12024,"id":18101,"width":32,"height":32},{"x":64,"y":32,"fileNum":12024,"id":18102,"width":32,"height":32},{"x":96,"y":32,"fileNum":12024,"id":18103,"width":32,"height":32},{"x":0,"y":64,"fileNum":12024,"id":18104,"width":32,"height":32},{"x":32,"y":64,"fileNum":12024,"id":18105,"width":32,"height":32},{"x":64,"y":64,"fileNum":12024,"id":18106,"width":32,"height":32},{"x":96,"y":64,"fileNum":12024,"id":18107,"width":32,"height":32},{"x":0,"y":96,"fileNum":12024,"id":18108,"width":32,"height":32},{"x":32,"y":96,"fileNum":12024,"id":18109,"width":32,"height":32},{"x":64,"y":96,"fileNum":12024,"id":18110,"width":32,"height":32},{"x":96,"y":96,"fileNum":12024,"id":18111,"width":32,"height":32},{"x":0,"y":0,"fileNum":12025,"id":18112,"width":32,"height":32},{"x":32,"y":0,"fileNum":12025,"id":18113,"width":32,"height":32},{"x":64,"y":0,"fileNum":12025,"id":18114,"width":32,"height":32},{"x":96,"y":0,"fileNum":12025,"id":18115,"width":32,"height":32},{"x":0,"y":32,"fileNum":12025,"id":18116,"width":32,"height":32},{"x":32,"y":32,"fileNum":12025,"id":18117,"width":32,"height":32},{"x":64,"y":32,"fileNum":12025,"id":18118,"width":32,"height":32},{"x":96,"y":32,"fileNum":12025,"id":18119,"width":32,"height":32},{"x":0,"y":64,"fileNum":12025,"id":18120,"width":32,"height":32},{"x":32,"y":64,"fileNum":12025,"id":18121,"width":32,"height":32},{"x":64,"y":64,"fileNum":12025,"id":18122,"width":32,"height":32},{"x":96,"y":64,"fileNum":12025,"id":18123,"width":32,"height":32},{"x":0,"y":96,"fileNum":12025,"id":18124,"width":32,"height":32},{"x":32,"y":96,"fileNum":12025,"id":18125,"width":32,"height":32},{"x":64,"y":96,"fileNum":12025,"id":18126,"width":32,"height":32},{"x":96,"y":96,"fileNum":12025,"id":18127,"width":32,"height":32},{"x":0,"y":0,"fileNum":12026,"id":18128,"width":64,"height":64},{"x":64,"y":0,"fileNum":12026,"id":18129,"width":64,"height":64},{"x":0,"y":64,"fileNum":12026,"id":18130,"width":64,"height":64},{"x":64,"y":64,"fileNum":12026,"id":18131,"width":64,"height":64},{"x":0,"y":0,"fileNum":12027,"id":18132,"width":64,"height":64},{"x":64,"y":0,"fileNum":12027,"id":18133,"width":64,"height":64},{"x":0,"y":64,"fileNum":12027,"id":18134,"width":64,"height":64},{"x":64,"y":64,"fileNum":12027,"id":18135,"width":64,"height":64},{"x":0,"y":0,"fileNum":12028,"id":18136,"width":32,"height":32},{"x":32,"y":0,"fileNum":12028,"id":18137,"width":32,"height":32},{"x":64,"y":0,"fileNum":12028,"id":18138,"width":32,"height":32},{"x":96,"y":0,"fileNum":12028,"id":18139,"width":32,"height":32},{"x":0,"y":32,"fileNum":12028,"id":18140,"width":32,"height":32},{"x":32,"y":32,"fileNum":12028,"id":18141,"width":32,"height":32},{"x":64,"y":32,"fileNum":12028,"id":18142,"width":32,"height":32},{"x":96,"y":32,"fileNum":12028,"id":18143,"width":32,"height":32},{"x":0,"y":64,"fileNum":12028,"id":18144,"width":32,"height":32},{"x":32,"y":64,"fileNum":12028,"id":18145,"width":32,"height":32},{"x":64,"y":64,"fileNum":12028,"id":18146,"width":32,"height":32},{"x":96,"y":64,"fileNum":12028,"id":18147,"width":32,"height":32},{"x":0,"y":96,"fileNum":12028,"id":18148,"width":32,"height":32},{"x":32,"y":96,"fileNum":12028,"id":18149,"width":32,"height":32},{"x":64,"y":96,"fileNum":12028,"id":18150,"width":32,"height":32},{"x":96,"y":96,"fileNum":12028,"id":18151,"width":32,"height":32},{"x":0,"y":0,"fileNum":12029,"id":18152,"width":64,"height":64},{"x":64,"y":0,"fileNum":12029,"id":18153,"width":64,"height":64},{"x":0,"y":64,"fileNum":12029,"id":18154,"width":64,"height":64},{"x":64,"y":64,"fileNum":12029,"id":18155,"width":64,"height":64},{"x":0,"y":0,"fileNum":12030,"id":18156,"width":64,"height":64},{"x":64,"y":0,"fileNum":12030,"id":18157,"width":64,"height":64},{"x":0,"y":64,"fileNum":12030,"id":18158,"width":64,"height":64},{"x":64,"y":64,"fileNum":12030,"id":18159,"width":64,"height":64},{"x":0,"y":0,"fileNum":4003,"id":18160,"width":57,"height":99},{"x":57,"y":0,"fileNum":4003,"id":18161,"width":57,"height":99},{"x":114,"y":0,"fileNum":4003,"id":18162,"width":57,"height":99},{"x":171,"y":0,"fileNum":4003,"id":18163,"width":57,"height":99},{"x":228,"y":0,"fileNum":4003,"id":18164,"width":57,"height":99},{"x":285,"y":0,"fileNum":4003,"id":18165,"width":57,"height":99},{"x":0,"y":99,"fileNum":4003,"id":18166,"width":57,"height":99},{"x":57,"y":99,"fileNum":4003,"id":18167,"width":57,"height":99},{"x":114,"y":99,"fileNum":4003,"id":18168,"width":57,"height":99},{"x":171,"y":99,"fileNum":4003,"id":18169,"width":57,"height":99},{"x":228,"y":99,"fileNum":4003,"id":18170,"width":57,"height":99},{"x":285,"y":99,"fileNum":4003,"id":18171,"width":57,"height":99},{"x":0,"y":198,"fileNum":4003,"id":18172,"width":57,"height":99},{"x":57,"y":198,"fileNum":4003,"id":18173,"width":57,"height":99},{"x":114,"y":198,"fileNum":4003,"id":18174,"width":57,"height":99},{"x":171,"y":198,"fileNum":4003,"id":18175,"width":57,"height":99},{"x":228,"y":198,"fileNum":4003,"id":18176,"width":57,"height":99},{"x":0,"y":297,"fileNum":4003,"id":18177,"width":57,"height":99},{"x":57,"y":297,"fileNum":4003,"id":18178,"width":57,"height":99},{"x":114,"y":297,"fileNum":4003,"id":18179,"width":57,"height":99},{"x":171,"y":297,"fileNum":4003,"id":18180,"width":57,"height":99},{"x":228,"y":297,"fileNum":4003,"id":18181,"width":57,"height":99},{"x":0,"y":0,"fileNum":3065,"id":18186,"width":64,"height":64},{"x":64,"y":0,"fileNum":3065,"id":18187,"width":64,"height":64},{"x":128,"y":0,"fileNum":3065,"id":18188,"width":64,"height":64},{"x":192,"y":0,"fileNum":3065,"id":18189,"width":64,"height":64},{"x":256,"y":0,"fileNum":3065,"id":18190,"width":64,"height":64},{"x":0,"y":0,"fileNum":4004,"id":18192,"width":130,"height":166},{"x":130,"y":0,"fileNum":4004,"id":18193,"width":130,"height":166},{"x":260,"y":0,"fileNum":4004,"id":18194,"width":130,"height":166},{"x":390,"y":0,"fileNum":4004,"id":18195,"width":130,"height":166},{"x":0,"y":166,"fileNum":4004,"id":18196,"width":130,"height":166},{"x":130,"y":166,"fileNum":4004,"id":18197,"width":130,"height":166},{"x":260,"y":166,"fileNum":4004,"id":18198,"width":130,"height":166},{"x":390,"y":166,"fileNum":4004,"id":18199,"width":130,"height":166},{"x":0,"y":332,"fileNum":4004,"id":18200,"width":130,"height":166},{"x":130,"y":332,"fileNum":4004,"id":18201,"width":130,"height":166},{"x":260,"y":332,"fileNum":4004,"id":18202,"width":130,"height":166},{"x":390,"y":332,"fileNum":4004,"id":18203,"width":130,"height":166},{"x":0,"y":498,"fileNum":4004,"id":18204,"width":130,"height":166},{"x":130,"y":498,"fileNum":4004,"id":18205,"width":130,"height":166},{"x":260,"y":498,"fileNum":4004,"id":18206,"width":130,"height":166},{"x":390,"y":498,"fileNum":4004,"id":18207,"width":130,"height":166},{"x":0,"y":0,"fileNum":4005,"id":18212,"width":53,"height":35},{"x":53,"y":0,"fileNum":4005,"id":18213,"width":53,"height":35},{"x":106,"y":0,"fileNum":4005,"id":18214,"width":53,"height":35},{"x":159,"y":0,"fileNum":4005,"id":18215,"width":53,"height":35},{"x":0,"y":35,"fileNum":4005,"id":18216,"width":53,"height":35},{"x":53,"y":35,"fileNum":4005,"id":18217,"width":53,"height":35},{"x":106,"y":35,"fileNum":4005,"id":18218,"width":53,"height":35},{"x":159,"y":35,"fileNum":4005,"id":18219,"width":53,"height":35},{"x":0,"y":70,"fileNum":4005,"id":18220,"width":53,"height":35},{"x":53,"y":70,"fileNum":4005,"id":18221,"width":53,"height":35},{"x":106,"y":70,"fileNum":4005,"id":18222,"width":53,"height":35},{"x":159,"y":70,"fileNum":4005,"id":18223,"width":53,"height":35},{"x":0,"y":105,"fileNum":4005,"id":18224,"width":53,"height":35},{"x":53,"y":105,"fileNum":4005,"id":18225,"width":53,"height":35},{"x":106,"y":105,"fileNum":4005,"id":18226,"width":53,"height":35},{"x":159,"y":105,"fileNum":4005,"id":18227,"width":53,"height":35},{"x":0,"y":0,"fileNum":4000,"id":18232,"width":150,"height":140},{"x":150,"y":0,"fileNum":4000,"id":18233,"width":150,"height":140},{"x":300,"y":0,"fileNum":4000,"id":18234,"width":150,"height":140},{"x":450,"y":0,"fileNum":4000,"id":18235,"width":150,"height":140},{"x":600,"y":0,"fileNum":4000,"id":18236,"width":150,"height":140},{"x":750,"y":0,"fileNum":4000,"id":18237,"width":150,"height":140},{"x":0,"y":140,"fileNum":4000,"id":18238,"width":150,"height":140},{"x":150,"y":140,"fileNum":4000,"id":18239,"width":150,"height":140},{"x":300,"y":140,"fileNum":4000,"id":18240,"width":150,"height":140},{"x":450,"y":140,"fileNum":4000,"id":18241,"width":150,"height":140},{"x":600,"y":140,"fileNum":4000,"id":18242,"width":150,"height":140},{"x":750,"y":140,"fileNum":4000,"id":18243,"width":150,"height":140},{"x":0,"y":280,"fileNum":4000,"id":18244,"width":150,"height":140},{"x":150,"y":280,"fileNum":4000,"id":18245,"width":150,"height":140},{"x":300,"y":280,"fileNum":4000,"id":18246,"width":150,"height":140},{"x":450,"y":280,"fileNum":4000,"id":18247,"width":150,"height":140},{"x":600,"y":280,"fileNum":4000,"id":18248,"width":150,"height":140},{"x":750,"y":280,"fileNum":4000,"id":18249,"width":150,"height":140},{"x":0,"y":420,"fileNum":4000,"id":18250,"width":150,"height":140},{"x":150,"y":420,"fileNum":4000,"id":18251,"width":150,"height":140},{"x":300,"y":420,"fileNum":4000,"id":18252,"width":150,"height":140},{"x":450,"y":420,"fileNum":4000,"id":18253,"width":150,"height":140},{"x":600,"y":420,"fileNum":4000,"id":18254,"width":150,"height":140},{"x":750,"y":420,"fileNum":4000,"id":18255,"width":150,"height":140},{"x":0,"y":0,"fileNum":8014,"id":18260,"width":128,"height":128},{"x":128,"y":0,"fileNum":8014,"id":18261,"width":128,"height":128},{"x":0,"y":128,"fileNum":8014,"id":18262,"width":128,"height":128},{"x":128,"y":128,"fileNum":8014,"id":18263,"width":128,"height":128},{"x":0,"y":0,"fileNum":8015,"id":18264,"width":128,"height":128},{"x":128,"y":0,"fileNum":8015,"id":18265,"width":128,"height":128},{"x":0,"y":128,"fileNum":8015,"id":18266,"width":128,"height":128},{"x":128,"y":128,"fileNum":8015,"id":18267,"width":128,"height":128},{"x":0,"y":0,"fileNum":8016,"id":18268,"width":73,"height":302},{"x":0,"y":0,"fileNum":8017,"id":18269,"width":145,"height":285},{"x":0,"y":0,"fileNum":8018,"id":18270,"width":79,"height":184},{"x":0,"y":0,"fileNum":8019,"id":18271,"width":100,"height":81},{"x":100,"y":0,"fileNum":8019,"id":18272,"width":100,"height":81},{"x":200,"y":0,"fileNum":8019,"id":18273,"width":100,"height":81},{"x":0,"y":0,"fileNum":8020,"id":18275,"width":140,"height":55},{"x":0,"y":0,"fileNum":8021,"id":18276,"width":100,"height":140},{"x":0,"y":0,"fileNum":4001,"id":18277,"width":184,"height":166},{"x":184,"y":0,"fileNum":4001,"id":18278,"width":184,"height":166},{"x":368,"y":0,"fileNum":4001,"id":18279,"width":184,"height":166},{"x":0,"y":166,"fileNum":4001,"id":18280,"width":184,"height":166},{"x":184,"y":166,"fileNum":4001,"id":18281,"width":184,"height":166},{"x":368,"y":166,"fileNum":4001,"id":18282,"width":184,"height":166},{"x":0,"y":332,"fileNum":4001,"id":18283,"width":184,"height":166},{"x":184,"y":332,"fileNum":4001,"id":18284,"width":184,"height":166},{"x":368,"y":332,"fileNum":4001,"id":18285,"width":184,"height":166},{"x":0,"y":498,"fileNum":4001,"id":18286,"width":184,"height":166},{"x":184,"y":498,"fileNum":4001,"id":18287,"width":184,"height":166},{"x":368,"y":498,"fileNum":4001,"id":18288,"width":184,"height":166},{"x":0,"y":0,"fileNum":107,"id":18293,"width":25,"height":45},{"x":25,"y":0,"fileNum":107,"id":18294,"width":25,"height":45},{"x":50,"y":0,"fileNum":107,"id":18295,"width":25,"height":45},{"x":75,"y":0,"fileNum":107,"id":18296,"width":25,"height":45},{"x":100,"y":0,"fileNum":107,"id":18297,"width":25,"height":45},{"x":125,"y":0,"fileNum":107,"id":18298,"width":25,"height":45},{"x":0,"y":45,"fileNum":107,"id":18299,"width":25,"height":45},{"x":25,"y":45,"fileNum":107,"id":18300,"width":25,"height":45},{"x":50,"y":45,"fileNum":107,"id":18301,"width":25,"height":45},{"x":75,"y":45,"fileNum":107,"id":18302,"width":25,"height":45},{"x":100,"y":45,"fileNum":107,"id":18303,"width":25,"height":45},{"x":125,"y":45,"fileNum":107,"id":18304,"width":25,"height":45},{"x":0,"y":90,"fileNum":107,"id":18305,"width":25,"height":45},{"x":25,"y":90,"fileNum":107,"id":18306,"width":25,"height":45},{"x":50,"y":90,"fileNum":107,"id":18307,"width":25,"height":45},{"x":75,"y":90,"fileNum":107,"id":18308,"width":25,"height":45},{"x":100,"y":90,"fileNum":107,"id":18309,"width":25,"height":45},{"x":0,"y":135,"fileNum":107,"id":18310,"width":25,"height":45},{"x":25,"y":135,"fileNum":107,"id":18311,"width":25,"height":45},{"x":50,"y":135,"fileNum":107,"id":18312,"width":25,"height":45},{"x":75,"y":135,"fileNum":107,"id":18313,"width":25,"height":45},{"x":100,"y":135,"fileNum":107,"id":18314,"width":25,"height":45},{"x":0,"y":0,"fileNum":4048,"id":18319,"width":25,"height":58},{"x":25,"y":0,"fileNum":4048,"id":18320,"width":25,"height":58},{"x":50,"y":0,"fileNum":4048,"id":18321,"width":25,"height":58},{"x":75,"y":0,"fileNum":4048,"id":18322,"width":25,"height":58},{"x":100,"y":0,"fileNum":4048,"id":18323,"width":25,"height":58},{"x":125,"y":0,"fileNum":4048,"id":18324,"width":25,"height":58},{"x":0,"y":58,"fileNum":4048,"id":18325,"width":25,"height":58},{"x":25,"y":58,"fileNum":4048,"id":18326,"width":25,"height":58},{"x":50,"y":58,"fileNum":4048,"id":18327,"width":25,"height":58},{"x":75,"y":58,"fileNum":4048,"id":18328,"width":25,"height":58},{"x":100,"y":58,"fileNum":4048,"id":18329,"width":25,"height":58},{"x":125,"y":58,"fileNum":4048,"id":18330,"width":25,"height":58},{"x":0,"y":116,"fileNum":4048,"id":18331,"width":25,"height":58},{"x":25,"y":116,"fileNum":4048,"id":18332,"width":25,"height":58},{"x":50,"y":116,"fileNum":4048,"id":18333,"width":25,"height":58},{"x":75,"y":116,"fileNum":4048,"id":18334,"width":25,"height":58},{"x":100,"y":116,"fileNum":4048,"id":18335,"width":25,"height":58},{"x":0,"y":174,"fileNum":4048,"id":18336,"width":25,"height":58},{"x":25,"y":174,"fileNum":4048,"id":18337,"width":25,"height":58},{"x":50,"y":174,"fileNum":4048,"id":18338,"width":25,"height":58},{"x":75,"y":174,"fileNum":4048,"id":18339,"width":25,"height":58},{"x":100,"y":174,"fileNum":4048,"id":18340,"width":25,"height":58},{"x":0,"y":0,"fileNum":4049,"id":18345,"width":25,"height":58},{"x":25,"y":0,"fileNum":4049,"id":18346,"width":25,"height":58},{"x":50,"y":0,"fileNum":4049,"id":18347,"width":25,"height":58},{"x":75,"y":0,"fileNum":4049,"id":18348,"width":25,"height":58},{"x":100,"y":0,"fileNum":4049,"id":18349,"width":25,"height":58},{"x":125,"y":0,"fileNum":4049,"id":18350,"width":25,"height":58},{"x":0,"y":58,"fileNum":4049,"id":18351,"width":25,"height":58},{"x":25,"y":58,"fileNum":4049,"id":18352,"width":25,"height":58},{"x":50,"y":58,"fileNum":4049,"id":18353,"width":25,"height":58},{"x":75,"y":58,"fileNum":4049,"id":18354,"width":25,"height":58},{"x":100,"y":58,"fileNum":4049,"id":18355,"width":25,"height":58},{"x":125,"y":58,"fileNum":4049,"id":18356,"width":25,"height":58},{"x":0,"y":116,"fileNum":4049,"id":18357,"width":25,"height":58},{"x":25,"y":116,"fileNum":4049,"id":18358,"width":25,"height":58},{"x":50,"y":116,"fileNum":4049,"id":18359,"width":25,"height":58},{"x":75,"y":116,"fileNum":4049,"id":18360,"width":25,"height":58},{"x":100,"y":116,"fileNum":4049,"id":18361,"width":25,"height":58},{"x":0,"y":174,"fileNum":4049,"id":18362,"width":25,"height":58},{"x":25,"y":174,"fileNum":4049,"id":18363,"width":25,"height":58},{"x":50,"y":174,"fileNum":4049,"id":18364,"width":25,"height":58},{"x":75,"y":174,"fileNum":4049,"id":18365,"width":25,"height":58},{"x":100,"y":174,"fileNum":4049,"id":18366,"width":25,"height":58},{"x":0,"y":0,"fileNum":4041,"id":18371,"width":32,"height":53},{"x":32,"y":0,"fileNum":4041,"id":18372,"width":32,"height":53},{"x":64,"y":0,"fileNum":4041,"id":18373,"width":32,"height":53},{"x":0,"y":0,"fileNum":4042,"id":18375,"width":32,"height":53},{"x":32,"y":0,"fileNum":4042,"id":18376,"width":32,"height":53},{"x":64,"y":0,"fileNum":4042,"id":18377,"width":32,"height":53},{"x":0,"y":0,"fileNum":4043,"id":18379,"width":32,"height":53},{"x":32,"y":0,"fileNum":4043,"id":18380,"width":32,"height":53},{"x":64,"y":0,"fileNum":4043,"id":18381,"width":32,"height":53},{"x":0,"y":0,"fileNum":4044,"id":18383,"width":32,"height":47},{"x":32,"y":0,"fileNum":4044,"id":18384,"width":32,"height":47},{"x":64,"y":0,"fileNum":4044,"id":18385,"width":32,"height":47},{"x":0,"y":0,"fileNum":4046,"id":18386,"width":32,"height":47},{"x":32,"y":0,"fileNum":4046,"id":18387,"width":32,"height":47},{"x":64,"y":0,"fileNum":4046,"id":18388,"width":32,"height":47},{"x":0,"y":0,"fileNum":4045,"id":18389,"width":32,"height":47},{"x":32,"y":0,"fileNum":4045,"id":18390,"width":32,"height":47},{"x":64,"y":0,"fileNum":4045,"id":18391,"width":32,"height":47},{"x":0,"y":0,"fileNum":2127,"id":18392,"width":17,"height":50},{"x":17,"y":0,"fileNum":2127,"id":18393,"width":17,"height":50},{"x":34,"y":0,"fileNum":2127,"id":18394,"width":17,"height":50},{"x":51,"y":0,"fileNum":2127,"id":18395,"width":17,"height":50},{"x":0,"y":0,"fileNum":3093,"id":18396,"width":64,"height":64},{"x":64,"y":0,"fileNum":3093,"id":18397,"width":64,"height":64},{"x":128,"y":0,"fileNum":3093,"id":18398,"width":64,"height":64},{"x":192,"y":0,"fileNum":3093,"id":18399,"width":64,"height":64},{"x":256,"y":0,"fileNum":3093,"id":18400,"width":64,"height":64},{"x":0,"y":0,"fileNum":4047,"id":18402,"width":47,"height":60},{"x":0,"y":0,"fileNum":3099,"id":18403,"width":140,"height":265},{"x":140,"y":0,"fileNum":3099,"id":18404,"width":140,"height":265},{"x":280,"y":0,"fileNum":3099,"id":18405,"width":140,"height":265},{"x":420,"y":0,"fileNum":3099,"id":18406,"width":140,"height":265},{"x":560,"y":0,"fileNum":3099,"id":18407,"width":140,"height":265},{"x":0,"y":265,"fileNum":3099,"id":18408,"width":140,"height":265},{"x":140,"y":265,"fileNum":3099,"id":18409,"width":140,"height":265},{"x":280,"y":265,"fileNum":3099,"id":18410,"width":140,"height":265},{"x":420,"y":265,"fileNum":3099,"id":18411,"width":140,"height":265},{"x":560,"y":265,"fileNum":3099,"id":18412,"width":140,"height":265},{"x":0,"y":0,"fileNum":12008,"id":18414,"width":32,"height":32},{"x":32,"y":0,"fileNum":12008,"id":18415,"width":32,"height":32},{"x":64,"y":0,"fileNum":12008,"id":18416,"width":32,"height":32},{"x":96,"y":0,"fileNum":12008,"id":18417,"width":32,"height":32},{"x":0,"y":32,"fileNum":12008,"id":18418,"width":32,"height":32},{"x":32,"y":32,"fileNum":12008,"id":18419,"width":32,"height":32},{"x":64,"y":32,"fileNum":12008,"id":18420,"width":32,"height":32},{"x":96,"y":32,"fileNum":12008,"id":18421,"width":32,"height":32},{"x":0,"y":64,"fileNum":12008,"id":18422,"width":32,"height":32},{"x":32,"y":64,"fileNum":12008,"id":18423,"width":32,"height":32},{"x":64,"y":64,"fileNum":12008,"id":18424,"width":32,"height":32},{"x":96,"y":64,"fileNum":12008,"id":18425,"width":32,"height":32},{"x":0,"y":96,"fileNum":12008,"id":18426,"width":32,"height":32},{"x":32,"y":96,"fileNum":12008,"id":18427,"width":32,"height":32},{"x":64,"y":96,"fileNum":12008,"id":18428,"width":32,"height":32},{"x":96,"y":96,"fileNum":12008,"id":18429,"width":32,"height":32},{"x":128,"y":0,"fileNum":12008,"id":18430,"width":32,"height":32},{"x":160,"y":0,"fileNum":12008,"id":18431,"width":32,"height":32},{"x":192,"y":0,"fileNum":12008,"id":18432,"width":32,"height":32},{"x":224,"y":0,"fileNum":12008,"id":18433,"width":32,"height":32},{"x":128,"y":32,"fileNum":12008,"id":18434,"width":32,"height":32},{"x":160,"y":32,"fileNum":12008,"id":18435,"width":32,"height":32},{"x":192,"y":32,"fileNum":12008,"id":18436,"width":32,"height":32},{"x":224,"y":32,"fileNum":12008,"id":18437,"width":32,"height":32},{"x":128,"y":64,"fileNum":12008,"id":18438,"width":32,"height":32},{"x":160,"y":64,"fileNum":12008,"id":18439,"width":32,"height":32},{"x":192,"y":64,"fileNum":12008,"id":18440,"width":32,"height":32},{"x":224,"y":64,"fileNum":12008,"id":18441,"width":32,"height":32},{"x":128,"y":96,"fileNum":12008,"id":18442,"width":32,"height":32},{"x":160,"y":96,"fileNum":12008,"id":18443,"width":32,"height":32},{"x":192,"y":96,"fileNum":12008,"id":18444,"width":32,"height":32},{"x":224,"y":96,"fileNum":12008,"id":18445,"width":32,"height":32},{"x":256,"y":0,"fileNum":12008,"id":18446,"width":32,"height":32},{"x":288,"y":0,"fileNum":12008,"id":18447,"width":32,"height":32},{"x":320,"y":0,"fileNum":12008,"id":18448,"width":32,"height":32},{"x":352,"y":0,"fileNum":12008,"id":18449,"width":32,"height":32},{"x":256,"y":32,"fileNum":12008,"id":18450,"width":32,"height":32},{"x":288,"y":32,"fileNum":12008,"id":18451,"width":32,"height":32},{"x":320,"y":32,"fileNum":12008,"id":18452,"width":32,"height":32},{"x":352,"y":32,"fileNum":12008,"id":18453,"width":32,"height":32},{"x":256,"y":64,"fileNum":12008,"id":18454,"width":32,"height":32},{"x":288,"y":64,"fileNum":12008,"id":18455,"width":32,"height":32},{"x":320,"y":64,"fileNum":12008,"id":18456,"width":32,"height":32},{"x":352,"y":64,"fileNum":12008,"id":18457,"width":32,"height":32},{"x":256,"y":96,"fileNum":12008,"id":18458,"width":32,"height":32},{"x":288,"y":96,"fileNum":12008,"id":18459,"width":32,"height":32},{"x":320,"y":96,"fileNum":12008,"id":18460,"width":32,"height":32},{"x":352,"y":96,"fileNum":12008,"id":18461,"width":32,"height":32},{"x":384,"y":0,"fileNum":12008,"id":18462,"width":32,"height":32},{"x":416,"y":0,"fileNum":12008,"id":18463,"width":32,"height":32},{"x":448,"y":0,"fileNum":12008,"id":18464,"width":32,"height":32},{"x":480,"y":0,"fileNum":12008,"id":18465,"width":32,"height":32},{"x":384,"y":32,"fileNum":12008,"id":18466,"width":32,"height":32},{"x":416,"y":32,"fileNum":12008,"id":18467,"width":32,"height":32},{"x":448,"y":32,"fileNum":12008,"id":18468,"width":32,"height":32},{"x":480,"y":32,"fileNum":12008,"id":18469,"width":32,"height":32},{"x":384,"y":64,"fileNum":12008,"id":18470,"width":32,"height":32},{"x":416,"y":64,"fileNum":12008,"id":18471,"width":32,"height":32},{"x":448,"y":64,"fileNum":12008,"id":18472,"width":32,"height":32},{"x":480,"y":64,"fileNum":12008,"id":18473,"width":32,"height":32},{"x":384,"y":96,"fileNum":12008,"id":18474,"width":32,"height":32},{"x":416,"y":96,"fileNum":12008,"id":18475,"width":32,"height":32},{"x":448,"y":96,"fileNum":12008,"id":18476,"width":32,"height":32},{"x":480,"y":96,"fileNum":12008,"id":18477,"width":32,"height":32},{"x":0,"y":0,"fileNum":6011,"id":18478,"width":357,"height":460},{"x":0,"y":0,"fileNum":6012,"id":18479,"width":293,"height":336},{"x":0,"y":0,"fileNum":6013,"id":18480,"width":312,"height":388},{"x":0,"y":0,"fileNum":6014,"id":18481,"width":293,"height":338},{"x":0,"y":0,"fileNum":8000,"id":18482,"width":32,"height":32},{"x":32,"y":0,"fileNum":8000,"id":18483,"width":32,"height":32},{"x":64,"y":0,"fileNum":8000,"id":18484,"width":32,"height":32},{"x":96,"y":0,"fileNum":8000,"id":18485,"width":32,"height":32},{"x":0,"y":32,"fileNum":8000,"id":18486,"width":32,"height":32},{"x":32,"y":32,"fileNum":8000,"id":18487,"width":32,"height":32},{"x":64,"y":32,"fileNum":8000,"id":18488,"width":32,"height":32},{"x":96,"y":32,"fileNum":8000,"id":18489,"width":32,"height":32},{"x":0,"y":64,"fileNum":8000,"id":18490,"width":32,"height":32},{"x":32,"y":64,"fileNum":8000,"id":18491,"width":32,"height":32},{"x":64,"y":64,"fileNum":8000,"id":18492,"width":32,"height":32},{"x":96,"y":64,"fileNum":8000,"id":18493,"width":32,"height":32},{"x":0,"y":96,"fileNum":8000,"id":18494,"width":32,"height":32},{"x":32,"y":96,"fileNum":8000,"id":18495,"width":32,"height":32},{"x":64,"y":96,"fileNum":8000,"id":18496,"width":32,"height":32},{"x":96,"y":96,"fileNum":8000,"id":18497,"width":32,"height":32},{"x":0,"y":0,"fileNum":8001,"id":18498,"width":32,"height":32},{"x":32,"y":0,"fileNum":8001,"id":18499,"width":32,"height":32},{"x":64,"y":0,"fileNum":8001,"id":18500,"width":32,"height":32},{"x":96,"y":0,"fileNum":8001,"id":18501,"width":32,"height":32},{"x":0,"y":32,"fileNum":8001,"id":18502,"width":32,"height":32},{"x":32,"y":32,"fileNum":8001,"id":18503,"width":32,"height":32},{"x":64,"y":32,"fileNum":8001,"id":18504,"width":32,"height":32},{"x":96,"y":32,"fileNum":8001,"id":18505,"width":32,"height":32},{"x":0,"y":64,"fileNum":8001,"id":18506,"width":32,"height":32},{"x":32,"y":64,"fileNum":8001,"id":18507,"width":32,"height":32},{"x":64,"y":64,"fileNum":8001,"id":18508,"width":32,"height":32},{"x":96,"y":64,"fileNum":8001,"id":18509,"width":32,"height":32},{"x":0,"y":96,"fileNum":8001,"id":18510,"width":32,"height":32},{"x":32,"y":96,"fileNum":8001,"id":18511,"width":32,"height":32},{"x":64,"y":96,"fileNum":8001,"id":18512,"width":32,"height":32},{"x":96,"y":96,"fileNum":8001,"id":18513,"width":32,"height":32},{"x":0,"y":0,"fileNum":8002,"id":18514,"width":32,"height":32},{"x":32,"y":0,"fileNum":8002,"id":18515,"width":32,"height":32},{"x":64,"y":0,"fileNum":8002,"id":18516,"width":32,"height":32},{"x":96,"y":0,"fileNum":8002,"id":18517,"width":32,"height":32},{"x":0,"y":32,"fileNum":8002,"id":18518,"width":32,"height":32},{"x":32,"y":32,"fileNum":8002,"id":18519,"width":32,"height":32},{"x":64,"y":32,"fileNum":8002,"id":18520,"width":32,"height":32},{"x":96,"y":32,"fileNum":8002,"id":18521,"width":32,"height":32},{"x":0,"y":64,"fileNum":8002,"id":18522,"width":32,"height":32},{"x":32,"y":64,"fileNum":8002,"id":18523,"width":32,"height":32},{"x":64,"y":64,"fileNum":8002,"id":18524,"width":32,"height":32},{"x":96,"y":64,"fileNum":8002,"id":18525,"width":32,"height":32},{"x":0,"y":96,"fileNum":8002,"id":18526,"width":32,"height":32},{"x":32,"y":96,"fileNum":8002,"id":18527,"width":32,"height":32},{"x":64,"y":96,"fileNum":8002,"id":18528,"width":32,"height":32},{"x":96,"y":96,"fileNum":8002,"id":18529,"width":32,"height":32},{"x":0,"y":0,"fileNum":8003,"id":18530,"width":32,"height":32},{"x":32,"y":0,"fileNum":8003,"id":18531,"width":32,"height":32},{"x":64,"y":0,"fileNum":8003,"id":18532,"width":32,"height":32},{"x":96,"y":0,"fileNum":8003,"id":18533,"width":32,"height":32},{"x":0,"y":32,"fileNum":8003,"id":18534,"width":32,"height":32},{"x":32,"y":32,"fileNum":8003,"id":18535,"width":32,"height":32},{"x":64,"y":32,"fileNum":8003,"id":18536,"width":32,"height":32},{"x":96,"y":32,"fileNum":8003,"id":18537,"width":32,"height":32},{"x":0,"y":64,"fileNum":8003,"id":18538,"width":32,"height":32},{"x":32,"y":64,"fileNum":8003,"id":18539,"width":32,"height":32},{"x":64,"y":64,"fileNum":8003,"id":18540,"width":32,"height":32},{"x":96,"y":64,"fileNum":8003,"id":18541,"width":32,"height":32},{"x":0,"y":96,"fileNum":8003,"id":18542,"width":32,"height":32},{"x":32,"y":96,"fileNum":8003,"id":18543,"width":32,"height":32},{"x":64,"y":96,"fileNum":8003,"id":18544,"width":32,"height":32},{"x":96,"y":96,"fileNum":8003,"id":18545,"width":32,"height":32},{"x":0,"y":0,"fileNum":8004,"id":18546,"width":32,"height":32},{"x":32,"y":0,"fileNum":8004,"id":18547,"width":32,"height":32},{"x":64,"y":0,"fileNum":8004,"id":18548,"width":32,"height":32},{"x":96,"y":0,"fileNum":8004,"id":18549,"width":32,"height":32},{"x":0,"y":32,"fileNum":8004,"id":18550,"width":32,"height":32},{"x":32,"y":32,"fileNum":8004,"id":18551,"width":32,"height":32},{"x":64,"y":32,"fileNum":8004,"id":18552,"width":32,"height":32},{"x":96,"y":32,"fileNum":8004,"id":18553,"width":32,"height":32},{"x":0,"y":64,"fileNum":8004,"id":18554,"width":32,"height":32},{"x":32,"y":64,"fileNum":8004,"id":18555,"width":32,"height":32},{"x":64,"y":64,"fileNum":8004,"id":18556,"width":32,"height":32},{"x":96,"y":64,"fileNum":8004,"id":18557,"width":32,"height":32},{"x":0,"y":96,"fileNum":8004,"id":18558,"width":32,"height":32},{"x":32,"y":96,"fileNum":8004,"id":18559,"width":32,"height":32},{"x":64,"y":96,"fileNum":8004,"id":18560,"width":32,"height":32},{"x":96,"y":96,"fileNum":8004,"id":18561,"width":32,"height":32},{"x":0,"y":0,"fileNum":8005,"id":18562,"width":32,"height":32},{"x":32,"y":0,"fileNum":8005,"id":18563,"width":32,"height":32},{"x":64,"y":0,"fileNum":8005,"id":18564,"width":32,"height":32},{"x":96,"y":0,"fileNum":8005,"id":18565,"width":32,"height":32},{"x":0,"y":32,"fileNum":8005,"id":18566,"width":32,"height":32},{"x":32,"y":32,"fileNum":8005,"id":18567,"width":32,"height":32},{"x":64,"y":32,"fileNum":8005,"id":18568,"width":32,"height":32},{"x":96,"y":32,"fileNum":8005,"id":18569,"width":32,"height":32},{"x":0,"y":64,"fileNum":8005,"id":18570,"width":32,"height":32},{"x":32,"y":64,"fileNum":8005,"id":18571,"width":32,"height":32},{"x":64,"y":64,"fileNum":8005,"id":18572,"width":32,"height":32},{"x":96,"y":64,"fileNum":8005,"id":18573,"width":32,"height":32},{"x":0,"y":96,"fileNum":8005,"id":18574,"width":32,"height":32},{"x":32,"y":96,"fileNum":8005,"id":18575,"width":32,"height":32},{"x":64,"y":96,"fileNum":8005,"id":18576,"width":32,"height":32},{"x":96,"y":96,"fileNum":8005,"id":18577,"width":32,"height":32},{"x":0,"y":0,"fileNum":8006,"id":18578,"width":32,"height":32},{"x":32,"y":0,"fileNum":8006,"id":18579,"width":32,"height":32},{"x":64,"y":0,"fileNum":8006,"id":18580,"width":32,"height":32},{"x":96,"y":0,"fileNum":8006,"id":18581,"width":32,"height":32},{"x":0,"y":32,"fileNum":8006,"id":18582,"width":32,"height":32},{"x":32,"y":32,"fileNum":8006,"id":18583,"width":32,"height":32},{"x":64,"y":32,"fileNum":8006,"id":18584,"width":32,"height":32},{"x":96,"y":32,"fileNum":8006,"id":18585,"width":32,"height":32},{"x":0,"y":64,"fileNum":8006,"id":18586,"width":32,"height":32},{"x":32,"y":64,"fileNum":8006,"id":18587,"width":32,"height":32},{"x":64,"y":64,"fileNum":8006,"id":18588,"width":32,"height":32},{"x":96,"y":64,"fileNum":8006,"id":18589,"width":32,"height":32},{"x":0,"y":96,"fileNum":8006,"id":18590,"width":32,"height":32},{"x":32,"y":96,"fileNum":8006,"id":18591,"width":32,"height":32},{"x":64,"y":96,"fileNum":8006,"id":18592,"width":32,"height":32},{"x":96,"y":96,"fileNum":8006,"id":18593,"width":32,"height":32},{"x":0,"y":0,"fileNum":8007,"id":18594,"width":32,"height":32},{"x":32,"y":0,"fileNum":8007,"id":18595,"width":32,"height":32},{"x":64,"y":0,"fileNum":8007,"id":18596,"width":32,"height":32},{"x":96,"y":0,"fileNum":8007,"id":18597,"width":32,"height":32},{"x":0,"y":32,"fileNum":8007,"id":18598,"width":32,"height":32},{"x":32,"y":32,"fileNum":8007,"id":18599,"width":32,"height":32},{"x":64,"y":32,"fileNum":8007,"id":18600,"width":32,"height":32},{"x":96,"y":32,"fileNum":8007,"id":18601,"width":32,"height":32},{"x":0,"y":64,"fileNum":8007,"id":18602,"width":32,"height":32},{"x":32,"y":64,"fileNum":8007,"id":18603,"width":32,"height":32},{"x":64,"y":64,"fileNum":8007,"id":18604,"width":32,"height":32},{"x":96,"y":64,"fileNum":8007,"id":18605,"width":32,"height":32},{"x":0,"y":96,"fileNum":8007,"id":18606,"width":32,"height":32},{"x":32,"y":96,"fileNum":8007,"id":18607,"width":32,"height":32},{"x":64,"y":96,"fileNum":8007,"id":18608,"width":32,"height":32},{"x":96,"y":96,"fileNum":8007,"id":18609,"width":32,"height":32},{"x":0,"y":0,"fileNum":8008,"id":18610,"width":32,"height":32},{"x":32,"y":0,"fileNum":8008,"id":18611,"width":32,"height":32},{"x":64,"y":0,"fileNum":8008,"id":18612,"width":32,"height":32},{"x":96,"y":0,"fileNum":8008,"id":18613,"width":32,"height":32},{"x":0,"y":32,"fileNum":8008,"id":18614,"width":32,"height":32},{"x":32,"y":32,"fileNum":8008,"id":18615,"width":32,"height":32},{"x":64,"y":32,"fileNum":8008,"id":18616,"width":32,"height":32},{"x":96,"y":32,"fileNum":8008,"id":18617,"width":32,"height":32},{"x":0,"y":64,"fileNum":8008,"id":18618,"width":32,"height":32},{"x":32,"y":64,"fileNum":8008,"id":18619,"width":32,"height":32},{"x":64,"y":64,"fileNum":8008,"id":18620,"width":32,"height":32},{"x":96,"y":64,"fileNum":8008,"id":18621,"width":32,"height":32},{"x":0,"y":96,"fileNum":8008,"id":18622,"width":32,"height":32},{"x":32,"y":96,"fileNum":8008,"id":18623,"width":32,"height":32},{"x":64,"y":96,"fileNum":8008,"id":18624,"width":32,"height":32},{"x":96,"y":96,"fileNum":8008,"id":18625,"width":32,"height":32},{"x":0,"y":0,"fileNum":8009,"id":18626,"width":32,"height":32},{"x":32,"y":0,"fileNum":8009,"id":18627,"width":32,"height":32},{"x":64,"y":0,"fileNum":8009,"id":18628,"width":32,"height":32},{"x":96,"y":0,"fileNum":8009,"id":18629,"width":32,"height":32},{"x":0,"y":32,"fileNum":8009,"id":18630,"width":32,"height":32},{"x":32,"y":32,"fileNum":8009,"id":18631,"width":32,"height":32},{"x":64,"y":32,"fileNum":8009,"id":18632,"width":32,"height":32},{"x":96,"y":32,"fileNum":8009,"id":18633,"width":32,"height":32},{"x":0,"y":64,"fileNum":8009,"id":18634,"width":32,"height":32},{"x":32,"y":64,"fileNum":8009,"id":18635,"width":32,"height":32},{"x":64,"y":64,"fileNum":8009,"id":18636,"width":32,"height":32},{"x":96,"y":64,"fileNum":8009,"id":18637,"width":32,"height":32},{"x":0,"y":96,"fileNum":8009,"id":18638,"width":32,"height":32},{"x":32,"y":96,"fileNum":8009,"id":18639,"width":32,"height":32},{"x":64,"y":96,"fileNum":8009,"id":18640,"width":32,"height":32},{"x":96,"y":96,"fileNum":8009,"id":18641,"width":32,"height":32},{"x":0,"y":0,"fileNum":8010,"id":18642,"width":32,"height":32},{"x":32,"y":0,"fileNum":8010,"id":18643,"width":32,"height":32},{"x":64,"y":0,"fileNum":8010,"id":18644,"width":32,"height":32},{"x":96,"y":0,"fileNum":8010,"id":18645,"width":32,"height":32},{"x":0,"y":32,"fileNum":8010,"id":18646,"width":32,"height":32},{"x":32,"y":32,"fileNum":8010,"id":18647,"width":32,"height":32},{"x":64,"y":32,"fileNum":8010,"id":18648,"width":32,"height":32},{"x":96,"y":32,"fileNum":8010,"id":18649,"width":32,"height":32},{"x":0,"y":64,"fileNum":8010,"id":18650,"width":32,"height":32},{"x":32,"y":64,"fileNum":8010,"id":18651,"width":32,"height":32},{"x":64,"y":64,"fileNum":8010,"id":18652,"width":32,"height":32},{"x":96,"y":64,"fileNum":8010,"id":18653,"width":32,"height":32},{"x":0,"y":96,"fileNum":8010,"id":18654,"width":32,"height":32},{"x":32,"y":96,"fileNum":8010,"id":18655,"width":32,"height":32},{"x":64,"y":96,"fileNum":8010,"id":18656,"width":32,"height":32},{"x":96,"y":96,"fileNum":8010,"id":18657,"width":32,"height":32},{"x":0,"y":0,"fileNum":8011,"id":18658,"width":32,"height":32},{"x":32,"y":0,"fileNum":8011,"id":18659,"width":32,"height":32},{"x":64,"y":0,"fileNum":8011,"id":18660,"width":32,"height":32},{"x":96,"y":0,"fileNum":8011,"id":18661,"width":32,"height":32},{"x":0,"y":32,"fileNum":8011,"id":18662,"width":32,"height":32},{"x":32,"y":32,"fileNum":8011,"id":18663,"width":32,"height":32},{"x":64,"y":32,"fileNum":8011,"id":18664,"width":32,"height":32},{"x":96,"y":32,"fileNum":8011,"id":18665,"width":32,"height":32},{"x":0,"y":64,"fileNum":8011,"id":18666,"width":32,"height":32},{"x":32,"y":64,"fileNum":8011,"id":18667,"width":32,"height":32},{"x":64,"y":64,"fileNum":8011,"id":18668,"width":32,"height":32},{"x":96,"y":64,"fileNum":8011,"id":18669,"width":32,"height":32},{"x":0,"y":96,"fileNum":8011,"id":18670,"width":32,"height":32},{"x":32,"y":96,"fileNum":8011,"id":18671,"width":32,"height":32},{"x":64,"y":96,"fileNum":8011,"id":18672,"width":32,"height":32},{"x":96,"y":96,"fileNum":8011,"id":18673,"width":32,"height":32},{"x":0,"y":0,"fileNum":8012,"id":18674,"width":32,"height":32},{"x":32,"y":0,"fileNum":8012,"id":18675,"width":32,"height":32},{"x":64,"y":0,"fileNum":8012,"id":18676,"width":32,"height":32},{"x":96,"y":0,"fileNum":8012,"id":18677,"width":32,"height":32},{"x":0,"y":32,"fileNum":8012,"id":18678,"width":32,"height":32},{"x":32,"y":32,"fileNum":8012,"id":18679,"width":32,"height":32},{"x":64,"y":32,"fileNum":8012,"id":18680,"width":32,"height":32},{"x":96,"y":32,"fileNum":8012,"id":18681,"width":32,"height":32},{"x":0,"y":64,"fileNum":8012,"id":18682,"width":32,"height":32},{"x":32,"y":64,"fileNum":8012,"id":18683,"width":32,"height":32},{"x":64,"y":64,"fileNum":8012,"id":18684,"width":32,"height":32},{"x":96,"y":64,"fileNum":8012,"id":18685,"width":32,"height":32},{"x":0,"y":96,"fileNum":8012,"id":18686,"width":32,"height":32},{"x":32,"y":96,"fileNum":8012,"id":18687,"width":32,"height":32},{"x":64,"y":96,"fileNum":8012,"id":18688,"width":32,"height":32},{"x":96,"y":96,"fileNum":8012,"id":18689,"width":32,"height":32},{"x":0,"y":0,"fileNum":8013,"id":18690,"width":32,"height":32},{"x":32,"y":0,"fileNum":8013,"id":18691,"width":32,"height":32},{"x":64,"y":0,"fileNum":8013,"id":18692,"width":32,"height":32},{"x":96,"y":0,"fileNum":8013,"id":18693,"width":32,"height":32},{"x":0,"y":32,"fileNum":8013,"id":18694,"width":32,"height":32},{"x":32,"y":32,"fileNum":8013,"id":18695,"width":32,"height":32},{"x":64,"y":32,"fileNum":8013,"id":18696,"width":32,"height":32},{"x":96,"y":32,"fileNum":8013,"id":18697,"width":32,"height":32},{"x":0,"y":64,"fileNum":8013,"id":18698,"width":32,"height":32},{"x":32,"y":64,"fileNum":8013,"id":18699,"width":32,"height":32},{"x":64,"y":64,"fileNum":8013,"id":18700,"width":32,"height":32},{"x":96,"y":64,"fileNum":8013,"id":18701,"width":32,"height":32},{"x":0,"y":96,"fileNum":8013,"id":18702,"width":32,"height":32},{"x":32,"y":96,"fileNum":8013,"id":18703,"width":32,"height":32},{"x":64,"y":96,"fileNum":8013,"id":18704,"width":32,"height":32},{"x":96,"y":96,"fileNum":8013,"id":18705,"width":32,"height":32},{"x":0,"y":0,"fileNum":12003,"id":18706,"width":32,"height":32},{"x":32,"y":0,"fileNum":12003,"id":18707,"width":32,"height":32},{"x":0,"y":32,"fileNum":12003,"id":18708,"width":32,"height":32},{"x":32,"y":32,"fileNum":12003,"id":18709,"width":32,"height":32},{"x":64,"y":0,"fileNum":12003,"id":18710,"width":32,"height":32},{"x":96,"y":0,"fileNum":12003,"id":18711,"width":32,"height":32},{"x":64,"y":32,"fileNum":12003,"id":18712,"width":32,"height":32},{"x":96,"y":32,"fileNum":12003,"id":18713,"width":32,"height":32},{"x":0,"y":64,"fileNum":12003,"id":18714,"width":32,"height":32},{"x":32,"y":64,"fileNum":12003,"id":18715,"width":32,"height":32},{"x":0,"y":96,"fileNum":12003,"id":18716,"width":32,"height":32},{"x":32,"y":96,"fileNum":12003,"id":18717,"width":32,"height":32},{"x":64,"y":64,"fileNum":12003,"id":18718,"width":32,"height":32},{"x":96,"y":64,"fileNum":12003,"id":18719,"width":32,"height":32},{"x":64,"y":96,"fileNum":12003,"id":18720,"width":32,"height":32},{"x":96,"y":96,"fileNum":12003,"id":18721,"width":32,"height":32},{"x":0,"y":128,"fileNum":12003,"id":18722,"width":32,"height":32},{"x":32,"y":128,"fileNum":12003,"id":18723,"width":32,"height":32},{"x":0,"y":160,"fileNum":12003,"id":18724,"width":32,"height":32},{"x":32,"y":160,"fileNum":12003,"id":18725,"width":32,"height":32},{"x":64,"y":128,"fileNum":12003,"id":18726,"width":32,"height":32},{"x":96,"y":128,"fileNum":12003,"id":18727,"width":32,"height":32},{"x":64,"y":160,"fileNum":12003,"id":18728,"width":32,"height":32},{"x":96,"y":160,"fileNum":12003,"id":18729,"width":32,"height":32},{"x":192,"y":128,"fileNum":12003,"id":18730,"width":32,"height":32},{"x":224,"y":128,"fileNum":12003,"id":18731,"width":32,"height":32},{"x":192,"y":160,"fileNum":12003,"id":18732,"width":32,"height":32},{"x":224,"y":160,"fileNum":12003,"id":18733,"width":32,"height":32},{"x":0,"y":192,"fileNum":12003,"id":18734,"width":32,"height":32},{"x":32,"y":192,"fileNum":12003,"id":18735,"width":32,"height":32},{"x":0,"y":224,"fileNum":12003,"id":18736,"width":32,"height":32},{"x":32,"y":224,"fileNum":12003,"id":18737,"width":32,"height":32},{"x":64,"y":192,"fileNum":12003,"id":18738,"width":32,"height":32},{"x":96,"y":192,"fileNum":12003,"id":18739,"width":32,"height":32},{"x":64,"y":224,"fileNum":12003,"id":18740,"width":32,"height":32},{"x":96,"y":224,"fileNum":12003,"id":18741,"width":32,"height":32},{"x":128,"y":192,"fileNum":12003,"id":18742,"width":32,"height":32},{"x":160,"y":192,"fileNum":12003,"id":18743,"width":32,"height":32},{"x":128,"y":224,"fileNum":12003,"id":18744,"width":32,"height":32},{"x":160,"y":224,"fileNum":12003,"id":18745,"width":32,"height":32},{"x":128,"y":128,"fileNum":12003,"id":18746,"width":32,"height":32},{"x":160,"y":128,"fileNum":12003,"id":18747,"width":32,"height":32},{"x":128,"y":160,"fileNum":12003,"id":18748,"width":32,"height":32},{"x":160,"y":160,"fileNum":12003,"id":18749,"width":32,"height":32},{"x":192,"y":192,"fileNum":12003,"id":18750,"width":32,"height":32},{"x":224,"y":192,"fileNum":12003,"id":18751,"width":32,"height":32},{"x":192,"y":224,"fileNum":12003,"id":18752,"width":32,"height":32},{"x":224,"y":224,"fileNum":12003,"id":18753,"width":32,"height":32},{"x":128,"y":0,"fileNum":12003,"id":18754,"width":32,"height":32},{"x":160,"y":0,"fileNum":12003,"id":18755,"width":32,"height":32},{"x":128,"y":32,"fileNum":12003,"id":18756,"width":32,"height":32},{"x":160,"y":32,"fileNum":12003,"id":18757,"width":32,"height":32},{"x":192,"y":0,"fileNum":12003,"id":18758,"width":32,"height":32},{"x":224,"y":0,"fileNum":12003,"id":18759,"width":32,"height":32},{"x":192,"y":32,"fileNum":12003,"id":18760,"width":32,"height":32},{"x":224,"y":32,"fileNum":12003,"id":18761,"width":32,"height":32},{"x":128,"y":64,"fileNum":12003,"id":18762,"width":32,"height":32},{"x":160,"y":64,"fileNum":12003,"id":18763,"width":32,"height":32},{"x":128,"y":96,"fileNum":12003,"id":18764,"width":32,"height":32},{"x":160,"y":96,"fileNum":12003,"id":18765,"width":32,"height":32},{"x":192,"y":64,"fileNum":12003,"id":18766,"width":32,"height":32},{"x":224,"y":64,"fileNum":12003,"id":18767,"width":32,"height":32},{"x":192,"y":96,"fileNum":12003,"id":18768,"width":32,"height":32},{"x":224,"y":96,"fileNum":12003,"id":18769,"width":32,"height":32},{"x":0,"y":256,"fileNum":12003,"id":18770,"width":32,"height":32},{"x":32,"y":256,"fileNum":12003,"id":18771,"width":32,"height":32},{"x":0,"y":288,"fileNum":12003,"id":18772,"width":32,"height":32},{"x":32,"y":288,"fileNum":12003,"id":18773,"width":32,"height":32},{"x":64,"y":256,"fileNum":12003,"id":18774,"width":32,"height":32},{"x":96,"y":256,"fileNum":12003,"id":18775,"width":32,"height":32},{"x":64,"y":288,"fileNum":12003,"id":18776,"width":32,"height":32},{"x":96,"y":288,"fileNum":12003,"id":18777,"width":32,"height":32},{"x":128,"y":256,"fileNum":12003,"id":18778,"width":32,"height":32},{"x":160,"y":256,"fileNum":12003,"id":18779,"width":32,"height":32},{"x":128,"y":288,"fileNum":12003,"id":18780,"width":32,"height":32},{"x":160,"y":288,"fileNum":12003,"id":18781,"width":32,"height":32},{"x":192,"y":256,"fileNum":12003,"id":18782,"width":32,"height":32},{"x":224,"y":256,"fileNum":12003,"id":18783,"width":32,"height":32},{"x":192,"y":288,"fileNum":12003,"id":18784,"width":32,"height":32},{"x":224,"y":288,"fileNum":12003,"id":18785,"width":32,"height":32},{"x":0,"y":320,"fileNum":12003,"id":18786,"width":32,"height":32},{"x":32,"y":320,"fileNum":12003,"id":18787,"width":32,"height":32},{"x":0,"y":352,"fileNum":12003,"id":18788,"width":32,"height":32},{"x":32,"y":352,"fileNum":12003,"id":18789,"width":32,"height":32},{"x":64,"y":320,"fileNum":12003,"id":18790,"width":32,"height":32},{"x":96,"y":320,"fileNum":12003,"id":18791,"width":32,"height":32},{"x":64,"y":352,"fileNum":12003,"id":18792,"width":32,"height":32},{"x":96,"y":352,"fileNum":12003,"id":18793,"width":32,"height":32},{"x":128,"y":320,"fileNum":12003,"id":18794,"width":32,"height":32},{"x":160,"y":320,"fileNum":12003,"id":18795,"width":32,"height":32},{"x":128,"y":352,"fileNum":12003,"id":18796,"width":32,"height":32},{"x":160,"y":352,"fileNum":12003,"id":18797,"width":32,"height":32},{"x":192,"y":320,"fileNum":12003,"id":18798,"width":32,"height":32},{"x":224,"y":320,"fileNum":12003,"id":18799,"width":32,"height":32},{"x":192,"y":352,"fileNum":12003,"id":18800,"width":32,"height":32},{"x":224,"y":352,"fileNum":12003,"id":18801,"width":32,"height":32},{"x":0,"y":0,"fileNum":6000,"id":18802,"width":256,"height":295},{"x":0,"y":0,"fileNum":6001,"id":18803,"width":256,"height":295},{"x":0,"y":0,"fileNum":6003,"id":18804,"width":357,"height":460},{"x":0,"y":0,"fileNum":4029,"id":18805,"width":79,"height":60},{"x":79,"y":0,"fileNum":4029,"id":18806,"width":79,"height":60},{"x":158,"y":0,"fileNum":4029,"id":18807,"width":79,"height":60},{"x":237,"y":0,"fileNum":4029,"id":18808,"width":79,"height":60},{"x":0,"y":60,"fileNum":4029,"id":18809,"width":79,"height":60},{"x":79,"y":60,"fileNum":4029,"id":18810,"width":79,"height":60},{"x":158,"y":60,"fileNum":4029,"id":18811,"width":79,"height":60},{"x":237,"y":60,"fileNum":4029,"id":18812,"width":79,"height":60},{"x":0,"y":120,"fileNum":4029,"id":18813,"width":79,"height":60},{"x":79,"y":120,"fileNum":4029,"id":18814,"width":79,"height":60},{"x":158,"y":120,"fileNum":4029,"id":18815,"width":79,"height":60},{"x":237,"y":120,"fileNum":4029,"id":18816,"width":79,"height":60},{"x":0,"y":180,"fileNum":4029,"id":18817,"width":79,"height":60},{"x":79,"y":180,"fileNum":4029,"id":18818,"width":79,"height":60},{"x":158,"y":180,"fileNum":4029,"id":18819,"width":79,"height":60},{"x":237,"y":180,"fileNum":4029,"id":18820,"width":79,"height":60},{"x":0,"y":0,"fileNum":4031,"id":18825,"width":50,"height":46},{"x":50,"y":0,"fileNum":4031,"id":18826,"width":50,"height":46},{"x":100,"y":0,"fileNum":4031,"id":18827,"width":50,"height":46},{"x":150,"y":0,"fileNum":4031,"id":18828,"width":50,"height":46},{"x":0,"y":46,"fileNum":4031,"id":18829,"width":50,"height":46},{"x":50,"y":46,"fileNum":4031,"id":18830,"width":50,"height":46},{"x":100,"y":46,"fileNum":4031,"id":18831,"width":50,"height":46},{"x":150,"y":46,"fileNum":4031,"id":18832,"width":50,"height":46},{"x":0,"y":92,"fileNum":4031,"id":18833,"width":50,"height":46},{"x":50,"y":92,"fileNum":4031,"id":18834,"width":50,"height":46},{"x":100,"y":92,"fileNum":4031,"id":18835,"width":50,"height":46},{"x":150,"y":92,"fileNum":4031,"id":18836,"width":50,"height":46},{"x":0,"y":138,"fileNum":4031,"id":18837,"width":50,"height":46},{"x":50,"y":138,"fileNum":4031,"id":18838,"width":50,"height":46},{"x":100,"y":138,"fileNum":4031,"id":18839,"width":50,"height":46},{"x":150,"y":138,"fileNum":4031,"id":18840,"width":50,"height":46},{"x":0,"y":0,"fileNum":2040,"id":18845,"width":17,"height":50},{"x":17,"y":0,"fileNum":2040,"id":18846,"width":17,"height":50},{"x":34,"y":0,"fileNum":2040,"id":18847,"width":17,"height":50},{"x":51,"y":0,"fileNum":2040,"id":18848,"width":17,"height":50},{"x":0,"y":0,"fileNum":4012,"id":18849,"width":25,"height":45},{"x":25,"y":0,"fileNum":4012,"id":18850,"width":25,"height":45},{"x":50,"y":0,"fileNum":4012,"id":18851,"width":25,"height":45},{"x":75,"y":0,"fileNum":4012,"id":18852,"width":25,"height":45},{"x":100,"y":0,"fileNum":4012,"id":18853,"width":25,"height":45},{"x":125,"y":0,"fileNum":4012,"id":18854,"width":25,"height":45},{"x":0,"y":45,"fileNum":4012,"id":18855,"width":25,"height":45},{"x":25,"y":45,"fileNum":4012,"id":18856,"width":25,"height":45},{"x":50,"y":45,"fileNum":4012,"id":18857,"width":25,"height":45},{"x":75,"y":45,"fileNum":4012,"id":18858,"width":25,"height":45},{"x":100,"y":45,"fileNum":4012,"id":18859,"width":25,"height":45},{"x":125,"y":45,"fileNum":4012,"id":18860,"width":25,"height":45},{"x":0,"y":90,"fileNum":4012,"id":18861,"width":25,"height":45},{"x":25,"y":90,"fileNum":4012,"id":18862,"width":25,"height":45},{"x":50,"y":90,"fileNum":4012,"id":18863,"width":25,"height":45},{"x":75,"y":90,"fileNum":4012,"id":18864,"width":25,"height":45},{"x":100,"y":90,"fileNum":4012,"id":18865,"width":25,"height":45},{"x":0,"y":135,"fileNum":4012,"id":18866,"width":25,"height":45},{"x":25,"y":135,"fileNum":4012,"id":18867,"width":25,"height":45},{"x":50,"y":135,"fileNum":4012,"id":18868,"width":25,"height":45},{"x":75,"y":135,"fileNum":4012,"id":18869,"width":25,"height":45},{"x":100,"y":135,"fileNum":4012,"id":18870,"width":25,"height":45},{"x":0,"y":0,"fileNum":8022,"id":18875,"width":32,"height":32},{"x":32,"y":0,"fileNum":8022,"id":18876,"width":32,"height":32},{"x":0,"y":32,"fileNum":8022,"id":18877,"width":32,"height":32},{"x":32,"y":32,"fileNum":8022,"id":18878,"width":32,"height":32},{"x":0,"y":0,"fileNum":12004,"id":18879,"width":32,"height":32},{"x":32,"y":0,"fileNum":12004,"id":18880,"width":32,"height":32},{"x":64,"y":0,"fileNum":12004,"id":18881,"width":32,"height":32},{"x":96,"y":0,"fileNum":12004,"id":18882,"width":32,"height":32},{"x":0,"y":32,"fileNum":12004,"id":18883,"width":32,"height":32},{"x":32,"y":32,"fileNum":12004,"id":18884,"width":32,"height":32},{"x":64,"y":32,"fileNum":12004,"id":18885,"width":32,"height":32},{"x":96,"y":32,"fileNum":12004,"id":18886,"width":32,"height":32},{"x":0,"y":64,"fileNum":12004,"id":18887,"width":32,"height":32},{"x":32,"y":64,"fileNum":12004,"id":18888,"width":32,"height":32},{"x":64,"y":64,"fileNum":12004,"id":18889,"width":32,"height":32},{"x":96,"y":64,"fileNum":12004,"id":18890,"width":32,"height":32},{"x":0,"y":96,"fileNum":12004,"id":18891,"width":32,"height":32},{"x":32,"y":96,"fileNum":12004,"id":18892,"width":32,"height":32},{"x":64,"y":96,"fileNum":12004,"id":18893,"width":32,"height":32},{"x":96,"y":96,"fileNum":12004,"id":18894,"width":32,"height":32},{"x":0,"y":0,"fileNum":12005,"id":18895,"width":32,"height":32},{"x":32,"y":0,"fileNum":12005,"id":18896,"width":32,"height":32},{"x":64,"y":0,"fileNum":12005,"id":18897,"width":32,"height":32},{"x":96,"y":0,"fileNum":12005,"id":18898,"width":32,"height":32},{"x":0,"y":32,"fileNum":12005,"id":18899,"width":32,"height":32},{"x":32,"y":32,"fileNum":12005,"id":18900,"width":32,"height":32},{"x":64,"y":32,"fileNum":12005,"id":18901,"width":32,"height":32},{"x":96,"y":32,"fileNum":12005,"id":18902,"width":32,"height":32},{"x":0,"y":64,"fileNum":12005,"id":18903,"width":32,"height":32},{"x":32,"y":64,"fileNum":12005,"id":18904,"width":32,"height":32},{"x":64,"y":64,"fileNum":12005,"id":18905,"width":32,"height":32},{"x":96,"y":64,"fileNum":12005,"id":18906,"width":32,"height":32},{"x":0,"y":96,"fileNum":12005,"id":18907,"width":32,"height":32},{"x":32,"y":96,"fileNum":12005,"id":18908,"width":32,"height":32},{"x":64,"y":96,"fileNum":12005,"id":18909,"width":32,"height":32},{"x":96,"y":96,"fileNum":12005,"id":18910,"width":32,"height":32},{"x":32,"y":0,"fileNum":12007,"id":18911,"width":32,"height":32},{"x":64,"y":0,"fileNum":12007,"id":18912,"width":32,"height":32},{"x":96,"y":0,"fileNum":12007,"id":18913,"width":32,"height":32},{"x":0,"y":32,"fileNum":12007,"id":18914,"width":32,"height":32},{"x":32,"y":32,"fileNum":12007,"id":18915,"width":32,"height":32},{"x":64,"y":32,"fileNum":12007,"id":18916,"width":32,"height":32},{"x":96,"y":32,"fileNum":12007,"id":18917,"width":32,"height":32},{"x":0,"y":64,"fileNum":12007,"id":18918,"width":32,"height":32},{"x":32,"y":64,"fileNum":12007,"id":18919,"width":32,"height":32},{"x":64,"y":64,"fileNum":12007,"id":18920,"width":32,"height":32},{"x":96,"y":64,"fileNum":12007,"id":18921,"width":32,"height":32},{"x":0,"y":96,"fileNum":12007,"id":18922,"width":32,"height":32},{"x":32,"y":96,"fileNum":12007,"id":18923,"width":32,"height":32},{"x":64,"y":96,"fileNum":12007,"id":18924,"width":32,"height":32},{"x":96,"y":96,"fileNum":12007,"id":18925,"width":32,"height":32},{"x":128,"y":0,"fileNum":12007,"id":18926,"width":32,"height":32},{"x":160,"y":0,"fileNum":12007,"id":18927,"width":32,"height":32},{"x":192,"y":0,"fileNum":12007,"id":18928,"width":32,"height":32},{"x":224,"y":0,"fileNum":12007,"id":18929,"width":32,"height":32},{"x":128,"y":32,"fileNum":12007,"id":18930,"width":32,"height":32},{"x":160,"y":32,"fileNum":12007,"id":18931,"width":32,"height":32},{"x":192,"y":32,"fileNum":12007,"id":18932,"width":32,"height":32},{"x":224,"y":32,"fileNum":12007,"id":18933,"width":32,"height":32},{"x":128,"y":64,"fileNum":12007,"id":18934,"width":32,"height":32},{"x":160,"y":64,"fileNum":12007,"id":18935,"width":32,"height":32},{"x":192,"y":64,"fileNum":12007,"id":18936,"width":32,"height":32},{"x":224,"y":64,"fileNum":12007,"id":18937,"width":32,"height":32},{"x":128,"y":96,"fileNum":12007,"id":18938,"width":32,"height":32},{"x":160,"y":96,"fileNum":12007,"id":18939,"width":32,"height":32},{"x":192,"y":96,"fileNum":12007,"id":18940,"width":32,"height":32},{"x":224,"y":96,"fileNum":12007,"id":18941,"width":32,"height":32},{"x":256,"y":0,"fileNum":12007,"id":18942,"width":32,"height":32},{"x":288,"y":0,"fileNum":12007,"id":18943,"width":32,"height":32},{"x":320,"y":0,"fileNum":12007,"id":18944,"width":32,"height":32},{"x":352,"y":0,"fileNum":12007,"id":18945,"width":32,"height":32},{"x":256,"y":32,"fileNum":12007,"id":18946,"width":32,"height":32},{"x":288,"y":32,"fileNum":12007,"id":18947,"width":32,"height":32},{"x":320,"y":32,"fileNum":12007,"id":18948,"width":32,"height":32},{"x":352,"y":32,"fileNum":12007,"id":18949,"width":32,"height":32},{"x":256,"y":64,"fileNum":12007,"id":18950,"width":32,"height":32},{"x":288,"y":64,"fileNum":12007,"id":18951,"width":32,"height":32},{"x":320,"y":64,"fileNum":12007,"id":18952,"width":32,"height":32},{"x":352,"y":64,"fileNum":12007,"id":18953,"width":32,"height":32},{"x":256,"y":96,"fileNum":12007,"id":18954,"width":32,"height":32},{"x":288,"y":96,"fileNum":12007,"id":18955,"width":32,"height":32},{"x":320,"y":96,"fileNum":12007,"id":18956,"width":32,"height":32},{"x":352,"y":96,"fileNum":12007,"id":18957,"width":32,"height":32},{"x":0,"y":128,"fileNum":12007,"id":18958,"width":32,"height":32},{"x":32,"y":128,"fileNum":12007,"id":18959,"width":32,"height":32},{"x":64,"y":128,"fileNum":12007,"id":18960,"width":32,"height":32},{"x":96,"y":128,"fileNum":12007,"id":18961,"width":32,"height":32},{"x":0,"y":160,"fileNum":12007,"id":18962,"width":32,"height":32},{"x":32,"y":160,"fileNum":12007,"id":18963,"width":32,"height":32},{"x":64,"y":160,"fileNum":12007,"id":18964,"width":32,"height":32},{"x":96,"y":160,"fileNum":12007,"id":18965,"width":32,"height":32},{"x":0,"y":192,"fileNum":12007,"id":18966,"width":32,"height":32},{"x":32,"y":192,"fileNum":12007,"id":18967,"width":32,"height":32},{"x":64,"y":192,"fileNum":12007,"id":18968,"width":32,"height":32},{"x":96,"y":192,"fileNum":12007,"id":18969,"width":32,"height":32},{"x":0,"y":224,"fileNum":12007,"id":18970,"width":32,"height":32},{"x":32,"y":224,"fileNum":12007,"id":18971,"width":32,"height":32},{"x":64,"y":224,"fileNum":12007,"id":18972,"width":32,"height":32},{"x":96,"y":224,"fileNum":12007,"id":18973,"width":32,"height":32},{"x":0,"y":0,"fileNum":18004,"id":18990,"width":17,"height":28},{"x":17,"y":0,"fileNum":18004,"id":18991,"width":17,"height":28},{"x":34,"y":0,"fileNum":18004,"id":18992,"width":17,"height":28},{"x":51,"y":0,"fileNum":18004,"id":18993,"width":17,"height":28},{"x":0,"y":0,"fileNum":18005,"id":18994,"width":32,"height":32},{"x":0,"y":0,"fileNum":10000,"id":18995,"width":333,"height":376},{"x":0,"y":0,"fileNum":7000,"id":18996,"width":403,"height":209},{"x":0,"y":0,"fileNum":16016,"id":18997,"width":32,"height":32},{"x":0,"y":0,"fileNum":16011,"id":18998,"width":32,"height":32},{"x":0,"y":0,"fileNum":12032,"id":18999,"width":64,"height":64},{"x":64,"y":0,"fileNum":12032,"id":19000,"width":64,"height":64},{"x":0,"y":64,"fileNum":12032,"id":19001,"width":64,"height":64},{"x":64,"y":64,"fileNum":12032,"id":19002,"width":64,"height":64},{"x":0,"y":0,"fileNum":12033,"id":19003,"width":64,"height":64},{"x":64,"y":0,"fileNum":12033,"id":19004,"width":64,"height":64},{"x":0,"y":64,"fileNum":12033,"id":19005,"width":64,"height":64},{"x":64,"y":64,"fileNum":12033,"id":19006,"width":64,"height":64},{"x":0,"y":0,"fileNum":12034,"id":19007,"width":64,"height":64},{"x":64,"y":0,"fileNum":12034,"id":19008,"width":64,"height":64},{"x":0,"y":64,"fileNum":12034,"id":19009,"width":64,"height":64},{"x":64,"y":64,"fileNum":12034,"id":19010,"width":64,"height":64},{"x":0,"y":0,"fileNum":12035,"id":19011,"width":64,"height":64},{"x":64,"y":0,"fileNum":12035,"id":19012,"width":64,"height":64},{"x":0,"y":64,"fileNum":12035,"id":19013,"width":64,"height":64},{"x":64,"y":64,"fileNum":12035,"id":19014,"width":64,"height":64},{"x":0,"y":0,"fileNum":8116,"id":19015,"width":32,"height":32},{"x":32,"y":0,"fileNum":8116,"id":19016,"width":32,"height":32},{"x":64,"y":0,"fileNum":8116,"id":19017,"width":32,"height":32},{"x":96,"y":0,"fileNum":8116,"id":19018,"width":32,"height":32},{"x":0,"y":32,"fileNum":8116,"id":19019,"width":32,"height":32},{"x":32,"y":32,"fileNum":8116,"id":19020,"width":32,"height":32},{"x":64,"y":32,"fileNum":8116,"id":19021,"width":32,"height":32},{"x":96,"y":32,"fileNum":8116,"id":19022,"width":32,"height":32},{"x":0,"y":64,"fileNum":8116,"id":19023,"width":32,"height":32},{"x":32,"y":64,"fileNum":8116,"id":19024,"width":32,"height":32},{"x":64,"y":64,"fileNum":8116,"id":19025,"width":32,"height":32},{"x":96,"y":64,"fileNum":8116,"id":19026,"width":32,"height":32},{"x":0,"y":96,"fileNum":8116,"id":19027,"width":32,"height":32},{"x":32,"y":96,"fileNum":8116,"id":19028,"width":32,"height":32},{"x":64,"y":96,"fileNum":8116,"id":19029,"width":32,"height":32},{"x":96,"y":96,"fileNum":8116,"id":19030,"width":32,"height":32},{"x":0,"y":0,"fileNum":8117,"id":19031,"width":32,"height":32},{"x":32,"y":0,"fileNum":8117,"id":19032,"width":32,"height":32},{"x":64,"y":0,"fileNum":8117,"id":19033,"width":32,"height":32},{"x":96,"y":0,"fileNum":8117,"id":19034,"width":32,"height":32},{"x":0,"y":32,"fileNum":8117,"id":19035,"width":32,"height":32},{"x":32,"y":32,"fileNum":8117,"id":19036,"width":32,"height":32},{"x":64,"y":32,"fileNum":8117,"id":19037,"width":32,"height":32},{"x":96,"y":32,"fileNum":8117,"id":19038,"width":32,"height":32},{"x":0,"y":64,"fileNum":8117,"id":19039,"width":32,"height":32},{"x":32,"y":64,"fileNum":8117,"id":19040,"width":32,"height":32},{"x":64,"y":64,"fileNum":8117,"id":19041,"width":32,"height":32},{"x":96,"y":64,"fileNum":8117,"id":19042,"width":32,"height":32},{"x":0,"y":96,"fileNum":8117,"id":19043,"width":32,"height":32},{"x":32,"y":96,"fileNum":8117,"id":19044,"width":32,"height":32},{"x":64,"y":96,"fileNum":8117,"id":19045,"width":32,"height":32},{"x":96,"y":96,"fileNum":8117,"id":19046,"width":32,"height":32},{"x":0,"y":0,"fileNum":8118,"id":19047,"width":32,"height":32},{"x":32,"y":0,"fileNum":8118,"id":19048,"width":32,"height":32},{"x":64,"y":0,"fileNum":8118,"id":19049,"width":32,"height":32},{"x":96,"y":0,"fileNum":8118,"id":19050,"width":32,"height":32},{"x":0,"y":32,"fileNum":8118,"id":19051,"width":32,"height":32},{"x":32,"y":32,"fileNum":8118,"id":19052,"width":32,"height":32},{"x":64,"y":32,"fileNum":8118,"id":19053,"width":32,"height":32},{"x":96,"y":32,"fileNum":8118,"id":19054,"width":32,"height":32},{"x":0,"y":64,"fileNum":8118,"id":19055,"width":32,"height":32},{"x":32,"y":64,"fileNum":8118,"id":19056,"width":32,"height":32},{"x":64,"y":64,"fileNum":8118,"id":19057,"width":32,"height":32},{"x":96,"y":64,"fileNum":8118,"id":19058,"width":32,"height":32},{"x":0,"y":96,"fileNum":8118,"id":19059,"width":32,"height":32},{"x":32,"y":96,"fileNum":8118,"id":19060,"width":32,"height":32},{"x":64,"y":96,"fileNum":8118,"id":19061,"width":32,"height":32},{"x":96,"y":96,"fileNum":8118,"id":19062,"width":32,"height":32},{"x":0,"y":0,"fileNum":8119,"id":19063,"width":32,"height":32},{"x":32,"y":0,"fileNum":8119,"id":19064,"width":32,"height":32},{"x":64,"y":0,"fileNum":8119,"id":19065,"width":32,"height":32},{"x":96,"y":0,"fileNum":8119,"id":19066,"width":32,"height":32},{"x":0,"y":32,"fileNum":8119,"id":19067,"width":32,"height":32},{"x":32,"y":32,"fileNum":8119,"id":19068,"width":32,"height":32},{"x":64,"y":32,"fileNum":8119,"id":19069,"width":32,"height":32},{"x":96,"y":32,"fileNum":8119,"id":19070,"width":32,"height":32},{"x":0,"y":64,"fileNum":8119,"id":19071,"width":32,"height":32},{"x":32,"y":64,"fileNum":8119,"id":19072,"width":32,"height":32},{"x":64,"y":64,"fileNum":8119,"id":19073,"width":32,"height":32},{"x":96,"y":64,"fileNum":8119,"id":19074,"width":32,"height":32},{"x":0,"y":96,"fileNum":8119,"id":19075,"width":32,"height":32},{"x":32,"y":96,"fileNum":8119,"id":19076,"width":32,"height":32},{"x":64,"y":96,"fileNum":8119,"id":19077,"width":32,"height":32},{"x":96,"y":96,"fileNum":8119,"id":19078,"width":32,"height":32},{"x":0,"y":0,"fileNum":8120,"id":19079,"width":32,"height":32},{"x":32,"y":0,"fileNum":8120,"id":19080,"width":32,"height":32},{"x":64,"y":0,"fileNum":8120,"id":19081,"width":32,"height":32},{"x":96,"y":0,"fileNum":8120,"id":19082,"width":32,"height":32},{"x":0,"y":32,"fileNum":8120,"id":19083,"width":32,"height":32},{"x":32,"y":32,"fileNum":8120,"id":19084,"width":32,"height":32},{"x":64,"y":32,"fileNum":8120,"id":19085,"width":32,"height":32},{"x":96,"y":32,"fileNum":8120,"id":19086,"width":32,"height":32},{"x":0,"y":64,"fileNum":8120,"id":19087,"width":32,"height":32},{"x":32,"y":64,"fileNum":8120,"id":19088,"width":32,"height":32},{"x":64,"y":64,"fileNum":8120,"id":19089,"width":32,"height":32},{"x":96,"y":64,"fileNum":8120,"id":19090,"width":32,"height":32},{"x":0,"y":96,"fileNum":8120,"id":19091,"width":32,"height":32},{"x":32,"y":96,"fileNum":8120,"id":19092,"width":32,"height":32},{"x":64,"y":96,"fileNum":8120,"id":19093,"width":32,"height":32},{"x":96,"y":96,"fileNum":8120,"id":19094,"width":32,"height":32},{"x":0,"y":0,"fileNum":8121,"id":19095,"width":32,"height":32},{"x":32,"y":0,"fileNum":8121,"id":19096,"width":32,"height":32},{"x":64,"y":0,"fileNum":8121,"id":19097,"width":32,"height":32},{"x":96,"y":0,"fileNum":8121,"id":19098,"width":32,"height":32},{"x":0,"y":32,"fileNum":8121,"id":19099,"width":32,"height":32},{"x":32,"y":32,"fileNum":8121,"id":19100,"width":32,"height":32},{"x":64,"y":32,"fileNum":8121,"id":19101,"width":32,"height":32},{"x":96,"y":32,"fileNum":8121,"id":19102,"width":32,"height":32},{"x":0,"y":64,"fileNum":8121,"id":19103,"width":32,"height":32},{"x":32,"y":64,"fileNum":8121,"id":19104,"width":32,"height":32},{"x":64,"y":64,"fileNum":8121,"id":19105,"width":32,"height":32},{"x":96,"y":64,"fileNum":8121,"id":19106,"width":32,"height":32},{"x":0,"y":96,"fileNum":8121,"id":19107,"width":32,"height":32},{"x":32,"y":96,"fileNum":8121,"id":19108,"width":32,"height":32},{"x":64,"y":96,"fileNum":8121,"id":19109,"width":32,"height":32},{"x":96,"y":96,"fileNum":8121,"id":19110,"width":32,"height":32},{"x":0,"y":0,"fileNum":8122,"id":19111,"width":32,"height":32},{"x":32,"y":0,"fileNum":8122,"id":19112,"width":32,"height":32},{"x":64,"y":0,"fileNum":8122,"id":19113,"width":32,"height":32},{"x":96,"y":0,"fileNum":8122,"id":19114,"width":32,"height":32},{"x":0,"y":32,"fileNum":8122,"id":19115,"width":32,"height":32},{"x":32,"y":32,"fileNum":8122,"id":19116,"width":32,"height":32},{"x":64,"y":32,"fileNum":8122,"id":19117,"width":32,"height":32},{"x":96,"y":32,"fileNum":8122,"id":19118,"width":32,"height":32},{"x":0,"y":64,"fileNum":8122,"id":19119,"width":32,"height":32},{"x":32,"y":64,"fileNum":8122,"id":19120,"width":32,"height":32},{"x":64,"y":64,"fileNum":8122,"id":19121,"width":32,"height":32},{"x":96,"y":64,"fileNum":8122,"id":19122,"width":32,"height":32},{"x":0,"y":96,"fileNum":8122,"id":19123,"width":32,"height":32},{"x":32,"y":96,"fileNum":8122,"id":19124,"width":32,"height":32},{"x":64,"y":96,"fileNum":8122,"id":19125,"width":32,"height":32},{"x":96,"y":96,"fileNum":8122,"id":19126,"width":32,"height":32},{"x":0,"y":0,"fileNum":8123,"id":19127,"width":32,"height":32},{"x":32,"y":0,"fileNum":8123,"id":19128,"width":32,"height":32},{"x":64,"y":0,"fileNum":8123,"id":19129,"width":32,"height":32},{"x":96,"y":0,"fileNum":8123,"id":19130,"width":32,"height":32},{"x":0,"y":32,"fileNum":8123,"id":19131,"width":32,"height":32},{"x":32,"y":32,"fileNum":8123,"id":19132,"width":32,"height":32},{"x":64,"y":32,"fileNum":8123,"id":19133,"width":32,"height":32},{"x":96,"y":32,"fileNum":8123,"id":19134,"width":32,"height":32},{"x":0,"y":64,"fileNum":8123,"id":19135,"width":32,"height":32},{"x":32,"y":64,"fileNum":8123,"id":19136,"width":32,"height":32},{"x":64,"y":64,"fileNum":8123,"id":19137,"width":32,"height":32},{"x":96,"y":64,"fileNum":8123,"id":19138,"width":32,"height":32},{"x":0,"y":96,"fileNum":8123,"id":19139,"width":32,"height":32},{"x":32,"y":96,"fileNum":8123,"id":19140,"width":32,"height":32},{"x":64,"y":96,"fileNum":8123,"id":19141,"width":32,"height":32},{"x":96,"y":96,"fileNum":8123,"id":19142,"width":32,"height":32},{"x":0,"y":0,"fileNum":8124,"id":19143,"width":32,"height":32},{"x":32,"y":0,"fileNum":8124,"id":19144,"width":32,"height":32},{"x":64,"y":0,"fileNum":8124,"id":19145,"width":32,"height":32},{"x":96,"y":0,"fileNum":8124,"id":19146,"width":32,"height":32},{"x":0,"y":32,"fileNum":8124,"id":19147,"width":32,"height":32},{"x":32,"y":32,"fileNum":8124,"id":19148,"width":32,"height":32},{"x":64,"y":32,"fileNum":8124,"id":19149,"width":32,"height":32},{"x":96,"y":32,"fileNum":8124,"id":19150,"width":32,"height":32},{"x":0,"y":64,"fileNum":8124,"id":19151,"width":32,"height":32},{"x":32,"y":64,"fileNum":8124,"id":19152,"width":32,"height":32},{"x":64,"y":64,"fileNum":8124,"id":19153,"width":32,"height":32},{"x":96,"y":64,"fileNum":8124,"id":19154,"width":32,"height":32},{"x":0,"y":96,"fileNum":8124,"id":19155,"width":32,"height":32},{"x":32,"y":96,"fileNum":8124,"id":19156,"width":32,"height":32},{"x":64,"y":96,"fileNum":8124,"id":19157,"width":32,"height":32},{"x":96,"y":96,"fileNum":8124,"id":19158,"width":32,"height":32},{"x":0,"y":0,"fileNum":8125,"id":19159,"width":32,"height":32},{"x":32,"y":0,"fileNum":8125,"id":19160,"width":32,"height":32},{"x":64,"y":0,"fileNum":8125,"id":19161,"width":32,"height":32},{"x":96,"y":0,"fileNum":8125,"id":19162,"width":32,"height":32},{"x":0,"y":32,"fileNum":8125,"id":19163,"width":32,"height":32},{"x":32,"y":32,"fileNum":8125,"id":19164,"width":32,"height":32},{"x":64,"y":32,"fileNum":8125,"id":19165,"width":32,"height":32},{"x":96,"y":32,"fileNum":8125,"id":19166,"width":32,"height":32},{"x":0,"y":64,"fileNum":8125,"id":19167,"width":32,"height":32},{"x":32,"y":64,"fileNum":8125,"id":19168,"width":32,"height":32},{"x":64,"y":64,"fileNum":8125,"id":19169,"width":32,"height":32},{"x":96,"y":64,"fileNum":8125,"id":19170,"width":32,"height":32},{"x":0,"y":96,"fileNum":8125,"id":19171,"width":32,"height":32},{"x":32,"y":96,"fileNum":8125,"id":19172,"width":32,"height":32},{"x":64,"y":96,"fileNum":8125,"id":19173,"width":32,"height":32},{"x":96,"y":96,"fileNum":8125,"id":19174,"width":32,"height":32},{"x":0,"y":0,"fileNum":8126,"id":19175,"width":32,"height":32},{"x":32,"y":0,"fileNum":8126,"id":19176,"width":32,"height":32},{"x":64,"y":0,"fileNum":8126,"id":19177,"width":32,"height":32},{"x":96,"y":0,"fileNum":8126,"id":19178,"width":32,"height":32},{"x":0,"y":32,"fileNum":8126,"id":19179,"width":32,"height":32},{"x":32,"y":32,"fileNum":8126,"id":19180,"width":32,"height":32},{"x":64,"y":32,"fileNum":8126,"id":19181,"width":32,"height":32},{"x":96,"y":32,"fileNum":8126,"id":19182,"width":32,"height":32},{"x":0,"y":64,"fileNum":8126,"id":19183,"width":32,"height":32},{"x":32,"y":64,"fileNum":8126,"id":19184,"width":32,"height":32},{"x":64,"y":64,"fileNum":8126,"id":19185,"width":32,"height":32},{"x":96,"y":64,"fileNum":8126,"id":19186,"width":32,"height":32},{"x":0,"y":96,"fileNum":8126,"id":19187,"width":32,"height":32},{"x":32,"y":96,"fileNum":8126,"id":19188,"width":32,"height":32},{"x":64,"y":96,"fileNum":8126,"id":19189,"width":32,"height":32},{"x":96,"y":96,"fileNum":8126,"id":19190,"width":32,"height":32},{"x":0,"y":0,"fileNum":8127,"id":19191,"width":32,"height":32},{"x":32,"y":0,"fileNum":8127,"id":19192,"width":32,"height":32},{"x":64,"y":0,"fileNum":8127,"id":19193,"width":32,"height":32},{"x":96,"y":0,"fileNum":8127,"id":19194,"width":32,"height":32},{"x":0,"y":32,"fileNum":8127,"id":19195,"width":32,"height":32},{"x":32,"y":32,"fileNum":8127,"id":19196,"width":32,"height":32},{"x":64,"y":32,"fileNum":8127,"id":19197,"width":32,"height":32},{"x":96,"y":32,"fileNum":8127,"id":19198,"width":32,"height":32},{"x":0,"y":64,"fileNum":8127,"id":19199,"width":32,"height":32},{"x":32,"y":64,"fileNum":8127,"id":19200,"width":32,"height":32},{"x":64,"y":64,"fileNum":8127,"id":19201,"width":32,"height":32},{"x":96,"y":64,"fileNum":8127,"id":19202,"width":32,"height":32},{"x":0,"y":96,"fileNum":8127,"id":19203,"width":32,"height":32},{"x":32,"y":96,"fileNum":8127,"id":19204,"width":32,"height":32},{"x":64,"y":96,"fileNum":8127,"id":19205,"width":32,"height":32},{"x":96,"y":96,"fileNum":8127,"id":19206,"width":32,"height":32},{"x":0,"y":0,"fileNum":8128,"id":19207,"width":32,"height":32},{"x":32,"y":0,"fileNum":8128,"id":19208,"width":32,"height":32},{"x":64,"y":0,"fileNum":8128,"id":19209,"width":32,"height":32},{"x":96,"y":0,"fileNum":8128,"id":19210,"width":32,"height":32},{"x":0,"y":32,"fileNum":8128,"id":19211,"width":32,"height":32},{"x":32,"y":32,"fileNum":8128,"id":19212,"width":32,"height":32},{"x":64,"y":32,"fileNum":8128,"id":19213,"width":32,"height":32},{"x":96,"y":32,"fileNum":8128,"id":19214,"width":32,"height":32},{"x":0,"y":64,"fileNum":8128,"id":19215,"width":32,"height":32},{"x":32,"y":64,"fileNum":8128,"id":19216,"width":32,"height":32},{"x":64,"y":64,"fileNum":8128,"id":19217,"width":32,"height":32},{"x":96,"y":64,"fileNum":8128,"id":19218,"width":32,"height":32},{"x":0,"y":96,"fileNum":8128,"id":19219,"width":32,"height":32},{"x":32,"y":96,"fileNum":8128,"id":19220,"width":32,"height":32},{"x":64,"y":96,"fileNum":8128,"id":19221,"width":32,"height":32},{"x":96,"y":96,"fileNum":8128,"id":19222,"width":32,"height":32},{"x":0,"y":0,"fileNum":8129,"id":19223,"width":32,"height":32},{"x":32,"y":0,"fileNum":8129,"id":19224,"width":32,"height":32},{"x":64,"y":0,"fileNum":8129,"id":19225,"width":32,"height":32},{"x":96,"y":0,"fileNum":8129,"id":19226,"width":32,"height":32},{"x":0,"y":32,"fileNum":8129,"id":19227,"width":32,"height":32},{"x":32,"y":32,"fileNum":8129,"id":19228,"width":32,"height":32},{"x":64,"y":32,"fileNum":8129,"id":19229,"width":32,"height":32},{"x":96,"y":32,"fileNum":8129,"id":19230,"width":32,"height":32},{"x":0,"y":64,"fileNum":8129,"id":19231,"width":32,"height":32},{"x":32,"y":64,"fileNum":8129,"id":19232,"width":32,"height":32},{"x":64,"y":64,"fileNum":8129,"id":19233,"width":32,"height":32},{"x":96,"y":64,"fileNum":8129,"id":19234,"width":32,"height":32},{"x":0,"y":96,"fileNum":8129,"id":19235,"width":32,"height":32},{"x":32,"y":96,"fileNum":8129,"id":19236,"width":32,"height":32},{"x":64,"y":96,"fileNum":8129,"id":19237,"width":32,"height":32},{"x":96,"y":96,"fileNum":8129,"id":19238,"width":32,"height":32},{"x":0,"y":0,"fileNum":8130,"id":19239,"width":32,"height":32},{"x":32,"y":0,"fileNum":8130,"id":19240,"width":32,"height":32},{"x":64,"y":0,"fileNum":8130,"id":19241,"width":32,"height":32},{"x":96,"y":0,"fileNum":8130,"id":19242,"width":32,"height":32},{"x":0,"y":32,"fileNum":8130,"id":19243,"width":32,"height":32},{"x":32,"y":32,"fileNum":8130,"id":19244,"width":32,"height":32},{"x":64,"y":32,"fileNum":8130,"id":19245,"width":32,"height":32},{"x":96,"y":32,"fileNum":8130,"id":19246,"width":32,"height":32},{"x":0,"y":64,"fileNum":8130,"id":19247,"width":32,"height":32},{"x":32,"y":64,"fileNum":8130,"id":19248,"width":32,"height":32},{"x":64,"y":64,"fileNum":8130,"id":19249,"width":32,"height":32},{"x":96,"y":64,"fileNum":8130,"id":19250,"width":32,"height":32},{"x":0,"y":96,"fileNum":8130,"id":19251,"width":32,"height":32},{"x":32,"y":96,"fileNum":8130,"id":19252,"width":32,"height":32},{"x":64,"y":96,"fileNum":8130,"id":19253,"width":32,"height":32},{"x":96,"y":96,"fileNum":8130,"id":19254,"width":32,"height":32},{"x":0,"y":0,"fileNum":8131,"id":19255,"width":32,"height":32},{"x":32,"y":0,"fileNum":8131,"id":19256,"width":32,"height":32},{"x":64,"y":0,"fileNum":8131,"id":19257,"width":32,"height":32},{"x":96,"y":0,"fileNum":8131,"id":19258,"width":32,"height":32},{"x":0,"y":32,"fileNum":8131,"id":19259,"width":32,"height":32},{"x":32,"y":32,"fileNum":8131,"id":19260,"width":32,"height":32},{"x":64,"y":32,"fileNum":8131,"id":19261,"width":32,"height":32},{"x":96,"y":32,"fileNum":8131,"id":19262,"width":32,"height":32},{"x":0,"y":64,"fileNum":8131,"id":19263,"width":32,"height":32},{"x":32,"y":64,"fileNum":8131,"id":19264,"width":32,"height":32},{"x":64,"y":64,"fileNum":8131,"id":19265,"width":32,"height":32},{"x":96,"y":64,"fileNum":8131,"id":19266,"width":32,"height":32},{"x":0,"y":96,"fileNum":8131,"id":19267,"width":32,"height":32},{"x":32,"y":96,"fileNum":8131,"id":19268,"width":32,"height":32},{"x":64,"y":96,"fileNum":8131,"id":19269,"width":32,"height":32},{"x":96,"y":96,"fileNum":8131,"id":19270,"width":32,"height":32},{"x":0,"y":0,"fileNum":8132,"id":19271,"width":32,"height":32},{"x":32,"y":0,"fileNum":8132,"id":19272,"width":32,"height":32},{"x":64,"y":0,"fileNum":8132,"id":19273,"width":32,"height":32},{"x":96,"y":0,"fileNum":8132,"id":19274,"width":32,"height":32},{"x":0,"y":32,"fileNum":8132,"id":19275,"width":32,"height":32},{"x":32,"y":32,"fileNum":8132,"id":19276,"width":32,"height":32},{"x":64,"y":32,"fileNum":8132,"id":19277,"width":32,"height":32},{"x":96,"y":32,"fileNum":8132,"id":19278,"width":32,"height":32},{"x":0,"y":64,"fileNum":8132,"id":19279,"width":32,"height":32},{"x":32,"y":64,"fileNum":8132,"id":19280,"width":32,"height":32},{"x":64,"y":64,"fileNum":8132,"id":19281,"width":32,"height":32},{"x":96,"y":64,"fileNum":8132,"id":19282,"width":32,"height":32},{"x":0,"y":96,"fileNum":8132,"id":19283,"width":32,"height":32},{"x":32,"y":96,"fileNum":8132,"id":19284,"width":32,"height":32},{"x":64,"y":96,"fileNum":8132,"id":19285,"width":32,"height":32},{"x":96,"y":96,"fileNum":8132,"id":19286,"width":32,"height":32},{"x":0,"y":0,"fileNum":8133,"id":19287,"width":32,"height":32},{"x":32,"y":0,"fileNum":8133,"id":19288,"width":32,"height":32},{"x":64,"y":0,"fileNum":8133,"id":19289,"width":32,"height":32},{"x":96,"y":0,"fileNum":8133,"id":19290,"width":32,"height":32},{"x":0,"y":32,"fileNum":8133,"id":19291,"width":32,"height":32},{"x":32,"y":32,"fileNum":8133,"id":19292,"width":32,"height":32},{"x":64,"y":32,"fileNum":8133,"id":19293,"width":32,"height":32},{"x":96,"y":32,"fileNum":8133,"id":19294,"width":32,"height":32},{"x":0,"y":64,"fileNum":8133,"id":19295,"width":32,"height":32},{"x":32,"y":64,"fileNum":8133,"id":19296,"width":32,"height":32},{"x":64,"y":64,"fileNum":8133,"id":19297,"width":32,"height":32},{"x":96,"y":64,"fileNum":8133,"id":19298,"width":32,"height":32},{"x":0,"y":96,"fileNum":8133,"id":19299,"width":32,"height":32},{"x":32,"y":96,"fileNum":8133,"id":19300,"width":32,"height":32},{"x":64,"y":96,"fileNum":8133,"id":19301,"width":32,"height":32},{"x":96,"y":96,"fileNum":8133,"id":19302,"width":32,"height":32},{"x":0,"y":0,"fileNum":8134,"id":19303,"width":32,"height":32},{"x":32,"y":0,"fileNum":8134,"id":19304,"width":32,"height":32},{"x":64,"y":0,"fileNum":8134,"id":19305,"width":32,"height":32},{"x":96,"y":0,"fileNum":8134,"id":19306,"width":32,"height":32},{"x":0,"y":32,"fileNum":8134,"id":19307,"width":32,"height":32},{"x":32,"y":32,"fileNum":8134,"id":19308,"width":32,"height":32},{"x":64,"y":32,"fileNum":8134,"id":19309,"width":32,"height":32},{"x":96,"y":32,"fileNum":8134,"id":19310,"width":32,"height":32},{"x":0,"y":64,"fileNum":8134,"id":19311,"width":32,"height":32},{"x":32,"y":64,"fileNum":8134,"id":19312,"width":32,"height":32},{"x":64,"y":64,"fileNum":8134,"id":19313,"width":32,"height":32},{"x":96,"y":64,"fileNum":8134,"id":19314,"width":32,"height":32},{"x":0,"y":96,"fileNum":8134,"id":19315,"width":32,"height":32},{"x":32,"y":96,"fileNum":8134,"id":19316,"width":32,"height":32},{"x":64,"y":96,"fileNum":8134,"id":19317,"width":32,"height":32},{"x":96,"y":96,"fileNum":8134,"id":19318,"width":32,"height":32},{"x":0,"y":0,"fileNum":8135,"id":19319,"width":32,"height":32},{"x":32,"y":0,"fileNum":8135,"id":19320,"width":32,"height":32},{"x":64,"y":0,"fileNum":8135,"id":19321,"width":32,"height":32},{"x":96,"y":0,"fileNum":8135,"id":19322,"width":32,"height":32},{"x":0,"y":32,"fileNum":8135,"id":19323,"width":32,"height":32},{"x":32,"y":32,"fileNum":8135,"id":19324,"width":32,"height":32},{"x":64,"y":32,"fileNum":8135,"id":19325,"width":32,"height":32},{"x":96,"y":32,"fileNum":8135,"id":19326,"width":32,"height":32},{"x":0,"y":64,"fileNum":8135,"id":19327,"width":32,"height":32},{"x":32,"y":64,"fileNum":8135,"id":19328,"width":32,"height":32},{"x":64,"y":64,"fileNum":8135,"id":19329,"width":32,"height":32},{"x":96,"y":64,"fileNum":8135,"id":19330,"width":32,"height":32},{"x":0,"y":96,"fileNum":8135,"id":19331,"width":32,"height":32},{"x":32,"y":96,"fileNum":8135,"id":19332,"width":32,"height":32},{"x":64,"y":96,"fileNum":8135,"id":19333,"width":32,"height":32},{"x":96,"y":96,"fileNum":8135,"id":19334,"width":32,"height":32},{"x":0,"y":0,"fileNum":8136,"id":19335,"width":32,"height":32},{"x":32,"y":0,"fileNum":8136,"id":19336,"width":32,"height":32},{"x":64,"y":0,"fileNum":8136,"id":19337,"width":32,"height":32},{"x":96,"y":0,"fileNum":8136,"id":19338,"width":32,"height":32},{"x":0,"y":32,"fileNum":8136,"id":19339,"width":32,"height":32},{"x":32,"y":32,"fileNum":8136,"id":19340,"width":32,"height":32},{"x":64,"y":32,"fileNum":8136,"id":19341,"width":32,"height":32},{"x":96,"y":32,"fileNum":8136,"id":19342,"width":32,"height":32},{"x":0,"y":64,"fileNum":8136,"id":19343,"width":32,"height":32},{"x":32,"y":64,"fileNum":8136,"id":19344,"width":32,"height":32},{"x":64,"y":64,"fileNum":8136,"id":19345,"width":32,"height":32},{"x":96,"y":64,"fileNum":8136,"id":19346,"width":32,"height":32},{"x":0,"y":96,"fileNum":8136,"id":19347,"width":32,"height":32},{"x":32,"y":96,"fileNum":8136,"id":19348,"width":32,"height":32},{"x":64,"y":96,"fileNum":8136,"id":19349,"width":32,"height":32},{"x":96,"y":96,"fileNum":8136,"id":19350,"width":32,"height":32},{"x":0,"y":0,"fileNum":8137,"id":19351,"width":32,"height":32},{"x":32,"y":0,"fileNum":8137,"id":19352,"width":32,"height":32},{"x":64,"y":0,"fileNum":8137,"id":19353,"width":32,"height":32},{"x":96,"y":0,"fileNum":8137,"id":19354,"width":32,"height":32},{"x":0,"y":32,"fileNum":8137,"id":19355,"width":32,"height":32},{"x":32,"y":32,"fileNum":8137,"id":19356,"width":32,"height":32},{"x":64,"y":32,"fileNum":8137,"id":19357,"width":32,"height":32},{"x":96,"y":32,"fileNum":8137,"id":19358,"width":32,"height":32},{"x":0,"y":64,"fileNum":8137,"id":19359,"width":32,"height":32},{"x":32,"y":64,"fileNum":8137,"id":19360,"width":32,"height":32},{"x":64,"y":64,"fileNum":8137,"id":19361,"width":32,"height":32},{"x":96,"y":64,"fileNum":8137,"id":19362,"width":32,"height":32},{"x":0,"y":96,"fileNum":8137,"id":19363,"width":32,"height":32},{"x":32,"y":96,"fileNum":8137,"id":19364,"width":32,"height":32},{"x":64,"y":96,"fileNum":8137,"id":19365,"width":32,"height":32},{"x":96,"y":96,"fileNum":8137,"id":19366,"width":32,"height":32},{"x":0,"y":0,"fileNum":8138,"id":19367,"width":32,"height":32},{"x":32,"y":0,"fileNum":8138,"id":19368,"width":32,"height":32},{"x":64,"y":0,"fileNum":8138,"id":19369,"width":32,"height":32},{"x":96,"y":0,"fileNum":8138,"id":19370,"width":32,"height":32},{"x":0,"y":32,"fileNum":8138,"id":19371,"width":32,"height":32},{"x":32,"y":32,"fileNum":8138,"id":19372,"width":32,"height":32},{"x":64,"y":32,"fileNum":8138,"id":19373,"width":32,"height":32},{"x":96,"y":32,"fileNum":8138,"id":19374,"width":32,"height":32},{"x":0,"y":64,"fileNum":8138,"id":19375,"width":32,"height":32},{"x":32,"y":64,"fileNum":8138,"id":19376,"width":32,"height":32},{"x":64,"y":64,"fileNum":8138,"id":19377,"width":32,"height":32},{"x":96,"y":64,"fileNum":8138,"id":19378,"width":32,"height":32},{"x":0,"y":96,"fileNum":8138,"id":19379,"width":32,"height":32},{"x":32,"y":96,"fileNum":8138,"id":19380,"width":32,"height":32},{"x":64,"y":96,"fileNum":8138,"id":19381,"width":32,"height":32},{"x":96,"y":96,"fileNum":8138,"id":19382,"width":32,"height":32},{"x":0,"y":0,"fileNum":8139,"id":19383,"width":32,"height":32},{"x":32,"y":0,"fileNum":8139,"id":19384,"width":32,"height":32},{"x":64,"y":0,"fileNum":8139,"id":19385,"width":32,"height":32},{"x":96,"y":0,"fileNum":8139,"id":19386,"width":32,"height":32},{"x":0,"y":32,"fileNum":8139,"id":19387,"width":32,"height":32},{"x":32,"y":32,"fileNum":8139,"id":19388,"width":32,"height":32},{"x":64,"y":32,"fileNum":8139,"id":19389,"width":32,"height":32},{"x":96,"y":32,"fileNum":8139,"id":19390,"width":32,"height":32},{"x":0,"y":64,"fileNum":8139,"id":19391,"width":32,"height":32},{"x":32,"y":64,"fileNum":8139,"id":19392,"width":32,"height":32},{"x":64,"y":64,"fileNum":8139,"id":19393,"width":32,"height":32},{"x":96,"y":64,"fileNum":8139,"id":19394,"width":32,"height":32},{"x":0,"y":96,"fileNum":8139,"id":19395,"width":32,"height":32},{"x":32,"y":96,"fileNum":8139,"id":19396,"width":32,"height":32},{"x":64,"y":96,"fileNum":8139,"id":19397,"width":32,"height":32},{"x":96,"y":96,"fileNum":8139,"id":19398,"width":32,"height":32},{"x":0,"y":0,"fileNum":8140,"id":19399,"width":32,"height":32},{"x":32,"y":0,"fileNum":8140,"id":19400,"width":32,"height":32},{"x":64,"y":0,"fileNum":8140,"id":19401,"width":32,"height":32},{"x":96,"y":0,"fileNum":8140,"id":19402,"width":32,"height":32},{"x":0,"y":32,"fileNum":8140,"id":19403,"width":32,"height":32},{"x":32,"y":32,"fileNum":8140,"id":19404,"width":32,"height":32},{"x":64,"y":32,"fileNum":8140,"id":19405,"width":32,"height":32},{"x":96,"y":32,"fileNum":8140,"id":19406,"width":32,"height":32},{"x":0,"y":64,"fileNum":8140,"id":19407,"width":32,"height":32},{"x":32,"y":64,"fileNum":8140,"id":19408,"width":32,"height":32},{"x":64,"y":64,"fileNum":8140,"id":19409,"width":32,"height":32},{"x":96,"y":64,"fileNum":8140,"id":19410,"width":32,"height":32},{"x":0,"y":96,"fileNum":8140,"id":19411,"width":32,"height":32},{"x":32,"y":96,"fileNum":8140,"id":19412,"width":32,"height":32},{"x":64,"y":96,"fileNum":8140,"id":19413,"width":32,"height":32},{"x":96,"y":96,"fileNum":8140,"id":19414,"width":32,"height":32},{"x":0,"y":0,"fileNum":8141,"id":19415,"width":129,"height":230},{"x":0,"y":0,"fileNum":9005,"id":19416,"width":254,"height":274},{"x":0,"y":0,"fileNum":4055,"id":19417,"width":25,"height":45},{"x":25,"y":0,"fileNum":4055,"id":19418,"width":25,"height":45},{"x":50,"y":0,"fileNum":4055,"id":19419,"width":25,"height":45},{"x":75,"y":0,"fileNum":4055,"id":19420,"width":25,"height":45},{"x":100,"y":0,"fileNum":4055,"id":19421,"width":25,"height":45},{"x":125,"y":0,"fileNum":4055,"id":19422,"width":25,"height":45},{"x":0,"y":45,"fileNum":4055,"id":19423,"width":25,"height":45},{"x":25,"y":45,"fileNum":4055,"id":19424,"width":25,"height":45},{"x":50,"y":45,"fileNum":4055,"id":19425,"width":25,"height":45},{"x":75,"y":45,"fileNum":4055,"id":19426,"width":25,"height":45},{"x":100,"y":45,"fileNum":4055,"id":19427,"width":25,"height":45},{"x":125,"y":45,"fileNum":4055,"id":19428,"width":25,"height":45},{"x":0,"y":90,"fileNum":4055,"id":19429,"width":25,"height":45},{"x":25,"y":90,"fileNum":4055,"id":19430,"width":25,"height":45},{"x":50,"y":90,"fileNum":4055,"id":19431,"width":25,"height":45},{"x":75,"y":90,"fileNum":4055,"id":19432,"width":25,"height":45},{"x":100,"y":90,"fileNum":4055,"id":19433,"width":25,"height":45},{"x":0,"y":135,"fileNum":4055,"id":19434,"width":25,"height":45},{"x":25,"y":135,"fileNum":4055,"id":19435,"width":25,"height":45},{"x":50,"y":135,"fileNum":4055,"id":19436,"width":25,"height":45},{"x":75,"y":135,"fileNum":4055,"id":19437,"width":25,"height":45},{"x":100,"y":135,"fileNum":4055,"id":19438,"width":25,"height":45},{"x":0,"y":0,"fileNum":2041,"id":19443,"width":17,"height":50},{"x":17,"y":0,"fileNum":2041,"id":19444,"width":17,"height":50},{"x":34,"y":0,"fileNum":2041,"id":19445,"width":17,"height":50},{"x":51,"y":0,"fileNum":2041,"id":19446,"width":17,"height":50},{"x":0,"y":0,"fileNum":16020,"id":19447,"width":25,"height":45},{"x":25,"y":0,"fileNum":16020,"id":19448,"width":25,"height":45},{"x":50,"y":0,"fileNum":16020,"id":19449,"width":25,"height":45},{"x":75,"y":0,"fileNum":16020,"id":19450,"width":25,"height":45},{"x":100,"y":0,"fileNum":16020,"id":19451,"width":25,"height":45},{"x":125,"y":0,"fileNum":16020,"id":19452,"width":25,"height":45},{"x":0,"y":45,"fileNum":16020,"id":19453,"width":25,"height":45},{"x":25,"y":45,"fileNum":16020,"id":19454,"width":25,"height":45},{"x":50,"y":45,"fileNum":16020,"id":19455,"width":25,"height":45},{"x":75,"y":45,"fileNum":16020,"id":19456,"width":25,"height":45},{"x":100,"y":45,"fileNum":16020,"id":19457,"width":25,"height":45},{"x":125,"y":45,"fileNum":16020,"id":19458,"width":25,"height":45},{"x":0,"y":90,"fileNum":16020,"id":19459,"width":25,"height":45},{"x":25,"y":90,"fileNum":16020,"id":19460,"width":25,"height":45},{"x":50,"y":90,"fileNum":16020,"id":19461,"width":25,"height":45},{"x":75,"y":90,"fileNum":16020,"id":19462,"width":25,"height":45},{"x":100,"y":90,"fileNum":16020,"id":19463,"width":25,"height":45},{"x":0,"y":135,"fileNum":16020,"id":19464,"width":25,"height":45},{"x":25,"y":135,"fileNum":16020,"id":19465,"width":25,"height":45},{"x":50,"y":135,"fileNum":16020,"id":19466,"width":25,"height":45},{"x":75,"y":135,"fileNum":16020,"id":19467,"width":25,"height":45},{"x":100,"y":135,"fileNum":16020,"id":19468,"width":25,"height":45},{"x":0,"y":0,"fileNum":16034,"id":19473,"width":32,"height":32},{"x":0,"y":0,"fileNum":4056,"id":19474,"width":115,"height":118},{"x":115,"y":0,"fileNum":4056,"id":19475,"width":115,"height":118},{"x":230,"y":0,"fileNum":4056,"id":19476,"width":115,"height":118},{"x":345,"y":0,"fileNum":4056,"id":19477,"width":115,"height":118},{"x":460,"y":0,"fileNum":4056,"id":19478,"width":115,"height":118},{"x":575,"y":0,"fileNum":4056,"id":19479,"width":115,"height":118},{"x":690,"y":0,"fileNum":4056,"id":19480,"width":115,"height":118},{"x":805,"y":0,"fileNum":4056,"id":19481,"width":115,"height":118},{"x":0,"y":118,"fileNum":4056,"id":19482,"width":115,"height":118},{"x":115,"y":118,"fileNum":4056,"id":19483,"width":115,"height":118},{"x":230,"y":118,"fileNum":4056,"id":19484,"width":115,"height":118},{"x":345,"y":118,"fileNum":4056,"id":19485,"width":115,"height":118},{"x":460,"y":118,"fileNum":4056,"id":19486,"width":115,"height":118},{"x":575,"y":118,"fileNum":4056,"id":19487,"width":115,"height":118},{"x":690,"y":118,"fileNum":4056,"id":19488,"width":115,"height":118},{"x":805,"y":118,"fileNum":4056,"id":19489,"width":115,"height":118},{"x":0,"y":236,"fileNum":4056,"id":19490,"width":115,"height":118},{"x":115,"y":236,"fileNum":4056,"id":19491,"width":115,"height":118},{"x":230,"y":236,"fileNum":4056,"id":19492,"width":115,"height":118},{"x":345,"y":236,"fileNum":4056,"id":19493,"width":115,"height":118},{"x":460,"y":236,"fileNum":4056,"id":19494,"width":115,"height":118},{"x":575,"y":236,"fileNum":4056,"id":19495,"width":115,"height":118},{"x":690,"y":236,"fileNum":4056,"id":19496,"width":115,"height":118},{"x":805,"y":236,"fileNum":4056,"id":19497,"width":115,"height":118},{"x":0,"y":354,"fileNum":4056,"id":19498,"width":115,"height":118},{"x":115,"y":354,"fileNum":4056,"id":19499,"width":115,"height":118},{"x":230,"y":354,"fileNum":4056,"id":19500,"width":115,"height":118},{"x":345,"y":354,"fileNum":4056,"id":19501,"width":115,"height":118},{"x":460,"y":354,"fileNum":4056,"id":19502,"width":115,"height":118},{"x":575,"y":354,"fileNum":4056,"id":19503,"width":115,"height":118},{"x":690,"y":354,"fileNum":4056,"id":19504,"width":115,"height":118},{"x":805,"y":354,"fileNum":4056,"id":19505,"width":115,"height":118},{"x":0,"y":0,"fileNum":4057,"id":19510,"width":115,"height":118},{"x":115,"y":0,"fileNum":4057,"id":19511,"width":115,"height":118},{"x":230,"y":0,"fileNum":4057,"id":19512,"width":115,"height":118},{"x":345,"y":0,"fileNum":4057,"id":19513,"width":115,"height":118},{"x":460,"y":0,"fileNum":4057,"id":19514,"width":115,"height":118},{"x":575,"y":0,"fileNum":4057,"id":19515,"width":115,"height":118},{"x":690,"y":0,"fileNum":4057,"id":19516,"width":115,"height":118},{"x":805,"y":0,"fileNum":4057,"id":19517,"width":115,"height":118},{"x":0,"y":118,"fileNum":4057,"id":19518,"width":115,"height":118},{"x":115,"y":118,"fileNum":4057,"id":19519,"width":115,"height":118},{"x":230,"y":118,"fileNum":4057,"id":19520,"width":115,"height":118},{"x":345,"y":118,"fileNum":4057,"id":19521,"width":115,"height":118},{"x":460,"y":118,"fileNum":4057,"id":19522,"width":115,"height":118},{"x":575,"y":118,"fileNum":4057,"id":19523,"width":115,"height":118},{"x":690,"y":118,"fileNum":4057,"id":19524,"width":115,"height":118},{"x":805,"y":118,"fileNum":4057,"id":19525,"width":115,"height":118},{"x":0,"y":236,"fileNum":4057,"id":19526,"width":115,"height":118},{"x":115,"y":236,"fileNum":4057,"id":19527,"width":115,"height":118},{"x":230,"y":236,"fileNum":4057,"id":19528,"width":115,"height":118},{"x":345,"y":236,"fileNum":4057,"id":19529,"width":115,"height":118},{"x":460,"y":236,"fileNum":4057,"id":19530,"width":115,"height":118},{"x":575,"y":236,"fileNum":4057,"id":19531,"width":115,"height":118},{"x":690,"y":236,"fileNum":4057,"id":19532,"width":115,"height":118},{"x":805,"y":236,"fileNum":4057,"id":19533,"width":115,"height":118},{"x":0,"y":354,"fileNum":4057,"id":19534,"width":115,"height":118},{"x":115,"y":354,"fileNum":4057,"id":19535,"width":115,"height":118},{"x":230,"y":354,"fileNum":4057,"id":19536,"width":115,"height":118},{"x":345,"y":354,"fileNum":4057,"id":19537,"width":115,"height":118},{"x":460,"y":354,"fileNum":4057,"id":19538,"width":115,"height":118},{"x":575,"y":354,"fileNum":4057,"id":19539,"width":115,"height":118},{"x":690,"y":354,"fileNum":4057,"id":19540,"width":115,"height":118},{"x":805,"y":354,"fileNum":4057,"id":19541,"width":115,"height":118},{"x":0,"y":0,"fileNum":4058,"id":19546,"width":115,"height":118},{"x":115,"y":0,"fileNum":4058,"id":19547,"width":115,"height":118},{"x":230,"y":0,"fileNum":4058,"id":19548,"width":115,"height":118},{"x":345,"y":0,"fileNum":4058,"id":19549,"width":115,"height":118},{"x":460,"y":0,"fileNum":4058,"id":19550,"width":115,"height":118},{"x":575,"y":0,"fileNum":4058,"id":19551,"width":115,"height":118},{"x":690,"y":0,"fileNum":4058,"id":19552,"width":115,"height":118},{"x":805,"y":0,"fileNum":4058,"id":19553,"width":115,"height":118},{"x":0,"y":118,"fileNum":4058,"id":19554,"width":115,"height":118},{"x":115,"y":118,"fileNum":4058,"id":19555,"width":115,"height":118},{"x":230,"y":118,"fileNum":4058,"id":19556,"width":115,"height":118},{"x":345,"y":118,"fileNum":4058,"id":19557,"width":115,"height":118},{"x":460,"y":118,"fileNum":4058,"id":19558,"width":115,"height":118},{"x":575,"y":118,"fileNum":4058,"id":19559,"width":115,"height":118},{"x":690,"y":118,"fileNum":4058,"id":19560,"width":115,"height":118},{"x":805,"y":118,"fileNum":4058,"id":19561,"width":115,"height":118},{"x":0,"y":236,"fileNum":4058,"id":19562,"width":115,"height":118},{"x":115,"y":236,"fileNum":4058,"id":19563,"width":115,"height":118},{"x":230,"y":236,"fileNum":4058,"id":19564,"width":115,"height":118},{"x":345,"y":236,"fileNum":4058,"id":19565,"width":115,"height":118},{"x":460,"y":236,"fileNum":4058,"id":19566,"width":115,"height":118},{"x":575,"y":236,"fileNum":4058,"id":19567,"width":115,"height":118},{"x":690,"y":236,"fileNum":4058,"id":19568,"width":115,"height":118},{"x":805,"y":236,"fileNum":4058,"id":19569,"width":115,"height":118},{"x":0,"y":354,"fileNum":4058,"id":19570,"width":115,"height":118},{"x":115,"y":354,"fileNum":4058,"id":19571,"width":115,"height":118},{"x":230,"y":354,"fileNum":4058,"id":19572,"width":115,"height":118},{"x":345,"y":354,"fileNum":4058,"id":19573,"width":115,"height":118},{"x":460,"y":354,"fileNum":4058,"id":19574,"width":115,"height":118},{"x":575,"y":354,"fileNum":4058,"id":19575,"width":115,"height":118},{"x":690,"y":354,"fileNum":4058,"id":19576,"width":115,"height":118},{"x":805,"y":354,"fileNum":4058,"id":19577,"width":115,"height":118},{"x":0,"y":0,"fileNum":4059,"id":19582,"width":74,"height":49},{"x":74,"y":0,"fileNum":4059,"id":19583,"width":74,"height":49},{"x":148,"y":0,"fileNum":4059,"id":19584,"width":74,"height":49},{"x":222,"y":0,"fileNum":4059,"id":19585,"width":74,"height":49},{"x":0,"y":49,"fileNum":4059,"id":19586,"width":74,"height":49},{"x":74,"y":49,"fileNum":4059,"id":19587,"width":74,"height":49},{"x":148,"y":49,"fileNum":4059,"id":19588,"width":74,"height":49},{"x":222,"y":49,"fileNum":4059,"id":19589,"width":74,"height":49},{"x":0,"y":98,"fileNum":4059,"id":19590,"width":74,"height":49},{"x":74,"y":98,"fileNum":4059,"id":19591,"width":74,"height":49},{"x":148,"y":98,"fileNum":4059,"id":19592,"width":74,"height":49},{"x":222,"y":98,"fileNum":4059,"id":19593,"width":74,"height":49},{"x":0,"y":147,"fileNum":4059,"id":19594,"width":74,"height":49},{"x":74,"y":147,"fileNum":4059,"id":19595,"width":74,"height":49},{"x":148,"y":147,"fileNum":4059,"id":19596,"width":74,"height":49},{"x":222,"y":147,"fileNum":4059,"id":19597,"width":74,"height":49},{"x":0,"y":0,"fileNum":4060,"id":19602,"width":160,"height":160},{"x":160,"y":0,"fileNum":4060,"id":19603,"width":160,"height":160},{"x":320,"y":0,"fileNum":4060,"id":19604,"width":160,"height":160},{"x":480,"y":0,"fileNum":4060,"id":19605,"width":160,"height":160},{"x":640,"y":0,"fileNum":4060,"id":19606,"width":160,"height":160},{"x":800,"y":0,"fileNum":4060,"id":19607,"width":160,"height":160},{"x":960,"y":0,"fileNum":4060,"id":19608,"width":160,"height":160},{"x":1120,"y":0,"fileNum":4060,"id":19609,"width":160,"height":160},{"x":0,"y":160,"fileNum":4060,"id":19610,"width":160,"height":160},{"x":160,"y":160,"fileNum":4060,"id":19611,"width":160,"height":160},{"x":320,"y":160,"fileNum":4060,"id":19612,"width":160,"height":160},{"x":480,"y":160,"fileNum":4060,"id":19613,"width":160,"height":160},{"x":640,"y":160,"fileNum":4060,"id":19614,"width":160,"height":160},{"x":800,"y":160,"fileNum":4060,"id":19615,"width":160,"height":160},{"x":960,"y":160,"fileNum":4060,"id":19616,"width":160,"height":160},{"x":1120,"y":160,"fileNum":4060,"id":19617,"width":160,"height":160},{"x":0,"y":320,"fileNum":4060,"id":19618,"width":160,"height":160},{"x":160,"y":320,"fileNum":4060,"id":19619,"width":160,"height":160},{"x":320,"y":320,"fileNum":4060,"id":19620,"width":160,"height":160},{"x":480,"y":320,"fileNum":4060,"id":19621,"width":160,"height":160},{"x":640,"y":320,"fileNum":4060,"id":19622,"width":160,"height":160},{"x":800,"y":320,"fileNum":4060,"id":19623,"width":160,"height":160},{"x":0,"y":480,"fileNum":4060,"id":19624,"width":160,"height":160},{"x":160,"y":480,"fileNum":4060,"id":19625,"width":160,"height":160},{"x":320,"y":480,"fileNum":4060,"id":19626,"width":160,"height":160},{"x":480,"y":480,"fileNum":4060,"id":19627,"width":160,"height":160},{"x":640,"y":480,"fileNum":4060,"id":19628,"width":160,"height":160},{"x":800,"y":480,"fileNum":4060,"id":19629,"width":160,"height":160},{"x":0,"y":0,"fileNum":4061,"id":19634,"width":25,"height":60},{"x":25,"y":0,"fileNum":4061,"id":19635,"width":25,"height":60},{"x":50,"y":0,"fileNum":4061,"id":19636,"width":25,"height":60},{"x":75,"y":0,"fileNum":4061,"id":19637,"width":25,"height":60},{"x":100,"y":0,"fileNum":4061,"id":19638,"width":25,"height":60},{"x":125,"y":0,"fileNum":4061,"id":19639,"width":25,"height":60},{"x":0,"y":60,"fileNum":4061,"id":19640,"width":25,"height":60},{"x":25,"y":60,"fileNum":4061,"id":19641,"width":25,"height":60},{"x":50,"y":60,"fileNum":4061,"id":19642,"width":25,"height":60},{"x":75,"y":60,"fileNum":4061,"id":19643,"width":25,"height":60},{"x":100,"y":60,"fileNum":4061,"id":19644,"width":25,"height":60},{"x":125,"y":60,"fileNum":4061,"id":19645,"width":25,"height":60},{"x":0,"y":120,"fileNum":4061,"id":19646,"width":25,"height":60},{"x":25,"y":120,"fileNum":4061,"id":19647,"width":25,"height":60},{"x":50,"y":120,"fileNum":4061,"id":19648,"width":25,"height":60},{"x":75,"y":120,"fileNum":4061,"id":19649,"width":25,"height":60},{"x":100,"y":120,"fileNum":4061,"id":19650,"width":25,"height":60},{"x":0,"y":180,"fileNum":4061,"id":19651,"width":25,"height":58},{"x":25,"y":180,"fileNum":4061,"id":19652,"width":25,"height":58},{"x":50,"y":180,"fileNum":4061,"id":19653,"width":25,"height":58},{"x":75,"y":180,"fileNum":4061,"id":19654,"width":25,"height":58},{"x":100,"y":180,"fileNum":4061,"id":19655,"width":25,"height":58},{"x":0,"y":0,"fileNum":4062,"id":19660,"width":288,"height":300},{"x":288,"y":0,"fileNum":4062,"id":19661,"width":288,"height":300},{"x":576,"y":0,"fileNum":4062,"id":19662,"width":288,"height":300},{"x":0,"y":300,"fileNum":4062,"id":19663,"width":288,"height":300},{"x":288,"y":300,"fileNum":4062,"id":19664,"width":288,"height":300},{"x":576,"y":300,"fileNum":4062,"id":19665,"width":288,"height":300},{"x":0,"y":0,"fileNum":4063,"id":19666,"width":288,"height":300},{"x":288,"y":0,"fileNum":4063,"id":19667,"width":288,"height":300},{"x":576,"y":0,"fileNum":4063,"id":19668,"width":288,"height":300},{"x":0,"y":300,"fileNum":4063,"id":19669,"width":288,"height":300},{"x":288,"y":300,"fileNum":4063,"id":19670,"width":288,"height":300},{"x":576,"y":300,"fileNum":4063,"id":19671,"width":288,"height":300},{"x":0,"y":0,"fileNum":4064,"id":19672,"width":288,"height":300},{"x":288,"y":0,"fileNum":4064,"id":19673,"width":288,"height":300},{"x":576,"y":0,"fileNum":4064,"id":19674,"width":288,"height":300},{"x":0,"y":300,"fileNum":4064,"id":19675,"width":288,"height":300},{"x":288,"y":300,"fileNum":4064,"id":19676,"width":288,"height":300},{"x":576,"y":300,"fileNum":4064,"id":19677,"width":288,"height":300},{"x":0,"y":0,"fileNum":4065,"id":19678,"width":288,"height":300},{"x":288,"y":0,"fileNum":4065,"id":19679,"width":288,"height":300},{"x":576,"y":0,"fileNum":4065,"id":19680,"width":288,"height":300},{"x":0,"y":300,"fileNum":4065,"id":19681,"width":288,"height":300},{"x":288,"y":300,"fileNum":4065,"id":19682,"width":288,"height":300},{"x":576,"y":300,"fileNum":4065,"id":19683,"width":288,"height":300},{"x":0,"y":0,"fileNum":16017,"id":19688,"width":25,"height":45},{"x":25,"y":0,"fileNum":16017,"id":19689,"width":25,"height":45},{"x":50,"y":0,"fileNum":16017,"id":19690,"width":25,"height":45},{"x":75,"y":0,"fileNum":16017,"id":19691,"width":25,"height":45},{"x":100,"y":0,"fileNum":16017,"id":19692,"width":25,"height":45},{"x":125,"y":0,"fileNum":16017,"id":19693,"width":25,"height":45},{"x":0,"y":45,"fileNum":16017,"id":19694,"width":25,"height":45},{"x":25,"y":45,"fileNum":16017,"id":19695,"width":25,"height":45},{"x":50,"y":45,"fileNum":16017,"id":19696,"width":25,"height":45},{"x":75,"y":45,"fileNum":16017,"id":19697,"width":25,"height":45},{"x":100,"y":45,"fileNum":16017,"id":19698,"width":25,"height":45},{"x":125,"y":45,"fileNum":16017,"id":19699,"width":25,"height":45},{"x":0,"y":90,"fileNum":16017,"id":19700,"width":25,"height":45},{"x":25,"y":90,"fileNum":16017,"id":19701,"width":25,"height":45},{"x":50,"y":90,"fileNum":16017,"id":19702,"width":25,"height":45},{"x":75,"y":90,"fileNum":16017,"id":19703,"width":25,"height":45},{"x":100,"y":90,"fileNum":16017,"id":19704,"width":25,"height":45},{"x":0,"y":135,"fileNum":16017,"id":19705,"width":25,"height":45},{"x":25,"y":135,"fileNum":16017,"id":19706,"width":25,"height":45},{"x":50,"y":135,"fileNum":16017,"id":19707,"width":25,"height":45},{"x":75,"y":135,"fileNum":16017,"id":19708,"width":25,"height":45},{"x":100,"y":135,"fileNum":16017,"id":19709,"width":25,"height":45},{"x":0,"y":0,"fileNum":10001,"id":19714,"width":245,"height":256},{"x":0,"y":0,"fileNum":7001,"id":19715,"width":320,"height":182},{"x":0,"y":0,"fileNum":18008,"id":19716,"width":17,"height":16},{"x":17,"y":0,"fileNum":18008,"id":19717,"width":17,"height":16},{"x":34,"y":0,"fileNum":18008,"id":19718,"width":17,"height":16},{"x":51,"y":0,"fileNum":18008,"id":19719,"width":17,"height":16},{"x":0,"y":0,"fileNum":18009,"id":19720,"width":17,"height":16},{"x":17,"y":0,"fileNum":18009,"id":19721,"width":17,"height":16},{"x":34,"y":0,"fileNum":18009,"id":19722,"width":17,"height":16},{"x":51,"y":0,"fileNum":18009,"id":19723,"width":17,"height":16},{"x":0,"y":0,"fileNum":21000,"id":19724,"width":25,"height":45},{"x":25,"y":0,"fileNum":21000,"id":19725,"width":25,"height":45},{"x":50,"y":0,"fileNum":21000,"id":19726,"width":25,"height":45},{"x":75,"y":0,"fileNum":21000,"id":19727,"width":25,"height":45},{"x":100,"y":0,"fileNum":21000,"id":19728,"width":25,"height":45},{"x":125,"y":0,"fileNum":21000,"id":19729,"width":25,"height":45},{"x":0,"y":45,"fileNum":21000,"id":19730,"width":25,"height":45},{"x":25,"y":45,"fileNum":21000,"id":19731,"width":25,"height":45},{"x":50,"y":45,"fileNum":21000,"id":19732,"width":25,"height":45},{"x":75,"y":45,"fileNum":21000,"id":19733,"width":25,"height":45},{"x":100,"y":45,"fileNum":21000,"id":19734,"width":25,"height":45},{"x":125,"y":45,"fileNum":21000,"id":19735,"width":25,"height":45},{"x":0,"y":90,"fileNum":21000,"id":19736,"width":25,"height":45},{"x":25,"y":90,"fileNum":21000,"id":19737,"width":25,"height":45},{"x":50,"y":90,"fileNum":21000,"id":19738,"width":25,"height":45},{"x":75,"y":90,"fileNum":21000,"id":19739,"width":25,"height":45},{"x":100,"y":90,"fileNum":21000,"id":19740,"width":25,"height":45},{"x":0,"y":135,"fileNum":21000,"id":19741,"width":25,"height":45},{"x":25,"y":135,"fileNum":21000,"id":19742,"width":25,"height":45},{"x":50,"y":135,"fileNum":21000,"id":19743,"width":25,"height":45},{"x":75,"y":135,"fileNum":21000,"id":19744,"width":25,"height":45},{"x":100,"y":135,"fileNum":21000,"id":19745,"width":25,"height":45},{"x":0,"y":0,"fileNum":16021,"id":19750,"width":25,"height":45},{"x":25,"y":0,"fileNum":16021,"id":19751,"width":25,"height":45},{"x":50,"y":0,"fileNum":16021,"id":19752,"width":25,"height":45},{"x":75,"y":0,"fileNum":16021,"id":19753,"width":25,"height":45},{"x":100,"y":0,"fileNum":16021,"id":19754,"width":25,"height":45},{"x":125,"y":0,"fileNum":16021,"id":19755,"width":25,"height":45},{"x":0,"y":45,"fileNum":16021,"id":19756,"width":25,"height":45},{"x":25,"y":45,"fileNum":16021,"id":19757,"width":25,"height":45},{"x":50,"y":45,"fileNum":16021,"id":19758,"width":25,"height":45},{"x":75,"y":45,"fileNum":16021,"id":19759,"width":25,"height":45},{"x":100,"y":45,"fileNum":16021,"id":19760,"width":25,"height":45},{"x":125,"y":45,"fileNum":16021,"id":19761,"width":25,"height":45},{"x":0,"y":90,"fileNum":16021,"id":19762,"width":25,"height":45},{"x":25,"y":90,"fileNum":16021,"id":19763,"width":25,"height":45},{"x":50,"y":90,"fileNum":16021,"id":19764,"width":25,"height":45},{"x":75,"y":90,"fileNum":16021,"id":19765,"width":25,"height":45},{"x":100,"y":90,"fileNum":16021,"id":19766,"width":25,"height":45},{"x":0,"y":135,"fileNum":16021,"id":19767,"width":25,"height":45},{"x":25,"y":135,"fileNum":16021,"id":19768,"width":25,"height":45},{"x":50,"y":135,"fileNum":16021,"id":19769,"width":25,"height":45},{"x":75,"y":135,"fileNum":16021,"id":19770,"width":25,"height":45},{"x":100,"y":135,"fileNum":16021,"id":19771,"width":25,"height":45},{"x":0,"y":0,"fileNum":16022,"id":19776,"width":25,"height":45},{"x":25,"y":0,"fileNum":16022,"id":19777,"width":25,"height":45},{"x":50,"y":0,"fileNum":16022,"id":19778,"width":25,"height":45},{"x":75,"y":0,"fileNum":16022,"id":19779,"width":25,"height":45},{"x":100,"y":0,"fileNum":16022,"id":19780,"width":25,"height":45},{"x":125,"y":0,"fileNum":16022,"id":19781,"width":25,"height":45},{"x":0,"y":45,"fileNum":16022,"id":19782,"width":25,"height":45},{"x":25,"y":45,"fileNum":16022,"id":19783,"width":25,"height":45},{"x":50,"y":45,"fileNum":16022,"id":19784,"width":25,"height":45},{"x":75,"y":45,"fileNum":16022,"id":19785,"width":25,"height":45},{"x":100,"y":45,"fileNum":16022,"id":19786,"width":25,"height":45},{"x":125,"y":45,"fileNum":16022,"id":19787,"width":25,"height":45},{"x":0,"y":90,"fileNum":16022,"id":19788,"width":25,"height":45},{"x":25,"y":90,"fileNum":16022,"id":19789,"width":25,"height":45},{"x":50,"y":90,"fileNum":16022,"id":19790,"width":25,"height":45},{"x":75,"y":90,"fileNum":16022,"id":19791,"width":25,"height":45},{"x":100,"y":90,"fileNum":16022,"id":19792,"width":25,"height":45},{"x":0,"y":135,"fileNum":16022,"id":19793,"width":25,"height":45},{"x":25,"y":135,"fileNum":16022,"id":19794,"width":25,"height":45},{"x":50,"y":135,"fileNum":16022,"id":19795,"width":25,"height":45},{"x":75,"y":135,"fileNum":16022,"id":19796,"width":25,"height":45},{"x":100,"y":135,"fileNum":16022,"id":19797,"width":25,"height":45},{"x":0,"y":0,"fileNum":16023,"id":19802,"width":25,"height":45},{"x":25,"y":0,"fileNum":16023,"id":19803,"width":25,"height":45},{"x":50,"y":0,"fileNum":16023,"id":19804,"width":25,"height":45},{"x":75,"y":0,"fileNum":16023,"id":19805,"width":25,"height":45},{"x":100,"y":0,"fileNum":16023,"id":19806,"width":25,"height":45},{"x":125,"y":0,"fileNum":16023,"id":19807,"width":25,"height":45},{"x":0,"y":45,"fileNum":16023,"id":19808,"width":25,"height":45},{"x":25,"y":45,"fileNum":16023,"id":19809,"width":25,"height":45},{"x":50,"y":45,"fileNum":16023,"id":19810,"width":25,"height":45},{"x":75,"y":45,"fileNum":16023,"id":19811,"width":25,"height":45},{"x":100,"y":45,"fileNum":16023,"id":19812,"width":25,"height":45},{"x":125,"y":45,"fileNum":16023,"id":19813,"width":25,"height":45},{"x":0,"y":90,"fileNum":16023,"id":19814,"width":25,"height":45},{"x":25,"y":90,"fileNum":16023,"id":19815,"width":25,"height":45},{"x":50,"y":90,"fileNum":16023,"id":19816,"width":25,"height":45},{"x":75,"y":90,"fileNum":16023,"id":19817,"width":25,"height":45},{"x":100,"y":90,"fileNum":16023,"id":19818,"width":25,"height":45},{"x":0,"y":135,"fileNum":16023,"id":19819,"width":25,"height":45},{"x":25,"y":135,"fileNum":16023,"id":19820,"width":25,"height":45},{"x":50,"y":135,"fileNum":16023,"id":19821,"width":25,"height":45},{"x":75,"y":135,"fileNum":16023,"id":19822,"width":25,"height":45},{"x":100,"y":135,"fileNum":16023,"id":19823,"width":25,"height":45},{"x":0,"y":0,"fileNum":16024,"id":19828,"width":25,"height":45},{"x":25,"y":0,"fileNum":16024,"id":19829,"width":25,"height":45},{"x":50,"y":0,"fileNum":16024,"id":19830,"width":25,"height":45},{"x":75,"y":0,"fileNum":16024,"id":19831,"width":25,"height":45},{"x":100,"y":0,"fileNum":16024,"id":19832,"width":25,"height":45},{"x":125,"y":0,"fileNum":16024,"id":19833,"width":25,"height":45},{"x":0,"y":45,"fileNum":16024,"id":19834,"width":25,"height":45},{"x":25,"y":45,"fileNum":16024,"id":19835,"width":25,"height":45},{"x":50,"y":45,"fileNum":16024,"id":19836,"width":25,"height":45},{"x":75,"y":45,"fileNum":16024,"id":19837,"width":25,"height":45},{"x":100,"y":45,"fileNum":16024,"id":19838,"width":25,"height":45},{"x":125,"y":45,"fileNum":16024,"id":19839,"width":25,"height":45},{"x":0,"y":90,"fileNum":16024,"id":19840,"width":25,"height":45},{"x":25,"y":90,"fileNum":16024,"id":19841,"width":25,"height":45},{"x":50,"y":90,"fileNum":16024,"id":19842,"width":25,"height":45},{"x":75,"y":90,"fileNum":16024,"id":19843,"width":25,"height":45},{"x":100,"y":90,"fileNum":16024,"id":19844,"width":25,"height":45},{"x":0,"y":135,"fileNum":16024,"id":19845,"width":25,"height":45},{"x":25,"y":135,"fileNum":16024,"id":19846,"width":25,"height":45},{"x":50,"y":135,"fileNum":16024,"id":19847,"width":25,"height":45},{"x":75,"y":135,"fileNum":16024,"id":19848,"width":25,"height":45},{"x":100,"y":135,"fileNum":16024,"id":19849,"width":25,"height":45},{"x":0,"y":0,"fileNum":16025,"id":19854,"width":25,"height":45},{"x":25,"y":0,"fileNum":16025,"id":19855,"width":25,"height":45},{"x":50,"y":0,"fileNum":16025,"id":19856,"width":25,"height":45},{"x":75,"y":0,"fileNum":16025,"id":19857,"width":25,"height":45},{"x":100,"y":0,"fileNum":16025,"id":19858,"width":25,"height":45},{"x":125,"y":0,"fileNum":16025,"id":19859,"width":25,"height":45},{"x":0,"y":45,"fileNum":16025,"id":19860,"width":25,"height":45},{"x":25,"y":45,"fileNum":16025,"id":19861,"width":25,"height":45},{"x":50,"y":45,"fileNum":16025,"id":19862,"width":25,"height":45},{"x":75,"y":45,"fileNum":16025,"id":19863,"width":25,"height":45},{"x":100,"y":45,"fileNum":16025,"id":19864,"width":25,"height":45},{"x":125,"y":45,"fileNum":16025,"id":19865,"width":25,"height":45},{"x":0,"y":90,"fileNum":16025,"id":19866,"width":25,"height":45},{"x":25,"y":90,"fileNum":16025,"id":19867,"width":25,"height":45},{"x":50,"y":90,"fileNum":16025,"id":19868,"width":25,"height":45},{"x":75,"y":90,"fileNum":16025,"id":19869,"width":25,"height":45},{"x":100,"y":90,"fileNum":16025,"id":19870,"width":25,"height":45},{"x":0,"y":135,"fileNum":16025,"id":19871,"width":25,"height":45},{"x":25,"y":135,"fileNum":16025,"id":19872,"width":25,"height":45},{"x":50,"y":135,"fileNum":16025,"id":19873,"width":25,"height":45},{"x":75,"y":135,"fileNum":16025,"id":19874,"width":25,"height":45},{"x":100,"y":135,"fileNum":16025,"id":19875,"width":25,"height":45},{"x":0,"y":0,"fileNum":16026,"id":19880,"width":25,"height":45},{"x":25,"y":0,"fileNum":16026,"id":19881,"width":25,"height":45},{"x":50,"y":0,"fileNum":16026,"id":19882,"width":25,"height":45},{"x":75,"y":0,"fileNum":16026,"id":19883,"width":25,"height":45},{"x":100,"y":0,"fileNum":16026,"id":19884,"width":25,"height":45},{"x":125,"y":0,"fileNum":16026,"id":19885,"width":25,"height":45},{"x":0,"y":45,"fileNum":16026,"id":19886,"width":25,"height":45},{"x":25,"y":45,"fileNum":16026,"id":19887,"width":25,"height":45},{"x":50,"y":45,"fileNum":16026,"id":19888,"width":25,"height":45},{"x":75,"y":45,"fileNum":16026,"id":19889,"width":25,"height":45},{"x":100,"y":45,"fileNum":16026,"id":19890,"width":25,"height":45},{"x":125,"y":45,"fileNum":16026,"id":19891,"width":25,"height":45},{"x":0,"y":90,"fileNum":16026,"id":19892,"width":25,"height":45},{"x":25,"y":90,"fileNum":16026,"id":19893,"width":25,"height":45},{"x":50,"y":90,"fileNum":16026,"id":19894,"width":25,"height":45},{"x":75,"y":90,"fileNum":16026,"id":19895,"width":25,"height":45},{"x":100,"y":90,"fileNum":16026,"id":19896,"width":25,"height":45},{"x":0,"y":135,"fileNum":16026,"id":19897,"width":25,"height":45},{"x":25,"y":135,"fileNum":16026,"id":19898,"width":25,"height":45},{"x":50,"y":135,"fileNum":16026,"id":19899,"width":25,"height":45},{"x":75,"y":135,"fileNum":16026,"id":19900,"width":25,"height":45},{"x":100,"y":135,"fileNum":16026,"id":19901,"width":25,"height":45},{"x":0,"y":0,"fileNum":16027,"id":19906,"width":25,"height":45},{"x":25,"y":0,"fileNum":16027,"id":19907,"width":25,"height":45},{"x":50,"y":0,"fileNum":16027,"id":19908,"width":25,"height":45},{"x":75,"y":0,"fileNum":16027,"id":19909,"width":25,"height":45},{"x":100,"y":0,"fileNum":16027,"id":19910,"width":25,"height":45},{"x":125,"y":0,"fileNum":16027,"id":19911,"width":25,"height":45},{"x":0,"y":45,"fileNum":16027,"id":19912,"width":25,"height":45},{"x":25,"y":45,"fileNum":16027,"id":19913,"width":25,"height":45},{"x":50,"y":45,"fileNum":16027,"id":19914,"width":25,"height":45},{"x":75,"y":45,"fileNum":16027,"id":19915,"width":25,"height":45},{"x":100,"y":45,"fileNum":16027,"id":19916,"width":25,"height":45},{"x":125,"y":45,"fileNum":16027,"id":19917,"width":25,"height":45},{"x":0,"y":90,"fileNum":16027,"id":19918,"width":25,"height":45},{"x":25,"y":90,"fileNum":16027,"id":19919,"width":25,"height":45},{"x":50,"y":90,"fileNum":16027,"id":19920,"width":25,"height":45},{"x":75,"y":90,"fileNum":16027,"id":19921,"width":25,"height":45},{"x":100,"y":90,"fileNum":16027,"id":19922,"width":25,"height":45},{"x":0,"y":135,"fileNum":16027,"id":19923,"width":25,"height":45},{"x":25,"y":135,"fileNum":16027,"id":19924,"width":25,"height":45},{"x":50,"y":135,"fileNum":16027,"id":19925,"width":25,"height":45},{"x":75,"y":135,"fileNum":16027,"id":19926,"width":25,"height":45},{"x":100,"y":135,"fileNum":16027,"id":19927,"width":25,"height":45},{"x":0,"y":0,"fileNum":16028,"id":19932,"width":25,"height":45},{"x":25,"y":0,"fileNum":16028,"id":19933,"width":25,"height":45},{"x":50,"y":0,"fileNum":16028,"id":19934,"width":25,"height":45},{"x":75,"y":0,"fileNum":16028,"id":19935,"width":25,"height":45},{"x":100,"y":0,"fileNum":16028,"id":19936,"width":25,"height":45},{"x":125,"y":0,"fileNum":16028,"id":19937,"width":25,"height":45},{"x":0,"y":45,"fileNum":16028,"id":19938,"width":25,"height":45},{"x":25,"y":45,"fileNum":16028,"id":19939,"width":25,"height":45},{"x":50,"y":45,"fileNum":16028,"id":19940,"width":25,"height":45},{"x":75,"y":45,"fileNum":16028,"id":19941,"width":25,"height":45},{"x":100,"y":45,"fileNum":16028,"id":19942,"width":25,"height":45},{"x":125,"y":45,"fileNum":16028,"id":19943,"width":25,"height":45},{"x":0,"y":90,"fileNum":16028,"id":19944,"width":25,"height":45},{"x":25,"y":90,"fileNum":16028,"id":19945,"width":25,"height":45},{"x":50,"y":90,"fileNum":16028,"id":19946,"width":25,"height":45},{"x":75,"y":90,"fileNum":16028,"id":19947,"width":25,"height":45},{"x":100,"y":90,"fileNum":16028,"id":19948,"width":25,"height":45},{"x":0,"y":135,"fileNum":16028,"id":19949,"width":25,"height":45},{"x":25,"y":135,"fileNum":16028,"id":19950,"width":25,"height":45},{"x":50,"y":135,"fileNum":16028,"id":19951,"width":25,"height":45},{"x":75,"y":135,"fileNum":16028,"id":19952,"width":25,"height":45},{"x":100,"y":135,"fileNum":16028,"id":19953,"width":25,"height":45},{"x":0,"y":0,"fileNum":16029,"id":19958,"width":25,"height":45},{"x":25,"y":0,"fileNum":16029,"id":19959,"width":25,"height":45},{"x":50,"y":0,"fileNum":16029,"id":19960,"width":25,"height":45},{"x":75,"y":0,"fileNum":16029,"id":19961,"width":25,"height":45},{"x":100,"y":0,"fileNum":16029,"id":19962,"width":25,"height":45},{"x":125,"y":0,"fileNum":16029,"id":19963,"width":25,"height":45},{"x":0,"y":45,"fileNum":16029,"id":19964,"width":25,"height":45},{"x":25,"y":45,"fileNum":16029,"id":19965,"width":25,"height":45},{"x":50,"y":45,"fileNum":16029,"id":19966,"width":25,"height":45},{"x":75,"y":45,"fileNum":16029,"id":19967,"width":25,"height":45},{"x":100,"y":45,"fileNum":16029,"id":19968,"width":25,"height":45},{"x":125,"y":45,"fileNum":16029,"id":19969,"width":25,"height":45},{"x":0,"y":90,"fileNum":16029,"id":19970,"width":25,"height":45},{"x":25,"y":90,"fileNum":16029,"id":19971,"width":25,"height":45},{"x":50,"y":90,"fileNum":16029,"id":19972,"width":25,"height":45},{"x":75,"y":90,"fileNum":16029,"id":19973,"width":25,"height":45},{"x":100,"y":90,"fileNum":16029,"id":19974,"width":25,"height":45},{"x":0,"y":135,"fileNum":16029,"id":19975,"width":25,"height":45},{"x":25,"y":135,"fileNum":16029,"id":19976,"width":25,"height":45},{"x":50,"y":135,"fileNum":16029,"id":19977,"width":25,"height":45},{"x":75,"y":135,"fileNum":16029,"id":19978,"width":25,"height":45},{"x":100,"y":135,"fileNum":16029,"id":19979,"width":25,"height":45},{"x":0,"y":0,"fileNum":21001,"id":19984,"width":25,"height":45},{"x":25,"y":0,"fileNum":21001,"id":19985,"width":25,"height":45},{"x":50,"y":0,"fileNum":21001,"id":19986,"width":25,"height":45},{"x":75,"y":0,"fileNum":21001,"id":19987,"width":25,"height":45},{"x":100,"y":0,"fileNum":21001,"id":19988,"width":25,"height":45},{"x":125,"y":0,"fileNum":21001,"id":19989,"width":25,"height":45},{"x":0,"y":45,"fileNum":21001,"id":19990,"width":25,"height":45},{"x":25,"y":45,"fileNum":21001,"id":19991,"width":25,"height":45},{"x":50,"y":45,"fileNum":21001,"id":19992,"width":25,"height":45},{"x":75,"y":45,"fileNum":21001,"id":19993,"width":25,"height":45},{"x":100,"y":45,"fileNum":21001,"id":19994,"width":25,"height":45},{"x":125,"y":45,"fileNum":21001,"id":19995,"width":25,"height":45},{"x":0,"y":90,"fileNum":21001,"id":19996,"width":25,"height":45},{"x":25,"y":90,"fileNum":21001,"id":19997,"width":25,"height":45},{"x":50,"y":90,"fileNum":21001,"id":19998,"width":25,"height":45},{"x":75,"y":90,"fileNum":21001,"id":19999,"width":25,"height":45},{"x":100,"y":90,"fileNum":21001,"id":20000,"width":25,"height":45},{"x":0,"y":135,"fileNum":21001,"id":20001,"width":25,"height":45},{"x":25,"y":135,"fileNum":21001,"id":20002,"width":25,"height":45},{"x":50,"y":135,"fileNum":21001,"id":20003,"width":25,"height":45},{"x":75,"y":135,"fileNum":21001,"id":20004,"width":25,"height":45},{"x":100,"y":135,"fileNum":21001,"id":20005,"width":25,"height":45},{"x":0,"y":0,"fileNum":21002,"id":20010,"width":25,"height":45},{"x":25,"y":0,"fileNum":21002,"id":20011,"width":25,"height":45},{"x":50,"y":0,"fileNum":21002,"id":20012,"width":25,"height":45},{"x":75,"y":0,"fileNum":21002,"id":20013,"width":25,"height":45},{"x":100,"y":0,"fileNum":21002,"id":20014,"width":25,"height":45},{"x":125,"y":0,"fileNum":21002,"id":20015,"width":25,"height":45},{"x":0,"y":45,"fileNum":21002,"id":20016,"width":25,"height":45},{"x":25,"y":45,"fileNum":21002,"id":20017,"width":25,"height":45},{"x":50,"y":45,"fileNum":21002,"id":20018,"width":25,"height":45},{"x":75,"y":45,"fileNum":21002,"id":20019,"width":25,"height":45},{"x":100,"y":45,"fileNum":21002,"id":20020,"width":25,"height":45},{"x":125,"y":45,"fileNum":21002,"id":20021,"width":25,"height":45},{"x":0,"y":90,"fileNum":21002,"id":20022,"width":25,"height":45},{"x":25,"y":90,"fileNum":21002,"id":20023,"width":25,"height":45},{"x":50,"y":90,"fileNum":21002,"id":20024,"width":25,"height":45},{"x":75,"y":90,"fileNum":21002,"id":20025,"width":25,"height":45},{"x":100,"y":90,"fileNum":21002,"id":20026,"width":25,"height":45},{"x":0,"y":135,"fileNum":21002,"id":20027,"width":25,"height":45},{"x":25,"y":135,"fileNum":21002,"id":20028,"width":25,"height":45},{"x":50,"y":135,"fileNum":21002,"id":20029,"width":25,"height":45},{"x":75,"y":135,"fileNum":21002,"id":20030,"width":25,"height":45},{"x":100,"y":135,"fileNum":21002,"id":20031,"width":25,"height":45},{"x":0,"y":0,"fileNum":21003,"id":20036,"width":25,"height":45},{"x":25,"y":0,"fileNum":21003,"id":20037,"width":25,"height":45},{"x":50,"y":0,"fileNum":21003,"id":20038,"width":25,"height":45},{"x":75,"y":0,"fileNum":21003,"id":20039,"width":25,"height":45},{"x":100,"y":0,"fileNum":21003,"id":20040,"width":25,"height":45},{"x":125,"y":0,"fileNum":21003,"id":20041,"width":25,"height":45},{"x":0,"y":45,"fileNum":21003,"id":20042,"width":25,"height":45},{"x":25,"y":45,"fileNum":21003,"id":20043,"width":25,"height":45},{"x":50,"y":45,"fileNum":21003,"id":20044,"width":25,"height":45},{"x":75,"y":45,"fileNum":21003,"id":20045,"width":25,"height":45},{"x":100,"y":45,"fileNum":21003,"id":20046,"width":25,"height":45},{"x":125,"y":45,"fileNum":21003,"id":20047,"width":25,"height":45},{"x":0,"y":90,"fileNum":21003,"id":20048,"width":25,"height":45},{"x":25,"y":90,"fileNum":21003,"id":20049,"width":25,"height":45},{"x":50,"y":90,"fileNum":21003,"id":20050,"width":25,"height":45},{"x":75,"y":90,"fileNum":21003,"id":20051,"width":25,"height":45},{"x":100,"y":90,"fileNum":21003,"id":20052,"width":25,"height":45},{"x":0,"y":135,"fileNum":21003,"id":20053,"width":25,"height":45},{"x":25,"y":135,"fileNum":21003,"id":20054,"width":25,"height":45},{"x":50,"y":135,"fileNum":21003,"id":20055,"width":25,"height":45},{"x":75,"y":135,"fileNum":21003,"id":20056,"width":25,"height":45},{"x":100,"y":135,"fileNum":21003,"id":20057,"width":25,"height":45},{"x":0,"y":0,"fileNum":18013,"id":20062,"width":17,"height":16},{"x":17,"y":0,"fileNum":18013,"id":20063,"width":17,"height":16},{"x":34,"y":0,"fileNum":18013,"id":20064,"width":17,"height":16},{"x":51,"y":0,"fileNum":18013,"id":20065,"width":17,"height":16},{"x":0,"y":0,"fileNum":18010,"id":20066,"width":32,"height":32},{"x":0,"y":0,"fileNum":18011,"id":20067,"width":32,"height":32},{"x":0,"y":0,"fileNum":18012,"id":20068,"width":32,"height":32},{"x":552,"y":0,"fileNum":4001,"id":20069,"width":184,"height":166},{"x":552,"y":166,"fileNum":4001,"id":20070,"width":184,"height":166},{"x":552,"y":332,"fileNum":4001,"id":20071,"width":184,"height":166},{"x":552,"y":498,"fileNum":4001,"id":20072,"width":184,"height":166},{"x":0,"y":0,"fileNum":4036,"id":20073,"width":30,"height":24},{"x":30,"y":0,"fileNum":4036,"id":20074,"width":30,"height":24},{"x":60,"y":0,"fileNum":4036,"id":20075,"width":30,"height":24},{"x":0,"y":24,"fileNum":4036,"id":20076,"width":30,"height":24},{"x":30,"y":24,"fileNum":4036,"id":20077,"width":30,"height":24},{"x":60,"y":24,"fileNum":4036,"id":20078,"width":30,"height":24},{"x":0,"y":48,"fileNum":4036,"id":20079,"width":30,"height":24},{"x":30,"y":48,"fileNum":4036,"id":20080,"width":30,"height":24},{"x":60,"y":48,"fileNum":4036,"id":20081,"width":30,"height":24},{"x":0,"y":72,"fileNum":4036,"id":20082,"width":30,"height":24},{"x":30,"y":72,"fileNum":4036,"id":20083,"width":30,"height":24},{"x":60,"y":72,"fileNum":4036,"id":20084,"width":30,"height":24},{"x":0,"y":0,"fileNum":4037,"id":20089,"width":74,"height":49},{"x":74,"y":0,"fileNum":4037,"id":20090,"width":74,"height":49},{"x":148,"y":0,"fileNum":4037,"id":20091,"width":74,"height":49},{"x":222,"y":0,"fileNum":4037,"id":20092,"width":74,"height":49},{"x":0,"y":49,"fileNum":4037,"id":20093,"width":74,"height":49},{"x":74,"y":49,"fileNum":4037,"id":20094,"width":74,"height":49},{"x":148,"y":49,"fileNum":4037,"id":20095,"width":74,"height":49},{"x":222,"y":49,"fileNum":4037,"id":20096,"width":74,"height":49},{"x":0,"y":98,"fileNum":4037,"id":20097,"width":74,"height":49},{"x":74,"y":98,"fileNum":4037,"id":20098,"width":74,"height":49},{"x":148,"y":98,"fileNum":4037,"id":20099,"width":74,"height":49},{"x":222,"y":98,"fileNum":4037,"id":20100,"width":74,"height":49},{"x":0,"y":147,"fileNum":4037,"id":20101,"width":74,"height":49},{"x":74,"y":147,"fileNum":4037,"id":20102,"width":74,"height":49},{"x":148,"y":147,"fileNum":4037,"id":20103,"width":74,"height":49},{"x":222,"y":147,"fileNum":4037,"id":20104,"width":74,"height":49},{"x":0,"y":0,"fileNum":4038,"id":20109,"width":80,"height":50},{"x":80,"y":0,"fileNum":4038,"id":20110,"width":80,"height":50},{"x":160,"y":0,"fileNum":4038,"id":20111,"width":80,"height":50},{"x":240,"y":0,"fileNum":4038,"id":20112,"width":80,"height":50},{"x":0,"y":50,"fileNum":4038,"id":20113,"width":80,"height":50},{"x":80,"y":50,"fileNum":4038,"id":20114,"width":80,"height":50},{"x":160,"y":50,"fileNum":4038,"id":20115,"width":80,"height":50},{"x":240,"y":50,"fileNum":4038,"id":20116,"width":80,"height":50},{"x":0,"y":100,"fileNum":4038,"id":20117,"width":80,"height":50},{"x":80,"y":100,"fileNum":4038,"id":20118,"width":80,"height":50},{"x":160,"y":100,"fileNum":4038,"id":20119,"width":80,"height":50},{"x":240,"y":100,"fileNum":4038,"id":20120,"width":80,"height":50},{"x":0,"y":150,"fileNum":4038,"id":20121,"width":80,"height":50},{"x":80,"y":150,"fileNum":4038,"id":20122,"width":80,"height":50},{"x":160,"y":150,"fileNum":4038,"id":20123,"width":80,"height":50},{"x":240,"y":150,"fileNum":4038,"id":20124,"width":80,"height":50},{"x":0,"y":0,"fileNum":4035,"id":20129,"width":203,"height":124},{"x":203,"y":0,"fileNum":4035,"id":20130,"width":203,"height":124},{"x":406,"y":0,"fileNum":4035,"id":20131,"width":203,"height":124},{"x":609,"y":0,"fileNum":4035,"id":20132,"width":203,"height":124},{"x":0,"y":124,"fileNum":4035,"id":20133,"width":203,"height":124},{"x":203,"y":124,"fileNum":4035,"id":20134,"width":203,"height":124},{"x":406,"y":124,"fileNum":4035,"id":20135,"width":203,"height":124},{"x":609,"y":124,"fileNum":4035,"id":20136,"width":203,"height":124},{"x":0,"y":248,"fileNum":4035,"id":20137,"width":203,"height":124},{"x":203,"y":248,"fileNum":4035,"id":20138,"width":203,"height":124},{"x":406,"y":248,"fileNum":4035,"id":20139,"width":203,"height":124},{"x":609,"y":248,"fileNum":4035,"id":20140,"width":203,"height":124},{"x":0,"y":372,"fileNum":4035,"id":20141,"width":203,"height":124},{"x":203,"y":372,"fileNum":4035,"id":20142,"width":203,"height":124},{"x":406,"y":372,"fileNum":4035,"id":20143,"width":203,"height":124},{"x":609,"y":372,"fileNum":4035,"id":20144,"width":203,"height":124},{"x":0,"y":496,"fileNum":4035,"id":20145,"width":203,"height":124},{"x":203,"y":496,"fileNum":4035,"id":20146,"width":203,"height":124},{"x":406,"y":496,"fileNum":4035,"id":20147,"width":203,"height":124},{"x":609,"y":496,"fileNum":4035,"id":20148,"width":203,"height":124},{"x":0,"y":620,"fileNum":4035,"id":20149,"width":203,"height":124},{"x":203,"y":620,"fileNum":4035,"id":20150,"width":203,"height":124},{"x":406,"y":620,"fileNum":4035,"id":20151,"width":203,"height":124},{"x":609,"y":620,"fileNum":4035,"id":20152,"width":203,"height":124},{"x":0,"y":744,"fileNum":4035,"id":20153,"width":203,"height":124},{"x":203,"y":744,"fileNum":4035,"id":20154,"width":203,"height":124},{"x":406,"y":744,"fileNum":4035,"id":20155,"width":203,"height":124},{"x":609,"y":744,"fileNum":4035,"id":20156,"width":203,"height":124},{"x":0,"y":868,"fileNum":4035,"id":20157,"width":203,"height":124},{"x":203,"y":868,"fileNum":4035,"id":20158,"width":203,"height":124},{"x":406,"y":868,"fileNum":4035,"id":20159,"width":203,"height":124},{"x":609,"y":868,"fileNum":4035,"id":20160,"width":203,"height":124},{"x":0,"y":0,"fileNum":5000,"id":20165,"width":82,"height":105},{"x":0,"y":0,"fileNum":5001,"id":20166,"width":82,"height":105},{"x":0,"y":0,"fileNum":5002,"id":20167,"width":32,"height":32},{"x":0,"y":0,"fileNum":5003,"id":20168,"width":177,"height":151},{"x":0,"y":0,"fileNum":5004,"id":20169,"width":140,"height":140},{"x":0,"y":0,"fileNum":5005,"id":20170,"width":73,"height":193},{"x":0,"y":0,"fileNum":5006,"id":20171,"width":92,"height":217},{"x":0,"y":0,"fileNum":5007,"id":20172,"width":93,"height":89},{"x":0,"y":0,"fileNum":5008,"id":20173,"width":22,"height":51},{"x":0,"y":0,"fileNum":5009,"id":20174,"width":32,"height":128},{"x":0,"y":0,"fileNum":5010,"id":20175,"width":32,"height":128},{"x":0,"y":0,"fileNum":5011,"id":20176,"width":32,"height":128},{"x":0,"y":0,"fileNum":5012,"id":20177,"width":32,"height":128},{"x":0,"y":0,"fileNum":5013,"id":20178,"width":32,"height":128},{"x":0,"y":0,"fileNum":5014,"id":20179,"width":32,"height":128},{"x":0,"y":0,"fileNum":5015,"id":20180,"width":32,"height":128},{"x":0,"y":0,"fileNum":5016,"id":20181,"width":32,"height":128},{"x":0,"y":0,"fileNum":5017,"id":20182,"width":32,"height":128},{"x":0,"y":0,"fileNum":5018,"id":20183,"width":32,"height":128},{"x":0,"y":0,"fileNum":5019,"id":20184,"width":32,"height":128},{"x":0,"y":0,"fileNum":5020,"id":20185,"width":32,"height":128},{"x":0,"y":0,"fileNum":5021,"id":20186,"width":32,"height":128},{"x":0,"y":0,"fileNum":5022,"id":20187,"width":32,"height":128},{"x":0,"y":0,"fileNum":5023,"id":20188,"width":32,"height":128},{"x":0,"y":0,"fileNum":5024,"id":20189,"width":32,"height":128},{"x":0,"y":0,"fileNum":5025,"id":20190,"width":32,"height":128},{"x":0,"y":0,"fileNum":5026,"id":20191,"width":32,"height":128},{"x":0,"y":0,"fileNum":5027,"id":20192,"width":32,"height":128},{"x":0,"y":0,"fileNum":5028,"id":20193,"width":32,"height":128},{"x":0,"y":0,"fileNum":5029,"id":20194,"width":32,"height":128},{"x":0,"y":0,"fileNum":5030,"id":20195,"width":32,"height":128},{"x":0,"y":0,"fileNum":5031,"id":20196,"width":32,"height":128},{"x":0,"y":0,"fileNum":5032,"id":20197,"width":32,"height":128},{"x":0,"y":0,"fileNum":5033,"id":20198,"width":32,"height":128},{"x":0,"y":0,"fileNum":5034,"id":20199,"width":32,"height":128},{"x":0,"y":0,"fileNum":5035,"id":20200,"width":32,"height":128},{"x":0,"y":0,"fileNum":5036,"id":20201,"width":32,"height":128},{"x":0,"y":0,"fileNum":5037,"id":20202,"width":32,"height":128},{"x":0,"y":0,"fileNum":5038,"id":20203,"width":32,"height":128},{"x":0,"y":0,"fileNum":5039,"id":20204,"width":32,"height":128},{"x":0,"y":0,"fileNum":5040,"id":20205,"width":32,"height":128},{"x":0,"y":0,"fileNum":5041,"id":20206,"width":32,"height":128},{"x":0,"y":0,"fileNum":16031,"id":20207,"width":25,"height":45},{"x":25,"y":0,"fileNum":16031,"id":20208,"width":25,"height":45},{"x":50,"y":0,"fileNum":16031,"id":20209,"width":25,"height":45},{"x":75,"y":0,"fileNum":16031,"id":20210,"width":25,"height":45},{"x":100,"y":0,"fileNum":16031,"id":20211,"width":25,"height":45},{"x":125,"y":0,"fileNum":16031,"id":20212,"width":25,"height":45},{"x":0,"y":45,"fileNum":16031,"id":20213,"width":25,"height":45},{"x":25,"y":45,"fileNum":16031,"id":20214,"width":25,"height":45},{"x":50,"y":45,"fileNum":16031,"id":20215,"width":25,"height":45},{"x":75,"y":45,"fileNum":16031,"id":20216,"width":25,"height":45},{"x":100,"y":45,"fileNum":16031,"id":20217,"width":25,"height":45},{"x":125,"y":45,"fileNum":16031,"id":20218,"width":25,"height":45},{"x":0,"y":90,"fileNum":16031,"id":20219,"width":25,"height":45},{"x":25,"y":90,"fileNum":16031,"id":20220,"width":25,"height":45},{"x":50,"y":90,"fileNum":16031,"id":20221,"width":25,"height":45},{"x":75,"y":90,"fileNum":16031,"id":20222,"width":25,"height":45},{"x":100,"y":90,"fileNum":16031,"id":20223,"width":25,"height":45},{"x":0,"y":135,"fileNum":16031,"id":20224,"width":25,"height":45},{"x":25,"y":135,"fileNum":16031,"id":20225,"width":25,"height":45},{"x":50,"y":135,"fileNum":16031,"id":20226,"width":25,"height":45},{"x":75,"y":135,"fileNum":16031,"id":20227,"width":25,"height":45},{"x":100,"y":135,"fileNum":16031,"id":20228,"width":25,"height":45},{"x":0,"y":0,"fileNum":16030,"id":20233,"width":32,"height":32},{"x":0,"y":0,"fileNum":18014,"id":20234,"width":17,"height":16},{"x":17,"y":0,"fileNum":18014,"id":20235,"width":17,"height":16},{"x":34,"y":0,"fileNum":18014,"id":20236,"width":17,"height":16},{"x":51,"y":0,"fileNum":18014,"id":20237,"width":17,"height":16},{"x":0,"y":0,"fileNum":18015,"id":20238,"width":32,"height":32},{"x":0,"y":0,"fileNum":108,"id":20239,"width":32,"height":32},{"x":0,"y":0,"fileNum":109,"id":20240,"width":25,"height":45},{"x":25,"y":0,"fileNum":109,"id":20241,"width":25,"height":45},{"x":50,"y":0,"fileNum":109,"id":20242,"width":25,"height":45},{"x":75,"y":0,"fileNum":109,"id":20243,"width":25,"height":45},{"x":100,"y":0,"fileNum":109,"id":20244,"width":25,"height":45},{"x":125,"y":0,"fileNum":109,"id":20245,"width":25,"height":45},{"x":0,"y":45,"fileNum":109,"id":20246,"width":25,"height":45},{"x":25,"y":45,"fileNum":109,"id":20247,"width":25,"height":45},{"x":50,"y":45,"fileNum":109,"id":20248,"width":25,"height":45},{"x":75,"y":45,"fileNum":109,"id":20249,"width":25,"height":45},{"x":100,"y":45,"fileNum":109,"id":20250,"width":25,"height":45},{"x":125,"y":45,"fileNum":109,"id":20251,"width":25,"height":45},{"x":0,"y":90,"fileNum":109,"id":20252,"width":25,"height":45},{"x":25,"y":90,"fileNum":109,"id":20253,"width":25,"height":45},{"x":50,"y":90,"fileNum":109,"id":20254,"width":25,"height":45},{"x":75,"y":90,"fileNum":109,"id":20255,"width":25,"height":45},{"x":100,"y":90,"fileNum":109,"id":20256,"width":25,"height":45},{"x":0,"y":135,"fileNum":109,"id":20257,"width":25,"height":45},{"x":25,"y":135,"fileNum":109,"id":20258,"width":25,"height":45},{"x":50,"y":135,"fileNum":109,"id":20259,"width":25,"height":45},{"x":75,"y":135,"fileNum":109,"id":20260,"width":25,"height":45},{"x":100,"y":135,"fileNum":109,"id":20261,"width":25,"height":45},{"x":0,"y":0,"fileNum":110,"id":20266,"width":32,"height":32},{"x":0,"y":0,"fileNum":111,"id":20267,"width":25,"height":45},{"x":25,"y":0,"fileNum":111,"id":20268,"width":25,"height":45},{"x":50,"y":0,"fileNum":111,"id":20269,"width":25,"height":45},{"x":75,"y":0,"fileNum":111,"id":20270,"width":25,"height":45},{"x":100,"y":0,"fileNum":111,"id":20271,"width":25,"height":45},{"x":125,"y":0,"fileNum":111,"id":20272,"width":25,"height":45},{"x":0,"y":45,"fileNum":111,"id":20273,"width":25,"height":45},{"x":25,"y":45,"fileNum":111,"id":20274,"width":25,"height":45},{"x":50,"y":45,"fileNum":111,"id":20275,"width":25,"height":45},{"x":75,"y":45,"fileNum":111,"id":20276,"width":25,"height":45},{"x":100,"y":45,"fileNum":111,"id":20277,"width":25,"height":45},{"x":125,"y":45,"fileNum":111,"id":20278,"width":25,"height":45},{"x":0,"y":90,"fileNum":111,"id":20279,"width":25,"height":45},{"x":25,"y":90,"fileNum":111,"id":20280,"width":25,"height":45},{"x":50,"y":90,"fileNum":111,"id":20281,"width":25,"height":45},{"x":75,"y":90,"fileNum":111,"id":20282,"width":25,"height":45},{"x":100,"y":90,"fileNum":111,"id":20283,"width":25,"height":45},{"x":0,"y":135,"fileNum":111,"id":20284,"width":25,"height":45},{"x":25,"y":135,"fileNum":111,"id":20285,"width":25,"height":45},{"x":50,"y":135,"fileNum":111,"id":20286,"width":25,"height":45},{"x":75,"y":135,"fileNum":111,"id":20287,"width":25,"height":45},{"x":100,"y":135,"fileNum":111,"id":20288,"width":25,"height":45},{"x":0,"y":0,"fileNum":112,"id":20293,"width":32,"height":32},{"x":0,"y":0,"fileNum":113,"id":20294,"width":25,"height":45},{"x":25,"y":0,"fileNum":113,"id":20295,"width":25,"height":45},{"x":50,"y":0,"fileNum":113,"id":20296,"width":25,"height":45},{"x":75,"y":0,"fileNum":113,"id":20297,"width":25,"height":45},{"x":100,"y":0,"fileNum":113,"id":20298,"width":25,"height":45},{"x":125,"y":0,"fileNum":113,"id":20299,"width":25,"height":45},{"x":0,"y":45,"fileNum":113,"id":20300,"width":25,"height":45},{"x":25,"y":45,"fileNum":113,"id":20301,"width":25,"height":45},{"x":50,"y":45,"fileNum":113,"id":20302,"width":25,"height":45},{"x":75,"y":45,"fileNum":113,"id":20303,"width":25,"height":45},{"x":100,"y":45,"fileNum":113,"id":20304,"width":25,"height":45},{"x":125,"y":45,"fileNum":113,"id":20305,"width":25,"height":45},{"x":0,"y":90,"fileNum":113,"id":20306,"width":25,"height":45},{"x":25,"y":90,"fileNum":113,"id":20307,"width":25,"height":45},{"x":50,"y":90,"fileNum":113,"id":20308,"width":25,"height":45},{"x":75,"y":90,"fileNum":113,"id":20309,"width":25,"height":45},{"x":100,"y":90,"fileNum":113,"id":20310,"width":25,"height":45},{"x":0,"y":135,"fileNum":113,"id":20311,"width":25,"height":45},{"x":25,"y":135,"fileNum":113,"id":20312,"width":25,"height":45},{"x":50,"y":135,"fileNum":113,"id":20313,"width":25,"height":45},{"x":75,"y":135,"fileNum":113,"id":20314,"width":25,"height":45},{"x":100,"y":135,"fileNum":113,"id":20315,"width":25,"height":45},{"x":0,"y":0,"fileNum":114,"id":20320,"width":32,"height":32},{"x":0,"y":0,"fileNum":115,"id":20321,"width":25,"height":45},{"x":25,"y":0,"fileNum":115,"id":20322,"width":25,"height":45},{"x":50,"y":0,"fileNum":115,"id":20323,"width":25,"height":45},{"x":75,"y":0,"fileNum":115,"id":20324,"width":25,"height":45},{"x":100,"y":0,"fileNum":115,"id":20325,"width":25,"height":45},{"x":125,"y":0,"fileNum":115,"id":20326,"width":25,"height":45},{"x":0,"y":45,"fileNum":115,"id":20327,"width":25,"height":45},{"x":25,"y":45,"fileNum":115,"id":20328,"width":25,"height":45},{"x":50,"y":45,"fileNum":115,"id":20329,"width":25,"height":45},{"x":75,"y":45,"fileNum":115,"id":20330,"width":25,"height":45},{"x":100,"y":45,"fileNum":115,"id":20331,"width":25,"height":45},{"x":125,"y":45,"fileNum":115,"id":20332,"width":25,"height":45},{"x":0,"y":90,"fileNum":115,"id":20333,"width":25,"height":45},{"x":25,"y":90,"fileNum":115,"id":20334,"width":25,"height":45},{"x":50,"y":90,"fileNum":115,"id":20335,"width":25,"height":45},{"x":75,"y":90,"fileNum":115,"id":20336,"width":25,"height":45},{"x":100,"y":90,"fileNum":115,"id":20337,"width":25,"height":45},{"x":0,"y":135,"fileNum":115,"id":20338,"width":25,"height":45},{"x":25,"y":135,"fileNum":115,"id":20339,"width":25,"height":45},{"x":50,"y":135,"fileNum":115,"id":20340,"width":25,"height":45},{"x":75,"y":135,"fileNum":115,"id":20341,"width":25,"height":45},{"x":100,"y":135,"fileNum":115,"id":20342,"width":25,"height":45},{"x":0,"y":0,"fileNum":116,"id":20347,"width":32,"height":32},{"x":0,"y":0,"fileNum":117,"id":20348,"width":25,"height":45},{"x":25,"y":0,"fileNum":117,"id":20349,"width":25,"height":45},{"x":50,"y":0,"fileNum":117,"id":20350,"width":25,"height":45},{"x":75,"y":0,"fileNum":117,"id":20351,"width":25,"height":45},{"x":100,"y":0,"fileNum":117,"id":20352,"width":25,"height":45},{"x":125,"y":0,"fileNum":117,"id":20353,"width":25,"height":45},{"x":0,"y":45,"fileNum":117,"id":20354,"width":25,"height":45},{"x":25,"y":45,"fileNum":117,"id":20355,"width":25,"height":45},{"x":50,"y":45,"fileNum":117,"id":20356,"width":25,"height":45},{"x":75,"y":45,"fileNum":117,"id":20357,"width":25,"height":45},{"x":100,"y":45,"fileNum":117,"id":20358,"width":25,"height":45},{"x":125,"y":45,"fileNum":117,"id":20359,"width":25,"height":45},{"x":0,"y":90,"fileNum":117,"id":20360,"width":25,"height":45},{"x":25,"y":90,"fileNum":117,"id":20361,"width":25,"height":45},{"x":50,"y":90,"fileNum":117,"id":20362,"width":25,"height":45},{"x":75,"y":90,"fileNum":117,"id":20363,"width":25,"height":45},{"x":100,"y":90,"fileNum":117,"id":20364,"width":25,"height":45},{"x":0,"y":135,"fileNum":117,"id":20365,"width":25,"height":45},{"x":25,"y":135,"fileNum":117,"id":20366,"width":25,"height":45},{"x":50,"y":135,"fileNum":117,"id":20367,"width":25,"height":45},{"x":75,"y":135,"fileNum":117,"id":20368,"width":25,"height":45},{"x":100,"y":135,"fileNum":117,"id":20369,"width":25,"height":45},{"x":0,"y":0,"fileNum":118,"id":20374,"width":32,"height":32},{"x":0,"y":0,"fileNum":119,"id":20375,"width":25,"height":45},{"x":25,"y":0,"fileNum":119,"id":20376,"width":25,"height":45},{"x":50,"y":0,"fileNum":119,"id":20377,"width":25,"height":45},{"x":75,"y":0,"fileNum":119,"id":20378,"width":25,"height":45},{"x":100,"y":0,"fileNum":119,"id":20379,"width":25,"height":45},{"x":125,"y":0,"fileNum":119,"id":20380,"width":25,"height":45},{"x":0,"y":45,"fileNum":119,"id":20381,"width":25,"height":45},{"x":25,"y":45,"fileNum":119,"id":20382,"width":25,"height":45},{"x":50,"y":45,"fileNum":119,"id":20383,"width":25,"height":45},{"x":75,"y":45,"fileNum":119,"id":20384,"width":25,"height":45},{"x":100,"y":45,"fileNum":119,"id":20385,"width":25,"height":45},{"x":125,"y":45,"fileNum":119,"id":20386,"width":25,"height":45},{"x":0,"y":90,"fileNum":119,"id":20387,"width":25,"height":45},{"x":25,"y":90,"fileNum":119,"id":20388,"width":25,"height":45},{"x":50,"y":90,"fileNum":119,"id":20389,"width":25,"height":45},{"x":75,"y":90,"fileNum":119,"id":20390,"width":25,"height":45},{"x":100,"y":90,"fileNum":119,"id":20391,"width":25,"height":45},{"x":0,"y":135,"fileNum":119,"id":20392,"width":25,"height":45},{"x":25,"y":135,"fileNum":119,"id":20393,"width":25,"height":45},{"x":50,"y":135,"fileNum":119,"id":20394,"width":25,"height":45},{"x":75,"y":135,"fileNum":119,"id":20395,"width":25,"height":45},{"x":100,"y":135,"fileNum":119,"id":20396,"width":25,"height":45},{"x":0,"y":0,"fileNum":15112,"id":20401,"width":79,"height":120},{"x":79,"y":0,"fileNum":15112,"id":20402,"width":79,"height":120},{"x":158,"y":0,"fileNum":15112,"id":20403,"width":79,"height":120},{"x":237,"y":0,"fileNum":15112,"id":20404,"width":79,"height":120},{"x":0,"y":0,"fileNum":121,"id":20406,"width":32,"height":32},{"x":0,"y":0,"fileNum":120,"id":20407,"width":25,"height":45},{"x":25,"y":0,"fileNum":120,"id":20408,"width":25,"height":45},{"x":50,"y":0,"fileNum":120,"id":20409,"width":25,"height":45},{"x":75,"y":0,"fileNum":120,"id":20410,"width":25,"height":45},{"x":100,"y":0,"fileNum":120,"id":20411,"width":25,"height":45},{"x":125,"y":0,"fileNum":120,"id":20412,"width":25,"height":45},{"x":0,"y":45,"fileNum":120,"id":20413,"width":25,"height":45},{"x":25,"y":45,"fileNum":120,"id":20414,"width":25,"height":45},{"x":50,"y":45,"fileNum":120,"id":20415,"width":25,"height":45},{"x":75,"y":45,"fileNum":120,"id":20416,"width":25,"height":45},{"x":100,"y":45,"fileNum":120,"id":20417,"width":25,"height":45},{"x":125,"y":45,"fileNum":120,"id":20418,"width":25,"height":45},{"x":0,"y":90,"fileNum":120,"id":20419,"width":25,"height":45},{"x":25,"y":90,"fileNum":120,"id":20420,"width":25,"height":45},{"x":50,"y":90,"fileNum":120,"id":20421,"width":25,"height":45},{"x":75,"y":90,"fileNum":120,"id":20422,"width":25,"height":45},{"x":100,"y":90,"fileNum":120,"id":20423,"width":25,"height":45},{"x":0,"y":135,"fileNum":120,"id":20424,"width":25,"height":45},{"x":25,"y":135,"fileNum":120,"id":20425,"width":25,"height":45},{"x":50,"y":135,"fileNum":120,"id":20426,"width":25,"height":45},{"x":75,"y":135,"fileNum":120,"id":20427,"width":25,"height":45},{"x":100,"y":135,"fileNum":120,"id":20428,"width":25,"height":45},{"x":0,"y":0,"fileNum":123,"id":20433,"width":32,"height":32},{"x":0,"y":0,"fileNum":122,"id":20434,"width":25,"height":45},{"x":25,"y":0,"fileNum":122,"id":20435,"width":25,"height":45},{"x":50,"y":0,"fileNum":122,"id":20436,"width":25,"height":45},{"x":75,"y":0,"fileNum":122,"id":20437,"width":25,"height":45},{"x":100,"y":0,"fileNum":122,"id":20438,"width":25,"height":45},{"x":125,"y":0,"fileNum":122,"id":20439,"width":25,"height":45},{"x":0,"y":45,"fileNum":122,"id":20440,"width":25,"height":45},{"x":25,"y":45,"fileNum":122,"id":20441,"width":25,"height":45},{"x":50,"y":45,"fileNum":122,"id":20442,"width":25,"height":45},{"x":75,"y":45,"fileNum":122,"id":20443,"width":25,"height":45},{"x":100,"y":45,"fileNum":122,"id":20444,"width":25,"height":45},{"x":125,"y":45,"fileNum":122,"id":20445,"width":25,"height":45},{"x":0,"y":90,"fileNum":122,"id":20446,"width":25,"height":45},{"x":25,"y":90,"fileNum":122,"id":20447,"width":25,"height":45},{"x":50,"y":90,"fileNum":122,"id":20448,"width":25,"height":45},{"x":75,"y":90,"fileNum":122,"id":20449,"width":25,"height":45},{"x":100,"y":90,"fileNum":122,"id":20450,"width":25,"height":45},{"x":0,"y":135,"fileNum":122,"id":20451,"width":25,"height":45},{"x":25,"y":135,"fileNum":122,"id":20452,"width":25,"height":45},{"x":50,"y":135,"fileNum":122,"id":20453,"width":25,"height":45},{"x":75,"y":135,"fileNum":122,"id":20454,"width":25,"height":45},{"x":100,"y":135,"fileNum":122,"id":20455,"width":25,"height":45},{"x":0,"y":0,"fileNum":22003,"id":20460,"width":32,"height":32},{"x":0,"y":0,"fileNum":16032,"id":20461,"width":25,"height":45},{"x":25,"y":0,"fileNum":16032,"id":20462,"width":25,"height":45},{"x":50,"y":0,"fileNum":16032,"id":20463,"width":25,"height":45},{"x":75,"y":0,"fileNum":16032,"id":20464,"width":25,"height":45},{"x":100,"y":0,"fileNum":16032,"id":20465,"width":25,"height":45},{"x":125,"y":0,"fileNum":16032,"id":20466,"width":25,"height":45},{"x":0,"y":45,"fileNum":16032,"id":20467,"width":25,"height":45},{"x":25,"y":45,"fileNum":16032,"id":20468,"width":25,"height":45},{"x":50,"y":45,"fileNum":16032,"id":20469,"width":25,"height":45},{"x":75,"y":45,"fileNum":16032,"id":20470,"width":25,"height":45},{"x":100,"y":45,"fileNum":16032,"id":20471,"width":25,"height":45},{"x":125,"y":45,"fileNum":16032,"id":20472,"width":25,"height":45},{"x":0,"y":90,"fileNum":16032,"id":20473,"width":25,"height":45},{"x":25,"y":90,"fileNum":16032,"id":20474,"width":25,"height":45},{"x":50,"y":90,"fileNum":16032,"id":20475,"width":25,"height":45},{"x":75,"y":90,"fileNum":16032,"id":20476,"width":25,"height":45},{"x":100,"y":90,"fileNum":16032,"id":20477,"width":25,"height":45},{"x":0,"y":135,"fileNum":16032,"id":20478,"width":25,"height":45},{"x":25,"y":135,"fileNum":16032,"id":20479,"width":25,"height":45},{"x":50,"y":135,"fileNum":16032,"id":20480,"width":25,"height":45},{"x":75,"y":135,"fileNum":16032,"id":20481,"width":25,"height":45},{"x":100,"y":135,"fileNum":16032,"id":20482,"width":25,"height":45},{"x":0,"y":0,"fileNum":3096,"id":20487,"width":145,"height":145},{"x":145,"y":0,"fileNum":3096,"id":20488,"width":145,"height":145},{"x":290,"y":0,"fileNum":3096,"id":20489,"width":145,"height":145},{"x":435,"y":0,"fileNum":3096,"id":20490,"width":145,"height":145},{"x":0,"y":145,"fileNum":3096,"id":20491,"width":145,"height":145},{"x":145,"y":145,"fileNum":3096,"id":20492,"width":145,"height":145},{"x":290,"y":145,"fileNum":3096,"id":20493,"width":145,"height":145},{"x":435,"y":145,"fileNum":3096,"id":20494,"width":145,"height":145},{"x":0,"y":290,"fileNum":3096,"id":20495,"width":145,"height":145},{"x":145,"y":290,"fileNum":3096,"id":20496,"width":145,"height":145},{"x":290,"y":290,"fileNum":3096,"id":20497,"width":145,"height":145},{"x":435,"y":290,"fileNum":3096,"id":20498,"width":145,"height":145},{"x":0,"y":435,"fileNum":3096,"id":20499,"width":145,"height":145},{"x":145,"y":435,"fileNum":3096,"id":20500,"width":145,"height":145},{"x":290,"y":435,"fileNum":3096,"id":20501,"width":145,"height":145},{"x":435,"y":435,"fileNum":3096,"id":20502,"width":145,"height":145},{"x":0,"y":0,"fileNum":19000,"id":20504,"width":32,"height":32},{"x":0,"y":0,"fileNum":19001,"id":20505,"width":32,"height":32},{"x":0,"y":0,"fileNum":19002,"id":20506,"width":32,"height":32},{"x":0,"y":0,"fileNum":19003,"id":20507,"width":32,"height":32},{"x":0,"y":0,"fileNum":19004,"id":20508,"width":32,"height":32},{"x":0,"y":0,"fileNum":19005,"id":20509,"width":32,"height":32},{"x":0,"y":0,"fileNum":16071,"id":20510,"width":25,"height":45},{"x":25,"y":0,"fileNum":16071,"id":20511,"width":25,"height":45},{"x":50,"y":0,"fileNum":16071,"id":20512,"width":25,"height":45},{"x":75,"y":0,"fileNum":16071,"id":20513,"width":25,"height":45},{"x":100,"y":0,"fileNum":16071,"id":20514,"width":25,"height":45},{"x":125,"y":0,"fileNum":16071,"id":20515,"width":25,"height":45},{"x":0,"y":45,"fileNum":16071,"id":20516,"width":25,"height":45},{"x":25,"y":45,"fileNum":16071,"id":20517,"width":25,"height":45},{"x":50,"y":45,"fileNum":16071,"id":20518,"width":25,"height":45},{"x":75,"y":45,"fileNum":16071,"id":20519,"width":25,"height":45},{"x":100,"y":45,"fileNum":16071,"id":20520,"width":25,"height":45},{"x":125,"y":45,"fileNum":16071,"id":20521,"width":25,"height":45},{"x":0,"y":90,"fileNum":16071,"id":20522,"width":25,"height":45},{"x":25,"y":90,"fileNum":16071,"id":20523,"width":25,"height":45},{"x":50,"y":90,"fileNum":16071,"id":20524,"width":25,"height":45},{"x":75,"y":90,"fileNum":16071,"id":20525,"width":25,"height":45},{"x":100,"y":90,"fileNum":16071,"id":20526,"width":25,"height":45},{"x":0,"y":135,"fileNum":16071,"id":20527,"width":25,"height":45},{"x":25,"y":135,"fileNum":16071,"id":20528,"width":25,"height":45},{"x":50,"y":135,"fileNum":16071,"id":20529,"width":25,"height":45},{"x":75,"y":135,"fileNum":16071,"id":20530,"width":25,"height":45},{"x":100,"y":135,"fileNum":16071,"id":20531,"width":25,"height":45},{"x":0,"y":0,"fileNum":586,"id":20536,"width":32,"height":32},{"x":0,"y":0,"fileNum":587,"id":20537,"width":25,"height":45},{"x":25,"y":0,"fileNum":587,"id":20538,"width":25,"height":45},{"x":50,"y":0,"fileNum":587,"id":20539,"width":25,"height":45},{"x":75,"y":0,"fileNum":587,"id":20540,"width":25,"height":45},{"x":100,"y":0,"fileNum":587,"id":20541,"width":25,"height":45},{"x":125,"y":0,"fileNum":587,"id":20542,"width":25,"height":45},{"x":0,"y":45,"fileNum":587,"id":20543,"width":25,"height":45},{"x":25,"y":45,"fileNum":587,"id":20544,"width":25,"height":45},{"x":50,"y":45,"fileNum":587,"id":20545,"width":25,"height":45},{"x":75,"y":45,"fileNum":587,"id":20546,"width":25,"height":45},{"x":100,"y":45,"fileNum":587,"id":20547,"width":25,"height":45},{"x":125,"y":45,"fileNum":587,"id":20548,"width":25,"height":45},{"x":0,"y":90,"fileNum":587,"id":20549,"width":25,"height":45},{"x":25,"y":90,"fileNum":587,"id":20550,"width":25,"height":45},{"x":50,"y":90,"fileNum":587,"id":20551,"width":25,"height":45},{"x":75,"y":90,"fileNum":587,"id":20552,"width":25,"height":45},{"x":100,"y":90,"fileNum":587,"id":20553,"width":25,"height":45},{"x":0,"y":135,"fileNum":587,"id":20554,"width":25,"height":45},{"x":25,"y":135,"fileNum":587,"id":20555,"width":25,"height":45},{"x":50,"y":135,"fileNum":587,"id":20556,"width":25,"height":45},{"x":75,"y":135,"fileNum":587,"id":20557,"width":25,"height":45},{"x":100,"y":135,"fileNum":587,"id":20558,"width":25,"height":45},{"x":0,"y":0,"fileNum":588,"id":20563,"width":32,"height":32},{"x":0,"y":0,"fileNum":589,"id":20564,"width":25,"height":45},{"x":25,"y":0,"fileNum":589,"id":20565,"width":25,"height":45},{"x":50,"y":0,"fileNum":589,"id":20566,"width":25,"height":45},{"x":75,"y":0,"fileNum":589,"id":20567,"width":25,"height":45},{"x":100,"y":0,"fileNum":589,"id":20568,"width":25,"height":45},{"x":125,"y":0,"fileNum":589,"id":20569,"width":25,"height":45},{"x":0,"y":45,"fileNum":589,"id":20570,"width":25,"height":45},{"x":25,"y":45,"fileNum":589,"id":20571,"width":25,"height":45},{"x":50,"y":45,"fileNum":589,"id":20572,"width":25,"height":45},{"x":75,"y":45,"fileNum":589,"id":20573,"width":25,"height":45},{"x":100,"y":45,"fileNum":589,"id":20574,"width":25,"height":45},{"x":125,"y":45,"fileNum":589,"id":20575,"width":25,"height":45},{"x":0,"y":90,"fileNum":589,"id":20576,"width":25,"height":45},{"x":25,"y":90,"fileNum":589,"id":20577,"width":25,"height":45},{"x":50,"y":90,"fileNum":589,"id":20578,"width":25,"height":45},{"x":75,"y":90,"fileNum":589,"id":20579,"width":25,"height":45},{"x":100,"y":90,"fileNum":589,"id":20580,"width":25,"height":45},{"x":0,"y":135,"fileNum":589,"id":20581,"width":25,"height":45},{"x":25,"y":135,"fileNum":589,"id":20582,"width":25,"height":45},{"x":50,"y":135,"fileNum":589,"id":20583,"width":25,"height":45},{"x":75,"y":135,"fileNum":589,"id":20584,"width":25,"height":45},{"x":100,"y":135,"fileNum":589,"id":20585,"width":25,"height":45},{"x":0,"y":0,"fileNum":590,"id":20590,"width":32,"height":32},{"x":0,"y":0,"fileNum":591,"id":20591,"width":25,"height":45},{"x":25,"y":0,"fileNum":591,"id":20592,"width":25,"height":45},{"x":50,"y":0,"fileNum":591,"id":20593,"width":25,"height":45},{"x":75,"y":0,"fileNum":591,"id":20594,"width":25,"height":45},{"x":100,"y":0,"fileNum":591,"id":20595,"width":25,"height":45},{"x":125,"y":0,"fileNum":591,"id":20596,"width":25,"height":45},{"x":0,"y":45,"fileNum":591,"id":20597,"width":25,"height":45},{"x":25,"y":45,"fileNum":591,"id":20598,"width":25,"height":45},{"x":50,"y":45,"fileNum":591,"id":20599,"width":25,"height":45},{"x":75,"y":45,"fileNum":591,"id":20600,"width":25,"height":45},{"x":100,"y":45,"fileNum":591,"id":20601,"width":25,"height":45},{"x":125,"y":45,"fileNum":591,"id":20602,"width":25,"height":45},{"x":0,"y":90,"fileNum":591,"id":20603,"width":25,"height":45},{"x":25,"y":90,"fileNum":591,"id":20604,"width":25,"height":45},{"x":50,"y":90,"fileNum":591,"id":20605,"width":25,"height":45},{"x":75,"y":90,"fileNum":591,"id":20606,"width":25,"height":45},{"x":100,"y":90,"fileNum":591,"id":20607,"width":25,"height":45},{"x":0,"y":135,"fileNum":591,"id":20608,"width":25,"height":45},{"x":25,"y":135,"fileNum":591,"id":20609,"width":25,"height":45},{"x":50,"y":135,"fileNum":591,"id":20610,"width":25,"height":45},{"x":75,"y":135,"fileNum":591,"id":20611,"width":25,"height":45},{"x":100,"y":135,"fileNum":591,"id":20612,"width":25,"height":45},{"x":0,"y":0,"fileNum":592,"id":20617,"width":32,"height":32},{"x":0,"y":0,"fileNum":593,"id":20618,"width":25,"height":45},{"x":25,"y":0,"fileNum":593,"id":20619,"width":25,"height":45},{"x":50,"y":0,"fileNum":593,"id":20620,"width":25,"height":45},{"x":75,"y":0,"fileNum":593,"id":20621,"width":25,"height":45},{"x":100,"y":0,"fileNum":593,"id":20622,"width":25,"height":45},{"x":125,"y":0,"fileNum":593,"id":20623,"width":25,"height":45},{"x":0,"y":45,"fileNum":593,"id":20624,"width":25,"height":45},{"x":25,"y":45,"fileNum":593,"id":20625,"width":25,"height":45},{"x":50,"y":45,"fileNum":593,"id":20626,"width":25,"height":45},{"x":75,"y":45,"fileNum":593,"id":20627,"width":25,"height":45},{"x":100,"y":45,"fileNum":593,"id":20628,"width":25,"height":45},{"x":125,"y":45,"fileNum":593,"id":20629,"width":25,"height":45},{"x":0,"y":90,"fileNum":593,"id":20630,"width":25,"height":45},{"x":25,"y":90,"fileNum":593,"id":20631,"width":25,"height":45},{"x":50,"y":90,"fileNum":593,"id":20632,"width":25,"height":45},{"x":75,"y":90,"fileNum":593,"id":20633,"width":25,"height":45},{"x":100,"y":90,"fileNum":593,"id":20634,"width":25,"height":45},{"x":0,"y":135,"fileNum":593,"id":20635,"width":25,"height":45},{"x":25,"y":135,"fileNum":593,"id":20636,"width":25,"height":45},{"x":50,"y":135,"fileNum":593,"id":20637,"width":25,"height":45},{"x":75,"y":135,"fileNum":593,"id":20638,"width":25,"height":45},{"x":100,"y":135,"fileNum":593,"id":20639,"width":25,"height":45},{"x":0,"y":0,"fileNum":594,"id":20644,"width":32,"height":32},{"x":0,"y":0,"fileNum":595,"id":20645,"width":25,"height":45},{"x":25,"y":0,"fileNum":595,"id":20646,"width":25,"height":45},{"x":50,"y":0,"fileNum":595,"id":20647,"width":25,"height":45},{"x":75,"y":0,"fileNum":595,"id":20648,"width":25,"height":45},{"x":100,"y":0,"fileNum":595,"id":20649,"width":25,"height":45},{"x":125,"y":0,"fileNum":595,"id":20650,"width":25,"height":45},{"x":0,"y":45,"fileNum":595,"id":20651,"width":25,"height":45},{"x":25,"y":45,"fileNum":595,"id":20652,"width":25,"height":45},{"x":50,"y":45,"fileNum":595,"id":20653,"width":25,"height":45},{"x":75,"y":45,"fileNum":595,"id":20654,"width":25,"height":45},{"x":100,"y":45,"fileNum":595,"id":20655,"width":25,"height":45},{"x":125,"y":45,"fileNum":595,"id":20656,"width":25,"height":45},{"x":0,"y":90,"fileNum":595,"id":20657,"width":25,"height":45},{"x":25,"y":90,"fileNum":595,"id":20658,"width":25,"height":45},{"x":50,"y":90,"fileNum":595,"id":20659,"width":25,"height":45},{"x":75,"y":90,"fileNum":595,"id":20660,"width":25,"height":45},{"x":100,"y":90,"fileNum":595,"id":20661,"width":25,"height":45},{"x":0,"y":135,"fileNum":595,"id":20662,"width":25,"height":45},{"x":25,"y":135,"fileNum":595,"id":20663,"width":25,"height":45},{"x":50,"y":135,"fileNum":595,"id":20664,"width":25,"height":45},{"x":75,"y":135,"fileNum":595,"id":20665,"width":25,"height":45},{"x":100,"y":135,"fileNum":595,"id":20666,"width":25,"height":45},{"x":0,"y":0,"fileNum":596,"id":20671,"width":32,"height":32},{"x":0,"y":0,"fileNum":597,"id":20672,"width":25,"height":45},{"x":25,"y":0,"fileNum":597,"id":20673,"width":25,"height":45},{"x":50,"y":0,"fileNum":597,"id":20674,"width":25,"height":45},{"x":75,"y":0,"fileNum":597,"id":20675,"width":25,"height":45},{"x":100,"y":0,"fileNum":597,"id":20676,"width":25,"height":45},{"x":125,"y":0,"fileNum":597,"id":20677,"width":25,"height":45},{"x":0,"y":45,"fileNum":597,"id":20678,"width":25,"height":45},{"x":25,"y":45,"fileNum":597,"id":20679,"width":25,"height":45},{"x":50,"y":45,"fileNum":597,"id":20680,"width":25,"height":45},{"x":75,"y":45,"fileNum":597,"id":20681,"width":25,"height":45},{"x":100,"y":45,"fileNum":597,"id":20682,"width":25,"height":45},{"x":125,"y":45,"fileNum":597,"id":20683,"width":25,"height":45},{"x":0,"y":90,"fileNum":597,"id":20684,"width":25,"height":45},{"x":25,"y":90,"fileNum":597,"id":20685,"width":25,"height":45},{"x":50,"y":90,"fileNum":597,"id":20686,"width":25,"height":45},{"x":75,"y":90,"fileNum":597,"id":20687,"width":25,"height":45},{"x":100,"y":90,"fileNum":597,"id":20688,"width":25,"height":45},{"x":0,"y":135,"fileNum":597,"id":20689,"width":25,"height":45},{"x":25,"y":135,"fileNum":597,"id":20690,"width":25,"height":45},{"x":50,"y":135,"fileNum":597,"id":20691,"width":25,"height":45},{"x":75,"y":135,"fileNum":597,"id":20692,"width":25,"height":45},{"x":100,"y":135,"fileNum":597,"id":20693,"width":25,"height":45},{"x":0,"y":0,"fileNum":598,"id":20698,"width":32,"height":32},{"x":0,"y":0,"fileNum":599,"id":20699,"width":25,"height":45},{"x":25,"y":0,"fileNum":599,"id":20700,"width":25,"height":45},{"x":50,"y":0,"fileNum":599,"id":20701,"width":25,"height":45},{"x":75,"y":0,"fileNum":599,"id":20702,"width":25,"height":45},{"x":100,"y":0,"fileNum":599,"id":20703,"width":25,"height":45},{"x":125,"y":0,"fileNum":599,"id":20704,"width":25,"height":45},{"x":0,"y":45,"fileNum":599,"id":20705,"width":25,"height":45},{"x":25,"y":45,"fileNum":599,"id":20706,"width":25,"height":45},{"x":50,"y":45,"fileNum":599,"id":20707,"width":25,"height":45},{"x":75,"y":45,"fileNum":599,"id":20708,"width":25,"height":45},{"x":100,"y":45,"fileNum":599,"id":20709,"width":25,"height":45},{"x":125,"y":45,"fileNum":599,"id":20710,"width":25,"height":45},{"x":0,"y":90,"fileNum":599,"id":20711,"width":25,"height":45},{"x":25,"y":90,"fileNum":599,"id":20712,"width":25,"height":45},{"x":50,"y":90,"fileNum":599,"id":20713,"width":25,"height":45},{"x":75,"y":90,"fileNum":599,"id":20714,"width":25,"height":45},{"x":100,"y":90,"fileNum":599,"id":20715,"width":25,"height":45},{"x":0,"y":135,"fileNum":599,"id":20716,"width":25,"height":45},{"x":25,"y":135,"fileNum":599,"id":20717,"width":25,"height":45},{"x":50,"y":135,"fileNum":599,"id":20718,"width":25,"height":45},{"x":75,"y":135,"fileNum":599,"id":20719,"width":25,"height":45},{"x":100,"y":135,"fileNum":599,"id":20720,"width":25,"height":45},{"x":0,"y":0,"fileNum":600,"id":20725,"width":32,"height":32},{"x":0,"y":0,"fileNum":601,"id":20726,"width":25,"height":45},{"x":25,"y":0,"fileNum":601,"id":20727,"width":25,"height":45},{"x":50,"y":0,"fileNum":601,"id":20728,"width":25,"height":45},{"x":75,"y":0,"fileNum":601,"id":20729,"width":25,"height":45},{"x":100,"y":0,"fileNum":601,"id":20730,"width":25,"height":45},{"x":125,"y":0,"fileNum":601,"id":20731,"width":25,"height":45},{"x":0,"y":45,"fileNum":601,"id":20732,"width":25,"height":45},{"x":25,"y":45,"fileNum":601,"id":20733,"width":25,"height":45},{"x":50,"y":45,"fileNum":601,"id":20734,"width":25,"height":45},{"x":75,"y":45,"fileNum":601,"id":20735,"width":25,"height":45},{"x":100,"y":45,"fileNum":601,"id":20736,"width":25,"height":45},{"x":125,"y":45,"fileNum":601,"id":20737,"width":25,"height":45},{"x":0,"y":90,"fileNum":601,"id":20738,"width":25,"height":45},{"x":25,"y":90,"fileNum":601,"id":20739,"width":25,"height":45},{"x":50,"y":90,"fileNum":601,"id":20740,"width":25,"height":45},{"x":75,"y":90,"fileNum":601,"id":20741,"width":25,"height":45},{"x":100,"y":90,"fileNum":601,"id":20742,"width":25,"height":45},{"x":0,"y":135,"fileNum":601,"id":20743,"width":25,"height":45},{"x":25,"y":135,"fileNum":601,"id":20744,"width":25,"height":45},{"x":50,"y":135,"fileNum":601,"id":20745,"width":25,"height":45},{"x":75,"y":135,"fileNum":601,"id":20746,"width":25,"height":45},{"x":100,"y":135,"fileNum":601,"id":20747,"width":25,"height":45},{"x":0,"y":0,"fileNum":602,"id":20752,"width":32,"height":32},{"x":0,"y":0,"fileNum":603,"id":20753,"width":25,"height":45},{"x":25,"y":0,"fileNum":603,"id":20754,"width":25,"height":45},{"x":50,"y":0,"fileNum":603,"id":20755,"width":25,"height":45},{"x":75,"y":0,"fileNum":603,"id":20756,"width":25,"height":45},{"x":100,"y":0,"fileNum":603,"id":20757,"width":25,"height":45},{"x":125,"y":0,"fileNum":603,"id":20758,"width":25,"height":45},{"x":0,"y":45,"fileNum":603,"id":20759,"width":25,"height":45},{"x":25,"y":45,"fileNum":603,"id":20760,"width":25,"height":45},{"x":50,"y":45,"fileNum":603,"id":20761,"width":25,"height":45},{"x":75,"y":45,"fileNum":603,"id":20762,"width":25,"height":45},{"x":100,"y":45,"fileNum":603,"id":20763,"width":25,"height":45},{"x":125,"y":45,"fileNum":603,"id":20764,"width":25,"height":45},{"x":0,"y":90,"fileNum":603,"id":20765,"width":25,"height":45},{"x":25,"y":90,"fileNum":603,"id":20766,"width":25,"height":45},{"x":50,"y":90,"fileNum":603,"id":20767,"width":25,"height":45},{"x":75,"y":90,"fileNum":603,"id":20768,"width":25,"height":45},{"x":100,"y":90,"fileNum":603,"id":20769,"width":25,"height":45},{"x":0,"y":135,"fileNum":603,"id":20770,"width":25,"height":45},{"x":25,"y":135,"fileNum":603,"id":20771,"width":25,"height":45},{"x":50,"y":135,"fileNum":603,"id":20772,"width":25,"height":45},{"x":75,"y":135,"fileNum":603,"id":20773,"width":25,"height":45},{"x":100,"y":135,"fileNum":603,"id":20774,"width":25,"height":45},{"x":0,"y":0,"fileNum":604,"id":20779,"width":32,"height":32},{"x":0,"y":0,"fileNum":605,"id":20780,"width":25,"height":45},{"x":25,"y":0,"fileNum":605,"id":20781,"width":25,"height":45},{"x":50,"y":0,"fileNum":605,"id":20782,"width":25,"height":45},{"x":75,"y":0,"fileNum":605,"id":20783,"width":25,"height":45},{"x":100,"y":0,"fileNum":605,"id":20784,"width":25,"height":45},{"x":125,"y":0,"fileNum":605,"id":20785,"width":25,"height":45},{"x":0,"y":45,"fileNum":605,"id":20786,"width":25,"height":45},{"x":25,"y":45,"fileNum":605,"id":20787,"width":25,"height":45},{"x":50,"y":45,"fileNum":605,"id":20788,"width":25,"height":45},{"x":75,"y":45,"fileNum":605,"id":20789,"width":25,"height":45},{"x":100,"y":45,"fileNum":605,"id":20790,"width":25,"height":45},{"x":125,"y":45,"fileNum":605,"id":20791,"width":25,"height":45},{"x":0,"y":90,"fileNum":605,"id":20792,"width":25,"height":45},{"x":25,"y":90,"fileNum":605,"id":20793,"width":25,"height":45},{"x":50,"y":90,"fileNum":605,"id":20794,"width":25,"height":45},{"x":75,"y":90,"fileNum":605,"id":20795,"width":25,"height":45},{"x":100,"y":90,"fileNum":605,"id":20796,"width":25,"height":45},{"x":0,"y":135,"fileNum":605,"id":20797,"width":25,"height":45},{"x":25,"y":135,"fileNum":605,"id":20798,"width":25,"height":45},{"x":50,"y":135,"fileNum":605,"id":20799,"width":25,"height":45},{"x":75,"y":135,"fileNum":605,"id":20800,"width":25,"height":45},{"x":100,"y":135,"fileNum":605,"id":20801,"width":25,"height":45},{"x":0,"y":0,"fileNum":606,"id":20806,"width":32,"height":32},{"x":0,"y":0,"fileNum":607,"id":20807,"width":25,"height":45},{"x":25,"y":0,"fileNum":607,"id":20808,"width":25,"height":45},{"x":50,"y":0,"fileNum":607,"id":20809,"width":25,"height":45},{"x":75,"y":0,"fileNum":607,"id":20810,"width":25,"height":45},{"x":100,"y":0,"fileNum":607,"id":20811,"width":25,"height":45},{"x":125,"y":0,"fileNum":607,"id":20812,"width":25,"height":45},{"x":0,"y":45,"fileNum":607,"id":20813,"width":25,"height":45},{"x":25,"y":45,"fileNum":607,"id":20814,"width":25,"height":45},{"x":50,"y":45,"fileNum":607,"id":20815,"width":25,"height":45},{"x":75,"y":45,"fileNum":607,"id":20816,"width":25,"height":45},{"x":100,"y":45,"fileNum":607,"id":20817,"width":25,"height":45},{"x":125,"y":45,"fileNum":607,"id":20818,"width":25,"height":45},{"x":0,"y":90,"fileNum":607,"id":20819,"width":25,"height":45},{"x":25,"y":90,"fileNum":607,"id":20820,"width":25,"height":45},{"x":50,"y":90,"fileNum":607,"id":20821,"width":25,"height":45},{"x":75,"y":90,"fileNum":607,"id":20822,"width":25,"height":45},{"x":100,"y":90,"fileNum":607,"id":20823,"width":25,"height":45},{"x":0,"y":135,"fileNum":607,"id":20824,"width":25,"height":45},{"x":25,"y":135,"fileNum":607,"id":20825,"width":25,"height":45},{"x":50,"y":135,"fileNum":607,"id":20826,"width":25,"height":45},{"x":75,"y":135,"fileNum":607,"id":20827,"width":25,"height":45},{"x":100,"y":135,"fileNum":607,"id":20828,"width":25,"height":45},{"x":0,"y":0,"fileNum":608,"id":20833,"width":32,"height":32},{"x":0,"y":0,"fileNum":609,"id":20834,"width":25,"height":45},{"x":25,"y":0,"fileNum":609,"id":20835,"width":25,"height":45},{"x":50,"y":0,"fileNum":609,"id":20836,"width":25,"height":45},{"x":75,"y":0,"fileNum":609,"id":20837,"width":25,"height":45},{"x":100,"y":0,"fileNum":609,"id":20838,"width":25,"height":45},{"x":125,"y":0,"fileNum":609,"id":20839,"width":25,"height":45},{"x":0,"y":45,"fileNum":609,"id":20840,"width":25,"height":45},{"x":25,"y":45,"fileNum":609,"id":20841,"width":25,"height":45},{"x":50,"y":45,"fileNum":609,"id":20842,"width":25,"height":45},{"x":75,"y":45,"fileNum":609,"id":20843,"width":25,"height":45},{"x":100,"y":45,"fileNum":609,"id":20844,"width":25,"height":45},{"x":125,"y":45,"fileNum":609,"id":20845,"width":25,"height":45},{"x":0,"y":90,"fileNum":609,"id":20846,"width":25,"height":45},{"x":25,"y":90,"fileNum":609,"id":20847,"width":25,"height":45},{"x":50,"y":90,"fileNum":609,"id":20848,"width":25,"height":45},{"x":75,"y":90,"fileNum":609,"id":20849,"width":25,"height":45},{"x":100,"y":90,"fileNum":609,"id":20850,"width":25,"height":45},{"x":0,"y":135,"fileNum":609,"id":20851,"width":25,"height":45},{"x":25,"y":135,"fileNum":609,"id":20852,"width":25,"height":45},{"x":50,"y":135,"fileNum":609,"id":20853,"width":25,"height":45},{"x":75,"y":135,"fileNum":609,"id":20854,"width":25,"height":45},{"x":100,"y":135,"fileNum":609,"id":20855,"width":25,"height":45},{"x":0,"y":0,"fileNum":610,"id":20860,"width":32,"height":32},{"x":0,"y":0,"fileNum":611,"id":20861,"width":25,"height":45},{"x":25,"y":0,"fileNum":611,"id":20862,"width":25,"height":45},{"x":50,"y":0,"fileNum":611,"id":20863,"width":25,"height":45},{"x":75,"y":0,"fileNum":611,"id":20864,"width":25,"height":45},{"x":100,"y":0,"fileNum":611,"id":20865,"width":25,"height":45},{"x":125,"y":0,"fileNum":611,"id":20866,"width":25,"height":45},{"x":0,"y":45,"fileNum":611,"id":20867,"width":25,"height":45},{"x":25,"y":45,"fileNum":611,"id":20868,"width":25,"height":45},{"x":50,"y":45,"fileNum":611,"id":20869,"width":25,"height":45},{"x":75,"y":45,"fileNum":611,"id":20870,"width":25,"height":45},{"x":100,"y":45,"fileNum":611,"id":20871,"width":25,"height":45},{"x":125,"y":45,"fileNum":611,"id":20872,"width":25,"height":45},{"x":0,"y":90,"fileNum":611,"id":20873,"width":25,"height":45},{"x":25,"y":90,"fileNum":611,"id":20874,"width":25,"height":45},{"x":50,"y":90,"fileNum":611,"id":20875,"width":25,"height":45},{"x":75,"y":90,"fileNum":611,"id":20876,"width":25,"height":45},{"x":100,"y":90,"fileNum":611,"id":20877,"width":25,"height":45},{"x":0,"y":135,"fileNum":611,"id":20878,"width":25,"height":45},{"x":25,"y":135,"fileNum":611,"id":20879,"width":25,"height":45},{"x":50,"y":135,"fileNum":611,"id":20880,"width":25,"height":45},{"x":75,"y":135,"fileNum":611,"id":20881,"width":25,"height":45},{"x":100,"y":135,"fileNum":611,"id":20882,"width":25,"height":45},{"x":0,"y":0,"fileNum":612,"id":20887,"width":32,"height":32},{"x":0,"y":0,"fileNum":613,"id":20888,"width":25,"height":45},{"x":25,"y":0,"fileNum":613,"id":20889,"width":25,"height":45},{"x":50,"y":0,"fileNum":613,"id":20890,"width":25,"height":45},{"x":75,"y":0,"fileNum":613,"id":20891,"width":25,"height":45},{"x":100,"y":0,"fileNum":613,"id":20892,"width":25,"height":45},{"x":125,"y":0,"fileNum":613,"id":20893,"width":25,"height":45},{"x":0,"y":45,"fileNum":613,"id":20894,"width":25,"height":45},{"x":25,"y":45,"fileNum":613,"id":20895,"width":25,"height":45},{"x":50,"y":45,"fileNum":613,"id":20896,"width":25,"height":45},{"x":75,"y":45,"fileNum":613,"id":20897,"width":25,"height":45},{"x":100,"y":45,"fileNum":613,"id":20898,"width":25,"height":45},{"x":125,"y":45,"fileNum":613,"id":20899,"width":25,"height":45},{"x":0,"y":90,"fileNum":613,"id":20900,"width":25,"height":45},{"x":25,"y":90,"fileNum":613,"id":20901,"width":25,"height":45},{"x":50,"y":90,"fileNum":613,"id":20902,"width":25,"height":45},{"x":75,"y":90,"fileNum":613,"id":20903,"width":25,"height":45},{"x":100,"y":90,"fileNum":613,"id":20904,"width":25,"height":45},{"x":0,"y":135,"fileNum":613,"id":20905,"width":25,"height":45},{"x":25,"y":135,"fileNum":613,"id":20906,"width":25,"height":45},{"x":50,"y":135,"fileNum":613,"id":20907,"width":25,"height":45},{"x":75,"y":135,"fileNum":613,"id":20908,"width":25,"height":45},{"x":100,"y":135,"fileNum":613,"id":20909,"width":25,"height":45},{"x":0,"y":0,"fileNum":614,"id":20914,"width":32,"height":32},{"x":0,"y":0,"fileNum":615,"id":20915,"width":25,"height":45},{"x":25,"y":0,"fileNum":615,"id":20916,"width":25,"height":45},{"x":50,"y":0,"fileNum":615,"id":20917,"width":25,"height":45},{"x":75,"y":0,"fileNum":615,"id":20918,"width":25,"height":45},{"x":100,"y":0,"fileNum":615,"id":20919,"width":25,"height":45},{"x":125,"y":0,"fileNum":615,"id":20920,"width":25,"height":45},{"x":0,"y":45,"fileNum":615,"id":20921,"width":25,"height":45},{"x":25,"y":45,"fileNum":615,"id":20922,"width":25,"height":45},{"x":50,"y":45,"fileNum":615,"id":20923,"width":25,"height":45},{"x":75,"y":45,"fileNum":615,"id":20924,"width":25,"height":45},{"x":100,"y":45,"fileNum":615,"id":20925,"width":25,"height":45},{"x":125,"y":45,"fileNum":615,"id":20926,"width":25,"height":45},{"x":0,"y":90,"fileNum":615,"id":20927,"width":25,"height":45},{"x":25,"y":90,"fileNum":615,"id":20928,"width":25,"height":45},{"x":50,"y":90,"fileNum":615,"id":20929,"width":25,"height":45},{"x":75,"y":90,"fileNum":615,"id":20930,"width":25,"height":45},{"x":100,"y":90,"fileNum":615,"id":20931,"width":25,"height":45},{"x":0,"y":135,"fileNum":615,"id":20932,"width":25,"height":45},{"x":25,"y":135,"fileNum":615,"id":20933,"width":25,"height":45},{"x":50,"y":135,"fileNum":615,"id":20934,"width":25,"height":45},{"x":75,"y":135,"fileNum":615,"id":20935,"width":25,"height":45},{"x":100,"y":135,"fileNum":615,"id":20936,"width":25,"height":45},{"x":0,"y":0,"fileNum":616,"id":20941,"width":32,"height":32},{"x":0,"y":0,"fileNum":617,"id":20942,"width":25,"height":45},{"x":25,"y":0,"fileNum":617,"id":20943,"width":25,"height":45},{"x":50,"y":0,"fileNum":617,"id":20944,"width":25,"height":45},{"x":75,"y":0,"fileNum":617,"id":20945,"width":25,"height":45},{"x":100,"y":0,"fileNum":617,"id":20946,"width":25,"height":45},{"x":125,"y":0,"fileNum":617,"id":20947,"width":25,"height":45},{"x":0,"y":45,"fileNum":617,"id":20948,"width":25,"height":45},{"x":25,"y":45,"fileNum":617,"id":20949,"width":25,"height":45},{"x":50,"y":45,"fileNum":617,"id":20950,"width":25,"height":45},{"x":75,"y":45,"fileNum":617,"id":20951,"width":25,"height":45},{"x":100,"y":45,"fileNum":617,"id":20952,"width":25,"height":45},{"x":125,"y":45,"fileNum":617,"id":20953,"width":25,"height":45},{"x":0,"y":90,"fileNum":617,"id":20954,"width":25,"height":45},{"x":25,"y":90,"fileNum":617,"id":20955,"width":25,"height":45},{"x":50,"y":90,"fileNum":617,"id":20956,"width":25,"height":45},{"x":75,"y":90,"fileNum":617,"id":20957,"width":25,"height":45},{"x":100,"y":90,"fileNum":617,"id":20958,"width":25,"height":45},{"x":0,"y":135,"fileNum":617,"id":20959,"width":25,"height":45},{"x":25,"y":135,"fileNum":617,"id":20960,"width":25,"height":45},{"x":50,"y":135,"fileNum":617,"id":20961,"width":25,"height":45},{"x":75,"y":135,"fileNum":617,"id":20962,"width":25,"height":45},{"x":100,"y":135,"fileNum":617,"id":20963,"width":25,"height":45},{"x":0,"y":0,"fileNum":618,"id":20968,"width":32,"height":32},{"x":0,"y":0,"fileNum":619,"id":20969,"width":25,"height":45},{"x":25,"y":0,"fileNum":619,"id":20970,"width":25,"height":45},{"x":50,"y":0,"fileNum":619,"id":20971,"width":25,"height":45},{"x":75,"y":0,"fileNum":619,"id":20972,"width":25,"height":45},{"x":100,"y":0,"fileNum":619,"id":20973,"width":25,"height":45},{"x":125,"y":0,"fileNum":619,"id":20974,"width":25,"height":45},{"x":0,"y":45,"fileNum":619,"id":20975,"width":25,"height":45},{"x":25,"y":45,"fileNum":619,"id":20976,"width":25,"height":45},{"x":50,"y":45,"fileNum":619,"id":20977,"width":25,"height":45},{"x":75,"y":45,"fileNum":619,"id":20978,"width":25,"height":45},{"x":100,"y":45,"fileNum":619,"id":20979,"width":25,"height":45},{"x":125,"y":45,"fileNum":619,"id":20980,"width":25,"height":45},{"x":0,"y":90,"fileNum":619,"id":20981,"width":25,"height":45},{"x":25,"y":90,"fileNum":619,"id":20982,"width":25,"height":45},{"x":50,"y":90,"fileNum":619,"id":20983,"width":25,"height":45},{"x":75,"y":90,"fileNum":619,"id":20984,"width":25,"height":45},{"x":100,"y":90,"fileNum":619,"id":20985,"width":25,"height":45},{"x":0,"y":135,"fileNum":619,"id":20986,"width":25,"height":45},{"x":25,"y":135,"fileNum":619,"id":20987,"width":25,"height":45},{"x":50,"y":135,"fileNum":619,"id":20988,"width":25,"height":45},{"x":75,"y":135,"fileNum":619,"id":20989,"width":25,"height":45},{"x":100,"y":135,"fileNum":619,"id":20990,"width":25,"height":45},{"x":0,"y":0,"fileNum":620,"id":20995,"width":32,"height":32},{"x":0,"y":0,"fileNum":621,"id":20996,"width":25,"height":45},{"x":25,"y":0,"fileNum":621,"id":20997,"width":25,"height":45},{"x":50,"y":0,"fileNum":621,"id":20998,"width":25,"height":45},{"x":75,"y":0,"fileNum":621,"id":20999,"width":25,"height":45},{"x":100,"y":0,"fileNum":621,"id":21000,"width":25,"height":45},{"x":125,"y":0,"fileNum":621,"id":21001,"width":25,"height":45},{"x":0,"y":45,"fileNum":621,"id":21002,"width":25,"height":45},{"x":25,"y":45,"fileNum":621,"id":21003,"width":25,"height":45},{"x":50,"y":45,"fileNum":621,"id":21004,"width":25,"height":45},{"x":75,"y":45,"fileNum":621,"id":21005,"width":25,"height":45},{"x":100,"y":45,"fileNum":621,"id":21006,"width":25,"height":45},{"x":125,"y":45,"fileNum":621,"id":21007,"width":25,"height":45},{"x":0,"y":90,"fileNum":621,"id":21008,"width":25,"height":45},{"x":25,"y":90,"fileNum":621,"id":21009,"width":25,"height":45},{"x":50,"y":90,"fileNum":621,"id":21010,"width":25,"height":45},{"x":75,"y":90,"fileNum":621,"id":21011,"width":25,"height":45},{"x":100,"y":90,"fileNum":621,"id":21012,"width":25,"height":45},{"x":0,"y":135,"fileNum":621,"id":21013,"width":25,"height":45},{"x":25,"y":135,"fileNum":621,"id":21014,"width":25,"height":45},{"x":50,"y":135,"fileNum":621,"id":21015,"width":25,"height":45},{"x":75,"y":135,"fileNum":621,"id":21016,"width":25,"height":45},{"x":100,"y":135,"fileNum":621,"id":21017,"width":25,"height":45},{"x":0,"y":0,"fileNum":622,"id":21022,"width":32,"height":32},{"x":0,"y":0,"fileNum":623,"id":21023,"width":25,"height":45},{"x":25,"y":0,"fileNum":623,"id":21024,"width":25,"height":45},{"x":50,"y":0,"fileNum":623,"id":21025,"width":25,"height":45},{"x":75,"y":0,"fileNum":623,"id":21026,"width":25,"height":45},{"x":100,"y":0,"fileNum":623,"id":21027,"width":25,"height":45},{"x":125,"y":0,"fileNum":623,"id":21028,"width":25,"height":45},{"x":0,"y":45,"fileNum":623,"id":21029,"width":25,"height":45},{"x":25,"y":45,"fileNum":623,"id":21030,"width":25,"height":45},{"x":50,"y":45,"fileNum":623,"id":21031,"width":25,"height":45},{"x":75,"y":45,"fileNum":623,"id":21032,"width":25,"height":45},{"x":100,"y":45,"fileNum":623,"id":21033,"width":25,"height":45},{"x":125,"y":45,"fileNum":623,"id":21034,"width":25,"height":45},{"x":0,"y":90,"fileNum":623,"id":21035,"width":25,"height":45},{"x":25,"y":90,"fileNum":623,"id":21036,"width":25,"height":45},{"x":50,"y":90,"fileNum":623,"id":21037,"width":25,"height":45},{"x":75,"y":90,"fileNum":623,"id":21038,"width":25,"height":45},{"x":100,"y":90,"fileNum":623,"id":21039,"width":25,"height":45},{"x":0,"y":135,"fileNum":623,"id":21040,"width":25,"height":45},{"x":25,"y":135,"fileNum":623,"id":21041,"width":25,"height":45},{"x":50,"y":135,"fileNum":623,"id":21042,"width":25,"height":45},{"x":75,"y":135,"fileNum":623,"id":21043,"width":25,"height":45},{"x":100,"y":135,"fileNum":623,"id":21044,"width":25,"height":45},{"x":0,"y":0,"fileNum":624,"id":21049,"width":32,"height":32},{"x":0,"y":0,"fileNum":625,"id":21050,"width":25,"height":45},{"x":25,"y":0,"fileNum":625,"id":21051,"width":25,"height":45},{"x":50,"y":0,"fileNum":625,"id":21052,"width":25,"height":45},{"x":75,"y":0,"fileNum":625,"id":21053,"width":25,"height":45},{"x":100,"y":0,"fileNum":625,"id":21054,"width":25,"height":45},{"x":125,"y":0,"fileNum":625,"id":21055,"width":25,"height":45},{"x":0,"y":45,"fileNum":625,"id":21056,"width":25,"height":45},{"x":25,"y":45,"fileNum":625,"id":21057,"width":25,"height":45},{"x":50,"y":45,"fileNum":625,"id":21058,"width":25,"height":45},{"x":75,"y":45,"fileNum":625,"id":21059,"width":25,"height":45},{"x":100,"y":45,"fileNum":625,"id":21060,"width":25,"height":45},{"x":125,"y":45,"fileNum":625,"id":21061,"width":25,"height":45},{"x":0,"y":90,"fileNum":625,"id":21062,"width":25,"height":45},{"x":25,"y":90,"fileNum":625,"id":21063,"width":25,"height":45},{"x":50,"y":90,"fileNum":625,"id":21064,"width":25,"height":45},{"x":75,"y":90,"fileNum":625,"id":21065,"width":25,"height":45},{"x":100,"y":90,"fileNum":625,"id":21066,"width":25,"height":45},{"x":0,"y":135,"fileNum":625,"id":21067,"width":25,"height":45},{"x":25,"y":135,"fileNum":625,"id":21068,"width":25,"height":45},{"x":50,"y":135,"fileNum":625,"id":21069,"width":25,"height":45},{"x":75,"y":135,"fileNum":625,"id":21070,"width":25,"height":45},{"x":100,"y":135,"fileNum":625,"id":21071,"width":25,"height":45},{"x":0,"y":0,"fileNum":626,"id":21076,"width":32,"height":32},{"x":0,"y":0,"fileNum":627,"id":21077,"width":25,"height":45},{"x":25,"y":0,"fileNum":627,"id":21078,"width":25,"height":45},{"x":50,"y":0,"fileNum":627,"id":21079,"width":25,"height":45},{"x":75,"y":0,"fileNum":627,"id":21080,"width":25,"height":45},{"x":100,"y":0,"fileNum":627,"id":21081,"width":25,"height":45},{"x":125,"y":0,"fileNum":627,"id":21082,"width":25,"height":45},{"x":0,"y":45,"fileNum":627,"id":21083,"width":25,"height":45},{"x":25,"y":45,"fileNum":627,"id":21084,"width":25,"height":45},{"x":50,"y":45,"fileNum":627,"id":21085,"width":25,"height":45},{"x":75,"y":45,"fileNum":627,"id":21086,"width":25,"height":45},{"x":100,"y":45,"fileNum":627,"id":21087,"width":25,"height":45},{"x":125,"y":45,"fileNum":627,"id":21088,"width":25,"height":45},{"x":0,"y":90,"fileNum":627,"id":21089,"width":25,"height":45},{"x":25,"y":90,"fileNum":627,"id":21090,"width":25,"height":45},{"x":50,"y":90,"fileNum":627,"id":21091,"width":25,"height":45},{"x":75,"y":90,"fileNum":627,"id":21092,"width":25,"height":45},{"x":100,"y":90,"fileNum":627,"id":21093,"width":25,"height":45},{"x":0,"y":135,"fileNum":627,"id":21094,"width":25,"height":45},{"x":25,"y":135,"fileNum":627,"id":21095,"width":25,"height":45},{"x":50,"y":135,"fileNum":627,"id":21096,"width":25,"height":45},{"x":75,"y":135,"fileNum":627,"id":21097,"width":25,"height":45},{"x":100,"y":135,"fileNum":627,"id":21098,"width":25,"height":45},{"x":0,"y":0,"fileNum":628,"id":21103,"width":32,"height":32},{"x":0,"y":0,"fileNum":629,"id":21104,"width":25,"height":45},{"x":25,"y":0,"fileNum":629,"id":21105,"width":25,"height":45},{"x":50,"y":0,"fileNum":629,"id":21106,"width":25,"height":45},{"x":75,"y":0,"fileNum":629,"id":21107,"width":25,"height":45},{"x":100,"y":0,"fileNum":629,"id":21108,"width":25,"height":45},{"x":125,"y":0,"fileNum":629,"id":21109,"width":25,"height":45},{"x":0,"y":45,"fileNum":629,"id":21110,"width":25,"height":45},{"x":25,"y":45,"fileNum":629,"id":21111,"width":25,"height":45},{"x":50,"y":45,"fileNum":629,"id":21112,"width":25,"height":45},{"x":75,"y":45,"fileNum":629,"id":21113,"width":25,"height":45},{"x":100,"y":45,"fileNum":629,"id":21114,"width":25,"height":45},{"x":125,"y":45,"fileNum":629,"id":21115,"width":25,"height":45},{"x":0,"y":90,"fileNum":629,"id":21116,"width":25,"height":45},{"x":25,"y":90,"fileNum":629,"id":21117,"width":25,"height":45},{"x":50,"y":90,"fileNum":629,"id":21118,"width":25,"height":45},{"x":75,"y":90,"fileNum":629,"id":21119,"width":25,"height":45},{"x":100,"y":90,"fileNum":629,"id":21120,"width":25,"height":45},{"x":0,"y":135,"fileNum":629,"id":21121,"width":25,"height":45},{"x":25,"y":135,"fileNum":629,"id":21122,"width":25,"height":45},{"x":50,"y":135,"fileNum":629,"id":21123,"width":25,"height":45},{"x":75,"y":135,"fileNum":629,"id":21124,"width":25,"height":45},{"x":100,"y":135,"fileNum":629,"id":21125,"width":25,"height":45},{"x":0,"y":0,"fileNum":630,"id":21130,"width":32,"height":32},{"x":0,"y":0,"fileNum":631,"id":21131,"width":25,"height":45},{"x":25,"y":0,"fileNum":631,"id":21132,"width":25,"height":45},{"x":50,"y":0,"fileNum":631,"id":21133,"width":25,"height":45},{"x":75,"y":0,"fileNum":631,"id":21134,"width":25,"height":45},{"x":100,"y":0,"fileNum":631,"id":21135,"width":25,"height":45},{"x":125,"y":0,"fileNum":631,"id":21136,"width":25,"height":45},{"x":0,"y":45,"fileNum":631,"id":21137,"width":25,"height":45},{"x":25,"y":45,"fileNum":631,"id":21138,"width":25,"height":45},{"x":50,"y":45,"fileNum":631,"id":21139,"width":25,"height":45},{"x":75,"y":45,"fileNum":631,"id":21140,"width":25,"height":45},{"x":100,"y":45,"fileNum":631,"id":21141,"width":25,"height":45},{"x":125,"y":45,"fileNum":631,"id":21142,"width":25,"height":45},{"x":0,"y":90,"fileNum":631,"id":21143,"width":25,"height":45},{"x":25,"y":90,"fileNum":631,"id":21144,"width":25,"height":45},{"x":50,"y":90,"fileNum":631,"id":21145,"width":25,"height":45},{"x":75,"y":90,"fileNum":631,"id":21146,"width":25,"height":45},{"x":100,"y":90,"fileNum":631,"id":21147,"width":25,"height":45},{"x":0,"y":135,"fileNum":631,"id":21148,"width":25,"height":45},{"x":25,"y":135,"fileNum":631,"id":21149,"width":25,"height":45},{"x":50,"y":135,"fileNum":631,"id":21150,"width":25,"height":45},{"x":75,"y":135,"fileNum":631,"id":21151,"width":25,"height":45},{"x":100,"y":135,"fileNum":631,"id":21152,"width":25,"height":45},{"x":0,"y":0,"fileNum":632,"id":21157,"width":32,"height":32},{"x":0,"y":0,"fileNum":633,"id":21158,"width":25,"height":45},{"x":25,"y":0,"fileNum":633,"id":21159,"width":25,"height":45},{"x":50,"y":0,"fileNum":633,"id":21160,"width":25,"height":45},{"x":75,"y":0,"fileNum":633,"id":21161,"width":25,"height":45},{"x":100,"y":0,"fileNum":633,"id":21162,"width":25,"height":45},{"x":125,"y":0,"fileNum":633,"id":21163,"width":25,"height":45},{"x":0,"y":45,"fileNum":633,"id":21164,"width":25,"height":45},{"x":25,"y":45,"fileNum":633,"id":21165,"width":25,"height":45},{"x":50,"y":45,"fileNum":633,"id":21166,"width":25,"height":45},{"x":75,"y":45,"fileNum":633,"id":21167,"width":25,"height":45},{"x":100,"y":45,"fileNum":633,"id":21168,"width":25,"height":45},{"x":125,"y":45,"fileNum":633,"id":21169,"width":25,"height":45},{"x":0,"y":90,"fileNum":633,"id":21170,"width":25,"height":45},{"x":25,"y":90,"fileNum":633,"id":21171,"width":25,"height":45},{"x":50,"y":90,"fileNum":633,"id":21172,"width":25,"height":45},{"x":75,"y":90,"fileNum":633,"id":21173,"width":25,"height":45},{"x":100,"y":90,"fileNum":633,"id":21174,"width":25,"height":45},{"x":0,"y":135,"fileNum":633,"id":21175,"width":25,"height":45},{"x":25,"y":135,"fileNum":633,"id":21176,"width":25,"height":45},{"x":50,"y":135,"fileNum":633,"id":21177,"width":25,"height":45},{"x":75,"y":135,"fileNum":633,"id":21178,"width":25,"height":45},{"x":100,"y":135,"fileNum":633,"id":21179,"width":25,"height":45},{"x":0,"y":0,"fileNum":634,"id":21184,"width":32,"height":32},{"x":0,"y":0,"fileNum":635,"id":21185,"width":25,"height":45},{"x":25,"y":0,"fileNum":635,"id":21186,"width":25,"height":45},{"x":50,"y":0,"fileNum":635,"id":21187,"width":25,"height":45},{"x":75,"y":0,"fileNum":635,"id":21188,"width":25,"height":45},{"x":100,"y":0,"fileNum":635,"id":21189,"width":25,"height":45},{"x":125,"y":0,"fileNum":635,"id":21190,"width":25,"height":45},{"x":0,"y":45,"fileNum":635,"id":21191,"width":25,"height":45},{"x":25,"y":45,"fileNum":635,"id":21192,"width":25,"height":45},{"x":50,"y":45,"fileNum":635,"id":21193,"width":25,"height":45},{"x":75,"y":45,"fileNum":635,"id":21194,"width":25,"height":45},{"x":100,"y":45,"fileNum":635,"id":21195,"width":25,"height":45},{"x":125,"y":45,"fileNum":635,"id":21196,"width":25,"height":45},{"x":0,"y":90,"fileNum":635,"id":21197,"width":25,"height":45},{"x":25,"y":90,"fileNum":635,"id":21198,"width":25,"height":45},{"x":50,"y":90,"fileNum":635,"id":21199,"width":25,"height":45},{"x":75,"y":90,"fileNum":635,"id":21200,"width":25,"height":45},{"x":100,"y":90,"fileNum":635,"id":21201,"width":25,"height":45},{"x":0,"y":135,"fileNum":635,"id":21202,"width":25,"height":45},{"x":25,"y":135,"fileNum":635,"id":21203,"width":25,"height":45},{"x":50,"y":135,"fileNum":635,"id":21204,"width":25,"height":45},{"x":75,"y":135,"fileNum":635,"id":21205,"width":25,"height":45},{"x":100,"y":135,"fileNum":635,"id":21206,"width":25,"height":45},{"x":0,"y":0,"fileNum":636,"id":21211,"width":32,"height":32},{"x":0,"y":0,"fileNum":637,"id":21212,"width":25,"height":45},{"x":25,"y":0,"fileNum":637,"id":21213,"width":25,"height":45},{"x":50,"y":0,"fileNum":637,"id":21214,"width":25,"height":45},{"x":75,"y":0,"fileNum":637,"id":21215,"width":25,"height":45},{"x":100,"y":0,"fileNum":637,"id":21216,"width":25,"height":45},{"x":125,"y":0,"fileNum":637,"id":21217,"width":25,"height":45},{"x":0,"y":45,"fileNum":637,"id":21218,"width":25,"height":45},{"x":25,"y":45,"fileNum":637,"id":21219,"width":25,"height":45},{"x":50,"y":45,"fileNum":637,"id":21220,"width":25,"height":45},{"x":75,"y":45,"fileNum":637,"id":21221,"width":25,"height":45},{"x":100,"y":45,"fileNum":637,"id":21222,"width":25,"height":45},{"x":125,"y":45,"fileNum":637,"id":21223,"width":25,"height":45},{"x":0,"y":90,"fileNum":637,"id":21224,"width":25,"height":45},{"x":25,"y":90,"fileNum":637,"id":21225,"width":25,"height":45},{"x":50,"y":90,"fileNum":637,"id":21226,"width":25,"height":45},{"x":75,"y":90,"fileNum":637,"id":21227,"width":25,"height":45},{"x":100,"y":90,"fileNum":637,"id":21228,"width":25,"height":45},{"x":0,"y":135,"fileNum":637,"id":21229,"width":25,"height":45},{"x":25,"y":135,"fileNum":637,"id":21230,"width":25,"height":45},{"x":50,"y":135,"fileNum":637,"id":21231,"width":25,"height":45},{"x":75,"y":135,"fileNum":637,"id":21232,"width":25,"height":45},{"x":100,"y":135,"fileNum":637,"id":21233,"width":25,"height":45},{"x":0,"y":0,"fileNum":638,"id":21238,"width":32,"height":32},{"x":0,"y":0,"fileNum":639,"id":21239,"width":25,"height":45},{"x":25,"y":0,"fileNum":639,"id":21240,"width":25,"height":45},{"x":50,"y":0,"fileNum":639,"id":21241,"width":25,"height":45},{"x":75,"y":0,"fileNum":639,"id":21242,"width":25,"height":45},{"x":100,"y":0,"fileNum":639,"id":21243,"width":25,"height":45},{"x":125,"y":0,"fileNum":639,"id":21244,"width":25,"height":45},{"x":0,"y":45,"fileNum":639,"id":21245,"width":25,"height":45},{"x":25,"y":45,"fileNum":639,"id":21246,"width":25,"height":45},{"x":50,"y":45,"fileNum":639,"id":21247,"width":25,"height":45},{"x":75,"y":45,"fileNum":639,"id":21248,"width":25,"height":45},{"x":100,"y":45,"fileNum":639,"id":21249,"width":25,"height":45},{"x":125,"y":45,"fileNum":639,"id":21250,"width":25,"height":45},{"x":0,"y":90,"fileNum":639,"id":21251,"width":25,"height":45},{"x":25,"y":90,"fileNum":639,"id":21252,"width":25,"height":45},{"x":50,"y":90,"fileNum":639,"id":21253,"width":25,"height":45},{"x":75,"y":90,"fileNum":639,"id":21254,"width":25,"height":45},{"x":100,"y":90,"fileNum":639,"id":21255,"width":25,"height":45},{"x":0,"y":135,"fileNum":639,"id":21256,"width":25,"height":45},{"x":25,"y":135,"fileNum":639,"id":21257,"width":25,"height":45},{"x":50,"y":135,"fileNum":639,"id":21258,"width":25,"height":45},{"x":75,"y":135,"fileNum":639,"id":21259,"width":25,"height":45},{"x":100,"y":135,"fileNum":639,"id":21260,"width":25,"height":45},{"x":0,"y":0,"fileNum":640,"id":21265,"width":32,"height":32},{"x":0,"y":0,"fileNum":641,"id":21266,"width":25,"height":45},{"x":25,"y":0,"fileNum":641,"id":21267,"width":25,"height":45},{"x":50,"y":0,"fileNum":641,"id":21268,"width":25,"height":45},{"x":75,"y":0,"fileNum":641,"id":21269,"width":25,"height":45},{"x":100,"y":0,"fileNum":641,"id":21270,"width":25,"height":45},{"x":125,"y":0,"fileNum":641,"id":21271,"width":25,"height":45},{"x":0,"y":45,"fileNum":641,"id":21272,"width":25,"height":45},{"x":25,"y":45,"fileNum":641,"id":21273,"width":25,"height":45},{"x":50,"y":45,"fileNum":641,"id":21274,"width":25,"height":45},{"x":75,"y":45,"fileNum":641,"id":21275,"width":25,"height":45},{"x":100,"y":45,"fileNum":641,"id":21276,"width":25,"height":45},{"x":125,"y":45,"fileNum":641,"id":21277,"width":25,"height":45},{"x":0,"y":90,"fileNum":641,"id":21278,"width":25,"height":45},{"x":25,"y":90,"fileNum":641,"id":21279,"width":25,"height":45},{"x":50,"y":90,"fileNum":641,"id":21280,"width":25,"height":45},{"x":75,"y":90,"fileNum":641,"id":21281,"width":25,"height":45},{"x":100,"y":90,"fileNum":641,"id":21282,"width":25,"height":45},{"x":0,"y":135,"fileNum":641,"id":21283,"width":25,"height":45},{"x":25,"y":135,"fileNum":641,"id":21284,"width":25,"height":45},{"x":50,"y":135,"fileNum":641,"id":21285,"width":25,"height":45},{"x":75,"y":135,"fileNum":641,"id":21286,"width":25,"height":45},{"x":100,"y":135,"fileNum":641,"id":21287,"width":25,"height":45},{"x":0,"y":0,"fileNum":642,"id":21292,"width":32,"height":32},{"x":0,"y":0,"fileNum":643,"id":21293,"width":25,"height":45},{"x":25,"y":0,"fileNum":643,"id":21294,"width":25,"height":45},{"x":50,"y":0,"fileNum":643,"id":21295,"width":25,"height":45},{"x":75,"y":0,"fileNum":643,"id":21296,"width":25,"height":45},{"x":100,"y":0,"fileNum":643,"id":21297,"width":25,"height":45},{"x":125,"y":0,"fileNum":643,"id":21298,"width":25,"height":45},{"x":0,"y":45,"fileNum":643,"id":21299,"width":25,"height":45},{"x":25,"y":45,"fileNum":643,"id":21300,"width":25,"height":45},{"x":50,"y":45,"fileNum":643,"id":21301,"width":25,"height":45},{"x":75,"y":45,"fileNum":643,"id":21302,"width":25,"height":45},{"x":100,"y":45,"fileNum":643,"id":21303,"width":25,"height":45},{"x":125,"y":45,"fileNum":643,"id":21304,"width":25,"height":45},{"x":0,"y":90,"fileNum":643,"id":21305,"width":25,"height":45},{"x":25,"y":90,"fileNum":643,"id":21306,"width":25,"height":45},{"x":50,"y":90,"fileNum":643,"id":21307,"width":25,"height":45},{"x":75,"y":90,"fileNum":643,"id":21308,"width":25,"height":45},{"x":100,"y":90,"fileNum":643,"id":21309,"width":25,"height":45},{"x":0,"y":135,"fileNum":643,"id":21310,"width":25,"height":45},{"x":25,"y":135,"fileNum":643,"id":21311,"width":25,"height":45},{"x":50,"y":135,"fileNum":643,"id":21312,"width":25,"height":45},{"x":75,"y":135,"fileNum":643,"id":21313,"width":25,"height":45},{"x":100,"y":135,"fileNum":643,"id":21314,"width":25,"height":45},{"x":0,"y":0,"fileNum":644,"id":21319,"width":32,"height":32},{"x":0,"y":0,"fileNum":645,"id":21320,"width":25,"height":45},{"x":25,"y":0,"fileNum":645,"id":21321,"width":25,"height":45},{"x":50,"y":0,"fileNum":645,"id":21322,"width":25,"height":45},{"x":75,"y":0,"fileNum":645,"id":21323,"width":25,"height":45},{"x":100,"y":0,"fileNum":645,"id":21324,"width":25,"height":45},{"x":125,"y":0,"fileNum":645,"id":21325,"width":25,"height":45},{"x":0,"y":45,"fileNum":645,"id":21326,"width":25,"height":45},{"x":25,"y":45,"fileNum":645,"id":21327,"width":25,"height":45},{"x":50,"y":45,"fileNum":645,"id":21328,"width":25,"height":45},{"x":75,"y":45,"fileNum":645,"id":21329,"width":25,"height":45},{"x":100,"y":45,"fileNum":645,"id":21330,"width":25,"height":45},{"x":125,"y":45,"fileNum":645,"id":21331,"width":25,"height":45},{"x":0,"y":90,"fileNum":645,"id":21332,"width":25,"height":45},{"x":25,"y":90,"fileNum":645,"id":21333,"width":25,"height":45},{"x":50,"y":90,"fileNum":645,"id":21334,"width":25,"height":45},{"x":75,"y":90,"fileNum":645,"id":21335,"width":25,"height":45},{"x":100,"y":90,"fileNum":645,"id":21336,"width":25,"height":45},{"x":0,"y":135,"fileNum":645,"id":21337,"width":25,"height":45},{"x":25,"y":135,"fileNum":645,"id":21338,"width":25,"height":45},{"x":50,"y":135,"fileNum":645,"id":21339,"width":25,"height":45},{"x":75,"y":135,"fileNum":645,"id":21340,"width":25,"height":45},{"x":100,"y":135,"fileNum":645,"id":21341,"width":25,"height":45},{"x":0,"y":0,"fileNum":646,"id":21346,"width":32,"height":32},{"x":0,"y":0,"fileNum":647,"id":21347,"width":25,"height":45},{"x":25,"y":0,"fileNum":647,"id":21348,"width":25,"height":45},{"x":50,"y":0,"fileNum":647,"id":21349,"width":25,"height":45},{"x":75,"y":0,"fileNum":647,"id":21350,"width":25,"height":45},{"x":100,"y":0,"fileNum":647,"id":21351,"width":25,"height":45},{"x":125,"y":0,"fileNum":647,"id":21352,"width":25,"height":45},{"x":0,"y":45,"fileNum":647,"id":21353,"width":25,"height":45},{"x":25,"y":45,"fileNum":647,"id":21354,"width":25,"height":45},{"x":50,"y":45,"fileNum":647,"id":21355,"width":25,"height":45},{"x":75,"y":45,"fileNum":647,"id":21356,"width":25,"height":45},{"x":100,"y":45,"fileNum":647,"id":21357,"width":25,"height":45},{"x":125,"y":45,"fileNum":647,"id":21358,"width":25,"height":45},{"x":0,"y":90,"fileNum":647,"id":21359,"width":25,"height":45},{"x":25,"y":90,"fileNum":647,"id":21360,"width":25,"height":45},{"x":50,"y":90,"fileNum":647,"id":21361,"width":25,"height":45},{"x":75,"y":90,"fileNum":647,"id":21362,"width":25,"height":45},{"x":100,"y":90,"fileNum":647,"id":21363,"width":25,"height":45},{"x":0,"y":135,"fileNum":647,"id":21364,"width":25,"height":45},{"x":25,"y":135,"fileNum":647,"id":21365,"width":25,"height":45},{"x":50,"y":135,"fileNum":647,"id":21366,"width":25,"height":45},{"x":75,"y":135,"fileNum":647,"id":21367,"width":25,"height":45},{"x":100,"y":135,"fileNum":647,"id":21368,"width":25,"height":45},{"x":0,"y":0,"fileNum":648,"id":21373,"width":32,"height":32},{"x":0,"y":0,"fileNum":649,"id":21374,"width":25,"height":45},{"x":25,"y":0,"fileNum":649,"id":21375,"width":25,"height":45},{"x":50,"y":0,"fileNum":649,"id":21376,"width":25,"height":45},{"x":75,"y":0,"fileNum":649,"id":21377,"width":25,"height":45},{"x":100,"y":0,"fileNum":649,"id":21378,"width":25,"height":45},{"x":125,"y":0,"fileNum":649,"id":21379,"width":25,"height":45},{"x":0,"y":45,"fileNum":649,"id":21380,"width":25,"height":45},{"x":25,"y":45,"fileNum":649,"id":21381,"width":25,"height":45},{"x":50,"y":45,"fileNum":649,"id":21382,"width":25,"height":45},{"x":75,"y":45,"fileNum":649,"id":21383,"width":25,"height":45},{"x":100,"y":45,"fileNum":649,"id":21384,"width":25,"height":45},{"x":125,"y":45,"fileNum":649,"id":21385,"width":25,"height":45},{"x":0,"y":90,"fileNum":649,"id":21386,"width":25,"height":45},{"x":25,"y":90,"fileNum":649,"id":21387,"width":25,"height":45},{"x":50,"y":90,"fileNum":649,"id":21388,"width":25,"height":45},{"x":75,"y":90,"fileNum":649,"id":21389,"width":25,"height":45},{"x":100,"y":90,"fileNum":649,"id":21390,"width":25,"height":45},{"x":0,"y":135,"fileNum":649,"id":21391,"width":25,"height":45},{"x":25,"y":135,"fileNum":649,"id":21392,"width":25,"height":45},{"x":50,"y":135,"fileNum":649,"id":21393,"width":25,"height":45},{"x":75,"y":135,"fileNum":649,"id":21394,"width":25,"height":45},{"x":100,"y":135,"fileNum":649,"id":21395,"width":25,"height":45},{"x":0,"y":0,"fileNum":650,"id":21400,"width":32,"height":32},{"x":0,"y":0,"fileNum":651,"id":21401,"width":25,"height":45},{"x":25,"y":0,"fileNum":651,"id":21402,"width":25,"height":45},{"x":50,"y":0,"fileNum":651,"id":21403,"width":25,"height":45},{"x":75,"y":0,"fileNum":651,"id":21404,"width":25,"height":45},{"x":100,"y":0,"fileNum":651,"id":21405,"width":25,"height":45},{"x":125,"y":0,"fileNum":651,"id":21406,"width":25,"height":45},{"x":0,"y":45,"fileNum":651,"id":21407,"width":25,"height":45},{"x":25,"y":45,"fileNum":651,"id":21408,"width":25,"height":45},{"x":50,"y":45,"fileNum":651,"id":21409,"width":25,"height":45},{"x":75,"y":45,"fileNum":651,"id":21410,"width":25,"height":45},{"x":100,"y":45,"fileNum":651,"id":21411,"width":25,"height":45},{"x":125,"y":45,"fileNum":651,"id":21412,"width":25,"height":45},{"x":0,"y":90,"fileNum":651,"id":21413,"width":25,"height":45},{"x":25,"y":90,"fileNum":651,"id":21414,"width":25,"height":45},{"x":50,"y":90,"fileNum":651,"id":21415,"width":25,"height":45},{"x":75,"y":90,"fileNum":651,"id":21416,"width":25,"height":45},{"x":100,"y":90,"fileNum":651,"id":21417,"width":25,"height":45},{"x":0,"y":135,"fileNum":651,"id":21418,"width":25,"height":45},{"x":25,"y":135,"fileNum":651,"id":21419,"width":25,"height":45},{"x":50,"y":135,"fileNum":651,"id":21420,"width":25,"height":45},{"x":75,"y":135,"fileNum":651,"id":21421,"width":25,"height":45},{"x":100,"y":135,"fileNum":651,"id":21422,"width":25,"height":45},{"x":0,"y":0,"fileNum":652,"id":21427,"width":32,"height":32},{"x":0,"y":0,"fileNum":653,"id":21428,"width":25,"height":45},{"x":25,"y":0,"fileNum":653,"id":21429,"width":25,"height":45},{"x":50,"y":0,"fileNum":653,"id":21430,"width":25,"height":45},{"x":75,"y":0,"fileNum":653,"id":21431,"width":25,"height":45},{"x":100,"y":0,"fileNum":653,"id":21432,"width":25,"height":45},{"x":125,"y":0,"fileNum":653,"id":21433,"width":25,"height":45},{"x":0,"y":45,"fileNum":653,"id":21434,"width":25,"height":45},{"x":25,"y":45,"fileNum":653,"id":21435,"width":25,"height":45},{"x":50,"y":45,"fileNum":653,"id":21436,"width":25,"height":45},{"x":75,"y":45,"fileNum":653,"id":21437,"width":25,"height":45},{"x":100,"y":45,"fileNum":653,"id":21438,"width":25,"height":45},{"x":125,"y":45,"fileNum":653,"id":21439,"width":25,"height":45},{"x":0,"y":90,"fileNum":653,"id":21440,"width":25,"height":45},{"x":25,"y":90,"fileNum":653,"id":21441,"width":25,"height":45},{"x":50,"y":90,"fileNum":653,"id":21442,"width":25,"height":45},{"x":75,"y":90,"fileNum":653,"id":21443,"width":25,"height":45},{"x":100,"y":90,"fileNum":653,"id":21444,"width":25,"height":45},{"x":0,"y":135,"fileNum":653,"id":21445,"width":25,"height":45},{"x":25,"y":135,"fileNum":653,"id":21446,"width":25,"height":45},{"x":50,"y":135,"fileNum":653,"id":21447,"width":25,"height":45},{"x":75,"y":135,"fileNum":653,"id":21448,"width":25,"height":45},{"x":100,"y":135,"fileNum":653,"id":21449,"width":25,"height":45},{"x":0,"y":0,"fileNum":654,"id":21454,"width":32,"height":32},{"x":0,"y":0,"fileNum":655,"id":21455,"width":25,"height":45},{"x":25,"y":0,"fileNum":655,"id":21456,"width":25,"height":45},{"x":50,"y":0,"fileNum":655,"id":21457,"width":25,"height":45},{"x":75,"y":0,"fileNum":655,"id":21458,"width":25,"height":45},{"x":100,"y":0,"fileNum":655,"id":21459,"width":25,"height":45},{"x":125,"y":0,"fileNum":655,"id":21460,"width":25,"height":45},{"x":0,"y":45,"fileNum":655,"id":21461,"width":25,"height":45},{"x":25,"y":45,"fileNum":655,"id":21462,"width":25,"height":45},{"x":50,"y":45,"fileNum":655,"id":21463,"width":25,"height":45},{"x":75,"y":45,"fileNum":655,"id":21464,"width":25,"height":45},{"x":100,"y":45,"fileNum":655,"id":21465,"width":25,"height":45},{"x":125,"y":45,"fileNum":655,"id":21466,"width":25,"height":45},{"x":0,"y":90,"fileNum":655,"id":21467,"width":25,"height":45},{"x":25,"y":90,"fileNum":655,"id":21468,"width":25,"height":45},{"x":50,"y":90,"fileNum":655,"id":21469,"width":25,"height":45},{"x":75,"y":90,"fileNum":655,"id":21470,"width":25,"height":45},{"x":100,"y":90,"fileNum":655,"id":21471,"width":25,"height":45},{"x":0,"y":135,"fileNum":655,"id":21472,"width":25,"height":45},{"x":25,"y":135,"fileNum":655,"id":21473,"width":25,"height":45},{"x":50,"y":135,"fileNum":655,"id":21474,"width":25,"height":45},{"x":75,"y":135,"fileNum":655,"id":21475,"width":25,"height":45},{"x":100,"y":135,"fileNum":655,"id":21476,"width":25,"height":45},{"x":0,"y":0,"fileNum":656,"id":21481,"width":32,"height":32},{"x":0,"y":0,"fileNum":657,"id":21482,"width":25,"height":45},{"x":25,"y":0,"fileNum":657,"id":21483,"width":25,"height":45},{"x":50,"y":0,"fileNum":657,"id":21484,"width":25,"height":45},{"x":75,"y":0,"fileNum":657,"id":21485,"width":25,"height":45},{"x":100,"y":0,"fileNum":657,"id":21486,"width":25,"height":45},{"x":125,"y":0,"fileNum":657,"id":21487,"width":25,"height":45},{"x":0,"y":45,"fileNum":657,"id":21488,"width":25,"height":45},{"x":25,"y":45,"fileNum":657,"id":21489,"width":25,"height":45},{"x":50,"y":45,"fileNum":657,"id":21490,"width":25,"height":45},{"x":75,"y":45,"fileNum":657,"id":21491,"width":25,"height":45},{"x":100,"y":45,"fileNum":657,"id":21492,"width":25,"height":45},{"x":125,"y":45,"fileNum":657,"id":21493,"width":25,"height":45},{"x":0,"y":90,"fileNum":657,"id":21494,"width":25,"height":45},{"x":25,"y":90,"fileNum":657,"id":21495,"width":25,"height":45},{"x":50,"y":90,"fileNum":657,"id":21496,"width":25,"height":45},{"x":75,"y":90,"fileNum":657,"id":21497,"width":25,"height":45},{"x":100,"y":90,"fileNum":657,"id":21498,"width":25,"height":45},{"x":0,"y":135,"fileNum":657,"id":21499,"width":25,"height":45},{"x":25,"y":135,"fileNum":657,"id":21500,"width":25,"height":45},{"x":50,"y":135,"fileNum":657,"id":21501,"width":25,"height":45},{"x":75,"y":135,"fileNum":657,"id":21502,"width":25,"height":45},{"x":100,"y":135,"fileNum":657,"id":21503,"width":25,"height":45},{"x":0,"y":0,"fileNum":658,"id":21508,"width":32,"height":32},{"x":0,"y":0,"fileNum":659,"id":21509,"width":25,"height":45},{"x":25,"y":0,"fileNum":659,"id":21510,"width":25,"height":45},{"x":50,"y":0,"fileNum":659,"id":21511,"width":25,"height":45},{"x":75,"y":0,"fileNum":659,"id":21512,"width":25,"height":45},{"x":100,"y":0,"fileNum":659,"id":21513,"width":25,"height":45},{"x":125,"y":0,"fileNum":659,"id":21514,"width":25,"height":45},{"x":0,"y":45,"fileNum":659,"id":21515,"width":25,"height":45},{"x":25,"y":45,"fileNum":659,"id":21516,"width":25,"height":45},{"x":50,"y":45,"fileNum":659,"id":21517,"width":25,"height":45},{"x":75,"y":45,"fileNum":659,"id":21518,"width":25,"height":45},{"x":100,"y":45,"fileNum":659,"id":21519,"width":25,"height":45},{"x":125,"y":45,"fileNum":659,"id":21520,"width":25,"height":45},{"x":0,"y":90,"fileNum":659,"id":21521,"width":25,"height":45},{"x":25,"y":90,"fileNum":659,"id":21522,"width":25,"height":45},{"x":50,"y":90,"fileNum":659,"id":21523,"width":25,"height":45},{"x":75,"y":90,"fileNum":659,"id":21524,"width":25,"height":45},{"x":100,"y":90,"fileNum":659,"id":21525,"width":25,"height":45},{"x":0,"y":135,"fileNum":659,"id":21526,"width":25,"height":45},{"x":25,"y":135,"fileNum":659,"id":21527,"width":25,"height":45},{"x":50,"y":135,"fileNum":659,"id":21528,"width":25,"height":45},{"x":75,"y":135,"fileNum":659,"id":21529,"width":25,"height":45},{"x":100,"y":135,"fileNum":659,"id":21530,"width":25,"height":45},{"x":0,"y":0,"fileNum":660,"id":21535,"width":32,"height":32},{"x":0,"y":0,"fileNum":661,"id":21536,"width":25,"height":45},{"x":25,"y":0,"fileNum":661,"id":21537,"width":25,"height":45},{"x":50,"y":0,"fileNum":661,"id":21538,"width":25,"height":45},{"x":75,"y":0,"fileNum":661,"id":21539,"width":25,"height":45},{"x":100,"y":0,"fileNum":661,"id":21540,"width":25,"height":45},{"x":125,"y":0,"fileNum":661,"id":21541,"width":25,"height":45},{"x":0,"y":45,"fileNum":661,"id":21542,"width":25,"height":45},{"x":25,"y":45,"fileNum":661,"id":21543,"width":25,"height":45},{"x":50,"y":45,"fileNum":661,"id":21544,"width":25,"height":45},{"x":75,"y":45,"fileNum":661,"id":21545,"width":25,"height":45},{"x":100,"y":45,"fileNum":661,"id":21546,"width":25,"height":45},{"x":125,"y":45,"fileNum":661,"id":21547,"width":25,"height":45},{"x":0,"y":90,"fileNum":661,"id":21548,"width":25,"height":45},{"x":25,"y":90,"fileNum":661,"id":21549,"width":25,"height":45},{"x":50,"y":90,"fileNum":661,"id":21550,"width":25,"height":45},{"x":75,"y":90,"fileNum":661,"id":21551,"width":25,"height":45},{"x":100,"y":90,"fileNum":661,"id":21552,"width":25,"height":45},{"x":0,"y":135,"fileNum":661,"id":21553,"width":25,"height":45},{"x":25,"y":135,"fileNum":661,"id":21554,"width":25,"height":45},{"x":50,"y":135,"fileNum":661,"id":21555,"width":25,"height":45},{"x":75,"y":135,"fileNum":661,"id":21556,"width":25,"height":45},{"x":100,"y":135,"fileNum":661,"id":21557,"width":25,"height":45},{"x":0,"y":0,"fileNum":662,"id":21562,"width":32,"height":32},{"x":0,"y":0,"fileNum":663,"id":21563,"width":25,"height":45},{"x":25,"y":0,"fileNum":663,"id":21564,"width":25,"height":45},{"x":50,"y":0,"fileNum":663,"id":21565,"width":25,"height":45},{"x":75,"y":0,"fileNum":663,"id":21566,"width":25,"height":45},{"x":100,"y":0,"fileNum":663,"id":21567,"width":25,"height":45},{"x":125,"y":0,"fileNum":663,"id":21568,"width":25,"height":45},{"x":0,"y":45,"fileNum":663,"id":21569,"width":25,"height":45},{"x":25,"y":45,"fileNum":663,"id":21570,"width":25,"height":45},{"x":50,"y":45,"fileNum":663,"id":21571,"width":25,"height":45},{"x":75,"y":45,"fileNum":663,"id":21572,"width":25,"height":45},{"x":100,"y":45,"fileNum":663,"id":21573,"width":25,"height":45},{"x":125,"y":45,"fileNum":663,"id":21574,"width":25,"height":45},{"x":0,"y":90,"fileNum":663,"id":21575,"width":25,"height":45},{"x":25,"y":90,"fileNum":663,"id":21576,"width":25,"height":45},{"x":50,"y":90,"fileNum":663,"id":21577,"width":25,"height":45},{"x":75,"y":90,"fileNum":663,"id":21578,"width":25,"height":45},{"x":100,"y":90,"fileNum":663,"id":21579,"width":25,"height":45},{"x":0,"y":135,"fileNum":663,"id":21580,"width":25,"height":45},{"x":25,"y":135,"fileNum":663,"id":21581,"width":25,"height":45},{"x":50,"y":135,"fileNum":663,"id":21582,"width":25,"height":45},{"x":75,"y":135,"fileNum":663,"id":21583,"width":25,"height":45},{"x":100,"y":135,"fileNum":663,"id":21584,"width":25,"height":45},{"x":0,"y":0,"fileNum":664,"id":21589,"width":32,"height":32},{"x":0,"y":0,"fileNum":665,"id":21590,"width":25,"height":45},{"x":25,"y":0,"fileNum":665,"id":21591,"width":25,"height":45},{"x":50,"y":0,"fileNum":665,"id":21592,"width":25,"height":45},{"x":75,"y":0,"fileNum":665,"id":21593,"width":25,"height":45},{"x":100,"y":0,"fileNum":665,"id":21594,"width":25,"height":45},{"x":125,"y":0,"fileNum":665,"id":21595,"width":25,"height":45},{"x":0,"y":45,"fileNum":665,"id":21596,"width":25,"height":45},{"x":25,"y":45,"fileNum":665,"id":21597,"width":25,"height":45},{"x":50,"y":45,"fileNum":665,"id":21598,"width":25,"height":45},{"x":75,"y":45,"fileNum":665,"id":21599,"width":25,"height":45},{"x":100,"y":45,"fileNum":665,"id":21600,"width":25,"height":45},{"x":125,"y":45,"fileNum":665,"id":21601,"width":25,"height":45},{"x":0,"y":90,"fileNum":665,"id":21602,"width":25,"height":45},{"x":25,"y":90,"fileNum":665,"id":21603,"width":25,"height":45},{"x":50,"y":90,"fileNum":665,"id":21604,"width":25,"height":45},{"x":75,"y":90,"fileNum":665,"id":21605,"width":25,"height":45},{"x":100,"y":90,"fileNum":665,"id":21606,"width":25,"height":45},{"x":0,"y":135,"fileNum":665,"id":21607,"width":25,"height":45},{"x":25,"y":135,"fileNum":665,"id":21608,"width":25,"height":45},{"x":50,"y":135,"fileNum":665,"id":21609,"width":25,"height":45},{"x":75,"y":135,"fileNum":665,"id":21610,"width":25,"height":45},{"x":100,"y":135,"fileNum":665,"id":21611,"width":25,"height":45},{"x":0,"y":0,"fileNum":666,"id":21616,"width":32,"height":32},{"x":0,"y":0,"fileNum":667,"id":21617,"width":25,"height":45},{"x":25,"y":0,"fileNum":667,"id":21618,"width":25,"height":45},{"x":50,"y":0,"fileNum":667,"id":21619,"width":25,"height":45},{"x":75,"y":0,"fileNum":667,"id":21620,"width":25,"height":45},{"x":100,"y":0,"fileNum":667,"id":21621,"width":25,"height":45},{"x":125,"y":0,"fileNum":667,"id":21622,"width":25,"height":45},{"x":0,"y":45,"fileNum":667,"id":21623,"width":25,"height":45},{"x":25,"y":45,"fileNum":667,"id":21624,"width":25,"height":45},{"x":50,"y":45,"fileNum":667,"id":21625,"width":25,"height":45},{"x":75,"y":45,"fileNum":667,"id":21626,"width":25,"height":45},{"x":100,"y":45,"fileNum":667,"id":21627,"width":25,"height":45},{"x":125,"y":45,"fileNum":667,"id":21628,"width":25,"height":45},{"x":0,"y":90,"fileNum":667,"id":21629,"width":25,"height":45},{"x":25,"y":90,"fileNum":667,"id":21630,"width":25,"height":45},{"x":50,"y":90,"fileNum":667,"id":21631,"width":25,"height":45},{"x":75,"y":90,"fileNum":667,"id":21632,"width":25,"height":45},{"x":100,"y":90,"fileNum":667,"id":21633,"width":25,"height":45},{"x":0,"y":135,"fileNum":667,"id":21634,"width":25,"height":45},{"x":25,"y":135,"fileNum":667,"id":21635,"width":25,"height":45},{"x":50,"y":135,"fileNum":667,"id":21636,"width":25,"height":45},{"x":75,"y":135,"fileNum":667,"id":21637,"width":25,"height":45},{"x":100,"y":135,"fileNum":667,"id":21638,"width":25,"height":45},{"x":0,"y":0,"fileNum":668,"id":21643,"width":32,"height":32},{"x":0,"y":0,"fileNum":669,"id":21644,"width":25,"height":45},{"x":25,"y":0,"fileNum":669,"id":21645,"width":25,"height":45},{"x":50,"y":0,"fileNum":669,"id":21646,"width":25,"height":45},{"x":75,"y":0,"fileNum":669,"id":21647,"width":25,"height":45},{"x":100,"y":0,"fileNum":669,"id":21648,"width":25,"height":45},{"x":125,"y":0,"fileNum":669,"id":21649,"width":25,"height":45},{"x":0,"y":45,"fileNum":669,"id":21650,"width":25,"height":45},{"x":25,"y":45,"fileNum":669,"id":21651,"width":25,"height":45},{"x":50,"y":45,"fileNum":669,"id":21652,"width":25,"height":45},{"x":75,"y":45,"fileNum":669,"id":21653,"width":25,"height":45},{"x":100,"y":45,"fileNum":669,"id":21654,"width":25,"height":45},{"x":125,"y":45,"fileNum":669,"id":21655,"width":25,"height":45},{"x":0,"y":90,"fileNum":669,"id":21656,"width":25,"height":45},{"x":25,"y":90,"fileNum":669,"id":21657,"width":25,"height":45},{"x":50,"y":90,"fileNum":669,"id":21658,"width":25,"height":45},{"x":75,"y":90,"fileNum":669,"id":21659,"width":25,"height":45},{"x":100,"y":90,"fileNum":669,"id":21660,"width":25,"height":45},{"x":0,"y":135,"fileNum":669,"id":21661,"width":25,"height":45},{"x":25,"y":135,"fileNum":669,"id":21662,"width":25,"height":45},{"x":50,"y":135,"fileNum":669,"id":21663,"width":25,"height":45},{"x":75,"y":135,"fileNum":669,"id":21664,"width":25,"height":45},{"x":100,"y":135,"fileNum":669,"id":21665,"width":25,"height":45},{"x":0,"y":0,"fileNum":670,"id":21670,"width":32,"height":32},{"x":0,"y":0,"fileNum":671,"id":21671,"width":25,"height":45},{"x":25,"y":0,"fileNum":671,"id":21672,"width":25,"height":45},{"x":50,"y":0,"fileNum":671,"id":21673,"width":25,"height":45},{"x":75,"y":0,"fileNum":671,"id":21674,"width":25,"height":45},{"x":100,"y":0,"fileNum":671,"id":21675,"width":25,"height":45},{"x":125,"y":0,"fileNum":671,"id":21676,"width":25,"height":45},{"x":0,"y":45,"fileNum":671,"id":21677,"width":25,"height":45},{"x":25,"y":45,"fileNum":671,"id":21678,"width":25,"height":45},{"x":50,"y":45,"fileNum":671,"id":21679,"width":25,"height":45},{"x":75,"y":45,"fileNum":671,"id":21680,"width":25,"height":45},{"x":100,"y":45,"fileNum":671,"id":21681,"width":25,"height":45},{"x":125,"y":45,"fileNum":671,"id":21682,"width":25,"height":45},{"x":0,"y":90,"fileNum":671,"id":21683,"width":25,"height":45},{"x":25,"y":90,"fileNum":671,"id":21684,"width":25,"height":45},{"x":50,"y":90,"fileNum":671,"id":21685,"width":25,"height":45},{"x":75,"y":90,"fileNum":671,"id":21686,"width":25,"height":45},{"x":100,"y":90,"fileNum":671,"id":21687,"width":25,"height":45},{"x":0,"y":135,"fileNum":671,"id":21688,"width":25,"height":45},{"x":25,"y":135,"fileNum":671,"id":21689,"width":25,"height":45},{"x":50,"y":135,"fileNum":671,"id":21690,"width":25,"height":45},{"x":75,"y":135,"fileNum":671,"id":21691,"width":25,"height":45},{"x":100,"y":135,"fileNum":671,"id":21692,"width":25,"height":45},{"x":0,"y":0,"fileNum":672,"id":21697,"width":32,"height":32},{"x":0,"y":0,"fileNum":673,"id":21698,"width":25,"height":45},{"x":25,"y":0,"fileNum":673,"id":21699,"width":25,"height":45},{"x":50,"y":0,"fileNum":673,"id":21700,"width":25,"height":45},{"x":75,"y":0,"fileNum":673,"id":21701,"width":25,"height":45},{"x":100,"y":0,"fileNum":673,"id":21702,"width":25,"height":45},{"x":125,"y":0,"fileNum":673,"id":21703,"width":25,"height":45},{"x":0,"y":45,"fileNum":673,"id":21704,"width":25,"height":45},{"x":25,"y":45,"fileNum":673,"id":21705,"width":25,"height":45},{"x":50,"y":45,"fileNum":673,"id":21706,"width":25,"height":45},{"x":75,"y":45,"fileNum":673,"id":21707,"width":25,"height":45},{"x":100,"y":45,"fileNum":673,"id":21708,"width":25,"height":45},{"x":125,"y":45,"fileNum":673,"id":21709,"width":25,"height":45},{"x":0,"y":90,"fileNum":673,"id":21710,"width":25,"height":45},{"x":25,"y":90,"fileNum":673,"id":21711,"width":25,"height":45},{"x":50,"y":90,"fileNum":673,"id":21712,"width":25,"height":45},{"x":75,"y":90,"fileNum":673,"id":21713,"width":25,"height":45},{"x":100,"y":90,"fileNum":673,"id":21714,"width":25,"height":45},{"x":0,"y":135,"fileNum":673,"id":21715,"width":25,"height":45},{"x":25,"y":135,"fileNum":673,"id":21716,"width":25,"height":45},{"x":50,"y":135,"fileNum":673,"id":21717,"width":25,"height":45},{"x":75,"y":135,"fileNum":673,"id":21718,"width":25,"height":45},{"x":100,"y":135,"fileNum":673,"id":21719,"width":25,"height":45},{"x":0,"y":0,"fileNum":2212,"id":21724,"width":17,"height":50},{"x":17,"y":0,"fileNum":2212,"id":21725,"width":17,"height":50},{"x":34,"y":0,"fileNum":2212,"id":21726,"width":17,"height":50},{"x":51,"y":0,"fileNum":2212,"id":21727,"width":17,"height":50},{"x":0,"y":0,"fileNum":2213,"id":21728,"width":17,"height":50},{"x":17,"y":0,"fileNum":2213,"id":21729,"width":17,"height":50},{"x":34,"y":0,"fileNum":2213,"id":21730,"width":17,"height":50},{"x":51,"y":0,"fileNum":2213,"id":21731,"width":17,"height":50},{"x":0,"y":0,"fileNum":2214,"id":21732,"width":17,"height":50},{"x":17,"y":0,"fileNum":2214,"id":21733,"width":17,"height":50},{"x":34,"y":0,"fileNum":2214,"id":21734,"width":17,"height":50},{"x":51,"y":0,"fileNum":2214,"id":21735,"width":17,"height":50},{"x":0,"y":0,"fileNum":2215,"id":21736,"width":17,"height":50},{"x":17,"y":0,"fileNum":2215,"id":21737,"width":17,"height":50},{"x":34,"y":0,"fileNum":2215,"id":21738,"width":17,"height":50},{"x":51,"y":0,"fileNum":2215,"id":21739,"width":17,"height":50},{"x":0,"y":0,"fileNum":2216,"id":21740,"width":17,"height":50},{"x":17,"y":0,"fileNum":2216,"id":21741,"width":17,"height":50},{"x":34,"y":0,"fileNum":2216,"id":21742,"width":17,"height":50},{"x":51,"y":0,"fileNum":2216,"id":21743,"width":17,"height":50},{"x":0,"y":0,"fileNum":2217,"id":21744,"width":17,"height":50},{"x":17,"y":0,"fileNum":2217,"id":21745,"width":17,"height":50},{"x":34,"y":0,"fileNum":2217,"id":21746,"width":17,"height":50},{"x":51,"y":0,"fileNum":2217,"id":21747,"width":17,"height":50},{"x":0,"y":0,"fileNum":2218,"id":21748,"width":17,"height":50},{"x":17,"y":0,"fileNum":2218,"id":21749,"width":17,"height":50},{"x":34,"y":0,"fileNum":2218,"id":21750,"width":17,"height":50},{"x":51,"y":0,"fileNum":2218,"id":21751,"width":17,"height":50},{"x":0,"y":0,"fileNum":2219,"id":21752,"width":17,"height":50},{"x":17,"y":0,"fileNum":2219,"id":21753,"width":17,"height":50},{"x":34,"y":0,"fileNum":2219,"id":21754,"width":17,"height":50},{"x":51,"y":0,"fileNum":2219,"id":21755,"width":17,"height":50},{"x":0,"y":0,"fileNum":2220,"id":21756,"width":17,"height":50},{"x":17,"y":0,"fileNum":2220,"id":21757,"width":17,"height":50},{"x":34,"y":0,"fileNum":2220,"id":21758,"width":17,"height":50},{"x":51,"y":0,"fileNum":2220,"id":21759,"width":17,"height":50},{"x":0,"y":0,"fileNum":2221,"id":21760,"width":17,"height":50},{"x":17,"y":0,"fileNum":2221,"id":21761,"width":17,"height":50},{"x":34,"y":0,"fileNum":2221,"id":21762,"width":17,"height":50},{"x":51,"y":0,"fileNum":2221,"id":21763,"width":17,"height":50},{"x":0,"y":0,"fileNum":2222,"id":21764,"width":17,"height":50},{"x":17,"y":0,"fileNum":2222,"id":21765,"width":17,"height":50},{"x":34,"y":0,"fileNum":2222,"id":21766,"width":17,"height":50},{"x":51,"y":0,"fileNum":2222,"id":21767,"width":17,"height":50},{"x":0,"y":0,"fileNum":2223,"id":21768,"width":17,"height":50},{"x":17,"y":0,"fileNum":2223,"id":21769,"width":17,"height":50},{"x":34,"y":0,"fileNum":2223,"id":21770,"width":17,"height":50},{"x":51,"y":0,"fileNum":2223,"id":21771,"width":17,"height":50},{"x":0,"y":0,"fileNum":2224,"id":21772,"width":17,"height":50},{"x":17,"y":0,"fileNum":2224,"id":21773,"width":17,"height":50},{"x":34,"y":0,"fileNum":2224,"id":21774,"width":17,"height":50},{"x":51,"y":0,"fileNum":2224,"id":21775,"width":17,"height":50},{"x":0,"y":0,"fileNum":2225,"id":21776,"width":17,"height":50},{"x":17,"y":0,"fileNum":2225,"id":21777,"width":17,"height":50},{"x":34,"y":0,"fileNum":2225,"id":21778,"width":17,"height":50},{"x":51,"y":0,"fileNum":2225,"id":21779,"width":17,"height":50},{"x":0,"y":0,"fileNum":2226,"id":21780,"width":17,"height":50},{"x":17,"y":0,"fileNum":2226,"id":21781,"width":17,"height":50},{"x":34,"y":0,"fileNum":2226,"id":21782,"width":17,"height":50},{"x":51,"y":0,"fileNum":2226,"id":21783,"width":17,"height":50},{"x":0,"y":0,"fileNum":2227,"id":21784,"width":17,"height":50},{"x":17,"y":0,"fileNum":2227,"id":21785,"width":17,"height":50},{"x":34,"y":0,"fileNum":2227,"id":21786,"width":17,"height":50},{"x":51,"y":0,"fileNum":2227,"id":21787,"width":17,"height":50},{"x":0,"y":0,"fileNum":2228,"id":21788,"width":17,"height":50},{"x":17,"y":0,"fileNum":2228,"id":21789,"width":17,"height":50},{"x":34,"y":0,"fileNum":2228,"id":21790,"width":17,"height":50},{"x":51,"y":0,"fileNum":2228,"id":21791,"width":17,"height":50},{"x":0,"y":0,"fileNum":4158,"id":21792,"width":18,"height":26},{"x":18,"y":0,"fileNum":4158,"id":21793,"width":18,"height":26},{"x":0,"y":26,"fileNum":4158,"id":21794,"width":18,"height":26},{"x":18,"y":26,"fileNum":4158,"id":21795,"width":18,"height":26},{"x":0,"y":52,"fileNum":4158,"id":21796,"width":18,"height":26},{"x":18,"y":52,"fileNum":4158,"id":21797,"width":18,"height":26},{"x":0,"y":78,"fileNum":4158,"id":21798,"width":18,"height":26},{"x":18,"y":78,"fileNum":4158,"id":21799,"width":18,"height":26},{"x":0,"y":0,"fileNum":4159,"id":21804,"width":43,"height":28},{"x":43,"y":0,"fileNum":4159,"id":21805,"width":43,"height":28},{"x":86,"y":0,"fileNum":4159,"id":21806,"width":43,"height":28},{"x":129,"y":0,"fileNum":4159,"id":21807,"width":43,"height":28},{"x":0,"y":28,"fileNum":4159,"id":21808,"width":43,"height":28},{"x":43,"y":28,"fileNum":4159,"id":21809,"width":43,"height":28},{"x":86,"y":28,"fileNum":4159,"id":21810,"width":43,"height":28},{"x":129,"y":28,"fileNum":4159,"id":21811,"width":43,"height":28},{"x":0,"y":56,"fileNum":4159,"id":21812,"width":43,"height":28},{"x":43,"y":56,"fileNum":4159,"id":21813,"width":43,"height":28},{"x":86,"y":56,"fileNum":4159,"id":21814,"width":43,"height":28},{"x":129,"y":56,"fileNum":4159,"id":21815,"width":43,"height":28},{"x":0,"y":84,"fileNum":4159,"id":21816,"width":43,"height":28},{"x":43,"y":84,"fileNum":4159,"id":21817,"width":43,"height":28},{"x":86,"y":84,"fileNum":4159,"id":21818,"width":43,"height":28},{"x":129,"y":84,"fileNum":4159,"id":21819,"width":43,"height":28},{"x":0,"y":0,"fileNum":4160,"id":21824,"width":33,"height":33},{"x":33,"y":0,"fileNum":4160,"id":21825,"width":33,"height":33},{"x":66,"y":0,"fileNum":4160,"id":21826,"width":33,"height":33},{"x":99,"y":0,"fileNum":4160,"id":21827,"width":33,"height":33},{"x":132,"y":0,"fileNum":4160,"id":21828,"width":33,"height":33},{"x":165,"y":0,"fileNum":4160,"id":21829,"width":33,"height":33},{"x":0,"y":33,"fileNum":4160,"id":21830,"width":33,"height":33},{"x":33,"y":33,"fileNum":4160,"id":21831,"width":33,"height":33},{"x":66,"y":33,"fileNum":4160,"id":21832,"width":33,"height":33},{"x":99,"y":33,"fileNum":4160,"id":21833,"width":33,"height":33},{"x":132,"y":33,"fileNum":4160,"id":21834,"width":33,"height":33},{"x":165,"y":33,"fileNum":4160,"id":21835,"width":33,"height":33},{"x":0,"y":66,"fileNum":4160,"id":21836,"width":33,"height":33},{"x":33,"y":66,"fileNum":4160,"id":21837,"width":33,"height":33},{"x":66,"y":66,"fileNum":4160,"id":21838,"width":33,"height":33},{"x":99,"y":66,"fileNum":4160,"id":21839,"width":33,"height":33},{"x":132,"y":66,"fileNum":4160,"id":21840,"width":33,"height":33},{"x":165,"y":66,"fileNum":4160,"id":21841,"width":33,"height":33},{"x":0,"y":99,"fileNum":4160,"id":21842,"width":33,"height":33},{"x":33,"y":99,"fileNum":4160,"id":21843,"width":33,"height":33},{"x":66,"y":99,"fileNum":4160,"id":21844,"width":33,"height":33},{"x":99,"y":99,"fileNum":4160,"id":21845,"width":33,"height":33},{"x":132,"y":99,"fileNum":4160,"id":21846,"width":33,"height":33},{"x":0,"y":0,"fileNum":4161,"id":21851,"width":34,"height":42},{"x":34,"y":0,"fileNum":4161,"id":21852,"width":34,"height":42},{"x":68,"y":0,"fileNum":4161,"id":21853,"width":34,"height":42},{"x":102,"y":0,"fileNum":4161,"id":21854,"width":34,"height":42},{"x":0,"y":42,"fileNum":4161,"id":21855,"width":34,"height":42},{"x":34,"y":42,"fileNum":4161,"id":21856,"width":34,"height":42},{"x":68,"y":42,"fileNum":4161,"id":21857,"width":34,"height":42},{"x":102,"y":42,"fileNum":4161,"id":21858,"width":34,"height":42},{"x":0,"y":84,"fileNum":4161,"id":21859,"width":34,"height":42},{"x":34,"y":84,"fileNum":4161,"id":21860,"width":34,"height":42},{"x":68,"y":84,"fileNum":4161,"id":21861,"width":34,"height":42},{"x":102,"y":84,"fileNum":4161,"id":21862,"width":34,"height":42},{"x":0,"y":126,"fileNum":4161,"id":21863,"width":34,"height":42},{"x":34,"y":126,"fileNum":4161,"id":21864,"width":34,"height":42},{"x":68,"y":126,"fileNum":4161,"id":21865,"width":34,"height":42},{"x":102,"y":126,"fileNum":4161,"id":21866,"width":34,"height":42},{"x":0,"y":0,"fileNum":4162,"id":21871,"width":44,"height":46},{"x":44,"y":0,"fileNum":4162,"id":21872,"width":44,"height":46},{"x":88,"y":0,"fileNum":4162,"id":21873,"width":44,"height":46},{"x":132,"y":0,"fileNum":4162,"id":21874,"width":44,"height":46},{"x":176,"y":0,"fileNum":4162,"id":21875,"width":44,"height":46},{"x":0,"y":46,"fileNum":4162,"id":21876,"width":44,"height":46},{"x":44,"y":46,"fileNum":4162,"id":21877,"width":44,"height":46},{"x":88,"y":46,"fileNum":4162,"id":21878,"width":44,"height":46},{"x":132,"y":46,"fileNum":4162,"id":21879,"width":44,"height":46},{"x":176,"y":46,"fileNum":4162,"id":21880,"width":44,"height":46},{"x":0,"y":92,"fileNum":4162,"id":21881,"width":44,"height":46},{"x":44,"y":92,"fileNum":4162,"id":21882,"width":44,"height":46},{"x":88,"y":92,"fileNum":4162,"id":21883,"width":44,"height":46},{"x":132,"y":92,"fileNum":4162,"id":21884,"width":44,"height":46},{"x":176,"y":92,"fileNum":4162,"id":21885,"width":44,"height":46},{"x":0,"y":138,"fileNum":4162,"id":21886,"width":44,"height":46},{"x":44,"y":138,"fileNum":4162,"id":21887,"width":44,"height":46},{"x":88,"y":138,"fileNum":4162,"id":21888,"width":44,"height":46},{"x":132,"y":138,"fileNum":4162,"id":21889,"width":44,"height":46},{"x":176,"y":138,"fileNum":4162,"id":21890,"width":44,"height":46},{"x":0,"y":0,"fileNum":4163,"id":21895,"width":35,"height":35},{"x":35,"y":0,"fileNum":4163,"id":21896,"width":35,"height":35},{"x":70,"y":0,"fileNum":4163,"id":21897,"width":35,"height":35},{"x":105,"y":0,"fileNum":4163,"id":21898,"width":35,"height":35},{"x":140,"y":0,"fileNum":4163,"id":21899,"width":35,"height":35},{"x":175,"y":0,"fileNum":4163,"id":21900,"width":35,"height":35},{"x":0,"y":35,"fileNum":4163,"id":21901,"width":35,"height":35},{"x":35,"y":35,"fileNum":4163,"id":21902,"width":35,"height":35},{"x":70,"y":35,"fileNum":4163,"id":21903,"width":35,"height":35},{"x":105,"y":35,"fileNum":4163,"id":21904,"width":35,"height":35},{"x":140,"y":35,"fileNum":4163,"id":21905,"width":35,"height":35},{"x":175,"y":35,"fileNum":4163,"id":21906,"width":35,"height":35},{"x":0,"y":70,"fileNum":4163,"id":21907,"width":35,"height":35},{"x":35,"y":70,"fileNum":4163,"id":21908,"width":35,"height":35},{"x":70,"y":70,"fileNum":4163,"id":21909,"width":35,"height":35},{"x":105,"y":70,"fileNum":4163,"id":21910,"width":35,"height":35},{"x":140,"y":70,"fileNum":4163,"id":21911,"width":35,"height":35},{"x":175,"y":70,"fileNum":4163,"id":21912,"width":35,"height":35},{"x":0,"y":105,"fileNum":4163,"id":21913,"width":35,"height":35},{"x":35,"y":105,"fileNum":4163,"id":21914,"width":35,"height":35},{"x":70,"y":105,"fileNum":4163,"id":21915,"width":35,"height":35},{"x":105,"y":105,"fileNum":4163,"id":21916,"width":35,"height":35},{"x":140,"y":105,"fileNum":4163,"id":21917,"width":35,"height":35},{"x":175,"y":105,"fileNum":4163,"id":21918,"width":35,"height":35},{"x":0,"y":0,"fileNum":21010,"id":21923,"width":25,"height":45},{"x":25,"y":0,"fileNum":21010,"id":21924,"width":25,"height":45},{"x":50,"y":0,"fileNum":21010,"id":21925,"width":25,"height":45},{"x":75,"y":0,"fileNum":21010,"id":21926,"width":25,"height":45},{"x":100,"y":0,"fileNum":21010,"id":21927,"width":25,"height":45},{"x":125,"y":0,"fileNum":21010,"id":21928,"width":25,"height":45},{"x":0,"y":45,"fileNum":21010,"id":21929,"width":25,"height":45},{"x":25,"y":45,"fileNum":21010,"id":21930,"width":25,"height":45},{"x":50,"y":45,"fileNum":21010,"id":21931,"width":25,"height":45},{"x":75,"y":45,"fileNum":21010,"id":21932,"width":25,"height":45},{"x":100,"y":45,"fileNum":21010,"id":21933,"width":25,"height":45},{"x":125,"y":45,"fileNum":21010,"id":21934,"width":25,"height":45},{"x":0,"y":90,"fileNum":21010,"id":21935,"width":25,"height":45},{"x":25,"y":90,"fileNum":21010,"id":21936,"width":25,"height":45},{"x":50,"y":90,"fileNum":21010,"id":21937,"width":25,"height":45},{"x":75,"y":90,"fileNum":21010,"id":21938,"width":25,"height":45},{"x":100,"y":90,"fileNum":21010,"id":21939,"width":25,"height":45},{"x":0,"y":135,"fileNum":21010,"id":21940,"width":25,"height":45},{"x":25,"y":135,"fileNum":21010,"id":21941,"width":25,"height":45},{"x":50,"y":135,"fileNum":21010,"id":21942,"width":25,"height":45},{"x":75,"y":135,"fileNum":21010,"id":21943,"width":25,"height":45},{"x":100,"y":135,"fileNum":21010,"id":21944,"width":25,"height":45},{"x":0,"y":0,"fileNum":4164,"id":21949,"width":26,"height":20},{"x":26,"y":0,"fileNum":4164,"id":21950,"width":26,"height":20},{"x":52,"y":0,"fileNum":4164,"id":21951,"width":26,"height":20},{"x":78,"y":0,"fileNum":4164,"id":21952,"width":25,"height":20},{"x":0,"y":20,"fileNum":4164,"id":21953,"width":26,"height":20},{"x":26,"y":20,"fileNum":4164,"id":21954,"width":26,"height":20},{"x":52,"y":20,"fileNum":4164,"id":21955,"width":26,"height":20},{"x":78,"y":20,"fileNum":4164,"id":21956,"width":25,"height":20},{"x":0,"y":40,"fileNum":4164,"id":21957,"width":26,"height":20},{"x":26,"y":40,"fileNum":4164,"id":21958,"width":26,"height":20},{"x":52,"y":40,"fileNum":4164,"id":21959,"width":26,"height":20},{"x":78,"y":40,"fileNum":4164,"id":21960,"width":25,"height":20},{"x":0,"y":60,"fileNum":4164,"id":21961,"width":26,"height":19},{"x":26,"y":60,"fileNum":4164,"id":21962,"width":26,"height":19},{"x":52,"y":60,"fileNum":4164,"id":21963,"width":26,"height":19},{"x":78,"y":60,"fileNum":4164,"id":21964,"width":25,"height":19},{"x":0,"y":0,"fileNum":7060,"id":21969,"width":64,"height":32},{"x":0,"y":0,"fileNum":7061,"id":21970,"width":64,"height":32},{"x":0,"y":0,"fileNum":7062,"id":21971,"width":64,"height":32},{"x":0,"y":0,"fileNum":7063,"id":21972,"width":64,"height":32},{"x":0,"y":0,"fileNum":7064,"id":21973,"width":64,"height":32},{"x":0,"y":0,"fileNum":7065,"id":21974,"width":64,"height":32},{"x":0,"y":0,"fileNum":7066,"id":21975,"width":64,"height":32},{"x":0,"y":0,"fileNum":7067,"id":21976,"width":64,"height":32},{"x":0,"y":0,"fileNum":7068,"id":21977,"width":64,"height":32},{"x":0,"y":0,"fileNum":7069,"id":21978,"width":64,"height":32},{"x":0,"y":0,"fileNum":7070,"id":21979,"width":64,"height":32},{"x":0,"y":0,"fileNum":7071,"id":21980,"width":64,"height":32},{"x":0,"y":0,"fileNum":16073,"id":21981,"width":25,"height":45},{"x":25,"y":0,"fileNum":16073,"id":21982,"width":25,"height":45},{"x":50,"y":0,"fileNum":16073,"id":21983,"width":25,"height":45},{"x":75,"y":0,"fileNum":16073,"id":21984,"width":25,"height":45},{"x":100,"y":0,"fileNum":16073,"id":21985,"width":25,"height":45},{"x":125,"y":0,"fileNum":16073,"id":21986,"width":25,"height":45},{"x":0,"y":45,"fileNum":16073,"id":21987,"width":25,"height":45},{"x":25,"y":45,"fileNum":16073,"id":21988,"width":25,"height":45},{"x":50,"y":45,"fileNum":16073,"id":21989,"width":25,"height":45},{"x":75,"y":45,"fileNum":16073,"id":21990,"width":25,"height":45},{"x":100,"y":45,"fileNum":16073,"id":21991,"width":25,"height":45},{"x":125,"y":45,"fileNum":16073,"id":21992,"width":25,"height":45},{"x":0,"y":90,"fileNum":16073,"id":21993,"width":25,"height":45},{"x":25,"y":90,"fileNum":16073,"id":21994,"width":25,"height":45},{"x":50,"y":90,"fileNum":16073,"id":21995,"width":25,"height":45},{"x":75,"y":90,"fileNum":16073,"id":21996,"width":25,"height":45},{"x":100,"y":90,"fileNum":16073,"id":21997,"width":25,"height":45},{"x":0,"y":135,"fileNum":16073,"id":21998,"width":25,"height":45},{"x":25,"y":135,"fileNum":16073,"id":21999,"width":25,"height":45},{"x":50,"y":135,"fileNum":16073,"id":22000,"width":25,"height":45},{"x":75,"y":135,"fileNum":16073,"id":22001,"width":25,"height":45},{"x":100,"y":135,"fileNum":16073,"id":22002,"width":25,"height":45},{"x":0,"y":0,"fileNum":16074,"id":22007,"width":25,"height":45},{"x":25,"y":0,"fileNum":16074,"id":22008,"width":25,"height":45},{"x":50,"y":0,"fileNum":16074,"id":22009,"width":25,"height":45},{"x":75,"y":0,"fileNum":16074,"id":22010,"width":25,"height":45},{"x":100,"y":0,"fileNum":16074,"id":22011,"width":25,"height":45},{"x":125,"y":0,"fileNum":16074,"id":22012,"width":25,"height":45},{"x":0,"y":45,"fileNum":16074,"id":22013,"width":25,"height":45},{"x":25,"y":45,"fileNum":16074,"id":22014,"width":25,"height":45},{"x":50,"y":45,"fileNum":16074,"id":22015,"width":25,"height":45},{"x":75,"y":45,"fileNum":16074,"id":22016,"width":25,"height":45},{"x":100,"y":45,"fileNum":16074,"id":22017,"width":25,"height":45},{"x":125,"y":45,"fileNum":16074,"id":22018,"width":25,"height":45},{"x":0,"y":90,"fileNum":16074,"id":22019,"width":25,"height":45},{"x":25,"y":90,"fileNum":16074,"id":22020,"width":25,"height":45},{"x":50,"y":90,"fileNum":16074,"id":22021,"width":25,"height":45},{"x":75,"y":90,"fileNum":16074,"id":22022,"width":25,"height":45},{"x":100,"y":90,"fileNum":16074,"id":22023,"width":25,"height":45},{"x":0,"y":135,"fileNum":16074,"id":22024,"width":25,"height":45},{"x":25,"y":135,"fileNum":16074,"id":22025,"width":25,"height":45},{"x":50,"y":135,"fileNum":16074,"id":22026,"width":25,"height":45},{"x":75,"y":135,"fileNum":16074,"id":22027,"width":25,"height":45},{"x":100,"y":135,"fileNum":16074,"id":22028,"width":25,"height":45},{"x":0,"y":0,"fileNum":16075,"id":22033,"width":32,"height":32},{"x":0,"y":0,"fileNum":18025,"id":22034,"width":32,"height":32},{"x":0,"y":0,"fileNum":18026,"id":22035,"width":17,"height":28},{"x":17,"y":0,"fileNum":18026,"id":22036,"width":17,"height":28},{"x":34,"y":0,"fileNum":18026,"id":22037,"width":17,"height":28},{"x":51,"y":0,"fileNum":18026,"id":22038,"width":17,"height":28},{"x":0,"y":0,"fileNum":674,"id":22039,"width":32,"height":32},{"x":0,"y":0,"fileNum":675,"id":22040,"width":25,"height":45},{"x":25,"y":0,"fileNum":675,"id":22041,"width":25,"height":45},{"x":50,"y":0,"fileNum":675,"id":22042,"width":25,"height":45},{"x":75,"y":0,"fileNum":675,"id":22043,"width":25,"height":45},{"x":100,"y":0,"fileNum":675,"id":22044,"width":25,"height":45},{"x":125,"y":0,"fileNum":675,"id":22045,"width":25,"height":45},{"x":0,"y":45,"fileNum":675,"id":22046,"width":25,"height":45},{"x":25,"y":45,"fileNum":675,"id":22047,"width":25,"height":45},{"x":50,"y":45,"fileNum":675,"id":22048,"width":25,"height":45},{"x":75,"y":45,"fileNum":675,"id":22049,"width":25,"height":45},{"x":100,"y":45,"fileNum":675,"id":22050,"width":25,"height":45},{"x":125,"y":45,"fileNum":675,"id":22051,"width":25,"height":45},{"x":0,"y":90,"fileNum":675,"id":22052,"width":25,"height":45},{"x":25,"y":90,"fileNum":675,"id":22053,"width":25,"height":45},{"x":50,"y":90,"fileNum":675,"id":22054,"width":25,"height":45},{"x":75,"y":90,"fileNum":675,"id":22055,"width":25,"height":45},{"x":100,"y":90,"fileNum":675,"id":22056,"width":25,"height":45},{"x":0,"y":135,"fileNum":675,"id":22057,"width":25,"height":45},{"x":25,"y":135,"fileNum":675,"id":22058,"width":25,"height":45},{"x":50,"y":135,"fileNum":675,"id":22059,"width":25,"height":45},{"x":75,"y":135,"fileNum":675,"id":22060,"width":25,"height":45},{"x":100,"y":135,"fileNum":675,"id":22061,"width":25,"height":45},{"x":0,"y":0,"fileNum":11049,"id":22066,"width":32,"height":96},{"x":0,"y":0,"fileNum":15228,"id":22067,"width":266,"height":256},{"x":266,"y":0,"fileNum":15228,"id":22068,"width":266,"height":256},{"x":532,"y":0,"fileNum":15228,"id":22069,"width":266,"height":256},{"x":0,"y":0,"fileNum":11048,"id":22071,"width":96,"height":32},{"x":0,"y":0,"fileNum":11050,"id":22072,"width":32,"height":96},{"x":0,"y":0,"fileNum":11051,"id":22073,"width":32,"height":32},{"x":32,"y":0,"fileNum":11051,"id":22074,"width":32,"height":32},{"x":0,"y":0,"fileNum":11052,"id":22075,"width":32,"height":32},{"x":32,"y":0,"fileNum":11052,"id":22076,"width":32,"height":32},{"x":0,"y":0,"fileNum":11053,"id":22077,"width":96,"height":32},{"x":0,"y":0,"fileNum":8207,"id":22078,"width":32,"height":32},{"x":32,"y":0,"fileNum":8207,"id":22079,"width":32,"height":32},{"x":64,"y":0,"fileNum":8207,"id":22080,"width":32,"height":32},{"x":96,"y":0,"fileNum":8207,"id":22081,"width":32,"height":32},{"x":0,"y":32,"fileNum":8207,"id":22082,"width":32,"height":32},{"x":32,"y":32,"fileNum":8207,"id":22083,"width":32,"height":32},{"x":64,"y":32,"fileNum":8207,"id":22084,"width":32,"height":32},{"x":96,"y":32,"fileNum":8207,"id":22085,"width":32,"height":32},{"x":0,"y":64,"fileNum":8207,"id":22086,"width":32,"height":32},{"x":32,"y":64,"fileNum":8207,"id":22087,"width":32,"height":32},{"x":64,"y":64,"fileNum":8207,"id":22088,"width":32,"height":32},{"x":96,"y":64,"fileNum":8207,"id":22089,"width":32,"height":32},{"x":0,"y":96,"fileNum":8207,"id":22090,"width":32,"height":32},{"x":32,"y":96,"fileNum":8207,"id":22091,"width":32,"height":32},{"x":64,"y":96,"fileNum":8207,"id":22092,"width":32,"height":32},{"x":96,"y":96,"fileNum":8207,"id":22093,"width":32,"height":32},{"x":0,"y":0,"fileNum":9007,"id":22095,"width":32,"height":32},{"x":32,"y":0,"fileNum":9007,"id":22096,"width":32,"height":32},{"x":64,"y":0,"fileNum":9007,"id":22097,"width":32,"height":32},{"x":96,"y":0,"fileNum":9007,"id":22098,"width":32,"height":32},{"x":128,"y":0,"fileNum":9007,"id":22099,"width":32,"height":32},{"x":160,"y":0,"fileNum":9007,"id":22100,"width":32,"height":32},{"x":192,"y":0,"fileNum":9007,"id":22101,"width":32,"height":32},{"x":224,"y":0,"fileNum":9007,"id":22102,"width":32,"height":32},{"x":256,"y":0,"fileNum":9007,"id":22103,"width":32,"height":32},{"x":0,"y":32,"fileNum":9007,"id":22104,"width":32,"height":32},{"x":32,"y":32,"fileNum":9007,"id":22105,"width":32,"height":32},{"x":64,"y":32,"fileNum":9007,"id":22106,"width":32,"height":32},{"x":96,"y":32,"fileNum":9007,"id":22107,"width":32,"height":32},{"x":128,"y":32,"fileNum":9007,"id":22108,"width":32,"height":32},{"x":160,"y":32,"fileNum":9007,"id":22109,"width":32,"height":32},{"x":192,"y":32,"fileNum":9007,"id":22110,"width":32,"height":32},{"x":224,"y":32,"fileNum":9007,"id":22111,"width":32,"height":32},{"x":256,"y":32,"fileNum":9007,"id":22112,"width":32,"height":32},{"x":0,"y":64,"fileNum":9007,"id":22113,"width":32,"height":32},{"x":32,"y":64,"fileNum":9007,"id":22114,"width":32,"height":32},{"x":64,"y":64,"fileNum":9007,"id":22115,"width":32,"height":32},{"x":96,"y":64,"fileNum":9007,"id":22116,"width":32,"height":32},{"x":128,"y":64,"fileNum":9007,"id":22117,"width":32,"height":32},{"x":160,"y":64,"fileNum":9007,"id":22118,"width":32,"height":32},{"x":192,"y":64,"fileNum":9007,"id":22119,"width":32,"height":32},{"x":224,"y":64,"fileNum":9007,"id":22120,"width":32,"height":32},{"x":256,"y":64,"fileNum":9007,"id":22121,"width":32,"height":32},{"x":0,"y":96,"fileNum":9007,"id":22122,"width":32,"height":32},{"x":32,"y":96,"fileNum":9007,"id":22123,"width":32,"height":32},{"x":64,"y":96,"fileNum":9007,"id":22124,"width":32,"height":32},{"x":96,"y":96,"fileNum":9007,"id":22125,"width":32,"height":32},{"x":128,"y":96,"fileNum":9007,"id":22126,"width":32,"height":32},{"x":160,"y":96,"fileNum":9007,"id":22127,"width":32,"height":32},{"x":192,"y":96,"fileNum":9007,"id":22128,"width":32,"height":32},{"x":224,"y":96,"fileNum":9007,"id":22129,"width":32,"height":32},{"x":256,"y":96,"fileNum":9007,"id":22130,"width":32,"height":32},{"x":0,"y":128,"fileNum":9007,"id":22131,"width":32,"height":32},{"x":32,"y":128,"fileNum":9007,"id":22132,"width":32,"height":32},{"x":64,"y":128,"fileNum":9007,"id":22133,"width":32,"height":32},{"x":96,"y":128,"fileNum":9007,"id":22134,"width":32,"height":32},{"x":128,"y":128,"fileNum":9007,"id":22135,"width":32,"height":32},{"x":160,"y":128,"fileNum":9007,"id":22136,"width":32,"height":32},{"x":192,"y":128,"fileNum":9007,"id":22137,"width":32,"height":32},{"x":224,"y":128,"fileNum":9007,"id":22138,"width":32,"height":32},{"x":256,"y":128,"fileNum":9007,"id":22139,"width":32,"height":32},{"x":0,"y":160,"fileNum":9007,"id":22140,"width":32,"height":32},{"x":32,"y":160,"fileNum":9007,"id":22141,"width":32,"height":32},{"x":64,"y":160,"fileNum":9007,"id":22142,"width":32,"height":32},{"x":96,"y":160,"fileNum":9007,"id":22143,"width":32,"height":32},{"x":128,"y":160,"fileNum":9007,"id":22144,"width":32,"height":32},{"x":160,"y":160,"fileNum":9007,"id":22145,"width":32,"height":32},{"x":192,"y":160,"fileNum":9007,"id":22146,"width":32,"height":32},{"x":224,"y":160,"fileNum":9007,"id":22147,"width":32,"height":32},{"x":256,"y":160,"fileNum":9007,"id":22148,"width":32,"height":32},{"x":0,"y":192,"fileNum":9007,"id":22149,"width":32,"height":32},{"x":32,"y":192,"fileNum":9007,"id":22150,"width":32,"height":32},{"x":64,"y":192,"fileNum":9007,"id":22151,"width":32,"height":32},{"x":96,"y":192,"fileNum":9007,"id":22152,"width":32,"height":32},{"x":128,"y":192,"fileNum":9007,"id":22153,"width":32,"height":32},{"x":160,"y":192,"fileNum":9007,"id":22154,"width":32,"height":32},{"x":192,"y":192,"fileNum":9007,"id":22155,"width":32,"height":32},{"x":224,"y":192,"fileNum":9007,"id":22156,"width":32,"height":32},{"x":256,"y":192,"fileNum":9007,"id":22157,"width":32,"height":32},{"x":0,"y":224,"fileNum":9007,"id":22158,"width":32,"height":32},{"x":32,"y":224,"fileNum":9007,"id":22159,"width":32,"height":32},{"x":64,"y":224,"fileNum":9007,"id":22160,"width":32,"height":32},{"x":96,"y":224,"fileNum":9007,"id":22161,"width":32,"height":32},{"x":128,"y":224,"fileNum":9007,"id":22162,"width":32,"height":32},{"x":160,"y":224,"fileNum":9007,"id":22163,"width":32,"height":32},{"x":192,"y":224,"fileNum":9007,"id":22164,"width":32,"height":32},{"x":224,"y":224,"fileNum":9007,"id":22165,"width":32,"height":32},{"x":256,"y":224,"fileNum":9007,"id":22166,"width":32,"height":32},{"x":0,"y":256,"fileNum":9007,"id":22167,"width":32,"height":32},{"x":32,"y":256,"fileNum":9007,"id":22168,"width":32,"height":32},{"x":64,"y":256,"fileNum":9007,"id":22169,"width":32,"height":32},{"x":96,"y":256,"fileNum":9007,"id":22170,"width":32,"height":32},{"x":128,"y":256,"fileNum":9007,"id":22171,"width":32,"height":32},{"x":160,"y":256,"fileNum":9007,"id":22172,"width":32,"height":32},{"x":192,"y":256,"fileNum":9007,"id":22173,"width":32,"height":32},{"x":224,"y":256,"fileNum":9007,"id":22174,"width":32,"height":32},{"x":256,"y":256,"fileNum":9007,"id":22175,"width":32,"height":32},{"x":0,"y":288,"fileNum":9007,"id":22176,"width":32,"height":32},{"x":32,"y":288,"fileNum":9007,"id":22177,"width":32,"height":32},{"x":64,"y":288,"fileNum":9007,"id":22178,"width":32,"height":32},{"x":96,"y":288,"fileNum":9007,"id":22179,"width":32,"height":32},{"x":128,"y":288,"fileNum":9007,"id":22180,"width":32,"height":32},{"x":160,"y":288,"fileNum":9007,"id":22181,"width":32,"height":32},{"x":192,"y":288,"fileNum":9007,"id":22182,"width":32,"height":32},{"x":224,"y":288,"fileNum":9007,"id":22183,"width":32,"height":32},{"x":256,"y":288,"fileNum":9007,"id":22184,"width":32,"height":32},{"x":0,"y":320,"fileNum":9007,"id":22185,"width":32,"height":32},{"x":32,"y":320,"fileNum":9007,"id":22186,"width":32,"height":32},{"x":64,"y":320,"fileNum":9007,"id":22187,"width":32,"height":32},{"x":96,"y":320,"fileNum":9007,"id":22188,"width":32,"height":32},{"x":128,"y":320,"fileNum":9007,"id":22189,"width":32,"height":32},{"x":160,"y":320,"fileNum":9007,"id":22190,"width":32,"height":32},{"x":192,"y":320,"fileNum":9007,"id":22191,"width":32,"height":32},{"x":224,"y":320,"fileNum":9007,"id":22192,"width":32,"height":32},{"x":256,"y":320,"fileNum":9007,"id":22193,"width":32,"height":32},{"x":0,"y":352,"fileNum":9007,"id":22194,"width":32,"height":32},{"x":32,"y":352,"fileNum":9007,"id":22195,"width":32,"height":32},{"x":64,"y":352,"fileNum":9007,"id":22196,"width":32,"height":32},{"x":96,"y":352,"fileNum":9007,"id":22197,"width":32,"height":32},{"x":128,"y":352,"fileNum":9007,"id":22198,"width":32,"height":32},{"x":160,"y":352,"fileNum":9007,"id":22199,"width":32,"height":32},{"x":192,"y":352,"fileNum":9007,"id":22200,"width":32,"height":32},{"x":224,"y":352,"fileNum":9007,"id":22201,"width":32,"height":32},{"x":256,"y":352,"fileNum":9007,"id":22202,"width":32,"height":32},{"x":0,"y":384,"fileNum":9007,"id":22203,"width":32,"height":32},{"x":32,"y":384,"fileNum":9007,"id":22204,"width":32,"height":32},{"x":64,"y":384,"fileNum":9007,"id":22205,"width":32,"height":32},{"x":96,"y":384,"fileNum":9007,"id":22206,"width":32,"height":32},{"x":128,"y":384,"fileNum":9007,"id":22207,"width":32,"height":32},{"x":160,"y":384,"fileNum":9007,"id":22208,"width":32,"height":32},{"x":192,"y":384,"fileNum":9007,"id":22209,"width":32,"height":32},{"x":224,"y":384,"fileNum":9007,"id":22210,"width":32,"height":32},{"x":256,"y":384,"fileNum":9007,"id":22211,"width":8,"height":32},{"x":0,"y":0,"fileNum":4165,"id":22212,"width":25,"height":58},{"x":25,"y":0,"fileNum":4165,"id":22213,"width":25,"height":58},{"x":50,"y":0,"fileNum":4165,"id":22214,"width":25,"height":58},{"x":75,"y":0,"fileNum":4165,"id":22215,"width":25,"height":58},{"x":100,"y":0,"fileNum":4165,"id":22216,"width":25,"height":58},{"x":125,"y":0,"fileNum":4165,"id":22217,"width":25,"height":58},{"x":0,"y":58,"fileNum":4165,"id":22218,"width":25,"height":58},{"x":25,"y":58,"fileNum":4165,"id":22219,"width":25,"height":58},{"x":50,"y":58,"fileNum":4165,"id":22220,"width":25,"height":58},{"x":75,"y":58,"fileNum":4165,"id":22221,"width":25,"height":58},{"x":100,"y":58,"fileNum":4165,"id":22222,"width":25,"height":58},{"x":125,"y":58,"fileNum":4165,"id":22223,"width":25,"height":58},{"x":0,"y":116,"fileNum":4165,"id":22224,"width":25,"height":58},{"x":25,"y":116,"fileNum":4165,"id":22225,"width":25,"height":58},{"x":50,"y":116,"fileNum":4165,"id":22226,"width":25,"height":58},{"x":75,"y":116,"fileNum":4165,"id":22227,"width":25,"height":58},{"x":100,"y":116,"fileNum":4165,"id":22228,"width":25,"height":58},{"x":0,"y":174,"fileNum":4165,"id":22229,"width":25,"height":58},{"x":25,"y":174,"fileNum":4165,"id":22230,"width":25,"height":58},{"x":50,"y":174,"fileNum":4165,"id":22231,"width":25,"height":58},{"x":75,"y":174,"fileNum":4165,"id":22232,"width":25,"height":58},{"x":100,"y":174,"fileNum":4165,"id":22233,"width":25,"height":58},{"x":0,"y":0,"fileNum":9022,"id":22238,"width":32,"height":32},{"x":32,"y":0,"fileNum":9022,"id":22239,"width":32,"height":32},{"x":64,"y":0,"fileNum":9022,"id":22240,"width":32,"height":32},{"x":96,"y":0,"fileNum":9022,"id":22241,"width":32,"height":32},{"x":0,"y":32,"fileNum":9022,"id":22242,"width":32,"height":32},{"x":32,"y":32,"fileNum":9022,"id":22243,"width":32,"height":32},{"x":64,"y":32,"fileNum":9022,"id":22244,"width":32,"height":32},{"x":96,"y":32,"fileNum":9022,"id":22245,"width":32,"height":32},{"x":0,"y":64,"fileNum":9022,"id":22246,"width":32,"height":32},{"x":32,"y":64,"fileNum":9022,"id":22247,"width":32,"height":32},{"x":64,"y":64,"fileNum":9022,"id":22248,"width":32,"height":32},{"x":96,"y":64,"fileNum":9022,"id":22249,"width":32,"height":32},{"x":0,"y":96,"fileNum":9022,"id":22250,"width":32,"height":32},{"x":32,"y":96,"fileNum":9022,"id":22251,"width":32,"height":32},{"x":64,"y":96,"fileNum":9022,"id":22252,"width":32,"height":32},{"x":96,"y":96,"fileNum":9022,"id":22253,"width":32,"height":32},{"x":0,"y":0,"fileNum":15230,"id":22254,"width":256,"height":256},{"x":0,"y":0,"fileNum":15231,"id":22255,"width":256,"height":256},{"x":0,"y":0,"fileNum":4166,"id":22256,"width":40,"height":50},{"x":40,"y":0,"fileNum":4166,"id":22257,"width":40,"height":50},{"x":80,"y":0,"fileNum":4166,"id":22258,"width":40,"height":50},{"x":120,"y":0,"fileNum":4166,"id":22259,"width":40,"height":50},{"x":0,"y":50,"fileNum":4166,"id":22260,"width":40,"height":50},{"x":40,"y":50,"fileNum":4166,"id":22261,"width":40,"height":50},{"x":80,"y":50,"fileNum":4166,"id":22262,"width":40,"height":50},{"x":120,"y":50,"fileNum":4166,"id":22263,"width":40,"height":50},{"x":0,"y":100,"fileNum":4166,"id":22264,"width":40,"height":50},{"x":0,"y":0,"fileNum":16076,"id":22266,"width":25,"height":45},{"x":25,"y":0,"fileNum":16076,"id":22267,"width":25,"height":45},{"x":50,"y":0,"fileNum":16076,"id":22268,"width":25,"height":45},{"x":75,"y":0,"fileNum":16076,"id":22269,"width":25,"height":45},{"x":100,"y":0,"fileNum":16076,"id":22270,"width":25,"height":45},{"x":125,"y":0,"fileNum":16076,"id":22271,"width":25,"height":45},{"x":0,"y":45,"fileNum":16076,"id":22272,"width":25,"height":45},{"x":25,"y":45,"fileNum":16076,"id":22273,"width":25,"height":45},{"x":50,"y":45,"fileNum":16076,"id":22274,"width":25,"height":45},{"x":75,"y":45,"fileNum":16076,"id":22275,"width":25,"height":45},{"x":100,"y":45,"fileNum":16076,"id":22276,"width":25,"height":45},{"x":125,"y":45,"fileNum":16076,"id":22277,"width":25,"height":45},{"x":0,"y":90,"fileNum":16076,"id":22278,"width":25,"height":45},{"x":25,"y":90,"fileNum":16076,"id":22279,"width":25,"height":45},{"x":50,"y":90,"fileNum":16076,"id":22280,"width":25,"height":45},{"x":75,"y":90,"fileNum":16076,"id":22281,"width":25,"height":45},{"x":100,"y":90,"fileNum":16076,"id":22282,"width":25,"height":45},{"x":0,"y":135,"fileNum":16076,"id":22283,"width":25,"height":45},{"x":25,"y":135,"fileNum":16076,"id":22284,"width":25,"height":45},{"x":50,"y":135,"fileNum":16076,"id":22285,"width":25,"height":45},{"x":75,"y":135,"fileNum":16076,"id":22286,"width":25,"height":45},{"x":100,"y":135,"fileNum":16076,"id":22287,"width":25,"height":45},{"x":0,"y":0,"fileNum":16077,"id":22292,"width":25,"height":45},{"x":25,"y":0,"fileNum":16077,"id":22293,"width":25,"height":45},{"x":50,"y":0,"fileNum":16077,"id":22294,"width":25,"height":45},{"x":75,"y":0,"fileNum":16077,"id":22295,"width":25,"height":45},{"x":100,"y":0,"fileNum":16077,"id":22296,"width":25,"height":45},{"x":125,"y":0,"fileNum":16077,"id":22297,"width":25,"height":45},{"x":0,"y":45,"fileNum":16077,"id":22298,"width":25,"height":45},{"x":25,"y":45,"fileNum":16077,"id":22299,"width":25,"height":45},{"x":50,"y":45,"fileNum":16077,"id":22300,"width":25,"height":45},{"x":75,"y":45,"fileNum":16077,"id":22301,"width":25,"height":45},{"x":100,"y":45,"fileNum":16077,"id":22302,"width":25,"height":45},{"x":125,"y":45,"fileNum":16077,"id":22303,"width":25,"height":45},{"x":0,"y":90,"fileNum":16077,"id":22304,"width":25,"height":45},{"x":25,"y":90,"fileNum":16077,"id":22305,"width":25,"height":45},{"x":50,"y":90,"fileNum":16077,"id":22306,"width":25,"height":45},{"x":75,"y":90,"fileNum":16077,"id":22307,"width":25,"height":45},{"x":100,"y":90,"fileNum":16077,"id":22308,"width":25,"height":45},{"x":0,"y":135,"fileNum":16077,"id":22309,"width":25,"height":45},{"x":25,"y":135,"fileNum":16077,"id":22310,"width":25,"height":45},{"x":50,"y":135,"fileNum":16077,"id":22311,"width":25,"height":45},{"x":75,"y":135,"fileNum":16077,"id":22312,"width":25,"height":45},{"x":100,"y":135,"fileNum":16077,"id":22313,"width":25,"height":45},{"x":0,"y":0,"fileNum":16078,"id":22318,"width":25,"height":45},{"x":25,"y":0,"fileNum":16078,"id":22319,"width":25,"height":45},{"x":50,"y":0,"fileNum":16078,"id":22320,"width":25,"height":45},{"x":75,"y":0,"fileNum":16078,"id":22321,"width":25,"height":45},{"x":100,"y":0,"fileNum":16078,"id":22322,"width":25,"height":45},{"x":125,"y":0,"fileNum":16078,"id":22323,"width":25,"height":45},{"x":0,"y":45,"fileNum":16078,"id":22324,"width":25,"height":45},{"x":25,"y":45,"fileNum":16078,"id":22325,"width":25,"height":45},{"x":50,"y":45,"fileNum":16078,"id":22326,"width":25,"height":45},{"x":75,"y":45,"fileNum":16078,"id":22327,"width":25,"height":45},{"x":100,"y":45,"fileNum":16078,"id":22328,"width":25,"height":45},{"x":125,"y":45,"fileNum":16078,"id":22329,"width":25,"height":45},{"x":0,"y":90,"fileNum":16078,"id":22330,"width":25,"height":45},{"x":25,"y":90,"fileNum":16078,"id":22331,"width":25,"height":45},{"x":50,"y":90,"fileNum":16078,"id":22332,"width":25,"height":45},{"x":75,"y":90,"fileNum":16078,"id":22333,"width":25,"height":45},{"x":100,"y":90,"fileNum":16078,"id":22334,"width":25,"height":45},{"x":0,"y":135,"fileNum":16078,"id":22335,"width":25,"height":45},{"x":25,"y":135,"fileNum":16078,"id":22336,"width":25,"height":45},{"x":50,"y":135,"fileNum":16078,"id":22337,"width":25,"height":45},{"x":75,"y":135,"fileNum":16078,"id":22338,"width":25,"height":45},{"x":100,"y":135,"fileNum":16078,"id":22339,"width":25,"height":45},{"x":0,"y":0,"fileNum":16079,"id":22344,"width":25,"height":45},{"x":25,"y":0,"fileNum":16079,"id":22345,"width":25,"height":45},{"x":50,"y":0,"fileNum":16079,"id":22346,"width":25,"height":45},{"x":75,"y":0,"fileNum":16079,"id":22347,"width":25,"height":45},{"x":100,"y":0,"fileNum":16079,"id":22348,"width":25,"height":45},{"x":125,"y":0,"fileNum":16079,"id":22349,"width":25,"height":45},{"x":0,"y":45,"fileNum":16079,"id":22350,"width":25,"height":45},{"x":25,"y":45,"fileNum":16079,"id":22351,"width":25,"height":45},{"x":50,"y":45,"fileNum":16079,"id":22352,"width":25,"height":45},{"x":75,"y":45,"fileNum":16079,"id":22353,"width":25,"height":45},{"x":100,"y":45,"fileNum":16079,"id":22354,"width":25,"height":45},{"x":125,"y":45,"fileNum":16079,"id":22355,"width":25,"height":45},{"x":0,"y":90,"fileNum":16079,"id":22356,"width":25,"height":45},{"x":25,"y":90,"fileNum":16079,"id":22357,"width":25,"height":45},{"x":50,"y":90,"fileNum":16079,"id":22358,"width":25,"height":45},{"x":75,"y":90,"fileNum":16079,"id":22359,"width":25,"height":45},{"x":100,"y":90,"fileNum":16079,"id":22360,"width":25,"height":45},{"x":0,"y":135,"fileNum":16079,"id":22361,"width":25,"height":45},{"x":25,"y":135,"fileNum":16079,"id":22362,"width":25,"height":45},{"x":50,"y":135,"fileNum":16079,"id":22363,"width":25,"height":45},{"x":75,"y":135,"fileNum":16079,"id":22364,"width":25,"height":45},{"x":100,"y":135,"fileNum":16079,"id":22365,"width":25,"height":45},{"x":0,"y":0,"fileNum":16080,"id":22370,"width":25,"height":45},{"x":25,"y":0,"fileNum":16080,"id":22371,"width":25,"height":45},{"x":50,"y":0,"fileNum":16080,"id":22372,"width":25,"height":45},{"x":75,"y":0,"fileNum":16080,"id":22373,"width":25,"height":45},{"x":100,"y":0,"fileNum":16080,"id":22374,"width":25,"height":45},{"x":125,"y":0,"fileNum":16080,"id":22375,"width":25,"height":45},{"x":0,"y":45,"fileNum":16080,"id":22376,"width":25,"height":45},{"x":25,"y":45,"fileNum":16080,"id":22377,"width":25,"height":45},{"x":50,"y":45,"fileNum":16080,"id":22378,"width":25,"height":45},{"x":75,"y":45,"fileNum":16080,"id":22379,"width":25,"height":45},{"x":100,"y":45,"fileNum":16080,"id":22380,"width":25,"height":45},{"x":125,"y":45,"fileNum":16080,"id":22381,"width":25,"height":45},{"x":0,"y":90,"fileNum":16080,"id":22382,"width":25,"height":45},{"x":25,"y":90,"fileNum":16080,"id":22383,"width":25,"height":45},{"x":50,"y":90,"fileNum":16080,"id":22384,"width":25,"height":45},{"x":75,"y":90,"fileNum":16080,"id":22385,"width":25,"height":45},{"x":100,"y":90,"fileNum":16080,"id":22386,"width":25,"height":45},{"x":0,"y":135,"fileNum":16080,"id":22387,"width":25,"height":45},{"x":25,"y":135,"fileNum":16080,"id":22388,"width":25,"height":45},{"x":50,"y":135,"fileNum":16080,"id":22389,"width":25,"height":45},{"x":75,"y":135,"fileNum":16080,"id":22390,"width":25,"height":45},{"x":100,"y":135,"fileNum":16080,"id":22391,"width":25,"height":45},{"x":0,"y":0,"fileNum":16081,"id":22396,"width":25,"height":45},{"x":25,"y":0,"fileNum":16081,"id":22397,"width":25,"height":45},{"x":50,"y":0,"fileNum":16081,"id":22398,"width":25,"height":45},{"x":75,"y":0,"fileNum":16081,"id":22399,"width":25,"height":45},{"x":100,"y":0,"fileNum":16081,"id":22400,"width":25,"height":45},{"x":125,"y":0,"fileNum":16081,"id":22401,"width":25,"height":45},{"x":0,"y":45,"fileNum":16081,"id":22402,"width":25,"height":45},{"x":25,"y":45,"fileNum":16081,"id":22403,"width":25,"height":45},{"x":50,"y":45,"fileNum":16081,"id":22404,"width":25,"height":45},{"x":75,"y":45,"fileNum":16081,"id":22405,"width":25,"height":45},{"x":100,"y":45,"fileNum":16081,"id":22406,"width":25,"height":45},{"x":125,"y":45,"fileNum":16081,"id":22407,"width":25,"height":45},{"x":0,"y":90,"fileNum":16081,"id":22408,"width":25,"height":45},{"x":25,"y":90,"fileNum":16081,"id":22409,"width":25,"height":45},{"x":50,"y":90,"fileNum":16081,"id":22410,"width":25,"height":45},{"x":75,"y":90,"fileNum":16081,"id":22411,"width":25,"height":45},{"x":100,"y":90,"fileNum":16081,"id":22412,"width":25,"height":45},{"x":0,"y":135,"fileNum":16081,"id":22413,"width":25,"height":45},{"x":25,"y":135,"fileNum":16081,"id":22414,"width":25,"height":45},{"x":50,"y":135,"fileNum":16081,"id":22415,"width":25,"height":45},{"x":75,"y":135,"fileNum":16081,"id":22416,"width":25,"height":45},{"x":100,"y":135,"fileNum":16081,"id":22417,"width":25,"height":45},{"x":0,"y":0,"fileNum":16082,"id":22422,"width":25,"height":45},{"x":25,"y":0,"fileNum":16082,"id":22423,"width":25,"height":45},{"x":50,"y":0,"fileNum":16082,"id":22424,"width":25,"height":45},{"x":75,"y":0,"fileNum":16082,"id":22425,"width":25,"height":45},{"x":100,"y":0,"fileNum":16082,"id":22426,"width":25,"height":45},{"x":125,"y":0,"fileNum":16082,"id":22427,"width":25,"height":45},{"x":0,"y":45,"fileNum":16082,"id":22428,"width":25,"height":45},{"x":25,"y":45,"fileNum":16082,"id":22429,"width":25,"height":45},{"x":50,"y":45,"fileNum":16082,"id":22430,"width":25,"height":45},{"x":75,"y":45,"fileNum":16082,"id":22431,"width":25,"height":45},{"x":100,"y":45,"fileNum":16082,"id":22432,"width":25,"height":45},{"x":125,"y":45,"fileNum":16082,"id":22433,"width":25,"height":45},{"x":0,"y":90,"fileNum":16082,"id":22434,"width":25,"height":45},{"x":25,"y":90,"fileNum":16082,"id":22435,"width":25,"height":45},{"x":50,"y":90,"fileNum":16082,"id":22436,"width":25,"height":45},{"x":75,"y":90,"fileNum":16082,"id":22437,"width":25,"height":45},{"x":100,"y":90,"fileNum":16082,"id":22438,"width":25,"height":45},{"x":0,"y":135,"fileNum":16082,"id":22439,"width":25,"height":45},{"x":25,"y":135,"fileNum":16082,"id":22440,"width":25,"height":45},{"x":50,"y":135,"fileNum":16082,"id":22441,"width":25,"height":45},{"x":75,"y":135,"fileNum":16082,"id":22442,"width":25,"height":45},{"x":100,"y":135,"fileNum":16082,"id":22443,"width":25,"height":45},{"x":0,"y":0,"fileNum":16083,"id":22448,"width":25,"height":45},{"x":25,"y":0,"fileNum":16083,"id":22449,"width":25,"height":45},{"x":50,"y":0,"fileNum":16083,"id":22450,"width":25,"height":45},{"x":75,"y":0,"fileNum":16083,"id":22451,"width":25,"height":45},{"x":100,"y":0,"fileNum":16083,"id":22452,"width":25,"height":45},{"x":125,"y":0,"fileNum":16083,"id":22453,"width":25,"height":45},{"x":0,"y":45,"fileNum":16083,"id":22454,"width":25,"height":45},{"x":25,"y":45,"fileNum":16083,"id":22455,"width":25,"height":45},{"x":50,"y":45,"fileNum":16083,"id":22456,"width":25,"height":45},{"x":75,"y":45,"fileNum":16083,"id":22457,"width":25,"height":45},{"x":100,"y":45,"fileNum":16083,"id":22458,"width":25,"height":45},{"x":125,"y":45,"fileNum":16083,"id":22459,"width":25,"height":45},{"x":0,"y":90,"fileNum":16083,"id":22460,"width":25,"height":45},{"x":25,"y":90,"fileNum":16083,"id":22461,"width":25,"height":45},{"x":50,"y":90,"fileNum":16083,"id":22462,"width":25,"height":45},{"x":75,"y":90,"fileNum":16083,"id":22463,"width":25,"height":45},{"x":100,"y":90,"fileNum":16083,"id":22464,"width":25,"height":45},{"x":0,"y":135,"fileNum":16083,"id":22465,"width":25,"height":45},{"x":25,"y":135,"fileNum":16083,"id":22466,"width":25,"height":45},{"x":50,"y":135,"fileNum":16083,"id":22467,"width":25,"height":45},{"x":75,"y":135,"fileNum":16083,"id":22468,"width":25,"height":45},{"x":100,"y":135,"fileNum":16083,"id":22469,"width":25,"height":45},{"x":0,"y":0,"fileNum":7072,"id":22474,"width":160,"height":128},{"x":0,"y":0,"fileNum":12093,"id":22475,"width":32,"height":32},{"x":32,"y":0,"fileNum":12093,"id":22476,"width":32,"height":32},{"x":64,"y":0,"fileNum":12093,"id":22477,"width":32,"height":32},{"x":96,"y":0,"fileNum":12093,"id":22478,"width":32,"height":32},{"x":128,"y":0,"fileNum":12093,"id":22479,"width":32,"height":32},{"x":0,"y":32,"fileNum":12093,"id":22480,"width":32,"height":32},{"x":32,"y":32,"fileNum":12093,"id":22481,"width":32,"height":32},{"x":64,"y":32,"fileNum":12093,"id":22482,"width":32,"height":32},{"x":96,"y":32,"fileNum":12093,"id":22483,"width":32,"height":32},{"x":128,"y":32,"fileNum":12093,"id":22484,"width":32,"height":32},{"x":0,"y":64,"fileNum":12093,"id":22485,"width":32,"height":32},{"x":32,"y":64,"fileNum":12093,"id":22486,"width":32,"height":32},{"x":64,"y":64,"fileNum":12093,"id":22487,"width":32,"height":32},{"x":96,"y":64,"fileNum":12093,"id":22488,"width":32,"height":32},{"x":128,"y":64,"fileNum":12093,"id":22489,"width":32,"height":32},{"x":0,"y":96,"fileNum":12093,"id":22490,"width":32,"height":32},{"x":32,"y":96,"fileNum":12093,"id":22491,"width":32,"height":32},{"x":64,"y":96,"fileNum":12093,"id":22492,"width":32,"height":32},{"x":96,"y":96,"fileNum":12093,"id":22493,"width":32,"height":32},{"x":128,"y":96,"fileNum":12093,"id":22494,"width":32,"height":32},{"x":160,"y":0,"fileNum":12093,"id":22495,"width":32,"height":32},{"x":192,"y":0,"fileNum":12093,"id":22496,"width":32,"height":32},{"x":224,"y":0,"fileNum":12093,"id":22497,"width":32,"height":32},{"x":256,"y":0,"fileNum":12093,"id":22498,"width":32,"height":32},{"x":288,"y":0,"fileNum":12093,"id":22499,"width":32,"height":32},{"x":160,"y":32,"fileNum":12093,"id":22500,"width":32,"height":32},{"x":192,"y":32,"fileNum":12093,"id":22501,"width":32,"height":32},{"x":224,"y":32,"fileNum":12093,"id":22502,"width":32,"height":32},{"x":256,"y":32,"fileNum":12093,"id":22503,"width":32,"height":32},{"x":288,"y":32,"fileNum":12093,"id":22504,"width":32,"height":32},{"x":160,"y":64,"fileNum":12093,"id":22505,"width":32,"height":32},{"x":192,"y":64,"fileNum":12093,"id":22506,"width":32,"height":32},{"x":224,"y":64,"fileNum":12093,"id":22507,"width":32,"height":32},{"x":256,"y":64,"fileNum":12093,"id":22508,"width":32,"height":32},{"x":288,"y":64,"fileNum":12093,"id":22509,"width":32,"height":32},{"x":160,"y":96,"fileNum":12093,"id":22510,"width":32,"height":32},{"x":192,"y":96,"fileNum":12093,"id":22511,"width":32,"height":32},{"x":224,"y":96,"fileNum":12093,"id":22512,"width":32,"height":32},{"x":256,"y":96,"fileNum":12093,"id":22513,"width":32,"height":32},{"x":288,"y":96,"fileNum":12093,"id":22514,"width":32,"height":32},{"x":0,"y":0,"fileNum":16085,"id":22515,"width":25,"height":45},{"x":25,"y":0,"fileNum":16085,"id":22516,"width":25,"height":45},{"x":50,"y":0,"fileNum":16085,"id":22517,"width":25,"height":45},{"x":75,"y":0,"fileNum":16085,"id":22518,"width":25,"height":45},{"x":100,"y":0,"fileNum":16085,"id":22519,"width":25,"height":45},{"x":125,"y":0,"fileNum":16085,"id":22520,"width":25,"height":45},{"x":0,"y":45,"fileNum":16085,"id":22521,"width":25,"height":45},{"x":25,"y":45,"fileNum":16085,"id":22522,"width":25,"height":45},{"x":50,"y":45,"fileNum":16085,"id":22523,"width":25,"height":45},{"x":75,"y":45,"fileNum":16085,"id":22524,"width":25,"height":45},{"x":100,"y":45,"fileNum":16085,"id":22525,"width":25,"height":45},{"x":125,"y":45,"fileNum":16085,"id":22526,"width":25,"height":45},{"x":0,"y":90,"fileNum":16085,"id":22527,"width":25,"height":45},{"x":25,"y":90,"fileNum":16085,"id":22528,"width":25,"height":45},{"x":50,"y":90,"fileNum":16085,"id":22529,"width":25,"height":45},{"x":75,"y":90,"fileNum":16085,"id":22530,"width":25,"height":45},{"x":100,"y":90,"fileNum":16085,"id":22531,"width":25,"height":45},{"x":0,"y":135,"fileNum":16085,"id":22532,"width":25,"height":45},{"x":25,"y":135,"fileNum":16085,"id":22533,"width":25,"height":45},{"x":50,"y":135,"fileNum":16085,"id":22534,"width":25,"height":45},{"x":75,"y":135,"fileNum":16085,"id":22535,"width":25,"height":45},{"x":100,"y":135,"fileNum":16085,"id":22536,"width":25,"height":45},{"x":0,"y":0,"fileNum":16086,"id":22541,"width":25,"height":45},{"x":25,"y":0,"fileNum":16086,"id":22542,"width":25,"height":45},{"x":50,"y":0,"fileNum":16086,"id":22543,"width":25,"height":45},{"x":75,"y":0,"fileNum":16086,"id":22544,"width":25,"height":45},{"x":100,"y":0,"fileNum":16086,"id":22545,"width":25,"height":45},{"x":125,"y":0,"fileNum":16086,"id":22546,"width":25,"height":45},{"x":0,"y":45,"fileNum":16086,"id":22547,"width":25,"height":45},{"x":25,"y":45,"fileNum":16086,"id":22548,"width":25,"height":45},{"x":50,"y":45,"fileNum":16086,"id":22549,"width":25,"height":45},{"x":75,"y":45,"fileNum":16086,"id":22550,"width":25,"height":45},{"x":100,"y":45,"fileNum":16086,"id":22551,"width":25,"height":45},{"x":125,"y":45,"fileNum":16086,"id":22552,"width":25,"height":45},{"x":0,"y":90,"fileNum":16086,"id":22553,"width":25,"height":45},{"x":25,"y":90,"fileNum":16086,"id":22554,"width":25,"height":45},{"x":50,"y":90,"fileNum":16086,"id":22555,"width":25,"height":45},{"x":75,"y":90,"fileNum":16086,"id":22556,"width":25,"height":45},{"x":100,"y":90,"fileNum":16086,"id":22557,"width":25,"height":45},{"x":0,"y":135,"fileNum":16086,"id":22558,"width":25,"height":45},{"x":25,"y":135,"fileNum":16086,"id":22559,"width":25,"height":45},{"x":50,"y":135,"fileNum":16086,"id":22560,"width":25,"height":45},{"x":75,"y":135,"fileNum":16086,"id":22561,"width":25,"height":45},{"x":100,"y":135,"fileNum":16086,"id":22562,"width":25,"height":45},{"x":0,"y":0,"fileNum":16087,"id":22567,"width":25,"height":45},{"x":25,"y":0,"fileNum":16087,"id":22568,"width":25,"height":45},{"x":50,"y":0,"fileNum":16087,"id":22569,"width":25,"height":45},{"x":75,"y":0,"fileNum":16087,"id":22570,"width":25,"height":45},{"x":100,"y":0,"fileNum":16087,"id":22571,"width":25,"height":45},{"x":125,"y":0,"fileNum":16087,"id":22572,"width":25,"height":45},{"x":0,"y":45,"fileNum":16087,"id":22573,"width":25,"height":45},{"x":25,"y":45,"fileNum":16087,"id":22574,"width":25,"height":45},{"x":50,"y":45,"fileNum":16087,"id":22575,"width":25,"height":45},{"x":75,"y":45,"fileNum":16087,"id":22576,"width":25,"height":45},{"x":100,"y":45,"fileNum":16087,"id":22577,"width":25,"height":45},{"x":125,"y":45,"fileNum":16087,"id":22578,"width":25,"height":45},{"x":0,"y":90,"fileNum":16087,"id":22579,"width":25,"height":45},{"x":25,"y":90,"fileNum":16087,"id":22580,"width":25,"height":45},{"x":50,"y":90,"fileNum":16087,"id":22581,"width":25,"height":45},{"x":75,"y":90,"fileNum":16087,"id":22582,"width":25,"height":45},{"x":100,"y":90,"fileNum":16087,"id":22583,"width":25,"height":45},{"x":0,"y":135,"fileNum":16087,"id":22584,"width":25,"height":45},{"x":25,"y":135,"fileNum":16087,"id":22585,"width":25,"height":45},{"x":50,"y":135,"fileNum":16087,"id":22586,"width":25,"height":45},{"x":75,"y":135,"fileNum":16087,"id":22587,"width":25,"height":45},{"x":100,"y":135,"fileNum":16087,"id":22588,"width":25,"height":45},{"x":0,"y":0,"fileNum":16088,"id":22593,"width":25,"height":45},{"x":25,"y":0,"fileNum":16088,"id":22594,"width":25,"height":45},{"x":50,"y":0,"fileNum":16088,"id":22595,"width":25,"height":45},{"x":75,"y":0,"fileNum":16088,"id":22596,"width":25,"height":45},{"x":100,"y":0,"fileNum":16088,"id":22597,"width":25,"height":45},{"x":125,"y":0,"fileNum":16088,"id":22598,"width":25,"height":45},{"x":0,"y":45,"fileNum":16088,"id":22599,"width":25,"height":45},{"x":25,"y":45,"fileNum":16088,"id":22600,"width":25,"height":45},{"x":50,"y":45,"fileNum":16088,"id":22601,"width":25,"height":45},{"x":75,"y":45,"fileNum":16088,"id":22602,"width":25,"height":45},{"x":100,"y":45,"fileNum":16088,"id":22603,"width":25,"height":45},{"x":125,"y":45,"fileNum":16088,"id":22604,"width":25,"height":45},{"x":0,"y":90,"fileNum":16088,"id":22605,"width":25,"height":45},{"x":25,"y":90,"fileNum":16088,"id":22606,"width":25,"height":45},{"x":50,"y":90,"fileNum":16088,"id":22607,"width":25,"height":45},{"x":75,"y":90,"fileNum":16088,"id":22608,"width":25,"height":45},{"x":100,"y":90,"fileNum":16088,"id":22609,"width":25,"height":45},{"x":0,"y":135,"fileNum":16088,"id":22610,"width":25,"height":45},{"x":25,"y":135,"fileNum":16088,"id":22611,"width":25,"height":45},{"x":50,"y":135,"fileNum":16088,"id":22612,"width":25,"height":45},{"x":75,"y":135,"fileNum":16088,"id":22613,"width":25,"height":45},{"x":100,"y":135,"fileNum":16088,"id":22614,"width":25,"height":45},{"x":0,"y":0,"fileNum":16090,"id":22619,"width":25,"height":45},{"x":25,"y":0,"fileNum":16090,"id":22620,"width":25,"height":45},{"x":50,"y":0,"fileNum":16090,"id":22621,"width":25,"height":45},{"x":75,"y":0,"fileNum":16090,"id":22622,"width":25,"height":45},{"x":100,"y":0,"fileNum":16090,"id":22623,"width":25,"height":45},{"x":125,"y":0,"fileNum":16090,"id":22624,"width":25,"height":45},{"x":0,"y":45,"fileNum":16090,"id":22625,"width":25,"height":45},{"x":25,"y":45,"fileNum":16090,"id":22626,"width":25,"height":45},{"x":50,"y":45,"fileNum":16090,"id":22627,"width":25,"height":45},{"x":75,"y":45,"fileNum":16090,"id":22628,"width":25,"height":45},{"x":100,"y":45,"fileNum":16090,"id":22629,"width":25,"height":45},{"x":125,"y":45,"fileNum":16090,"id":22630,"width":25,"height":45},{"x":0,"y":90,"fileNum":16090,"id":22631,"width":25,"height":45},{"x":25,"y":90,"fileNum":16090,"id":22632,"width":25,"height":45},{"x":50,"y":90,"fileNum":16090,"id":22633,"width":25,"height":45},{"x":75,"y":90,"fileNum":16090,"id":22634,"width":25,"height":45},{"x":100,"y":90,"fileNum":16090,"id":22635,"width":25,"height":45},{"x":0,"y":135,"fileNum":16090,"id":22636,"width":25,"height":45},{"x":25,"y":135,"fileNum":16090,"id":22637,"width":25,"height":45},{"x":50,"y":135,"fileNum":16090,"id":22638,"width":25,"height":45},{"x":75,"y":135,"fileNum":16090,"id":22639,"width":25,"height":45},{"x":100,"y":135,"fileNum":16090,"id":22640,"width":25,"height":45},{"x":0,"y":0,"fileNum":16091,"id":22645,"width":25,"height":45},{"x":25,"y":0,"fileNum":16091,"id":22646,"width":25,"height":45},{"x":50,"y":0,"fileNum":16091,"id":22647,"width":25,"height":45},{"x":75,"y":0,"fileNum":16091,"id":22648,"width":25,"height":45},{"x":100,"y":0,"fileNum":16091,"id":22649,"width":25,"height":45},{"x":125,"y":0,"fileNum":16091,"id":22650,"width":25,"height":45},{"x":0,"y":45,"fileNum":16091,"id":22651,"width":25,"height":45},{"x":25,"y":45,"fileNum":16091,"id":22652,"width":25,"height":45},{"x":50,"y":45,"fileNum":16091,"id":22653,"width":25,"height":45},{"x":75,"y":45,"fileNum":16091,"id":22654,"width":25,"height":45},{"x":100,"y":45,"fileNum":16091,"id":22655,"width":25,"height":45},{"x":125,"y":45,"fileNum":16091,"id":22656,"width":25,"height":45},{"x":0,"y":90,"fileNum":16091,"id":22657,"width":25,"height":45},{"x":25,"y":90,"fileNum":16091,"id":22658,"width":25,"height":45},{"x":50,"y":90,"fileNum":16091,"id":22659,"width":25,"height":45},{"x":75,"y":90,"fileNum":16091,"id":22660,"width":25,"height":45},{"x":100,"y":90,"fileNum":16091,"id":22661,"width":25,"height":45},{"x":0,"y":135,"fileNum":16091,"id":22662,"width":25,"height":45},{"x":25,"y":135,"fileNum":16091,"id":22663,"width":25,"height":45},{"x":50,"y":135,"fileNum":16091,"id":22664,"width":25,"height":45},{"x":75,"y":135,"fileNum":16091,"id":22665,"width":25,"height":45},{"x":100,"y":135,"fileNum":16091,"id":22666,"width":25,"height":45},{"x":0,"y":0,"fileNum":16092,"id":22671,"width":25,"height":45},{"x":25,"y":0,"fileNum":16092,"id":22672,"width":25,"height":45},{"x":50,"y":0,"fileNum":16092,"id":22673,"width":25,"height":45},{"x":75,"y":0,"fileNum":16092,"id":22674,"width":25,"height":45},{"x":100,"y":0,"fileNum":16092,"id":22675,"width":25,"height":45},{"x":125,"y":0,"fileNum":16092,"id":22676,"width":25,"height":45},{"x":0,"y":45,"fileNum":16092,"id":22677,"width":25,"height":45},{"x":25,"y":45,"fileNum":16092,"id":22678,"width":25,"height":45},{"x":50,"y":45,"fileNum":16092,"id":22679,"width":25,"height":45},{"x":75,"y":45,"fileNum":16092,"id":22680,"width":25,"height":45},{"x":100,"y":45,"fileNum":16092,"id":22681,"width":25,"height":45},{"x":125,"y":45,"fileNum":16092,"id":22682,"width":25,"height":45},{"x":0,"y":90,"fileNum":16092,"id":22683,"width":25,"height":45},{"x":25,"y":90,"fileNum":16092,"id":22684,"width":25,"height":45},{"x":50,"y":90,"fileNum":16092,"id":22685,"width":25,"height":45},{"x":75,"y":90,"fileNum":16092,"id":22686,"width":25,"height":45},{"x":100,"y":90,"fileNum":16092,"id":22687,"width":25,"height":45},{"x":0,"y":135,"fileNum":16092,"id":22688,"width":25,"height":45},{"x":25,"y":135,"fileNum":16092,"id":22689,"width":25,"height":45},{"x":50,"y":135,"fileNum":16092,"id":22690,"width":25,"height":45},{"x":75,"y":135,"fileNum":16092,"id":22691,"width":25,"height":45},{"x":100,"y":135,"fileNum":16092,"id":22692,"width":25,"height":45},{"x":0,"y":0,"fileNum":16093,"id":22697,"width":25,"height":45},{"x":25,"y":0,"fileNum":16093,"id":22698,"width":25,"height":45},{"x":50,"y":0,"fileNum":16093,"id":22699,"width":25,"height":45},{"x":75,"y":0,"fileNum":16093,"id":22700,"width":25,"height":45},{"x":100,"y":0,"fileNum":16093,"id":22701,"width":25,"height":45},{"x":125,"y":0,"fileNum":16093,"id":22702,"width":25,"height":45},{"x":0,"y":45,"fileNum":16093,"id":22703,"width":25,"height":45},{"x":25,"y":45,"fileNum":16093,"id":22704,"width":25,"height":45},{"x":50,"y":45,"fileNum":16093,"id":22705,"width":25,"height":45},{"x":75,"y":45,"fileNum":16093,"id":22706,"width":25,"height":45},{"x":100,"y":45,"fileNum":16093,"id":22707,"width":25,"height":45},{"x":125,"y":45,"fileNum":16093,"id":22708,"width":25,"height":45},{"x":0,"y":90,"fileNum":16093,"id":22709,"width":25,"height":45},{"x":25,"y":90,"fileNum":16093,"id":22710,"width":25,"height":45},{"x":50,"y":90,"fileNum":16093,"id":22711,"width":25,"height":45},{"x":75,"y":90,"fileNum":16093,"id":22712,"width":25,"height":45},{"x":100,"y":90,"fileNum":16093,"id":22713,"width":25,"height":45},{"x":0,"y":135,"fileNum":16093,"id":22714,"width":25,"height":45},{"x":25,"y":135,"fileNum":16093,"id":22715,"width":25,"height":45},{"x":50,"y":135,"fileNum":16093,"id":22716,"width":25,"height":45},{"x":75,"y":135,"fileNum":16093,"id":22717,"width":25,"height":45},{"x":100,"y":135,"fileNum":16093,"id":22718,"width":25,"height":45},{"x":0,"y":0,"fileNum":16094,"id":22723,"width":32,"height":32},{"x":0,"y":0,"fileNum":16095,"id":22724,"width":25,"height":45},{"x":25,"y":0,"fileNum":16095,"id":22725,"width":25,"height":45},{"x":50,"y":0,"fileNum":16095,"id":22726,"width":25,"height":45},{"x":75,"y":0,"fileNum":16095,"id":22727,"width":25,"height":45},{"x":100,"y":0,"fileNum":16095,"id":22728,"width":25,"height":45},{"x":125,"y":0,"fileNum":16095,"id":22729,"width":25,"height":45},{"x":0,"y":45,"fileNum":16095,"id":22730,"width":25,"height":45},{"x":25,"y":45,"fileNum":16095,"id":22731,"width":25,"height":45},{"x":50,"y":45,"fileNum":16095,"id":22732,"width":25,"height":45},{"x":75,"y":45,"fileNum":16095,"id":22733,"width":25,"height":45},{"x":100,"y":45,"fileNum":16095,"id":22734,"width":25,"height":45},{"x":125,"y":45,"fileNum":16095,"id":22735,"width":25,"height":45},{"x":0,"y":90,"fileNum":16095,"id":22736,"width":25,"height":45},{"x":25,"y":90,"fileNum":16095,"id":22737,"width":25,"height":45},{"x":50,"y":90,"fileNum":16095,"id":22738,"width":25,"height":45},{"x":75,"y":90,"fileNum":16095,"id":22739,"width":25,"height":45},{"x":100,"y":90,"fileNum":16095,"id":22740,"width":25,"height":45},{"x":0,"y":135,"fileNum":16095,"id":22741,"width":25,"height":45},{"x":25,"y":135,"fileNum":16095,"id":22742,"width":25,"height":45},{"x":50,"y":135,"fileNum":16095,"id":22743,"width":25,"height":45},{"x":75,"y":135,"fileNum":16095,"id":22744,"width":25,"height":45},{"x":100,"y":135,"fileNum":16095,"id":22745,"width":25,"height":45},{"x":0,"y":0,"fileNum":16096,"id":22750,"width":25,"height":45},{"x":25,"y":0,"fileNum":16096,"id":22751,"width":25,"height":45},{"x":50,"y":0,"fileNum":16096,"id":22752,"width":25,"height":45},{"x":75,"y":0,"fileNum":16096,"id":22753,"width":25,"height":45},{"x":100,"y":0,"fileNum":16096,"id":22754,"width":25,"height":45},{"x":125,"y":0,"fileNum":16096,"id":22755,"width":25,"height":45},{"x":0,"y":45,"fileNum":16096,"id":22756,"width":25,"height":45},{"x":25,"y":45,"fileNum":16096,"id":22757,"width":25,"height":45},{"x":50,"y":45,"fileNum":16096,"id":22758,"width":25,"height":45},{"x":75,"y":45,"fileNum":16096,"id":22759,"width":25,"height":45},{"x":100,"y":45,"fileNum":16096,"id":22760,"width":25,"height":45},{"x":125,"y":45,"fileNum":16096,"id":22761,"width":25,"height":45},{"x":0,"y":90,"fileNum":16096,"id":22762,"width":25,"height":45},{"x":25,"y":90,"fileNum":16096,"id":22763,"width":25,"height":45},{"x":50,"y":90,"fileNum":16096,"id":22764,"width":25,"height":45},{"x":75,"y":90,"fileNum":16096,"id":22765,"width":25,"height":45},{"x":100,"y":90,"fileNum":16096,"id":22766,"width":25,"height":45},{"x":0,"y":135,"fileNum":16096,"id":22767,"width":25,"height":45},{"x":25,"y":135,"fileNum":16096,"id":22768,"width":25,"height":45},{"x":50,"y":135,"fileNum":16096,"id":22769,"width":25,"height":45},{"x":75,"y":135,"fileNum":16096,"id":22770,"width":25,"height":45},{"x":100,"y":135,"fileNum":16096,"id":22771,"width":25,"height":45},{"x":0,"y":0,"fileNum":16097,"id":22776,"width":25,"height":45},{"x":25,"y":0,"fileNum":16097,"id":22777,"width":25,"height":45},{"x":50,"y":0,"fileNum":16097,"id":22778,"width":25,"height":45},{"x":75,"y":0,"fileNum":16097,"id":22779,"width":25,"height":45},{"x":100,"y":0,"fileNum":16097,"id":22780,"width":25,"height":45},{"x":125,"y":0,"fileNum":16097,"id":22781,"width":25,"height":45},{"x":0,"y":45,"fileNum":16097,"id":22782,"width":25,"height":45},{"x":25,"y":45,"fileNum":16097,"id":22783,"width":25,"height":45},{"x":50,"y":45,"fileNum":16097,"id":22784,"width":25,"height":45},{"x":75,"y":45,"fileNum":16097,"id":22785,"width":25,"height":45},{"x":100,"y":45,"fileNum":16097,"id":22786,"width":25,"height":45},{"x":125,"y":45,"fileNum":16097,"id":22787,"width":25,"height":45},{"x":0,"y":90,"fileNum":16097,"id":22788,"width":25,"height":45},{"x":25,"y":90,"fileNum":16097,"id":22789,"width":25,"height":45},{"x":50,"y":90,"fileNum":16097,"id":22790,"width":25,"height":45},{"x":75,"y":90,"fileNum":16097,"id":22791,"width":25,"height":45},{"x":100,"y":90,"fileNum":16097,"id":22792,"width":25,"height":45},{"x":0,"y":135,"fileNum":16097,"id":22793,"width":25,"height":45},{"x":25,"y":135,"fileNum":16097,"id":22794,"width":25,"height":45},{"x":50,"y":135,"fileNum":16097,"id":22795,"width":25,"height":45},{"x":75,"y":135,"fileNum":16097,"id":22796,"width":25,"height":45},{"x":100,"y":135,"fileNum":16097,"id":22797,"width":25,"height":45},{"x":0,"y":0,"fileNum":2229,"id":22802,"width":17,"height":50},{"x":17,"y":0,"fileNum":2229,"id":22803,"width":17,"height":50},{"x":34,"y":0,"fileNum":2229,"id":22804,"width":17,"height":50},{"x":51,"y":0,"fileNum":2229,"id":22805,"width":17,"height":50},{"x":0,"y":0,"fileNum":2230,"id":22806,"width":17,"height":50},{"x":17,"y":0,"fileNum":2230,"id":22807,"width":17,"height":50},{"x":34,"y":0,"fileNum":2230,"id":22808,"width":17,"height":50},{"x":51,"y":0,"fileNum":2230,"id":22809,"width":17,"height":50},{"x":0,"y":0,"fileNum":2232,"id":22810,"width":17,"height":50},{"x":17,"y":0,"fileNum":2232,"id":22811,"width":17,"height":50},{"x":34,"y":0,"fileNum":2232,"id":22812,"width":17,"height":50},{"x":51,"y":0,"fileNum":2232,"id":22813,"width":17,"height":50},{"x":0,"y":0,"fileNum":2233,"id":22814,"width":17,"height":50},{"x":17,"y":0,"fileNum":2233,"id":22815,"width":17,"height":50},{"x":34,"y":0,"fileNum":2233,"id":22816,"width":17,"height":50},{"x":51,"y":0,"fileNum":2233,"id":22817,"width":17,"height":50},{"x":0,"y":0,"fileNum":2231,"id":22818,"width":17,"height":50},{"x":17,"y":0,"fileNum":2231,"id":22819,"width":17,"height":50},{"x":34,"y":0,"fileNum":2231,"id":22820,"width":17,"height":50},{"x":51,"y":0,"fileNum":2231,"id":22821,"width":17,"height":50},{"x":0,"y":0,"fileNum":2234,"id":22822,"width":17,"height":50},{"x":17,"y":0,"fileNum":2234,"id":22823,"width":17,"height":50},{"x":34,"y":0,"fileNum":2234,"id":22824,"width":17,"height":50},{"x":51,"y":0,"fileNum":2234,"id":22825,"width":17,"height":50},{"x":0,"y":0,"fileNum":2235,"id":22826,"width":17,"height":50},{"x":17,"y":0,"fileNum":2235,"id":22827,"width":17,"height":50},{"x":34,"y":0,"fileNum":2235,"id":22828,"width":17,"height":50},{"x":51,"y":0,"fileNum":2235,"id":22829,"width":17,"height":50},{"x":0,"y":0,"fileNum":4167,"id":22830,"width":63,"height":70},{"x":63,"y":0,"fileNum":4167,"id":22831,"width":63,"height":70},{"x":126,"y":0,"fileNum":4167,"id":22832,"width":63,"height":70},{"x":189,"y":0,"fileNum":4167,"id":22833,"width":63,"height":70},{"x":252,"y":0,"fileNum":4167,"id":22834,"width":63,"height":70},{"x":315,"y":0,"fileNum":4167,"id":22835,"width":63,"height":70},{"x":378,"y":0,"fileNum":4167,"id":22836,"width":63,"height":70},{"x":441,"y":0,"fileNum":4167,"id":22837,"width":63,"height":70},{"x":0,"y":70,"fileNum":4167,"id":22838,"width":63,"height":70},{"x":63,"y":70,"fileNum":4167,"id":22839,"width":63,"height":70},{"x":126,"y":70,"fileNum":4167,"id":22840,"width":63,"height":70},{"x":189,"y":70,"fileNum":4167,"id":22841,"width":63,"height":70},{"x":252,"y":70,"fileNum":4167,"id":22842,"width":63,"height":70},{"x":315,"y":70,"fileNum":4167,"id":22843,"width":63,"height":70},{"x":378,"y":70,"fileNum":4167,"id":22844,"width":63,"height":70},{"x":441,"y":70,"fileNum":4167,"id":22845,"width":63,"height":70},{"x":0,"y":140,"fileNum":4167,"id":22846,"width":63,"height":70},{"x":63,"y":140,"fileNum":4167,"id":22847,"width":63,"height":70},{"x":126,"y":140,"fileNum":4167,"id":22848,"width":63,"height":70},{"x":189,"y":140,"fileNum":4167,"id":22849,"width":63,"height":70},{"x":252,"y":140,"fileNum":4167,"id":22850,"width":63,"height":70},{"x":315,"y":140,"fileNum":4167,"id":22851,"width":63,"height":70},{"x":378,"y":140,"fileNum":4167,"id":22852,"width":63,"height":70},{"x":441,"y":140,"fileNum":4167,"id":22853,"width":63,"height":70},{"x":0,"y":210,"fileNum":4167,"id":22854,"width":63,"height":70},{"x":63,"y":210,"fileNum":4167,"id":22855,"width":63,"height":70},{"x":126,"y":210,"fileNum":4167,"id":22856,"width":63,"height":70},{"x":189,"y":210,"fileNum":4167,"id":22857,"width":63,"height":70},{"x":252,"y":210,"fileNum":4167,"id":22858,"width":63,"height":70},{"x":315,"y":210,"fileNum":4167,"id":22859,"width":63,"height":70},{"x":378,"y":210,"fileNum":4167,"id":22860,"width":63,"height":70},{"x":441,"y":210,"fileNum":4167,"id":22861,"width":63,"height":70},{"x":0,"y":0,"fileNum":4168,"id":22866,"width":125,"height":125},{"x":125,"y":0,"fileNum":4168,"id":22867,"width":125,"height":125},{"x":250,"y":0,"fileNum":4168,"id":22868,"width":125,"height":125},{"x":375,"y":0,"fileNum":4168,"id":22869,"width":125,"height":125},{"x":500,"y":0,"fileNum":4168,"id":22870,"width":125,"height":125},{"x":625,"y":0,"fileNum":4168,"id":22871,"width":125,"height":125},{"x":750,"y":0,"fileNum":4168,"id":22872,"width":125,"height":125},{"x":875,"y":0,"fileNum":4168,"id":22873,"width":125,"height":125},{"x":0,"y":125,"fileNum":4168,"id":22874,"width":125,"height":125},{"x":125,"y":125,"fileNum":4168,"id":22875,"width":125,"height":125},{"x":250,"y":125,"fileNum":4168,"id":22876,"width":125,"height":125},{"x":375,"y":125,"fileNum":4168,"id":22877,"width":125,"height":125},{"x":500,"y":125,"fileNum":4168,"id":22878,"width":125,"height":125},{"x":625,"y":125,"fileNum":4168,"id":22879,"width":125,"height":125},{"x":750,"y":125,"fileNum":4168,"id":22880,"width":125,"height":125},{"x":875,"y":125,"fileNum":4168,"id":22881,"width":125,"height":125},{"x":0,"y":250,"fileNum":4168,"id":22882,"width":125,"height":125},{"x":125,"y":250,"fileNum":4168,"id":22883,"width":125,"height":125},{"x":250,"y":250,"fileNum":4168,"id":22884,"width":125,"height":125},{"x":375,"y":250,"fileNum":4168,"id":22885,"width":125,"height":125},{"x":500,"y":250,"fileNum":4168,"id":22886,"width":125,"height":125},{"x":625,"y":250,"fileNum":4168,"id":22887,"width":125,"height":125},{"x":750,"y":250,"fileNum":4168,"id":22888,"width":125,"height":125},{"x":875,"y":250,"fileNum":4168,"id":22889,"width":125,"height":125},{"x":0,"y":375,"fileNum":4168,"id":22890,"width":125,"height":125},{"x":125,"y":375,"fileNum":4168,"id":22891,"width":125,"height":125},{"x":250,"y":375,"fileNum":4168,"id":22892,"width":125,"height":125},{"x":375,"y":375,"fileNum":4168,"id":22893,"width":125,"height":125},{"x":500,"y":375,"fileNum":4168,"id":22894,"width":125,"height":125},{"x":625,"y":375,"fileNum":4168,"id":22895,"width":125,"height":125},{"x":750,"y":375,"fileNum":4168,"id":22896,"width":125,"height":125},{"x":875,"y":375,"fileNum":4168,"id":22897,"width":125,"height":125},{"x":0,"y":0,"fileNum":4169,"id":22902,"width":55,"height":56},{"x":55,"y":0,"fileNum":4169,"id":22903,"width":55,"height":56},{"x":110,"y":0,"fileNum":4169,"id":22904,"width":55,"height":56},{"x":165,"y":0,"fileNum":4169,"id":22905,"width":55,"height":56},{"x":220,"y":0,"fileNum":4169,"id":22906,"width":55,"height":56},{"x":275,"y":0,"fileNum":4169,"id":22907,"width":55,"height":56},{"x":0,"y":56,"fileNum":4169,"id":22908,"width":55,"height":56},{"x":55,"y":56,"fileNum":4169,"id":22909,"width":55,"height":56},{"x":110,"y":56,"fileNum":4169,"id":22910,"width":55,"height":56},{"x":165,"y":56,"fileNum":4169,"id":22911,"width":55,"height":56},{"x":220,"y":56,"fileNum":4169,"id":22912,"width":55,"height":56},{"x":275,"y":56,"fileNum":4169,"id":22913,"width":55,"height":56},{"x":0,"y":112,"fileNum":4169,"id":22914,"width":55,"height":56},{"x":55,"y":112,"fileNum":4169,"id":22915,"width":55,"height":56},{"x":110,"y":112,"fileNum":4169,"id":22916,"width":55,"height":56},{"x":165,"y":112,"fileNum":4169,"id":22917,"width":55,"height":56},{"x":220,"y":112,"fileNum":4169,"id":22918,"width":55,"height":56},{"x":0,"y":168,"fileNum":4169,"id":22919,"width":55,"height":56},{"x":55,"y":168,"fileNum":4169,"id":22920,"width":55,"height":56},{"x":110,"y":168,"fileNum":4169,"id":22921,"width":55,"height":56},{"x":165,"y":168,"fileNum":4169,"id":22922,"width":55,"height":56},{"x":220,"y":168,"fileNum":4169,"id":22923,"width":55,"height":56},{"x":0,"y":0,"fileNum":4170,"id":22928,"width":115,"height":118},{"x":115,"y":0,"fileNum":4170,"id":22929,"width":115,"height":118},{"x":230,"y":0,"fileNum":4170,"id":22930,"width":115,"height":118},{"x":345,"y":0,"fileNum":4170,"id":22931,"width":115,"height":118},{"x":460,"y":0,"fileNum":4170,"id":22932,"width":115,"height":118},{"x":575,"y":0,"fileNum":4170,"id":22933,"width":115,"height":118},{"x":690,"y":0,"fileNum":4170,"id":22934,"width":115,"height":118},{"x":805,"y":0,"fileNum":4170,"id":22935,"width":115,"height":118},{"x":0,"y":118,"fileNum":4170,"id":22936,"width":115,"height":118},{"x":115,"y":118,"fileNum":4170,"id":22937,"width":115,"height":118},{"x":230,"y":118,"fileNum":4170,"id":22938,"width":115,"height":118},{"x":345,"y":118,"fileNum":4170,"id":22939,"width":115,"height":118},{"x":460,"y":118,"fileNum":4170,"id":22940,"width":115,"height":118},{"x":575,"y":118,"fileNum":4170,"id":22941,"width":115,"height":118},{"x":690,"y":118,"fileNum":4170,"id":22942,"width":115,"height":118},{"x":805,"y":118,"fileNum":4170,"id":22943,"width":115,"height":118},{"x":0,"y":236,"fileNum":4170,"id":22944,"width":115,"height":118},{"x":115,"y":236,"fileNum":4170,"id":22945,"width":115,"height":118},{"x":230,"y":236,"fileNum":4170,"id":22946,"width":115,"height":118},{"x":345,"y":236,"fileNum":4170,"id":22947,"width":115,"height":118},{"x":460,"y":236,"fileNum":4170,"id":22948,"width":115,"height":118},{"x":575,"y":236,"fileNum":4170,"id":22949,"width":115,"height":118},{"x":690,"y":236,"fileNum":4170,"id":22950,"width":115,"height":118},{"x":805,"y":236,"fileNum":4170,"id":22951,"width":115,"height":118},{"x":0,"y":354,"fileNum":4170,"id":22952,"width":115,"height":118},{"x":115,"y":354,"fileNum":4170,"id":22953,"width":115,"height":118},{"x":230,"y":354,"fileNum":4170,"id":22954,"width":115,"height":118},{"x":345,"y":354,"fileNum":4170,"id":22955,"width":115,"height":118},{"x":460,"y":354,"fileNum":4170,"id":22956,"width":115,"height":118},{"x":575,"y":354,"fileNum":4170,"id":22957,"width":115,"height":118},{"x":690,"y":354,"fileNum":4170,"id":22958,"width":115,"height":118},{"x":805,"y":354,"fileNum":4170,"id":22959,"width":115,"height":118},{"x":0,"y":0,"fileNum":20014,"id":22964,"width":25,"height":45},{"x":25,"y":0,"fileNum":20014,"id":22965,"width":25,"height":45},{"x":50,"y":0,"fileNum":20014,"id":22966,"width":25,"height":45},{"x":75,"y":0,"fileNum":20014,"id":22967,"width":25,"height":45},{"x":100,"y":0,"fileNum":20014,"id":22968,"width":25,"height":45},{"x":125,"y":0,"fileNum":20014,"id":22969,"width":25,"height":45},{"x":0,"y":45,"fileNum":20014,"id":22970,"width":25,"height":45},{"x":25,"y":45,"fileNum":20014,"id":22971,"width":25,"height":45},{"x":50,"y":45,"fileNum":20014,"id":22972,"width":25,"height":45},{"x":75,"y":45,"fileNum":20014,"id":22973,"width":25,"height":45},{"x":100,"y":45,"fileNum":20014,"id":22974,"width":25,"height":45},{"x":125,"y":45,"fileNum":20014,"id":22975,"width":25,"height":45},{"x":0,"y":90,"fileNum":20014,"id":22976,"width":25,"height":45},{"x":25,"y":90,"fileNum":20014,"id":22977,"width":25,"height":45},{"x":50,"y":90,"fileNum":20014,"id":22978,"width":25,"height":45},{"x":75,"y":90,"fileNum":20014,"id":22979,"width":25,"height":45},{"x":100,"y":90,"fileNum":20014,"id":22980,"width":25,"height":45},{"x":0,"y":135,"fileNum":20014,"id":22981,"width":25,"height":45},{"x":25,"y":135,"fileNum":20014,"id":22982,"width":25,"height":45},{"x":50,"y":135,"fileNum":20014,"id":22983,"width":25,"height":45},{"x":75,"y":135,"fileNum":20014,"id":22984,"width":25,"height":45},{"x":100,"y":135,"fileNum":20014,"id":22985,"width":25,"height":45},{"x":0,"y":0,"fileNum":20015,"id":22990,"width":25,"height":45},{"x":25,"y":0,"fileNum":20015,"id":22991,"width":25,"height":45},{"x":50,"y":0,"fileNum":20015,"id":22992,"width":25,"height":45},{"x":75,"y":0,"fileNum":20015,"id":22993,"width":25,"height":45},{"x":100,"y":0,"fileNum":20015,"id":22994,"width":25,"height":45},{"x":125,"y":0,"fileNum":20015,"id":22995,"width":25,"height":45},{"x":0,"y":45,"fileNum":20015,"id":22996,"width":25,"height":45},{"x":25,"y":45,"fileNum":20015,"id":22997,"width":25,"height":45},{"x":50,"y":45,"fileNum":20015,"id":22998,"width":25,"height":45},{"x":75,"y":45,"fileNum":20015,"id":22999,"width":25,"height":45},{"x":100,"y":45,"fileNum":20015,"id":23000,"width":25,"height":45},{"x":125,"y":45,"fileNum":20015,"id":23001,"width":25,"height":45},{"x":0,"y":90,"fileNum":20015,"id":23002,"width":25,"height":45},{"x":25,"y":90,"fileNum":20015,"id":23003,"width":25,"height":45},{"x":50,"y":90,"fileNum":20015,"id":23004,"width":25,"height":45},{"x":75,"y":90,"fileNum":20015,"id":23005,"width":25,"height":45},{"x":100,"y":90,"fileNum":20015,"id":23006,"width":25,"height":45},{"x":0,"y":135,"fileNum":20015,"id":23007,"width":25,"height":45},{"x":25,"y":135,"fileNum":20015,"id":23008,"width":25,"height":45},{"x":50,"y":135,"fileNum":20015,"id":23009,"width":25,"height":45},{"x":75,"y":135,"fileNum":20015,"id":23010,"width":25,"height":45},{"x":100,"y":135,"fileNum":20015,"id":23011,"width":25,"height":45},{"x":0,"y":0,"fileNum":20016,"id":23016,"width":25,"height":45},{"x":25,"y":0,"fileNum":20016,"id":23017,"width":25,"height":45},{"x":50,"y":0,"fileNum":20016,"id":23018,"width":25,"height":45},{"x":75,"y":0,"fileNum":20016,"id":23019,"width":25,"height":45},{"x":100,"y":0,"fileNum":20016,"id":23020,"width":25,"height":45},{"x":125,"y":0,"fileNum":20016,"id":23021,"width":25,"height":45},{"x":0,"y":45,"fileNum":20016,"id":23022,"width":25,"height":45},{"x":25,"y":45,"fileNum":20016,"id":23023,"width":25,"height":45},{"x":50,"y":45,"fileNum":20016,"id":23024,"width":25,"height":45},{"x":75,"y":45,"fileNum":20016,"id":23025,"width":25,"height":45},{"x":100,"y":45,"fileNum":20016,"id":23026,"width":25,"height":45},{"x":125,"y":45,"fileNum":20016,"id":23027,"width":25,"height":45},{"x":0,"y":90,"fileNum":20016,"id":23028,"width":25,"height":45},{"x":25,"y":90,"fileNum":20016,"id":23029,"width":25,"height":45},{"x":50,"y":90,"fileNum":20016,"id":23030,"width":25,"height":45},{"x":75,"y":90,"fileNum":20016,"id":23031,"width":25,"height":45},{"x":100,"y":90,"fileNum":20016,"id":23032,"width":25,"height":45},{"x":0,"y":135,"fileNum":20016,"id":23033,"width":25,"height":45},{"x":25,"y":135,"fileNum":20016,"id":23034,"width":25,"height":45},{"x":50,"y":135,"fileNum":20016,"id":23035,"width":25,"height":45},{"x":75,"y":135,"fileNum":20016,"id":23036,"width":25,"height":45},{"x":100,"y":135,"fileNum":20016,"id":23037,"width":25,"height":45},{"x":0,"y":0,"fileNum":20017,"id":23042,"width":25,"height":45},{"x":25,"y":0,"fileNum":20017,"id":23043,"width":25,"height":45},{"x":50,"y":0,"fileNum":20017,"id":23044,"width":25,"height":45},{"x":75,"y":0,"fileNum":20017,"id":23045,"width":25,"height":45},{"x":100,"y":0,"fileNum":20017,"id":23046,"width":25,"height":45},{"x":125,"y":0,"fileNum":20017,"id":23047,"width":25,"height":45},{"x":0,"y":45,"fileNum":20017,"id":23048,"width":25,"height":45},{"x":25,"y":45,"fileNum":20017,"id":23049,"width":25,"height":45},{"x":50,"y":45,"fileNum":20017,"id":23050,"width":25,"height":45},{"x":75,"y":45,"fileNum":20017,"id":23051,"width":25,"height":45},{"x":100,"y":45,"fileNum":20017,"id":23052,"width":25,"height":45},{"x":125,"y":45,"fileNum":20017,"id":23053,"width":25,"height":45},{"x":0,"y":90,"fileNum":20017,"id":23054,"width":25,"height":45},{"x":25,"y":90,"fileNum":20017,"id":23055,"width":25,"height":45},{"x":50,"y":90,"fileNum":20017,"id":23056,"width":25,"height":45},{"x":75,"y":90,"fileNum":20017,"id":23057,"width":25,"height":45},{"x":100,"y":90,"fileNum":20017,"id":23058,"width":25,"height":45},{"x":0,"y":135,"fileNum":20017,"id":23059,"width":25,"height":45},{"x":25,"y":135,"fileNum":20017,"id":23060,"width":25,"height":45},{"x":50,"y":135,"fileNum":20017,"id":23061,"width":25,"height":45},{"x":75,"y":135,"fileNum":20017,"id":23062,"width":25,"height":45},{"x":100,"y":135,"fileNum":20017,"id":23063,"width":25,"height":45},{"x":0,"y":0,"fileNum":20018,"id":23068,"width":32,"height":32},{"x":0,"y":0,"fileNum":20019,"id":23069,"width":32,"height":32},{"x":0,"y":0,"fileNum":676,"id":23070,"width":25,"height":45},{"x":25,"y":0,"fileNum":676,"id":23071,"width":25,"height":45},{"x":50,"y":0,"fileNum":676,"id":23072,"width":25,"height":45},{"x":75,"y":0,"fileNum":676,"id":23073,"width":25,"height":45},{"x":100,"y":0,"fileNum":676,"id":23074,"width":25,"height":45},{"x":125,"y":0,"fileNum":676,"id":23075,"width":25,"height":45},{"x":0,"y":45,"fileNum":676,"id":23076,"width":25,"height":45},{"x":25,"y":45,"fileNum":676,"id":23077,"width":25,"height":45},{"x":50,"y":45,"fileNum":676,"id":23078,"width":25,"height":45},{"x":75,"y":45,"fileNum":676,"id":23079,"width":25,"height":45},{"x":100,"y":45,"fileNum":676,"id":23080,"width":25,"height":45},{"x":125,"y":45,"fileNum":676,"id":23081,"width":25,"height":45},{"x":0,"y":90,"fileNum":676,"id":23082,"width":25,"height":45},{"x":25,"y":90,"fileNum":676,"id":23083,"width":25,"height":45},{"x":50,"y":90,"fileNum":676,"id":23084,"width":25,"height":45},{"x":75,"y":90,"fileNum":676,"id":23085,"width":25,"height":45},{"x":100,"y":90,"fileNum":676,"id":23086,"width":25,"height":45},{"x":0,"y":135,"fileNum":676,"id":23087,"width":25,"height":45},{"x":25,"y":135,"fileNum":676,"id":23088,"width":25,"height":45},{"x":50,"y":135,"fileNum":676,"id":23089,"width":25,"height":45},{"x":75,"y":135,"fileNum":676,"id":23090,"width":25,"height":45},{"x":100,"y":135,"fileNum":676,"id":23091,"width":25,"height":45},{"x":0,"y":0,"fileNum":677,"id":23096,"width":32,"height":32},{"x":0,"y":0,"fileNum":678,"id":23097,"width":25,"height":45},{"x":25,"y":0,"fileNum":678,"id":23098,"width":25,"height":45},{"x":50,"y":0,"fileNum":678,"id":23099,"width":25,"height":45},{"x":75,"y":0,"fileNum":678,"id":23100,"width":25,"height":45},{"x":100,"y":0,"fileNum":678,"id":23101,"width":25,"height":45},{"x":125,"y":0,"fileNum":678,"id":23102,"width":25,"height":45},{"x":0,"y":45,"fileNum":678,"id":23103,"width":25,"height":45},{"x":25,"y":45,"fileNum":678,"id":23104,"width":25,"height":45},{"x":50,"y":45,"fileNum":678,"id":23105,"width":25,"height":45},{"x":75,"y":45,"fileNum":678,"id":23106,"width":25,"height":45},{"x":100,"y":45,"fileNum":678,"id":23107,"width":25,"height":45},{"x":125,"y":45,"fileNum":678,"id":23108,"width":25,"height":45},{"x":0,"y":90,"fileNum":678,"id":23109,"width":25,"height":45},{"x":25,"y":90,"fileNum":678,"id":23110,"width":25,"height":45},{"x":50,"y":90,"fileNum":678,"id":23111,"width":25,"height":45},{"x":75,"y":90,"fileNum":678,"id":23112,"width":25,"height":45},{"x":100,"y":90,"fileNum":678,"id":23113,"width":25,"height":45},{"x":0,"y":135,"fileNum":678,"id":23114,"width":25,"height":45},{"x":25,"y":135,"fileNum":678,"id":23115,"width":25,"height":45},{"x":50,"y":135,"fileNum":678,"id":23116,"width":25,"height":45},{"x":75,"y":135,"fileNum":678,"id":23117,"width":25,"height":45},{"x":100,"y":135,"fileNum":678,"id":23118,"width":25,"height":45},{"x":0,"y":0,"fileNum":679,"id":23123,"width":32,"height":32},{"x":0,"y":0,"fileNum":680,"id":23124,"width":25,"height":45},{"x":25,"y":0,"fileNum":680,"id":23125,"width":25,"height":45},{"x":50,"y":0,"fileNum":680,"id":23126,"width":25,"height":45},{"x":75,"y":0,"fileNum":680,"id":23127,"width":25,"height":45},{"x":100,"y":0,"fileNum":680,"id":23128,"width":25,"height":45},{"x":125,"y":0,"fileNum":680,"id":23129,"width":25,"height":45},{"x":0,"y":45,"fileNum":680,"id":23130,"width":25,"height":45},{"x":25,"y":45,"fileNum":680,"id":23131,"width":25,"height":45},{"x":50,"y":45,"fileNum":680,"id":23132,"width":25,"height":45},{"x":75,"y":45,"fileNum":680,"id":23133,"width":25,"height":45},{"x":100,"y":45,"fileNum":680,"id":23134,"width":25,"height":45},{"x":125,"y":45,"fileNum":680,"id":23135,"width":25,"height":45},{"x":0,"y":90,"fileNum":680,"id":23136,"width":25,"height":45},{"x":25,"y":90,"fileNum":680,"id":23137,"width":25,"height":45},{"x":50,"y":90,"fileNum":680,"id":23138,"width":25,"height":45},{"x":75,"y":90,"fileNum":680,"id":23139,"width":25,"height":45},{"x":100,"y":90,"fileNum":680,"id":23140,"width":25,"height":45},{"x":0,"y":135,"fileNum":680,"id":23141,"width":25,"height":45},{"x":25,"y":135,"fileNum":680,"id":23142,"width":25,"height":45},{"x":50,"y":135,"fileNum":680,"id":23143,"width":25,"height":45},{"x":75,"y":135,"fileNum":680,"id":23144,"width":25,"height":45},{"x":100,"y":135,"fileNum":680,"id":23145,"width":25,"height":45},{"x":0,"y":0,"fileNum":681,"id":23150,"width":32,"height":32},{"x":0,"y":0,"fileNum":682,"id":23151,"width":25,"height":45},{"x":25,"y":0,"fileNum":682,"id":23152,"width":25,"height":45},{"x":50,"y":0,"fileNum":682,"id":23153,"width":25,"height":45},{"x":75,"y":0,"fileNum":682,"id":23154,"width":25,"height":45},{"x":100,"y":0,"fileNum":682,"id":23155,"width":25,"height":45},{"x":125,"y":0,"fileNum":682,"id":23156,"width":25,"height":45},{"x":0,"y":45,"fileNum":682,"id":23157,"width":25,"height":45},{"x":25,"y":45,"fileNum":682,"id":23158,"width":25,"height":45},{"x":50,"y":45,"fileNum":682,"id":23159,"width":25,"height":45},{"x":75,"y":45,"fileNum":682,"id":23160,"width":25,"height":45},{"x":100,"y":45,"fileNum":682,"id":23161,"width":25,"height":45},{"x":125,"y":45,"fileNum":682,"id":23162,"width":25,"height":45},{"x":0,"y":90,"fileNum":682,"id":23163,"width":25,"height":45},{"x":25,"y":90,"fileNum":682,"id":23164,"width":25,"height":45},{"x":50,"y":90,"fileNum":682,"id":23165,"width":25,"height":45},{"x":75,"y":90,"fileNum":682,"id":23166,"width":25,"height":45},{"x":100,"y":90,"fileNum":682,"id":23167,"width":25,"height":45},{"x":0,"y":135,"fileNum":682,"id":23168,"width":25,"height":45},{"x":25,"y":135,"fileNum":682,"id":23169,"width":25,"height":45},{"x":50,"y":135,"fileNum":682,"id":23170,"width":25,"height":45},{"x":75,"y":135,"fileNum":682,"id":23171,"width":25,"height":45},{"x":100,"y":135,"fileNum":682,"id":23172,"width":25,"height":45},{"x":0,"y":0,"fileNum":683,"id":23177,"width":32,"height":32},{"x":0,"y":0,"fileNum":16098,"id":23178,"width":25,"height":45},{"x":25,"y":0,"fileNum":16098,"id":23179,"width":25,"height":45},{"x":50,"y":0,"fileNum":16098,"id":23180,"width":25,"height":45},{"x":75,"y":0,"fileNum":16098,"id":23181,"width":25,"height":45},{"x":100,"y":0,"fileNum":16098,"id":23182,"width":25,"height":45},{"x":125,"y":0,"fileNum":16098,"id":23183,"width":25,"height":45},{"x":0,"y":45,"fileNum":16098,"id":23184,"width":25,"height":45},{"x":25,"y":45,"fileNum":16098,"id":23185,"width":25,"height":45},{"x":50,"y":45,"fileNum":16098,"id":23186,"width":25,"height":45},{"x":75,"y":45,"fileNum":16098,"id":23187,"width":25,"height":45},{"x":100,"y":45,"fileNum":16098,"id":23188,"width":25,"height":45},{"x":125,"y":45,"fileNum":16098,"id":23189,"width":25,"height":45},{"x":0,"y":90,"fileNum":16098,"id":23190,"width":25,"height":45},{"x":25,"y":90,"fileNum":16098,"id":23191,"width":25,"height":45},{"x":50,"y":90,"fileNum":16098,"id":23192,"width":25,"height":45},{"x":75,"y":90,"fileNum":16098,"id":23193,"width":25,"height":45},{"x":100,"y":90,"fileNum":16098,"id":23194,"width":25,"height":45},{"x":0,"y":135,"fileNum":16098,"id":23195,"width":25,"height":45},{"x":25,"y":135,"fileNum":16098,"id":23196,"width":25,"height":45},{"x":50,"y":135,"fileNum":16098,"id":23197,"width":25,"height":45},{"x":75,"y":135,"fileNum":16098,"id":23198,"width":25,"height":45},{"x":100,"y":135,"fileNum":16098,"id":23199,"width":25,"height":45},{"x":0,"y":0,"fileNum":18027,"id":23204,"width":32,"height":32},{"x":0,"y":0,"fileNum":18028,"id":23205,"width":17,"height":28},{"x":17,"y":0,"fileNum":18028,"id":23206,"width":17,"height":28},{"x":34,"y":0,"fileNum":18028,"id":23207,"width":17,"height":28},{"x":51,"y":0,"fileNum":18028,"id":23208,"width":17,"height":28},{"x":0,"y":0,"fileNum":16100,"id":23209,"width":25,"height":45},{"x":25,"y":0,"fileNum":16100,"id":23210,"width":25,"height":45},{"x":50,"y":0,"fileNum":16100,"id":23211,"width":25,"height":45},{"x":75,"y":0,"fileNum":16100,"id":23212,"width":25,"height":45},{"x":100,"y":0,"fileNum":16100,"id":23213,"width":25,"height":45},{"x":125,"y":0,"fileNum":16100,"id":23214,"width":25,"height":45},{"x":0,"y":45,"fileNum":16100,"id":23215,"width":25,"height":45},{"x":25,"y":45,"fileNum":16100,"id":23216,"width":25,"height":45},{"x":50,"y":45,"fileNum":16100,"id":23217,"width":25,"height":45},{"x":75,"y":45,"fileNum":16100,"id":23218,"width":25,"height":45},{"x":100,"y":45,"fileNum":16100,"id":23219,"width":25,"height":45},{"x":125,"y":45,"fileNum":16100,"id":23220,"width":25,"height":45},{"x":0,"y":90,"fileNum":16100,"id":23221,"width":25,"height":45},{"x":25,"y":90,"fileNum":16100,"id":23222,"width":25,"height":45},{"x":50,"y":90,"fileNum":16100,"id":23223,"width":25,"height":45},{"x":75,"y":90,"fileNum":16100,"id":23224,"width":25,"height":45},{"x":100,"y":90,"fileNum":16100,"id":23225,"width":25,"height":45},{"x":0,"y":135,"fileNum":16100,"id":23226,"width":25,"height":45},{"x":25,"y":135,"fileNum":16100,"id":23227,"width":25,"height":45},{"x":50,"y":135,"fileNum":16100,"id":23228,"width":25,"height":45},{"x":75,"y":135,"fileNum":16100,"id":23229,"width":25,"height":45},{"x":100,"y":135,"fileNum":16100,"id":23230,"width":25,"height":45},{"x":0,"y":0,"fileNum":16101,"id":23235,"width":25,"height":45},{"x":25,"y":0,"fileNum":16101,"id":23236,"width":25,"height":45},{"x":50,"y":0,"fileNum":16101,"id":23237,"width":25,"height":45},{"x":75,"y":0,"fileNum":16101,"id":23238,"width":25,"height":45},{"x":100,"y":0,"fileNum":16101,"id":23239,"width":25,"height":45},{"x":125,"y":0,"fileNum":16101,"id":23240,"width":25,"height":45},{"x":0,"y":45,"fileNum":16101,"id":23241,"width":25,"height":45},{"x":25,"y":45,"fileNum":16101,"id":23242,"width":25,"height":45},{"x":50,"y":45,"fileNum":16101,"id":23243,"width":25,"height":45},{"x":75,"y":45,"fileNum":16101,"id":23244,"width":25,"height":45},{"x":100,"y":45,"fileNum":16101,"id":23245,"width":25,"height":45},{"x":125,"y":45,"fileNum":16101,"id":23246,"width":25,"height":45},{"x":0,"y":90,"fileNum":16101,"id":23247,"width":25,"height":45},{"x":25,"y":90,"fileNum":16101,"id":23248,"width":25,"height":45},{"x":50,"y":90,"fileNum":16101,"id":23249,"width":25,"height":45},{"x":75,"y":90,"fileNum":16101,"id":23250,"width":25,"height":45},{"x":100,"y":90,"fileNum":16101,"id":23251,"width":25,"height":45},{"x":0,"y":135,"fileNum":16101,"id":23252,"width":25,"height":45},{"x":25,"y":135,"fileNum":16101,"id":23253,"width":25,"height":45},{"x":50,"y":135,"fileNum":16101,"id":23254,"width":25,"height":45},{"x":75,"y":135,"fileNum":16101,"id":23255,"width":25,"height":45},{"x":100,"y":135,"fileNum":16101,"id":23256,"width":25,"height":45},{"x":0,"y":0,"fileNum":16102,"id":23261,"width":25,"height":45},{"x":25,"y":0,"fileNum":16102,"id":23262,"width":25,"height":45},{"x":50,"y":0,"fileNum":16102,"id":23263,"width":25,"height":45},{"x":75,"y":0,"fileNum":16102,"id":23264,"width":25,"height":45},{"x":100,"y":0,"fileNum":16102,"id":23265,"width":25,"height":45},{"x":125,"y":0,"fileNum":16102,"id":23266,"width":25,"height":45},{"x":0,"y":45,"fileNum":16102,"id":23267,"width":25,"height":45},{"x":25,"y":45,"fileNum":16102,"id":23268,"width":25,"height":45},{"x":50,"y":45,"fileNum":16102,"id":23269,"width":25,"height":45},{"x":75,"y":45,"fileNum":16102,"id":23270,"width":25,"height":45},{"x":100,"y":45,"fileNum":16102,"id":23271,"width":25,"height":45},{"x":125,"y":45,"fileNum":16102,"id":23272,"width":25,"height":45},{"x":0,"y":90,"fileNum":16102,"id":23273,"width":25,"height":45},{"x":25,"y":90,"fileNum":16102,"id":23274,"width":25,"height":45},{"x":50,"y":90,"fileNum":16102,"id":23275,"width":25,"height":45},{"x":75,"y":90,"fileNum":16102,"id":23276,"width":25,"height":45},{"x":100,"y":90,"fileNum":16102,"id":23277,"width":25,"height":45},{"x":0,"y":135,"fileNum":16102,"id":23278,"width":25,"height":45},{"x":25,"y":135,"fileNum":16102,"id":23279,"width":25,"height":45},{"x":50,"y":135,"fileNum":16102,"id":23280,"width":25,"height":45},{"x":75,"y":135,"fileNum":16102,"id":23281,"width":25,"height":45},{"x":100,"y":135,"fileNum":16102,"id":23282,"width":25,"height":45},{"x":0,"y":0,"fileNum":16103,"id":23287,"width":25,"height":45},{"x":25,"y":0,"fileNum":16103,"id":23288,"width":25,"height":45},{"x":50,"y":0,"fileNum":16103,"id":23289,"width":25,"height":45},{"x":75,"y":0,"fileNum":16103,"id":23290,"width":25,"height":45},{"x":100,"y":0,"fileNum":16103,"id":23291,"width":25,"height":45},{"x":125,"y":0,"fileNum":16103,"id":23292,"width":25,"height":45},{"x":0,"y":45,"fileNum":16103,"id":23293,"width":25,"height":45},{"x":25,"y":45,"fileNum":16103,"id":23294,"width":25,"height":45},{"x":50,"y":45,"fileNum":16103,"id":23295,"width":25,"height":45},{"x":75,"y":45,"fileNum":16103,"id":23296,"width":25,"height":45},{"x":100,"y":45,"fileNum":16103,"id":23297,"width":25,"height":45},{"x":125,"y":45,"fileNum":16103,"id":23298,"width":25,"height":45},{"x":0,"y":90,"fileNum":16103,"id":23299,"width":25,"height":45},{"x":25,"y":90,"fileNum":16103,"id":23300,"width":25,"height":45},{"x":50,"y":90,"fileNum":16103,"id":23301,"width":25,"height":45},{"x":75,"y":90,"fileNum":16103,"id":23302,"width":25,"height":45},{"x":100,"y":90,"fileNum":16103,"id":23303,"width":25,"height":45},{"x":0,"y":135,"fileNum":16103,"id":23304,"width":25,"height":45},{"x":25,"y":135,"fileNum":16103,"id":23305,"width":25,"height":45},{"x":50,"y":135,"fileNum":16103,"id":23306,"width":25,"height":45},{"x":75,"y":135,"fileNum":16103,"id":23307,"width":25,"height":45},{"x":100,"y":135,"fileNum":16103,"id":23308,"width":25,"height":45},{"x":0,"y":0,"fileNum":16104,"id":23313,"width":25,"height":45},{"x":25,"y":0,"fileNum":16104,"id":23314,"width":25,"height":45},{"x":50,"y":0,"fileNum":16104,"id":23315,"width":25,"height":45},{"x":75,"y":0,"fileNum":16104,"id":23316,"width":25,"height":45},{"x":100,"y":0,"fileNum":16104,"id":23317,"width":25,"height":45},{"x":125,"y":0,"fileNum":16104,"id":23318,"width":25,"height":45},{"x":0,"y":45,"fileNum":16104,"id":23319,"width":25,"height":45},{"x":25,"y":45,"fileNum":16104,"id":23320,"width":25,"height":45},{"x":50,"y":45,"fileNum":16104,"id":23321,"width":25,"height":45},{"x":75,"y":45,"fileNum":16104,"id":23322,"width":25,"height":45},{"x":100,"y":45,"fileNum":16104,"id":23323,"width":25,"height":45},{"x":125,"y":45,"fileNum":16104,"id":23324,"width":25,"height":45},{"x":0,"y":90,"fileNum":16104,"id":23325,"width":25,"height":45},{"x":25,"y":90,"fileNum":16104,"id":23326,"width":25,"height":45},{"x":50,"y":90,"fileNum":16104,"id":23327,"width":25,"height":45},{"x":75,"y":90,"fileNum":16104,"id":23328,"width":25,"height":45},{"x":100,"y":90,"fileNum":16104,"id":23329,"width":25,"height":45},{"x":0,"y":135,"fileNum":16104,"id":23330,"width":25,"height":45},{"x":25,"y":135,"fileNum":16104,"id":23331,"width":25,"height":45},{"x":50,"y":135,"fileNum":16104,"id":23332,"width":25,"height":45},{"x":75,"y":135,"fileNum":16104,"id":23333,"width":25,"height":45},{"x":100,"y":135,"fileNum":16104,"id":23334,"width":25,"height":45},{"x":0,"y":0,"fileNum":16105,"id":23339,"width":25,"height":45},{"x":25,"y":0,"fileNum":16105,"id":23340,"width":25,"height":45},{"x":50,"y":0,"fileNum":16105,"id":23341,"width":25,"height":45},{"x":75,"y":0,"fileNum":16105,"id":23342,"width":25,"height":45},{"x":100,"y":0,"fileNum":16105,"id":23343,"width":25,"height":45},{"x":125,"y":0,"fileNum":16105,"id":23344,"width":25,"height":45},{"x":0,"y":45,"fileNum":16105,"id":23345,"width":25,"height":45},{"x":25,"y":45,"fileNum":16105,"id":23346,"width":25,"height":45},{"x":50,"y":45,"fileNum":16105,"id":23347,"width":25,"height":45},{"x":75,"y":45,"fileNum":16105,"id":23348,"width":25,"height":45},{"x":100,"y":45,"fileNum":16105,"id":23349,"width":25,"height":45},{"x":125,"y":45,"fileNum":16105,"id":23350,"width":25,"height":45},{"x":0,"y":90,"fileNum":16105,"id":23351,"width":25,"height":45},{"x":25,"y":90,"fileNum":16105,"id":23352,"width":25,"height":45},{"x":50,"y":90,"fileNum":16105,"id":23353,"width":25,"height":45},{"x":75,"y":90,"fileNum":16105,"id":23354,"width":25,"height":45},{"x":100,"y":90,"fileNum":16105,"id":23355,"width":25,"height":45},{"x":0,"y":135,"fileNum":16105,"id":23356,"width":25,"height":45},{"x":25,"y":135,"fileNum":16105,"id":23357,"width":25,"height":45},{"x":50,"y":135,"fileNum":16105,"id":23358,"width":25,"height":45},{"x":75,"y":135,"fileNum":16105,"id":23359,"width":25,"height":45},{"x":100,"y":135,"fileNum":16105,"id":23360,"width":25,"height":45},{"x":0,"y":0,"fileNum":16106,"id":23365,"width":25,"height":45},{"x":25,"y":0,"fileNum":16106,"id":23366,"width":25,"height":45},{"x":50,"y":0,"fileNum":16106,"id":23367,"width":25,"height":45},{"x":75,"y":0,"fileNum":16106,"id":23368,"width":25,"height":45},{"x":100,"y":0,"fileNum":16106,"id":23369,"width":25,"height":45},{"x":125,"y":0,"fileNum":16106,"id":23370,"width":25,"height":45},{"x":0,"y":45,"fileNum":16106,"id":23371,"width":25,"height":45},{"x":25,"y":45,"fileNum":16106,"id":23372,"width":25,"height":45},{"x":50,"y":45,"fileNum":16106,"id":23373,"width":25,"height":45},{"x":75,"y":45,"fileNum":16106,"id":23374,"width":25,"height":45},{"x":100,"y":45,"fileNum":16106,"id":23375,"width":25,"height":45},{"x":125,"y":45,"fileNum":16106,"id":23376,"width":25,"height":45},{"x":0,"y":90,"fileNum":16106,"id":23377,"width":25,"height":45},{"x":25,"y":90,"fileNum":16106,"id":23378,"width":25,"height":45},{"x":50,"y":90,"fileNum":16106,"id":23379,"width":25,"height":45},{"x":75,"y":90,"fileNum":16106,"id":23380,"width":25,"height":45},{"x":100,"y":90,"fileNum":16106,"id":23381,"width":25,"height":45},{"x":0,"y":135,"fileNum":16106,"id":23382,"width":25,"height":45},{"x":25,"y":135,"fileNum":16106,"id":23383,"width":25,"height":45},{"x":50,"y":135,"fileNum":16106,"id":23384,"width":25,"height":45},{"x":75,"y":135,"fileNum":16106,"id":23385,"width":25,"height":45},{"x":100,"y":135,"fileNum":16106,"id":23386,"width":25,"height":45},{"x":0,"y":0,"fileNum":16107,"id":23391,"width":25,"height":45},{"x":25,"y":0,"fileNum":16107,"id":23392,"width":25,"height":45},{"x":50,"y":0,"fileNum":16107,"id":23393,"width":25,"height":45},{"x":75,"y":0,"fileNum":16107,"id":23394,"width":25,"height":45},{"x":100,"y":0,"fileNum":16107,"id":23395,"width":25,"height":45},{"x":125,"y":0,"fileNum":16107,"id":23396,"width":25,"height":45},{"x":0,"y":45,"fileNum":16107,"id":23397,"width":25,"height":45},{"x":25,"y":45,"fileNum":16107,"id":23398,"width":25,"height":45},{"x":50,"y":45,"fileNum":16107,"id":23399,"width":25,"height":45},{"x":75,"y":45,"fileNum":16107,"id":23400,"width":25,"height":45},{"x":100,"y":45,"fileNum":16107,"id":23401,"width":25,"height":45},{"x":125,"y":45,"fileNum":16107,"id":23402,"width":25,"height":45},{"x":0,"y":90,"fileNum":16107,"id":23403,"width":25,"height":45},{"x":25,"y":90,"fileNum":16107,"id":23404,"width":25,"height":45},{"x":50,"y":90,"fileNum":16107,"id":23405,"width":25,"height":45},{"x":75,"y":90,"fileNum":16107,"id":23406,"width":25,"height":45},{"x":100,"y":90,"fileNum":16107,"id":23407,"width":25,"height":45},{"x":0,"y":135,"fileNum":16107,"id":23408,"width":25,"height":45},{"x":25,"y":135,"fileNum":16107,"id":23409,"width":25,"height":45},{"x":50,"y":135,"fileNum":16107,"id":23410,"width":25,"height":45},{"x":75,"y":135,"fileNum":16107,"id":23411,"width":25,"height":45},{"x":100,"y":135,"fileNum":16107,"id":23412,"width":25,"height":45},{"x":0,"y":0,"fileNum":16108,"id":23417,"width":25,"height":45},{"x":25,"y":0,"fileNum":16108,"id":23418,"width":25,"height":45},{"x":50,"y":0,"fileNum":16108,"id":23419,"width":25,"height":45},{"x":75,"y":0,"fileNum":16108,"id":23420,"width":25,"height":45},{"x":100,"y":0,"fileNum":16108,"id":23421,"width":25,"height":45},{"x":125,"y":0,"fileNum":16108,"id":23422,"width":25,"height":45},{"x":0,"y":45,"fileNum":16108,"id":23423,"width":25,"height":45},{"x":25,"y":45,"fileNum":16108,"id":23424,"width":25,"height":45},{"x":50,"y":45,"fileNum":16108,"id":23425,"width":25,"height":45},{"x":75,"y":45,"fileNum":16108,"id":23426,"width":25,"height":45},{"x":100,"y":45,"fileNum":16108,"id":23427,"width":25,"height":45},{"x":125,"y":45,"fileNum":16108,"id":23428,"width":25,"height":45},{"x":0,"y":90,"fileNum":16108,"id":23429,"width":25,"height":45},{"x":25,"y":90,"fileNum":16108,"id":23430,"width":25,"height":45},{"x":50,"y":90,"fileNum":16108,"id":23431,"width":25,"height":45},{"x":75,"y":90,"fileNum":16108,"id":23432,"width":25,"height":45},{"x":100,"y":90,"fileNum":16108,"id":23433,"width":25,"height":45},{"x":0,"y":135,"fileNum":16108,"id":23434,"width":25,"height":45},{"x":25,"y":135,"fileNum":16108,"id":23435,"width":25,"height":45},{"x":50,"y":135,"fileNum":16108,"id":23436,"width":25,"height":45},{"x":75,"y":135,"fileNum":16108,"id":23437,"width":25,"height":45},{"x":100,"y":135,"fileNum":16108,"id":23438,"width":25,"height":45},{"x":0,"y":0,"fileNum":16109,"id":23443,"width":25,"height":45},{"x":25,"y":0,"fileNum":16109,"id":23444,"width":25,"height":45},{"x":50,"y":0,"fileNum":16109,"id":23445,"width":25,"height":45},{"x":75,"y":0,"fileNum":16109,"id":23446,"width":25,"height":45},{"x":100,"y":0,"fileNum":16109,"id":23447,"width":25,"height":45},{"x":125,"y":0,"fileNum":16109,"id":23448,"width":25,"height":45},{"x":0,"y":45,"fileNum":16109,"id":23449,"width":25,"height":45},{"x":25,"y":45,"fileNum":16109,"id":23450,"width":25,"height":45},{"x":50,"y":45,"fileNum":16109,"id":23451,"width":25,"height":45},{"x":75,"y":45,"fileNum":16109,"id":23452,"width":25,"height":45},{"x":100,"y":45,"fileNum":16109,"id":23453,"width":25,"height":45},{"x":125,"y":45,"fileNum":16109,"id":23454,"width":25,"height":45},{"x":0,"y":90,"fileNum":16109,"id":23455,"width":25,"height":45},{"x":25,"y":90,"fileNum":16109,"id":23456,"width":25,"height":45},{"x":50,"y":90,"fileNum":16109,"id":23457,"width":25,"height":45},{"x":75,"y":90,"fileNum":16109,"id":23458,"width":25,"height":45},{"x":100,"y":90,"fileNum":16109,"id":23459,"width":25,"height":45},{"x":0,"y":135,"fileNum":16109,"id":23460,"width":25,"height":45},{"x":25,"y":135,"fileNum":16109,"id":23461,"width":25,"height":45},{"x":50,"y":135,"fileNum":16109,"id":23462,"width":25,"height":45},{"x":75,"y":135,"fileNum":16109,"id":23463,"width":25,"height":45},{"x":100,"y":135,"fileNum":16109,"id":23464,"width":25,"height":45},{"x":0,"y":0,"fileNum":16110,"id":23469,"width":25,"height":45},{"x":25,"y":0,"fileNum":16110,"id":23470,"width":25,"height":45},{"x":50,"y":0,"fileNum":16110,"id":23471,"width":25,"height":45},{"x":75,"y":0,"fileNum":16110,"id":23472,"width":25,"height":45},{"x":100,"y":0,"fileNum":16110,"id":23473,"width":25,"height":45},{"x":125,"y":0,"fileNum":16110,"id":23474,"width":25,"height":45},{"x":0,"y":45,"fileNum":16110,"id":23475,"width":25,"height":45},{"x":25,"y":45,"fileNum":16110,"id":23476,"width":25,"height":45},{"x":50,"y":45,"fileNum":16110,"id":23477,"width":25,"height":45},{"x":75,"y":45,"fileNum":16110,"id":23478,"width":25,"height":45},{"x":100,"y":45,"fileNum":16110,"id":23479,"width":25,"height":45},{"x":125,"y":45,"fileNum":16110,"id":23480,"width":25,"height":45},{"x":0,"y":90,"fileNum":16110,"id":23481,"width":25,"height":45},{"x":25,"y":90,"fileNum":16110,"id":23482,"width":25,"height":45},{"x":50,"y":90,"fileNum":16110,"id":23483,"width":25,"height":45},{"x":75,"y":90,"fileNum":16110,"id":23484,"width":25,"height":45},{"x":100,"y":90,"fileNum":16110,"id":23485,"width":25,"height":45},{"x":0,"y":135,"fileNum":16110,"id":23486,"width":25,"height":45},{"x":25,"y":135,"fileNum":16110,"id":23487,"width":25,"height":45},{"x":50,"y":135,"fileNum":16110,"id":23488,"width":25,"height":45},{"x":75,"y":135,"fileNum":16110,"id":23489,"width":25,"height":45},{"x":100,"y":135,"fileNum":16110,"id":23490,"width":25,"height":45},{"x":0,"y":0,"fileNum":16111,"id":23495,"width":25,"height":45},{"x":25,"y":0,"fileNum":16111,"id":23496,"width":25,"height":45},{"x":50,"y":0,"fileNum":16111,"id":23497,"width":25,"height":45},{"x":75,"y":0,"fileNum":16111,"id":23498,"width":25,"height":45},{"x":100,"y":0,"fileNum":16111,"id":23499,"width":25,"height":45},{"x":125,"y":0,"fileNum":16111,"id":23500,"width":25,"height":45},{"x":0,"y":45,"fileNum":16111,"id":23501,"width":25,"height":45},{"x":25,"y":45,"fileNum":16111,"id":23502,"width":25,"height":45},{"x":50,"y":45,"fileNum":16111,"id":23503,"width":25,"height":45},{"x":75,"y":45,"fileNum":16111,"id":23504,"width":25,"height":45},{"x":100,"y":45,"fileNum":16111,"id":23505,"width":25,"height":45},{"x":125,"y":45,"fileNum":16111,"id":23506,"width":25,"height":45},{"x":0,"y":90,"fileNum":16111,"id":23507,"width":25,"height":45},{"x":25,"y":90,"fileNum":16111,"id":23508,"width":25,"height":45},{"x":50,"y":90,"fileNum":16111,"id":23509,"width":25,"height":45},{"x":75,"y":90,"fileNum":16111,"id":23510,"width":25,"height":45},{"x":100,"y":90,"fileNum":16111,"id":23511,"width":25,"height":45},{"x":0,"y":135,"fileNum":16111,"id":23512,"width":25,"height":45},{"x":25,"y":135,"fileNum":16111,"id":23513,"width":25,"height":45},{"x":50,"y":135,"fileNum":16111,"id":23514,"width":25,"height":45},{"x":75,"y":135,"fileNum":16111,"id":23515,"width":25,"height":45},{"x":100,"y":135,"fileNum":16111,"id":23516,"width":25,"height":45},{"x":0,"y":0,"fileNum":16112,"id":23521,"width":25,"height":45},{"x":25,"y":0,"fileNum":16112,"id":23522,"width":25,"height":45},{"x":50,"y":0,"fileNum":16112,"id":23523,"width":25,"height":45},{"x":75,"y":0,"fileNum":16112,"id":23524,"width":25,"height":45},{"x":100,"y":0,"fileNum":16112,"id":23525,"width":25,"height":45},{"x":125,"y":0,"fileNum":16112,"id":23526,"width":25,"height":45},{"x":0,"y":45,"fileNum":16112,"id":23527,"width":25,"height":45},{"x":25,"y":45,"fileNum":16112,"id":23528,"width":25,"height":45},{"x":50,"y":45,"fileNum":16112,"id":23529,"width":25,"height":45},{"x":75,"y":45,"fileNum":16112,"id":23530,"width":25,"height":45},{"x":100,"y":45,"fileNum":16112,"id":23531,"width":25,"height":45},{"x":125,"y":45,"fileNum":16112,"id":23532,"width":25,"height":45},{"x":0,"y":90,"fileNum":16112,"id":23533,"width":25,"height":45},{"x":25,"y":90,"fileNum":16112,"id":23534,"width":25,"height":45},{"x":50,"y":90,"fileNum":16112,"id":23535,"width":25,"height":45},{"x":75,"y":90,"fileNum":16112,"id":23536,"width":25,"height":45},{"x":100,"y":90,"fileNum":16112,"id":23537,"width":25,"height":45},{"x":0,"y":135,"fileNum":16112,"id":23538,"width":25,"height":45},{"x":25,"y":135,"fileNum":16112,"id":23539,"width":25,"height":45},{"x":50,"y":135,"fileNum":16112,"id":23540,"width":25,"height":45},{"x":75,"y":135,"fileNum":16112,"id":23541,"width":25,"height":45},{"x":100,"y":135,"fileNum":16112,"id":23542,"width":25,"height":45},{"x":0,"y":0,"fileNum":21011,"id":23547,"width":25,"height":45},{"x":25,"y":0,"fileNum":21011,"id":23548,"width":25,"height":45},{"x":50,"y":0,"fileNum":21011,"id":23549,"width":25,"height":45},{"x":75,"y":0,"fileNum":21011,"id":23550,"width":25,"height":45},{"x":100,"y":0,"fileNum":21011,"id":23551,"width":25,"height":45},{"x":125,"y":0,"fileNum":21011,"id":23552,"width":25,"height":45},{"x":0,"y":45,"fileNum":21011,"id":23553,"width":25,"height":45},{"x":25,"y":45,"fileNum":21011,"id":23554,"width":25,"height":45},{"x":50,"y":45,"fileNum":21011,"id":23555,"width":25,"height":45},{"x":75,"y":45,"fileNum":21011,"id":23556,"width":25,"height":45},{"x":100,"y":45,"fileNum":21011,"id":23557,"width":25,"height":45},{"x":125,"y":45,"fileNum":21011,"id":23558,"width":25,"height":45},{"x":0,"y":90,"fileNum":21011,"id":23559,"width":25,"height":45},{"x":25,"y":90,"fileNum":21011,"id":23560,"width":25,"height":45},{"x":50,"y":90,"fileNum":21011,"id":23561,"width":25,"height":45},{"x":75,"y":90,"fileNum":21011,"id":23562,"width":25,"height":45},{"x":100,"y":90,"fileNum":21011,"id":23563,"width":25,"height":45},{"x":0,"y":135,"fileNum":21011,"id":23564,"width":25,"height":45},{"x":25,"y":135,"fileNum":21011,"id":23565,"width":25,"height":45},{"x":50,"y":135,"fileNum":21011,"id":23566,"width":25,"height":45},{"x":75,"y":135,"fileNum":21011,"id":23567,"width":25,"height":45},{"x":100,"y":135,"fileNum":21011,"id":23568,"width":25,"height":45},{"x":0,"y":0,"fileNum":21012,"id":23573,"width":25,"height":45},{"x":25,"y":0,"fileNum":21012,"id":23574,"width":25,"height":45},{"x":50,"y":0,"fileNum":21012,"id":23575,"width":25,"height":45},{"x":75,"y":0,"fileNum":21012,"id":23576,"width":25,"height":45},{"x":100,"y":0,"fileNum":21012,"id":23577,"width":25,"height":45},{"x":125,"y":0,"fileNum":21012,"id":23578,"width":25,"height":45},{"x":0,"y":45,"fileNum":21012,"id":23579,"width":25,"height":45},{"x":25,"y":45,"fileNum":21012,"id":23580,"width":25,"height":45},{"x":50,"y":45,"fileNum":21012,"id":23581,"width":25,"height":45},{"x":75,"y":45,"fileNum":21012,"id":23582,"width":25,"height":45},{"x":100,"y":45,"fileNum":21012,"id":23583,"width":25,"height":45},{"x":125,"y":45,"fileNum":21012,"id":23584,"width":25,"height":45},{"x":0,"y":90,"fileNum":21012,"id":23585,"width":25,"height":45},{"x":25,"y":90,"fileNum":21012,"id":23586,"width":25,"height":45},{"x":50,"y":90,"fileNum":21012,"id":23587,"width":25,"height":45},{"x":75,"y":90,"fileNum":21012,"id":23588,"width":25,"height":45},{"x":100,"y":90,"fileNum":21012,"id":23589,"width":25,"height":45},{"x":0,"y":135,"fileNum":21012,"id":23590,"width":25,"height":45},{"x":25,"y":135,"fileNum":21012,"id":23591,"width":25,"height":45},{"x":50,"y":135,"fileNum":21012,"id":23592,"width":25,"height":45},{"x":75,"y":135,"fileNum":21012,"id":23593,"width":25,"height":45},{"x":100,"y":135,"fileNum":21012,"id":23594,"width":25,"height":45},{"x":0,"y":0,"fileNum":21013,"id":23599,"width":25,"height":45},{"x":25,"y":0,"fileNum":21013,"id":23600,"width":25,"height":45},{"x":50,"y":0,"fileNum":21013,"id":23601,"width":25,"height":45},{"x":75,"y":0,"fileNum":21013,"id":23602,"width":25,"height":45},{"x":100,"y":0,"fileNum":21013,"id":23603,"width":25,"height":45},{"x":125,"y":0,"fileNum":21013,"id":23604,"width":25,"height":45},{"x":0,"y":45,"fileNum":21013,"id":23605,"width":25,"height":45},{"x":25,"y":45,"fileNum":21013,"id":23606,"width":25,"height":45},{"x":50,"y":45,"fileNum":21013,"id":23607,"width":25,"height":45},{"x":75,"y":45,"fileNum":21013,"id":23608,"width":25,"height":45},{"x":100,"y":45,"fileNum":21013,"id":23609,"width":25,"height":45},{"x":125,"y":45,"fileNum":21013,"id":23610,"width":25,"height":45},{"x":0,"y":90,"fileNum":21013,"id":23611,"width":25,"height":45},{"x":25,"y":90,"fileNum":21013,"id":23612,"width":25,"height":45},{"x":50,"y":90,"fileNum":21013,"id":23613,"width":25,"height":45},{"x":75,"y":90,"fileNum":21013,"id":23614,"width":25,"height":45},{"x":100,"y":90,"fileNum":21013,"id":23615,"width":25,"height":45},{"x":0,"y":135,"fileNum":21013,"id":23616,"width":25,"height":45},{"x":25,"y":135,"fileNum":21013,"id":23617,"width":25,"height":45},{"x":50,"y":135,"fileNum":21013,"id":23618,"width":25,"height":45},{"x":75,"y":135,"fileNum":21013,"id":23619,"width":25,"height":45},{"x":100,"y":135,"fileNum":21013,"id":23620,"width":25,"height":45},{"x":0,"y":0,"fileNum":21014,"id":23625,"width":25,"height":45},{"x":25,"y":0,"fileNum":21014,"id":23626,"width":25,"height":45},{"x":50,"y":0,"fileNum":21014,"id":23627,"width":25,"height":45},{"x":75,"y":0,"fileNum":21014,"id":23628,"width":25,"height":45},{"x":100,"y":0,"fileNum":21014,"id":23629,"width":25,"height":45},{"x":125,"y":0,"fileNum":21014,"id":23630,"width":25,"height":45},{"x":0,"y":45,"fileNum":21014,"id":23631,"width":25,"height":45},{"x":25,"y":45,"fileNum":21014,"id":23632,"width":25,"height":45},{"x":50,"y":45,"fileNum":21014,"id":23633,"width":25,"height":45},{"x":75,"y":45,"fileNum":21014,"id":23634,"width":25,"height":45},{"x":100,"y":45,"fileNum":21014,"id":23635,"width":25,"height":45},{"x":125,"y":45,"fileNum":21014,"id":23636,"width":25,"height":45},{"x":0,"y":90,"fileNum":21014,"id":23637,"width":25,"height":45},{"x":25,"y":90,"fileNum":21014,"id":23638,"width":25,"height":45},{"x":50,"y":90,"fileNum":21014,"id":23639,"width":25,"height":45},{"x":75,"y":90,"fileNum":21014,"id":23640,"width":25,"height":45},{"x":100,"y":90,"fileNum":21014,"id":23641,"width":25,"height":45},{"x":0,"y":135,"fileNum":21014,"id":23642,"width":25,"height":45},{"x":25,"y":135,"fileNum":21014,"id":23643,"width":25,"height":45},{"x":50,"y":135,"fileNum":21014,"id":23644,"width":25,"height":45},{"x":75,"y":135,"fileNum":21014,"id":23645,"width":25,"height":45},{"x":100,"y":135,"fileNum":21014,"id":23646,"width":25,"height":45},{"x":0,"y":0,"fileNum":25005,"id":23651,"width":48,"height":48},{"x":0,"y":0,"fileNum":25006,"id":23652,"width":3,"height":20},{"x":0,"y":0,"fileNum":23669,"id":23669,"width":29,"height":32},{"x":29,"y":0,"fileNum":23669,"id":23670,"width":29,"height":32},{"x":58,"y":0,"fileNum":23669,"id":23671,"width":29,"height":32},{"x":0,"y":32,"fileNum":23669,"id":23672,"width":29,"height":32},{"x":29,"y":32,"fileNum":23669,"id":23673,"width":29,"height":32},{"x":58,"y":32,"fileNum":23669,"id":23674,"width":29,"height":32},{"x":0,"y":64,"fileNum":23669,"id":23675,"width":29,"height":32},{"x":29,"y":64,"fileNum":23669,"id":23676,"width":29,"height":32},{"x":58,"y":64,"fileNum":23669,"id":23677,"width":29,"height":32},{"x":0,"y":96,"fileNum":23669,"id":23678,"width":29,"height":32},{"x":29,"y":96,"fileNum":23669,"id":23679,"width":29,"height":32},{"x":58,"y":96,"fileNum":23669,"id":23680,"width":29,"height":32}]
\ No newline at end of file
diff --git a/desktop/assets/data/graficos2x/1.png b/desktop/assets/data/graficos2x/1.png
deleted file mode 100644
index 780e7f28..00000000
Binary files a/desktop/assets/data/graficos2x/1.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/10.png b/desktop/assets/data/graficos2x/10.png
deleted file mode 100644
index 442edf58..00000000
Binary files a/desktop/assets/data/graficos2x/10.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/100.png b/desktop/assets/data/graficos2x/100.png
deleted file mode 100644
index 460a2571..00000000
Binary files a/desktop/assets/data/graficos2x/100.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/10000.png b/desktop/assets/data/graficos2x/10000.png
deleted file mode 100644
index ddbc4c71..00000000
Binary files a/desktop/assets/data/graficos2x/10000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/10001.png b/desktop/assets/data/graficos2x/10001.png
deleted file mode 100644
index 594d6cb2..00000000
Binary files a/desktop/assets/data/graficos2x/10001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/10002.png b/desktop/assets/data/graficos2x/10002.png
deleted file mode 100644
index c705b6b8..00000000
Binary files a/desktop/assets/data/graficos2x/10002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/10003.png b/desktop/assets/data/graficos2x/10003.png
deleted file mode 100644
index 2b7fe831..00000000
Binary files a/desktop/assets/data/graficos2x/10003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/10004.png b/desktop/assets/data/graficos2x/10004.png
deleted file mode 100644
index 048264bb..00000000
Binary files a/desktop/assets/data/graficos2x/10004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/10005.png b/desktop/assets/data/graficos2x/10005.png
deleted file mode 100644
index c4aced45..00000000
Binary files a/desktop/assets/data/graficos2x/10005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/10006.png b/desktop/assets/data/graficos2x/10006.png
deleted file mode 100644
index 3158f333..00000000
Binary files a/desktop/assets/data/graficos2x/10006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/10007.png b/desktop/assets/data/graficos2x/10007.png
deleted file mode 100644
index f25771e3..00000000
Binary files a/desktop/assets/data/graficos2x/10007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/10008.png b/desktop/assets/data/graficos2x/10008.png
deleted file mode 100644
index df7a6e71..00000000
Binary files a/desktop/assets/data/graficos2x/10008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/10009.png b/desktop/assets/data/graficos2x/10009.png
deleted file mode 100644
index f112051a..00000000
Binary files a/desktop/assets/data/graficos2x/10009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/10010.png b/desktop/assets/data/graficos2x/10010.png
deleted file mode 100644
index 591aad2e..00000000
Binary files a/desktop/assets/data/graficos2x/10010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/101.png b/desktop/assets/data/graficos2x/101.png
deleted file mode 100644
index d3fca4c7..00000000
Binary files a/desktop/assets/data/graficos2x/101.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/102.png b/desktop/assets/data/graficos2x/102.png
deleted file mode 100644
index 25c4bcd5..00000000
Binary files a/desktop/assets/data/graficos2x/102.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/103.png b/desktop/assets/data/graficos2x/103.png
deleted file mode 100644
index 9981d283..00000000
Binary files a/desktop/assets/data/graficos2x/103.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/104.png b/desktop/assets/data/graficos2x/104.png
deleted file mode 100644
index c0c7f8d3..00000000
Binary files a/desktop/assets/data/graficos2x/104.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/105.png b/desktop/assets/data/graficos2x/105.png
deleted file mode 100644
index 56d51bf6..00000000
Binary files a/desktop/assets/data/graficos2x/105.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/106.png b/desktop/assets/data/graficos2x/106.png
deleted file mode 100644
index 09b1dd85..00000000
Binary files a/desktop/assets/data/graficos2x/106.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/107.png b/desktop/assets/data/graficos2x/107.png
deleted file mode 100644
index 229d4114..00000000
Binary files a/desktop/assets/data/graficos2x/107.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/108.png b/desktop/assets/data/graficos2x/108.png
deleted file mode 100644
index a0dd3da5..00000000
Binary files a/desktop/assets/data/graficos2x/108.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/109.png b/desktop/assets/data/graficos2x/109.png
deleted file mode 100644
index fde86f84..00000000
Binary files a/desktop/assets/data/graficos2x/109.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11.png b/desktop/assets/data/graficos2x/11.png
deleted file mode 100644
index 50dafb4e..00000000
Binary files a/desktop/assets/data/graficos2x/11.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/110.png b/desktop/assets/data/graficos2x/110.png
deleted file mode 100644
index cee4dab4..00000000
Binary files a/desktop/assets/data/graficos2x/110.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11000.png b/desktop/assets/data/graficos2x/11000.png
deleted file mode 100644
index a818b612..00000000
Binary files a/desktop/assets/data/graficos2x/11000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11001.png b/desktop/assets/data/graficos2x/11001.png
deleted file mode 100644
index 0a522531..00000000
Binary files a/desktop/assets/data/graficos2x/11001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11002.png b/desktop/assets/data/graficos2x/11002.png
deleted file mode 100644
index 2c03c8f2..00000000
Binary files a/desktop/assets/data/graficos2x/11002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11003.png b/desktop/assets/data/graficos2x/11003.png
deleted file mode 100644
index d5ee9b98..00000000
Binary files a/desktop/assets/data/graficos2x/11003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11004.png b/desktop/assets/data/graficos2x/11004.png
deleted file mode 100644
index 3153be70..00000000
Binary files a/desktop/assets/data/graficos2x/11004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11005.png b/desktop/assets/data/graficos2x/11005.png
deleted file mode 100644
index cfe62b16..00000000
Binary files a/desktop/assets/data/graficos2x/11005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11006.png b/desktop/assets/data/graficos2x/11006.png
deleted file mode 100644
index 5f9e5a6f..00000000
Binary files a/desktop/assets/data/graficos2x/11006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11007.png b/desktop/assets/data/graficos2x/11007.png
deleted file mode 100644
index 3b718106..00000000
Binary files a/desktop/assets/data/graficos2x/11007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11008.png b/desktop/assets/data/graficos2x/11008.png
deleted file mode 100644
index 3549e7e0..00000000
Binary files a/desktop/assets/data/graficos2x/11008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11009.png b/desktop/assets/data/graficos2x/11009.png
deleted file mode 100644
index 10fc210b..00000000
Binary files a/desktop/assets/data/graficos2x/11009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11010.png b/desktop/assets/data/graficos2x/11010.png
deleted file mode 100644
index 6a240b41..00000000
Binary files a/desktop/assets/data/graficos2x/11010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11011.png b/desktop/assets/data/graficos2x/11011.png
deleted file mode 100644
index 4921db1c..00000000
Binary files a/desktop/assets/data/graficos2x/11011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11012.png b/desktop/assets/data/graficos2x/11012.png
deleted file mode 100644
index 09b8c00a..00000000
Binary files a/desktop/assets/data/graficos2x/11012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11013.png b/desktop/assets/data/graficos2x/11013.png
deleted file mode 100644
index 025e61e7..00000000
Binary files a/desktop/assets/data/graficos2x/11013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11014.png b/desktop/assets/data/graficos2x/11014.png
deleted file mode 100644
index 9033708d..00000000
Binary files a/desktop/assets/data/graficos2x/11014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11015.png b/desktop/assets/data/graficos2x/11015.png
deleted file mode 100644
index 33a65e5a..00000000
Binary files a/desktop/assets/data/graficos2x/11015.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11017.png b/desktop/assets/data/graficos2x/11017.png
deleted file mode 100644
index b836d61d..00000000
Binary files a/desktop/assets/data/graficos2x/11017.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11018.png b/desktop/assets/data/graficos2x/11018.png
deleted file mode 100644
index 04105a69..00000000
Binary files a/desktop/assets/data/graficos2x/11018.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11019.png b/desktop/assets/data/graficos2x/11019.png
deleted file mode 100644
index fd655dc9..00000000
Binary files a/desktop/assets/data/graficos2x/11019.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11020.png b/desktop/assets/data/graficos2x/11020.png
deleted file mode 100644
index 98ebfe8b..00000000
Binary files a/desktop/assets/data/graficos2x/11020.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11021.png b/desktop/assets/data/graficos2x/11021.png
deleted file mode 100644
index 96386f9f..00000000
Binary files a/desktop/assets/data/graficos2x/11021.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11022.png b/desktop/assets/data/graficos2x/11022.png
deleted file mode 100644
index ed72230f..00000000
Binary files a/desktop/assets/data/graficos2x/11022.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11023.png b/desktop/assets/data/graficos2x/11023.png
deleted file mode 100644
index 0dfac70f..00000000
Binary files a/desktop/assets/data/graficos2x/11023.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11024.png b/desktop/assets/data/graficos2x/11024.png
deleted file mode 100644
index cc71b4c6..00000000
Binary files a/desktop/assets/data/graficos2x/11024.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11025.png b/desktop/assets/data/graficos2x/11025.png
deleted file mode 100644
index 24b59220..00000000
Binary files a/desktop/assets/data/graficos2x/11025.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11026.png b/desktop/assets/data/graficos2x/11026.png
deleted file mode 100644
index da91a53e..00000000
Binary files a/desktop/assets/data/graficos2x/11026.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11027.png b/desktop/assets/data/graficos2x/11027.png
deleted file mode 100644
index 8bfd755c..00000000
Binary files a/desktop/assets/data/graficos2x/11027.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11028.png b/desktop/assets/data/graficos2x/11028.png
deleted file mode 100644
index 7d11cd71..00000000
Binary files a/desktop/assets/data/graficos2x/11028.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11029.png b/desktop/assets/data/graficos2x/11029.png
deleted file mode 100644
index 33a65e5a..00000000
Binary files a/desktop/assets/data/graficos2x/11029.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11030.png b/desktop/assets/data/graficos2x/11030.png
deleted file mode 100644
index 630096a2..00000000
Binary files a/desktop/assets/data/graficos2x/11030.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11031.png b/desktop/assets/data/graficos2x/11031.png
deleted file mode 100644
index 0079fa68..00000000
Binary files a/desktop/assets/data/graficos2x/11031.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11032.png b/desktop/assets/data/graficos2x/11032.png
deleted file mode 100644
index 516d0578..00000000
Binary files a/desktop/assets/data/graficos2x/11032.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11033.png b/desktop/assets/data/graficos2x/11033.png
deleted file mode 100644
index 8038cfa4..00000000
Binary files a/desktop/assets/data/graficos2x/11033.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11034.png b/desktop/assets/data/graficos2x/11034.png
deleted file mode 100644
index dd92fe69..00000000
Binary files a/desktop/assets/data/graficos2x/11034.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11035.png b/desktop/assets/data/graficos2x/11035.png
deleted file mode 100644
index 94f0904c..00000000
Binary files a/desktop/assets/data/graficos2x/11035.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11036.png b/desktop/assets/data/graficos2x/11036.png
deleted file mode 100644
index 6596fdc6..00000000
Binary files a/desktop/assets/data/graficos2x/11036.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11037.png b/desktop/assets/data/graficos2x/11037.png
deleted file mode 100644
index f6bfa70c..00000000
Binary files a/desktop/assets/data/graficos2x/11037.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11038.png b/desktop/assets/data/graficos2x/11038.png
deleted file mode 100644
index 75bd23c2..00000000
Binary files a/desktop/assets/data/graficos2x/11038.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11039.png b/desktop/assets/data/graficos2x/11039.png
deleted file mode 100644
index f9e64739..00000000
Binary files a/desktop/assets/data/graficos2x/11039.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11040.png b/desktop/assets/data/graficos2x/11040.png
deleted file mode 100644
index 836dc3d6..00000000
Binary files a/desktop/assets/data/graficos2x/11040.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11041.png b/desktop/assets/data/graficos2x/11041.png
deleted file mode 100644
index ec467a30..00000000
Binary files a/desktop/assets/data/graficos2x/11041.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11042.png b/desktop/assets/data/graficos2x/11042.png
deleted file mode 100644
index eaf4da98..00000000
Binary files a/desktop/assets/data/graficos2x/11042.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11043.png b/desktop/assets/data/graficos2x/11043.png
deleted file mode 100644
index fd1d32e1..00000000
Binary files a/desktop/assets/data/graficos2x/11043.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11044.png b/desktop/assets/data/graficos2x/11044.png
deleted file mode 100644
index 0002a6c6..00000000
Binary files a/desktop/assets/data/graficos2x/11044.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11045.png b/desktop/assets/data/graficos2x/11045.png
deleted file mode 100644
index a37647c1..00000000
Binary files a/desktop/assets/data/graficos2x/11045.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11046.png b/desktop/assets/data/graficos2x/11046.png
deleted file mode 100644
index cf6e0d5e..00000000
Binary files a/desktop/assets/data/graficos2x/11046.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11047.png b/desktop/assets/data/graficos2x/11047.png
deleted file mode 100644
index 41f8455f..00000000
Binary files a/desktop/assets/data/graficos2x/11047.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11048.png b/desktop/assets/data/graficos2x/11048.png
deleted file mode 100644
index 209b7bbb..00000000
Binary files a/desktop/assets/data/graficos2x/11048.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11049.png b/desktop/assets/data/graficos2x/11049.png
deleted file mode 100644
index 3f38946e..00000000
Binary files a/desktop/assets/data/graficos2x/11049.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11050.png b/desktop/assets/data/graficos2x/11050.png
deleted file mode 100644
index 7f4c2b4b..00000000
Binary files a/desktop/assets/data/graficos2x/11050.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11051.png b/desktop/assets/data/graficos2x/11051.png
deleted file mode 100644
index 914ff899..00000000
Binary files a/desktop/assets/data/graficos2x/11051.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11052.png b/desktop/assets/data/graficos2x/11052.png
deleted file mode 100644
index b734cbdf..00000000
Binary files a/desktop/assets/data/graficos2x/11052.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/11053.png b/desktop/assets/data/graficos2x/11053.png
deleted file mode 100644
index 55571269..00000000
Binary files a/desktop/assets/data/graficos2x/11053.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/111.png b/desktop/assets/data/graficos2x/111.png
deleted file mode 100644
index eaa7fd88..00000000
Binary files a/desktop/assets/data/graficos2x/111.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/112.png b/desktop/assets/data/graficos2x/112.png
deleted file mode 100644
index d9fa002a..00000000
Binary files a/desktop/assets/data/graficos2x/112.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/113.png b/desktop/assets/data/graficos2x/113.png
deleted file mode 100644
index 8d19e4c8..00000000
Binary files a/desktop/assets/data/graficos2x/113.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/114.png b/desktop/assets/data/graficos2x/114.png
deleted file mode 100644
index 85e763e0..00000000
Binary files a/desktop/assets/data/graficos2x/114.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/115.png b/desktop/assets/data/graficos2x/115.png
deleted file mode 100644
index b7b4f0d5..00000000
Binary files a/desktop/assets/data/graficos2x/115.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/116.png b/desktop/assets/data/graficos2x/116.png
deleted file mode 100644
index a8c2819a..00000000
Binary files a/desktop/assets/data/graficos2x/116.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/117.png b/desktop/assets/data/graficos2x/117.png
deleted file mode 100644
index 8ded34a9..00000000
Binary files a/desktop/assets/data/graficos2x/117.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/118.png b/desktop/assets/data/graficos2x/118.png
deleted file mode 100644
index cefbaef2..00000000
Binary files a/desktop/assets/data/graficos2x/118.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/119.png b/desktop/assets/data/graficos2x/119.png
deleted file mode 100644
index 8df63d5c..00000000
Binary files a/desktop/assets/data/graficos2x/119.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12.png b/desktop/assets/data/graficos2x/12.png
deleted file mode 100644
index 81967de5..00000000
Binary files a/desktop/assets/data/graficos2x/12.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/120.png b/desktop/assets/data/graficos2x/120.png
deleted file mode 100644
index c66482df..00000000
Binary files a/desktop/assets/data/graficos2x/120.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12000.png b/desktop/assets/data/graficos2x/12000.png
deleted file mode 100644
index 936d8bad..00000000
Binary files a/desktop/assets/data/graficos2x/12000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12001.png b/desktop/assets/data/graficos2x/12001.png
deleted file mode 100644
index 4ab5b83b..00000000
Binary files a/desktop/assets/data/graficos2x/12001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12002.png b/desktop/assets/data/graficos2x/12002.png
deleted file mode 100644
index 2c6dc044..00000000
Binary files a/desktop/assets/data/graficos2x/12002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12003.png b/desktop/assets/data/graficos2x/12003.png
deleted file mode 100644
index ca96b679..00000000
Binary files a/desktop/assets/data/graficos2x/12003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12004.png b/desktop/assets/data/graficos2x/12004.png
deleted file mode 100644
index 74c4ed84..00000000
Binary files a/desktop/assets/data/graficos2x/12004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12005.png b/desktop/assets/data/graficos2x/12005.png
deleted file mode 100644
index cdb4e27d..00000000
Binary files a/desktop/assets/data/graficos2x/12005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12007.png b/desktop/assets/data/graficos2x/12007.png
deleted file mode 100644
index 40fd263a..00000000
Binary files a/desktop/assets/data/graficos2x/12007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12008.png b/desktop/assets/data/graficos2x/12008.png
deleted file mode 100644
index c540c6bc..00000000
Binary files a/desktop/assets/data/graficos2x/12008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12009.png b/desktop/assets/data/graficos2x/12009.png
deleted file mode 100644
index e8672b92..00000000
Binary files a/desktop/assets/data/graficos2x/12009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12010.png b/desktop/assets/data/graficos2x/12010.png
deleted file mode 100644
index 9ab8c6d5..00000000
Binary files a/desktop/assets/data/graficos2x/12010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12011.png b/desktop/assets/data/graficos2x/12011.png
deleted file mode 100644
index 43818668..00000000
Binary files a/desktop/assets/data/graficos2x/12011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12012.png b/desktop/assets/data/graficos2x/12012.png
deleted file mode 100644
index 46101e5d..00000000
Binary files a/desktop/assets/data/graficos2x/12012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12013.png b/desktop/assets/data/graficos2x/12013.png
deleted file mode 100644
index 6f251c90..00000000
Binary files a/desktop/assets/data/graficos2x/12013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12014.png b/desktop/assets/data/graficos2x/12014.png
deleted file mode 100644
index 70f44593..00000000
Binary files a/desktop/assets/data/graficos2x/12014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12015.png b/desktop/assets/data/graficos2x/12015.png
deleted file mode 100644
index e0ca6a3f..00000000
Binary files a/desktop/assets/data/graficos2x/12015.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12016.png b/desktop/assets/data/graficos2x/12016.png
deleted file mode 100644
index 8c0778ef..00000000
Binary files a/desktop/assets/data/graficos2x/12016.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12017.png b/desktop/assets/data/graficos2x/12017.png
deleted file mode 100644
index 2941aca6..00000000
Binary files a/desktop/assets/data/graficos2x/12017.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12018.png b/desktop/assets/data/graficos2x/12018.png
deleted file mode 100644
index c9fa31d6..00000000
Binary files a/desktop/assets/data/graficos2x/12018.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12019.png b/desktop/assets/data/graficos2x/12019.png
deleted file mode 100644
index e84b2186..00000000
Binary files a/desktop/assets/data/graficos2x/12019.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12020.png b/desktop/assets/data/graficos2x/12020.png
deleted file mode 100644
index a9f47069..00000000
Binary files a/desktop/assets/data/graficos2x/12020.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12021.png b/desktop/assets/data/graficos2x/12021.png
deleted file mode 100644
index 58448aa0..00000000
Binary files a/desktop/assets/data/graficos2x/12021.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12022.png b/desktop/assets/data/graficos2x/12022.png
deleted file mode 100644
index 055c2466..00000000
Binary files a/desktop/assets/data/graficos2x/12022.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12023.png b/desktop/assets/data/graficos2x/12023.png
deleted file mode 100644
index 0804fc4a..00000000
Binary files a/desktop/assets/data/graficos2x/12023.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12024.png b/desktop/assets/data/graficos2x/12024.png
deleted file mode 100644
index 5d7c955a..00000000
Binary files a/desktop/assets/data/graficos2x/12024.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12025.png b/desktop/assets/data/graficos2x/12025.png
deleted file mode 100644
index 08ebc5d3..00000000
Binary files a/desktop/assets/data/graficos2x/12025.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12026.png b/desktop/assets/data/graficos2x/12026.png
deleted file mode 100644
index f7126af2..00000000
Binary files a/desktop/assets/data/graficos2x/12026.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12027.png b/desktop/assets/data/graficos2x/12027.png
deleted file mode 100644
index 9f525f97..00000000
Binary files a/desktop/assets/data/graficos2x/12027.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12028.png b/desktop/assets/data/graficos2x/12028.png
deleted file mode 100644
index c1335020..00000000
Binary files a/desktop/assets/data/graficos2x/12028.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12029.png b/desktop/assets/data/graficos2x/12029.png
deleted file mode 100644
index 22bba595..00000000
Binary files a/desktop/assets/data/graficos2x/12029.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12030.png b/desktop/assets/data/graficos2x/12030.png
deleted file mode 100644
index 0a4eba4a..00000000
Binary files a/desktop/assets/data/graficos2x/12030.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12031.png b/desktop/assets/data/graficos2x/12031.png
deleted file mode 100644
index 62ed4206..00000000
Binary files a/desktop/assets/data/graficos2x/12031.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12032.png b/desktop/assets/data/graficos2x/12032.png
deleted file mode 100644
index 80c43009..00000000
Binary files a/desktop/assets/data/graficos2x/12032.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12033.png b/desktop/assets/data/graficos2x/12033.png
deleted file mode 100644
index 36ccd8ad..00000000
Binary files a/desktop/assets/data/graficos2x/12033.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12034.png b/desktop/assets/data/graficos2x/12034.png
deleted file mode 100644
index 7275b6b4..00000000
Binary files a/desktop/assets/data/graficos2x/12034.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12035.png b/desktop/assets/data/graficos2x/12035.png
deleted file mode 100644
index 23192b06..00000000
Binary files a/desktop/assets/data/graficos2x/12035.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12036.png b/desktop/assets/data/graficos2x/12036.png
deleted file mode 100644
index 51fffb36..00000000
Binary files a/desktop/assets/data/graficos2x/12036.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12037.png b/desktop/assets/data/graficos2x/12037.png
deleted file mode 100644
index 903cd439..00000000
Binary files a/desktop/assets/data/graficos2x/12037.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12038.png b/desktop/assets/data/graficos2x/12038.png
deleted file mode 100644
index e9767431..00000000
Binary files a/desktop/assets/data/graficos2x/12038.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12039.png b/desktop/assets/data/graficos2x/12039.png
deleted file mode 100644
index 3b2fb2ba..00000000
Binary files a/desktop/assets/data/graficos2x/12039.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12040.png b/desktop/assets/data/graficos2x/12040.png
deleted file mode 100644
index 6e6aa83f..00000000
Binary files a/desktop/assets/data/graficos2x/12040.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12041.png b/desktop/assets/data/graficos2x/12041.png
deleted file mode 100644
index 34968254..00000000
Binary files a/desktop/assets/data/graficos2x/12041.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12042.png b/desktop/assets/data/graficos2x/12042.png
deleted file mode 100644
index d3a8da1b..00000000
Binary files a/desktop/assets/data/graficos2x/12042.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12043.png b/desktop/assets/data/graficos2x/12043.png
deleted file mode 100644
index c71202d6..00000000
Binary files a/desktop/assets/data/graficos2x/12043.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12044.png b/desktop/assets/data/graficos2x/12044.png
deleted file mode 100644
index 3c2ce996..00000000
Binary files a/desktop/assets/data/graficos2x/12044.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12045.png b/desktop/assets/data/graficos2x/12045.png
deleted file mode 100644
index 510282f4..00000000
Binary files a/desktop/assets/data/graficos2x/12045.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12046.png b/desktop/assets/data/graficos2x/12046.png
deleted file mode 100644
index ab5cb647..00000000
Binary files a/desktop/assets/data/graficos2x/12046.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12047.png b/desktop/assets/data/graficos2x/12047.png
deleted file mode 100644
index 6d9812aa..00000000
Binary files a/desktop/assets/data/graficos2x/12047.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12048.png b/desktop/assets/data/graficos2x/12048.png
deleted file mode 100644
index bccc5ba7..00000000
Binary files a/desktop/assets/data/graficos2x/12048.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12049.png b/desktop/assets/data/graficos2x/12049.png
deleted file mode 100644
index d51e9e9a..00000000
Binary files a/desktop/assets/data/graficos2x/12049.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12050.png b/desktop/assets/data/graficos2x/12050.png
deleted file mode 100644
index 9e831a5a..00000000
Binary files a/desktop/assets/data/graficos2x/12050.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12051.png b/desktop/assets/data/graficos2x/12051.png
deleted file mode 100644
index 31bf6ce0..00000000
Binary files a/desktop/assets/data/graficos2x/12051.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12052.png b/desktop/assets/data/graficos2x/12052.png
deleted file mode 100644
index 77c9cd88..00000000
Binary files a/desktop/assets/data/graficos2x/12052.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12053.png b/desktop/assets/data/graficos2x/12053.png
deleted file mode 100644
index 5bf86eb3..00000000
Binary files a/desktop/assets/data/graficos2x/12053.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12054.png b/desktop/assets/data/graficos2x/12054.png
deleted file mode 100644
index f395acdf..00000000
Binary files a/desktop/assets/data/graficos2x/12054.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12055.png b/desktop/assets/data/graficos2x/12055.png
deleted file mode 100644
index f064af78..00000000
Binary files a/desktop/assets/data/graficos2x/12055.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12056.png b/desktop/assets/data/graficos2x/12056.png
deleted file mode 100644
index ff62621f..00000000
Binary files a/desktop/assets/data/graficos2x/12056.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12057.png b/desktop/assets/data/graficos2x/12057.png
deleted file mode 100644
index bc9c4794..00000000
Binary files a/desktop/assets/data/graficos2x/12057.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12058.png b/desktop/assets/data/graficos2x/12058.png
deleted file mode 100644
index 2eb26400..00000000
Binary files a/desktop/assets/data/graficos2x/12058.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12059.png b/desktop/assets/data/graficos2x/12059.png
deleted file mode 100644
index 8aac054e..00000000
Binary files a/desktop/assets/data/graficos2x/12059.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12060.png b/desktop/assets/data/graficos2x/12060.png
deleted file mode 100644
index 9dafad00..00000000
Binary files a/desktop/assets/data/graficos2x/12060.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12061.png b/desktop/assets/data/graficos2x/12061.png
deleted file mode 100644
index c094cb6b..00000000
Binary files a/desktop/assets/data/graficos2x/12061.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12062.png b/desktop/assets/data/graficos2x/12062.png
deleted file mode 100644
index bbd62700..00000000
Binary files a/desktop/assets/data/graficos2x/12062.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12063.png b/desktop/assets/data/graficos2x/12063.png
deleted file mode 100644
index 30016d71..00000000
Binary files a/desktop/assets/data/graficos2x/12063.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12064.png b/desktop/assets/data/graficos2x/12064.png
deleted file mode 100644
index 30bb8fba..00000000
Binary files a/desktop/assets/data/graficos2x/12064.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12065.png b/desktop/assets/data/graficos2x/12065.png
deleted file mode 100644
index c45c99af..00000000
Binary files a/desktop/assets/data/graficos2x/12065.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12066.png b/desktop/assets/data/graficos2x/12066.png
deleted file mode 100644
index 8f421ff9..00000000
Binary files a/desktop/assets/data/graficos2x/12066.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12067.png b/desktop/assets/data/graficos2x/12067.png
deleted file mode 100644
index 7360a005..00000000
Binary files a/desktop/assets/data/graficos2x/12067.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12068.png b/desktop/assets/data/graficos2x/12068.png
deleted file mode 100644
index ddf63544..00000000
Binary files a/desktop/assets/data/graficos2x/12068.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12069.png b/desktop/assets/data/graficos2x/12069.png
deleted file mode 100644
index 8a46eba4..00000000
Binary files a/desktop/assets/data/graficos2x/12069.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12070.png b/desktop/assets/data/graficos2x/12070.png
deleted file mode 100644
index 5f2a5f11..00000000
Binary files a/desktop/assets/data/graficos2x/12070.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12071.png b/desktop/assets/data/graficos2x/12071.png
deleted file mode 100644
index f7703a9d..00000000
Binary files a/desktop/assets/data/graficos2x/12071.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12072.png b/desktop/assets/data/graficos2x/12072.png
deleted file mode 100644
index 6afa6932..00000000
Binary files a/desktop/assets/data/graficos2x/12072.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12073.png b/desktop/assets/data/graficos2x/12073.png
deleted file mode 100644
index 84cee103..00000000
Binary files a/desktop/assets/data/graficos2x/12073.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12074.png b/desktop/assets/data/graficos2x/12074.png
deleted file mode 100644
index 431f077d..00000000
Binary files a/desktop/assets/data/graficos2x/12074.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12075.png b/desktop/assets/data/graficos2x/12075.png
deleted file mode 100644
index 49036310..00000000
Binary files a/desktop/assets/data/graficos2x/12075.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12076.png b/desktop/assets/data/graficos2x/12076.png
deleted file mode 100644
index d89d37ba..00000000
Binary files a/desktop/assets/data/graficos2x/12076.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12077.png b/desktop/assets/data/graficos2x/12077.png
deleted file mode 100644
index 525cfb40..00000000
Binary files a/desktop/assets/data/graficos2x/12077.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12078.png b/desktop/assets/data/graficos2x/12078.png
deleted file mode 100644
index ce673cd9..00000000
Binary files a/desktop/assets/data/graficos2x/12078.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12079.png b/desktop/assets/data/graficos2x/12079.png
deleted file mode 100644
index 55144ce2..00000000
Binary files a/desktop/assets/data/graficos2x/12079.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12080.png b/desktop/assets/data/graficos2x/12080.png
deleted file mode 100644
index f6e78cc1..00000000
Binary files a/desktop/assets/data/graficos2x/12080.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12081.png b/desktop/assets/data/graficos2x/12081.png
deleted file mode 100644
index 27b90ee9..00000000
Binary files a/desktop/assets/data/graficos2x/12081.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12082.png b/desktop/assets/data/graficos2x/12082.png
deleted file mode 100644
index 19412b4e..00000000
Binary files a/desktop/assets/data/graficos2x/12082.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12083.png b/desktop/assets/data/graficos2x/12083.png
deleted file mode 100644
index 934d2f8f..00000000
Binary files a/desktop/assets/data/graficos2x/12083.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12084.png b/desktop/assets/data/graficos2x/12084.png
deleted file mode 100644
index 16a42f8f..00000000
Binary files a/desktop/assets/data/graficos2x/12084.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12085.png b/desktop/assets/data/graficos2x/12085.png
deleted file mode 100644
index f3679f0c..00000000
Binary files a/desktop/assets/data/graficos2x/12085.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12086.png b/desktop/assets/data/graficos2x/12086.png
deleted file mode 100644
index 04794c12..00000000
Binary files a/desktop/assets/data/graficos2x/12086.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12087.png b/desktop/assets/data/graficos2x/12087.png
deleted file mode 100644
index 2fd147e5..00000000
Binary files a/desktop/assets/data/graficos2x/12087.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12088.png b/desktop/assets/data/graficos2x/12088.png
deleted file mode 100644
index a1b9697d..00000000
Binary files a/desktop/assets/data/graficos2x/12088.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12089.png b/desktop/assets/data/graficos2x/12089.png
deleted file mode 100644
index aa7caef6..00000000
Binary files a/desktop/assets/data/graficos2x/12089.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12090.png b/desktop/assets/data/graficos2x/12090.png
deleted file mode 100644
index f3679f0c..00000000
Binary files a/desktop/assets/data/graficos2x/12090.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12091.png b/desktop/assets/data/graficos2x/12091.png
deleted file mode 100644
index 6ab5a5c6..00000000
Binary files a/desktop/assets/data/graficos2x/12091.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12092.png b/desktop/assets/data/graficos2x/12092.png
deleted file mode 100644
index 650e497e..00000000
Binary files a/desktop/assets/data/graficos2x/12092.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/12093.png b/desktop/assets/data/graficos2x/12093.png
deleted file mode 100644
index 87d7e2ff..00000000
Binary files a/desktop/assets/data/graficos2x/12093.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/121.png b/desktop/assets/data/graficos2x/121.png
deleted file mode 100644
index f1e5d6c2..00000000
Binary files a/desktop/assets/data/graficos2x/121.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/122.png b/desktop/assets/data/graficos2x/122.png
deleted file mode 100644
index 1a50f656..00000000
Binary files a/desktop/assets/data/graficos2x/122.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/123.png b/desktop/assets/data/graficos2x/123.png
deleted file mode 100644
index a672bffa..00000000
Binary files a/desktop/assets/data/graficos2x/123.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/124.png b/desktop/assets/data/graficos2x/124.png
deleted file mode 100644
index 9bd2eee2..00000000
Binary files a/desktop/assets/data/graficos2x/124.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/125.png b/desktop/assets/data/graficos2x/125.png
deleted file mode 100644
index 33c0f40d..00000000
Binary files a/desktop/assets/data/graficos2x/125.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/126.png b/desktop/assets/data/graficos2x/126.png
deleted file mode 100644
index a7f4c44e..00000000
Binary files a/desktop/assets/data/graficos2x/126.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/127.png b/desktop/assets/data/graficos2x/127.png
deleted file mode 100644
index 1b4eedc5..00000000
Binary files a/desktop/assets/data/graficos2x/127.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/128.png b/desktop/assets/data/graficos2x/128.png
deleted file mode 100644
index 5e3934f6..00000000
Binary files a/desktop/assets/data/graficos2x/128.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/129.png b/desktop/assets/data/graficos2x/129.png
deleted file mode 100644
index ed1988cc..00000000
Binary files a/desktop/assets/data/graficos2x/129.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13.png b/desktop/assets/data/graficos2x/13.png
deleted file mode 100644
index 6557939b..00000000
Binary files a/desktop/assets/data/graficos2x/13.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/130.png b/desktop/assets/data/graficos2x/130.png
deleted file mode 100644
index 17f278b6..00000000
Binary files a/desktop/assets/data/graficos2x/130.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13000.png b/desktop/assets/data/graficos2x/13000.png
deleted file mode 100644
index 714c7fa2..00000000
Binary files a/desktop/assets/data/graficos2x/13000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13001.png b/desktop/assets/data/graficos2x/13001.png
deleted file mode 100644
index 51950675..00000000
Binary files a/desktop/assets/data/graficos2x/13001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13002.png b/desktop/assets/data/graficos2x/13002.png
deleted file mode 100644
index 16f9758d..00000000
Binary files a/desktop/assets/data/graficos2x/13002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13003.png b/desktop/assets/data/graficos2x/13003.png
deleted file mode 100644
index 0d085adf..00000000
Binary files a/desktop/assets/data/graficos2x/13003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13004.png b/desktop/assets/data/graficos2x/13004.png
deleted file mode 100644
index 51b8144d..00000000
Binary files a/desktop/assets/data/graficos2x/13004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13005.png b/desktop/assets/data/graficos2x/13005.png
deleted file mode 100644
index dfb24079..00000000
Binary files a/desktop/assets/data/graficos2x/13005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13006.png b/desktop/assets/data/graficos2x/13006.png
deleted file mode 100644
index 24b1e181..00000000
Binary files a/desktop/assets/data/graficos2x/13006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13007.png b/desktop/assets/data/graficos2x/13007.png
deleted file mode 100644
index 5fbc7e0b..00000000
Binary files a/desktop/assets/data/graficos2x/13007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13008.png b/desktop/assets/data/graficos2x/13008.png
deleted file mode 100644
index 1867bcfa..00000000
Binary files a/desktop/assets/data/graficos2x/13008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13009.png b/desktop/assets/data/graficos2x/13009.png
deleted file mode 100644
index 342da85e..00000000
Binary files a/desktop/assets/data/graficos2x/13009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13010.png b/desktop/assets/data/graficos2x/13010.png
deleted file mode 100644
index 97146cf4..00000000
Binary files a/desktop/assets/data/graficos2x/13010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13011.png b/desktop/assets/data/graficos2x/13011.png
deleted file mode 100644
index 57d518f4..00000000
Binary files a/desktop/assets/data/graficos2x/13011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13012.png b/desktop/assets/data/graficos2x/13012.png
deleted file mode 100644
index 59a50f5e..00000000
Binary files a/desktop/assets/data/graficos2x/13012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13013.png b/desktop/assets/data/graficos2x/13013.png
deleted file mode 100644
index 0e55d53c..00000000
Binary files a/desktop/assets/data/graficos2x/13013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13014.png b/desktop/assets/data/graficos2x/13014.png
deleted file mode 100644
index 26e346ec..00000000
Binary files a/desktop/assets/data/graficos2x/13014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13015.png b/desktop/assets/data/graficos2x/13015.png
deleted file mode 100644
index 147ae4c4..00000000
Binary files a/desktop/assets/data/graficos2x/13015.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13016.png b/desktop/assets/data/graficos2x/13016.png
deleted file mode 100644
index 1a86c4da..00000000
Binary files a/desktop/assets/data/graficos2x/13016.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13017.png b/desktop/assets/data/graficos2x/13017.png
deleted file mode 100644
index 018ea1e5..00000000
Binary files a/desktop/assets/data/graficos2x/13017.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13018.png b/desktop/assets/data/graficos2x/13018.png
deleted file mode 100644
index 9c39a063..00000000
Binary files a/desktop/assets/data/graficos2x/13018.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13019.png b/desktop/assets/data/graficos2x/13019.png
deleted file mode 100644
index 05da8f0c..00000000
Binary files a/desktop/assets/data/graficos2x/13019.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13020.png b/desktop/assets/data/graficos2x/13020.png
deleted file mode 100644
index 17e42093..00000000
Binary files a/desktop/assets/data/graficos2x/13020.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13021.png b/desktop/assets/data/graficos2x/13021.png
deleted file mode 100644
index 75e7222c..00000000
Binary files a/desktop/assets/data/graficos2x/13021.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13022.png b/desktop/assets/data/graficos2x/13022.png
deleted file mode 100644
index 704fc02a..00000000
Binary files a/desktop/assets/data/graficos2x/13022.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13023.png b/desktop/assets/data/graficos2x/13023.png
deleted file mode 100644
index c8b9121d..00000000
Binary files a/desktop/assets/data/graficos2x/13023.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13024.png b/desktop/assets/data/graficos2x/13024.png
deleted file mode 100644
index b02af31d..00000000
Binary files a/desktop/assets/data/graficos2x/13024.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13025.png b/desktop/assets/data/graficos2x/13025.png
deleted file mode 100644
index 2893e64a..00000000
Binary files a/desktop/assets/data/graficos2x/13025.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13026.png b/desktop/assets/data/graficos2x/13026.png
deleted file mode 100644
index 7fea357b..00000000
Binary files a/desktop/assets/data/graficos2x/13026.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13027.png b/desktop/assets/data/graficos2x/13027.png
deleted file mode 100644
index 83773575..00000000
Binary files a/desktop/assets/data/graficos2x/13027.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13028.png b/desktop/assets/data/graficos2x/13028.png
deleted file mode 100644
index 64c96f66..00000000
Binary files a/desktop/assets/data/graficos2x/13028.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13029.png b/desktop/assets/data/graficos2x/13029.png
deleted file mode 100644
index f49c6015..00000000
Binary files a/desktop/assets/data/graficos2x/13029.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13030.png b/desktop/assets/data/graficos2x/13030.png
deleted file mode 100644
index 2356a616..00000000
Binary files a/desktop/assets/data/graficos2x/13030.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/13031.png b/desktop/assets/data/graficos2x/13031.png
deleted file mode 100644
index 48d7218f..00000000
Binary files a/desktop/assets/data/graficos2x/13031.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/131.png b/desktop/assets/data/graficos2x/131.png
deleted file mode 100644
index b8acbb27..00000000
Binary files a/desktop/assets/data/graficos2x/131.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/132.png b/desktop/assets/data/graficos2x/132.png
deleted file mode 100644
index 284451a4..00000000
Binary files a/desktop/assets/data/graficos2x/132.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/133.png b/desktop/assets/data/graficos2x/133.png
deleted file mode 100644
index 0b4fea75..00000000
Binary files a/desktop/assets/data/graficos2x/133.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/134.png b/desktop/assets/data/graficos2x/134.png
deleted file mode 100644
index f15224a2..00000000
Binary files a/desktop/assets/data/graficos2x/134.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/135.png b/desktop/assets/data/graficos2x/135.png
deleted file mode 100644
index aef0bf18..00000000
Binary files a/desktop/assets/data/graficos2x/135.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/136.png b/desktop/assets/data/graficos2x/136.png
deleted file mode 100644
index 327ee885..00000000
Binary files a/desktop/assets/data/graficos2x/136.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/137.png b/desktop/assets/data/graficos2x/137.png
deleted file mode 100644
index 5168d453..00000000
Binary files a/desktop/assets/data/graficos2x/137.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/138.png b/desktop/assets/data/graficos2x/138.png
deleted file mode 100644
index b86c1971..00000000
Binary files a/desktop/assets/data/graficos2x/138.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/139.png b/desktop/assets/data/graficos2x/139.png
deleted file mode 100644
index bfb44b20..00000000
Binary files a/desktop/assets/data/graficos2x/139.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14.png b/desktop/assets/data/graficos2x/14.png
deleted file mode 100644
index 440ed7d2..00000000
Binary files a/desktop/assets/data/graficos2x/14.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/140.png b/desktop/assets/data/graficos2x/140.png
deleted file mode 100644
index 9abeaa19..00000000
Binary files a/desktop/assets/data/graficos2x/140.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14000.png b/desktop/assets/data/graficos2x/14000.png
deleted file mode 100644
index a6a60707..00000000
Binary files a/desktop/assets/data/graficos2x/14000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14001.png b/desktop/assets/data/graficos2x/14001.png
deleted file mode 100644
index c945320d..00000000
Binary files a/desktop/assets/data/graficos2x/14001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14002.png b/desktop/assets/data/graficos2x/14002.png
deleted file mode 100644
index 05bcaabf..00000000
Binary files a/desktop/assets/data/graficos2x/14002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14003.png b/desktop/assets/data/graficos2x/14003.png
deleted file mode 100644
index c9e57a7e..00000000
Binary files a/desktop/assets/data/graficos2x/14003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14004.png b/desktop/assets/data/graficos2x/14004.png
deleted file mode 100644
index 431b017f..00000000
Binary files a/desktop/assets/data/graficos2x/14004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14005.png b/desktop/assets/data/graficos2x/14005.png
deleted file mode 100644
index 2149859b..00000000
Binary files a/desktop/assets/data/graficos2x/14005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14006.png b/desktop/assets/data/graficos2x/14006.png
deleted file mode 100644
index 2ae2fb2f..00000000
Binary files a/desktop/assets/data/graficos2x/14006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14007.png b/desktop/assets/data/graficos2x/14007.png
deleted file mode 100644
index 1205b5fe..00000000
Binary files a/desktop/assets/data/graficos2x/14007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14028.png b/desktop/assets/data/graficos2x/14028.png
deleted file mode 100644
index 74e8e5ad..00000000
Binary files a/desktop/assets/data/graficos2x/14028.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14029.png b/desktop/assets/data/graficos2x/14029.png
deleted file mode 100644
index fab9f56d..00000000
Binary files a/desktop/assets/data/graficos2x/14029.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14030.png b/desktop/assets/data/graficos2x/14030.png
deleted file mode 100644
index 7b6c477f..00000000
Binary files a/desktop/assets/data/graficos2x/14030.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14031.png b/desktop/assets/data/graficos2x/14031.png
deleted file mode 100644
index 645dffad..00000000
Binary files a/desktop/assets/data/graficos2x/14031.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14032.png b/desktop/assets/data/graficos2x/14032.png
deleted file mode 100644
index 35e0d807..00000000
Binary files a/desktop/assets/data/graficos2x/14032.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14033.png b/desktop/assets/data/graficos2x/14033.png
deleted file mode 100644
index b1092a95..00000000
Binary files a/desktop/assets/data/graficos2x/14033.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14034.png b/desktop/assets/data/graficos2x/14034.png
deleted file mode 100644
index 40e6a35a..00000000
Binary files a/desktop/assets/data/graficos2x/14034.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14035.png b/desktop/assets/data/graficos2x/14035.png
deleted file mode 100644
index e5bb0980..00000000
Binary files a/desktop/assets/data/graficos2x/14035.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14036.png b/desktop/assets/data/graficos2x/14036.png
deleted file mode 100644
index 406bcc97..00000000
Binary files a/desktop/assets/data/graficos2x/14036.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14037.png b/desktop/assets/data/graficos2x/14037.png
deleted file mode 100644
index e6d7e19b..00000000
Binary files a/desktop/assets/data/graficos2x/14037.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14038.png b/desktop/assets/data/graficos2x/14038.png
deleted file mode 100644
index 4c78a92b..00000000
Binary files a/desktop/assets/data/graficos2x/14038.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/14039.png b/desktop/assets/data/graficos2x/14039.png
deleted file mode 100644
index 2a8de68e..00000000
Binary files a/desktop/assets/data/graficos2x/14039.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/141.png b/desktop/assets/data/graficos2x/141.png
deleted file mode 100644
index 6b24e9a5..00000000
Binary files a/desktop/assets/data/graficos2x/141.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/142.png b/desktop/assets/data/graficos2x/142.png
deleted file mode 100644
index af31cab5..00000000
Binary files a/desktop/assets/data/graficos2x/142.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/143.png b/desktop/assets/data/graficos2x/143.png
deleted file mode 100644
index 76857535..00000000
Binary files a/desktop/assets/data/graficos2x/143.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/144.png b/desktop/assets/data/graficos2x/144.png
deleted file mode 100644
index 9fcaa3b4..00000000
Binary files a/desktop/assets/data/graficos2x/144.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/145.png b/desktop/assets/data/graficos2x/145.png
deleted file mode 100644
index af0464e2..00000000
Binary files a/desktop/assets/data/graficos2x/145.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/146.png b/desktop/assets/data/graficos2x/146.png
deleted file mode 100644
index 9e1cbabd..00000000
Binary files a/desktop/assets/data/graficos2x/146.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/147.png b/desktop/assets/data/graficos2x/147.png
deleted file mode 100644
index 11aad0f1..00000000
Binary files a/desktop/assets/data/graficos2x/147.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/148.png b/desktop/assets/data/graficos2x/148.png
deleted file mode 100644
index 14b6fd38..00000000
Binary files a/desktop/assets/data/graficos2x/148.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/149.png b/desktop/assets/data/graficos2x/149.png
deleted file mode 100644
index bf67a76d..00000000
Binary files a/desktop/assets/data/graficos2x/149.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15.png b/desktop/assets/data/graficos2x/15.png
deleted file mode 100644
index b8d55669..00000000
Binary files a/desktop/assets/data/graficos2x/15.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/150.png b/desktop/assets/data/graficos2x/150.png
deleted file mode 100644
index 307f9bb1..00000000
Binary files a/desktop/assets/data/graficos2x/150.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15000.png b/desktop/assets/data/graficos2x/15000.png
deleted file mode 100644
index 2968586d..00000000
Binary files a/desktop/assets/data/graficos2x/15000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15001.png b/desktop/assets/data/graficos2x/15001.png
deleted file mode 100644
index 22d02a54..00000000
Binary files a/desktop/assets/data/graficos2x/15001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15002.png b/desktop/assets/data/graficos2x/15002.png
deleted file mode 100644
index 7cbb554c..00000000
Binary files a/desktop/assets/data/graficos2x/15002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15003.png b/desktop/assets/data/graficos2x/15003.png
deleted file mode 100644
index a37e3d98..00000000
Binary files a/desktop/assets/data/graficos2x/15003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15004.png b/desktop/assets/data/graficos2x/15004.png
deleted file mode 100644
index e0159403..00000000
Binary files a/desktop/assets/data/graficos2x/15004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15005.png b/desktop/assets/data/graficos2x/15005.png
deleted file mode 100644
index e84363e0..00000000
Binary files a/desktop/assets/data/graficos2x/15005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15006.png b/desktop/assets/data/graficos2x/15006.png
deleted file mode 100644
index 624ecb10..00000000
Binary files a/desktop/assets/data/graficos2x/15006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15007.png b/desktop/assets/data/graficos2x/15007.png
deleted file mode 100644
index 2bd51ddd..00000000
Binary files a/desktop/assets/data/graficos2x/15007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15008.png b/desktop/assets/data/graficos2x/15008.png
deleted file mode 100644
index 67aa6c96..00000000
Binary files a/desktop/assets/data/graficos2x/15008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15009.png b/desktop/assets/data/graficos2x/15009.png
deleted file mode 100644
index a7f2e695..00000000
Binary files a/desktop/assets/data/graficos2x/15009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15010.png b/desktop/assets/data/graficos2x/15010.png
deleted file mode 100644
index f239018d..00000000
Binary files a/desktop/assets/data/graficos2x/15010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15011.png b/desktop/assets/data/graficos2x/15011.png
deleted file mode 100644
index e27bcc45..00000000
Binary files a/desktop/assets/data/graficos2x/15011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15012.png b/desktop/assets/data/graficos2x/15012.png
deleted file mode 100644
index 40173c9c..00000000
Binary files a/desktop/assets/data/graficos2x/15012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15013.png b/desktop/assets/data/graficos2x/15013.png
deleted file mode 100644
index f4914cd4..00000000
Binary files a/desktop/assets/data/graficos2x/15013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15014.png b/desktop/assets/data/graficos2x/15014.png
deleted file mode 100644
index 101df6cd..00000000
Binary files a/desktop/assets/data/graficos2x/15014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15015.png b/desktop/assets/data/graficos2x/15015.png
deleted file mode 100644
index be575116..00000000
Binary files a/desktop/assets/data/graficos2x/15015.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15016.png b/desktop/assets/data/graficos2x/15016.png
deleted file mode 100644
index 93e3e544..00000000
Binary files a/desktop/assets/data/graficos2x/15016.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15017.png b/desktop/assets/data/graficos2x/15017.png
deleted file mode 100644
index 84d0eef4..00000000
Binary files a/desktop/assets/data/graficos2x/15017.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15018.png b/desktop/assets/data/graficos2x/15018.png
deleted file mode 100644
index 6e9facfa..00000000
Binary files a/desktop/assets/data/graficos2x/15018.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15019.png b/desktop/assets/data/graficos2x/15019.png
deleted file mode 100644
index 0670a318..00000000
Binary files a/desktop/assets/data/graficos2x/15019.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15020.png b/desktop/assets/data/graficos2x/15020.png
deleted file mode 100644
index 98540e16..00000000
Binary files a/desktop/assets/data/graficos2x/15020.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15021.png b/desktop/assets/data/graficos2x/15021.png
deleted file mode 100644
index eba8f58a..00000000
Binary files a/desktop/assets/data/graficos2x/15021.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15022.png b/desktop/assets/data/graficos2x/15022.png
deleted file mode 100644
index cfebff70..00000000
Binary files a/desktop/assets/data/graficos2x/15022.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15023.png b/desktop/assets/data/graficos2x/15023.png
deleted file mode 100644
index b60f3643..00000000
Binary files a/desktop/assets/data/graficos2x/15023.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15024.png b/desktop/assets/data/graficos2x/15024.png
deleted file mode 100644
index 405747cb..00000000
Binary files a/desktop/assets/data/graficos2x/15024.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15025.png b/desktop/assets/data/graficos2x/15025.png
deleted file mode 100644
index 06b2e226..00000000
Binary files a/desktop/assets/data/graficos2x/15025.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15026.png b/desktop/assets/data/graficos2x/15026.png
deleted file mode 100644
index a4eea200..00000000
Binary files a/desktop/assets/data/graficos2x/15026.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15027.png b/desktop/assets/data/graficos2x/15027.png
deleted file mode 100644
index 11984e13..00000000
Binary files a/desktop/assets/data/graficos2x/15027.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15028.png b/desktop/assets/data/graficos2x/15028.png
deleted file mode 100644
index 87a5e596..00000000
Binary files a/desktop/assets/data/graficos2x/15028.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15029.png b/desktop/assets/data/graficos2x/15029.png
deleted file mode 100644
index 8aa95e9f..00000000
Binary files a/desktop/assets/data/graficos2x/15029.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15030.png b/desktop/assets/data/graficos2x/15030.png
deleted file mode 100644
index 3a63c3ec..00000000
Binary files a/desktop/assets/data/graficos2x/15030.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15031.png b/desktop/assets/data/graficos2x/15031.png
deleted file mode 100644
index 5c36e5d0..00000000
Binary files a/desktop/assets/data/graficos2x/15031.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15032.png b/desktop/assets/data/graficos2x/15032.png
deleted file mode 100644
index dc461326..00000000
Binary files a/desktop/assets/data/graficos2x/15032.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15033.png b/desktop/assets/data/graficos2x/15033.png
deleted file mode 100644
index 779cfab0..00000000
Binary files a/desktop/assets/data/graficos2x/15033.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15034.png b/desktop/assets/data/graficos2x/15034.png
deleted file mode 100644
index 5841ac14..00000000
Binary files a/desktop/assets/data/graficos2x/15034.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15035.png b/desktop/assets/data/graficos2x/15035.png
deleted file mode 100644
index 697bd089..00000000
Binary files a/desktop/assets/data/graficos2x/15035.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15036.png b/desktop/assets/data/graficos2x/15036.png
deleted file mode 100644
index 05b075ec..00000000
Binary files a/desktop/assets/data/graficos2x/15036.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15037.png b/desktop/assets/data/graficos2x/15037.png
deleted file mode 100644
index b3342bc7..00000000
Binary files a/desktop/assets/data/graficos2x/15037.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15038.png b/desktop/assets/data/graficos2x/15038.png
deleted file mode 100644
index 5bfac04a..00000000
Binary files a/desktop/assets/data/graficos2x/15038.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15039.png b/desktop/assets/data/graficos2x/15039.png
deleted file mode 100644
index 768bbfa8..00000000
Binary files a/desktop/assets/data/graficos2x/15039.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15040.png b/desktop/assets/data/graficos2x/15040.png
deleted file mode 100644
index 3bb9c66c..00000000
Binary files a/desktop/assets/data/graficos2x/15040.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15041.png b/desktop/assets/data/graficos2x/15041.png
deleted file mode 100644
index a5ec5af2..00000000
Binary files a/desktop/assets/data/graficos2x/15041.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15042.png b/desktop/assets/data/graficos2x/15042.png
deleted file mode 100644
index 875df5fd..00000000
Binary files a/desktop/assets/data/graficos2x/15042.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15043.png b/desktop/assets/data/graficos2x/15043.png
deleted file mode 100644
index 32ec7f0b..00000000
Binary files a/desktop/assets/data/graficos2x/15043.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15044.png b/desktop/assets/data/graficos2x/15044.png
deleted file mode 100644
index 3a15591a..00000000
Binary files a/desktop/assets/data/graficos2x/15044.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15045.png b/desktop/assets/data/graficos2x/15045.png
deleted file mode 100644
index 245c3cfe..00000000
Binary files a/desktop/assets/data/graficos2x/15045.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15046.png b/desktop/assets/data/graficos2x/15046.png
deleted file mode 100644
index d4c30013..00000000
Binary files a/desktop/assets/data/graficos2x/15046.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15047.png b/desktop/assets/data/graficos2x/15047.png
deleted file mode 100644
index 2cbf1964..00000000
Binary files a/desktop/assets/data/graficos2x/15047.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15048.png b/desktop/assets/data/graficos2x/15048.png
deleted file mode 100644
index 64b16843..00000000
Binary files a/desktop/assets/data/graficos2x/15048.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15049.png b/desktop/assets/data/graficos2x/15049.png
deleted file mode 100644
index 6df615a5..00000000
Binary files a/desktop/assets/data/graficos2x/15049.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15050.png b/desktop/assets/data/graficos2x/15050.png
deleted file mode 100644
index f9fcbaf8..00000000
Binary files a/desktop/assets/data/graficos2x/15050.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15051.png b/desktop/assets/data/graficos2x/15051.png
deleted file mode 100644
index 4ac2d30d..00000000
Binary files a/desktop/assets/data/graficos2x/15051.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15052.png b/desktop/assets/data/graficos2x/15052.png
deleted file mode 100644
index 4deacda5..00000000
Binary files a/desktop/assets/data/graficos2x/15052.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15053.png b/desktop/assets/data/graficos2x/15053.png
deleted file mode 100644
index c5fd5048..00000000
Binary files a/desktop/assets/data/graficos2x/15053.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15054.png b/desktop/assets/data/graficos2x/15054.png
deleted file mode 100644
index 8cd39d54..00000000
Binary files a/desktop/assets/data/graficos2x/15054.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15055.png b/desktop/assets/data/graficos2x/15055.png
deleted file mode 100644
index 90d8ff1f..00000000
Binary files a/desktop/assets/data/graficos2x/15055.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15056.png b/desktop/assets/data/graficos2x/15056.png
deleted file mode 100644
index b46b32e9..00000000
Binary files a/desktop/assets/data/graficos2x/15056.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15057.png b/desktop/assets/data/graficos2x/15057.png
deleted file mode 100644
index 64a21b96..00000000
Binary files a/desktop/assets/data/graficos2x/15057.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15058.png b/desktop/assets/data/graficos2x/15058.png
deleted file mode 100644
index c11f9c3b..00000000
Binary files a/desktop/assets/data/graficos2x/15058.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15059.png b/desktop/assets/data/graficos2x/15059.png
deleted file mode 100644
index 020b65ae..00000000
Binary files a/desktop/assets/data/graficos2x/15059.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15060.png b/desktop/assets/data/graficos2x/15060.png
deleted file mode 100644
index a7a2f248..00000000
Binary files a/desktop/assets/data/graficos2x/15060.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15061.png b/desktop/assets/data/graficos2x/15061.png
deleted file mode 100644
index 4e31a335..00000000
Binary files a/desktop/assets/data/graficos2x/15061.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15062.png b/desktop/assets/data/graficos2x/15062.png
deleted file mode 100644
index be8007e4..00000000
Binary files a/desktop/assets/data/graficos2x/15062.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15063.png b/desktop/assets/data/graficos2x/15063.png
deleted file mode 100644
index e7bbe04c..00000000
Binary files a/desktop/assets/data/graficos2x/15063.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15064.png b/desktop/assets/data/graficos2x/15064.png
deleted file mode 100644
index a77895db..00000000
Binary files a/desktop/assets/data/graficos2x/15064.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15065.png b/desktop/assets/data/graficos2x/15065.png
deleted file mode 100644
index 37f73438..00000000
Binary files a/desktop/assets/data/graficos2x/15065.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15066.png b/desktop/assets/data/graficos2x/15066.png
deleted file mode 100644
index b828fd36..00000000
Binary files a/desktop/assets/data/graficos2x/15066.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15067.png b/desktop/assets/data/graficos2x/15067.png
deleted file mode 100644
index 0b74d1f0..00000000
Binary files a/desktop/assets/data/graficos2x/15067.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15068.png b/desktop/assets/data/graficos2x/15068.png
deleted file mode 100644
index cc8a207f..00000000
Binary files a/desktop/assets/data/graficos2x/15068.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15069.png b/desktop/assets/data/graficos2x/15069.png
deleted file mode 100644
index 1801955e..00000000
Binary files a/desktop/assets/data/graficos2x/15069.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15070.png b/desktop/assets/data/graficos2x/15070.png
deleted file mode 100644
index 559f4fa3..00000000
Binary files a/desktop/assets/data/graficos2x/15070.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15071.png b/desktop/assets/data/graficos2x/15071.png
deleted file mode 100644
index 25db564d..00000000
Binary files a/desktop/assets/data/graficos2x/15071.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15072.png b/desktop/assets/data/graficos2x/15072.png
deleted file mode 100644
index 54a55157..00000000
Binary files a/desktop/assets/data/graficos2x/15072.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15073.png b/desktop/assets/data/graficos2x/15073.png
deleted file mode 100644
index 6eb625f7..00000000
Binary files a/desktop/assets/data/graficos2x/15073.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15074.png b/desktop/assets/data/graficos2x/15074.png
deleted file mode 100644
index cc205cd8..00000000
Binary files a/desktop/assets/data/graficos2x/15074.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15075.png b/desktop/assets/data/graficos2x/15075.png
deleted file mode 100644
index 3c2c03f7..00000000
Binary files a/desktop/assets/data/graficos2x/15075.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15076.png b/desktop/assets/data/graficos2x/15076.png
deleted file mode 100644
index 7f2b7fe5..00000000
Binary files a/desktop/assets/data/graficos2x/15076.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15077.png b/desktop/assets/data/graficos2x/15077.png
deleted file mode 100644
index 3a1a8846..00000000
Binary files a/desktop/assets/data/graficos2x/15077.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15078.png b/desktop/assets/data/graficos2x/15078.png
deleted file mode 100644
index 6d782ac8..00000000
Binary files a/desktop/assets/data/graficos2x/15078.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15079.png b/desktop/assets/data/graficos2x/15079.png
deleted file mode 100644
index 895be1c1..00000000
Binary files a/desktop/assets/data/graficos2x/15079.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15080.png b/desktop/assets/data/graficos2x/15080.png
deleted file mode 100644
index 3a63c3ec..00000000
Binary files a/desktop/assets/data/graficos2x/15080.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15081.png b/desktop/assets/data/graficos2x/15081.png
deleted file mode 100644
index b9cfc257..00000000
Binary files a/desktop/assets/data/graficos2x/15081.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15082.png b/desktop/assets/data/graficos2x/15082.png
deleted file mode 100644
index 2e67a461..00000000
Binary files a/desktop/assets/data/graficos2x/15082.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15083.png b/desktop/assets/data/graficos2x/15083.png
deleted file mode 100644
index 954e8a6b..00000000
Binary files a/desktop/assets/data/graficos2x/15083.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15084.png b/desktop/assets/data/graficos2x/15084.png
deleted file mode 100644
index 46bd646f..00000000
Binary files a/desktop/assets/data/graficos2x/15084.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15085.png b/desktop/assets/data/graficos2x/15085.png
deleted file mode 100644
index ef7a87d0..00000000
Binary files a/desktop/assets/data/graficos2x/15085.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15086.png b/desktop/assets/data/graficos2x/15086.png
deleted file mode 100644
index 1acd3d35..00000000
Binary files a/desktop/assets/data/graficos2x/15086.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15087.png b/desktop/assets/data/graficos2x/15087.png
deleted file mode 100644
index 0f914f09..00000000
Binary files a/desktop/assets/data/graficos2x/15087.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15088.png b/desktop/assets/data/graficos2x/15088.png
deleted file mode 100644
index c41b23c2..00000000
Binary files a/desktop/assets/data/graficos2x/15088.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15089.png b/desktop/assets/data/graficos2x/15089.png
deleted file mode 100644
index df7c34af..00000000
Binary files a/desktop/assets/data/graficos2x/15089.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15090.png b/desktop/assets/data/graficos2x/15090.png
deleted file mode 100644
index 57042ba3..00000000
Binary files a/desktop/assets/data/graficos2x/15090.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15091.png b/desktop/assets/data/graficos2x/15091.png
deleted file mode 100644
index 67dfd4cd..00000000
Binary files a/desktop/assets/data/graficos2x/15091.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15092.png b/desktop/assets/data/graficos2x/15092.png
deleted file mode 100644
index 1ce43a97..00000000
Binary files a/desktop/assets/data/graficos2x/15092.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15093.png b/desktop/assets/data/graficos2x/15093.png
deleted file mode 100644
index bb2f39fc..00000000
Binary files a/desktop/assets/data/graficos2x/15093.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15094.png b/desktop/assets/data/graficos2x/15094.png
deleted file mode 100644
index d23edc89..00000000
Binary files a/desktop/assets/data/graficos2x/15094.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15095.png b/desktop/assets/data/graficos2x/15095.png
deleted file mode 100644
index 03ac966b..00000000
Binary files a/desktop/assets/data/graficos2x/15095.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15096.png b/desktop/assets/data/graficos2x/15096.png
deleted file mode 100644
index 525da9d4..00000000
Binary files a/desktop/assets/data/graficos2x/15096.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15097.png b/desktop/assets/data/graficos2x/15097.png
deleted file mode 100644
index f69064b1..00000000
Binary files a/desktop/assets/data/graficos2x/15097.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15098.png b/desktop/assets/data/graficos2x/15098.png
deleted file mode 100644
index 497a82c2..00000000
Binary files a/desktop/assets/data/graficos2x/15098.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15099.png b/desktop/assets/data/graficos2x/15099.png
deleted file mode 100644
index 4d49b069..00000000
Binary files a/desktop/assets/data/graficos2x/15099.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/151.png b/desktop/assets/data/graficos2x/151.png
deleted file mode 100644
index 1f336e29..00000000
Binary files a/desktop/assets/data/graficos2x/151.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15100.png b/desktop/assets/data/graficos2x/15100.png
deleted file mode 100644
index c1227b65..00000000
Binary files a/desktop/assets/data/graficos2x/15100.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15101.png b/desktop/assets/data/graficos2x/15101.png
deleted file mode 100644
index dea4797c..00000000
Binary files a/desktop/assets/data/graficos2x/15101.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15102.png b/desktop/assets/data/graficos2x/15102.png
deleted file mode 100644
index 8663db48..00000000
Binary files a/desktop/assets/data/graficos2x/15102.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15103.png b/desktop/assets/data/graficos2x/15103.png
deleted file mode 100644
index 0648914c..00000000
Binary files a/desktop/assets/data/graficos2x/15103.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15104.png b/desktop/assets/data/graficos2x/15104.png
deleted file mode 100644
index 983eea53..00000000
Binary files a/desktop/assets/data/graficos2x/15104.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15105.png b/desktop/assets/data/graficos2x/15105.png
deleted file mode 100644
index 4a277875..00000000
Binary files a/desktop/assets/data/graficos2x/15105.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15106.png b/desktop/assets/data/graficos2x/15106.png
deleted file mode 100644
index 5ee7e9bc..00000000
Binary files a/desktop/assets/data/graficos2x/15106.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15107.png b/desktop/assets/data/graficos2x/15107.png
deleted file mode 100644
index c11f9c3b..00000000
Binary files a/desktop/assets/data/graficos2x/15107.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15108.png b/desktop/assets/data/graficos2x/15108.png
deleted file mode 100644
index b2ebbde0..00000000
Binary files a/desktop/assets/data/graficos2x/15108.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15109.png b/desktop/assets/data/graficos2x/15109.png
deleted file mode 100644
index 29016d56..00000000
Binary files a/desktop/assets/data/graficos2x/15109.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15110.png b/desktop/assets/data/graficos2x/15110.png
deleted file mode 100644
index f1e95024..00000000
Binary files a/desktop/assets/data/graficos2x/15110.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15111.png b/desktop/assets/data/graficos2x/15111.png
deleted file mode 100644
index 599cde7d..00000000
Binary files a/desktop/assets/data/graficos2x/15111.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15112.png b/desktop/assets/data/graficos2x/15112.png
deleted file mode 100644
index c9d84d7a..00000000
Binary files a/desktop/assets/data/graficos2x/15112.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15113.png b/desktop/assets/data/graficos2x/15113.png
deleted file mode 100644
index 2bef060b..00000000
Binary files a/desktop/assets/data/graficos2x/15113.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15114.png b/desktop/assets/data/graficos2x/15114.png
deleted file mode 100644
index b2c831e4..00000000
Binary files a/desktop/assets/data/graficos2x/15114.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15115.png b/desktop/assets/data/graficos2x/15115.png
deleted file mode 100644
index 4e869866..00000000
Binary files a/desktop/assets/data/graficos2x/15115.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15116.png b/desktop/assets/data/graficos2x/15116.png
deleted file mode 100644
index 5f5fc662..00000000
Binary files a/desktop/assets/data/graficos2x/15116.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15117.png b/desktop/assets/data/graficos2x/15117.png
deleted file mode 100644
index 36137c4a..00000000
Binary files a/desktop/assets/data/graficos2x/15117.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15118.png b/desktop/assets/data/graficos2x/15118.png
deleted file mode 100644
index 21889a1f..00000000
Binary files a/desktop/assets/data/graficos2x/15118.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15119.png b/desktop/assets/data/graficos2x/15119.png
deleted file mode 100644
index ab4fcda1..00000000
Binary files a/desktop/assets/data/graficos2x/15119.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15120.png b/desktop/assets/data/graficos2x/15120.png
deleted file mode 100644
index 2c24b154..00000000
Binary files a/desktop/assets/data/graficos2x/15120.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15121.png b/desktop/assets/data/graficos2x/15121.png
deleted file mode 100644
index 0de45834..00000000
Binary files a/desktop/assets/data/graficos2x/15121.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15122.png b/desktop/assets/data/graficos2x/15122.png
deleted file mode 100644
index 1691487f..00000000
Binary files a/desktop/assets/data/graficos2x/15122.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15123.png b/desktop/assets/data/graficos2x/15123.png
deleted file mode 100644
index e38a964b..00000000
Binary files a/desktop/assets/data/graficos2x/15123.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15124.png b/desktop/assets/data/graficos2x/15124.png
deleted file mode 100644
index 44fadd53..00000000
Binary files a/desktop/assets/data/graficos2x/15124.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15125.png b/desktop/assets/data/graficos2x/15125.png
deleted file mode 100644
index ab2a9010..00000000
Binary files a/desktop/assets/data/graficos2x/15125.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15126.png b/desktop/assets/data/graficos2x/15126.png
deleted file mode 100644
index c784f89c..00000000
Binary files a/desktop/assets/data/graficos2x/15126.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15127.png b/desktop/assets/data/graficos2x/15127.png
deleted file mode 100644
index be648f52..00000000
Binary files a/desktop/assets/data/graficos2x/15127.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15128.png b/desktop/assets/data/graficos2x/15128.png
deleted file mode 100644
index babbf22e..00000000
Binary files a/desktop/assets/data/graficos2x/15128.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15129.png b/desktop/assets/data/graficos2x/15129.png
deleted file mode 100644
index ba6b339c..00000000
Binary files a/desktop/assets/data/graficos2x/15129.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15130.png b/desktop/assets/data/graficos2x/15130.png
deleted file mode 100644
index 9a8a0a84..00000000
Binary files a/desktop/assets/data/graficos2x/15130.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15131.png b/desktop/assets/data/graficos2x/15131.png
deleted file mode 100644
index 80242680..00000000
Binary files a/desktop/assets/data/graficos2x/15131.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15132.png b/desktop/assets/data/graficos2x/15132.png
deleted file mode 100644
index 7911ea5d..00000000
Binary files a/desktop/assets/data/graficos2x/15132.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15133.png b/desktop/assets/data/graficos2x/15133.png
deleted file mode 100644
index 72e3b502..00000000
Binary files a/desktop/assets/data/graficos2x/15133.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15134.png b/desktop/assets/data/graficos2x/15134.png
deleted file mode 100644
index 80e3d6b0..00000000
Binary files a/desktop/assets/data/graficos2x/15134.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15135.png b/desktop/assets/data/graficos2x/15135.png
deleted file mode 100644
index 0fd9f70c..00000000
Binary files a/desktop/assets/data/graficos2x/15135.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15136.png b/desktop/assets/data/graficos2x/15136.png
deleted file mode 100644
index a055013a..00000000
Binary files a/desktop/assets/data/graficos2x/15136.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15137.png b/desktop/assets/data/graficos2x/15137.png
deleted file mode 100644
index f1c9c982..00000000
Binary files a/desktop/assets/data/graficos2x/15137.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15138.png b/desktop/assets/data/graficos2x/15138.png
deleted file mode 100644
index 5dcf7867..00000000
Binary files a/desktop/assets/data/graficos2x/15138.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15139.png b/desktop/assets/data/graficos2x/15139.png
deleted file mode 100644
index 6c129e28..00000000
Binary files a/desktop/assets/data/graficos2x/15139.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15140.png b/desktop/assets/data/graficos2x/15140.png
deleted file mode 100644
index c0c58b66..00000000
Binary files a/desktop/assets/data/graficos2x/15140.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15141.png b/desktop/assets/data/graficos2x/15141.png
deleted file mode 100644
index 5a0c9034..00000000
Binary files a/desktop/assets/data/graficos2x/15141.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15142.png b/desktop/assets/data/graficos2x/15142.png
deleted file mode 100644
index 47c3f4c7..00000000
Binary files a/desktop/assets/data/graficos2x/15142.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15143.png b/desktop/assets/data/graficos2x/15143.png
deleted file mode 100644
index d4efee82..00000000
Binary files a/desktop/assets/data/graficos2x/15143.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15144.png b/desktop/assets/data/graficos2x/15144.png
deleted file mode 100644
index 30452912..00000000
Binary files a/desktop/assets/data/graficos2x/15144.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15145.png b/desktop/assets/data/graficos2x/15145.png
deleted file mode 100644
index d168c01e..00000000
Binary files a/desktop/assets/data/graficos2x/15145.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15146.png b/desktop/assets/data/graficos2x/15146.png
deleted file mode 100644
index a5c1195e..00000000
Binary files a/desktop/assets/data/graficos2x/15146.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15147.png b/desktop/assets/data/graficos2x/15147.png
deleted file mode 100644
index afbd4c60..00000000
Binary files a/desktop/assets/data/graficos2x/15147.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15148.png b/desktop/assets/data/graficos2x/15148.png
deleted file mode 100644
index 9df7bab8..00000000
Binary files a/desktop/assets/data/graficos2x/15148.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15149.png b/desktop/assets/data/graficos2x/15149.png
deleted file mode 100644
index ca416915..00000000
Binary files a/desktop/assets/data/graficos2x/15149.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15150.png b/desktop/assets/data/graficos2x/15150.png
deleted file mode 100644
index 049ffebb..00000000
Binary files a/desktop/assets/data/graficos2x/15150.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15151.png b/desktop/assets/data/graficos2x/15151.png
deleted file mode 100644
index 26d5510c..00000000
Binary files a/desktop/assets/data/graficos2x/15151.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15152.png b/desktop/assets/data/graficos2x/15152.png
deleted file mode 100644
index 5aaf0e49..00000000
Binary files a/desktop/assets/data/graficos2x/15152.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15153.png b/desktop/assets/data/graficos2x/15153.png
deleted file mode 100644
index 3bb00fae..00000000
Binary files a/desktop/assets/data/graficos2x/15153.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15154.png b/desktop/assets/data/graficos2x/15154.png
deleted file mode 100644
index 3b0d3414..00000000
Binary files a/desktop/assets/data/graficos2x/15154.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15155.png b/desktop/assets/data/graficos2x/15155.png
deleted file mode 100644
index 1c61920c..00000000
Binary files a/desktop/assets/data/graficos2x/15155.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15156.png b/desktop/assets/data/graficos2x/15156.png
deleted file mode 100644
index e4ad8d0f..00000000
Binary files a/desktop/assets/data/graficos2x/15156.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15157.png b/desktop/assets/data/graficos2x/15157.png
deleted file mode 100644
index 1d9e37a0..00000000
Binary files a/desktop/assets/data/graficos2x/15157.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15158.png b/desktop/assets/data/graficos2x/15158.png
deleted file mode 100644
index 99ffb18a..00000000
Binary files a/desktop/assets/data/graficos2x/15158.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15159.png b/desktop/assets/data/graficos2x/15159.png
deleted file mode 100644
index e41bb630..00000000
Binary files a/desktop/assets/data/graficos2x/15159.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15160.png b/desktop/assets/data/graficos2x/15160.png
deleted file mode 100644
index c5790133..00000000
Binary files a/desktop/assets/data/graficos2x/15160.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15161.png b/desktop/assets/data/graficos2x/15161.png
deleted file mode 100644
index 04b70ff8..00000000
Binary files a/desktop/assets/data/graficos2x/15161.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15162.png b/desktop/assets/data/graficos2x/15162.png
deleted file mode 100644
index cb154a2e..00000000
Binary files a/desktop/assets/data/graficos2x/15162.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15163.png b/desktop/assets/data/graficos2x/15163.png
deleted file mode 100644
index ee212a04..00000000
Binary files a/desktop/assets/data/graficos2x/15163.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15164.png b/desktop/assets/data/graficos2x/15164.png
deleted file mode 100644
index 6806ba11..00000000
Binary files a/desktop/assets/data/graficos2x/15164.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15165.png b/desktop/assets/data/graficos2x/15165.png
deleted file mode 100644
index b47dbf8d..00000000
Binary files a/desktop/assets/data/graficos2x/15165.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15166.png b/desktop/assets/data/graficos2x/15166.png
deleted file mode 100644
index 334f17ce..00000000
Binary files a/desktop/assets/data/graficos2x/15166.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15167.png b/desktop/assets/data/graficos2x/15167.png
deleted file mode 100644
index e71233ce..00000000
Binary files a/desktop/assets/data/graficos2x/15167.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15169.png b/desktop/assets/data/graficos2x/15169.png
deleted file mode 100644
index cc0222b1..00000000
Binary files a/desktop/assets/data/graficos2x/15169.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15170.png b/desktop/assets/data/graficos2x/15170.png
deleted file mode 100644
index 5bea1aca..00000000
Binary files a/desktop/assets/data/graficos2x/15170.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15171.png b/desktop/assets/data/graficos2x/15171.png
deleted file mode 100644
index 7b559246..00000000
Binary files a/desktop/assets/data/graficos2x/15171.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15172.png b/desktop/assets/data/graficos2x/15172.png
deleted file mode 100644
index 2c8fc169..00000000
Binary files a/desktop/assets/data/graficos2x/15172.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15173.png b/desktop/assets/data/graficos2x/15173.png
deleted file mode 100644
index 1aaada62..00000000
Binary files a/desktop/assets/data/graficos2x/15173.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15174.png b/desktop/assets/data/graficos2x/15174.png
deleted file mode 100644
index 398f0a95..00000000
Binary files a/desktop/assets/data/graficos2x/15174.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15175.png b/desktop/assets/data/graficos2x/15175.png
deleted file mode 100644
index 82800ee9..00000000
Binary files a/desktop/assets/data/graficos2x/15175.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15176.png b/desktop/assets/data/graficos2x/15176.png
deleted file mode 100644
index 641cdb1f..00000000
Binary files a/desktop/assets/data/graficos2x/15176.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15177.png b/desktop/assets/data/graficos2x/15177.png
deleted file mode 100644
index 80fb9e5c..00000000
Binary files a/desktop/assets/data/graficos2x/15177.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15178.png b/desktop/assets/data/graficos2x/15178.png
deleted file mode 100644
index a1ecd076..00000000
Binary files a/desktop/assets/data/graficos2x/15178.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15179.png b/desktop/assets/data/graficos2x/15179.png
deleted file mode 100644
index 0d02daa3..00000000
Binary files a/desktop/assets/data/graficos2x/15179.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15180.png b/desktop/assets/data/graficos2x/15180.png
deleted file mode 100644
index 10d4f27d..00000000
Binary files a/desktop/assets/data/graficos2x/15180.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15181.png b/desktop/assets/data/graficos2x/15181.png
deleted file mode 100644
index 3e986b6f..00000000
Binary files a/desktop/assets/data/graficos2x/15181.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15182.png b/desktop/assets/data/graficos2x/15182.png
deleted file mode 100644
index 42f669a0..00000000
Binary files a/desktop/assets/data/graficos2x/15182.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15183.png b/desktop/assets/data/graficos2x/15183.png
deleted file mode 100644
index 4ada01ef..00000000
Binary files a/desktop/assets/data/graficos2x/15183.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15184.png b/desktop/assets/data/graficos2x/15184.png
deleted file mode 100644
index 66b0253e..00000000
Binary files a/desktop/assets/data/graficos2x/15184.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15185.png b/desktop/assets/data/graficos2x/15185.png
deleted file mode 100644
index 960bad8c..00000000
Binary files a/desktop/assets/data/graficos2x/15185.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15186.png b/desktop/assets/data/graficos2x/15186.png
deleted file mode 100644
index 38f122ec..00000000
Binary files a/desktop/assets/data/graficos2x/15186.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15187.png b/desktop/assets/data/graficos2x/15187.png
deleted file mode 100644
index 201c4b57..00000000
Binary files a/desktop/assets/data/graficos2x/15187.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15188.png b/desktop/assets/data/graficos2x/15188.png
deleted file mode 100644
index 6b02b7a1..00000000
Binary files a/desktop/assets/data/graficos2x/15188.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15189.png b/desktop/assets/data/graficos2x/15189.png
deleted file mode 100644
index 044eb58f..00000000
Binary files a/desktop/assets/data/graficos2x/15189.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15190.png b/desktop/assets/data/graficos2x/15190.png
deleted file mode 100644
index 2ccec766..00000000
Binary files a/desktop/assets/data/graficos2x/15190.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15191.png b/desktop/assets/data/graficos2x/15191.png
deleted file mode 100644
index 9eee2f87..00000000
Binary files a/desktop/assets/data/graficos2x/15191.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15192.png b/desktop/assets/data/graficos2x/15192.png
deleted file mode 100644
index ef45f37d..00000000
Binary files a/desktop/assets/data/graficos2x/15192.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15193.png b/desktop/assets/data/graficos2x/15193.png
deleted file mode 100644
index 3fe3714a..00000000
Binary files a/desktop/assets/data/graficos2x/15193.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15194.png b/desktop/assets/data/graficos2x/15194.png
deleted file mode 100644
index c602b490..00000000
Binary files a/desktop/assets/data/graficos2x/15194.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15195.png b/desktop/assets/data/graficos2x/15195.png
deleted file mode 100644
index b8c7c0a9..00000000
Binary files a/desktop/assets/data/graficos2x/15195.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15196.png b/desktop/assets/data/graficos2x/15196.png
deleted file mode 100644
index fbb5f467..00000000
Binary files a/desktop/assets/data/graficos2x/15196.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15197.png b/desktop/assets/data/graficos2x/15197.png
deleted file mode 100644
index 5bba87e7..00000000
Binary files a/desktop/assets/data/graficos2x/15197.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15198.png b/desktop/assets/data/graficos2x/15198.png
deleted file mode 100644
index f7c434ee..00000000
Binary files a/desktop/assets/data/graficos2x/15198.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15199.png b/desktop/assets/data/graficos2x/15199.png
deleted file mode 100644
index 23c1a236..00000000
Binary files a/desktop/assets/data/graficos2x/15199.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/152.png b/desktop/assets/data/graficos2x/152.png
deleted file mode 100644
index 84ed97af..00000000
Binary files a/desktop/assets/data/graficos2x/152.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15200.png b/desktop/assets/data/graficos2x/15200.png
deleted file mode 100644
index e13def92..00000000
Binary files a/desktop/assets/data/graficos2x/15200.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15201.png b/desktop/assets/data/graficos2x/15201.png
deleted file mode 100644
index b8f95de9..00000000
Binary files a/desktop/assets/data/graficos2x/15201.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15202.png b/desktop/assets/data/graficos2x/15202.png
deleted file mode 100644
index 62021cfe..00000000
Binary files a/desktop/assets/data/graficos2x/15202.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15203.png b/desktop/assets/data/graficos2x/15203.png
deleted file mode 100644
index dc00a9dd..00000000
Binary files a/desktop/assets/data/graficos2x/15203.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15204.png b/desktop/assets/data/graficos2x/15204.png
deleted file mode 100644
index e21466bd..00000000
Binary files a/desktop/assets/data/graficos2x/15204.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15205.png b/desktop/assets/data/graficos2x/15205.png
deleted file mode 100644
index f152bfb9..00000000
Binary files a/desktop/assets/data/graficos2x/15205.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15206.png b/desktop/assets/data/graficos2x/15206.png
deleted file mode 100644
index d9148420..00000000
Binary files a/desktop/assets/data/graficos2x/15206.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15207.png b/desktop/assets/data/graficos2x/15207.png
deleted file mode 100644
index 29016d56..00000000
Binary files a/desktop/assets/data/graficos2x/15207.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15208.png b/desktop/assets/data/graficos2x/15208.png
deleted file mode 100644
index f633aaa9..00000000
Binary files a/desktop/assets/data/graficos2x/15208.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15209.png b/desktop/assets/data/graficos2x/15209.png
deleted file mode 100644
index 7d157d0f..00000000
Binary files a/desktop/assets/data/graficos2x/15209.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15210.png b/desktop/assets/data/graficos2x/15210.png
deleted file mode 100644
index 8f446674..00000000
Binary files a/desktop/assets/data/graficos2x/15210.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15211.png b/desktop/assets/data/graficos2x/15211.png
deleted file mode 100644
index 384aa8c3..00000000
Binary files a/desktop/assets/data/graficos2x/15211.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15212.png b/desktop/assets/data/graficos2x/15212.png
deleted file mode 100644
index b357aef3..00000000
Binary files a/desktop/assets/data/graficos2x/15212.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15213.png b/desktop/assets/data/graficos2x/15213.png
deleted file mode 100644
index c51e0694..00000000
Binary files a/desktop/assets/data/graficos2x/15213.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15214.png b/desktop/assets/data/graficos2x/15214.png
deleted file mode 100644
index 907c5567..00000000
Binary files a/desktop/assets/data/graficos2x/15214.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15215.png b/desktop/assets/data/graficos2x/15215.png
deleted file mode 100644
index dd56353d..00000000
Binary files a/desktop/assets/data/graficos2x/15215.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15216.png b/desktop/assets/data/graficos2x/15216.png
deleted file mode 100644
index 9bde26fe..00000000
Binary files a/desktop/assets/data/graficos2x/15216.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15217.png b/desktop/assets/data/graficos2x/15217.png
deleted file mode 100644
index 465ddb11..00000000
Binary files a/desktop/assets/data/graficos2x/15217.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15218.png b/desktop/assets/data/graficos2x/15218.png
deleted file mode 100644
index 3e6d08af..00000000
Binary files a/desktop/assets/data/graficos2x/15218.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15219.png b/desktop/assets/data/graficos2x/15219.png
deleted file mode 100644
index aeb3b059..00000000
Binary files a/desktop/assets/data/graficos2x/15219.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15220.png b/desktop/assets/data/graficos2x/15220.png
deleted file mode 100644
index cf6777e3..00000000
Binary files a/desktop/assets/data/graficos2x/15220.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15221.png b/desktop/assets/data/graficos2x/15221.png
deleted file mode 100644
index 1a55a475..00000000
Binary files a/desktop/assets/data/graficos2x/15221.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15222.png b/desktop/assets/data/graficos2x/15222.png
deleted file mode 100644
index 8405ee53..00000000
Binary files a/desktop/assets/data/graficos2x/15222.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15223.png b/desktop/assets/data/graficos2x/15223.png
deleted file mode 100644
index 741fccfc..00000000
Binary files a/desktop/assets/data/graficos2x/15223.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15224.png b/desktop/assets/data/graficos2x/15224.png
deleted file mode 100644
index 90ceb3bb..00000000
Binary files a/desktop/assets/data/graficos2x/15224.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15225.png b/desktop/assets/data/graficos2x/15225.png
deleted file mode 100644
index 4faf2abe..00000000
Binary files a/desktop/assets/data/graficos2x/15225.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15226.png b/desktop/assets/data/graficos2x/15226.png
deleted file mode 100644
index 8db922b0..00000000
Binary files a/desktop/assets/data/graficos2x/15226.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15227.png b/desktop/assets/data/graficos2x/15227.png
deleted file mode 100644
index 7cbbea57..00000000
Binary files a/desktop/assets/data/graficos2x/15227.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15228.png b/desktop/assets/data/graficos2x/15228.png
deleted file mode 100644
index 59efb293..00000000
Binary files a/desktop/assets/data/graficos2x/15228.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15229.png b/desktop/assets/data/graficos2x/15229.png
deleted file mode 100644
index abbb2cfa..00000000
Binary files a/desktop/assets/data/graficos2x/15229.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15230.png b/desktop/assets/data/graficos2x/15230.png
deleted file mode 100644
index 609ee76d..00000000
Binary files a/desktop/assets/data/graficos2x/15230.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/15231.png b/desktop/assets/data/graficos2x/15231.png
deleted file mode 100644
index db08d5fa..00000000
Binary files a/desktop/assets/data/graficos2x/15231.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/153.png b/desktop/assets/data/graficos2x/153.png
deleted file mode 100644
index ad48a00f..00000000
Binary files a/desktop/assets/data/graficos2x/153.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/154.png b/desktop/assets/data/graficos2x/154.png
deleted file mode 100644
index 17543485..00000000
Binary files a/desktop/assets/data/graficos2x/154.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/155.png b/desktop/assets/data/graficos2x/155.png
deleted file mode 100644
index dfbf3a87..00000000
Binary files a/desktop/assets/data/graficos2x/155.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/156.png b/desktop/assets/data/graficos2x/156.png
deleted file mode 100644
index adc07c7a..00000000
Binary files a/desktop/assets/data/graficos2x/156.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/157.png b/desktop/assets/data/graficos2x/157.png
deleted file mode 100644
index 72c0f7f6..00000000
Binary files a/desktop/assets/data/graficos2x/157.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/158.png b/desktop/assets/data/graficos2x/158.png
deleted file mode 100644
index 7de81922..00000000
Binary files a/desktop/assets/data/graficos2x/158.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/159.png b/desktop/assets/data/graficos2x/159.png
deleted file mode 100644
index 26de1823..00000000
Binary files a/desktop/assets/data/graficos2x/159.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16.png b/desktop/assets/data/graficos2x/16.png
deleted file mode 100644
index 5fb3b3eb..00000000
Binary files a/desktop/assets/data/graficos2x/16.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/160.png b/desktop/assets/data/graficos2x/160.png
deleted file mode 100644
index 0d199626..00000000
Binary files a/desktop/assets/data/graficos2x/160.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16000.png b/desktop/assets/data/graficos2x/16000.png
deleted file mode 100644
index e5bb70ca..00000000
Binary files a/desktop/assets/data/graficos2x/16000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16001.png b/desktop/assets/data/graficos2x/16001.png
deleted file mode 100644
index 70f7ef86..00000000
Binary files a/desktop/assets/data/graficos2x/16001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16002.png b/desktop/assets/data/graficos2x/16002.png
deleted file mode 100644
index 34991aa7..00000000
Binary files a/desktop/assets/data/graficos2x/16002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16003.png b/desktop/assets/data/graficos2x/16003.png
deleted file mode 100644
index 6d57a2cd..00000000
Binary files a/desktop/assets/data/graficos2x/16003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16004.png b/desktop/assets/data/graficos2x/16004.png
deleted file mode 100644
index 3e3b2ee7..00000000
Binary files a/desktop/assets/data/graficos2x/16004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16005.png b/desktop/assets/data/graficos2x/16005.png
deleted file mode 100644
index 88341f49..00000000
Binary files a/desktop/assets/data/graficos2x/16005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16006.png b/desktop/assets/data/graficos2x/16006.png
deleted file mode 100644
index fda7427f..00000000
Binary files a/desktop/assets/data/graficos2x/16006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16007.png b/desktop/assets/data/graficos2x/16007.png
deleted file mode 100644
index 341304b0..00000000
Binary files a/desktop/assets/data/graficos2x/16007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16008.png b/desktop/assets/data/graficos2x/16008.png
deleted file mode 100644
index 7ebf9b46..00000000
Binary files a/desktop/assets/data/graficos2x/16008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16009.png b/desktop/assets/data/graficos2x/16009.png
deleted file mode 100644
index b9c28b1f..00000000
Binary files a/desktop/assets/data/graficos2x/16009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16010.png b/desktop/assets/data/graficos2x/16010.png
deleted file mode 100644
index 91769185..00000000
Binary files a/desktop/assets/data/graficos2x/16010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16011.png b/desktop/assets/data/graficos2x/16011.png
deleted file mode 100644
index 434b6eed..00000000
Binary files a/desktop/assets/data/graficos2x/16011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16012.png b/desktop/assets/data/graficos2x/16012.png
deleted file mode 100644
index 9649ae5d..00000000
Binary files a/desktop/assets/data/graficos2x/16012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16013.png b/desktop/assets/data/graficos2x/16013.png
deleted file mode 100644
index f5cd3b9b..00000000
Binary files a/desktop/assets/data/graficos2x/16013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16014.png b/desktop/assets/data/graficos2x/16014.png
deleted file mode 100644
index a96519a4..00000000
Binary files a/desktop/assets/data/graficos2x/16014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16015.png b/desktop/assets/data/graficos2x/16015.png
deleted file mode 100644
index dc927552..00000000
Binary files a/desktop/assets/data/graficos2x/16015.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16016.png b/desktop/assets/data/graficos2x/16016.png
deleted file mode 100644
index 532ec129..00000000
Binary files a/desktop/assets/data/graficos2x/16016.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16017.png b/desktop/assets/data/graficos2x/16017.png
deleted file mode 100644
index f367c89b..00000000
Binary files a/desktop/assets/data/graficos2x/16017.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16018.png b/desktop/assets/data/graficos2x/16018.png
deleted file mode 100644
index a76fb4a0..00000000
Binary files a/desktop/assets/data/graficos2x/16018.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16019.png b/desktop/assets/data/graficos2x/16019.png
deleted file mode 100644
index a4b35754..00000000
Binary files a/desktop/assets/data/graficos2x/16019.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16020.png b/desktop/assets/data/graficos2x/16020.png
deleted file mode 100644
index ce7b1d53..00000000
Binary files a/desktop/assets/data/graficos2x/16020.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16021.png b/desktop/assets/data/graficos2x/16021.png
deleted file mode 100644
index 76baac69..00000000
Binary files a/desktop/assets/data/graficos2x/16021.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16022.png b/desktop/assets/data/graficos2x/16022.png
deleted file mode 100644
index b1a8b7f2..00000000
Binary files a/desktop/assets/data/graficos2x/16022.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16023.png b/desktop/assets/data/graficos2x/16023.png
deleted file mode 100644
index 903f33a0..00000000
Binary files a/desktop/assets/data/graficos2x/16023.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16024.png b/desktop/assets/data/graficos2x/16024.png
deleted file mode 100644
index 89968d6e..00000000
Binary files a/desktop/assets/data/graficos2x/16024.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16025.png b/desktop/assets/data/graficos2x/16025.png
deleted file mode 100644
index e2c19af6..00000000
Binary files a/desktop/assets/data/graficos2x/16025.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16026.png b/desktop/assets/data/graficos2x/16026.png
deleted file mode 100644
index cee5afc3..00000000
Binary files a/desktop/assets/data/graficos2x/16026.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16027.png b/desktop/assets/data/graficos2x/16027.png
deleted file mode 100644
index 82526f31..00000000
Binary files a/desktop/assets/data/graficos2x/16027.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16028.png b/desktop/assets/data/graficos2x/16028.png
deleted file mode 100644
index 6a49e23a..00000000
Binary files a/desktop/assets/data/graficos2x/16028.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16029.png b/desktop/assets/data/graficos2x/16029.png
deleted file mode 100644
index 92739d54..00000000
Binary files a/desktop/assets/data/graficos2x/16029.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16030.png b/desktop/assets/data/graficos2x/16030.png
deleted file mode 100644
index 81b18aef..00000000
Binary files a/desktop/assets/data/graficos2x/16030.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16031.png b/desktop/assets/data/graficos2x/16031.png
deleted file mode 100644
index 390380a4..00000000
Binary files a/desktop/assets/data/graficos2x/16031.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16032.png b/desktop/assets/data/graficos2x/16032.png
deleted file mode 100644
index 990df091..00000000
Binary files a/desktop/assets/data/graficos2x/16032.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16033.png b/desktop/assets/data/graficos2x/16033.png
deleted file mode 100644
index ad6dd711..00000000
Binary files a/desktop/assets/data/graficos2x/16033.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16034.png b/desktop/assets/data/graficos2x/16034.png
deleted file mode 100644
index c33d7959..00000000
Binary files a/desktop/assets/data/graficos2x/16034.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16035.png b/desktop/assets/data/graficos2x/16035.png
deleted file mode 100644
index 1334f217..00000000
Binary files a/desktop/assets/data/graficos2x/16035.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16036.png b/desktop/assets/data/graficos2x/16036.png
deleted file mode 100644
index b13d0c6e..00000000
Binary files a/desktop/assets/data/graficos2x/16036.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16037.png b/desktop/assets/data/graficos2x/16037.png
deleted file mode 100644
index b8afe593..00000000
Binary files a/desktop/assets/data/graficos2x/16037.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16038.png b/desktop/assets/data/graficos2x/16038.png
deleted file mode 100644
index c8898054..00000000
Binary files a/desktop/assets/data/graficos2x/16038.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16039.png b/desktop/assets/data/graficos2x/16039.png
deleted file mode 100644
index e25c5807..00000000
Binary files a/desktop/assets/data/graficos2x/16039.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16040.png b/desktop/assets/data/graficos2x/16040.png
deleted file mode 100644
index 690d6bc6..00000000
Binary files a/desktop/assets/data/graficos2x/16040.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16041.png b/desktop/assets/data/graficos2x/16041.png
deleted file mode 100644
index bb5e90ce..00000000
Binary files a/desktop/assets/data/graficos2x/16041.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16042.png b/desktop/assets/data/graficos2x/16042.png
deleted file mode 100644
index 36e52277..00000000
Binary files a/desktop/assets/data/graficos2x/16042.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16043.png b/desktop/assets/data/graficos2x/16043.png
deleted file mode 100644
index 2e20c364..00000000
Binary files a/desktop/assets/data/graficos2x/16043.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16044.png b/desktop/assets/data/graficos2x/16044.png
deleted file mode 100644
index fe359b07..00000000
Binary files a/desktop/assets/data/graficos2x/16044.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16045.png b/desktop/assets/data/graficos2x/16045.png
deleted file mode 100644
index 5bb2455a..00000000
Binary files a/desktop/assets/data/graficos2x/16045.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16046.png b/desktop/assets/data/graficos2x/16046.png
deleted file mode 100644
index 606b77e7..00000000
Binary files a/desktop/assets/data/graficos2x/16046.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16047.png b/desktop/assets/data/graficos2x/16047.png
deleted file mode 100644
index 3e54f958..00000000
Binary files a/desktop/assets/data/graficos2x/16047.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16048.png b/desktop/assets/data/graficos2x/16048.png
deleted file mode 100644
index 84524a64..00000000
Binary files a/desktop/assets/data/graficos2x/16048.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16049.png b/desktop/assets/data/graficos2x/16049.png
deleted file mode 100644
index 34994bf0..00000000
Binary files a/desktop/assets/data/graficos2x/16049.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16050.png b/desktop/assets/data/graficos2x/16050.png
deleted file mode 100644
index b0d718d6..00000000
Binary files a/desktop/assets/data/graficos2x/16050.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16051.png b/desktop/assets/data/graficos2x/16051.png
deleted file mode 100644
index be815e86..00000000
Binary files a/desktop/assets/data/graficos2x/16051.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16052.png b/desktop/assets/data/graficos2x/16052.png
deleted file mode 100644
index bf85d74d..00000000
Binary files a/desktop/assets/data/graficos2x/16052.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16053.png b/desktop/assets/data/graficos2x/16053.png
deleted file mode 100644
index b924fdef..00000000
Binary files a/desktop/assets/data/graficos2x/16053.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16054.png b/desktop/assets/data/graficos2x/16054.png
deleted file mode 100644
index 81bfbc8c..00000000
Binary files a/desktop/assets/data/graficos2x/16054.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16055.png b/desktop/assets/data/graficos2x/16055.png
deleted file mode 100644
index 360b4909..00000000
Binary files a/desktop/assets/data/graficos2x/16055.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16056.png b/desktop/assets/data/graficos2x/16056.png
deleted file mode 100644
index dd4af148..00000000
Binary files a/desktop/assets/data/graficos2x/16056.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16057.png b/desktop/assets/data/graficos2x/16057.png
deleted file mode 100644
index ec8ca2ca..00000000
Binary files a/desktop/assets/data/graficos2x/16057.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16058.png b/desktop/assets/data/graficos2x/16058.png
deleted file mode 100644
index b85828fd..00000000
Binary files a/desktop/assets/data/graficos2x/16058.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16059.png b/desktop/assets/data/graficos2x/16059.png
deleted file mode 100644
index ba10d00b..00000000
Binary files a/desktop/assets/data/graficos2x/16059.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16060.png b/desktop/assets/data/graficos2x/16060.png
deleted file mode 100644
index da68e431..00000000
Binary files a/desktop/assets/data/graficos2x/16060.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16061.png b/desktop/assets/data/graficos2x/16061.png
deleted file mode 100644
index 47f88f27..00000000
Binary files a/desktop/assets/data/graficos2x/16061.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16062.png b/desktop/assets/data/graficos2x/16062.png
deleted file mode 100644
index 1f2fa7a0..00000000
Binary files a/desktop/assets/data/graficos2x/16062.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16063.png b/desktop/assets/data/graficos2x/16063.png
deleted file mode 100644
index e93a515e..00000000
Binary files a/desktop/assets/data/graficos2x/16063.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16064.png b/desktop/assets/data/graficos2x/16064.png
deleted file mode 100644
index 843f6e58..00000000
Binary files a/desktop/assets/data/graficos2x/16064.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16065.png b/desktop/assets/data/graficos2x/16065.png
deleted file mode 100644
index a943db62..00000000
Binary files a/desktop/assets/data/graficos2x/16065.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16066.png b/desktop/assets/data/graficos2x/16066.png
deleted file mode 100644
index 12387bf3..00000000
Binary files a/desktop/assets/data/graficos2x/16066.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16067.png b/desktop/assets/data/graficos2x/16067.png
deleted file mode 100644
index eab42d8b..00000000
Binary files a/desktop/assets/data/graficos2x/16067.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16068.png b/desktop/assets/data/graficos2x/16068.png
deleted file mode 100644
index ac8ce97f..00000000
Binary files a/desktop/assets/data/graficos2x/16068.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16069.png b/desktop/assets/data/graficos2x/16069.png
deleted file mode 100644
index 73eae8aa..00000000
Binary files a/desktop/assets/data/graficos2x/16069.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16070.png b/desktop/assets/data/graficos2x/16070.png
deleted file mode 100644
index 189e0685..00000000
Binary files a/desktop/assets/data/graficos2x/16070.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16071.png b/desktop/assets/data/graficos2x/16071.png
deleted file mode 100644
index 40f32782..00000000
Binary files a/desktop/assets/data/graficos2x/16071.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16072.png b/desktop/assets/data/graficos2x/16072.png
deleted file mode 100644
index 5d739178..00000000
Binary files a/desktop/assets/data/graficos2x/16072.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16073.png b/desktop/assets/data/graficos2x/16073.png
deleted file mode 100644
index a838c33a..00000000
Binary files a/desktop/assets/data/graficos2x/16073.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16074.png b/desktop/assets/data/graficos2x/16074.png
deleted file mode 100644
index 9d321594..00000000
Binary files a/desktop/assets/data/graficos2x/16074.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16075.png b/desktop/assets/data/graficos2x/16075.png
deleted file mode 100644
index ade65c2e..00000000
Binary files a/desktop/assets/data/graficos2x/16075.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16076.png b/desktop/assets/data/graficos2x/16076.png
deleted file mode 100644
index ffabcc8b..00000000
Binary files a/desktop/assets/data/graficos2x/16076.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16077.png b/desktop/assets/data/graficos2x/16077.png
deleted file mode 100644
index 779e1629..00000000
Binary files a/desktop/assets/data/graficos2x/16077.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16078.png b/desktop/assets/data/graficos2x/16078.png
deleted file mode 100644
index 5bee81c2..00000000
Binary files a/desktop/assets/data/graficos2x/16078.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16079.png b/desktop/assets/data/graficos2x/16079.png
deleted file mode 100644
index 5b5248b6..00000000
Binary files a/desktop/assets/data/graficos2x/16079.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16080.png b/desktop/assets/data/graficos2x/16080.png
deleted file mode 100644
index 0505a500..00000000
Binary files a/desktop/assets/data/graficos2x/16080.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16081.png b/desktop/assets/data/graficos2x/16081.png
deleted file mode 100644
index 72ea72e1..00000000
Binary files a/desktop/assets/data/graficos2x/16081.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16082.png b/desktop/assets/data/graficos2x/16082.png
deleted file mode 100644
index 75b30e13..00000000
Binary files a/desktop/assets/data/graficos2x/16082.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16083.png b/desktop/assets/data/graficos2x/16083.png
deleted file mode 100644
index 21628363..00000000
Binary files a/desktop/assets/data/graficos2x/16083.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16084.png b/desktop/assets/data/graficos2x/16084.png
deleted file mode 100644
index 0eb592ed..00000000
Binary files a/desktop/assets/data/graficos2x/16084.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16085.png b/desktop/assets/data/graficos2x/16085.png
deleted file mode 100644
index 16d615e9..00000000
Binary files a/desktop/assets/data/graficos2x/16085.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16086.png b/desktop/assets/data/graficos2x/16086.png
deleted file mode 100644
index 39a07c7f..00000000
Binary files a/desktop/assets/data/graficos2x/16086.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16087.png b/desktop/assets/data/graficos2x/16087.png
deleted file mode 100644
index 813f5221..00000000
Binary files a/desktop/assets/data/graficos2x/16087.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16088.png b/desktop/assets/data/graficos2x/16088.png
deleted file mode 100644
index 153e9467..00000000
Binary files a/desktop/assets/data/graficos2x/16088.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16089.png b/desktop/assets/data/graficos2x/16089.png
deleted file mode 100644
index 73390985..00000000
Binary files a/desktop/assets/data/graficos2x/16089.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16090.png b/desktop/assets/data/graficos2x/16090.png
deleted file mode 100644
index ff202ac2..00000000
Binary files a/desktop/assets/data/graficos2x/16090.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16091.png b/desktop/assets/data/graficos2x/16091.png
deleted file mode 100644
index ea2e7875..00000000
Binary files a/desktop/assets/data/graficos2x/16091.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16092.png b/desktop/assets/data/graficos2x/16092.png
deleted file mode 100644
index dc1aab2a..00000000
Binary files a/desktop/assets/data/graficos2x/16092.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16093.png b/desktop/assets/data/graficos2x/16093.png
deleted file mode 100644
index a1c57326..00000000
Binary files a/desktop/assets/data/graficos2x/16093.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16094.png b/desktop/assets/data/graficos2x/16094.png
deleted file mode 100644
index 36e52277..00000000
Binary files a/desktop/assets/data/graficos2x/16094.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16095.png b/desktop/assets/data/graficos2x/16095.png
deleted file mode 100644
index 35a78608..00000000
Binary files a/desktop/assets/data/graficos2x/16095.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16096.png b/desktop/assets/data/graficos2x/16096.png
deleted file mode 100644
index 093ebe39..00000000
Binary files a/desktop/assets/data/graficos2x/16096.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16097.png b/desktop/assets/data/graficos2x/16097.png
deleted file mode 100644
index 155f465b..00000000
Binary files a/desktop/assets/data/graficos2x/16097.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16098.png b/desktop/assets/data/graficos2x/16098.png
deleted file mode 100644
index f6fc9c2b..00000000
Binary files a/desktop/assets/data/graficos2x/16098.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16099.png b/desktop/assets/data/graficos2x/16099.png
deleted file mode 100644
index a0edc5a9..00000000
Binary files a/desktop/assets/data/graficos2x/16099.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/161.png b/desktop/assets/data/graficos2x/161.png
deleted file mode 100644
index 18cae1e0..00000000
Binary files a/desktop/assets/data/graficos2x/161.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16100.png b/desktop/assets/data/graficos2x/16100.png
deleted file mode 100644
index b63317fb..00000000
Binary files a/desktop/assets/data/graficos2x/16100.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16101.png b/desktop/assets/data/graficos2x/16101.png
deleted file mode 100644
index 9fe56e0d..00000000
Binary files a/desktop/assets/data/graficos2x/16101.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16102.png b/desktop/assets/data/graficos2x/16102.png
deleted file mode 100644
index e91cf7d4..00000000
Binary files a/desktop/assets/data/graficos2x/16102.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16103.png b/desktop/assets/data/graficos2x/16103.png
deleted file mode 100644
index a74da46a..00000000
Binary files a/desktop/assets/data/graficos2x/16103.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16104.png b/desktop/assets/data/graficos2x/16104.png
deleted file mode 100644
index b7629f23..00000000
Binary files a/desktop/assets/data/graficos2x/16104.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16105.png b/desktop/assets/data/graficos2x/16105.png
deleted file mode 100644
index 0cfa888b..00000000
Binary files a/desktop/assets/data/graficos2x/16105.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16106.png b/desktop/assets/data/graficos2x/16106.png
deleted file mode 100644
index 4cd0fd35..00000000
Binary files a/desktop/assets/data/graficos2x/16106.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16107.png b/desktop/assets/data/graficos2x/16107.png
deleted file mode 100644
index 2e5d12d6..00000000
Binary files a/desktop/assets/data/graficos2x/16107.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16108.png b/desktop/assets/data/graficos2x/16108.png
deleted file mode 100644
index 57fe12f9..00000000
Binary files a/desktop/assets/data/graficos2x/16108.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16109.png b/desktop/assets/data/graficos2x/16109.png
deleted file mode 100644
index 111054d2..00000000
Binary files a/desktop/assets/data/graficos2x/16109.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16110.png b/desktop/assets/data/graficos2x/16110.png
deleted file mode 100644
index ce29772c..00000000
Binary files a/desktop/assets/data/graficos2x/16110.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16111.png b/desktop/assets/data/graficos2x/16111.png
deleted file mode 100644
index b086947d..00000000
Binary files a/desktop/assets/data/graficos2x/16111.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/16112.png b/desktop/assets/data/graficos2x/16112.png
deleted file mode 100644
index 67654ab6..00000000
Binary files a/desktop/assets/data/graficos2x/16112.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/162.png b/desktop/assets/data/graficos2x/162.png
deleted file mode 100644
index 74f7df9f..00000000
Binary files a/desktop/assets/data/graficos2x/162.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/163.png b/desktop/assets/data/graficos2x/163.png
deleted file mode 100644
index 59137c07..00000000
Binary files a/desktop/assets/data/graficos2x/163.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/164.png b/desktop/assets/data/graficos2x/164.png
deleted file mode 100644
index a6e143fa..00000000
Binary files a/desktop/assets/data/graficos2x/164.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/165.png b/desktop/assets/data/graficos2x/165.png
deleted file mode 100644
index 15722e97..00000000
Binary files a/desktop/assets/data/graficos2x/165.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/166.png b/desktop/assets/data/graficos2x/166.png
deleted file mode 100644
index f87b0dfa..00000000
Binary files a/desktop/assets/data/graficos2x/166.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/167.png b/desktop/assets/data/graficos2x/167.png
deleted file mode 100644
index f32f0544..00000000
Binary files a/desktop/assets/data/graficos2x/167.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/168.png b/desktop/assets/data/graficos2x/168.png
deleted file mode 100644
index 1f05cdaf..00000000
Binary files a/desktop/assets/data/graficos2x/168.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/169.png b/desktop/assets/data/graficos2x/169.png
deleted file mode 100644
index 503e0ada..00000000
Binary files a/desktop/assets/data/graficos2x/169.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/17.png b/desktop/assets/data/graficos2x/17.png
deleted file mode 100644
index 41fc2dbc..00000000
Binary files a/desktop/assets/data/graficos2x/17.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/170.png b/desktop/assets/data/graficos2x/170.png
deleted file mode 100644
index bc1aff73..00000000
Binary files a/desktop/assets/data/graficos2x/170.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/17000.png b/desktop/assets/data/graficos2x/17000.png
deleted file mode 100644
index 7a4d0623..00000000
Binary files a/desktop/assets/data/graficos2x/17000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/17001.png b/desktop/assets/data/graficos2x/17001.png
deleted file mode 100644
index 49c66fea..00000000
Binary files a/desktop/assets/data/graficos2x/17001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/17002.png b/desktop/assets/data/graficos2x/17002.png
deleted file mode 100644
index d8b3c446..00000000
Binary files a/desktop/assets/data/graficos2x/17002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/17003.png b/desktop/assets/data/graficos2x/17003.png
deleted file mode 100644
index adc75399..00000000
Binary files a/desktop/assets/data/graficos2x/17003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/17004.png b/desktop/assets/data/graficos2x/17004.png
deleted file mode 100644
index 5467afdb..00000000
Binary files a/desktop/assets/data/graficos2x/17004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/17005.png b/desktop/assets/data/graficos2x/17005.png
deleted file mode 100644
index 9336e00c..00000000
Binary files a/desktop/assets/data/graficos2x/17005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/17006.png b/desktop/assets/data/graficos2x/17006.png
deleted file mode 100644
index 95144fe2..00000000
Binary files a/desktop/assets/data/graficos2x/17006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/17007.png b/desktop/assets/data/graficos2x/17007.png
deleted file mode 100644
index 3f88e577..00000000
Binary files a/desktop/assets/data/graficos2x/17007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/17008.png b/desktop/assets/data/graficos2x/17008.png
deleted file mode 100644
index 2cad2927..00000000
Binary files a/desktop/assets/data/graficos2x/17008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/17009.png b/desktop/assets/data/graficos2x/17009.png
deleted file mode 100644
index 708db4b3..00000000
Binary files a/desktop/assets/data/graficos2x/17009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/17010.png b/desktop/assets/data/graficos2x/17010.png
deleted file mode 100644
index b6211b53..00000000
Binary files a/desktop/assets/data/graficos2x/17010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/17011.png b/desktop/assets/data/graficos2x/17011.png
deleted file mode 100644
index 940221c9..00000000
Binary files a/desktop/assets/data/graficos2x/17011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/17012.png b/desktop/assets/data/graficos2x/17012.png
deleted file mode 100644
index 280552c2..00000000
Binary files a/desktop/assets/data/graficos2x/17012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/17013.png b/desktop/assets/data/graficos2x/17013.png
deleted file mode 100644
index e56194b0..00000000
Binary files a/desktop/assets/data/graficos2x/17013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/17014.png b/desktop/assets/data/graficos2x/17014.png
deleted file mode 100644
index 8526737e..00000000
Binary files a/desktop/assets/data/graficos2x/17014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/171.png b/desktop/assets/data/graficos2x/171.png
deleted file mode 100644
index 0826ae8e..00000000
Binary files a/desktop/assets/data/graficos2x/171.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/172.png b/desktop/assets/data/graficos2x/172.png
deleted file mode 100644
index 3592de21..00000000
Binary files a/desktop/assets/data/graficos2x/172.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/173.png b/desktop/assets/data/graficos2x/173.png
deleted file mode 100644
index b46b8926..00000000
Binary files a/desktop/assets/data/graficos2x/173.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/174.png b/desktop/assets/data/graficos2x/174.png
deleted file mode 100644
index cad98f87..00000000
Binary files a/desktop/assets/data/graficos2x/174.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/175.png b/desktop/assets/data/graficos2x/175.png
deleted file mode 100644
index 312bc03e..00000000
Binary files a/desktop/assets/data/graficos2x/175.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/176.png b/desktop/assets/data/graficos2x/176.png
deleted file mode 100644
index 20f38d65..00000000
Binary files a/desktop/assets/data/graficos2x/176.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/177.png b/desktop/assets/data/graficos2x/177.png
deleted file mode 100644
index 1b249140..00000000
Binary files a/desktop/assets/data/graficos2x/177.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/178.png b/desktop/assets/data/graficos2x/178.png
deleted file mode 100644
index 193ec689..00000000
Binary files a/desktop/assets/data/graficos2x/178.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/179.png b/desktop/assets/data/graficos2x/179.png
deleted file mode 100644
index bddef89c..00000000
Binary files a/desktop/assets/data/graficos2x/179.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18.png b/desktop/assets/data/graficos2x/18.png
deleted file mode 100644
index 678d5765..00000000
Binary files a/desktop/assets/data/graficos2x/18.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/180.png b/desktop/assets/data/graficos2x/180.png
deleted file mode 100644
index ba2656c1..00000000
Binary files a/desktop/assets/data/graficos2x/180.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18000.png b/desktop/assets/data/graficos2x/18000.png
deleted file mode 100644
index d5577a3e..00000000
Binary files a/desktop/assets/data/graficos2x/18000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18001.png b/desktop/assets/data/graficos2x/18001.png
deleted file mode 100644
index 81923683..00000000
Binary files a/desktop/assets/data/graficos2x/18001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18002.png b/desktop/assets/data/graficos2x/18002.png
deleted file mode 100644
index 7a53cf56..00000000
Binary files a/desktop/assets/data/graficos2x/18002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18003.png b/desktop/assets/data/graficos2x/18003.png
deleted file mode 100644
index 499f7c48..00000000
Binary files a/desktop/assets/data/graficos2x/18003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18004.png b/desktop/assets/data/graficos2x/18004.png
deleted file mode 100644
index 2c34959f..00000000
Binary files a/desktop/assets/data/graficos2x/18004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18005.png b/desktop/assets/data/graficos2x/18005.png
deleted file mode 100644
index d5442523..00000000
Binary files a/desktop/assets/data/graficos2x/18005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18006.png b/desktop/assets/data/graficos2x/18006.png
deleted file mode 100644
index 4caf8aa7..00000000
Binary files a/desktop/assets/data/graficos2x/18006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18007.png b/desktop/assets/data/graficos2x/18007.png
deleted file mode 100644
index 1e0b359a..00000000
Binary files a/desktop/assets/data/graficos2x/18007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18008.png b/desktop/assets/data/graficos2x/18008.png
deleted file mode 100644
index bfd99508..00000000
Binary files a/desktop/assets/data/graficos2x/18008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18009.png b/desktop/assets/data/graficos2x/18009.png
deleted file mode 100644
index 38ac5d75..00000000
Binary files a/desktop/assets/data/graficos2x/18009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18010.png b/desktop/assets/data/graficos2x/18010.png
deleted file mode 100644
index 3c78d8c5..00000000
Binary files a/desktop/assets/data/graficos2x/18010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18011.png b/desktop/assets/data/graficos2x/18011.png
deleted file mode 100644
index 876b6da5..00000000
Binary files a/desktop/assets/data/graficos2x/18011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18012.png b/desktop/assets/data/graficos2x/18012.png
deleted file mode 100644
index a21d054c..00000000
Binary files a/desktop/assets/data/graficos2x/18012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18013.png b/desktop/assets/data/graficos2x/18013.png
deleted file mode 100644
index b40de40e..00000000
Binary files a/desktop/assets/data/graficos2x/18013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18014.png b/desktop/assets/data/graficos2x/18014.png
deleted file mode 100644
index 0ad18008..00000000
Binary files a/desktop/assets/data/graficos2x/18014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18015.png b/desktop/assets/data/graficos2x/18015.png
deleted file mode 100644
index b10d3a44..00000000
Binary files a/desktop/assets/data/graficos2x/18015.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18016.png b/desktop/assets/data/graficos2x/18016.png
deleted file mode 100644
index 7c3fe73f..00000000
Binary files a/desktop/assets/data/graficos2x/18016.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18017.png b/desktop/assets/data/graficos2x/18017.png
deleted file mode 100644
index b7e7b755..00000000
Binary files a/desktop/assets/data/graficos2x/18017.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18018.png b/desktop/assets/data/graficos2x/18018.png
deleted file mode 100644
index fe85a788..00000000
Binary files a/desktop/assets/data/graficos2x/18018.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18019.png b/desktop/assets/data/graficos2x/18019.png
deleted file mode 100644
index 2de55a17..00000000
Binary files a/desktop/assets/data/graficos2x/18019.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18020.png b/desktop/assets/data/graficos2x/18020.png
deleted file mode 100644
index 50c6c351..00000000
Binary files a/desktop/assets/data/graficos2x/18020.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18021.png b/desktop/assets/data/graficos2x/18021.png
deleted file mode 100644
index ea0e5c0b..00000000
Binary files a/desktop/assets/data/graficos2x/18021.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18022.png b/desktop/assets/data/graficos2x/18022.png
deleted file mode 100644
index 0d32a3c8..00000000
Binary files a/desktop/assets/data/graficos2x/18022.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18023.png b/desktop/assets/data/graficos2x/18023.png
deleted file mode 100644
index b2751c1d..00000000
Binary files a/desktop/assets/data/graficos2x/18023.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18024.png b/desktop/assets/data/graficos2x/18024.png
deleted file mode 100644
index a3674e00..00000000
Binary files a/desktop/assets/data/graficos2x/18024.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18025.png b/desktop/assets/data/graficos2x/18025.png
deleted file mode 100644
index a53ee354..00000000
Binary files a/desktop/assets/data/graficos2x/18025.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18026.png b/desktop/assets/data/graficos2x/18026.png
deleted file mode 100644
index e096ff9b..00000000
Binary files a/desktop/assets/data/graficos2x/18026.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18027.png b/desktop/assets/data/graficos2x/18027.png
deleted file mode 100644
index ff3c7127..00000000
Binary files a/desktop/assets/data/graficos2x/18027.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/18028.png b/desktop/assets/data/graficos2x/18028.png
deleted file mode 100644
index c32d1547..00000000
Binary files a/desktop/assets/data/graficos2x/18028.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/181.png b/desktop/assets/data/graficos2x/181.png
deleted file mode 100644
index 30e8ea38..00000000
Binary files a/desktop/assets/data/graficos2x/181.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/182.png b/desktop/assets/data/graficos2x/182.png
deleted file mode 100644
index d5812b74..00000000
Binary files a/desktop/assets/data/graficos2x/182.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/183.png b/desktop/assets/data/graficos2x/183.png
deleted file mode 100644
index 82c02911..00000000
Binary files a/desktop/assets/data/graficos2x/183.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/184.png b/desktop/assets/data/graficos2x/184.png
deleted file mode 100644
index 4d2091dc..00000000
Binary files a/desktop/assets/data/graficos2x/184.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/185.png b/desktop/assets/data/graficos2x/185.png
deleted file mode 100644
index bc22643a..00000000
Binary files a/desktop/assets/data/graficos2x/185.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/186.png b/desktop/assets/data/graficos2x/186.png
deleted file mode 100644
index 158aedae..00000000
Binary files a/desktop/assets/data/graficos2x/186.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/187.png b/desktop/assets/data/graficos2x/187.png
deleted file mode 100644
index 8c74ef1a..00000000
Binary files a/desktop/assets/data/graficos2x/187.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/188.png b/desktop/assets/data/graficos2x/188.png
deleted file mode 100644
index 39eaef71..00000000
Binary files a/desktop/assets/data/graficos2x/188.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/189.png b/desktop/assets/data/graficos2x/189.png
deleted file mode 100644
index a426ee95..00000000
Binary files a/desktop/assets/data/graficos2x/189.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19.png b/desktop/assets/data/graficos2x/19.png
deleted file mode 100644
index 58ae1118..00000000
Binary files a/desktop/assets/data/graficos2x/19.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/190.png b/desktop/assets/data/graficos2x/190.png
deleted file mode 100644
index 00cadc6e..00000000
Binary files a/desktop/assets/data/graficos2x/190.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19000.png b/desktop/assets/data/graficos2x/19000.png
deleted file mode 100644
index 1aff3e1a..00000000
Binary files a/desktop/assets/data/graficos2x/19000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19001.png b/desktop/assets/data/graficos2x/19001.png
deleted file mode 100644
index b68d4fd2..00000000
Binary files a/desktop/assets/data/graficos2x/19001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19002.png b/desktop/assets/data/graficos2x/19002.png
deleted file mode 100644
index 4d5ac867..00000000
Binary files a/desktop/assets/data/graficos2x/19002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19003.png b/desktop/assets/data/graficos2x/19003.png
deleted file mode 100644
index cdf99e7c..00000000
Binary files a/desktop/assets/data/graficos2x/19003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19004.png b/desktop/assets/data/graficos2x/19004.png
deleted file mode 100644
index c6a4fced..00000000
Binary files a/desktop/assets/data/graficos2x/19004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19005.png b/desktop/assets/data/graficos2x/19005.png
deleted file mode 100644
index a77973ef..00000000
Binary files a/desktop/assets/data/graficos2x/19005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19006.png b/desktop/assets/data/graficos2x/19006.png
deleted file mode 100644
index 76203946..00000000
Binary files a/desktop/assets/data/graficos2x/19006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19007.png b/desktop/assets/data/graficos2x/19007.png
deleted file mode 100644
index a40b67b3..00000000
Binary files a/desktop/assets/data/graficos2x/19007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19008.png b/desktop/assets/data/graficos2x/19008.png
deleted file mode 100644
index d10c2116..00000000
Binary files a/desktop/assets/data/graficos2x/19008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19009.png b/desktop/assets/data/graficos2x/19009.png
deleted file mode 100644
index 5923c60c..00000000
Binary files a/desktop/assets/data/graficos2x/19009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19010.png b/desktop/assets/data/graficos2x/19010.png
deleted file mode 100644
index 433ff841..00000000
Binary files a/desktop/assets/data/graficos2x/19010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19011.png b/desktop/assets/data/graficos2x/19011.png
deleted file mode 100644
index 60c9817f..00000000
Binary files a/desktop/assets/data/graficos2x/19011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19012.png b/desktop/assets/data/graficos2x/19012.png
deleted file mode 100644
index b05ece92..00000000
Binary files a/desktop/assets/data/graficos2x/19012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19013.png b/desktop/assets/data/graficos2x/19013.png
deleted file mode 100644
index 04d1dad3..00000000
Binary files a/desktop/assets/data/graficos2x/19013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19014.png b/desktop/assets/data/graficos2x/19014.png
deleted file mode 100644
index 64021d19..00000000
Binary files a/desktop/assets/data/graficos2x/19014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19015.png b/desktop/assets/data/graficos2x/19015.png
deleted file mode 100644
index efbcd73d..00000000
Binary files a/desktop/assets/data/graficos2x/19015.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19016.png b/desktop/assets/data/graficos2x/19016.png
deleted file mode 100644
index ff5d02b8..00000000
Binary files a/desktop/assets/data/graficos2x/19016.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19017.png b/desktop/assets/data/graficos2x/19017.png
deleted file mode 100644
index 912a3ee7..00000000
Binary files a/desktop/assets/data/graficos2x/19017.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19018.png b/desktop/assets/data/graficos2x/19018.png
deleted file mode 100644
index 36eacf2f..00000000
Binary files a/desktop/assets/data/graficos2x/19018.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19019.png b/desktop/assets/data/graficos2x/19019.png
deleted file mode 100644
index 92b8822d..00000000
Binary files a/desktop/assets/data/graficos2x/19019.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19020.png b/desktop/assets/data/graficos2x/19020.png
deleted file mode 100644
index 2bc53ea2..00000000
Binary files a/desktop/assets/data/graficos2x/19020.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19021.png b/desktop/assets/data/graficos2x/19021.png
deleted file mode 100644
index 3a600ada..00000000
Binary files a/desktop/assets/data/graficos2x/19021.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19022.png b/desktop/assets/data/graficos2x/19022.png
deleted file mode 100644
index 08c98463..00000000
Binary files a/desktop/assets/data/graficos2x/19022.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19023.png b/desktop/assets/data/graficos2x/19023.png
deleted file mode 100644
index f8aecaf7..00000000
Binary files a/desktop/assets/data/graficos2x/19023.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19024.png b/desktop/assets/data/graficos2x/19024.png
deleted file mode 100644
index ea1dd118..00000000
Binary files a/desktop/assets/data/graficos2x/19024.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19025.png b/desktop/assets/data/graficos2x/19025.png
deleted file mode 100644
index 8f3cf215..00000000
Binary files a/desktop/assets/data/graficos2x/19025.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19026.png b/desktop/assets/data/graficos2x/19026.png
deleted file mode 100644
index 2cfab188..00000000
Binary files a/desktop/assets/data/graficos2x/19026.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19027.png b/desktop/assets/data/graficos2x/19027.png
deleted file mode 100644
index 507fd9d7..00000000
Binary files a/desktop/assets/data/graficos2x/19027.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/19028.png b/desktop/assets/data/graficos2x/19028.png
deleted file mode 100644
index 73933d84..00000000
Binary files a/desktop/assets/data/graficos2x/19028.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/191.png b/desktop/assets/data/graficos2x/191.png
deleted file mode 100644
index a7b47bbf..00000000
Binary files a/desktop/assets/data/graficos2x/191.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/192.png b/desktop/assets/data/graficos2x/192.png
deleted file mode 100644
index d42d2694..00000000
Binary files a/desktop/assets/data/graficos2x/192.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/193.png b/desktop/assets/data/graficos2x/193.png
deleted file mode 100644
index 839b8b4c..00000000
Binary files a/desktop/assets/data/graficos2x/193.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/194.png b/desktop/assets/data/graficos2x/194.png
deleted file mode 100644
index 00ca0897..00000000
Binary files a/desktop/assets/data/graficos2x/194.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/195.png b/desktop/assets/data/graficos2x/195.png
deleted file mode 100644
index d3365ca8..00000000
Binary files a/desktop/assets/data/graficos2x/195.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/196.png b/desktop/assets/data/graficos2x/196.png
deleted file mode 100644
index d57a1c89..00000000
Binary files a/desktop/assets/data/graficos2x/196.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/197.png b/desktop/assets/data/graficos2x/197.png
deleted file mode 100644
index 525d8698..00000000
Binary files a/desktop/assets/data/graficos2x/197.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/198.png b/desktop/assets/data/graficos2x/198.png
deleted file mode 100644
index 15105dcb..00000000
Binary files a/desktop/assets/data/graficos2x/198.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/199.png b/desktop/assets/data/graficos2x/199.png
deleted file mode 100644
index 70a29eba..00000000
Binary files a/desktop/assets/data/graficos2x/199.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2.png b/desktop/assets/data/graficos2x/2.png
deleted file mode 100644
index 3e6d9d7e..00000000
Binary files a/desktop/assets/data/graficos2x/2.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20.png b/desktop/assets/data/graficos2x/20.png
deleted file mode 100644
index 0407e1b7..00000000
Binary files a/desktop/assets/data/graficos2x/20.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/200.png b/desktop/assets/data/graficos2x/200.png
deleted file mode 100644
index 5e6f1597..00000000
Binary files a/desktop/assets/data/graficos2x/200.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2000.png b/desktop/assets/data/graficos2x/2000.png
deleted file mode 100644
index 3f7e526b..00000000
Binary files a/desktop/assets/data/graficos2x/2000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20000.png b/desktop/assets/data/graficos2x/20000.png
deleted file mode 100644
index fb5745a5..00000000
Binary files a/desktop/assets/data/graficos2x/20000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20001.png b/desktop/assets/data/graficos2x/20001.png
deleted file mode 100644
index 409216aa..00000000
Binary files a/desktop/assets/data/graficos2x/20001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20002.png b/desktop/assets/data/graficos2x/20002.png
deleted file mode 100644
index f32dbc77..00000000
Binary files a/desktop/assets/data/graficos2x/20002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20003.png b/desktop/assets/data/graficos2x/20003.png
deleted file mode 100644
index 88f890bd..00000000
Binary files a/desktop/assets/data/graficos2x/20003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20004.png b/desktop/assets/data/graficos2x/20004.png
deleted file mode 100644
index 63fadb93..00000000
Binary files a/desktop/assets/data/graficos2x/20004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20005.png b/desktop/assets/data/graficos2x/20005.png
deleted file mode 100644
index f72d8276..00000000
Binary files a/desktop/assets/data/graficos2x/20005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20006.png b/desktop/assets/data/graficos2x/20006.png
deleted file mode 100644
index 6a7843e7..00000000
Binary files a/desktop/assets/data/graficos2x/20006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20007.png b/desktop/assets/data/graficos2x/20007.png
deleted file mode 100644
index 01ddefac..00000000
Binary files a/desktop/assets/data/graficos2x/20007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20008.png b/desktop/assets/data/graficos2x/20008.png
deleted file mode 100644
index fbe7f350..00000000
Binary files a/desktop/assets/data/graficos2x/20008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20009.png b/desktop/assets/data/graficos2x/20009.png
deleted file mode 100644
index dd439eb4..00000000
Binary files a/desktop/assets/data/graficos2x/20009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2001.png b/desktop/assets/data/graficos2x/2001.png
deleted file mode 100644
index a0912998..00000000
Binary files a/desktop/assets/data/graficos2x/2001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20010.png b/desktop/assets/data/graficos2x/20010.png
deleted file mode 100644
index 8355ded6..00000000
Binary files a/desktop/assets/data/graficos2x/20010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20011.png b/desktop/assets/data/graficos2x/20011.png
deleted file mode 100644
index 363e2b86..00000000
Binary files a/desktop/assets/data/graficos2x/20011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20012.png b/desktop/assets/data/graficos2x/20012.png
deleted file mode 100644
index 9adb28a4..00000000
Binary files a/desktop/assets/data/graficos2x/20012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20013.png b/desktop/assets/data/graficos2x/20013.png
deleted file mode 100644
index d8c7e7a5..00000000
Binary files a/desktop/assets/data/graficos2x/20013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20014.png b/desktop/assets/data/graficos2x/20014.png
deleted file mode 100644
index 84cd705e..00000000
Binary files a/desktop/assets/data/graficos2x/20014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20015.png b/desktop/assets/data/graficos2x/20015.png
deleted file mode 100644
index 35bd6d98..00000000
Binary files a/desktop/assets/data/graficos2x/20015.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20016.png b/desktop/assets/data/graficos2x/20016.png
deleted file mode 100644
index 3e319ccc..00000000
Binary files a/desktop/assets/data/graficos2x/20016.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20017.png b/desktop/assets/data/graficos2x/20017.png
deleted file mode 100644
index aaf6297e..00000000
Binary files a/desktop/assets/data/graficos2x/20017.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20018.png b/desktop/assets/data/graficos2x/20018.png
deleted file mode 100644
index 8c64ee8d..00000000
Binary files a/desktop/assets/data/graficos2x/20018.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/20019.png b/desktop/assets/data/graficos2x/20019.png
deleted file mode 100644
index bb2af29f..00000000
Binary files a/desktop/assets/data/graficos2x/20019.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2002.png b/desktop/assets/data/graficos2x/2002.png
deleted file mode 100644
index e84d753b..00000000
Binary files a/desktop/assets/data/graficos2x/2002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2003.png b/desktop/assets/data/graficos2x/2003.png
deleted file mode 100644
index ea19b047..00000000
Binary files a/desktop/assets/data/graficos2x/2003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2004.png b/desktop/assets/data/graficos2x/2004.png
deleted file mode 100644
index 507ad059..00000000
Binary files a/desktop/assets/data/graficos2x/2004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2005.png b/desktop/assets/data/graficos2x/2005.png
deleted file mode 100644
index 3f60bbb2..00000000
Binary files a/desktop/assets/data/graficos2x/2005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2006.png b/desktop/assets/data/graficos2x/2006.png
deleted file mode 100644
index ceec43fe..00000000
Binary files a/desktop/assets/data/graficos2x/2006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2007.png b/desktop/assets/data/graficos2x/2007.png
deleted file mode 100644
index bf22aa8c..00000000
Binary files a/desktop/assets/data/graficos2x/2007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2008.png b/desktop/assets/data/graficos2x/2008.png
deleted file mode 100644
index bae5c97b..00000000
Binary files a/desktop/assets/data/graficos2x/2008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2009.png b/desktop/assets/data/graficos2x/2009.png
deleted file mode 100644
index 0ed5f08c..00000000
Binary files a/desktop/assets/data/graficos2x/2009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/201.png b/desktop/assets/data/graficos2x/201.png
deleted file mode 100644
index aed73a23..00000000
Binary files a/desktop/assets/data/graficos2x/201.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2010.png b/desktop/assets/data/graficos2x/2010.png
deleted file mode 100644
index ee0c3ff0..00000000
Binary files a/desktop/assets/data/graficos2x/2010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2011.png b/desktop/assets/data/graficos2x/2011.png
deleted file mode 100644
index b3d87c27..00000000
Binary files a/desktop/assets/data/graficos2x/2011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2012.png b/desktop/assets/data/graficos2x/2012.png
deleted file mode 100644
index e9d72404..00000000
Binary files a/desktop/assets/data/graficos2x/2012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2013.png b/desktop/assets/data/graficos2x/2013.png
deleted file mode 100644
index 1c8a8b3c..00000000
Binary files a/desktop/assets/data/graficos2x/2013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2014.png b/desktop/assets/data/graficos2x/2014.png
deleted file mode 100644
index b9efce29..00000000
Binary files a/desktop/assets/data/graficos2x/2014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2015.png b/desktop/assets/data/graficos2x/2015.png
deleted file mode 100644
index 2009ff69..00000000
Binary files a/desktop/assets/data/graficos2x/2015.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2016.png b/desktop/assets/data/graficos2x/2016.png
deleted file mode 100644
index b21f49df..00000000
Binary files a/desktop/assets/data/graficos2x/2016.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2017.png b/desktop/assets/data/graficos2x/2017.png
deleted file mode 100644
index acbac22f..00000000
Binary files a/desktop/assets/data/graficos2x/2017.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2018.png b/desktop/assets/data/graficos2x/2018.png
deleted file mode 100644
index 87f878c7..00000000
Binary files a/desktop/assets/data/graficos2x/2018.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2019.png b/desktop/assets/data/graficos2x/2019.png
deleted file mode 100644
index 406ccf9a..00000000
Binary files a/desktop/assets/data/graficos2x/2019.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/202.png b/desktop/assets/data/graficos2x/202.png
deleted file mode 100644
index e5cf4916..00000000
Binary files a/desktop/assets/data/graficos2x/202.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2020.png b/desktop/assets/data/graficos2x/2020.png
deleted file mode 100644
index 7f3b9b3e..00000000
Binary files a/desktop/assets/data/graficos2x/2020.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2021.png b/desktop/assets/data/graficos2x/2021.png
deleted file mode 100644
index 225831ae..00000000
Binary files a/desktop/assets/data/graficos2x/2021.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2022.png b/desktop/assets/data/graficos2x/2022.png
deleted file mode 100644
index d3958940..00000000
Binary files a/desktop/assets/data/graficos2x/2022.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2023.png b/desktop/assets/data/graficos2x/2023.png
deleted file mode 100644
index 4e7b2841..00000000
Binary files a/desktop/assets/data/graficos2x/2023.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2024.png b/desktop/assets/data/graficos2x/2024.png
deleted file mode 100644
index 3101454f..00000000
Binary files a/desktop/assets/data/graficos2x/2024.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2025.png b/desktop/assets/data/graficos2x/2025.png
deleted file mode 100644
index 32476b57..00000000
Binary files a/desktop/assets/data/graficos2x/2025.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2026.png b/desktop/assets/data/graficos2x/2026.png
deleted file mode 100644
index f53021cd..00000000
Binary files a/desktop/assets/data/graficos2x/2026.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2027.png b/desktop/assets/data/graficos2x/2027.png
deleted file mode 100644
index c727b332..00000000
Binary files a/desktop/assets/data/graficos2x/2027.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2028.png b/desktop/assets/data/graficos2x/2028.png
deleted file mode 100644
index 16feacd0..00000000
Binary files a/desktop/assets/data/graficos2x/2028.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2029.png b/desktop/assets/data/graficos2x/2029.png
deleted file mode 100644
index d8828cee..00000000
Binary files a/desktop/assets/data/graficos2x/2029.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/203.png b/desktop/assets/data/graficos2x/203.png
deleted file mode 100644
index 59c382cd..00000000
Binary files a/desktop/assets/data/graficos2x/203.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2030.png b/desktop/assets/data/graficos2x/2030.png
deleted file mode 100644
index 6f9757fd..00000000
Binary files a/desktop/assets/data/graficos2x/2030.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2031.png b/desktop/assets/data/graficos2x/2031.png
deleted file mode 100644
index e80b5721..00000000
Binary files a/desktop/assets/data/graficos2x/2031.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2032.png b/desktop/assets/data/graficos2x/2032.png
deleted file mode 100644
index c34c65e5..00000000
Binary files a/desktop/assets/data/graficos2x/2032.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2033.png b/desktop/assets/data/graficos2x/2033.png
deleted file mode 100644
index 8cd6ef8d..00000000
Binary files a/desktop/assets/data/graficos2x/2033.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2034.png b/desktop/assets/data/graficos2x/2034.png
deleted file mode 100644
index 05530645..00000000
Binary files a/desktop/assets/data/graficos2x/2034.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2035.png b/desktop/assets/data/graficos2x/2035.png
deleted file mode 100644
index e47dfba2..00000000
Binary files a/desktop/assets/data/graficos2x/2035.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2036.png b/desktop/assets/data/graficos2x/2036.png
deleted file mode 100644
index eb22f191..00000000
Binary files a/desktop/assets/data/graficos2x/2036.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2037.png b/desktop/assets/data/graficos2x/2037.png
deleted file mode 100644
index dde9eea3..00000000
Binary files a/desktop/assets/data/graficos2x/2037.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2038.png b/desktop/assets/data/graficos2x/2038.png
deleted file mode 100644
index 54ad1102..00000000
Binary files a/desktop/assets/data/graficos2x/2038.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2039.png b/desktop/assets/data/graficos2x/2039.png
deleted file mode 100644
index fd64843c..00000000
Binary files a/desktop/assets/data/graficos2x/2039.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/204.png b/desktop/assets/data/graficos2x/204.png
deleted file mode 100644
index f20687a3..00000000
Binary files a/desktop/assets/data/graficos2x/204.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2040.png b/desktop/assets/data/graficos2x/2040.png
deleted file mode 100644
index d8227f93..00000000
Binary files a/desktop/assets/data/graficos2x/2040.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2041.png b/desktop/assets/data/graficos2x/2041.png
deleted file mode 100644
index a00eb1af..00000000
Binary files a/desktop/assets/data/graficos2x/2041.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2042.png b/desktop/assets/data/graficos2x/2042.png
deleted file mode 100644
index ca3130d1..00000000
Binary files a/desktop/assets/data/graficos2x/2042.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2043.png b/desktop/assets/data/graficos2x/2043.png
deleted file mode 100644
index 04e9304f..00000000
Binary files a/desktop/assets/data/graficos2x/2043.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2044.png b/desktop/assets/data/graficos2x/2044.png
deleted file mode 100644
index abb0d15c..00000000
Binary files a/desktop/assets/data/graficos2x/2044.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2045.png b/desktop/assets/data/graficos2x/2045.png
deleted file mode 100644
index ca21277b..00000000
Binary files a/desktop/assets/data/graficos2x/2045.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2046.png b/desktop/assets/data/graficos2x/2046.png
deleted file mode 100644
index 96678e01..00000000
Binary files a/desktop/assets/data/graficos2x/2046.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2047.png b/desktop/assets/data/graficos2x/2047.png
deleted file mode 100644
index 82ed8162..00000000
Binary files a/desktop/assets/data/graficos2x/2047.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2048.png b/desktop/assets/data/graficos2x/2048.png
deleted file mode 100644
index 09b59dd1..00000000
Binary files a/desktop/assets/data/graficos2x/2048.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2048@2x.png b/desktop/assets/data/graficos2x/2048@2x.png
deleted file mode 100644
index 02e7c710..00000000
Binary files a/desktop/assets/data/graficos2x/2048@2x.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2049.png b/desktop/assets/data/graficos2x/2049.png
deleted file mode 100644
index 1858ed86..00000000
Binary files a/desktop/assets/data/graficos2x/2049.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2049@2x-2.png b/desktop/assets/data/graficos2x/2049@2x-2.png
deleted file mode 100644
index fc786507..00000000
Binary files a/desktop/assets/data/graficos2x/2049@2x-2.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/205.png b/desktop/assets/data/graficos2x/205.png
deleted file mode 100644
index 801ee143..00000000
Binary files a/desktop/assets/data/graficos2x/205.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2050.png b/desktop/assets/data/graficos2x/2050.png
deleted file mode 100644
index 6e2faa5a..00000000
Binary files a/desktop/assets/data/graficos2x/2050.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2051.png b/desktop/assets/data/graficos2x/2051.png
deleted file mode 100644
index aa1fb95a..00000000
Binary files a/desktop/assets/data/graficos2x/2051.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2052.png b/desktop/assets/data/graficos2x/2052.png
deleted file mode 100644
index e4335191..00000000
Binary files a/desktop/assets/data/graficos2x/2052.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2053.png b/desktop/assets/data/graficos2x/2053.png
deleted file mode 100644
index 4aa60ebb..00000000
Binary files a/desktop/assets/data/graficos2x/2053.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2054.png b/desktop/assets/data/graficos2x/2054.png
deleted file mode 100644
index beda6733..00000000
Binary files a/desktop/assets/data/graficos2x/2054.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2055.png b/desktop/assets/data/graficos2x/2055.png
deleted file mode 100644
index 1e10597e..00000000
Binary files a/desktop/assets/data/graficos2x/2055.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2056.png b/desktop/assets/data/graficos2x/2056.png
deleted file mode 100644
index 10222912..00000000
Binary files a/desktop/assets/data/graficos2x/2056.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2057.png b/desktop/assets/data/graficos2x/2057.png
deleted file mode 100644
index 6b8a9a49..00000000
Binary files a/desktop/assets/data/graficos2x/2057.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2058.png b/desktop/assets/data/graficos2x/2058.png
deleted file mode 100644
index f7a36eb6..00000000
Binary files a/desktop/assets/data/graficos2x/2058.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2059.png b/desktop/assets/data/graficos2x/2059.png
deleted file mode 100644
index 74aa1e44..00000000
Binary files a/desktop/assets/data/graficos2x/2059.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/206.png b/desktop/assets/data/graficos2x/206.png
deleted file mode 100644
index cdf9be0f..00000000
Binary files a/desktop/assets/data/graficos2x/206.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2060.png b/desktop/assets/data/graficos2x/2060.png
deleted file mode 100644
index 9f71d850..00000000
Binary files a/desktop/assets/data/graficos2x/2060.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2061.png b/desktop/assets/data/graficos2x/2061.png
deleted file mode 100644
index 3c620f0a..00000000
Binary files a/desktop/assets/data/graficos2x/2061.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2062.png b/desktop/assets/data/graficos2x/2062.png
deleted file mode 100644
index 96924463..00000000
Binary files a/desktop/assets/data/graficos2x/2062.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2063.png b/desktop/assets/data/graficos2x/2063.png
deleted file mode 100644
index a9f543bc..00000000
Binary files a/desktop/assets/data/graficos2x/2063.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2064.png b/desktop/assets/data/graficos2x/2064.png
deleted file mode 100644
index 80cd3964..00000000
Binary files a/desktop/assets/data/graficos2x/2064.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2065.png b/desktop/assets/data/graficos2x/2065.png
deleted file mode 100644
index 7bd5140b..00000000
Binary files a/desktop/assets/data/graficos2x/2065.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2066.png b/desktop/assets/data/graficos2x/2066.png
deleted file mode 100644
index 4cee5a79..00000000
Binary files a/desktop/assets/data/graficos2x/2066.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2067.png b/desktop/assets/data/graficos2x/2067.png
deleted file mode 100644
index a70dcf42..00000000
Binary files a/desktop/assets/data/graficos2x/2067.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2068.png b/desktop/assets/data/graficos2x/2068.png
deleted file mode 100644
index dbeb9905..00000000
Binary files a/desktop/assets/data/graficos2x/2068.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2069.png b/desktop/assets/data/graficos2x/2069.png
deleted file mode 100644
index 094235ef..00000000
Binary files a/desktop/assets/data/graficos2x/2069.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/207.png b/desktop/assets/data/graficos2x/207.png
deleted file mode 100644
index 1a276293..00000000
Binary files a/desktop/assets/data/graficos2x/207.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2070.png b/desktop/assets/data/graficos2x/2070.png
deleted file mode 100644
index cc4450f8..00000000
Binary files a/desktop/assets/data/graficos2x/2070.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2071.png b/desktop/assets/data/graficos2x/2071.png
deleted file mode 100644
index 23b41598..00000000
Binary files a/desktop/assets/data/graficos2x/2071.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2072.png b/desktop/assets/data/graficos2x/2072.png
deleted file mode 100644
index b176f372..00000000
Binary files a/desktop/assets/data/graficos2x/2072.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2073.png b/desktop/assets/data/graficos2x/2073.png
deleted file mode 100644
index ef4fe9c2..00000000
Binary files a/desktop/assets/data/graficos2x/2073.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2074.png b/desktop/assets/data/graficos2x/2074.png
deleted file mode 100644
index 77c84187..00000000
Binary files a/desktop/assets/data/graficos2x/2074.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2075.png b/desktop/assets/data/graficos2x/2075.png
deleted file mode 100644
index ca5301f5..00000000
Binary files a/desktop/assets/data/graficos2x/2075.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2076.png b/desktop/assets/data/graficos2x/2076.png
deleted file mode 100644
index 6e2857c1..00000000
Binary files a/desktop/assets/data/graficos2x/2076.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2077.png b/desktop/assets/data/graficos2x/2077.png
deleted file mode 100644
index 90ff82ef..00000000
Binary files a/desktop/assets/data/graficos2x/2077.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2078.png b/desktop/assets/data/graficos2x/2078.png
deleted file mode 100644
index acb187a2..00000000
Binary files a/desktop/assets/data/graficos2x/2078.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2079.png b/desktop/assets/data/graficos2x/2079.png
deleted file mode 100644
index 60ddff37..00000000
Binary files a/desktop/assets/data/graficos2x/2079.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/208.png b/desktop/assets/data/graficos2x/208.png
deleted file mode 100644
index f18c8c74..00000000
Binary files a/desktop/assets/data/graficos2x/208.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2080.png b/desktop/assets/data/graficos2x/2080.png
deleted file mode 100644
index 866a1c20..00000000
Binary files a/desktop/assets/data/graficos2x/2080.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2081.png b/desktop/assets/data/graficos2x/2081.png
deleted file mode 100644
index c7000780..00000000
Binary files a/desktop/assets/data/graficos2x/2081.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2082.png b/desktop/assets/data/graficos2x/2082.png
deleted file mode 100644
index ea5a2531..00000000
Binary files a/desktop/assets/data/graficos2x/2082.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2083.png b/desktop/assets/data/graficos2x/2083.png
deleted file mode 100644
index 76ee508d..00000000
Binary files a/desktop/assets/data/graficos2x/2083.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2084.png b/desktop/assets/data/graficos2x/2084.png
deleted file mode 100644
index a84f164c..00000000
Binary files a/desktop/assets/data/graficos2x/2084.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2085.png b/desktop/assets/data/graficos2x/2085.png
deleted file mode 100644
index 2fac1459..00000000
Binary files a/desktop/assets/data/graficos2x/2085.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2086.png b/desktop/assets/data/graficos2x/2086.png
deleted file mode 100644
index 00335bbc..00000000
Binary files a/desktop/assets/data/graficos2x/2086.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2087.png b/desktop/assets/data/graficos2x/2087.png
deleted file mode 100644
index b0db9831..00000000
Binary files a/desktop/assets/data/graficos2x/2087.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2088.png b/desktop/assets/data/graficos2x/2088.png
deleted file mode 100644
index c6350c0b..00000000
Binary files a/desktop/assets/data/graficos2x/2088.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2089.png b/desktop/assets/data/graficos2x/2089.png
deleted file mode 100644
index 7ebc8ac0..00000000
Binary files a/desktop/assets/data/graficos2x/2089.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/209.png b/desktop/assets/data/graficos2x/209.png
deleted file mode 100644
index 9ae34d43..00000000
Binary files a/desktop/assets/data/graficos2x/209.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2090.png b/desktop/assets/data/graficos2x/2090.png
deleted file mode 100644
index b9f94aa6..00000000
Binary files a/desktop/assets/data/graficos2x/2090.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2091.png b/desktop/assets/data/graficos2x/2091.png
deleted file mode 100644
index 64a735e9..00000000
Binary files a/desktop/assets/data/graficos2x/2091.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2092.png b/desktop/assets/data/graficos2x/2092.png
deleted file mode 100644
index bc742f73..00000000
Binary files a/desktop/assets/data/graficos2x/2092.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2093.png b/desktop/assets/data/graficos2x/2093.png
deleted file mode 100644
index 9726de18..00000000
Binary files a/desktop/assets/data/graficos2x/2093.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2094.png b/desktop/assets/data/graficos2x/2094.png
deleted file mode 100644
index 90368bea..00000000
Binary files a/desktop/assets/data/graficos2x/2094.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2095.png b/desktop/assets/data/graficos2x/2095.png
deleted file mode 100644
index 04e47e1a..00000000
Binary files a/desktop/assets/data/graficos2x/2095.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2096.png b/desktop/assets/data/graficos2x/2096.png
deleted file mode 100644
index a69f46c9..00000000
Binary files a/desktop/assets/data/graficos2x/2096.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2097.png b/desktop/assets/data/graficos2x/2097.png
deleted file mode 100644
index af44a601..00000000
Binary files a/desktop/assets/data/graficos2x/2097.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2098.png b/desktop/assets/data/graficos2x/2098.png
deleted file mode 100644
index dd1378d9..00000000
Binary files a/desktop/assets/data/graficos2x/2098.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2099.png b/desktop/assets/data/graficos2x/2099.png
deleted file mode 100644
index 06a59647..00000000
Binary files a/desktop/assets/data/graficos2x/2099.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/21.png b/desktop/assets/data/graficos2x/21.png
deleted file mode 100644
index 29e47f8b..00000000
Binary files a/desktop/assets/data/graficos2x/21.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/210.png b/desktop/assets/data/graficos2x/210.png
deleted file mode 100644
index 79641f11..00000000
Binary files a/desktop/assets/data/graficos2x/210.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2100.png b/desktop/assets/data/graficos2x/2100.png
deleted file mode 100644
index ff914992..00000000
Binary files a/desktop/assets/data/graficos2x/2100.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/21000.png b/desktop/assets/data/graficos2x/21000.png
deleted file mode 100644
index 82c771b3..00000000
Binary files a/desktop/assets/data/graficos2x/21000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/21001.png b/desktop/assets/data/graficos2x/21001.png
deleted file mode 100644
index 5e83fae3..00000000
Binary files a/desktop/assets/data/graficos2x/21001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/21002.png b/desktop/assets/data/graficos2x/21002.png
deleted file mode 100644
index 9a6ce944..00000000
Binary files a/desktop/assets/data/graficos2x/21002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/21003.png b/desktop/assets/data/graficos2x/21003.png
deleted file mode 100644
index a4d052de..00000000
Binary files a/desktop/assets/data/graficos2x/21003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/21004.png b/desktop/assets/data/graficos2x/21004.png
deleted file mode 100644
index 045d4a36..00000000
Binary files a/desktop/assets/data/graficos2x/21004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/21005.png b/desktop/assets/data/graficos2x/21005.png
deleted file mode 100644
index 086dd82e..00000000
Binary files a/desktop/assets/data/graficos2x/21005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/21006.png b/desktop/assets/data/graficos2x/21006.png
deleted file mode 100644
index 5977a6d9..00000000
Binary files a/desktop/assets/data/graficos2x/21006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/21007.png b/desktop/assets/data/graficos2x/21007.png
deleted file mode 100644
index aa9b9d10..00000000
Binary files a/desktop/assets/data/graficos2x/21007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/21008.png b/desktop/assets/data/graficos2x/21008.png
deleted file mode 100644
index c133b75d..00000000
Binary files a/desktop/assets/data/graficos2x/21008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/21009.png b/desktop/assets/data/graficos2x/21009.png
deleted file mode 100644
index c20fcd53..00000000
Binary files a/desktop/assets/data/graficos2x/21009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2101.png b/desktop/assets/data/graficos2x/2101.png
deleted file mode 100644
index 5ad4446d..00000000
Binary files a/desktop/assets/data/graficos2x/2101.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/21010.png b/desktop/assets/data/graficos2x/21010.png
deleted file mode 100644
index 0827f9c1..00000000
Binary files a/desktop/assets/data/graficos2x/21010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/21011.png b/desktop/assets/data/graficos2x/21011.png
deleted file mode 100644
index 4d43bc67..00000000
Binary files a/desktop/assets/data/graficos2x/21011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/21012.png b/desktop/assets/data/graficos2x/21012.png
deleted file mode 100644
index 5a37ccd9..00000000
Binary files a/desktop/assets/data/graficos2x/21012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/21013.png b/desktop/assets/data/graficos2x/21013.png
deleted file mode 100644
index ac144e9e..00000000
Binary files a/desktop/assets/data/graficos2x/21013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/21014.png b/desktop/assets/data/graficos2x/21014.png
deleted file mode 100644
index de0e8491..00000000
Binary files a/desktop/assets/data/graficos2x/21014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2102.png b/desktop/assets/data/graficos2x/2102.png
deleted file mode 100644
index 66a8a70a..00000000
Binary files a/desktop/assets/data/graficos2x/2102.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2103.png b/desktop/assets/data/graficos2x/2103.png
deleted file mode 100644
index 6547199e..00000000
Binary files a/desktop/assets/data/graficos2x/2103.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2104.png b/desktop/assets/data/graficos2x/2104.png
deleted file mode 100644
index 27e374bc..00000000
Binary files a/desktop/assets/data/graficos2x/2104.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2105.png b/desktop/assets/data/graficos2x/2105.png
deleted file mode 100644
index 2997e236..00000000
Binary files a/desktop/assets/data/graficos2x/2105.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2106.png b/desktop/assets/data/graficos2x/2106.png
deleted file mode 100644
index 192fa686..00000000
Binary files a/desktop/assets/data/graficos2x/2106.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2107.png b/desktop/assets/data/graficos2x/2107.png
deleted file mode 100644
index fc15bbea..00000000
Binary files a/desktop/assets/data/graficos2x/2107.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2108.png b/desktop/assets/data/graficos2x/2108.png
deleted file mode 100644
index 8d0cfdb9..00000000
Binary files a/desktop/assets/data/graficos2x/2108.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2109.png b/desktop/assets/data/graficos2x/2109.png
deleted file mode 100644
index 9569a013..00000000
Binary files a/desktop/assets/data/graficos2x/2109.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/211.png b/desktop/assets/data/graficos2x/211.png
deleted file mode 100644
index 3a9429ea..00000000
Binary files a/desktop/assets/data/graficos2x/211.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2110.png b/desktop/assets/data/graficos2x/2110.png
deleted file mode 100644
index 79df2281..00000000
Binary files a/desktop/assets/data/graficos2x/2110.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2111.png b/desktop/assets/data/graficos2x/2111.png
deleted file mode 100644
index 1d7657b6..00000000
Binary files a/desktop/assets/data/graficos2x/2111.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2112.png b/desktop/assets/data/graficos2x/2112.png
deleted file mode 100644
index d0197ec6..00000000
Binary files a/desktop/assets/data/graficos2x/2112.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2113.png b/desktop/assets/data/graficos2x/2113.png
deleted file mode 100644
index 5b7f11eb..00000000
Binary files a/desktop/assets/data/graficos2x/2113.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2114.png b/desktop/assets/data/graficos2x/2114.png
deleted file mode 100644
index 83becb6d..00000000
Binary files a/desktop/assets/data/graficos2x/2114.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2115.png b/desktop/assets/data/graficos2x/2115.png
deleted file mode 100644
index 93959480..00000000
Binary files a/desktop/assets/data/graficos2x/2115.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2116.png b/desktop/assets/data/graficos2x/2116.png
deleted file mode 100644
index 824cd332..00000000
Binary files a/desktop/assets/data/graficos2x/2116.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2117.png b/desktop/assets/data/graficos2x/2117.png
deleted file mode 100644
index 1f073778..00000000
Binary files a/desktop/assets/data/graficos2x/2117.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2118.png b/desktop/assets/data/graficos2x/2118.png
deleted file mode 100644
index 66e3b7d6..00000000
Binary files a/desktop/assets/data/graficos2x/2118.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2119.png b/desktop/assets/data/graficos2x/2119.png
deleted file mode 100644
index 8f4bd11e..00000000
Binary files a/desktop/assets/data/graficos2x/2119.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/212.png b/desktop/assets/data/graficos2x/212.png
deleted file mode 100644
index 19826c97..00000000
Binary files a/desktop/assets/data/graficos2x/212.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2120.png b/desktop/assets/data/graficos2x/2120.png
deleted file mode 100644
index 8b900d77..00000000
Binary files a/desktop/assets/data/graficos2x/2120.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2121.png b/desktop/assets/data/graficos2x/2121.png
deleted file mode 100644
index 1ff355bd..00000000
Binary files a/desktop/assets/data/graficos2x/2121.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2122.png b/desktop/assets/data/graficos2x/2122.png
deleted file mode 100644
index 7f00cbbb..00000000
Binary files a/desktop/assets/data/graficos2x/2122.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2123.png b/desktop/assets/data/graficos2x/2123.png
deleted file mode 100644
index ce817604..00000000
Binary files a/desktop/assets/data/graficos2x/2123.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2124.png b/desktop/assets/data/graficos2x/2124.png
deleted file mode 100644
index d9b56ac8..00000000
Binary files a/desktop/assets/data/graficos2x/2124.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2125.png b/desktop/assets/data/graficos2x/2125.png
deleted file mode 100644
index 2d2668cb..00000000
Binary files a/desktop/assets/data/graficos2x/2125.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2126.png b/desktop/assets/data/graficos2x/2126.png
deleted file mode 100644
index e3cdb652..00000000
Binary files a/desktop/assets/data/graficos2x/2126.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2127.png b/desktop/assets/data/graficos2x/2127.png
deleted file mode 100644
index 20b56c84..00000000
Binary files a/desktop/assets/data/graficos2x/2127.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2128.png b/desktop/assets/data/graficos2x/2128.png
deleted file mode 100644
index 8b9af76b..00000000
Binary files a/desktop/assets/data/graficos2x/2128.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2129.png b/desktop/assets/data/graficos2x/2129.png
deleted file mode 100644
index c545f476..00000000
Binary files a/desktop/assets/data/graficos2x/2129.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/213.png b/desktop/assets/data/graficos2x/213.png
deleted file mode 100644
index 5b86fc0b..00000000
Binary files a/desktop/assets/data/graficos2x/213.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2130.png b/desktop/assets/data/graficos2x/2130.png
deleted file mode 100644
index ebf3141c..00000000
Binary files a/desktop/assets/data/graficos2x/2130.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2131.png b/desktop/assets/data/graficos2x/2131.png
deleted file mode 100644
index 0ffd355f..00000000
Binary files a/desktop/assets/data/graficos2x/2131.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2132.png b/desktop/assets/data/graficos2x/2132.png
deleted file mode 100644
index 6796f2be..00000000
Binary files a/desktop/assets/data/graficos2x/2132.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2133.png b/desktop/assets/data/graficos2x/2133.png
deleted file mode 100644
index cabeacae..00000000
Binary files a/desktop/assets/data/graficos2x/2133.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2134.png b/desktop/assets/data/graficos2x/2134.png
deleted file mode 100644
index 52c2640f..00000000
Binary files a/desktop/assets/data/graficos2x/2134.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2135.png b/desktop/assets/data/graficos2x/2135.png
deleted file mode 100644
index d1b75980..00000000
Binary files a/desktop/assets/data/graficos2x/2135.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2136.png b/desktop/assets/data/graficos2x/2136.png
deleted file mode 100644
index 49da33a0..00000000
Binary files a/desktop/assets/data/graficos2x/2136.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2137.png b/desktop/assets/data/graficos2x/2137.png
deleted file mode 100644
index dcc5ad6f..00000000
Binary files a/desktop/assets/data/graficos2x/2137.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2138.png b/desktop/assets/data/graficos2x/2138.png
deleted file mode 100644
index cf8faf5c..00000000
Binary files a/desktop/assets/data/graficos2x/2138.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2139.png b/desktop/assets/data/graficos2x/2139.png
deleted file mode 100644
index ec2d588e..00000000
Binary files a/desktop/assets/data/graficos2x/2139.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/214.png b/desktop/assets/data/graficos2x/214.png
deleted file mode 100644
index 94c82634..00000000
Binary files a/desktop/assets/data/graficos2x/214.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2140.png b/desktop/assets/data/graficos2x/2140.png
deleted file mode 100644
index c86ce619..00000000
Binary files a/desktop/assets/data/graficos2x/2140.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2141.png b/desktop/assets/data/graficos2x/2141.png
deleted file mode 100644
index 85ca7f46..00000000
Binary files a/desktop/assets/data/graficos2x/2141.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2142.png b/desktop/assets/data/graficos2x/2142.png
deleted file mode 100644
index 2715e37e..00000000
Binary files a/desktop/assets/data/graficos2x/2142.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2143.png b/desktop/assets/data/graficos2x/2143.png
deleted file mode 100644
index 40e9761f..00000000
Binary files a/desktop/assets/data/graficos2x/2143.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2144.png b/desktop/assets/data/graficos2x/2144.png
deleted file mode 100644
index 171f563a..00000000
Binary files a/desktop/assets/data/graficos2x/2144.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2145.png b/desktop/assets/data/graficos2x/2145.png
deleted file mode 100644
index 6c85065d..00000000
Binary files a/desktop/assets/data/graficos2x/2145.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2146.png b/desktop/assets/data/graficos2x/2146.png
deleted file mode 100644
index 466fbbad..00000000
Binary files a/desktop/assets/data/graficos2x/2146.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2147.png b/desktop/assets/data/graficos2x/2147.png
deleted file mode 100644
index 15072eb2..00000000
Binary files a/desktop/assets/data/graficos2x/2147.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2148.png b/desktop/assets/data/graficos2x/2148.png
deleted file mode 100644
index 616809a6..00000000
Binary files a/desktop/assets/data/graficos2x/2148.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2149.png b/desktop/assets/data/graficos2x/2149.png
deleted file mode 100644
index 853d175b..00000000
Binary files a/desktop/assets/data/graficos2x/2149.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/215.png b/desktop/assets/data/graficos2x/215.png
deleted file mode 100644
index 5bfa97b4..00000000
Binary files a/desktop/assets/data/graficos2x/215.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2150.png b/desktop/assets/data/graficos2x/2150.png
deleted file mode 100644
index c4d93357..00000000
Binary files a/desktop/assets/data/graficos2x/2150.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2151.png b/desktop/assets/data/graficos2x/2151.png
deleted file mode 100644
index 44365bc0..00000000
Binary files a/desktop/assets/data/graficos2x/2151.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2152.png b/desktop/assets/data/graficos2x/2152.png
deleted file mode 100644
index 0cfc595e..00000000
Binary files a/desktop/assets/data/graficos2x/2152.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2153.png b/desktop/assets/data/graficos2x/2153.png
deleted file mode 100644
index 6cdbacc2..00000000
Binary files a/desktop/assets/data/graficos2x/2153.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2154.png b/desktop/assets/data/graficos2x/2154.png
deleted file mode 100644
index 3b86d700..00000000
Binary files a/desktop/assets/data/graficos2x/2154.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2155.png b/desktop/assets/data/graficos2x/2155.png
deleted file mode 100644
index 8e96e121..00000000
Binary files a/desktop/assets/data/graficos2x/2155.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2156.png b/desktop/assets/data/graficos2x/2156.png
deleted file mode 100644
index 48b4d764..00000000
Binary files a/desktop/assets/data/graficos2x/2156.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2157.png b/desktop/assets/data/graficos2x/2157.png
deleted file mode 100644
index 602bfcd3..00000000
Binary files a/desktop/assets/data/graficos2x/2157.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2158.png b/desktop/assets/data/graficos2x/2158.png
deleted file mode 100644
index 4c881b15..00000000
Binary files a/desktop/assets/data/graficos2x/2158.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2159.png b/desktop/assets/data/graficos2x/2159.png
deleted file mode 100644
index 7aa8d445..00000000
Binary files a/desktop/assets/data/graficos2x/2159.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/216.png b/desktop/assets/data/graficos2x/216.png
deleted file mode 100644
index 8913627a..00000000
Binary files a/desktop/assets/data/graficos2x/216.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2160.png b/desktop/assets/data/graficos2x/2160.png
deleted file mode 100644
index a234c252..00000000
Binary files a/desktop/assets/data/graficos2x/2160.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2161.png b/desktop/assets/data/graficos2x/2161.png
deleted file mode 100644
index 1d30ea6f..00000000
Binary files a/desktop/assets/data/graficos2x/2161.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2162.png b/desktop/assets/data/graficos2x/2162.png
deleted file mode 100644
index d3c34aec..00000000
Binary files a/desktop/assets/data/graficos2x/2162.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2163.png b/desktop/assets/data/graficos2x/2163.png
deleted file mode 100644
index ee02ae52..00000000
Binary files a/desktop/assets/data/graficos2x/2163.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2164.png b/desktop/assets/data/graficos2x/2164.png
deleted file mode 100644
index a6d9a0f9..00000000
Binary files a/desktop/assets/data/graficos2x/2164.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2165.png b/desktop/assets/data/graficos2x/2165.png
deleted file mode 100644
index 2b2d19a6..00000000
Binary files a/desktop/assets/data/graficos2x/2165.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2166.png b/desktop/assets/data/graficos2x/2166.png
deleted file mode 100644
index fbf80920..00000000
Binary files a/desktop/assets/data/graficos2x/2166.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2167.png b/desktop/assets/data/graficos2x/2167.png
deleted file mode 100644
index 63ee87fc..00000000
Binary files a/desktop/assets/data/graficos2x/2167.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2168.png b/desktop/assets/data/graficos2x/2168.png
deleted file mode 100644
index f35ef096..00000000
Binary files a/desktop/assets/data/graficos2x/2168.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2169.png b/desktop/assets/data/graficos2x/2169.png
deleted file mode 100644
index 2031562b..00000000
Binary files a/desktop/assets/data/graficos2x/2169.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/217.png b/desktop/assets/data/graficos2x/217.png
deleted file mode 100644
index c6a40670..00000000
Binary files a/desktop/assets/data/graficos2x/217.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2170.png b/desktop/assets/data/graficos2x/2170.png
deleted file mode 100644
index 1ca9897b..00000000
Binary files a/desktop/assets/data/graficos2x/2170.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2171.png b/desktop/assets/data/graficos2x/2171.png
deleted file mode 100644
index bd730f9d..00000000
Binary files a/desktop/assets/data/graficos2x/2171.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2172.png b/desktop/assets/data/graficos2x/2172.png
deleted file mode 100644
index 8ea9307f..00000000
Binary files a/desktop/assets/data/graficos2x/2172.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2173.png b/desktop/assets/data/graficos2x/2173.png
deleted file mode 100644
index e9102f76..00000000
Binary files a/desktop/assets/data/graficos2x/2173.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2174.png b/desktop/assets/data/graficos2x/2174.png
deleted file mode 100644
index 1b243ba7..00000000
Binary files a/desktop/assets/data/graficos2x/2174.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2175.png b/desktop/assets/data/graficos2x/2175.png
deleted file mode 100644
index e7d40911..00000000
Binary files a/desktop/assets/data/graficos2x/2175.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2176.png b/desktop/assets/data/graficos2x/2176.png
deleted file mode 100644
index 452065ed..00000000
Binary files a/desktop/assets/data/graficos2x/2176.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2177.png b/desktop/assets/data/graficos2x/2177.png
deleted file mode 100644
index 88c3f5a6..00000000
Binary files a/desktop/assets/data/graficos2x/2177.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2178.png b/desktop/assets/data/graficos2x/2178.png
deleted file mode 100644
index f4c2ab64..00000000
Binary files a/desktop/assets/data/graficos2x/2178.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2179.png b/desktop/assets/data/graficos2x/2179.png
deleted file mode 100644
index d5fafd7c..00000000
Binary files a/desktop/assets/data/graficos2x/2179.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/218.png b/desktop/assets/data/graficos2x/218.png
deleted file mode 100644
index 71af2b29..00000000
Binary files a/desktop/assets/data/graficos2x/218.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2180.png b/desktop/assets/data/graficos2x/2180.png
deleted file mode 100644
index 78812849..00000000
Binary files a/desktop/assets/data/graficos2x/2180.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2181.png b/desktop/assets/data/graficos2x/2181.png
deleted file mode 100644
index 20bf32ec..00000000
Binary files a/desktop/assets/data/graficos2x/2181.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2182.png b/desktop/assets/data/graficos2x/2182.png
deleted file mode 100644
index e63599e2..00000000
Binary files a/desktop/assets/data/graficos2x/2182.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2183.png b/desktop/assets/data/graficos2x/2183.png
deleted file mode 100644
index 8d6f4419..00000000
Binary files a/desktop/assets/data/graficos2x/2183.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2184.png b/desktop/assets/data/graficos2x/2184.png
deleted file mode 100644
index b17bd914..00000000
Binary files a/desktop/assets/data/graficos2x/2184.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2185.png b/desktop/assets/data/graficos2x/2185.png
deleted file mode 100644
index 368d87fc..00000000
Binary files a/desktop/assets/data/graficos2x/2185.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2186.png b/desktop/assets/data/graficos2x/2186.png
deleted file mode 100644
index 0544ddda..00000000
Binary files a/desktop/assets/data/graficos2x/2186.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2187.png b/desktop/assets/data/graficos2x/2187.png
deleted file mode 100644
index 91c02d06..00000000
Binary files a/desktop/assets/data/graficos2x/2187.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2188.png b/desktop/assets/data/graficos2x/2188.png
deleted file mode 100644
index c8bb7e7d..00000000
Binary files a/desktop/assets/data/graficos2x/2188.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2189.png b/desktop/assets/data/graficos2x/2189.png
deleted file mode 100644
index 34a9a189..00000000
Binary files a/desktop/assets/data/graficos2x/2189.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/219.png b/desktop/assets/data/graficos2x/219.png
deleted file mode 100644
index e553c2b0..00000000
Binary files a/desktop/assets/data/graficos2x/219.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2190.png b/desktop/assets/data/graficos2x/2190.png
deleted file mode 100644
index 9b65c825..00000000
Binary files a/desktop/assets/data/graficos2x/2190.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2191.png b/desktop/assets/data/graficos2x/2191.png
deleted file mode 100644
index 853feef9..00000000
Binary files a/desktop/assets/data/graficos2x/2191.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2192.png b/desktop/assets/data/graficos2x/2192.png
deleted file mode 100644
index 429bc56e..00000000
Binary files a/desktop/assets/data/graficos2x/2192.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2193.png b/desktop/assets/data/graficos2x/2193.png
deleted file mode 100644
index 5a42f2cf..00000000
Binary files a/desktop/assets/data/graficos2x/2193.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2194.png b/desktop/assets/data/graficos2x/2194.png
deleted file mode 100644
index 30792164..00000000
Binary files a/desktop/assets/data/graficos2x/2194.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2195.png b/desktop/assets/data/graficos2x/2195.png
deleted file mode 100644
index 15d89451..00000000
Binary files a/desktop/assets/data/graficos2x/2195.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2196.png b/desktop/assets/data/graficos2x/2196.png
deleted file mode 100644
index 315790f0..00000000
Binary files a/desktop/assets/data/graficos2x/2196.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2197.png b/desktop/assets/data/graficos2x/2197.png
deleted file mode 100644
index df09ac31..00000000
Binary files a/desktop/assets/data/graficos2x/2197.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2198.png b/desktop/assets/data/graficos2x/2198.png
deleted file mode 100644
index 353631fc..00000000
Binary files a/desktop/assets/data/graficos2x/2198.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2199.png b/desktop/assets/data/graficos2x/2199.png
deleted file mode 100644
index bc9431c3..00000000
Binary files a/desktop/assets/data/graficos2x/2199.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22.png b/desktop/assets/data/graficos2x/22.png
deleted file mode 100644
index 78c25ba4..00000000
Binary files a/desktop/assets/data/graficos2x/22.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/220.png b/desktop/assets/data/graficos2x/220.png
deleted file mode 100644
index c11b6716..00000000
Binary files a/desktop/assets/data/graficos2x/220.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2200.png b/desktop/assets/data/graficos2x/2200.png
deleted file mode 100644
index 0447aa53..00000000
Binary files a/desktop/assets/data/graficos2x/2200.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22000.png b/desktop/assets/data/graficos2x/22000.png
deleted file mode 100644
index 789e88c0..00000000
Binary files a/desktop/assets/data/graficos2x/22000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22001.png b/desktop/assets/data/graficos2x/22001.png
deleted file mode 100644
index a9eb5b42..00000000
Binary files a/desktop/assets/data/graficos2x/22001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22002.png b/desktop/assets/data/graficos2x/22002.png
deleted file mode 100644
index adf4d187..00000000
Binary files a/desktop/assets/data/graficos2x/22002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22003.png b/desktop/assets/data/graficos2x/22003.png
deleted file mode 100644
index 0d2dbe45..00000000
Binary files a/desktop/assets/data/graficos2x/22003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22004.png b/desktop/assets/data/graficos2x/22004.png
deleted file mode 100644
index 69a7ce08..00000000
Binary files a/desktop/assets/data/graficos2x/22004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22005.png b/desktop/assets/data/graficos2x/22005.png
deleted file mode 100644
index 101df6cd..00000000
Binary files a/desktop/assets/data/graficos2x/22005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22006.png b/desktop/assets/data/graficos2x/22006.png
deleted file mode 100644
index 47a51a24..00000000
Binary files a/desktop/assets/data/graficos2x/22006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22007.png b/desktop/assets/data/graficos2x/22007.png
deleted file mode 100644
index 2a775d4b..00000000
Binary files a/desktop/assets/data/graficos2x/22007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22008.png b/desktop/assets/data/graficos2x/22008.png
deleted file mode 100644
index 2d6d5c35..00000000
Binary files a/desktop/assets/data/graficos2x/22008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22009.png b/desktop/assets/data/graficos2x/22009.png
deleted file mode 100644
index b112b8d3..00000000
Binary files a/desktop/assets/data/graficos2x/22009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2201.png b/desktop/assets/data/graficos2x/2201.png
deleted file mode 100644
index 9111a3eb..00000000
Binary files a/desktop/assets/data/graficos2x/2201.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22010.png b/desktop/assets/data/graficos2x/22010.png
deleted file mode 100644
index cd32bfed..00000000
Binary files a/desktop/assets/data/graficos2x/22010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22011.png b/desktop/assets/data/graficos2x/22011.png
deleted file mode 100644
index 50046422..00000000
Binary files a/desktop/assets/data/graficos2x/22011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22012.png b/desktop/assets/data/graficos2x/22012.png
deleted file mode 100644
index fe7648f1..00000000
Binary files a/desktop/assets/data/graficos2x/22012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22013.png b/desktop/assets/data/graficos2x/22013.png
deleted file mode 100644
index 2dc05f55..00000000
Binary files a/desktop/assets/data/graficos2x/22013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22014.png b/desktop/assets/data/graficos2x/22014.png
deleted file mode 100644
index eab07cdb..00000000
Binary files a/desktop/assets/data/graficos2x/22014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22015.png b/desktop/assets/data/graficos2x/22015.png
deleted file mode 100644
index 4b8f02ba..00000000
Binary files a/desktop/assets/data/graficos2x/22015.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22016.png b/desktop/assets/data/graficos2x/22016.png
deleted file mode 100644
index 32d617b8..00000000
Binary files a/desktop/assets/data/graficos2x/22016.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22017.png b/desktop/assets/data/graficos2x/22017.png
deleted file mode 100644
index 671000fb..00000000
Binary files a/desktop/assets/data/graficos2x/22017.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22018.png b/desktop/assets/data/graficos2x/22018.png
deleted file mode 100644
index 496675d6..00000000
Binary files a/desktop/assets/data/graficos2x/22018.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22019.png b/desktop/assets/data/graficos2x/22019.png
deleted file mode 100644
index a605d74b..00000000
Binary files a/desktop/assets/data/graficos2x/22019.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2202.png b/desktop/assets/data/graficos2x/2202.png
deleted file mode 100644
index b7e6672b..00000000
Binary files a/desktop/assets/data/graficos2x/2202.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22020.png b/desktop/assets/data/graficos2x/22020.png
deleted file mode 100644
index 51dbe58d..00000000
Binary files a/desktop/assets/data/graficos2x/22020.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22021.png b/desktop/assets/data/graficos2x/22021.png
deleted file mode 100644
index cd9f126e..00000000
Binary files a/desktop/assets/data/graficos2x/22021.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22022.png b/desktop/assets/data/graficos2x/22022.png
deleted file mode 100644
index e86eede0..00000000
Binary files a/desktop/assets/data/graficos2x/22022.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22023.png b/desktop/assets/data/graficos2x/22023.png
deleted file mode 100644
index 1659c356..00000000
Binary files a/desktop/assets/data/graficos2x/22023.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22024.png b/desktop/assets/data/graficos2x/22024.png
deleted file mode 100644
index fece1d4e..00000000
Binary files a/desktop/assets/data/graficos2x/22024.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22025.png b/desktop/assets/data/graficos2x/22025.png
deleted file mode 100644
index 3a1030e4..00000000
Binary files a/desktop/assets/data/graficos2x/22025.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22026.png b/desktop/assets/data/graficos2x/22026.png
deleted file mode 100644
index 024b1450..00000000
Binary files a/desktop/assets/data/graficos2x/22026.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22027.png b/desktop/assets/data/graficos2x/22027.png
deleted file mode 100644
index 60814e3d..00000000
Binary files a/desktop/assets/data/graficos2x/22027.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22028.png b/desktop/assets/data/graficos2x/22028.png
deleted file mode 100644
index be75286d..00000000
Binary files a/desktop/assets/data/graficos2x/22028.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22029.png b/desktop/assets/data/graficos2x/22029.png
deleted file mode 100644
index 7e526532..00000000
Binary files a/desktop/assets/data/graficos2x/22029.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2203.png b/desktop/assets/data/graficos2x/2203.png
deleted file mode 100644
index 151ca5ef..00000000
Binary files a/desktop/assets/data/graficos2x/2203.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22030.png b/desktop/assets/data/graficos2x/22030.png
deleted file mode 100644
index 1bf48f97..00000000
Binary files a/desktop/assets/data/graficos2x/22030.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22031.png b/desktop/assets/data/graficos2x/22031.png
deleted file mode 100644
index ef66e108..00000000
Binary files a/desktop/assets/data/graficos2x/22031.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22032.png b/desktop/assets/data/graficos2x/22032.png
deleted file mode 100644
index 695b2f8a..00000000
Binary files a/desktop/assets/data/graficos2x/22032.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22033.png b/desktop/assets/data/graficos2x/22033.png
deleted file mode 100644
index 75bbcf68..00000000
Binary files a/desktop/assets/data/graficos2x/22033.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22034.png b/desktop/assets/data/graficos2x/22034.png
deleted file mode 100644
index 98053e6b..00000000
Binary files a/desktop/assets/data/graficos2x/22034.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22035.png b/desktop/assets/data/graficos2x/22035.png
deleted file mode 100644
index 91985005..00000000
Binary files a/desktop/assets/data/graficos2x/22035.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22036.png b/desktop/assets/data/graficos2x/22036.png
deleted file mode 100644
index 7b4b3174..00000000
Binary files a/desktop/assets/data/graficos2x/22036.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22037.png b/desktop/assets/data/graficos2x/22037.png
deleted file mode 100644
index 2145fa3d..00000000
Binary files a/desktop/assets/data/graficos2x/22037.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22038.png b/desktop/assets/data/graficos2x/22038.png
deleted file mode 100644
index c2c8f266..00000000
Binary files a/desktop/assets/data/graficos2x/22038.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22039.png b/desktop/assets/data/graficos2x/22039.png
deleted file mode 100644
index 0e5289ab..00000000
Binary files a/desktop/assets/data/graficos2x/22039.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2204.png b/desktop/assets/data/graficos2x/2204.png
deleted file mode 100644
index da6cef75..00000000
Binary files a/desktop/assets/data/graficos2x/2204.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22040.png b/desktop/assets/data/graficos2x/22040.png
deleted file mode 100644
index 9a7caea7..00000000
Binary files a/desktop/assets/data/graficos2x/22040.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22041.png b/desktop/assets/data/graficos2x/22041.png
deleted file mode 100644
index 8aef1d7e..00000000
Binary files a/desktop/assets/data/graficos2x/22041.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22042.png b/desktop/assets/data/graficos2x/22042.png
deleted file mode 100644
index c76278bc..00000000
Binary files a/desktop/assets/data/graficos2x/22042.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22043.png b/desktop/assets/data/graficos2x/22043.png
deleted file mode 100644
index b2948fdf..00000000
Binary files a/desktop/assets/data/graficos2x/22043.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22044.png b/desktop/assets/data/graficos2x/22044.png
deleted file mode 100644
index 8f69f95f..00000000
Binary files a/desktop/assets/data/graficos2x/22044.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22045.png b/desktop/assets/data/graficos2x/22045.png
deleted file mode 100644
index 839968cb..00000000
Binary files a/desktop/assets/data/graficos2x/22045.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22046.png b/desktop/assets/data/graficos2x/22046.png
deleted file mode 100644
index 61f3d4eb..00000000
Binary files a/desktop/assets/data/graficos2x/22046.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22047.png b/desktop/assets/data/graficos2x/22047.png
deleted file mode 100644
index bb3ff674..00000000
Binary files a/desktop/assets/data/graficos2x/22047.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22048.png b/desktop/assets/data/graficos2x/22048.png
deleted file mode 100644
index 72f3215c..00000000
Binary files a/desktop/assets/data/graficos2x/22048.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22049.png b/desktop/assets/data/graficos2x/22049.png
deleted file mode 100644
index 53984638..00000000
Binary files a/desktop/assets/data/graficos2x/22049.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2205.png b/desktop/assets/data/graficos2x/2205.png
deleted file mode 100644
index 9ebf9289..00000000
Binary files a/desktop/assets/data/graficos2x/2205.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22050.png b/desktop/assets/data/graficos2x/22050.png
deleted file mode 100644
index d3842e43..00000000
Binary files a/desktop/assets/data/graficos2x/22050.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22051.png b/desktop/assets/data/graficos2x/22051.png
deleted file mode 100644
index 7b70e1de..00000000
Binary files a/desktop/assets/data/graficos2x/22051.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22052.png b/desktop/assets/data/graficos2x/22052.png
deleted file mode 100644
index c2cfb268..00000000
Binary files a/desktop/assets/data/graficos2x/22052.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22053.png b/desktop/assets/data/graficos2x/22053.png
deleted file mode 100644
index fef5d5be..00000000
Binary files a/desktop/assets/data/graficos2x/22053.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22054.png b/desktop/assets/data/graficos2x/22054.png
deleted file mode 100644
index bc35b099..00000000
Binary files a/desktop/assets/data/graficos2x/22054.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22055.png b/desktop/assets/data/graficos2x/22055.png
deleted file mode 100644
index 1ff2578a..00000000
Binary files a/desktop/assets/data/graficos2x/22055.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22056.png b/desktop/assets/data/graficos2x/22056.png
deleted file mode 100644
index c69d222f..00000000
Binary files a/desktop/assets/data/graficos2x/22056.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22057.png b/desktop/assets/data/graficos2x/22057.png
deleted file mode 100644
index dfcbbd06..00000000
Binary files a/desktop/assets/data/graficos2x/22057.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22058.png b/desktop/assets/data/graficos2x/22058.png
deleted file mode 100644
index 63d7e38b..00000000
Binary files a/desktop/assets/data/graficos2x/22058.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22059.png b/desktop/assets/data/graficos2x/22059.png
deleted file mode 100644
index 1769c14d..00000000
Binary files a/desktop/assets/data/graficos2x/22059.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2206.png b/desktop/assets/data/graficos2x/2206.png
deleted file mode 100644
index 6103939b..00000000
Binary files a/desktop/assets/data/graficos2x/2206.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22060.png b/desktop/assets/data/graficos2x/22060.png
deleted file mode 100644
index 59c4001c..00000000
Binary files a/desktop/assets/data/graficos2x/22060.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22061.png b/desktop/assets/data/graficos2x/22061.png
deleted file mode 100644
index c581e42f..00000000
Binary files a/desktop/assets/data/graficos2x/22061.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22062.png b/desktop/assets/data/graficos2x/22062.png
deleted file mode 100644
index 1ea6eadd..00000000
Binary files a/desktop/assets/data/graficos2x/22062.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22063.png b/desktop/assets/data/graficos2x/22063.png
deleted file mode 100644
index 867130ec..00000000
Binary files a/desktop/assets/data/graficos2x/22063.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22064.png b/desktop/assets/data/graficos2x/22064.png
deleted file mode 100644
index ca06b0c7..00000000
Binary files a/desktop/assets/data/graficos2x/22064.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22065.png b/desktop/assets/data/graficos2x/22065.png
deleted file mode 100644
index 5b836963..00000000
Binary files a/desktop/assets/data/graficos2x/22065.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22066.png b/desktop/assets/data/graficos2x/22066.png
deleted file mode 100644
index d9d52848..00000000
Binary files a/desktop/assets/data/graficos2x/22066.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22067.png b/desktop/assets/data/graficos2x/22067.png
deleted file mode 100644
index 12b508ee..00000000
Binary files a/desktop/assets/data/graficos2x/22067.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22068.png b/desktop/assets/data/graficos2x/22068.png
deleted file mode 100644
index 3b32dc81..00000000
Binary files a/desktop/assets/data/graficos2x/22068.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22069.png b/desktop/assets/data/graficos2x/22069.png
deleted file mode 100644
index 94e180c7..00000000
Binary files a/desktop/assets/data/graficos2x/22069.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2207.png b/desktop/assets/data/graficos2x/2207.png
deleted file mode 100644
index 61140467..00000000
Binary files a/desktop/assets/data/graficos2x/2207.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22070.png b/desktop/assets/data/graficos2x/22070.png
deleted file mode 100644
index fdeb12bf..00000000
Binary files a/desktop/assets/data/graficos2x/22070.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22071.png b/desktop/assets/data/graficos2x/22071.png
deleted file mode 100644
index f30e669a..00000000
Binary files a/desktop/assets/data/graficos2x/22071.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/22072.png b/desktop/assets/data/graficos2x/22072.png
deleted file mode 100644
index 7f7ae6cc..00000000
Binary files a/desktop/assets/data/graficos2x/22072.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2208.png b/desktop/assets/data/graficos2x/2208.png
deleted file mode 100644
index 4eb2ab40..00000000
Binary files a/desktop/assets/data/graficos2x/2208.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2209.png b/desktop/assets/data/graficos2x/2209.png
deleted file mode 100644
index fc8e467b..00000000
Binary files a/desktop/assets/data/graficos2x/2209.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/221.png b/desktop/assets/data/graficos2x/221.png
deleted file mode 100644
index 47986f4f..00000000
Binary files a/desktop/assets/data/graficos2x/221.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2210.png b/desktop/assets/data/graficos2x/2210.png
deleted file mode 100644
index ee284121..00000000
Binary files a/desktop/assets/data/graficos2x/2210.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2211.png b/desktop/assets/data/graficos2x/2211.png
deleted file mode 100644
index 1c16064b..00000000
Binary files a/desktop/assets/data/graficos2x/2211.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2212.png b/desktop/assets/data/graficos2x/2212.png
deleted file mode 100644
index 6560a288..00000000
Binary files a/desktop/assets/data/graficos2x/2212.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2213.png b/desktop/assets/data/graficos2x/2213.png
deleted file mode 100644
index b8f9ee77..00000000
Binary files a/desktop/assets/data/graficos2x/2213.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2214.png b/desktop/assets/data/graficos2x/2214.png
deleted file mode 100644
index f4222f8f..00000000
Binary files a/desktop/assets/data/graficos2x/2214.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2215.png b/desktop/assets/data/graficos2x/2215.png
deleted file mode 100644
index 94adba22..00000000
Binary files a/desktop/assets/data/graficos2x/2215.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2216.png b/desktop/assets/data/graficos2x/2216.png
deleted file mode 100644
index d7b2be16..00000000
Binary files a/desktop/assets/data/graficos2x/2216.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2217.png b/desktop/assets/data/graficos2x/2217.png
deleted file mode 100644
index bfd21851..00000000
Binary files a/desktop/assets/data/graficos2x/2217.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2218.png b/desktop/assets/data/graficos2x/2218.png
deleted file mode 100644
index 86ec2a80..00000000
Binary files a/desktop/assets/data/graficos2x/2218.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2219.png b/desktop/assets/data/graficos2x/2219.png
deleted file mode 100644
index 097350fd..00000000
Binary files a/desktop/assets/data/graficos2x/2219.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/222.png b/desktop/assets/data/graficos2x/222.png
deleted file mode 100644
index 7b37fad6..00000000
Binary files a/desktop/assets/data/graficos2x/222.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2220.png b/desktop/assets/data/graficos2x/2220.png
deleted file mode 100644
index 7b3bd736..00000000
Binary files a/desktop/assets/data/graficos2x/2220.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2221.png b/desktop/assets/data/graficos2x/2221.png
deleted file mode 100644
index 826c755c..00000000
Binary files a/desktop/assets/data/graficos2x/2221.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2222.png b/desktop/assets/data/graficos2x/2222.png
deleted file mode 100644
index e04d2b1d..00000000
Binary files a/desktop/assets/data/graficos2x/2222.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2223.png b/desktop/assets/data/graficos2x/2223.png
deleted file mode 100644
index a4697345..00000000
Binary files a/desktop/assets/data/graficos2x/2223.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2224.png b/desktop/assets/data/graficos2x/2224.png
deleted file mode 100644
index d73ea6f6..00000000
Binary files a/desktop/assets/data/graficos2x/2224.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2225.png b/desktop/assets/data/graficos2x/2225.png
deleted file mode 100644
index e666c540..00000000
Binary files a/desktop/assets/data/graficos2x/2225.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2226.png b/desktop/assets/data/graficos2x/2226.png
deleted file mode 100644
index 589f52e8..00000000
Binary files a/desktop/assets/data/graficos2x/2226.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2227.png b/desktop/assets/data/graficos2x/2227.png
deleted file mode 100644
index df0c0a21..00000000
Binary files a/desktop/assets/data/graficos2x/2227.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2228.png b/desktop/assets/data/graficos2x/2228.png
deleted file mode 100644
index b150ad9c..00000000
Binary files a/desktop/assets/data/graficos2x/2228.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2229.png b/desktop/assets/data/graficos2x/2229.png
deleted file mode 100644
index b7e6e287..00000000
Binary files a/desktop/assets/data/graficos2x/2229.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/223.png b/desktop/assets/data/graficos2x/223.png
deleted file mode 100644
index 1eb52937..00000000
Binary files a/desktop/assets/data/graficos2x/223.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2230.png b/desktop/assets/data/graficos2x/2230.png
deleted file mode 100644
index 525f2ae9..00000000
Binary files a/desktop/assets/data/graficos2x/2230.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2231.png b/desktop/assets/data/graficos2x/2231.png
deleted file mode 100644
index 17c0af7c..00000000
Binary files a/desktop/assets/data/graficos2x/2231.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2232.png b/desktop/assets/data/graficos2x/2232.png
deleted file mode 100644
index 7d3267ff..00000000
Binary files a/desktop/assets/data/graficos2x/2232.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2233.png b/desktop/assets/data/graficos2x/2233.png
deleted file mode 100644
index f9f5abc3..00000000
Binary files a/desktop/assets/data/graficos2x/2233.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2234.png b/desktop/assets/data/graficos2x/2234.png
deleted file mode 100644
index 36b3f3cd..00000000
Binary files a/desktop/assets/data/graficos2x/2234.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/2235.png b/desktop/assets/data/graficos2x/2235.png
deleted file mode 100644
index a690e547..00000000
Binary files a/desktop/assets/data/graficos2x/2235.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/224.png b/desktop/assets/data/graficos2x/224.png
deleted file mode 100644
index e5c6df23..00000000
Binary files a/desktop/assets/data/graficos2x/224.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/225.png b/desktop/assets/data/graficos2x/225.png
deleted file mode 100644
index 26af2bca..00000000
Binary files a/desktop/assets/data/graficos2x/225.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/226.png b/desktop/assets/data/graficos2x/226.png
deleted file mode 100644
index dd642a16..00000000
Binary files a/desktop/assets/data/graficos2x/226.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/227.png b/desktop/assets/data/graficos2x/227.png
deleted file mode 100644
index 53a227c3..00000000
Binary files a/desktop/assets/data/graficos2x/227.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/228.png b/desktop/assets/data/graficos2x/228.png
deleted file mode 100644
index 803ea548..00000000
Binary files a/desktop/assets/data/graficos2x/228.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/229.png b/desktop/assets/data/graficos2x/229.png
deleted file mode 100644
index 1cce9204..00000000
Binary files a/desktop/assets/data/graficos2x/229.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/23.png b/desktop/assets/data/graficos2x/23.png
deleted file mode 100644
index bf817da7..00000000
Binary files a/desktop/assets/data/graficos2x/23.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/230.png b/desktop/assets/data/graficos2x/230.png
deleted file mode 100644
index 6cc2fb23..00000000
Binary files a/desktop/assets/data/graficos2x/230.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/23000.png b/desktop/assets/data/graficos2x/23000.png
deleted file mode 100644
index 65509c42..00000000
Binary files a/desktop/assets/data/graficos2x/23000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/23001.png b/desktop/assets/data/graficos2x/23001.png
deleted file mode 100644
index cb8c9bbd..00000000
Binary files a/desktop/assets/data/graficos2x/23001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/23002.png b/desktop/assets/data/graficos2x/23002.png
deleted file mode 100644
index 7c72e2b4..00000000
Binary files a/desktop/assets/data/graficos2x/23002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/23003.png b/desktop/assets/data/graficos2x/23003.png
deleted file mode 100644
index e86d92d9..00000000
Binary files a/desktop/assets/data/graficos2x/23003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/23004.png b/desktop/assets/data/graficos2x/23004.png
deleted file mode 100644
index 9c9c3c76..00000000
Binary files a/desktop/assets/data/graficos2x/23004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/23005.png b/desktop/assets/data/graficos2x/23005.png
deleted file mode 100644
index 4eb85dee..00000000
Binary files a/desktop/assets/data/graficos2x/23005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/231.png b/desktop/assets/data/graficos2x/231.png
deleted file mode 100644
index d946bbe2..00000000
Binary files a/desktop/assets/data/graficos2x/231.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/232.png b/desktop/assets/data/graficos2x/232.png
deleted file mode 100644
index a2f68303..00000000
Binary files a/desktop/assets/data/graficos2x/232.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/233.png b/desktop/assets/data/graficos2x/233.png
deleted file mode 100644
index 44a40701..00000000
Binary files a/desktop/assets/data/graficos2x/233.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/234.png b/desktop/assets/data/graficos2x/234.png
deleted file mode 100644
index 6337145b..00000000
Binary files a/desktop/assets/data/graficos2x/234.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/235.png b/desktop/assets/data/graficos2x/235.png
deleted file mode 100644
index 164ca863..00000000
Binary files a/desktop/assets/data/graficos2x/235.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/236.png b/desktop/assets/data/graficos2x/236.png
deleted file mode 100644
index 71026acb..00000000
Binary files a/desktop/assets/data/graficos2x/236.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/23653.png b/desktop/assets/data/graficos2x/23653.png
deleted file mode 100644
index 96924463..00000000
Binary files a/desktop/assets/data/graficos2x/23653.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/23669.png b/desktop/assets/data/graficos2x/23669.png
deleted file mode 100644
index 4ff78276..00000000
Binary files a/desktop/assets/data/graficos2x/23669.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/237.png b/desktop/assets/data/graficos2x/237.png
deleted file mode 100644
index 0269951d..00000000
Binary files a/desktop/assets/data/graficos2x/237.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/238.png b/desktop/assets/data/graficos2x/238.png
deleted file mode 100644
index 04266db8..00000000
Binary files a/desktop/assets/data/graficos2x/238.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/239.png b/desktop/assets/data/graficos2x/239.png
deleted file mode 100644
index ebdbb2f2..00000000
Binary files a/desktop/assets/data/graficos2x/239.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/24.png b/desktop/assets/data/graficos2x/24.png
deleted file mode 100644
index faa96d4b..00000000
Binary files a/desktop/assets/data/graficos2x/24.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/240.png b/desktop/assets/data/graficos2x/240.png
deleted file mode 100644
index 1c819a9c..00000000
Binary files a/desktop/assets/data/graficos2x/240.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/24000.png b/desktop/assets/data/graficos2x/24000.png
deleted file mode 100644
index 2cb7dd18..00000000
Binary files a/desktop/assets/data/graficos2x/24000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/24001.png b/desktop/assets/data/graficos2x/24001.png
deleted file mode 100644
index 7e872b04..00000000
Binary files a/desktop/assets/data/graficos2x/24001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/24002.png b/desktop/assets/data/graficos2x/24002.png
deleted file mode 100644
index 5371c58a..00000000
Binary files a/desktop/assets/data/graficos2x/24002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/24003.png b/desktop/assets/data/graficos2x/24003.png
deleted file mode 100644
index 0947316f..00000000
Binary files a/desktop/assets/data/graficos2x/24003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/24004.png b/desktop/assets/data/graficos2x/24004.png
deleted file mode 100644
index 93cc52e6..00000000
Binary files a/desktop/assets/data/graficos2x/24004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/24005.png b/desktop/assets/data/graficos2x/24005.png
deleted file mode 100644
index 678e367b..00000000
Binary files a/desktop/assets/data/graficos2x/24005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/24006.png b/desktop/assets/data/graficos2x/24006.png
deleted file mode 100644
index 6bd57a16..00000000
Binary files a/desktop/assets/data/graficos2x/24006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/24007.png b/desktop/assets/data/graficos2x/24007.png
deleted file mode 100644
index 3efb8010..00000000
Binary files a/desktop/assets/data/graficos2x/24007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/24008.png b/desktop/assets/data/graficos2x/24008.png
deleted file mode 100644
index c49cb8cc..00000000
Binary files a/desktop/assets/data/graficos2x/24008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/24009.png b/desktop/assets/data/graficos2x/24009.png
deleted file mode 100644
index d58676c0..00000000
Binary files a/desktop/assets/data/graficos2x/24009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/241.png b/desktop/assets/data/graficos2x/241.png
deleted file mode 100644
index 2b944713..00000000
Binary files a/desktop/assets/data/graficos2x/241.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/242.png b/desktop/assets/data/graficos2x/242.png
deleted file mode 100644
index 16c94f56..00000000
Binary files a/desktop/assets/data/graficos2x/242.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/243.png b/desktop/assets/data/graficos2x/243.png
deleted file mode 100644
index 24cec063..00000000
Binary files a/desktop/assets/data/graficos2x/243.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/244.png b/desktop/assets/data/graficos2x/244.png
deleted file mode 100644
index dca67510..00000000
Binary files a/desktop/assets/data/graficos2x/244.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/245.png b/desktop/assets/data/graficos2x/245.png
deleted file mode 100644
index 99e1de2f..00000000
Binary files a/desktop/assets/data/graficos2x/245.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/246.png b/desktop/assets/data/graficos2x/246.png
deleted file mode 100644
index 78397325..00000000
Binary files a/desktop/assets/data/graficos2x/246.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/247.png b/desktop/assets/data/graficos2x/247.png
deleted file mode 100644
index 059b16f7..00000000
Binary files a/desktop/assets/data/graficos2x/247.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/248.png b/desktop/assets/data/graficos2x/248.png
deleted file mode 100644
index 9a2df34e..00000000
Binary files a/desktop/assets/data/graficos2x/248.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/249.png b/desktop/assets/data/graficos2x/249.png
deleted file mode 100644
index 503e2e27..00000000
Binary files a/desktop/assets/data/graficos2x/249.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/25.png b/desktop/assets/data/graficos2x/25.png
deleted file mode 100644
index c913d422..00000000
Binary files a/desktop/assets/data/graficos2x/25.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/250.png b/desktop/assets/data/graficos2x/250.png
deleted file mode 100644
index 6a6e1ed9..00000000
Binary files a/desktop/assets/data/graficos2x/250.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/25000.png b/desktop/assets/data/graficos2x/25000.png
deleted file mode 100644
index 7a5cd713..00000000
Binary files a/desktop/assets/data/graficos2x/25000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/25001.png b/desktop/assets/data/graficos2x/25001.png
deleted file mode 100644
index 2e7976f3..00000000
Binary files a/desktop/assets/data/graficos2x/25001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/25002.png b/desktop/assets/data/graficos2x/25002.png
deleted file mode 100644
index 803014d8..00000000
Binary files a/desktop/assets/data/graficos2x/25002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/25003.png b/desktop/assets/data/graficos2x/25003.png
deleted file mode 100644
index 7546d0b4..00000000
Binary files a/desktop/assets/data/graficos2x/25003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/25004.png b/desktop/assets/data/graficos2x/25004.png
deleted file mode 100644
index 4e6e9717..00000000
Binary files a/desktop/assets/data/graficos2x/25004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/25006.png b/desktop/assets/data/graficos2x/25006.png
deleted file mode 100644
index 6230b53e..00000000
Binary files a/desktop/assets/data/graficos2x/25006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/251.png b/desktop/assets/data/graficos2x/251.png
deleted file mode 100644
index aa8b1eb0..00000000
Binary files a/desktop/assets/data/graficos2x/251.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/252.png b/desktop/assets/data/graficos2x/252.png
deleted file mode 100644
index b0db3943..00000000
Binary files a/desktop/assets/data/graficos2x/252.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/253.png b/desktop/assets/data/graficos2x/253.png
deleted file mode 100644
index a574fe16..00000000
Binary files a/desktop/assets/data/graficos2x/253.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/254.png b/desktop/assets/data/graficos2x/254.png
deleted file mode 100644
index 4ce21318..00000000
Binary files a/desktop/assets/data/graficos2x/254.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/255.png b/desktop/assets/data/graficos2x/255.png
deleted file mode 100644
index 310d237c..00000000
Binary files a/desktop/assets/data/graficos2x/255.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/256.png b/desktop/assets/data/graficos2x/256.png
deleted file mode 100644
index 31f6e109..00000000
Binary files a/desktop/assets/data/graficos2x/256.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/257.png b/desktop/assets/data/graficos2x/257.png
deleted file mode 100644
index 21cec2b8..00000000
Binary files a/desktop/assets/data/graficos2x/257.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/258.png b/desktop/assets/data/graficos2x/258.png
deleted file mode 100644
index 41e6f62e..00000000
Binary files a/desktop/assets/data/graficos2x/258.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/259.png b/desktop/assets/data/graficos2x/259.png
deleted file mode 100644
index ea3d534e..00000000
Binary files a/desktop/assets/data/graficos2x/259.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/26.png b/desktop/assets/data/graficos2x/26.png
deleted file mode 100644
index 47808755..00000000
Binary files a/desktop/assets/data/graficos2x/26.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/260.png b/desktop/assets/data/graficos2x/260.png
deleted file mode 100644
index fbf99820..00000000
Binary files a/desktop/assets/data/graficos2x/260.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/261.png b/desktop/assets/data/graficos2x/261.png
deleted file mode 100644
index afd77ac3..00000000
Binary files a/desktop/assets/data/graficos2x/261.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/262.png b/desktop/assets/data/graficos2x/262.png
deleted file mode 100644
index 26656161..00000000
Binary files a/desktop/assets/data/graficos2x/262.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/263.png b/desktop/assets/data/graficos2x/263.png
deleted file mode 100644
index a1d9580d..00000000
Binary files a/desktop/assets/data/graficos2x/263.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/264.png b/desktop/assets/data/graficos2x/264.png
deleted file mode 100644
index 16e402ac..00000000
Binary files a/desktop/assets/data/graficos2x/264.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/265.png b/desktop/assets/data/graficos2x/265.png
deleted file mode 100644
index ae1fba56..00000000
Binary files a/desktop/assets/data/graficos2x/265.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/266.png b/desktop/assets/data/graficos2x/266.png
deleted file mode 100644
index 84287e1e..00000000
Binary files a/desktop/assets/data/graficos2x/266.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/267.png b/desktop/assets/data/graficos2x/267.png
deleted file mode 100644
index 61c09629..00000000
Binary files a/desktop/assets/data/graficos2x/267.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/268.png b/desktop/assets/data/graficos2x/268.png
deleted file mode 100644
index 1209d5f3..00000000
Binary files a/desktop/assets/data/graficos2x/268.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/269.png b/desktop/assets/data/graficos2x/269.png
deleted file mode 100644
index f5242d49..00000000
Binary files a/desktop/assets/data/graficos2x/269.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/27.png b/desktop/assets/data/graficos2x/27.png
deleted file mode 100644
index 681cc412..00000000
Binary files a/desktop/assets/data/graficos2x/27.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/270.png b/desktop/assets/data/graficos2x/270.png
deleted file mode 100644
index 606e90a8..00000000
Binary files a/desktop/assets/data/graficos2x/270.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/271.png b/desktop/assets/data/graficos2x/271.png
deleted file mode 100644
index b2c1a8fa..00000000
Binary files a/desktop/assets/data/graficos2x/271.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/272.png b/desktop/assets/data/graficos2x/272.png
deleted file mode 100644
index d4490357..00000000
Binary files a/desktop/assets/data/graficos2x/272.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/273.png b/desktop/assets/data/graficos2x/273.png
deleted file mode 100644
index c590bafe..00000000
Binary files a/desktop/assets/data/graficos2x/273.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/274.png b/desktop/assets/data/graficos2x/274.png
deleted file mode 100644
index f00e381c..00000000
Binary files a/desktop/assets/data/graficos2x/274.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/275.png b/desktop/assets/data/graficos2x/275.png
deleted file mode 100644
index 31921983..00000000
Binary files a/desktop/assets/data/graficos2x/275.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/276.png b/desktop/assets/data/graficos2x/276.png
deleted file mode 100644
index 873941c7..00000000
Binary files a/desktop/assets/data/graficos2x/276.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/277.png b/desktop/assets/data/graficos2x/277.png
deleted file mode 100644
index 18c75978..00000000
Binary files a/desktop/assets/data/graficos2x/277.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/278.png b/desktop/assets/data/graficos2x/278.png
deleted file mode 100644
index 834487ae..00000000
Binary files a/desktop/assets/data/graficos2x/278.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/279.png b/desktop/assets/data/graficos2x/279.png
deleted file mode 100644
index e8b01525..00000000
Binary files a/desktop/assets/data/graficos2x/279.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/28.png b/desktop/assets/data/graficos2x/28.png
deleted file mode 100644
index 05a7b84b..00000000
Binary files a/desktop/assets/data/graficos2x/28.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/280.png b/desktop/assets/data/graficos2x/280.png
deleted file mode 100644
index afeaff8a..00000000
Binary files a/desktop/assets/data/graficos2x/280.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/281.png b/desktop/assets/data/graficos2x/281.png
deleted file mode 100644
index 516528cd..00000000
Binary files a/desktop/assets/data/graficos2x/281.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/282.png b/desktop/assets/data/graficos2x/282.png
deleted file mode 100644
index 46bbe718..00000000
Binary files a/desktop/assets/data/graficos2x/282.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/283.png b/desktop/assets/data/graficos2x/283.png
deleted file mode 100644
index 30654a34..00000000
Binary files a/desktop/assets/data/graficos2x/283.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/284.png b/desktop/assets/data/graficos2x/284.png
deleted file mode 100644
index bf83c8d4..00000000
Binary files a/desktop/assets/data/graficos2x/284.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/285.png b/desktop/assets/data/graficos2x/285.png
deleted file mode 100644
index e85bf567..00000000
Binary files a/desktop/assets/data/graficos2x/285.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/286.png b/desktop/assets/data/graficos2x/286.png
deleted file mode 100644
index 9157ada6..00000000
Binary files a/desktop/assets/data/graficos2x/286.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/287.png b/desktop/assets/data/graficos2x/287.png
deleted file mode 100644
index eb7a3afa..00000000
Binary files a/desktop/assets/data/graficos2x/287.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/288.png b/desktop/assets/data/graficos2x/288.png
deleted file mode 100644
index f9c78486..00000000
Binary files a/desktop/assets/data/graficos2x/288.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/289.png b/desktop/assets/data/graficos2x/289.png
deleted file mode 100644
index de96d3e7..00000000
Binary files a/desktop/assets/data/graficos2x/289.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/29.png b/desktop/assets/data/graficos2x/29.png
deleted file mode 100644
index 92f72b6d..00000000
Binary files a/desktop/assets/data/graficos2x/29.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/290.png b/desktop/assets/data/graficos2x/290.png
deleted file mode 100644
index 7b03d78d..00000000
Binary files a/desktop/assets/data/graficos2x/290.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/291.png b/desktop/assets/data/graficos2x/291.png
deleted file mode 100644
index 8729328e..00000000
Binary files a/desktop/assets/data/graficos2x/291.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/292.png b/desktop/assets/data/graficos2x/292.png
deleted file mode 100644
index 91acf1bb..00000000
Binary files a/desktop/assets/data/graficos2x/292.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/293.png b/desktop/assets/data/graficos2x/293.png
deleted file mode 100644
index 8b08f90a..00000000
Binary files a/desktop/assets/data/graficos2x/293.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/294.png b/desktop/assets/data/graficos2x/294.png
deleted file mode 100644
index ad4be524..00000000
Binary files a/desktop/assets/data/graficos2x/294.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/295.png b/desktop/assets/data/graficos2x/295.png
deleted file mode 100644
index 3421ea2d..00000000
Binary files a/desktop/assets/data/graficos2x/295.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/296.png b/desktop/assets/data/graficos2x/296.png
deleted file mode 100644
index c7e40911..00000000
Binary files a/desktop/assets/data/graficos2x/296.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/297.png b/desktop/assets/data/graficos2x/297.png
deleted file mode 100644
index fd3eee92..00000000
Binary files a/desktop/assets/data/graficos2x/297.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/298.png b/desktop/assets/data/graficos2x/298.png
deleted file mode 100644
index e42ba8ee..00000000
Binary files a/desktop/assets/data/graficos2x/298.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/299.png b/desktop/assets/data/graficos2x/299.png
deleted file mode 100644
index 1fb7c0a5..00000000
Binary files a/desktop/assets/data/graficos2x/299.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3.png b/desktop/assets/data/graficos2x/3.png
deleted file mode 100644
index 29e47f8b..00000000
Binary files a/desktop/assets/data/graficos2x/3.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/30.png b/desktop/assets/data/graficos2x/30.png
deleted file mode 100644
index 5fb3b3eb..00000000
Binary files a/desktop/assets/data/graficos2x/30.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/300.png b/desktop/assets/data/graficos2x/300.png
deleted file mode 100644
index 3b0e36d4..00000000
Binary files a/desktop/assets/data/graficos2x/300.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3000.png b/desktop/assets/data/graficos2x/3000.png
deleted file mode 100644
index 6b19c65e..00000000
Binary files a/desktop/assets/data/graficos2x/3000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3001.png b/desktop/assets/data/graficos2x/3001.png
deleted file mode 100644
index 44b218a1..00000000
Binary files a/desktop/assets/data/graficos2x/3001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3002.png b/desktop/assets/data/graficos2x/3002.png
deleted file mode 100644
index 4c6347d5..00000000
Binary files a/desktop/assets/data/graficos2x/3002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3003.png b/desktop/assets/data/graficos2x/3003.png
deleted file mode 100644
index 67087faa..00000000
Binary files a/desktop/assets/data/graficos2x/3003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3004.png b/desktop/assets/data/graficos2x/3004.png
deleted file mode 100644
index 9cbef195..00000000
Binary files a/desktop/assets/data/graficos2x/3004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3005.png b/desktop/assets/data/graficos2x/3005.png
deleted file mode 100644
index c05a3701..00000000
Binary files a/desktop/assets/data/graficos2x/3005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3006.png b/desktop/assets/data/graficos2x/3006.png
deleted file mode 100644
index 2b24bd81..00000000
Binary files a/desktop/assets/data/graficos2x/3006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3007.png b/desktop/assets/data/graficos2x/3007.png
deleted file mode 100644
index 43d412c0..00000000
Binary files a/desktop/assets/data/graficos2x/3007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3008.png b/desktop/assets/data/graficos2x/3008.png
deleted file mode 100644
index 9940e717..00000000
Binary files a/desktop/assets/data/graficos2x/3008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3009.png b/desktop/assets/data/graficos2x/3009.png
deleted file mode 100644
index 8e7d04ca..00000000
Binary files a/desktop/assets/data/graficos2x/3009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/301.png b/desktop/assets/data/graficos2x/301.png
deleted file mode 100644
index e2201713..00000000
Binary files a/desktop/assets/data/graficos2x/301.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3010.png b/desktop/assets/data/graficos2x/3010.png
deleted file mode 100644
index d39639fa..00000000
Binary files a/desktop/assets/data/graficos2x/3010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3011.png b/desktop/assets/data/graficos2x/3011.png
deleted file mode 100644
index 46ffe9a4..00000000
Binary files a/desktop/assets/data/graficos2x/3011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3012.png b/desktop/assets/data/graficos2x/3012.png
deleted file mode 100644
index 75343b55..00000000
Binary files a/desktop/assets/data/graficos2x/3012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3013.png b/desktop/assets/data/graficos2x/3013.png
deleted file mode 100644
index b1953462..00000000
Binary files a/desktop/assets/data/graficos2x/3013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3014.png b/desktop/assets/data/graficos2x/3014.png
deleted file mode 100644
index df799bd8..00000000
Binary files a/desktop/assets/data/graficos2x/3014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3015.png b/desktop/assets/data/graficos2x/3015.png
deleted file mode 100644
index 352d9a8e..00000000
Binary files a/desktop/assets/data/graficos2x/3015.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3016.png b/desktop/assets/data/graficos2x/3016.png
deleted file mode 100644
index 35c41831..00000000
Binary files a/desktop/assets/data/graficos2x/3016.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3017.png b/desktop/assets/data/graficos2x/3017.png
deleted file mode 100644
index a14d7b34..00000000
Binary files a/desktop/assets/data/graficos2x/3017.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3018.png b/desktop/assets/data/graficos2x/3018.png
deleted file mode 100644
index ff28a665..00000000
Binary files a/desktop/assets/data/graficos2x/3018.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3019.png b/desktop/assets/data/graficos2x/3019.png
deleted file mode 100644
index 30696ef2..00000000
Binary files a/desktop/assets/data/graficos2x/3019.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/302.png b/desktop/assets/data/graficos2x/302.png
deleted file mode 100644
index a3edd320..00000000
Binary files a/desktop/assets/data/graficos2x/302.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3020.png b/desktop/assets/data/graficos2x/3020.png
deleted file mode 100644
index 77488384..00000000
Binary files a/desktop/assets/data/graficos2x/3020.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3021.png b/desktop/assets/data/graficos2x/3021.png
deleted file mode 100644
index 658bf699..00000000
Binary files a/desktop/assets/data/graficos2x/3021.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3022.png b/desktop/assets/data/graficos2x/3022.png
deleted file mode 100644
index 0e2d6287..00000000
Binary files a/desktop/assets/data/graficos2x/3022.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3023.png b/desktop/assets/data/graficos2x/3023.png
deleted file mode 100644
index afeb690f..00000000
Binary files a/desktop/assets/data/graficos2x/3023.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3024.png b/desktop/assets/data/graficos2x/3024.png
deleted file mode 100644
index 71eda66e..00000000
Binary files a/desktop/assets/data/graficos2x/3024.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3025.png b/desktop/assets/data/graficos2x/3025.png
deleted file mode 100644
index f800d866..00000000
Binary files a/desktop/assets/data/graficos2x/3025.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3026.png b/desktop/assets/data/graficos2x/3026.png
deleted file mode 100644
index e39b4c7f..00000000
Binary files a/desktop/assets/data/graficos2x/3026.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3027.png b/desktop/assets/data/graficos2x/3027.png
deleted file mode 100644
index 34a2e328..00000000
Binary files a/desktop/assets/data/graficos2x/3027.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3028.png b/desktop/assets/data/graficos2x/3028.png
deleted file mode 100644
index 7b2716c7..00000000
Binary files a/desktop/assets/data/graficos2x/3028.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3029.png b/desktop/assets/data/graficos2x/3029.png
deleted file mode 100644
index 2f81083c..00000000
Binary files a/desktop/assets/data/graficos2x/3029.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/303.png b/desktop/assets/data/graficos2x/303.png
deleted file mode 100644
index 339ce745..00000000
Binary files a/desktop/assets/data/graficos2x/303.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3030.png b/desktop/assets/data/graficos2x/3030.png
deleted file mode 100644
index 062c769e..00000000
Binary files a/desktop/assets/data/graficos2x/3030.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3031.png b/desktop/assets/data/graficos2x/3031.png
deleted file mode 100644
index 3dc2ef4f..00000000
Binary files a/desktop/assets/data/graficos2x/3031.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3032.png b/desktop/assets/data/graficos2x/3032.png
deleted file mode 100644
index e227a959..00000000
Binary files a/desktop/assets/data/graficos2x/3032.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3033.png b/desktop/assets/data/graficos2x/3033.png
deleted file mode 100644
index 6eb25ce5..00000000
Binary files a/desktop/assets/data/graficos2x/3033.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3034.png b/desktop/assets/data/graficos2x/3034.png
deleted file mode 100644
index 37b7222e..00000000
Binary files a/desktop/assets/data/graficos2x/3034.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3035.png b/desktop/assets/data/graficos2x/3035.png
deleted file mode 100644
index 3a2f859a..00000000
Binary files a/desktop/assets/data/graficos2x/3035.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3036.png b/desktop/assets/data/graficos2x/3036.png
deleted file mode 100644
index 51b022c9..00000000
Binary files a/desktop/assets/data/graficos2x/3036.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3037.png b/desktop/assets/data/graficos2x/3037.png
deleted file mode 100644
index bb2957a6..00000000
Binary files a/desktop/assets/data/graficos2x/3037.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3038.png b/desktop/assets/data/graficos2x/3038.png
deleted file mode 100644
index ce3967e6..00000000
Binary files a/desktop/assets/data/graficos2x/3038.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3039.png b/desktop/assets/data/graficos2x/3039.png
deleted file mode 100644
index a8858893..00000000
Binary files a/desktop/assets/data/graficos2x/3039.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/304.png b/desktop/assets/data/graficos2x/304.png
deleted file mode 100644
index ed48a0c9..00000000
Binary files a/desktop/assets/data/graficos2x/304.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3040.png b/desktop/assets/data/graficos2x/3040.png
deleted file mode 100644
index 31457707..00000000
Binary files a/desktop/assets/data/graficos2x/3040.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3041.png b/desktop/assets/data/graficos2x/3041.png
deleted file mode 100644
index 9f785bc3..00000000
Binary files a/desktop/assets/data/graficos2x/3041.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3042.png b/desktop/assets/data/graficos2x/3042.png
deleted file mode 100644
index 15645fdd..00000000
Binary files a/desktop/assets/data/graficos2x/3042.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3043.png b/desktop/assets/data/graficos2x/3043.png
deleted file mode 100644
index fb0d340c..00000000
Binary files a/desktop/assets/data/graficos2x/3043.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3044.png b/desktop/assets/data/graficos2x/3044.png
deleted file mode 100644
index 56430c15..00000000
Binary files a/desktop/assets/data/graficos2x/3044.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3045.png b/desktop/assets/data/graficos2x/3045.png
deleted file mode 100644
index 8524745f..00000000
Binary files a/desktop/assets/data/graficos2x/3045.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3046.png b/desktop/assets/data/graficos2x/3046.png
deleted file mode 100644
index 0477c2fa..00000000
Binary files a/desktop/assets/data/graficos2x/3046.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3047.png b/desktop/assets/data/graficos2x/3047.png
deleted file mode 100644
index b8c9e626..00000000
Binary files a/desktop/assets/data/graficos2x/3047.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3048.png b/desktop/assets/data/graficos2x/3048.png
deleted file mode 100644
index a1c7ff67..00000000
Binary files a/desktop/assets/data/graficos2x/3048.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3049.png b/desktop/assets/data/graficos2x/3049.png
deleted file mode 100644
index d91582ef..00000000
Binary files a/desktop/assets/data/graficos2x/3049.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/305.png b/desktop/assets/data/graficos2x/305.png
deleted file mode 100644
index 2d21faf9..00000000
Binary files a/desktop/assets/data/graficos2x/305.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3050.png b/desktop/assets/data/graficos2x/3050.png
deleted file mode 100644
index ed0fa7a8..00000000
Binary files a/desktop/assets/data/graficos2x/3050.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3051.png b/desktop/assets/data/graficos2x/3051.png
deleted file mode 100644
index 1b6c99f2..00000000
Binary files a/desktop/assets/data/graficos2x/3051.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3052.png b/desktop/assets/data/graficos2x/3052.png
deleted file mode 100644
index edbb57ff..00000000
Binary files a/desktop/assets/data/graficos2x/3052.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3053.png b/desktop/assets/data/graficos2x/3053.png
deleted file mode 100644
index 4a8b9e63..00000000
Binary files a/desktop/assets/data/graficos2x/3053.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3054.png b/desktop/assets/data/graficos2x/3054.png
deleted file mode 100644
index 2435b2ee..00000000
Binary files a/desktop/assets/data/graficos2x/3054.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3055.png b/desktop/assets/data/graficos2x/3055.png
deleted file mode 100644
index 3a8ea246..00000000
Binary files a/desktop/assets/data/graficos2x/3055.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3056.png b/desktop/assets/data/graficos2x/3056.png
deleted file mode 100644
index 2c1f94e8..00000000
Binary files a/desktop/assets/data/graficos2x/3056.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3057.png b/desktop/assets/data/graficos2x/3057.png
deleted file mode 100644
index 5400312e..00000000
Binary files a/desktop/assets/data/graficos2x/3057.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3058.png b/desktop/assets/data/graficos2x/3058.png
deleted file mode 100644
index a7fec7a3..00000000
Binary files a/desktop/assets/data/graficos2x/3058.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3059.png b/desktop/assets/data/graficos2x/3059.png
deleted file mode 100644
index e405541a..00000000
Binary files a/desktop/assets/data/graficos2x/3059.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3060.png b/desktop/assets/data/graficos2x/3060.png
deleted file mode 100644
index c3bf8b44..00000000
Binary files a/desktop/assets/data/graficos2x/3060.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3061.png b/desktop/assets/data/graficos2x/3061.png
deleted file mode 100644
index 06fc86d9..00000000
Binary files a/desktop/assets/data/graficos2x/3061.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3062.png b/desktop/assets/data/graficos2x/3062.png
deleted file mode 100644
index 8ab93a22..00000000
Binary files a/desktop/assets/data/graficos2x/3062.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3063.png b/desktop/assets/data/graficos2x/3063.png
deleted file mode 100644
index 35806719..00000000
Binary files a/desktop/assets/data/graficos2x/3063.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3064.png b/desktop/assets/data/graficos2x/3064.png
deleted file mode 100644
index a2bb03a9..00000000
Binary files a/desktop/assets/data/graficos2x/3064.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3065.png b/desktop/assets/data/graficos2x/3065.png
deleted file mode 100644
index 13ab7d26..00000000
Binary files a/desktop/assets/data/graficos2x/3065.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3066.png b/desktop/assets/data/graficos2x/3066.png
deleted file mode 100644
index 989c60a1..00000000
Binary files a/desktop/assets/data/graficos2x/3066.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3067.png b/desktop/assets/data/graficos2x/3067.png
deleted file mode 100644
index edd67588..00000000
Binary files a/desktop/assets/data/graficos2x/3067.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3068.png b/desktop/assets/data/graficos2x/3068.png
deleted file mode 100644
index a11cf14f..00000000
Binary files a/desktop/assets/data/graficos2x/3068.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3069.png b/desktop/assets/data/graficos2x/3069.png
deleted file mode 100644
index 74fd8d9f..00000000
Binary files a/desktop/assets/data/graficos2x/3069.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/307.png b/desktop/assets/data/graficos2x/307.png
deleted file mode 100644
index 3a933ed5..00000000
Binary files a/desktop/assets/data/graficos2x/307.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3070.png b/desktop/assets/data/graficos2x/3070.png
deleted file mode 100644
index 050bb15b..00000000
Binary files a/desktop/assets/data/graficos2x/3070.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3071.png b/desktop/assets/data/graficos2x/3071.png
deleted file mode 100644
index fea893d6..00000000
Binary files a/desktop/assets/data/graficos2x/3071.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3072.png b/desktop/assets/data/graficos2x/3072.png
deleted file mode 100644
index 2bb048a2..00000000
Binary files a/desktop/assets/data/graficos2x/3072.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3073.png b/desktop/assets/data/graficos2x/3073.png
deleted file mode 100644
index 1f73de23..00000000
Binary files a/desktop/assets/data/graficos2x/3073.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3074.png b/desktop/assets/data/graficos2x/3074.png
deleted file mode 100644
index bce98346..00000000
Binary files a/desktop/assets/data/graficos2x/3074.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3075.png b/desktop/assets/data/graficos2x/3075.png
deleted file mode 100644
index 01acc788..00000000
Binary files a/desktop/assets/data/graficos2x/3075.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3076.png b/desktop/assets/data/graficos2x/3076.png
deleted file mode 100644
index 4452d293..00000000
Binary files a/desktop/assets/data/graficos2x/3076.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3077.png b/desktop/assets/data/graficos2x/3077.png
deleted file mode 100644
index 63bc4665..00000000
Binary files a/desktop/assets/data/graficos2x/3077.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3078.png b/desktop/assets/data/graficos2x/3078.png
deleted file mode 100644
index 3a45ce6c..00000000
Binary files a/desktop/assets/data/graficos2x/3078.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3079.png b/desktop/assets/data/graficos2x/3079.png
deleted file mode 100644
index c04305f2..00000000
Binary files a/desktop/assets/data/graficos2x/3079.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/308.png b/desktop/assets/data/graficos2x/308.png
deleted file mode 100644
index 3a5a3286..00000000
Binary files a/desktop/assets/data/graficos2x/308.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3080.png b/desktop/assets/data/graficos2x/3080.png
deleted file mode 100644
index b3f17c36..00000000
Binary files a/desktop/assets/data/graficos2x/3080.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3081.png b/desktop/assets/data/graficos2x/3081.png
deleted file mode 100644
index b413553c..00000000
Binary files a/desktop/assets/data/graficos2x/3081.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3082.png b/desktop/assets/data/graficos2x/3082.png
deleted file mode 100644
index 9593e166..00000000
Binary files a/desktop/assets/data/graficos2x/3082.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3083.png b/desktop/assets/data/graficos2x/3083.png
deleted file mode 100644
index 7e7c0bb2..00000000
Binary files a/desktop/assets/data/graficos2x/3083.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3084.png b/desktop/assets/data/graficos2x/3084.png
deleted file mode 100644
index 6c55225c..00000000
Binary files a/desktop/assets/data/graficos2x/3084.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3085.png b/desktop/assets/data/graficos2x/3085.png
deleted file mode 100644
index d75985a9..00000000
Binary files a/desktop/assets/data/graficos2x/3085.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3086.png b/desktop/assets/data/graficos2x/3086.png
deleted file mode 100644
index 2589c025..00000000
Binary files a/desktop/assets/data/graficos2x/3086.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3087.png b/desktop/assets/data/graficos2x/3087.png
deleted file mode 100644
index f1869380..00000000
Binary files a/desktop/assets/data/graficos2x/3087.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3088.png b/desktop/assets/data/graficos2x/3088.png
deleted file mode 100644
index f1869380..00000000
Binary files a/desktop/assets/data/graficos2x/3088.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3089.png b/desktop/assets/data/graficos2x/3089.png
deleted file mode 100644
index 73d06715..00000000
Binary files a/desktop/assets/data/graficos2x/3089.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/309.png b/desktop/assets/data/graficos2x/309.png
deleted file mode 100644
index bd946e27..00000000
Binary files a/desktop/assets/data/graficos2x/309.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3090.png b/desktop/assets/data/graficos2x/3090.png
deleted file mode 100644
index c020469d..00000000
Binary files a/desktop/assets/data/graficos2x/3090.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3091.png b/desktop/assets/data/graficos2x/3091.png
deleted file mode 100644
index 7f495a94..00000000
Binary files a/desktop/assets/data/graficos2x/3091.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3092.png b/desktop/assets/data/graficos2x/3092.png
deleted file mode 100644
index 43624fae..00000000
Binary files a/desktop/assets/data/graficos2x/3092.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3093.png b/desktop/assets/data/graficos2x/3093.png
deleted file mode 100644
index 2579ba31..00000000
Binary files a/desktop/assets/data/graficos2x/3093.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3094.png b/desktop/assets/data/graficos2x/3094.png
deleted file mode 100644
index 943663c5..00000000
Binary files a/desktop/assets/data/graficos2x/3094.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3095.png b/desktop/assets/data/graficos2x/3095.png
deleted file mode 100644
index 08757073..00000000
Binary files a/desktop/assets/data/graficos2x/3095.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3096.png b/desktop/assets/data/graficos2x/3096.png
deleted file mode 100644
index 76e74c1f..00000000
Binary files a/desktop/assets/data/graficos2x/3096.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3097.png b/desktop/assets/data/graficos2x/3097.png
deleted file mode 100644
index fca66a12..00000000
Binary files a/desktop/assets/data/graficos2x/3097.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3098.png b/desktop/assets/data/graficos2x/3098.png
deleted file mode 100644
index 79630f1c..00000000
Binary files a/desktop/assets/data/graficos2x/3098.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3099.png b/desktop/assets/data/graficos2x/3099.png
deleted file mode 100644
index 0bdb8270..00000000
Binary files a/desktop/assets/data/graficos2x/3099.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/31.png b/desktop/assets/data/graficos2x/31.png
deleted file mode 100644
index b2c76014..00000000
Binary files a/desktop/assets/data/graficos2x/31.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/310.png b/desktop/assets/data/graficos2x/310.png
deleted file mode 100644
index 032d93df..00000000
Binary files a/desktop/assets/data/graficos2x/310.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3100.png b/desktop/assets/data/graficos2x/3100.png
deleted file mode 100644
index a1f52e68..00000000
Binary files a/desktop/assets/data/graficos2x/3100.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3101.png b/desktop/assets/data/graficos2x/3101.png
deleted file mode 100644
index df4c3f9e..00000000
Binary files a/desktop/assets/data/graficos2x/3101.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3102.png b/desktop/assets/data/graficos2x/3102.png
deleted file mode 100644
index a8a36eb0..00000000
Binary files a/desktop/assets/data/graficos2x/3102.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3103.png b/desktop/assets/data/graficos2x/3103.png
deleted file mode 100644
index 74cca7f3..00000000
Binary files a/desktop/assets/data/graficos2x/3103.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3104.png b/desktop/assets/data/graficos2x/3104.png
deleted file mode 100644
index 24bcc540..00000000
Binary files a/desktop/assets/data/graficos2x/3104.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3105.png b/desktop/assets/data/graficos2x/3105.png
deleted file mode 100644
index f8c896c0..00000000
Binary files a/desktop/assets/data/graficos2x/3105.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/3106.png b/desktop/assets/data/graficos2x/3106.png
deleted file mode 100644
index 7c51e5b0..00000000
Binary files a/desktop/assets/data/graficos2x/3106.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/311.png b/desktop/assets/data/graficos2x/311.png
deleted file mode 100644
index af1ad107..00000000
Binary files a/desktop/assets/data/graficos2x/311.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/312.png b/desktop/assets/data/graficos2x/312.png
deleted file mode 100644
index dd9e84fe..00000000
Binary files a/desktop/assets/data/graficos2x/312.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/313.png b/desktop/assets/data/graficos2x/313.png
deleted file mode 100644
index 8d9f3779..00000000
Binary files a/desktop/assets/data/graficos2x/313.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/314.png b/desktop/assets/data/graficos2x/314.png
deleted file mode 100644
index b3a33fb9..00000000
Binary files a/desktop/assets/data/graficos2x/314.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/315.png b/desktop/assets/data/graficos2x/315.png
deleted file mode 100644
index 0733a814..00000000
Binary files a/desktop/assets/data/graficos2x/315.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/316.png b/desktop/assets/data/graficos2x/316.png
deleted file mode 100644
index 2a9fbcc3..00000000
Binary files a/desktop/assets/data/graficos2x/316.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/317.png b/desktop/assets/data/graficos2x/317.png
deleted file mode 100644
index c237a3b7..00000000
Binary files a/desktop/assets/data/graficos2x/317.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/318.png b/desktop/assets/data/graficos2x/318.png
deleted file mode 100644
index cbb0d104..00000000
Binary files a/desktop/assets/data/graficos2x/318.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/319.png b/desktop/assets/data/graficos2x/319.png
deleted file mode 100644
index d0a8fb3d..00000000
Binary files a/desktop/assets/data/graficos2x/319.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/32.png b/desktop/assets/data/graficos2x/32.png
deleted file mode 100644
index 231822be..00000000
Binary files a/desktop/assets/data/graficos2x/32.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/320.png b/desktop/assets/data/graficos2x/320.png
deleted file mode 100644
index c8a37117..00000000
Binary files a/desktop/assets/data/graficos2x/320.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/321.png b/desktop/assets/data/graficos2x/321.png
deleted file mode 100644
index 5e6fc63b..00000000
Binary files a/desktop/assets/data/graficos2x/321.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/322.png b/desktop/assets/data/graficos2x/322.png
deleted file mode 100644
index d64e3272..00000000
Binary files a/desktop/assets/data/graficos2x/322.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/323.png b/desktop/assets/data/graficos2x/323.png
deleted file mode 100644
index 4f04ce4d..00000000
Binary files a/desktop/assets/data/graficos2x/323.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/324.png b/desktop/assets/data/graficos2x/324.png
deleted file mode 100644
index 228e921b..00000000
Binary files a/desktop/assets/data/graficos2x/324.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/325.png b/desktop/assets/data/graficos2x/325.png
deleted file mode 100644
index bbf4ba95..00000000
Binary files a/desktop/assets/data/graficos2x/325.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/326.png b/desktop/assets/data/graficos2x/326.png
deleted file mode 100644
index 6b76eed1..00000000
Binary files a/desktop/assets/data/graficos2x/326.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/327.png b/desktop/assets/data/graficos2x/327.png
deleted file mode 100644
index c50bfbeb..00000000
Binary files a/desktop/assets/data/graficos2x/327.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/328.png b/desktop/assets/data/graficos2x/328.png
deleted file mode 100644
index bbd6c8f4..00000000
Binary files a/desktop/assets/data/graficos2x/328.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/329.png b/desktop/assets/data/graficos2x/329.png
deleted file mode 100644
index 5b4b647c..00000000
Binary files a/desktop/assets/data/graficos2x/329.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/33.png b/desktop/assets/data/graficos2x/33.png
deleted file mode 100644
index 0f0b6e39..00000000
Binary files a/desktop/assets/data/graficos2x/33.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/330.png b/desktop/assets/data/graficos2x/330.png
deleted file mode 100644
index 3fb2bbc5..00000000
Binary files a/desktop/assets/data/graficos2x/330.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/331.png b/desktop/assets/data/graficos2x/331.png
deleted file mode 100644
index 31bd50ab..00000000
Binary files a/desktop/assets/data/graficos2x/331.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/333.png b/desktop/assets/data/graficos2x/333.png
deleted file mode 100644
index 6b0585d5..00000000
Binary files a/desktop/assets/data/graficos2x/333.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/334.png b/desktop/assets/data/graficos2x/334.png
deleted file mode 100644
index 4797c160..00000000
Binary files a/desktop/assets/data/graficos2x/334.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/335.png b/desktop/assets/data/graficos2x/335.png
deleted file mode 100644
index e7b24249..00000000
Binary files a/desktop/assets/data/graficos2x/335.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/336.png b/desktop/assets/data/graficos2x/336.png
deleted file mode 100644
index e7b24249..00000000
Binary files a/desktop/assets/data/graficos2x/336.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/337.png b/desktop/assets/data/graficos2x/337.png
deleted file mode 100644
index 283c4a2f..00000000
Binary files a/desktop/assets/data/graficos2x/337.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/338.png b/desktop/assets/data/graficos2x/338.png
deleted file mode 100644
index 7538d88a..00000000
Binary files a/desktop/assets/data/graficos2x/338.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/339.png b/desktop/assets/data/graficos2x/339.png
deleted file mode 100644
index c467aa4f..00000000
Binary files a/desktop/assets/data/graficos2x/339.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/34.png b/desktop/assets/data/graficos2x/34.png
deleted file mode 100644
index ada4308b..00000000
Binary files a/desktop/assets/data/graficos2x/34.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/340.png b/desktop/assets/data/graficos2x/340.png
deleted file mode 100644
index 4207177c..00000000
Binary files a/desktop/assets/data/graficos2x/340.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/341.png b/desktop/assets/data/graficos2x/341.png
deleted file mode 100644
index 8783b4d4..00000000
Binary files a/desktop/assets/data/graficos2x/341.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/342.png b/desktop/assets/data/graficos2x/342.png
deleted file mode 100644
index 45af8fdc..00000000
Binary files a/desktop/assets/data/graficos2x/342.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/344.png b/desktop/assets/data/graficos2x/344.png
deleted file mode 100644
index 4d838a8f..00000000
Binary files a/desktop/assets/data/graficos2x/344.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/345.png b/desktop/assets/data/graficos2x/345.png
deleted file mode 100644
index e9e73c8a..00000000
Binary files a/desktop/assets/data/graficos2x/345.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/346.png b/desktop/assets/data/graficos2x/346.png
deleted file mode 100644
index 6a913cde..00000000
Binary files a/desktop/assets/data/graficos2x/346.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/347.png b/desktop/assets/data/graficos2x/347.png
deleted file mode 100644
index db879bf2..00000000
Binary files a/desktop/assets/data/graficos2x/347.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/348.png b/desktop/assets/data/graficos2x/348.png
deleted file mode 100644
index 476bf810..00000000
Binary files a/desktop/assets/data/graficos2x/348.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/349.png b/desktop/assets/data/graficos2x/349.png
deleted file mode 100644
index 14d537a8..00000000
Binary files a/desktop/assets/data/graficos2x/349.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/35.png b/desktop/assets/data/graficos2x/35.png
deleted file mode 100644
index cf3b96c4..00000000
Binary files a/desktop/assets/data/graficos2x/35.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/350.png b/desktop/assets/data/graficos2x/350.png
deleted file mode 100644
index 3f28ad2b..00000000
Binary files a/desktop/assets/data/graficos2x/350.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/351.png b/desktop/assets/data/graficos2x/351.png
deleted file mode 100644
index 166b6b58..00000000
Binary files a/desktop/assets/data/graficos2x/351.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/352.png b/desktop/assets/data/graficos2x/352.png
deleted file mode 100644
index 9dc2c261..00000000
Binary files a/desktop/assets/data/graficos2x/352.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/353.png b/desktop/assets/data/graficos2x/353.png
deleted file mode 100644
index e0ba32e5..00000000
Binary files a/desktop/assets/data/graficos2x/353.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/354.png b/desktop/assets/data/graficos2x/354.png
deleted file mode 100644
index 1314153d..00000000
Binary files a/desktop/assets/data/graficos2x/354.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/355.png b/desktop/assets/data/graficos2x/355.png
deleted file mode 100644
index 342a9992..00000000
Binary files a/desktop/assets/data/graficos2x/355.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/356.png b/desktop/assets/data/graficos2x/356.png
deleted file mode 100644
index 546eef35..00000000
Binary files a/desktop/assets/data/graficos2x/356.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/357.png b/desktop/assets/data/graficos2x/357.png
deleted file mode 100644
index 4aa03779..00000000
Binary files a/desktop/assets/data/graficos2x/357.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/358.png b/desktop/assets/data/graficos2x/358.png
deleted file mode 100644
index 2af3b63f..00000000
Binary files a/desktop/assets/data/graficos2x/358.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/359.png b/desktop/assets/data/graficos2x/359.png
deleted file mode 100644
index e63abbc1..00000000
Binary files a/desktop/assets/data/graficos2x/359.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/36.png b/desktop/assets/data/graficos2x/36.png
deleted file mode 100644
index afb5519f..00000000
Binary files a/desktop/assets/data/graficos2x/36.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/360.png b/desktop/assets/data/graficos2x/360.png
deleted file mode 100644
index 3eb3abfb..00000000
Binary files a/desktop/assets/data/graficos2x/360.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/361.png b/desktop/assets/data/graficos2x/361.png
deleted file mode 100644
index 5091e243..00000000
Binary files a/desktop/assets/data/graficos2x/361.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/362.png b/desktop/assets/data/graficos2x/362.png
deleted file mode 100644
index 9bd021a6..00000000
Binary files a/desktop/assets/data/graficos2x/362.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/363.png b/desktop/assets/data/graficos2x/363.png
deleted file mode 100644
index 40d3f775..00000000
Binary files a/desktop/assets/data/graficos2x/363.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/364.png b/desktop/assets/data/graficos2x/364.png
deleted file mode 100644
index 9052ce8d..00000000
Binary files a/desktop/assets/data/graficos2x/364.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/365.png b/desktop/assets/data/graficos2x/365.png
deleted file mode 100644
index 32c295cc..00000000
Binary files a/desktop/assets/data/graficos2x/365.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/366.png b/desktop/assets/data/graficos2x/366.png
deleted file mode 100644
index da18eda0..00000000
Binary files a/desktop/assets/data/graficos2x/366.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/367.png b/desktop/assets/data/graficos2x/367.png
deleted file mode 100644
index 181b4347..00000000
Binary files a/desktop/assets/data/graficos2x/367.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/368.png b/desktop/assets/data/graficos2x/368.png
deleted file mode 100644
index 7e41fcdf..00000000
Binary files a/desktop/assets/data/graficos2x/368.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/369.png b/desktop/assets/data/graficos2x/369.png
deleted file mode 100644
index d568ecb6..00000000
Binary files a/desktop/assets/data/graficos2x/369.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/37.png b/desktop/assets/data/graficos2x/37.png
deleted file mode 100644
index 5c359644..00000000
Binary files a/desktop/assets/data/graficos2x/37.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/370.png b/desktop/assets/data/graficos2x/370.png
deleted file mode 100644
index b58d1ee2..00000000
Binary files a/desktop/assets/data/graficos2x/370.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/371.png b/desktop/assets/data/graficos2x/371.png
deleted file mode 100644
index 4d502d79..00000000
Binary files a/desktop/assets/data/graficos2x/371.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/372.png b/desktop/assets/data/graficos2x/372.png
deleted file mode 100644
index a1469878..00000000
Binary files a/desktop/assets/data/graficos2x/372.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/373.png b/desktop/assets/data/graficos2x/373.png
deleted file mode 100644
index f4a7cd77..00000000
Binary files a/desktop/assets/data/graficos2x/373.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/374.png b/desktop/assets/data/graficos2x/374.png
deleted file mode 100644
index 91355b1b..00000000
Binary files a/desktop/assets/data/graficos2x/374.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/375.png b/desktop/assets/data/graficos2x/375.png
deleted file mode 100644
index 397c675a..00000000
Binary files a/desktop/assets/data/graficos2x/375.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/376.png b/desktop/assets/data/graficos2x/376.png
deleted file mode 100644
index 69553410..00000000
Binary files a/desktop/assets/data/graficos2x/376.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/377.png b/desktop/assets/data/graficos2x/377.png
deleted file mode 100644
index f249c3d2..00000000
Binary files a/desktop/assets/data/graficos2x/377.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/378.png b/desktop/assets/data/graficos2x/378.png
deleted file mode 100644
index 91ae706e..00000000
Binary files a/desktop/assets/data/graficos2x/378.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/379.png b/desktop/assets/data/graficos2x/379.png
deleted file mode 100644
index 647618af..00000000
Binary files a/desktop/assets/data/graficos2x/379.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/38.png b/desktop/assets/data/graficos2x/38.png
deleted file mode 100644
index 43775fef..00000000
Binary files a/desktop/assets/data/graficos2x/38.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/380.png b/desktop/assets/data/graficos2x/380.png
deleted file mode 100644
index 7393b796..00000000
Binary files a/desktop/assets/data/graficos2x/380.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/381.png b/desktop/assets/data/graficos2x/381.png
deleted file mode 100644
index 26a598a0..00000000
Binary files a/desktop/assets/data/graficos2x/381.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/382.png b/desktop/assets/data/graficos2x/382.png
deleted file mode 100644
index e8e9a5c0..00000000
Binary files a/desktop/assets/data/graficos2x/382.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/383.png b/desktop/assets/data/graficos2x/383.png
deleted file mode 100644
index 39320f18..00000000
Binary files a/desktop/assets/data/graficos2x/383.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/384.png b/desktop/assets/data/graficos2x/384.png
deleted file mode 100644
index 459c30a4..00000000
Binary files a/desktop/assets/data/graficos2x/384.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/385.png b/desktop/assets/data/graficos2x/385.png
deleted file mode 100644
index 8b7f8ca1..00000000
Binary files a/desktop/assets/data/graficos2x/385.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/386.png b/desktop/assets/data/graficos2x/386.png
deleted file mode 100644
index 8a3654b8..00000000
Binary files a/desktop/assets/data/graficos2x/386.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/387.png b/desktop/assets/data/graficos2x/387.png
deleted file mode 100644
index 9df46db4..00000000
Binary files a/desktop/assets/data/graficos2x/387.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/388.png b/desktop/assets/data/graficos2x/388.png
deleted file mode 100644
index 88b07b05..00000000
Binary files a/desktop/assets/data/graficos2x/388.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/389.png b/desktop/assets/data/graficos2x/389.png
deleted file mode 100644
index be85d095..00000000
Binary files a/desktop/assets/data/graficos2x/389.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/39.png b/desktop/assets/data/graficos2x/39.png
deleted file mode 100644
index 84ac5a84..00000000
Binary files a/desktop/assets/data/graficos2x/39.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/390.png b/desktop/assets/data/graficos2x/390.png
deleted file mode 100644
index 929d38c6..00000000
Binary files a/desktop/assets/data/graficos2x/390.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/391.png b/desktop/assets/data/graficos2x/391.png
deleted file mode 100644
index 34f7381a..00000000
Binary files a/desktop/assets/data/graficos2x/391.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/392.png b/desktop/assets/data/graficos2x/392.png
deleted file mode 100644
index c19ebfad..00000000
Binary files a/desktop/assets/data/graficos2x/392.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/393.png b/desktop/assets/data/graficos2x/393.png
deleted file mode 100644
index e9b35b93..00000000
Binary files a/desktop/assets/data/graficos2x/393.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/394.png b/desktop/assets/data/graficos2x/394.png
deleted file mode 100644
index 9ca14358..00000000
Binary files a/desktop/assets/data/graficos2x/394.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/395.png b/desktop/assets/data/graficos2x/395.png
deleted file mode 100644
index c9b0e733..00000000
Binary files a/desktop/assets/data/graficos2x/395.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/396.png b/desktop/assets/data/graficos2x/396.png
deleted file mode 100644
index 906969af..00000000
Binary files a/desktop/assets/data/graficos2x/396.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/397.png b/desktop/assets/data/graficos2x/397.png
deleted file mode 100644
index 75b6638f..00000000
Binary files a/desktop/assets/data/graficos2x/397.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/398.png b/desktop/assets/data/graficos2x/398.png
deleted file mode 100644
index 76419831..00000000
Binary files a/desktop/assets/data/graficos2x/398.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/399.png b/desktop/assets/data/graficos2x/399.png
deleted file mode 100644
index f3e6c5dc..00000000
Binary files a/desktop/assets/data/graficos2x/399.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4.png b/desktop/assets/data/graficos2x/4.png
deleted file mode 100644
index 78c25ba4..00000000
Binary files a/desktop/assets/data/graficos2x/4.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/40.png b/desktop/assets/data/graficos2x/40.png
deleted file mode 100644
index 0e2314c2..00000000
Binary files a/desktop/assets/data/graficos2x/40.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/400.png b/desktop/assets/data/graficos2x/400.png
deleted file mode 100644
index fd6c5759..00000000
Binary files a/desktop/assets/data/graficos2x/400.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4000.png b/desktop/assets/data/graficos2x/4000.png
deleted file mode 100644
index ff53e908..00000000
Binary files a/desktop/assets/data/graficos2x/4000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4001.png b/desktop/assets/data/graficos2x/4001.png
deleted file mode 100644
index cca0f6d4..00000000
Binary files a/desktop/assets/data/graficos2x/4001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4002.png b/desktop/assets/data/graficos2x/4002.png
deleted file mode 100644
index 53ab1e40..00000000
Binary files a/desktop/assets/data/graficos2x/4002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4003.png b/desktop/assets/data/graficos2x/4003.png
deleted file mode 100644
index 6fb3fa1d..00000000
Binary files a/desktop/assets/data/graficos2x/4003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4004.png b/desktop/assets/data/graficos2x/4004.png
deleted file mode 100644
index 739d2a83..00000000
Binary files a/desktop/assets/data/graficos2x/4004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4005.png b/desktop/assets/data/graficos2x/4005.png
deleted file mode 100644
index 62f8a5e4..00000000
Binary files a/desktop/assets/data/graficos2x/4005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4006.png b/desktop/assets/data/graficos2x/4006.png
deleted file mode 100644
index 8d4c322c..00000000
Binary files a/desktop/assets/data/graficos2x/4006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4007.png b/desktop/assets/data/graficos2x/4007.png
deleted file mode 100644
index 9c293b7e..00000000
Binary files a/desktop/assets/data/graficos2x/4007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4008.png b/desktop/assets/data/graficos2x/4008.png
deleted file mode 100644
index f2fdb443..00000000
Binary files a/desktop/assets/data/graficos2x/4008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4009.png b/desktop/assets/data/graficos2x/4009.png
deleted file mode 100644
index 948c8f63..00000000
Binary files a/desktop/assets/data/graficos2x/4009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/401.png b/desktop/assets/data/graficos2x/401.png
deleted file mode 100644
index 54d59a58..00000000
Binary files a/desktop/assets/data/graficos2x/401.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4010.png b/desktop/assets/data/graficos2x/4010.png
deleted file mode 100644
index a0ed6bc8..00000000
Binary files a/desktop/assets/data/graficos2x/4010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4011.png b/desktop/assets/data/graficos2x/4011.png
deleted file mode 100644
index e25b7e0c..00000000
Binary files a/desktop/assets/data/graficos2x/4011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4012.png b/desktop/assets/data/graficos2x/4012.png
deleted file mode 100644
index 378d9c11..00000000
Binary files a/desktop/assets/data/graficos2x/4012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4013.png b/desktop/assets/data/graficos2x/4013.png
deleted file mode 100644
index 11a93d63..00000000
Binary files a/desktop/assets/data/graficos2x/4013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4014.png b/desktop/assets/data/graficos2x/4014.png
deleted file mode 100644
index 6a278517..00000000
Binary files a/desktop/assets/data/graficos2x/4014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4015.png b/desktop/assets/data/graficos2x/4015.png
deleted file mode 100644
index 72464155..00000000
Binary files a/desktop/assets/data/graficos2x/4015.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4016.png b/desktop/assets/data/graficos2x/4016.png
deleted file mode 100644
index 4b52e78f..00000000
Binary files a/desktop/assets/data/graficos2x/4016.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4017.png b/desktop/assets/data/graficos2x/4017.png
deleted file mode 100644
index f5d1b306..00000000
Binary files a/desktop/assets/data/graficos2x/4017.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4018.png b/desktop/assets/data/graficos2x/4018.png
deleted file mode 100644
index e81fcd87..00000000
Binary files a/desktop/assets/data/graficos2x/4018.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4019.png b/desktop/assets/data/graficos2x/4019.png
deleted file mode 100644
index e083e003..00000000
Binary files a/desktop/assets/data/graficos2x/4019.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/402.png b/desktop/assets/data/graficos2x/402.png
deleted file mode 100644
index 247aeeb2..00000000
Binary files a/desktop/assets/data/graficos2x/402.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4020.png b/desktop/assets/data/graficos2x/4020.png
deleted file mode 100644
index eaaa62b9..00000000
Binary files a/desktop/assets/data/graficos2x/4020.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4021.png b/desktop/assets/data/graficos2x/4021.png
deleted file mode 100644
index 8427279f..00000000
Binary files a/desktop/assets/data/graficos2x/4021.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4022.png b/desktop/assets/data/graficos2x/4022.png
deleted file mode 100644
index 50676308..00000000
Binary files a/desktop/assets/data/graficos2x/4022.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4023.png b/desktop/assets/data/graficos2x/4023.png
deleted file mode 100644
index 84a0dde1..00000000
Binary files a/desktop/assets/data/graficos2x/4023.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4024.png b/desktop/assets/data/graficos2x/4024.png
deleted file mode 100644
index 265a4be3..00000000
Binary files a/desktop/assets/data/graficos2x/4024.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4025.png b/desktop/assets/data/graficos2x/4025.png
deleted file mode 100644
index 1a51071a..00000000
Binary files a/desktop/assets/data/graficos2x/4025.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4026.png b/desktop/assets/data/graficos2x/4026.png
deleted file mode 100644
index 4b297c61..00000000
Binary files a/desktop/assets/data/graficos2x/4026.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4027.png b/desktop/assets/data/graficos2x/4027.png
deleted file mode 100644
index bdede51f..00000000
Binary files a/desktop/assets/data/graficos2x/4027.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4028.png b/desktop/assets/data/graficos2x/4028.png
deleted file mode 100644
index f8be749f..00000000
Binary files a/desktop/assets/data/graficos2x/4028.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4029.png b/desktop/assets/data/graficos2x/4029.png
deleted file mode 100644
index c5697fde..00000000
Binary files a/desktop/assets/data/graficos2x/4029.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/403.png b/desktop/assets/data/graficos2x/403.png
deleted file mode 100644
index 4d1281fd..00000000
Binary files a/desktop/assets/data/graficos2x/403.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4030.png b/desktop/assets/data/graficos2x/4030.png
deleted file mode 100644
index a88d752f..00000000
Binary files a/desktop/assets/data/graficos2x/4030.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4031.png b/desktop/assets/data/graficos2x/4031.png
deleted file mode 100644
index 27d5bb73..00000000
Binary files a/desktop/assets/data/graficos2x/4031.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4032.png b/desktop/assets/data/graficos2x/4032.png
deleted file mode 100644
index 3c8a96f5..00000000
Binary files a/desktop/assets/data/graficos2x/4032.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4033.png b/desktop/assets/data/graficos2x/4033.png
deleted file mode 100644
index 6bf99899..00000000
Binary files a/desktop/assets/data/graficos2x/4033.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4034.png b/desktop/assets/data/graficos2x/4034.png
deleted file mode 100644
index 2f28a1de..00000000
Binary files a/desktop/assets/data/graficos2x/4034.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4035.png b/desktop/assets/data/graficos2x/4035.png
deleted file mode 100644
index 4c5edc9c..00000000
Binary files a/desktop/assets/data/graficos2x/4035.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4036.png b/desktop/assets/data/graficos2x/4036.png
deleted file mode 100644
index a97f574e..00000000
Binary files a/desktop/assets/data/graficos2x/4036.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4037.png b/desktop/assets/data/graficos2x/4037.png
deleted file mode 100644
index 3b4953aa..00000000
Binary files a/desktop/assets/data/graficos2x/4037.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4038.png b/desktop/assets/data/graficos2x/4038.png
deleted file mode 100644
index edb8c128..00000000
Binary files a/desktop/assets/data/graficos2x/4038.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4039.png b/desktop/assets/data/graficos2x/4039.png
deleted file mode 100644
index 9f73ec1e..00000000
Binary files a/desktop/assets/data/graficos2x/4039.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/404.png b/desktop/assets/data/graficos2x/404.png
deleted file mode 100644
index c924f90f..00000000
Binary files a/desktop/assets/data/graficos2x/404.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4040.png b/desktop/assets/data/graficos2x/4040.png
deleted file mode 100644
index 3e7f6b03..00000000
Binary files a/desktop/assets/data/graficos2x/4040.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4041.png b/desktop/assets/data/graficos2x/4041.png
deleted file mode 100644
index 5c0a7982..00000000
Binary files a/desktop/assets/data/graficos2x/4041.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4042.png b/desktop/assets/data/graficos2x/4042.png
deleted file mode 100644
index 9c61e7c3..00000000
Binary files a/desktop/assets/data/graficos2x/4042.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4043.png b/desktop/assets/data/graficos2x/4043.png
deleted file mode 100644
index 265de7db..00000000
Binary files a/desktop/assets/data/graficos2x/4043.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4044.png b/desktop/assets/data/graficos2x/4044.png
deleted file mode 100644
index 0da931fa..00000000
Binary files a/desktop/assets/data/graficos2x/4044.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4045.png b/desktop/assets/data/graficos2x/4045.png
deleted file mode 100644
index 266931c1..00000000
Binary files a/desktop/assets/data/graficos2x/4045.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4046.png b/desktop/assets/data/graficos2x/4046.png
deleted file mode 100644
index 6eb66fb0..00000000
Binary files a/desktop/assets/data/graficos2x/4046.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4047.png b/desktop/assets/data/graficos2x/4047.png
deleted file mode 100644
index 9e9a1a92..00000000
Binary files a/desktop/assets/data/graficos2x/4047.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4048.png b/desktop/assets/data/graficos2x/4048.png
deleted file mode 100644
index b8e1e1c1..00000000
Binary files a/desktop/assets/data/graficos2x/4048.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4049.png b/desktop/assets/data/graficos2x/4049.png
deleted file mode 100644
index 51924de7..00000000
Binary files a/desktop/assets/data/graficos2x/4049.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/405.png b/desktop/assets/data/graficos2x/405.png
deleted file mode 100644
index e7be7214..00000000
Binary files a/desktop/assets/data/graficos2x/405.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4050.png b/desktop/assets/data/graficos2x/4050.png
deleted file mode 100644
index 35917e15..00000000
Binary files a/desktop/assets/data/graficos2x/4050.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4051.png b/desktop/assets/data/graficos2x/4051.png
deleted file mode 100644
index 9c7d6e71..00000000
Binary files a/desktop/assets/data/graficos2x/4051.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4052.png b/desktop/assets/data/graficos2x/4052.png
deleted file mode 100644
index 8f1b6363..00000000
Binary files a/desktop/assets/data/graficos2x/4052.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4053.png b/desktop/assets/data/graficos2x/4053.png
deleted file mode 100644
index ffdf7e55..00000000
Binary files a/desktop/assets/data/graficos2x/4053.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4054.png b/desktop/assets/data/graficos2x/4054.png
deleted file mode 100644
index 18fe877a..00000000
Binary files a/desktop/assets/data/graficos2x/4054.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4055.png b/desktop/assets/data/graficos2x/4055.png
deleted file mode 100644
index 4bc2a827..00000000
Binary files a/desktop/assets/data/graficos2x/4055.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4056.png b/desktop/assets/data/graficos2x/4056.png
deleted file mode 100644
index 75080ff6..00000000
Binary files a/desktop/assets/data/graficos2x/4056.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4057.png b/desktop/assets/data/graficos2x/4057.png
deleted file mode 100644
index 7a0aae04..00000000
Binary files a/desktop/assets/data/graficos2x/4057.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4058.png b/desktop/assets/data/graficos2x/4058.png
deleted file mode 100644
index 628ab7b8..00000000
Binary files a/desktop/assets/data/graficos2x/4058.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4059.png b/desktop/assets/data/graficos2x/4059.png
deleted file mode 100644
index 976b0953..00000000
Binary files a/desktop/assets/data/graficos2x/4059.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/406.png b/desktop/assets/data/graficos2x/406.png
deleted file mode 100644
index da777400..00000000
Binary files a/desktop/assets/data/graficos2x/406.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4060.png b/desktop/assets/data/graficos2x/4060.png
deleted file mode 100644
index eee8504d..00000000
Binary files a/desktop/assets/data/graficos2x/4060.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4061.png b/desktop/assets/data/graficos2x/4061.png
deleted file mode 100644
index e2c388b1..00000000
Binary files a/desktop/assets/data/graficos2x/4061.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4062.png b/desktop/assets/data/graficos2x/4062.png
deleted file mode 100644
index 8b1714e2..00000000
Binary files a/desktop/assets/data/graficos2x/4062.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4063.png b/desktop/assets/data/graficos2x/4063.png
deleted file mode 100644
index d689c836..00000000
Binary files a/desktop/assets/data/graficos2x/4063.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4064.png b/desktop/assets/data/graficos2x/4064.png
deleted file mode 100644
index bee895a7..00000000
Binary files a/desktop/assets/data/graficos2x/4064.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4065.png b/desktop/assets/data/graficos2x/4065.png
deleted file mode 100644
index 580d065a..00000000
Binary files a/desktop/assets/data/graficos2x/4065.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4066.png b/desktop/assets/data/graficos2x/4066.png
deleted file mode 100644
index 00f4e537..00000000
Binary files a/desktop/assets/data/graficos2x/4066.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4067.png b/desktop/assets/data/graficos2x/4067.png
deleted file mode 100644
index 6b6ad35d..00000000
Binary files a/desktop/assets/data/graficos2x/4067.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4068.png b/desktop/assets/data/graficos2x/4068.png
deleted file mode 100644
index 68ca6086..00000000
Binary files a/desktop/assets/data/graficos2x/4068.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4069.png b/desktop/assets/data/graficos2x/4069.png
deleted file mode 100644
index df43240e..00000000
Binary files a/desktop/assets/data/graficos2x/4069.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/406@2x.png b/desktop/assets/data/graficos2x/406@2x.png
deleted file mode 100644
index 7b7dcd7d..00000000
Binary files a/desktop/assets/data/graficos2x/406@2x.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/407.png b/desktop/assets/data/graficos2x/407.png
deleted file mode 100644
index 0cd4b277..00000000
Binary files a/desktop/assets/data/graficos2x/407.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4070.png b/desktop/assets/data/graficos2x/4070.png
deleted file mode 100644
index 1b227ed1..00000000
Binary files a/desktop/assets/data/graficos2x/4070.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4071.png b/desktop/assets/data/graficos2x/4071.png
deleted file mode 100644
index d5ef9bfa..00000000
Binary files a/desktop/assets/data/graficos2x/4071.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4072.png b/desktop/assets/data/graficos2x/4072.png
deleted file mode 100644
index 38c5b1ef..00000000
Binary files a/desktop/assets/data/graficos2x/4072.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4073.png b/desktop/assets/data/graficos2x/4073.png
deleted file mode 100644
index f77382a5..00000000
Binary files a/desktop/assets/data/graficos2x/4073.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4074.png b/desktop/assets/data/graficos2x/4074.png
deleted file mode 100644
index 1d92e4a2..00000000
Binary files a/desktop/assets/data/graficos2x/4074.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4075.png b/desktop/assets/data/graficos2x/4075.png
deleted file mode 100644
index 286cabc5..00000000
Binary files a/desktop/assets/data/graficos2x/4075.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4076.png b/desktop/assets/data/graficos2x/4076.png
deleted file mode 100644
index 4ff78276..00000000
Binary files a/desktop/assets/data/graficos2x/4076.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4077.png b/desktop/assets/data/graficos2x/4077.png
deleted file mode 100644
index d19297e4..00000000
Binary files a/desktop/assets/data/graficos2x/4077.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4078.png b/desktop/assets/data/graficos2x/4078.png
deleted file mode 100644
index 511d897e..00000000
Binary files a/desktop/assets/data/graficos2x/4078.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4079.png b/desktop/assets/data/graficos2x/4079.png
deleted file mode 100644
index bfc65b72..00000000
Binary files a/desktop/assets/data/graficos2x/4079.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/408.png b/desktop/assets/data/graficos2x/408.png
deleted file mode 100644
index 9f4a8e3a..00000000
Binary files a/desktop/assets/data/graficos2x/408.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4080.png b/desktop/assets/data/graficos2x/4080.png
deleted file mode 100644
index f63f26cf..00000000
Binary files a/desktop/assets/data/graficos2x/4080.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4081.png b/desktop/assets/data/graficos2x/4081.png
deleted file mode 100644
index d03be231..00000000
Binary files a/desktop/assets/data/graficos2x/4081.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4082.png b/desktop/assets/data/graficos2x/4082.png
deleted file mode 100644
index 2297ce4f..00000000
Binary files a/desktop/assets/data/graficos2x/4082.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4083.png b/desktop/assets/data/graficos2x/4083.png
deleted file mode 100644
index 94efc36c..00000000
Binary files a/desktop/assets/data/graficos2x/4083.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4084.png b/desktop/assets/data/graficos2x/4084.png
deleted file mode 100644
index 76a7219e..00000000
Binary files a/desktop/assets/data/graficos2x/4084.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4085.png b/desktop/assets/data/graficos2x/4085.png
deleted file mode 100644
index cbd72beb..00000000
Binary files a/desktop/assets/data/graficos2x/4085.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4086.png b/desktop/assets/data/graficos2x/4086.png
deleted file mode 100644
index 1c363303..00000000
Binary files a/desktop/assets/data/graficos2x/4086.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4087.png b/desktop/assets/data/graficos2x/4087.png
deleted file mode 100644
index f0b7cce5..00000000
Binary files a/desktop/assets/data/graficos2x/4087.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4088.png b/desktop/assets/data/graficos2x/4088.png
deleted file mode 100644
index 6dbdf14e..00000000
Binary files a/desktop/assets/data/graficos2x/4088.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4089.png b/desktop/assets/data/graficos2x/4089.png
deleted file mode 100644
index 6bc606d5..00000000
Binary files a/desktop/assets/data/graficos2x/4089.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/409.png b/desktop/assets/data/graficos2x/409.png
deleted file mode 100644
index 8b1ba587..00000000
Binary files a/desktop/assets/data/graficos2x/409.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4090.png b/desktop/assets/data/graficos2x/4090.png
deleted file mode 100644
index 381fc32c..00000000
Binary files a/desktop/assets/data/graficos2x/4090.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4091.png b/desktop/assets/data/graficos2x/4091.png
deleted file mode 100644
index 3e57952a..00000000
Binary files a/desktop/assets/data/graficos2x/4091.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4092.png b/desktop/assets/data/graficos2x/4092.png
deleted file mode 100644
index ae1b4782..00000000
Binary files a/desktop/assets/data/graficos2x/4092.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4093.png b/desktop/assets/data/graficos2x/4093.png
deleted file mode 100644
index 03d51fef..00000000
Binary files a/desktop/assets/data/graficos2x/4093.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4094.png b/desktop/assets/data/graficos2x/4094.png
deleted file mode 100644
index 4a14458c..00000000
Binary files a/desktop/assets/data/graficos2x/4094.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4095.png b/desktop/assets/data/graficos2x/4095.png
deleted file mode 100644
index 417930f3..00000000
Binary files a/desktop/assets/data/graficos2x/4095.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4096.png b/desktop/assets/data/graficos2x/4096.png
deleted file mode 100644
index fa43074c..00000000
Binary files a/desktop/assets/data/graficos2x/4096.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4097.png b/desktop/assets/data/graficos2x/4097.png
deleted file mode 100644
index 09a4fe82..00000000
Binary files a/desktop/assets/data/graficos2x/4097.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4098.png b/desktop/assets/data/graficos2x/4098.png
deleted file mode 100644
index 720c3447..00000000
Binary files a/desktop/assets/data/graficos2x/4098.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4099.png b/desktop/assets/data/graficos2x/4099.png
deleted file mode 100644
index 840eeab5..00000000
Binary files a/desktop/assets/data/graficos2x/4099.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/41.png b/desktop/assets/data/graficos2x/41.png
deleted file mode 100644
index 53523b7c..00000000
Binary files a/desktop/assets/data/graficos2x/41.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/410.png b/desktop/assets/data/graficos2x/410.png
deleted file mode 100644
index a7ce4329..00000000
Binary files a/desktop/assets/data/graficos2x/410.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4100.png b/desktop/assets/data/graficos2x/4100.png
deleted file mode 100644
index c1ee300e..00000000
Binary files a/desktop/assets/data/graficos2x/4100.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4101.png b/desktop/assets/data/graficos2x/4101.png
deleted file mode 100644
index 75cb3c8b..00000000
Binary files a/desktop/assets/data/graficos2x/4101.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4102.png b/desktop/assets/data/graficos2x/4102.png
deleted file mode 100644
index fa12b676..00000000
Binary files a/desktop/assets/data/graficos2x/4102.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4103.png b/desktop/assets/data/graficos2x/4103.png
deleted file mode 100644
index 300bc164..00000000
Binary files a/desktop/assets/data/graficos2x/4103.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4104.png b/desktop/assets/data/graficos2x/4104.png
deleted file mode 100644
index 8f220a32..00000000
Binary files a/desktop/assets/data/graficos2x/4104.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4105.png b/desktop/assets/data/graficos2x/4105.png
deleted file mode 100644
index 16dfc8a6..00000000
Binary files a/desktop/assets/data/graficos2x/4105.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4106.png b/desktop/assets/data/graficos2x/4106.png
deleted file mode 100644
index 552e50ea..00000000
Binary files a/desktop/assets/data/graficos2x/4106.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4107.png b/desktop/assets/data/graficos2x/4107.png
deleted file mode 100644
index 1041c593..00000000
Binary files a/desktop/assets/data/graficos2x/4107.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4108.png b/desktop/assets/data/graficos2x/4108.png
deleted file mode 100644
index 25908418..00000000
Binary files a/desktop/assets/data/graficos2x/4108.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4109.png b/desktop/assets/data/graficos2x/4109.png
deleted file mode 100644
index 5a0025bb..00000000
Binary files a/desktop/assets/data/graficos2x/4109.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/411.png b/desktop/assets/data/graficos2x/411.png
deleted file mode 100644
index b1f73a35..00000000
Binary files a/desktop/assets/data/graficos2x/411.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4110.png b/desktop/assets/data/graficos2x/4110.png
deleted file mode 100644
index c460ad81..00000000
Binary files a/desktop/assets/data/graficos2x/4110.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4111.png b/desktop/assets/data/graficos2x/4111.png
deleted file mode 100644
index b1f02b3f..00000000
Binary files a/desktop/assets/data/graficos2x/4111.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4112.png b/desktop/assets/data/graficos2x/4112.png
deleted file mode 100644
index b1435d45..00000000
Binary files a/desktop/assets/data/graficos2x/4112.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4113.png b/desktop/assets/data/graficos2x/4113.png
deleted file mode 100644
index 4a4d7656..00000000
Binary files a/desktop/assets/data/graficos2x/4113.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4114.png b/desktop/assets/data/graficos2x/4114.png
deleted file mode 100644
index 14bb2669..00000000
Binary files a/desktop/assets/data/graficos2x/4114.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4115.png b/desktop/assets/data/graficos2x/4115.png
deleted file mode 100644
index 3683622e..00000000
Binary files a/desktop/assets/data/graficos2x/4115.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4116.png b/desktop/assets/data/graficos2x/4116.png
deleted file mode 100644
index 6fb3fa1d..00000000
Binary files a/desktop/assets/data/graficos2x/4116.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4117.png b/desktop/assets/data/graficos2x/4117.png
deleted file mode 100644
index c9f531e3..00000000
Binary files a/desktop/assets/data/graficos2x/4117.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4118.png b/desktop/assets/data/graficos2x/4118.png
deleted file mode 100644
index 3ce506eb..00000000
Binary files a/desktop/assets/data/graficos2x/4118.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4119.png b/desktop/assets/data/graficos2x/4119.png
deleted file mode 100644
index cd89d337..00000000
Binary files a/desktop/assets/data/graficos2x/4119.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/412.png b/desktop/assets/data/graficos2x/412.png
deleted file mode 100644
index 84cdd18d..00000000
Binary files a/desktop/assets/data/graficos2x/412.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4120.png b/desktop/assets/data/graficos2x/4120.png
deleted file mode 100644
index e601d6ea..00000000
Binary files a/desktop/assets/data/graficos2x/4120.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4121.png b/desktop/assets/data/graficos2x/4121.png
deleted file mode 100644
index 620dd158..00000000
Binary files a/desktop/assets/data/graficos2x/4121.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4122.png b/desktop/assets/data/graficos2x/4122.png
deleted file mode 100644
index 8237c77e..00000000
Binary files a/desktop/assets/data/graficos2x/4122.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4123.png b/desktop/assets/data/graficos2x/4123.png
deleted file mode 100644
index 354439fb..00000000
Binary files a/desktop/assets/data/graficos2x/4123.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4124.png b/desktop/assets/data/graficos2x/4124.png
deleted file mode 100644
index 212b5fd2..00000000
Binary files a/desktop/assets/data/graficos2x/4124.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4125.png b/desktop/assets/data/graficos2x/4125.png
deleted file mode 100644
index a3b71265..00000000
Binary files a/desktop/assets/data/graficos2x/4125.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4126.png b/desktop/assets/data/graficos2x/4126.png
deleted file mode 100644
index 1c00fa00..00000000
Binary files a/desktop/assets/data/graficos2x/4126.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4127.png b/desktop/assets/data/graficos2x/4127.png
deleted file mode 100644
index 272bc80c..00000000
Binary files a/desktop/assets/data/graficos2x/4127.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4128.png b/desktop/assets/data/graficos2x/4128.png
deleted file mode 100644
index 884cf43a..00000000
Binary files a/desktop/assets/data/graficos2x/4128.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4129.png b/desktop/assets/data/graficos2x/4129.png
deleted file mode 100644
index 6cc428e0..00000000
Binary files a/desktop/assets/data/graficos2x/4129.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/413.png b/desktop/assets/data/graficos2x/413.png
deleted file mode 100644
index 3f46b058..00000000
Binary files a/desktop/assets/data/graficos2x/413.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4130.png b/desktop/assets/data/graficos2x/4130.png
deleted file mode 100644
index 1463ac79..00000000
Binary files a/desktop/assets/data/graficos2x/4130.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4131.png b/desktop/assets/data/graficos2x/4131.png
deleted file mode 100644
index 37a1eb1b..00000000
Binary files a/desktop/assets/data/graficos2x/4131.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4132.png b/desktop/assets/data/graficos2x/4132.png
deleted file mode 100644
index 2a554e76..00000000
Binary files a/desktop/assets/data/graficos2x/4132.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4133.png b/desktop/assets/data/graficos2x/4133.png
deleted file mode 100644
index c5d7514a..00000000
Binary files a/desktop/assets/data/graficos2x/4133.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4134.png b/desktop/assets/data/graficos2x/4134.png
deleted file mode 100644
index c8f99a2d..00000000
Binary files a/desktop/assets/data/graficos2x/4134.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4135.png b/desktop/assets/data/graficos2x/4135.png
deleted file mode 100644
index c31b102a..00000000
Binary files a/desktop/assets/data/graficos2x/4135.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4136.png b/desktop/assets/data/graficos2x/4136.png
deleted file mode 100644
index fdf6747f..00000000
Binary files a/desktop/assets/data/graficos2x/4136.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4137.png b/desktop/assets/data/graficos2x/4137.png
deleted file mode 100644
index d4ee5df1..00000000
Binary files a/desktop/assets/data/graficos2x/4137.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4138.png b/desktop/assets/data/graficos2x/4138.png
deleted file mode 100644
index 73daea40..00000000
Binary files a/desktop/assets/data/graficos2x/4138.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4139.png b/desktop/assets/data/graficos2x/4139.png
deleted file mode 100644
index e6dfde51..00000000
Binary files a/desktop/assets/data/graficos2x/4139.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/414.png b/desktop/assets/data/graficos2x/414.png
deleted file mode 100644
index 7b74dd3e..00000000
Binary files a/desktop/assets/data/graficos2x/414.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4140.png b/desktop/assets/data/graficos2x/4140.png
deleted file mode 100644
index c814c26b..00000000
Binary files a/desktop/assets/data/graficos2x/4140.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4141.png b/desktop/assets/data/graficos2x/4141.png
deleted file mode 100644
index 09b617ec..00000000
Binary files a/desktop/assets/data/graficos2x/4141.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4142.png b/desktop/assets/data/graficos2x/4142.png
deleted file mode 100644
index 34685f71..00000000
Binary files a/desktop/assets/data/graficos2x/4142.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4143.png b/desktop/assets/data/graficos2x/4143.png
deleted file mode 100644
index 2307a18f..00000000
Binary files a/desktop/assets/data/graficos2x/4143.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4144.png b/desktop/assets/data/graficos2x/4144.png
deleted file mode 100644
index 90e4d484..00000000
Binary files a/desktop/assets/data/graficos2x/4144.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4145.png b/desktop/assets/data/graficos2x/4145.png
deleted file mode 100644
index 90497869..00000000
Binary files a/desktop/assets/data/graficos2x/4145.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4146.png b/desktop/assets/data/graficos2x/4146.png
deleted file mode 100644
index 4303c878..00000000
Binary files a/desktop/assets/data/graficos2x/4146.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4147.png b/desktop/assets/data/graficos2x/4147.png
deleted file mode 100644
index cc63cffd..00000000
Binary files a/desktop/assets/data/graficos2x/4147.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4148.png b/desktop/assets/data/graficos2x/4148.png
deleted file mode 100644
index 7ef882b5..00000000
Binary files a/desktop/assets/data/graficos2x/4148.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4149.png b/desktop/assets/data/graficos2x/4149.png
deleted file mode 100644
index 92ed1cca..00000000
Binary files a/desktop/assets/data/graficos2x/4149.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4150.png b/desktop/assets/data/graficos2x/4150.png
deleted file mode 100644
index 4c5e20dd..00000000
Binary files a/desktop/assets/data/graficos2x/4150.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4151.png b/desktop/assets/data/graficos2x/4151.png
deleted file mode 100644
index fab0be5f..00000000
Binary files a/desktop/assets/data/graficos2x/4151.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4152.png b/desktop/assets/data/graficos2x/4152.png
deleted file mode 100644
index ffb1d6ba..00000000
Binary files a/desktop/assets/data/graficos2x/4152.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4153.png b/desktop/assets/data/graficos2x/4153.png
deleted file mode 100644
index a2274514..00000000
Binary files a/desktop/assets/data/graficos2x/4153.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4154.png b/desktop/assets/data/graficos2x/4154.png
deleted file mode 100644
index 8f64c685..00000000
Binary files a/desktop/assets/data/graficos2x/4154.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4155.png b/desktop/assets/data/graficos2x/4155.png
deleted file mode 100644
index bdd8c344..00000000
Binary files a/desktop/assets/data/graficos2x/4155.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4156.png b/desktop/assets/data/graficos2x/4156.png
deleted file mode 100644
index 7735fb52..00000000
Binary files a/desktop/assets/data/graficos2x/4156.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4157.png b/desktop/assets/data/graficos2x/4157.png
deleted file mode 100644
index 133321f6..00000000
Binary files a/desktop/assets/data/graficos2x/4157.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4158.png b/desktop/assets/data/graficos2x/4158.png
deleted file mode 100644
index a4093261..00000000
Binary files a/desktop/assets/data/graficos2x/4158.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4159.png b/desktop/assets/data/graficos2x/4159.png
deleted file mode 100644
index 626875fa..00000000
Binary files a/desktop/assets/data/graficos2x/4159.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4160.png b/desktop/assets/data/graficos2x/4160.png
deleted file mode 100644
index a670c2b6..00000000
Binary files a/desktop/assets/data/graficos2x/4160.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4161.png b/desktop/assets/data/graficos2x/4161.png
deleted file mode 100644
index 33c52856..00000000
Binary files a/desktop/assets/data/graficos2x/4161.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4162.png b/desktop/assets/data/graficos2x/4162.png
deleted file mode 100644
index 8c383b3f..00000000
Binary files a/desktop/assets/data/graficos2x/4162.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4163.png b/desktop/assets/data/graficos2x/4163.png
deleted file mode 100644
index d13ff89a..00000000
Binary files a/desktop/assets/data/graficos2x/4163.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4164.png b/desktop/assets/data/graficos2x/4164.png
deleted file mode 100644
index 4bc91ca6..00000000
Binary files a/desktop/assets/data/graficos2x/4164.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4165.png b/desktop/assets/data/graficos2x/4165.png
deleted file mode 100644
index 8373b740..00000000
Binary files a/desktop/assets/data/graficos2x/4165.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4166.png b/desktop/assets/data/graficos2x/4166.png
deleted file mode 100644
index 6f009465..00000000
Binary files a/desktop/assets/data/graficos2x/4166.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4167.png b/desktop/assets/data/graficos2x/4167.png
deleted file mode 100644
index aaf609f6..00000000
Binary files a/desktop/assets/data/graficos2x/4167.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4168.png b/desktop/assets/data/graficos2x/4168.png
deleted file mode 100644
index f7e0e20a..00000000
Binary files a/desktop/assets/data/graficos2x/4168.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4169.png b/desktop/assets/data/graficos2x/4169.png
deleted file mode 100644
index 0876b985..00000000
Binary files a/desktop/assets/data/graficos2x/4169.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/417.png b/desktop/assets/data/graficos2x/417.png
deleted file mode 100644
index cca468ed..00000000
Binary files a/desktop/assets/data/graficos2x/417.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/4170.png b/desktop/assets/data/graficos2x/4170.png
deleted file mode 100644
index 516fe2f0..00000000
Binary files a/desktop/assets/data/graficos2x/4170.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/418.png b/desktop/assets/data/graficos2x/418.png
deleted file mode 100644
index f7cae2de..00000000
Binary files a/desktop/assets/data/graficos2x/418.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/419.png b/desktop/assets/data/graficos2x/419.png
deleted file mode 100644
index 77fa13d3..00000000
Binary files a/desktop/assets/data/graficos2x/419.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/42.png b/desktop/assets/data/graficos2x/42.png
deleted file mode 100644
index 9d29ca6f..00000000
Binary files a/desktop/assets/data/graficos2x/42.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/422.png b/desktop/assets/data/graficos2x/422.png
deleted file mode 100644
index 0a82fae7..00000000
Binary files a/desktop/assets/data/graficos2x/422.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/423.png b/desktop/assets/data/graficos2x/423.png
deleted file mode 100644
index 8474d33d..00000000
Binary files a/desktop/assets/data/graficos2x/423.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/424.png b/desktop/assets/data/graficos2x/424.png
deleted file mode 100644
index 3a100554..00000000
Binary files a/desktop/assets/data/graficos2x/424.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/425.png b/desktop/assets/data/graficos2x/425.png
deleted file mode 100644
index 848e5675..00000000
Binary files a/desktop/assets/data/graficos2x/425.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/426.png b/desktop/assets/data/graficos2x/426.png
deleted file mode 100644
index 80981e38..00000000
Binary files a/desktop/assets/data/graficos2x/426.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/427.png b/desktop/assets/data/graficos2x/427.png
deleted file mode 100644
index dea5beb1..00000000
Binary files a/desktop/assets/data/graficos2x/427.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/428.png b/desktop/assets/data/graficos2x/428.png
deleted file mode 100644
index 29b87a14..00000000
Binary files a/desktop/assets/data/graficos2x/428.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/429.png b/desktop/assets/data/graficos2x/429.png
deleted file mode 100644
index 2d779450..00000000
Binary files a/desktop/assets/data/graficos2x/429.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/43.png b/desktop/assets/data/graficos2x/43.png
deleted file mode 100644
index 60a0a7ff..00000000
Binary files a/desktop/assets/data/graficos2x/43.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/430.png b/desktop/assets/data/graficos2x/430.png
deleted file mode 100644
index ef77de76..00000000
Binary files a/desktop/assets/data/graficos2x/430.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/431.png b/desktop/assets/data/graficos2x/431.png
deleted file mode 100644
index f6bcfa7f..00000000
Binary files a/desktop/assets/data/graficos2x/431.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/432.png b/desktop/assets/data/graficos2x/432.png
deleted file mode 100644
index 548caca2..00000000
Binary files a/desktop/assets/data/graficos2x/432.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/433.png b/desktop/assets/data/graficos2x/433.png
deleted file mode 100644
index 6f144bda..00000000
Binary files a/desktop/assets/data/graficos2x/433.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/434.png b/desktop/assets/data/graficos2x/434.png
deleted file mode 100644
index 23ef34c3..00000000
Binary files a/desktop/assets/data/graficos2x/434.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/435.png b/desktop/assets/data/graficos2x/435.png
deleted file mode 100644
index 85750931..00000000
Binary files a/desktop/assets/data/graficos2x/435.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/436.png b/desktop/assets/data/graficos2x/436.png
deleted file mode 100644
index a345e30e..00000000
Binary files a/desktop/assets/data/graficos2x/436.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/437.png b/desktop/assets/data/graficos2x/437.png
deleted file mode 100644
index d8f00440..00000000
Binary files a/desktop/assets/data/graficos2x/437.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/438.png b/desktop/assets/data/graficos2x/438.png
deleted file mode 100644
index e48a5521..00000000
Binary files a/desktop/assets/data/graficos2x/438.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/439.png b/desktop/assets/data/graficos2x/439.png
deleted file mode 100644
index c9f0921c..00000000
Binary files a/desktop/assets/data/graficos2x/439.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/44.png b/desktop/assets/data/graficos2x/44.png
deleted file mode 100644
index f65ad039..00000000
Binary files a/desktop/assets/data/graficos2x/44.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/440.png b/desktop/assets/data/graficos2x/440.png
deleted file mode 100644
index 24f22638..00000000
Binary files a/desktop/assets/data/graficos2x/440.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/441.png b/desktop/assets/data/graficos2x/441.png
deleted file mode 100644
index 9a1e175c..00000000
Binary files a/desktop/assets/data/graficos2x/441.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/442.png b/desktop/assets/data/graficos2x/442.png
deleted file mode 100644
index 181d9011..00000000
Binary files a/desktop/assets/data/graficos2x/442.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/443.png b/desktop/assets/data/graficos2x/443.png
deleted file mode 100644
index 47fb7de2..00000000
Binary files a/desktop/assets/data/graficos2x/443.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/444.png b/desktop/assets/data/graficos2x/444.png
deleted file mode 100644
index d9f54940..00000000
Binary files a/desktop/assets/data/graficos2x/444.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/445.png b/desktop/assets/data/graficos2x/445.png
deleted file mode 100644
index 8dcc2b1e..00000000
Binary files a/desktop/assets/data/graficos2x/445.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/446.png b/desktop/assets/data/graficos2x/446.png
deleted file mode 100644
index cfdbaa6c..00000000
Binary files a/desktop/assets/data/graficos2x/446.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/447.png b/desktop/assets/data/graficos2x/447.png
deleted file mode 100644
index 25c97436..00000000
Binary files a/desktop/assets/data/graficos2x/447.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/448.png b/desktop/assets/data/graficos2x/448.png
deleted file mode 100644
index 616bc627..00000000
Binary files a/desktop/assets/data/graficos2x/448.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/449.png b/desktop/assets/data/graficos2x/449.png
deleted file mode 100644
index db5957ec..00000000
Binary files a/desktop/assets/data/graficos2x/449.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/45.png b/desktop/assets/data/graficos2x/45.png
deleted file mode 100644
index 09f2648e..00000000
Binary files a/desktop/assets/data/graficos2x/45.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/450.png b/desktop/assets/data/graficos2x/450.png
deleted file mode 100644
index ebf700d2..00000000
Binary files a/desktop/assets/data/graficos2x/450.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/451.png b/desktop/assets/data/graficos2x/451.png
deleted file mode 100644
index 30d05714..00000000
Binary files a/desktop/assets/data/graficos2x/451.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/452.png b/desktop/assets/data/graficos2x/452.png
deleted file mode 100644
index c8515de0..00000000
Binary files a/desktop/assets/data/graficos2x/452.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/453.png b/desktop/assets/data/graficos2x/453.png
deleted file mode 100644
index 0a84462b..00000000
Binary files a/desktop/assets/data/graficos2x/453.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/454.png b/desktop/assets/data/graficos2x/454.png
deleted file mode 100644
index c79cef7f..00000000
Binary files a/desktop/assets/data/graficos2x/454.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/455.png b/desktop/assets/data/graficos2x/455.png
deleted file mode 100644
index e5e918ec..00000000
Binary files a/desktop/assets/data/graficos2x/455.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/456.png b/desktop/assets/data/graficos2x/456.png
deleted file mode 100644
index e959c09c..00000000
Binary files a/desktop/assets/data/graficos2x/456.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/457.png b/desktop/assets/data/graficos2x/457.png
deleted file mode 100644
index 16880a60..00000000
Binary files a/desktop/assets/data/graficos2x/457.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/458.png b/desktop/assets/data/graficos2x/458.png
deleted file mode 100644
index 05a56653..00000000
Binary files a/desktop/assets/data/graficos2x/458.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/459.png b/desktop/assets/data/graficos2x/459.png
deleted file mode 100644
index 59c51724..00000000
Binary files a/desktop/assets/data/graficos2x/459.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/46.png b/desktop/assets/data/graficos2x/46.png
deleted file mode 100644
index 5a9bb59d..00000000
Binary files a/desktop/assets/data/graficos2x/46.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/460.png b/desktop/assets/data/graficos2x/460.png
deleted file mode 100644
index accc3672..00000000
Binary files a/desktop/assets/data/graficos2x/460.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/461.png b/desktop/assets/data/graficos2x/461.png
deleted file mode 100644
index f21daf87..00000000
Binary files a/desktop/assets/data/graficos2x/461.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/462.png b/desktop/assets/data/graficos2x/462.png
deleted file mode 100644
index e9910332..00000000
Binary files a/desktop/assets/data/graficos2x/462.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/463.png b/desktop/assets/data/graficos2x/463.png
deleted file mode 100644
index 66bf90b0..00000000
Binary files a/desktop/assets/data/graficos2x/463.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/464.png b/desktop/assets/data/graficos2x/464.png
deleted file mode 100644
index 2b53f3d5..00000000
Binary files a/desktop/assets/data/graficos2x/464.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/465.png b/desktop/assets/data/graficos2x/465.png
deleted file mode 100644
index a2090142..00000000
Binary files a/desktop/assets/data/graficos2x/465.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/466.png b/desktop/assets/data/graficos2x/466.png
deleted file mode 100644
index 33f3cbea..00000000
Binary files a/desktop/assets/data/graficos2x/466.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/467.png b/desktop/assets/data/graficos2x/467.png
deleted file mode 100644
index ae8bd553..00000000
Binary files a/desktop/assets/data/graficos2x/467.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/468.png b/desktop/assets/data/graficos2x/468.png
deleted file mode 100644
index 398fff39..00000000
Binary files a/desktop/assets/data/graficos2x/468.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/469.png b/desktop/assets/data/graficos2x/469.png
deleted file mode 100644
index 36b52635..00000000
Binary files a/desktop/assets/data/graficos2x/469.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/47.png b/desktop/assets/data/graficos2x/47.png
deleted file mode 100644
index 2d87f7ed..00000000
Binary files a/desktop/assets/data/graficos2x/47.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/470.png b/desktop/assets/data/graficos2x/470.png
deleted file mode 100644
index 45c77a60..00000000
Binary files a/desktop/assets/data/graficos2x/470.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/471.png b/desktop/assets/data/graficos2x/471.png
deleted file mode 100644
index 327ee885..00000000
Binary files a/desktop/assets/data/graficos2x/471.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/472.png b/desktop/assets/data/graficos2x/472.png
deleted file mode 100644
index dfdbb1b1..00000000
Binary files a/desktop/assets/data/graficos2x/472.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/473.png b/desktop/assets/data/graficos2x/473.png
deleted file mode 100644
index 9a9f6288..00000000
Binary files a/desktop/assets/data/graficos2x/473.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/474.png b/desktop/assets/data/graficos2x/474.png
deleted file mode 100644
index 99701537..00000000
Binary files a/desktop/assets/data/graficos2x/474.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/475.png b/desktop/assets/data/graficos2x/475.png
deleted file mode 100644
index c60c8fd6..00000000
Binary files a/desktop/assets/data/graficos2x/475.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/476.png b/desktop/assets/data/graficos2x/476.png
deleted file mode 100644
index 776115d3..00000000
Binary files a/desktop/assets/data/graficos2x/476.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/477.png b/desktop/assets/data/graficos2x/477.png
deleted file mode 100644
index 2c43d6ce..00000000
Binary files a/desktop/assets/data/graficos2x/477.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/478.png b/desktop/assets/data/graficos2x/478.png
deleted file mode 100644
index f0a14152..00000000
Binary files a/desktop/assets/data/graficos2x/478.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/479.png b/desktop/assets/data/graficos2x/479.png
deleted file mode 100644
index 2e029bcc..00000000
Binary files a/desktop/assets/data/graficos2x/479.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/48.png b/desktop/assets/data/graficos2x/48.png
deleted file mode 100644
index a76c2864..00000000
Binary files a/desktop/assets/data/graficos2x/48.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/480.png b/desktop/assets/data/graficos2x/480.png
deleted file mode 100644
index 618757ba..00000000
Binary files a/desktop/assets/data/graficos2x/480.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/481.png b/desktop/assets/data/graficos2x/481.png
deleted file mode 100644
index 0821e6a9..00000000
Binary files a/desktop/assets/data/graficos2x/481.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/482.png b/desktop/assets/data/graficos2x/482.png
deleted file mode 100644
index 159e2834..00000000
Binary files a/desktop/assets/data/graficos2x/482.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/483.png b/desktop/assets/data/graficos2x/483.png
deleted file mode 100644
index bb2c6efc..00000000
Binary files a/desktop/assets/data/graficos2x/483.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/484.png b/desktop/assets/data/graficos2x/484.png
deleted file mode 100644
index b1863351..00000000
Binary files a/desktop/assets/data/graficos2x/484.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/485.png b/desktop/assets/data/graficos2x/485.png
deleted file mode 100644
index 55144f74..00000000
Binary files a/desktop/assets/data/graficos2x/485.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/486.png b/desktop/assets/data/graficos2x/486.png
deleted file mode 100644
index ab4e5c64..00000000
Binary files a/desktop/assets/data/graficos2x/486.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/487.png b/desktop/assets/data/graficos2x/487.png
deleted file mode 100644
index 983d0366..00000000
Binary files a/desktop/assets/data/graficos2x/487.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/488.png b/desktop/assets/data/graficos2x/488.png
deleted file mode 100644
index 46c196cb..00000000
Binary files a/desktop/assets/data/graficos2x/488.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/489.png b/desktop/assets/data/graficos2x/489.png
deleted file mode 100644
index 5e949a60..00000000
Binary files a/desktop/assets/data/graficos2x/489.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/49.png b/desktop/assets/data/graficos2x/49.png
deleted file mode 100644
index ec58d73f..00000000
Binary files a/desktop/assets/data/graficos2x/49.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/490.png b/desktop/assets/data/graficos2x/490.png
deleted file mode 100644
index 33d7feea..00000000
Binary files a/desktop/assets/data/graficos2x/490.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/491.png b/desktop/assets/data/graficos2x/491.png
deleted file mode 100644
index 606c2f13..00000000
Binary files a/desktop/assets/data/graficos2x/491.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/492.png b/desktop/assets/data/graficos2x/492.png
deleted file mode 100644
index 416c917d..00000000
Binary files a/desktop/assets/data/graficos2x/492.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/493.png b/desktop/assets/data/graficos2x/493.png
deleted file mode 100644
index 829a11f3..00000000
Binary files a/desktop/assets/data/graficos2x/493.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/494.png b/desktop/assets/data/graficos2x/494.png
deleted file mode 100644
index 9ba35176..00000000
Binary files a/desktop/assets/data/graficos2x/494.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/495.png b/desktop/assets/data/graficos2x/495.png
deleted file mode 100644
index 9b0426aa..00000000
Binary files a/desktop/assets/data/graficos2x/495.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/496.png b/desktop/assets/data/graficos2x/496.png
deleted file mode 100644
index 3a41bdab..00000000
Binary files a/desktop/assets/data/graficos2x/496.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/497.png b/desktop/assets/data/graficos2x/497.png
deleted file mode 100644
index 7a9cc655..00000000
Binary files a/desktop/assets/data/graficos2x/497.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/498.png b/desktop/assets/data/graficos2x/498.png
deleted file mode 100644
index 4a1ae81d..00000000
Binary files a/desktop/assets/data/graficos2x/498.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/499.png b/desktop/assets/data/graficos2x/499.png
deleted file mode 100644
index 55247451..00000000
Binary files a/desktop/assets/data/graficos2x/499.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5.png b/desktop/assets/data/graficos2x/5.png
deleted file mode 100644
index 92f72b6d..00000000
Binary files a/desktop/assets/data/graficos2x/5.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/50.png b/desktop/assets/data/graficos2x/50.png
deleted file mode 100644
index d5862331..00000000
Binary files a/desktop/assets/data/graficos2x/50.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/500.png b/desktop/assets/data/graficos2x/500.png
deleted file mode 100644
index 71857285..00000000
Binary files a/desktop/assets/data/graficos2x/500.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5000.png b/desktop/assets/data/graficos2x/5000.png
deleted file mode 100644
index 801a03d5..00000000
Binary files a/desktop/assets/data/graficos2x/5000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5001.png b/desktop/assets/data/graficos2x/5001.png
deleted file mode 100644
index d151225a..00000000
Binary files a/desktop/assets/data/graficos2x/5001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5002.png b/desktop/assets/data/graficos2x/5002.png
deleted file mode 100644
index b89ac4a0..00000000
Binary files a/desktop/assets/data/graficos2x/5002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5003.png b/desktop/assets/data/graficos2x/5003.png
deleted file mode 100644
index 54c6e522..00000000
Binary files a/desktop/assets/data/graficos2x/5003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5004.png b/desktop/assets/data/graficos2x/5004.png
deleted file mode 100644
index e4dc627a..00000000
Binary files a/desktop/assets/data/graficos2x/5004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5005.png b/desktop/assets/data/graficos2x/5005.png
deleted file mode 100644
index f9eee77d..00000000
Binary files a/desktop/assets/data/graficos2x/5005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5006.png b/desktop/assets/data/graficos2x/5006.png
deleted file mode 100644
index 2059bb52..00000000
Binary files a/desktop/assets/data/graficos2x/5006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5007.png b/desktop/assets/data/graficos2x/5007.png
deleted file mode 100644
index f81446c8..00000000
Binary files a/desktop/assets/data/graficos2x/5007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5008.png b/desktop/assets/data/graficos2x/5008.png
deleted file mode 100644
index 75ddef65..00000000
Binary files a/desktop/assets/data/graficos2x/5008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5009.png b/desktop/assets/data/graficos2x/5009.png
deleted file mode 100644
index e96dbaf4..00000000
Binary files a/desktop/assets/data/graficos2x/5009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/501.png b/desktop/assets/data/graficos2x/501.png
deleted file mode 100644
index f08e740d..00000000
Binary files a/desktop/assets/data/graficos2x/501.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5010.png b/desktop/assets/data/graficos2x/5010.png
deleted file mode 100644
index aa94f82a..00000000
Binary files a/desktop/assets/data/graficos2x/5010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5011.png b/desktop/assets/data/graficos2x/5011.png
deleted file mode 100644
index 3a9fa9d0..00000000
Binary files a/desktop/assets/data/graficos2x/5011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5012.png b/desktop/assets/data/graficos2x/5012.png
deleted file mode 100644
index 263f3160..00000000
Binary files a/desktop/assets/data/graficos2x/5012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5013.png b/desktop/assets/data/graficos2x/5013.png
deleted file mode 100644
index 9191f148..00000000
Binary files a/desktop/assets/data/graficos2x/5013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5014.png b/desktop/assets/data/graficos2x/5014.png
deleted file mode 100644
index 58dd10f2..00000000
Binary files a/desktop/assets/data/graficos2x/5014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5015.png b/desktop/assets/data/graficos2x/5015.png
deleted file mode 100644
index 355ccf7a..00000000
Binary files a/desktop/assets/data/graficos2x/5015.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5016.png b/desktop/assets/data/graficos2x/5016.png
deleted file mode 100644
index b2f8f897..00000000
Binary files a/desktop/assets/data/graficos2x/5016.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5017.png b/desktop/assets/data/graficos2x/5017.png
deleted file mode 100644
index a3270780..00000000
Binary files a/desktop/assets/data/graficos2x/5017.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5018.png b/desktop/assets/data/graficos2x/5018.png
deleted file mode 100644
index 8a7fc981..00000000
Binary files a/desktop/assets/data/graficos2x/5018.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5019.png b/desktop/assets/data/graficos2x/5019.png
deleted file mode 100644
index 352974dd..00000000
Binary files a/desktop/assets/data/graficos2x/5019.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/502.png b/desktop/assets/data/graficos2x/502.png
deleted file mode 100644
index ab60921b..00000000
Binary files a/desktop/assets/data/graficos2x/502.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5020.png b/desktop/assets/data/graficos2x/5020.png
deleted file mode 100644
index 70b1c36e..00000000
Binary files a/desktop/assets/data/graficos2x/5020.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5021.png b/desktop/assets/data/graficos2x/5021.png
deleted file mode 100644
index f800991c..00000000
Binary files a/desktop/assets/data/graficos2x/5021.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5022.png b/desktop/assets/data/graficos2x/5022.png
deleted file mode 100644
index b12bd110..00000000
Binary files a/desktop/assets/data/graficos2x/5022.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5023.png b/desktop/assets/data/graficos2x/5023.png
deleted file mode 100644
index 442d9eb5..00000000
Binary files a/desktop/assets/data/graficos2x/5023.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5024.png b/desktop/assets/data/graficos2x/5024.png
deleted file mode 100644
index 3bc039cd..00000000
Binary files a/desktop/assets/data/graficos2x/5024.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5025.png b/desktop/assets/data/graficos2x/5025.png
deleted file mode 100644
index 9ce47614..00000000
Binary files a/desktop/assets/data/graficos2x/5025.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5026.png b/desktop/assets/data/graficos2x/5026.png
deleted file mode 100644
index d4c0414e..00000000
Binary files a/desktop/assets/data/graficos2x/5026.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5027.png b/desktop/assets/data/graficos2x/5027.png
deleted file mode 100644
index af2a168a..00000000
Binary files a/desktop/assets/data/graficos2x/5027.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5028.png b/desktop/assets/data/graficos2x/5028.png
deleted file mode 100644
index 94a059a0..00000000
Binary files a/desktop/assets/data/graficos2x/5028.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5029.png b/desktop/assets/data/graficos2x/5029.png
deleted file mode 100644
index f85d5284..00000000
Binary files a/desktop/assets/data/graficos2x/5029.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/503.png b/desktop/assets/data/graficos2x/503.png
deleted file mode 100644
index dbca15b3..00000000
Binary files a/desktop/assets/data/graficos2x/503.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5030.png b/desktop/assets/data/graficos2x/5030.png
deleted file mode 100644
index 427dbefb..00000000
Binary files a/desktop/assets/data/graficos2x/5030.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5031.png b/desktop/assets/data/graficos2x/5031.png
deleted file mode 100644
index 3b41fca1..00000000
Binary files a/desktop/assets/data/graficos2x/5031.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5032.png b/desktop/assets/data/graficos2x/5032.png
deleted file mode 100644
index 0dfd4248..00000000
Binary files a/desktop/assets/data/graficos2x/5032.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5033.png b/desktop/assets/data/graficos2x/5033.png
deleted file mode 100644
index 75c14dd5..00000000
Binary files a/desktop/assets/data/graficos2x/5033.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5034.png b/desktop/assets/data/graficos2x/5034.png
deleted file mode 100644
index f45ebb90..00000000
Binary files a/desktop/assets/data/graficos2x/5034.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5035.png b/desktop/assets/data/graficos2x/5035.png
deleted file mode 100644
index 1faa1eef..00000000
Binary files a/desktop/assets/data/graficos2x/5035.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5036.png b/desktop/assets/data/graficos2x/5036.png
deleted file mode 100644
index aba67e3f..00000000
Binary files a/desktop/assets/data/graficos2x/5036.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5037.png b/desktop/assets/data/graficos2x/5037.png
deleted file mode 100644
index fe7f8a7f..00000000
Binary files a/desktop/assets/data/graficos2x/5037.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5038.png b/desktop/assets/data/graficos2x/5038.png
deleted file mode 100644
index e83b3eeb..00000000
Binary files a/desktop/assets/data/graficos2x/5038.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5039.png b/desktop/assets/data/graficos2x/5039.png
deleted file mode 100644
index bc25508e..00000000
Binary files a/desktop/assets/data/graficos2x/5039.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/504.png b/desktop/assets/data/graficos2x/504.png
deleted file mode 100644
index 88238511..00000000
Binary files a/desktop/assets/data/graficos2x/504.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5040.png b/desktop/assets/data/graficos2x/5040.png
deleted file mode 100644
index 99ecda3b..00000000
Binary files a/desktop/assets/data/graficos2x/5040.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/5041.png b/desktop/assets/data/graficos2x/5041.png
deleted file mode 100644
index 48ce0bf4..00000000
Binary files a/desktop/assets/data/graficos2x/5041.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/505.png b/desktop/assets/data/graficos2x/505.png
deleted file mode 100644
index cf538037..00000000
Binary files a/desktop/assets/data/graficos2x/505.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/506.png b/desktop/assets/data/graficos2x/506.png
deleted file mode 100644
index ef2dc0a9..00000000
Binary files a/desktop/assets/data/graficos2x/506.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/507.png b/desktop/assets/data/graficos2x/507.png
deleted file mode 100644
index 71b669da..00000000
Binary files a/desktop/assets/data/graficos2x/507.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/508.png b/desktop/assets/data/graficos2x/508.png
deleted file mode 100644
index 20665184..00000000
Binary files a/desktop/assets/data/graficos2x/508.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/509.png b/desktop/assets/data/graficos2x/509.png
deleted file mode 100644
index 6fde5d1d..00000000
Binary files a/desktop/assets/data/graficos2x/509.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/51.png b/desktop/assets/data/graficos2x/51.png
deleted file mode 100644
index c9077fbe..00000000
Binary files a/desktop/assets/data/graficos2x/51.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/510.png b/desktop/assets/data/graficos2x/510.png
deleted file mode 100644
index 8d01bd8f..00000000
Binary files a/desktop/assets/data/graficos2x/510.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/511.png b/desktop/assets/data/graficos2x/511.png
deleted file mode 100644
index 8f9a537b..00000000
Binary files a/desktop/assets/data/graficos2x/511.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/512.png b/desktop/assets/data/graficos2x/512.png
deleted file mode 100644
index 6474aa9e..00000000
Binary files a/desktop/assets/data/graficos2x/512.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/513.png b/desktop/assets/data/graficos2x/513.png
deleted file mode 100644
index 25ad8ab2..00000000
Binary files a/desktop/assets/data/graficos2x/513.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/514.png b/desktop/assets/data/graficos2x/514.png
deleted file mode 100644
index c9ece2da..00000000
Binary files a/desktop/assets/data/graficos2x/514.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/515.png b/desktop/assets/data/graficos2x/515.png
deleted file mode 100644
index 20288884..00000000
Binary files a/desktop/assets/data/graficos2x/515.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/516.png b/desktop/assets/data/graficos2x/516.png
deleted file mode 100644
index 3754a3bb..00000000
Binary files a/desktop/assets/data/graficos2x/516.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/517.png b/desktop/assets/data/graficos2x/517.png
deleted file mode 100644
index d4f81284..00000000
Binary files a/desktop/assets/data/graficos2x/517.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/518.png b/desktop/assets/data/graficos2x/518.png
deleted file mode 100644
index 63802e1f..00000000
Binary files a/desktop/assets/data/graficos2x/518.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/519.png b/desktop/assets/data/graficos2x/519.png
deleted file mode 100644
index 24fe5d1b..00000000
Binary files a/desktop/assets/data/graficos2x/519.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/52.png b/desktop/assets/data/graficos2x/52.png
deleted file mode 100644
index 9f27f022..00000000
Binary files a/desktop/assets/data/graficos2x/52.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/520.png b/desktop/assets/data/graficos2x/520.png
deleted file mode 100644
index 98cefefe..00000000
Binary files a/desktop/assets/data/graficos2x/520.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/521.png b/desktop/assets/data/graficos2x/521.png
deleted file mode 100644
index 96adcc9f..00000000
Binary files a/desktop/assets/data/graficos2x/521.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/522.png b/desktop/assets/data/graficos2x/522.png
deleted file mode 100644
index 28ee9ba1..00000000
Binary files a/desktop/assets/data/graficos2x/522.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/523.png b/desktop/assets/data/graficos2x/523.png
deleted file mode 100644
index f619fcf7..00000000
Binary files a/desktop/assets/data/graficos2x/523.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/524.png b/desktop/assets/data/graficos2x/524.png
deleted file mode 100644
index 7e2ad9a9..00000000
Binary files a/desktop/assets/data/graficos2x/524.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/525.png b/desktop/assets/data/graficos2x/525.png
deleted file mode 100644
index 16bf4e5d..00000000
Binary files a/desktop/assets/data/graficos2x/525.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/526.png b/desktop/assets/data/graficos2x/526.png
deleted file mode 100644
index 9fdc1f8c..00000000
Binary files a/desktop/assets/data/graficos2x/526.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/527.png b/desktop/assets/data/graficos2x/527.png
deleted file mode 100644
index 2f3a0d65..00000000
Binary files a/desktop/assets/data/graficos2x/527.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/528.png b/desktop/assets/data/graficos2x/528.png
deleted file mode 100644
index ab49d9a1..00000000
Binary files a/desktop/assets/data/graficos2x/528.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/529.png b/desktop/assets/data/graficos2x/529.png
deleted file mode 100644
index ff4749c9..00000000
Binary files a/desktop/assets/data/graficos2x/529.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/53.png b/desktop/assets/data/graficos2x/53.png
deleted file mode 100644
index a2d14e8d..00000000
Binary files a/desktop/assets/data/graficos2x/53.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/530.png b/desktop/assets/data/graficos2x/530.png
deleted file mode 100644
index 977f90e4..00000000
Binary files a/desktop/assets/data/graficos2x/530.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/531.png b/desktop/assets/data/graficos2x/531.png
deleted file mode 100644
index 820ead09..00000000
Binary files a/desktop/assets/data/graficos2x/531.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/532.png b/desktop/assets/data/graficos2x/532.png
deleted file mode 100644
index e0a35c34..00000000
Binary files a/desktop/assets/data/graficos2x/532.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/533.png b/desktop/assets/data/graficos2x/533.png
deleted file mode 100644
index 46814071..00000000
Binary files a/desktop/assets/data/graficos2x/533.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/534.png b/desktop/assets/data/graficos2x/534.png
deleted file mode 100644
index bcf9061e..00000000
Binary files a/desktop/assets/data/graficos2x/534.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/535.png b/desktop/assets/data/graficos2x/535.png
deleted file mode 100644
index 81020f5b..00000000
Binary files a/desktop/assets/data/graficos2x/535.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/536.png b/desktop/assets/data/graficos2x/536.png
deleted file mode 100644
index 3cde8b96..00000000
Binary files a/desktop/assets/data/graficos2x/536.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/537.png b/desktop/assets/data/graficos2x/537.png
deleted file mode 100644
index c310d459..00000000
Binary files a/desktop/assets/data/graficos2x/537.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/538.png b/desktop/assets/data/graficos2x/538.png
deleted file mode 100644
index b1e2750e..00000000
Binary files a/desktop/assets/data/graficos2x/538.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/539.png b/desktop/assets/data/graficos2x/539.png
deleted file mode 100644
index 65653115..00000000
Binary files a/desktop/assets/data/graficos2x/539.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/54.png b/desktop/assets/data/graficos2x/54.png
deleted file mode 100644
index d6328082..00000000
Binary files a/desktop/assets/data/graficos2x/54.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/540.png b/desktop/assets/data/graficos2x/540.png
deleted file mode 100644
index 6125b98e..00000000
Binary files a/desktop/assets/data/graficos2x/540.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/541.png b/desktop/assets/data/graficos2x/541.png
deleted file mode 100644
index 1e65ae75..00000000
Binary files a/desktop/assets/data/graficos2x/541.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/542.png b/desktop/assets/data/graficos2x/542.png
deleted file mode 100644
index ac78fb58..00000000
Binary files a/desktop/assets/data/graficos2x/542.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/543.png b/desktop/assets/data/graficos2x/543.png
deleted file mode 100644
index 51de4f65..00000000
Binary files a/desktop/assets/data/graficos2x/543.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/544.png b/desktop/assets/data/graficos2x/544.png
deleted file mode 100644
index 03ef4f52..00000000
Binary files a/desktop/assets/data/graficos2x/544.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/545.png b/desktop/assets/data/graficos2x/545.png
deleted file mode 100644
index 8408e6ee..00000000
Binary files a/desktop/assets/data/graficos2x/545.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/546.png b/desktop/assets/data/graficos2x/546.png
deleted file mode 100644
index 25670565..00000000
Binary files a/desktop/assets/data/graficos2x/546.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/547.png b/desktop/assets/data/graficos2x/547.png
deleted file mode 100644
index 53bf5c19..00000000
Binary files a/desktop/assets/data/graficos2x/547.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/548.png b/desktop/assets/data/graficos2x/548.png
deleted file mode 100644
index 800155d8..00000000
Binary files a/desktop/assets/data/graficos2x/548.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/549.png b/desktop/assets/data/graficos2x/549.png
deleted file mode 100644
index e8c765dd..00000000
Binary files a/desktop/assets/data/graficos2x/549.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/55.png b/desktop/assets/data/graficos2x/55.png
deleted file mode 100644
index 1238472c..00000000
Binary files a/desktop/assets/data/graficos2x/55.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/550.png b/desktop/assets/data/graficos2x/550.png
deleted file mode 100644
index 07adf8f4..00000000
Binary files a/desktop/assets/data/graficos2x/550.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/551.png b/desktop/assets/data/graficos2x/551.png
deleted file mode 100644
index c403f18d..00000000
Binary files a/desktop/assets/data/graficos2x/551.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/552.png b/desktop/assets/data/graficos2x/552.png
deleted file mode 100644
index 02f8a646..00000000
Binary files a/desktop/assets/data/graficos2x/552.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/553.png b/desktop/assets/data/graficos2x/553.png
deleted file mode 100644
index 1cc039ce..00000000
Binary files a/desktop/assets/data/graficos2x/553.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/554.png b/desktop/assets/data/graficos2x/554.png
deleted file mode 100644
index f1768ee3..00000000
Binary files a/desktop/assets/data/graficos2x/554.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/555.png b/desktop/assets/data/graficos2x/555.png
deleted file mode 100644
index bedd9aa5..00000000
Binary files a/desktop/assets/data/graficos2x/555.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/556.png b/desktop/assets/data/graficos2x/556.png
deleted file mode 100644
index 4c8bd008..00000000
Binary files a/desktop/assets/data/graficos2x/556.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/557.png b/desktop/assets/data/graficos2x/557.png
deleted file mode 100644
index 374e485d..00000000
Binary files a/desktop/assets/data/graficos2x/557.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/558.png b/desktop/assets/data/graficos2x/558.png
deleted file mode 100644
index aa405885..00000000
Binary files a/desktop/assets/data/graficos2x/558.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/559.png b/desktop/assets/data/graficos2x/559.png
deleted file mode 100644
index 2f2c2745..00000000
Binary files a/desktop/assets/data/graficos2x/559.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/56.png b/desktop/assets/data/graficos2x/56.png
deleted file mode 100644
index b111f17e..00000000
Binary files a/desktop/assets/data/graficos2x/56.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/560.png b/desktop/assets/data/graficos2x/560.png
deleted file mode 100644
index 47750189..00000000
Binary files a/desktop/assets/data/graficos2x/560.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/561.png b/desktop/assets/data/graficos2x/561.png
deleted file mode 100644
index d6328082..00000000
Binary files a/desktop/assets/data/graficos2x/561.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/562.png b/desktop/assets/data/graficos2x/562.png
deleted file mode 100644
index 155532a6..00000000
Binary files a/desktop/assets/data/graficos2x/562.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/563.png b/desktop/assets/data/graficos2x/563.png
deleted file mode 100644
index 2b9240f9..00000000
Binary files a/desktop/assets/data/graficos2x/563.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/564.png b/desktop/assets/data/graficos2x/564.png
deleted file mode 100644
index 0a4e0049..00000000
Binary files a/desktop/assets/data/graficos2x/564.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/565.png b/desktop/assets/data/graficos2x/565.png
deleted file mode 100644
index ed21d154..00000000
Binary files a/desktop/assets/data/graficos2x/565.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/566.png b/desktop/assets/data/graficos2x/566.png
deleted file mode 100644
index 7a83cdb9..00000000
Binary files a/desktop/assets/data/graficos2x/566.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/567.png b/desktop/assets/data/graficos2x/567.png
deleted file mode 100644
index 9a35df35..00000000
Binary files a/desktop/assets/data/graficos2x/567.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/568.png b/desktop/assets/data/graficos2x/568.png
deleted file mode 100644
index ed5a26e5..00000000
Binary files a/desktop/assets/data/graficos2x/568.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/569.png b/desktop/assets/data/graficos2x/569.png
deleted file mode 100644
index bb9c4149..00000000
Binary files a/desktop/assets/data/graficos2x/569.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/57.png b/desktop/assets/data/graficos2x/57.png
deleted file mode 100644
index 257497b1..00000000
Binary files a/desktop/assets/data/graficos2x/57.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/570.png b/desktop/assets/data/graficos2x/570.png
deleted file mode 100644
index 51bac121..00000000
Binary files a/desktop/assets/data/graficos2x/570.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/571.png b/desktop/assets/data/graficos2x/571.png
deleted file mode 100644
index c269e460..00000000
Binary files a/desktop/assets/data/graficos2x/571.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/572.png b/desktop/assets/data/graficos2x/572.png
deleted file mode 100644
index be7b7e3a..00000000
Binary files a/desktop/assets/data/graficos2x/572.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/573.png b/desktop/assets/data/graficos2x/573.png
deleted file mode 100644
index 09cc3b01..00000000
Binary files a/desktop/assets/data/graficos2x/573.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/574.png b/desktop/assets/data/graficos2x/574.png
deleted file mode 100644
index bd0e2e6b..00000000
Binary files a/desktop/assets/data/graficos2x/574.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/575.png b/desktop/assets/data/graficos2x/575.png
deleted file mode 100644
index 957f85ab..00000000
Binary files a/desktop/assets/data/graficos2x/575.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/576.png b/desktop/assets/data/graficos2x/576.png
deleted file mode 100644
index 96b13e7e..00000000
Binary files a/desktop/assets/data/graficos2x/576.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/577.png b/desktop/assets/data/graficos2x/577.png
deleted file mode 100644
index a25d07f1..00000000
Binary files a/desktop/assets/data/graficos2x/577.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/578.png b/desktop/assets/data/graficos2x/578.png
deleted file mode 100644
index 8f80e7ad..00000000
Binary files a/desktop/assets/data/graficos2x/578.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/579.png b/desktop/assets/data/graficos2x/579.png
deleted file mode 100644
index 61ff8049..00000000
Binary files a/desktop/assets/data/graficos2x/579.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/58.png b/desktop/assets/data/graficos2x/58.png
deleted file mode 100644
index 07d84770..00000000
Binary files a/desktop/assets/data/graficos2x/58.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/580.png b/desktop/assets/data/graficos2x/580.png
deleted file mode 100644
index 01208405..00000000
Binary files a/desktop/assets/data/graficos2x/580.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/581.png b/desktop/assets/data/graficos2x/581.png
deleted file mode 100644
index 808ade6d..00000000
Binary files a/desktop/assets/data/graficos2x/581.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/582.png b/desktop/assets/data/graficos2x/582.png
deleted file mode 100644
index 382fee91..00000000
Binary files a/desktop/assets/data/graficos2x/582.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/583.png b/desktop/assets/data/graficos2x/583.png
deleted file mode 100644
index 0281f95d..00000000
Binary files a/desktop/assets/data/graficos2x/583.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/584.png b/desktop/assets/data/graficos2x/584.png
deleted file mode 100644
index d0220c11..00000000
Binary files a/desktop/assets/data/graficos2x/584.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/585.png b/desktop/assets/data/graficos2x/585.png
deleted file mode 100644
index 52a889b0..00000000
Binary files a/desktop/assets/data/graficos2x/585.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/586.png b/desktop/assets/data/graficos2x/586.png
deleted file mode 100644
index aa06df6d..00000000
Binary files a/desktop/assets/data/graficos2x/586.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/587.png b/desktop/assets/data/graficos2x/587.png
deleted file mode 100644
index edc9a1ef..00000000
Binary files a/desktop/assets/data/graficos2x/587.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/588.png b/desktop/assets/data/graficos2x/588.png
deleted file mode 100644
index 884af780..00000000
Binary files a/desktop/assets/data/graficos2x/588.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/589.png b/desktop/assets/data/graficos2x/589.png
deleted file mode 100644
index 8a7f6b6d..00000000
Binary files a/desktop/assets/data/graficos2x/589.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/59.png b/desktop/assets/data/graficos2x/59.png
deleted file mode 100644
index d8177451..00000000
Binary files a/desktop/assets/data/graficos2x/59.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/590.png b/desktop/assets/data/graficos2x/590.png
deleted file mode 100644
index 9180c13b..00000000
Binary files a/desktop/assets/data/graficos2x/590.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/591.png b/desktop/assets/data/graficos2x/591.png
deleted file mode 100644
index cf5820d7..00000000
Binary files a/desktop/assets/data/graficos2x/591.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/592.png b/desktop/assets/data/graficos2x/592.png
deleted file mode 100644
index 1d77be69..00000000
Binary files a/desktop/assets/data/graficos2x/592.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/593.png b/desktop/assets/data/graficos2x/593.png
deleted file mode 100644
index 9f061cde..00000000
Binary files a/desktop/assets/data/graficos2x/593.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/594.png b/desktop/assets/data/graficos2x/594.png
deleted file mode 100644
index b4c3f5de..00000000
Binary files a/desktop/assets/data/graficos2x/594.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/595.png b/desktop/assets/data/graficos2x/595.png
deleted file mode 100644
index 1c450c66..00000000
Binary files a/desktop/assets/data/graficos2x/595.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/596.png b/desktop/assets/data/graficos2x/596.png
deleted file mode 100644
index f5329fd8..00000000
Binary files a/desktop/assets/data/graficos2x/596.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/597.png b/desktop/assets/data/graficos2x/597.png
deleted file mode 100644
index b1461cdd..00000000
Binary files a/desktop/assets/data/graficos2x/597.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/598.png b/desktop/assets/data/graficos2x/598.png
deleted file mode 100644
index 8b8df8fc..00000000
Binary files a/desktop/assets/data/graficos2x/598.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/599.png b/desktop/assets/data/graficos2x/599.png
deleted file mode 100644
index ee22a6b2..00000000
Binary files a/desktop/assets/data/graficos2x/599.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6.png b/desktop/assets/data/graficos2x/6.png
deleted file mode 100644
index df326cbd..00000000
Binary files a/desktop/assets/data/graficos2x/6.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/60.png b/desktop/assets/data/graficos2x/60.png
deleted file mode 100644
index be9a2a5b..00000000
Binary files a/desktop/assets/data/graficos2x/60.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/600.png b/desktop/assets/data/graficos2x/600.png
deleted file mode 100644
index 49552ec8..00000000
Binary files a/desktop/assets/data/graficos2x/600.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6000.png b/desktop/assets/data/graficos2x/6000.png
deleted file mode 100644
index 3eb7a331..00000000
Binary files a/desktop/assets/data/graficos2x/6000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6001.png b/desktop/assets/data/graficos2x/6001.png
deleted file mode 100644
index fb45b5e1..00000000
Binary files a/desktop/assets/data/graficos2x/6001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6002.png b/desktop/assets/data/graficos2x/6002.png
deleted file mode 100644
index 8828b35c..00000000
Binary files a/desktop/assets/data/graficos2x/6002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6003.png b/desktop/assets/data/graficos2x/6003.png
deleted file mode 100644
index 76eca2b7..00000000
Binary files a/desktop/assets/data/graficos2x/6003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6004.png b/desktop/assets/data/graficos2x/6004.png
deleted file mode 100644
index ec8f0844..00000000
Binary files a/desktop/assets/data/graficos2x/6004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6005.png b/desktop/assets/data/graficos2x/6005.png
deleted file mode 100644
index 9e6c3c48..00000000
Binary files a/desktop/assets/data/graficos2x/6005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6006.png b/desktop/assets/data/graficos2x/6006.png
deleted file mode 100644
index a2a56e5e..00000000
Binary files a/desktop/assets/data/graficos2x/6006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6007.png b/desktop/assets/data/graficos2x/6007.png
deleted file mode 100644
index 6c6526f9..00000000
Binary files a/desktop/assets/data/graficos2x/6007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6008.png b/desktop/assets/data/graficos2x/6008.png
deleted file mode 100644
index 5ca63c1a..00000000
Binary files a/desktop/assets/data/graficos2x/6008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6009.png b/desktop/assets/data/graficos2x/6009.png
deleted file mode 100644
index 39dc70cb..00000000
Binary files a/desktop/assets/data/graficos2x/6009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/601.png b/desktop/assets/data/graficos2x/601.png
deleted file mode 100644
index c14af5b0..00000000
Binary files a/desktop/assets/data/graficos2x/601.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6010.png b/desktop/assets/data/graficos2x/6010.png
deleted file mode 100644
index d404e467..00000000
Binary files a/desktop/assets/data/graficos2x/6010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6011.png b/desktop/assets/data/graficos2x/6011.png
deleted file mode 100644
index bdeb285d..00000000
Binary files a/desktop/assets/data/graficos2x/6011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6012.png b/desktop/assets/data/graficos2x/6012.png
deleted file mode 100644
index 9454e953..00000000
Binary files a/desktop/assets/data/graficos2x/6012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6013.png b/desktop/assets/data/graficos2x/6013.png
deleted file mode 100644
index 91d2bd65..00000000
Binary files a/desktop/assets/data/graficos2x/6013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6014.png b/desktop/assets/data/graficos2x/6014.png
deleted file mode 100644
index 8c296803..00000000
Binary files a/desktop/assets/data/graficos2x/6014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/602.png b/desktop/assets/data/graficos2x/602.png
deleted file mode 100644
index d1caa0a4..00000000
Binary files a/desktop/assets/data/graficos2x/602.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/603.png b/desktop/assets/data/graficos2x/603.png
deleted file mode 100644
index 31971fb2..00000000
Binary files a/desktop/assets/data/graficos2x/603.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/604.png b/desktop/assets/data/graficos2x/604.png
deleted file mode 100644
index 3805be4a..00000000
Binary files a/desktop/assets/data/graficos2x/604.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/605.png b/desktop/assets/data/graficos2x/605.png
deleted file mode 100644
index 23ec0169..00000000
Binary files a/desktop/assets/data/graficos2x/605.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/606.png b/desktop/assets/data/graficos2x/606.png
deleted file mode 100644
index ce49c942..00000000
Binary files a/desktop/assets/data/graficos2x/606.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6064.png b/desktop/assets/data/graficos2x/6064.png
deleted file mode 100644
index 24de479c..00000000
Binary files a/desktop/assets/data/graficos2x/6064.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6065.png b/desktop/assets/data/graficos2x/6065.png
deleted file mode 100644
index 9ff8dc39..00000000
Binary files a/desktop/assets/data/graficos2x/6065.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6066.png b/desktop/assets/data/graficos2x/6066.png
deleted file mode 100644
index 320a08a1..00000000
Binary files a/desktop/assets/data/graficos2x/6066.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6067.png b/desktop/assets/data/graficos2x/6067.png
deleted file mode 100644
index abea8b2d..00000000
Binary files a/desktop/assets/data/graficos2x/6067.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6068.png b/desktop/assets/data/graficos2x/6068.png
deleted file mode 100644
index d6757480..00000000
Binary files a/desktop/assets/data/graficos2x/6068.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6069.png b/desktop/assets/data/graficos2x/6069.png
deleted file mode 100644
index 8b939231..00000000
Binary files a/desktop/assets/data/graficos2x/6069.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/607.png b/desktop/assets/data/graficos2x/607.png
deleted file mode 100644
index 7947f273..00000000
Binary files a/desktop/assets/data/graficos2x/607.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6070.png b/desktop/assets/data/graficos2x/6070.png
deleted file mode 100644
index abeb0ef3..00000000
Binary files a/desktop/assets/data/graficos2x/6070.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6071.png b/desktop/assets/data/graficos2x/6071.png
deleted file mode 100644
index 36f39fcc..00000000
Binary files a/desktop/assets/data/graficos2x/6071.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6072.png b/desktop/assets/data/graficos2x/6072.png
deleted file mode 100644
index 547f29c2..00000000
Binary files a/desktop/assets/data/graficos2x/6072.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6073.png b/desktop/assets/data/graficos2x/6073.png
deleted file mode 100644
index 79321257..00000000
Binary files a/desktop/assets/data/graficos2x/6073.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6074.png b/desktop/assets/data/graficos2x/6074.png
deleted file mode 100644
index 2c9ddb3e..00000000
Binary files a/desktop/assets/data/graficos2x/6074.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6075.png b/desktop/assets/data/graficos2x/6075.png
deleted file mode 100644
index 82af21fc..00000000
Binary files a/desktop/assets/data/graficos2x/6075.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6076.png b/desktop/assets/data/graficos2x/6076.png
deleted file mode 100644
index 06d9eead..00000000
Binary files a/desktop/assets/data/graficos2x/6076.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6077.png b/desktop/assets/data/graficos2x/6077.png
deleted file mode 100644
index b5b860f8..00000000
Binary files a/desktop/assets/data/graficos2x/6077.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6078.png b/desktop/assets/data/graficos2x/6078.png
deleted file mode 100644
index b469bcd1..00000000
Binary files a/desktop/assets/data/graficos2x/6078.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6079.png b/desktop/assets/data/graficos2x/6079.png
deleted file mode 100644
index b55a8212..00000000
Binary files a/desktop/assets/data/graficos2x/6079.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/608.png b/desktop/assets/data/graficos2x/608.png
deleted file mode 100644
index 8bf4d63b..00000000
Binary files a/desktop/assets/data/graficos2x/608.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6080.png b/desktop/assets/data/graficos2x/6080.png
deleted file mode 100644
index 4f830eb7..00000000
Binary files a/desktop/assets/data/graficos2x/6080.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6081.png b/desktop/assets/data/graficos2x/6081.png
deleted file mode 100644
index 4a153b31..00000000
Binary files a/desktop/assets/data/graficos2x/6081.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/6082.png b/desktop/assets/data/graficos2x/6082.png
deleted file mode 100644
index 7fb74c33..00000000
Binary files a/desktop/assets/data/graficos2x/6082.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/609.png b/desktop/assets/data/graficos2x/609.png
deleted file mode 100644
index 82ad8895..00000000
Binary files a/desktop/assets/data/graficos2x/609.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/61.png b/desktop/assets/data/graficos2x/61.png
deleted file mode 100644
index cbd7f9ab..00000000
Binary files a/desktop/assets/data/graficos2x/61.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/610.png b/desktop/assets/data/graficos2x/610.png
deleted file mode 100644
index 930ac4d8..00000000
Binary files a/desktop/assets/data/graficos2x/610.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/611.png b/desktop/assets/data/graficos2x/611.png
deleted file mode 100644
index c823c2fc..00000000
Binary files a/desktop/assets/data/graficos2x/611.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/612.png b/desktop/assets/data/graficos2x/612.png
deleted file mode 100644
index 269deb77..00000000
Binary files a/desktop/assets/data/graficos2x/612.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/613.png b/desktop/assets/data/graficos2x/613.png
deleted file mode 100644
index a96d301a..00000000
Binary files a/desktop/assets/data/graficos2x/613.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/614.png b/desktop/assets/data/graficos2x/614.png
deleted file mode 100644
index 3d7581be..00000000
Binary files a/desktop/assets/data/graficos2x/614.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/615.png b/desktop/assets/data/graficos2x/615.png
deleted file mode 100644
index 6d206023..00000000
Binary files a/desktop/assets/data/graficos2x/615.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/616.png b/desktop/assets/data/graficos2x/616.png
deleted file mode 100644
index c83564fa..00000000
Binary files a/desktop/assets/data/graficos2x/616.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/617.png b/desktop/assets/data/graficos2x/617.png
deleted file mode 100644
index 74ba4034..00000000
Binary files a/desktop/assets/data/graficos2x/617.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/618.png b/desktop/assets/data/graficos2x/618.png
deleted file mode 100644
index 37e6dc2d..00000000
Binary files a/desktop/assets/data/graficos2x/618.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/619.png b/desktop/assets/data/graficos2x/619.png
deleted file mode 100644
index b29a0580..00000000
Binary files a/desktop/assets/data/graficos2x/619.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/62.png b/desktop/assets/data/graficos2x/62.png
deleted file mode 100644
index ac4a2c5c..00000000
Binary files a/desktop/assets/data/graficos2x/62.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/620.png b/desktop/assets/data/graficos2x/620.png
deleted file mode 100644
index 6fc6c193..00000000
Binary files a/desktop/assets/data/graficos2x/620.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/621.png b/desktop/assets/data/graficos2x/621.png
deleted file mode 100644
index 6325b6d3..00000000
Binary files a/desktop/assets/data/graficos2x/621.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/622.png b/desktop/assets/data/graficos2x/622.png
deleted file mode 100644
index 0b624bac..00000000
Binary files a/desktop/assets/data/graficos2x/622.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/623.png b/desktop/assets/data/graficos2x/623.png
deleted file mode 100644
index e9e38dc8..00000000
Binary files a/desktop/assets/data/graficos2x/623.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/624.png b/desktop/assets/data/graficos2x/624.png
deleted file mode 100644
index 145cd93f..00000000
Binary files a/desktop/assets/data/graficos2x/624.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/625.png b/desktop/assets/data/graficos2x/625.png
deleted file mode 100644
index 0a76ef96..00000000
Binary files a/desktop/assets/data/graficos2x/625.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/626.png b/desktop/assets/data/graficos2x/626.png
deleted file mode 100644
index 85ecaea9..00000000
Binary files a/desktop/assets/data/graficos2x/626.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/627.png b/desktop/assets/data/graficos2x/627.png
deleted file mode 100644
index 5eef9e65..00000000
Binary files a/desktop/assets/data/graficos2x/627.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/628.png b/desktop/assets/data/graficos2x/628.png
deleted file mode 100644
index c2e0bc89..00000000
Binary files a/desktop/assets/data/graficos2x/628.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/629.png b/desktop/assets/data/graficos2x/629.png
deleted file mode 100644
index 6790a98f..00000000
Binary files a/desktop/assets/data/graficos2x/629.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/63.png b/desktop/assets/data/graficos2x/63.png
deleted file mode 100644
index 18b67e3b..00000000
Binary files a/desktop/assets/data/graficos2x/63.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/630.png b/desktop/assets/data/graficos2x/630.png
deleted file mode 100644
index c05d89c7..00000000
Binary files a/desktop/assets/data/graficos2x/630.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/631.png b/desktop/assets/data/graficos2x/631.png
deleted file mode 100644
index c8c257ee..00000000
Binary files a/desktop/assets/data/graficos2x/631.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/632.png b/desktop/assets/data/graficos2x/632.png
deleted file mode 100644
index 917051d1..00000000
Binary files a/desktop/assets/data/graficos2x/632.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/633.png b/desktop/assets/data/graficos2x/633.png
deleted file mode 100644
index 8ca6bc81..00000000
Binary files a/desktop/assets/data/graficos2x/633.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/634.png b/desktop/assets/data/graficos2x/634.png
deleted file mode 100644
index 6e656ea3..00000000
Binary files a/desktop/assets/data/graficos2x/634.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/635.png b/desktop/assets/data/graficos2x/635.png
deleted file mode 100644
index ba1b2218..00000000
Binary files a/desktop/assets/data/graficos2x/635.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/636.png b/desktop/assets/data/graficos2x/636.png
deleted file mode 100644
index 34e1e68f..00000000
Binary files a/desktop/assets/data/graficos2x/636.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/637.png b/desktop/assets/data/graficos2x/637.png
deleted file mode 100644
index 062742df..00000000
Binary files a/desktop/assets/data/graficos2x/637.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/638.png b/desktop/assets/data/graficos2x/638.png
deleted file mode 100644
index a6553d36..00000000
Binary files a/desktop/assets/data/graficos2x/638.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/639.png b/desktop/assets/data/graficos2x/639.png
deleted file mode 100644
index 46179236..00000000
Binary files a/desktop/assets/data/graficos2x/639.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/64.png b/desktop/assets/data/graficos2x/64.png
deleted file mode 100644
index 9ca68206..00000000
Binary files a/desktop/assets/data/graficos2x/64.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/640.png b/desktop/assets/data/graficos2x/640.png
deleted file mode 100644
index a60e051f..00000000
Binary files a/desktop/assets/data/graficos2x/640.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/641.png b/desktop/assets/data/graficos2x/641.png
deleted file mode 100644
index deab5435..00000000
Binary files a/desktop/assets/data/graficos2x/641.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/642.png b/desktop/assets/data/graficos2x/642.png
deleted file mode 100644
index d139a9b9..00000000
Binary files a/desktop/assets/data/graficos2x/642.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/643.png b/desktop/assets/data/graficos2x/643.png
deleted file mode 100644
index 48a16987..00000000
Binary files a/desktop/assets/data/graficos2x/643.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/644.png b/desktop/assets/data/graficos2x/644.png
deleted file mode 100644
index 70030962..00000000
Binary files a/desktop/assets/data/graficos2x/644.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/645.png b/desktop/assets/data/graficos2x/645.png
deleted file mode 100644
index aaee2bfc..00000000
Binary files a/desktop/assets/data/graficos2x/645.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/646.png b/desktop/assets/data/graficos2x/646.png
deleted file mode 100644
index f472c806..00000000
Binary files a/desktop/assets/data/graficos2x/646.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/647.png b/desktop/assets/data/graficos2x/647.png
deleted file mode 100644
index 723d1bef..00000000
Binary files a/desktop/assets/data/graficos2x/647.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/648.png b/desktop/assets/data/graficos2x/648.png
deleted file mode 100644
index ba3acbff..00000000
Binary files a/desktop/assets/data/graficos2x/648.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/649.png b/desktop/assets/data/graficos2x/649.png
deleted file mode 100644
index 24801e62..00000000
Binary files a/desktop/assets/data/graficos2x/649.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/65.png b/desktop/assets/data/graficos2x/65.png
deleted file mode 100644
index c207556c..00000000
Binary files a/desktop/assets/data/graficos2x/65.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/650.png b/desktop/assets/data/graficos2x/650.png
deleted file mode 100644
index 1b499446..00000000
Binary files a/desktop/assets/data/graficos2x/650.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/651.png b/desktop/assets/data/graficos2x/651.png
deleted file mode 100644
index e59ea717..00000000
Binary files a/desktop/assets/data/graficos2x/651.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/652.png b/desktop/assets/data/graficos2x/652.png
deleted file mode 100644
index 0db61afa..00000000
Binary files a/desktop/assets/data/graficos2x/652.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/653.png b/desktop/assets/data/graficos2x/653.png
deleted file mode 100644
index 1fcabd06..00000000
Binary files a/desktop/assets/data/graficos2x/653.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/654.png b/desktop/assets/data/graficos2x/654.png
deleted file mode 100644
index 601f8ecc..00000000
Binary files a/desktop/assets/data/graficos2x/654.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/655.png b/desktop/assets/data/graficos2x/655.png
deleted file mode 100644
index 12e55abc..00000000
Binary files a/desktop/assets/data/graficos2x/655.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/656.png b/desktop/assets/data/graficos2x/656.png
deleted file mode 100644
index ffd818e5..00000000
Binary files a/desktop/assets/data/graficos2x/656.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/657.png b/desktop/assets/data/graficos2x/657.png
deleted file mode 100644
index 4085d4b2..00000000
Binary files a/desktop/assets/data/graficos2x/657.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/658.png b/desktop/assets/data/graficos2x/658.png
deleted file mode 100644
index 3b0ec7b1..00000000
Binary files a/desktop/assets/data/graficos2x/658.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/659.png b/desktop/assets/data/graficos2x/659.png
deleted file mode 100644
index 532ea9d8..00000000
Binary files a/desktop/assets/data/graficos2x/659.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/66.png b/desktop/assets/data/graficos2x/66.png
deleted file mode 100644
index c390c783..00000000
Binary files a/desktop/assets/data/graficos2x/66.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/660.png b/desktop/assets/data/graficos2x/660.png
deleted file mode 100644
index 7aa8310d..00000000
Binary files a/desktop/assets/data/graficos2x/660.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/661.png b/desktop/assets/data/graficos2x/661.png
deleted file mode 100644
index 9de8cd29..00000000
Binary files a/desktop/assets/data/graficos2x/661.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/662.png b/desktop/assets/data/graficos2x/662.png
deleted file mode 100644
index 27a33a69..00000000
Binary files a/desktop/assets/data/graficos2x/662.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/663.png b/desktop/assets/data/graficos2x/663.png
deleted file mode 100644
index ab6579dc..00000000
Binary files a/desktop/assets/data/graficos2x/663.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/664.png b/desktop/assets/data/graficos2x/664.png
deleted file mode 100644
index eacb726f..00000000
Binary files a/desktop/assets/data/graficos2x/664.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/665.png b/desktop/assets/data/graficos2x/665.png
deleted file mode 100644
index 557bc1b4..00000000
Binary files a/desktop/assets/data/graficos2x/665.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/666.png b/desktop/assets/data/graficos2x/666.png
deleted file mode 100644
index ce3efcc1..00000000
Binary files a/desktop/assets/data/graficos2x/666.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/667.png b/desktop/assets/data/graficos2x/667.png
deleted file mode 100644
index 722cbbb4..00000000
Binary files a/desktop/assets/data/graficos2x/667.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/668.png b/desktop/assets/data/graficos2x/668.png
deleted file mode 100644
index 9ffff7fa..00000000
Binary files a/desktop/assets/data/graficos2x/668.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/669.png b/desktop/assets/data/graficos2x/669.png
deleted file mode 100644
index 174b632d..00000000
Binary files a/desktop/assets/data/graficos2x/669.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/67.png b/desktop/assets/data/graficos2x/67.png
deleted file mode 100644
index 0985663e..00000000
Binary files a/desktop/assets/data/graficos2x/67.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/670.png b/desktop/assets/data/graficos2x/670.png
deleted file mode 100644
index c98ba6e6..00000000
Binary files a/desktop/assets/data/graficos2x/670.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/671.png b/desktop/assets/data/graficos2x/671.png
deleted file mode 100644
index 155e7b96..00000000
Binary files a/desktop/assets/data/graficos2x/671.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/672.png b/desktop/assets/data/graficos2x/672.png
deleted file mode 100644
index cc9f732a..00000000
Binary files a/desktop/assets/data/graficos2x/672.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/673.png b/desktop/assets/data/graficos2x/673.png
deleted file mode 100644
index 875c2685..00000000
Binary files a/desktop/assets/data/graficos2x/673.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/674.png b/desktop/assets/data/graficos2x/674.png
deleted file mode 100644
index 8436b06b..00000000
Binary files a/desktop/assets/data/graficos2x/674.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/675.png b/desktop/assets/data/graficos2x/675.png
deleted file mode 100644
index 0cc280de..00000000
Binary files a/desktop/assets/data/graficos2x/675.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/676.png b/desktop/assets/data/graficos2x/676.png
deleted file mode 100644
index e69cfebf..00000000
Binary files a/desktop/assets/data/graficos2x/676.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/677.png b/desktop/assets/data/graficos2x/677.png
deleted file mode 100644
index 7435eb5c..00000000
Binary files a/desktop/assets/data/graficos2x/677.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/678.png b/desktop/assets/data/graficos2x/678.png
deleted file mode 100644
index a6306d1f..00000000
Binary files a/desktop/assets/data/graficos2x/678.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/679.png b/desktop/assets/data/graficos2x/679.png
deleted file mode 100644
index 280c5c93..00000000
Binary files a/desktop/assets/data/graficos2x/679.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/68.png b/desktop/assets/data/graficos2x/68.png
deleted file mode 100644
index eead6102..00000000
Binary files a/desktop/assets/data/graficos2x/68.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/680.png b/desktop/assets/data/graficos2x/680.png
deleted file mode 100644
index 2b3cd5c4..00000000
Binary files a/desktop/assets/data/graficos2x/680.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/681.png b/desktop/assets/data/graficos2x/681.png
deleted file mode 100644
index 45a30c84..00000000
Binary files a/desktop/assets/data/graficos2x/681.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/682.png b/desktop/assets/data/graficos2x/682.png
deleted file mode 100644
index 554ce992..00000000
Binary files a/desktop/assets/data/graficos2x/682.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/683.png b/desktop/assets/data/graficos2x/683.png
deleted file mode 100644
index 267c662f..00000000
Binary files a/desktop/assets/data/graficos2x/683.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/69.png b/desktop/assets/data/graficos2x/69.png
deleted file mode 100644
index 610dd41b..00000000
Binary files a/desktop/assets/data/graficos2x/69.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7.png b/desktop/assets/data/graficos2x/7.png
deleted file mode 100644
index 735305a7..00000000
Binary files a/desktop/assets/data/graficos2x/7.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/70.png b/desktop/assets/data/graficos2x/70.png
deleted file mode 100644
index 84a1c4cf..00000000
Binary files a/desktop/assets/data/graficos2x/70.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7000.png b/desktop/assets/data/graficos2x/7000.png
deleted file mode 100644
index e8344f6c..00000000
Binary files a/desktop/assets/data/graficos2x/7000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7001.png b/desktop/assets/data/graficos2x/7001.png
deleted file mode 100644
index 4308276c..00000000
Binary files a/desktop/assets/data/graficos2x/7001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7002.png b/desktop/assets/data/graficos2x/7002.png
deleted file mode 100644
index 74511ef3..00000000
Binary files a/desktop/assets/data/graficos2x/7002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7003.png b/desktop/assets/data/graficos2x/7003.png
deleted file mode 100644
index 9569e1f8..00000000
Binary files a/desktop/assets/data/graficos2x/7003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7004.png b/desktop/assets/data/graficos2x/7004.png
deleted file mode 100644
index fd1a659b..00000000
Binary files a/desktop/assets/data/graficos2x/7004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7005.png b/desktop/assets/data/graficos2x/7005.png
deleted file mode 100644
index 7475ae6e..00000000
Binary files a/desktop/assets/data/graficos2x/7005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7006.png b/desktop/assets/data/graficos2x/7006.png
deleted file mode 100644
index c847a2b0..00000000
Binary files a/desktop/assets/data/graficos2x/7006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7007.png b/desktop/assets/data/graficos2x/7007.png
deleted file mode 100644
index ec486ad1..00000000
Binary files a/desktop/assets/data/graficos2x/7007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7008.png b/desktop/assets/data/graficos2x/7008.png
deleted file mode 100644
index 28514394..00000000
Binary files a/desktop/assets/data/graficos2x/7008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7009.png b/desktop/assets/data/graficos2x/7009.png
deleted file mode 100644
index 6a6ac063..00000000
Binary files a/desktop/assets/data/graficos2x/7009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7010.png b/desktop/assets/data/graficos2x/7010.png
deleted file mode 100644
index 00dd817f..00000000
Binary files a/desktop/assets/data/graficos2x/7010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7011.png b/desktop/assets/data/graficos2x/7011.png
deleted file mode 100644
index 6d9f021c..00000000
Binary files a/desktop/assets/data/graficos2x/7011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7012.png b/desktop/assets/data/graficos2x/7012.png
deleted file mode 100644
index f5e5575d..00000000
Binary files a/desktop/assets/data/graficos2x/7012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7013.png b/desktop/assets/data/graficos2x/7013.png
deleted file mode 100644
index aae09f2e..00000000
Binary files a/desktop/assets/data/graficos2x/7013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7014.png b/desktop/assets/data/graficos2x/7014.png
deleted file mode 100644
index 4a202ae7..00000000
Binary files a/desktop/assets/data/graficos2x/7014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7015.png b/desktop/assets/data/graficos2x/7015.png
deleted file mode 100644
index a76975c4..00000000
Binary files a/desktop/assets/data/graficos2x/7015.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7016.png b/desktop/assets/data/graficos2x/7016.png
deleted file mode 100644
index 66f8af41..00000000
Binary files a/desktop/assets/data/graficos2x/7016.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7017.png b/desktop/assets/data/graficos2x/7017.png
deleted file mode 100644
index 9a653902..00000000
Binary files a/desktop/assets/data/graficos2x/7017.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7018.png b/desktop/assets/data/graficos2x/7018.png
deleted file mode 100644
index cd405232..00000000
Binary files a/desktop/assets/data/graficos2x/7018.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7019.png b/desktop/assets/data/graficos2x/7019.png
deleted file mode 100644
index d121a245..00000000
Binary files a/desktop/assets/data/graficos2x/7019.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7020.png b/desktop/assets/data/graficos2x/7020.png
deleted file mode 100644
index 7f4e5e87..00000000
Binary files a/desktop/assets/data/graficos2x/7020.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7021.png b/desktop/assets/data/graficos2x/7021.png
deleted file mode 100644
index fa6962c8..00000000
Binary files a/desktop/assets/data/graficos2x/7021.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7022.png b/desktop/assets/data/graficos2x/7022.png
deleted file mode 100644
index d1d3852d..00000000
Binary files a/desktop/assets/data/graficos2x/7022.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7023.png b/desktop/assets/data/graficos2x/7023.png
deleted file mode 100644
index 81493a4c..00000000
Binary files a/desktop/assets/data/graficos2x/7023.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7024.png b/desktop/assets/data/graficos2x/7024.png
deleted file mode 100644
index 02432f6f..00000000
Binary files a/desktop/assets/data/graficos2x/7024.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7025.png b/desktop/assets/data/graficos2x/7025.png
deleted file mode 100644
index a7b71e10..00000000
Binary files a/desktop/assets/data/graficos2x/7025.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7026.png b/desktop/assets/data/graficos2x/7026.png
deleted file mode 100644
index f1b543a9..00000000
Binary files a/desktop/assets/data/graficos2x/7026.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7027.png b/desktop/assets/data/graficos2x/7027.png
deleted file mode 100644
index aac1aaf5..00000000
Binary files a/desktop/assets/data/graficos2x/7027.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7028.png b/desktop/assets/data/graficos2x/7028.png
deleted file mode 100644
index 6fe7b591..00000000
Binary files a/desktop/assets/data/graficos2x/7028.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7029.png b/desktop/assets/data/graficos2x/7029.png
deleted file mode 100644
index 23044886..00000000
Binary files a/desktop/assets/data/graficos2x/7029.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7030.png b/desktop/assets/data/graficos2x/7030.png
deleted file mode 100644
index a9561ce3..00000000
Binary files a/desktop/assets/data/graficos2x/7030.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7031.png b/desktop/assets/data/graficos2x/7031.png
deleted file mode 100644
index bf80e00c..00000000
Binary files a/desktop/assets/data/graficos2x/7031.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7032.png b/desktop/assets/data/graficos2x/7032.png
deleted file mode 100644
index cdc2290c..00000000
Binary files a/desktop/assets/data/graficos2x/7032.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7033.png b/desktop/assets/data/graficos2x/7033.png
deleted file mode 100644
index e0cc2002..00000000
Binary files a/desktop/assets/data/graficos2x/7033.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7034.png b/desktop/assets/data/graficos2x/7034.png
deleted file mode 100644
index 96aed442..00000000
Binary files a/desktop/assets/data/graficos2x/7034.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7035.png b/desktop/assets/data/graficos2x/7035.png
deleted file mode 100644
index 1185e3eb..00000000
Binary files a/desktop/assets/data/graficos2x/7035.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7036.png b/desktop/assets/data/graficos2x/7036.png
deleted file mode 100644
index 017241cb..00000000
Binary files a/desktop/assets/data/graficos2x/7036.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7037.png b/desktop/assets/data/graficos2x/7037.png
deleted file mode 100644
index d26db7a3..00000000
Binary files a/desktop/assets/data/graficos2x/7037.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7038.png b/desktop/assets/data/graficos2x/7038.png
deleted file mode 100644
index 593d58c4..00000000
Binary files a/desktop/assets/data/graficos2x/7038.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7039.png b/desktop/assets/data/graficos2x/7039.png
deleted file mode 100644
index fb1c8faf..00000000
Binary files a/desktop/assets/data/graficos2x/7039.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7040.png b/desktop/assets/data/graficos2x/7040.png
deleted file mode 100644
index b0173e38..00000000
Binary files a/desktop/assets/data/graficos2x/7040.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7041.png b/desktop/assets/data/graficos2x/7041.png
deleted file mode 100644
index de0abfeb..00000000
Binary files a/desktop/assets/data/graficos2x/7041.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7042.png b/desktop/assets/data/graficos2x/7042.png
deleted file mode 100644
index 2ffbd46c..00000000
Binary files a/desktop/assets/data/graficos2x/7042.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7043.png b/desktop/assets/data/graficos2x/7043.png
deleted file mode 100644
index cff0559b..00000000
Binary files a/desktop/assets/data/graficos2x/7043.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7044.png b/desktop/assets/data/graficos2x/7044.png
deleted file mode 100644
index a6d42b7c..00000000
Binary files a/desktop/assets/data/graficos2x/7044.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7045.png b/desktop/assets/data/graficos2x/7045.png
deleted file mode 100644
index 33435156..00000000
Binary files a/desktop/assets/data/graficos2x/7045.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7046.png b/desktop/assets/data/graficos2x/7046.png
deleted file mode 100644
index be392a4b..00000000
Binary files a/desktop/assets/data/graficos2x/7046.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7047.png b/desktop/assets/data/graficos2x/7047.png
deleted file mode 100644
index 4a758d49..00000000
Binary files a/desktop/assets/data/graficos2x/7047.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7048.png b/desktop/assets/data/graficos2x/7048.png
deleted file mode 100644
index f985fb2e..00000000
Binary files a/desktop/assets/data/graficos2x/7048.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7049.png b/desktop/assets/data/graficos2x/7049.png
deleted file mode 100644
index 9993e73a..00000000
Binary files a/desktop/assets/data/graficos2x/7049.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7050.png b/desktop/assets/data/graficos2x/7050.png
deleted file mode 100644
index 86248657..00000000
Binary files a/desktop/assets/data/graficos2x/7050.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7051.png b/desktop/assets/data/graficos2x/7051.png
deleted file mode 100644
index 6c0aa0da..00000000
Binary files a/desktop/assets/data/graficos2x/7051.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7052.png b/desktop/assets/data/graficos2x/7052.png
deleted file mode 100644
index c100b452..00000000
Binary files a/desktop/assets/data/graficos2x/7052.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7053.png b/desktop/assets/data/graficos2x/7053.png
deleted file mode 100644
index dc6e009b..00000000
Binary files a/desktop/assets/data/graficos2x/7053.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7054.png b/desktop/assets/data/graficos2x/7054.png
deleted file mode 100644
index 62e99974..00000000
Binary files a/desktop/assets/data/graficos2x/7054.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7055.png b/desktop/assets/data/graficos2x/7055.png
deleted file mode 100644
index f9a82710..00000000
Binary files a/desktop/assets/data/graficos2x/7055.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7056.png b/desktop/assets/data/graficos2x/7056.png
deleted file mode 100644
index 62bac76a..00000000
Binary files a/desktop/assets/data/graficos2x/7056.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7057.png b/desktop/assets/data/graficos2x/7057.png
deleted file mode 100644
index 601e8c51..00000000
Binary files a/desktop/assets/data/graficos2x/7057.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7058.png b/desktop/assets/data/graficos2x/7058.png
deleted file mode 100644
index 598f862b..00000000
Binary files a/desktop/assets/data/graficos2x/7058.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7059.png b/desktop/assets/data/graficos2x/7059.png
deleted file mode 100644
index 2c702acf..00000000
Binary files a/desktop/assets/data/graficos2x/7059.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7060.png b/desktop/assets/data/graficos2x/7060.png
deleted file mode 100644
index d3152730..00000000
Binary files a/desktop/assets/data/graficos2x/7060.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7061.png b/desktop/assets/data/graficos2x/7061.png
deleted file mode 100644
index 10ec1817..00000000
Binary files a/desktop/assets/data/graficos2x/7061.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7062.png b/desktop/assets/data/graficos2x/7062.png
deleted file mode 100644
index f8c8c695..00000000
Binary files a/desktop/assets/data/graficos2x/7062.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7063.png b/desktop/assets/data/graficos2x/7063.png
deleted file mode 100644
index 44f8f645..00000000
Binary files a/desktop/assets/data/graficos2x/7063.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7064.png b/desktop/assets/data/graficos2x/7064.png
deleted file mode 100644
index f1615740..00000000
Binary files a/desktop/assets/data/graficos2x/7064.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7065.png b/desktop/assets/data/graficos2x/7065.png
deleted file mode 100644
index 9c3d701d..00000000
Binary files a/desktop/assets/data/graficos2x/7065.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7066.png b/desktop/assets/data/graficos2x/7066.png
deleted file mode 100644
index cba14c44..00000000
Binary files a/desktop/assets/data/graficos2x/7066.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7067.png b/desktop/assets/data/graficos2x/7067.png
deleted file mode 100644
index c7a8f826..00000000
Binary files a/desktop/assets/data/graficos2x/7067.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7068.png b/desktop/assets/data/graficos2x/7068.png
deleted file mode 100644
index 199621db..00000000
Binary files a/desktop/assets/data/graficos2x/7068.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7069.png b/desktop/assets/data/graficos2x/7069.png
deleted file mode 100644
index 25c41be1..00000000
Binary files a/desktop/assets/data/graficos2x/7069.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7070.png b/desktop/assets/data/graficos2x/7070.png
deleted file mode 100644
index 61386ffa..00000000
Binary files a/desktop/assets/data/graficos2x/7070.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7071.png b/desktop/assets/data/graficos2x/7071.png
deleted file mode 100644
index 3f574a26..00000000
Binary files a/desktop/assets/data/graficos2x/7071.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7072.png b/desktop/assets/data/graficos2x/7072.png
deleted file mode 100644
index b9edfb25..00000000
Binary files a/desktop/assets/data/graficos2x/7072.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7073.png b/desktop/assets/data/graficos2x/7073.png
deleted file mode 100644
index 1dc731bc..00000000
Binary files a/desktop/assets/data/graficos2x/7073.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7074.png b/desktop/assets/data/graficos2x/7074.png
deleted file mode 100644
index 0a9f36b8..00000000
Binary files a/desktop/assets/data/graficos2x/7074.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7075.png b/desktop/assets/data/graficos2x/7075.png
deleted file mode 100644
index 9b45b24e..00000000
Binary files a/desktop/assets/data/graficos2x/7075.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7076.png b/desktop/assets/data/graficos2x/7076.png
deleted file mode 100644
index c0290d84..00000000
Binary files a/desktop/assets/data/graficos2x/7076.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/7077.png b/desktop/assets/data/graficos2x/7077.png
deleted file mode 100644
index decadef9..00000000
Binary files a/desktop/assets/data/graficos2x/7077.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/71.png b/desktop/assets/data/graficos2x/71.png
deleted file mode 100644
index 4a2b3c31..00000000
Binary files a/desktop/assets/data/graficos2x/71.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/72.png b/desktop/assets/data/graficos2x/72.png
deleted file mode 100644
index 051f4a7c..00000000
Binary files a/desktop/assets/data/graficos2x/72.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/73.png b/desktop/assets/data/graficos2x/73.png
deleted file mode 100644
index 3daacc48..00000000
Binary files a/desktop/assets/data/graficos2x/73.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/74.png b/desktop/assets/data/graficos2x/74.png
deleted file mode 100644
index c2ebf1df..00000000
Binary files a/desktop/assets/data/graficos2x/74.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/75.png b/desktop/assets/data/graficos2x/75.png
deleted file mode 100644
index 3dbab525..00000000
Binary files a/desktop/assets/data/graficos2x/75.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/76.png b/desktop/assets/data/graficos2x/76.png
deleted file mode 100644
index 885d169c..00000000
Binary files a/desktop/assets/data/graficos2x/76.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/77.png b/desktop/assets/data/graficos2x/77.png
deleted file mode 100644
index 24cdced9..00000000
Binary files a/desktop/assets/data/graficos2x/77.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/78.png b/desktop/assets/data/graficos2x/78.png
deleted file mode 100644
index aeddb688..00000000
Binary files a/desktop/assets/data/graficos2x/78.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/79.png b/desktop/assets/data/graficos2x/79.png
deleted file mode 100644
index 4ad3a878..00000000
Binary files a/desktop/assets/data/graficos2x/79.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8.png b/desktop/assets/data/graficos2x/8.png
deleted file mode 100644
index 5297de63..00000000
Binary files a/desktop/assets/data/graficos2x/8.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/80.png b/desktop/assets/data/graficos2x/80.png
deleted file mode 100644
index c0afd219..00000000
Binary files a/desktop/assets/data/graficos2x/80.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8000.png b/desktop/assets/data/graficos2x/8000.png
deleted file mode 100644
index 0aa578d1..00000000
Binary files a/desktop/assets/data/graficos2x/8000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8001.png b/desktop/assets/data/graficos2x/8001.png
deleted file mode 100644
index cb07537a..00000000
Binary files a/desktop/assets/data/graficos2x/8001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8002.png b/desktop/assets/data/graficos2x/8002.png
deleted file mode 100644
index 81e51d57..00000000
Binary files a/desktop/assets/data/graficos2x/8002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8003.png b/desktop/assets/data/graficos2x/8003.png
deleted file mode 100644
index ce0909b7..00000000
Binary files a/desktop/assets/data/graficos2x/8003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8004.png b/desktop/assets/data/graficos2x/8004.png
deleted file mode 100644
index 056aec56..00000000
Binary files a/desktop/assets/data/graficos2x/8004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8005.png b/desktop/assets/data/graficos2x/8005.png
deleted file mode 100644
index af36528f..00000000
Binary files a/desktop/assets/data/graficos2x/8005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8006.png b/desktop/assets/data/graficos2x/8006.png
deleted file mode 100644
index ad433cbf..00000000
Binary files a/desktop/assets/data/graficos2x/8006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8007.png b/desktop/assets/data/graficos2x/8007.png
deleted file mode 100644
index c92686b1..00000000
Binary files a/desktop/assets/data/graficos2x/8007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8008.png b/desktop/assets/data/graficos2x/8008.png
deleted file mode 100644
index 5fc93906..00000000
Binary files a/desktop/assets/data/graficos2x/8008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8009.png b/desktop/assets/data/graficos2x/8009.png
deleted file mode 100644
index 471eb7ad..00000000
Binary files a/desktop/assets/data/graficos2x/8009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8010.png b/desktop/assets/data/graficos2x/8010.png
deleted file mode 100644
index 7a67dd7e..00000000
Binary files a/desktop/assets/data/graficos2x/8010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8011.png b/desktop/assets/data/graficos2x/8011.png
deleted file mode 100644
index 9427ce41..00000000
Binary files a/desktop/assets/data/graficos2x/8011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8012.png b/desktop/assets/data/graficos2x/8012.png
deleted file mode 100644
index f8bc8afb..00000000
Binary files a/desktop/assets/data/graficos2x/8012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8013.png b/desktop/assets/data/graficos2x/8013.png
deleted file mode 100644
index e634004c..00000000
Binary files a/desktop/assets/data/graficos2x/8013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8014.png b/desktop/assets/data/graficos2x/8014.png
deleted file mode 100644
index a601ab94..00000000
Binary files a/desktop/assets/data/graficos2x/8014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8015.png b/desktop/assets/data/graficos2x/8015.png
deleted file mode 100644
index 2f4c055c..00000000
Binary files a/desktop/assets/data/graficos2x/8015.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8016.png b/desktop/assets/data/graficos2x/8016.png
deleted file mode 100644
index 1d7fcf90..00000000
Binary files a/desktop/assets/data/graficos2x/8016.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8017.png b/desktop/assets/data/graficos2x/8017.png
deleted file mode 100644
index 5bf79be6..00000000
Binary files a/desktop/assets/data/graficos2x/8017.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8018.png b/desktop/assets/data/graficos2x/8018.png
deleted file mode 100644
index 0a4bca3c..00000000
Binary files a/desktop/assets/data/graficos2x/8018.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8019.png b/desktop/assets/data/graficos2x/8019.png
deleted file mode 100644
index 9a076476..00000000
Binary files a/desktop/assets/data/graficos2x/8019.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8020.png b/desktop/assets/data/graficos2x/8020.png
deleted file mode 100644
index 51486af8..00000000
Binary files a/desktop/assets/data/graficos2x/8020.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8021.png b/desktop/assets/data/graficos2x/8021.png
deleted file mode 100644
index 8d9115c2..00000000
Binary files a/desktop/assets/data/graficos2x/8021.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8022.png b/desktop/assets/data/graficos2x/8022.png
deleted file mode 100644
index f131231f..00000000
Binary files a/desktop/assets/data/graficos2x/8022.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8023.png b/desktop/assets/data/graficos2x/8023.png
deleted file mode 100644
index 6e30d91d..00000000
Binary files a/desktop/assets/data/graficos2x/8023.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8024.png b/desktop/assets/data/graficos2x/8024.png
deleted file mode 100644
index 65b79372..00000000
Binary files a/desktop/assets/data/graficos2x/8024.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8025.png b/desktop/assets/data/graficos2x/8025.png
deleted file mode 100644
index a2245cc3..00000000
Binary files a/desktop/assets/data/graficos2x/8025.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8026.png b/desktop/assets/data/graficos2x/8026.png
deleted file mode 100644
index 37171e02..00000000
Binary files a/desktop/assets/data/graficos2x/8026.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8027.png b/desktop/assets/data/graficos2x/8027.png
deleted file mode 100644
index 600d81db..00000000
Binary files a/desktop/assets/data/graficos2x/8027.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8028.png b/desktop/assets/data/graficos2x/8028.png
deleted file mode 100644
index 6122f254..00000000
Binary files a/desktop/assets/data/graficos2x/8028.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8029.png b/desktop/assets/data/graficos2x/8029.png
deleted file mode 100644
index f881a456..00000000
Binary files a/desktop/assets/data/graficos2x/8029.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8030.png b/desktop/assets/data/graficos2x/8030.png
deleted file mode 100644
index 7be31438..00000000
Binary files a/desktop/assets/data/graficos2x/8030.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8031.png b/desktop/assets/data/graficos2x/8031.png
deleted file mode 100644
index 847f762a..00000000
Binary files a/desktop/assets/data/graficos2x/8031.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8032.png b/desktop/assets/data/graficos2x/8032.png
deleted file mode 100644
index 165c0e15..00000000
Binary files a/desktop/assets/data/graficos2x/8032.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8033.png b/desktop/assets/data/graficos2x/8033.png
deleted file mode 100644
index 19af5815..00000000
Binary files a/desktop/assets/data/graficos2x/8033.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8034.png b/desktop/assets/data/graficos2x/8034.png
deleted file mode 100644
index 02343f52..00000000
Binary files a/desktop/assets/data/graficos2x/8034.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8035.png b/desktop/assets/data/graficos2x/8035.png
deleted file mode 100644
index ddc8ee87..00000000
Binary files a/desktop/assets/data/graficos2x/8035.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8036.png b/desktop/assets/data/graficos2x/8036.png
deleted file mode 100644
index 430d9480..00000000
Binary files a/desktop/assets/data/graficos2x/8036.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8037.png b/desktop/assets/data/graficos2x/8037.png
deleted file mode 100644
index ec6af0e6..00000000
Binary files a/desktop/assets/data/graficos2x/8037.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8038.png b/desktop/assets/data/graficos2x/8038.png
deleted file mode 100644
index 3488fb00..00000000
Binary files a/desktop/assets/data/graficos2x/8038.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8039.png b/desktop/assets/data/graficos2x/8039.png
deleted file mode 100644
index afc93fe0..00000000
Binary files a/desktop/assets/data/graficos2x/8039.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8040.png b/desktop/assets/data/graficos2x/8040.png
deleted file mode 100644
index bf6e3ca7..00000000
Binary files a/desktop/assets/data/graficos2x/8040.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8041.png b/desktop/assets/data/graficos2x/8041.png
deleted file mode 100644
index cf0503fd..00000000
Binary files a/desktop/assets/data/graficos2x/8041.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8042.png b/desktop/assets/data/graficos2x/8042.png
deleted file mode 100644
index 6e9f7618..00000000
Binary files a/desktop/assets/data/graficos2x/8042.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8043.png b/desktop/assets/data/graficos2x/8043.png
deleted file mode 100644
index f309737e..00000000
Binary files a/desktop/assets/data/graficos2x/8043.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8044.png b/desktop/assets/data/graficos2x/8044.png
deleted file mode 100644
index afc34e34..00000000
Binary files a/desktop/assets/data/graficos2x/8044.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8045.png b/desktop/assets/data/graficos2x/8045.png
deleted file mode 100644
index 47414c4c..00000000
Binary files a/desktop/assets/data/graficos2x/8045.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8046.png b/desktop/assets/data/graficos2x/8046.png
deleted file mode 100644
index ccbd8fb7..00000000
Binary files a/desktop/assets/data/graficos2x/8046.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8047.png b/desktop/assets/data/graficos2x/8047.png
deleted file mode 100644
index ef833279..00000000
Binary files a/desktop/assets/data/graficos2x/8047.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8048.png b/desktop/assets/data/graficos2x/8048.png
deleted file mode 100644
index a990d153..00000000
Binary files a/desktop/assets/data/graficos2x/8048.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8049.png b/desktop/assets/data/graficos2x/8049.png
deleted file mode 100644
index e93d838b..00000000
Binary files a/desktop/assets/data/graficos2x/8049.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8050.png b/desktop/assets/data/graficos2x/8050.png
deleted file mode 100644
index a9a33489..00000000
Binary files a/desktop/assets/data/graficos2x/8050.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8051.png b/desktop/assets/data/graficos2x/8051.png
deleted file mode 100644
index 7053feaa..00000000
Binary files a/desktop/assets/data/graficos2x/8051.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8052.png b/desktop/assets/data/graficos2x/8052.png
deleted file mode 100644
index 25aa9334..00000000
Binary files a/desktop/assets/data/graficos2x/8052.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8053.png b/desktop/assets/data/graficos2x/8053.png
deleted file mode 100644
index 7238833f..00000000
Binary files a/desktop/assets/data/graficos2x/8053.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8054.png b/desktop/assets/data/graficos2x/8054.png
deleted file mode 100644
index e1be5879..00000000
Binary files a/desktop/assets/data/graficos2x/8054.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8055.png b/desktop/assets/data/graficos2x/8055.png
deleted file mode 100644
index 7c819bab..00000000
Binary files a/desktop/assets/data/graficos2x/8055.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8056.png b/desktop/assets/data/graficos2x/8056.png
deleted file mode 100644
index 1147ee60..00000000
Binary files a/desktop/assets/data/graficos2x/8056.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8057.png b/desktop/assets/data/graficos2x/8057.png
deleted file mode 100644
index a9e3b098..00000000
Binary files a/desktop/assets/data/graficos2x/8057.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8058.png b/desktop/assets/data/graficos2x/8058.png
deleted file mode 100644
index 38782899..00000000
Binary files a/desktop/assets/data/graficos2x/8058.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8059.png b/desktop/assets/data/graficos2x/8059.png
deleted file mode 100644
index 9d55eb04..00000000
Binary files a/desktop/assets/data/graficos2x/8059.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8060.png b/desktop/assets/data/graficos2x/8060.png
deleted file mode 100644
index a0440a03..00000000
Binary files a/desktop/assets/data/graficos2x/8060.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8061.png b/desktop/assets/data/graficos2x/8061.png
deleted file mode 100644
index dbc381c4..00000000
Binary files a/desktop/assets/data/graficos2x/8061.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8062.png b/desktop/assets/data/graficos2x/8062.png
deleted file mode 100644
index d2972eb6..00000000
Binary files a/desktop/assets/data/graficos2x/8062.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8063.png b/desktop/assets/data/graficos2x/8063.png
deleted file mode 100644
index 9fcd530e..00000000
Binary files a/desktop/assets/data/graficos2x/8063.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8064.png b/desktop/assets/data/graficos2x/8064.png
deleted file mode 100644
index 9fcd530e..00000000
Binary files a/desktop/assets/data/graficos2x/8064.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8065.png b/desktop/assets/data/graficos2x/8065.png
deleted file mode 100644
index 3a20b83c..00000000
Binary files a/desktop/assets/data/graficos2x/8065.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8066.png b/desktop/assets/data/graficos2x/8066.png
deleted file mode 100644
index fd710d77..00000000
Binary files a/desktop/assets/data/graficos2x/8066.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8067.png b/desktop/assets/data/graficos2x/8067.png
deleted file mode 100644
index 424fc676..00000000
Binary files a/desktop/assets/data/graficos2x/8067.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8068.png b/desktop/assets/data/graficos2x/8068.png
deleted file mode 100644
index 8a6a6f14..00000000
Binary files a/desktop/assets/data/graficos2x/8068.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8069.png b/desktop/assets/data/graficos2x/8069.png
deleted file mode 100644
index d27f2147..00000000
Binary files a/desktop/assets/data/graficos2x/8069.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8070.png b/desktop/assets/data/graficos2x/8070.png
deleted file mode 100644
index 42b9ea4e..00000000
Binary files a/desktop/assets/data/graficos2x/8070.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8071.png b/desktop/assets/data/graficos2x/8071.png
deleted file mode 100644
index b0298eb1..00000000
Binary files a/desktop/assets/data/graficos2x/8071.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8072.png b/desktop/assets/data/graficos2x/8072.png
deleted file mode 100644
index 1a3a66a8..00000000
Binary files a/desktop/assets/data/graficos2x/8072.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8073.png b/desktop/assets/data/graficos2x/8073.png
deleted file mode 100644
index 28c23f6d..00000000
Binary files a/desktop/assets/data/graficos2x/8073.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8074.png b/desktop/assets/data/graficos2x/8074.png
deleted file mode 100644
index 75180211..00000000
Binary files a/desktop/assets/data/graficos2x/8074.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8075.png b/desktop/assets/data/graficos2x/8075.png
deleted file mode 100644
index 273da8f1..00000000
Binary files a/desktop/assets/data/graficos2x/8075.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8076.png b/desktop/assets/data/graficos2x/8076.png
deleted file mode 100644
index f65f25ff..00000000
Binary files a/desktop/assets/data/graficos2x/8076.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8077.png b/desktop/assets/data/graficos2x/8077.png
deleted file mode 100644
index b6aec4fc..00000000
Binary files a/desktop/assets/data/graficos2x/8077.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8078.png b/desktop/assets/data/graficos2x/8078.png
deleted file mode 100644
index 712ff5c0..00000000
Binary files a/desktop/assets/data/graficos2x/8078.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8079.png b/desktop/assets/data/graficos2x/8079.png
deleted file mode 100644
index afcf0f7a..00000000
Binary files a/desktop/assets/data/graficos2x/8079.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8080.png b/desktop/assets/data/graficos2x/8080.png
deleted file mode 100644
index c65c1a13..00000000
Binary files a/desktop/assets/data/graficos2x/8080.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8081.png b/desktop/assets/data/graficos2x/8081.png
deleted file mode 100644
index 58bd5f90..00000000
Binary files a/desktop/assets/data/graficos2x/8081.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8082.png b/desktop/assets/data/graficos2x/8082.png
deleted file mode 100644
index e2377931..00000000
Binary files a/desktop/assets/data/graficos2x/8082.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8083.png b/desktop/assets/data/graficos2x/8083.png
deleted file mode 100644
index 62734e12..00000000
Binary files a/desktop/assets/data/graficos2x/8083.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8084.png b/desktop/assets/data/graficos2x/8084.png
deleted file mode 100644
index dbacd891..00000000
Binary files a/desktop/assets/data/graficos2x/8084.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8085.png b/desktop/assets/data/graficos2x/8085.png
deleted file mode 100644
index 84156ce7..00000000
Binary files a/desktop/assets/data/graficos2x/8085.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8086.png b/desktop/assets/data/graficos2x/8086.png
deleted file mode 100644
index a7ec11bd..00000000
Binary files a/desktop/assets/data/graficos2x/8086.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8087.png b/desktop/assets/data/graficos2x/8087.png
deleted file mode 100644
index 9fe61a79..00000000
Binary files a/desktop/assets/data/graficos2x/8087.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8088.png b/desktop/assets/data/graficos2x/8088.png
deleted file mode 100644
index 7aacc58d..00000000
Binary files a/desktop/assets/data/graficos2x/8088.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8089.png b/desktop/assets/data/graficos2x/8089.png
deleted file mode 100644
index 22c49b5a..00000000
Binary files a/desktop/assets/data/graficos2x/8089.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8090.png b/desktop/assets/data/graficos2x/8090.png
deleted file mode 100644
index c09bf372..00000000
Binary files a/desktop/assets/data/graficos2x/8090.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8091.png b/desktop/assets/data/graficos2x/8091.png
deleted file mode 100644
index 66320e91..00000000
Binary files a/desktop/assets/data/graficos2x/8091.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8092.png b/desktop/assets/data/graficos2x/8092.png
deleted file mode 100644
index efef6fc9..00000000
Binary files a/desktop/assets/data/graficos2x/8092.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8093.png b/desktop/assets/data/graficos2x/8093.png
deleted file mode 100644
index 4b7d7818..00000000
Binary files a/desktop/assets/data/graficos2x/8093.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8094.png b/desktop/assets/data/graficos2x/8094.png
deleted file mode 100644
index fbdc6287..00000000
Binary files a/desktop/assets/data/graficos2x/8094.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8095.png b/desktop/assets/data/graficos2x/8095.png
deleted file mode 100644
index 3da0227b..00000000
Binary files a/desktop/assets/data/graficos2x/8095.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8096.png b/desktop/assets/data/graficos2x/8096.png
deleted file mode 100644
index 12bb43ff..00000000
Binary files a/desktop/assets/data/graficos2x/8096.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8097.png b/desktop/assets/data/graficos2x/8097.png
deleted file mode 100644
index 53e5892d..00000000
Binary files a/desktop/assets/data/graficos2x/8097.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8098.png b/desktop/assets/data/graficos2x/8098.png
deleted file mode 100644
index 48018795..00000000
Binary files a/desktop/assets/data/graficos2x/8098.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8099.png b/desktop/assets/data/graficos2x/8099.png
deleted file mode 100644
index 54f02e36..00000000
Binary files a/desktop/assets/data/graficos2x/8099.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/81.png b/desktop/assets/data/graficos2x/81.png
deleted file mode 100644
index e867874a..00000000
Binary files a/desktop/assets/data/graficos2x/81.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8100.png b/desktop/assets/data/graficos2x/8100.png
deleted file mode 100644
index 9fec6071..00000000
Binary files a/desktop/assets/data/graficos2x/8100.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8101.png b/desktop/assets/data/graficos2x/8101.png
deleted file mode 100644
index 20c7a818..00000000
Binary files a/desktop/assets/data/graficos2x/8101.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8102.png b/desktop/assets/data/graficos2x/8102.png
deleted file mode 100644
index 794d9db8..00000000
Binary files a/desktop/assets/data/graficos2x/8102.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8103.png b/desktop/assets/data/graficos2x/8103.png
deleted file mode 100644
index 0f256fa1..00000000
Binary files a/desktop/assets/data/graficos2x/8103.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8104.png b/desktop/assets/data/graficos2x/8104.png
deleted file mode 100644
index 85fec9b6..00000000
Binary files a/desktop/assets/data/graficos2x/8104.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8105.png b/desktop/assets/data/graficos2x/8105.png
deleted file mode 100644
index 44de5bfb..00000000
Binary files a/desktop/assets/data/graficos2x/8105.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8106.png b/desktop/assets/data/graficos2x/8106.png
deleted file mode 100644
index c6149902..00000000
Binary files a/desktop/assets/data/graficos2x/8106.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8107.png b/desktop/assets/data/graficos2x/8107.png
deleted file mode 100644
index 2acd9739..00000000
Binary files a/desktop/assets/data/graficos2x/8107.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8108.png b/desktop/assets/data/graficos2x/8108.png
deleted file mode 100644
index a1a2d2a0..00000000
Binary files a/desktop/assets/data/graficos2x/8108.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8109.png b/desktop/assets/data/graficos2x/8109.png
deleted file mode 100644
index b4d04ef3..00000000
Binary files a/desktop/assets/data/graficos2x/8109.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8110.png b/desktop/assets/data/graficos2x/8110.png
deleted file mode 100644
index 68f57d5b..00000000
Binary files a/desktop/assets/data/graficos2x/8110.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8111.png b/desktop/assets/data/graficos2x/8111.png
deleted file mode 100644
index 67108884..00000000
Binary files a/desktop/assets/data/graficos2x/8111.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8112.png b/desktop/assets/data/graficos2x/8112.png
deleted file mode 100644
index 9316dc6b..00000000
Binary files a/desktop/assets/data/graficos2x/8112.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8113.png b/desktop/assets/data/graficos2x/8113.png
deleted file mode 100644
index 0ff9fb1d..00000000
Binary files a/desktop/assets/data/graficos2x/8113.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8114.png b/desktop/assets/data/graficos2x/8114.png
deleted file mode 100644
index 5357c3a8..00000000
Binary files a/desktop/assets/data/graficos2x/8114.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8115.png b/desktop/assets/data/graficos2x/8115.png
deleted file mode 100644
index 18218752..00000000
Binary files a/desktop/assets/data/graficos2x/8115.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8116.png b/desktop/assets/data/graficos2x/8116.png
deleted file mode 100644
index b50966f3..00000000
Binary files a/desktop/assets/data/graficos2x/8116.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8117.png b/desktop/assets/data/graficos2x/8117.png
deleted file mode 100644
index b40d74f9..00000000
Binary files a/desktop/assets/data/graficos2x/8117.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8118.png b/desktop/assets/data/graficos2x/8118.png
deleted file mode 100644
index 35ed92f4..00000000
Binary files a/desktop/assets/data/graficos2x/8118.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8119.png b/desktop/assets/data/graficos2x/8119.png
deleted file mode 100644
index edb6e0fe..00000000
Binary files a/desktop/assets/data/graficos2x/8119.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8120.png b/desktop/assets/data/graficos2x/8120.png
deleted file mode 100644
index 785c59b8..00000000
Binary files a/desktop/assets/data/graficos2x/8120.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8121.png b/desktop/assets/data/graficos2x/8121.png
deleted file mode 100644
index 3cb31c42..00000000
Binary files a/desktop/assets/data/graficos2x/8121.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8122.png b/desktop/assets/data/graficos2x/8122.png
deleted file mode 100644
index 7617ac12..00000000
Binary files a/desktop/assets/data/graficos2x/8122.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8123.png b/desktop/assets/data/graficos2x/8123.png
deleted file mode 100644
index ce5a19c7..00000000
Binary files a/desktop/assets/data/graficos2x/8123.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8124.png b/desktop/assets/data/graficos2x/8124.png
deleted file mode 100644
index 98541e16..00000000
Binary files a/desktop/assets/data/graficos2x/8124.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8125.png b/desktop/assets/data/graficos2x/8125.png
deleted file mode 100644
index 11710d34..00000000
Binary files a/desktop/assets/data/graficos2x/8125.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8126.png b/desktop/assets/data/graficos2x/8126.png
deleted file mode 100644
index aaa63112..00000000
Binary files a/desktop/assets/data/graficos2x/8126.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8127.png b/desktop/assets/data/graficos2x/8127.png
deleted file mode 100644
index cf9d8770..00000000
Binary files a/desktop/assets/data/graficos2x/8127.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8128.png b/desktop/assets/data/graficos2x/8128.png
deleted file mode 100644
index 2aa1b3bc..00000000
Binary files a/desktop/assets/data/graficos2x/8128.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8129.png b/desktop/assets/data/graficos2x/8129.png
deleted file mode 100644
index bbd097b3..00000000
Binary files a/desktop/assets/data/graficos2x/8129.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8130.png b/desktop/assets/data/graficos2x/8130.png
deleted file mode 100644
index b595b0b1..00000000
Binary files a/desktop/assets/data/graficos2x/8130.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8131.png b/desktop/assets/data/graficos2x/8131.png
deleted file mode 100644
index 1ff7ed32..00000000
Binary files a/desktop/assets/data/graficos2x/8131.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8132.png b/desktop/assets/data/graficos2x/8132.png
deleted file mode 100644
index 495ef926..00000000
Binary files a/desktop/assets/data/graficos2x/8132.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8133.png b/desktop/assets/data/graficos2x/8133.png
deleted file mode 100644
index 8aba6ed7..00000000
Binary files a/desktop/assets/data/graficos2x/8133.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8134.png b/desktop/assets/data/graficos2x/8134.png
deleted file mode 100644
index 40a0b8ef..00000000
Binary files a/desktop/assets/data/graficos2x/8134.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8135.png b/desktop/assets/data/graficos2x/8135.png
deleted file mode 100644
index a0e514f1..00000000
Binary files a/desktop/assets/data/graficos2x/8135.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8136.png b/desktop/assets/data/graficos2x/8136.png
deleted file mode 100644
index 1df45d47..00000000
Binary files a/desktop/assets/data/graficos2x/8136.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8137.png b/desktop/assets/data/graficos2x/8137.png
deleted file mode 100644
index 4e5effb0..00000000
Binary files a/desktop/assets/data/graficos2x/8137.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8138.png b/desktop/assets/data/graficos2x/8138.png
deleted file mode 100644
index bc29c45b..00000000
Binary files a/desktop/assets/data/graficos2x/8138.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8139.png b/desktop/assets/data/graficos2x/8139.png
deleted file mode 100644
index fc78cefc..00000000
Binary files a/desktop/assets/data/graficos2x/8139.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8140.png b/desktop/assets/data/graficos2x/8140.png
deleted file mode 100644
index 510bea2d..00000000
Binary files a/desktop/assets/data/graficos2x/8140.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8141.png b/desktop/assets/data/graficos2x/8141.png
deleted file mode 100644
index 706401db..00000000
Binary files a/desktop/assets/data/graficos2x/8141.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8142.png b/desktop/assets/data/graficos2x/8142.png
deleted file mode 100644
index 594157e0..00000000
Binary files a/desktop/assets/data/graficos2x/8142.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8143.png b/desktop/assets/data/graficos2x/8143.png
deleted file mode 100644
index c4d514b2..00000000
Binary files a/desktop/assets/data/graficos2x/8143.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8144.png b/desktop/assets/data/graficos2x/8144.png
deleted file mode 100644
index e7ead510..00000000
Binary files a/desktop/assets/data/graficos2x/8144.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8145.png b/desktop/assets/data/graficos2x/8145.png
deleted file mode 100644
index c83fe12b..00000000
Binary files a/desktop/assets/data/graficos2x/8145.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8146.png b/desktop/assets/data/graficos2x/8146.png
deleted file mode 100644
index 38d0a0f1..00000000
Binary files a/desktop/assets/data/graficos2x/8146.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8147.png b/desktop/assets/data/graficos2x/8147.png
deleted file mode 100644
index 8e69f4be..00000000
Binary files a/desktop/assets/data/graficos2x/8147.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8148.png b/desktop/assets/data/graficos2x/8148.png
deleted file mode 100644
index c633132d..00000000
Binary files a/desktop/assets/data/graficos2x/8148.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8149.png b/desktop/assets/data/graficos2x/8149.png
deleted file mode 100644
index 6eb78966..00000000
Binary files a/desktop/assets/data/graficos2x/8149.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8150.png b/desktop/assets/data/graficos2x/8150.png
deleted file mode 100644
index bf3c474a..00000000
Binary files a/desktop/assets/data/graficos2x/8150.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8151.png b/desktop/assets/data/graficos2x/8151.png
deleted file mode 100644
index 675f4162..00000000
Binary files a/desktop/assets/data/graficos2x/8151.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8152.png b/desktop/assets/data/graficos2x/8152.png
deleted file mode 100644
index d9308a67..00000000
Binary files a/desktop/assets/data/graficos2x/8152.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8153.png b/desktop/assets/data/graficos2x/8153.png
deleted file mode 100644
index 5ac84052..00000000
Binary files a/desktop/assets/data/graficos2x/8153.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8154.png b/desktop/assets/data/graficos2x/8154.png
deleted file mode 100644
index 936a6ae9..00000000
Binary files a/desktop/assets/data/graficos2x/8154.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8155.png b/desktop/assets/data/graficos2x/8155.png
deleted file mode 100644
index 88a84c5d..00000000
Binary files a/desktop/assets/data/graficos2x/8155.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8156.png b/desktop/assets/data/graficos2x/8156.png
deleted file mode 100644
index d45cfc3b..00000000
Binary files a/desktop/assets/data/graficos2x/8156.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8157.png b/desktop/assets/data/graficos2x/8157.png
deleted file mode 100644
index ebed62e1..00000000
Binary files a/desktop/assets/data/graficos2x/8157.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8158.png b/desktop/assets/data/graficos2x/8158.png
deleted file mode 100644
index 1246ed60..00000000
Binary files a/desktop/assets/data/graficos2x/8158.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8159.png b/desktop/assets/data/graficos2x/8159.png
deleted file mode 100644
index 7f535c9b..00000000
Binary files a/desktop/assets/data/graficos2x/8159.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8160.png b/desktop/assets/data/graficos2x/8160.png
deleted file mode 100644
index bc22b743..00000000
Binary files a/desktop/assets/data/graficos2x/8160.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8161.png b/desktop/assets/data/graficos2x/8161.png
deleted file mode 100644
index 9b0d0a7a..00000000
Binary files a/desktop/assets/data/graficos2x/8161.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8162.png b/desktop/assets/data/graficos2x/8162.png
deleted file mode 100644
index 509da527..00000000
Binary files a/desktop/assets/data/graficos2x/8162.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8163.png b/desktop/assets/data/graficos2x/8163.png
deleted file mode 100644
index 586f9005..00000000
Binary files a/desktop/assets/data/graficos2x/8163.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8164.png b/desktop/assets/data/graficos2x/8164.png
deleted file mode 100644
index febdcaf4..00000000
Binary files a/desktop/assets/data/graficos2x/8164.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8165.png b/desktop/assets/data/graficos2x/8165.png
deleted file mode 100644
index 00e99cc5..00000000
Binary files a/desktop/assets/data/graficos2x/8165.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8166.png b/desktop/assets/data/graficos2x/8166.png
deleted file mode 100644
index 81e396f3..00000000
Binary files a/desktop/assets/data/graficos2x/8166.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8167.png b/desktop/assets/data/graficos2x/8167.png
deleted file mode 100644
index 07681579..00000000
Binary files a/desktop/assets/data/graficos2x/8167.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8168.png b/desktop/assets/data/graficos2x/8168.png
deleted file mode 100644
index 897916a1..00000000
Binary files a/desktop/assets/data/graficos2x/8168.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8169.png b/desktop/assets/data/graficos2x/8169.png
deleted file mode 100644
index c738e4d1..00000000
Binary files a/desktop/assets/data/graficos2x/8169.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8170.png b/desktop/assets/data/graficos2x/8170.png
deleted file mode 100644
index c7e9873f..00000000
Binary files a/desktop/assets/data/graficos2x/8170.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8171.png b/desktop/assets/data/graficos2x/8171.png
deleted file mode 100644
index bc9df377..00000000
Binary files a/desktop/assets/data/graficos2x/8171.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8172.png b/desktop/assets/data/graficos2x/8172.png
deleted file mode 100644
index 7ede5976..00000000
Binary files a/desktop/assets/data/graficos2x/8172.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8173.png b/desktop/assets/data/graficos2x/8173.png
deleted file mode 100644
index d6e5c4fb..00000000
Binary files a/desktop/assets/data/graficos2x/8173.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8174.png b/desktop/assets/data/graficos2x/8174.png
deleted file mode 100644
index 033633f6..00000000
Binary files a/desktop/assets/data/graficos2x/8174.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8175.png b/desktop/assets/data/graficos2x/8175.png
deleted file mode 100644
index 8684ae8b..00000000
Binary files a/desktop/assets/data/graficos2x/8175.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8176.png b/desktop/assets/data/graficos2x/8176.png
deleted file mode 100644
index 072bf6ce..00000000
Binary files a/desktop/assets/data/graficos2x/8176.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8177.png b/desktop/assets/data/graficos2x/8177.png
deleted file mode 100644
index a5b72fd3..00000000
Binary files a/desktop/assets/data/graficos2x/8177.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8178.png b/desktop/assets/data/graficos2x/8178.png
deleted file mode 100644
index dba6e057..00000000
Binary files a/desktop/assets/data/graficos2x/8178.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8179.png b/desktop/assets/data/graficos2x/8179.png
deleted file mode 100644
index 4eedf203..00000000
Binary files a/desktop/assets/data/graficos2x/8179.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8180.png b/desktop/assets/data/graficos2x/8180.png
deleted file mode 100644
index 44015842..00000000
Binary files a/desktop/assets/data/graficos2x/8180.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8181.png b/desktop/assets/data/graficos2x/8181.png
deleted file mode 100644
index b1f12fea..00000000
Binary files a/desktop/assets/data/graficos2x/8181.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8182.png b/desktop/assets/data/graficos2x/8182.png
deleted file mode 100644
index f802cb46..00000000
Binary files a/desktop/assets/data/graficos2x/8182.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8183.png b/desktop/assets/data/graficos2x/8183.png
deleted file mode 100644
index f5a5a7d2..00000000
Binary files a/desktop/assets/data/graficos2x/8183.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8184.png b/desktop/assets/data/graficos2x/8184.png
deleted file mode 100644
index 7dd99e46..00000000
Binary files a/desktop/assets/data/graficos2x/8184.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8185.png b/desktop/assets/data/graficos2x/8185.png
deleted file mode 100644
index 4a52dec2..00000000
Binary files a/desktop/assets/data/graficos2x/8185.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8186.png b/desktop/assets/data/graficos2x/8186.png
deleted file mode 100644
index e4f2120f..00000000
Binary files a/desktop/assets/data/graficos2x/8186.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8187.png b/desktop/assets/data/graficos2x/8187.png
deleted file mode 100644
index 2ef68437..00000000
Binary files a/desktop/assets/data/graficos2x/8187.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8188.png b/desktop/assets/data/graficos2x/8188.png
deleted file mode 100644
index f86eb5e1..00000000
Binary files a/desktop/assets/data/graficos2x/8188.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8189.png b/desktop/assets/data/graficos2x/8189.png
deleted file mode 100644
index 5a1d8008..00000000
Binary files a/desktop/assets/data/graficos2x/8189.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8190.png b/desktop/assets/data/graficos2x/8190.png
deleted file mode 100644
index 2a1ab1aa..00000000
Binary files a/desktop/assets/data/graficos2x/8190.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8191.png b/desktop/assets/data/graficos2x/8191.png
deleted file mode 100644
index ba081e93..00000000
Binary files a/desktop/assets/data/graficos2x/8191.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8192.png b/desktop/assets/data/graficos2x/8192.png
deleted file mode 100644
index 6dcd0012..00000000
Binary files a/desktop/assets/data/graficos2x/8192.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8193.png b/desktop/assets/data/graficos2x/8193.png
deleted file mode 100644
index 84dc8028..00000000
Binary files a/desktop/assets/data/graficos2x/8193.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8194.png b/desktop/assets/data/graficos2x/8194.png
deleted file mode 100644
index e1071932..00000000
Binary files a/desktop/assets/data/graficos2x/8194.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8195.png b/desktop/assets/data/graficos2x/8195.png
deleted file mode 100644
index da6eca99..00000000
Binary files a/desktop/assets/data/graficos2x/8195.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8196.png b/desktop/assets/data/graficos2x/8196.png
deleted file mode 100644
index a61b0173..00000000
Binary files a/desktop/assets/data/graficos2x/8196.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8197.png b/desktop/assets/data/graficos2x/8197.png
deleted file mode 100644
index 3e117cc7..00000000
Binary files a/desktop/assets/data/graficos2x/8197.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8198.png b/desktop/assets/data/graficos2x/8198.png
deleted file mode 100644
index 086f0968..00000000
Binary files a/desktop/assets/data/graficos2x/8198.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8199.png b/desktop/assets/data/graficos2x/8199.png
deleted file mode 100644
index ce66bfbb..00000000
Binary files a/desktop/assets/data/graficos2x/8199.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/82.png b/desktop/assets/data/graficos2x/82.png
deleted file mode 100644
index 120117f9..00000000
Binary files a/desktop/assets/data/graficos2x/82.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8200.png b/desktop/assets/data/graficos2x/8200.png
deleted file mode 100644
index 7a9efede..00000000
Binary files a/desktop/assets/data/graficos2x/8200.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8201.png b/desktop/assets/data/graficos2x/8201.png
deleted file mode 100644
index afd5e583..00000000
Binary files a/desktop/assets/data/graficos2x/8201.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8202.png b/desktop/assets/data/graficos2x/8202.png
deleted file mode 100644
index 63968dd5..00000000
Binary files a/desktop/assets/data/graficos2x/8202.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8203.png b/desktop/assets/data/graficos2x/8203.png
deleted file mode 100644
index 3da7792d..00000000
Binary files a/desktop/assets/data/graficos2x/8203.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8204.png b/desktop/assets/data/graficos2x/8204.png
deleted file mode 100644
index e5e1fbff..00000000
Binary files a/desktop/assets/data/graficos2x/8204.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8205.png b/desktop/assets/data/graficos2x/8205.png
deleted file mode 100644
index 82c307a7..00000000
Binary files a/desktop/assets/data/graficos2x/8205.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8206.png b/desktop/assets/data/graficos2x/8206.png
deleted file mode 100644
index 5b74869d..00000000
Binary files a/desktop/assets/data/graficos2x/8206.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8207.png b/desktop/assets/data/graficos2x/8207.png
deleted file mode 100644
index ea96e317..00000000
Binary files a/desktop/assets/data/graficos2x/8207.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8208.png b/desktop/assets/data/graficos2x/8208.png
deleted file mode 100644
index 38cb4cda..00000000
Binary files a/desktop/assets/data/graficos2x/8208.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8209.png b/desktop/assets/data/graficos2x/8209.png
deleted file mode 100644
index 0884d1a9..00000000
Binary files a/desktop/assets/data/graficos2x/8209.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8210.png b/desktop/assets/data/graficos2x/8210.png
deleted file mode 100644
index 0eed4f9f..00000000
Binary files a/desktop/assets/data/graficos2x/8210.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8211.png b/desktop/assets/data/graficos2x/8211.png
deleted file mode 100644
index 7573f7ea..00000000
Binary files a/desktop/assets/data/graficos2x/8211.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8212.png b/desktop/assets/data/graficos2x/8212.png
deleted file mode 100644
index 268c6992..00000000
Binary files a/desktop/assets/data/graficos2x/8212.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8213.png b/desktop/assets/data/graficos2x/8213.png
deleted file mode 100644
index a71be6cd..00000000
Binary files a/desktop/assets/data/graficos2x/8213.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8214.png b/desktop/assets/data/graficos2x/8214.png
deleted file mode 100644
index b2ec286e..00000000
Binary files a/desktop/assets/data/graficos2x/8214.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8215.png b/desktop/assets/data/graficos2x/8215.png
deleted file mode 100644
index b4be94ac..00000000
Binary files a/desktop/assets/data/graficos2x/8215.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8216.png b/desktop/assets/data/graficos2x/8216.png
deleted file mode 100644
index 295f6647..00000000
Binary files a/desktop/assets/data/graficos2x/8216.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8217.png b/desktop/assets/data/graficos2x/8217.png
deleted file mode 100644
index de902cfc..00000000
Binary files a/desktop/assets/data/graficos2x/8217.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8218.png b/desktop/assets/data/graficos2x/8218.png
deleted file mode 100644
index b9caf792..00000000
Binary files a/desktop/assets/data/graficos2x/8218.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8219.png b/desktop/assets/data/graficos2x/8219.png
deleted file mode 100644
index 3403889b..00000000
Binary files a/desktop/assets/data/graficos2x/8219.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8220.png b/desktop/assets/data/graficos2x/8220.png
deleted file mode 100644
index 02c6ae29..00000000
Binary files a/desktop/assets/data/graficos2x/8220.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8221.png b/desktop/assets/data/graficos2x/8221.png
deleted file mode 100644
index 98b7660b..00000000
Binary files a/desktop/assets/data/graficos2x/8221.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8222.png b/desktop/assets/data/graficos2x/8222.png
deleted file mode 100644
index 3c3f37a3..00000000
Binary files a/desktop/assets/data/graficos2x/8222.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8223.png b/desktop/assets/data/graficos2x/8223.png
deleted file mode 100644
index 71572fc9..00000000
Binary files a/desktop/assets/data/graficos2x/8223.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/8224.png b/desktop/assets/data/graficos2x/8224.png
deleted file mode 100644
index 5f99c5f3..00000000
Binary files a/desktop/assets/data/graficos2x/8224.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/83.png b/desktop/assets/data/graficos2x/83.png
deleted file mode 100644
index 09ac3fb8..00000000
Binary files a/desktop/assets/data/graficos2x/83.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/84.png b/desktop/assets/data/graficos2x/84.png
deleted file mode 100644
index af856f5a..00000000
Binary files a/desktop/assets/data/graficos2x/84.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/85.png b/desktop/assets/data/graficos2x/85.png
deleted file mode 100644
index a4b6f669..00000000
Binary files a/desktop/assets/data/graficos2x/85.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/86.png b/desktop/assets/data/graficos2x/86.png
deleted file mode 100644
index b5441b28..00000000
Binary files a/desktop/assets/data/graficos2x/86.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/87.png b/desktop/assets/data/graficos2x/87.png
deleted file mode 100644
index 90a9e3c4..00000000
Binary files a/desktop/assets/data/graficos2x/87.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/88.png b/desktop/assets/data/graficos2x/88.png
deleted file mode 100644
index 19220486..00000000
Binary files a/desktop/assets/data/graficos2x/88.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/89.png b/desktop/assets/data/graficos2x/89.png
deleted file mode 100644
index 8cfb439a..00000000
Binary files a/desktop/assets/data/graficos2x/89.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9.png b/desktop/assets/data/graficos2x/9.png
deleted file mode 100644
index 2cb4aa7d..00000000
Binary files a/desktop/assets/data/graficos2x/9.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/90.png b/desktop/assets/data/graficos2x/90.png
deleted file mode 100644
index 11c569fd..00000000
Binary files a/desktop/assets/data/graficos2x/90.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9000.png b/desktop/assets/data/graficos2x/9000.png
deleted file mode 100644
index c58082b2..00000000
Binary files a/desktop/assets/data/graficos2x/9000.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9001.png b/desktop/assets/data/graficos2x/9001.png
deleted file mode 100644
index 466e6fd4..00000000
Binary files a/desktop/assets/data/graficos2x/9001.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9002.png b/desktop/assets/data/graficos2x/9002.png
deleted file mode 100644
index cdebce94..00000000
Binary files a/desktop/assets/data/graficos2x/9002.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9003.png b/desktop/assets/data/graficos2x/9003.png
deleted file mode 100644
index bc39ad76..00000000
Binary files a/desktop/assets/data/graficos2x/9003.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9004.png b/desktop/assets/data/graficos2x/9004.png
deleted file mode 100644
index 1d2843fd..00000000
Binary files a/desktop/assets/data/graficos2x/9004.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9005.png b/desktop/assets/data/graficos2x/9005.png
deleted file mode 100644
index 2038e16b..00000000
Binary files a/desktop/assets/data/graficos2x/9005.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9006.png b/desktop/assets/data/graficos2x/9006.png
deleted file mode 100644
index 1c813bea..00000000
Binary files a/desktop/assets/data/graficos2x/9006.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9007.png b/desktop/assets/data/graficos2x/9007.png
deleted file mode 100644
index 903c9d62..00000000
Binary files a/desktop/assets/data/graficos2x/9007.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9008.png b/desktop/assets/data/graficos2x/9008.png
deleted file mode 100644
index e48e8ecb..00000000
Binary files a/desktop/assets/data/graficos2x/9008.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9009.png b/desktop/assets/data/graficos2x/9009.png
deleted file mode 100644
index 5c848029..00000000
Binary files a/desktop/assets/data/graficos2x/9009.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9010.png b/desktop/assets/data/graficos2x/9010.png
deleted file mode 100644
index 7785a5a3..00000000
Binary files a/desktop/assets/data/graficos2x/9010.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9011.png b/desktop/assets/data/graficos2x/9011.png
deleted file mode 100644
index 3f9e09cf..00000000
Binary files a/desktop/assets/data/graficos2x/9011.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9012.png b/desktop/assets/data/graficos2x/9012.png
deleted file mode 100644
index 13f50d17..00000000
Binary files a/desktop/assets/data/graficos2x/9012.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9013.png b/desktop/assets/data/graficos2x/9013.png
deleted file mode 100644
index 94e52963..00000000
Binary files a/desktop/assets/data/graficos2x/9013.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9014.png b/desktop/assets/data/graficos2x/9014.png
deleted file mode 100644
index 729da619..00000000
Binary files a/desktop/assets/data/graficos2x/9014.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9015.png b/desktop/assets/data/graficos2x/9015.png
deleted file mode 100644
index b214557b..00000000
Binary files a/desktop/assets/data/graficos2x/9015.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9017.png b/desktop/assets/data/graficos2x/9017.png
deleted file mode 100644
index 028d8ba2..00000000
Binary files a/desktop/assets/data/graficos2x/9017.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9018.png b/desktop/assets/data/graficos2x/9018.png
deleted file mode 100644
index 60b29424..00000000
Binary files a/desktop/assets/data/graficos2x/9018.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9019.png b/desktop/assets/data/graficos2x/9019.png
deleted file mode 100644
index 394543df..00000000
Binary files a/desktop/assets/data/graficos2x/9019.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9020.png b/desktop/assets/data/graficos2x/9020.png
deleted file mode 100644
index c0616f18..00000000
Binary files a/desktop/assets/data/graficos2x/9020.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9021.png b/desktop/assets/data/graficos2x/9021.png
deleted file mode 100644
index 9f33ac63..00000000
Binary files a/desktop/assets/data/graficos2x/9021.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/9022.png b/desktop/assets/data/graficos2x/9022.png
deleted file mode 100644
index 296e7d3f..00000000
Binary files a/desktop/assets/data/graficos2x/9022.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/91.png b/desktop/assets/data/graficos2x/91.png
deleted file mode 100644
index ed127ee7..00000000
Binary files a/desktop/assets/data/graficos2x/91.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/92.png b/desktop/assets/data/graficos2x/92.png
deleted file mode 100644
index 3b1f0f2f..00000000
Binary files a/desktop/assets/data/graficos2x/92.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/93.png b/desktop/assets/data/graficos2x/93.png
deleted file mode 100644
index 33a6a620..00000000
Binary files a/desktop/assets/data/graficos2x/93.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/94.png b/desktop/assets/data/graficos2x/94.png
deleted file mode 100644
index 8a293e73..00000000
Binary files a/desktop/assets/data/graficos2x/94.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/95.png b/desktop/assets/data/graficos2x/95.png
deleted file mode 100644
index 105b7a73..00000000
Binary files a/desktop/assets/data/graficos2x/95.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/96.png b/desktop/assets/data/graficos2x/96.png
deleted file mode 100644
index e92d1ed7..00000000
Binary files a/desktop/assets/data/graficos2x/96.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/97.png b/desktop/assets/data/graficos2x/97.png
deleted file mode 100644
index 8a53b60b..00000000
Binary files a/desktop/assets/data/graficos2x/97.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/98.png b/desktop/assets/data/graficos2x/98.png
deleted file mode 100644
index c90782d0..00000000
Binary files a/desktop/assets/data/graficos2x/98.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/99.png b/desktop/assets/data/graficos2x/99.png
deleted file mode 100644
index c728141b..00000000
Binary files a/desktop/assets/data/graficos2x/99.png and /dev/null differ
diff --git a/desktop/assets/data/graficos2x/desktop.ini b/desktop/assets/data/graficos2x/desktop.ini
deleted file mode 100644
index 17c2f566..00000000
--- a/desktop/assets/data/graficos2x/desktop.ini
+++ /dev/null
@@ -1,4 +0,0 @@
-[ViewState]
-Mode=
-Vid=
-FolderType=Pictures
diff --git a/desktop/assets/data/graphics/1.png b/desktop/assets/data/graphics/1.png
new file mode 100644
index 00000000..f3be5e92
Binary files /dev/null and b/desktop/assets/data/graphics/1.png differ
diff --git a/desktop/assets/data/graphics/10.png b/desktop/assets/data/graphics/10.png
new file mode 100644
index 00000000..35f96cd5
Binary files /dev/null and b/desktop/assets/data/graphics/10.png differ
diff --git a/desktop/assets/data/graphics/100.png b/desktop/assets/data/graphics/100.png
new file mode 100644
index 00000000..518489b8
Binary files /dev/null and b/desktop/assets/data/graphics/100.png differ
diff --git a/desktop/assets/data/graphics/10000.png b/desktop/assets/data/graphics/10000.png
new file mode 100644
index 00000000..d32fd1ac
Binary files /dev/null and b/desktop/assets/data/graphics/10000.png differ
diff --git a/desktop/assets/data/graphics/10001.png b/desktop/assets/data/graphics/10001.png
new file mode 100644
index 00000000..45bf1eb4
Binary files /dev/null and b/desktop/assets/data/graphics/10001.png differ
diff --git a/desktop/assets/data/graphics/10002.png b/desktop/assets/data/graphics/10002.png
new file mode 100644
index 00000000..70ec3bc5
Binary files /dev/null and b/desktop/assets/data/graphics/10002.png differ
diff --git a/desktop/assets/data/graphics/10003.png b/desktop/assets/data/graphics/10003.png
new file mode 100644
index 00000000..a8cc1dc7
Binary files /dev/null and b/desktop/assets/data/graphics/10003.png differ
diff --git a/desktop/assets/data/graphics/10004.png b/desktop/assets/data/graphics/10004.png
new file mode 100644
index 00000000..8aca17fa
Binary files /dev/null and b/desktop/assets/data/graphics/10004.png differ
diff --git a/desktop/assets/data/graphics/10005.png b/desktop/assets/data/graphics/10005.png
new file mode 100644
index 00000000..2befe77d
Binary files /dev/null and b/desktop/assets/data/graphics/10005.png differ
diff --git a/desktop/assets/data/graphics/10006.png b/desktop/assets/data/graphics/10006.png
new file mode 100644
index 00000000..a35cbdce
Binary files /dev/null and b/desktop/assets/data/graphics/10006.png differ
diff --git a/desktop/assets/data/graphics/10007.png b/desktop/assets/data/graphics/10007.png
new file mode 100644
index 00000000..d601c2e8
Binary files /dev/null and b/desktop/assets/data/graphics/10007.png differ
diff --git a/desktop/assets/data/graphics/10008.png b/desktop/assets/data/graphics/10008.png
new file mode 100644
index 00000000..6cad3495
Binary files /dev/null and b/desktop/assets/data/graphics/10008.png differ
diff --git a/desktop/assets/data/graphics/10009.png b/desktop/assets/data/graphics/10009.png
new file mode 100644
index 00000000..ea94626d
Binary files /dev/null and b/desktop/assets/data/graphics/10009.png differ
diff --git a/desktop/assets/data/graphics/10010.png b/desktop/assets/data/graphics/10010.png
new file mode 100644
index 00000000..9d0cef5e
Binary files /dev/null and b/desktop/assets/data/graphics/10010.png differ
diff --git a/desktop/assets/data/graphics/101.png b/desktop/assets/data/graphics/101.png
new file mode 100644
index 00000000..859c9ff2
Binary files /dev/null and b/desktop/assets/data/graphics/101.png differ
diff --git a/desktop/assets/data/graphics/102.png b/desktop/assets/data/graphics/102.png
new file mode 100644
index 00000000..896505bb
Binary files /dev/null and b/desktop/assets/data/graphics/102.png differ
diff --git a/desktop/assets/data/graphics/103.png b/desktop/assets/data/graphics/103.png
new file mode 100644
index 00000000..1ff38e02
Binary files /dev/null and b/desktop/assets/data/graphics/103.png differ
diff --git a/desktop/assets/data/graphics/104.png b/desktop/assets/data/graphics/104.png
new file mode 100644
index 00000000..9dfe95e0
Binary files /dev/null and b/desktop/assets/data/graphics/104.png differ
diff --git a/desktop/assets/data/graphics/105.png b/desktop/assets/data/graphics/105.png
new file mode 100644
index 00000000..7a768652
Binary files /dev/null and b/desktop/assets/data/graphics/105.png differ
diff --git a/desktop/assets/data/graphics/106.png b/desktop/assets/data/graphics/106.png
new file mode 100644
index 00000000..aa5cf924
Binary files /dev/null and b/desktop/assets/data/graphics/106.png differ
diff --git a/desktop/assets/data/graphics/107.png b/desktop/assets/data/graphics/107.png
new file mode 100644
index 00000000..ecb41d23
Binary files /dev/null and b/desktop/assets/data/graphics/107.png differ
diff --git a/desktop/assets/data/graphics/108.png b/desktop/assets/data/graphics/108.png
new file mode 100644
index 00000000..b51b7940
Binary files /dev/null and b/desktop/assets/data/graphics/108.png differ
diff --git a/desktop/assets/data/graphics/109.png b/desktop/assets/data/graphics/109.png
new file mode 100644
index 00000000..302f4e65
Binary files /dev/null and b/desktop/assets/data/graphics/109.png differ
diff --git a/desktop/assets/data/graphics/11.png b/desktop/assets/data/graphics/11.png
new file mode 100644
index 00000000..1effef0b
Binary files /dev/null and b/desktop/assets/data/graphics/11.png differ
diff --git a/desktop/assets/data/graphics/110.png b/desktop/assets/data/graphics/110.png
new file mode 100644
index 00000000..58421111
Binary files /dev/null and b/desktop/assets/data/graphics/110.png differ
diff --git a/desktop/assets/data/graphics/11000.png b/desktop/assets/data/graphics/11000.png
new file mode 100644
index 00000000..2fb423bb
Binary files /dev/null and b/desktop/assets/data/graphics/11000.png differ
diff --git a/desktop/assets/data/graphics/11001.png b/desktop/assets/data/graphics/11001.png
new file mode 100644
index 00000000..a7ef0344
Binary files /dev/null and b/desktop/assets/data/graphics/11001.png differ
diff --git a/desktop/assets/data/graphics/11002.png b/desktop/assets/data/graphics/11002.png
new file mode 100644
index 00000000..ac169819
Binary files /dev/null and b/desktop/assets/data/graphics/11002.png differ
diff --git a/desktop/assets/data/graphics/11003.png b/desktop/assets/data/graphics/11003.png
new file mode 100644
index 00000000..568f3b61
Binary files /dev/null and b/desktop/assets/data/graphics/11003.png differ
diff --git a/desktop/assets/data/graphics/11004.png b/desktop/assets/data/graphics/11004.png
new file mode 100644
index 00000000..32b351c6
Binary files /dev/null and b/desktop/assets/data/graphics/11004.png differ
diff --git a/desktop/assets/data/graphics/11005.png b/desktop/assets/data/graphics/11005.png
new file mode 100644
index 00000000..014f0a69
Binary files /dev/null and b/desktop/assets/data/graphics/11005.png differ
diff --git a/desktop/assets/data/graphics/11006.png b/desktop/assets/data/graphics/11006.png
new file mode 100644
index 00000000..088e7357
Binary files /dev/null and b/desktop/assets/data/graphics/11006.png differ
diff --git a/desktop/assets/data/graphics/11007.png b/desktop/assets/data/graphics/11007.png
new file mode 100644
index 00000000..9eeff5d4
Binary files /dev/null and b/desktop/assets/data/graphics/11007.png differ
diff --git a/desktop/assets/data/graphics/11008.png b/desktop/assets/data/graphics/11008.png
new file mode 100644
index 00000000..6f617e29
Binary files /dev/null and b/desktop/assets/data/graphics/11008.png differ
diff --git a/desktop/assets/data/graphics/11009.png b/desktop/assets/data/graphics/11009.png
new file mode 100644
index 00000000..47454c03
Binary files /dev/null and b/desktop/assets/data/graphics/11009.png differ
diff --git a/desktop/assets/data/graphics/11010.png b/desktop/assets/data/graphics/11010.png
new file mode 100644
index 00000000..aa666b26
Binary files /dev/null and b/desktop/assets/data/graphics/11010.png differ
diff --git a/desktop/assets/data/graphics/11011.png b/desktop/assets/data/graphics/11011.png
new file mode 100644
index 00000000..725011d9
Binary files /dev/null and b/desktop/assets/data/graphics/11011.png differ
diff --git a/desktop/assets/data/graphics/11012.png b/desktop/assets/data/graphics/11012.png
new file mode 100644
index 00000000..935fbff8
Binary files /dev/null and b/desktop/assets/data/graphics/11012.png differ
diff --git a/desktop/assets/data/graphics/11013.png b/desktop/assets/data/graphics/11013.png
new file mode 100644
index 00000000..e8d2b1db
Binary files /dev/null and b/desktop/assets/data/graphics/11013.png differ
diff --git a/desktop/assets/data/graphics/11014.png b/desktop/assets/data/graphics/11014.png
new file mode 100644
index 00000000..8e6e220f
Binary files /dev/null and b/desktop/assets/data/graphics/11014.png differ
diff --git a/desktop/assets/data/graphics/11015.png b/desktop/assets/data/graphics/11015.png
new file mode 100644
index 00000000..85abfa6b
Binary files /dev/null and b/desktop/assets/data/graphics/11015.png differ
diff --git a/desktop/assets/data/graphics/11017.png b/desktop/assets/data/graphics/11017.png
new file mode 100644
index 00000000..41529f9c
Binary files /dev/null and b/desktop/assets/data/graphics/11017.png differ
diff --git a/desktop/assets/data/graphics/11018.png b/desktop/assets/data/graphics/11018.png
new file mode 100644
index 00000000..f239806f
Binary files /dev/null and b/desktop/assets/data/graphics/11018.png differ
diff --git a/desktop/assets/data/graphics/11019.png b/desktop/assets/data/graphics/11019.png
new file mode 100644
index 00000000..4208fa7f
Binary files /dev/null and b/desktop/assets/data/graphics/11019.png differ
diff --git a/desktop/assets/data/graphics/11020.png b/desktop/assets/data/graphics/11020.png
new file mode 100644
index 00000000..641a422f
Binary files /dev/null and b/desktop/assets/data/graphics/11020.png differ
diff --git a/desktop/assets/data/graphics/11021.png b/desktop/assets/data/graphics/11021.png
new file mode 100644
index 00000000..c96ffcf3
Binary files /dev/null and b/desktop/assets/data/graphics/11021.png differ
diff --git a/desktop/assets/data/graphics/11022.png b/desktop/assets/data/graphics/11022.png
new file mode 100644
index 00000000..bb98be98
Binary files /dev/null and b/desktop/assets/data/graphics/11022.png differ
diff --git a/desktop/assets/data/graphics/11023.png b/desktop/assets/data/graphics/11023.png
new file mode 100644
index 00000000..70473f73
Binary files /dev/null and b/desktop/assets/data/graphics/11023.png differ
diff --git a/desktop/assets/data/graphics/11024.png b/desktop/assets/data/graphics/11024.png
new file mode 100644
index 00000000..c4746b50
Binary files /dev/null and b/desktop/assets/data/graphics/11024.png differ
diff --git a/desktop/assets/data/graphics/11025.png b/desktop/assets/data/graphics/11025.png
new file mode 100644
index 00000000..2f575281
Binary files /dev/null and b/desktop/assets/data/graphics/11025.png differ
diff --git a/desktop/assets/data/graphics/11026.png b/desktop/assets/data/graphics/11026.png
new file mode 100644
index 00000000..33b98881
Binary files /dev/null and b/desktop/assets/data/graphics/11026.png differ
diff --git a/desktop/assets/data/graphics/11027.png b/desktop/assets/data/graphics/11027.png
new file mode 100644
index 00000000..10233bca
Binary files /dev/null and b/desktop/assets/data/graphics/11027.png differ
diff --git a/desktop/assets/data/graphics/11028.png b/desktop/assets/data/graphics/11028.png
new file mode 100644
index 00000000..74e739af
Binary files /dev/null and b/desktop/assets/data/graphics/11028.png differ
diff --git a/desktop/assets/data/graphics/11029.png b/desktop/assets/data/graphics/11029.png
new file mode 100644
index 00000000..85abfa6b
Binary files /dev/null and b/desktop/assets/data/graphics/11029.png differ
diff --git a/desktop/assets/data/graphics/11030.png b/desktop/assets/data/graphics/11030.png
new file mode 100644
index 00000000..2654a908
Binary files /dev/null and b/desktop/assets/data/graphics/11030.png differ
diff --git a/desktop/assets/data/graphics/11031.png b/desktop/assets/data/graphics/11031.png
new file mode 100644
index 00000000..0bddde41
Binary files /dev/null and b/desktop/assets/data/graphics/11031.png differ
diff --git a/desktop/assets/data/graphics/11032.png b/desktop/assets/data/graphics/11032.png
new file mode 100644
index 00000000..68ecb5ca
Binary files /dev/null and b/desktop/assets/data/graphics/11032.png differ
diff --git a/desktop/assets/data/graphics/11033.png b/desktop/assets/data/graphics/11033.png
new file mode 100644
index 00000000..857f6757
Binary files /dev/null and b/desktop/assets/data/graphics/11033.png differ
diff --git a/desktop/assets/data/graphics/11034.png b/desktop/assets/data/graphics/11034.png
new file mode 100644
index 00000000..1144f8ad
Binary files /dev/null and b/desktop/assets/data/graphics/11034.png differ
diff --git a/desktop/assets/data/graphics/11035.png b/desktop/assets/data/graphics/11035.png
new file mode 100644
index 00000000..c19d7518
Binary files /dev/null and b/desktop/assets/data/graphics/11035.png differ
diff --git a/desktop/assets/data/graphics/11036.png b/desktop/assets/data/graphics/11036.png
new file mode 100644
index 00000000..5b150e2b
Binary files /dev/null and b/desktop/assets/data/graphics/11036.png differ
diff --git a/desktop/assets/data/graphics/11037.png b/desktop/assets/data/graphics/11037.png
new file mode 100644
index 00000000..9f0df950
Binary files /dev/null and b/desktop/assets/data/graphics/11037.png differ
diff --git a/desktop/assets/data/graphics/11038.png b/desktop/assets/data/graphics/11038.png
new file mode 100644
index 00000000..11619b00
Binary files /dev/null and b/desktop/assets/data/graphics/11038.png differ
diff --git a/desktop/assets/data/graphics/11039.png b/desktop/assets/data/graphics/11039.png
new file mode 100644
index 00000000..0532c57a
Binary files /dev/null and b/desktop/assets/data/graphics/11039.png differ
diff --git a/desktop/assets/data/graphics/11040.png b/desktop/assets/data/graphics/11040.png
new file mode 100644
index 00000000..de0c9c47
Binary files /dev/null and b/desktop/assets/data/graphics/11040.png differ
diff --git a/desktop/assets/data/graphics/11041.png b/desktop/assets/data/graphics/11041.png
new file mode 100644
index 00000000..16694688
Binary files /dev/null and b/desktop/assets/data/graphics/11041.png differ
diff --git a/desktop/assets/data/graphics/11042.png b/desktop/assets/data/graphics/11042.png
new file mode 100644
index 00000000..5183a020
Binary files /dev/null and b/desktop/assets/data/graphics/11042.png differ
diff --git a/desktop/assets/data/graphics/11043.png b/desktop/assets/data/graphics/11043.png
new file mode 100644
index 00000000..df692c83
Binary files /dev/null and b/desktop/assets/data/graphics/11043.png differ
diff --git a/desktop/assets/data/graphics/11044.png b/desktop/assets/data/graphics/11044.png
new file mode 100644
index 00000000..7ead75a7
Binary files /dev/null and b/desktop/assets/data/graphics/11044.png differ
diff --git a/desktop/assets/data/graphics/11045.png b/desktop/assets/data/graphics/11045.png
new file mode 100644
index 00000000..876bfb82
Binary files /dev/null and b/desktop/assets/data/graphics/11045.png differ
diff --git a/desktop/assets/data/graphics/11046.png b/desktop/assets/data/graphics/11046.png
new file mode 100644
index 00000000..299a4fa4
Binary files /dev/null and b/desktop/assets/data/graphics/11046.png differ
diff --git a/desktop/assets/data/graphics/11047.png b/desktop/assets/data/graphics/11047.png
new file mode 100644
index 00000000..90db8ae7
Binary files /dev/null and b/desktop/assets/data/graphics/11047.png differ
diff --git a/desktop/assets/data/graphics/11048.png b/desktop/assets/data/graphics/11048.png
new file mode 100644
index 00000000..41346514
Binary files /dev/null and b/desktop/assets/data/graphics/11048.png differ
diff --git a/desktop/assets/data/graphics/11049.png b/desktop/assets/data/graphics/11049.png
new file mode 100644
index 00000000..e58912cf
Binary files /dev/null and b/desktop/assets/data/graphics/11049.png differ
diff --git a/desktop/assets/data/graphics/11050.png b/desktop/assets/data/graphics/11050.png
new file mode 100644
index 00000000..95359933
Binary files /dev/null and b/desktop/assets/data/graphics/11050.png differ
diff --git a/desktop/assets/data/graphics/11051.png b/desktop/assets/data/graphics/11051.png
new file mode 100644
index 00000000..c28c2736
Binary files /dev/null and b/desktop/assets/data/graphics/11051.png differ
diff --git a/desktop/assets/data/graphics/11052.png b/desktop/assets/data/graphics/11052.png
new file mode 100644
index 00000000..26f51994
Binary files /dev/null and b/desktop/assets/data/graphics/11052.png differ
diff --git a/desktop/assets/data/graphics/11053.png b/desktop/assets/data/graphics/11053.png
new file mode 100644
index 00000000..9660374a
Binary files /dev/null and b/desktop/assets/data/graphics/11053.png differ
diff --git a/desktop/assets/data/graphics/111.png b/desktop/assets/data/graphics/111.png
new file mode 100644
index 00000000..b35a3ec8
Binary files /dev/null and b/desktop/assets/data/graphics/111.png differ
diff --git a/desktop/assets/data/graphics/112.png b/desktop/assets/data/graphics/112.png
new file mode 100644
index 00000000..928d8ee4
Binary files /dev/null and b/desktop/assets/data/graphics/112.png differ
diff --git a/desktop/assets/data/graphics/113.png b/desktop/assets/data/graphics/113.png
new file mode 100644
index 00000000..7df71545
Binary files /dev/null and b/desktop/assets/data/graphics/113.png differ
diff --git a/desktop/assets/data/graphics/114.png b/desktop/assets/data/graphics/114.png
new file mode 100644
index 00000000..afc72854
Binary files /dev/null and b/desktop/assets/data/graphics/114.png differ
diff --git a/desktop/assets/data/graphics/115.png b/desktop/assets/data/graphics/115.png
new file mode 100644
index 00000000..74e7883e
Binary files /dev/null and b/desktop/assets/data/graphics/115.png differ
diff --git a/desktop/assets/data/graphics/116.png b/desktop/assets/data/graphics/116.png
new file mode 100644
index 00000000..5ac1717e
Binary files /dev/null and b/desktop/assets/data/graphics/116.png differ
diff --git a/desktop/assets/data/graphics/117.png b/desktop/assets/data/graphics/117.png
new file mode 100644
index 00000000..4969fa3b
Binary files /dev/null and b/desktop/assets/data/graphics/117.png differ
diff --git a/desktop/assets/data/graphics/118.png b/desktop/assets/data/graphics/118.png
new file mode 100644
index 00000000..4f37b140
Binary files /dev/null and b/desktop/assets/data/graphics/118.png differ
diff --git a/desktop/assets/data/graphics/119.png b/desktop/assets/data/graphics/119.png
new file mode 100644
index 00000000..050ded71
Binary files /dev/null and b/desktop/assets/data/graphics/119.png differ
diff --git a/desktop/assets/data/graphics/12.png b/desktop/assets/data/graphics/12.png
new file mode 100644
index 00000000..7dcb8e63
Binary files /dev/null and b/desktop/assets/data/graphics/12.png differ
diff --git a/desktop/assets/data/graphics/120.png b/desktop/assets/data/graphics/120.png
new file mode 100644
index 00000000..dd9fc398
Binary files /dev/null and b/desktop/assets/data/graphics/120.png differ
diff --git a/desktop/assets/data/graphics/12000.png b/desktop/assets/data/graphics/12000.png
new file mode 100644
index 00000000..f7ffcdcc
Binary files /dev/null and b/desktop/assets/data/graphics/12000.png differ
diff --git a/desktop/assets/data/graphics/12001.png b/desktop/assets/data/graphics/12001.png
new file mode 100644
index 00000000..b518fe33
Binary files /dev/null and b/desktop/assets/data/graphics/12001.png differ
diff --git a/desktop/assets/data/graphics/12002.png b/desktop/assets/data/graphics/12002.png
new file mode 100644
index 00000000..cb95d745
Binary files /dev/null and b/desktop/assets/data/graphics/12002.png differ
diff --git a/desktop/assets/data/graphics/12003.png b/desktop/assets/data/graphics/12003.png
new file mode 100644
index 00000000..8f3f3bb4
Binary files /dev/null and b/desktop/assets/data/graphics/12003.png differ
diff --git a/desktop/assets/data/graphics/12004.png b/desktop/assets/data/graphics/12004.png
new file mode 100644
index 00000000..98da40c1
Binary files /dev/null and b/desktop/assets/data/graphics/12004.png differ
diff --git a/desktop/assets/data/graphics/12005.png b/desktop/assets/data/graphics/12005.png
new file mode 100644
index 00000000..95705436
Binary files /dev/null and b/desktop/assets/data/graphics/12005.png differ
diff --git a/desktop/assets/data/graphics/12007.png b/desktop/assets/data/graphics/12007.png
new file mode 100644
index 00000000..0c78c4d5
Binary files /dev/null and b/desktop/assets/data/graphics/12007.png differ
diff --git a/desktop/assets/data/graphics/12008.png b/desktop/assets/data/graphics/12008.png
new file mode 100644
index 00000000..da189b69
Binary files /dev/null and b/desktop/assets/data/graphics/12008.png differ
diff --git a/desktop/assets/data/graphics/12009.png b/desktop/assets/data/graphics/12009.png
new file mode 100644
index 00000000..0f161b4f
Binary files /dev/null and b/desktop/assets/data/graphics/12009.png differ
diff --git a/desktop/assets/data/graphics/12010.png b/desktop/assets/data/graphics/12010.png
new file mode 100644
index 00000000..68d389fe
Binary files /dev/null and b/desktop/assets/data/graphics/12010.png differ
diff --git a/desktop/assets/data/graphics/12011.png b/desktop/assets/data/graphics/12011.png
new file mode 100644
index 00000000..2e406212
Binary files /dev/null and b/desktop/assets/data/graphics/12011.png differ
diff --git a/desktop/assets/data/graphics/12012.png b/desktop/assets/data/graphics/12012.png
new file mode 100644
index 00000000..ae5d625d
Binary files /dev/null and b/desktop/assets/data/graphics/12012.png differ
diff --git a/desktop/assets/data/graphics/12013.png b/desktop/assets/data/graphics/12013.png
new file mode 100644
index 00000000..d7abb90b
Binary files /dev/null and b/desktop/assets/data/graphics/12013.png differ
diff --git a/desktop/assets/data/graphics/12014.png b/desktop/assets/data/graphics/12014.png
new file mode 100644
index 00000000..3b7287b4
Binary files /dev/null and b/desktop/assets/data/graphics/12014.png differ
diff --git a/desktop/assets/data/graphics/12015.png b/desktop/assets/data/graphics/12015.png
new file mode 100644
index 00000000..6b5c4780
Binary files /dev/null and b/desktop/assets/data/graphics/12015.png differ
diff --git a/desktop/assets/data/graphics/12016.png b/desktop/assets/data/graphics/12016.png
new file mode 100644
index 00000000..bb3da08b
Binary files /dev/null and b/desktop/assets/data/graphics/12016.png differ
diff --git a/desktop/assets/data/graphics/12017.png b/desktop/assets/data/graphics/12017.png
new file mode 100644
index 00000000..5c20eece
Binary files /dev/null and b/desktop/assets/data/graphics/12017.png differ
diff --git a/desktop/assets/data/graphics/12018.png b/desktop/assets/data/graphics/12018.png
new file mode 100644
index 00000000..4769fc09
Binary files /dev/null and b/desktop/assets/data/graphics/12018.png differ
diff --git a/desktop/assets/data/graphics/12019.png b/desktop/assets/data/graphics/12019.png
new file mode 100644
index 00000000..c9bb0ae1
Binary files /dev/null and b/desktop/assets/data/graphics/12019.png differ
diff --git a/desktop/assets/data/graphics/12020.png b/desktop/assets/data/graphics/12020.png
new file mode 100644
index 00000000..2c503027
Binary files /dev/null and b/desktop/assets/data/graphics/12020.png differ
diff --git a/desktop/assets/data/graphics/12021.png b/desktop/assets/data/graphics/12021.png
new file mode 100644
index 00000000..f2feef73
Binary files /dev/null and b/desktop/assets/data/graphics/12021.png differ
diff --git a/desktop/assets/data/graphics/12022.png b/desktop/assets/data/graphics/12022.png
new file mode 100644
index 00000000..dd3722da
Binary files /dev/null and b/desktop/assets/data/graphics/12022.png differ
diff --git a/desktop/assets/data/graphics/12023.png b/desktop/assets/data/graphics/12023.png
new file mode 100644
index 00000000..3daa20ad
Binary files /dev/null and b/desktop/assets/data/graphics/12023.png differ
diff --git a/desktop/assets/data/graphics/12024.png b/desktop/assets/data/graphics/12024.png
new file mode 100644
index 00000000..fade05cc
Binary files /dev/null and b/desktop/assets/data/graphics/12024.png differ
diff --git a/desktop/assets/data/graphics/12025.png b/desktop/assets/data/graphics/12025.png
new file mode 100644
index 00000000..58f23d48
Binary files /dev/null and b/desktop/assets/data/graphics/12025.png differ
diff --git a/desktop/assets/data/graphics/12026.png b/desktop/assets/data/graphics/12026.png
new file mode 100644
index 00000000..bac0f890
Binary files /dev/null and b/desktop/assets/data/graphics/12026.png differ
diff --git a/desktop/assets/data/graphics/12027.png b/desktop/assets/data/graphics/12027.png
new file mode 100644
index 00000000..64b5463c
Binary files /dev/null and b/desktop/assets/data/graphics/12027.png differ
diff --git a/desktop/assets/data/graphics/12028.png b/desktop/assets/data/graphics/12028.png
new file mode 100644
index 00000000..c16a15ae
Binary files /dev/null and b/desktop/assets/data/graphics/12028.png differ
diff --git a/desktop/assets/data/graphics/12029.png b/desktop/assets/data/graphics/12029.png
new file mode 100644
index 00000000..6918c4c8
Binary files /dev/null and b/desktop/assets/data/graphics/12029.png differ
diff --git a/desktop/assets/data/graphics/12030.png b/desktop/assets/data/graphics/12030.png
new file mode 100644
index 00000000..7a1187a3
Binary files /dev/null and b/desktop/assets/data/graphics/12030.png differ
diff --git a/desktop/assets/data/graphics/12031.png b/desktop/assets/data/graphics/12031.png
new file mode 100644
index 00000000..3f89bb55
Binary files /dev/null and b/desktop/assets/data/graphics/12031.png differ
diff --git a/desktop/assets/data/graphics/12032.png b/desktop/assets/data/graphics/12032.png
new file mode 100644
index 00000000..7d822de5
Binary files /dev/null and b/desktop/assets/data/graphics/12032.png differ
diff --git a/desktop/assets/data/graphics/12033.png b/desktop/assets/data/graphics/12033.png
new file mode 100644
index 00000000..c8a3cf19
Binary files /dev/null and b/desktop/assets/data/graphics/12033.png differ
diff --git a/desktop/assets/data/graphics/12034.png b/desktop/assets/data/graphics/12034.png
new file mode 100644
index 00000000..2f985886
Binary files /dev/null and b/desktop/assets/data/graphics/12034.png differ
diff --git a/desktop/assets/data/graphics/12035.png b/desktop/assets/data/graphics/12035.png
new file mode 100644
index 00000000..9dd24b39
Binary files /dev/null and b/desktop/assets/data/graphics/12035.png differ
diff --git a/desktop/assets/data/graphics/12036.png b/desktop/assets/data/graphics/12036.png
new file mode 100644
index 00000000..3e363ee3
Binary files /dev/null and b/desktop/assets/data/graphics/12036.png differ
diff --git a/desktop/assets/data/graphics/12037.png b/desktop/assets/data/graphics/12037.png
new file mode 100644
index 00000000..0f37872d
Binary files /dev/null and b/desktop/assets/data/graphics/12037.png differ
diff --git a/desktop/assets/data/graphics/12038.png b/desktop/assets/data/graphics/12038.png
new file mode 100644
index 00000000..c391502c
Binary files /dev/null and b/desktop/assets/data/graphics/12038.png differ
diff --git a/desktop/assets/data/graphics/12039.png b/desktop/assets/data/graphics/12039.png
new file mode 100644
index 00000000..eda1b37f
Binary files /dev/null and b/desktop/assets/data/graphics/12039.png differ
diff --git a/desktop/assets/data/graphics/12040.png b/desktop/assets/data/graphics/12040.png
new file mode 100644
index 00000000..23b981f5
Binary files /dev/null and b/desktop/assets/data/graphics/12040.png differ
diff --git a/desktop/assets/data/graphics/12041.png b/desktop/assets/data/graphics/12041.png
new file mode 100644
index 00000000..53d87782
Binary files /dev/null and b/desktop/assets/data/graphics/12041.png differ
diff --git a/desktop/assets/data/graphics/12042.png b/desktop/assets/data/graphics/12042.png
new file mode 100644
index 00000000..84c49065
Binary files /dev/null and b/desktop/assets/data/graphics/12042.png differ
diff --git a/desktop/assets/data/graphics/12043.png b/desktop/assets/data/graphics/12043.png
new file mode 100644
index 00000000..39a8d587
Binary files /dev/null and b/desktop/assets/data/graphics/12043.png differ
diff --git a/desktop/assets/data/graphics/12044.png b/desktop/assets/data/graphics/12044.png
new file mode 100644
index 00000000..2c503027
Binary files /dev/null and b/desktop/assets/data/graphics/12044.png differ
diff --git a/desktop/assets/data/graphics/12045.png b/desktop/assets/data/graphics/12045.png
new file mode 100644
index 00000000..64cce892
Binary files /dev/null and b/desktop/assets/data/graphics/12045.png differ
diff --git a/desktop/assets/data/graphics/12046.png b/desktop/assets/data/graphics/12046.png
new file mode 100644
index 00000000..60c86e86
Binary files /dev/null and b/desktop/assets/data/graphics/12046.png differ
diff --git a/desktop/assets/data/graphics/12047.png b/desktop/assets/data/graphics/12047.png
new file mode 100644
index 00000000..4fde17d5
Binary files /dev/null and b/desktop/assets/data/graphics/12047.png differ
diff --git a/desktop/assets/data/graphics/12048.png b/desktop/assets/data/graphics/12048.png
new file mode 100644
index 00000000..931333d6
Binary files /dev/null and b/desktop/assets/data/graphics/12048.png differ
diff --git a/desktop/assets/data/graphics/12049.png b/desktop/assets/data/graphics/12049.png
new file mode 100644
index 00000000..8d20b780
Binary files /dev/null and b/desktop/assets/data/graphics/12049.png differ
diff --git a/desktop/assets/data/graphics/12050.png b/desktop/assets/data/graphics/12050.png
new file mode 100644
index 00000000..050ae73f
Binary files /dev/null and b/desktop/assets/data/graphics/12050.png differ
diff --git a/desktop/assets/data/graphics/12051.png b/desktop/assets/data/graphics/12051.png
new file mode 100644
index 00000000..6d0b88ca
Binary files /dev/null and b/desktop/assets/data/graphics/12051.png differ
diff --git a/desktop/assets/data/graphics/12052.png b/desktop/assets/data/graphics/12052.png
new file mode 100644
index 00000000..a9481a5f
Binary files /dev/null and b/desktop/assets/data/graphics/12052.png differ
diff --git a/desktop/assets/data/graphics/12053.png b/desktop/assets/data/graphics/12053.png
new file mode 100644
index 00000000..5f400e78
Binary files /dev/null and b/desktop/assets/data/graphics/12053.png differ
diff --git a/desktop/assets/data/graphics/12054.png b/desktop/assets/data/graphics/12054.png
new file mode 100644
index 00000000..c5749d7f
Binary files /dev/null and b/desktop/assets/data/graphics/12054.png differ
diff --git a/desktop/assets/data/graphics/12055.png b/desktop/assets/data/graphics/12055.png
new file mode 100644
index 00000000..6768e6e5
Binary files /dev/null and b/desktop/assets/data/graphics/12055.png differ
diff --git a/desktop/assets/data/graphics/12056.png b/desktop/assets/data/graphics/12056.png
new file mode 100644
index 00000000..1cd095ce
Binary files /dev/null and b/desktop/assets/data/graphics/12056.png differ
diff --git a/desktop/assets/data/graphics/12057.png b/desktop/assets/data/graphics/12057.png
new file mode 100644
index 00000000..624824c6
Binary files /dev/null and b/desktop/assets/data/graphics/12057.png differ
diff --git a/desktop/assets/data/graphics/12058.png b/desktop/assets/data/graphics/12058.png
new file mode 100644
index 00000000..c140071b
Binary files /dev/null and b/desktop/assets/data/graphics/12058.png differ
diff --git a/desktop/assets/data/graphics/12059.png b/desktop/assets/data/graphics/12059.png
new file mode 100644
index 00000000..e45b5d5b
Binary files /dev/null and b/desktop/assets/data/graphics/12059.png differ
diff --git a/desktop/assets/data/graphics/12060.png b/desktop/assets/data/graphics/12060.png
new file mode 100644
index 00000000..29a5eb11
Binary files /dev/null and b/desktop/assets/data/graphics/12060.png differ
diff --git a/desktop/assets/data/graphics/12061.png b/desktop/assets/data/graphics/12061.png
new file mode 100644
index 00000000..b790f10e
Binary files /dev/null and b/desktop/assets/data/graphics/12061.png differ
diff --git a/desktop/assets/data/graphics/12062.png b/desktop/assets/data/graphics/12062.png
new file mode 100644
index 00000000..8eb3e7b5
Binary files /dev/null and b/desktop/assets/data/graphics/12062.png differ
diff --git a/desktop/assets/data/graphics/12063.png b/desktop/assets/data/graphics/12063.png
new file mode 100644
index 00000000..27add120
Binary files /dev/null and b/desktop/assets/data/graphics/12063.png differ
diff --git a/desktop/assets/data/graphics/12064.png b/desktop/assets/data/graphics/12064.png
new file mode 100644
index 00000000..8a9adeea
Binary files /dev/null and b/desktop/assets/data/graphics/12064.png differ
diff --git a/desktop/assets/data/graphics/12065.png b/desktop/assets/data/graphics/12065.png
new file mode 100644
index 00000000..25c15364
Binary files /dev/null and b/desktop/assets/data/graphics/12065.png differ
diff --git a/desktop/assets/data/graphics/12066.png b/desktop/assets/data/graphics/12066.png
new file mode 100644
index 00000000..34eb0b83
Binary files /dev/null and b/desktop/assets/data/graphics/12066.png differ
diff --git a/desktop/assets/data/graphics/12067.png b/desktop/assets/data/graphics/12067.png
new file mode 100644
index 00000000..06367fab
Binary files /dev/null and b/desktop/assets/data/graphics/12067.png differ
diff --git a/desktop/assets/data/graphics/12068.png b/desktop/assets/data/graphics/12068.png
new file mode 100644
index 00000000..074b83f3
Binary files /dev/null and b/desktop/assets/data/graphics/12068.png differ
diff --git a/desktop/assets/data/graphics/12069.png b/desktop/assets/data/graphics/12069.png
new file mode 100644
index 00000000..77d78583
Binary files /dev/null and b/desktop/assets/data/graphics/12069.png differ
diff --git a/desktop/assets/data/graphics/12070.png b/desktop/assets/data/graphics/12070.png
new file mode 100644
index 00000000..55f14abb
Binary files /dev/null and b/desktop/assets/data/graphics/12070.png differ
diff --git a/desktop/assets/data/graphics/12071.png b/desktop/assets/data/graphics/12071.png
new file mode 100644
index 00000000..9838ad38
Binary files /dev/null and b/desktop/assets/data/graphics/12071.png differ
diff --git a/desktop/assets/data/graphics/12072.png b/desktop/assets/data/graphics/12072.png
new file mode 100644
index 00000000..e03a6318
Binary files /dev/null and b/desktop/assets/data/graphics/12072.png differ
diff --git a/desktop/assets/data/graphics/12073.png b/desktop/assets/data/graphics/12073.png
new file mode 100644
index 00000000..bf5acf2a
Binary files /dev/null and b/desktop/assets/data/graphics/12073.png differ
diff --git a/desktop/assets/data/graphics/12074.png b/desktop/assets/data/graphics/12074.png
new file mode 100644
index 00000000..b32b749e
Binary files /dev/null and b/desktop/assets/data/graphics/12074.png differ
diff --git a/desktop/assets/data/graphics/12075.png b/desktop/assets/data/graphics/12075.png
new file mode 100644
index 00000000..7d937617
Binary files /dev/null and b/desktop/assets/data/graphics/12075.png differ
diff --git a/desktop/assets/data/graphics/12076.png b/desktop/assets/data/graphics/12076.png
new file mode 100644
index 00000000..9d85e7a5
Binary files /dev/null and b/desktop/assets/data/graphics/12076.png differ
diff --git a/desktop/assets/data/graphics/12077.png b/desktop/assets/data/graphics/12077.png
new file mode 100644
index 00000000..4debe900
Binary files /dev/null and b/desktop/assets/data/graphics/12077.png differ
diff --git a/desktop/assets/data/graphics/12078.png b/desktop/assets/data/graphics/12078.png
new file mode 100644
index 00000000..2e55b67b
Binary files /dev/null and b/desktop/assets/data/graphics/12078.png differ
diff --git a/desktop/assets/data/graphics/12079.png b/desktop/assets/data/graphics/12079.png
new file mode 100644
index 00000000..e4c64481
Binary files /dev/null and b/desktop/assets/data/graphics/12079.png differ
diff --git a/desktop/assets/data/graphics/12080.png b/desktop/assets/data/graphics/12080.png
new file mode 100644
index 00000000..98e8948f
Binary files /dev/null and b/desktop/assets/data/graphics/12080.png differ
diff --git a/desktop/assets/data/graphics/12081.png b/desktop/assets/data/graphics/12081.png
new file mode 100644
index 00000000..02dbf6de
Binary files /dev/null and b/desktop/assets/data/graphics/12081.png differ
diff --git a/desktop/assets/data/graphics/12082.png b/desktop/assets/data/graphics/12082.png
new file mode 100644
index 00000000..92c19a69
Binary files /dev/null and b/desktop/assets/data/graphics/12082.png differ
diff --git a/desktop/assets/data/graphics/12083.png b/desktop/assets/data/graphics/12083.png
new file mode 100644
index 00000000..cebe94d3
Binary files /dev/null and b/desktop/assets/data/graphics/12083.png differ
diff --git a/desktop/assets/data/graphics/12084.png b/desktop/assets/data/graphics/12084.png
new file mode 100644
index 00000000..225d5c3f
Binary files /dev/null and b/desktop/assets/data/graphics/12084.png differ
diff --git a/desktop/assets/data/graphics/12085.png b/desktop/assets/data/graphics/12085.png
new file mode 100644
index 00000000..686fc79f
Binary files /dev/null and b/desktop/assets/data/graphics/12085.png differ
diff --git a/desktop/assets/data/graphics/12086.png b/desktop/assets/data/graphics/12086.png
new file mode 100644
index 00000000..0cd059b2
Binary files /dev/null and b/desktop/assets/data/graphics/12086.png differ
diff --git a/desktop/assets/data/graphics/12087.png b/desktop/assets/data/graphics/12087.png
new file mode 100644
index 00000000..645db871
Binary files /dev/null and b/desktop/assets/data/graphics/12087.png differ
diff --git a/desktop/assets/data/graphics/12088.png b/desktop/assets/data/graphics/12088.png
new file mode 100644
index 00000000..4e1c382b
Binary files /dev/null and b/desktop/assets/data/graphics/12088.png differ
diff --git a/desktop/assets/data/graphics/12089.png b/desktop/assets/data/graphics/12089.png
new file mode 100644
index 00000000..7e4178e4
Binary files /dev/null and b/desktop/assets/data/graphics/12089.png differ
diff --git a/desktop/assets/data/graphics/12090.png b/desktop/assets/data/graphics/12090.png
new file mode 100644
index 00000000..686fc79f
Binary files /dev/null and b/desktop/assets/data/graphics/12090.png differ
diff --git a/desktop/assets/data/graphics/12091.png b/desktop/assets/data/graphics/12091.png
new file mode 100644
index 00000000..724f2143
Binary files /dev/null and b/desktop/assets/data/graphics/12091.png differ
diff --git a/desktop/assets/data/graphics/12092.png b/desktop/assets/data/graphics/12092.png
new file mode 100644
index 00000000..5d8a57e4
Binary files /dev/null and b/desktop/assets/data/graphics/12092.png differ
diff --git a/desktop/assets/data/graphics/12093.png b/desktop/assets/data/graphics/12093.png
new file mode 100644
index 00000000..f083c933
Binary files /dev/null and b/desktop/assets/data/graphics/12093.png differ
diff --git a/desktop/assets/data/graphics/121.png b/desktop/assets/data/graphics/121.png
new file mode 100644
index 00000000..187de61a
Binary files /dev/null and b/desktop/assets/data/graphics/121.png differ
diff --git a/desktop/assets/data/graphics/122.png b/desktop/assets/data/graphics/122.png
new file mode 100644
index 00000000..5a515f41
Binary files /dev/null and b/desktop/assets/data/graphics/122.png differ
diff --git a/desktop/assets/data/graphics/123.png b/desktop/assets/data/graphics/123.png
new file mode 100644
index 00000000..8380ce0a
Binary files /dev/null and b/desktop/assets/data/graphics/123.png differ
diff --git a/desktop/assets/data/graphics/124.png b/desktop/assets/data/graphics/124.png
new file mode 100644
index 00000000..18db561a
Binary files /dev/null and b/desktop/assets/data/graphics/124.png differ
diff --git a/desktop/assets/data/graphics/125.png b/desktop/assets/data/graphics/125.png
new file mode 100644
index 00000000..beddeac0
Binary files /dev/null and b/desktop/assets/data/graphics/125.png differ
diff --git a/desktop/assets/data/graphics/126.png b/desktop/assets/data/graphics/126.png
new file mode 100644
index 00000000..19457714
Binary files /dev/null and b/desktop/assets/data/graphics/126.png differ
diff --git a/desktop/assets/data/graphics/127.png b/desktop/assets/data/graphics/127.png
new file mode 100644
index 00000000..fba97da2
Binary files /dev/null and b/desktop/assets/data/graphics/127.png differ
diff --git a/desktop/assets/data/graphics/128.png b/desktop/assets/data/graphics/128.png
new file mode 100644
index 00000000..dc532131
Binary files /dev/null and b/desktop/assets/data/graphics/128.png differ
diff --git a/desktop/assets/data/graphics/129.png b/desktop/assets/data/graphics/129.png
new file mode 100644
index 00000000..fff3e5b9
Binary files /dev/null and b/desktop/assets/data/graphics/129.png differ
diff --git a/desktop/assets/data/graphics/13.png b/desktop/assets/data/graphics/13.png
new file mode 100644
index 00000000..204703f3
Binary files /dev/null and b/desktop/assets/data/graphics/13.png differ
diff --git a/desktop/assets/data/graphics/130.png b/desktop/assets/data/graphics/130.png
new file mode 100644
index 00000000..c83742e7
Binary files /dev/null and b/desktop/assets/data/graphics/130.png differ
diff --git a/desktop/assets/data/graphics/13000.png b/desktop/assets/data/graphics/13000.png
new file mode 100644
index 00000000..9681938a
Binary files /dev/null and b/desktop/assets/data/graphics/13000.png differ
diff --git a/desktop/assets/data/graphics/13001.png b/desktop/assets/data/graphics/13001.png
new file mode 100644
index 00000000..cdbb8255
Binary files /dev/null and b/desktop/assets/data/graphics/13001.png differ
diff --git a/desktop/assets/data/graphics/13002.png b/desktop/assets/data/graphics/13002.png
new file mode 100644
index 00000000..b3aeeadd
Binary files /dev/null and b/desktop/assets/data/graphics/13002.png differ
diff --git a/desktop/assets/data/graphics/13003.png b/desktop/assets/data/graphics/13003.png
new file mode 100644
index 00000000..4eb50ded
Binary files /dev/null and b/desktop/assets/data/graphics/13003.png differ
diff --git a/desktop/assets/data/graphics/13004.png b/desktop/assets/data/graphics/13004.png
new file mode 100644
index 00000000..6dffcea6
Binary files /dev/null and b/desktop/assets/data/graphics/13004.png differ
diff --git a/desktop/assets/data/graphics/13005.png b/desktop/assets/data/graphics/13005.png
new file mode 100644
index 00000000..67a40d92
Binary files /dev/null and b/desktop/assets/data/graphics/13005.png differ
diff --git a/desktop/assets/data/graphics/13006.png b/desktop/assets/data/graphics/13006.png
new file mode 100644
index 00000000..2644d906
Binary files /dev/null and b/desktop/assets/data/graphics/13006.png differ
diff --git a/desktop/assets/data/graphics/13007.png b/desktop/assets/data/graphics/13007.png
new file mode 100644
index 00000000..6413d7ee
Binary files /dev/null and b/desktop/assets/data/graphics/13007.png differ
diff --git a/desktop/assets/data/graphics/13008.png b/desktop/assets/data/graphics/13008.png
new file mode 100644
index 00000000..c4c99600
Binary files /dev/null and b/desktop/assets/data/graphics/13008.png differ
diff --git a/desktop/assets/data/graphics/13009.png b/desktop/assets/data/graphics/13009.png
new file mode 100644
index 00000000..3ba440b3
Binary files /dev/null and b/desktop/assets/data/graphics/13009.png differ
diff --git a/desktop/assets/data/graphics/13010.png b/desktop/assets/data/graphics/13010.png
new file mode 100644
index 00000000..4dfa9f61
Binary files /dev/null and b/desktop/assets/data/graphics/13010.png differ
diff --git a/desktop/assets/data/graphics/13011.png b/desktop/assets/data/graphics/13011.png
new file mode 100644
index 00000000..46ed6abb
Binary files /dev/null and b/desktop/assets/data/graphics/13011.png differ
diff --git a/desktop/assets/data/graphics/13012.png b/desktop/assets/data/graphics/13012.png
new file mode 100644
index 00000000..bd646111
Binary files /dev/null and b/desktop/assets/data/graphics/13012.png differ
diff --git a/desktop/assets/data/graphics/13013.png b/desktop/assets/data/graphics/13013.png
new file mode 100644
index 00000000..832420ca
Binary files /dev/null and b/desktop/assets/data/graphics/13013.png differ
diff --git a/desktop/assets/data/graphics/13014.png b/desktop/assets/data/graphics/13014.png
new file mode 100644
index 00000000..511fbffa
Binary files /dev/null and b/desktop/assets/data/graphics/13014.png differ
diff --git a/desktop/assets/data/graphics/13015.png b/desktop/assets/data/graphics/13015.png
new file mode 100644
index 00000000..87350b55
Binary files /dev/null and b/desktop/assets/data/graphics/13015.png differ
diff --git a/desktop/assets/data/graphics/13016.png b/desktop/assets/data/graphics/13016.png
new file mode 100644
index 00000000..a765bc79
Binary files /dev/null and b/desktop/assets/data/graphics/13016.png differ
diff --git a/desktop/assets/data/graphics/13017.png b/desktop/assets/data/graphics/13017.png
new file mode 100644
index 00000000..086288f2
Binary files /dev/null and b/desktop/assets/data/graphics/13017.png differ
diff --git a/desktop/assets/data/graphics/13018.png b/desktop/assets/data/graphics/13018.png
new file mode 100644
index 00000000..5b678469
Binary files /dev/null and b/desktop/assets/data/graphics/13018.png differ
diff --git a/desktop/assets/data/graphics/13019.png b/desktop/assets/data/graphics/13019.png
new file mode 100644
index 00000000..ab3c4b4e
Binary files /dev/null and b/desktop/assets/data/graphics/13019.png differ
diff --git a/desktop/assets/data/graphics/13020.png b/desktop/assets/data/graphics/13020.png
new file mode 100644
index 00000000..41f20ddc
Binary files /dev/null and b/desktop/assets/data/graphics/13020.png differ
diff --git a/desktop/assets/data/graphics/13021.png b/desktop/assets/data/graphics/13021.png
new file mode 100644
index 00000000..8ddef0e4
Binary files /dev/null and b/desktop/assets/data/graphics/13021.png differ
diff --git a/desktop/assets/data/graphics/13022.png b/desktop/assets/data/graphics/13022.png
new file mode 100644
index 00000000..9779c8f8
Binary files /dev/null and b/desktop/assets/data/graphics/13022.png differ
diff --git a/desktop/assets/data/graphics/13023.png b/desktop/assets/data/graphics/13023.png
new file mode 100644
index 00000000..1468faa8
Binary files /dev/null and b/desktop/assets/data/graphics/13023.png differ
diff --git a/desktop/assets/data/graphics/13024.png b/desktop/assets/data/graphics/13024.png
new file mode 100644
index 00000000..376ffef7
Binary files /dev/null and b/desktop/assets/data/graphics/13024.png differ
diff --git a/desktop/assets/data/graphics/13025.png b/desktop/assets/data/graphics/13025.png
new file mode 100644
index 00000000..83f1fa96
Binary files /dev/null and b/desktop/assets/data/graphics/13025.png differ
diff --git a/desktop/assets/data/graphics/13026.png b/desktop/assets/data/graphics/13026.png
new file mode 100644
index 00000000..36de0e65
Binary files /dev/null and b/desktop/assets/data/graphics/13026.png differ
diff --git a/desktop/assets/data/graphics/13027.png b/desktop/assets/data/graphics/13027.png
new file mode 100644
index 00000000..43551627
Binary files /dev/null and b/desktop/assets/data/graphics/13027.png differ
diff --git a/desktop/assets/data/graphics/13028.png b/desktop/assets/data/graphics/13028.png
new file mode 100644
index 00000000..5b2be5e4
Binary files /dev/null and b/desktop/assets/data/graphics/13028.png differ
diff --git a/desktop/assets/data/graphics/13029.png b/desktop/assets/data/graphics/13029.png
new file mode 100644
index 00000000..34a12a5a
Binary files /dev/null and b/desktop/assets/data/graphics/13029.png differ
diff --git a/desktop/assets/data/graphics/13030.png b/desktop/assets/data/graphics/13030.png
new file mode 100644
index 00000000..73d885f5
Binary files /dev/null and b/desktop/assets/data/graphics/13030.png differ
diff --git a/desktop/assets/data/graphics/13031.png b/desktop/assets/data/graphics/13031.png
new file mode 100644
index 00000000..7bc2bc22
Binary files /dev/null and b/desktop/assets/data/graphics/13031.png differ
diff --git a/desktop/assets/data/graphics/131.png b/desktop/assets/data/graphics/131.png
new file mode 100644
index 00000000..15e5d464
Binary files /dev/null and b/desktop/assets/data/graphics/131.png differ
diff --git a/desktop/assets/data/graphics/132.png b/desktop/assets/data/graphics/132.png
new file mode 100644
index 00000000..15fbbfb5
Binary files /dev/null and b/desktop/assets/data/graphics/132.png differ
diff --git a/desktop/assets/data/graphics/133.png b/desktop/assets/data/graphics/133.png
new file mode 100644
index 00000000..1be5e92d
Binary files /dev/null and b/desktop/assets/data/graphics/133.png differ
diff --git a/desktop/assets/data/graphics/134.png b/desktop/assets/data/graphics/134.png
new file mode 100644
index 00000000..2b4bb348
Binary files /dev/null and b/desktop/assets/data/graphics/134.png differ
diff --git a/desktop/assets/data/graphics/135.png b/desktop/assets/data/graphics/135.png
new file mode 100644
index 00000000..1d284483
Binary files /dev/null and b/desktop/assets/data/graphics/135.png differ
diff --git a/desktop/assets/data/graphics/136.png b/desktop/assets/data/graphics/136.png
new file mode 100644
index 00000000..76ed232c
Binary files /dev/null and b/desktop/assets/data/graphics/136.png differ
diff --git a/desktop/assets/data/graphics/137.png b/desktop/assets/data/graphics/137.png
new file mode 100644
index 00000000..3a1dbd48
Binary files /dev/null and b/desktop/assets/data/graphics/137.png differ
diff --git a/desktop/assets/data/graphics/138.png b/desktop/assets/data/graphics/138.png
new file mode 100644
index 00000000..97fdd698
Binary files /dev/null and b/desktop/assets/data/graphics/138.png differ
diff --git a/desktop/assets/data/graphics/139.png b/desktop/assets/data/graphics/139.png
new file mode 100644
index 00000000..a1fd6c11
Binary files /dev/null and b/desktop/assets/data/graphics/139.png differ
diff --git a/desktop/assets/data/graphics/14.png b/desktop/assets/data/graphics/14.png
new file mode 100644
index 00000000..a6293cec
Binary files /dev/null and b/desktop/assets/data/graphics/14.png differ
diff --git a/desktop/assets/data/graphics/140.png b/desktop/assets/data/graphics/140.png
new file mode 100644
index 00000000..177869a6
Binary files /dev/null and b/desktop/assets/data/graphics/140.png differ
diff --git a/desktop/assets/data/graphics/14000.png b/desktop/assets/data/graphics/14000.png
new file mode 100644
index 00000000..e121f246
Binary files /dev/null and b/desktop/assets/data/graphics/14000.png differ
diff --git a/desktop/assets/data/graphics/14001.png b/desktop/assets/data/graphics/14001.png
new file mode 100644
index 00000000..279b5651
Binary files /dev/null and b/desktop/assets/data/graphics/14001.png differ
diff --git a/desktop/assets/data/graphics/14002.png b/desktop/assets/data/graphics/14002.png
new file mode 100644
index 00000000..628cce3f
Binary files /dev/null and b/desktop/assets/data/graphics/14002.png differ
diff --git a/desktop/assets/data/graphics/14003.png b/desktop/assets/data/graphics/14003.png
new file mode 100644
index 00000000..912194d8
Binary files /dev/null and b/desktop/assets/data/graphics/14003.png differ
diff --git a/desktop/assets/data/graphics/14004.png b/desktop/assets/data/graphics/14004.png
new file mode 100644
index 00000000..d306ca2f
Binary files /dev/null and b/desktop/assets/data/graphics/14004.png differ
diff --git a/desktop/assets/data/graphics/14005.png b/desktop/assets/data/graphics/14005.png
new file mode 100644
index 00000000..83c0c4aa
Binary files /dev/null and b/desktop/assets/data/graphics/14005.png differ
diff --git a/desktop/assets/data/graphics/14006.png b/desktop/assets/data/graphics/14006.png
new file mode 100644
index 00000000..172d3106
Binary files /dev/null and b/desktop/assets/data/graphics/14006.png differ
diff --git a/desktop/assets/data/graphics/14007.png b/desktop/assets/data/graphics/14007.png
new file mode 100644
index 00000000..fd296129
Binary files /dev/null and b/desktop/assets/data/graphics/14007.png differ
diff --git a/desktop/assets/data/graphics/14028.png b/desktop/assets/data/graphics/14028.png
new file mode 100644
index 00000000..ab1c8e27
Binary files /dev/null and b/desktop/assets/data/graphics/14028.png differ
diff --git a/desktop/assets/data/graphics/14029.png b/desktop/assets/data/graphics/14029.png
new file mode 100644
index 00000000..6693f6e0
Binary files /dev/null and b/desktop/assets/data/graphics/14029.png differ
diff --git a/desktop/assets/data/graphics/14030.png b/desktop/assets/data/graphics/14030.png
new file mode 100644
index 00000000..729e5749
Binary files /dev/null and b/desktop/assets/data/graphics/14030.png differ
diff --git a/desktop/assets/data/graphics/14031.png b/desktop/assets/data/graphics/14031.png
new file mode 100644
index 00000000..3ce9926b
Binary files /dev/null and b/desktop/assets/data/graphics/14031.png differ
diff --git a/desktop/assets/data/graphics/14032.png b/desktop/assets/data/graphics/14032.png
new file mode 100644
index 00000000..4a800bc2
Binary files /dev/null and b/desktop/assets/data/graphics/14032.png differ
diff --git a/desktop/assets/data/graphics/14033.png b/desktop/assets/data/graphics/14033.png
new file mode 100644
index 00000000..fd8c0908
Binary files /dev/null and b/desktop/assets/data/graphics/14033.png differ
diff --git a/desktop/assets/data/graphics/14034.png b/desktop/assets/data/graphics/14034.png
new file mode 100644
index 00000000..58ef9fca
Binary files /dev/null and b/desktop/assets/data/graphics/14034.png differ
diff --git a/desktop/assets/data/graphics/14035.png b/desktop/assets/data/graphics/14035.png
new file mode 100644
index 00000000..76a96188
Binary files /dev/null and b/desktop/assets/data/graphics/14035.png differ
diff --git a/desktop/assets/data/graphics/14036.png b/desktop/assets/data/graphics/14036.png
new file mode 100644
index 00000000..24416dca
Binary files /dev/null and b/desktop/assets/data/graphics/14036.png differ
diff --git a/desktop/assets/data/graphics/14037.png b/desktop/assets/data/graphics/14037.png
new file mode 100644
index 00000000..10790ab1
Binary files /dev/null and b/desktop/assets/data/graphics/14037.png differ
diff --git a/desktop/assets/data/graphics/14038.png b/desktop/assets/data/graphics/14038.png
new file mode 100644
index 00000000..ee3bea9d
Binary files /dev/null and b/desktop/assets/data/graphics/14038.png differ
diff --git a/desktop/assets/data/graphics/14039.png b/desktop/assets/data/graphics/14039.png
new file mode 100644
index 00000000..1015ed53
Binary files /dev/null and b/desktop/assets/data/graphics/14039.png differ
diff --git a/desktop/assets/data/graphics/141.png b/desktop/assets/data/graphics/141.png
new file mode 100644
index 00000000..7b1cb0e6
Binary files /dev/null and b/desktop/assets/data/graphics/141.png differ
diff --git a/desktop/assets/data/graphics/142.png b/desktop/assets/data/graphics/142.png
new file mode 100644
index 00000000..b5276f74
Binary files /dev/null and b/desktop/assets/data/graphics/142.png differ
diff --git a/desktop/assets/data/graphics/143.png b/desktop/assets/data/graphics/143.png
new file mode 100644
index 00000000..1ec76a1d
Binary files /dev/null and b/desktop/assets/data/graphics/143.png differ
diff --git a/desktop/assets/data/graphics/144.png b/desktop/assets/data/graphics/144.png
new file mode 100644
index 00000000..15e7c83f
Binary files /dev/null and b/desktop/assets/data/graphics/144.png differ
diff --git a/desktop/assets/data/graphics/145.png b/desktop/assets/data/graphics/145.png
new file mode 100644
index 00000000..bc8cd2c9
Binary files /dev/null and b/desktop/assets/data/graphics/145.png differ
diff --git a/desktop/assets/data/graphics/146.png b/desktop/assets/data/graphics/146.png
new file mode 100644
index 00000000..2a7f49ef
Binary files /dev/null and b/desktop/assets/data/graphics/146.png differ
diff --git a/desktop/assets/data/graphics/147.png b/desktop/assets/data/graphics/147.png
new file mode 100644
index 00000000..ae1e3b05
Binary files /dev/null and b/desktop/assets/data/graphics/147.png differ
diff --git a/desktop/assets/data/graphics/148.png b/desktop/assets/data/graphics/148.png
new file mode 100644
index 00000000..4230bf51
Binary files /dev/null and b/desktop/assets/data/graphics/148.png differ
diff --git a/desktop/assets/data/graphics/149.png b/desktop/assets/data/graphics/149.png
new file mode 100644
index 00000000..d3fdc8e7
Binary files /dev/null and b/desktop/assets/data/graphics/149.png differ
diff --git a/desktop/assets/data/graphics/15.png b/desktop/assets/data/graphics/15.png
new file mode 100644
index 00000000..e5158eaf
Binary files /dev/null and b/desktop/assets/data/graphics/15.png differ
diff --git a/desktop/assets/data/graphics/150.png b/desktop/assets/data/graphics/150.png
new file mode 100644
index 00000000..ea5c1c4e
Binary files /dev/null and b/desktop/assets/data/graphics/150.png differ
diff --git a/desktop/assets/data/graphics/15000.png b/desktop/assets/data/graphics/15000.png
new file mode 100644
index 00000000..5b77a56b
Binary files /dev/null and b/desktop/assets/data/graphics/15000.png differ
diff --git a/desktop/assets/data/graphics/15001.png b/desktop/assets/data/graphics/15001.png
new file mode 100644
index 00000000..f4e90812
Binary files /dev/null and b/desktop/assets/data/graphics/15001.png differ
diff --git a/desktop/assets/data/graphics/15002.png b/desktop/assets/data/graphics/15002.png
new file mode 100644
index 00000000..4a1a9cee
Binary files /dev/null and b/desktop/assets/data/graphics/15002.png differ
diff --git a/desktop/assets/data/graphics/15003.png b/desktop/assets/data/graphics/15003.png
new file mode 100644
index 00000000..c19a256f
Binary files /dev/null and b/desktop/assets/data/graphics/15003.png differ
diff --git a/desktop/assets/data/graphics/15004.png b/desktop/assets/data/graphics/15004.png
new file mode 100644
index 00000000..a3c759e4
Binary files /dev/null and b/desktop/assets/data/graphics/15004.png differ
diff --git a/desktop/assets/data/graphics/15005.png b/desktop/assets/data/graphics/15005.png
new file mode 100644
index 00000000..15c259f6
Binary files /dev/null and b/desktop/assets/data/graphics/15005.png differ
diff --git a/desktop/assets/data/graphics/15006.png b/desktop/assets/data/graphics/15006.png
new file mode 100644
index 00000000..dd39c28e
Binary files /dev/null and b/desktop/assets/data/graphics/15006.png differ
diff --git a/desktop/assets/data/graphics/15007.png b/desktop/assets/data/graphics/15007.png
new file mode 100644
index 00000000..24def201
Binary files /dev/null and b/desktop/assets/data/graphics/15007.png differ
diff --git a/desktop/assets/data/graphics/15008.png b/desktop/assets/data/graphics/15008.png
new file mode 100644
index 00000000..e3cfcbdf
Binary files /dev/null and b/desktop/assets/data/graphics/15008.png differ
diff --git a/desktop/assets/data/graphics/15009.png b/desktop/assets/data/graphics/15009.png
new file mode 100644
index 00000000..b31cea04
Binary files /dev/null and b/desktop/assets/data/graphics/15009.png differ
diff --git a/desktop/assets/data/graphics/15010.png b/desktop/assets/data/graphics/15010.png
new file mode 100644
index 00000000..5a273977
Binary files /dev/null and b/desktop/assets/data/graphics/15010.png differ
diff --git a/desktop/assets/data/graphics/15011.png b/desktop/assets/data/graphics/15011.png
new file mode 100644
index 00000000..98e2b351
Binary files /dev/null and b/desktop/assets/data/graphics/15011.png differ
diff --git a/desktop/assets/data/graphics/15012.png b/desktop/assets/data/graphics/15012.png
new file mode 100644
index 00000000..62a5873b
Binary files /dev/null and b/desktop/assets/data/graphics/15012.png differ
diff --git a/desktop/assets/data/graphics/15013.png b/desktop/assets/data/graphics/15013.png
new file mode 100644
index 00000000..af00dd38
Binary files /dev/null and b/desktop/assets/data/graphics/15013.png differ
diff --git a/desktop/assets/data/graphics/15014.png b/desktop/assets/data/graphics/15014.png
new file mode 100644
index 00000000..4218c4ab
Binary files /dev/null and b/desktop/assets/data/graphics/15014.png differ
diff --git a/desktop/assets/data/graphics/15015.png b/desktop/assets/data/graphics/15015.png
new file mode 100644
index 00000000..0878a6be
Binary files /dev/null and b/desktop/assets/data/graphics/15015.png differ
diff --git a/desktop/assets/data/graphics/15016.png b/desktop/assets/data/graphics/15016.png
new file mode 100644
index 00000000..d78040ca
Binary files /dev/null and b/desktop/assets/data/graphics/15016.png differ
diff --git a/desktop/assets/data/graphics/15017.png b/desktop/assets/data/graphics/15017.png
new file mode 100644
index 00000000..04f9bb94
Binary files /dev/null and b/desktop/assets/data/graphics/15017.png differ
diff --git a/desktop/assets/data/graphics/15018.png b/desktop/assets/data/graphics/15018.png
new file mode 100644
index 00000000..c74e0476
Binary files /dev/null and b/desktop/assets/data/graphics/15018.png differ
diff --git a/desktop/assets/data/graphics/15019.png b/desktop/assets/data/graphics/15019.png
new file mode 100644
index 00000000..e2fd3646
Binary files /dev/null and b/desktop/assets/data/graphics/15019.png differ
diff --git a/desktop/assets/data/graphics/15020.png b/desktop/assets/data/graphics/15020.png
new file mode 100644
index 00000000..dfeffaeb
Binary files /dev/null and b/desktop/assets/data/graphics/15020.png differ
diff --git a/desktop/assets/data/graphics/15021.png b/desktop/assets/data/graphics/15021.png
new file mode 100644
index 00000000..bb04aa7d
Binary files /dev/null and b/desktop/assets/data/graphics/15021.png differ
diff --git a/desktop/assets/data/graphics/15022.png b/desktop/assets/data/graphics/15022.png
new file mode 100644
index 00000000..07467439
Binary files /dev/null and b/desktop/assets/data/graphics/15022.png differ
diff --git a/desktop/assets/data/graphics/15023.png b/desktop/assets/data/graphics/15023.png
new file mode 100644
index 00000000..b16c7852
Binary files /dev/null and b/desktop/assets/data/graphics/15023.png differ
diff --git a/desktop/assets/data/graphics/15024.png b/desktop/assets/data/graphics/15024.png
new file mode 100644
index 00000000..2c83dab4
Binary files /dev/null and b/desktop/assets/data/graphics/15024.png differ
diff --git a/desktop/assets/data/graphics/15025.png b/desktop/assets/data/graphics/15025.png
new file mode 100644
index 00000000..a628f889
Binary files /dev/null and b/desktop/assets/data/graphics/15025.png differ
diff --git a/desktop/assets/data/graphics/15026.png b/desktop/assets/data/graphics/15026.png
new file mode 100644
index 00000000..b45303ba
Binary files /dev/null and b/desktop/assets/data/graphics/15026.png differ
diff --git a/desktop/assets/data/graphics/15027.png b/desktop/assets/data/graphics/15027.png
new file mode 100644
index 00000000..ec005431
Binary files /dev/null and b/desktop/assets/data/graphics/15027.png differ
diff --git a/desktop/assets/data/graphics/15028.png b/desktop/assets/data/graphics/15028.png
new file mode 100644
index 00000000..e665b5df
Binary files /dev/null and b/desktop/assets/data/graphics/15028.png differ
diff --git a/desktop/assets/data/graphics/15029.png b/desktop/assets/data/graphics/15029.png
new file mode 100644
index 00000000..a171eab0
Binary files /dev/null and b/desktop/assets/data/graphics/15029.png differ
diff --git a/desktop/assets/data/graphics/15030.png b/desktop/assets/data/graphics/15030.png
new file mode 100644
index 00000000..3e4d165c
Binary files /dev/null and b/desktop/assets/data/graphics/15030.png differ
diff --git a/desktop/assets/data/graphics/15031.png b/desktop/assets/data/graphics/15031.png
new file mode 100644
index 00000000..d3482b7c
Binary files /dev/null and b/desktop/assets/data/graphics/15031.png differ
diff --git a/desktop/assets/data/graphics/15032.png b/desktop/assets/data/graphics/15032.png
new file mode 100644
index 00000000..a2e45858
Binary files /dev/null and b/desktop/assets/data/graphics/15032.png differ
diff --git a/desktop/assets/data/graphics/15033.png b/desktop/assets/data/graphics/15033.png
new file mode 100644
index 00000000..b8548c3f
Binary files /dev/null and b/desktop/assets/data/graphics/15033.png differ
diff --git a/desktop/assets/data/graphics/15034.png b/desktop/assets/data/graphics/15034.png
new file mode 100644
index 00000000..695a05af
Binary files /dev/null and b/desktop/assets/data/graphics/15034.png differ
diff --git a/desktop/assets/data/graphics/15035.png b/desktop/assets/data/graphics/15035.png
new file mode 100644
index 00000000..da9dc3c7
Binary files /dev/null and b/desktop/assets/data/graphics/15035.png differ
diff --git a/desktop/assets/data/graphics/15036.png b/desktop/assets/data/graphics/15036.png
new file mode 100644
index 00000000..94dfab27
Binary files /dev/null and b/desktop/assets/data/graphics/15036.png differ
diff --git a/desktop/assets/data/graphics/15037.png b/desktop/assets/data/graphics/15037.png
new file mode 100644
index 00000000..820567f3
Binary files /dev/null and b/desktop/assets/data/graphics/15037.png differ
diff --git a/desktop/assets/data/graphics/15038.png b/desktop/assets/data/graphics/15038.png
new file mode 100644
index 00000000..7f73e95f
Binary files /dev/null and b/desktop/assets/data/graphics/15038.png differ
diff --git a/desktop/assets/data/graphics/15039.png b/desktop/assets/data/graphics/15039.png
new file mode 100644
index 00000000..bb6a1fd1
Binary files /dev/null and b/desktop/assets/data/graphics/15039.png differ
diff --git a/desktop/assets/data/graphics/15040.png b/desktop/assets/data/graphics/15040.png
new file mode 100644
index 00000000..4092fb6f
Binary files /dev/null and b/desktop/assets/data/graphics/15040.png differ
diff --git a/desktop/assets/data/graphics/15041.png b/desktop/assets/data/graphics/15041.png
new file mode 100644
index 00000000..fa111a69
Binary files /dev/null and b/desktop/assets/data/graphics/15041.png differ
diff --git a/desktop/assets/data/graphics/15042.png b/desktop/assets/data/graphics/15042.png
new file mode 100644
index 00000000..38436624
Binary files /dev/null and b/desktop/assets/data/graphics/15042.png differ
diff --git a/desktop/assets/data/graphics/15043.png b/desktop/assets/data/graphics/15043.png
new file mode 100644
index 00000000..81a866a0
Binary files /dev/null and b/desktop/assets/data/graphics/15043.png differ
diff --git a/desktop/assets/data/graphics/15044.png b/desktop/assets/data/graphics/15044.png
new file mode 100644
index 00000000..f885fc77
Binary files /dev/null and b/desktop/assets/data/graphics/15044.png differ
diff --git a/desktop/assets/data/graphics/15045.png b/desktop/assets/data/graphics/15045.png
new file mode 100644
index 00000000..72aaa660
Binary files /dev/null and b/desktop/assets/data/graphics/15045.png differ
diff --git a/desktop/assets/data/graphics/15046.png b/desktop/assets/data/graphics/15046.png
new file mode 100644
index 00000000..9e3f79a9
Binary files /dev/null and b/desktop/assets/data/graphics/15046.png differ
diff --git a/desktop/assets/data/graphics/15047.png b/desktop/assets/data/graphics/15047.png
new file mode 100644
index 00000000..61d9e847
Binary files /dev/null and b/desktop/assets/data/graphics/15047.png differ
diff --git a/desktop/assets/data/graphics/15048.png b/desktop/assets/data/graphics/15048.png
new file mode 100644
index 00000000..841fc08a
Binary files /dev/null and b/desktop/assets/data/graphics/15048.png differ
diff --git a/desktop/assets/data/graphics/15049.png b/desktop/assets/data/graphics/15049.png
new file mode 100644
index 00000000..c3d4d09b
Binary files /dev/null and b/desktop/assets/data/graphics/15049.png differ
diff --git a/desktop/assets/data/graphics/15050.png b/desktop/assets/data/graphics/15050.png
new file mode 100644
index 00000000..44fe8601
Binary files /dev/null and b/desktop/assets/data/graphics/15050.png differ
diff --git a/desktop/assets/data/graphics/15051.png b/desktop/assets/data/graphics/15051.png
new file mode 100644
index 00000000..4bee5a8d
Binary files /dev/null and b/desktop/assets/data/graphics/15051.png differ
diff --git a/desktop/assets/data/graphics/15052.png b/desktop/assets/data/graphics/15052.png
new file mode 100644
index 00000000..a65a38a7
Binary files /dev/null and b/desktop/assets/data/graphics/15052.png differ
diff --git a/desktop/assets/data/graphics/15053.png b/desktop/assets/data/graphics/15053.png
new file mode 100644
index 00000000..56a7c614
Binary files /dev/null and b/desktop/assets/data/graphics/15053.png differ
diff --git a/desktop/assets/data/graphics/15054.png b/desktop/assets/data/graphics/15054.png
new file mode 100644
index 00000000..0c3fc2fa
Binary files /dev/null and b/desktop/assets/data/graphics/15054.png differ
diff --git a/desktop/assets/data/graphics/15055.png b/desktop/assets/data/graphics/15055.png
new file mode 100644
index 00000000..0ee3c40d
Binary files /dev/null and b/desktop/assets/data/graphics/15055.png differ
diff --git a/desktop/assets/data/graphics/15056.png b/desktop/assets/data/graphics/15056.png
new file mode 100644
index 00000000..d4050d90
Binary files /dev/null and b/desktop/assets/data/graphics/15056.png differ
diff --git a/desktop/assets/data/graphics/15057.png b/desktop/assets/data/graphics/15057.png
new file mode 100644
index 00000000..9bdfe9e6
Binary files /dev/null and b/desktop/assets/data/graphics/15057.png differ
diff --git a/desktop/assets/data/graphics/15058.png b/desktop/assets/data/graphics/15058.png
new file mode 100644
index 00000000..472b3dfb
Binary files /dev/null and b/desktop/assets/data/graphics/15058.png differ
diff --git a/desktop/assets/data/graphics/15059.png b/desktop/assets/data/graphics/15059.png
new file mode 100644
index 00000000..f113b632
Binary files /dev/null and b/desktop/assets/data/graphics/15059.png differ
diff --git a/desktop/assets/data/graphics/15060.png b/desktop/assets/data/graphics/15060.png
new file mode 100644
index 00000000..08830fbd
Binary files /dev/null and b/desktop/assets/data/graphics/15060.png differ
diff --git a/desktop/assets/data/graphics/15061.png b/desktop/assets/data/graphics/15061.png
new file mode 100644
index 00000000..4626405f
Binary files /dev/null and b/desktop/assets/data/graphics/15061.png differ
diff --git a/desktop/assets/data/graphics/15062.png b/desktop/assets/data/graphics/15062.png
new file mode 100644
index 00000000..5dbc303a
Binary files /dev/null and b/desktop/assets/data/graphics/15062.png differ
diff --git a/desktop/assets/data/graphics/15063.png b/desktop/assets/data/graphics/15063.png
new file mode 100644
index 00000000..5ab22deb
Binary files /dev/null and b/desktop/assets/data/graphics/15063.png differ
diff --git a/desktop/assets/data/graphics/15064.png b/desktop/assets/data/graphics/15064.png
new file mode 100644
index 00000000..5a22f474
Binary files /dev/null and b/desktop/assets/data/graphics/15064.png differ
diff --git a/desktop/assets/data/graphics/15065.png b/desktop/assets/data/graphics/15065.png
new file mode 100644
index 00000000..0ad6fac7
Binary files /dev/null and b/desktop/assets/data/graphics/15065.png differ
diff --git a/desktop/assets/data/graphics/15066.png b/desktop/assets/data/graphics/15066.png
new file mode 100644
index 00000000..47f04ea0
Binary files /dev/null and b/desktop/assets/data/graphics/15066.png differ
diff --git a/desktop/assets/data/graphics/15067.png b/desktop/assets/data/graphics/15067.png
new file mode 100644
index 00000000..e811fcbc
Binary files /dev/null and b/desktop/assets/data/graphics/15067.png differ
diff --git a/desktop/assets/data/graphics/15068.png b/desktop/assets/data/graphics/15068.png
new file mode 100644
index 00000000..2e867875
Binary files /dev/null and b/desktop/assets/data/graphics/15068.png differ
diff --git a/desktop/assets/data/graphics/15069.png b/desktop/assets/data/graphics/15069.png
new file mode 100644
index 00000000..0f8a12fa
Binary files /dev/null and b/desktop/assets/data/graphics/15069.png differ
diff --git a/desktop/assets/data/graphics/15070.png b/desktop/assets/data/graphics/15070.png
new file mode 100644
index 00000000..cf8be83e
Binary files /dev/null and b/desktop/assets/data/graphics/15070.png differ
diff --git a/desktop/assets/data/graphics/15071.png b/desktop/assets/data/graphics/15071.png
new file mode 100644
index 00000000..0aa9da3d
Binary files /dev/null and b/desktop/assets/data/graphics/15071.png differ
diff --git a/desktop/assets/data/graphics/15072.png b/desktop/assets/data/graphics/15072.png
new file mode 100644
index 00000000..bb684bcb
Binary files /dev/null and b/desktop/assets/data/graphics/15072.png differ
diff --git a/desktop/assets/data/graphics/15073.png b/desktop/assets/data/graphics/15073.png
new file mode 100644
index 00000000..63b36dbc
Binary files /dev/null and b/desktop/assets/data/graphics/15073.png differ
diff --git a/desktop/assets/data/graphics/15074.png b/desktop/assets/data/graphics/15074.png
new file mode 100644
index 00000000..8b6f1b78
Binary files /dev/null and b/desktop/assets/data/graphics/15074.png differ
diff --git a/desktop/assets/data/graphics/15075.png b/desktop/assets/data/graphics/15075.png
new file mode 100644
index 00000000..909b81ea
Binary files /dev/null and b/desktop/assets/data/graphics/15075.png differ
diff --git a/desktop/assets/data/graphics/15076.png b/desktop/assets/data/graphics/15076.png
new file mode 100644
index 00000000..47fee04c
Binary files /dev/null and b/desktop/assets/data/graphics/15076.png differ
diff --git a/desktop/assets/data/graphics/15077.png b/desktop/assets/data/graphics/15077.png
new file mode 100644
index 00000000..5334b0ec
Binary files /dev/null and b/desktop/assets/data/graphics/15077.png differ
diff --git a/desktop/assets/data/graphics/15078.png b/desktop/assets/data/graphics/15078.png
new file mode 100644
index 00000000..f64ae140
Binary files /dev/null and b/desktop/assets/data/graphics/15078.png differ
diff --git a/desktop/assets/data/graphics/15079.png b/desktop/assets/data/graphics/15079.png
new file mode 100644
index 00000000..fc8b57a1
Binary files /dev/null and b/desktop/assets/data/graphics/15079.png differ
diff --git a/desktop/assets/data/graphics/15080.png b/desktop/assets/data/graphics/15080.png
new file mode 100644
index 00000000..3e4d165c
Binary files /dev/null and b/desktop/assets/data/graphics/15080.png differ
diff --git a/desktop/assets/data/graphics/15081.png b/desktop/assets/data/graphics/15081.png
new file mode 100644
index 00000000..a0d1d679
Binary files /dev/null and b/desktop/assets/data/graphics/15081.png differ
diff --git a/desktop/assets/data/graphics/15082.png b/desktop/assets/data/graphics/15082.png
new file mode 100644
index 00000000..ecd7e573
Binary files /dev/null and b/desktop/assets/data/graphics/15082.png differ
diff --git a/desktop/assets/data/graphics/15083.png b/desktop/assets/data/graphics/15083.png
new file mode 100644
index 00000000..d8614111
Binary files /dev/null and b/desktop/assets/data/graphics/15083.png differ
diff --git a/desktop/assets/data/graphics/15084.png b/desktop/assets/data/graphics/15084.png
new file mode 100644
index 00000000..ec6b987d
Binary files /dev/null and b/desktop/assets/data/graphics/15084.png differ
diff --git a/desktop/assets/data/graphics/15085.png b/desktop/assets/data/graphics/15085.png
new file mode 100644
index 00000000..aff55a8b
Binary files /dev/null and b/desktop/assets/data/graphics/15085.png differ
diff --git a/desktop/assets/data/graphics/15086.png b/desktop/assets/data/graphics/15086.png
new file mode 100644
index 00000000..db91157a
Binary files /dev/null and b/desktop/assets/data/graphics/15086.png differ
diff --git a/desktop/assets/data/graphics/15087.png b/desktop/assets/data/graphics/15087.png
new file mode 100644
index 00000000..e952b291
Binary files /dev/null and b/desktop/assets/data/graphics/15087.png differ
diff --git a/desktop/assets/data/graphics/15088.png b/desktop/assets/data/graphics/15088.png
new file mode 100644
index 00000000..e16c70fb
Binary files /dev/null and b/desktop/assets/data/graphics/15088.png differ
diff --git a/desktop/assets/data/graphics/15089.png b/desktop/assets/data/graphics/15089.png
new file mode 100644
index 00000000..67776970
Binary files /dev/null and b/desktop/assets/data/graphics/15089.png differ
diff --git a/desktop/assets/data/graphics/15090.png b/desktop/assets/data/graphics/15090.png
new file mode 100644
index 00000000..853f6e24
Binary files /dev/null and b/desktop/assets/data/graphics/15090.png differ
diff --git a/desktop/assets/data/graphics/15091.png b/desktop/assets/data/graphics/15091.png
new file mode 100644
index 00000000..1114feb9
Binary files /dev/null and b/desktop/assets/data/graphics/15091.png differ
diff --git a/desktop/assets/data/graphics/15092.png b/desktop/assets/data/graphics/15092.png
new file mode 100644
index 00000000..565000df
Binary files /dev/null and b/desktop/assets/data/graphics/15092.png differ
diff --git a/desktop/assets/data/graphics/15093.png b/desktop/assets/data/graphics/15093.png
new file mode 100644
index 00000000..1628c7ab
Binary files /dev/null and b/desktop/assets/data/graphics/15093.png differ
diff --git a/desktop/assets/data/graphics/15094.png b/desktop/assets/data/graphics/15094.png
new file mode 100644
index 00000000..5da8e9f8
Binary files /dev/null and b/desktop/assets/data/graphics/15094.png differ
diff --git a/desktop/assets/data/graphics/15095.png b/desktop/assets/data/graphics/15095.png
new file mode 100644
index 00000000..2d4c531d
Binary files /dev/null and b/desktop/assets/data/graphics/15095.png differ
diff --git a/desktop/assets/data/graphics/15096.png b/desktop/assets/data/graphics/15096.png
new file mode 100644
index 00000000..2dd28ecc
Binary files /dev/null and b/desktop/assets/data/graphics/15096.png differ
diff --git a/desktop/assets/data/graphics/15097.png b/desktop/assets/data/graphics/15097.png
new file mode 100644
index 00000000..eed0d68c
Binary files /dev/null and b/desktop/assets/data/graphics/15097.png differ
diff --git a/desktop/assets/data/graphics/15098.png b/desktop/assets/data/graphics/15098.png
new file mode 100644
index 00000000..6d537ae6
Binary files /dev/null and b/desktop/assets/data/graphics/15098.png differ
diff --git a/desktop/assets/data/graphics/15099.png b/desktop/assets/data/graphics/15099.png
new file mode 100644
index 00000000..124e68c5
Binary files /dev/null and b/desktop/assets/data/graphics/15099.png differ
diff --git a/desktop/assets/data/graphics/151.png b/desktop/assets/data/graphics/151.png
new file mode 100644
index 00000000..3bb69e08
Binary files /dev/null and b/desktop/assets/data/graphics/151.png differ
diff --git a/desktop/assets/data/graphics/15100.png b/desktop/assets/data/graphics/15100.png
new file mode 100644
index 00000000..5ab7fe1b
Binary files /dev/null and b/desktop/assets/data/graphics/15100.png differ
diff --git a/desktop/assets/data/graphics/15101.png b/desktop/assets/data/graphics/15101.png
new file mode 100644
index 00000000..8d2772c6
Binary files /dev/null and b/desktop/assets/data/graphics/15101.png differ
diff --git a/desktop/assets/data/graphics/15102.png b/desktop/assets/data/graphics/15102.png
new file mode 100644
index 00000000..ae9c0888
Binary files /dev/null and b/desktop/assets/data/graphics/15102.png differ
diff --git a/desktop/assets/data/graphics/15103.png b/desktop/assets/data/graphics/15103.png
new file mode 100644
index 00000000..51ebd66d
Binary files /dev/null and b/desktop/assets/data/graphics/15103.png differ
diff --git a/desktop/assets/data/graphics/15104.png b/desktop/assets/data/graphics/15104.png
new file mode 100644
index 00000000..b61b85cf
Binary files /dev/null and b/desktop/assets/data/graphics/15104.png differ
diff --git a/desktop/assets/data/graphics/15105.png b/desktop/assets/data/graphics/15105.png
new file mode 100644
index 00000000..b36e7836
Binary files /dev/null and b/desktop/assets/data/graphics/15105.png differ
diff --git a/desktop/assets/data/graphics/15106.png b/desktop/assets/data/graphics/15106.png
new file mode 100644
index 00000000..75e3f66a
Binary files /dev/null and b/desktop/assets/data/graphics/15106.png differ
diff --git a/desktop/assets/data/graphics/15107.png b/desktop/assets/data/graphics/15107.png
new file mode 100644
index 00000000..cbc277cb
Binary files /dev/null and b/desktop/assets/data/graphics/15107.png differ
diff --git a/desktop/assets/data/graphics/15108.png b/desktop/assets/data/graphics/15108.png
new file mode 100644
index 00000000..cf819c41
Binary files /dev/null and b/desktop/assets/data/graphics/15108.png differ
diff --git a/desktop/assets/data/graphics/15109.png b/desktop/assets/data/graphics/15109.png
new file mode 100644
index 00000000..e3c606e6
Binary files /dev/null and b/desktop/assets/data/graphics/15109.png differ
diff --git a/desktop/assets/data/graphics/15110.png b/desktop/assets/data/graphics/15110.png
new file mode 100644
index 00000000..346ebe10
Binary files /dev/null and b/desktop/assets/data/graphics/15110.png differ
diff --git a/desktop/assets/data/graphics/15111.png b/desktop/assets/data/graphics/15111.png
new file mode 100644
index 00000000..4bd4d4fe
Binary files /dev/null and b/desktop/assets/data/graphics/15111.png differ
diff --git a/desktop/assets/data/graphics/15112.png b/desktop/assets/data/graphics/15112.png
new file mode 100644
index 00000000..1e6e8b1a
Binary files /dev/null and b/desktop/assets/data/graphics/15112.png differ
diff --git a/desktop/assets/data/graphics/15113.png b/desktop/assets/data/graphics/15113.png
new file mode 100644
index 00000000..fa0b0312
Binary files /dev/null and b/desktop/assets/data/graphics/15113.png differ
diff --git a/desktop/assets/data/graphics/15114.png b/desktop/assets/data/graphics/15114.png
new file mode 100644
index 00000000..704acea0
Binary files /dev/null and b/desktop/assets/data/graphics/15114.png differ
diff --git a/desktop/assets/data/graphics/15115.png b/desktop/assets/data/graphics/15115.png
new file mode 100644
index 00000000..0119ea35
Binary files /dev/null and b/desktop/assets/data/graphics/15115.png differ
diff --git a/desktop/assets/data/graphics/15116.png b/desktop/assets/data/graphics/15116.png
new file mode 100644
index 00000000..a4357cf7
Binary files /dev/null and b/desktop/assets/data/graphics/15116.png differ
diff --git a/desktop/assets/data/graphics/15117.png b/desktop/assets/data/graphics/15117.png
new file mode 100644
index 00000000..963c1c4e
Binary files /dev/null and b/desktop/assets/data/graphics/15117.png differ
diff --git a/desktop/assets/data/graphics/15118.png b/desktop/assets/data/graphics/15118.png
new file mode 100644
index 00000000..30114ea6
Binary files /dev/null and b/desktop/assets/data/graphics/15118.png differ
diff --git a/desktop/assets/data/graphics/15119.png b/desktop/assets/data/graphics/15119.png
new file mode 100644
index 00000000..95e1892e
Binary files /dev/null and b/desktop/assets/data/graphics/15119.png differ
diff --git a/desktop/assets/data/graphics/15120.png b/desktop/assets/data/graphics/15120.png
new file mode 100644
index 00000000..9df68e9a
Binary files /dev/null and b/desktop/assets/data/graphics/15120.png differ
diff --git a/desktop/assets/data/graphics/15121.png b/desktop/assets/data/graphics/15121.png
new file mode 100644
index 00000000..e12d5804
Binary files /dev/null and b/desktop/assets/data/graphics/15121.png differ
diff --git a/desktop/assets/data/graphics/15122.png b/desktop/assets/data/graphics/15122.png
new file mode 100644
index 00000000..f30b9b6c
Binary files /dev/null and b/desktop/assets/data/graphics/15122.png differ
diff --git a/desktop/assets/data/graphics/15123.png b/desktop/assets/data/graphics/15123.png
new file mode 100644
index 00000000..0fb83329
Binary files /dev/null and b/desktop/assets/data/graphics/15123.png differ
diff --git a/desktop/assets/data/graphics/15124.png b/desktop/assets/data/graphics/15124.png
new file mode 100644
index 00000000..eeb606ab
Binary files /dev/null and b/desktop/assets/data/graphics/15124.png differ
diff --git a/desktop/assets/data/graphics/15125.png b/desktop/assets/data/graphics/15125.png
new file mode 100644
index 00000000..ef207ba0
Binary files /dev/null and b/desktop/assets/data/graphics/15125.png differ
diff --git a/desktop/assets/data/graphics/15126.png b/desktop/assets/data/graphics/15126.png
new file mode 100644
index 00000000..b5f15016
Binary files /dev/null and b/desktop/assets/data/graphics/15126.png differ
diff --git a/desktop/assets/data/graphics/15127.png b/desktop/assets/data/graphics/15127.png
new file mode 100644
index 00000000..33875c74
Binary files /dev/null and b/desktop/assets/data/graphics/15127.png differ
diff --git a/desktop/assets/data/graphics/15128.png b/desktop/assets/data/graphics/15128.png
new file mode 100644
index 00000000..ddaa9f0b
Binary files /dev/null and b/desktop/assets/data/graphics/15128.png differ
diff --git a/desktop/assets/data/graphics/15129.png b/desktop/assets/data/graphics/15129.png
new file mode 100644
index 00000000..d6849411
Binary files /dev/null and b/desktop/assets/data/graphics/15129.png differ
diff --git a/desktop/assets/data/graphics/15130.png b/desktop/assets/data/graphics/15130.png
new file mode 100644
index 00000000..fa8c31a5
Binary files /dev/null and b/desktop/assets/data/graphics/15130.png differ
diff --git a/desktop/assets/data/graphics/15131.png b/desktop/assets/data/graphics/15131.png
new file mode 100644
index 00000000..841642b6
Binary files /dev/null and b/desktop/assets/data/graphics/15131.png differ
diff --git a/desktop/assets/data/graphics/15132.png b/desktop/assets/data/graphics/15132.png
new file mode 100644
index 00000000..ea2987ea
Binary files /dev/null and b/desktop/assets/data/graphics/15132.png differ
diff --git a/desktop/assets/data/graphics/15133.png b/desktop/assets/data/graphics/15133.png
new file mode 100644
index 00000000..625fe1ef
Binary files /dev/null and b/desktop/assets/data/graphics/15133.png differ
diff --git a/desktop/assets/data/graphics/15134.png b/desktop/assets/data/graphics/15134.png
new file mode 100644
index 00000000..169dccc1
Binary files /dev/null and b/desktop/assets/data/graphics/15134.png differ
diff --git a/desktop/assets/data/graphics/15135.png b/desktop/assets/data/graphics/15135.png
new file mode 100644
index 00000000..e03031a3
Binary files /dev/null and b/desktop/assets/data/graphics/15135.png differ
diff --git a/desktop/assets/data/graphics/15136.png b/desktop/assets/data/graphics/15136.png
new file mode 100644
index 00000000..81efb4f2
Binary files /dev/null and b/desktop/assets/data/graphics/15136.png differ
diff --git a/desktop/assets/data/graphics/15137.png b/desktop/assets/data/graphics/15137.png
new file mode 100644
index 00000000..31ffcaae
Binary files /dev/null and b/desktop/assets/data/graphics/15137.png differ
diff --git a/desktop/assets/data/graphics/15138.png b/desktop/assets/data/graphics/15138.png
new file mode 100644
index 00000000..c09786bd
Binary files /dev/null and b/desktop/assets/data/graphics/15138.png differ
diff --git a/desktop/assets/data/graphics/15139.png b/desktop/assets/data/graphics/15139.png
new file mode 100644
index 00000000..da120ec3
Binary files /dev/null and b/desktop/assets/data/graphics/15139.png differ
diff --git a/desktop/assets/data/graphics/15140.png b/desktop/assets/data/graphics/15140.png
new file mode 100644
index 00000000..6edef820
Binary files /dev/null and b/desktop/assets/data/graphics/15140.png differ
diff --git a/desktop/assets/data/graphics/15141.png b/desktop/assets/data/graphics/15141.png
new file mode 100644
index 00000000..55f04557
Binary files /dev/null and b/desktop/assets/data/graphics/15141.png differ
diff --git a/desktop/assets/data/graphics/15142.png b/desktop/assets/data/graphics/15142.png
new file mode 100644
index 00000000..798d85c2
Binary files /dev/null and b/desktop/assets/data/graphics/15142.png differ
diff --git a/desktop/assets/data/graphics/15143.png b/desktop/assets/data/graphics/15143.png
new file mode 100644
index 00000000..ad8af305
Binary files /dev/null and b/desktop/assets/data/graphics/15143.png differ
diff --git a/desktop/assets/data/graphics/15144.png b/desktop/assets/data/graphics/15144.png
new file mode 100644
index 00000000..11fdd8e3
Binary files /dev/null and b/desktop/assets/data/graphics/15144.png differ
diff --git a/desktop/assets/data/graphics/15145.png b/desktop/assets/data/graphics/15145.png
new file mode 100644
index 00000000..e47a9b50
Binary files /dev/null and b/desktop/assets/data/graphics/15145.png differ
diff --git a/desktop/assets/data/graphics/15146.png b/desktop/assets/data/graphics/15146.png
new file mode 100644
index 00000000..52b7c313
Binary files /dev/null and b/desktop/assets/data/graphics/15146.png differ
diff --git a/desktop/assets/data/graphics/15147.png b/desktop/assets/data/graphics/15147.png
new file mode 100644
index 00000000..9e72028b
Binary files /dev/null and b/desktop/assets/data/graphics/15147.png differ
diff --git a/desktop/assets/data/graphics/15148.png b/desktop/assets/data/graphics/15148.png
new file mode 100644
index 00000000..27ee81f2
Binary files /dev/null and b/desktop/assets/data/graphics/15148.png differ
diff --git a/desktop/assets/data/graphics/15149.png b/desktop/assets/data/graphics/15149.png
new file mode 100644
index 00000000..f0a0675e
Binary files /dev/null and b/desktop/assets/data/graphics/15149.png differ
diff --git a/desktop/assets/data/graphics/15150.png b/desktop/assets/data/graphics/15150.png
new file mode 100644
index 00000000..ebeb0a01
Binary files /dev/null and b/desktop/assets/data/graphics/15150.png differ
diff --git a/desktop/assets/data/graphics/15151.png b/desktop/assets/data/graphics/15151.png
new file mode 100644
index 00000000..7a1ede16
Binary files /dev/null and b/desktop/assets/data/graphics/15151.png differ
diff --git a/desktop/assets/data/graphics/15152.png b/desktop/assets/data/graphics/15152.png
new file mode 100644
index 00000000..eb5f10cf
Binary files /dev/null and b/desktop/assets/data/graphics/15152.png differ
diff --git a/desktop/assets/data/graphics/15153.png b/desktop/assets/data/graphics/15153.png
new file mode 100644
index 00000000..d2e5cb4b
Binary files /dev/null and b/desktop/assets/data/graphics/15153.png differ
diff --git a/desktop/assets/data/graphics/15154.png b/desktop/assets/data/graphics/15154.png
new file mode 100644
index 00000000..93f97635
Binary files /dev/null and b/desktop/assets/data/graphics/15154.png differ
diff --git a/desktop/assets/data/graphics/15155.png b/desktop/assets/data/graphics/15155.png
new file mode 100644
index 00000000..a90288b8
Binary files /dev/null and b/desktop/assets/data/graphics/15155.png differ
diff --git a/desktop/assets/data/graphics/15156.png b/desktop/assets/data/graphics/15156.png
new file mode 100644
index 00000000..3e40690e
Binary files /dev/null and b/desktop/assets/data/graphics/15156.png differ
diff --git a/desktop/assets/data/graphics/15157.png b/desktop/assets/data/graphics/15157.png
new file mode 100644
index 00000000..1247a4e5
Binary files /dev/null and b/desktop/assets/data/graphics/15157.png differ
diff --git a/desktop/assets/data/graphics/15158.png b/desktop/assets/data/graphics/15158.png
new file mode 100644
index 00000000..2964de60
Binary files /dev/null and b/desktop/assets/data/graphics/15158.png differ
diff --git a/desktop/assets/data/graphics/15159.png b/desktop/assets/data/graphics/15159.png
new file mode 100644
index 00000000..15e4a5b2
Binary files /dev/null and b/desktop/assets/data/graphics/15159.png differ
diff --git a/desktop/assets/data/graphics/15160.png b/desktop/assets/data/graphics/15160.png
new file mode 100644
index 00000000..34e617bf
Binary files /dev/null and b/desktop/assets/data/graphics/15160.png differ
diff --git a/desktop/assets/data/graphics/15161.png b/desktop/assets/data/graphics/15161.png
new file mode 100644
index 00000000..6909a986
Binary files /dev/null and b/desktop/assets/data/graphics/15161.png differ
diff --git a/desktop/assets/data/graphics/15162.png b/desktop/assets/data/graphics/15162.png
new file mode 100644
index 00000000..81d4a282
Binary files /dev/null and b/desktop/assets/data/graphics/15162.png differ
diff --git a/desktop/assets/data/graphics/15163.png b/desktop/assets/data/graphics/15163.png
new file mode 100644
index 00000000..0cf56b42
Binary files /dev/null and b/desktop/assets/data/graphics/15163.png differ
diff --git a/desktop/assets/data/graphics/15164.png b/desktop/assets/data/graphics/15164.png
new file mode 100644
index 00000000..55495736
Binary files /dev/null and b/desktop/assets/data/graphics/15164.png differ
diff --git a/desktop/assets/data/graphics/15165.png b/desktop/assets/data/graphics/15165.png
new file mode 100644
index 00000000..de7e27bf
Binary files /dev/null and b/desktop/assets/data/graphics/15165.png differ
diff --git a/desktop/assets/data/graphics/15166.png b/desktop/assets/data/graphics/15166.png
new file mode 100644
index 00000000..9108c0f7
Binary files /dev/null and b/desktop/assets/data/graphics/15166.png differ
diff --git a/desktop/assets/data/graphics/15167.png b/desktop/assets/data/graphics/15167.png
new file mode 100644
index 00000000..8e67c700
Binary files /dev/null and b/desktop/assets/data/graphics/15167.png differ
diff --git a/desktop/assets/data/graphics/15169.png b/desktop/assets/data/graphics/15169.png
new file mode 100644
index 00000000..b2b58434
Binary files /dev/null and b/desktop/assets/data/graphics/15169.png differ
diff --git a/desktop/assets/data/graphics/15170.png b/desktop/assets/data/graphics/15170.png
new file mode 100644
index 00000000..4e22b87f
Binary files /dev/null and b/desktop/assets/data/graphics/15170.png differ
diff --git a/desktop/assets/data/graphics/15171.png b/desktop/assets/data/graphics/15171.png
new file mode 100644
index 00000000..a8d3b0a3
Binary files /dev/null and b/desktop/assets/data/graphics/15171.png differ
diff --git a/desktop/assets/data/graphics/15172.png b/desktop/assets/data/graphics/15172.png
new file mode 100644
index 00000000..ed6420f2
Binary files /dev/null and b/desktop/assets/data/graphics/15172.png differ
diff --git a/desktop/assets/data/graphics/15173.png b/desktop/assets/data/graphics/15173.png
new file mode 100644
index 00000000..7f58272f
Binary files /dev/null and b/desktop/assets/data/graphics/15173.png differ
diff --git a/desktop/assets/data/graphics/15174.png b/desktop/assets/data/graphics/15174.png
new file mode 100644
index 00000000..1d27d8cf
Binary files /dev/null and b/desktop/assets/data/graphics/15174.png differ
diff --git a/desktop/assets/data/graphics/15175.png b/desktop/assets/data/graphics/15175.png
new file mode 100644
index 00000000..825fb452
Binary files /dev/null and b/desktop/assets/data/graphics/15175.png differ
diff --git a/desktop/assets/data/graphics/15176.png b/desktop/assets/data/graphics/15176.png
new file mode 100644
index 00000000..00f6f1e0
Binary files /dev/null and b/desktop/assets/data/graphics/15176.png differ
diff --git a/desktop/assets/data/graphics/15177.png b/desktop/assets/data/graphics/15177.png
new file mode 100644
index 00000000..55c5c744
Binary files /dev/null and b/desktop/assets/data/graphics/15177.png differ
diff --git a/desktop/assets/data/graphics/15178.png b/desktop/assets/data/graphics/15178.png
new file mode 100644
index 00000000..8f2fe8fe
Binary files /dev/null and b/desktop/assets/data/graphics/15178.png differ
diff --git a/desktop/assets/data/graphics/15179.png b/desktop/assets/data/graphics/15179.png
new file mode 100644
index 00000000..2c528004
Binary files /dev/null and b/desktop/assets/data/graphics/15179.png differ
diff --git a/desktop/assets/data/graphics/15180.png b/desktop/assets/data/graphics/15180.png
new file mode 100644
index 00000000..879d0eb7
Binary files /dev/null and b/desktop/assets/data/graphics/15180.png differ
diff --git a/desktop/assets/data/graphics/15181.png b/desktop/assets/data/graphics/15181.png
new file mode 100644
index 00000000..aefa6ccd
Binary files /dev/null and b/desktop/assets/data/graphics/15181.png differ
diff --git a/desktop/assets/data/graphics/15182.png b/desktop/assets/data/graphics/15182.png
new file mode 100644
index 00000000..e27e504c
Binary files /dev/null and b/desktop/assets/data/graphics/15182.png differ
diff --git a/desktop/assets/data/graphics/15183.png b/desktop/assets/data/graphics/15183.png
new file mode 100644
index 00000000..fcce6205
Binary files /dev/null and b/desktop/assets/data/graphics/15183.png differ
diff --git a/desktop/assets/data/graphics/15184.png b/desktop/assets/data/graphics/15184.png
new file mode 100644
index 00000000..359ce7dc
Binary files /dev/null and b/desktop/assets/data/graphics/15184.png differ
diff --git a/desktop/assets/data/graphics/15185.png b/desktop/assets/data/graphics/15185.png
new file mode 100644
index 00000000..e84ef2cf
Binary files /dev/null and b/desktop/assets/data/graphics/15185.png differ
diff --git a/desktop/assets/data/graphics/15186.png b/desktop/assets/data/graphics/15186.png
new file mode 100644
index 00000000..95113ad4
Binary files /dev/null and b/desktop/assets/data/graphics/15186.png differ
diff --git a/desktop/assets/data/graphics/15187.png b/desktop/assets/data/graphics/15187.png
new file mode 100644
index 00000000..e1d7a4ed
Binary files /dev/null and b/desktop/assets/data/graphics/15187.png differ
diff --git a/desktop/assets/data/graphics/15188.png b/desktop/assets/data/graphics/15188.png
new file mode 100644
index 00000000..867dbdbe
Binary files /dev/null and b/desktop/assets/data/graphics/15188.png differ
diff --git a/desktop/assets/data/graphics/15189.png b/desktop/assets/data/graphics/15189.png
new file mode 100644
index 00000000..73f2ebe4
Binary files /dev/null and b/desktop/assets/data/graphics/15189.png differ
diff --git a/desktop/assets/data/graphics/15190.png b/desktop/assets/data/graphics/15190.png
new file mode 100644
index 00000000..3551dc63
Binary files /dev/null and b/desktop/assets/data/graphics/15190.png differ
diff --git a/desktop/assets/data/graphics/15191.png b/desktop/assets/data/graphics/15191.png
new file mode 100644
index 00000000..a04daac9
Binary files /dev/null and b/desktop/assets/data/graphics/15191.png differ
diff --git a/desktop/assets/data/graphics/15192.png b/desktop/assets/data/graphics/15192.png
new file mode 100644
index 00000000..abeba0ec
Binary files /dev/null and b/desktop/assets/data/graphics/15192.png differ
diff --git a/desktop/assets/data/graphics/15193.png b/desktop/assets/data/graphics/15193.png
new file mode 100644
index 00000000..5386c627
Binary files /dev/null and b/desktop/assets/data/graphics/15193.png differ
diff --git a/desktop/assets/data/graphics/15194.png b/desktop/assets/data/graphics/15194.png
new file mode 100644
index 00000000..0cf7a473
Binary files /dev/null and b/desktop/assets/data/graphics/15194.png differ
diff --git a/desktop/assets/data/graphics/15195.png b/desktop/assets/data/graphics/15195.png
new file mode 100644
index 00000000..66c8123d
Binary files /dev/null and b/desktop/assets/data/graphics/15195.png differ
diff --git a/desktop/assets/data/graphics/15196.png b/desktop/assets/data/graphics/15196.png
new file mode 100644
index 00000000..b628b700
Binary files /dev/null and b/desktop/assets/data/graphics/15196.png differ
diff --git a/desktop/assets/data/graphics/15197.png b/desktop/assets/data/graphics/15197.png
new file mode 100644
index 00000000..3f74b837
Binary files /dev/null and b/desktop/assets/data/graphics/15197.png differ
diff --git a/desktop/assets/data/graphics/15198.png b/desktop/assets/data/graphics/15198.png
new file mode 100644
index 00000000..799e8d28
Binary files /dev/null and b/desktop/assets/data/graphics/15198.png differ
diff --git a/desktop/assets/data/graphics/15199.png b/desktop/assets/data/graphics/15199.png
new file mode 100644
index 00000000..0d5c8fa6
Binary files /dev/null and b/desktop/assets/data/graphics/15199.png differ
diff --git a/desktop/assets/data/graphics/152.png b/desktop/assets/data/graphics/152.png
new file mode 100644
index 00000000..1726fd35
Binary files /dev/null and b/desktop/assets/data/graphics/152.png differ
diff --git a/desktop/assets/data/graphics/15200.png b/desktop/assets/data/graphics/15200.png
new file mode 100644
index 00000000..abb9cce2
Binary files /dev/null and b/desktop/assets/data/graphics/15200.png differ
diff --git a/desktop/assets/data/graphics/15201.png b/desktop/assets/data/graphics/15201.png
new file mode 100644
index 00000000..b57eee67
Binary files /dev/null and b/desktop/assets/data/graphics/15201.png differ
diff --git a/desktop/assets/data/graphics/15202.png b/desktop/assets/data/graphics/15202.png
new file mode 100644
index 00000000..622116ad
Binary files /dev/null and b/desktop/assets/data/graphics/15202.png differ
diff --git a/desktop/assets/data/graphics/15203.png b/desktop/assets/data/graphics/15203.png
new file mode 100644
index 00000000..cda355dc
Binary files /dev/null and b/desktop/assets/data/graphics/15203.png differ
diff --git a/desktop/assets/data/graphics/15204.png b/desktop/assets/data/graphics/15204.png
new file mode 100644
index 00000000..ede61357
Binary files /dev/null and b/desktop/assets/data/graphics/15204.png differ
diff --git a/desktop/assets/data/graphics/15205.png b/desktop/assets/data/graphics/15205.png
new file mode 100644
index 00000000..d1933604
Binary files /dev/null and b/desktop/assets/data/graphics/15205.png differ
diff --git a/desktop/assets/data/graphics/15206.png b/desktop/assets/data/graphics/15206.png
new file mode 100644
index 00000000..9cecb4c3
Binary files /dev/null and b/desktop/assets/data/graphics/15206.png differ
diff --git a/desktop/assets/data/graphics/15207.png b/desktop/assets/data/graphics/15207.png
new file mode 100644
index 00000000..e3c606e6
Binary files /dev/null and b/desktop/assets/data/graphics/15207.png differ
diff --git a/desktop/assets/data/graphics/15208.png b/desktop/assets/data/graphics/15208.png
new file mode 100644
index 00000000..49deeb45
Binary files /dev/null and b/desktop/assets/data/graphics/15208.png differ
diff --git a/desktop/assets/data/graphics/15209.png b/desktop/assets/data/graphics/15209.png
new file mode 100644
index 00000000..9c3c9e3a
Binary files /dev/null and b/desktop/assets/data/graphics/15209.png differ
diff --git a/desktop/assets/data/graphics/15210.png b/desktop/assets/data/graphics/15210.png
new file mode 100644
index 00000000..9d5763f5
Binary files /dev/null and b/desktop/assets/data/graphics/15210.png differ
diff --git a/desktop/assets/data/graphics/15211.png b/desktop/assets/data/graphics/15211.png
new file mode 100644
index 00000000..0372d860
Binary files /dev/null and b/desktop/assets/data/graphics/15211.png differ
diff --git a/desktop/assets/data/graphics/15212.png b/desktop/assets/data/graphics/15212.png
new file mode 100644
index 00000000..a6d5311c
Binary files /dev/null and b/desktop/assets/data/graphics/15212.png differ
diff --git a/desktop/assets/data/graphics/15213.png b/desktop/assets/data/graphics/15213.png
new file mode 100644
index 00000000..c302772c
Binary files /dev/null and b/desktop/assets/data/graphics/15213.png differ
diff --git a/desktop/assets/data/graphics/15214.png b/desktop/assets/data/graphics/15214.png
new file mode 100644
index 00000000..4005e177
Binary files /dev/null and b/desktop/assets/data/graphics/15214.png differ
diff --git a/desktop/assets/data/graphics/15215.png b/desktop/assets/data/graphics/15215.png
new file mode 100644
index 00000000..4af87b03
Binary files /dev/null and b/desktop/assets/data/graphics/15215.png differ
diff --git a/desktop/assets/data/graphics/15216.png b/desktop/assets/data/graphics/15216.png
new file mode 100644
index 00000000..d52945b3
Binary files /dev/null and b/desktop/assets/data/graphics/15216.png differ
diff --git a/desktop/assets/data/graphics/15217.png b/desktop/assets/data/graphics/15217.png
new file mode 100644
index 00000000..317769de
Binary files /dev/null and b/desktop/assets/data/graphics/15217.png differ
diff --git a/desktop/assets/data/graphics/15218.png b/desktop/assets/data/graphics/15218.png
new file mode 100644
index 00000000..40cd04d0
Binary files /dev/null and b/desktop/assets/data/graphics/15218.png differ
diff --git a/desktop/assets/data/graphics/15219.png b/desktop/assets/data/graphics/15219.png
new file mode 100644
index 00000000..72da01ae
Binary files /dev/null and b/desktop/assets/data/graphics/15219.png differ
diff --git a/desktop/assets/data/graphics/15220.png b/desktop/assets/data/graphics/15220.png
new file mode 100644
index 00000000..b29885d3
Binary files /dev/null and b/desktop/assets/data/graphics/15220.png differ
diff --git a/desktop/assets/data/graphics/15221.png b/desktop/assets/data/graphics/15221.png
new file mode 100644
index 00000000..8b57740c
Binary files /dev/null and b/desktop/assets/data/graphics/15221.png differ
diff --git a/desktop/assets/data/graphics/15222.png b/desktop/assets/data/graphics/15222.png
new file mode 100644
index 00000000..33661eea
Binary files /dev/null and b/desktop/assets/data/graphics/15222.png differ
diff --git a/desktop/assets/data/graphics/15223.png b/desktop/assets/data/graphics/15223.png
new file mode 100644
index 00000000..8fe317a6
Binary files /dev/null and b/desktop/assets/data/graphics/15223.png differ
diff --git a/desktop/assets/data/graphics/15224.png b/desktop/assets/data/graphics/15224.png
new file mode 100644
index 00000000..aa537243
Binary files /dev/null and b/desktop/assets/data/graphics/15224.png differ
diff --git a/desktop/assets/data/graphics/15225.png b/desktop/assets/data/graphics/15225.png
new file mode 100644
index 00000000..410f227a
Binary files /dev/null and b/desktop/assets/data/graphics/15225.png differ
diff --git a/desktop/assets/data/graphics/15226.png b/desktop/assets/data/graphics/15226.png
new file mode 100644
index 00000000..27ae2922
Binary files /dev/null and b/desktop/assets/data/graphics/15226.png differ
diff --git a/desktop/assets/data/graphics/15227.png b/desktop/assets/data/graphics/15227.png
new file mode 100644
index 00000000..b77cbbbc
Binary files /dev/null and b/desktop/assets/data/graphics/15227.png differ
diff --git a/desktop/assets/data/graphics/15228.png b/desktop/assets/data/graphics/15228.png
new file mode 100644
index 00000000..42e41667
Binary files /dev/null and b/desktop/assets/data/graphics/15228.png differ
diff --git a/desktop/assets/data/graphics/15229.png b/desktop/assets/data/graphics/15229.png
new file mode 100644
index 00000000..b39559f5
Binary files /dev/null and b/desktop/assets/data/graphics/15229.png differ
diff --git a/desktop/assets/data/graphics/15230.png b/desktop/assets/data/graphics/15230.png
new file mode 100644
index 00000000..38755e3a
Binary files /dev/null and b/desktop/assets/data/graphics/15230.png differ
diff --git a/desktop/assets/data/graphics/15231.png b/desktop/assets/data/graphics/15231.png
new file mode 100644
index 00000000..6305ede9
Binary files /dev/null and b/desktop/assets/data/graphics/15231.png differ
diff --git a/desktop/assets/data/graphics/153.png b/desktop/assets/data/graphics/153.png
new file mode 100644
index 00000000..05328a5c
Binary files /dev/null and b/desktop/assets/data/graphics/153.png differ
diff --git a/desktop/assets/data/graphics/154.png b/desktop/assets/data/graphics/154.png
new file mode 100644
index 00000000..f205ff38
Binary files /dev/null and b/desktop/assets/data/graphics/154.png differ
diff --git a/desktop/assets/data/graphics/155.png b/desktop/assets/data/graphics/155.png
new file mode 100644
index 00000000..908c9b0e
Binary files /dev/null and b/desktop/assets/data/graphics/155.png differ
diff --git a/desktop/assets/data/graphics/156.png b/desktop/assets/data/graphics/156.png
new file mode 100644
index 00000000..dc0934e2
Binary files /dev/null and b/desktop/assets/data/graphics/156.png differ
diff --git a/desktop/assets/data/graphics/157.png b/desktop/assets/data/graphics/157.png
new file mode 100644
index 00000000..ee93c8e5
Binary files /dev/null and b/desktop/assets/data/graphics/157.png differ
diff --git a/desktop/assets/data/graphics/158.png b/desktop/assets/data/graphics/158.png
new file mode 100644
index 00000000..514e8828
Binary files /dev/null and b/desktop/assets/data/graphics/158.png differ
diff --git a/desktop/assets/data/graphics/159.png b/desktop/assets/data/graphics/159.png
new file mode 100644
index 00000000..b104ee28
Binary files /dev/null and b/desktop/assets/data/graphics/159.png differ
diff --git a/desktop/assets/data/graphics/16.png b/desktop/assets/data/graphics/16.png
new file mode 100644
index 00000000..d545ae0a
Binary files /dev/null and b/desktop/assets/data/graphics/16.png differ
diff --git a/desktop/assets/data/graphics/160.png b/desktop/assets/data/graphics/160.png
new file mode 100644
index 00000000..1b31ef83
Binary files /dev/null and b/desktop/assets/data/graphics/160.png differ
diff --git a/desktop/assets/data/graphics/16000.png b/desktop/assets/data/graphics/16000.png
new file mode 100644
index 00000000..cd08c3f7
Binary files /dev/null and b/desktop/assets/data/graphics/16000.png differ
diff --git a/desktop/assets/data/graphics/16001.png b/desktop/assets/data/graphics/16001.png
new file mode 100644
index 00000000..a08d7a10
Binary files /dev/null and b/desktop/assets/data/graphics/16001.png differ
diff --git a/desktop/assets/data/graphics/16002.png b/desktop/assets/data/graphics/16002.png
new file mode 100644
index 00000000..d08a040a
Binary files /dev/null and b/desktop/assets/data/graphics/16002.png differ
diff --git a/desktop/assets/data/graphics/16003.png b/desktop/assets/data/graphics/16003.png
new file mode 100644
index 00000000..052fc41f
Binary files /dev/null and b/desktop/assets/data/graphics/16003.png differ
diff --git a/desktop/assets/data/graphics/16004.png b/desktop/assets/data/graphics/16004.png
new file mode 100644
index 00000000..f5c202fc
Binary files /dev/null and b/desktop/assets/data/graphics/16004.png differ
diff --git a/desktop/assets/data/graphics/16005.png b/desktop/assets/data/graphics/16005.png
new file mode 100644
index 00000000..7d768e5c
Binary files /dev/null and b/desktop/assets/data/graphics/16005.png differ
diff --git a/desktop/assets/data/graphics/16006.png b/desktop/assets/data/graphics/16006.png
new file mode 100644
index 00000000..80c035d8
Binary files /dev/null and b/desktop/assets/data/graphics/16006.png differ
diff --git a/desktop/assets/data/graphics/16007.png b/desktop/assets/data/graphics/16007.png
new file mode 100644
index 00000000..9537d8e2
Binary files /dev/null and b/desktop/assets/data/graphics/16007.png differ
diff --git a/desktop/assets/data/graphics/16008.png b/desktop/assets/data/graphics/16008.png
new file mode 100644
index 00000000..0a4f4d56
Binary files /dev/null and b/desktop/assets/data/graphics/16008.png differ
diff --git a/desktop/assets/data/graphics/16009.png b/desktop/assets/data/graphics/16009.png
new file mode 100644
index 00000000..671af380
Binary files /dev/null and b/desktop/assets/data/graphics/16009.png differ
diff --git a/desktop/assets/data/graphics/16010.png b/desktop/assets/data/graphics/16010.png
new file mode 100644
index 00000000..3599b4b1
Binary files /dev/null and b/desktop/assets/data/graphics/16010.png differ
diff --git a/desktop/assets/data/graphics/16011.png b/desktop/assets/data/graphics/16011.png
new file mode 100644
index 00000000..7849b418
Binary files /dev/null and b/desktop/assets/data/graphics/16011.png differ
diff --git a/desktop/assets/data/graphics/16012.png b/desktop/assets/data/graphics/16012.png
new file mode 100644
index 00000000..93a40066
Binary files /dev/null and b/desktop/assets/data/graphics/16012.png differ
diff --git a/desktop/assets/data/graphics/16013.png b/desktop/assets/data/graphics/16013.png
new file mode 100644
index 00000000..85e52f63
Binary files /dev/null and b/desktop/assets/data/graphics/16013.png differ
diff --git a/desktop/assets/data/graphics/16014.png b/desktop/assets/data/graphics/16014.png
new file mode 100644
index 00000000..74ca8baa
Binary files /dev/null and b/desktop/assets/data/graphics/16014.png differ
diff --git a/desktop/assets/data/graphics/16015.png b/desktop/assets/data/graphics/16015.png
new file mode 100644
index 00000000..4606006c
Binary files /dev/null and b/desktop/assets/data/graphics/16015.png differ
diff --git a/desktop/assets/data/graphics/16016.png b/desktop/assets/data/graphics/16016.png
new file mode 100644
index 00000000..611c4fab
Binary files /dev/null and b/desktop/assets/data/graphics/16016.png differ
diff --git a/desktop/assets/data/graphics/16017.png b/desktop/assets/data/graphics/16017.png
new file mode 100644
index 00000000..7c4fcc1e
Binary files /dev/null and b/desktop/assets/data/graphics/16017.png differ
diff --git a/desktop/assets/data/graphics/16018.png b/desktop/assets/data/graphics/16018.png
new file mode 100644
index 00000000..a85a2dd8
Binary files /dev/null and b/desktop/assets/data/graphics/16018.png differ
diff --git a/desktop/assets/data/graphics/16019.png b/desktop/assets/data/graphics/16019.png
new file mode 100644
index 00000000..7e99eed5
Binary files /dev/null and b/desktop/assets/data/graphics/16019.png differ
diff --git a/desktop/assets/data/graphics/16020.png b/desktop/assets/data/graphics/16020.png
new file mode 100644
index 00000000..5805d035
Binary files /dev/null and b/desktop/assets/data/graphics/16020.png differ
diff --git a/desktop/assets/data/graphics/16021.png b/desktop/assets/data/graphics/16021.png
new file mode 100644
index 00000000..c725a3da
Binary files /dev/null and b/desktop/assets/data/graphics/16021.png differ
diff --git a/desktop/assets/data/graphics/16022.png b/desktop/assets/data/graphics/16022.png
new file mode 100644
index 00000000..f13fbecf
Binary files /dev/null and b/desktop/assets/data/graphics/16022.png differ
diff --git a/desktop/assets/data/graphics/16023.png b/desktop/assets/data/graphics/16023.png
new file mode 100644
index 00000000..30713dc2
Binary files /dev/null and b/desktop/assets/data/graphics/16023.png differ
diff --git a/desktop/assets/data/graphics/16024.png b/desktop/assets/data/graphics/16024.png
new file mode 100644
index 00000000..ab4d73d6
Binary files /dev/null and b/desktop/assets/data/graphics/16024.png differ
diff --git a/desktop/assets/data/graphics/16025.png b/desktop/assets/data/graphics/16025.png
new file mode 100644
index 00000000..fee18e06
Binary files /dev/null and b/desktop/assets/data/graphics/16025.png differ
diff --git a/desktop/assets/data/graphics/16026.png b/desktop/assets/data/graphics/16026.png
new file mode 100644
index 00000000..a05fa505
Binary files /dev/null and b/desktop/assets/data/graphics/16026.png differ
diff --git a/desktop/assets/data/graphics/16027.png b/desktop/assets/data/graphics/16027.png
new file mode 100644
index 00000000..44c772c0
Binary files /dev/null and b/desktop/assets/data/graphics/16027.png differ
diff --git a/desktop/assets/data/graphics/16028.png b/desktop/assets/data/graphics/16028.png
new file mode 100644
index 00000000..db4e00b0
Binary files /dev/null and b/desktop/assets/data/graphics/16028.png differ
diff --git a/desktop/assets/data/graphics/16029.png b/desktop/assets/data/graphics/16029.png
new file mode 100644
index 00000000..d35f51aa
Binary files /dev/null and b/desktop/assets/data/graphics/16029.png differ
diff --git a/desktop/assets/data/graphics/16030.png b/desktop/assets/data/graphics/16030.png
new file mode 100644
index 00000000..956b09ee
Binary files /dev/null and b/desktop/assets/data/graphics/16030.png differ
diff --git a/desktop/assets/data/graphics/16031.png b/desktop/assets/data/graphics/16031.png
new file mode 100644
index 00000000..dee7a267
Binary files /dev/null and b/desktop/assets/data/graphics/16031.png differ
diff --git a/desktop/assets/data/graphics/16032.png b/desktop/assets/data/graphics/16032.png
new file mode 100644
index 00000000..ef85c388
Binary files /dev/null and b/desktop/assets/data/graphics/16032.png differ
diff --git a/desktop/assets/data/graphics/16033.png b/desktop/assets/data/graphics/16033.png
new file mode 100644
index 00000000..8445aa41
Binary files /dev/null and b/desktop/assets/data/graphics/16033.png differ
diff --git a/desktop/assets/data/graphics/16034.png b/desktop/assets/data/graphics/16034.png
new file mode 100644
index 00000000..6a9fc63a
Binary files /dev/null and b/desktop/assets/data/graphics/16034.png differ
diff --git a/desktop/assets/data/graphics/16035.png b/desktop/assets/data/graphics/16035.png
new file mode 100644
index 00000000..bc6dd6ec
Binary files /dev/null and b/desktop/assets/data/graphics/16035.png differ
diff --git a/desktop/assets/data/graphics/16036.png b/desktop/assets/data/graphics/16036.png
new file mode 100644
index 00000000..ac716243
Binary files /dev/null and b/desktop/assets/data/graphics/16036.png differ
diff --git a/desktop/assets/data/graphics/16037.png b/desktop/assets/data/graphics/16037.png
new file mode 100644
index 00000000..95da002e
Binary files /dev/null and b/desktop/assets/data/graphics/16037.png differ
diff --git a/desktop/assets/data/graphics/16038.png b/desktop/assets/data/graphics/16038.png
new file mode 100644
index 00000000..7c6c0df0
Binary files /dev/null and b/desktop/assets/data/graphics/16038.png differ
diff --git a/desktop/assets/data/graphics/16039.png b/desktop/assets/data/graphics/16039.png
new file mode 100644
index 00000000..a1e1bb21
Binary files /dev/null and b/desktop/assets/data/graphics/16039.png differ
diff --git a/desktop/assets/data/graphics/16040.png b/desktop/assets/data/graphics/16040.png
new file mode 100644
index 00000000..f22d5c14
Binary files /dev/null and b/desktop/assets/data/graphics/16040.png differ
diff --git a/desktop/assets/data/graphics/16041.png b/desktop/assets/data/graphics/16041.png
new file mode 100644
index 00000000..9a624610
Binary files /dev/null and b/desktop/assets/data/graphics/16041.png differ
diff --git a/desktop/assets/data/graphics/16042.png b/desktop/assets/data/graphics/16042.png
new file mode 100644
index 00000000..578c03ba
Binary files /dev/null and b/desktop/assets/data/graphics/16042.png differ
diff --git a/desktop/assets/data/graphics/16043.png b/desktop/assets/data/graphics/16043.png
new file mode 100644
index 00000000..a800c3ac
Binary files /dev/null and b/desktop/assets/data/graphics/16043.png differ
diff --git a/desktop/assets/data/graphics/16044.png b/desktop/assets/data/graphics/16044.png
new file mode 100644
index 00000000..e1644ba9
Binary files /dev/null and b/desktop/assets/data/graphics/16044.png differ
diff --git a/desktop/assets/data/graphics/16045.png b/desktop/assets/data/graphics/16045.png
new file mode 100644
index 00000000..2b44394b
Binary files /dev/null and b/desktop/assets/data/graphics/16045.png differ
diff --git a/desktop/assets/data/graphics/16046.png b/desktop/assets/data/graphics/16046.png
new file mode 100644
index 00000000..b1ac2c27
Binary files /dev/null and b/desktop/assets/data/graphics/16046.png differ
diff --git a/desktop/assets/data/graphics/16047.png b/desktop/assets/data/graphics/16047.png
new file mode 100644
index 00000000..79dafedb
Binary files /dev/null and b/desktop/assets/data/graphics/16047.png differ
diff --git a/desktop/assets/data/graphics/16048.png b/desktop/assets/data/graphics/16048.png
new file mode 100644
index 00000000..78de0f00
Binary files /dev/null and b/desktop/assets/data/graphics/16048.png differ
diff --git a/desktop/assets/data/graphics/16049.png b/desktop/assets/data/graphics/16049.png
new file mode 100644
index 00000000..5056d715
Binary files /dev/null and b/desktop/assets/data/graphics/16049.png differ
diff --git a/desktop/assets/data/graphics/16050.png b/desktop/assets/data/graphics/16050.png
new file mode 100644
index 00000000..2b5bcd93
Binary files /dev/null and b/desktop/assets/data/graphics/16050.png differ
diff --git a/desktop/assets/data/graphics/16051.png b/desktop/assets/data/graphics/16051.png
new file mode 100644
index 00000000..dba931b7
Binary files /dev/null and b/desktop/assets/data/graphics/16051.png differ
diff --git a/desktop/assets/data/graphics/16052.png b/desktop/assets/data/graphics/16052.png
new file mode 100644
index 00000000..385d817e
Binary files /dev/null and b/desktop/assets/data/graphics/16052.png differ
diff --git a/desktop/assets/data/graphics/16053.png b/desktop/assets/data/graphics/16053.png
new file mode 100644
index 00000000..14689a33
Binary files /dev/null and b/desktop/assets/data/graphics/16053.png differ
diff --git a/desktop/assets/data/graphics/16054.png b/desktop/assets/data/graphics/16054.png
new file mode 100644
index 00000000..82b2f03b
Binary files /dev/null and b/desktop/assets/data/graphics/16054.png differ
diff --git a/desktop/assets/data/graphics/16055.png b/desktop/assets/data/graphics/16055.png
new file mode 100644
index 00000000..0daaf3a7
Binary files /dev/null and b/desktop/assets/data/graphics/16055.png differ
diff --git a/desktop/assets/data/graphics/16056.png b/desktop/assets/data/graphics/16056.png
new file mode 100644
index 00000000..9355ee44
Binary files /dev/null and b/desktop/assets/data/graphics/16056.png differ
diff --git a/desktop/assets/data/graphics/16057.png b/desktop/assets/data/graphics/16057.png
new file mode 100644
index 00000000..a0c04107
Binary files /dev/null and b/desktop/assets/data/graphics/16057.png differ
diff --git a/desktop/assets/data/graphics/16058.png b/desktop/assets/data/graphics/16058.png
new file mode 100644
index 00000000..46d80129
Binary files /dev/null and b/desktop/assets/data/graphics/16058.png differ
diff --git a/desktop/assets/data/graphics/16059.png b/desktop/assets/data/graphics/16059.png
new file mode 100644
index 00000000..eaa45412
Binary files /dev/null and b/desktop/assets/data/graphics/16059.png differ
diff --git a/desktop/assets/data/graphics/16060.png b/desktop/assets/data/graphics/16060.png
new file mode 100644
index 00000000..8c5b9dcc
Binary files /dev/null and b/desktop/assets/data/graphics/16060.png differ
diff --git a/desktop/assets/data/graphics/16061.png b/desktop/assets/data/graphics/16061.png
new file mode 100644
index 00000000..d4657ca5
Binary files /dev/null and b/desktop/assets/data/graphics/16061.png differ
diff --git a/desktop/assets/data/graphics/16062.png b/desktop/assets/data/graphics/16062.png
new file mode 100644
index 00000000..f6f81ecb
Binary files /dev/null and b/desktop/assets/data/graphics/16062.png differ
diff --git a/desktop/assets/data/graphics/16063.png b/desktop/assets/data/graphics/16063.png
new file mode 100644
index 00000000..07528d0e
Binary files /dev/null and b/desktop/assets/data/graphics/16063.png differ
diff --git a/desktop/assets/data/graphics/16064.png b/desktop/assets/data/graphics/16064.png
new file mode 100644
index 00000000..671af380
Binary files /dev/null and b/desktop/assets/data/graphics/16064.png differ
diff --git a/desktop/assets/data/graphics/16065.png b/desktop/assets/data/graphics/16065.png
new file mode 100644
index 00000000..a04afb25
Binary files /dev/null and b/desktop/assets/data/graphics/16065.png differ
diff --git a/desktop/assets/data/graphics/16066.png b/desktop/assets/data/graphics/16066.png
new file mode 100644
index 00000000..3bf66858
Binary files /dev/null and b/desktop/assets/data/graphics/16066.png differ
diff --git a/desktop/assets/data/graphics/16067.png b/desktop/assets/data/graphics/16067.png
new file mode 100644
index 00000000..228ce92d
Binary files /dev/null and b/desktop/assets/data/graphics/16067.png differ
diff --git a/desktop/assets/data/graphics/16068.png b/desktop/assets/data/graphics/16068.png
new file mode 100644
index 00000000..84f770e7
Binary files /dev/null and b/desktop/assets/data/graphics/16068.png differ
diff --git a/desktop/assets/data/graphics/16069.png b/desktop/assets/data/graphics/16069.png
new file mode 100644
index 00000000..dd9ffe57
Binary files /dev/null and b/desktop/assets/data/graphics/16069.png differ
diff --git a/desktop/assets/data/graphics/16070.png b/desktop/assets/data/graphics/16070.png
new file mode 100644
index 00000000..91eb92c2
Binary files /dev/null and b/desktop/assets/data/graphics/16070.png differ
diff --git a/desktop/assets/data/graphics/16071.png b/desktop/assets/data/graphics/16071.png
new file mode 100644
index 00000000..de8ba940
Binary files /dev/null and b/desktop/assets/data/graphics/16071.png differ
diff --git a/desktop/assets/data/graphics/16072.png b/desktop/assets/data/graphics/16072.png
new file mode 100644
index 00000000..2c7c4d7b
Binary files /dev/null and b/desktop/assets/data/graphics/16072.png differ
diff --git a/desktop/assets/data/graphics/16073.png b/desktop/assets/data/graphics/16073.png
new file mode 100644
index 00000000..cb730ce7
Binary files /dev/null and b/desktop/assets/data/graphics/16073.png differ
diff --git a/desktop/assets/data/graphics/16074.png b/desktop/assets/data/graphics/16074.png
new file mode 100644
index 00000000..bcf21a59
Binary files /dev/null and b/desktop/assets/data/graphics/16074.png differ
diff --git a/desktop/assets/data/graphics/16075.png b/desktop/assets/data/graphics/16075.png
new file mode 100644
index 00000000..5407b38b
Binary files /dev/null and b/desktop/assets/data/graphics/16075.png differ
diff --git a/desktop/assets/data/graphics/16076.png b/desktop/assets/data/graphics/16076.png
new file mode 100644
index 00000000..b0c07c9b
Binary files /dev/null and b/desktop/assets/data/graphics/16076.png differ
diff --git a/desktop/assets/data/graphics/16077.png b/desktop/assets/data/graphics/16077.png
new file mode 100644
index 00000000..4a81e6bb
Binary files /dev/null and b/desktop/assets/data/graphics/16077.png differ
diff --git a/desktop/assets/data/graphics/16078.png b/desktop/assets/data/graphics/16078.png
new file mode 100644
index 00000000..9d17c566
Binary files /dev/null and b/desktop/assets/data/graphics/16078.png differ
diff --git a/desktop/assets/data/graphics/16079.png b/desktop/assets/data/graphics/16079.png
new file mode 100644
index 00000000..d0d3c435
Binary files /dev/null and b/desktop/assets/data/graphics/16079.png differ
diff --git a/desktop/assets/data/graphics/16080.png b/desktop/assets/data/graphics/16080.png
new file mode 100644
index 00000000..3e5447eb
Binary files /dev/null and b/desktop/assets/data/graphics/16080.png differ
diff --git a/desktop/assets/data/graphics/16081.png b/desktop/assets/data/graphics/16081.png
new file mode 100644
index 00000000..f9b83328
Binary files /dev/null and b/desktop/assets/data/graphics/16081.png differ
diff --git a/desktop/assets/data/graphics/16082.png b/desktop/assets/data/graphics/16082.png
new file mode 100644
index 00000000..9855c1a3
Binary files /dev/null and b/desktop/assets/data/graphics/16082.png differ
diff --git a/desktop/assets/data/graphics/16083.png b/desktop/assets/data/graphics/16083.png
new file mode 100644
index 00000000..9862e15b
Binary files /dev/null and b/desktop/assets/data/graphics/16083.png differ
diff --git a/desktop/assets/data/graphics/16084.png b/desktop/assets/data/graphics/16084.png
new file mode 100644
index 00000000..5fb5accc
Binary files /dev/null and b/desktop/assets/data/graphics/16084.png differ
diff --git a/desktop/assets/data/graphics/16085.png b/desktop/assets/data/graphics/16085.png
new file mode 100644
index 00000000..af8a5745
Binary files /dev/null and b/desktop/assets/data/graphics/16085.png differ
diff --git a/desktop/assets/data/graphics/16086.png b/desktop/assets/data/graphics/16086.png
new file mode 100644
index 00000000..6fc88d51
Binary files /dev/null and b/desktop/assets/data/graphics/16086.png differ
diff --git a/desktop/assets/data/graphics/16087.png b/desktop/assets/data/graphics/16087.png
new file mode 100644
index 00000000..dc0548b9
Binary files /dev/null and b/desktop/assets/data/graphics/16087.png differ
diff --git a/desktop/assets/data/graphics/16088.png b/desktop/assets/data/graphics/16088.png
new file mode 100644
index 00000000..920eacf1
Binary files /dev/null and b/desktop/assets/data/graphics/16088.png differ
diff --git a/desktop/assets/data/graphics/16089.png b/desktop/assets/data/graphics/16089.png
new file mode 100644
index 00000000..5cf6e02c
Binary files /dev/null and b/desktop/assets/data/graphics/16089.png differ
diff --git a/desktop/assets/data/graphics/16090.png b/desktop/assets/data/graphics/16090.png
new file mode 100644
index 00000000..599c6a68
Binary files /dev/null and b/desktop/assets/data/graphics/16090.png differ
diff --git a/desktop/assets/data/graphics/16091.png b/desktop/assets/data/graphics/16091.png
new file mode 100644
index 00000000..b48d9db9
Binary files /dev/null and b/desktop/assets/data/graphics/16091.png differ
diff --git a/desktop/assets/data/graphics/16092.png b/desktop/assets/data/graphics/16092.png
new file mode 100644
index 00000000..fe7fdbc0
Binary files /dev/null and b/desktop/assets/data/graphics/16092.png differ
diff --git a/desktop/assets/data/graphics/16093.png b/desktop/assets/data/graphics/16093.png
new file mode 100644
index 00000000..95731948
Binary files /dev/null and b/desktop/assets/data/graphics/16093.png differ
diff --git a/desktop/assets/data/graphics/16094.png b/desktop/assets/data/graphics/16094.png
new file mode 100644
index 00000000..578c03ba
Binary files /dev/null and b/desktop/assets/data/graphics/16094.png differ
diff --git a/desktop/assets/data/graphics/16095.png b/desktop/assets/data/graphics/16095.png
new file mode 100644
index 00000000..0a934575
Binary files /dev/null and b/desktop/assets/data/graphics/16095.png differ
diff --git a/desktop/assets/data/graphics/16096.png b/desktop/assets/data/graphics/16096.png
new file mode 100644
index 00000000..c78667bb
Binary files /dev/null and b/desktop/assets/data/graphics/16096.png differ
diff --git a/desktop/assets/data/graphics/16097.png b/desktop/assets/data/graphics/16097.png
new file mode 100644
index 00000000..7e9f42e3
Binary files /dev/null and b/desktop/assets/data/graphics/16097.png differ
diff --git a/desktop/assets/data/graphics/16098.png b/desktop/assets/data/graphics/16098.png
new file mode 100644
index 00000000..323fe203
Binary files /dev/null and b/desktop/assets/data/graphics/16098.png differ
diff --git a/desktop/assets/data/graphics/16099.png b/desktop/assets/data/graphics/16099.png
new file mode 100644
index 00000000..be9007be
Binary files /dev/null and b/desktop/assets/data/graphics/16099.png differ
diff --git a/desktop/assets/data/graphics/161.png b/desktop/assets/data/graphics/161.png
new file mode 100644
index 00000000..25b0a5a0
Binary files /dev/null and b/desktop/assets/data/graphics/161.png differ
diff --git a/desktop/assets/data/graphics/16100.png b/desktop/assets/data/graphics/16100.png
new file mode 100644
index 00000000..0999d072
Binary files /dev/null and b/desktop/assets/data/graphics/16100.png differ
diff --git a/desktop/assets/data/graphics/16101.png b/desktop/assets/data/graphics/16101.png
new file mode 100644
index 00000000..f86bfb70
Binary files /dev/null and b/desktop/assets/data/graphics/16101.png differ
diff --git a/desktop/assets/data/graphics/16102.png b/desktop/assets/data/graphics/16102.png
new file mode 100644
index 00000000..7fa354c4
Binary files /dev/null and b/desktop/assets/data/graphics/16102.png differ
diff --git a/desktop/assets/data/graphics/16103.png b/desktop/assets/data/graphics/16103.png
new file mode 100644
index 00000000..c5f670ef
Binary files /dev/null and b/desktop/assets/data/graphics/16103.png differ
diff --git a/desktop/assets/data/graphics/16104.png b/desktop/assets/data/graphics/16104.png
new file mode 100644
index 00000000..084cacf2
Binary files /dev/null and b/desktop/assets/data/graphics/16104.png differ
diff --git a/desktop/assets/data/graphics/16105.png b/desktop/assets/data/graphics/16105.png
new file mode 100644
index 00000000..bffb2c89
Binary files /dev/null and b/desktop/assets/data/graphics/16105.png differ
diff --git a/desktop/assets/data/graphics/16106.png b/desktop/assets/data/graphics/16106.png
new file mode 100644
index 00000000..7da44e73
Binary files /dev/null and b/desktop/assets/data/graphics/16106.png differ
diff --git a/desktop/assets/data/graphics/16107.png b/desktop/assets/data/graphics/16107.png
new file mode 100644
index 00000000..099e76c6
Binary files /dev/null and b/desktop/assets/data/graphics/16107.png differ
diff --git a/desktop/assets/data/graphics/16108.png b/desktop/assets/data/graphics/16108.png
new file mode 100644
index 00000000..e09bdad0
Binary files /dev/null and b/desktop/assets/data/graphics/16108.png differ
diff --git a/desktop/assets/data/graphics/16109.png b/desktop/assets/data/graphics/16109.png
new file mode 100644
index 00000000..3b14528d
Binary files /dev/null and b/desktop/assets/data/graphics/16109.png differ
diff --git a/desktop/assets/data/graphics/16110.png b/desktop/assets/data/graphics/16110.png
new file mode 100644
index 00000000..0d68e180
Binary files /dev/null and b/desktop/assets/data/graphics/16110.png differ
diff --git a/desktop/assets/data/graphics/16111.png b/desktop/assets/data/graphics/16111.png
new file mode 100644
index 00000000..aa3105ed
Binary files /dev/null and b/desktop/assets/data/graphics/16111.png differ
diff --git a/desktop/assets/data/graphics/16112.png b/desktop/assets/data/graphics/16112.png
new file mode 100644
index 00000000..c6d377e7
Binary files /dev/null and b/desktop/assets/data/graphics/16112.png differ
diff --git a/desktop/assets/data/graphics/162.png b/desktop/assets/data/graphics/162.png
new file mode 100644
index 00000000..ee043e27
Binary files /dev/null and b/desktop/assets/data/graphics/162.png differ
diff --git a/desktop/assets/data/graphics/163.png b/desktop/assets/data/graphics/163.png
new file mode 100644
index 00000000..977aa377
Binary files /dev/null and b/desktop/assets/data/graphics/163.png differ
diff --git a/desktop/assets/data/graphics/164.png b/desktop/assets/data/graphics/164.png
new file mode 100644
index 00000000..ed744811
Binary files /dev/null and b/desktop/assets/data/graphics/164.png differ
diff --git a/desktop/assets/data/graphics/165.png b/desktop/assets/data/graphics/165.png
new file mode 100644
index 00000000..326263ab
Binary files /dev/null and b/desktop/assets/data/graphics/165.png differ
diff --git a/desktop/assets/data/graphics/166.png b/desktop/assets/data/graphics/166.png
new file mode 100644
index 00000000..57828535
Binary files /dev/null and b/desktop/assets/data/graphics/166.png differ
diff --git a/desktop/assets/data/graphics/167.png b/desktop/assets/data/graphics/167.png
new file mode 100644
index 00000000..b414c47b
Binary files /dev/null and b/desktop/assets/data/graphics/167.png differ
diff --git a/desktop/assets/data/graphics/168.png b/desktop/assets/data/graphics/168.png
new file mode 100644
index 00000000..81b84a5a
Binary files /dev/null and b/desktop/assets/data/graphics/168.png differ
diff --git a/desktop/assets/data/graphics/169.png b/desktop/assets/data/graphics/169.png
new file mode 100644
index 00000000..4f11240f
Binary files /dev/null and b/desktop/assets/data/graphics/169.png differ
diff --git a/desktop/assets/data/graphics/17.png b/desktop/assets/data/graphics/17.png
new file mode 100644
index 00000000..599e6b05
Binary files /dev/null and b/desktop/assets/data/graphics/17.png differ
diff --git a/desktop/assets/data/graphics/170.png b/desktop/assets/data/graphics/170.png
new file mode 100644
index 00000000..11c67a06
Binary files /dev/null and b/desktop/assets/data/graphics/170.png differ
diff --git a/desktop/assets/data/graphics/17000.png b/desktop/assets/data/graphics/17000.png
new file mode 100644
index 00000000..2a4d407c
Binary files /dev/null and b/desktop/assets/data/graphics/17000.png differ
diff --git a/desktop/assets/data/graphics/17001.png b/desktop/assets/data/graphics/17001.png
new file mode 100644
index 00000000..d6d1afd0
Binary files /dev/null and b/desktop/assets/data/graphics/17001.png differ
diff --git a/desktop/assets/data/graphics/17002.png b/desktop/assets/data/graphics/17002.png
new file mode 100644
index 00000000..51034e51
Binary files /dev/null and b/desktop/assets/data/graphics/17002.png differ
diff --git a/desktop/assets/data/graphics/17003.png b/desktop/assets/data/graphics/17003.png
new file mode 100644
index 00000000..85c560da
Binary files /dev/null and b/desktop/assets/data/graphics/17003.png differ
diff --git a/desktop/assets/data/graphics/17004.png b/desktop/assets/data/graphics/17004.png
new file mode 100644
index 00000000..1500dece
Binary files /dev/null and b/desktop/assets/data/graphics/17004.png differ
diff --git a/desktop/assets/data/graphics/17005.png b/desktop/assets/data/graphics/17005.png
new file mode 100644
index 00000000..9e1f88f2
Binary files /dev/null and b/desktop/assets/data/graphics/17005.png differ
diff --git a/desktop/assets/data/graphics/17006.png b/desktop/assets/data/graphics/17006.png
new file mode 100644
index 00000000..d4724674
Binary files /dev/null and b/desktop/assets/data/graphics/17006.png differ
diff --git a/desktop/assets/data/graphics/17007.png b/desktop/assets/data/graphics/17007.png
new file mode 100644
index 00000000..51ed7d14
Binary files /dev/null and b/desktop/assets/data/graphics/17007.png differ
diff --git a/desktop/assets/data/graphics/17008.png b/desktop/assets/data/graphics/17008.png
new file mode 100644
index 00000000..92d66c04
Binary files /dev/null and b/desktop/assets/data/graphics/17008.png differ
diff --git a/desktop/assets/data/graphics/17009.png b/desktop/assets/data/graphics/17009.png
new file mode 100644
index 00000000..8b3c6522
Binary files /dev/null and b/desktop/assets/data/graphics/17009.png differ
diff --git a/desktop/assets/data/graphics/17010.png b/desktop/assets/data/graphics/17010.png
new file mode 100644
index 00000000..ee1fdbe0
Binary files /dev/null and b/desktop/assets/data/graphics/17010.png differ
diff --git a/desktop/assets/data/graphics/17011.png b/desktop/assets/data/graphics/17011.png
new file mode 100644
index 00000000..13cb69a2
Binary files /dev/null and b/desktop/assets/data/graphics/17011.png differ
diff --git a/desktop/assets/data/graphics/17012.png b/desktop/assets/data/graphics/17012.png
new file mode 100644
index 00000000..7df45d09
Binary files /dev/null and b/desktop/assets/data/graphics/17012.png differ
diff --git a/desktop/assets/data/graphics/17013.png b/desktop/assets/data/graphics/17013.png
new file mode 100644
index 00000000..6264ffd4
Binary files /dev/null and b/desktop/assets/data/graphics/17013.png differ
diff --git a/desktop/assets/data/graphics/17014.png b/desktop/assets/data/graphics/17014.png
new file mode 100644
index 00000000..032d7f89
Binary files /dev/null and b/desktop/assets/data/graphics/17014.png differ
diff --git a/desktop/assets/data/graphics/171.png b/desktop/assets/data/graphics/171.png
new file mode 100644
index 00000000..ea82a085
Binary files /dev/null and b/desktop/assets/data/graphics/171.png differ
diff --git a/desktop/assets/data/graphics/172.png b/desktop/assets/data/graphics/172.png
new file mode 100644
index 00000000..01283c6b
Binary files /dev/null and b/desktop/assets/data/graphics/172.png differ
diff --git a/desktop/assets/data/graphics/173.png b/desktop/assets/data/graphics/173.png
new file mode 100644
index 00000000..e68de2d8
Binary files /dev/null and b/desktop/assets/data/graphics/173.png differ
diff --git a/desktop/assets/data/graphics/174.png b/desktop/assets/data/graphics/174.png
new file mode 100644
index 00000000..31c1dc05
Binary files /dev/null and b/desktop/assets/data/graphics/174.png differ
diff --git a/desktop/assets/data/graphics/175.png b/desktop/assets/data/graphics/175.png
new file mode 100644
index 00000000..a7f5db8b
Binary files /dev/null and b/desktop/assets/data/graphics/175.png differ
diff --git a/desktop/assets/data/graphics/176.png b/desktop/assets/data/graphics/176.png
new file mode 100644
index 00000000..23db03ed
Binary files /dev/null and b/desktop/assets/data/graphics/176.png differ
diff --git a/desktop/assets/data/graphics/177.png b/desktop/assets/data/graphics/177.png
new file mode 100644
index 00000000..832768bc
Binary files /dev/null and b/desktop/assets/data/graphics/177.png differ
diff --git a/desktop/assets/data/graphics/178.png b/desktop/assets/data/graphics/178.png
new file mode 100644
index 00000000..3ad1c03d
Binary files /dev/null and b/desktop/assets/data/graphics/178.png differ
diff --git a/desktop/assets/data/graphics/179.png b/desktop/assets/data/graphics/179.png
new file mode 100644
index 00000000..1955f11e
Binary files /dev/null and b/desktop/assets/data/graphics/179.png differ
diff --git a/desktop/assets/data/graphics/18.png b/desktop/assets/data/graphics/18.png
new file mode 100644
index 00000000..8adf2112
Binary files /dev/null and b/desktop/assets/data/graphics/18.png differ
diff --git a/desktop/assets/data/graphics/180.png b/desktop/assets/data/graphics/180.png
new file mode 100644
index 00000000..2fd6c6f8
Binary files /dev/null and b/desktop/assets/data/graphics/180.png differ
diff --git a/desktop/assets/data/graphics/18000.png b/desktop/assets/data/graphics/18000.png
new file mode 100644
index 00000000..9a49ec8c
Binary files /dev/null and b/desktop/assets/data/graphics/18000.png differ
diff --git a/desktop/assets/data/graphics/18001.png b/desktop/assets/data/graphics/18001.png
new file mode 100644
index 00000000..6df3f9b7
Binary files /dev/null and b/desktop/assets/data/graphics/18001.png differ
diff --git a/desktop/assets/data/graphics/18002.png b/desktop/assets/data/graphics/18002.png
new file mode 100644
index 00000000..b44b58a8
Binary files /dev/null and b/desktop/assets/data/graphics/18002.png differ
diff --git a/desktop/assets/data/graphics/18003.png b/desktop/assets/data/graphics/18003.png
new file mode 100644
index 00000000..0f271c5b
Binary files /dev/null and b/desktop/assets/data/graphics/18003.png differ
diff --git a/desktop/assets/data/graphics/18004.png b/desktop/assets/data/graphics/18004.png
new file mode 100644
index 00000000..aae4f124
Binary files /dev/null and b/desktop/assets/data/graphics/18004.png differ
diff --git a/desktop/assets/data/graphics/18005.png b/desktop/assets/data/graphics/18005.png
new file mode 100644
index 00000000..a9dde359
Binary files /dev/null and b/desktop/assets/data/graphics/18005.png differ
diff --git a/desktop/assets/data/graphics/18006.png b/desktop/assets/data/graphics/18006.png
new file mode 100644
index 00000000..2ade0bbd
Binary files /dev/null and b/desktop/assets/data/graphics/18006.png differ
diff --git a/desktop/assets/data/graphics/18007.png b/desktop/assets/data/graphics/18007.png
new file mode 100644
index 00000000..d8f81c00
Binary files /dev/null and b/desktop/assets/data/graphics/18007.png differ
diff --git a/desktop/assets/data/graphics/18008.png b/desktop/assets/data/graphics/18008.png
new file mode 100644
index 00000000..1c0cfee9
Binary files /dev/null and b/desktop/assets/data/graphics/18008.png differ
diff --git a/desktop/assets/data/graphics/18009.png b/desktop/assets/data/graphics/18009.png
new file mode 100644
index 00000000..e17675f6
Binary files /dev/null and b/desktop/assets/data/graphics/18009.png differ
diff --git a/desktop/assets/data/graphics/18010.png b/desktop/assets/data/graphics/18010.png
new file mode 100644
index 00000000..6b194fa3
Binary files /dev/null and b/desktop/assets/data/graphics/18010.png differ
diff --git a/desktop/assets/data/graphics/18011.png b/desktop/assets/data/graphics/18011.png
new file mode 100644
index 00000000..52c09561
Binary files /dev/null and b/desktop/assets/data/graphics/18011.png differ
diff --git a/desktop/assets/data/graphics/18012.png b/desktop/assets/data/graphics/18012.png
new file mode 100644
index 00000000..b0ae55a5
Binary files /dev/null and b/desktop/assets/data/graphics/18012.png differ
diff --git a/desktop/assets/data/graphics/18013.png b/desktop/assets/data/graphics/18013.png
new file mode 100644
index 00000000..a3afb6be
Binary files /dev/null and b/desktop/assets/data/graphics/18013.png differ
diff --git a/desktop/assets/data/graphics/18014.png b/desktop/assets/data/graphics/18014.png
new file mode 100644
index 00000000..cf726c5b
Binary files /dev/null and b/desktop/assets/data/graphics/18014.png differ
diff --git a/desktop/assets/data/graphics/18015.png b/desktop/assets/data/graphics/18015.png
new file mode 100644
index 00000000..3255ea6d
Binary files /dev/null and b/desktop/assets/data/graphics/18015.png differ
diff --git a/desktop/assets/data/graphics/18016.png b/desktop/assets/data/graphics/18016.png
new file mode 100644
index 00000000..7913e1e9
Binary files /dev/null and b/desktop/assets/data/graphics/18016.png differ
diff --git a/desktop/assets/data/graphics/18017.png b/desktop/assets/data/graphics/18017.png
new file mode 100644
index 00000000..6f896620
Binary files /dev/null and b/desktop/assets/data/graphics/18017.png differ
diff --git a/desktop/assets/data/graphics/18018.png b/desktop/assets/data/graphics/18018.png
new file mode 100644
index 00000000..567e4b34
Binary files /dev/null and b/desktop/assets/data/graphics/18018.png differ
diff --git a/desktop/assets/data/graphics/18019.png b/desktop/assets/data/graphics/18019.png
new file mode 100644
index 00000000..4862b485
Binary files /dev/null and b/desktop/assets/data/graphics/18019.png differ
diff --git a/desktop/assets/data/graphics/18020.png b/desktop/assets/data/graphics/18020.png
new file mode 100644
index 00000000..2251b3c7
Binary files /dev/null and b/desktop/assets/data/graphics/18020.png differ
diff --git a/desktop/assets/data/graphics/18021.png b/desktop/assets/data/graphics/18021.png
new file mode 100644
index 00000000..69272cf7
Binary files /dev/null and b/desktop/assets/data/graphics/18021.png differ
diff --git a/desktop/assets/data/graphics/18022.png b/desktop/assets/data/graphics/18022.png
new file mode 100644
index 00000000..b9d3b92c
Binary files /dev/null and b/desktop/assets/data/graphics/18022.png differ
diff --git a/desktop/assets/data/graphics/18023.png b/desktop/assets/data/graphics/18023.png
new file mode 100644
index 00000000..7fe2476b
Binary files /dev/null and b/desktop/assets/data/graphics/18023.png differ
diff --git a/desktop/assets/data/graphics/18024.png b/desktop/assets/data/graphics/18024.png
new file mode 100644
index 00000000..89144b67
Binary files /dev/null and b/desktop/assets/data/graphics/18024.png differ
diff --git a/desktop/assets/data/graphics/18025.png b/desktop/assets/data/graphics/18025.png
new file mode 100644
index 00000000..953f3c54
Binary files /dev/null and b/desktop/assets/data/graphics/18025.png differ
diff --git a/desktop/assets/data/graphics/18026.png b/desktop/assets/data/graphics/18026.png
new file mode 100644
index 00000000..31fd71db
Binary files /dev/null and b/desktop/assets/data/graphics/18026.png differ
diff --git a/desktop/assets/data/graphics/18027.png b/desktop/assets/data/graphics/18027.png
new file mode 100644
index 00000000..6394a119
Binary files /dev/null and b/desktop/assets/data/graphics/18027.png differ
diff --git a/desktop/assets/data/graphics/18028.png b/desktop/assets/data/graphics/18028.png
new file mode 100644
index 00000000..7047173d
Binary files /dev/null and b/desktop/assets/data/graphics/18028.png differ
diff --git a/desktop/assets/data/graphics/181.png b/desktop/assets/data/graphics/181.png
new file mode 100644
index 00000000..754ea460
Binary files /dev/null and b/desktop/assets/data/graphics/181.png differ
diff --git a/desktop/assets/data/graphics/182.png b/desktop/assets/data/graphics/182.png
new file mode 100644
index 00000000..2e5ee07e
Binary files /dev/null and b/desktop/assets/data/graphics/182.png differ
diff --git a/desktop/assets/data/graphics/183.png b/desktop/assets/data/graphics/183.png
new file mode 100644
index 00000000..02c1992b
Binary files /dev/null and b/desktop/assets/data/graphics/183.png differ
diff --git a/desktop/assets/data/graphics/184.png b/desktop/assets/data/graphics/184.png
new file mode 100644
index 00000000..86d36cc1
Binary files /dev/null and b/desktop/assets/data/graphics/184.png differ
diff --git a/desktop/assets/data/graphics/185.png b/desktop/assets/data/graphics/185.png
new file mode 100644
index 00000000..f1d0b12f
Binary files /dev/null and b/desktop/assets/data/graphics/185.png differ
diff --git a/desktop/assets/data/graphics/186.png b/desktop/assets/data/graphics/186.png
new file mode 100644
index 00000000..96400cee
Binary files /dev/null and b/desktop/assets/data/graphics/186.png differ
diff --git a/desktop/assets/data/graphics/187.png b/desktop/assets/data/graphics/187.png
new file mode 100644
index 00000000..0bdafade
Binary files /dev/null and b/desktop/assets/data/graphics/187.png differ
diff --git a/desktop/assets/data/graphics/188.png b/desktop/assets/data/graphics/188.png
new file mode 100644
index 00000000..45d2e0ab
Binary files /dev/null and b/desktop/assets/data/graphics/188.png differ
diff --git a/desktop/assets/data/graphics/189.png b/desktop/assets/data/graphics/189.png
new file mode 100644
index 00000000..b30d62ba
Binary files /dev/null and b/desktop/assets/data/graphics/189.png differ
diff --git a/desktop/assets/data/graphics/19.png b/desktop/assets/data/graphics/19.png
new file mode 100644
index 00000000..b3d5dbfa
Binary files /dev/null and b/desktop/assets/data/graphics/19.png differ
diff --git a/desktop/assets/data/graphics/190.png b/desktop/assets/data/graphics/190.png
new file mode 100644
index 00000000..71cc6ef8
Binary files /dev/null and b/desktop/assets/data/graphics/190.png differ
diff --git a/desktop/assets/data/graphics/19000.png b/desktop/assets/data/graphics/19000.png
new file mode 100644
index 00000000..f84ea802
Binary files /dev/null and b/desktop/assets/data/graphics/19000.png differ
diff --git a/desktop/assets/data/graphics/19001.png b/desktop/assets/data/graphics/19001.png
new file mode 100644
index 00000000..26c674c4
Binary files /dev/null and b/desktop/assets/data/graphics/19001.png differ
diff --git a/desktop/assets/data/graphics/19002.png b/desktop/assets/data/graphics/19002.png
new file mode 100644
index 00000000..e2d47242
Binary files /dev/null and b/desktop/assets/data/graphics/19002.png differ
diff --git a/desktop/assets/data/graphics/19003.png b/desktop/assets/data/graphics/19003.png
new file mode 100644
index 00000000..f3201b06
Binary files /dev/null and b/desktop/assets/data/graphics/19003.png differ
diff --git a/desktop/assets/data/graphics/19004.png b/desktop/assets/data/graphics/19004.png
new file mode 100644
index 00000000..8caf0a0b
Binary files /dev/null and b/desktop/assets/data/graphics/19004.png differ
diff --git a/desktop/assets/data/graphics/19005.png b/desktop/assets/data/graphics/19005.png
new file mode 100644
index 00000000..9b0e374e
Binary files /dev/null and b/desktop/assets/data/graphics/19005.png differ
diff --git a/desktop/assets/data/graphics/19006.png b/desktop/assets/data/graphics/19006.png
new file mode 100644
index 00000000..666a7539
Binary files /dev/null and b/desktop/assets/data/graphics/19006.png differ
diff --git a/desktop/assets/data/graphics/19007.png b/desktop/assets/data/graphics/19007.png
new file mode 100644
index 00000000..e0194aab
Binary files /dev/null and b/desktop/assets/data/graphics/19007.png differ
diff --git a/desktop/assets/data/graphics/19008.png b/desktop/assets/data/graphics/19008.png
new file mode 100644
index 00000000..14debd98
Binary files /dev/null and b/desktop/assets/data/graphics/19008.png differ
diff --git a/desktop/assets/data/graphics/19009.png b/desktop/assets/data/graphics/19009.png
new file mode 100644
index 00000000..6f0eef41
Binary files /dev/null and b/desktop/assets/data/graphics/19009.png differ
diff --git a/desktop/assets/data/graphics/19010.png b/desktop/assets/data/graphics/19010.png
new file mode 100644
index 00000000..bb9a0623
Binary files /dev/null and b/desktop/assets/data/graphics/19010.png differ
diff --git a/desktop/assets/data/graphics/19011.png b/desktop/assets/data/graphics/19011.png
new file mode 100644
index 00000000..ba4ff298
Binary files /dev/null and b/desktop/assets/data/graphics/19011.png differ
diff --git a/desktop/assets/data/graphics/19012.png b/desktop/assets/data/graphics/19012.png
new file mode 100644
index 00000000..119e9395
Binary files /dev/null and b/desktop/assets/data/graphics/19012.png differ
diff --git a/desktop/assets/data/graphics/19013.png b/desktop/assets/data/graphics/19013.png
new file mode 100644
index 00000000..f195b460
Binary files /dev/null and b/desktop/assets/data/graphics/19013.png differ
diff --git a/desktop/assets/data/graphics/19014.png b/desktop/assets/data/graphics/19014.png
new file mode 100644
index 00000000..b4fc6cf0
Binary files /dev/null and b/desktop/assets/data/graphics/19014.png differ
diff --git a/desktop/assets/data/graphics/19015.png b/desktop/assets/data/graphics/19015.png
new file mode 100644
index 00000000..a8c66b26
Binary files /dev/null and b/desktop/assets/data/graphics/19015.png differ
diff --git a/desktop/assets/data/graphics/19016.png b/desktop/assets/data/graphics/19016.png
new file mode 100644
index 00000000..0c748a16
Binary files /dev/null and b/desktop/assets/data/graphics/19016.png differ
diff --git a/desktop/assets/data/graphics/19017.png b/desktop/assets/data/graphics/19017.png
new file mode 100644
index 00000000..b061e4a0
Binary files /dev/null and b/desktop/assets/data/graphics/19017.png differ
diff --git a/desktop/assets/data/graphics/19018.png b/desktop/assets/data/graphics/19018.png
new file mode 100644
index 00000000..828822e7
Binary files /dev/null and b/desktop/assets/data/graphics/19018.png differ
diff --git a/desktop/assets/data/graphics/19019.png b/desktop/assets/data/graphics/19019.png
new file mode 100644
index 00000000..0dc9a677
Binary files /dev/null and b/desktop/assets/data/graphics/19019.png differ
diff --git a/desktop/assets/data/graphics/19020.png b/desktop/assets/data/graphics/19020.png
new file mode 100644
index 00000000..c9c1de68
Binary files /dev/null and b/desktop/assets/data/graphics/19020.png differ
diff --git a/desktop/assets/data/graphics/19021.png b/desktop/assets/data/graphics/19021.png
new file mode 100644
index 00000000..49b2a822
Binary files /dev/null and b/desktop/assets/data/graphics/19021.png differ
diff --git a/desktop/assets/data/graphics/19022.png b/desktop/assets/data/graphics/19022.png
new file mode 100644
index 00000000..059eddf0
Binary files /dev/null and b/desktop/assets/data/graphics/19022.png differ
diff --git a/desktop/assets/data/graphics/19023.png b/desktop/assets/data/graphics/19023.png
new file mode 100644
index 00000000..cd4f8c2e
Binary files /dev/null and b/desktop/assets/data/graphics/19023.png differ
diff --git a/desktop/assets/data/graphics/19024.png b/desktop/assets/data/graphics/19024.png
new file mode 100644
index 00000000..1b54967c
Binary files /dev/null and b/desktop/assets/data/graphics/19024.png differ
diff --git a/desktop/assets/data/graphics/19025.png b/desktop/assets/data/graphics/19025.png
new file mode 100644
index 00000000..15a3474d
Binary files /dev/null and b/desktop/assets/data/graphics/19025.png differ
diff --git a/desktop/assets/data/graphics/19026.png b/desktop/assets/data/graphics/19026.png
new file mode 100644
index 00000000..3e32b834
Binary files /dev/null and b/desktop/assets/data/graphics/19026.png differ
diff --git a/desktop/assets/data/graphics/19027.png b/desktop/assets/data/graphics/19027.png
new file mode 100644
index 00000000..892e723f
Binary files /dev/null and b/desktop/assets/data/graphics/19027.png differ
diff --git a/desktop/assets/data/graphics/19028.png b/desktop/assets/data/graphics/19028.png
new file mode 100644
index 00000000..1257e6be
Binary files /dev/null and b/desktop/assets/data/graphics/19028.png differ
diff --git a/desktop/assets/data/graphics/191.png b/desktop/assets/data/graphics/191.png
new file mode 100644
index 00000000..cf0b2f31
Binary files /dev/null and b/desktop/assets/data/graphics/191.png differ
diff --git a/desktop/assets/data/graphics/192.png b/desktop/assets/data/graphics/192.png
new file mode 100644
index 00000000..1352944d
Binary files /dev/null and b/desktop/assets/data/graphics/192.png differ
diff --git a/desktop/assets/data/graphics/193.png b/desktop/assets/data/graphics/193.png
new file mode 100644
index 00000000..d1a2fc40
Binary files /dev/null and b/desktop/assets/data/graphics/193.png differ
diff --git a/desktop/assets/data/graphics/194.png b/desktop/assets/data/graphics/194.png
new file mode 100644
index 00000000..48e1e0e1
Binary files /dev/null and b/desktop/assets/data/graphics/194.png differ
diff --git a/desktop/assets/data/graphics/195.png b/desktop/assets/data/graphics/195.png
new file mode 100644
index 00000000..fa2c846c
Binary files /dev/null and b/desktop/assets/data/graphics/195.png differ
diff --git a/desktop/assets/data/graphics/196.png b/desktop/assets/data/graphics/196.png
new file mode 100644
index 00000000..670a67b7
Binary files /dev/null and b/desktop/assets/data/graphics/196.png differ
diff --git a/desktop/assets/data/graphics/197.png b/desktop/assets/data/graphics/197.png
new file mode 100644
index 00000000..e48d4610
Binary files /dev/null and b/desktop/assets/data/graphics/197.png differ
diff --git a/desktop/assets/data/graphics/198.png b/desktop/assets/data/graphics/198.png
new file mode 100644
index 00000000..7faac908
Binary files /dev/null and b/desktop/assets/data/graphics/198.png differ
diff --git a/desktop/assets/data/graphics/199.png b/desktop/assets/data/graphics/199.png
new file mode 100644
index 00000000..63d07223
Binary files /dev/null and b/desktop/assets/data/graphics/199.png differ
diff --git a/desktop/assets/data/graphics/2.png b/desktop/assets/data/graphics/2.png
new file mode 100644
index 00000000..083b430a
Binary files /dev/null and b/desktop/assets/data/graphics/2.png differ
diff --git a/desktop/assets/data/graphics/20.png b/desktop/assets/data/graphics/20.png
new file mode 100644
index 00000000..f6f05430
Binary files /dev/null and b/desktop/assets/data/graphics/20.png differ
diff --git a/desktop/assets/data/graphics/200.png b/desktop/assets/data/graphics/200.png
new file mode 100644
index 00000000..a72ab3cb
Binary files /dev/null and b/desktop/assets/data/graphics/200.png differ
diff --git a/desktop/assets/data/graphics/2000.png b/desktop/assets/data/graphics/2000.png
new file mode 100644
index 00000000..977ce147
Binary files /dev/null and b/desktop/assets/data/graphics/2000.png differ
diff --git a/desktop/assets/data/graphics/20000.png b/desktop/assets/data/graphics/20000.png
new file mode 100644
index 00000000..c2156104
Binary files /dev/null and b/desktop/assets/data/graphics/20000.png differ
diff --git a/desktop/assets/data/graphics/20001.png b/desktop/assets/data/graphics/20001.png
new file mode 100644
index 00000000..1533beb3
Binary files /dev/null and b/desktop/assets/data/graphics/20001.png differ
diff --git a/desktop/assets/data/graphics/20002.png b/desktop/assets/data/graphics/20002.png
new file mode 100644
index 00000000..26d3c303
Binary files /dev/null and b/desktop/assets/data/graphics/20002.png differ
diff --git a/desktop/assets/data/graphics/20003.png b/desktop/assets/data/graphics/20003.png
new file mode 100644
index 00000000..77a82410
Binary files /dev/null and b/desktop/assets/data/graphics/20003.png differ
diff --git a/desktop/assets/data/graphics/20004.png b/desktop/assets/data/graphics/20004.png
new file mode 100644
index 00000000..035e6296
Binary files /dev/null and b/desktop/assets/data/graphics/20004.png differ
diff --git a/desktop/assets/data/graphics/20005.png b/desktop/assets/data/graphics/20005.png
new file mode 100644
index 00000000..519c939f
Binary files /dev/null and b/desktop/assets/data/graphics/20005.png differ
diff --git a/desktop/assets/data/graphics/20006.png b/desktop/assets/data/graphics/20006.png
new file mode 100644
index 00000000..792e2572
Binary files /dev/null and b/desktop/assets/data/graphics/20006.png differ
diff --git a/desktop/assets/data/graphics/20007.png b/desktop/assets/data/graphics/20007.png
new file mode 100644
index 00000000..013f5528
Binary files /dev/null and b/desktop/assets/data/graphics/20007.png differ
diff --git a/desktop/assets/data/graphics/20008.png b/desktop/assets/data/graphics/20008.png
new file mode 100644
index 00000000..726d112c
Binary files /dev/null and b/desktop/assets/data/graphics/20008.png differ
diff --git a/desktop/assets/data/graphics/20009.png b/desktop/assets/data/graphics/20009.png
new file mode 100644
index 00000000..4c2d73a7
Binary files /dev/null and b/desktop/assets/data/graphics/20009.png differ
diff --git a/desktop/assets/data/graphics/2001.png b/desktop/assets/data/graphics/2001.png
new file mode 100644
index 00000000..86b71d8c
Binary files /dev/null and b/desktop/assets/data/graphics/2001.png differ
diff --git a/desktop/assets/data/graphics/20010.png b/desktop/assets/data/graphics/20010.png
new file mode 100644
index 00000000..732ee545
Binary files /dev/null and b/desktop/assets/data/graphics/20010.png differ
diff --git a/desktop/assets/data/graphics/20011.png b/desktop/assets/data/graphics/20011.png
new file mode 100644
index 00000000..962367e0
Binary files /dev/null and b/desktop/assets/data/graphics/20011.png differ
diff --git a/desktop/assets/data/graphics/20012.png b/desktop/assets/data/graphics/20012.png
new file mode 100644
index 00000000..08cd2ff3
Binary files /dev/null and b/desktop/assets/data/graphics/20012.png differ
diff --git a/desktop/assets/data/graphics/20013.png b/desktop/assets/data/graphics/20013.png
new file mode 100644
index 00000000..4a524da0
Binary files /dev/null and b/desktop/assets/data/graphics/20013.png differ
diff --git a/desktop/assets/data/graphics/20014.png b/desktop/assets/data/graphics/20014.png
new file mode 100644
index 00000000..e35d38be
Binary files /dev/null and b/desktop/assets/data/graphics/20014.png differ
diff --git a/desktop/assets/data/graphics/20015.png b/desktop/assets/data/graphics/20015.png
new file mode 100644
index 00000000..1bd3ed52
Binary files /dev/null and b/desktop/assets/data/graphics/20015.png differ
diff --git a/desktop/assets/data/graphics/20016.png b/desktop/assets/data/graphics/20016.png
new file mode 100644
index 00000000..fc073472
Binary files /dev/null and b/desktop/assets/data/graphics/20016.png differ
diff --git a/desktop/assets/data/graphics/20017.png b/desktop/assets/data/graphics/20017.png
new file mode 100644
index 00000000..03d591a8
Binary files /dev/null and b/desktop/assets/data/graphics/20017.png differ
diff --git a/desktop/assets/data/graphics/20018.png b/desktop/assets/data/graphics/20018.png
new file mode 100644
index 00000000..6ac60726
Binary files /dev/null and b/desktop/assets/data/graphics/20018.png differ
diff --git a/desktop/assets/data/graphics/20019.png b/desktop/assets/data/graphics/20019.png
new file mode 100644
index 00000000..950b85b6
Binary files /dev/null and b/desktop/assets/data/graphics/20019.png differ
diff --git a/desktop/assets/data/graphics/2002.png b/desktop/assets/data/graphics/2002.png
new file mode 100644
index 00000000..16cb73d4
Binary files /dev/null and b/desktop/assets/data/graphics/2002.png differ
diff --git a/desktop/assets/data/graphics/2003.png b/desktop/assets/data/graphics/2003.png
new file mode 100644
index 00000000..c557acc9
Binary files /dev/null and b/desktop/assets/data/graphics/2003.png differ
diff --git a/desktop/assets/data/graphics/2004.png b/desktop/assets/data/graphics/2004.png
new file mode 100644
index 00000000..d7aab482
Binary files /dev/null and b/desktop/assets/data/graphics/2004.png differ
diff --git a/desktop/assets/data/graphics/2005.png b/desktop/assets/data/graphics/2005.png
new file mode 100644
index 00000000..4e6ddbb6
Binary files /dev/null and b/desktop/assets/data/graphics/2005.png differ
diff --git a/desktop/assets/data/graphics/2006.png b/desktop/assets/data/graphics/2006.png
new file mode 100644
index 00000000..9c11216d
Binary files /dev/null and b/desktop/assets/data/graphics/2006.png differ
diff --git a/desktop/assets/data/graphics/2007.png b/desktop/assets/data/graphics/2007.png
new file mode 100644
index 00000000..c0020f0f
Binary files /dev/null and b/desktop/assets/data/graphics/2007.png differ
diff --git a/desktop/assets/data/graphics/2008.png b/desktop/assets/data/graphics/2008.png
new file mode 100644
index 00000000..ce255bd7
Binary files /dev/null and b/desktop/assets/data/graphics/2008.png differ
diff --git a/desktop/assets/data/graphics/2009.png b/desktop/assets/data/graphics/2009.png
new file mode 100644
index 00000000..546408b9
Binary files /dev/null and b/desktop/assets/data/graphics/2009.png differ
diff --git a/desktop/assets/data/graphics/201.png b/desktop/assets/data/graphics/201.png
new file mode 100644
index 00000000..87fbf359
Binary files /dev/null and b/desktop/assets/data/graphics/201.png differ
diff --git a/desktop/assets/data/graphics/2010.png b/desktop/assets/data/graphics/2010.png
new file mode 100644
index 00000000..3b172b34
Binary files /dev/null and b/desktop/assets/data/graphics/2010.png differ
diff --git a/desktop/assets/data/graphics/2011.png b/desktop/assets/data/graphics/2011.png
new file mode 100644
index 00000000..06f78fd9
Binary files /dev/null and b/desktop/assets/data/graphics/2011.png differ
diff --git a/desktop/assets/data/graphics/2012.png b/desktop/assets/data/graphics/2012.png
new file mode 100644
index 00000000..b5464730
Binary files /dev/null and b/desktop/assets/data/graphics/2012.png differ
diff --git a/desktop/assets/data/graphics/2013.png b/desktop/assets/data/graphics/2013.png
new file mode 100644
index 00000000..99d488ee
Binary files /dev/null and b/desktop/assets/data/graphics/2013.png differ
diff --git a/desktop/assets/data/graphics/2014.png b/desktop/assets/data/graphics/2014.png
new file mode 100644
index 00000000..525bcd32
Binary files /dev/null and b/desktop/assets/data/graphics/2014.png differ
diff --git a/desktop/assets/data/graphics/2015.png b/desktop/assets/data/graphics/2015.png
new file mode 100644
index 00000000..49058311
Binary files /dev/null and b/desktop/assets/data/graphics/2015.png differ
diff --git a/desktop/assets/data/graphics/2016.png b/desktop/assets/data/graphics/2016.png
new file mode 100644
index 00000000..892ce95a
Binary files /dev/null and b/desktop/assets/data/graphics/2016.png differ
diff --git a/desktop/assets/data/graphics/2017.png b/desktop/assets/data/graphics/2017.png
new file mode 100644
index 00000000..1a8ebcfe
Binary files /dev/null and b/desktop/assets/data/graphics/2017.png differ
diff --git a/desktop/assets/data/graphics/2018.png b/desktop/assets/data/graphics/2018.png
new file mode 100644
index 00000000..8cba01d6
Binary files /dev/null and b/desktop/assets/data/graphics/2018.png differ
diff --git a/desktop/assets/data/graphics/2019.png b/desktop/assets/data/graphics/2019.png
new file mode 100644
index 00000000..343f7848
Binary files /dev/null and b/desktop/assets/data/graphics/2019.png differ
diff --git a/desktop/assets/data/graphics/202.png b/desktop/assets/data/graphics/202.png
new file mode 100644
index 00000000..2d3a6332
Binary files /dev/null and b/desktop/assets/data/graphics/202.png differ
diff --git a/desktop/assets/data/graphics/2020.png b/desktop/assets/data/graphics/2020.png
new file mode 100644
index 00000000..83633118
Binary files /dev/null and b/desktop/assets/data/graphics/2020.png differ
diff --git a/desktop/assets/data/graphics/2021.png b/desktop/assets/data/graphics/2021.png
new file mode 100644
index 00000000..8b1c5258
Binary files /dev/null and b/desktop/assets/data/graphics/2021.png differ
diff --git a/desktop/assets/data/graphics/2022.png b/desktop/assets/data/graphics/2022.png
new file mode 100644
index 00000000..36a85e33
Binary files /dev/null and b/desktop/assets/data/graphics/2022.png differ
diff --git a/desktop/assets/data/graphics/2023.png b/desktop/assets/data/graphics/2023.png
new file mode 100644
index 00000000..a0c5011d
Binary files /dev/null and b/desktop/assets/data/graphics/2023.png differ
diff --git a/desktop/assets/data/graphics/2024.png b/desktop/assets/data/graphics/2024.png
new file mode 100644
index 00000000..72050008
Binary files /dev/null and b/desktop/assets/data/graphics/2024.png differ
diff --git a/desktop/assets/data/graphics/2025.png b/desktop/assets/data/graphics/2025.png
new file mode 100644
index 00000000..f534eafb
Binary files /dev/null and b/desktop/assets/data/graphics/2025.png differ
diff --git a/desktop/assets/data/graphics/2026.png b/desktop/assets/data/graphics/2026.png
new file mode 100644
index 00000000..983cc71f
Binary files /dev/null and b/desktop/assets/data/graphics/2026.png differ
diff --git a/desktop/assets/data/graphics/2027.png b/desktop/assets/data/graphics/2027.png
new file mode 100644
index 00000000..8ba2c43d
Binary files /dev/null and b/desktop/assets/data/graphics/2027.png differ
diff --git a/desktop/assets/data/graphics/2028.png b/desktop/assets/data/graphics/2028.png
new file mode 100644
index 00000000..0837ca4d
Binary files /dev/null and b/desktop/assets/data/graphics/2028.png differ
diff --git a/desktop/assets/data/graphics/2029.png b/desktop/assets/data/graphics/2029.png
new file mode 100644
index 00000000..1b0c49cf
Binary files /dev/null and b/desktop/assets/data/graphics/2029.png differ
diff --git a/desktop/assets/data/graphics/203.png b/desktop/assets/data/graphics/203.png
new file mode 100644
index 00000000..a5c491da
Binary files /dev/null and b/desktop/assets/data/graphics/203.png differ
diff --git a/desktop/assets/data/graphics/2030.png b/desktop/assets/data/graphics/2030.png
new file mode 100644
index 00000000..dca0d882
Binary files /dev/null and b/desktop/assets/data/graphics/2030.png differ
diff --git a/desktop/assets/data/graphics/2031.png b/desktop/assets/data/graphics/2031.png
new file mode 100644
index 00000000..10dbcbfc
Binary files /dev/null and b/desktop/assets/data/graphics/2031.png differ
diff --git a/desktop/assets/data/graphics/2032.png b/desktop/assets/data/graphics/2032.png
new file mode 100644
index 00000000..754706c3
Binary files /dev/null and b/desktop/assets/data/graphics/2032.png differ
diff --git a/desktop/assets/data/graphics/2033.png b/desktop/assets/data/graphics/2033.png
new file mode 100644
index 00000000..cc591170
Binary files /dev/null and b/desktop/assets/data/graphics/2033.png differ
diff --git a/desktop/assets/data/graphics/2034.png b/desktop/assets/data/graphics/2034.png
new file mode 100644
index 00000000..3a5323cf
Binary files /dev/null and b/desktop/assets/data/graphics/2034.png differ
diff --git a/desktop/assets/data/graphics/2035.png b/desktop/assets/data/graphics/2035.png
new file mode 100644
index 00000000..201fc2e7
Binary files /dev/null and b/desktop/assets/data/graphics/2035.png differ
diff --git a/desktop/assets/data/graphics/2036.png b/desktop/assets/data/graphics/2036.png
new file mode 100644
index 00000000..bb3e9668
Binary files /dev/null and b/desktop/assets/data/graphics/2036.png differ
diff --git a/desktop/assets/data/graphics/2037.png b/desktop/assets/data/graphics/2037.png
new file mode 100644
index 00000000..a27b2bd7
Binary files /dev/null and b/desktop/assets/data/graphics/2037.png differ
diff --git a/desktop/assets/data/graphics/2038.png b/desktop/assets/data/graphics/2038.png
new file mode 100644
index 00000000..88a1c8e6
Binary files /dev/null and b/desktop/assets/data/graphics/2038.png differ
diff --git a/desktop/assets/data/graphics/2039.png b/desktop/assets/data/graphics/2039.png
new file mode 100644
index 00000000..808101d5
Binary files /dev/null and b/desktop/assets/data/graphics/2039.png differ
diff --git a/desktop/assets/data/graphics/204.png b/desktop/assets/data/graphics/204.png
new file mode 100644
index 00000000..f5e14e09
Binary files /dev/null and b/desktop/assets/data/graphics/204.png differ
diff --git a/desktop/assets/data/graphics/2040.png b/desktop/assets/data/graphics/2040.png
new file mode 100644
index 00000000..3d471188
Binary files /dev/null and b/desktop/assets/data/graphics/2040.png differ
diff --git a/desktop/assets/data/graphics/2041.png b/desktop/assets/data/graphics/2041.png
new file mode 100644
index 00000000..a5f48685
Binary files /dev/null and b/desktop/assets/data/graphics/2041.png differ
diff --git a/desktop/assets/data/graphics/2042.png b/desktop/assets/data/graphics/2042.png
new file mode 100644
index 00000000..3d003d25
Binary files /dev/null and b/desktop/assets/data/graphics/2042.png differ
diff --git a/desktop/assets/data/graphics/2043.png b/desktop/assets/data/graphics/2043.png
new file mode 100644
index 00000000..0d88347b
Binary files /dev/null and b/desktop/assets/data/graphics/2043.png differ
diff --git a/desktop/assets/data/graphics/2044.png b/desktop/assets/data/graphics/2044.png
new file mode 100644
index 00000000..4aeef6f3
Binary files /dev/null and b/desktop/assets/data/graphics/2044.png differ
diff --git a/desktop/assets/data/graphics/2045.png b/desktop/assets/data/graphics/2045.png
new file mode 100644
index 00000000..4308e7a0
Binary files /dev/null and b/desktop/assets/data/graphics/2045.png differ
diff --git a/desktop/assets/data/graphics/2046.png b/desktop/assets/data/graphics/2046.png
new file mode 100644
index 00000000..5421ea05
Binary files /dev/null and b/desktop/assets/data/graphics/2046.png differ
diff --git a/desktop/assets/data/graphics/2047.png b/desktop/assets/data/graphics/2047.png
new file mode 100644
index 00000000..f4f421fe
Binary files /dev/null and b/desktop/assets/data/graphics/2047.png differ
diff --git a/desktop/assets/data/graphics/2048.png b/desktop/assets/data/graphics/2048.png
new file mode 100644
index 00000000..ab8c529c
Binary files /dev/null and b/desktop/assets/data/graphics/2048.png differ
diff --git a/desktop/assets/data/graphics/2049.png b/desktop/assets/data/graphics/2049.png
new file mode 100644
index 00000000..193aebd7
Binary files /dev/null and b/desktop/assets/data/graphics/2049.png differ
diff --git a/desktop/assets/data/graphics/205.png b/desktop/assets/data/graphics/205.png
new file mode 100644
index 00000000..856d72a3
Binary files /dev/null and b/desktop/assets/data/graphics/205.png differ
diff --git a/desktop/assets/data/graphics/2050.png b/desktop/assets/data/graphics/2050.png
new file mode 100644
index 00000000..e2f8e996
Binary files /dev/null and b/desktop/assets/data/graphics/2050.png differ
diff --git a/desktop/assets/data/graphics/2051.png b/desktop/assets/data/graphics/2051.png
new file mode 100644
index 00000000..54aa485e
Binary files /dev/null and b/desktop/assets/data/graphics/2051.png differ
diff --git a/desktop/assets/data/graphics/2052.png b/desktop/assets/data/graphics/2052.png
new file mode 100644
index 00000000..810df30f
Binary files /dev/null and b/desktop/assets/data/graphics/2052.png differ
diff --git a/desktop/assets/data/graphics/2053.png b/desktop/assets/data/graphics/2053.png
new file mode 100644
index 00000000..b5a8006b
Binary files /dev/null and b/desktop/assets/data/graphics/2053.png differ
diff --git a/desktop/assets/data/graphics/2054.png b/desktop/assets/data/graphics/2054.png
new file mode 100644
index 00000000..3c7d57a9
Binary files /dev/null and b/desktop/assets/data/graphics/2054.png differ
diff --git a/desktop/assets/data/graphics/2055.png b/desktop/assets/data/graphics/2055.png
new file mode 100644
index 00000000..334518f7
Binary files /dev/null and b/desktop/assets/data/graphics/2055.png differ
diff --git a/desktop/assets/data/graphics/2056.png b/desktop/assets/data/graphics/2056.png
new file mode 100644
index 00000000..d979bda0
Binary files /dev/null and b/desktop/assets/data/graphics/2056.png differ
diff --git a/desktop/assets/data/graphics/2057.png b/desktop/assets/data/graphics/2057.png
new file mode 100644
index 00000000..b7e889f9
Binary files /dev/null and b/desktop/assets/data/graphics/2057.png differ
diff --git a/desktop/assets/data/graphics/2058.png b/desktop/assets/data/graphics/2058.png
new file mode 100644
index 00000000..5f560d33
Binary files /dev/null and b/desktop/assets/data/graphics/2058.png differ
diff --git a/desktop/assets/data/graphics/2059.png b/desktop/assets/data/graphics/2059.png
new file mode 100644
index 00000000..4ef14f61
Binary files /dev/null and b/desktop/assets/data/graphics/2059.png differ
diff --git a/desktop/assets/data/graphics/206.png b/desktop/assets/data/graphics/206.png
new file mode 100644
index 00000000..8cc85013
Binary files /dev/null and b/desktop/assets/data/graphics/206.png differ
diff --git a/desktop/assets/data/graphics/2060.png b/desktop/assets/data/graphics/2060.png
new file mode 100644
index 00000000..8a2cedb0
Binary files /dev/null and b/desktop/assets/data/graphics/2060.png differ
diff --git a/desktop/assets/data/graphics/2061.png b/desktop/assets/data/graphics/2061.png
new file mode 100644
index 00000000..bc627b3b
Binary files /dev/null and b/desktop/assets/data/graphics/2061.png differ
diff --git a/desktop/assets/data/graphics/2062.png b/desktop/assets/data/graphics/2062.png
new file mode 100644
index 00000000..6223048c
Binary files /dev/null and b/desktop/assets/data/graphics/2062.png differ
diff --git a/desktop/assets/data/graphics/2063.png b/desktop/assets/data/graphics/2063.png
new file mode 100644
index 00000000..22962624
Binary files /dev/null and b/desktop/assets/data/graphics/2063.png differ
diff --git a/desktop/assets/data/graphics/2064.png b/desktop/assets/data/graphics/2064.png
new file mode 100644
index 00000000..7f9ca858
Binary files /dev/null and b/desktop/assets/data/graphics/2064.png differ
diff --git a/desktop/assets/data/graphics/2065.png b/desktop/assets/data/graphics/2065.png
new file mode 100644
index 00000000..309c8376
Binary files /dev/null and b/desktop/assets/data/graphics/2065.png differ
diff --git a/desktop/assets/data/graphics/2066.png b/desktop/assets/data/graphics/2066.png
new file mode 100644
index 00000000..56455571
Binary files /dev/null and b/desktop/assets/data/graphics/2066.png differ
diff --git a/desktop/assets/data/graphics/2067.png b/desktop/assets/data/graphics/2067.png
new file mode 100644
index 00000000..2f200c66
Binary files /dev/null and b/desktop/assets/data/graphics/2067.png differ
diff --git a/desktop/assets/data/graphics/2068.png b/desktop/assets/data/graphics/2068.png
new file mode 100644
index 00000000..db4bde35
Binary files /dev/null and b/desktop/assets/data/graphics/2068.png differ
diff --git a/desktop/assets/data/graphics/2069.png b/desktop/assets/data/graphics/2069.png
new file mode 100644
index 00000000..d2843404
Binary files /dev/null and b/desktop/assets/data/graphics/2069.png differ
diff --git a/desktop/assets/data/graphics/207.png b/desktop/assets/data/graphics/207.png
new file mode 100644
index 00000000..b2b9fe94
Binary files /dev/null and b/desktop/assets/data/graphics/207.png differ
diff --git a/desktop/assets/data/graphics/2070.png b/desktop/assets/data/graphics/2070.png
new file mode 100644
index 00000000..1e9666b3
Binary files /dev/null and b/desktop/assets/data/graphics/2070.png differ
diff --git a/desktop/assets/data/graphics/2071.png b/desktop/assets/data/graphics/2071.png
new file mode 100644
index 00000000..46388fde
Binary files /dev/null and b/desktop/assets/data/graphics/2071.png differ
diff --git a/desktop/assets/data/graphics/2072.png b/desktop/assets/data/graphics/2072.png
new file mode 100644
index 00000000..4362ef9a
Binary files /dev/null and b/desktop/assets/data/graphics/2072.png differ
diff --git a/desktop/assets/data/graphics/2073.png b/desktop/assets/data/graphics/2073.png
new file mode 100644
index 00000000..9b35740b
Binary files /dev/null and b/desktop/assets/data/graphics/2073.png differ
diff --git a/desktop/assets/data/graphics/2074.png b/desktop/assets/data/graphics/2074.png
new file mode 100644
index 00000000..63aeb73c
Binary files /dev/null and b/desktop/assets/data/graphics/2074.png differ
diff --git a/desktop/assets/data/graphics/2075.png b/desktop/assets/data/graphics/2075.png
new file mode 100644
index 00000000..d5dda345
Binary files /dev/null and b/desktop/assets/data/graphics/2075.png differ
diff --git a/desktop/assets/data/graphics/2076.png b/desktop/assets/data/graphics/2076.png
new file mode 100644
index 00000000..bb176592
Binary files /dev/null and b/desktop/assets/data/graphics/2076.png differ
diff --git a/desktop/assets/data/graphics/2077.png b/desktop/assets/data/graphics/2077.png
new file mode 100644
index 00000000..074eaebd
Binary files /dev/null and b/desktop/assets/data/graphics/2077.png differ
diff --git a/desktop/assets/data/graphics/2078.png b/desktop/assets/data/graphics/2078.png
new file mode 100644
index 00000000..b57c4851
Binary files /dev/null and b/desktop/assets/data/graphics/2078.png differ
diff --git a/desktop/assets/data/graphics/2079.png b/desktop/assets/data/graphics/2079.png
new file mode 100644
index 00000000..49f13188
Binary files /dev/null and b/desktop/assets/data/graphics/2079.png differ
diff --git a/desktop/assets/data/graphics/208.png b/desktop/assets/data/graphics/208.png
new file mode 100644
index 00000000..aa1ec74d
Binary files /dev/null and b/desktop/assets/data/graphics/208.png differ
diff --git a/desktop/assets/data/graphics/2080.png b/desktop/assets/data/graphics/2080.png
new file mode 100644
index 00000000..bd2abab1
Binary files /dev/null and b/desktop/assets/data/graphics/2080.png differ
diff --git a/desktop/assets/data/graphics/2081.png b/desktop/assets/data/graphics/2081.png
new file mode 100644
index 00000000..768752e2
Binary files /dev/null and b/desktop/assets/data/graphics/2081.png differ
diff --git a/desktop/assets/data/graphics/2082.png b/desktop/assets/data/graphics/2082.png
new file mode 100644
index 00000000..b92c5957
Binary files /dev/null and b/desktop/assets/data/graphics/2082.png differ
diff --git a/desktop/assets/data/graphics/2083.png b/desktop/assets/data/graphics/2083.png
new file mode 100644
index 00000000..c54dec74
Binary files /dev/null and b/desktop/assets/data/graphics/2083.png differ
diff --git a/desktop/assets/data/graphics/2084.png b/desktop/assets/data/graphics/2084.png
new file mode 100644
index 00000000..0d43c31f
Binary files /dev/null and b/desktop/assets/data/graphics/2084.png differ
diff --git a/desktop/assets/data/graphics/2085.png b/desktop/assets/data/graphics/2085.png
new file mode 100644
index 00000000..9bd0ac44
Binary files /dev/null and b/desktop/assets/data/graphics/2085.png differ
diff --git a/desktop/assets/data/graphics/2086.png b/desktop/assets/data/graphics/2086.png
new file mode 100644
index 00000000..64462108
Binary files /dev/null and b/desktop/assets/data/graphics/2086.png differ
diff --git a/desktop/assets/data/graphics/2087.png b/desktop/assets/data/graphics/2087.png
new file mode 100644
index 00000000..93734954
Binary files /dev/null and b/desktop/assets/data/graphics/2087.png differ
diff --git a/desktop/assets/data/graphics/2088.png b/desktop/assets/data/graphics/2088.png
new file mode 100644
index 00000000..731fd3c6
Binary files /dev/null and b/desktop/assets/data/graphics/2088.png differ
diff --git a/desktop/assets/data/graphics/2089.png b/desktop/assets/data/graphics/2089.png
new file mode 100644
index 00000000..036a023f
Binary files /dev/null and b/desktop/assets/data/graphics/2089.png differ
diff --git a/desktop/assets/data/graphics/209.png b/desktop/assets/data/graphics/209.png
new file mode 100644
index 00000000..b3b3220d
Binary files /dev/null and b/desktop/assets/data/graphics/209.png differ
diff --git a/desktop/assets/data/graphics/2090.png b/desktop/assets/data/graphics/2090.png
new file mode 100644
index 00000000..238bf5db
Binary files /dev/null and b/desktop/assets/data/graphics/2090.png differ
diff --git a/desktop/assets/data/graphics/2091.png b/desktop/assets/data/graphics/2091.png
new file mode 100644
index 00000000..29f3564d
Binary files /dev/null and b/desktop/assets/data/graphics/2091.png differ
diff --git a/desktop/assets/data/graphics/2092.png b/desktop/assets/data/graphics/2092.png
new file mode 100644
index 00000000..ca5065a2
Binary files /dev/null and b/desktop/assets/data/graphics/2092.png differ
diff --git a/desktop/assets/data/graphics/2093.png b/desktop/assets/data/graphics/2093.png
new file mode 100644
index 00000000..101666a4
Binary files /dev/null and b/desktop/assets/data/graphics/2093.png differ
diff --git a/desktop/assets/data/graphics/2094.png b/desktop/assets/data/graphics/2094.png
new file mode 100644
index 00000000..a73c7332
Binary files /dev/null and b/desktop/assets/data/graphics/2094.png differ
diff --git a/desktop/assets/data/graphics/2095.png b/desktop/assets/data/graphics/2095.png
new file mode 100644
index 00000000..5412906d
Binary files /dev/null and b/desktop/assets/data/graphics/2095.png differ
diff --git a/desktop/assets/data/graphics/2096.png b/desktop/assets/data/graphics/2096.png
new file mode 100644
index 00000000..8be2db5d
Binary files /dev/null and b/desktop/assets/data/graphics/2096.png differ
diff --git a/desktop/assets/data/graphics/2097.png b/desktop/assets/data/graphics/2097.png
new file mode 100644
index 00000000..9a5ac3df
Binary files /dev/null and b/desktop/assets/data/graphics/2097.png differ
diff --git a/desktop/assets/data/graphics/2098.png b/desktop/assets/data/graphics/2098.png
new file mode 100644
index 00000000..302d7ab5
Binary files /dev/null and b/desktop/assets/data/graphics/2098.png differ
diff --git a/desktop/assets/data/graphics/2099.png b/desktop/assets/data/graphics/2099.png
new file mode 100644
index 00000000..6bc71a50
Binary files /dev/null and b/desktop/assets/data/graphics/2099.png differ
diff --git a/desktop/assets/data/graphics/21.png b/desktop/assets/data/graphics/21.png
new file mode 100644
index 00000000..165e7493
Binary files /dev/null and b/desktop/assets/data/graphics/21.png differ
diff --git a/desktop/assets/data/graphics/210.png b/desktop/assets/data/graphics/210.png
new file mode 100644
index 00000000..31897a3e
Binary files /dev/null and b/desktop/assets/data/graphics/210.png differ
diff --git a/desktop/assets/data/graphics/2100.png b/desktop/assets/data/graphics/2100.png
new file mode 100644
index 00000000..f84af2b7
Binary files /dev/null and b/desktop/assets/data/graphics/2100.png differ
diff --git a/desktop/assets/data/graphics/21000.png b/desktop/assets/data/graphics/21000.png
new file mode 100644
index 00000000..72deb98f
Binary files /dev/null and b/desktop/assets/data/graphics/21000.png differ
diff --git a/desktop/assets/data/graphics/21001.png b/desktop/assets/data/graphics/21001.png
new file mode 100644
index 00000000..30c1d0bb
Binary files /dev/null and b/desktop/assets/data/graphics/21001.png differ
diff --git a/desktop/assets/data/graphics/21002.png b/desktop/assets/data/graphics/21002.png
new file mode 100644
index 00000000..f2bf9800
Binary files /dev/null and b/desktop/assets/data/graphics/21002.png differ
diff --git a/desktop/assets/data/graphics/21003.png b/desktop/assets/data/graphics/21003.png
new file mode 100644
index 00000000..b315a78a
Binary files /dev/null and b/desktop/assets/data/graphics/21003.png differ
diff --git a/desktop/assets/data/graphics/21004.png b/desktop/assets/data/graphics/21004.png
new file mode 100644
index 00000000..4ba92d8a
Binary files /dev/null and b/desktop/assets/data/graphics/21004.png differ
diff --git a/desktop/assets/data/graphics/21005.png b/desktop/assets/data/graphics/21005.png
new file mode 100644
index 00000000..819ae348
Binary files /dev/null and b/desktop/assets/data/graphics/21005.png differ
diff --git a/desktop/assets/data/graphics/21006.png b/desktop/assets/data/graphics/21006.png
new file mode 100644
index 00000000..623f0a01
Binary files /dev/null and b/desktop/assets/data/graphics/21006.png differ
diff --git a/desktop/assets/data/graphics/21007.png b/desktop/assets/data/graphics/21007.png
new file mode 100644
index 00000000..f8bfc0b4
Binary files /dev/null and b/desktop/assets/data/graphics/21007.png differ
diff --git a/desktop/assets/data/graphics/21008.png b/desktop/assets/data/graphics/21008.png
new file mode 100644
index 00000000..42082580
Binary files /dev/null and b/desktop/assets/data/graphics/21008.png differ
diff --git a/desktop/assets/data/graphics/21009.png b/desktop/assets/data/graphics/21009.png
new file mode 100644
index 00000000..5c7c1898
Binary files /dev/null and b/desktop/assets/data/graphics/21009.png differ
diff --git a/desktop/assets/data/graphics/2101.png b/desktop/assets/data/graphics/2101.png
new file mode 100644
index 00000000..6bdd8473
Binary files /dev/null and b/desktop/assets/data/graphics/2101.png differ
diff --git a/desktop/assets/data/graphics/21010.png b/desktop/assets/data/graphics/21010.png
new file mode 100644
index 00000000..a095fe79
Binary files /dev/null and b/desktop/assets/data/graphics/21010.png differ
diff --git a/desktop/assets/data/graphics/21011.png b/desktop/assets/data/graphics/21011.png
new file mode 100644
index 00000000..aaceb575
Binary files /dev/null and b/desktop/assets/data/graphics/21011.png differ
diff --git a/desktop/assets/data/graphics/21012.png b/desktop/assets/data/graphics/21012.png
new file mode 100644
index 00000000..c9159885
Binary files /dev/null and b/desktop/assets/data/graphics/21012.png differ
diff --git a/desktop/assets/data/graphics/21013.png b/desktop/assets/data/graphics/21013.png
new file mode 100644
index 00000000..07d92426
Binary files /dev/null and b/desktop/assets/data/graphics/21013.png differ
diff --git a/desktop/assets/data/graphics/21014.png b/desktop/assets/data/graphics/21014.png
new file mode 100644
index 00000000..9064f7c5
Binary files /dev/null and b/desktop/assets/data/graphics/21014.png differ
diff --git a/desktop/assets/data/graphics/2102.png b/desktop/assets/data/graphics/2102.png
new file mode 100644
index 00000000..f4f169cc
Binary files /dev/null and b/desktop/assets/data/graphics/2102.png differ
diff --git a/desktop/assets/data/graphics/2103.png b/desktop/assets/data/graphics/2103.png
new file mode 100644
index 00000000..50ed8952
Binary files /dev/null and b/desktop/assets/data/graphics/2103.png differ
diff --git a/desktop/assets/data/graphics/2104.png b/desktop/assets/data/graphics/2104.png
new file mode 100644
index 00000000..344a96ca
Binary files /dev/null and b/desktop/assets/data/graphics/2104.png differ
diff --git a/desktop/assets/data/graphics/2105.png b/desktop/assets/data/graphics/2105.png
new file mode 100644
index 00000000..90a03e5f
Binary files /dev/null and b/desktop/assets/data/graphics/2105.png differ
diff --git a/desktop/assets/data/graphics/2106.png b/desktop/assets/data/graphics/2106.png
new file mode 100644
index 00000000..c3724dea
Binary files /dev/null and b/desktop/assets/data/graphics/2106.png differ
diff --git a/desktop/assets/data/graphics/2107.png b/desktop/assets/data/graphics/2107.png
new file mode 100644
index 00000000..bda915a2
Binary files /dev/null and b/desktop/assets/data/graphics/2107.png differ
diff --git a/desktop/assets/data/graphics/2108.png b/desktop/assets/data/graphics/2108.png
new file mode 100644
index 00000000..a7396e16
Binary files /dev/null and b/desktop/assets/data/graphics/2108.png differ
diff --git a/desktop/assets/data/graphics/2109.png b/desktop/assets/data/graphics/2109.png
new file mode 100644
index 00000000..e1cad461
Binary files /dev/null and b/desktop/assets/data/graphics/2109.png differ
diff --git a/desktop/assets/data/graphics/211.png b/desktop/assets/data/graphics/211.png
new file mode 100644
index 00000000..22212969
Binary files /dev/null and b/desktop/assets/data/graphics/211.png differ
diff --git a/desktop/assets/data/graphics/2110.png b/desktop/assets/data/graphics/2110.png
new file mode 100644
index 00000000..ced14d21
Binary files /dev/null and b/desktop/assets/data/graphics/2110.png differ
diff --git a/desktop/assets/data/graphics/2111.png b/desktop/assets/data/graphics/2111.png
new file mode 100644
index 00000000..84c92060
Binary files /dev/null and b/desktop/assets/data/graphics/2111.png differ
diff --git a/desktop/assets/data/graphics/2112.png b/desktop/assets/data/graphics/2112.png
new file mode 100644
index 00000000..c69f3b50
Binary files /dev/null and b/desktop/assets/data/graphics/2112.png differ
diff --git a/desktop/assets/data/graphics/2113.png b/desktop/assets/data/graphics/2113.png
new file mode 100644
index 00000000..ce9094fb
Binary files /dev/null and b/desktop/assets/data/graphics/2113.png differ
diff --git a/desktop/assets/data/graphics/2114.png b/desktop/assets/data/graphics/2114.png
new file mode 100644
index 00000000..bdae1e91
Binary files /dev/null and b/desktop/assets/data/graphics/2114.png differ
diff --git a/desktop/assets/data/graphics/2115.png b/desktop/assets/data/graphics/2115.png
new file mode 100644
index 00000000..1ff4e75c
Binary files /dev/null and b/desktop/assets/data/graphics/2115.png differ
diff --git a/desktop/assets/data/graphics/2116.png b/desktop/assets/data/graphics/2116.png
new file mode 100644
index 00000000..fe0b8011
Binary files /dev/null and b/desktop/assets/data/graphics/2116.png differ
diff --git a/desktop/assets/data/graphics/2117.png b/desktop/assets/data/graphics/2117.png
new file mode 100644
index 00000000..34ebaf1f
Binary files /dev/null and b/desktop/assets/data/graphics/2117.png differ
diff --git a/desktop/assets/data/graphics/2118.png b/desktop/assets/data/graphics/2118.png
new file mode 100644
index 00000000..df6551ab
Binary files /dev/null and b/desktop/assets/data/graphics/2118.png differ
diff --git a/desktop/assets/data/graphics/2119.png b/desktop/assets/data/graphics/2119.png
new file mode 100644
index 00000000..562e9315
Binary files /dev/null and b/desktop/assets/data/graphics/2119.png differ
diff --git a/desktop/assets/data/graphics/212.png b/desktop/assets/data/graphics/212.png
new file mode 100644
index 00000000..97a67523
Binary files /dev/null and b/desktop/assets/data/graphics/212.png differ
diff --git a/desktop/assets/data/graphics/2120.png b/desktop/assets/data/graphics/2120.png
new file mode 100644
index 00000000..80f2672c
Binary files /dev/null and b/desktop/assets/data/graphics/2120.png differ
diff --git a/desktop/assets/data/graphics/2121.png b/desktop/assets/data/graphics/2121.png
new file mode 100644
index 00000000..728523b8
Binary files /dev/null and b/desktop/assets/data/graphics/2121.png differ
diff --git a/desktop/assets/data/graphics/2122.png b/desktop/assets/data/graphics/2122.png
new file mode 100644
index 00000000..6e719866
Binary files /dev/null and b/desktop/assets/data/graphics/2122.png differ
diff --git a/desktop/assets/data/graphics/2123.png b/desktop/assets/data/graphics/2123.png
new file mode 100644
index 00000000..6730c101
Binary files /dev/null and b/desktop/assets/data/graphics/2123.png differ
diff --git a/desktop/assets/data/graphics/2124.png b/desktop/assets/data/graphics/2124.png
new file mode 100644
index 00000000..7afcf646
Binary files /dev/null and b/desktop/assets/data/graphics/2124.png differ
diff --git a/desktop/assets/data/graphics/2125.png b/desktop/assets/data/graphics/2125.png
new file mode 100644
index 00000000..974c8398
Binary files /dev/null and b/desktop/assets/data/graphics/2125.png differ
diff --git a/desktop/assets/data/graphics/2126.png b/desktop/assets/data/graphics/2126.png
new file mode 100644
index 00000000..85a0b2e3
Binary files /dev/null and b/desktop/assets/data/graphics/2126.png differ
diff --git a/desktop/assets/data/graphics/2127.png b/desktop/assets/data/graphics/2127.png
new file mode 100644
index 00000000..89861645
Binary files /dev/null and b/desktop/assets/data/graphics/2127.png differ
diff --git a/desktop/assets/data/graphics/2128.png b/desktop/assets/data/graphics/2128.png
new file mode 100644
index 00000000..ba2be6c3
Binary files /dev/null and b/desktop/assets/data/graphics/2128.png differ
diff --git a/desktop/assets/data/graphics/2129.png b/desktop/assets/data/graphics/2129.png
new file mode 100644
index 00000000..cc57d4fd
Binary files /dev/null and b/desktop/assets/data/graphics/2129.png differ
diff --git a/desktop/assets/data/graphics/213.png b/desktop/assets/data/graphics/213.png
new file mode 100644
index 00000000..475e23b3
Binary files /dev/null and b/desktop/assets/data/graphics/213.png differ
diff --git a/desktop/assets/data/graphics/2130.png b/desktop/assets/data/graphics/2130.png
new file mode 100644
index 00000000..169ca43f
Binary files /dev/null and b/desktop/assets/data/graphics/2130.png differ
diff --git a/desktop/assets/data/graphics/2131.png b/desktop/assets/data/graphics/2131.png
new file mode 100644
index 00000000..5d3cf58e
Binary files /dev/null and b/desktop/assets/data/graphics/2131.png differ
diff --git a/desktop/assets/data/graphics/2132.png b/desktop/assets/data/graphics/2132.png
new file mode 100644
index 00000000..3a4ccaa3
Binary files /dev/null and b/desktop/assets/data/graphics/2132.png differ
diff --git a/desktop/assets/data/graphics/2133.png b/desktop/assets/data/graphics/2133.png
new file mode 100644
index 00000000..dd0cf75c
Binary files /dev/null and b/desktop/assets/data/graphics/2133.png differ
diff --git a/desktop/assets/data/graphics/2134.png b/desktop/assets/data/graphics/2134.png
new file mode 100644
index 00000000..d59cc486
Binary files /dev/null and b/desktop/assets/data/graphics/2134.png differ
diff --git a/desktop/assets/data/graphics/2135.png b/desktop/assets/data/graphics/2135.png
new file mode 100644
index 00000000..0a80cad1
Binary files /dev/null and b/desktop/assets/data/graphics/2135.png differ
diff --git a/desktop/assets/data/graphics/2136.png b/desktop/assets/data/graphics/2136.png
new file mode 100644
index 00000000..7314ce48
Binary files /dev/null and b/desktop/assets/data/graphics/2136.png differ
diff --git a/desktop/assets/data/graphics/2137.png b/desktop/assets/data/graphics/2137.png
new file mode 100644
index 00000000..e55382df
Binary files /dev/null and b/desktop/assets/data/graphics/2137.png differ
diff --git a/desktop/assets/data/graphics/2138.png b/desktop/assets/data/graphics/2138.png
new file mode 100644
index 00000000..35955c31
Binary files /dev/null and b/desktop/assets/data/graphics/2138.png differ
diff --git a/desktop/assets/data/graphics/2139.png b/desktop/assets/data/graphics/2139.png
new file mode 100644
index 00000000..de85c752
Binary files /dev/null and b/desktop/assets/data/graphics/2139.png differ
diff --git a/desktop/assets/data/graphics/214.png b/desktop/assets/data/graphics/214.png
new file mode 100644
index 00000000..3cb883c9
Binary files /dev/null and b/desktop/assets/data/graphics/214.png differ
diff --git a/desktop/assets/data/graphics/2140.png b/desktop/assets/data/graphics/2140.png
new file mode 100644
index 00000000..8e2068f1
Binary files /dev/null and b/desktop/assets/data/graphics/2140.png differ
diff --git a/desktop/assets/data/graphics/2141.png b/desktop/assets/data/graphics/2141.png
new file mode 100644
index 00000000..6d70ef7a
Binary files /dev/null and b/desktop/assets/data/graphics/2141.png differ
diff --git a/desktop/assets/data/graphics/2142.png b/desktop/assets/data/graphics/2142.png
new file mode 100644
index 00000000..d1461bf8
Binary files /dev/null and b/desktop/assets/data/graphics/2142.png differ
diff --git a/desktop/assets/data/graphics/2143.png b/desktop/assets/data/graphics/2143.png
new file mode 100644
index 00000000..b7f81e4d
Binary files /dev/null and b/desktop/assets/data/graphics/2143.png differ
diff --git a/desktop/assets/data/graphics/2144.png b/desktop/assets/data/graphics/2144.png
new file mode 100644
index 00000000..bd86ed0b
Binary files /dev/null and b/desktop/assets/data/graphics/2144.png differ
diff --git a/desktop/assets/data/graphics/2145.png b/desktop/assets/data/graphics/2145.png
new file mode 100644
index 00000000..703faf6a
Binary files /dev/null and b/desktop/assets/data/graphics/2145.png differ
diff --git a/desktop/assets/data/graphics/2146.png b/desktop/assets/data/graphics/2146.png
new file mode 100644
index 00000000..89a90503
Binary files /dev/null and b/desktop/assets/data/graphics/2146.png differ
diff --git a/desktop/assets/data/graphics/2147.png b/desktop/assets/data/graphics/2147.png
new file mode 100644
index 00000000..05f2b18f
Binary files /dev/null and b/desktop/assets/data/graphics/2147.png differ
diff --git a/desktop/assets/data/graphics/2148.png b/desktop/assets/data/graphics/2148.png
new file mode 100644
index 00000000..0b1a0617
Binary files /dev/null and b/desktop/assets/data/graphics/2148.png differ
diff --git a/desktop/assets/data/graphics/2149.png b/desktop/assets/data/graphics/2149.png
new file mode 100644
index 00000000..05749a34
Binary files /dev/null and b/desktop/assets/data/graphics/2149.png differ
diff --git a/desktop/assets/data/graphics/215.png b/desktop/assets/data/graphics/215.png
new file mode 100644
index 00000000..6252d306
Binary files /dev/null and b/desktop/assets/data/graphics/215.png differ
diff --git a/desktop/assets/data/graphics/2150.png b/desktop/assets/data/graphics/2150.png
new file mode 100644
index 00000000..76a0cb43
Binary files /dev/null and b/desktop/assets/data/graphics/2150.png differ
diff --git a/desktop/assets/data/graphics/2151.png b/desktop/assets/data/graphics/2151.png
new file mode 100644
index 00000000..5a83bd3c
Binary files /dev/null and b/desktop/assets/data/graphics/2151.png differ
diff --git a/desktop/assets/data/graphics/2152.png b/desktop/assets/data/graphics/2152.png
new file mode 100644
index 00000000..2085aac7
Binary files /dev/null and b/desktop/assets/data/graphics/2152.png differ
diff --git a/desktop/assets/data/graphics/2153.png b/desktop/assets/data/graphics/2153.png
new file mode 100644
index 00000000..786e0d6b
Binary files /dev/null and b/desktop/assets/data/graphics/2153.png differ
diff --git a/desktop/assets/data/graphics/2154.png b/desktop/assets/data/graphics/2154.png
new file mode 100644
index 00000000..f3f39ca0
Binary files /dev/null and b/desktop/assets/data/graphics/2154.png differ
diff --git a/desktop/assets/data/graphics/2155.png b/desktop/assets/data/graphics/2155.png
new file mode 100644
index 00000000..9c9ced15
Binary files /dev/null and b/desktop/assets/data/graphics/2155.png differ
diff --git a/desktop/assets/data/graphics/2156.png b/desktop/assets/data/graphics/2156.png
new file mode 100644
index 00000000..c1a8a19d
Binary files /dev/null and b/desktop/assets/data/graphics/2156.png differ
diff --git a/desktop/assets/data/graphics/2157.png b/desktop/assets/data/graphics/2157.png
new file mode 100644
index 00000000..d7d23086
Binary files /dev/null and b/desktop/assets/data/graphics/2157.png differ
diff --git a/desktop/assets/data/graphics/2158.png b/desktop/assets/data/graphics/2158.png
new file mode 100644
index 00000000..b83b012a
Binary files /dev/null and b/desktop/assets/data/graphics/2158.png differ
diff --git a/desktop/assets/data/graphics/2159.png b/desktop/assets/data/graphics/2159.png
new file mode 100644
index 00000000..8511a29a
Binary files /dev/null and b/desktop/assets/data/graphics/2159.png differ
diff --git a/desktop/assets/data/graphics/216.png b/desktop/assets/data/graphics/216.png
new file mode 100644
index 00000000..62c53ba7
Binary files /dev/null and b/desktop/assets/data/graphics/216.png differ
diff --git a/desktop/assets/data/graphics/2160.png b/desktop/assets/data/graphics/2160.png
new file mode 100644
index 00000000..886b58a6
Binary files /dev/null and b/desktop/assets/data/graphics/2160.png differ
diff --git a/desktop/assets/data/graphics/2161.png b/desktop/assets/data/graphics/2161.png
new file mode 100644
index 00000000..97890c90
Binary files /dev/null and b/desktop/assets/data/graphics/2161.png differ
diff --git a/desktop/assets/data/graphics/2162.png b/desktop/assets/data/graphics/2162.png
new file mode 100644
index 00000000..453bc78f
Binary files /dev/null and b/desktop/assets/data/graphics/2162.png differ
diff --git a/desktop/assets/data/graphics/2163.png b/desktop/assets/data/graphics/2163.png
new file mode 100644
index 00000000..fafeec78
Binary files /dev/null and b/desktop/assets/data/graphics/2163.png differ
diff --git a/desktop/assets/data/graphics/2164.png b/desktop/assets/data/graphics/2164.png
new file mode 100644
index 00000000..9ada2b76
Binary files /dev/null and b/desktop/assets/data/graphics/2164.png differ
diff --git a/desktop/assets/data/graphics/2165.png b/desktop/assets/data/graphics/2165.png
new file mode 100644
index 00000000..8405addf
Binary files /dev/null and b/desktop/assets/data/graphics/2165.png differ
diff --git a/desktop/assets/data/graphics/2166.png b/desktop/assets/data/graphics/2166.png
new file mode 100644
index 00000000..bf04c0d1
Binary files /dev/null and b/desktop/assets/data/graphics/2166.png differ
diff --git a/desktop/assets/data/graphics/2167.png b/desktop/assets/data/graphics/2167.png
new file mode 100644
index 00000000..b0ed3352
Binary files /dev/null and b/desktop/assets/data/graphics/2167.png differ
diff --git a/desktop/assets/data/graphics/2168.png b/desktop/assets/data/graphics/2168.png
new file mode 100644
index 00000000..69493706
Binary files /dev/null and b/desktop/assets/data/graphics/2168.png differ
diff --git a/desktop/assets/data/graphics/2169.png b/desktop/assets/data/graphics/2169.png
new file mode 100644
index 00000000..66518cf0
Binary files /dev/null and b/desktop/assets/data/graphics/2169.png differ
diff --git a/desktop/assets/data/graphics/217.png b/desktop/assets/data/graphics/217.png
new file mode 100644
index 00000000..8c18b1e7
Binary files /dev/null and b/desktop/assets/data/graphics/217.png differ
diff --git a/desktop/assets/data/graphics/2170.png b/desktop/assets/data/graphics/2170.png
new file mode 100644
index 00000000..429af34d
Binary files /dev/null and b/desktop/assets/data/graphics/2170.png differ
diff --git a/desktop/assets/data/graphics/2171.png b/desktop/assets/data/graphics/2171.png
new file mode 100644
index 00000000..5291e1b4
Binary files /dev/null and b/desktop/assets/data/graphics/2171.png differ
diff --git a/desktop/assets/data/graphics/2172.png b/desktop/assets/data/graphics/2172.png
new file mode 100644
index 00000000..5df3665e
Binary files /dev/null and b/desktop/assets/data/graphics/2172.png differ
diff --git a/desktop/assets/data/graphics/2173.png b/desktop/assets/data/graphics/2173.png
new file mode 100644
index 00000000..38b0b853
Binary files /dev/null and b/desktop/assets/data/graphics/2173.png differ
diff --git a/desktop/assets/data/graphics/2174.png b/desktop/assets/data/graphics/2174.png
new file mode 100644
index 00000000..587b9948
Binary files /dev/null and b/desktop/assets/data/graphics/2174.png differ
diff --git a/desktop/assets/data/graphics/2175.png b/desktop/assets/data/graphics/2175.png
new file mode 100644
index 00000000..7b40b7cb
Binary files /dev/null and b/desktop/assets/data/graphics/2175.png differ
diff --git a/desktop/assets/data/graphics/2176.png b/desktop/assets/data/graphics/2176.png
new file mode 100644
index 00000000..e0249fbe
Binary files /dev/null and b/desktop/assets/data/graphics/2176.png differ
diff --git a/desktop/assets/data/graphics/2177.png b/desktop/assets/data/graphics/2177.png
new file mode 100644
index 00000000..99b75e03
Binary files /dev/null and b/desktop/assets/data/graphics/2177.png differ
diff --git a/desktop/assets/data/graphics/2178.png b/desktop/assets/data/graphics/2178.png
new file mode 100644
index 00000000..3ef69a81
Binary files /dev/null and b/desktop/assets/data/graphics/2178.png differ
diff --git a/desktop/assets/data/graphics/2179.png b/desktop/assets/data/graphics/2179.png
new file mode 100644
index 00000000..19f39558
Binary files /dev/null and b/desktop/assets/data/graphics/2179.png differ
diff --git a/desktop/assets/data/graphics/218.png b/desktop/assets/data/graphics/218.png
new file mode 100644
index 00000000..c66b4ed7
Binary files /dev/null and b/desktop/assets/data/graphics/218.png differ
diff --git a/desktop/assets/data/graphics/2180.png b/desktop/assets/data/graphics/2180.png
new file mode 100644
index 00000000..7d5706e7
Binary files /dev/null and b/desktop/assets/data/graphics/2180.png differ
diff --git a/desktop/assets/data/graphics/2181.png b/desktop/assets/data/graphics/2181.png
new file mode 100644
index 00000000..639a6b41
Binary files /dev/null and b/desktop/assets/data/graphics/2181.png differ
diff --git a/desktop/assets/data/graphics/2182.png b/desktop/assets/data/graphics/2182.png
new file mode 100644
index 00000000..56b0d9a0
Binary files /dev/null and b/desktop/assets/data/graphics/2182.png differ
diff --git a/desktop/assets/data/graphics/2183.png b/desktop/assets/data/graphics/2183.png
new file mode 100644
index 00000000..9ca14c9d
Binary files /dev/null and b/desktop/assets/data/graphics/2183.png differ
diff --git a/desktop/assets/data/graphics/2184.png b/desktop/assets/data/graphics/2184.png
new file mode 100644
index 00000000..23e03c1e
Binary files /dev/null and b/desktop/assets/data/graphics/2184.png differ
diff --git a/desktop/assets/data/graphics/2185.png b/desktop/assets/data/graphics/2185.png
new file mode 100644
index 00000000..ba0790b6
Binary files /dev/null and b/desktop/assets/data/graphics/2185.png differ
diff --git a/desktop/assets/data/graphics/2186.png b/desktop/assets/data/graphics/2186.png
new file mode 100644
index 00000000..9f7d524d
Binary files /dev/null and b/desktop/assets/data/graphics/2186.png differ
diff --git a/desktop/assets/data/graphics/2187.png b/desktop/assets/data/graphics/2187.png
new file mode 100644
index 00000000..2bf88892
Binary files /dev/null and b/desktop/assets/data/graphics/2187.png differ
diff --git a/desktop/assets/data/graphics/2188.png b/desktop/assets/data/graphics/2188.png
new file mode 100644
index 00000000..6bdaa782
Binary files /dev/null and b/desktop/assets/data/graphics/2188.png differ
diff --git a/desktop/assets/data/graphics/2189.png b/desktop/assets/data/graphics/2189.png
new file mode 100644
index 00000000..deb111d2
Binary files /dev/null and b/desktop/assets/data/graphics/2189.png differ
diff --git a/desktop/assets/data/graphics/219.png b/desktop/assets/data/graphics/219.png
new file mode 100644
index 00000000..cbc4ab23
Binary files /dev/null and b/desktop/assets/data/graphics/219.png differ
diff --git a/desktop/assets/data/graphics/2190.png b/desktop/assets/data/graphics/2190.png
new file mode 100644
index 00000000..91dca2bd
Binary files /dev/null and b/desktop/assets/data/graphics/2190.png differ
diff --git a/desktop/assets/data/graphics/2191.png b/desktop/assets/data/graphics/2191.png
new file mode 100644
index 00000000..b5dc9662
Binary files /dev/null and b/desktop/assets/data/graphics/2191.png differ
diff --git a/desktop/assets/data/graphics/2192.png b/desktop/assets/data/graphics/2192.png
new file mode 100644
index 00000000..2e3d9293
Binary files /dev/null and b/desktop/assets/data/graphics/2192.png differ
diff --git a/desktop/assets/data/graphics/2193.png b/desktop/assets/data/graphics/2193.png
new file mode 100644
index 00000000..2391603f
Binary files /dev/null and b/desktop/assets/data/graphics/2193.png differ
diff --git a/desktop/assets/data/graphics/2194.png b/desktop/assets/data/graphics/2194.png
new file mode 100644
index 00000000..b4c38e77
Binary files /dev/null and b/desktop/assets/data/graphics/2194.png differ
diff --git a/desktop/assets/data/graphics/2195.png b/desktop/assets/data/graphics/2195.png
new file mode 100644
index 00000000..6d92187a
Binary files /dev/null and b/desktop/assets/data/graphics/2195.png differ
diff --git a/desktop/assets/data/graphics/2196.png b/desktop/assets/data/graphics/2196.png
new file mode 100644
index 00000000..056a40b0
Binary files /dev/null and b/desktop/assets/data/graphics/2196.png differ
diff --git a/desktop/assets/data/graphics/2197.png b/desktop/assets/data/graphics/2197.png
new file mode 100644
index 00000000..21909ed4
Binary files /dev/null and b/desktop/assets/data/graphics/2197.png differ
diff --git a/desktop/assets/data/graphics/2198.png b/desktop/assets/data/graphics/2198.png
new file mode 100644
index 00000000..15ec01ce
Binary files /dev/null and b/desktop/assets/data/graphics/2198.png differ
diff --git a/desktop/assets/data/graphics/2199.png b/desktop/assets/data/graphics/2199.png
new file mode 100644
index 00000000..756aae22
Binary files /dev/null and b/desktop/assets/data/graphics/2199.png differ
diff --git a/desktop/assets/data/graphics/22.png b/desktop/assets/data/graphics/22.png
new file mode 100644
index 00000000..97a97d24
Binary files /dev/null and b/desktop/assets/data/graphics/22.png differ
diff --git a/desktop/assets/data/graphics/220.png b/desktop/assets/data/graphics/220.png
new file mode 100644
index 00000000..d6d579a2
Binary files /dev/null and b/desktop/assets/data/graphics/220.png differ
diff --git a/desktop/assets/data/graphics/2200.png b/desktop/assets/data/graphics/2200.png
new file mode 100644
index 00000000..f3096aea
Binary files /dev/null and b/desktop/assets/data/graphics/2200.png differ
diff --git a/desktop/assets/data/graphics/22000.png b/desktop/assets/data/graphics/22000.png
new file mode 100644
index 00000000..a3668c4b
Binary files /dev/null and b/desktop/assets/data/graphics/22000.png differ
diff --git a/desktop/assets/data/graphics/22001.png b/desktop/assets/data/graphics/22001.png
new file mode 100644
index 00000000..81b31004
Binary files /dev/null and b/desktop/assets/data/graphics/22001.png differ
diff --git a/desktop/assets/data/graphics/22002.png b/desktop/assets/data/graphics/22002.png
new file mode 100644
index 00000000..ed3632ed
Binary files /dev/null and b/desktop/assets/data/graphics/22002.png differ
diff --git a/desktop/assets/data/graphics/22003.png b/desktop/assets/data/graphics/22003.png
new file mode 100644
index 00000000..ce2aa54e
Binary files /dev/null and b/desktop/assets/data/graphics/22003.png differ
diff --git a/desktop/assets/data/graphics/22004.png b/desktop/assets/data/graphics/22004.png
new file mode 100644
index 00000000..7b08fd21
Binary files /dev/null and b/desktop/assets/data/graphics/22004.png differ
diff --git a/desktop/assets/data/graphics/22005.png b/desktop/assets/data/graphics/22005.png
new file mode 100644
index 00000000..382b6146
Binary files /dev/null and b/desktop/assets/data/graphics/22005.png differ
diff --git a/desktop/assets/data/graphics/22006.png b/desktop/assets/data/graphics/22006.png
new file mode 100644
index 00000000..5ca7090c
Binary files /dev/null and b/desktop/assets/data/graphics/22006.png differ
diff --git a/desktop/assets/data/graphics/22007.png b/desktop/assets/data/graphics/22007.png
new file mode 100644
index 00000000..78deffe3
Binary files /dev/null and b/desktop/assets/data/graphics/22007.png differ
diff --git a/desktop/assets/data/graphics/22008.png b/desktop/assets/data/graphics/22008.png
new file mode 100644
index 00000000..e1e7663f
Binary files /dev/null and b/desktop/assets/data/graphics/22008.png differ
diff --git a/desktop/assets/data/graphics/22009.png b/desktop/assets/data/graphics/22009.png
new file mode 100644
index 00000000..9893ce31
Binary files /dev/null and b/desktop/assets/data/graphics/22009.png differ
diff --git a/desktop/assets/data/graphics/2201.png b/desktop/assets/data/graphics/2201.png
new file mode 100644
index 00000000..7fd5911d
Binary files /dev/null and b/desktop/assets/data/graphics/2201.png differ
diff --git a/desktop/assets/data/graphics/22010.png b/desktop/assets/data/graphics/22010.png
new file mode 100644
index 00000000..9a5b726b
Binary files /dev/null and b/desktop/assets/data/graphics/22010.png differ
diff --git a/desktop/assets/data/graphics/22011.png b/desktop/assets/data/graphics/22011.png
new file mode 100644
index 00000000..47167b72
Binary files /dev/null and b/desktop/assets/data/graphics/22011.png differ
diff --git a/desktop/assets/data/graphics/22012.png b/desktop/assets/data/graphics/22012.png
new file mode 100644
index 00000000..9ea0993c
Binary files /dev/null and b/desktop/assets/data/graphics/22012.png differ
diff --git a/desktop/assets/data/graphics/22013.png b/desktop/assets/data/graphics/22013.png
new file mode 100644
index 00000000..96ce8169
Binary files /dev/null and b/desktop/assets/data/graphics/22013.png differ
diff --git a/desktop/assets/data/graphics/22014.png b/desktop/assets/data/graphics/22014.png
new file mode 100644
index 00000000..e57ca295
Binary files /dev/null and b/desktop/assets/data/graphics/22014.png differ
diff --git a/desktop/assets/data/graphics/22015.png b/desktop/assets/data/graphics/22015.png
new file mode 100644
index 00000000..4f3458ff
Binary files /dev/null and b/desktop/assets/data/graphics/22015.png differ
diff --git a/desktop/assets/data/graphics/22016.png b/desktop/assets/data/graphics/22016.png
new file mode 100644
index 00000000..e5095394
Binary files /dev/null and b/desktop/assets/data/graphics/22016.png differ
diff --git a/desktop/assets/data/graphics/22017.png b/desktop/assets/data/graphics/22017.png
new file mode 100644
index 00000000..f94abbc0
Binary files /dev/null and b/desktop/assets/data/graphics/22017.png differ
diff --git a/desktop/assets/data/graphics/22018.png b/desktop/assets/data/graphics/22018.png
new file mode 100644
index 00000000..ae0552c9
Binary files /dev/null and b/desktop/assets/data/graphics/22018.png differ
diff --git a/desktop/assets/data/graphics/22019.png b/desktop/assets/data/graphics/22019.png
new file mode 100644
index 00000000..ca23644a
Binary files /dev/null and b/desktop/assets/data/graphics/22019.png differ
diff --git a/desktop/assets/data/graphics/2202.png b/desktop/assets/data/graphics/2202.png
new file mode 100644
index 00000000..6a2afda6
Binary files /dev/null and b/desktop/assets/data/graphics/2202.png differ
diff --git a/desktop/assets/data/graphics/22020.png b/desktop/assets/data/graphics/22020.png
new file mode 100644
index 00000000..eb8d32b5
Binary files /dev/null and b/desktop/assets/data/graphics/22020.png differ
diff --git a/desktop/assets/data/graphics/22021.png b/desktop/assets/data/graphics/22021.png
new file mode 100644
index 00000000..26d733e1
Binary files /dev/null and b/desktop/assets/data/graphics/22021.png differ
diff --git a/desktop/assets/data/graphics/22022.png b/desktop/assets/data/graphics/22022.png
new file mode 100644
index 00000000..710b559c
Binary files /dev/null and b/desktop/assets/data/graphics/22022.png differ
diff --git a/desktop/assets/data/graphics/22023.png b/desktop/assets/data/graphics/22023.png
new file mode 100644
index 00000000..253af5d4
Binary files /dev/null and b/desktop/assets/data/graphics/22023.png differ
diff --git a/desktop/assets/data/graphics/22024.png b/desktop/assets/data/graphics/22024.png
new file mode 100644
index 00000000..1b5869ff
Binary files /dev/null and b/desktop/assets/data/graphics/22024.png differ
diff --git a/desktop/assets/data/graphics/22025.png b/desktop/assets/data/graphics/22025.png
new file mode 100644
index 00000000..b2be5826
Binary files /dev/null and b/desktop/assets/data/graphics/22025.png differ
diff --git a/desktop/assets/data/graphics/22026.png b/desktop/assets/data/graphics/22026.png
new file mode 100644
index 00000000..5035115c
Binary files /dev/null and b/desktop/assets/data/graphics/22026.png differ
diff --git a/desktop/assets/data/graphics/22027.png b/desktop/assets/data/graphics/22027.png
new file mode 100644
index 00000000..1d87ce52
Binary files /dev/null and b/desktop/assets/data/graphics/22027.png differ
diff --git a/desktop/assets/data/graphics/22028.png b/desktop/assets/data/graphics/22028.png
new file mode 100644
index 00000000..a1b076b4
Binary files /dev/null and b/desktop/assets/data/graphics/22028.png differ
diff --git a/desktop/assets/data/graphics/22029.png b/desktop/assets/data/graphics/22029.png
new file mode 100644
index 00000000..5baeb341
Binary files /dev/null and b/desktop/assets/data/graphics/22029.png differ
diff --git a/desktop/assets/data/graphics/2203.png b/desktop/assets/data/graphics/2203.png
new file mode 100644
index 00000000..a69e50d1
Binary files /dev/null and b/desktop/assets/data/graphics/2203.png differ
diff --git a/desktop/assets/data/graphics/22030.png b/desktop/assets/data/graphics/22030.png
new file mode 100644
index 00000000..222896a0
Binary files /dev/null and b/desktop/assets/data/graphics/22030.png differ
diff --git a/desktop/assets/data/graphics/22031.png b/desktop/assets/data/graphics/22031.png
new file mode 100644
index 00000000..c6508b05
Binary files /dev/null and b/desktop/assets/data/graphics/22031.png differ
diff --git a/desktop/assets/data/graphics/22032.png b/desktop/assets/data/graphics/22032.png
new file mode 100644
index 00000000..f0516f6d
Binary files /dev/null and b/desktop/assets/data/graphics/22032.png differ
diff --git a/desktop/assets/data/graphics/22033.png b/desktop/assets/data/graphics/22033.png
new file mode 100644
index 00000000..91c618ab
Binary files /dev/null and b/desktop/assets/data/graphics/22033.png differ
diff --git a/desktop/assets/data/graphics/22034.png b/desktop/assets/data/graphics/22034.png
new file mode 100644
index 00000000..495984b6
Binary files /dev/null and b/desktop/assets/data/graphics/22034.png differ
diff --git a/desktop/assets/data/graphics/22035.png b/desktop/assets/data/graphics/22035.png
new file mode 100644
index 00000000..ea160988
Binary files /dev/null and b/desktop/assets/data/graphics/22035.png differ
diff --git a/desktop/assets/data/graphics/22036.png b/desktop/assets/data/graphics/22036.png
new file mode 100644
index 00000000..86cc0dc1
Binary files /dev/null and b/desktop/assets/data/graphics/22036.png differ
diff --git a/desktop/assets/data/graphics/22037.png b/desktop/assets/data/graphics/22037.png
new file mode 100644
index 00000000..ce15af73
Binary files /dev/null and b/desktop/assets/data/graphics/22037.png differ
diff --git a/desktop/assets/data/graphics/22038.png b/desktop/assets/data/graphics/22038.png
new file mode 100644
index 00000000..b90611d9
Binary files /dev/null and b/desktop/assets/data/graphics/22038.png differ
diff --git a/desktop/assets/data/graphics/22039.png b/desktop/assets/data/graphics/22039.png
new file mode 100644
index 00000000..42d1dc30
Binary files /dev/null and b/desktop/assets/data/graphics/22039.png differ
diff --git a/desktop/assets/data/graphics/2204.png b/desktop/assets/data/graphics/2204.png
new file mode 100644
index 00000000..009087f2
Binary files /dev/null and b/desktop/assets/data/graphics/2204.png differ
diff --git a/desktop/assets/data/graphics/22040.png b/desktop/assets/data/graphics/22040.png
new file mode 100644
index 00000000..fe20cc04
Binary files /dev/null and b/desktop/assets/data/graphics/22040.png differ
diff --git a/desktop/assets/data/graphics/22041.png b/desktop/assets/data/graphics/22041.png
new file mode 100644
index 00000000..69e589c6
Binary files /dev/null and b/desktop/assets/data/graphics/22041.png differ
diff --git a/desktop/assets/data/graphics/22042.png b/desktop/assets/data/graphics/22042.png
new file mode 100644
index 00000000..67142d73
Binary files /dev/null and b/desktop/assets/data/graphics/22042.png differ
diff --git a/desktop/assets/data/graphics/22043.png b/desktop/assets/data/graphics/22043.png
new file mode 100644
index 00000000..2cbf2532
Binary files /dev/null and b/desktop/assets/data/graphics/22043.png differ
diff --git a/desktop/assets/data/graphics/22044.png b/desktop/assets/data/graphics/22044.png
new file mode 100644
index 00000000..bab8654e
Binary files /dev/null and b/desktop/assets/data/graphics/22044.png differ
diff --git a/desktop/assets/data/graphics/22045.png b/desktop/assets/data/graphics/22045.png
new file mode 100644
index 00000000..68bd8226
Binary files /dev/null and b/desktop/assets/data/graphics/22045.png differ
diff --git a/desktop/assets/data/graphics/22046.png b/desktop/assets/data/graphics/22046.png
new file mode 100644
index 00000000..ad0ecff1
Binary files /dev/null and b/desktop/assets/data/graphics/22046.png differ
diff --git a/desktop/assets/data/graphics/22047.png b/desktop/assets/data/graphics/22047.png
new file mode 100644
index 00000000..81d73830
Binary files /dev/null and b/desktop/assets/data/graphics/22047.png differ
diff --git a/desktop/assets/data/graphics/22048.png b/desktop/assets/data/graphics/22048.png
new file mode 100644
index 00000000..3f4f6e24
Binary files /dev/null and b/desktop/assets/data/graphics/22048.png differ
diff --git a/desktop/assets/data/graphics/22049.png b/desktop/assets/data/graphics/22049.png
new file mode 100644
index 00000000..cf477396
Binary files /dev/null and b/desktop/assets/data/graphics/22049.png differ
diff --git a/desktop/assets/data/graphics/2205.png b/desktop/assets/data/graphics/2205.png
new file mode 100644
index 00000000..7b53518f
Binary files /dev/null and b/desktop/assets/data/graphics/2205.png differ
diff --git a/desktop/assets/data/graphics/22050.png b/desktop/assets/data/graphics/22050.png
new file mode 100644
index 00000000..5c10a84e
Binary files /dev/null and b/desktop/assets/data/graphics/22050.png differ
diff --git a/desktop/assets/data/graphics/22051.png b/desktop/assets/data/graphics/22051.png
new file mode 100644
index 00000000..7dd9acbf
Binary files /dev/null and b/desktop/assets/data/graphics/22051.png differ
diff --git a/desktop/assets/data/graphics/22052.png b/desktop/assets/data/graphics/22052.png
new file mode 100644
index 00000000..ae7a2f01
Binary files /dev/null and b/desktop/assets/data/graphics/22052.png differ
diff --git a/desktop/assets/data/graphics/22053.png b/desktop/assets/data/graphics/22053.png
new file mode 100644
index 00000000..e9de9484
Binary files /dev/null and b/desktop/assets/data/graphics/22053.png differ
diff --git a/desktop/assets/data/graphics/22054.png b/desktop/assets/data/graphics/22054.png
new file mode 100644
index 00000000..0b35e9f5
Binary files /dev/null and b/desktop/assets/data/graphics/22054.png differ
diff --git a/desktop/assets/data/graphics/22055.png b/desktop/assets/data/graphics/22055.png
new file mode 100644
index 00000000..a6a3ee47
Binary files /dev/null and b/desktop/assets/data/graphics/22055.png differ
diff --git a/desktop/assets/data/graphics/22056.png b/desktop/assets/data/graphics/22056.png
new file mode 100644
index 00000000..6b6e01ba
Binary files /dev/null and b/desktop/assets/data/graphics/22056.png differ
diff --git a/desktop/assets/data/graphics/22057.png b/desktop/assets/data/graphics/22057.png
new file mode 100644
index 00000000..950a2182
Binary files /dev/null and b/desktop/assets/data/graphics/22057.png differ
diff --git a/desktop/assets/data/graphics/22058.png b/desktop/assets/data/graphics/22058.png
new file mode 100644
index 00000000..2e088c62
Binary files /dev/null and b/desktop/assets/data/graphics/22058.png differ
diff --git a/desktop/assets/data/graphics/22059.png b/desktop/assets/data/graphics/22059.png
new file mode 100644
index 00000000..4afd4259
Binary files /dev/null and b/desktop/assets/data/graphics/22059.png differ
diff --git a/desktop/assets/data/graphics/2206.png b/desktop/assets/data/graphics/2206.png
new file mode 100644
index 00000000..1e074f6e
Binary files /dev/null and b/desktop/assets/data/graphics/2206.png differ
diff --git a/desktop/assets/data/graphics/22060.png b/desktop/assets/data/graphics/22060.png
new file mode 100644
index 00000000..c5d2c024
Binary files /dev/null and b/desktop/assets/data/graphics/22060.png differ
diff --git a/desktop/assets/data/graphics/22061.png b/desktop/assets/data/graphics/22061.png
new file mode 100644
index 00000000..4e78b2e4
Binary files /dev/null and b/desktop/assets/data/graphics/22061.png differ
diff --git a/desktop/assets/data/graphics/22062.png b/desktop/assets/data/graphics/22062.png
new file mode 100644
index 00000000..58c643ba
Binary files /dev/null and b/desktop/assets/data/graphics/22062.png differ
diff --git a/desktop/assets/data/graphics/22063.png b/desktop/assets/data/graphics/22063.png
new file mode 100644
index 00000000..730d5272
Binary files /dev/null and b/desktop/assets/data/graphics/22063.png differ
diff --git a/desktop/assets/data/graphics/22064.png b/desktop/assets/data/graphics/22064.png
new file mode 100644
index 00000000..42e4dc5a
Binary files /dev/null and b/desktop/assets/data/graphics/22064.png differ
diff --git a/desktop/assets/data/graphics/22065.png b/desktop/assets/data/graphics/22065.png
new file mode 100644
index 00000000..8d9b1d20
Binary files /dev/null and b/desktop/assets/data/graphics/22065.png differ
diff --git a/desktop/assets/data/graphics/22066.png b/desktop/assets/data/graphics/22066.png
new file mode 100644
index 00000000..84bf6952
Binary files /dev/null and b/desktop/assets/data/graphics/22066.png differ
diff --git a/desktop/assets/data/graphics/22067.png b/desktop/assets/data/graphics/22067.png
new file mode 100644
index 00000000..404677e0
Binary files /dev/null and b/desktop/assets/data/graphics/22067.png differ
diff --git a/desktop/assets/data/graphics/22068.png b/desktop/assets/data/graphics/22068.png
new file mode 100644
index 00000000..d4959396
Binary files /dev/null and b/desktop/assets/data/graphics/22068.png differ
diff --git a/desktop/assets/data/graphics/22069.png b/desktop/assets/data/graphics/22069.png
new file mode 100644
index 00000000..7edd212e
Binary files /dev/null and b/desktop/assets/data/graphics/22069.png differ
diff --git a/desktop/assets/data/graphics/2207.png b/desktop/assets/data/graphics/2207.png
new file mode 100644
index 00000000..46b16dda
Binary files /dev/null and b/desktop/assets/data/graphics/2207.png differ
diff --git a/desktop/assets/data/graphics/22070.png b/desktop/assets/data/graphics/22070.png
new file mode 100644
index 00000000..89911192
Binary files /dev/null and b/desktop/assets/data/graphics/22070.png differ
diff --git a/desktop/assets/data/graphics/22071.png b/desktop/assets/data/graphics/22071.png
new file mode 100644
index 00000000..7e6a3c8c
Binary files /dev/null and b/desktop/assets/data/graphics/22071.png differ
diff --git a/desktop/assets/data/graphics/22072.png b/desktop/assets/data/graphics/22072.png
new file mode 100644
index 00000000..35cf44ee
Binary files /dev/null and b/desktop/assets/data/graphics/22072.png differ
diff --git a/desktop/assets/data/graphics/2208.png b/desktop/assets/data/graphics/2208.png
new file mode 100644
index 00000000..653340d1
Binary files /dev/null and b/desktop/assets/data/graphics/2208.png differ
diff --git a/desktop/assets/data/graphics/2209.png b/desktop/assets/data/graphics/2209.png
new file mode 100644
index 00000000..b7541aa3
Binary files /dev/null and b/desktop/assets/data/graphics/2209.png differ
diff --git a/desktop/assets/data/graphics/221.png b/desktop/assets/data/graphics/221.png
new file mode 100644
index 00000000..f897fb62
Binary files /dev/null and b/desktop/assets/data/graphics/221.png differ
diff --git a/desktop/assets/data/graphics/2210.png b/desktop/assets/data/graphics/2210.png
new file mode 100644
index 00000000..4114a198
Binary files /dev/null and b/desktop/assets/data/graphics/2210.png differ
diff --git a/desktop/assets/data/graphics/2211.png b/desktop/assets/data/graphics/2211.png
new file mode 100644
index 00000000..80307c91
Binary files /dev/null and b/desktop/assets/data/graphics/2211.png differ
diff --git a/desktop/assets/data/graphics/2212.png b/desktop/assets/data/graphics/2212.png
new file mode 100644
index 00000000..cc0bac9b
Binary files /dev/null and b/desktop/assets/data/graphics/2212.png differ
diff --git a/desktop/assets/data/graphics/2213.png b/desktop/assets/data/graphics/2213.png
new file mode 100644
index 00000000..bcc2d508
Binary files /dev/null and b/desktop/assets/data/graphics/2213.png differ
diff --git a/desktop/assets/data/graphics/2214.png b/desktop/assets/data/graphics/2214.png
new file mode 100644
index 00000000..96af416c
Binary files /dev/null and b/desktop/assets/data/graphics/2214.png differ
diff --git a/desktop/assets/data/graphics/2215.png b/desktop/assets/data/graphics/2215.png
new file mode 100644
index 00000000..d2fedc35
Binary files /dev/null and b/desktop/assets/data/graphics/2215.png differ
diff --git a/desktop/assets/data/graphics/2216.png b/desktop/assets/data/graphics/2216.png
new file mode 100644
index 00000000..d8124509
Binary files /dev/null and b/desktop/assets/data/graphics/2216.png differ
diff --git a/desktop/assets/data/graphics/2217.png b/desktop/assets/data/graphics/2217.png
new file mode 100644
index 00000000..03b9ccad
Binary files /dev/null and b/desktop/assets/data/graphics/2217.png differ
diff --git a/desktop/assets/data/graphics/2218.png b/desktop/assets/data/graphics/2218.png
new file mode 100644
index 00000000..ac40eca7
Binary files /dev/null and b/desktop/assets/data/graphics/2218.png differ
diff --git a/desktop/assets/data/graphics/2219.png b/desktop/assets/data/graphics/2219.png
new file mode 100644
index 00000000..ce9316c0
Binary files /dev/null and b/desktop/assets/data/graphics/2219.png differ
diff --git a/desktop/assets/data/graphics/222.png b/desktop/assets/data/graphics/222.png
new file mode 100644
index 00000000..7f4b2821
Binary files /dev/null and b/desktop/assets/data/graphics/222.png differ
diff --git a/desktop/assets/data/graphics/2220.png b/desktop/assets/data/graphics/2220.png
new file mode 100644
index 00000000..451953a7
Binary files /dev/null and b/desktop/assets/data/graphics/2220.png differ
diff --git a/desktop/assets/data/graphics/2221.png b/desktop/assets/data/graphics/2221.png
new file mode 100644
index 00000000..19388160
Binary files /dev/null and b/desktop/assets/data/graphics/2221.png differ
diff --git a/desktop/assets/data/graphics/2222.png b/desktop/assets/data/graphics/2222.png
new file mode 100644
index 00000000..026a419d
Binary files /dev/null and b/desktop/assets/data/graphics/2222.png differ
diff --git a/desktop/assets/data/graphics/2223.png b/desktop/assets/data/graphics/2223.png
new file mode 100644
index 00000000..c956f05f
Binary files /dev/null and b/desktop/assets/data/graphics/2223.png differ
diff --git a/desktop/assets/data/graphics/2224.png b/desktop/assets/data/graphics/2224.png
new file mode 100644
index 00000000..07fe4c42
Binary files /dev/null and b/desktop/assets/data/graphics/2224.png differ
diff --git a/desktop/assets/data/graphics/2225.png b/desktop/assets/data/graphics/2225.png
new file mode 100644
index 00000000..a7b7e898
Binary files /dev/null and b/desktop/assets/data/graphics/2225.png differ
diff --git a/desktop/assets/data/graphics/2226.png b/desktop/assets/data/graphics/2226.png
new file mode 100644
index 00000000..c5ddd343
Binary files /dev/null and b/desktop/assets/data/graphics/2226.png differ
diff --git a/desktop/assets/data/graphics/2227.png b/desktop/assets/data/graphics/2227.png
new file mode 100644
index 00000000..2ff5be60
Binary files /dev/null and b/desktop/assets/data/graphics/2227.png differ
diff --git a/desktop/assets/data/graphics/2228.png b/desktop/assets/data/graphics/2228.png
new file mode 100644
index 00000000..1f1c3978
Binary files /dev/null and b/desktop/assets/data/graphics/2228.png differ
diff --git a/desktop/assets/data/graphics/2229.png b/desktop/assets/data/graphics/2229.png
new file mode 100644
index 00000000..274c09cd
Binary files /dev/null and b/desktop/assets/data/graphics/2229.png differ
diff --git a/desktop/assets/data/graphics/223.png b/desktop/assets/data/graphics/223.png
new file mode 100644
index 00000000..fc4c0783
Binary files /dev/null and b/desktop/assets/data/graphics/223.png differ
diff --git a/desktop/assets/data/graphics/2230.png b/desktop/assets/data/graphics/2230.png
new file mode 100644
index 00000000..1052a338
Binary files /dev/null and b/desktop/assets/data/graphics/2230.png differ
diff --git a/desktop/assets/data/graphics/2231.png b/desktop/assets/data/graphics/2231.png
new file mode 100644
index 00000000..f6bc8a29
Binary files /dev/null and b/desktop/assets/data/graphics/2231.png differ
diff --git a/desktop/assets/data/graphics/2232.png b/desktop/assets/data/graphics/2232.png
new file mode 100644
index 00000000..8e43488f
Binary files /dev/null and b/desktop/assets/data/graphics/2232.png differ
diff --git a/desktop/assets/data/graphics/2233.png b/desktop/assets/data/graphics/2233.png
new file mode 100644
index 00000000..daca3938
Binary files /dev/null and b/desktop/assets/data/graphics/2233.png differ
diff --git a/desktop/assets/data/graphics/2234.png b/desktop/assets/data/graphics/2234.png
new file mode 100644
index 00000000..a6f87a09
Binary files /dev/null and b/desktop/assets/data/graphics/2234.png differ
diff --git a/desktop/assets/data/graphics/2235.png b/desktop/assets/data/graphics/2235.png
new file mode 100644
index 00000000..cec7feb9
Binary files /dev/null and b/desktop/assets/data/graphics/2235.png differ
diff --git a/desktop/assets/data/graphics/224.png b/desktop/assets/data/graphics/224.png
new file mode 100644
index 00000000..1d9e47bc
Binary files /dev/null and b/desktop/assets/data/graphics/224.png differ
diff --git a/desktop/assets/data/graphics/225.png b/desktop/assets/data/graphics/225.png
new file mode 100644
index 00000000..6131bcbb
Binary files /dev/null and b/desktop/assets/data/graphics/225.png differ
diff --git a/desktop/assets/data/graphics/226.png b/desktop/assets/data/graphics/226.png
new file mode 100644
index 00000000..bd5ff9c2
Binary files /dev/null and b/desktop/assets/data/graphics/226.png differ
diff --git a/desktop/assets/data/graphics/227.png b/desktop/assets/data/graphics/227.png
new file mode 100644
index 00000000..85014d9d
Binary files /dev/null and b/desktop/assets/data/graphics/227.png differ
diff --git a/desktop/assets/data/graphics/228.png b/desktop/assets/data/graphics/228.png
new file mode 100644
index 00000000..8902ef9d
Binary files /dev/null and b/desktop/assets/data/graphics/228.png differ
diff --git a/desktop/assets/data/graphics/229.png b/desktop/assets/data/graphics/229.png
new file mode 100644
index 00000000..a5a11287
Binary files /dev/null and b/desktop/assets/data/graphics/229.png differ
diff --git a/desktop/assets/data/graphics/23.png b/desktop/assets/data/graphics/23.png
new file mode 100644
index 00000000..d2ceea51
Binary files /dev/null and b/desktop/assets/data/graphics/23.png differ
diff --git a/desktop/assets/data/graphics/230.png b/desktop/assets/data/graphics/230.png
new file mode 100644
index 00000000..3e39d39a
Binary files /dev/null and b/desktop/assets/data/graphics/230.png differ
diff --git a/desktop/assets/data/graphics/23000.png b/desktop/assets/data/graphics/23000.png
new file mode 100644
index 00000000..f7780dc5
Binary files /dev/null and b/desktop/assets/data/graphics/23000.png differ
diff --git a/desktop/assets/data/graphics/23001.png b/desktop/assets/data/graphics/23001.png
new file mode 100644
index 00000000..c0cad3cf
Binary files /dev/null and b/desktop/assets/data/graphics/23001.png differ
diff --git a/desktop/assets/data/graphics/23002.png b/desktop/assets/data/graphics/23002.png
new file mode 100644
index 00000000..6b809c4b
Binary files /dev/null and b/desktop/assets/data/graphics/23002.png differ
diff --git a/desktop/assets/data/graphics/23003.png b/desktop/assets/data/graphics/23003.png
new file mode 100644
index 00000000..5ca02c4b
Binary files /dev/null and b/desktop/assets/data/graphics/23003.png differ
diff --git a/desktop/assets/data/graphics/23004.png b/desktop/assets/data/graphics/23004.png
new file mode 100644
index 00000000..a518546b
Binary files /dev/null and b/desktop/assets/data/graphics/23004.png differ
diff --git a/desktop/assets/data/graphics/23005.png b/desktop/assets/data/graphics/23005.png
new file mode 100644
index 00000000..0ba1b4dc
Binary files /dev/null and b/desktop/assets/data/graphics/23005.png differ
diff --git a/desktop/assets/data/graphics/231.png b/desktop/assets/data/graphics/231.png
new file mode 100644
index 00000000..e6b0e210
Binary files /dev/null and b/desktop/assets/data/graphics/231.png differ
diff --git a/desktop/assets/data/graphics/232.png b/desktop/assets/data/graphics/232.png
new file mode 100644
index 00000000..4081f918
Binary files /dev/null and b/desktop/assets/data/graphics/232.png differ
diff --git a/desktop/assets/data/graphics/233.png b/desktop/assets/data/graphics/233.png
new file mode 100644
index 00000000..0cd15d68
Binary files /dev/null and b/desktop/assets/data/graphics/233.png differ
diff --git a/desktop/assets/data/graphics/234.png b/desktop/assets/data/graphics/234.png
new file mode 100644
index 00000000..06115577
Binary files /dev/null and b/desktop/assets/data/graphics/234.png differ
diff --git a/desktop/assets/data/graphics/235.png b/desktop/assets/data/graphics/235.png
new file mode 100644
index 00000000..8a219eb7
Binary files /dev/null and b/desktop/assets/data/graphics/235.png differ
diff --git a/desktop/assets/data/graphics/236.png b/desktop/assets/data/graphics/236.png
new file mode 100644
index 00000000..03adcc7c
Binary files /dev/null and b/desktop/assets/data/graphics/236.png differ
diff --git a/desktop/assets/data/graficos2x/23657.png b/desktop/assets/data/graphics/23669.png
similarity index 100%
rename from desktop/assets/data/graficos2x/23657.png
rename to desktop/assets/data/graphics/23669.png
diff --git a/desktop/assets/data/graphics/237.png b/desktop/assets/data/graphics/237.png
new file mode 100644
index 00000000..163c1faa
Binary files /dev/null and b/desktop/assets/data/graphics/237.png differ
diff --git a/desktop/assets/data/graphics/238.png b/desktop/assets/data/graphics/238.png
new file mode 100644
index 00000000..9a63633e
Binary files /dev/null and b/desktop/assets/data/graphics/238.png differ
diff --git a/desktop/assets/data/graphics/239.png b/desktop/assets/data/graphics/239.png
new file mode 100644
index 00000000..1152d31c
Binary files /dev/null and b/desktop/assets/data/graphics/239.png differ
diff --git a/desktop/assets/data/graphics/24.png b/desktop/assets/data/graphics/24.png
new file mode 100644
index 00000000..fc79223c
Binary files /dev/null and b/desktop/assets/data/graphics/24.png differ
diff --git a/desktop/assets/data/graphics/240.png b/desktop/assets/data/graphics/240.png
new file mode 100644
index 00000000..bff6b6e4
Binary files /dev/null and b/desktop/assets/data/graphics/240.png differ
diff --git a/desktop/assets/data/graphics/24000.png b/desktop/assets/data/graphics/24000.png
new file mode 100644
index 00000000..4b00ef25
Binary files /dev/null and b/desktop/assets/data/graphics/24000.png differ
diff --git a/desktop/assets/data/graphics/24001.png b/desktop/assets/data/graphics/24001.png
new file mode 100644
index 00000000..c41eaad6
Binary files /dev/null and b/desktop/assets/data/graphics/24001.png differ
diff --git a/desktop/assets/data/graphics/24002.png b/desktop/assets/data/graphics/24002.png
new file mode 100644
index 00000000..cf845fa7
Binary files /dev/null and b/desktop/assets/data/graphics/24002.png differ
diff --git a/desktop/assets/data/graphics/24003.png b/desktop/assets/data/graphics/24003.png
new file mode 100644
index 00000000..6d6eae66
Binary files /dev/null and b/desktop/assets/data/graphics/24003.png differ
diff --git a/desktop/assets/data/graphics/24004.png b/desktop/assets/data/graphics/24004.png
new file mode 100644
index 00000000..5a7988f1
Binary files /dev/null and b/desktop/assets/data/graphics/24004.png differ
diff --git a/desktop/assets/data/graphics/24005.png b/desktop/assets/data/graphics/24005.png
new file mode 100644
index 00000000..01e1be10
Binary files /dev/null and b/desktop/assets/data/graphics/24005.png differ
diff --git a/desktop/assets/data/graphics/24006.png b/desktop/assets/data/graphics/24006.png
new file mode 100644
index 00000000..b95e4ae1
Binary files /dev/null and b/desktop/assets/data/graphics/24006.png differ
diff --git a/desktop/assets/data/graphics/24007.png b/desktop/assets/data/graphics/24007.png
new file mode 100644
index 00000000..eb5e30b7
Binary files /dev/null and b/desktop/assets/data/graphics/24007.png differ
diff --git a/desktop/assets/data/graphics/24008.png b/desktop/assets/data/graphics/24008.png
new file mode 100644
index 00000000..416cb022
Binary files /dev/null and b/desktop/assets/data/graphics/24008.png differ
diff --git a/desktop/assets/data/graphics/24009.png b/desktop/assets/data/graphics/24009.png
new file mode 100644
index 00000000..39b15f8f
Binary files /dev/null and b/desktop/assets/data/graphics/24009.png differ
diff --git a/desktop/assets/data/graphics/241.png b/desktop/assets/data/graphics/241.png
new file mode 100644
index 00000000..59ff06e6
Binary files /dev/null and b/desktop/assets/data/graphics/241.png differ
diff --git a/desktop/assets/data/graphics/242.png b/desktop/assets/data/graphics/242.png
new file mode 100644
index 00000000..aeeb3ae6
Binary files /dev/null and b/desktop/assets/data/graphics/242.png differ
diff --git a/desktop/assets/data/graphics/243.png b/desktop/assets/data/graphics/243.png
new file mode 100644
index 00000000..5b7f6610
Binary files /dev/null and b/desktop/assets/data/graphics/243.png differ
diff --git a/desktop/assets/data/graphics/244.png b/desktop/assets/data/graphics/244.png
new file mode 100644
index 00000000..79657c71
Binary files /dev/null and b/desktop/assets/data/graphics/244.png differ
diff --git a/desktop/assets/data/graphics/245.png b/desktop/assets/data/graphics/245.png
new file mode 100644
index 00000000..24775724
Binary files /dev/null and b/desktop/assets/data/graphics/245.png differ
diff --git a/desktop/assets/data/graphics/246.png b/desktop/assets/data/graphics/246.png
new file mode 100644
index 00000000..eae9e627
Binary files /dev/null and b/desktop/assets/data/graphics/246.png differ
diff --git a/desktop/assets/data/graphics/247.png b/desktop/assets/data/graphics/247.png
new file mode 100644
index 00000000..7b744e43
Binary files /dev/null and b/desktop/assets/data/graphics/247.png differ
diff --git a/desktop/assets/data/graphics/248.png b/desktop/assets/data/graphics/248.png
new file mode 100644
index 00000000..e60a4850
Binary files /dev/null and b/desktop/assets/data/graphics/248.png differ
diff --git a/desktop/assets/data/graphics/249.png b/desktop/assets/data/graphics/249.png
new file mode 100644
index 00000000..119f1e81
Binary files /dev/null and b/desktop/assets/data/graphics/249.png differ
diff --git a/desktop/assets/data/graphics/25.png b/desktop/assets/data/graphics/25.png
new file mode 100644
index 00000000..979b4f00
Binary files /dev/null and b/desktop/assets/data/graphics/25.png differ
diff --git a/desktop/assets/data/graphics/250.png b/desktop/assets/data/graphics/250.png
new file mode 100644
index 00000000..f1f909f3
Binary files /dev/null and b/desktop/assets/data/graphics/250.png differ
diff --git a/desktop/assets/data/graphics/25000.png b/desktop/assets/data/graphics/25000.png
new file mode 100644
index 00000000..cb106ce3
Binary files /dev/null and b/desktop/assets/data/graphics/25000.png differ
diff --git a/desktop/assets/data/graphics/25001.png b/desktop/assets/data/graphics/25001.png
new file mode 100644
index 00000000..759ea0a2
Binary files /dev/null and b/desktop/assets/data/graphics/25001.png differ
diff --git a/desktop/assets/data/graphics/25002.png b/desktop/assets/data/graphics/25002.png
new file mode 100644
index 00000000..138bb224
Binary files /dev/null and b/desktop/assets/data/graphics/25002.png differ
diff --git a/desktop/assets/data/graphics/25003.png b/desktop/assets/data/graphics/25003.png
new file mode 100644
index 00000000..7d11280a
Binary files /dev/null and b/desktop/assets/data/graphics/25003.png differ
diff --git a/desktop/assets/data/graphics/25004.png b/desktop/assets/data/graphics/25004.png
new file mode 100644
index 00000000..a644c2df
Binary files /dev/null and b/desktop/assets/data/graphics/25004.png differ
diff --git a/desktop/assets/data/graficos2x/25005.png b/desktop/assets/data/graphics/25005.png
similarity index 100%
rename from desktop/assets/data/graficos2x/25005.png
rename to desktop/assets/data/graphics/25005.png
diff --git a/desktop/assets/data/graphics/25006.png b/desktop/assets/data/graphics/25006.png
new file mode 100644
index 00000000..00d6dac0
Binary files /dev/null and b/desktop/assets/data/graphics/25006.png differ
diff --git a/desktop/assets/data/graphics/251.png b/desktop/assets/data/graphics/251.png
new file mode 100644
index 00000000..4a07e04a
Binary files /dev/null and b/desktop/assets/data/graphics/251.png differ
diff --git a/desktop/assets/data/graphics/252.png b/desktop/assets/data/graphics/252.png
new file mode 100644
index 00000000..cc98664a
Binary files /dev/null and b/desktop/assets/data/graphics/252.png differ
diff --git a/desktop/assets/data/graphics/253.png b/desktop/assets/data/graphics/253.png
new file mode 100644
index 00000000..37d88f6e
Binary files /dev/null and b/desktop/assets/data/graphics/253.png differ
diff --git a/desktop/assets/data/graphics/254.png b/desktop/assets/data/graphics/254.png
new file mode 100644
index 00000000..3dca6bf7
Binary files /dev/null and b/desktop/assets/data/graphics/254.png differ
diff --git a/desktop/assets/data/graphics/255.png b/desktop/assets/data/graphics/255.png
new file mode 100644
index 00000000..a6bb4668
Binary files /dev/null and b/desktop/assets/data/graphics/255.png differ
diff --git a/desktop/assets/data/graphics/256.png b/desktop/assets/data/graphics/256.png
new file mode 100644
index 00000000..cefd01c6
Binary files /dev/null and b/desktop/assets/data/graphics/256.png differ
diff --git a/desktop/assets/data/graphics/257.png b/desktop/assets/data/graphics/257.png
new file mode 100644
index 00000000..e0719b57
Binary files /dev/null and b/desktop/assets/data/graphics/257.png differ
diff --git a/desktop/assets/data/graphics/258.png b/desktop/assets/data/graphics/258.png
new file mode 100644
index 00000000..b05eafbf
Binary files /dev/null and b/desktop/assets/data/graphics/258.png differ
diff --git a/desktop/assets/data/graphics/259.png b/desktop/assets/data/graphics/259.png
new file mode 100644
index 00000000..deb2e311
Binary files /dev/null and b/desktop/assets/data/graphics/259.png differ
diff --git a/desktop/assets/data/graphics/26.png b/desktop/assets/data/graphics/26.png
new file mode 100644
index 00000000..8e3ff5f5
Binary files /dev/null and b/desktop/assets/data/graphics/26.png differ
diff --git a/desktop/assets/data/graphics/260.png b/desktop/assets/data/graphics/260.png
new file mode 100644
index 00000000..53dc417b
Binary files /dev/null and b/desktop/assets/data/graphics/260.png differ
diff --git a/desktop/assets/data/graphics/261.png b/desktop/assets/data/graphics/261.png
new file mode 100644
index 00000000..00dbd2f4
Binary files /dev/null and b/desktop/assets/data/graphics/261.png differ
diff --git a/desktop/assets/data/graphics/262.png b/desktop/assets/data/graphics/262.png
new file mode 100644
index 00000000..0cca85ee
Binary files /dev/null and b/desktop/assets/data/graphics/262.png differ
diff --git a/desktop/assets/data/graphics/263.png b/desktop/assets/data/graphics/263.png
new file mode 100644
index 00000000..b05c63df
Binary files /dev/null and b/desktop/assets/data/graphics/263.png differ
diff --git a/desktop/assets/data/graphics/264.png b/desktop/assets/data/graphics/264.png
new file mode 100644
index 00000000..8acbc1a0
Binary files /dev/null and b/desktop/assets/data/graphics/264.png differ
diff --git a/desktop/assets/data/graphics/265.png b/desktop/assets/data/graphics/265.png
new file mode 100644
index 00000000..73708708
Binary files /dev/null and b/desktop/assets/data/graphics/265.png differ
diff --git a/desktop/assets/data/graphics/266.png b/desktop/assets/data/graphics/266.png
new file mode 100644
index 00000000..112d8258
Binary files /dev/null and b/desktop/assets/data/graphics/266.png differ
diff --git a/desktop/assets/data/graphics/267.png b/desktop/assets/data/graphics/267.png
new file mode 100644
index 00000000..3720a90a
Binary files /dev/null and b/desktop/assets/data/graphics/267.png differ
diff --git a/desktop/assets/data/graphics/268.png b/desktop/assets/data/graphics/268.png
new file mode 100644
index 00000000..b3351fe0
Binary files /dev/null and b/desktop/assets/data/graphics/268.png differ
diff --git a/desktop/assets/data/graphics/269.png b/desktop/assets/data/graphics/269.png
new file mode 100644
index 00000000..14093063
Binary files /dev/null and b/desktop/assets/data/graphics/269.png differ
diff --git a/desktop/assets/data/graphics/27.png b/desktop/assets/data/graphics/27.png
new file mode 100644
index 00000000..f0b024ce
Binary files /dev/null and b/desktop/assets/data/graphics/27.png differ
diff --git a/desktop/assets/data/graphics/270.png b/desktop/assets/data/graphics/270.png
new file mode 100644
index 00000000..14348c88
Binary files /dev/null and b/desktop/assets/data/graphics/270.png differ
diff --git a/desktop/assets/data/graphics/271.png b/desktop/assets/data/graphics/271.png
new file mode 100644
index 00000000..6523d282
Binary files /dev/null and b/desktop/assets/data/graphics/271.png differ
diff --git a/desktop/assets/data/graphics/272.png b/desktop/assets/data/graphics/272.png
new file mode 100644
index 00000000..933901a7
Binary files /dev/null and b/desktop/assets/data/graphics/272.png differ
diff --git a/desktop/assets/data/graphics/273.png b/desktop/assets/data/graphics/273.png
new file mode 100644
index 00000000..b2650804
Binary files /dev/null and b/desktop/assets/data/graphics/273.png differ
diff --git a/desktop/assets/data/graphics/274.png b/desktop/assets/data/graphics/274.png
new file mode 100644
index 00000000..575961ef
Binary files /dev/null and b/desktop/assets/data/graphics/274.png differ
diff --git a/desktop/assets/data/graphics/275.png b/desktop/assets/data/graphics/275.png
new file mode 100644
index 00000000..7ddddeb6
Binary files /dev/null and b/desktop/assets/data/graphics/275.png differ
diff --git a/desktop/assets/data/graphics/276.png b/desktop/assets/data/graphics/276.png
new file mode 100644
index 00000000..74a77362
Binary files /dev/null and b/desktop/assets/data/graphics/276.png differ
diff --git a/desktop/assets/data/graphics/277.png b/desktop/assets/data/graphics/277.png
new file mode 100644
index 00000000..7d43f420
Binary files /dev/null and b/desktop/assets/data/graphics/277.png differ
diff --git a/desktop/assets/data/graphics/278.png b/desktop/assets/data/graphics/278.png
new file mode 100644
index 00000000..3ec9dee9
Binary files /dev/null and b/desktop/assets/data/graphics/278.png differ
diff --git a/desktop/assets/data/graphics/279.png b/desktop/assets/data/graphics/279.png
new file mode 100644
index 00000000..6d69f9c2
Binary files /dev/null and b/desktop/assets/data/graphics/279.png differ
diff --git a/desktop/assets/data/graphics/28.png b/desktop/assets/data/graphics/28.png
new file mode 100644
index 00000000..2b1bcc32
Binary files /dev/null and b/desktop/assets/data/graphics/28.png differ
diff --git a/desktop/assets/data/graphics/280.png b/desktop/assets/data/graphics/280.png
new file mode 100644
index 00000000..f0dbb6f6
Binary files /dev/null and b/desktop/assets/data/graphics/280.png differ
diff --git a/desktop/assets/data/graphics/281.png b/desktop/assets/data/graphics/281.png
new file mode 100644
index 00000000..4ded342e
Binary files /dev/null and b/desktop/assets/data/graphics/281.png differ
diff --git a/desktop/assets/data/graphics/282.png b/desktop/assets/data/graphics/282.png
new file mode 100644
index 00000000..eebb5bda
Binary files /dev/null and b/desktop/assets/data/graphics/282.png differ
diff --git a/desktop/assets/data/graphics/283.png b/desktop/assets/data/graphics/283.png
new file mode 100644
index 00000000..2b94ba75
Binary files /dev/null and b/desktop/assets/data/graphics/283.png differ
diff --git a/desktop/assets/data/graphics/284.png b/desktop/assets/data/graphics/284.png
new file mode 100644
index 00000000..b75fa027
Binary files /dev/null and b/desktop/assets/data/graphics/284.png differ
diff --git a/desktop/assets/data/graphics/285.png b/desktop/assets/data/graphics/285.png
new file mode 100644
index 00000000..059b382b
Binary files /dev/null and b/desktop/assets/data/graphics/285.png differ
diff --git a/desktop/assets/data/graphics/286.png b/desktop/assets/data/graphics/286.png
new file mode 100644
index 00000000..c6624fc2
Binary files /dev/null and b/desktop/assets/data/graphics/286.png differ
diff --git a/desktop/assets/data/graphics/287.png b/desktop/assets/data/graphics/287.png
new file mode 100644
index 00000000..bc4326aa
Binary files /dev/null and b/desktop/assets/data/graphics/287.png differ
diff --git a/desktop/assets/data/graphics/288.png b/desktop/assets/data/graphics/288.png
new file mode 100644
index 00000000..7bacd6f1
Binary files /dev/null and b/desktop/assets/data/graphics/288.png differ
diff --git a/desktop/assets/data/graphics/289.png b/desktop/assets/data/graphics/289.png
new file mode 100644
index 00000000..5e17fd11
Binary files /dev/null and b/desktop/assets/data/graphics/289.png differ
diff --git a/desktop/assets/data/graphics/29.png b/desktop/assets/data/graphics/29.png
new file mode 100644
index 00000000..59d155b0
Binary files /dev/null and b/desktop/assets/data/graphics/29.png differ
diff --git a/desktop/assets/data/graphics/290.png b/desktop/assets/data/graphics/290.png
new file mode 100644
index 00000000..30b99cd5
Binary files /dev/null and b/desktop/assets/data/graphics/290.png differ
diff --git a/desktop/assets/data/graphics/291.png b/desktop/assets/data/graphics/291.png
new file mode 100644
index 00000000..23bd3039
Binary files /dev/null and b/desktop/assets/data/graphics/291.png differ
diff --git a/desktop/assets/data/graphics/292.png b/desktop/assets/data/graphics/292.png
new file mode 100644
index 00000000..c13cc19e
Binary files /dev/null and b/desktop/assets/data/graphics/292.png differ
diff --git a/desktop/assets/data/graphics/293.png b/desktop/assets/data/graphics/293.png
new file mode 100644
index 00000000..11c76459
Binary files /dev/null and b/desktop/assets/data/graphics/293.png differ
diff --git a/desktop/assets/data/graphics/294.png b/desktop/assets/data/graphics/294.png
new file mode 100644
index 00000000..3e03f2a2
Binary files /dev/null and b/desktop/assets/data/graphics/294.png differ
diff --git a/desktop/assets/data/graphics/295.png b/desktop/assets/data/graphics/295.png
new file mode 100644
index 00000000..71187132
Binary files /dev/null and b/desktop/assets/data/graphics/295.png differ
diff --git a/desktop/assets/data/graphics/296.png b/desktop/assets/data/graphics/296.png
new file mode 100644
index 00000000..cc6d7e74
Binary files /dev/null and b/desktop/assets/data/graphics/296.png differ
diff --git a/desktop/assets/data/graphics/297.png b/desktop/assets/data/graphics/297.png
new file mode 100644
index 00000000..10005a10
Binary files /dev/null and b/desktop/assets/data/graphics/297.png differ
diff --git a/desktop/assets/data/graphics/298.png b/desktop/assets/data/graphics/298.png
new file mode 100644
index 00000000..26881f00
Binary files /dev/null and b/desktop/assets/data/graphics/298.png differ
diff --git a/desktop/assets/data/graphics/299.png b/desktop/assets/data/graphics/299.png
new file mode 100644
index 00000000..2d3287ed
Binary files /dev/null and b/desktop/assets/data/graphics/299.png differ
diff --git a/desktop/assets/data/graphics/3.png b/desktop/assets/data/graphics/3.png
new file mode 100644
index 00000000..dcdb9cf2
Binary files /dev/null and b/desktop/assets/data/graphics/3.png differ
diff --git a/desktop/assets/data/graphics/30.png b/desktop/assets/data/graphics/30.png
new file mode 100644
index 00000000..6f8b8b55
Binary files /dev/null and b/desktop/assets/data/graphics/30.png differ
diff --git a/desktop/assets/data/graphics/300.png b/desktop/assets/data/graphics/300.png
new file mode 100644
index 00000000..a2600009
Binary files /dev/null and b/desktop/assets/data/graphics/300.png differ
diff --git a/desktop/assets/data/graphics/3000.png b/desktop/assets/data/graphics/3000.png
new file mode 100644
index 00000000..bb684d6f
Binary files /dev/null and b/desktop/assets/data/graphics/3000.png differ
diff --git a/desktop/assets/data/graphics/3001.png b/desktop/assets/data/graphics/3001.png
new file mode 100644
index 00000000..449e7cd6
Binary files /dev/null and b/desktop/assets/data/graphics/3001.png differ
diff --git a/desktop/assets/data/graphics/3002.png b/desktop/assets/data/graphics/3002.png
new file mode 100644
index 00000000..34ee60df
Binary files /dev/null and b/desktop/assets/data/graphics/3002.png differ
diff --git a/desktop/assets/data/graphics/3003.png b/desktop/assets/data/graphics/3003.png
new file mode 100644
index 00000000..6c02d477
Binary files /dev/null and b/desktop/assets/data/graphics/3003.png differ
diff --git a/desktop/assets/data/graphics/3004.png b/desktop/assets/data/graphics/3004.png
new file mode 100644
index 00000000..bfa77c72
Binary files /dev/null and b/desktop/assets/data/graphics/3004.png differ
diff --git a/desktop/assets/data/graphics/3005.png b/desktop/assets/data/graphics/3005.png
new file mode 100644
index 00000000..2654e8b5
Binary files /dev/null and b/desktop/assets/data/graphics/3005.png differ
diff --git a/desktop/assets/data/graphics/3006.png b/desktop/assets/data/graphics/3006.png
new file mode 100644
index 00000000..9d34560a
Binary files /dev/null and b/desktop/assets/data/graphics/3006.png differ
diff --git a/desktop/assets/data/graphics/3007.png b/desktop/assets/data/graphics/3007.png
new file mode 100644
index 00000000..9d21dc9f
Binary files /dev/null and b/desktop/assets/data/graphics/3007.png differ
diff --git a/desktop/assets/data/graphics/3008.png b/desktop/assets/data/graphics/3008.png
new file mode 100644
index 00000000..afc6f6d7
Binary files /dev/null and b/desktop/assets/data/graphics/3008.png differ
diff --git a/desktop/assets/data/graphics/3009.png b/desktop/assets/data/graphics/3009.png
new file mode 100644
index 00000000..03d09122
Binary files /dev/null and b/desktop/assets/data/graphics/3009.png differ
diff --git a/desktop/assets/data/graphics/301.png b/desktop/assets/data/graphics/301.png
new file mode 100644
index 00000000..ba75bf64
Binary files /dev/null and b/desktop/assets/data/graphics/301.png differ
diff --git a/desktop/assets/data/graphics/3010.png b/desktop/assets/data/graphics/3010.png
new file mode 100644
index 00000000..749b87ef
Binary files /dev/null and b/desktop/assets/data/graphics/3010.png differ
diff --git a/desktop/assets/data/graphics/3011.png b/desktop/assets/data/graphics/3011.png
new file mode 100644
index 00000000..c494d611
Binary files /dev/null and b/desktop/assets/data/graphics/3011.png differ
diff --git a/desktop/assets/data/graphics/3012.png b/desktop/assets/data/graphics/3012.png
new file mode 100644
index 00000000..df7cdc06
Binary files /dev/null and b/desktop/assets/data/graphics/3012.png differ
diff --git a/desktop/assets/data/graphics/3013.png b/desktop/assets/data/graphics/3013.png
new file mode 100644
index 00000000..41612ff4
Binary files /dev/null and b/desktop/assets/data/graphics/3013.png differ
diff --git a/desktop/assets/data/graphics/3014.png b/desktop/assets/data/graphics/3014.png
new file mode 100644
index 00000000..460d53a6
Binary files /dev/null and b/desktop/assets/data/graphics/3014.png differ
diff --git a/desktop/assets/data/graphics/3015.png b/desktop/assets/data/graphics/3015.png
new file mode 100644
index 00000000..5beb7c18
Binary files /dev/null and b/desktop/assets/data/graphics/3015.png differ
diff --git a/desktop/assets/data/graphics/3016.png b/desktop/assets/data/graphics/3016.png
new file mode 100644
index 00000000..9c7e7b3f
Binary files /dev/null and b/desktop/assets/data/graphics/3016.png differ
diff --git a/desktop/assets/data/graphics/3017.png b/desktop/assets/data/graphics/3017.png
new file mode 100644
index 00000000..a92d97d7
Binary files /dev/null and b/desktop/assets/data/graphics/3017.png differ
diff --git a/desktop/assets/data/graphics/3018.png b/desktop/assets/data/graphics/3018.png
new file mode 100644
index 00000000..48c19683
Binary files /dev/null and b/desktop/assets/data/graphics/3018.png differ
diff --git a/desktop/assets/data/graphics/3019.png b/desktop/assets/data/graphics/3019.png
new file mode 100644
index 00000000..5333aa4c
Binary files /dev/null and b/desktop/assets/data/graphics/3019.png differ
diff --git a/desktop/assets/data/graphics/302.png b/desktop/assets/data/graphics/302.png
new file mode 100644
index 00000000..36c5081d
Binary files /dev/null and b/desktop/assets/data/graphics/302.png differ
diff --git a/desktop/assets/data/graphics/3020.png b/desktop/assets/data/graphics/3020.png
new file mode 100644
index 00000000..d499f291
Binary files /dev/null and b/desktop/assets/data/graphics/3020.png differ
diff --git a/desktop/assets/data/graphics/3021.png b/desktop/assets/data/graphics/3021.png
new file mode 100644
index 00000000..453c3452
Binary files /dev/null and b/desktop/assets/data/graphics/3021.png differ
diff --git a/desktop/assets/data/graphics/3022.png b/desktop/assets/data/graphics/3022.png
new file mode 100644
index 00000000..f5bd2833
Binary files /dev/null and b/desktop/assets/data/graphics/3022.png differ
diff --git a/desktop/assets/data/graphics/3023.png b/desktop/assets/data/graphics/3023.png
new file mode 100644
index 00000000..4d8c2db2
Binary files /dev/null and b/desktop/assets/data/graphics/3023.png differ
diff --git a/desktop/assets/data/graphics/3024.png b/desktop/assets/data/graphics/3024.png
new file mode 100644
index 00000000..a0b3cd7c
Binary files /dev/null and b/desktop/assets/data/graphics/3024.png differ
diff --git a/desktop/assets/data/graphics/3025.png b/desktop/assets/data/graphics/3025.png
new file mode 100644
index 00000000..1d253967
Binary files /dev/null and b/desktop/assets/data/graphics/3025.png differ
diff --git a/desktop/assets/data/graphics/3026.png b/desktop/assets/data/graphics/3026.png
new file mode 100644
index 00000000..622323c0
Binary files /dev/null and b/desktop/assets/data/graphics/3026.png differ
diff --git a/desktop/assets/data/graphics/3027.png b/desktop/assets/data/graphics/3027.png
new file mode 100644
index 00000000..1a4b38b8
Binary files /dev/null and b/desktop/assets/data/graphics/3027.png differ
diff --git a/desktop/assets/data/graphics/3028.png b/desktop/assets/data/graphics/3028.png
new file mode 100644
index 00000000..4fac6618
Binary files /dev/null and b/desktop/assets/data/graphics/3028.png differ
diff --git a/desktop/assets/data/graphics/3029.png b/desktop/assets/data/graphics/3029.png
new file mode 100644
index 00000000..94a96f41
Binary files /dev/null and b/desktop/assets/data/graphics/3029.png differ
diff --git a/desktop/assets/data/graphics/303.png b/desktop/assets/data/graphics/303.png
new file mode 100644
index 00000000..37866a0b
Binary files /dev/null and b/desktop/assets/data/graphics/303.png differ
diff --git a/desktop/assets/data/graphics/3030.png b/desktop/assets/data/graphics/3030.png
new file mode 100644
index 00000000..9104a066
Binary files /dev/null and b/desktop/assets/data/graphics/3030.png differ
diff --git a/desktop/assets/data/graphics/3031.png b/desktop/assets/data/graphics/3031.png
new file mode 100644
index 00000000..60a61f67
Binary files /dev/null and b/desktop/assets/data/graphics/3031.png differ
diff --git a/desktop/assets/data/graphics/3032.png b/desktop/assets/data/graphics/3032.png
new file mode 100644
index 00000000..b52628b2
Binary files /dev/null and b/desktop/assets/data/graphics/3032.png differ
diff --git a/desktop/assets/data/graphics/3033.png b/desktop/assets/data/graphics/3033.png
new file mode 100644
index 00000000..61ff384b
Binary files /dev/null and b/desktop/assets/data/graphics/3033.png differ
diff --git a/desktop/assets/data/graphics/3034.png b/desktop/assets/data/graphics/3034.png
new file mode 100644
index 00000000..9710550e
Binary files /dev/null and b/desktop/assets/data/graphics/3034.png differ
diff --git a/desktop/assets/data/graphics/3035.png b/desktop/assets/data/graphics/3035.png
new file mode 100644
index 00000000..5a09c765
Binary files /dev/null and b/desktop/assets/data/graphics/3035.png differ
diff --git a/desktop/assets/data/graphics/3036.png b/desktop/assets/data/graphics/3036.png
new file mode 100644
index 00000000..441ddf25
Binary files /dev/null and b/desktop/assets/data/graphics/3036.png differ
diff --git a/desktop/assets/data/graphics/3037.png b/desktop/assets/data/graphics/3037.png
new file mode 100644
index 00000000..253ebd49
Binary files /dev/null and b/desktop/assets/data/graphics/3037.png differ
diff --git a/desktop/assets/data/graphics/3038.png b/desktop/assets/data/graphics/3038.png
new file mode 100644
index 00000000..49b9da4a
Binary files /dev/null and b/desktop/assets/data/graphics/3038.png differ
diff --git a/desktop/assets/data/graphics/3039.png b/desktop/assets/data/graphics/3039.png
new file mode 100644
index 00000000..4fbd1ac5
Binary files /dev/null and b/desktop/assets/data/graphics/3039.png differ
diff --git a/desktop/assets/data/graphics/304.png b/desktop/assets/data/graphics/304.png
new file mode 100644
index 00000000..01f7c6f7
Binary files /dev/null and b/desktop/assets/data/graphics/304.png differ
diff --git a/desktop/assets/data/graphics/3040.png b/desktop/assets/data/graphics/3040.png
new file mode 100644
index 00000000..7ddbfe15
Binary files /dev/null and b/desktop/assets/data/graphics/3040.png differ
diff --git a/desktop/assets/data/graphics/3041.png b/desktop/assets/data/graphics/3041.png
new file mode 100644
index 00000000..aba9e439
Binary files /dev/null and b/desktop/assets/data/graphics/3041.png differ
diff --git a/desktop/assets/data/graphics/3042.png b/desktop/assets/data/graphics/3042.png
new file mode 100644
index 00000000..5fabec42
Binary files /dev/null and b/desktop/assets/data/graphics/3042.png differ
diff --git a/desktop/assets/data/graphics/3043.png b/desktop/assets/data/graphics/3043.png
new file mode 100644
index 00000000..b5a8c6a8
Binary files /dev/null and b/desktop/assets/data/graphics/3043.png differ
diff --git a/desktop/assets/data/graphics/3044.png b/desktop/assets/data/graphics/3044.png
new file mode 100644
index 00000000..bf42c031
Binary files /dev/null and b/desktop/assets/data/graphics/3044.png differ
diff --git a/desktop/assets/data/graphics/3045.png b/desktop/assets/data/graphics/3045.png
new file mode 100644
index 00000000..b06274c9
Binary files /dev/null and b/desktop/assets/data/graphics/3045.png differ
diff --git a/desktop/assets/data/graphics/3046.png b/desktop/assets/data/graphics/3046.png
new file mode 100644
index 00000000..639b77b0
Binary files /dev/null and b/desktop/assets/data/graphics/3046.png differ
diff --git a/desktop/assets/data/graphics/3047.png b/desktop/assets/data/graphics/3047.png
new file mode 100644
index 00000000..0a0b4c34
Binary files /dev/null and b/desktop/assets/data/graphics/3047.png differ
diff --git a/desktop/assets/data/graphics/3048.png b/desktop/assets/data/graphics/3048.png
new file mode 100644
index 00000000..747961a8
Binary files /dev/null and b/desktop/assets/data/graphics/3048.png differ
diff --git a/desktop/assets/data/graphics/3049.png b/desktop/assets/data/graphics/3049.png
new file mode 100644
index 00000000..63bd9378
Binary files /dev/null and b/desktop/assets/data/graphics/3049.png differ
diff --git a/desktop/assets/data/graphics/305.png b/desktop/assets/data/graphics/305.png
new file mode 100644
index 00000000..f336dd16
Binary files /dev/null and b/desktop/assets/data/graphics/305.png differ
diff --git a/desktop/assets/data/graphics/3050.png b/desktop/assets/data/graphics/3050.png
new file mode 100644
index 00000000..6fda4afd
Binary files /dev/null and b/desktop/assets/data/graphics/3050.png differ
diff --git a/desktop/assets/data/graphics/3051.png b/desktop/assets/data/graphics/3051.png
new file mode 100644
index 00000000..31d8373d
Binary files /dev/null and b/desktop/assets/data/graphics/3051.png differ
diff --git a/desktop/assets/data/graphics/3052.png b/desktop/assets/data/graphics/3052.png
new file mode 100644
index 00000000..00e52336
Binary files /dev/null and b/desktop/assets/data/graphics/3052.png differ
diff --git a/desktop/assets/data/graphics/3053.png b/desktop/assets/data/graphics/3053.png
new file mode 100644
index 00000000..0c2ac064
Binary files /dev/null and b/desktop/assets/data/graphics/3053.png differ
diff --git a/desktop/assets/data/graphics/3054.png b/desktop/assets/data/graphics/3054.png
new file mode 100644
index 00000000..498a0ffd
Binary files /dev/null and b/desktop/assets/data/graphics/3054.png differ
diff --git a/desktop/assets/data/graphics/3055.png b/desktop/assets/data/graphics/3055.png
new file mode 100644
index 00000000..1f0c4ffb
Binary files /dev/null and b/desktop/assets/data/graphics/3055.png differ
diff --git a/desktop/assets/data/graphics/3056.png b/desktop/assets/data/graphics/3056.png
new file mode 100644
index 00000000..6c053d3c
Binary files /dev/null and b/desktop/assets/data/graphics/3056.png differ
diff --git a/desktop/assets/data/graphics/3057.png b/desktop/assets/data/graphics/3057.png
new file mode 100644
index 00000000..4dd01066
Binary files /dev/null and b/desktop/assets/data/graphics/3057.png differ
diff --git a/desktop/assets/data/graphics/3058.png b/desktop/assets/data/graphics/3058.png
new file mode 100644
index 00000000..e7e964cd
Binary files /dev/null and b/desktop/assets/data/graphics/3058.png differ
diff --git a/desktop/assets/data/graphics/3059.png b/desktop/assets/data/graphics/3059.png
new file mode 100644
index 00000000..02a99587
Binary files /dev/null and b/desktop/assets/data/graphics/3059.png differ
diff --git a/desktop/assets/data/graphics/3060.png b/desktop/assets/data/graphics/3060.png
new file mode 100644
index 00000000..6f14be8f
Binary files /dev/null and b/desktop/assets/data/graphics/3060.png differ
diff --git a/desktop/assets/data/graphics/3061.png b/desktop/assets/data/graphics/3061.png
new file mode 100644
index 00000000..b21e09db
Binary files /dev/null and b/desktop/assets/data/graphics/3061.png differ
diff --git a/desktop/assets/data/graphics/3062.png b/desktop/assets/data/graphics/3062.png
new file mode 100644
index 00000000..981537ba
Binary files /dev/null and b/desktop/assets/data/graphics/3062.png differ
diff --git a/desktop/assets/data/graphics/3063.png b/desktop/assets/data/graphics/3063.png
new file mode 100644
index 00000000..06884a63
Binary files /dev/null and b/desktop/assets/data/graphics/3063.png differ
diff --git a/desktop/assets/data/graphics/3064.png b/desktop/assets/data/graphics/3064.png
new file mode 100644
index 00000000..701ea2db
Binary files /dev/null and b/desktop/assets/data/graphics/3064.png differ
diff --git a/desktop/assets/data/graphics/3065.png b/desktop/assets/data/graphics/3065.png
new file mode 100644
index 00000000..c8100233
Binary files /dev/null and b/desktop/assets/data/graphics/3065.png differ
diff --git a/desktop/assets/data/graphics/3066.png b/desktop/assets/data/graphics/3066.png
new file mode 100644
index 00000000..bae87838
Binary files /dev/null and b/desktop/assets/data/graphics/3066.png differ
diff --git a/desktop/assets/data/graphics/3067.png b/desktop/assets/data/graphics/3067.png
new file mode 100644
index 00000000..648bbeec
Binary files /dev/null and b/desktop/assets/data/graphics/3067.png differ
diff --git a/desktop/assets/data/graphics/3068.png b/desktop/assets/data/graphics/3068.png
new file mode 100644
index 00000000..54f324b7
Binary files /dev/null and b/desktop/assets/data/graphics/3068.png differ
diff --git a/desktop/assets/data/graphics/3069.png b/desktop/assets/data/graphics/3069.png
new file mode 100644
index 00000000..d79e550b
Binary files /dev/null and b/desktop/assets/data/graphics/3069.png differ
diff --git a/desktop/assets/data/graphics/307.png b/desktop/assets/data/graphics/307.png
new file mode 100644
index 00000000..e543d480
Binary files /dev/null and b/desktop/assets/data/graphics/307.png differ
diff --git a/desktop/assets/data/graphics/3070.png b/desktop/assets/data/graphics/3070.png
new file mode 100644
index 00000000..941b09d9
Binary files /dev/null and b/desktop/assets/data/graphics/3070.png differ
diff --git a/desktop/assets/data/graphics/3071.png b/desktop/assets/data/graphics/3071.png
new file mode 100644
index 00000000..fcff8a9f
Binary files /dev/null and b/desktop/assets/data/graphics/3071.png differ
diff --git a/desktop/assets/data/graphics/3072.png b/desktop/assets/data/graphics/3072.png
new file mode 100644
index 00000000..6b479466
Binary files /dev/null and b/desktop/assets/data/graphics/3072.png differ
diff --git a/desktop/assets/data/graphics/3073.png b/desktop/assets/data/graphics/3073.png
new file mode 100644
index 00000000..09a35ee8
Binary files /dev/null and b/desktop/assets/data/graphics/3073.png differ
diff --git a/desktop/assets/data/graphics/3074.png b/desktop/assets/data/graphics/3074.png
new file mode 100644
index 00000000..3126835a
Binary files /dev/null and b/desktop/assets/data/graphics/3074.png differ
diff --git a/desktop/assets/data/graphics/3075.png b/desktop/assets/data/graphics/3075.png
new file mode 100644
index 00000000..dd73aa8e
Binary files /dev/null and b/desktop/assets/data/graphics/3075.png differ
diff --git a/desktop/assets/data/graphics/3076.png b/desktop/assets/data/graphics/3076.png
new file mode 100644
index 00000000..233add70
Binary files /dev/null and b/desktop/assets/data/graphics/3076.png differ
diff --git a/desktop/assets/data/graphics/3077.png b/desktop/assets/data/graphics/3077.png
new file mode 100644
index 00000000..df3f16da
Binary files /dev/null and b/desktop/assets/data/graphics/3077.png differ
diff --git a/desktop/assets/data/graphics/3078.png b/desktop/assets/data/graphics/3078.png
new file mode 100644
index 00000000..15965463
Binary files /dev/null and b/desktop/assets/data/graphics/3078.png differ
diff --git a/desktop/assets/data/graphics/3079.png b/desktop/assets/data/graphics/3079.png
new file mode 100644
index 00000000..adfa4c66
Binary files /dev/null and b/desktop/assets/data/graphics/3079.png differ
diff --git a/desktop/assets/data/graphics/308.png b/desktop/assets/data/graphics/308.png
new file mode 100644
index 00000000..5248e2d9
Binary files /dev/null and b/desktop/assets/data/graphics/308.png differ
diff --git a/desktop/assets/data/graphics/3080.png b/desktop/assets/data/graphics/3080.png
new file mode 100644
index 00000000..2271329d
Binary files /dev/null and b/desktop/assets/data/graphics/3080.png differ
diff --git a/desktop/assets/data/graphics/3081.png b/desktop/assets/data/graphics/3081.png
new file mode 100644
index 00000000..347e690d
Binary files /dev/null and b/desktop/assets/data/graphics/3081.png differ
diff --git a/desktop/assets/data/graphics/3082.png b/desktop/assets/data/graphics/3082.png
new file mode 100644
index 00000000..242f55c3
Binary files /dev/null and b/desktop/assets/data/graphics/3082.png differ
diff --git a/desktop/assets/data/graphics/3083.png b/desktop/assets/data/graphics/3083.png
new file mode 100644
index 00000000..c3fc870a
Binary files /dev/null and b/desktop/assets/data/graphics/3083.png differ
diff --git a/desktop/assets/data/graphics/3084.png b/desktop/assets/data/graphics/3084.png
new file mode 100644
index 00000000..497d96cf
Binary files /dev/null and b/desktop/assets/data/graphics/3084.png differ
diff --git a/desktop/assets/data/graphics/3085.png b/desktop/assets/data/graphics/3085.png
new file mode 100644
index 00000000..238e28b5
Binary files /dev/null and b/desktop/assets/data/graphics/3085.png differ
diff --git a/desktop/assets/data/graphics/3086.png b/desktop/assets/data/graphics/3086.png
new file mode 100644
index 00000000..f5b0cdbf
Binary files /dev/null and b/desktop/assets/data/graphics/3086.png differ
diff --git a/desktop/assets/data/graphics/3087.png b/desktop/assets/data/graphics/3087.png
new file mode 100644
index 00000000..74fea862
Binary files /dev/null and b/desktop/assets/data/graphics/3087.png differ
diff --git a/desktop/assets/data/graphics/3088.png b/desktop/assets/data/graphics/3088.png
new file mode 100644
index 00000000..74fea862
Binary files /dev/null and b/desktop/assets/data/graphics/3088.png differ
diff --git a/desktop/assets/data/graphics/3089.png b/desktop/assets/data/graphics/3089.png
new file mode 100644
index 00000000..c8c8520b
Binary files /dev/null and b/desktop/assets/data/graphics/3089.png differ
diff --git a/desktop/assets/data/graphics/309.png b/desktop/assets/data/graphics/309.png
new file mode 100644
index 00000000..60f2daf9
Binary files /dev/null and b/desktop/assets/data/graphics/309.png differ
diff --git a/desktop/assets/data/graphics/3090.png b/desktop/assets/data/graphics/3090.png
new file mode 100644
index 00000000..a0ef8ee0
Binary files /dev/null and b/desktop/assets/data/graphics/3090.png differ
diff --git a/desktop/assets/data/graphics/3091.png b/desktop/assets/data/graphics/3091.png
new file mode 100644
index 00000000..4a3be814
Binary files /dev/null and b/desktop/assets/data/graphics/3091.png differ
diff --git a/desktop/assets/data/graphics/3092.png b/desktop/assets/data/graphics/3092.png
new file mode 100644
index 00000000..d544737b
Binary files /dev/null and b/desktop/assets/data/graphics/3092.png differ
diff --git a/desktop/assets/data/graphics/3093.png b/desktop/assets/data/graphics/3093.png
new file mode 100644
index 00000000..096c25e2
Binary files /dev/null and b/desktop/assets/data/graphics/3093.png differ
diff --git a/desktop/assets/data/graphics/3094.png b/desktop/assets/data/graphics/3094.png
new file mode 100644
index 00000000..d3f5bc1f
Binary files /dev/null and b/desktop/assets/data/graphics/3094.png differ
diff --git a/desktop/assets/data/graphics/3095.png b/desktop/assets/data/graphics/3095.png
new file mode 100644
index 00000000..f2c65962
Binary files /dev/null and b/desktop/assets/data/graphics/3095.png differ
diff --git a/desktop/assets/data/graphics/3096.png b/desktop/assets/data/graphics/3096.png
new file mode 100644
index 00000000..92ae1657
Binary files /dev/null and b/desktop/assets/data/graphics/3096.png differ
diff --git a/desktop/assets/data/graphics/3097.png b/desktop/assets/data/graphics/3097.png
new file mode 100644
index 00000000..64526f5e
Binary files /dev/null and b/desktop/assets/data/graphics/3097.png differ
diff --git a/desktop/assets/data/graphics/3098.png b/desktop/assets/data/graphics/3098.png
new file mode 100644
index 00000000..35692f0a
Binary files /dev/null and b/desktop/assets/data/graphics/3098.png differ
diff --git a/desktop/assets/data/graphics/3099.png b/desktop/assets/data/graphics/3099.png
new file mode 100644
index 00000000..715ef7a5
Binary files /dev/null and b/desktop/assets/data/graphics/3099.png differ
diff --git a/desktop/assets/data/graphics/31.png b/desktop/assets/data/graphics/31.png
new file mode 100644
index 00000000..3513d17f
Binary files /dev/null and b/desktop/assets/data/graphics/31.png differ
diff --git a/desktop/assets/data/graphics/310.png b/desktop/assets/data/graphics/310.png
new file mode 100644
index 00000000..e24b425a
Binary files /dev/null and b/desktop/assets/data/graphics/310.png differ
diff --git a/desktop/assets/data/graphics/3100.png b/desktop/assets/data/graphics/3100.png
new file mode 100644
index 00000000..7865f760
Binary files /dev/null and b/desktop/assets/data/graphics/3100.png differ
diff --git a/desktop/assets/data/graphics/3101.png b/desktop/assets/data/graphics/3101.png
new file mode 100644
index 00000000..1077452a
Binary files /dev/null and b/desktop/assets/data/graphics/3101.png differ
diff --git a/desktop/assets/data/graphics/3102.png b/desktop/assets/data/graphics/3102.png
new file mode 100644
index 00000000..957c9c75
Binary files /dev/null and b/desktop/assets/data/graphics/3102.png differ
diff --git a/desktop/assets/data/graphics/3103.png b/desktop/assets/data/graphics/3103.png
new file mode 100644
index 00000000..a96d34dd
Binary files /dev/null and b/desktop/assets/data/graphics/3103.png differ
diff --git a/desktop/assets/data/graphics/3104.png b/desktop/assets/data/graphics/3104.png
new file mode 100644
index 00000000..5532868f
Binary files /dev/null and b/desktop/assets/data/graphics/3104.png differ
diff --git a/desktop/assets/data/graphics/3105.png b/desktop/assets/data/graphics/3105.png
new file mode 100644
index 00000000..371362ba
Binary files /dev/null and b/desktop/assets/data/graphics/3105.png differ
diff --git a/desktop/assets/data/graphics/3106.png b/desktop/assets/data/graphics/3106.png
new file mode 100644
index 00000000..9b56fa14
Binary files /dev/null and b/desktop/assets/data/graphics/3106.png differ
diff --git a/desktop/assets/data/graphics/311.png b/desktop/assets/data/graphics/311.png
new file mode 100644
index 00000000..0316ab8c
Binary files /dev/null and b/desktop/assets/data/graphics/311.png differ
diff --git a/desktop/assets/data/graphics/312.png b/desktop/assets/data/graphics/312.png
new file mode 100644
index 00000000..802a20bc
Binary files /dev/null and b/desktop/assets/data/graphics/312.png differ
diff --git a/desktop/assets/data/graphics/313.png b/desktop/assets/data/graphics/313.png
new file mode 100644
index 00000000..bd41a731
Binary files /dev/null and b/desktop/assets/data/graphics/313.png differ
diff --git a/desktop/assets/data/graphics/314.png b/desktop/assets/data/graphics/314.png
new file mode 100644
index 00000000..c0dd2135
Binary files /dev/null and b/desktop/assets/data/graphics/314.png differ
diff --git a/desktop/assets/data/graphics/315.png b/desktop/assets/data/graphics/315.png
new file mode 100644
index 00000000..57da7cfb
Binary files /dev/null and b/desktop/assets/data/graphics/315.png differ
diff --git a/desktop/assets/data/graphics/316.png b/desktop/assets/data/graphics/316.png
new file mode 100644
index 00000000..7be1867f
Binary files /dev/null and b/desktop/assets/data/graphics/316.png differ
diff --git a/desktop/assets/data/graphics/317.png b/desktop/assets/data/graphics/317.png
new file mode 100644
index 00000000..85629018
Binary files /dev/null and b/desktop/assets/data/graphics/317.png differ
diff --git a/desktop/assets/data/graphics/318.png b/desktop/assets/data/graphics/318.png
new file mode 100644
index 00000000..82d8c158
Binary files /dev/null and b/desktop/assets/data/graphics/318.png differ
diff --git a/desktop/assets/data/graphics/319.png b/desktop/assets/data/graphics/319.png
new file mode 100644
index 00000000..46f91098
Binary files /dev/null and b/desktop/assets/data/graphics/319.png differ
diff --git a/desktop/assets/data/graphics/32.png b/desktop/assets/data/graphics/32.png
new file mode 100644
index 00000000..96f22da7
Binary files /dev/null and b/desktop/assets/data/graphics/32.png differ
diff --git a/desktop/assets/data/graphics/320.png b/desktop/assets/data/graphics/320.png
new file mode 100644
index 00000000..4aec1ff1
Binary files /dev/null and b/desktop/assets/data/graphics/320.png differ
diff --git a/desktop/assets/data/graphics/321.png b/desktop/assets/data/graphics/321.png
new file mode 100644
index 00000000..5cbf06da
Binary files /dev/null and b/desktop/assets/data/graphics/321.png differ
diff --git a/desktop/assets/data/graphics/322.png b/desktop/assets/data/graphics/322.png
new file mode 100644
index 00000000..051592c6
Binary files /dev/null and b/desktop/assets/data/graphics/322.png differ
diff --git a/desktop/assets/data/graphics/323.png b/desktop/assets/data/graphics/323.png
new file mode 100644
index 00000000..82ec6c62
Binary files /dev/null and b/desktop/assets/data/graphics/323.png differ
diff --git a/desktop/assets/data/graphics/324.png b/desktop/assets/data/graphics/324.png
new file mode 100644
index 00000000..42604cb8
Binary files /dev/null and b/desktop/assets/data/graphics/324.png differ
diff --git a/desktop/assets/data/graphics/325.png b/desktop/assets/data/graphics/325.png
new file mode 100644
index 00000000..1999077d
Binary files /dev/null and b/desktop/assets/data/graphics/325.png differ
diff --git a/desktop/assets/data/graphics/326.png b/desktop/assets/data/graphics/326.png
new file mode 100644
index 00000000..def54712
Binary files /dev/null and b/desktop/assets/data/graphics/326.png differ
diff --git a/desktop/assets/data/graphics/327.png b/desktop/assets/data/graphics/327.png
new file mode 100644
index 00000000..aa8d1129
Binary files /dev/null and b/desktop/assets/data/graphics/327.png differ
diff --git a/desktop/assets/data/graphics/328.png b/desktop/assets/data/graphics/328.png
new file mode 100644
index 00000000..4ce54d71
Binary files /dev/null and b/desktop/assets/data/graphics/328.png differ
diff --git a/desktop/assets/data/graphics/329.png b/desktop/assets/data/graphics/329.png
new file mode 100644
index 00000000..0bff847e
Binary files /dev/null and b/desktop/assets/data/graphics/329.png differ
diff --git a/desktop/assets/data/graphics/33.png b/desktop/assets/data/graphics/33.png
new file mode 100644
index 00000000..cb4e50c6
Binary files /dev/null and b/desktop/assets/data/graphics/33.png differ
diff --git a/desktop/assets/data/graphics/330.png b/desktop/assets/data/graphics/330.png
new file mode 100644
index 00000000..2841e8a4
Binary files /dev/null and b/desktop/assets/data/graphics/330.png differ
diff --git a/desktop/assets/data/graphics/331.png b/desktop/assets/data/graphics/331.png
new file mode 100644
index 00000000..ca589840
Binary files /dev/null and b/desktop/assets/data/graphics/331.png differ
diff --git a/desktop/assets/data/graphics/333.png b/desktop/assets/data/graphics/333.png
new file mode 100644
index 00000000..f0200a5f
Binary files /dev/null and b/desktop/assets/data/graphics/333.png differ
diff --git a/desktop/assets/data/graphics/334.png b/desktop/assets/data/graphics/334.png
new file mode 100644
index 00000000..8fbc59aa
Binary files /dev/null and b/desktop/assets/data/graphics/334.png differ
diff --git a/desktop/assets/data/graphics/335.png b/desktop/assets/data/graphics/335.png
new file mode 100644
index 00000000..dba0cfe2
Binary files /dev/null and b/desktop/assets/data/graphics/335.png differ
diff --git a/desktop/assets/data/graphics/336.png b/desktop/assets/data/graphics/336.png
new file mode 100644
index 00000000..dba0cfe2
Binary files /dev/null and b/desktop/assets/data/graphics/336.png differ
diff --git a/desktop/assets/data/graphics/337.png b/desktop/assets/data/graphics/337.png
new file mode 100644
index 00000000..5e68a8af
Binary files /dev/null and b/desktop/assets/data/graphics/337.png differ
diff --git a/desktop/assets/data/graphics/338.png b/desktop/assets/data/graphics/338.png
new file mode 100644
index 00000000..40c1bc3a
Binary files /dev/null and b/desktop/assets/data/graphics/338.png differ
diff --git a/desktop/assets/data/graphics/339.png b/desktop/assets/data/graphics/339.png
new file mode 100644
index 00000000..078cbbba
Binary files /dev/null and b/desktop/assets/data/graphics/339.png differ
diff --git a/desktop/assets/data/graphics/34.png b/desktop/assets/data/graphics/34.png
new file mode 100644
index 00000000..7ce36d5a
Binary files /dev/null and b/desktop/assets/data/graphics/34.png differ
diff --git a/desktop/assets/data/graphics/340.png b/desktop/assets/data/graphics/340.png
new file mode 100644
index 00000000..56cdf3b8
Binary files /dev/null and b/desktop/assets/data/graphics/340.png differ
diff --git a/desktop/assets/data/graphics/341.png b/desktop/assets/data/graphics/341.png
new file mode 100644
index 00000000..1eebfc48
Binary files /dev/null and b/desktop/assets/data/graphics/341.png differ
diff --git a/desktop/assets/data/graphics/342.png b/desktop/assets/data/graphics/342.png
new file mode 100644
index 00000000..b1dc4f47
Binary files /dev/null and b/desktop/assets/data/graphics/342.png differ
diff --git a/desktop/assets/data/graphics/344.png b/desktop/assets/data/graphics/344.png
new file mode 100644
index 00000000..ad874adf
Binary files /dev/null and b/desktop/assets/data/graphics/344.png differ
diff --git a/desktop/assets/data/graphics/345.png b/desktop/assets/data/graphics/345.png
new file mode 100644
index 00000000..5db7e9af
Binary files /dev/null and b/desktop/assets/data/graphics/345.png differ
diff --git a/desktop/assets/data/graphics/346.png b/desktop/assets/data/graphics/346.png
new file mode 100644
index 00000000..2a5bfe43
Binary files /dev/null and b/desktop/assets/data/graphics/346.png differ
diff --git a/desktop/assets/data/graphics/347.png b/desktop/assets/data/graphics/347.png
new file mode 100644
index 00000000..503de1e8
Binary files /dev/null and b/desktop/assets/data/graphics/347.png differ
diff --git a/desktop/assets/data/graphics/348.png b/desktop/assets/data/graphics/348.png
new file mode 100644
index 00000000..d1bb4753
Binary files /dev/null and b/desktop/assets/data/graphics/348.png differ
diff --git a/desktop/assets/data/graphics/349.png b/desktop/assets/data/graphics/349.png
new file mode 100644
index 00000000..b7f2036b
Binary files /dev/null and b/desktop/assets/data/graphics/349.png differ
diff --git a/desktop/assets/data/graphics/35.png b/desktop/assets/data/graphics/35.png
new file mode 100644
index 00000000..8d0686cb
Binary files /dev/null and b/desktop/assets/data/graphics/35.png differ
diff --git a/desktop/assets/data/graphics/350.png b/desktop/assets/data/graphics/350.png
new file mode 100644
index 00000000..34f0bc34
Binary files /dev/null and b/desktop/assets/data/graphics/350.png differ
diff --git a/desktop/assets/data/graphics/351.png b/desktop/assets/data/graphics/351.png
new file mode 100644
index 00000000..678d4639
Binary files /dev/null and b/desktop/assets/data/graphics/351.png differ
diff --git a/desktop/assets/data/graphics/352.png b/desktop/assets/data/graphics/352.png
new file mode 100644
index 00000000..8525813c
Binary files /dev/null and b/desktop/assets/data/graphics/352.png differ
diff --git a/desktop/assets/data/graphics/353.png b/desktop/assets/data/graphics/353.png
new file mode 100644
index 00000000..76c4c3f6
Binary files /dev/null and b/desktop/assets/data/graphics/353.png differ
diff --git a/desktop/assets/data/graphics/354.png b/desktop/assets/data/graphics/354.png
new file mode 100644
index 00000000..1c1b59b5
Binary files /dev/null and b/desktop/assets/data/graphics/354.png differ
diff --git a/desktop/assets/data/graphics/355.png b/desktop/assets/data/graphics/355.png
new file mode 100644
index 00000000..96eb494a
Binary files /dev/null and b/desktop/assets/data/graphics/355.png differ
diff --git a/desktop/assets/data/graphics/356.png b/desktop/assets/data/graphics/356.png
new file mode 100644
index 00000000..57c74e83
Binary files /dev/null and b/desktop/assets/data/graphics/356.png differ
diff --git a/desktop/assets/data/graphics/357.png b/desktop/assets/data/graphics/357.png
new file mode 100644
index 00000000..84077613
Binary files /dev/null and b/desktop/assets/data/graphics/357.png differ
diff --git a/desktop/assets/data/graphics/358.png b/desktop/assets/data/graphics/358.png
new file mode 100644
index 00000000..9c1b8a6f
Binary files /dev/null and b/desktop/assets/data/graphics/358.png differ
diff --git a/desktop/assets/data/graphics/359.png b/desktop/assets/data/graphics/359.png
new file mode 100644
index 00000000..1f185f95
Binary files /dev/null and b/desktop/assets/data/graphics/359.png differ
diff --git a/desktop/assets/data/graphics/36.png b/desktop/assets/data/graphics/36.png
new file mode 100644
index 00000000..dab28168
Binary files /dev/null and b/desktop/assets/data/graphics/36.png differ
diff --git a/desktop/assets/data/graphics/360.png b/desktop/assets/data/graphics/360.png
new file mode 100644
index 00000000..f3550022
Binary files /dev/null and b/desktop/assets/data/graphics/360.png differ
diff --git a/desktop/assets/data/graphics/360.pxm b/desktop/assets/data/graphics/360.pxm
new file mode 100644
index 00000000..ce00621d
Binary files /dev/null and b/desktop/assets/data/graphics/360.pxm differ
diff --git a/desktop/assets/data/graphics/361.png b/desktop/assets/data/graphics/361.png
new file mode 100644
index 00000000..164cbe98
Binary files /dev/null and b/desktop/assets/data/graphics/361.png differ
diff --git a/desktop/assets/data/graphics/362.png b/desktop/assets/data/graphics/362.png
new file mode 100644
index 00000000..822c62ad
Binary files /dev/null and b/desktop/assets/data/graphics/362.png differ
diff --git a/desktop/assets/data/graphics/363.png b/desktop/assets/data/graphics/363.png
new file mode 100644
index 00000000..931c6916
Binary files /dev/null and b/desktop/assets/data/graphics/363.png differ
diff --git a/desktop/assets/data/graphics/364.png b/desktop/assets/data/graphics/364.png
new file mode 100644
index 00000000..5d88e6f9
Binary files /dev/null and b/desktop/assets/data/graphics/364.png differ
diff --git a/desktop/assets/data/graphics/365.png b/desktop/assets/data/graphics/365.png
new file mode 100644
index 00000000..fa9a9c6d
Binary files /dev/null and b/desktop/assets/data/graphics/365.png differ
diff --git a/desktop/assets/data/graphics/366.png b/desktop/assets/data/graphics/366.png
new file mode 100644
index 00000000..def691a6
Binary files /dev/null and b/desktop/assets/data/graphics/366.png differ
diff --git a/desktop/assets/data/graphics/367.png b/desktop/assets/data/graphics/367.png
new file mode 100644
index 00000000..7b1a13af
Binary files /dev/null and b/desktop/assets/data/graphics/367.png differ
diff --git a/desktop/assets/data/graphics/368.png b/desktop/assets/data/graphics/368.png
new file mode 100644
index 00000000..8ffb0f55
Binary files /dev/null and b/desktop/assets/data/graphics/368.png differ
diff --git a/desktop/assets/data/graphics/369.png b/desktop/assets/data/graphics/369.png
new file mode 100644
index 00000000..fc7ec844
Binary files /dev/null and b/desktop/assets/data/graphics/369.png differ
diff --git a/desktop/assets/data/graphics/37.png b/desktop/assets/data/graphics/37.png
new file mode 100644
index 00000000..4425e306
Binary files /dev/null and b/desktop/assets/data/graphics/37.png differ
diff --git a/desktop/assets/data/graphics/370.png b/desktop/assets/data/graphics/370.png
new file mode 100644
index 00000000..06fa0340
Binary files /dev/null and b/desktop/assets/data/graphics/370.png differ
diff --git a/desktop/assets/data/graphics/371.png b/desktop/assets/data/graphics/371.png
new file mode 100644
index 00000000..47b4e7e0
Binary files /dev/null and b/desktop/assets/data/graphics/371.png differ
diff --git a/desktop/assets/data/graphics/372.png b/desktop/assets/data/graphics/372.png
new file mode 100644
index 00000000..1b1afd08
Binary files /dev/null and b/desktop/assets/data/graphics/372.png differ
diff --git a/desktop/assets/data/graphics/373.png b/desktop/assets/data/graphics/373.png
new file mode 100644
index 00000000..97ed2ec6
Binary files /dev/null and b/desktop/assets/data/graphics/373.png differ
diff --git a/desktop/assets/data/graphics/374.png b/desktop/assets/data/graphics/374.png
new file mode 100644
index 00000000..dd0f2ec2
Binary files /dev/null and b/desktop/assets/data/graphics/374.png differ
diff --git a/desktop/assets/data/graphics/375.png b/desktop/assets/data/graphics/375.png
new file mode 100644
index 00000000..483321a5
Binary files /dev/null and b/desktop/assets/data/graphics/375.png differ
diff --git a/desktop/assets/data/graphics/376.png b/desktop/assets/data/graphics/376.png
new file mode 100644
index 00000000..b2029b96
Binary files /dev/null and b/desktop/assets/data/graphics/376.png differ
diff --git a/desktop/assets/data/graphics/377.png b/desktop/assets/data/graphics/377.png
new file mode 100644
index 00000000..afa63a8a
Binary files /dev/null and b/desktop/assets/data/graphics/377.png differ
diff --git a/desktop/assets/data/graphics/378.png b/desktop/assets/data/graphics/378.png
new file mode 100644
index 00000000..5e1440b0
Binary files /dev/null and b/desktop/assets/data/graphics/378.png differ
diff --git a/desktop/assets/data/graphics/379.png b/desktop/assets/data/graphics/379.png
new file mode 100644
index 00000000..13f9f0bc
Binary files /dev/null and b/desktop/assets/data/graphics/379.png differ
diff --git a/desktop/assets/data/graphics/38.png b/desktop/assets/data/graphics/38.png
new file mode 100644
index 00000000..9413eba4
Binary files /dev/null and b/desktop/assets/data/graphics/38.png differ
diff --git a/desktop/assets/data/graphics/380.png b/desktop/assets/data/graphics/380.png
new file mode 100644
index 00000000..4a63327f
Binary files /dev/null and b/desktop/assets/data/graphics/380.png differ
diff --git a/desktop/assets/data/graphics/381.png b/desktop/assets/data/graphics/381.png
new file mode 100644
index 00000000..816df5d3
Binary files /dev/null and b/desktop/assets/data/graphics/381.png differ
diff --git a/desktop/assets/data/graphics/382.png b/desktop/assets/data/graphics/382.png
new file mode 100644
index 00000000..9446acb3
Binary files /dev/null and b/desktop/assets/data/graphics/382.png differ
diff --git a/desktop/assets/data/graphics/383.png b/desktop/assets/data/graphics/383.png
new file mode 100644
index 00000000..534c9f6d
Binary files /dev/null and b/desktop/assets/data/graphics/383.png differ
diff --git a/desktop/assets/data/graphics/384.png b/desktop/assets/data/graphics/384.png
new file mode 100644
index 00000000..f81dae97
Binary files /dev/null and b/desktop/assets/data/graphics/384.png differ
diff --git a/desktop/assets/data/graphics/385.png b/desktop/assets/data/graphics/385.png
new file mode 100644
index 00000000..95e6050a
Binary files /dev/null and b/desktop/assets/data/graphics/385.png differ
diff --git a/desktop/assets/data/graphics/386.png b/desktop/assets/data/graphics/386.png
new file mode 100644
index 00000000..400e3953
Binary files /dev/null and b/desktop/assets/data/graphics/386.png differ
diff --git a/desktop/assets/data/graphics/387.png b/desktop/assets/data/graphics/387.png
new file mode 100644
index 00000000..2db7809d
Binary files /dev/null and b/desktop/assets/data/graphics/387.png differ
diff --git a/desktop/assets/data/graphics/388.png b/desktop/assets/data/graphics/388.png
new file mode 100644
index 00000000..01992a0c
Binary files /dev/null and b/desktop/assets/data/graphics/388.png differ
diff --git a/desktop/assets/data/graphics/389.png b/desktop/assets/data/graphics/389.png
new file mode 100644
index 00000000..bb3049cf
Binary files /dev/null and b/desktop/assets/data/graphics/389.png differ
diff --git a/desktop/assets/data/graphics/39.png b/desktop/assets/data/graphics/39.png
new file mode 100644
index 00000000..b9e055ba
Binary files /dev/null and b/desktop/assets/data/graphics/39.png differ
diff --git a/desktop/assets/data/graphics/390.png b/desktop/assets/data/graphics/390.png
new file mode 100644
index 00000000..8b00d6ad
Binary files /dev/null and b/desktop/assets/data/graphics/390.png differ
diff --git a/desktop/assets/data/graphics/391.png b/desktop/assets/data/graphics/391.png
new file mode 100644
index 00000000..039da5c6
Binary files /dev/null and b/desktop/assets/data/graphics/391.png differ
diff --git a/desktop/assets/data/graphics/392.png b/desktop/assets/data/graphics/392.png
new file mode 100644
index 00000000..d020cbe9
Binary files /dev/null and b/desktop/assets/data/graphics/392.png differ
diff --git a/desktop/assets/data/graphics/393.png b/desktop/assets/data/graphics/393.png
new file mode 100644
index 00000000..5d65a8c6
Binary files /dev/null and b/desktop/assets/data/graphics/393.png differ
diff --git a/desktop/assets/data/graphics/394.png b/desktop/assets/data/graphics/394.png
new file mode 100644
index 00000000..25cd9433
Binary files /dev/null and b/desktop/assets/data/graphics/394.png differ
diff --git a/desktop/assets/data/graphics/395.png b/desktop/assets/data/graphics/395.png
new file mode 100644
index 00000000..010ee84f
Binary files /dev/null and b/desktop/assets/data/graphics/395.png differ
diff --git a/desktop/assets/data/graphics/396.png b/desktop/assets/data/graphics/396.png
new file mode 100644
index 00000000..7d593ffc
Binary files /dev/null and b/desktop/assets/data/graphics/396.png differ
diff --git a/desktop/assets/data/graphics/397.png b/desktop/assets/data/graphics/397.png
new file mode 100644
index 00000000..b088fd7a
Binary files /dev/null and b/desktop/assets/data/graphics/397.png differ
diff --git a/desktop/assets/data/graphics/398.png b/desktop/assets/data/graphics/398.png
new file mode 100644
index 00000000..28f75bf9
Binary files /dev/null and b/desktop/assets/data/graphics/398.png differ
diff --git a/desktop/assets/data/graphics/399.png b/desktop/assets/data/graphics/399.png
new file mode 100644
index 00000000..480aa1b3
Binary files /dev/null and b/desktop/assets/data/graphics/399.png differ
diff --git a/desktop/assets/data/graphics/4.png b/desktop/assets/data/graphics/4.png
new file mode 100644
index 00000000..fac2297a
Binary files /dev/null and b/desktop/assets/data/graphics/4.png differ
diff --git a/desktop/assets/data/graphics/40.png b/desktop/assets/data/graphics/40.png
new file mode 100644
index 00000000..ffbc7eb7
Binary files /dev/null and b/desktop/assets/data/graphics/40.png differ
diff --git a/desktop/assets/data/graphics/400.png b/desktop/assets/data/graphics/400.png
new file mode 100644
index 00000000..88cd6c7b
Binary files /dev/null and b/desktop/assets/data/graphics/400.png differ
diff --git a/desktop/assets/data/graphics/4000.png b/desktop/assets/data/graphics/4000.png
new file mode 100644
index 00000000..ef13975e
Binary files /dev/null and b/desktop/assets/data/graphics/4000.png differ
diff --git a/desktop/assets/data/graphics/4001.png b/desktop/assets/data/graphics/4001.png
new file mode 100644
index 00000000..ff1b9cb8
Binary files /dev/null and b/desktop/assets/data/graphics/4001.png differ
diff --git a/desktop/assets/data/graphics/4002.png b/desktop/assets/data/graphics/4002.png
new file mode 100644
index 00000000..d2d59a23
Binary files /dev/null and b/desktop/assets/data/graphics/4002.png differ
diff --git a/desktop/assets/data/graphics/4003.png b/desktop/assets/data/graphics/4003.png
new file mode 100644
index 00000000..15033442
Binary files /dev/null and b/desktop/assets/data/graphics/4003.png differ
diff --git a/desktop/assets/data/graphics/4004.png b/desktop/assets/data/graphics/4004.png
new file mode 100644
index 00000000..1de37074
Binary files /dev/null and b/desktop/assets/data/graphics/4004.png differ
diff --git a/desktop/assets/data/graphics/4005.png b/desktop/assets/data/graphics/4005.png
new file mode 100644
index 00000000..857966b1
Binary files /dev/null and b/desktop/assets/data/graphics/4005.png differ
diff --git a/desktop/assets/data/graphics/4006.png b/desktop/assets/data/graphics/4006.png
new file mode 100644
index 00000000..0dcb895d
Binary files /dev/null and b/desktop/assets/data/graphics/4006.png differ
diff --git a/desktop/assets/data/graphics/4007.png b/desktop/assets/data/graphics/4007.png
new file mode 100644
index 00000000..afc6380c
Binary files /dev/null and b/desktop/assets/data/graphics/4007.png differ
diff --git a/desktop/assets/data/graphics/4008.png b/desktop/assets/data/graphics/4008.png
new file mode 100644
index 00000000..af9d1b71
Binary files /dev/null and b/desktop/assets/data/graphics/4008.png differ
diff --git a/desktop/assets/data/graphics/4009.png b/desktop/assets/data/graphics/4009.png
new file mode 100644
index 00000000..3e44522d
Binary files /dev/null and b/desktop/assets/data/graphics/4009.png differ
diff --git a/desktop/assets/data/graphics/401.png b/desktop/assets/data/graphics/401.png
new file mode 100644
index 00000000..25f69828
Binary files /dev/null and b/desktop/assets/data/graphics/401.png differ
diff --git a/desktop/assets/data/graphics/4010.png b/desktop/assets/data/graphics/4010.png
new file mode 100644
index 00000000..c82b1c1e
Binary files /dev/null and b/desktop/assets/data/graphics/4010.png differ
diff --git a/desktop/assets/data/graphics/4011.png b/desktop/assets/data/graphics/4011.png
new file mode 100644
index 00000000..2de8275c
Binary files /dev/null and b/desktop/assets/data/graphics/4011.png differ
diff --git a/desktop/assets/data/graphics/4012.png b/desktop/assets/data/graphics/4012.png
new file mode 100644
index 00000000..40b448d4
Binary files /dev/null and b/desktop/assets/data/graphics/4012.png differ
diff --git a/desktop/assets/data/graphics/4013.png b/desktop/assets/data/graphics/4013.png
new file mode 100644
index 00000000..eba37f31
Binary files /dev/null and b/desktop/assets/data/graphics/4013.png differ
diff --git a/desktop/assets/data/graphics/4014.png b/desktop/assets/data/graphics/4014.png
new file mode 100644
index 00000000..2fe94e95
Binary files /dev/null and b/desktop/assets/data/graphics/4014.png differ
diff --git a/desktop/assets/data/graphics/4015.png b/desktop/assets/data/graphics/4015.png
new file mode 100644
index 00000000..e2ca4580
Binary files /dev/null and b/desktop/assets/data/graphics/4015.png differ
diff --git a/desktop/assets/data/graphics/4016.png b/desktop/assets/data/graphics/4016.png
new file mode 100644
index 00000000..5c3c54df
Binary files /dev/null and b/desktop/assets/data/graphics/4016.png differ
diff --git a/desktop/assets/data/graphics/4017.png b/desktop/assets/data/graphics/4017.png
new file mode 100644
index 00000000..f386f73c
Binary files /dev/null and b/desktop/assets/data/graphics/4017.png differ
diff --git a/desktop/assets/data/graphics/4018.png b/desktop/assets/data/graphics/4018.png
new file mode 100644
index 00000000..4c500970
Binary files /dev/null and b/desktop/assets/data/graphics/4018.png differ
diff --git a/desktop/assets/data/graphics/4019.png b/desktop/assets/data/graphics/4019.png
new file mode 100644
index 00000000..39090c04
Binary files /dev/null and b/desktop/assets/data/graphics/4019.png differ
diff --git a/desktop/assets/data/graphics/402.png b/desktop/assets/data/graphics/402.png
new file mode 100644
index 00000000..06bc9181
Binary files /dev/null and b/desktop/assets/data/graphics/402.png differ
diff --git a/desktop/assets/data/graphics/4020.png b/desktop/assets/data/graphics/4020.png
new file mode 100644
index 00000000..b13675d7
Binary files /dev/null and b/desktop/assets/data/graphics/4020.png differ
diff --git a/desktop/assets/data/graphics/4021.png b/desktop/assets/data/graphics/4021.png
new file mode 100644
index 00000000..3965cf58
Binary files /dev/null and b/desktop/assets/data/graphics/4021.png differ
diff --git a/desktop/assets/data/graphics/4022.png b/desktop/assets/data/graphics/4022.png
new file mode 100644
index 00000000..055c7c7e
Binary files /dev/null and b/desktop/assets/data/graphics/4022.png differ
diff --git a/desktop/assets/data/graphics/4023.png b/desktop/assets/data/graphics/4023.png
new file mode 100644
index 00000000..bc3b194d
Binary files /dev/null and b/desktop/assets/data/graphics/4023.png differ
diff --git a/desktop/assets/data/graphics/4024.png b/desktop/assets/data/graphics/4024.png
new file mode 100644
index 00000000..14d12db9
Binary files /dev/null and b/desktop/assets/data/graphics/4024.png differ
diff --git a/desktop/assets/data/graphics/4025.png b/desktop/assets/data/graphics/4025.png
new file mode 100644
index 00000000..6f717b7d
Binary files /dev/null and b/desktop/assets/data/graphics/4025.png differ
diff --git a/desktop/assets/data/graphics/4026.png b/desktop/assets/data/graphics/4026.png
new file mode 100644
index 00000000..32f5dbc6
Binary files /dev/null and b/desktop/assets/data/graphics/4026.png differ
diff --git a/desktop/assets/data/graphics/4027.png b/desktop/assets/data/graphics/4027.png
new file mode 100644
index 00000000..1b93d5e6
Binary files /dev/null and b/desktop/assets/data/graphics/4027.png differ
diff --git a/desktop/assets/data/graphics/4028.png b/desktop/assets/data/graphics/4028.png
new file mode 100644
index 00000000..9896ff53
Binary files /dev/null and b/desktop/assets/data/graphics/4028.png differ
diff --git a/desktop/assets/data/graphics/4029.png b/desktop/assets/data/graphics/4029.png
new file mode 100644
index 00000000..ee7b13a5
Binary files /dev/null and b/desktop/assets/data/graphics/4029.png differ
diff --git a/desktop/assets/data/graphics/403.png b/desktop/assets/data/graphics/403.png
new file mode 100644
index 00000000..d1198c42
Binary files /dev/null and b/desktop/assets/data/graphics/403.png differ
diff --git a/desktop/assets/data/graphics/4030.png b/desktop/assets/data/graphics/4030.png
new file mode 100644
index 00000000..353f3143
Binary files /dev/null and b/desktop/assets/data/graphics/4030.png differ
diff --git a/desktop/assets/data/graphics/4031.png b/desktop/assets/data/graphics/4031.png
new file mode 100644
index 00000000..21426dce
Binary files /dev/null and b/desktop/assets/data/graphics/4031.png differ
diff --git a/desktop/assets/data/graphics/4032.png b/desktop/assets/data/graphics/4032.png
new file mode 100644
index 00000000..f10a1520
Binary files /dev/null and b/desktop/assets/data/graphics/4032.png differ
diff --git a/desktop/assets/data/graphics/4033.png b/desktop/assets/data/graphics/4033.png
new file mode 100644
index 00000000..f0273c09
Binary files /dev/null and b/desktop/assets/data/graphics/4033.png differ
diff --git a/desktop/assets/data/graphics/4034.png b/desktop/assets/data/graphics/4034.png
new file mode 100644
index 00000000..91043528
Binary files /dev/null and b/desktop/assets/data/graphics/4034.png differ
diff --git a/desktop/assets/data/graphics/4035.png b/desktop/assets/data/graphics/4035.png
new file mode 100644
index 00000000..029c9be4
Binary files /dev/null and b/desktop/assets/data/graphics/4035.png differ
diff --git a/desktop/assets/data/graphics/4036.png b/desktop/assets/data/graphics/4036.png
new file mode 100644
index 00000000..7353aa79
Binary files /dev/null and b/desktop/assets/data/graphics/4036.png differ
diff --git a/desktop/assets/data/graphics/4037.png b/desktop/assets/data/graphics/4037.png
new file mode 100644
index 00000000..f844ee58
Binary files /dev/null and b/desktop/assets/data/graphics/4037.png differ
diff --git a/desktop/assets/data/graphics/4038.png b/desktop/assets/data/graphics/4038.png
new file mode 100644
index 00000000..db735f6f
Binary files /dev/null and b/desktop/assets/data/graphics/4038.png differ
diff --git a/desktop/assets/data/graphics/4039.png b/desktop/assets/data/graphics/4039.png
new file mode 100644
index 00000000..34998ab6
Binary files /dev/null and b/desktop/assets/data/graphics/4039.png differ
diff --git a/desktop/assets/data/graphics/404.png b/desktop/assets/data/graphics/404.png
new file mode 100644
index 00000000..e3931202
Binary files /dev/null and b/desktop/assets/data/graphics/404.png differ
diff --git a/desktop/assets/data/graphics/4040.png b/desktop/assets/data/graphics/4040.png
new file mode 100644
index 00000000..47e99788
Binary files /dev/null and b/desktop/assets/data/graphics/4040.png differ
diff --git a/desktop/assets/data/graphics/4041.png b/desktop/assets/data/graphics/4041.png
new file mode 100644
index 00000000..cdb41771
Binary files /dev/null and b/desktop/assets/data/graphics/4041.png differ
diff --git a/desktop/assets/data/graphics/4042.png b/desktop/assets/data/graphics/4042.png
new file mode 100644
index 00000000..079be0aa
Binary files /dev/null and b/desktop/assets/data/graphics/4042.png differ
diff --git a/desktop/assets/data/graphics/4043.png b/desktop/assets/data/graphics/4043.png
new file mode 100644
index 00000000..d14c609a
Binary files /dev/null and b/desktop/assets/data/graphics/4043.png differ
diff --git a/desktop/assets/data/graphics/4044.png b/desktop/assets/data/graphics/4044.png
new file mode 100644
index 00000000..5a02f515
Binary files /dev/null and b/desktop/assets/data/graphics/4044.png differ
diff --git a/desktop/assets/data/graphics/4045.png b/desktop/assets/data/graphics/4045.png
new file mode 100644
index 00000000..98c7f242
Binary files /dev/null and b/desktop/assets/data/graphics/4045.png differ
diff --git a/desktop/assets/data/graphics/4046.png b/desktop/assets/data/graphics/4046.png
new file mode 100644
index 00000000..34a7c480
Binary files /dev/null and b/desktop/assets/data/graphics/4046.png differ
diff --git a/desktop/assets/data/graphics/4047.png b/desktop/assets/data/graphics/4047.png
new file mode 100644
index 00000000..02111785
Binary files /dev/null and b/desktop/assets/data/graphics/4047.png differ
diff --git a/desktop/assets/data/graphics/4048.png b/desktop/assets/data/graphics/4048.png
new file mode 100644
index 00000000..919a9879
Binary files /dev/null and b/desktop/assets/data/graphics/4048.png differ
diff --git a/desktop/assets/data/graphics/4049.png b/desktop/assets/data/graphics/4049.png
new file mode 100644
index 00000000..ef7b3125
Binary files /dev/null and b/desktop/assets/data/graphics/4049.png differ
diff --git a/desktop/assets/data/graphics/405.png b/desktop/assets/data/graphics/405.png
new file mode 100644
index 00000000..6d7e7c76
Binary files /dev/null and b/desktop/assets/data/graphics/405.png differ
diff --git a/desktop/assets/data/graphics/4050.png b/desktop/assets/data/graphics/4050.png
new file mode 100644
index 00000000..8466df23
Binary files /dev/null and b/desktop/assets/data/graphics/4050.png differ
diff --git a/desktop/assets/data/graphics/4051.png b/desktop/assets/data/graphics/4051.png
new file mode 100644
index 00000000..24e8b862
Binary files /dev/null and b/desktop/assets/data/graphics/4051.png differ
diff --git a/desktop/assets/data/graphics/4052.png b/desktop/assets/data/graphics/4052.png
new file mode 100644
index 00000000..d5071c15
Binary files /dev/null and b/desktop/assets/data/graphics/4052.png differ
diff --git a/desktop/assets/data/graphics/4053.png b/desktop/assets/data/graphics/4053.png
new file mode 100644
index 00000000..e7507f3e
Binary files /dev/null and b/desktop/assets/data/graphics/4053.png differ
diff --git a/desktop/assets/data/graphics/4054.png b/desktop/assets/data/graphics/4054.png
new file mode 100644
index 00000000..517bf72d
Binary files /dev/null and b/desktop/assets/data/graphics/4054.png differ
diff --git a/desktop/assets/data/graphics/4055.png b/desktop/assets/data/graphics/4055.png
new file mode 100644
index 00000000..bc557f87
Binary files /dev/null and b/desktop/assets/data/graphics/4055.png differ
diff --git a/desktop/assets/data/graphics/4056.png b/desktop/assets/data/graphics/4056.png
new file mode 100644
index 00000000..2d3b446e
Binary files /dev/null and b/desktop/assets/data/graphics/4056.png differ
diff --git a/desktop/assets/data/graphics/4057.png b/desktop/assets/data/graphics/4057.png
new file mode 100644
index 00000000..65727411
Binary files /dev/null and b/desktop/assets/data/graphics/4057.png differ
diff --git a/desktop/assets/data/graphics/4058.png b/desktop/assets/data/graphics/4058.png
new file mode 100644
index 00000000..22902aca
Binary files /dev/null and b/desktop/assets/data/graphics/4058.png differ
diff --git a/desktop/assets/data/graphics/4059.png b/desktop/assets/data/graphics/4059.png
new file mode 100644
index 00000000..2bd0499d
Binary files /dev/null and b/desktop/assets/data/graphics/4059.png differ
diff --git a/desktop/assets/data/graphics/406.png b/desktop/assets/data/graphics/406.png
new file mode 100644
index 00000000..030f35cd
Binary files /dev/null and b/desktop/assets/data/graphics/406.png differ
diff --git a/desktop/assets/data/graphics/4060.png b/desktop/assets/data/graphics/4060.png
new file mode 100644
index 00000000..c9c3d392
Binary files /dev/null and b/desktop/assets/data/graphics/4060.png differ
diff --git a/desktop/assets/data/graphics/4061.png b/desktop/assets/data/graphics/4061.png
new file mode 100644
index 00000000..86aeed67
Binary files /dev/null and b/desktop/assets/data/graphics/4061.png differ
diff --git a/desktop/assets/data/graphics/4062.png b/desktop/assets/data/graphics/4062.png
new file mode 100644
index 00000000..8eb31b70
Binary files /dev/null and b/desktop/assets/data/graphics/4062.png differ
diff --git a/desktop/assets/data/graphics/4063.png b/desktop/assets/data/graphics/4063.png
new file mode 100644
index 00000000..e17f83c9
Binary files /dev/null and b/desktop/assets/data/graphics/4063.png differ
diff --git a/desktop/assets/data/graphics/4064.png b/desktop/assets/data/graphics/4064.png
new file mode 100644
index 00000000..31b0d1d9
Binary files /dev/null and b/desktop/assets/data/graphics/4064.png differ
diff --git a/desktop/assets/data/graphics/4065.png b/desktop/assets/data/graphics/4065.png
new file mode 100644
index 00000000..22ff36e0
Binary files /dev/null and b/desktop/assets/data/graphics/4065.png differ
diff --git a/desktop/assets/data/graphics/4066.png b/desktop/assets/data/graphics/4066.png
new file mode 100644
index 00000000..880054eb
Binary files /dev/null and b/desktop/assets/data/graphics/4066.png differ
diff --git a/desktop/assets/data/graphics/4067.png b/desktop/assets/data/graphics/4067.png
new file mode 100644
index 00000000..ba616682
Binary files /dev/null and b/desktop/assets/data/graphics/4067.png differ
diff --git a/desktop/assets/data/graphics/4068.png b/desktop/assets/data/graphics/4068.png
new file mode 100644
index 00000000..cbdd73ee
Binary files /dev/null and b/desktop/assets/data/graphics/4068.png differ
diff --git a/desktop/assets/data/graphics/4069.png b/desktop/assets/data/graphics/4069.png
new file mode 100644
index 00000000..ae438714
Binary files /dev/null and b/desktop/assets/data/graphics/4069.png differ
diff --git a/desktop/assets/data/graphics/407.png b/desktop/assets/data/graphics/407.png
new file mode 100644
index 00000000..5bd98755
Binary files /dev/null and b/desktop/assets/data/graphics/407.png differ
diff --git a/desktop/assets/data/graphics/4070.png b/desktop/assets/data/graphics/4070.png
new file mode 100644
index 00000000..d73b48f5
Binary files /dev/null and b/desktop/assets/data/graphics/4070.png differ
diff --git a/desktop/assets/data/graphics/4071.png b/desktop/assets/data/graphics/4071.png
new file mode 100644
index 00000000..3203159e
Binary files /dev/null and b/desktop/assets/data/graphics/4071.png differ
diff --git a/desktop/assets/data/graphics/4072.png b/desktop/assets/data/graphics/4072.png
new file mode 100644
index 00000000..b3ac0fcc
Binary files /dev/null and b/desktop/assets/data/graphics/4072.png differ
diff --git a/desktop/assets/data/graphics/4073.png b/desktop/assets/data/graphics/4073.png
new file mode 100644
index 00000000..38908d29
Binary files /dev/null and b/desktop/assets/data/graphics/4073.png differ
diff --git a/desktop/assets/data/graphics/4074.png b/desktop/assets/data/graphics/4074.png
new file mode 100644
index 00000000..f0602ace
Binary files /dev/null and b/desktop/assets/data/graphics/4074.png differ
diff --git a/desktop/assets/data/graphics/4075.png b/desktop/assets/data/graphics/4075.png
new file mode 100644
index 00000000..b6d1a73a
Binary files /dev/null and b/desktop/assets/data/graphics/4075.png differ
diff --git a/desktop/assets/data/graphics/4076.png b/desktop/assets/data/graphics/4076.png
new file mode 100644
index 00000000..f0265b10
Binary files /dev/null and b/desktop/assets/data/graphics/4076.png differ
diff --git a/desktop/assets/data/graphics/4077.png b/desktop/assets/data/graphics/4077.png
new file mode 100644
index 00000000..2dba89fe
Binary files /dev/null and b/desktop/assets/data/graphics/4077.png differ
diff --git a/desktop/assets/data/graphics/4078.png b/desktop/assets/data/graphics/4078.png
new file mode 100644
index 00000000..e9f8f6f5
Binary files /dev/null and b/desktop/assets/data/graphics/4078.png differ
diff --git a/desktop/assets/data/graphics/4079.png b/desktop/assets/data/graphics/4079.png
new file mode 100644
index 00000000..1fe5e262
Binary files /dev/null and b/desktop/assets/data/graphics/4079.png differ
diff --git a/desktop/assets/data/graphics/408.png b/desktop/assets/data/graphics/408.png
new file mode 100644
index 00000000..92093b96
Binary files /dev/null and b/desktop/assets/data/graphics/408.png differ
diff --git a/desktop/assets/data/graphics/4080.png b/desktop/assets/data/graphics/4080.png
new file mode 100644
index 00000000..0600f97a
Binary files /dev/null and b/desktop/assets/data/graphics/4080.png differ
diff --git a/desktop/assets/data/graphics/4081.png b/desktop/assets/data/graphics/4081.png
new file mode 100644
index 00000000..7d2147c9
Binary files /dev/null and b/desktop/assets/data/graphics/4081.png differ
diff --git a/desktop/assets/data/graphics/4082.png b/desktop/assets/data/graphics/4082.png
new file mode 100644
index 00000000..006438fd
Binary files /dev/null and b/desktop/assets/data/graphics/4082.png differ
diff --git a/desktop/assets/data/graphics/4083.png b/desktop/assets/data/graphics/4083.png
new file mode 100644
index 00000000..bb4d970e
Binary files /dev/null and b/desktop/assets/data/graphics/4083.png differ
diff --git a/desktop/assets/data/graphics/4084.png b/desktop/assets/data/graphics/4084.png
new file mode 100644
index 00000000..7de8f018
Binary files /dev/null and b/desktop/assets/data/graphics/4084.png differ
diff --git a/desktop/assets/data/graphics/4085.png b/desktop/assets/data/graphics/4085.png
new file mode 100644
index 00000000..c404bd61
Binary files /dev/null and b/desktop/assets/data/graphics/4085.png differ
diff --git a/desktop/assets/data/graphics/4086.png b/desktop/assets/data/graphics/4086.png
new file mode 100644
index 00000000..04d77e58
Binary files /dev/null and b/desktop/assets/data/graphics/4086.png differ
diff --git a/desktop/assets/data/graphics/4087.png b/desktop/assets/data/graphics/4087.png
new file mode 100644
index 00000000..81f8d146
Binary files /dev/null and b/desktop/assets/data/graphics/4087.png differ
diff --git a/desktop/assets/data/graphics/4088.png b/desktop/assets/data/graphics/4088.png
new file mode 100644
index 00000000..6aa1c083
Binary files /dev/null and b/desktop/assets/data/graphics/4088.png differ
diff --git a/desktop/assets/data/graphics/4089.png b/desktop/assets/data/graphics/4089.png
new file mode 100644
index 00000000..da330093
Binary files /dev/null and b/desktop/assets/data/graphics/4089.png differ
diff --git a/desktop/assets/data/graphics/409.png b/desktop/assets/data/graphics/409.png
new file mode 100644
index 00000000..38d37a6c
Binary files /dev/null and b/desktop/assets/data/graphics/409.png differ
diff --git a/desktop/assets/data/graphics/4090.png b/desktop/assets/data/graphics/4090.png
new file mode 100644
index 00000000..37cef34f
Binary files /dev/null and b/desktop/assets/data/graphics/4090.png differ
diff --git a/desktop/assets/data/graphics/4091.png b/desktop/assets/data/graphics/4091.png
new file mode 100644
index 00000000..46240eb1
Binary files /dev/null and b/desktop/assets/data/graphics/4091.png differ
diff --git a/desktop/assets/data/graphics/4092.png b/desktop/assets/data/graphics/4092.png
new file mode 100644
index 00000000..a3977519
Binary files /dev/null and b/desktop/assets/data/graphics/4092.png differ
diff --git a/desktop/assets/data/graphics/4093.png b/desktop/assets/data/graphics/4093.png
new file mode 100644
index 00000000..787dd4eb
Binary files /dev/null and b/desktop/assets/data/graphics/4093.png differ
diff --git a/desktop/assets/data/graphics/4094.png b/desktop/assets/data/graphics/4094.png
new file mode 100644
index 00000000..7e3768ca
Binary files /dev/null and b/desktop/assets/data/graphics/4094.png differ
diff --git a/desktop/assets/data/graphics/4095.png b/desktop/assets/data/graphics/4095.png
new file mode 100644
index 00000000..cf11c8b9
Binary files /dev/null and b/desktop/assets/data/graphics/4095.png differ
diff --git a/desktop/assets/data/graphics/4096.png b/desktop/assets/data/graphics/4096.png
new file mode 100644
index 00000000..2d94a19e
Binary files /dev/null and b/desktop/assets/data/graphics/4096.png differ
diff --git a/desktop/assets/data/graphics/4097.png b/desktop/assets/data/graphics/4097.png
new file mode 100644
index 00000000..15b222d9
Binary files /dev/null and b/desktop/assets/data/graphics/4097.png differ
diff --git a/desktop/assets/data/graphics/4098.png b/desktop/assets/data/graphics/4098.png
new file mode 100644
index 00000000..538cd104
Binary files /dev/null and b/desktop/assets/data/graphics/4098.png differ
diff --git a/desktop/assets/data/graphics/4099.png b/desktop/assets/data/graphics/4099.png
new file mode 100644
index 00000000..f92990de
Binary files /dev/null and b/desktop/assets/data/graphics/4099.png differ
diff --git a/desktop/assets/data/graphics/41.png b/desktop/assets/data/graphics/41.png
new file mode 100644
index 00000000..4802e38a
Binary files /dev/null and b/desktop/assets/data/graphics/41.png differ
diff --git a/desktop/assets/data/graphics/410.png b/desktop/assets/data/graphics/410.png
new file mode 100644
index 00000000..82c72e3d
Binary files /dev/null and b/desktop/assets/data/graphics/410.png differ
diff --git a/desktop/assets/data/graphics/4100.png b/desktop/assets/data/graphics/4100.png
new file mode 100644
index 00000000..5f84969a
Binary files /dev/null and b/desktop/assets/data/graphics/4100.png differ
diff --git a/desktop/assets/data/graphics/4101.png b/desktop/assets/data/graphics/4101.png
new file mode 100644
index 00000000..42282011
Binary files /dev/null and b/desktop/assets/data/graphics/4101.png differ
diff --git a/desktop/assets/data/graphics/4102.png b/desktop/assets/data/graphics/4102.png
new file mode 100644
index 00000000..d5d7b39f
Binary files /dev/null and b/desktop/assets/data/graphics/4102.png differ
diff --git a/desktop/assets/data/graphics/4103.png b/desktop/assets/data/graphics/4103.png
new file mode 100644
index 00000000..a7d0c4c6
Binary files /dev/null and b/desktop/assets/data/graphics/4103.png differ
diff --git a/desktop/assets/data/graphics/4104.png b/desktop/assets/data/graphics/4104.png
new file mode 100644
index 00000000..02357989
Binary files /dev/null and b/desktop/assets/data/graphics/4104.png differ
diff --git a/desktop/assets/data/graphics/4105.png b/desktop/assets/data/graphics/4105.png
new file mode 100644
index 00000000..38e358e8
Binary files /dev/null and b/desktop/assets/data/graphics/4105.png differ
diff --git a/desktop/assets/data/graphics/4106.png b/desktop/assets/data/graphics/4106.png
new file mode 100644
index 00000000..cff37ce6
Binary files /dev/null and b/desktop/assets/data/graphics/4106.png differ
diff --git a/desktop/assets/data/graphics/4107.png b/desktop/assets/data/graphics/4107.png
new file mode 100644
index 00000000..b13a92f8
Binary files /dev/null and b/desktop/assets/data/graphics/4107.png differ
diff --git a/desktop/assets/data/graphics/4108.png b/desktop/assets/data/graphics/4108.png
new file mode 100644
index 00000000..3f2f60a2
Binary files /dev/null and b/desktop/assets/data/graphics/4108.png differ
diff --git a/desktop/assets/data/graphics/4109.png b/desktop/assets/data/graphics/4109.png
new file mode 100644
index 00000000..bf0c5c95
Binary files /dev/null and b/desktop/assets/data/graphics/4109.png differ
diff --git a/desktop/assets/data/graphics/411.png b/desktop/assets/data/graphics/411.png
new file mode 100644
index 00000000..c101bd87
Binary files /dev/null and b/desktop/assets/data/graphics/411.png differ
diff --git a/desktop/assets/data/graphics/4110.png b/desktop/assets/data/graphics/4110.png
new file mode 100644
index 00000000..a7d4470a
Binary files /dev/null and b/desktop/assets/data/graphics/4110.png differ
diff --git a/desktop/assets/data/graphics/4111.png b/desktop/assets/data/graphics/4111.png
new file mode 100644
index 00000000..98d0c7c3
Binary files /dev/null and b/desktop/assets/data/graphics/4111.png differ
diff --git a/desktop/assets/data/graphics/4112.png b/desktop/assets/data/graphics/4112.png
new file mode 100644
index 00000000..d2271e25
Binary files /dev/null and b/desktop/assets/data/graphics/4112.png differ
diff --git a/desktop/assets/data/graphics/4113.png b/desktop/assets/data/graphics/4113.png
new file mode 100644
index 00000000..4fb2f040
Binary files /dev/null and b/desktop/assets/data/graphics/4113.png differ
diff --git a/desktop/assets/data/graphics/4114.png b/desktop/assets/data/graphics/4114.png
new file mode 100644
index 00000000..50125031
Binary files /dev/null and b/desktop/assets/data/graphics/4114.png differ
diff --git a/desktop/assets/data/graphics/4115.png b/desktop/assets/data/graphics/4115.png
new file mode 100644
index 00000000..12bd8710
Binary files /dev/null and b/desktop/assets/data/graphics/4115.png differ
diff --git a/desktop/assets/data/graphics/4116.png b/desktop/assets/data/graphics/4116.png
new file mode 100644
index 00000000..a727940e
Binary files /dev/null and b/desktop/assets/data/graphics/4116.png differ
diff --git a/desktop/assets/data/graphics/4117.png b/desktop/assets/data/graphics/4117.png
new file mode 100644
index 00000000..e2b4521a
Binary files /dev/null and b/desktop/assets/data/graphics/4117.png differ
diff --git a/desktop/assets/data/graphics/4118.png b/desktop/assets/data/graphics/4118.png
new file mode 100644
index 00000000..d15af717
Binary files /dev/null and b/desktop/assets/data/graphics/4118.png differ
diff --git a/desktop/assets/data/graphics/4119.png b/desktop/assets/data/graphics/4119.png
new file mode 100644
index 00000000..ca944bb8
Binary files /dev/null and b/desktop/assets/data/graphics/4119.png differ
diff --git a/desktop/assets/data/graphics/412.png b/desktop/assets/data/graphics/412.png
new file mode 100644
index 00000000..02fc5d87
Binary files /dev/null and b/desktop/assets/data/graphics/412.png differ
diff --git a/desktop/assets/data/graphics/4120.png b/desktop/assets/data/graphics/4120.png
new file mode 100644
index 00000000..7d312ebc
Binary files /dev/null and b/desktop/assets/data/graphics/4120.png differ
diff --git a/desktop/assets/data/graphics/4121.png b/desktop/assets/data/graphics/4121.png
new file mode 100644
index 00000000..08f9769b
Binary files /dev/null and b/desktop/assets/data/graphics/4121.png differ
diff --git a/desktop/assets/data/graphics/4122.png b/desktop/assets/data/graphics/4122.png
new file mode 100644
index 00000000..cb4d50df
Binary files /dev/null and b/desktop/assets/data/graphics/4122.png differ
diff --git a/desktop/assets/data/graphics/4123.png b/desktop/assets/data/graphics/4123.png
new file mode 100644
index 00000000..1af6ed60
Binary files /dev/null and b/desktop/assets/data/graphics/4123.png differ
diff --git a/desktop/assets/data/graphics/4124.png b/desktop/assets/data/graphics/4124.png
new file mode 100644
index 00000000..fde98fe7
Binary files /dev/null and b/desktop/assets/data/graphics/4124.png differ
diff --git a/desktop/assets/data/graphics/4125.png b/desktop/assets/data/graphics/4125.png
new file mode 100644
index 00000000..9d874059
Binary files /dev/null and b/desktop/assets/data/graphics/4125.png differ
diff --git a/desktop/assets/data/graphics/4126.png b/desktop/assets/data/graphics/4126.png
new file mode 100644
index 00000000..6dacd43f
Binary files /dev/null and b/desktop/assets/data/graphics/4126.png differ
diff --git a/desktop/assets/data/graphics/4127.png b/desktop/assets/data/graphics/4127.png
new file mode 100644
index 00000000..9a3299fc
Binary files /dev/null and b/desktop/assets/data/graphics/4127.png differ
diff --git a/desktop/assets/data/graphics/4128.png b/desktop/assets/data/graphics/4128.png
new file mode 100644
index 00000000..f329daac
Binary files /dev/null and b/desktop/assets/data/graphics/4128.png differ
diff --git a/desktop/assets/data/graphics/4129.png b/desktop/assets/data/graphics/4129.png
new file mode 100644
index 00000000..6599c017
Binary files /dev/null and b/desktop/assets/data/graphics/4129.png differ
diff --git a/desktop/assets/data/graphics/413.png b/desktop/assets/data/graphics/413.png
new file mode 100644
index 00000000..1d031073
Binary files /dev/null and b/desktop/assets/data/graphics/413.png differ
diff --git a/desktop/assets/data/graphics/4130.png b/desktop/assets/data/graphics/4130.png
new file mode 100644
index 00000000..1046a282
Binary files /dev/null and b/desktop/assets/data/graphics/4130.png differ
diff --git a/desktop/assets/data/graphics/4131.png b/desktop/assets/data/graphics/4131.png
new file mode 100644
index 00000000..d48ae35d
Binary files /dev/null and b/desktop/assets/data/graphics/4131.png differ
diff --git a/desktop/assets/data/graphics/4132.png b/desktop/assets/data/graphics/4132.png
new file mode 100644
index 00000000..d83e1409
Binary files /dev/null and b/desktop/assets/data/graphics/4132.png differ
diff --git a/desktop/assets/data/graphics/4133.png b/desktop/assets/data/graphics/4133.png
new file mode 100644
index 00000000..33f97281
Binary files /dev/null and b/desktop/assets/data/graphics/4133.png differ
diff --git a/desktop/assets/data/graphics/4134.png b/desktop/assets/data/graphics/4134.png
new file mode 100644
index 00000000..80f9fac0
Binary files /dev/null and b/desktop/assets/data/graphics/4134.png differ
diff --git a/desktop/assets/data/graphics/4135.png b/desktop/assets/data/graphics/4135.png
new file mode 100644
index 00000000..3bd10b16
Binary files /dev/null and b/desktop/assets/data/graphics/4135.png differ
diff --git a/desktop/assets/data/graphics/4136.png b/desktop/assets/data/graphics/4136.png
new file mode 100644
index 00000000..a0bd484a
Binary files /dev/null and b/desktop/assets/data/graphics/4136.png differ
diff --git a/desktop/assets/data/graphics/4137.png b/desktop/assets/data/graphics/4137.png
new file mode 100644
index 00000000..dcbb641d
Binary files /dev/null and b/desktop/assets/data/graphics/4137.png differ
diff --git a/desktop/assets/data/graphics/4138.png b/desktop/assets/data/graphics/4138.png
new file mode 100644
index 00000000..69e69c9e
Binary files /dev/null and b/desktop/assets/data/graphics/4138.png differ
diff --git a/desktop/assets/data/graphics/4139.png b/desktop/assets/data/graphics/4139.png
new file mode 100644
index 00000000..6bf2a378
Binary files /dev/null and b/desktop/assets/data/graphics/4139.png differ
diff --git a/desktop/assets/data/graphics/414.png b/desktop/assets/data/graphics/414.png
new file mode 100644
index 00000000..8b38b374
Binary files /dev/null and b/desktop/assets/data/graphics/414.png differ
diff --git a/desktop/assets/data/graphics/4140.png b/desktop/assets/data/graphics/4140.png
new file mode 100644
index 00000000..98ab7e1c
Binary files /dev/null and b/desktop/assets/data/graphics/4140.png differ
diff --git a/desktop/assets/data/graphics/4141.png b/desktop/assets/data/graphics/4141.png
new file mode 100644
index 00000000..ba8517be
Binary files /dev/null and b/desktop/assets/data/graphics/4141.png differ
diff --git a/desktop/assets/data/graphics/4142.png b/desktop/assets/data/graphics/4142.png
new file mode 100644
index 00000000..da6136fd
Binary files /dev/null and b/desktop/assets/data/graphics/4142.png differ
diff --git a/desktop/assets/data/graphics/4143.png b/desktop/assets/data/graphics/4143.png
new file mode 100644
index 00000000..7ba2e8e4
Binary files /dev/null and b/desktop/assets/data/graphics/4143.png differ
diff --git a/desktop/assets/data/graphics/4144.png b/desktop/assets/data/graphics/4144.png
new file mode 100644
index 00000000..bb1ea30e
Binary files /dev/null and b/desktop/assets/data/graphics/4144.png differ
diff --git a/desktop/assets/data/graphics/4145.png b/desktop/assets/data/graphics/4145.png
new file mode 100644
index 00000000..6dbcbe3b
Binary files /dev/null and b/desktop/assets/data/graphics/4145.png differ
diff --git a/desktop/assets/data/graphics/4146.png b/desktop/assets/data/graphics/4146.png
new file mode 100644
index 00000000..b3a758fa
Binary files /dev/null and b/desktop/assets/data/graphics/4146.png differ
diff --git a/desktop/assets/data/graphics/4147.png b/desktop/assets/data/graphics/4147.png
new file mode 100644
index 00000000..1fd3839c
Binary files /dev/null and b/desktop/assets/data/graphics/4147.png differ
diff --git a/desktop/assets/data/graphics/4148.png b/desktop/assets/data/graphics/4148.png
new file mode 100644
index 00000000..de4e8046
Binary files /dev/null and b/desktop/assets/data/graphics/4148.png differ
diff --git a/desktop/assets/data/graphics/4149.png b/desktop/assets/data/graphics/4149.png
new file mode 100644
index 00000000..3ff45c0c
Binary files /dev/null and b/desktop/assets/data/graphics/4149.png differ
diff --git a/desktop/assets/data/graphics/4150.png b/desktop/assets/data/graphics/4150.png
new file mode 100644
index 00000000..3c34643b
Binary files /dev/null and b/desktop/assets/data/graphics/4150.png differ
diff --git a/desktop/assets/data/graphics/4151.png b/desktop/assets/data/graphics/4151.png
new file mode 100644
index 00000000..2f2ff202
Binary files /dev/null and b/desktop/assets/data/graphics/4151.png differ
diff --git a/desktop/assets/data/graphics/4152.png b/desktop/assets/data/graphics/4152.png
new file mode 100644
index 00000000..27eccf53
Binary files /dev/null and b/desktop/assets/data/graphics/4152.png differ
diff --git a/desktop/assets/data/graphics/4153.png b/desktop/assets/data/graphics/4153.png
new file mode 100644
index 00000000..f9307771
Binary files /dev/null and b/desktop/assets/data/graphics/4153.png differ
diff --git a/desktop/assets/data/graphics/4154.png b/desktop/assets/data/graphics/4154.png
new file mode 100644
index 00000000..34413591
Binary files /dev/null and b/desktop/assets/data/graphics/4154.png differ
diff --git a/desktop/assets/data/graphics/4155.png b/desktop/assets/data/graphics/4155.png
new file mode 100644
index 00000000..e4839d06
Binary files /dev/null and b/desktop/assets/data/graphics/4155.png differ
diff --git a/desktop/assets/data/graphics/4156.png b/desktop/assets/data/graphics/4156.png
new file mode 100644
index 00000000..955cb468
Binary files /dev/null and b/desktop/assets/data/graphics/4156.png differ
diff --git a/desktop/assets/data/graphics/4157.png b/desktop/assets/data/graphics/4157.png
new file mode 100644
index 00000000..2f17b62d
Binary files /dev/null and b/desktop/assets/data/graphics/4157.png differ
diff --git a/desktop/assets/data/graphics/4158.png b/desktop/assets/data/graphics/4158.png
new file mode 100644
index 00000000..88ed21a1
Binary files /dev/null and b/desktop/assets/data/graphics/4158.png differ
diff --git a/desktop/assets/data/graphics/4159.png b/desktop/assets/data/graphics/4159.png
new file mode 100644
index 00000000..43b2a3b5
Binary files /dev/null and b/desktop/assets/data/graphics/4159.png differ
diff --git a/desktop/assets/data/graphics/4160.png b/desktop/assets/data/graphics/4160.png
new file mode 100644
index 00000000..3123a2e3
Binary files /dev/null and b/desktop/assets/data/graphics/4160.png differ
diff --git a/desktop/assets/data/graphics/4161.png b/desktop/assets/data/graphics/4161.png
new file mode 100644
index 00000000..8cbcc383
Binary files /dev/null and b/desktop/assets/data/graphics/4161.png differ
diff --git a/desktop/assets/data/graphics/4162.png b/desktop/assets/data/graphics/4162.png
new file mode 100644
index 00000000..99871d97
Binary files /dev/null and b/desktop/assets/data/graphics/4162.png differ
diff --git a/desktop/assets/data/graphics/4163.png b/desktop/assets/data/graphics/4163.png
new file mode 100644
index 00000000..8f050081
Binary files /dev/null and b/desktop/assets/data/graphics/4163.png differ
diff --git a/desktop/assets/data/graphics/4164.png b/desktop/assets/data/graphics/4164.png
new file mode 100644
index 00000000..70cc8d4d
Binary files /dev/null and b/desktop/assets/data/graphics/4164.png differ
diff --git a/desktop/assets/data/graphics/4165.png b/desktop/assets/data/graphics/4165.png
new file mode 100644
index 00000000..3c56b769
Binary files /dev/null and b/desktop/assets/data/graphics/4165.png differ
diff --git a/desktop/assets/data/graphics/4166.png b/desktop/assets/data/graphics/4166.png
new file mode 100644
index 00000000..7e6636e3
Binary files /dev/null and b/desktop/assets/data/graphics/4166.png differ
diff --git a/desktop/assets/data/graphics/4167.png b/desktop/assets/data/graphics/4167.png
new file mode 100644
index 00000000..786a0a8b
Binary files /dev/null and b/desktop/assets/data/graphics/4167.png differ
diff --git a/desktop/assets/data/graphics/4168.png b/desktop/assets/data/graphics/4168.png
new file mode 100644
index 00000000..d445b976
Binary files /dev/null and b/desktop/assets/data/graphics/4168.png differ
diff --git a/desktop/assets/data/graphics/4169.png b/desktop/assets/data/graphics/4169.png
new file mode 100644
index 00000000..445ebc2b
Binary files /dev/null and b/desktop/assets/data/graphics/4169.png differ
diff --git a/desktop/assets/data/graphics/417.png b/desktop/assets/data/graphics/417.png
new file mode 100644
index 00000000..b47ba6ae
Binary files /dev/null and b/desktop/assets/data/graphics/417.png differ
diff --git a/desktop/assets/data/graphics/4170.png b/desktop/assets/data/graphics/4170.png
new file mode 100644
index 00000000..7127fcbd
Binary files /dev/null and b/desktop/assets/data/graphics/4170.png differ
diff --git a/desktop/assets/data/graphics/418.png b/desktop/assets/data/graphics/418.png
new file mode 100644
index 00000000..5781c1d4
Binary files /dev/null and b/desktop/assets/data/graphics/418.png differ
diff --git a/desktop/assets/data/graphics/419.png b/desktop/assets/data/graphics/419.png
new file mode 100644
index 00000000..8f0adfca
Binary files /dev/null and b/desktop/assets/data/graphics/419.png differ
diff --git a/desktop/assets/data/graphics/42.png b/desktop/assets/data/graphics/42.png
new file mode 100644
index 00000000..5c2800c3
Binary files /dev/null and b/desktop/assets/data/graphics/42.png differ
diff --git a/desktop/assets/data/graphics/422.png b/desktop/assets/data/graphics/422.png
new file mode 100644
index 00000000..6af4cba6
Binary files /dev/null and b/desktop/assets/data/graphics/422.png differ
diff --git a/desktop/assets/data/graphics/423.png b/desktop/assets/data/graphics/423.png
new file mode 100644
index 00000000..e5d8c47e
Binary files /dev/null and b/desktop/assets/data/graphics/423.png differ
diff --git a/desktop/assets/data/graphics/424.png b/desktop/assets/data/graphics/424.png
new file mode 100644
index 00000000..409bf811
Binary files /dev/null and b/desktop/assets/data/graphics/424.png differ
diff --git a/desktop/assets/data/graphics/425.png b/desktop/assets/data/graphics/425.png
new file mode 100644
index 00000000..d97b7530
Binary files /dev/null and b/desktop/assets/data/graphics/425.png differ
diff --git a/desktop/assets/data/graphics/426.png b/desktop/assets/data/graphics/426.png
new file mode 100644
index 00000000..2b650ba2
Binary files /dev/null and b/desktop/assets/data/graphics/426.png differ
diff --git a/desktop/assets/data/graphics/427.png b/desktop/assets/data/graphics/427.png
new file mode 100644
index 00000000..c46d29b6
Binary files /dev/null and b/desktop/assets/data/graphics/427.png differ
diff --git a/desktop/assets/data/graphics/428.png b/desktop/assets/data/graphics/428.png
new file mode 100644
index 00000000..0d9d2a02
Binary files /dev/null and b/desktop/assets/data/graphics/428.png differ
diff --git a/desktop/assets/data/graphics/429.png b/desktop/assets/data/graphics/429.png
new file mode 100644
index 00000000..33514c30
Binary files /dev/null and b/desktop/assets/data/graphics/429.png differ
diff --git a/desktop/assets/data/graphics/43.png b/desktop/assets/data/graphics/43.png
new file mode 100644
index 00000000..5c400fed
Binary files /dev/null and b/desktop/assets/data/graphics/43.png differ
diff --git a/desktop/assets/data/graphics/430.png b/desktop/assets/data/graphics/430.png
new file mode 100644
index 00000000..53905948
Binary files /dev/null and b/desktop/assets/data/graphics/430.png differ
diff --git a/desktop/assets/data/graphics/431.png b/desktop/assets/data/graphics/431.png
new file mode 100644
index 00000000..10bb88e5
Binary files /dev/null and b/desktop/assets/data/graphics/431.png differ
diff --git a/desktop/assets/data/graphics/432.png b/desktop/assets/data/graphics/432.png
new file mode 100644
index 00000000..6b816d24
Binary files /dev/null and b/desktop/assets/data/graphics/432.png differ
diff --git a/desktop/assets/data/graphics/433.png b/desktop/assets/data/graphics/433.png
new file mode 100644
index 00000000..b9400f3c
Binary files /dev/null and b/desktop/assets/data/graphics/433.png differ
diff --git a/desktop/assets/data/graphics/434.png b/desktop/assets/data/graphics/434.png
new file mode 100644
index 00000000..1468e204
Binary files /dev/null and b/desktop/assets/data/graphics/434.png differ
diff --git a/desktop/assets/data/graphics/435.png b/desktop/assets/data/graphics/435.png
new file mode 100644
index 00000000..0539f449
Binary files /dev/null and b/desktop/assets/data/graphics/435.png differ
diff --git a/desktop/assets/data/graphics/436.png b/desktop/assets/data/graphics/436.png
new file mode 100644
index 00000000..43594b43
Binary files /dev/null and b/desktop/assets/data/graphics/436.png differ
diff --git a/desktop/assets/data/graphics/437.png b/desktop/assets/data/graphics/437.png
new file mode 100644
index 00000000..04a4f583
Binary files /dev/null and b/desktop/assets/data/graphics/437.png differ
diff --git a/desktop/assets/data/graphics/438.png b/desktop/assets/data/graphics/438.png
new file mode 100644
index 00000000..558a9b96
Binary files /dev/null and b/desktop/assets/data/graphics/438.png differ
diff --git a/desktop/assets/data/graphics/439.png b/desktop/assets/data/graphics/439.png
new file mode 100644
index 00000000..b2fbb1a9
Binary files /dev/null and b/desktop/assets/data/graphics/439.png differ
diff --git a/desktop/assets/data/graphics/44.png b/desktop/assets/data/graphics/44.png
new file mode 100644
index 00000000..88c21453
Binary files /dev/null and b/desktop/assets/data/graphics/44.png differ
diff --git a/desktop/assets/data/graphics/440.png b/desktop/assets/data/graphics/440.png
new file mode 100644
index 00000000..118df197
Binary files /dev/null and b/desktop/assets/data/graphics/440.png differ
diff --git a/desktop/assets/data/graphics/441.png b/desktop/assets/data/graphics/441.png
new file mode 100644
index 00000000..0e3c162d
Binary files /dev/null and b/desktop/assets/data/graphics/441.png differ
diff --git a/desktop/assets/data/graphics/442.png b/desktop/assets/data/graphics/442.png
new file mode 100644
index 00000000..bc818c64
Binary files /dev/null and b/desktop/assets/data/graphics/442.png differ
diff --git a/desktop/assets/data/graphics/443.png b/desktop/assets/data/graphics/443.png
new file mode 100644
index 00000000..3550c6ef
Binary files /dev/null and b/desktop/assets/data/graphics/443.png differ
diff --git a/desktop/assets/data/graphics/444.png b/desktop/assets/data/graphics/444.png
new file mode 100644
index 00000000..db3718d9
Binary files /dev/null and b/desktop/assets/data/graphics/444.png differ
diff --git a/desktop/assets/data/graphics/445.png b/desktop/assets/data/graphics/445.png
new file mode 100644
index 00000000..91f5768e
Binary files /dev/null and b/desktop/assets/data/graphics/445.png differ
diff --git a/desktop/assets/data/graphics/446.png b/desktop/assets/data/graphics/446.png
new file mode 100644
index 00000000..3dd81a95
Binary files /dev/null and b/desktop/assets/data/graphics/446.png differ
diff --git a/desktop/assets/data/graphics/447.png b/desktop/assets/data/graphics/447.png
new file mode 100644
index 00000000..1e2fd95b
Binary files /dev/null and b/desktop/assets/data/graphics/447.png differ
diff --git a/desktop/assets/data/graphics/448.png b/desktop/assets/data/graphics/448.png
new file mode 100644
index 00000000..f177171a
Binary files /dev/null and b/desktop/assets/data/graphics/448.png differ
diff --git a/desktop/assets/data/graphics/449.png b/desktop/assets/data/graphics/449.png
new file mode 100644
index 00000000..96e78d17
Binary files /dev/null and b/desktop/assets/data/graphics/449.png differ
diff --git a/desktop/assets/data/graphics/45.png b/desktop/assets/data/graphics/45.png
new file mode 100644
index 00000000..5ebe3546
Binary files /dev/null and b/desktop/assets/data/graphics/45.png differ
diff --git a/desktop/assets/data/graphics/450.png b/desktop/assets/data/graphics/450.png
new file mode 100644
index 00000000..ab3cab12
Binary files /dev/null and b/desktop/assets/data/graphics/450.png differ
diff --git a/desktop/assets/data/graphics/451.png b/desktop/assets/data/graphics/451.png
new file mode 100644
index 00000000..0b28efb7
Binary files /dev/null and b/desktop/assets/data/graphics/451.png differ
diff --git a/desktop/assets/data/graphics/452.png b/desktop/assets/data/graphics/452.png
new file mode 100644
index 00000000..2f0b49bc
Binary files /dev/null and b/desktop/assets/data/graphics/452.png differ
diff --git a/desktop/assets/data/graphics/453.png b/desktop/assets/data/graphics/453.png
new file mode 100644
index 00000000..dc3f2a2e
Binary files /dev/null and b/desktop/assets/data/graphics/453.png differ
diff --git a/desktop/assets/data/graphics/454.png b/desktop/assets/data/graphics/454.png
new file mode 100644
index 00000000..f5da3f8c
Binary files /dev/null and b/desktop/assets/data/graphics/454.png differ
diff --git a/desktop/assets/data/graphics/455.png b/desktop/assets/data/graphics/455.png
new file mode 100644
index 00000000..c9ce94e2
Binary files /dev/null and b/desktop/assets/data/graphics/455.png differ
diff --git a/desktop/assets/data/graphics/456.png b/desktop/assets/data/graphics/456.png
new file mode 100644
index 00000000..f2da04b1
Binary files /dev/null and b/desktop/assets/data/graphics/456.png differ
diff --git a/desktop/assets/data/graphics/457.png b/desktop/assets/data/graphics/457.png
new file mode 100644
index 00000000..674f45ef
Binary files /dev/null and b/desktop/assets/data/graphics/457.png differ
diff --git a/desktop/assets/data/graphics/458.png b/desktop/assets/data/graphics/458.png
new file mode 100644
index 00000000..c3aca0e5
Binary files /dev/null and b/desktop/assets/data/graphics/458.png differ
diff --git a/desktop/assets/data/graphics/459.png b/desktop/assets/data/graphics/459.png
new file mode 100644
index 00000000..c26ab0c2
Binary files /dev/null and b/desktop/assets/data/graphics/459.png differ
diff --git a/desktop/assets/data/graphics/46.png b/desktop/assets/data/graphics/46.png
new file mode 100644
index 00000000..30dcb759
Binary files /dev/null and b/desktop/assets/data/graphics/46.png differ
diff --git a/desktop/assets/data/graphics/460.png b/desktop/assets/data/graphics/460.png
new file mode 100644
index 00000000..949ce89e
Binary files /dev/null and b/desktop/assets/data/graphics/460.png differ
diff --git a/desktop/assets/data/graphics/461.png b/desktop/assets/data/graphics/461.png
new file mode 100644
index 00000000..bdd55c55
Binary files /dev/null and b/desktop/assets/data/graphics/461.png differ
diff --git a/desktop/assets/data/graphics/462.png b/desktop/assets/data/graphics/462.png
new file mode 100644
index 00000000..c23587c2
Binary files /dev/null and b/desktop/assets/data/graphics/462.png differ
diff --git a/desktop/assets/data/graphics/463.png b/desktop/assets/data/graphics/463.png
new file mode 100644
index 00000000..962ccb3f
Binary files /dev/null and b/desktop/assets/data/graphics/463.png differ
diff --git a/desktop/assets/data/graphics/464.png b/desktop/assets/data/graphics/464.png
new file mode 100644
index 00000000..e86a2d94
Binary files /dev/null and b/desktop/assets/data/graphics/464.png differ
diff --git a/desktop/assets/data/graphics/465.png b/desktop/assets/data/graphics/465.png
new file mode 100644
index 00000000..c3fe61cb
Binary files /dev/null and b/desktop/assets/data/graphics/465.png differ
diff --git a/desktop/assets/data/graphics/466.png b/desktop/assets/data/graphics/466.png
new file mode 100644
index 00000000..8d7f9c5b
Binary files /dev/null and b/desktop/assets/data/graphics/466.png differ
diff --git a/desktop/assets/data/graphics/467.png b/desktop/assets/data/graphics/467.png
new file mode 100644
index 00000000..be0221a3
Binary files /dev/null and b/desktop/assets/data/graphics/467.png differ
diff --git a/desktop/assets/data/graphics/468.png b/desktop/assets/data/graphics/468.png
new file mode 100644
index 00000000..3f3129e9
Binary files /dev/null and b/desktop/assets/data/graphics/468.png differ
diff --git a/desktop/assets/data/graphics/469.png b/desktop/assets/data/graphics/469.png
new file mode 100644
index 00000000..ee6f9a5b
Binary files /dev/null and b/desktop/assets/data/graphics/469.png differ
diff --git a/desktop/assets/data/graphics/47.png b/desktop/assets/data/graphics/47.png
new file mode 100644
index 00000000..4bbb161c
Binary files /dev/null and b/desktop/assets/data/graphics/47.png differ
diff --git a/desktop/assets/data/graphics/470.png b/desktop/assets/data/graphics/470.png
new file mode 100644
index 00000000..abbf3af4
Binary files /dev/null and b/desktop/assets/data/graphics/470.png differ
diff --git a/desktop/assets/data/graphics/471.png b/desktop/assets/data/graphics/471.png
new file mode 100644
index 00000000..a7496d89
Binary files /dev/null and b/desktop/assets/data/graphics/471.png differ
diff --git a/desktop/assets/data/graphics/472.png b/desktop/assets/data/graphics/472.png
new file mode 100644
index 00000000..39b800e4
Binary files /dev/null and b/desktop/assets/data/graphics/472.png differ
diff --git a/desktop/assets/data/graphics/473.png b/desktop/assets/data/graphics/473.png
new file mode 100644
index 00000000..38d09f9e
Binary files /dev/null and b/desktop/assets/data/graphics/473.png differ
diff --git a/desktop/assets/data/graphics/474.png b/desktop/assets/data/graphics/474.png
new file mode 100644
index 00000000..69e3b3cf
Binary files /dev/null and b/desktop/assets/data/graphics/474.png differ
diff --git a/desktop/assets/data/graphics/475.png b/desktop/assets/data/graphics/475.png
new file mode 100644
index 00000000..2321e951
Binary files /dev/null and b/desktop/assets/data/graphics/475.png differ
diff --git a/desktop/assets/data/graphics/476.png b/desktop/assets/data/graphics/476.png
new file mode 100644
index 00000000..f7168322
Binary files /dev/null and b/desktop/assets/data/graphics/476.png differ
diff --git a/desktop/assets/data/graphics/477.png b/desktop/assets/data/graphics/477.png
new file mode 100644
index 00000000..c891fe7f
Binary files /dev/null and b/desktop/assets/data/graphics/477.png differ
diff --git a/desktop/assets/data/graphics/478.png b/desktop/assets/data/graphics/478.png
new file mode 100644
index 00000000..f04e79b8
Binary files /dev/null and b/desktop/assets/data/graphics/478.png differ
diff --git a/desktop/assets/data/graphics/479.png b/desktop/assets/data/graphics/479.png
new file mode 100644
index 00000000..89413402
Binary files /dev/null and b/desktop/assets/data/graphics/479.png differ
diff --git a/desktop/assets/data/graphics/48.png b/desktop/assets/data/graphics/48.png
new file mode 100644
index 00000000..8e8b8919
Binary files /dev/null and b/desktop/assets/data/graphics/48.png differ
diff --git a/desktop/assets/data/graphics/480.png b/desktop/assets/data/graphics/480.png
new file mode 100644
index 00000000..739d2419
Binary files /dev/null and b/desktop/assets/data/graphics/480.png differ
diff --git a/desktop/assets/data/graphics/481.png b/desktop/assets/data/graphics/481.png
new file mode 100644
index 00000000..13d1c526
Binary files /dev/null and b/desktop/assets/data/graphics/481.png differ
diff --git a/desktop/assets/data/graphics/482.png b/desktop/assets/data/graphics/482.png
new file mode 100644
index 00000000..a5f4586f
Binary files /dev/null and b/desktop/assets/data/graphics/482.png differ
diff --git a/desktop/assets/data/graphics/483.png b/desktop/assets/data/graphics/483.png
new file mode 100644
index 00000000..e3a0eedf
Binary files /dev/null and b/desktop/assets/data/graphics/483.png differ
diff --git a/desktop/assets/data/graphics/484.png b/desktop/assets/data/graphics/484.png
new file mode 100644
index 00000000..e9b14c53
Binary files /dev/null and b/desktop/assets/data/graphics/484.png differ
diff --git a/desktop/assets/data/graphics/485.png b/desktop/assets/data/graphics/485.png
new file mode 100644
index 00000000..efa70b20
Binary files /dev/null and b/desktop/assets/data/graphics/485.png differ
diff --git a/desktop/assets/data/graphics/486.png b/desktop/assets/data/graphics/486.png
new file mode 100644
index 00000000..922cf082
Binary files /dev/null and b/desktop/assets/data/graphics/486.png differ
diff --git a/desktop/assets/data/graphics/487.png b/desktop/assets/data/graphics/487.png
new file mode 100644
index 00000000..774032a9
Binary files /dev/null and b/desktop/assets/data/graphics/487.png differ
diff --git a/desktop/assets/data/graphics/488.png b/desktop/assets/data/graphics/488.png
new file mode 100644
index 00000000..2447d2a6
Binary files /dev/null and b/desktop/assets/data/graphics/488.png differ
diff --git a/desktop/assets/data/graphics/489.png b/desktop/assets/data/graphics/489.png
new file mode 100644
index 00000000..6b9c43bc
Binary files /dev/null and b/desktop/assets/data/graphics/489.png differ
diff --git a/desktop/assets/data/graphics/49.png b/desktop/assets/data/graphics/49.png
new file mode 100644
index 00000000..c657a411
Binary files /dev/null and b/desktop/assets/data/graphics/49.png differ
diff --git a/desktop/assets/data/graphics/490.png b/desktop/assets/data/graphics/490.png
new file mode 100644
index 00000000..0319868d
Binary files /dev/null and b/desktop/assets/data/graphics/490.png differ
diff --git a/desktop/assets/data/graphics/491.png b/desktop/assets/data/graphics/491.png
new file mode 100644
index 00000000..9cc7bbe9
Binary files /dev/null and b/desktop/assets/data/graphics/491.png differ
diff --git a/desktop/assets/data/graphics/492.png b/desktop/assets/data/graphics/492.png
new file mode 100644
index 00000000..88d88cf7
Binary files /dev/null and b/desktop/assets/data/graphics/492.png differ
diff --git a/desktop/assets/data/graphics/493.png b/desktop/assets/data/graphics/493.png
new file mode 100644
index 00000000..9d09abd0
Binary files /dev/null and b/desktop/assets/data/graphics/493.png differ
diff --git a/desktop/assets/data/graphics/494.png b/desktop/assets/data/graphics/494.png
new file mode 100644
index 00000000..3bb6bb74
Binary files /dev/null and b/desktop/assets/data/graphics/494.png differ
diff --git a/desktop/assets/data/graphics/495.png b/desktop/assets/data/graphics/495.png
new file mode 100644
index 00000000..2fd42f0f
Binary files /dev/null and b/desktop/assets/data/graphics/495.png differ
diff --git a/desktop/assets/data/graphics/496.png b/desktop/assets/data/graphics/496.png
new file mode 100644
index 00000000..38e46bfe
Binary files /dev/null and b/desktop/assets/data/graphics/496.png differ
diff --git a/desktop/assets/data/graphics/497.png b/desktop/assets/data/graphics/497.png
new file mode 100644
index 00000000..59caa588
Binary files /dev/null and b/desktop/assets/data/graphics/497.png differ
diff --git a/desktop/assets/data/graphics/498.png b/desktop/assets/data/graphics/498.png
new file mode 100644
index 00000000..871f4655
Binary files /dev/null and b/desktop/assets/data/graphics/498.png differ
diff --git a/desktop/assets/data/graphics/499.png b/desktop/assets/data/graphics/499.png
new file mode 100644
index 00000000..fb4f2bff
Binary files /dev/null and b/desktop/assets/data/graphics/499.png differ
diff --git a/desktop/assets/data/graphics/5.png b/desktop/assets/data/graphics/5.png
new file mode 100644
index 00000000..e8a42159
Binary files /dev/null and b/desktop/assets/data/graphics/5.png differ
diff --git a/desktop/assets/data/graphics/50.png b/desktop/assets/data/graphics/50.png
new file mode 100644
index 00000000..b5ea7245
Binary files /dev/null and b/desktop/assets/data/graphics/50.png differ
diff --git a/desktop/assets/data/graphics/500.png b/desktop/assets/data/graphics/500.png
new file mode 100644
index 00000000..19c94a02
Binary files /dev/null and b/desktop/assets/data/graphics/500.png differ
diff --git a/desktop/assets/data/graphics/5000.png b/desktop/assets/data/graphics/5000.png
new file mode 100644
index 00000000..8fcc0b3c
Binary files /dev/null and b/desktop/assets/data/graphics/5000.png differ
diff --git a/desktop/assets/data/graphics/5001.png b/desktop/assets/data/graphics/5001.png
new file mode 100644
index 00000000..3cac05a9
Binary files /dev/null and b/desktop/assets/data/graphics/5001.png differ
diff --git a/desktop/assets/data/graphics/5002.png b/desktop/assets/data/graphics/5002.png
new file mode 100644
index 00000000..d745020a
Binary files /dev/null and b/desktop/assets/data/graphics/5002.png differ
diff --git a/desktop/assets/data/graphics/5003.png b/desktop/assets/data/graphics/5003.png
new file mode 100644
index 00000000..c305577f
Binary files /dev/null and b/desktop/assets/data/graphics/5003.png differ
diff --git a/desktop/assets/data/graphics/5004.png b/desktop/assets/data/graphics/5004.png
new file mode 100644
index 00000000..51ed8f20
Binary files /dev/null and b/desktop/assets/data/graphics/5004.png differ
diff --git a/desktop/assets/data/graphics/5005.png b/desktop/assets/data/graphics/5005.png
new file mode 100644
index 00000000..5283fa5c
Binary files /dev/null and b/desktop/assets/data/graphics/5005.png differ
diff --git a/desktop/assets/data/graphics/5006.png b/desktop/assets/data/graphics/5006.png
new file mode 100644
index 00000000..d0ef5811
Binary files /dev/null and b/desktop/assets/data/graphics/5006.png differ
diff --git a/desktop/assets/data/graphics/5007.png b/desktop/assets/data/graphics/5007.png
new file mode 100644
index 00000000..566a5ef7
Binary files /dev/null and b/desktop/assets/data/graphics/5007.png differ
diff --git a/desktop/assets/data/graphics/5008.png b/desktop/assets/data/graphics/5008.png
new file mode 100644
index 00000000..f4d23a3c
Binary files /dev/null and b/desktop/assets/data/graphics/5008.png differ
diff --git a/desktop/assets/data/graphics/5009.png b/desktop/assets/data/graphics/5009.png
new file mode 100644
index 00000000..20df4fa9
Binary files /dev/null and b/desktop/assets/data/graphics/5009.png differ
diff --git a/desktop/assets/data/graphics/501.png b/desktop/assets/data/graphics/501.png
new file mode 100644
index 00000000..a4431ca7
Binary files /dev/null and b/desktop/assets/data/graphics/501.png differ
diff --git a/desktop/assets/data/graphics/5010.png b/desktop/assets/data/graphics/5010.png
new file mode 100644
index 00000000..9c201d2e
Binary files /dev/null and b/desktop/assets/data/graphics/5010.png differ
diff --git a/desktop/assets/data/graphics/5011.png b/desktop/assets/data/graphics/5011.png
new file mode 100644
index 00000000..9ad29c21
Binary files /dev/null and b/desktop/assets/data/graphics/5011.png differ
diff --git a/desktop/assets/data/graphics/5012.png b/desktop/assets/data/graphics/5012.png
new file mode 100644
index 00000000..a9aab6f4
Binary files /dev/null and b/desktop/assets/data/graphics/5012.png differ
diff --git a/desktop/assets/data/graphics/5013.png b/desktop/assets/data/graphics/5013.png
new file mode 100644
index 00000000..128dbe06
Binary files /dev/null and b/desktop/assets/data/graphics/5013.png differ
diff --git a/desktop/assets/data/graphics/5014.png b/desktop/assets/data/graphics/5014.png
new file mode 100644
index 00000000..6977b0b6
Binary files /dev/null and b/desktop/assets/data/graphics/5014.png differ
diff --git a/desktop/assets/data/graphics/5015.png b/desktop/assets/data/graphics/5015.png
new file mode 100644
index 00000000..0e44d5b8
Binary files /dev/null and b/desktop/assets/data/graphics/5015.png differ
diff --git a/desktop/assets/data/graphics/5016.png b/desktop/assets/data/graphics/5016.png
new file mode 100644
index 00000000..85e5b3d6
Binary files /dev/null and b/desktop/assets/data/graphics/5016.png differ
diff --git a/desktop/assets/data/graphics/5017.png b/desktop/assets/data/graphics/5017.png
new file mode 100644
index 00000000..31117013
Binary files /dev/null and b/desktop/assets/data/graphics/5017.png differ
diff --git a/desktop/assets/data/graphics/5018.png b/desktop/assets/data/graphics/5018.png
new file mode 100644
index 00000000..126f39f2
Binary files /dev/null and b/desktop/assets/data/graphics/5018.png differ
diff --git a/desktop/assets/data/graphics/5019.png b/desktop/assets/data/graphics/5019.png
new file mode 100644
index 00000000..34677970
Binary files /dev/null and b/desktop/assets/data/graphics/5019.png differ
diff --git a/desktop/assets/data/graphics/502.png b/desktop/assets/data/graphics/502.png
new file mode 100644
index 00000000..89af2899
Binary files /dev/null and b/desktop/assets/data/graphics/502.png differ
diff --git a/desktop/assets/data/graphics/5020.png b/desktop/assets/data/graphics/5020.png
new file mode 100644
index 00000000..1e22ddd8
Binary files /dev/null and b/desktop/assets/data/graphics/5020.png differ
diff --git a/desktop/assets/data/graphics/5021.png b/desktop/assets/data/graphics/5021.png
new file mode 100644
index 00000000..0e96e12f
Binary files /dev/null and b/desktop/assets/data/graphics/5021.png differ
diff --git a/desktop/assets/data/graphics/5022.png b/desktop/assets/data/graphics/5022.png
new file mode 100644
index 00000000..594e5987
Binary files /dev/null and b/desktop/assets/data/graphics/5022.png differ
diff --git a/desktop/assets/data/graphics/5023.png b/desktop/assets/data/graphics/5023.png
new file mode 100644
index 00000000..8972b65c
Binary files /dev/null and b/desktop/assets/data/graphics/5023.png differ
diff --git a/desktop/assets/data/graphics/5024.png b/desktop/assets/data/graphics/5024.png
new file mode 100644
index 00000000..b9a3cda9
Binary files /dev/null and b/desktop/assets/data/graphics/5024.png differ
diff --git a/desktop/assets/data/graphics/5025.png b/desktop/assets/data/graphics/5025.png
new file mode 100644
index 00000000..6eaad9cc
Binary files /dev/null and b/desktop/assets/data/graphics/5025.png differ
diff --git a/desktop/assets/data/graphics/5026.png b/desktop/assets/data/graphics/5026.png
new file mode 100644
index 00000000..ed102248
Binary files /dev/null and b/desktop/assets/data/graphics/5026.png differ
diff --git a/desktop/assets/data/graphics/5027.png b/desktop/assets/data/graphics/5027.png
new file mode 100644
index 00000000..9f598aa4
Binary files /dev/null and b/desktop/assets/data/graphics/5027.png differ
diff --git a/desktop/assets/data/graphics/5028.png b/desktop/assets/data/graphics/5028.png
new file mode 100644
index 00000000..e96210d9
Binary files /dev/null and b/desktop/assets/data/graphics/5028.png differ
diff --git a/desktop/assets/data/graphics/5029.png b/desktop/assets/data/graphics/5029.png
new file mode 100644
index 00000000..aefbb9a7
Binary files /dev/null and b/desktop/assets/data/graphics/5029.png differ
diff --git a/desktop/assets/data/graphics/503.png b/desktop/assets/data/graphics/503.png
new file mode 100644
index 00000000..105e00ec
Binary files /dev/null and b/desktop/assets/data/graphics/503.png differ
diff --git a/desktop/assets/data/graphics/5030.png b/desktop/assets/data/graphics/5030.png
new file mode 100644
index 00000000..0dcf57d8
Binary files /dev/null and b/desktop/assets/data/graphics/5030.png differ
diff --git a/desktop/assets/data/graphics/5031.png b/desktop/assets/data/graphics/5031.png
new file mode 100644
index 00000000..5295a6d6
Binary files /dev/null and b/desktop/assets/data/graphics/5031.png differ
diff --git a/desktop/assets/data/graphics/5032.png b/desktop/assets/data/graphics/5032.png
new file mode 100644
index 00000000..3af633c5
Binary files /dev/null and b/desktop/assets/data/graphics/5032.png differ
diff --git a/desktop/assets/data/graphics/5033.png b/desktop/assets/data/graphics/5033.png
new file mode 100644
index 00000000..0bafeb49
Binary files /dev/null and b/desktop/assets/data/graphics/5033.png differ
diff --git a/desktop/assets/data/graphics/5034.png b/desktop/assets/data/graphics/5034.png
new file mode 100644
index 00000000..aa4c623d
Binary files /dev/null and b/desktop/assets/data/graphics/5034.png differ
diff --git a/desktop/assets/data/graphics/5035.png b/desktop/assets/data/graphics/5035.png
new file mode 100644
index 00000000..adaec2a4
Binary files /dev/null and b/desktop/assets/data/graphics/5035.png differ
diff --git a/desktop/assets/data/graphics/5036.png b/desktop/assets/data/graphics/5036.png
new file mode 100644
index 00000000..cdf2e71d
Binary files /dev/null and b/desktop/assets/data/graphics/5036.png differ
diff --git a/desktop/assets/data/graphics/5037.png b/desktop/assets/data/graphics/5037.png
new file mode 100644
index 00000000..e6905f31
Binary files /dev/null and b/desktop/assets/data/graphics/5037.png differ
diff --git a/desktop/assets/data/graphics/5038.png b/desktop/assets/data/graphics/5038.png
new file mode 100644
index 00000000..7699a8da
Binary files /dev/null and b/desktop/assets/data/graphics/5038.png differ
diff --git a/desktop/assets/data/graphics/5039.png b/desktop/assets/data/graphics/5039.png
new file mode 100644
index 00000000..e0b53ec4
Binary files /dev/null and b/desktop/assets/data/graphics/5039.png differ
diff --git a/desktop/assets/data/graphics/504.png b/desktop/assets/data/graphics/504.png
new file mode 100644
index 00000000..88a66960
Binary files /dev/null and b/desktop/assets/data/graphics/504.png differ
diff --git a/desktop/assets/data/graphics/5040.png b/desktop/assets/data/graphics/5040.png
new file mode 100644
index 00000000..3d789398
Binary files /dev/null and b/desktop/assets/data/graphics/5040.png differ
diff --git a/desktop/assets/data/graphics/5041.png b/desktop/assets/data/graphics/5041.png
new file mode 100644
index 00000000..e117bd79
Binary files /dev/null and b/desktop/assets/data/graphics/5041.png differ
diff --git a/desktop/assets/data/graphics/505.png b/desktop/assets/data/graphics/505.png
new file mode 100644
index 00000000..938995bc
Binary files /dev/null and b/desktop/assets/data/graphics/505.png differ
diff --git a/desktop/assets/data/graphics/506.png b/desktop/assets/data/graphics/506.png
new file mode 100644
index 00000000..8bd57645
Binary files /dev/null and b/desktop/assets/data/graphics/506.png differ
diff --git a/desktop/assets/data/graphics/507.png b/desktop/assets/data/graphics/507.png
new file mode 100644
index 00000000..9974184f
Binary files /dev/null and b/desktop/assets/data/graphics/507.png differ
diff --git a/desktop/assets/data/graphics/508.png b/desktop/assets/data/graphics/508.png
new file mode 100644
index 00000000..2655bd26
Binary files /dev/null and b/desktop/assets/data/graphics/508.png differ
diff --git a/desktop/assets/data/graphics/509.png b/desktop/assets/data/graphics/509.png
new file mode 100644
index 00000000..890db117
Binary files /dev/null and b/desktop/assets/data/graphics/509.png differ
diff --git a/desktop/assets/data/graphics/51.png b/desktop/assets/data/graphics/51.png
new file mode 100644
index 00000000..e7dfedb4
Binary files /dev/null and b/desktop/assets/data/graphics/51.png differ
diff --git a/desktop/assets/data/graphics/510.png b/desktop/assets/data/graphics/510.png
new file mode 100644
index 00000000..e1b373aa
Binary files /dev/null and b/desktop/assets/data/graphics/510.png differ
diff --git a/desktop/assets/data/graphics/511.png b/desktop/assets/data/graphics/511.png
new file mode 100644
index 00000000..5de69cd4
Binary files /dev/null and b/desktop/assets/data/graphics/511.png differ
diff --git a/desktop/assets/data/graphics/512.png b/desktop/assets/data/graphics/512.png
new file mode 100644
index 00000000..6ba8a981
Binary files /dev/null and b/desktop/assets/data/graphics/512.png differ
diff --git a/desktop/assets/data/graphics/513.png b/desktop/assets/data/graphics/513.png
new file mode 100644
index 00000000..7fc2e76c
Binary files /dev/null and b/desktop/assets/data/graphics/513.png differ
diff --git a/desktop/assets/data/graphics/514.png b/desktop/assets/data/graphics/514.png
new file mode 100644
index 00000000..01dda53a
Binary files /dev/null and b/desktop/assets/data/graphics/514.png differ
diff --git a/desktop/assets/data/graphics/515.png b/desktop/assets/data/graphics/515.png
new file mode 100644
index 00000000..3d830350
Binary files /dev/null and b/desktop/assets/data/graphics/515.png differ
diff --git a/desktop/assets/data/graphics/516.png b/desktop/assets/data/graphics/516.png
new file mode 100644
index 00000000..0b53251c
Binary files /dev/null and b/desktop/assets/data/graphics/516.png differ
diff --git a/desktop/assets/data/graphics/517.png b/desktop/assets/data/graphics/517.png
new file mode 100644
index 00000000..f5208e4e
Binary files /dev/null and b/desktop/assets/data/graphics/517.png differ
diff --git a/desktop/assets/data/graphics/518.png b/desktop/assets/data/graphics/518.png
new file mode 100644
index 00000000..a57b7d00
Binary files /dev/null and b/desktop/assets/data/graphics/518.png differ
diff --git a/desktop/assets/data/graphics/519.png b/desktop/assets/data/graphics/519.png
new file mode 100644
index 00000000..62e1d655
Binary files /dev/null and b/desktop/assets/data/graphics/519.png differ
diff --git a/desktop/assets/data/graphics/52.png b/desktop/assets/data/graphics/52.png
new file mode 100644
index 00000000..66ed61c5
Binary files /dev/null and b/desktop/assets/data/graphics/52.png differ
diff --git a/desktop/assets/data/graphics/520.png b/desktop/assets/data/graphics/520.png
new file mode 100644
index 00000000..45f7d0c6
Binary files /dev/null and b/desktop/assets/data/graphics/520.png differ
diff --git a/desktop/assets/data/graphics/521.png b/desktop/assets/data/graphics/521.png
new file mode 100644
index 00000000..5c2995a1
Binary files /dev/null and b/desktop/assets/data/graphics/521.png differ
diff --git a/desktop/assets/data/graphics/522.png b/desktop/assets/data/graphics/522.png
new file mode 100644
index 00000000..0deacb32
Binary files /dev/null and b/desktop/assets/data/graphics/522.png differ
diff --git a/desktop/assets/data/graphics/523.png b/desktop/assets/data/graphics/523.png
new file mode 100644
index 00000000..b9a75d04
Binary files /dev/null and b/desktop/assets/data/graphics/523.png differ
diff --git a/desktop/assets/data/graphics/524.png b/desktop/assets/data/graphics/524.png
new file mode 100644
index 00000000..5be806fa
Binary files /dev/null and b/desktop/assets/data/graphics/524.png differ
diff --git a/desktop/assets/data/graphics/525.png b/desktop/assets/data/graphics/525.png
new file mode 100644
index 00000000..5fe58287
Binary files /dev/null and b/desktop/assets/data/graphics/525.png differ
diff --git a/desktop/assets/data/graphics/526.png b/desktop/assets/data/graphics/526.png
new file mode 100644
index 00000000..8d4a4325
Binary files /dev/null and b/desktop/assets/data/graphics/526.png differ
diff --git a/desktop/assets/data/graphics/527.png b/desktop/assets/data/graphics/527.png
new file mode 100644
index 00000000..08fae3d0
Binary files /dev/null and b/desktop/assets/data/graphics/527.png differ
diff --git a/desktop/assets/data/graphics/528.png b/desktop/assets/data/graphics/528.png
new file mode 100644
index 00000000..bbf2f1a6
Binary files /dev/null and b/desktop/assets/data/graphics/528.png differ
diff --git a/desktop/assets/data/graphics/529.png b/desktop/assets/data/graphics/529.png
new file mode 100644
index 00000000..9b9242d1
Binary files /dev/null and b/desktop/assets/data/graphics/529.png differ
diff --git a/desktop/assets/data/graphics/53.png b/desktop/assets/data/graphics/53.png
new file mode 100644
index 00000000..d19d65fa
Binary files /dev/null and b/desktop/assets/data/graphics/53.png differ
diff --git a/desktop/assets/data/graphics/530.png b/desktop/assets/data/graphics/530.png
new file mode 100644
index 00000000..a46fb97c
Binary files /dev/null and b/desktop/assets/data/graphics/530.png differ
diff --git a/desktop/assets/data/graphics/531.png b/desktop/assets/data/graphics/531.png
new file mode 100644
index 00000000..75bee573
Binary files /dev/null and b/desktop/assets/data/graphics/531.png differ
diff --git a/desktop/assets/data/graphics/532.png b/desktop/assets/data/graphics/532.png
new file mode 100644
index 00000000..7c3fb8a2
Binary files /dev/null and b/desktop/assets/data/graphics/532.png differ
diff --git a/desktop/assets/data/graphics/533.png b/desktop/assets/data/graphics/533.png
new file mode 100644
index 00000000..10f95927
Binary files /dev/null and b/desktop/assets/data/graphics/533.png differ
diff --git a/desktop/assets/data/graphics/534.png b/desktop/assets/data/graphics/534.png
new file mode 100644
index 00000000..35712c01
Binary files /dev/null and b/desktop/assets/data/graphics/534.png differ
diff --git a/desktop/assets/data/graphics/535.png b/desktop/assets/data/graphics/535.png
new file mode 100644
index 00000000..67837c9e
Binary files /dev/null and b/desktop/assets/data/graphics/535.png differ
diff --git a/desktop/assets/data/graphics/536.png b/desktop/assets/data/graphics/536.png
new file mode 100644
index 00000000..f5947fbb
Binary files /dev/null and b/desktop/assets/data/graphics/536.png differ
diff --git a/desktop/assets/data/graphics/537.png b/desktop/assets/data/graphics/537.png
new file mode 100644
index 00000000..e3df55cb
Binary files /dev/null and b/desktop/assets/data/graphics/537.png differ
diff --git a/desktop/assets/data/graphics/538.png b/desktop/assets/data/graphics/538.png
new file mode 100644
index 00000000..47893a78
Binary files /dev/null and b/desktop/assets/data/graphics/538.png differ
diff --git a/desktop/assets/data/graphics/539.png b/desktop/assets/data/graphics/539.png
new file mode 100644
index 00000000..3789d152
Binary files /dev/null and b/desktop/assets/data/graphics/539.png differ
diff --git a/desktop/assets/data/graphics/54.png b/desktop/assets/data/graphics/54.png
new file mode 100644
index 00000000..493c8e27
Binary files /dev/null and b/desktop/assets/data/graphics/54.png differ
diff --git a/desktop/assets/data/graphics/540.png b/desktop/assets/data/graphics/540.png
new file mode 100644
index 00000000..fdbef36b
Binary files /dev/null and b/desktop/assets/data/graphics/540.png differ
diff --git a/desktop/assets/data/graphics/541.png b/desktop/assets/data/graphics/541.png
new file mode 100644
index 00000000..f716f3c4
Binary files /dev/null and b/desktop/assets/data/graphics/541.png differ
diff --git a/desktop/assets/data/graphics/542.png b/desktop/assets/data/graphics/542.png
new file mode 100644
index 00000000..d9f10f74
Binary files /dev/null and b/desktop/assets/data/graphics/542.png differ
diff --git a/desktop/assets/data/graphics/543.png b/desktop/assets/data/graphics/543.png
new file mode 100644
index 00000000..359c1519
Binary files /dev/null and b/desktop/assets/data/graphics/543.png differ
diff --git a/desktop/assets/data/graphics/544.png b/desktop/assets/data/graphics/544.png
new file mode 100644
index 00000000..4390b199
Binary files /dev/null and b/desktop/assets/data/graphics/544.png differ
diff --git a/desktop/assets/data/graphics/545.png b/desktop/assets/data/graphics/545.png
new file mode 100644
index 00000000..589350db
Binary files /dev/null and b/desktop/assets/data/graphics/545.png differ
diff --git a/desktop/assets/data/graphics/546.png b/desktop/assets/data/graphics/546.png
new file mode 100644
index 00000000..d4a5e7da
Binary files /dev/null and b/desktop/assets/data/graphics/546.png differ
diff --git a/desktop/assets/data/graphics/547.png b/desktop/assets/data/graphics/547.png
new file mode 100644
index 00000000..cad6f513
Binary files /dev/null and b/desktop/assets/data/graphics/547.png differ
diff --git a/desktop/assets/data/graphics/548.png b/desktop/assets/data/graphics/548.png
new file mode 100644
index 00000000..13857deb
Binary files /dev/null and b/desktop/assets/data/graphics/548.png differ
diff --git a/desktop/assets/data/graphics/549.png b/desktop/assets/data/graphics/549.png
new file mode 100644
index 00000000..22ca8350
Binary files /dev/null and b/desktop/assets/data/graphics/549.png differ
diff --git a/desktop/assets/data/graphics/55.png b/desktop/assets/data/graphics/55.png
new file mode 100644
index 00000000..711bda90
Binary files /dev/null and b/desktop/assets/data/graphics/55.png differ
diff --git a/desktop/assets/data/graphics/550.png b/desktop/assets/data/graphics/550.png
new file mode 100644
index 00000000..f82a87c0
Binary files /dev/null and b/desktop/assets/data/graphics/550.png differ
diff --git a/desktop/assets/data/graphics/551.png b/desktop/assets/data/graphics/551.png
new file mode 100644
index 00000000..7412636d
Binary files /dev/null and b/desktop/assets/data/graphics/551.png differ
diff --git a/desktop/assets/data/graphics/552.png b/desktop/assets/data/graphics/552.png
new file mode 100644
index 00000000..dc7d52d9
Binary files /dev/null and b/desktop/assets/data/graphics/552.png differ
diff --git a/desktop/assets/data/graphics/553.png b/desktop/assets/data/graphics/553.png
new file mode 100644
index 00000000..87916118
Binary files /dev/null and b/desktop/assets/data/graphics/553.png differ
diff --git a/desktop/assets/data/graphics/554.png b/desktop/assets/data/graphics/554.png
new file mode 100644
index 00000000..b006e962
Binary files /dev/null and b/desktop/assets/data/graphics/554.png differ
diff --git a/desktop/assets/data/graphics/555.png b/desktop/assets/data/graphics/555.png
new file mode 100644
index 00000000..f3ca614f
Binary files /dev/null and b/desktop/assets/data/graphics/555.png differ
diff --git a/desktop/assets/data/graphics/556.png b/desktop/assets/data/graphics/556.png
new file mode 100644
index 00000000..2a52cc77
Binary files /dev/null and b/desktop/assets/data/graphics/556.png differ
diff --git a/desktop/assets/data/graphics/557.png b/desktop/assets/data/graphics/557.png
new file mode 100644
index 00000000..16c662a4
Binary files /dev/null and b/desktop/assets/data/graphics/557.png differ
diff --git a/desktop/assets/data/graphics/558.png b/desktop/assets/data/graphics/558.png
new file mode 100644
index 00000000..ad0eb9fd
Binary files /dev/null and b/desktop/assets/data/graphics/558.png differ
diff --git a/desktop/assets/data/graphics/559.png b/desktop/assets/data/graphics/559.png
new file mode 100644
index 00000000..98add01c
Binary files /dev/null and b/desktop/assets/data/graphics/559.png differ
diff --git a/desktop/assets/data/graphics/56.png b/desktop/assets/data/graphics/56.png
new file mode 100644
index 00000000..b1b5f87b
Binary files /dev/null and b/desktop/assets/data/graphics/56.png differ
diff --git a/desktop/assets/data/graphics/560.png b/desktop/assets/data/graphics/560.png
new file mode 100644
index 00000000..a317077e
Binary files /dev/null and b/desktop/assets/data/graphics/560.png differ
diff --git a/desktop/assets/data/graphics/561.png b/desktop/assets/data/graphics/561.png
new file mode 100644
index 00000000..493c8e27
Binary files /dev/null and b/desktop/assets/data/graphics/561.png differ
diff --git a/desktop/assets/data/graphics/562.png b/desktop/assets/data/graphics/562.png
new file mode 100644
index 00000000..89b9ff14
Binary files /dev/null and b/desktop/assets/data/graphics/562.png differ
diff --git a/desktop/assets/data/graphics/563.png b/desktop/assets/data/graphics/563.png
new file mode 100644
index 00000000..90b54807
Binary files /dev/null and b/desktop/assets/data/graphics/563.png differ
diff --git a/desktop/assets/data/graphics/564.png b/desktop/assets/data/graphics/564.png
new file mode 100644
index 00000000..1fd5ef88
Binary files /dev/null and b/desktop/assets/data/graphics/564.png differ
diff --git a/desktop/assets/data/graphics/565.png b/desktop/assets/data/graphics/565.png
new file mode 100644
index 00000000..ddaa1d5f
Binary files /dev/null and b/desktop/assets/data/graphics/565.png differ
diff --git a/desktop/assets/data/graphics/566.png b/desktop/assets/data/graphics/566.png
new file mode 100644
index 00000000..3bf4bdf1
Binary files /dev/null and b/desktop/assets/data/graphics/566.png differ
diff --git a/desktop/assets/data/graphics/567.png b/desktop/assets/data/graphics/567.png
new file mode 100644
index 00000000..b0d23fb6
Binary files /dev/null and b/desktop/assets/data/graphics/567.png differ
diff --git a/desktop/assets/data/graphics/568.png b/desktop/assets/data/graphics/568.png
new file mode 100644
index 00000000..5438ae03
Binary files /dev/null and b/desktop/assets/data/graphics/568.png differ
diff --git a/desktop/assets/data/graphics/569.png b/desktop/assets/data/graphics/569.png
new file mode 100644
index 00000000..173e69ff
Binary files /dev/null and b/desktop/assets/data/graphics/569.png differ
diff --git a/desktop/assets/data/graphics/57.png b/desktop/assets/data/graphics/57.png
new file mode 100644
index 00000000..5e20a98f
Binary files /dev/null and b/desktop/assets/data/graphics/57.png differ
diff --git a/desktop/assets/data/graphics/570.png b/desktop/assets/data/graphics/570.png
new file mode 100644
index 00000000..fdc151a8
Binary files /dev/null and b/desktop/assets/data/graphics/570.png differ
diff --git a/desktop/assets/data/graphics/571.png b/desktop/assets/data/graphics/571.png
new file mode 100644
index 00000000..5112de65
Binary files /dev/null and b/desktop/assets/data/graphics/571.png differ
diff --git a/desktop/assets/data/graphics/572.png b/desktop/assets/data/graphics/572.png
new file mode 100644
index 00000000..74d5c601
Binary files /dev/null and b/desktop/assets/data/graphics/572.png differ
diff --git a/desktop/assets/data/graphics/573.png b/desktop/assets/data/graphics/573.png
new file mode 100644
index 00000000..d03bb0ee
Binary files /dev/null and b/desktop/assets/data/graphics/573.png differ
diff --git a/desktop/assets/data/graphics/574.png b/desktop/assets/data/graphics/574.png
new file mode 100644
index 00000000..f15666be
Binary files /dev/null and b/desktop/assets/data/graphics/574.png differ
diff --git a/desktop/assets/data/graphics/575.png b/desktop/assets/data/graphics/575.png
new file mode 100644
index 00000000..6a2d04c5
Binary files /dev/null and b/desktop/assets/data/graphics/575.png differ
diff --git a/desktop/assets/data/graphics/576.png b/desktop/assets/data/graphics/576.png
new file mode 100644
index 00000000..3a8fefb2
Binary files /dev/null and b/desktop/assets/data/graphics/576.png differ
diff --git a/desktop/assets/data/graphics/577.png b/desktop/assets/data/graphics/577.png
new file mode 100644
index 00000000..40c6b457
Binary files /dev/null and b/desktop/assets/data/graphics/577.png differ
diff --git a/desktop/assets/data/graphics/578.png b/desktop/assets/data/graphics/578.png
new file mode 100644
index 00000000..effbc467
Binary files /dev/null and b/desktop/assets/data/graphics/578.png differ
diff --git a/desktop/assets/data/graphics/579.png b/desktop/assets/data/graphics/579.png
new file mode 100644
index 00000000..8771db5b
Binary files /dev/null and b/desktop/assets/data/graphics/579.png differ
diff --git a/desktop/assets/data/graphics/58.png b/desktop/assets/data/graphics/58.png
new file mode 100644
index 00000000..27bfaea8
Binary files /dev/null and b/desktop/assets/data/graphics/58.png differ
diff --git a/desktop/assets/data/graphics/580.png b/desktop/assets/data/graphics/580.png
new file mode 100644
index 00000000..0409504c
Binary files /dev/null and b/desktop/assets/data/graphics/580.png differ
diff --git a/desktop/assets/data/graphics/581.png b/desktop/assets/data/graphics/581.png
new file mode 100644
index 00000000..cf60ce47
Binary files /dev/null and b/desktop/assets/data/graphics/581.png differ
diff --git a/desktop/assets/data/graphics/582.png b/desktop/assets/data/graphics/582.png
new file mode 100644
index 00000000..07b5c9aa
Binary files /dev/null and b/desktop/assets/data/graphics/582.png differ
diff --git a/desktop/assets/data/graphics/583.png b/desktop/assets/data/graphics/583.png
new file mode 100644
index 00000000..8def694b
Binary files /dev/null and b/desktop/assets/data/graphics/583.png differ
diff --git a/desktop/assets/data/graphics/584.png b/desktop/assets/data/graphics/584.png
new file mode 100644
index 00000000..7195ca60
Binary files /dev/null and b/desktop/assets/data/graphics/584.png differ
diff --git a/desktop/assets/data/graphics/585.png b/desktop/assets/data/graphics/585.png
new file mode 100644
index 00000000..329483b4
Binary files /dev/null and b/desktop/assets/data/graphics/585.png differ
diff --git a/desktop/assets/data/graphics/586.png b/desktop/assets/data/graphics/586.png
new file mode 100644
index 00000000..9470239c
Binary files /dev/null and b/desktop/assets/data/graphics/586.png differ
diff --git a/desktop/assets/data/graphics/587.png b/desktop/assets/data/graphics/587.png
new file mode 100644
index 00000000..03efd748
Binary files /dev/null and b/desktop/assets/data/graphics/587.png differ
diff --git a/desktop/assets/data/graphics/588.png b/desktop/assets/data/graphics/588.png
new file mode 100644
index 00000000..1eee5eca
Binary files /dev/null and b/desktop/assets/data/graphics/588.png differ
diff --git a/desktop/assets/data/graphics/589.png b/desktop/assets/data/graphics/589.png
new file mode 100644
index 00000000..61f70680
Binary files /dev/null and b/desktop/assets/data/graphics/589.png differ
diff --git a/desktop/assets/data/graphics/59.png b/desktop/assets/data/graphics/59.png
new file mode 100644
index 00000000..0d171069
Binary files /dev/null and b/desktop/assets/data/graphics/59.png differ
diff --git a/desktop/assets/data/graphics/590.png b/desktop/assets/data/graphics/590.png
new file mode 100644
index 00000000..ed3db4e0
Binary files /dev/null and b/desktop/assets/data/graphics/590.png differ
diff --git a/desktop/assets/data/graphics/591.png b/desktop/assets/data/graphics/591.png
new file mode 100644
index 00000000..ab7071dd
Binary files /dev/null and b/desktop/assets/data/graphics/591.png differ
diff --git a/desktop/assets/data/graphics/592.png b/desktop/assets/data/graphics/592.png
new file mode 100644
index 00000000..e58d9cf1
Binary files /dev/null and b/desktop/assets/data/graphics/592.png differ
diff --git a/desktop/assets/data/graphics/593.png b/desktop/assets/data/graphics/593.png
new file mode 100644
index 00000000..0a1c34b5
Binary files /dev/null and b/desktop/assets/data/graphics/593.png differ
diff --git a/desktop/assets/data/graphics/594.png b/desktop/assets/data/graphics/594.png
new file mode 100644
index 00000000..07bdc9c5
Binary files /dev/null and b/desktop/assets/data/graphics/594.png differ
diff --git a/desktop/assets/data/graphics/595.png b/desktop/assets/data/graphics/595.png
new file mode 100644
index 00000000..6ccb4bf5
Binary files /dev/null and b/desktop/assets/data/graphics/595.png differ
diff --git a/desktop/assets/data/graphics/596.png b/desktop/assets/data/graphics/596.png
new file mode 100644
index 00000000..5f0d4c0d
Binary files /dev/null and b/desktop/assets/data/graphics/596.png differ
diff --git a/desktop/assets/data/graphics/597.png b/desktop/assets/data/graphics/597.png
new file mode 100644
index 00000000..e46bee88
Binary files /dev/null and b/desktop/assets/data/graphics/597.png differ
diff --git a/desktop/assets/data/graphics/598.png b/desktop/assets/data/graphics/598.png
new file mode 100644
index 00000000..b55c78b4
Binary files /dev/null and b/desktop/assets/data/graphics/598.png differ
diff --git a/desktop/assets/data/graphics/599.png b/desktop/assets/data/graphics/599.png
new file mode 100644
index 00000000..0dc03525
Binary files /dev/null and b/desktop/assets/data/graphics/599.png differ
diff --git a/desktop/assets/data/graphics/6.png b/desktop/assets/data/graphics/6.png
new file mode 100644
index 00000000..ec33d4d5
Binary files /dev/null and b/desktop/assets/data/graphics/6.png differ
diff --git a/desktop/assets/data/graphics/60.png b/desktop/assets/data/graphics/60.png
new file mode 100644
index 00000000..a7939fb0
Binary files /dev/null and b/desktop/assets/data/graphics/60.png differ
diff --git a/desktop/assets/data/graphics/600.png b/desktop/assets/data/graphics/600.png
new file mode 100644
index 00000000..9deb2afb
Binary files /dev/null and b/desktop/assets/data/graphics/600.png differ
diff --git a/desktop/assets/data/graphics/6000.png b/desktop/assets/data/graphics/6000.png
new file mode 100644
index 00000000..25433446
Binary files /dev/null and b/desktop/assets/data/graphics/6000.png differ
diff --git a/desktop/assets/data/graphics/6001.png b/desktop/assets/data/graphics/6001.png
new file mode 100644
index 00000000..3bbe28b3
Binary files /dev/null and b/desktop/assets/data/graphics/6001.png differ
diff --git a/desktop/assets/data/graphics/6002.png b/desktop/assets/data/graphics/6002.png
new file mode 100644
index 00000000..08a2afbb
Binary files /dev/null and b/desktop/assets/data/graphics/6002.png differ
diff --git a/desktop/assets/data/graphics/6003.png b/desktop/assets/data/graphics/6003.png
new file mode 100644
index 00000000..0bf65f1d
Binary files /dev/null and b/desktop/assets/data/graphics/6003.png differ
diff --git a/desktop/assets/data/graphics/6004.png b/desktop/assets/data/graphics/6004.png
new file mode 100644
index 00000000..a70cf2d2
Binary files /dev/null and b/desktop/assets/data/graphics/6004.png differ
diff --git a/desktop/assets/data/graphics/6005.png b/desktop/assets/data/graphics/6005.png
new file mode 100644
index 00000000..e0b8394d
Binary files /dev/null and b/desktop/assets/data/graphics/6005.png differ
diff --git a/desktop/assets/data/graphics/6006.png b/desktop/assets/data/graphics/6006.png
new file mode 100644
index 00000000..6725b56c
Binary files /dev/null and b/desktop/assets/data/graphics/6006.png differ
diff --git a/desktop/assets/data/graphics/6007.png b/desktop/assets/data/graphics/6007.png
new file mode 100644
index 00000000..11b65d0e
Binary files /dev/null and b/desktop/assets/data/graphics/6007.png differ
diff --git a/desktop/assets/data/graphics/6008.png b/desktop/assets/data/graphics/6008.png
new file mode 100644
index 00000000..858a515f
Binary files /dev/null and b/desktop/assets/data/graphics/6008.png differ
diff --git a/desktop/assets/data/graphics/6009.png b/desktop/assets/data/graphics/6009.png
new file mode 100644
index 00000000..290dcbc7
Binary files /dev/null and b/desktop/assets/data/graphics/6009.png differ
diff --git a/desktop/assets/data/graphics/601.png b/desktop/assets/data/graphics/601.png
new file mode 100644
index 00000000..a7ad89a5
Binary files /dev/null and b/desktop/assets/data/graphics/601.png differ
diff --git a/desktop/assets/data/graphics/6010.png b/desktop/assets/data/graphics/6010.png
new file mode 100644
index 00000000..b207a6e8
Binary files /dev/null and b/desktop/assets/data/graphics/6010.png differ
diff --git a/desktop/assets/data/graphics/6011.png b/desktop/assets/data/graphics/6011.png
new file mode 100644
index 00000000..e14352a1
Binary files /dev/null and b/desktop/assets/data/graphics/6011.png differ
diff --git a/desktop/assets/data/graphics/6012.png b/desktop/assets/data/graphics/6012.png
new file mode 100644
index 00000000..f0b3a80c
Binary files /dev/null and b/desktop/assets/data/graphics/6012.png differ
diff --git a/desktop/assets/data/graphics/6013.png b/desktop/assets/data/graphics/6013.png
new file mode 100644
index 00000000..e517e8dc
Binary files /dev/null and b/desktop/assets/data/graphics/6013.png differ
diff --git a/desktop/assets/data/graphics/6014.png b/desktop/assets/data/graphics/6014.png
new file mode 100644
index 00000000..ca87de3a
Binary files /dev/null and b/desktop/assets/data/graphics/6014.png differ
diff --git a/desktop/assets/data/graphics/602.png b/desktop/assets/data/graphics/602.png
new file mode 100644
index 00000000..160f351f
Binary files /dev/null and b/desktop/assets/data/graphics/602.png differ
diff --git a/desktop/assets/data/graphics/603.png b/desktop/assets/data/graphics/603.png
new file mode 100644
index 00000000..109b76bb
Binary files /dev/null and b/desktop/assets/data/graphics/603.png differ
diff --git a/desktop/assets/data/graphics/604.png b/desktop/assets/data/graphics/604.png
new file mode 100644
index 00000000..b07eddf6
Binary files /dev/null and b/desktop/assets/data/graphics/604.png differ
diff --git a/desktop/assets/data/graphics/605.png b/desktop/assets/data/graphics/605.png
new file mode 100644
index 00000000..d91a2465
Binary files /dev/null and b/desktop/assets/data/graphics/605.png differ
diff --git a/desktop/assets/data/graphics/606.png b/desktop/assets/data/graphics/606.png
new file mode 100644
index 00000000..8e898233
Binary files /dev/null and b/desktop/assets/data/graphics/606.png differ
diff --git a/desktop/assets/data/graphics/6064.png b/desktop/assets/data/graphics/6064.png
new file mode 100644
index 00000000..d09a53c2
Binary files /dev/null and b/desktop/assets/data/graphics/6064.png differ
diff --git a/desktop/assets/data/graphics/6065.png b/desktop/assets/data/graphics/6065.png
new file mode 100644
index 00000000..427d0ffb
Binary files /dev/null and b/desktop/assets/data/graphics/6065.png differ
diff --git a/desktop/assets/data/graphics/6066.png b/desktop/assets/data/graphics/6066.png
new file mode 100644
index 00000000..4bd6dbbf
Binary files /dev/null and b/desktop/assets/data/graphics/6066.png differ
diff --git a/desktop/assets/data/graphics/6067.png b/desktop/assets/data/graphics/6067.png
new file mode 100644
index 00000000..642d6859
Binary files /dev/null and b/desktop/assets/data/graphics/6067.png differ
diff --git a/desktop/assets/data/graphics/6068.png b/desktop/assets/data/graphics/6068.png
new file mode 100644
index 00000000..e85179b4
Binary files /dev/null and b/desktop/assets/data/graphics/6068.png differ
diff --git a/desktop/assets/data/graphics/6069.png b/desktop/assets/data/graphics/6069.png
new file mode 100644
index 00000000..b5ff10f1
Binary files /dev/null and b/desktop/assets/data/graphics/6069.png differ
diff --git a/desktop/assets/data/graphics/607.png b/desktop/assets/data/graphics/607.png
new file mode 100644
index 00000000..65fa56fc
Binary files /dev/null and b/desktop/assets/data/graphics/607.png differ
diff --git a/desktop/assets/data/graphics/6070.png b/desktop/assets/data/graphics/6070.png
new file mode 100644
index 00000000..eb351edc
Binary files /dev/null and b/desktop/assets/data/graphics/6070.png differ
diff --git a/desktop/assets/data/graphics/6071.png b/desktop/assets/data/graphics/6071.png
new file mode 100644
index 00000000..449487c9
Binary files /dev/null and b/desktop/assets/data/graphics/6071.png differ
diff --git a/desktop/assets/data/graphics/6072.png b/desktop/assets/data/graphics/6072.png
new file mode 100644
index 00000000..78893570
Binary files /dev/null and b/desktop/assets/data/graphics/6072.png differ
diff --git a/desktop/assets/data/graphics/6073.png b/desktop/assets/data/graphics/6073.png
new file mode 100644
index 00000000..8c662acc
Binary files /dev/null and b/desktop/assets/data/graphics/6073.png differ
diff --git a/desktop/assets/data/graphics/6074.png b/desktop/assets/data/graphics/6074.png
new file mode 100644
index 00000000..378685a8
Binary files /dev/null and b/desktop/assets/data/graphics/6074.png differ
diff --git a/desktop/assets/data/graphics/6075.png b/desktop/assets/data/graphics/6075.png
new file mode 100644
index 00000000..5914e926
Binary files /dev/null and b/desktop/assets/data/graphics/6075.png differ
diff --git a/desktop/assets/data/graphics/6076.png b/desktop/assets/data/graphics/6076.png
new file mode 100644
index 00000000..254075a2
Binary files /dev/null and b/desktop/assets/data/graphics/6076.png differ
diff --git a/desktop/assets/data/graphics/6077.png b/desktop/assets/data/graphics/6077.png
new file mode 100644
index 00000000..6d15dfac
Binary files /dev/null and b/desktop/assets/data/graphics/6077.png differ
diff --git a/desktop/assets/data/graphics/6078.png b/desktop/assets/data/graphics/6078.png
new file mode 100644
index 00000000..fea71f45
Binary files /dev/null and b/desktop/assets/data/graphics/6078.png differ
diff --git a/desktop/assets/data/graphics/6079.png b/desktop/assets/data/graphics/6079.png
new file mode 100644
index 00000000..c4c0c94b
Binary files /dev/null and b/desktop/assets/data/graphics/6079.png differ
diff --git a/desktop/assets/data/graphics/608.png b/desktop/assets/data/graphics/608.png
new file mode 100644
index 00000000..c3b07360
Binary files /dev/null and b/desktop/assets/data/graphics/608.png differ
diff --git a/desktop/assets/data/graphics/6080.png b/desktop/assets/data/graphics/6080.png
new file mode 100644
index 00000000..e938be2b
Binary files /dev/null and b/desktop/assets/data/graphics/6080.png differ
diff --git a/desktop/assets/data/graphics/6081.png b/desktop/assets/data/graphics/6081.png
new file mode 100644
index 00000000..2b885214
Binary files /dev/null and b/desktop/assets/data/graphics/6081.png differ
diff --git a/desktop/assets/data/graphics/6082.png b/desktop/assets/data/graphics/6082.png
new file mode 100644
index 00000000..c5cbe30a
Binary files /dev/null and b/desktop/assets/data/graphics/6082.png differ
diff --git a/desktop/assets/data/graphics/609.png b/desktop/assets/data/graphics/609.png
new file mode 100644
index 00000000..516a98e2
Binary files /dev/null and b/desktop/assets/data/graphics/609.png differ
diff --git a/desktop/assets/data/graphics/61.png b/desktop/assets/data/graphics/61.png
new file mode 100644
index 00000000..8826c3c1
Binary files /dev/null and b/desktop/assets/data/graphics/61.png differ
diff --git a/desktop/assets/data/graphics/610.png b/desktop/assets/data/graphics/610.png
new file mode 100644
index 00000000..3b88d3c1
Binary files /dev/null and b/desktop/assets/data/graphics/610.png differ
diff --git a/desktop/assets/data/graphics/611.png b/desktop/assets/data/graphics/611.png
new file mode 100644
index 00000000..6dcc8b18
Binary files /dev/null and b/desktop/assets/data/graphics/611.png differ
diff --git a/desktop/assets/data/graphics/612.png b/desktop/assets/data/graphics/612.png
new file mode 100644
index 00000000..1c81f73e
Binary files /dev/null and b/desktop/assets/data/graphics/612.png differ
diff --git a/desktop/assets/data/graphics/613.png b/desktop/assets/data/graphics/613.png
new file mode 100644
index 00000000..74745fac
Binary files /dev/null and b/desktop/assets/data/graphics/613.png differ
diff --git a/desktop/assets/data/graphics/614.png b/desktop/assets/data/graphics/614.png
new file mode 100644
index 00000000..454742ea
Binary files /dev/null and b/desktop/assets/data/graphics/614.png differ
diff --git a/desktop/assets/data/graphics/615.png b/desktop/assets/data/graphics/615.png
new file mode 100644
index 00000000..80d51422
Binary files /dev/null and b/desktop/assets/data/graphics/615.png differ
diff --git a/desktop/assets/data/graphics/616.png b/desktop/assets/data/graphics/616.png
new file mode 100644
index 00000000..20b1c7b2
Binary files /dev/null and b/desktop/assets/data/graphics/616.png differ
diff --git a/desktop/assets/data/graphics/617.png b/desktop/assets/data/graphics/617.png
new file mode 100644
index 00000000..d9cc20ef
Binary files /dev/null and b/desktop/assets/data/graphics/617.png differ
diff --git a/desktop/assets/data/graphics/618.png b/desktop/assets/data/graphics/618.png
new file mode 100644
index 00000000..2815c73e
Binary files /dev/null and b/desktop/assets/data/graphics/618.png differ
diff --git a/desktop/assets/data/graphics/619.png b/desktop/assets/data/graphics/619.png
new file mode 100644
index 00000000..d8bc91a0
Binary files /dev/null and b/desktop/assets/data/graphics/619.png differ
diff --git a/desktop/assets/data/graphics/62.png b/desktop/assets/data/graphics/62.png
new file mode 100644
index 00000000..03dfcbae
Binary files /dev/null and b/desktop/assets/data/graphics/62.png differ
diff --git a/desktop/assets/data/graphics/620.png b/desktop/assets/data/graphics/620.png
new file mode 100644
index 00000000..5a10d08e
Binary files /dev/null and b/desktop/assets/data/graphics/620.png differ
diff --git a/desktop/assets/data/graphics/621.png b/desktop/assets/data/graphics/621.png
new file mode 100644
index 00000000..fa6da5cd
Binary files /dev/null and b/desktop/assets/data/graphics/621.png differ
diff --git a/desktop/assets/data/graphics/622.png b/desktop/assets/data/graphics/622.png
new file mode 100644
index 00000000..a18fc16e
Binary files /dev/null and b/desktop/assets/data/graphics/622.png differ
diff --git a/desktop/assets/data/graphics/623.png b/desktop/assets/data/graphics/623.png
new file mode 100644
index 00000000..319c3993
Binary files /dev/null and b/desktop/assets/data/graphics/623.png differ
diff --git a/desktop/assets/data/graphics/624.png b/desktop/assets/data/graphics/624.png
new file mode 100644
index 00000000..85ba1843
Binary files /dev/null and b/desktop/assets/data/graphics/624.png differ
diff --git a/desktop/assets/data/graphics/625.png b/desktop/assets/data/graphics/625.png
new file mode 100644
index 00000000..fa5c1db5
Binary files /dev/null and b/desktop/assets/data/graphics/625.png differ
diff --git a/desktop/assets/data/graphics/626.png b/desktop/assets/data/graphics/626.png
new file mode 100644
index 00000000..13960e7d
Binary files /dev/null and b/desktop/assets/data/graphics/626.png differ
diff --git a/desktop/assets/data/graphics/627.png b/desktop/assets/data/graphics/627.png
new file mode 100644
index 00000000..4bcd44e6
Binary files /dev/null and b/desktop/assets/data/graphics/627.png differ
diff --git a/desktop/assets/data/graphics/628.png b/desktop/assets/data/graphics/628.png
new file mode 100644
index 00000000..5b571569
Binary files /dev/null and b/desktop/assets/data/graphics/628.png differ
diff --git a/desktop/assets/data/graphics/629.png b/desktop/assets/data/graphics/629.png
new file mode 100644
index 00000000..389706c3
Binary files /dev/null and b/desktop/assets/data/graphics/629.png differ
diff --git a/desktop/assets/data/graphics/63.png b/desktop/assets/data/graphics/63.png
new file mode 100644
index 00000000..17f5b5dd
Binary files /dev/null and b/desktop/assets/data/graphics/63.png differ
diff --git a/desktop/assets/data/graphics/630.png b/desktop/assets/data/graphics/630.png
new file mode 100644
index 00000000..9cf5c877
Binary files /dev/null and b/desktop/assets/data/graphics/630.png differ
diff --git a/desktop/assets/data/graphics/631.png b/desktop/assets/data/graphics/631.png
new file mode 100644
index 00000000..32f919e0
Binary files /dev/null and b/desktop/assets/data/graphics/631.png differ
diff --git a/desktop/assets/data/graphics/632.png b/desktop/assets/data/graphics/632.png
new file mode 100644
index 00000000..d23d00b9
Binary files /dev/null and b/desktop/assets/data/graphics/632.png differ
diff --git a/desktop/assets/data/graphics/633.png b/desktop/assets/data/graphics/633.png
new file mode 100644
index 00000000..611e8421
Binary files /dev/null and b/desktop/assets/data/graphics/633.png differ
diff --git a/desktop/assets/data/graphics/634.png b/desktop/assets/data/graphics/634.png
new file mode 100644
index 00000000..feb4263e
Binary files /dev/null and b/desktop/assets/data/graphics/634.png differ
diff --git a/desktop/assets/data/graphics/635.png b/desktop/assets/data/graphics/635.png
new file mode 100644
index 00000000..a06f8b97
Binary files /dev/null and b/desktop/assets/data/graphics/635.png differ
diff --git a/desktop/assets/data/graphics/636.png b/desktop/assets/data/graphics/636.png
new file mode 100644
index 00000000..a03995d2
Binary files /dev/null and b/desktop/assets/data/graphics/636.png differ
diff --git a/desktop/assets/data/graphics/637.png b/desktop/assets/data/graphics/637.png
new file mode 100644
index 00000000..bbc6c9fd
Binary files /dev/null and b/desktop/assets/data/graphics/637.png differ
diff --git a/desktop/assets/data/graphics/638.png b/desktop/assets/data/graphics/638.png
new file mode 100644
index 00000000..06404797
Binary files /dev/null and b/desktop/assets/data/graphics/638.png differ
diff --git a/desktop/assets/data/graphics/639.png b/desktop/assets/data/graphics/639.png
new file mode 100644
index 00000000..83b59d16
Binary files /dev/null and b/desktop/assets/data/graphics/639.png differ
diff --git a/desktop/assets/data/graphics/64.png b/desktop/assets/data/graphics/64.png
new file mode 100644
index 00000000..e57d53c8
Binary files /dev/null and b/desktop/assets/data/graphics/64.png differ
diff --git a/desktop/assets/data/graphics/640.png b/desktop/assets/data/graphics/640.png
new file mode 100644
index 00000000..861e9220
Binary files /dev/null and b/desktop/assets/data/graphics/640.png differ
diff --git a/desktop/assets/data/graphics/641.png b/desktop/assets/data/graphics/641.png
new file mode 100644
index 00000000..79254592
Binary files /dev/null and b/desktop/assets/data/graphics/641.png differ
diff --git a/desktop/assets/data/graphics/642.png b/desktop/assets/data/graphics/642.png
new file mode 100644
index 00000000..510e2e54
Binary files /dev/null and b/desktop/assets/data/graphics/642.png differ
diff --git a/desktop/assets/data/graphics/643.png b/desktop/assets/data/graphics/643.png
new file mode 100644
index 00000000..2a3fc420
Binary files /dev/null and b/desktop/assets/data/graphics/643.png differ
diff --git a/desktop/assets/data/graphics/644.png b/desktop/assets/data/graphics/644.png
new file mode 100644
index 00000000..47dac8eb
Binary files /dev/null and b/desktop/assets/data/graphics/644.png differ
diff --git a/desktop/assets/data/graphics/645.png b/desktop/assets/data/graphics/645.png
new file mode 100644
index 00000000..101093ab
Binary files /dev/null and b/desktop/assets/data/graphics/645.png differ
diff --git a/desktop/assets/data/graphics/646.png b/desktop/assets/data/graphics/646.png
new file mode 100644
index 00000000..1b42649d
Binary files /dev/null and b/desktop/assets/data/graphics/646.png differ
diff --git a/desktop/assets/data/graphics/647.png b/desktop/assets/data/graphics/647.png
new file mode 100644
index 00000000..805b9506
Binary files /dev/null and b/desktop/assets/data/graphics/647.png differ
diff --git a/desktop/assets/data/graphics/648.png b/desktop/assets/data/graphics/648.png
new file mode 100644
index 00000000..299d8db0
Binary files /dev/null and b/desktop/assets/data/graphics/648.png differ
diff --git a/desktop/assets/data/graphics/649.png b/desktop/assets/data/graphics/649.png
new file mode 100644
index 00000000..0bbd1ae5
Binary files /dev/null and b/desktop/assets/data/graphics/649.png differ
diff --git a/desktop/assets/data/graphics/65.png b/desktop/assets/data/graphics/65.png
new file mode 100644
index 00000000..e1cee519
Binary files /dev/null and b/desktop/assets/data/graphics/65.png differ
diff --git a/desktop/assets/data/graphics/650.png b/desktop/assets/data/graphics/650.png
new file mode 100644
index 00000000..b9e4bc4b
Binary files /dev/null and b/desktop/assets/data/graphics/650.png differ
diff --git a/desktop/assets/data/graphics/651.png b/desktop/assets/data/graphics/651.png
new file mode 100644
index 00000000..f6a30b9e
Binary files /dev/null and b/desktop/assets/data/graphics/651.png differ
diff --git a/desktop/assets/data/graphics/652.png b/desktop/assets/data/graphics/652.png
new file mode 100644
index 00000000..0f00e787
Binary files /dev/null and b/desktop/assets/data/graphics/652.png differ
diff --git a/desktop/assets/data/graphics/653.png b/desktop/assets/data/graphics/653.png
new file mode 100644
index 00000000..998143f5
Binary files /dev/null and b/desktop/assets/data/graphics/653.png differ
diff --git a/desktop/assets/data/graphics/654.png b/desktop/assets/data/graphics/654.png
new file mode 100644
index 00000000..10a6ef28
Binary files /dev/null and b/desktop/assets/data/graphics/654.png differ
diff --git a/desktop/assets/data/graphics/655.png b/desktop/assets/data/graphics/655.png
new file mode 100644
index 00000000..60987d52
Binary files /dev/null and b/desktop/assets/data/graphics/655.png differ
diff --git a/desktop/assets/data/graphics/656.png b/desktop/assets/data/graphics/656.png
new file mode 100644
index 00000000..20a29c03
Binary files /dev/null and b/desktop/assets/data/graphics/656.png differ
diff --git a/desktop/assets/data/graphics/657.png b/desktop/assets/data/graphics/657.png
new file mode 100644
index 00000000..d75476a1
Binary files /dev/null and b/desktop/assets/data/graphics/657.png differ
diff --git a/desktop/assets/data/graphics/658.png b/desktop/assets/data/graphics/658.png
new file mode 100644
index 00000000..f3372375
Binary files /dev/null and b/desktop/assets/data/graphics/658.png differ
diff --git a/desktop/assets/data/graphics/659.png b/desktop/assets/data/graphics/659.png
new file mode 100644
index 00000000..c1291904
Binary files /dev/null and b/desktop/assets/data/graphics/659.png differ
diff --git a/desktop/assets/data/graphics/66.png b/desktop/assets/data/graphics/66.png
new file mode 100644
index 00000000..621a590f
Binary files /dev/null and b/desktop/assets/data/graphics/66.png differ
diff --git a/desktop/assets/data/graphics/660.png b/desktop/assets/data/graphics/660.png
new file mode 100644
index 00000000..f39a862c
Binary files /dev/null and b/desktop/assets/data/graphics/660.png differ
diff --git a/desktop/assets/data/graphics/661.png b/desktop/assets/data/graphics/661.png
new file mode 100644
index 00000000..c3dfddee
Binary files /dev/null and b/desktop/assets/data/graphics/661.png differ
diff --git a/desktop/assets/data/graphics/662.png b/desktop/assets/data/graphics/662.png
new file mode 100644
index 00000000..cd1fd2da
Binary files /dev/null and b/desktop/assets/data/graphics/662.png differ
diff --git a/desktop/assets/data/graphics/663.png b/desktop/assets/data/graphics/663.png
new file mode 100644
index 00000000..1ffef894
Binary files /dev/null and b/desktop/assets/data/graphics/663.png differ
diff --git a/desktop/assets/data/graphics/664.png b/desktop/assets/data/graphics/664.png
new file mode 100644
index 00000000..e698f242
Binary files /dev/null and b/desktop/assets/data/graphics/664.png differ
diff --git a/desktop/assets/data/graphics/665.png b/desktop/assets/data/graphics/665.png
new file mode 100644
index 00000000..9fc352e4
Binary files /dev/null and b/desktop/assets/data/graphics/665.png differ
diff --git a/desktop/assets/data/graphics/666.png b/desktop/assets/data/graphics/666.png
new file mode 100644
index 00000000..8f015066
Binary files /dev/null and b/desktop/assets/data/graphics/666.png differ
diff --git a/desktop/assets/data/graphics/667.png b/desktop/assets/data/graphics/667.png
new file mode 100644
index 00000000..52e09eac
Binary files /dev/null and b/desktop/assets/data/graphics/667.png differ
diff --git a/desktop/assets/data/graphics/668.png b/desktop/assets/data/graphics/668.png
new file mode 100644
index 00000000..9849a465
Binary files /dev/null and b/desktop/assets/data/graphics/668.png differ
diff --git a/desktop/assets/data/graphics/669.png b/desktop/assets/data/graphics/669.png
new file mode 100644
index 00000000..874f536c
Binary files /dev/null and b/desktop/assets/data/graphics/669.png differ
diff --git a/desktop/assets/data/graphics/67.png b/desktop/assets/data/graphics/67.png
new file mode 100644
index 00000000..e71e30f4
Binary files /dev/null and b/desktop/assets/data/graphics/67.png differ
diff --git a/desktop/assets/data/graphics/670.png b/desktop/assets/data/graphics/670.png
new file mode 100644
index 00000000..05a73b92
Binary files /dev/null and b/desktop/assets/data/graphics/670.png differ
diff --git a/desktop/assets/data/graphics/671.png b/desktop/assets/data/graphics/671.png
new file mode 100644
index 00000000..05fd29e0
Binary files /dev/null and b/desktop/assets/data/graphics/671.png differ
diff --git a/desktop/assets/data/graphics/672.png b/desktop/assets/data/graphics/672.png
new file mode 100644
index 00000000..0d829476
Binary files /dev/null and b/desktop/assets/data/graphics/672.png differ
diff --git a/desktop/assets/data/graphics/673.png b/desktop/assets/data/graphics/673.png
new file mode 100644
index 00000000..c8767e52
Binary files /dev/null and b/desktop/assets/data/graphics/673.png differ
diff --git a/desktop/assets/data/graphics/674.png b/desktop/assets/data/graphics/674.png
new file mode 100644
index 00000000..71300e7d
Binary files /dev/null and b/desktop/assets/data/graphics/674.png differ
diff --git a/desktop/assets/data/graphics/675.png b/desktop/assets/data/graphics/675.png
new file mode 100644
index 00000000..9a6220c3
Binary files /dev/null and b/desktop/assets/data/graphics/675.png differ
diff --git a/desktop/assets/data/graphics/676.png b/desktop/assets/data/graphics/676.png
new file mode 100644
index 00000000..f4476eef
Binary files /dev/null and b/desktop/assets/data/graphics/676.png differ
diff --git a/desktop/assets/data/graphics/677.png b/desktop/assets/data/graphics/677.png
new file mode 100644
index 00000000..ff5a1376
Binary files /dev/null and b/desktop/assets/data/graphics/677.png differ
diff --git a/desktop/assets/data/graphics/678.png b/desktop/assets/data/graphics/678.png
new file mode 100644
index 00000000..7f29c589
Binary files /dev/null and b/desktop/assets/data/graphics/678.png differ
diff --git a/desktop/assets/data/graphics/679.png b/desktop/assets/data/graphics/679.png
new file mode 100644
index 00000000..80a70878
Binary files /dev/null and b/desktop/assets/data/graphics/679.png differ
diff --git a/desktop/assets/data/graphics/68.png b/desktop/assets/data/graphics/68.png
new file mode 100644
index 00000000..b04f0b7e
Binary files /dev/null and b/desktop/assets/data/graphics/68.png differ
diff --git a/desktop/assets/data/graphics/680.png b/desktop/assets/data/graphics/680.png
new file mode 100644
index 00000000..e9745f0c
Binary files /dev/null and b/desktop/assets/data/graphics/680.png differ
diff --git a/desktop/assets/data/graphics/681.png b/desktop/assets/data/graphics/681.png
new file mode 100644
index 00000000..f2b711e2
Binary files /dev/null and b/desktop/assets/data/graphics/681.png differ
diff --git a/desktop/assets/data/graphics/682.png b/desktop/assets/data/graphics/682.png
new file mode 100644
index 00000000..74ad7e8d
Binary files /dev/null and b/desktop/assets/data/graphics/682.png differ
diff --git a/desktop/assets/data/graphics/683.png b/desktop/assets/data/graphics/683.png
new file mode 100644
index 00000000..9e2d8953
Binary files /dev/null and b/desktop/assets/data/graphics/683.png differ
diff --git a/desktop/assets/data/graphics/69.png b/desktop/assets/data/graphics/69.png
new file mode 100644
index 00000000..5138284e
Binary files /dev/null and b/desktop/assets/data/graphics/69.png differ
diff --git a/desktop/assets/data/graphics/7.png b/desktop/assets/data/graphics/7.png
new file mode 100644
index 00000000..5615f5cc
Binary files /dev/null and b/desktop/assets/data/graphics/7.png differ
diff --git a/desktop/assets/data/graphics/70.png b/desktop/assets/data/graphics/70.png
new file mode 100644
index 00000000..e9eb2f60
Binary files /dev/null and b/desktop/assets/data/graphics/70.png differ
diff --git a/desktop/assets/data/graphics/7000.png b/desktop/assets/data/graphics/7000.png
new file mode 100644
index 00000000..7cf12c3c
Binary files /dev/null and b/desktop/assets/data/graphics/7000.png differ
diff --git a/desktop/assets/data/graphics/7001.png b/desktop/assets/data/graphics/7001.png
new file mode 100644
index 00000000..9a7b94e3
Binary files /dev/null and b/desktop/assets/data/graphics/7001.png differ
diff --git a/desktop/assets/data/graphics/7002.png b/desktop/assets/data/graphics/7002.png
new file mode 100644
index 00000000..1ec26e13
Binary files /dev/null and b/desktop/assets/data/graphics/7002.png differ
diff --git a/desktop/assets/data/graphics/7003.png b/desktop/assets/data/graphics/7003.png
new file mode 100644
index 00000000..487d4aaf
Binary files /dev/null and b/desktop/assets/data/graphics/7003.png differ
diff --git a/desktop/assets/data/graphics/7004.png b/desktop/assets/data/graphics/7004.png
new file mode 100644
index 00000000..6c716aae
Binary files /dev/null and b/desktop/assets/data/graphics/7004.png differ
diff --git a/desktop/assets/data/graphics/7005.png b/desktop/assets/data/graphics/7005.png
new file mode 100644
index 00000000..27ac523b
Binary files /dev/null and b/desktop/assets/data/graphics/7005.png differ
diff --git a/desktop/assets/data/graphics/7006.png b/desktop/assets/data/graphics/7006.png
new file mode 100644
index 00000000..11ddeb0a
Binary files /dev/null and b/desktop/assets/data/graphics/7006.png differ
diff --git a/desktop/assets/data/graphics/7007.png b/desktop/assets/data/graphics/7007.png
new file mode 100644
index 00000000..3d5cd70d
Binary files /dev/null and b/desktop/assets/data/graphics/7007.png differ
diff --git a/desktop/assets/data/graphics/7008.png b/desktop/assets/data/graphics/7008.png
new file mode 100644
index 00000000..766d6867
Binary files /dev/null and b/desktop/assets/data/graphics/7008.png differ
diff --git a/desktop/assets/data/graphics/7009.png b/desktop/assets/data/graphics/7009.png
new file mode 100644
index 00000000..fd1998f0
Binary files /dev/null and b/desktop/assets/data/graphics/7009.png differ
diff --git a/desktop/assets/data/graphics/7010.png b/desktop/assets/data/graphics/7010.png
new file mode 100644
index 00000000..3024bd60
Binary files /dev/null and b/desktop/assets/data/graphics/7010.png differ
diff --git a/desktop/assets/data/graphics/7011.png b/desktop/assets/data/graphics/7011.png
new file mode 100644
index 00000000..a5ca3779
Binary files /dev/null and b/desktop/assets/data/graphics/7011.png differ
diff --git a/desktop/assets/data/graphics/7012.png b/desktop/assets/data/graphics/7012.png
new file mode 100644
index 00000000..4afd07c3
Binary files /dev/null and b/desktop/assets/data/graphics/7012.png differ
diff --git a/desktop/assets/data/graphics/7013.png b/desktop/assets/data/graphics/7013.png
new file mode 100644
index 00000000..0160d25b
Binary files /dev/null and b/desktop/assets/data/graphics/7013.png differ
diff --git a/desktop/assets/data/graphics/7014.png b/desktop/assets/data/graphics/7014.png
new file mode 100644
index 00000000..0f6c88fc
Binary files /dev/null and b/desktop/assets/data/graphics/7014.png differ
diff --git a/desktop/assets/data/graphics/7015.png b/desktop/assets/data/graphics/7015.png
new file mode 100644
index 00000000..61e56267
Binary files /dev/null and b/desktop/assets/data/graphics/7015.png differ
diff --git a/desktop/assets/data/graphics/7016.png b/desktop/assets/data/graphics/7016.png
new file mode 100644
index 00000000..99caf060
Binary files /dev/null and b/desktop/assets/data/graphics/7016.png differ
diff --git a/desktop/assets/data/graphics/7017.png b/desktop/assets/data/graphics/7017.png
new file mode 100644
index 00000000..01cf77fc
Binary files /dev/null and b/desktop/assets/data/graphics/7017.png differ
diff --git a/desktop/assets/data/graphics/7018.png b/desktop/assets/data/graphics/7018.png
new file mode 100644
index 00000000..149823b1
Binary files /dev/null and b/desktop/assets/data/graphics/7018.png differ
diff --git a/desktop/assets/data/graphics/7019.png b/desktop/assets/data/graphics/7019.png
new file mode 100644
index 00000000..4ce5eb39
Binary files /dev/null and b/desktop/assets/data/graphics/7019.png differ
diff --git a/desktop/assets/data/graphics/7020.png b/desktop/assets/data/graphics/7020.png
new file mode 100644
index 00000000..708fba33
Binary files /dev/null and b/desktop/assets/data/graphics/7020.png differ
diff --git a/desktop/assets/data/graphics/7021.png b/desktop/assets/data/graphics/7021.png
new file mode 100644
index 00000000..4e755d8b
Binary files /dev/null and b/desktop/assets/data/graphics/7021.png differ
diff --git a/desktop/assets/data/graphics/7022.png b/desktop/assets/data/graphics/7022.png
new file mode 100644
index 00000000..2ca1c703
Binary files /dev/null and b/desktop/assets/data/graphics/7022.png differ
diff --git a/desktop/assets/data/graphics/7023.png b/desktop/assets/data/graphics/7023.png
new file mode 100644
index 00000000..e48d54a8
Binary files /dev/null and b/desktop/assets/data/graphics/7023.png differ
diff --git a/desktop/assets/data/graphics/7024.png b/desktop/assets/data/graphics/7024.png
new file mode 100644
index 00000000..772b9042
Binary files /dev/null and b/desktop/assets/data/graphics/7024.png differ
diff --git a/desktop/assets/data/graphics/7025.png b/desktop/assets/data/graphics/7025.png
new file mode 100644
index 00000000..3d54ffb8
Binary files /dev/null and b/desktop/assets/data/graphics/7025.png differ
diff --git a/desktop/assets/data/graphics/7026.png b/desktop/assets/data/graphics/7026.png
new file mode 100644
index 00000000..943bfb5e
Binary files /dev/null and b/desktop/assets/data/graphics/7026.png differ
diff --git a/desktop/assets/data/graphics/7027.png b/desktop/assets/data/graphics/7027.png
new file mode 100644
index 00000000..9444fdd5
Binary files /dev/null and b/desktop/assets/data/graphics/7027.png differ
diff --git a/desktop/assets/data/graphics/7028.png b/desktop/assets/data/graphics/7028.png
new file mode 100644
index 00000000..575a0f07
Binary files /dev/null and b/desktop/assets/data/graphics/7028.png differ
diff --git a/desktop/assets/data/graphics/7029.png b/desktop/assets/data/graphics/7029.png
new file mode 100644
index 00000000..b5df8ce2
Binary files /dev/null and b/desktop/assets/data/graphics/7029.png differ
diff --git a/desktop/assets/data/graphics/7030.png b/desktop/assets/data/graphics/7030.png
new file mode 100644
index 00000000..618d1472
Binary files /dev/null and b/desktop/assets/data/graphics/7030.png differ
diff --git a/desktop/assets/data/graphics/7031.png b/desktop/assets/data/graphics/7031.png
new file mode 100644
index 00000000..fd5e0732
Binary files /dev/null and b/desktop/assets/data/graphics/7031.png differ
diff --git a/desktop/assets/data/graphics/7032.png b/desktop/assets/data/graphics/7032.png
new file mode 100644
index 00000000..7c0edd8c
Binary files /dev/null and b/desktop/assets/data/graphics/7032.png differ
diff --git a/desktop/assets/data/graphics/7033.png b/desktop/assets/data/graphics/7033.png
new file mode 100644
index 00000000..e1a41086
Binary files /dev/null and b/desktop/assets/data/graphics/7033.png differ
diff --git a/desktop/assets/data/graphics/7034.png b/desktop/assets/data/graphics/7034.png
new file mode 100644
index 00000000..b8770d3e
Binary files /dev/null and b/desktop/assets/data/graphics/7034.png differ
diff --git a/desktop/assets/data/graphics/7035.png b/desktop/assets/data/graphics/7035.png
new file mode 100644
index 00000000..22513557
Binary files /dev/null and b/desktop/assets/data/graphics/7035.png differ
diff --git a/desktop/assets/data/graphics/7036.png b/desktop/assets/data/graphics/7036.png
new file mode 100644
index 00000000..90ada51b
Binary files /dev/null and b/desktop/assets/data/graphics/7036.png differ
diff --git a/desktop/assets/data/graphics/7037.png b/desktop/assets/data/graphics/7037.png
new file mode 100644
index 00000000..6034ef2e
Binary files /dev/null and b/desktop/assets/data/graphics/7037.png differ
diff --git a/desktop/assets/data/graphics/7038.png b/desktop/assets/data/graphics/7038.png
new file mode 100644
index 00000000..99c78c3f
Binary files /dev/null and b/desktop/assets/data/graphics/7038.png differ
diff --git a/desktop/assets/data/graphics/7039.png b/desktop/assets/data/graphics/7039.png
new file mode 100644
index 00000000..98da38c6
Binary files /dev/null and b/desktop/assets/data/graphics/7039.png differ
diff --git a/desktop/assets/data/graphics/7040.png b/desktop/assets/data/graphics/7040.png
new file mode 100644
index 00000000..bd69ea2e
Binary files /dev/null and b/desktop/assets/data/graphics/7040.png differ
diff --git a/desktop/assets/data/graphics/7041.png b/desktop/assets/data/graphics/7041.png
new file mode 100644
index 00000000..9873b05d
Binary files /dev/null and b/desktop/assets/data/graphics/7041.png differ
diff --git a/desktop/assets/data/graphics/7042.png b/desktop/assets/data/graphics/7042.png
new file mode 100644
index 00000000..2ee3937e
Binary files /dev/null and b/desktop/assets/data/graphics/7042.png differ
diff --git a/desktop/assets/data/graphics/7043.png b/desktop/assets/data/graphics/7043.png
new file mode 100644
index 00000000..0b6f7f53
Binary files /dev/null and b/desktop/assets/data/graphics/7043.png differ
diff --git a/desktop/assets/data/graphics/7044.png b/desktop/assets/data/graphics/7044.png
new file mode 100644
index 00000000..3c439904
Binary files /dev/null and b/desktop/assets/data/graphics/7044.png differ
diff --git a/desktop/assets/data/graphics/7045.png b/desktop/assets/data/graphics/7045.png
new file mode 100644
index 00000000..21b6209c
Binary files /dev/null and b/desktop/assets/data/graphics/7045.png differ
diff --git a/desktop/assets/data/graphics/7046.png b/desktop/assets/data/graphics/7046.png
new file mode 100644
index 00000000..e0906582
Binary files /dev/null and b/desktop/assets/data/graphics/7046.png differ
diff --git a/desktop/assets/data/graphics/7047.png b/desktop/assets/data/graphics/7047.png
new file mode 100644
index 00000000..36e370fd
Binary files /dev/null and b/desktop/assets/data/graphics/7047.png differ
diff --git a/desktop/assets/data/graphics/7048.png b/desktop/assets/data/graphics/7048.png
new file mode 100644
index 00000000..1d24e3d1
Binary files /dev/null and b/desktop/assets/data/graphics/7048.png differ
diff --git a/desktop/assets/data/graphics/7049.png b/desktop/assets/data/graphics/7049.png
new file mode 100644
index 00000000..4563b79c
Binary files /dev/null and b/desktop/assets/data/graphics/7049.png differ
diff --git a/desktop/assets/data/graphics/7050.png b/desktop/assets/data/graphics/7050.png
new file mode 100644
index 00000000..a85f90f5
Binary files /dev/null and b/desktop/assets/data/graphics/7050.png differ
diff --git a/desktop/assets/data/graphics/7051.png b/desktop/assets/data/graphics/7051.png
new file mode 100644
index 00000000..c0c29596
Binary files /dev/null and b/desktop/assets/data/graphics/7051.png differ
diff --git a/desktop/assets/data/graphics/7052.png b/desktop/assets/data/graphics/7052.png
new file mode 100644
index 00000000..163287b6
Binary files /dev/null and b/desktop/assets/data/graphics/7052.png differ
diff --git a/desktop/assets/data/graphics/7053.png b/desktop/assets/data/graphics/7053.png
new file mode 100644
index 00000000..a0ebb01f
Binary files /dev/null and b/desktop/assets/data/graphics/7053.png differ
diff --git a/desktop/assets/data/graphics/7054.png b/desktop/assets/data/graphics/7054.png
new file mode 100644
index 00000000..85cd52f4
Binary files /dev/null and b/desktop/assets/data/graphics/7054.png differ
diff --git a/desktop/assets/data/graphics/7055.png b/desktop/assets/data/graphics/7055.png
new file mode 100644
index 00000000..67a0d150
Binary files /dev/null and b/desktop/assets/data/graphics/7055.png differ
diff --git a/desktop/assets/data/graphics/7056.png b/desktop/assets/data/graphics/7056.png
new file mode 100644
index 00000000..82f7561f
Binary files /dev/null and b/desktop/assets/data/graphics/7056.png differ
diff --git a/desktop/assets/data/graphics/7057.png b/desktop/assets/data/graphics/7057.png
new file mode 100644
index 00000000..90ee6b7e
Binary files /dev/null and b/desktop/assets/data/graphics/7057.png differ
diff --git a/desktop/assets/data/graphics/7058.png b/desktop/assets/data/graphics/7058.png
new file mode 100644
index 00000000..550bc98d
Binary files /dev/null and b/desktop/assets/data/graphics/7058.png differ
diff --git a/desktop/assets/data/graphics/7059.png b/desktop/assets/data/graphics/7059.png
new file mode 100644
index 00000000..2f7044ba
Binary files /dev/null and b/desktop/assets/data/graphics/7059.png differ
diff --git a/desktop/assets/data/graphics/7060.png b/desktop/assets/data/graphics/7060.png
new file mode 100644
index 00000000..303d0fc5
Binary files /dev/null and b/desktop/assets/data/graphics/7060.png differ
diff --git a/desktop/assets/data/graphics/7061.png b/desktop/assets/data/graphics/7061.png
new file mode 100644
index 00000000..658947b0
Binary files /dev/null and b/desktop/assets/data/graphics/7061.png differ
diff --git a/desktop/assets/data/graphics/7062.png b/desktop/assets/data/graphics/7062.png
new file mode 100644
index 00000000..17609cc6
Binary files /dev/null and b/desktop/assets/data/graphics/7062.png differ
diff --git a/desktop/assets/data/graphics/7063.png b/desktop/assets/data/graphics/7063.png
new file mode 100644
index 00000000..f8d2b7e3
Binary files /dev/null and b/desktop/assets/data/graphics/7063.png differ
diff --git a/desktop/assets/data/graphics/7064.png b/desktop/assets/data/graphics/7064.png
new file mode 100644
index 00000000..3491f79d
Binary files /dev/null and b/desktop/assets/data/graphics/7064.png differ
diff --git a/desktop/assets/data/graphics/7065.png b/desktop/assets/data/graphics/7065.png
new file mode 100644
index 00000000..6f20114a
Binary files /dev/null and b/desktop/assets/data/graphics/7065.png differ
diff --git a/desktop/assets/data/graphics/7066.png b/desktop/assets/data/graphics/7066.png
new file mode 100644
index 00000000..a5a54d18
Binary files /dev/null and b/desktop/assets/data/graphics/7066.png differ
diff --git a/desktop/assets/data/graphics/7067.png b/desktop/assets/data/graphics/7067.png
new file mode 100644
index 00000000..12e004a9
Binary files /dev/null and b/desktop/assets/data/graphics/7067.png differ
diff --git a/desktop/assets/data/graphics/7068.png b/desktop/assets/data/graphics/7068.png
new file mode 100644
index 00000000..e2843fe1
Binary files /dev/null and b/desktop/assets/data/graphics/7068.png differ
diff --git a/desktop/assets/data/graphics/7069.png b/desktop/assets/data/graphics/7069.png
new file mode 100644
index 00000000..a945f910
Binary files /dev/null and b/desktop/assets/data/graphics/7069.png differ
diff --git a/desktop/assets/data/graphics/7070.png b/desktop/assets/data/graphics/7070.png
new file mode 100644
index 00000000..8e6808c4
Binary files /dev/null and b/desktop/assets/data/graphics/7070.png differ
diff --git a/desktop/assets/data/graphics/7071.png b/desktop/assets/data/graphics/7071.png
new file mode 100644
index 00000000..333700ef
Binary files /dev/null and b/desktop/assets/data/graphics/7071.png differ
diff --git a/desktop/assets/data/graphics/7072.png b/desktop/assets/data/graphics/7072.png
new file mode 100644
index 00000000..8ae80aa8
Binary files /dev/null and b/desktop/assets/data/graphics/7072.png differ
diff --git a/desktop/assets/data/graphics/7073.png b/desktop/assets/data/graphics/7073.png
new file mode 100644
index 00000000..63bd8287
Binary files /dev/null and b/desktop/assets/data/graphics/7073.png differ
diff --git a/desktop/assets/data/graphics/7074.png b/desktop/assets/data/graphics/7074.png
new file mode 100644
index 00000000..5816e59b
Binary files /dev/null and b/desktop/assets/data/graphics/7074.png differ
diff --git a/desktop/assets/data/graphics/7075.png b/desktop/assets/data/graphics/7075.png
new file mode 100644
index 00000000..82f8ca1c
Binary files /dev/null and b/desktop/assets/data/graphics/7075.png differ
diff --git a/desktop/assets/data/graphics/7076.png b/desktop/assets/data/graphics/7076.png
new file mode 100644
index 00000000..18def1e4
Binary files /dev/null and b/desktop/assets/data/graphics/7076.png differ
diff --git a/desktop/assets/data/graphics/7077.png b/desktop/assets/data/graphics/7077.png
new file mode 100644
index 00000000..ed8f7194
Binary files /dev/null and b/desktop/assets/data/graphics/7077.png differ
diff --git a/desktop/assets/data/graphics/71.png b/desktop/assets/data/graphics/71.png
new file mode 100644
index 00000000..a5226d10
Binary files /dev/null and b/desktop/assets/data/graphics/71.png differ
diff --git a/desktop/assets/data/graphics/72.png b/desktop/assets/data/graphics/72.png
new file mode 100644
index 00000000..0125b1bf
Binary files /dev/null and b/desktop/assets/data/graphics/72.png differ
diff --git a/desktop/assets/data/graphics/73.png b/desktop/assets/data/graphics/73.png
new file mode 100644
index 00000000..231e0ecd
Binary files /dev/null and b/desktop/assets/data/graphics/73.png differ
diff --git a/desktop/assets/data/graphics/74.png b/desktop/assets/data/graphics/74.png
new file mode 100644
index 00000000..39a708f9
Binary files /dev/null and b/desktop/assets/data/graphics/74.png differ
diff --git a/desktop/assets/data/graphics/75.png b/desktop/assets/data/graphics/75.png
new file mode 100644
index 00000000..23014ca5
Binary files /dev/null and b/desktop/assets/data/graphics/75.png differ
diff --git a/desktop/assets/data/graphics/76.png b/desktop/assets/data/graphics/76.png
new file mode 100644
index 00000000..10f7a638
Binary files /dev/null and b/desktop/assets/data/graphics/76.png differ
diff --git a/desktop/assets/data/graphics/77.png b/desktop/assets/data/graphics/77.png
new file mode 100644
index 00000000..9ee222ca
Binary files /dev/null and b/desktop/assets/data/graphics/77.png differ
diff --git a/desktop/assets/data/graphics/78.png b/desktop/assets/data/graphics/78.png
new file mode 100644
index 00000000..8e93c1c5
Binary files /dev/null and b/desktop/assets/data/graphics/78.png differ
diff --git a/desktop/assets/data/graphics/79.png b/desktop/assets/data/graphics/79.png
new file mode 100644
index 00000000..78a63766
Binary files /dev/null and b/desktop/assets/data/graphics/79.png differ
diff --git a/desktop/assets/data/graphics/8.png b/desktop/assets/data/graphics/8.png
new file mode 100644
index 00000000..1c374107
Binary files /dev/null and b/desktop/assets/data/graphics/8.png differ
diff --git a/desktop/assets/data/graphics/80.png b/desktop/assets/data/graphics/80.png
new file mode 100644
index 00000000..8a88ba20
Binary files /dev/null and b/desktop/assets/data/graphics/80.png differ
diff --git a/desktop/assets/data/graphics/8000.png b/desktop/assets/data/graphics/8000.png
new file mode 100644
index 00000000..2d4ba3c2
Binary files /dev/null and b/desktop/assets/data/graphics/8000.png differ
diff --git a/desktop/assets/data/graphics/8001.png b/desktop/assets/data/graphics/8001.png
new file mode 100644
index 00000000..5f16d2e8
Binary files /dev/null and b/desktop/assets/data/graphics/8001.png differ
diff --git a/desktop/assets/data/graphics/8002.png b/desktop/assets/data/graphics/8002.png
new file mode 100644
index 00000000..275d9deb
Binary files /dev/null and b/desktop/assets/data/graphics/8002.png differ
diff --git a/desktop/assets/data/graphics/8003.png b/desktop/assets/data/graphics/8003.png
new file mode 100644
index 00000000..c0d7f054
Binary files /dev/null and b/desktop/assets/data/graphics/8003.png differ
diff --git a/desktop/assets/data/graphics/8004.png b/desktop/assets/data/graphics/8004.png
new file mode 100644
index 00000000..d54a06ee
Binary files /dev/null and b/desktop/assets/data/graphics/8004.png differ
diff --git a/desktop/assets/data/graphics/8005.png b/desktop/assets/data/graphics/8005.png
new file mode 100644
index 00000000..4d316ac4
Binary files /dev/null and b/desktop/assets/data/graphics/8005.png differ
diff --git a/desktop/assets/data/graphics/8006.png b/desktop/assets/data/graphics/8006.png
new file mode 100644
index 00000000..f775b5a0
Binary files /dev/null and b/desktop/assets/data/graphics/8006.png differ
diff --git a/desktop/assets/data/graphics/8007.png b/desktop/assets/data/graphics/8007.png
new file mode 100644
index 00000000..a9e795f5
Binary files /dev/null and b/desktop/assets/data/graphics/8007.png differ
diff --git a/desktop/assets/data/graphics/8008.png b/desktop/assets/data/graphics/8008.png
new file mode 100644
index 00000000..9df3ce35
Binary files /dev/null and b/desktop/assets/data/graphics/8008.png differ
diff --git a/desktop/assets/data/graphics/8009.png b/desktop/assets/data/graphics/8009.png
new file mode 100644
index 00000000..27df00dd
Binary files /dev/null and b/desktop/assets/data/graphics/8009.png differ
diff --git a/desktop/assets/data/graphics/8010.png b/desktop/assets/data/graphics/8010.png
new file mode 100644
index 00000000..94022ce0
Binary files /dev/null and b/desktop/assets/data/graphics/8010.png differ
diff --git a/desktop/assets/data/graphics/8011.png b/desktop/assets/data/graphics/8011.png
new file mode 100644
index 00000000..5edd7cde
Binary files /dev/null and b/desktop/assets/data/graphics/8011.png differ
diff --git a/desktop/assets/data/graphics/8012.png b/desktop/assets/data/graphics/8012.png
new file mode 100644
index 00000000..85aec366
Binary files /dev/null and b/desktop/assets/data/graphics/8012.png differ
diff --git a/desktop/assets/data/graphics/8013.png b/desktop/assets/data/graphics/8013.png
new file mode 100644
index 00000000..001b60be
Binary files /dev/null and b/desktop/assets/data/graphics/8013.png differ
diff --git a/desktop/assets/data/graphics/8014.png b/desktop/assets/data/graphics/8014.png
new file mode 100644
index 00000000..c31c41c6
Binary files /dev/null and b/desktop/assets/data/graphics/8014.png differ
diff --git a/desktop/assets/data/graphics/8015.png b/desktop/assets/data/graphics/8015.png
new file mode 100644
index 00000000..cfa8b998
Binary files /dev/null and b/desktop/assets/data/graphics/8015.png differ
diff --git a/desktop/assets/data/graphics/8016.png b/desktop/assets/data/graphics/8016.png
new file mode 100644
index 00000000..7ea3040d
Binary files /dev/null and b/desktop/assets/data/graphics/8016.png differ
diff --git a/desktop/assets/data/graphics/8017.png b/desktop/assets/data/graphics/8017.png
new file mode 100644
index 00000000..996b28b8
Binary files /dev/null and b/desktop/assets/data/graphics/8017.png differ
diff --git a/desktop/assets/data/graphics/8018.png b/desktop/assets/data/graphics/8018.png
new file mode 100644
index 00000000..d126da8e
Binary files /dev/null and b/desktop/assets/data/graphics/8018.png differ
diff --git a/desktop/assets/data/graphics/8019.png b/desktop/assets/data/graphics/8019.png
new file mode 100644
index 00000000..31227aa9
Binary files /dev/null and b/desktop/assets/data/graphics/8019.png differ
diff --git a/desktop/assets/data/graphics/8020.png b/desktop/assets/data/graphics/8020.png
new file mode 100644
index 00000000..7e7c0f7a
Binary files /dev/null and b/desktop/assets/data/graphics/8020.png differ
diff --git a/desktop/assets/data/graphics/8021.png b/desktop/assets/data/graphics/8021.png
new file mode 100644
index 00000000..1c0861da
Binary files /dev/null and b/desktop/assets/data/graphics/8021.png differ
diff --git a/desktop/assets/data/graphics/8022.png b/desktop/assets/data/graphics/8022.png
new file mode 100644
index 00000000..97cf5a96
Binary files /dev/null and b/desktop/assets/data/graphics/8022.png differ
diff --git a/desktop/assets/data/graphics/8023.png b/desktop/assets/data/graphics/8023.png
new file mode 100644
index 00000000..3b3e500f
Binary files /dev/null and b/desktop/assets/data/graphics/8023.png differ
diff --git a/desktop/assets/data/graphics/8024.png b/desktop/assets/data/graphics/8024.png
new file mode 100644
index 00000000..3a84416e
Binary files /dev/null and b/desktop/assets/data/graphics/8024.png differ
diff --git a/desktop/assets/data/graphics/8025.png b/desktop/assets/data/graphics/8025.png
new file mode 100644
index 00000000..fe63e83b
Binary files /dev/null and b/desktop/assets/data/graphics/8025.png differ
diff --git a/desktop/assets/data/graphics/8026.png b/desktop/assets/data/graphics/8026.png
new file mode 100644
index 00000000..1723615b
Binary files /dev/null and b/desktop/assets/data/graphics/8026.png differ
diff --git a/desktop/assets/data/graphics/8027.png b/desktop/assets/data/graphics/8027.png
new file mode 100644
index 00000000..339cfb0b
Binary files /dev/null and b/desktop/assets/data/graphics/8027.png differ
diff --git a/desktop/assets/data/graphics/8028.png b/desktop/assets/data/graphics/8028.png
new file mode 100644
index 00000000..b75a690d
Binary files /dev/null and b/desktop/assets/data/graphics/8028.png differ
diff --git a/desktop/assets/data/graphics/8029.png b/desktop/assets/data/graphics/8029.png
new file mode 100644
index 00000000..2502f32e
Binary files /dev/null and b/desktop/assets/data/graphics/8029.png differ
diff --git a/desktop/assets/data/graphics/8030.png b/desktop/assets/data/graphics/8030.png
new file mode 100644
index 00000000..9f838641
Binary files /dev/null and b/desktop/assets/data/graphics/8030.png differ
diff --git a/desktop/assets/data/graphics/8031.png b/desktop/assets/data/graphics/8031.png
new file mode 100644
index 00000000..0e231271
Binary files /dev/null and b/desktop/assets/data/graphics/8031.png differ
diff --git a/desktop/assets/data/graphics/8032.png b/desktop/assets/data/graphics/8032.png
new file mode 100644
index 00000000..20119575
Binary files /dev/null and b/desktop/assets/data/graphics/8032.png differ
diff --git a/desktop/assets/data/graphics/8033.png b/desktop/assets/data/graphics/8033.png
new file mode 100644
index 00000000..12e59dff
Binary files /dev/null and b/desktop/assets/data/graphics/8033.png differ
diff --git a/desktop/assets/data/graphics/8034.png b/desktop/assets/data/graphics/8034.png
new file mode 100644
index 00000000..736cfd8f
Binary files /dev/null and b/desktop/assets/data/graphics/8034.png differ
diff --git a/desktop/assets/data/graphics/8035.png b/desktop/assets/data/graphics/8035.png
new file mode 100644
index 00000000..c8395f82
Binary files /dev/null and b/desktop/assets/data/graphics/8035.png differ
diff --git a/desktop/assets/data/graphics/8036.png b/desktop/assets/data/graphics/8036.png
new file mode 100644
index 00000000..4c0bc6a9
Binary files /dev/null and b/desktop/assets/data/graphics/8036.png differ
diff --git a/desktop/assets/data/graphics/8037.png b/desktop/assets/data/graphics/8037.png
new file mode 100644
index 00000000..77ba333e
Binary files /dev/null and b/desktop/assets/data/graphics/8037.png differ
diff --git a/desktop/assets/data/graphics/8038.png b/desktop/assets/data/graphics/8038.png
new file mode 100644
index 00000000..8cdffa2f
Binary files /dev/null and b/desktop/assets/data/graphics/8038.png differ
diff --git a/desktop/assets/data/graphics/8039.png b/desktop/assets/data/graphics/8039.png
new file mode 100644
index 00000000..46f2fdc7
Binary files /dev/null and b/desktop/assets/data/graphics/8039.png differ
diff --git a/desktop/assets/data/graphics/8040.png b/desktop/assets/data/graphics/8040.png
new file mode 100644
index 00000000..5e37e2e1
Binary files /dev/null and b/desktop/assets/data/graphics/8040.png differ
diff --git a/desktop/assets/data/graphics/8041.png b/desktop/assets/data/graphics/8041.png
new file mode 100644
index 00000000..6ab0346d
Binary files /dev/null and b/desktop/assets/data/graphics/8041.png differ
diff --git a/desktop/assets/data/graphics/8042.png b/desktop/assets/data/graphics/8042.png
new file mode 100644
index 00000000..9048c0e4
Binary files /dev/null and b/desktop/assets/data/graphics/8042.png differ
diff --git a/desktop/assets/data/graphics/8043.png b/desktop/assets/data/graphics/8043.png
new file mode 100644
index 00000000..97e672b8
Binary files /dev/null and b/desktop/assets/data/graphics/8043.png differ
diff --git a/desktop/assets/data/graphics/8044.png b/desktop/assets/data/graphics/8044.png
new file mode 100644
index 00000000..284122dd
Binary files /dev/null and b/desktop/assets/data/graphics/8044.png differ
diff --git a/desktop/assets/data/graphics/8045.png b/desktop/assets/data/graphics/8045.png
new file mode 100644
index 00000000..ccfaceb1
Binary files /dev/null and b/desktop/assets/data/graphics/8045.png differ
diff --git a/desktop/assets/data/graphics/8046.png b/desktop/assets/data/graphics/8046.png
new file mode 100644
index 00000000..96e45187
Binary files /dev/null and b/desktop/assets/data/graphics/8046.png differ
diff --git a/desktop/assets/data/graphics/8047.png b/desktop/assets/data/graphics/8047.png
new file mode 100644
index 00000000..d0a0afba
Binary files /dev/null and b/desktop/assets/data/graphics/8047.png differ
diff --git a/desktop/assets/data/graphics/8048.png b/desktop/assets/data/graphics/8048.png
new file mode 100644
index 00000000..ab1222ea
Binary files /dev/null and b/desktop/assets/data/graphics/8048.png differ
diff --git a/desktop/assets/data/graphics/8049.png b/desktop/assets/data/graphics/8049.png
new file mode 100644
index 00000000..b1749a39
Binary files /dev/null and b/desktop/assets/data/graphics/8049.png differ
diff --git a/desktop/assets/data/graphics/8050.png b/desktop/assets/data/graphics/8050.png
new file mode 100644
index 00000000..86c65896
Binary files /dev/null and b/desktop/assets/data/graphics/8050.png differ
diff --git a/desktop/assets/data/graphics/8051.png b/desktop/assets/data/graphics/8051.png
new file mode 100644
index 00000000..eabaa651
Binary files /dev/null and b/desktop/assets/data/graphics/8051.png differ
diff --git a/desktop/assets/data/graphics/8052.png b/desktop/assets/data/graphics/8052.png
new file mode 100644
index 00000000..ffdfc517
Binary files /dev/null and b/desktop/assets/data/graphics/8052.png differ
diff --git a/desktop/assets/data/graphics/8053.png b/desktop/assets/data/graphics/8053.png
new file mode 100644
index 00000000..b1022871
Binary files /dev/null and b/desktop/assets/data/graphics/8053.png differ
diff --git a/desktop/assets/data/graphics/8054.png b/desktop/assets/data/graphics/8054.png
new file mode 100644
index 00000000..152c4942
Binary files /dev/null and b/desktop/assets/data/graphics/8054.png differ
diff --git a/desktop/assets/data/graphics/8055.png b/desktop/assets/data/graphics/8055.png
new file mode 100644
index 00000000..44d16549
Binary files /dev/null and b/desktop/assets/data/graphics/8055.png differ
diff --git a/desktop/assets/data/graphics/8056.png b/desktop/assets/data/graphics/8056.png
new file mode 100644
index 00000000..9beb8fca
Binary files /dev/null and b/desktop/assets/data/graphics/8056.png differ
diff --git a/desktop/assets/data/graphics/8057.png b/desktop/assets/data/graphics/8057.png
new file mode 100644
index 00000000..497ae845
Binary files /dev/null and b/desktop/assets/data/graphics/8057.png differ
diff --git a/desktop/assets/data/graphics/8058.png b/desktop/assets/data/graphics/8058.png
new file mode 100644
index 00000000..d6d44017
Binary files /dev/null and b/desktop/assets/data/graphics/8058.png differ
diff --git a/desktop/assets/data/graphics/8059.png b/desktop/assets/data/graphics/8059.png
new file mode 100644
index 00000000..f56531d9
Binary files /dev/null and b/desktop/assets/data/graphics/8059.png differ
diff --git a/desktop/assets/data/graphics/8060.png b/desktop/assets/data/graphics/8060.png
new file mode 100644
index 00000000..a876f41e
Binary files /dev/null and b/desktop/assets/data/graphics/8060.png differ
diff --git a/desktop/assets/data/graphics/8061.png b/desktop/assets/data/graphics/8061.png
new file mode 100644
index 00000000..5ec89962
Binary files /dev/null and b/desktop/assets/data/graphics/8061.png differ
diff --git a/desktop/assets/data/graphics/8062.png b/desktop/assets/data/graphics/8062.png
new file mode 100644
index 00000000..77b0df81
Binary files /dev/null and b/desktop/assets/data/graphics/8062.png differ
diff --git a/desktop/assets/data/graphics/8063.png b/desktop/assets/data/graphics/8063.png
new file mode 100644
index 00000000..ad71bbe0
Binary files /dev/null and b/desktop/assets/data/graphics/8063.png differ
diff --git a/desktop/assets/data/graphics/8064.png b/desktop/assets/data/graphics/8064.png
new file mode 100644
index 00000000..ad71bbe0
Binary files /dev/null and b/desktop/assets/data/graphics/8064.png differ
diff --git a/desktop/assets/data/graphics/8065.png b/desktop/assets/data/graphics/8065.png
new file mode 100644
index 00000000..685a01d2
Binary files /dev/null and b/desktop/assets/data/graphics/8065.png differ
diff --git a/desktop/assets/data/graphics/8066.png b/desktop/assets/data/graphics/8066.png
new file mode 100644
index 00000000..1d1aedc4
Binary files /dev/null and b/desktop/assets/data/graphics/8066.png differ
diff --git a/desktop/assets/data/graphics/8067.png b/desktop/assets/data/graphics/8067.png
new file mode 100644
index 00000000..f11bbea3
Binary files /dev/null and b/desktop/assets/data/graphics/8067.png differ
diff --git a/desktop/assets/data/graphics/8068.png b/desktop/assets/data/graphics/8068.png
new file mode 100644
index 00000000..fda46275
Binary files /dev/null and b/desktop/assets/data/graphics/8068.png differ
diff --git a/desktop/assets/data/graphics/8069.png b/desktop/assets/data/graphics/8069.png
new file mode 100644
index 00000000..97283192
Binary files /dev/null and b/desktop/assets/data/graphics/8069.png differ
diff --git a/desktop/assets/data/graphics/8070.png b/desktop/assets/data/graphics/8070.png
new file mode 100644
index 00000000..f9a1d153
Binary files /dev/null and b/desktop/assets/data/graphics/8070.png differ
diff --git a/desktop/assets/data/graphics/8071.png b/desktop/assets/data/graphics/8071.png
new file mode 100644
index 00000000..84ac67b5
Binary files /dev/null and b/desktop/assets/data/graphics/8071.png differ
diff --git a/desktop/assets/data/graphics/8072.png b/desktop/assets/data/graphics/8072.png
new file mode 100644
index 00000000..707a6232
Binary files /dev/null and b/desktop/assets/data/graphics/8072.png differ
diff --git a/desktop/assets/data/graphics/8073.png b/desktop/assets/data/graphics/8073.png
new file mode 100644
index 00000000..877e78ce
Binary files /dev/null and b/desktop/assets/data/graphics/8073.png differ
diff --git a/desktop/assets/data/graphics/8074.png b/desktop/assets/data/graphics/8074.png
new file mode 100644
index 00000000..74330c29
Binary files /dev/null and b/desktop/assets/data/graphics/8074.png differ
diff --git a/desktop/assets/data/graphics/8075.png b/desktop/assets/data/graphics/8075.png
new file mode 100644
index 00000000..e995fd19
Binary files /dev/null and b/desktop/assets/data/graphics/8075.png differ
diff --git a/desktop/assets/data/graphics/8076.png b/desktop/assets/data/graphics/8076.png
new file mode 100644
index 00000000..7e492050
Binary files /dev/null and b/desktop/assets/data/graphics/8076.png differ
diff --git a/desktop/assets/data/graphics/8077.png b/desktop/assets/data/graphics/8077.png
new file mode 100644
index 00000000..76ea3b7b
Binary files /dev/null and b/desktop/assets/data/graphics/8077.png differ
diff --git a/desktop/assets/data/graphics/8078.png b/desktop/assets/data/graphics/8078.png
new file mode 100644
index 00000000..1a2c543e
Binary files /dev/null and b/desktop/assets/data/graphics/8078.png differ
diff --git a/desktop/assets/data/graphics/8079.png b/desktop/assets/data/graphics/8079.png
new file mode 100644
index 00000000..eae7f746
Binary files /dev/null and b/desktop/assets/data/graphics/8079.png differ
diff --git a/desktop/assets/data/graphics/8080.png b/desktop/assets/data/graphics/8080.png
new file mode 100644
index 00000000..f14a4568
Binary files /dev/null and b/desktop/assets/data/graphics/8080.png differ
diff --git a/desktop/assets/data/graphics/8081.png b/desktop/assets/data/graphics/8081.png
new file mode 100644
index 00000000..6ae9c684
Binary files /dev/null and b/desktop/assets/data/graphics/8081.png differ
diff --git a/desktop/assets/data/graphics/8082.png b/desktop/assets/data/graphics/8082.png
new file mode 100644
index 00000000..4ae0adfb
Binary files /dev/null and b/desktop/assets/data/graphics/8082.png differ
diff --git a/desktop/assets/data/graphics/8083.png b/desktop/assets/data/graphics/8083.png
new file mode 100644
index 00000000..eb51a83a
Binary files /dev/null and b/desktop/assets/data/graphics/8083.png differ
diff --git a/desktop/assets/data/graphics/8084.png b/desktop/assets/data/graphics/8084.png
new file mode 100644
index 00000000..2d742e59
Binary files /dev/null and b/desktop/assets/data/graphics/8084.png differ
diff --git a/desktop/assets/data/graphics/8085.png b/desktop/assets/data/graphics/8085.png
new file mode 100644
index 00000000..77d418e9
Binary files /dev/null and b/desktop/assets/data/graphics/8085.png differ
diff --git a/desktop/assets/data/graphics/8086.png b/desktop/assets/data/graphics/8086.png
new file mode 100644
index 00000000..c08303c4
Binary files /dev/null and b/desktop/assets/data/graphics/8086.png differ
diff --git a/desktop/assets/data/graphics/8087.png b/desktop/assets/data/graphics/8087.png
new file mode 100644
index 00000000..e036965e
Binary files /dev/null and b/desktop/assets/data/graphics/8087.png differ
diff --git a/desktop/assets/data/graphics/8088.png b/desktop/assets/data/graphics/8088.png
new file mode 100644
index 00000000..b131fb2a
Binary files /dev/null and b/desktop/assets/data/graphics/8088.png differ
diff --git a/desktop/assets/data/graphics/8089.png b/desktop/assets/data/graphics/8089.png
new file mode 100644
index 00000000..b07a4174
Binary files /dev/null and b/desktop/assets/data/graphics/8089.png differ
diff --git a/desktop/assets/data/graphics/8090.png b/desktop/assets/data/graphics/8090.png
new file mode 100644
index 00000000..e8b812fe
Binary files /dev/null and b/desktop/assets/data/graphics/8090.png differ
diff --git a/desktop/assets/data/graphics/8091.png b/desktop/assets/data/graphics/8091.png
new file mode 100644
index 00000000..96810af7
Binary files /dev/null and b/desktop/assets/data/graphics/8091.png differ
diff --git a/desktop/assets/data/graphics/8092.png b/desktop/assets/data/graphics/8092.png
new file mode 100644
index 00000000..aad96390
Binary files /dev/null and b/desktop/assets/data/graphics/8092.png differ
diff --git a/desktop/assets/data/graphics/8093.png b/desktop/assets/data/graphics/8093.png
new file mode 100644
index 00000000..a7988bc6
Binary files /dev/null and b/desktop/assets/data/graphics/8093.png differ
diff --git a/desktop/assets/data/graphics/8094.png b/desktop/assets/data/graphics/8094.png
new file mode 100644
index 00000000..3f43e941
Binary files /dev/null and b/desktop/assets/data/graphics/8094.png differ
diff --git a/desktop/assets/data/graphics/8095.png b/desktop/assets/data/graphics/8095.png
new file mode 100644
index 00000000..b56a5314
Binary files /dev/null and b/desktop/assets/data/graphics/8095.png differ
diff --git a/desktop/assets/data/graphics/8096.png b/desktop/assets/data/graphics/8096.png
new file mode 100644
index 00000000..1e7ff083
Binary files /dev/null and b/desktop/assets/data/graphics/8096.png differ
diff --git a/desktop/assets/data/graphics/8097.png b/desktop/assets/data/graphics/8097.png
new file mode 100644
index 00000000..8706bda7
Binary files /dev/null and b/desktop/assets/data/graphics/8097.png differ
diff --git a/desktop/assets/data/graphics/8098.png b/desktop/assets/data/graphics/8098.png
new file mode 100644
index 00000000..e203bc00
Binary files /dev/null and b/desktop/assets/data/graphics/8098.png differ
diff --git a/desktop/assets/data/graphics/8099.png b/desktop/assets/data/graphics/8099.png
new file mode 100644
index 00000000..17d6dde0
Binary files /dev/null and b/desktop/assets/data/graphics/8099.png differ
diff --git a/desktop/assets/data/graphics/81.png b/desktop/assets/data/graphics/81.png
new file mode 100644
index 00000000..2dbe281d
Binary files /dev/null and b/desktop/assets/data/graphics/81.png differ
diff --git a/desktop/assets/data/graphics/8100.png b/desktop/assets/data/graphics/8100.png
new file mode 100644
index 00000000..828cc5ff
Binary files /dev/null and b/desktop/assets/data/graphics/8100.png differ
diff --git a/desktop/assets/data/graphics/8101.png b/desktop/assets/data/graphics/8101.png
new file mode 100644
index 00000000..e60e57fa
Binary files /dev/null and b/desktop/assets/data/graphics/8101.png differ
diff --git a/desktop/assets/data/graphics/8102.png b/desktop/assets/data/graphics/8102.png
new file mode 100644
index 00000000..5785aa21
Binary files /dev/null and b/desktop/assets/data/graphics/8102.png differ
diff --git a/desktop/assets/data/graphics/8103.png b/desktop/assets/data/graphics/8103.png
new file mode 100644
index 00000000..cc5211e3
Binary files /dev/null and b/desktop/assets/data/graphics/8103.png differ
diff --git a/desktop/assets/data/graphics/8104.png b/desktop/assets/data/graphics/8104.png
new file mode 100644
index 00000000..159e7281
Binary files /dev/null and b/desktop/assets/data/graphics/8104.png differ
diff --git a/desktop/assets/data/graphics/8105.png b/desktop/assets/data/graphics/8105.png
new file mode 100644
index 00000000..506ac757
Binary files /dev/null and b/desktop/assets/data/graphics/8105.png differ
diff --git a/desktop/assets/data/graphics/8106.png b/desktop/assets/data/graphics/8106.png
new file mode 100644
index 00000000..9d8b6db8
Binary files /dev/null and b/desktop/assets/data/graphics/8106.png differ
diff --git a/desktop/assets/data/graphics/8107.png b/desktop/assets/data/graphics/8107.png
new file mode 100644
index 00000000..0c62639b
Binary files /dev/null and b/desktop/assets/data/graphics/8107.png differ
diff --git a/desktop/assets/data/graphics/8108.png b/desktop/assets/data/graphics/8108.png
new file mode 100644
index 00000000..4579ea3d
Binary files /dev/null and b/desktop/assets/data/graphics/8108.png differ
diff --git a/desktop/assets/data/graphics/8109.png b/desktop/assets/data/graphics/8109.png
new file mode 100644
index 00000000..13bb4bca
Binary files /dev/null and b/desktop/assets/data/graphics/8109.png differ
diff --git a/desktop/assets/data/graphics/8110.png b/desktop/assets/data/graphics/8110.png
new file mode 100644
index 00000000..01ed471a
Binary files /dev/null and b/desktop/assets/data/graphics/8110.png differ
diff --git a/desktop/assets/data/graphics/8111.png b/desktop/assets/data/graphics/8111.png
new file mode 100644
index 00000000..3de6b45a
Binary files /dev/null and b/desktop/assets/data/graphics/8111.png differ
diff --git a/desktop/assets/data/graphics/8112.png b/desktop/assets/data/graphics/8112.png
new file mode 100644
index 00000000..9a60f379
Binary files /dev/null and b/desktop/assets/data/graphics/8112.png differ
diff --git a/desktop/assets/data/graphics/8113.png b/desktop/assets/data/graphics/8113.png
new file mode 100644
index 00000000..04810e57
Binary files /dev/null and b/desktop/assets/data/graphics/8113.png differ
diff --git a/desktop/assets/data/graphics/8114.png b/desktop/assets/data/graphics/8114.png
new file mode 100644
index 00000000..b9e5fcaa
Binary files /dev/null and b/desktop/assets/data/graphics/8114.png differ
diff --git a/desktop/assets/data/graphics/8115.png b/desktop/assets/data/graphics/8115.png
new file mode 100644
index 00000000..083c6747
Binary files /dev/null and b/desktop/assets/data/graphics/8115.png differ
diff --git a/desktop/assets/data/graphics/8116.png b/desktop/assets/data/graphics/8116.png
new file mode 100644
index 00000000..1a312770
Binary files /dev/null and b/desktop/assets/data/graphics/8116.png differ
diff --git a/desktop/assets/data/graphics/8117.png b/desktop/assets/data/graphics/8117.png
new file mode 100644
index 00000000..dfa1954b
Binary files /dev/null and b/desktop/assets/data/graphics/8117.png differ
diff --git a/desktop/assets/data/graphics/8118.png b/desktop/assets/data/graphics/8118.png
new file mode 100644
index 00000000..42f70531
Binary files /dev/null and b/desktop/assets/data/graphics/8118.png differ
diff --git a/desktop/assets/data/graphics/8119.png b/desktop/assets/data/graphics/8119.png
new file mode 100644
index 00000000..e0f940f6
Binary files /dev/null and b/desktop/assets/data/graphics/8119.png differ
diff --git a/desktop/assets/data/graphics/8120.png b/desktop/assets/data/graphics/8120.png
new file mode 100644
index 00000000..20df7957
Binary files /dev/null and b/desktop/assets/data/graphics/8120.png differ
diff --git a/desktop/assets/data/graphics/8121.png b/desktop/assets/data/graphics/8121.png
new file mode 100644
index 00000000..cf8ba780
Binary files /dev/null and b/desktop/assets/data/graphics/8121.png differ
diff --git a/desktop/assets/data/graphics/8122.png b/desktop/assets/data/graphics/8122.png
new file mode 100644
index 00000000..cf303e4e
Binary files /dev/null and b/desktop/assets/data/graphics/8122.png differ
diff --git a/desktop/assets/data/graphics/8123.png b/desktop/assets/data/graphics/8123.png
new file mode 100644
index 00000000..1ab7500b
Binary files /dev/null and b/desktop/assets/data/graphics/8123.png differ
diff --git a/desktop/assets/data/graphics/8124.png b/desktop/assets/data/graphics/8124.png
new file mode 100644
index 00000000..b5eb08e1
Binary files /dev/null and b/desktop/assets/data/graphics/8124.png differ
diff --git a/desktop/assets/data/graphics/8125.png b/desktop/assets/data/graphics/8125.png
new file mode 100644
index 00000000..e25b8636
Binary files /dev/null and b/desktop/assets/data/graphics/8125.png differ
diff --git a/desktop/assets/data/graphics/8126.png b/desktop/assets/data/graphics/8126.png
new file mode 100644
index 00000000..7a39eb25
Binary files /dev/null and b/desktop/assets/data/graphics/8126.png differ
diff --git a/desktop/assets/data/graphics/8127.png b/desktop/assets/data/graphics/8127.png
new file mode 100644
index 00000000..380eb434
Binary files /dev/null and b/desktop/assets/data/graphics/8127.png differ
diff --git a/desktop/assets/data/graphics/8128.png b/desktop/assets/data/graphics/8128.png
new file mode 100644
index 00000000..34b6d582
Binary files /dev/null and b/desktop/assets/data/graphics/8128.png differ
diff --git a/desktop/assets/data/graphics/8129.png b/desktop/assets/data/graphics/8129.png
new file mode 100644
index 00000000..c58d818b
Binary files /dev/null and b/desktop/assets/data/graphics/8129.png differ
diff --git a/desktop/assets/data/graphics/8130.png b/desktop/assets/data/graphics/8130.png
new file mode 100644
index 00000000..564f2315
Binary files /dev/null and b/desktop/assets/data/graphics/8130.png differ
diff --git a/desktop/assets/data/graphics/8131.png b/desktop/assets/data/graphics/8131.png
new file mode 100644
index 00000000..a18c6fe5
Binary files /dev/null and b/desktop/assets/data/graphics/8131.png differ
diff --git a/desktop/assets/data/graphics/8132.png b/desktop/assets/data/graphics/8132.png
new file mode 100644
index 00000000..4e81d4be
Binary files /dev/null and b/desktop/assets/data/graphics/8132.png differ
diff --git a/desktop/assets/data/graphics/8133.png b/desktop/assets/data/graphics/8133.png
new file mode 100644
index 00000000..3d8161ad
Binary files /dev/null and b/desktop/assets/data/graphics/8133.png differ
diff --git a/desktop/assets/data/graphics/8134.png b/desktop/assets/data/graphics/8134.png
new file mode 100644
index 00000000..b64db881
Binary files /dev/null and b/desktop/assets/data/graphics/8134.png differ
diff --git a/desktop/assets/data/graphics/8135.png b/desktop/assets/data/graphics/8135.png
new file mode 100644
index 00000000..d2a2893b
Binary files /dev/null and b/desktop/assets/data/graphics/8135.png differ
diff --git a/desktop/assets/data/graphics/8136.png b/desktop/assets/data/graphics/8136.png
new file mode 100644
index 00000000..41334a39
Binary files /dev/null and b/desktop/assets/data/graphics/8136.png differ
diff --git a/desktop/assets/data/graphics/8137.png b/desktop/assets/data/graphics/8137.png
new file mode 100644
index 00000000..47dfcd6c
Binary files /dev/null and b/desktop/assets/data/graphics/8137.png differ
diff --git a/desktop/assets/data/graphics/8138.png b/desktop/assets/data/graphics/8138.png
new file mode 100644
index 00000000..84ed266f
Binary files /dev/null and b/desktop/assets/data/graphics/8138.png differ
diff --git a/desktop/assets/data/graphics/8139.png b/desktop/assets/data/graphics/8139.png
new file mode 100644
index 00000000..58334c19
Binary files /dev/null and b/desktop/assets/data/graphics/8139.png differ
diff --git a/desktop/assets/data/graphics/8140.png b/desktop/assets/data/graphics/8140.png
new file mode 100644
index 00000000..93a92320
Binary files /dev/null and b/desktop/assets/data/graphics/8140.png differ
diff --git a/desktop/assets/data/graphics/8141.png b/desktop/assets/data/graphics/8141.png
new file mode 100644
index 00000000..2a16f50b
Binary files /dev/null and b/desktop/assets/data/graphics/8141.png differ
diff --git a/desktop/assets/data/graphics/8142.png b/desktop/assets/data/graphics/8142.png
new file mode 100644
index 00000000..567ddaac
Binary files /dev/null and b/desktop/assets/data/graphics/8142.png differ
diff --git a/desktop/assets/data/graphics/8143.png b/desktop/assets/data/graphics/8143.png
new file mode 100644
index 00000000..aa03e10e
Binary files /dev/null and b/desktop/assets/data/graphics/8143.png differ
diff --git a/desktop/assets/data/graphics/8144.png b/desktop/assets/data/graphics/8144.png
new file mode 100644
index 00000000..89fb5da0
Binary files /dev/null and b/desktop/assets/data/graphics/8144.png differ
diff --git a/desktop/assets/data/graphics/8145.png b/desktop/assets/data/graphics/8145.png
new file mode 100644
index 00000000..143bf7f4
Binary files /dev/null and b/desktop/assets/data/graphics/8145.png differ
diff --git a/desktop/assets/data/graphics/8146.png b/desktop/assets/data/graphics/8146.png
new file mode 100644
index 00000000..de414b89
Binary files /dev/null and b/desktop/assets/data/graphics/8146.png differ
diff --git a/desktop/assets/data/graphics/8147.png b/desktop/assets/data/graphics/8147.png
new file mode 100644
index 00000000..53b00f09
Binary files /dev/null and b/desktop/assets/data/graphics/8147.png differ
diff --git a/desktop/assets/data/graphics/8148.png b/desktop/assets/data/graphics/8148.png
new file mode 100644
index 00000000..0d8cb6d4
Binary files /dev/null and b/desktop/assets/data/graphics/8148.png differ
diff --git a/desktop/assets/data/graphics/8149.png b/desktop/assets/data/graphics/8149.png
new file mode 100644
index 00000000..cccb7cc9
Binary files /dev/null and b/desktop/assets/data/graphics/8149.png differ
diff --git a/desktop/assets/data/graphics/8150.png b/desktop/assets/data/graphics/8150.png
new file mode 100644
index 00000000..e9492a83
Binary files /dev/null and b/desktop/assets/data/graphics/8150.png differ
diff --git a/desktop/assets/data/graphics/8151.png b/desktop/assets/data/graphics/8151.png
new file mode 100644
index 00000000..b065d5a9
Binary files /dev/null and b/desktop/assets/data/graphics/8151.png differ
diff --git a/desktop/assets/data/graphics/8152.png b/desktop/assets/data/graphics/8152.png
new file mode 100644
index 00000000..0659b907
Binary files /dev/null and b/desktop/assets/data/graphics/8152.png differ
diff --git a/desktop/assets/data/graphics/8153.png b/desktop/assets/data/graphics/8153.png
new file mode 100644
index 00000000..09c81ce5
Binary files /dev/null and b/desktop/assets/data/graphics/8153.png differ
diff --git a/desktop/assets/data/graphics/8154.png b/desktop/assets/data/graphics/8154.png
new file mode 100644
index 00000000..364a664a
Binary files /dev/null and b/desktop/assets/data/graphics/8154.png differ
diff --git a/desktop/assets/data/graphics/8155.png b/desktop/assets/data/graphics/8155.png
new file mode 100644
index 00000000..97dd3501
Binary files /dev/null and b/desktop/assets/data/graphics/8155.png differ
diff --git a/desktop/assets/data/graphics/8156.png b/desktop/assets/data/graphics/8156.png
new file mode 100644
index 00000000..2c2bade0
Binary files /dev/null and b/desktop/assets/data/graphics/8156.png differ
diff --git a/desktop/assets/data/graphics/8157.png b/desktop/assets/data/graphics/8157.png
new file mode 100644
index 00000000..bb6a809c
Binary files /dev/null and b/desktop/assets/data/graphics/8157.png differ
diff --git a/desktop/assets/data/graphics/8158.png b/desktop/assets/data/graphics/8158.png
new file mode 100644
index 00000000..17acfe26
Binary files /dev/null and b/desktop/assets/data/graphics/8158.png differ
diff --git a/desktop/assets/data/graphics/8159.png b/desktop/assets/data/graphics/8159.png
new file mode 100644
index 00000000..9d742903
Binary files /dev/null and b/desktop/assets/data/graphics/8159.png differ
diff --git a/desktop/assets/data/graphics/8160.png b/desktop/assets/data/graphics/8160.png
new file mode 100644
index 00000000..ee08c6e7
Binary files /dev/null and b/desktop/assets/data/graphics/8160.png differ
diff --git a/desktop/assets/data/graphics/8161.png b/desktop/assets/data/graphics/8161.png
new file mode 100644
index 00000000..d45fda79
Binary files /dev/null and b/desktop/assets/data/graphics/8161.png differ
diff --git a/desktop/assets/data/graphics/8162.png b/desktop/assets/data/graphics/8162.png
new file mode 100644
index 00000000..ce112aa0
Binary files /dev/null and b/desktop/assets/data/graphics/8162.png differ
diff --git a/desktop/assets/data/graphics/8163.png b/desktop/assets/data/graphics/8163.png
new file mode 100644
index 00000000..6e053174
Binary files /dev/null and b/desktop/assets/data/graphics/8163.png differ
diff --git a/desktop/assets/data/graphics/8164.png b/desktop/assets/data/graphics/8164.png
new file mode 100644
index 00000000..2541963f
Binary files /dev/null and b/desktop/assets/data/graphics/8164.png differ
diff --git a/desktop/assets/data/graphics/8165.png b/desktop/assets/data/graphics/8165.png
new file mode 100644
index 00000000..064e5820
Binary files /dev/null and b/desktop/assets/data/graphics/8165.png differ
diff --git a/desktop/assets/data/graphics/8166.png b/desktop/assets/data/graphics/8166.png
new file mode 100644
index 00000000..1c8b035f
Binary files /dev/null and b/desktop/assets/data/graphics/8166.png differ
diff --git a/desktop/assets/data/graphics/8167.png b/desktop/assets/data/graphics/8167.png
new file mode 100644
index 00000000..e2a0592f
Binary files /dev/null and b/desktop/assets/data/graphics/8167.png differ
diff --git a/desktop/assets/data/graphics/8168.png b/desktop/assets/data/graphics/8168.png
new file mode 100644
index 00000000..3098330c
Binary files /dev/null and b/desktop/assets/data/graphics/8168.png differ
diff --git a/desktop/assets/data/graphics/8169.png b/desktop/assets/data/graphics/8169.png
new file mode 100644
index 00000000..8bfab774
Binary files /dev/null and b/desktop/assets/data/graphics/8169.png differ
diff --git a/desktop/assets/data/graphics/8170.png b/desktop/assets/data/graphics/8170.png
new file mode 100644
index 00000000..014631ca
Binary files /dev/null and b/desktop/assets/data/graphics/8170.png differ
diff --git a/desktop/assets/data/graphics/8171.png b/desktop/assets/data/graphics/8171.png
new file mode 100644
index 00000000..ced8b560
Binary files /dev/null and b/desktop/assets/data/graphics/8171.png differ
diff --git a/desktop/assets/data/graphics/8172.png b/desktop/assets/data/graphics/8172.png
new file mode 100644
index 00000000..84543226
Binary files /dev/null and b/desktop/assets/data/graphics/8172.png differ
diff --git a/desktop/assets/data/graphics/8173.png b/desktop/assets/data/graphics/8173.png
new file mode 100644
index 00000000..06b8448a
Binary files /dev/null and b/desktop/assets/data/graphics/8173.png differ
diff --git a/desktop/assets/data/graphics/8174.png b/desktop/assets/data/graphics/8174.png
new file mode 100644
index 00000000..d0b1d91d
Binary files /dev/null and b/desktop/assets/data/graphics/8174.png differ
diff --git a/desktop/assets/data/graphics/8175.png b/desktop/assets/data/graphics/8175.png
new file mode 100644
index 00000000..09b7b597
Binary files /dev/null and b/desktop/assets/data/graphics/8175.png differ
diff --git a/desktop/assets/data/graphics/8176.png b/desktop/assets/data/graphics/8176.png
new file mode 100644
index 00000000..ccb964af
Binary files /dev/null and b/desktop/assets/data/graphics/8176.png differ
diff --git a/desktop/assets/data/graphics/8177.png b/desktop/assets/data/graphics/8177.png
new file mode 100644
index 00000000..324c1e3d
Binary files /dev/null and b/desktop/assets/data/graphics/8177.png differ
diff --git a/desktop/assets/data/graphics/8178.png b/desktop/assets/data/graphics/8178.png
new file mode 100644
index 00000000..91f0acb8
Binary files /dev/null and b/desktop/assets/data/graphics/8178.png differ
diff --git a/desktop/assets/data/graphics/8179.png b/desktop/assets/data/graphics/8179.png
new file mode 100644
index 00000000..2d0d1e95
Binary files /dev/null and b/desktop/assets/data/graphics/8179.png differ
diff --git a/desktop/assets/data/graphics/8180.png b/desktop/assets/data/graphics/8180.png
new file mode 100644
index 00000000..cdc234f7
Binary files /dev/null and b/desktop/assets/data/graphics/8180.png differ
diff --git a/desktop/assets/data/graphics/8181.png b/desktop/assets/data/graphics/8181.png
new file mode 100644
index 00000000..e5a884e2
Binary files /dev/null and b/desktop/assets/data/graphics/8181.png differ
diff --git a/desktop/assets/data/graphics/8182.png b/desktop/assets/data/graphics/8182.png
new file mode 100644
index 00000000..dcb3c51e
Binary files /dev/null and b/desktop/assets/data/graphics/8182.png differ
diff --git a/desktop/assets/data/graphics/8183.png b/desktop/assets/data/graphics/8183.png
new file mode 100644
index 00000000..61633840
Binary files /dev/null and b/desktop/assets/data/graphics/8183.png differ
diff --git a/desktop/assets/data/graphics/8184.png b/desktop/assets/data/graphics/8184.png
new file mode 100644
index 00000000..314c2ca3
Binary files /dev/null and b/desktop/assets/data/graphics/8184.png differ
diff --git a/desktop/assets/data/graphics/8185.png b/desktop/assets/data/graphics/8185.png
new file mode 100644
index 00000000..6c60eb18
Binary files /dev/null and b/desktop/assets/data/graphics/8185.png differ
diff --git a/desktop/assets/data/graphics/8186.png b/desktop/assets/data/graphics/8186.png
new file mode 100644
index 00000000..8bc98847
Binary files /dev/null and b/desktop/assets/data/graphics/8186.png differ
diff --git a/desktop/assets/data/graphics/8187.png b/desktop/assets/data/graphics/8187.png
new file mode 100644
index 00000000..438924e6
Binary files /dev/null and b/desktop/assets/data/graphics/8187.png differ
diff --git a/desktop/assets/data/graphics/8188.png b/desktop/assets/data/graphics/8188.png
new file mode 100644
index 00000000..b7b3b3c0
Binary files /dev/null and b/desktop/assets/data/graphics/8188.png differ
diff --git a/desktop/assets/data/graphics/8189.png b/desktop/assets/data/graphics/8189.png
new file mode 100644
index 00000000..7a14e250
Binary files /dev/null and b/desktop/assets/data/graphics/8189.png differ
diff --git a/desktop/assets/data/graphics/8190.png b/desktop/assets/data/graphics/8190.png
new file mode 100644
index 00000000..da13ab3d
Binary files /dev/null and b/desktop/assets/data/graphics/8190.png differ
diff --git a/desktop/assets/data/graphics/8191.png b/desktop/assets/data/graphics/8191.png
new file mode 100644
index 00000000..efeda345
Binary files /dev/null and b/desktop/assets/data/graphics/8191.png differ
diff --git a/desktop/assets/data/graphics/8192.png b/desktop/assets/data/graphics/8192.png
new file mode 100644
index 00000000..c130ec6a
Binary files /dev/null and b/desktop/assets/data/graphics/8192.png differ
diff --git a/desktop/assets/data/graphics/8193.png b/desktop/assets/data/graphics/8193.png
new file mode 100644
index 00000000..89c85f61
Binary files /dev/null and b/desktop/assets/data/graphics/8193.png differ
diff --git a/desktop/assets/data/graphics/8194.png b/desktop/assets/data/graphics/8194.png
new file mode 100644
index 00000000..779a027a
Binary files /dev/null and b/desktop/assets/data/graphics/8194.png differ
diff --git a/desktop/assets/data/graphics/8195.png b/desktop/assets/data/graphics/8195.png
new file mode 100644
index 00000000..594d22de
Binary files /dev/null and b/desktop/assets/data/graphics/8195.png differ
diff --git a/desktop/assets/data/graphics/8196.png b/desktop/assets/data/graphics/8196.png
new file mode 100644
index 00000000..f0463810
Binary files /dev/null and b/desktop/assets/data/graphics/8196.png differ
diff --git a/desktop/assets/data/graphics/8197.png b/desktop/assets/data/graphics/8197.png
new file mode 100644
index 00000000..0c375e30
Binary files /dev/null and b/desktop/assets/data/graphics/8197.png differ
diff --git a/desktop/assets/data/graphics/8198.png b/desktop/assets/data/graphics/8198.png
new file mode 100644
index 00000000..876125d8
Binary files /dev/null and b/desktop/assets/data/graphics/8198.png differ
diff --git a/desktop/assets/data/graphics/8199.png b/desktop/assets/data/graphics/8199.png
new file mode 100644
index 00000000..98f2b61b
Binary files /dev/null and b/desktop/assets/data/graphics/8199.png differ
diff --git a/desktop/assets/data/graphics/82.png b/desktop/assets/data/graphics/82.png
new file mode 100644
index 00000000..a920c73c
Binary files /dev/null and b/desktop/assets/data/graphics/82.png differ
diff --git a/desktop/assets/data/graphics/8200.png b/desktop/assets/data/graphics/8200.png
new file mode 100644
index 00000000..944e813f
Binary files /dev/null and b/desktop/assets/data/graphics/8200.png differ
diff --git a/desktop/assets/data/graphics/8201.png b/desktop/assets/data/graphics/8201.png
new file mode 100644
index 00000000..8e785882
Binary files /dev/null and b/desktop/assets/data/graphics/8201.png differ
diff --git a/desktop/assets/data/graphics/8202.png b/desktop/assets/data/graphics/8202.png
new file mode 100644
index 00000000..43c307d5
Binary files /dev/null and b/desktop/assets/data/graphics/8202.png differ
diff --git a/desktop/assets/data/graphics/8203.png b/desktop/assets/data/graphics/8203.png
new file mode 100644
index 00000000..6f139caa
Binary files /dev/null and b/desktop/assets/data/graphics/8203.png differ
diff --git a/desktop/assets/data/graphics/8204.png b/desktop/assets/data/graphics/8204.png
new file mode 100644
index 00000000..75d110ae
Binary files /dev/null and b/desktop/assets/data/graphics/8204.png differ
diff --git a/desktop/assets/data/graphics/8205.png b/desktop/assets/data/graphics/8205.png
new file mode 100644
index 00000000..17e69346
Binary files /dev/null and b/desktop/assets/data/graphics/8205.png differ
diff --git a/desktop/assets/data/graphics/8206.png b/desktop/assets/data/graphics/8206.png
new file mode 100644
index 00000000..ed1da015
Binary files /dev/null and b/desktop/assets/data/graphics/8206.png differ
diff --git a/desktop/assets/data/graphics/8207.png b/desktop/assets/data/graphics/8207.png
new file mode 100644
index 00000000..adf983f8
Binary files /dev/null and b/desktop/assets/data/graphics/8207.png differ
diff --git a/desktop/assets/data/graphics/8208.png b/desktop/assets/data/graphics/8208.png
new file mode 100644
index 00000000..a72a5ed8
Binary files /dev/null and b/desktop/assets/data/graphics/8208.png differ
diff --git a/desktop/assets/data/graphics/8209.png b/desktop/assets/data/graphics/8209.png
new file mode 100644
index 00000000..a37d5312
Binary files /dev/null and b/desktop/assets/data/graphics/8209.png differ
diff --git a/desktop/assets/data/graphics/8210.png b/desktop/assets/data/graphics/8210.png
new file mode 100644
index 00000000..5d82058e
Binary files /dev/null and b/desktop/assets/data/graphics/8210.png differ
diff --git a/desktop/assets/data/graphics/8211.png b/desktop/assets/data/graphics/8211.png
new file mode 100644
index 00000000..919225b7
Binary files /dev/null and b/desktop/assets/data/graphics/8211.png differ
diff --git a/desktop/assets/data/graphics/8212.png b/desktop/assets/data/graphics/8212.png
new file mode 100644
index 00000000..40173fd5
Binary files /dev/null and b/desktop/assets/data/graphics/8212.png differ
diff --git a/desktop/assets/data/graphics/8213.png b/desktop/assets/data/graphics/8213.png
new file mode 100644
index 00000000..650d9f90
Binary files /dev/null and b/desktop/assets/data/graphics/8213.png differ
diff --git a/desktop/assets/data/graphics/8214.png b/desktop/assets/data/graphics/8214.png
new file mode 100644
index 00000000..7d132415
Binary files /dev/null and b/desktop/assets/data/graphics/8214.png differ
diff --git a/desktop/assets/data/graphics/8215.png b/desktop/assets/data/graphics/8215.png
new file mode 100644
index 00000000..6bde80db
Binary files /dev/null and b/desktop/assets/data/graphics/8215.png differ
diff --git a/desktop/assets/data/graphics/8216.png b/desktop/assets/data/graphics/8216.png
new file mode 100644
index 00000000..b4950806
Binary files /dev/null and b/desktop/assets/data/graphics/8216.png differ
diff --git a/desktop/assets/data/graphics/8217.png b/desktop/assets/data/graphics/8217.png
new file mode 100644
index 00000000..4f69a702
Binary files /dev/null and b/desktop/assets/data/graphics/8217.png differ
diff --git a/desktop/assets/data/graphics/8218.png b/desktop/assets/data/graphics/8218.png
new file mode 100644
index 00000000..7cb9e598
Binary files /dev/null and b/desktop/assets/data/graphics/8218.png differ
diff --git a/desktop/assets/data/graphics/8219.png b/desktop/assets/data/graphics/8219.png
new file mode 100644
index 00000000..27f318e4
Binary files /dev/null and b/desktop/assets/data/graphics/8219.png differ
diff --git a/desktop/assets/data/graphics/8220.png b/desktop/assets/data/graphics/8220.png
new file mode 100644
index 00000000..e55c0d21
Binary files /dev/null and b/desktop/assets/data/graphics/8220.png differ
diff --git a/desktop/assets/data/graphics/8221.png b/desktop/assets/data/graphics/8221.png
new file mode 100644
index 00000000..6c77e4b7
Binary files /dev/null and b/desktop/assets/data/graphics/8221.png differ
diff --git a/desktop/assets/data/graphics/8222.png b/desktop/assets/data/graphics/8222.png
new file mode 100644
index 00000000..0e7ef8b9
Binary files /dev/null and b/desktop/assets/data/graphics/8222.png differ
diff --git a/desktop/assets/data/graphics/8223.png b/desktop/assets/data/graphics/8223.png
new file mode 100644
index 00000000..119143a2
Binary files /dev/null and b/desktop/assets/data/graphics/8223.png differ
diff --git a/desktop/assets/data/graphics/8224.png b/desktop/assets/data/graphics/8224.png
new file mode 100644
index 00000000..6dc98346
Binary files /dev/null and b/desktop/assets/data/graphics/8224.png differ
diff --git a/desktop/assets/data/graphics/83.png b/desktop/assets/data/graphics/83.png
new file mode 100644
index 00000000..a55312c1
Binary files /dev/null and b/desktop/assets/data/graphics/83.png differ
diff --git a/desktop/assets/data/graphics/84.png b/desktop/assets/data/graphics/84.png
new file mode 100644
index 00000000..af72215b
Binary files /dev/null and b/desktop/assets/data/graphics/84.png differ
diff --git a/desktop/assets/data/graphics/85.png b/desktop/assets/data/graphics/85.png
new file mode 100644
index 00000000..ca0aabfe
Binary files /dev/null and b/desktop/assets/data/graphics/85.png differ
diff --git a/desktop/assets/data/graphics/86.png b/desktop/assets/data/graphics/86.png
new file mode 100644
index 00000000..8aa383dd
Binary files /dev/null and b/desktop/assets/data/graphics/86.png differ
diff --git a/desktop/assets/data/graphics/87.png b/desktop/assets/data/graphics/87.png
new file mode 100644
index 00000000..f260386a
Binary files /dev/null and b/desktop/assets/data/graphics/87.png differ
diff --git a/desktop/assets/data/graphics/88.png b/desktop/assets/data/graphics/88.png
new file mode 100644
index 00000000..ed587f50
Binary files /dev/null and b/desktop/assets/data/graphics/88.png differ
diff --git a/desktop/assets/data/graphics/89.png b/desktop/assets/data/graphics/89.png
new file mode 100644
index 00000000..bde643ea
Binary files /dev/null and b/desktop/assets/data/graphics/89.png differ
diff --git a/desktop/assets/data/graphics/9.png b/desktop/assets/data/graphics/9.png
new file mode 100644
index 00000000..3da0ea02
Binary files /dev/null and b/desktop/assets/data/graphics/9.png differ
diff --git a/desktop/assets/data/graphics/90.png b/desktop/assets/data/graphics/90.png
new file mode 100644
index 00000000..e1530cb4
Binary files /dev/null and b/desktop/assets/data/graphics/90.png differ
diff --git a/desktop/assets/data/graphics/9000.png b/desktop/assets/data/graphics/9000.png
new file mode 100644
index 00000000..41d588a0
Binary files /dev/null and b/desktop/assets/data/graphics/9000.png differ
diff --git a/desktop/assets/data/graphics/9001.png b/desktop/assets/data/graphics/9001.png
new file mode 100644
index 00000000..1765efdf
Binary files /dev/null and b/desktop/assets/data/graphics/9001.png differ
diff --git a/desktop/assets/data/graphics/9002.png b/desktop/assets/data/graphics/9002.png
new file mode 100644
index 00000000..3d656381
Binary files /dev/null and b/desktop/assets/data/graphics/9002.png differ
diff --git a/desktop/assets/data/graphics/9003.png b/desktop/assets/data/graphics/9003.png
new file mode 100644
index 00000000..b1a0bee2
Binary files /dev/null and b/desktop/assets/data/graphics/9003.png differ
diff --git a/desktop/assets/data/graphics/9004.png b/desktop/assets/data/graphics/9004.png
new file mode 100644
index 00000000..eae391d6
Binary files /dev/null and b/desktop/assets/data/graphics/9004.png differ
diff --git a/desktop/assets/data/graphics/9005.png b/desktop/assets/data/graphics/9005.png
new file mode 100644
index 00000000..aec90f07
Binary files /dev/null and b/desktop/assets/data/graphics/9005.png differ
diff --git a/desktop/assets/data/graphics/9006.png b/desktop/assets/data/graphics/9006.png
new file mode 100644
index 00000000..2faf92cf
Binary files /dev/null and b/desktop/assets/data/graphics/9006.png differ
diff --git a/desktop/assets/data/graphics/9007.png b/desktop/assets/data/graphics/9007.png
new file mode 100644
index 00000000..f5d05545
Binary files /dev/null and b/desktop/assets/data/graphics/9007.png differ
diff --git a/desktop/assets/data/graphics/9008.png b/desktop/assets/data/graphics/9008.png
new file mode 100644
index 00000000..f708aa89
Binary files /dev/null and b/desktop/assets/data/graphics/9008.png differ
diff --git a/desktop/assets/data/graphics/9009.png b/desktop/assets/data/graphics/9009.png
new file mode 100644
index 00000000..38883423
Binary files /dev/null and b/desktop/assets/data/graphics/9009.png differ
diff --git a/desktop/assets/data/graphics/9010.png b/desktop/assets/data/graphics/9010.png
new file mode 100644
index 00000000..b8b84248
Binary files /dev/null and b/desktop/assets/data/graphics/9010.png differ
diff --git a/desktop/assets/data/graphics/9011.png b/desktop/assets/data/graphics/9011.png
new file mode 100644
index 00000000..1ad9dec9
Binary files /dev/null and b/desktop/assets/data/graphics/9011.png differ
diff --git a/desktop/assets/data/graphics/9012.png b/desktop/assets/data/graphics/9012.png
new file mode 100644
index 00000000..5c773389
Binary files /dev/null and b/desktop/assets/data/graphics/9012.png differ
diff --git a/desktop/assets/data/graphics/9013.png b/desktop/assets/data/graphics/9013.png
new file mode 100644
index 00000000..f9f4372e
Binary files /dev/null and b/desktop/assets/data/graphics/9013.png differ
diff --git a/desktop/assets/data/graphics/9014.png b/desktop/assets/data/graphics/9014.png
new file mode 100644
index 00000000..f5663a90
Binary files /dev/null and b/desktop/assets/data/graphics/9014.png differ
diff --git a/desktop/assets/data/graphics/9015.png b/desktop/assets/data/graphics/9015.png
new file mode 100644
index 00000000..43fe963d
Binary files /dev/null and b/desktop/assets/data/graphics/9015.png differ
diff --git a/desktop/assets/data/graphics/9017.png b/desktop/assets/data/graphics/9017.png
new file mode 100644
index 00000000..4c4b745c
Binary files /dev/null and b/desktop/assets/data/graphics/9017.png differ
diff --git a/desktop/assets/data/graphics/9018.png b/desktop/assets/data/graphics/9018.png
new file mode 100644
index 00000000..c54cc523
Binary files /dev/null and b/desktop/assets/data/graphics/9018.png differ
diff --git a/desktop/assets/data/graphics/9019.png b/desktop/assets/data/graphics/9019.png
new file mode 100644
index 00000000..7580ef0e
Binary files /dev/null and b/desktop/assets/data/graphics/9019.png differ
diff --git a/desktop/assets/data/graphics/9020.png b/desktop/assets/data/graphics/9020.png
new file mode 100644
index 00000000..2025f397
Binary files /dev/null and b/desktop/assets/data/graphics/9020.png differ
diff --git a/desktop/assets/data/graphics/9021.png b/desktop/assets/data/graphics/9021.png
new file mode 100644
index 00000000..d773562d
Binary files /dev/null and b/desktop/assets/data/graphics/9021.png differ
diff --git a/desktop/assets/data/graphics/9022.png b/desktop/assets/data/graphics/9022.png
new file mode 100644
index 00000000..4af9a08d
Binary files /dev/null and b/desktop/assets/data/graphics/9022.png differ
diff --git a/desktop/assets/data/graphics/91.png b/desktop/assets/data/graphics/91.png
new file mode 100644
index 00000000..01c3d875
Binary files /dev/null and b/desktop/assets/data/graphics/91.png differ
diff --git a/desktop/assets/data/graphics/92.png b/desktop/assets/data/graphics/92.png
new file mode 100644
index 00000000..da3f9cb1
Binary files /dev/null and b/desktop/assets/data/graphics/92.png differ
diff --git a/desktop/assets/data/graphics/93.png b/desktop/assets/data/graphics/93.png
new file mode 100644
index 00000000..351a31c8
Binary files /dev/null and b/desktop/assets/data/graphics/93.png differ
diff --git a/desktop/assets/data/graphics/94.png b/desktop/assets/data/graphics/94.png
new file mode 100644
index 00000000..d3b82c40
Binary files /dev/null and b/desktop/assets/data/graphics/94.png differ
diff --git a/desktop/assets/data/graphics/95.png b/desktop/assets/data/graphics/95.png
new file mode 100644
index 00000000..995f504c
Binary files /dev/null and b/desktop/assets/data/graphics/95.png differ
diff --git a/desktop/assets/data/graphics/96.png b/desktop/assets/data/graphics/96.png
new file mode 100644
index 00000000..5ce9ef4d
Binary files /dev/null and b/desktop/assets/data/graphics/96.png differ
diff --git a/desktop/assets/data/graphics/97.png b/desktop/assets/data/graphics/97.png
new file mode 100644
index 00000000..1757c6be
Binary files /dev/null and b/desktop/assets/data/graphics/97.png differ
diff --git a/desktop/assets/data/graphics/98.png b/desktop/assets/data/graphics/98.png
new file mode 100644
index 00000000..58dea1a7
Binary files /dev/null and b/desktop/assets/data/graphics/98.png differ
diff --git a/desktop/assets/data/graphics/99.png b/desktop/assets/data/graphics/99.png
new file mode 100644
index 00000000..9b358c7d
Binary files /dev/null and b/desktop/assets/data/graphics/99.png differ
diff --git a/desktop/assets/data/images/images.atlas b/desktop/assets/data/images/images.atlas
new file mode 100644
index 00000000..0106bf0a
--- /dev/null
+++ b/desktop/assets/data/images/images.atlas
@@ -0,0 +1,17642 @@
+
+images.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+4060
+ rotate: false
+ xy: 1, 1363
+ size: 1280, 640
+ orig: 1280, 640
+ offset: 0, 0
+ index: -1
+4143
+ rotate: false
+ xy: 1, 682
+ size: 1120, 680
+ orig: 1120, 680
+ offset: 0, 0
+ index: -1
+4144
+ rotate: false
+ xy: 1, 1
+ size: 1120, 680
+ orig: 1120, 680
+ offset: 0, 0
+ index: -1
+
+images2.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+4117
+ rotate: false
+ xy: 1, 1
+ size: 1119, 944
+ orig: 1119, 944
+ offset: 0, 0
+ index: -1
+4145
+ rotate: false
+ xy: 1, 946
+ size: 1120, 680
+ orig: 1120, 680
+ offset: 0, 0
+ index: -1
+
+images3.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+15201
+ rotate: false
+ xy: 1, 847
+ size: 1119, 100
+ orig: 1119, 100
+ offset: 0, 0
+ index: -1
+15202
+ rotate: false
+ xy: 1, 746
+ size: 1119, 100
+ orig: 1119, 100
+ offset: 0, 0
+ index: -1
+4056
+ rotate: false
+ xy: 1121, 1420
+ size: 920, 472
+ orig: 920, 472
+ offset: 0, 0
+ index: -1
+4057
+ rotate: false
+ xy: 1121, 947
+ size: 920, 472
+ orig: 920, 472
+ offset: 0, 0
+ index: -1
+4058
+ rotate: false
+ xy: 1121, 474
+ size: 920, 472
+ orig: 920, 472
+ offset: 0, 0
+ index: -1
+4118
+ rotate: false
+ xy: 1, 948
+ size: 1119, 944
+ orig: 1119, 944
+ offset: 0, 0
+ index: -1
+4168
+ rotate: false
+ xy: 1, 245
+ size: 1000, 500
+ orig: 1000, 500
+ offset: 0, 0
+ index: -1
+4170
+ rotate: false
+ xy: 1002, 1
+ size: 920, 472
+ orig: 920, 472
+ offset: 0, 0
+ index: -1
+
+images4.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+4000
+ rotate: false
+ xy: 1, 1203
+ size: 901, 561
+ orig: 901, 561
+ offset: 0, 0
+ index: -1
+4062
+ rotate: false
+ xy: 1, 602
+ size: 864, 600
+ orig: 864, 600
+ offset: 0, 0
+ index: -1
+4063
+ rotate: false
+ xy: 1, 1
+ size: 864, 600
+ orig: 864, 600
+ offset: 0, 0
+ index: -1
+4064
+ rotate: false
+ xy: 903, 1164
+ size: 864, 600
+ orig: 864, 600
+ offset: 0, 0
+ index: -1
+4065
+ rotate: false
+ xy: 866, 563
+ size: 864, 600
+ orig: 864, 600
+ offset: 0, 0
+ index: -1
+
+images5.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+15228
+ rotate: false
+ xy: 1, 196
+ size: 798, 256
+ orig: 798, 256
+ offset: 0, 0
+ index: -1
+3094
+ rotate: false
+ xy: 1, 453
+ size: 800, 340
+ orig: 800, 340
+ offset: 0, 0
+ index: -1
+4035
+ rotate: false
+ xy: 866, 1
+ size: 812, 992
+ orig: 812, 992
+ offset: 0, 0
+ index: -1
+4119
+ rotate: false
+ xy: 866, 994
+ size: 855, 928
+ orig: 855, 928
+ offset: 0, 0
+ index: -1
+4120
+ rotate: false
+ xy: 1, 794
+ size: 864, 1128
+ orig: 864, 1128
+ offset: 0, 0
+ index: -1
+
+images6.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+12040
+ rotate: false
+ xy: 738, 642
+ size: 640, 640
+ orig: 640, 640
+ offset: 0, 0
+ index: -1
+12173
+ rotate: false
+ xy: 1, 575
+ size: 704, 459
+ orig: 704, 459
+ offset: 0, 0
+ index: -1
+12174
+ rotate: false
+ xy: 1, 115
+ size: 704, 459
+ orig: 704, 459
+ offset: 0, 0
+ index: -1
+15200
+ rotate: false
+ xy: 706, 507
+ size: 626, 134
+ orig: 626, 134
+ offset: 0, 0
+ index: -1
+15203
+ rotate: false
+ xy: 1, 9
+ size: 560, 50
+ orig: 560, 50
+ offset: 0, 0
+ index: -1
+3082
+ rotate: false
+ xy: 706, 1
+ size: 588, 304
+ orig: 588, 304
+ offset: 0, 0
+ index: -1
+3092
+ rotate: false
+ xy: 1, 1700
+ size: 760, 330
+ orig: 760, 330
+ offset: 0, 0
+ index: -1
+3096
+ rotate: false
+ xy: 1463, 1450
+ size: 580, 580
+ orig: 580, 580
+ offset: 0, 0
+ index: -1
+3099
+ rotate: false
+ xy: 762, 1500
+ size: 700, 530
+ orig: 700, 530
+ offset: 0, 0
+ index: -1
+3100
+ rotate: false
+ xy: 1, 60
+ size: 600, 54
+ orig: 600, 54
+ offset: 0, 0
+ index: -1
+4001
+ rotate: false
+ xy: 1, 1035
+ size: 736, 664
+ orig: 736, 664
+ offset: 0, 0
+ index: -1
+4092
+ rotate: false
+ xy: 706, 306
+ size: 594, 200
+ orig: 594, 200
+ offset: 0, 0
+ index: -1
+4121
+ rotate: false
+ xy: 1333, 328
+ size: 539, 300
+ orig: 539, 300
+ offset: 0, 0
+ index: -1
+4135
+ rotate: false
+ xy: 738, 1283
+ size: 640, 216
+ orig: 640, 216
+ offset: 0, 0
+ index: -1
+4136
+ rotate: false
+ xy: 1379, 1065
+ size: 576, 384
+ orig: 576, 384
+ offset: 0, 0
+ index: -1
+4137
+ rotate: false
+ xy: 1379, 680
+ size: 576, 384
+ orig: 576, 384
+ offset: 0, 0
+ index: -1
+4152
+ rotate: false
+ xy: 1301, 27
+ size: 539, 300
+ orig: 539, 300
+ offset: 0, 0
+ index: -1
+8173
+ rotate: false
+ xy: 1379, 629
+ size: 549, 50
+ orig: 549, 50
+ offset: 0, 0
+ index: -1
+
+images7.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10090
+ rotate: false
+ xy: 522, 931
+ size: 512, 512
+ orig: 512, 512
+ offset: 0, 0
+ index: -1
+12006
+ rotate: false
+ xy: 1035, 1444
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12008
+ rotate: false
+ xy: 1, 130
+ size: 512, 135
+ orig: 512, 135
+ offset: 0, 0
+ index: -1
+12052
+ rotate: false
+ xy: 1035, 1315
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12053
+ rotate: false
+ xy: 1, 1
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12054
+ rotate: false
+ xy: 1035, 1186
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12055
+ rotate: false
+ xy: 1035, 1057
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12056
+ rotate: false
+ xy: 1035, 928
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12059
+ rotate: false
+ xy: 514, 802
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12060
+ rotate: false
+ xy: 514, 673
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12064
+ rotate: false
+ xy: 514, 544
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12065
+ rotate: false
+ xy: 514, 415
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12067
+ rotate: false
+ xy: 514, 286
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12068
+ rotate: false
+ xy: 514, 157
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12069
+ rotate: false
+ xy: 514, 28
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12072
+ rotate: false
+ xy: 1027, 799
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12073
+ rotate: false
+ xy: 1027, 670
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12074
+ rotate: false
+ xy: 1027, 541
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12075
+ rotate: false
+ xy: 1027, 412
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12076
+ rotate: false
+ xy: 1027, 283
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12077
+ rotate: false
+ xy: 1027, 154
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+12078
+ rotate: false
+ xy: 1027, 25
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+3095
+ rotate: false
+ xy: 1, 782
+ size: 512, 512
+ orig: 512, 512
+ offset: 0, 0
+ index: -1
+4004
+ rotate: false
+ xy: 1, 1295
+ size: 520, 664
+ orig: 520, 664
+ offset: 0, 0
+ index: -1
+8023
+ rotate: false
+ xy: 522, 1831
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8024
+ rotate: false
+ xy: 1, 653
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8025
+ rotate: false
+ xy: 522, 1702
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8111
+ rotate: false
+ xy: 1035, 1831
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8112
+ rotate: false
+ xy: 1, 524
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8113
+ rotate: false
+ xy: 522, 1573
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8115
+ rotate: false
+ xy: 1035, 1702
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8166
+ rotate: false
+ xy: 1, 395
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8167
+ rotate: false
+ xy: 522, 1444
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+8168
+ rotate: false
+ xy: 1035, 1573
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+9022
+ rotate: false
+ xy: 1, 266
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+
+images8.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+11012
+ rotate: false
+ xy: 514, 1669
+ size: 500, 96
+ orig: 500, 96
+ offset: 0, 0
+ index: -1
+11013
+ rotate: false
+ xy: 1019, 1886
+ size: 500, 160
+ orig: 500, 160
+ offset: 0, 0
+ index: -1
+12175
+ rotate: false
+ xy: 514, 1129
+ size: 415, 539
+ orig: 415, 539
+ offset: 0, 0
+ index: -1
+12176
+ rotate: false
+ xy: 482, 444
+ size: 427, 474
+ orig: 427, 474
+ offset: 0, 0
+ index: -1
+15121
+ rotate: false
+ xy: 1331, 994
+ size: 400, 300
+ orig: 400, 300
+ offset: 0, 0
+ index: -1
+15168
+ rotate: false
+ xy: 1, 1790
+ size: 512, 256
+ orig: 512, 256
+ offset: 0, 0
+ index: -1
+15190
+ rotate: false
+ xy: 1, 1661
+ size: 512, 128
+ orig: 512, 128
+ offset: 0, 0
+ index: -1
+15198
+ rotate: false
+ xy: 482, 221
+ size: 420, 222
+ orig: 420, 222
+ offset: 0, 0
+ index: -1
+17006
+ rotate: false
+ xy: 1331, 663
+ size: 388, 330
+ orig: 388, 330
+ offset: 0, 0
+ index: -1
+17007
+ rotate: false
+ xy: 1311, 332
+ size: 388, 330
+ orig: 388, 330
+ offset: 0, 0
+ index: -1
+17009
+ rotate: false
+ xy: 1311, 1
+ size: 388, 330
+ orig: 388, 330
+ offset: 0, 0
+ index: -1
+3071
+ rotate: false
+ xy: 930, 1295
+ size: 400, 340
+ orig: 400, 340
+ offset: 0, 0
+ index: -1
+3089
+ rotate: false
+ xy: 1, 662
+ size: 480, 256
+ orig: 480, 256
+ offset: 0, 0
+ index: -1
+3090
+ rotate: false
+ xy: 1, 469
+ size: 480, 192
+ orig: 480, 192
+ offset: 0, 0
+ index: -1
+3098
+ rotate: false
+ xy: 1, 212
+ size: 480, 256
+ orig: 480, 256
+ offset: 0, 0
+ index: -1
+4008
+ rotate: false
+ xy: 930, 982
+ size: 400, 312
+ orig: 400, 312
+ offset: 0, 0
+ index: -1
+4034
+ rotate: false
+ xy: 1, 919
+ size: 490, 340
+ orig: 490, 340
+ offset: 0, 0
+ index: -1
+4039
+ rotate: false
+ xy: 903, 107
+ size: 399, 192
+ orig: 399, 192
+ offset: 0, 0
+ index: -1
+4051
+ rotate: false
+ xy: 1520, 1806
+ size: 445, 240
+ orig: 445, 240
+ offset: 0, 0
+ index: -1
+4073
+ rotate: false
+ xy: 910, 641
+ size: 400, 340
+ orig: 400, 340
+ offset: 0, 0
+ index: -1
+4074
+ rotate: false
+ xy: 910, 300
+ size: 400, 340
+ orig: 400, 340
+ offset: 0, 0
+ index: -1
+4075
+ rotate: false
+ xy: 1331, 1295
+ size: 400, 340
+ orig: 400, 340
+ offset: 0, 0
+ index: -1
+4094
+ rotate: false
+ xy: 1, 14
+ size: 473, 197
+ orig: 473, 197
+ offset: 0, 0
+ index: -1
+4124
+ rotate: false
+ xy: 1015, 1636
+ size: 415, 45
+ orig: 415, 45
+ offset: 0, 0
+ index: -1
+4125
+ rotate: false
+ xy: 482, 175
+ size: 415, 45
+ orig: 415, 45
+ offset: 0, 0
+ index: -1
+4126
+ rotate: false
+ xy: 1019, 1835
+ size: 440, 50
+ orig: 440, 50
+ offset: 0, 0
+ index: -1
+4127
+ rotate: false
+ xy: 1019, 1784
+ size: 440, 50
+ orig: 440, 50
+ offset: 0, 0
+ index: -1
+4128
+ rotate: false
+ xy: 1019, 1733
+ size: 440, 50
+ orig: 440, 50
+ offset: 0, 0
+ index: -1
+4129
+ rotate: false
+ xy: 1015, 1682
+ size: 440, 50
+ orig: 440, 50
+ offset: 0, 0
+ index: -1
+4134
+ rotate: false
+ xy: 475, 31
+ size: 415, 143
+ orig: 415, 143
+ offset: 0, 0
+ index: -1
+4151
+ rotate: false
+ xy: 1460, 1665
+ size: 416, 140
+ orig: 416, 140
+ offset: 0, 0
+ index: -1
+4167
+ rotate: false
+ xy: 514, 1766
+ size: 504, 280
+ orig: 504, 280
+ offset: 0, 0
+ index: -1
+7000
+ rotate: false
+ xy: 492, 919
+ size: 403, 209
+ orig: 403, 209
+ offset: 0, 0
+ index: -1
+8165
+ rotate: false
+ xy: 1, 1260
+ size: 500, 400
+ orig: 500, 400
+ offset: 0, 0
+ index: -1
+
+images9.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+12007
+ rotate: false
+ xy: 1164, 1342
+ size: 384, 384
+ orig: 384, 384
+ offset: 0, 0
+ index: -1
+12036
+ rotate: false
+ xy: 1549, 1342
+ size: 384, 384
+ orig: 384, 384
+ offset: 0, 0
+ index: -1
+12037
+ rotate: false
+ xy: 779, 1306
+ size: 384, 384
+ orig: 384, 384
+ offset: 0, 0
+ index: -1
+12038
+ rotate: false
+ xy: 1, 1268
+ size: 384, 384
+ orig: 384, 384
+ offset: 0, 0
+ index: -1
+12039
+ rotate: false
+ xy: 386, 1268
+ size: 384, 384
+ orig: 384, 384
+ offset: 0, 0
+ index: -1
+12057
+ rotate: false
+ xy: 1164, 1213
+ size: 384, 128
+ orig: 384, 128
+ offset: 0, 0
+ index: -1
+12058
+ rotate: false
+ xy: 1549, 1213
+ size: 384, 128
+ orig: 384, 128
+ offset: 0, 0
+ index: -1
+12062
+ rotate: false
+ xy: 771, 1177
+ size: 384, 128
+ orig: 384, 128
+ offset: 0, 0
+ index: -1
+14012
+ rotate: false
+ xy: 1, 787
+ size: 384, 480
+ orig: 384, 480
+ offset: 0, 0
+ index: -1
+14032
+ rotate: false
+ xy: 386, 787
+ size: 384, 480
+ orig: 384, 480
+ offset: 0, 0
+ index: -1
+15122
+ rotate: false
+ xy: 386, 282
+ size: 359, 504
+ orig: 359, 504
+ offset: 0, 0
+ index: -1
+15164
+ rotate: false
+ xy: 779, 1948
+ size: 385, 35
+ orig: 385, 35
+ offset: 0, 0
+ index: -1
+17000
+ rotate: false
+ xy: 1156, 864
+ size: 384, 348
+ orig: 384, 348
+ offset: 0, 0
+ index: -1
+17001
+ rotate: false
+ xy: 1541, 864
+ size: 384, 348
+ orig: 384, 348
+ offset: 0, 0
+ index: -1
+17002
+ rotate: false
+ xy: 771, 823
+ size: 384, 353
+ orig: 384, 353
+ offset: 0, 0
+ index: -1
+17003
+ rotate: false
+ xy: 1156, 510
+ size: 384, 353
+ orig: 384, 353
+ offset: 0, 0
+ index: -1
+17004
+ rotate: false
+ xy: 1541, 503
+ size: 384, 360
+ orig: 384, 360
+ offset: 0, 0
+ index: -1
+17005
+ rotate: false
+ xy: 771, 462
+ size: 384, 360
+ orig: 384, 360
+ offset: 0, 0
+ index: -1
+17008
+ rotate: false
+ xy: 1, 462
+ size: 384, 324
+ orig: 384, 324
+ offset: 0, 0
+ index: -1
+17010
+ rotate: false
+ xy: 1, 1653
+ size: 388, 330
+ orig: 388, 330
+ offset: 0, 0
+ index: -1
+17011
+ rotate: false
+ xy: 390, 1653
+ size: 388, 330
+ orig: 388, 330
+ offset: 0, 0
+ index: -1
+4153
+ rotate: false
+ xy: 1165, 1727
+ size: 384, 256
+ orig: 384, 256
+ offset: 0, 0
+ index: -1
+4154
+ rotate: false
+ xy: 1550, 1727
+ size: 384, 256
+ orig: 384, 256
+ offset: 0, 0
+ index: -1
+4155
+ rotate: false
+ xy: 779, 1691
+ size: 384, 256
+ orig: 384, 256
+ offset: 0, 0
+ index: -1
+6003
+ rotate: false
+ xy: 1156, 49
+ size: 357, 460
+ orig: 357, 460
+ offset: 0, 0
+ index: -1
+6011
+ rotate: false
+ xy: 1514, 42
+ size: 357, 460
+ orig: 357, 460
+ offset: 0, 0
+ index: -1
+6024
+ rotate: false
+ xy: 1, 1
+ size: 357, 460
+ orig: 357, 460
+ offset: 0, 0
+ index: -1
+6030
+ rotate: false
+ xy: 746, 1
+ size: 357, 460
+ orig: 357, 460
+ offset: 0, 0
+ index: -1
+9015
+ rotate: false
+ xy: 359, 217
+ size: 352, 64
+ orig: 352, 64
+ offset: 0, 0
+ index: -1
+9016
+ rotate: false
+ xy: 359, 217
+ size: 352, 64
+ orig: 352, 64
+ offset: 0, 0
+ index: -1
+
+images10.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10000
+ rotate: false
+ xy: 344, 1024
+ size: 333, 398
+ orig: 333, 398
+ offset: 0, 0
+ index: -1
+11008
+ rotate: false
+ xy: 991, 64
+ size: 300, 96
+ orig: 300, 96
+ offset: 0, 0
+ index: -1
+11009
+ rotate: false
+ xy: 1621, 494
+ size: 300, 160
+ orig: 300, 160
+ offset: 0, 0
+ index: -1
+11023
+ rotate: false
+ xy: 673, 908
+ size: 320, 96
+ orig: 320, 96
+ offset: 0, 0
+ index: -1
+11024
+ rotate: false
+ xy: 673, 683
+ size: 320, 224
+ orig: 320, 224
+ offset: 0, 0
+ index: -1
+11026
+ rotate: false
+ xy: 673, 298
+ size: 320, 384
+ orig: 320, 384
+ offset: 0, 0
+ index: -1
+11027
+ rotate: false
+ xy: 670, 137
+ size: 320, 160
+ orig: 320, 160
+ offset: 0, 0
+ index: -1
+12048
+ rotate: false
+ xy: 1, 1617
+ size: 352, 416
+ orig: 352, 416
+ offset: 0, 0
+ index: -1
+12093
+ rotate: false
+ xy: 1700, 1704
+ size: 320, 128
+ orig: 320, 128
+ offset: 0, 0
+ index: -1
+14004
+ rotate: false
+ xy: 1616, 313
+ size: 300, 180
+ orig: 300, 180
+ offset: 0, 0
+ index: -1
+14009
+ rotate: false
+ xy: 999, 1137
+ size: 320, 284
+ orig: 320, 284
+ offset: 0, 0
+ index: -1
+14010
+ rotate: false
+ xy: 999, 852
+ size: 320, 284
+ orig: 320, 284
+ offset: 0, 0
+ index: -1
+14024
+ rotate: false
+ xy: 1616, 132
+ size: 300, 180
+ orig: 300, 180
+ offset: 0, 0
+ index: -1
+14029
+ rotate: false
+ xy: 994, 567
+ size: 320, 284
+ orig: 320, 284
+ offset: 0, 0
+ index: -1
+14030
+ rotate: false
+ xy: 994, 282
+ size: 320, 284
+ orig: 320, 284
+ offset: 0, 0
+ index: -1
+15062
+ rotate: false
+ xy: 1, 1423
+ size: 350, 63
+ orig: 350, 63
+ offset: 0, 0
+ index: -1
+15063
+ rotate: false
+ xy: 354, 1840
+ size: 350, 63
+ orig: 350, 63
+ offset: 0, 0
+ index: -1
+15112
+ rotate: false
+ xy: 991, 161
+ size: 316, 120
+ orig: 316, 120
+ offset: 0, 0
+ index: -1
+15138
+ rotate: false
+ xy: 1337, 1551
+ size: 314, 234
+ orig: 314, 234
+ offset: 0, 0
+ index: -1
+3065
+ rotate: false
+ xy: 706, 1904
+ size: 320, 64
+ orig: 320, 64
+ offset: 0, 0
+ index: -1
+3091
+ rotate: false
+ xy: 1058, 1905
+ size: 320, 128
+ orig: 320, 128
+ offset: 0, 0
+ index: -1
+3093
+ rotate: false
+ xy: 1379, 1969
+ size: 320, 64
+ orig: 320, 64
+ offset: 0, 0
+ index: -1
+4002
+ rotate: false
+ xy: 1, 1022
+ size: 342, 400
+ orig: 342, 400
+ offset: 0, 0
+ index: -1
+4003
+ rotate: false
+ xy: 1, 624
+ size: 342, 397
+ orig: 342, 397
+ offset: 0, 0
+ index: -1
+4116
+ rotate: false
+ xy: 1, 624
+ size: 342, 397
+ orig: 342, 397
+ offset: 0, 0
+ index: -1
+4006
+ rotate: false
+ xy: 1, 226
+ size: 342, 397
+ orig: 342, 397
+ offset: 0, 0
+ index: -1
+4029
+ rotate: false
+ xy: 1018, 1422
+ size: 318, 240
+ orig: 318, 240
+ offset: 0, 0
+ index: -1
+4032
+ rotate: false
+ xy: 1337, 1226
+ size: 312, 324
+ orig: 312, 324
+ offset: 0, 0
+ index: -1
+4033
+ rotate: false
+ xy: 1320, 901
+ size: 312, 324
+ orig: 312, 324
+ offset: 0, 0
+ index: -1
+4038
+ rotate: false
+ xy: 1700, 1833
+ size: 320, 200
+ orig: 320, 200
+ offset: 0, 0
+ index: -1
+4066
+ rotate: false
+ xy: 354, 1443
+ size: 342, 396
+ orig: 342, 396
+ offset: 0, 0
+ index: -1
+4111
+ rotate: false
+ xy: 344, 107
+ size: 325, 264
+ orig: 325, 264
+ offset: 0, 0
+ index: -1
+4139
+ rotate: false
+ xy: 344, 698
+ size: 328, 325
+ orig: 328, 325
+ offset: 0, 0
+ index: -1
+4142
+ rotate: false
+ xy: 344, 372
+ size: 328, 325
+ orig: 328, 325
+ offset: 0, 0
+ index: -1
+4156
+ rotate: false
+ xy: 1320, 625
+ size: 300, 275
+ orig: 300, 275
+ offset: 0, 0
+ index: -1
+4169
+ rotate: false
+ xy: 1, 1
+ size: 330, 224
+ orig: 330, 224
+ offset: 0, 0
+ index: -1
+6002
+ rotate: false
+ xy: 1315, 354
+ size: 300, 270
+ orig: 300, 270
+ offset: 0, 0
+ index: -1
+6013
+ rotate: false
+ xy: 1652, 1315
+ size: 312, 388
+ orig: 312, 388
+ offset: 0, 0
+ index: -1
+6023
+ rotate: false
+ xy: 1315, 83
+ size: 300, 270
+ orig: 300, 270
+ offset: 0, 0
+ index: -1
+6032
+ rotate: false
+ xy: 1650, 926
+ size: 312, 388
+ orig: 312, 388
+ offset: 0, 0
+ index: -1
+6050
+ rotate: false
+ xy: 1633, 655
+ size: 300, 270
+ orig: 300, 270
+ offset: 0, 0
+ index: -1
+7001
+ rotate: false
+ xy: 1379, 1786
+ size: 320, 182
+ orig: 320, 182
+ offset: 0, 0
+ index: -1
+7007
+ rotate: false
+ xy: 705, 1663
+ size: 320, 240
+ orig: 320, 240
+ offset: 0, 0
+ index: -1
+7077
+ rotate: false
+ xy: 697, 1422
+ size: 320, 240
+ orig: 320, 240
+ offset: 0, 0
+ index: -1
+8019
+ rotate: false
+ xy: 332, 25
+ size: 300, 81
+ orig: 300, 81
+ offset: 0, 0
+ index: -1
+8142
+ rotate: false
+ xy: 670, 55
+ size: 300, 81
+ orig: 300, 81
+ offset: 0, 0
+ index: -1
+9007
+ rotate: false
+ xy: 678, 1005
+ size: 320, 416
+ orig: 320, 416
+ offset: 0, 0
+ index: -1
+9011
+ rotate: false
+ xy: 1, 1552
+ size: 351, 64
+ orig: 351, 64
+ offset: 0, 0
+ index: -1
+9012
+ rotate: false
+ xy: 354, 1969
+ size: 351, 64
+ orig: 351, 64
+ offset: 0, 0
+ index: -1
+9013
+ rotate: false
+ xy: 1, 1487
+ size: 351, 64
+ orig: 351, 64
+ offset: 0, 0
+ index: -1
+9014
+ rotate: false
+ xy: 354, 1904
+ size: 351, 64
+ orig: 351, 64
+ offset: 0, 0
+ index: -1
+9017
+ rotate: false
+ xy: 706, 1969
+ size: 351, 64
+ orig: 351, 64
+ offset: 0, 0
+ index: -1
+
+images11.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+11044
+ rotate: false
+ xy: 601, 1465
+ size: 288, 192
+ orig: 288, 192
+ offset: 0, 0
+ index: -1
+11045
+ rotate: false
+ xy: 600, 1272
+ size: 288, 192
+ orig: 288, 192
+ offset: 0, 0
+ index: -1
+11046
+ rotate: false
+ xy: 600, 1079
+ size: 288, 192
+ orig: 288, 192
+ offset: 0, 0
+ index: -1
+11047
+ rotate: false
+ xy: 596, 790
+ size: 288, 288
+ orig: 288, 288
+ offset: 0, 0
+ index: -1
+14015
+ rotate: false
+ xy: 582, 254
+ size: 282, 320
+ orig: 282, 320
+ offset: 0, 0
+ index: -1
+15114
+ rotate: false
+ xy: 1, 1708
+ size: 300, 300
+ orig: 300, 300
+ offset: 0, 0
+ index: -1
+15115
+ rotate: false
+ xy: 1, 1207
+ size: 300, 500
+ orig: 300, 500
+ offset: 0, 0
+ index: -1
+15123
+ rotate: false
+ xy: 1, 970
+ size: 298, 154
+ orig: 298, 154
+ offset: 0, 0
+ index: -1
+15124
+ rotate: false
+ xy: 302, 1732
+ size: 298, 154
+ orig: 298, 154
+ offset: 0, 0
+ index: -1
+15125
+ rotate: false
+ xy: 1, 815
+ size: 298, 154
+ orig: 298, 154
+ offset: 0, 0
+ index: -1
+15126
+ rotate: false
+ xy: 302, 1577
+ size: 298, 154
+ orig: 298, 154
+ offset: 0, 0
+ index: -1
+15196
+ rotate: false
+ xy: 300, 745
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17041
+ rotate: false
+ xy: 302, 1950
+ size: 300, 58
+ orig: 300, 58
+ offset: 0, 0
+ index: -1
+17042
+ rotate: false
+ xy: 1, 1125
+ size: 300, 81
+ orig: 300, 81
+ offset: 0, 0
+ index: -1
+17043
+ rotate: false
+ xy: 302, 1887
+ size: 300, 62
+ orig: 300, 62
+ offset: 0, 0
+ index: -1
+17044
+ rotate: false
+ xy: 603, 1943
+ size: 300, 65
+ orig: 300, 65
+ offset: 0, 0
+ index: -1
+4037
+ rotate: false
+ xy: 1, 617
+ size: 297, 197
+ orig: 297, 197
+ offset: 0, 0
+ index: -1
+4059
+ rotate: false
+ xy: 302, 1379
+ size: 297, 197
+ orig: 297, 197
+ offset: 0, 0
+ index: -1
+4078
+ rotate: false
+ xy: 1, 419
+ size: 297, 197
+ orig: 297, 197
+ offset: 0, 0
+ index: -1
+4105
+ rotate: false
+ xy: 582, 41
+ size: 280, 212
+ orig: 280, 212
+ offset: 0, 0
+ index: -1
+4106
+ rotate: false
+ xy: 1786, 1880
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+4107
+ rotate: false
+ xy: 1786, 1751
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+4108
+ rotate: false
+ xy: 1786, 1622
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+4109
+ rotate: false
+ xy: 1769, 1493
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+4148
+ rotate: false
+ xy: 302, 1181
+ size: 297, 197
+ orig: 297, 197
+ offset: 0, 0
+ index: -1
+4149
+ rotate: false
+ xy: 1, 221
+ size: 297, 197
+ orig: 297, 197
+ offset: 0, 0
+ index: -1
+6000
+ rotate: false
+ xy: 889, 860
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6001
+ rotate: false
+ xy: 1146, 772
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6008
+ rotate: false
+ xy: 889, 1156
+ size: 267, 300
+ orig: 267, 300
+ offset: 0, 0
+ index: -1
+6012
+ rotate: false
+ xy: 904, 1672
+ size: 293, 336
+ orig: 293, 336
+ offset: 0, 0
+ index: -1
+6014
+ rotate: false
+ xy: 1198, 1670
+ size: 293, 338
+ orig: 293, 338
+ offset: 0, 0
+ index: -1
+6015
+ rotate: false
+ xy: 885, 564
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6017
+ rotate: false
+ xy: 865, 307
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6018
+ rotate: false
+ xy: 1142, 515
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6020
+ rotate: false
+ xy: 1122, 194
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6021
+ rotate: false
+ xy: 865, 11
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6022
+ rotate: false
+ xy: 1403, 772
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6029
+ rotate: false
+ xy: 1169, 1369
+ size: 267, 300
+ orig: 267, 300
+ offset: 0, 0
+ index: -1
+6031
+ rotate: false
+ xy: 1492, 1672
+ size: 293, 336
+ orig: 293, 336
+ offset: 0, 0
+ index: -1
+6033
+ rotate: false
+ xy: 302, 842
+ size: 293, 338
+ orig: 293, 338
+ offset: 0, 0
+ index: -1
+6034
+ rotate: false
+ xy: 1399, 515
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6035
+ rotate: false
+ xy: 1379, 258
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6036
+ rotate: false
+ xy: 1379, 1
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6037
+ rotate: false
+ xy: 1437, 1217
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6038
+ rotate: false
+ xy: 1636, 194
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6039
+ rotate: false
+ xy: 1694, 1153
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6040
+ rotate: false
+ xy: 1660, 832
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6055
+ rotate: false
+ xy: 1157, 1068
+ size: 267, 300
+ orig: 267, 300
+ offset: 0, 0
+ index: -1
+6063
+ rotate: false
+ xy: 299, 424
+ size: 282, 320
+ orig: 282, 320
+ offset: 0, 0
+ index: -1
+6077
+ rotate: false
+ xy: 299, 103
+ size: 282, 320
+ orig: 282, 320
+ offset: 0, 0
+ index: -1
+8028
+ rotate: false
+ xy: 1492, 1474
+ size: 276, 197
+ orig: 276, 197
+ offset: 0, 0
+ index: -1
+8030
+ rotate: false
+ xy: 1, 23
+ size: 290, 197
+ orig: 290, 197
+ offset: 0, 0
+ index: -1
+8031
+ rotate: false
+ xy: 603, 1873
+ size: 290, 69
+ orig: 290, 69
+ offset: 0, 0
+ index: -1
+8032
+ rotate: false
+ xy: 292, 34
+ size: 276, 68
+ orig: 276, 68
+ offset: 0, 0
+ index: -1
+8033
+ rotate: false
+ xy: 892, 1457
+ size: 276, 214
+ orig: 276, 214
+ offset: 0, 0
+ index: -1
+8034
+ rotate: false
+ xy: 601, 1658
+ size: 290, 214
+ orig: 290, 214
+ offset: 0, 0
+ index: -1
+9020
+ rotate: false
+ xy: 589, 575
+ size: 282, 214
+ orig: 282, 214
+ offset: 0, 0
+ index: -1
+
+images12.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10004
+ rotate: false
+ xy: 1029, 553
+ size: 256, 194
+ orig: 256, 194
+ offset: 0, 0
+ index: -1
+11000
+ rotate: false
+ xy: 515, 34
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+11001
+ rotate: false
+ xy: 1029, 392
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+11002
+ rotate: false
+ xy: 1029, 295
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+11003
+ rotate: false
+ xy: 1029, 134
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+11004
+ rotate: false
+ xy: 1029, 37
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+11005
+ rotate: false
+ xy: 1286, 1847
+ size: 256, 185
+ orig: 256, 185
+ offset: 0, 0
+ index: -1
+11006
+ rotate: false
+ xy: 1286, 1750
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+11007
+ rotate: false
+ xy: 1286, 1589
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+11010
+ rotate: false
+ xy: 1286, 1492
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+11011
+ rotate: false
+ xy: 1286, 1296
+ size: 256, 195
+ orig: 256, 195
+ offset: 0, 0
+ index: -1
+11014
+ rotate: false
+ xy: 1286, 1199
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+11015
+ rotate: false
+ xy: 1286, 1038
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+11029
+ rotate: false
+ xy: 1286, 1038
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+11019
+ rotate: false
+ xy: 515, 1
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+11020
+ rotate: false
+ xy: 1286, 941
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+11021
+ rotate: false
+ xy: 1286, 780
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+11028
+ rotate: false
+ xy: 1286, 619
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+11030
+ rotate: false
+ xy: 1286, 522
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+11034
+ rotate: false
+ xy: 1286, 361
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+11035
+ rotate: false
+ xy: 1286, 264
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+12003
+ rotate: false
+ xy: 1543, 1648
+ size: 256, 384
+ orig: 256, 384
+ offset: 0, 0
+ index: -1
+12011
+ rotate: false
+ xy: 1543, 1263
+ size: 256, 384
+ orig: 256, 384
+ offset: 0, 0
+ index: -1
+12012
+ rotate: false
+ xy: 1543, 878
+ size: 256, 384
+ orig: 256, 384
+ offset: 0, 0
+ index: -1
+12082
+ rotate: false
+ xy: 1543, 493
+ size: 256, 384
+ orig: 256, 384
+ offset: 0, 0
+ index: -1
+12083
+ rotate: false
+ xy: 1543, 108
+ size: 256, 384
+ orig: 256, 384
+ offset: 0, 0
+ index: -1
+13106
+ rotate: false
+ xy: 1286, 7
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6041
+ rotate: false
+ xy: 1, 1712
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6042
+ rotate: false
+ xy: 258, 1737
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6044
+ rotate: false
+ xy: 258, 1480
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6045
+ rotate: false
+ xy: 1, 1455
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6047
+ rotate: false
+ xy: 258, 1159
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6048
+ rotate: false
+ xy: 1, 1159
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6049
+ rotate: false
+ xy: 515, 1737
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6056
+ rotate: false
+ xy: 515, 1480
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6057
+ rotate: false
+ xy: 515, 1223
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6058
+ rotate: false
+ xy: 515, 966
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6059
+ rotate: false
+ xy: 1, 838
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6060
+ rotate: false
+ xy: 258, 838
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6061
+ rotate: false
+ xy: 515, 645
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6062
+ rotate: false
+ xy: 1, 517
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6064
+ rotate: false
+ xy: 258, 542
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+6066
+ rotate: false
+ xy: 515, 388
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6067
+ rotate: false
+ xy: 1, 260
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6070
+ rotate: false
+ xy: 258, 285
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6071
+ rotate: false
+ xy: 515, 131
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6072
+ rotate: false
+ xy: 258, 28
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6073
+ rotate: false
+ xy: 772, 1712
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6074
+ rotate: false
+ xy: 772, 1391
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6075
+ rotate: false
+ xy: 772, 1070
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6076
+ rotate: false
+ xy: 772, 749
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6078
+ rotate: false
+ xy: 772, 428
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+6079
+ rotate: false
+ xy: 1, 3
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+6080
+ rotate: false
+ xy: 772, 171
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+8014
+ rotate: false
+ xy: 1029, 1776
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+8015
+ rotate: false
+ xy: 1029, 1519
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+8080
+ rotate: false
+ xy: 1029, 1262
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+8175
+ rotate: false
+ xy: 772, 10
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+9008
+ rotate: false
+ xy: 1029, 1005
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+9018
+ rotate: false
+ xy: 1029, 748
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+
+images13.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10001
+ rotate: false
+ xy: 1, 448
+ size: 245, 256
+ orig: 245, 256
+ offset: 0, 0
+ index: -1
+10009
+ rotate: false
+ xy: 1182, 38
+ size: 204, 352
+ orig: 204, 352
+ offset: 0, 0
+ index: -1
+12041
+ rotate: false
+ xy: 1800, 1764
+ size: 222, 76
+ orig: 222, 76
+ offset: 0, 0
+ index: -1
+13107
+ rotate: false
+ xy: 1, 1789
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+14000
+ rotate: false
+ xy: 258, 1860
+ size: 256, 185
+ orig: 256, 185
+ offset: 0, 0
+ index: -1
+14001
+ rotate: false
+ xy: 515, 1859
+ size: 256, 186
+ orig: 256, 186
+ offset: 0, 0
+ index: -1
+14002
+ rotate: false
+ xy: 258, 1673
+ size: 256, 186
+ orig: 256, 186
+ offset: 0, 0
+ index: -1
+14003
+ rotate: false
+ xy: 1, 1604
+ size: 256, 184
+ orig: 256, 184
+ offset: 0, 0
+ index: -1
+14005
+ rotate: false
+ xy: 772, 1831
+ size: 256, 214
+ orig: 256, 214
+ offset: 0, 0
+ index: -1
+14006
+ rotate: false
+ xy: 515, 1671
+ size: 256, 187
+ orig: 256, 187
+ offset: 0, 0
+ index: -1
+14007
+ rotate: false
+ xy: 258, 1476
+ size: 256, 196
+ orig: 256, 196
+ offset: 0, 0
+ index: -1
+14008
+ rotate: false
+ xy: 1, 1283
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+14011
+ rotate: false
+ xy: 1029, 1745
+ size: 256, 300
+ orig: 256, 300
+ offset: 0, 0
+ index: -1
+14013
+ rotate: false
+ xy: 772, 1634
+ size: 256, 196
+ orig: 256, 196
+ offset: 0, 0
+ index: -1
+14014
+ rotate: false
+ xy: 515, 1482
+ size: 256, 188
+ orig: 256, 188
+ offset: 0, 0
+ index: -1
+14016
+ rotate: false
+ xy: 1286, 1981
+ size: 256, 64
+ orig: 256, 64
+ offset: 0, 0
+ index: -1
+14017
+ rotate: false
+ xy: 1543, 1981
+ size: 256, 64
+ orig: 256, 64
+ offset: 0, 0
+ index: -1
+14018
+ rotate: false
+ xy: 1286, 1916
+ size: 256, 64
+ orig: 256, 64
+ offset: 0, 0
+ index: -1
+14020
+ rotate: false
+ xy: 1543, 1795
+ size: 256, 185
+ orig: 256, 185
+ offset: 0, 0
+ index: -1
+14021
+ rotate: false
+ xy: 1286, 1729
+ size: 256, 186
+ orig: 256, 186
+ offset: 0, 0
+ index: -1
+14022
+ rotate: false
+ xy: 1029, 1558
+ size: 256, 186
+ orig: 256, 186
+ offset: 0, 0
+ index: -1
+14023
+ rotate: false
+ xy: 772, 1449
+ size: 256, 184
+ orig: 256, 184
+ offset: 0, 0
+ index: -1
+14025
+ rotate: false
+ xy: 515, 1267
+ size: 256, 214
+ orig: 256, 214
+ offset: 0, 0
+ index: -1
+14026
+ rotate: false
+ xy: 258, 1288
+ size: 256, 187
+ orig: 256, 187
+ offset: 0, 0
+ index: -1
+14027
+ rotate: false
+ xy: 258, 1091
+ size: 256, 196
+ orig: 256, 196
+ offset: 0, 0
+ index: -1
+14028
+ rotate: false
+ xy: 1, 962
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+14031
+ rotate: false
+ xy: 1543, 1494
+ size: 256, 300
+ orig: 256, 300
+ offset: 0, 0
+ index: -1
+14033
+ rotate: false
+ xy: 1286, 1532
+ size: 256, 196
+ orig: 256, 196
+ offset: 0, 0
+ index: -1
+14034
+ rotate: false
+ xy: 1029, 1369
+ size: 256, 188
+ orig: 256, 188
+ offset: 0, 0
+ index: -1
+14035
+ rotate: false
+ xy: 772, 1260
+ size: 256, 188
+ orig: 256, 188
+ offset: 0, 0
+ index: -1
+14036
+ rotate: false
+ xy: 515, 1202
+ size: 256, 64
+ orig: 256, 64
+ offset: 0, 0
+ index: -1
+14037
+ rotate: false
+ xy: 1286, 1467
+ size: 256, 64
+ orig: 256, 64
+ offset: 0, 0
+ index: -1
+14038
+ rotate: false
+ xy: 1543, 1429
+ size: 256, 64
+ orig: 256, 64
+ offset: 0, 0
+ index: -1
+143
+ rotate: false
+ xy: 739, 391
+ size: 231, 260
+ orig: 231, 260
+ offset: 0, 0
+ index: -1
+15001
+ rotate: false
+ xy: 1029, 1018
+ size: 253, 93
+ orig: 253, 93
+ offset: 0, 0
+ index: -1
+15009
+ rotate: false
+ xy: 1800, 1186
+ size: 200, 32
+ orig: 200, 32
+ offset: 0, 0
+ index: -1
+15060
+ rotate: false
+ xy: 712, 283
+ size: 209, 107
+ orig: 209, 107
+ offset: 0, 0
+ index: -1
+15127
+ rotate: false
+ xy: 772, 917
+ size: 248, 85
+ orig: 248, 85
+ offset: 0, 0
+ index: -1
+15159
+ rotate: false
+ xy: 1, 65
+ size: 204, 81
+ orig: 204, 81
+ offset: 0, 0
+ index: -1
+15169
+ rotate: false
+ xy: 1286, 1402
+ size: 256, 64
+ orig: 256, 64
+ offset: 0, 0
+ index: -1
+15178
+ rotate: false
+ xy: 1543, 1172
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+15179
+ rotate: false
+ xy: 1286, 1145
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+15180
+ rotate: false
+ xy: 1029, 1112
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+15189
+ rotate: false
+ xy: 480, 278
+ size: 209, 107
+ orig: 209, 107
+ offset: 0, 0
+ index: -1
+15191
+ rotate: false
+ xy: 772, 1003
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+15209
+ rotate: false
+ xy: 515, 977
+ size: 256, 224
+ orig: 256, 224
+ offset: 0, 0
+ index: -1
+15230
+ rotate: false
+ xy: 258, 834
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+15231
+ rotate: false
+ xy: 1, 705
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+3070
+ rotate: false
+ xy: 922, 150
+ size: 200, 170
+ orig: 200, 170
+ offset: 0, 0
+ index: -1
+4005
+ rotate: false
+ xy: 1800, 1219
+ size: 213, 140
+ orig: 213, 140
+ offset: 0, 0
+ index: -1
+4030
+ rotate: false
+ xy: 1798, 947
+ size: 228, 224
+ orig: 228, 224
+ offset: 0, 0
+ index: -1
+4031
+ rotate: false
+ xy: 690, 98
+ size: 200, 184
+ orig: 200, 184
+ offset: 0, 0
+ index: -1
+4040
+ rotate: false
+ xy: 891, 17
+ size: 198, 132
+ orig: 198, 132
+ offset: 0, 0
+ index: -1
+4050
+ rotate: false
+ xy: 480, 386
+ size: 231, 132
+ orig: 231, 132
+ offset: 0, 0
+ index: -1
+4072
+ rotate: false
+ xy: 1783, 109
+ size: 192, 157
+ orig: 192, 157
+ offset: 0, 0
+ index: -1
+4083
+ rotate: false
+ xy: 1800, 1841
+ size: 224, 204
+ orig: 224, 204
+ offset: 0, 0
+ index: -1
+4088
+ rotate: false
+ xy: 1846, 285
+ size: 192, 189
+ orig: 192, 189
+ offset: 0, 0
+ index: -1
+4093
+ rotate: false
+ xy: 1229, 612
+ size: 213, 140
+ orig: 213, 140
+ offset: 0, 0
+ index: -1
+4113
+ rotate: false
+ xy: 1586, 5
+ size: 196, 128
+ orig: 196, 128
+ offset: 0, 0
+ index: -1
+4114
+ rotate: false
+ xy: 1800, 1360
+ size: 218, 128
+ orig: 218, 128
+ offset: 0, 0
+ index: -1
+4130
+ rotate: false
+ xy: 1229, 391
+ size: 210, 220
+ orig: 210, 220
+ offset: 0, 0
+ index: -1
+4131
+ rotate: false
+ xy: 1443, 547
+ size: 212, 140
+ orig: 212, 140
+ offset: 0, 0
+ index: -1
+4133
+ rotate: false
+ xy: 206, 1
+ size: 194, 125
+ orig: 194, 125
+ offset: 0, 0
+ index: -1
+4138
+ rotate: false
+ xy: 1588, 141
+ size: 194, 125
+ orig: 194, 125
+ offset: 0, 0
+ index: -1
+4140
+ rotate: false
+ xy: 515, 776
+ size: 245, 200
+ orig: 245, 200
+ offset: 0, 0
+ index: -1
+4141
+ rotate: false
+ xy: 258, 633
+ size: 245, 200
+ orig: 245, 200
+ offset: 0, 0
+ index: -1
+4150
+ rotate: false
+ xy: 1540, 688
+ size: 216, 208
+ orig: 216, 208
+ offset: 0, 0
+ index: -1
+4160
+ rotate: false
+ xy: 1387, 1
+ size: 198, 132
+ orig: 198, 132
+ offset: 0, 0
+ index: -1
+4162
+ rotate: false
+ xy: 1800, 1489
+ size: 220, 184
+ orig: 220, 184
+ offset: 0, 0
+ index: -1
+4163
+ rotate: false
+ xy: 971, 321
+ size: 210, 140
+ orig: 210, 140
+ offset: 0, 0
+ index: -1
+6004
+ rotate: false
+ xy: 234, 127
+ size: 204, 204
+ orig: 204, 204
+ offset: 0, 0
+ index: -1
+6005
+ rotate: false
+ xy: 247, 332
+ size: 232, 300
+ orig: 232, 300
+ offset: 0, 0
+ index: -1
+6007
+ rotate: false
+ xy: 439, 70
+ size: 200, 207
+ orig: 200, 207
+ offset: 0, 0
+ index: -1
+6025
+ rotate: false
+ xy: 1656, 475
+ size: 204, 204
+ orig: 204, 204
+ offset: 0, 0
+ index: -1
+6026
+ rotate: false
+ xy: 1, 147
+ size: 232, 300
+ orig: 232, 300
+ offset: 0, 0
+ index: -1
+6028
+ rotate: false
+ xy: 1645, 267
+ size: 200, 207
+ orig: 200, 207
+ offset: 0, 0
+ index: -1
+6051
+ rotate: false
+ xy: 1440, 342
+ size: 204, 204
+ orig: 204, 204
+ offset: 0, 0
+ index: -1
+6052
+ rotate: false
+ xy: 996, 462
+ size: 232, 300
+ orig: 232, 300
+ offset: 0, 0
+ index: -1
+6054
+ rotate: false
+ xy: 1387, 134
+ size: 200, 207
+ orig: 200, 207
+ offset: 0, 0
+ index: -1
+8077
+ rotate: false
+ xy: 1800, 1674
+ size: 221, 89
+ orig: 221, 89
+ offset: 0, 0
+ index: -1
+8078
+ rotate: false
+ xy: 761, 652
+ size: 234, 264
+ orig: 234, 264
+ offset: 0, 0
+ index: -1
+8079
+ rotate: false
+ xy: 1029, 763
+ size: 250, 254
+ orig: 250, 254
+ offset: 0, 0
+ index: -1
+8164
+ rotate: false
+ xy: 1798, 680
+ size: 218, 266
+ orig: 218, 266
+ offset: 0, 0
+ index: -1
+9005
+ rotate: false
+ xy: 1543, 897
+ size: 254, 274
+ orig: 254, 274
+ offset: 0, 0
+ index: -1
+9009
+ rotate: false
+ xy: 504, 519
+ size: 234, 256
+ orig: 234, 256
+ offset: 0, 0
+ index: -1
+9019
+ rotate: false
+ xy: 1286, 753
+ size: 253, 391
+ orig: 253, 391
+ offset: 0, 0
+ index: -1
+
+images14.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10005
+ rotate: false
+ xy: 194, 1372
+ size: 186, 182
+ orig: 186, 182
+ offset: 0, 0
+ index: -1
+10006
+ rotate: false
+ xy: 383, 740
+ size: 152, 221
+ orig: 152, 221
+ offset: 0, 0
+ index: -1
+103
+ rotate: false
+ xy: 1289, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+104
+ rotate: false
+ xy: 907, 239
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+105
+ rotate: false
+ xy: 756, 150
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+107
+ rotate: false
+ xy: 605, 1
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+109
+ rotate: false
+ xy: 1058, 239
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+11
+ rotate: false
+ xy: 1, 393
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+11016
+ rotate: false
+ xy: 937, 1636
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+11017
+ rotate: false
+ xy: 936, 1507
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+11022
+ rotate: false
+ xy: 1, 991
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+11025
+ rotate: false
+ xy: 1, 926
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+11037
+ rotate: false
+ xy: 1, 829
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+111
+ rotate: false
+ xy: 1440, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+113
+ rotate: false
+ xy: 1442, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+115
+ rotate: false
+ xy: 1550, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+117
+ rotate: false
+ xy: 1551, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+119
+ rotate: false
+ xy: 1553, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+120
+ rotate: false
+ xy: 1551, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+122
+ rotate: false
+ xy: 1468, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+124
+ rotate: false
+ xy: 1468, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+127
+ rotate: false
+ xy: 1442, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+129
+ rotate: false
+ xy: 1591, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+13
+ rotate: false
+ xy: 152, 393
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+13007
+ rotate: false
+ xy: 383, 1244
+ size: 180, 210
+ orig: 180, 210
+ offset: 0, 0
+ index: -1
+132
+ rotate: false
+ xy: 1593, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+134
+ rotate: false
+ xy: 1619, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+136
+ rotate: false
+ xy: 1701, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+471
+ rotate: false
+ xy: 1701, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+138
+ rotate: false
+ xy: 1702, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+140
+ rotate: false
+ xy: 1742, 592
+ size: 150, 181
+ orig: 150, 181
+ offset: 0, 0
+ index: -1
+142
+ rotate: false
+ xy: 1744, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+144
+ rotate: false
+ xy: 1770, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+145
+ rotate: false
+ xy: 1744, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+147
+ rotate: false
+ xy: 1852, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+149
+ rotate: false
+ xy: 1852, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+15
+ rotate: false
+ xy: 534, 559
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+15056
+ rotate: false
+ xy: 936, 1410
+ size: 160, 96
+ orig: 160, 96
+ offset: 0, 0
+ index: -1
+15072
+ rotate: false
+ xy: 1, 764
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+151
+ rotate: false
+ xy: 1853, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+15105
+ rotate: false
+ xy: 917, 1313
+ size: 160, 96
+ orig: 160, 96
+ offset: 0, 0
+ index: -1
+15181
+ rotate: false
+ xy: 373, 1111
+ size: 160, 64
+ orig: 160, 64
+ offset: 0, 0
+ index: -1
+15182
+ rotate: false
+ xy: 695, 1152
+ size: 160, 64
+ orig: 160, 64
+ offset: 0, 0
+ index: -1
+15183
+ rotate: false
+ xy: 695, 1087
+ size: 160, 64
+ orig: 160, 64
+ offset: 0, 0
+ index: -1
+15206
+ rotate: false
+ xy: 516, 962
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+153
+ rotate: false
+ xy: 1853, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+155
+ rotate: false
+ xy: 1742, 411
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+157
+ rotate: false
+ xy: 1209, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+159
+ rotate: false
+ xy: 907, 58
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+161
+ rotate: false
+ xy: 1058, 58
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+167
+ rotate: false
+ xy: 1360, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+168
+ rotate: false
+ xy: 1511, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+169
+ rotate: false
+ xy: 1662, 230
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+170
+ rotate: false
+ xy: 1813, 230
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+171
+ rotate: false
+ xy: 1893, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+172
+ rotate: false
+ xy: 1893, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+173
+ rotate: false
+ xy: 1895, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+174
+ rotate: false
+ xy: 1895, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+175
+ rotate: false
+ xy: 1209, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+176
+ rotate: false
+ xy: 1360, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+177
+ rotate: false
+ xy: 1511, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+178
+ rotate: false
+ xy: 1662, 49
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+179
+ rotate: false
+ xy: 1813, 49
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+18
+ rotate: false
+ xy: 1015, 963
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+199
+ rotate: false
+ xy: 194, 1555
+ size: 186, 192
+ orig: 186, 192
+ offset: 0, 0
+ index: -1
+20
+ rotate: false
+ xy: 1100, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+23
+ rotate: false
+ xy: 1098, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+238
+ rotate: false
+ xy: 194, 789
+ size: 151, 180
+ orig: 151, 180
+ offset: 0, 0
+ index: -1
+25
+ rotate: false
+ xy: 1098, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+27
+ rotate: false
+ xy: 1097, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+3
+ rotate: false
+ xy: 536, 781
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21
+ rotate: false
+ xy: 536, 781
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+31
+ rotate: false
+ xy: 1015, 782
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+33
+ rotate: false
+ xy: 838, 693
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+35
+ rotate: false
+ xy: 685, 544
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+37
+ rotate: false
+ xy: 303, 378
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+39
+ rotate: false
+ xy: 1, 212
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+4011
+ rotate: false
+ xy: 856, 874
+ size: 158, 269
+ orig: 158, 269
+ offset: 0, 0
+ index: -1
+4013
+ rotate: false
+ xy: 766, 1867
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+4014
+ rotate: false
+ xy: 766, 1806
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+4015
+ rotate: false
+ xy: 766, 1745
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+4016
+ rotate: false
+ xy: 765, 1684
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+4017
+ rotate: false
+ xy: 765, 1623
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+4018
+ rotate: false
+ xy: 765, 1562
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+4019
+ rotate: false
+ xy: 765, 1501
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+4020
+ rotate: false
+ xy: 564, 1242
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+4082
+ rotate: false
+ xy: 576, 1915
+ size: 189, 125
+ orig: 189, 125
+ offset: 0, 0
+ index: -1
+4084
+ rotate: false
+ xy: 1, 574
+ size: 190, 189
+ orig: 190, 189
+ offset: 0, 0
+ index: -1
+4091
+ rotate: false
+ xy: 742, 1273
+ size: 174, 181
+ orig: 174, 181
+ offset: 0, 0
+ index: -1
+4098
+ rotate: false
+ xy: 192, 574
+ size: 190, 189
+ orig: 190, 189
+ offset: 0, 0
+ index: -1
+41
+ rotate: false
+ xy: 152, 212
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+4101
+ rotate: false
+ xy: 1, 1912
+ size: 192, 128
+ orig: 192, 128
+ offset: 0, 0
+ index: -1
+4102
+ rotate: false
+ xy: 1, 1783
+ size: 192, 128
+ orig: 192, 128
+ offset: 0, 0
+ index: -1
+4103
+ rotate: false
+ xy: 1, 1654
+ size: 192, 128
+ orig: 192, 128
+ offset: 0, 0
+ index: -1
+4104
+ rotate: false
+ xy: 1, 1525
+ size: 192, 128
+ orig: 192, 128
+ offset: 0, 0
+ index: -1
+4110
+ rotate: false
+ xy: 1, 1386
+ size: 192, 138
+ orig: 192, 138
+ offset: 0, 0
+ index: -1
+4112
+ rotate: false
+ xy: 1, 1249
+ size: 192, 136
+ orig: 192, 136
+ offset: 0, 0
+ index: -1
+4115
+ rotate: false
+ xy: 576, 1789
+ size: 189, 125
+ orig: 189, 125
+ offset: 0, 0
+ index: -1
+4122
+ rotate: false
+ xy: 373, 1176
+ size: 160, 67
+ orig: 160, 67
+ offset: 0, 0
+ index: -1
+4123
+ rotate: false
+ xy: 735, 1217
+ size: 160, 55
+ orig: 160, 55
+ offset: 0, 0
+ index: -1
+4132
+ rotate: false
+ xy: 1, 1056
+ size: 192, 192
+ orig: 192, 192
+ offset: 0, 0
+ index: -1
+4159
+ rotate: false
+ xy: 766, 1928
+ size: 172, 112
+ orig: 172, 112
+ offset: 0, 0
+ index: -1
+4166
+ rotate: false
+ xy: 534, 1091
+ size: 160, 150
+ orig: 160, 150
+ offset: 0, 0
+ index: -1
+43
+ rotate: false
+ xy: 454, 378
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+45
+ rotate: false
+ xy: 989, 601
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+47
+ rotate: false
+ xy: 836, 512
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+49
+ rotate: false
+ xy: 605, 363
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+5
+ rotate: false
+ xy: 687, 906
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+29
+ rotate: false
+ xy: 687, 906
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+5003
+ rotate: false
+ xy: 564, 1303
+ size: 177, 151
+ orig: 177, 151
+ offset: 0, 0
+ index: -1
+51
+ rotate: false
+ xy: 303, 197
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+53
+ rotate: false
+ xy: 1, 31
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+56
+ rotate: false
+ xy: 152, 31
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+58
+ rotate: false
+ xy: 454, 197
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+59
+ rotate: false
+ xy: 1140, 601
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+60
+ rotate: false
+ xy: 1248, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+61
+ rotate: false
+ xy: 1251, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+62
+ rotate: false
+ xy: 1249, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+63
+ rotate: false
+ xy: 1249, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+64
+ rotate: false
+ xy: 1166, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+65
+ rotate: false
+ xy: 1166, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+66
+ rotate: false
+ xy: 1291, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+67
+ rotate: false
+ xy: 1399, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+68
+ rotate: false
+ xy: 1402, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+69
+ rotate: false
+ xy: 1400, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+7
+ rotate: false
+ xy: 687, 725
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+70
+ rotate: false
+ xy: 1400, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+7009
+ rotate: false
+ xy: 194, 970
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+7013
+ rotate: false
+ xy: 355, 970
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+7042
+ rotate: false
+ xy: 896, 1144
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+7072
+ rotate: false
+ xy: 939, 1912
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+71
+ rotate: false
+ xy: 1317, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+72
+ rotate: false
+ xy: 1317, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+73
+ rotate: false
+ xy: 1291, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+74
+ rotate: false
+ xy: 987, 420
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+75
+ rotate: false
+ xy: 756, 331
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+77
+ rotate: false
+ xy: 605, 182
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+79
+ rotate: false
+ xy: 303, 16
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+81
+ rotate: false
+ xy: 454, 16
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+8163
+ rotate: false
+ xy: 937, 1765
+ size: 160, 146
+ orig: 160, 146
+ offset: 0, 0
+ index: -1
+83
+ rotate: false
+ xy: 1138, 420
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+9
+ rotate: false
+ xy: 383, 559
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+9001
+ rotate: false
+ xy: 194, 1748
+ size: 190, 292
+ orig: 190, 292
+ offset: 0, 0
+ index: -1
+9002
+ rotate: false
+ xy: 383, 1455
+ size: 190, 292
+ orig: 190, 292
+ offset: 0, 0
+ index: -1
+9003
+ rotate: false
+ xy: 385, 1748
+ size: 190, 292
+ orig: 190, 292
+ offset: 0, 0
+ index: -1
+9004
+ rotate: false
+ xy: 574, 1455
+ size: 190, 292
+ orig: 190, 292
+ offset: 0, 0
+ index: -1
+9010
+ rotate: false
+ xy: 194, 1099
+ size: 178, 272
+ orig: 178, 272
+ offset: 0, 0
+ index: -1
+
+images15.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+180
+ rotate: false
+ xy: 1, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+181
+ rotate: false
+ xy: 1, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+182
+ rotate: false
+ xy: 152, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+183
+ rotate: false
+ xy: 1, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+184
+ rotate: false
+ xy: 152, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+185
+ rotate: false
+ xy: 303, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+186
+ rotate: false
+ xy: 1, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+187
+ rotate: false
+ xy: 152, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+189
+ rotate: false
+ xy: 303, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+190
+ rotate: false
+ xy: 454, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+191
+ rotate: false
+ xy: 1, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+192
+ rotate: false
+ xy: 152, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+193
+ rotate: false
+ xy: 303, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+194
+ rotate: false
+ xy: 454, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+195
+ rotate: false
+ xy: 605, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+196
+ rotate: false
+ xy: 1, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+197
+ rotate: false
+ xy: 152, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+198
+ rotate: false
+ xy: 303, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+200
+ rotate: false
+ xy: 454, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+201
+ rotate: false
+ xy: 605, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+202
+ rotate: false
+ xy: 756, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+203
+ rotate: false
+ xy: 1, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+208
+ rotate: false
+ xy: 152, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+210
+ rotate: false
+ xy: 303, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+212
+ rotate: false
+ xy: 454, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+214
+ rotate: false
+ xy: 605, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+216
+ rotate: false
+ xy: 756, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+218
+ rotate: false
+ xy: 907, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+219
+ rotate: false
+ xy: 1, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+221
+ rotate: false
+ xy: 152, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+223
+ rotate: false
+ xy: 303, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+225
+ rotate: false
+ xy: 454, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+227
+ rotate: false
+ xy: 605, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+230
+ rotate: false
+ xy: 756, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+232
+ rotate: false
+ xy: 907, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+234
+ rotate: false
+ xy: 1058, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+236
+ rotate: false
+ xy: 1, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+240
+ rotate: false
+ xy: 152, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+242
+ rotate: false
+ xy: 303, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+244
+ rotate: false
+ xy: 454, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+246
+ rotate: false
+ xy: 605, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+248
+ rotate: false
+ xy: 756, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+250
+ rotate: false
+ xy: 907, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+252
+ rotate: false
+ xy: 1058, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+254
+ rotate: false
+ xy: 1209, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+256
+ rotate: false
+ xy: 1, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+258
+ rotate: false
+ xy: 152, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+260
+ rotate: false
+ xy: 303, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+262
+ rotate: false
+ xy: 454, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+264
+ rotate: false
+ xy: 605, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+266
+ rotate: false
+ xy: 756, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+268
+ rotate: false
+ xy: 907, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+297
+ rotate: false
+ xy: 1058, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+302
+ rotate: false
+ xy: 1209, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+334
+ rotate: false
+ xy: 1360, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+345
+ rotate: false
+ xy: 1, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+348
+ rotate: false
+ xy: 152, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+350
+ rotate: false
+ xy: 303, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+351
+ rotate: false
+ xy: 454, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+352
+ rotate: false
+ xy: 605, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+353
+ rotate: false
+ xy: 756, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+354
+ rotate: false
+ xy: 907, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+355
+ rotate: false
+ xy: 1058, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+356
+ rotate: false
+ xy: 1209, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+357
+ rotate: false
+ xy: 1360, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+358
+ rotate: false
+ xy: 1511, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+360
+ rotate: false
+ xy: 152, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+361
+ rotate: false
+ xy: 303, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+362
+ rotate: false
+ xy: 454, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+363
+ rotate: false
+ xy: 605, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+364
+ rotate: false
+ xy: 756, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+365
+ rotate: false
+ xy: 907, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+366
+ rotate: false
+ xy: 1058, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+368
+ rotate: false
+ xy: 1209, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+369
+ rotate: false
+ xy: 1360, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+370
+ rotate: false
+ xy: 1511, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+371
+ rotate: false
+ xy: 1662, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+372
+ rotate: false
+ xy: 303, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+373
+ rotate: false
+ xy: 454, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+374
+ rotate: false
+ xy: 605, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+375
+ rotate: false
+ xy: 756, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+376
+ rotate: false
+ xy: 907, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+377
+ rotate: false
+ xy: 1058, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+379
+ rotate: false
+ xy: 1209, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+380
+ rotate: false
+ xy: 1360, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+381
+ rotate: false
+ xy: 1511, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+382
+ rotate: false
+ xy: 1662, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+383
+ rotate: false
+ xy: 1813, 1812
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+384
+ rotate: false
+ xy: 454, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+385
+ rotate: false
+ xy: 605, 182
+ size: 150, 181
+ orig: 150, 181
+ offset: 0, 0
+ index: -1
+386
+ rotate: false
+ xy: 756, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+387
+ rotate: false
+ xy: 907, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+388
+ rotate: false
+ xy: 1058, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+390
+ rotate: false
+ xy: 1209, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+391
+ rotate: false
+ xy: 1360, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+392
+ rotate: false
+ xy: 1511, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+393
+ rotate: false
+ xy: 1662, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+394
+ rotate: false
+ xy: 1813, 1631
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+395
+ rotate: false
+ xy: 756, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+396
+ rotate: false
+ xy: 907, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+397
+ rotate: false
+ xy: 1058, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+398
+ rotate: false
+ xy: 1209, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+399
+ rotate: false
+ xy: 1360, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+401
+ rotate: false
+ xy: 1511, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+402
+ rotate: false
+ xy: 1662, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+403
+ rotate: false
+ xy: 1813, 1450
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+404
+ rotate: false
+ xy: 907, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+405
+ rotate: false
+ xy: 1058, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+406
+ rotate: false
+ xy: 1209, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+407
+ rotate: false
+ xy: 1360, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+409
+ rotate: false
+ xy: 1511, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+410
+ rotate: false
+ xy: 1662, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+411
+ rotate: false
+ xy: 1813, 1269
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+413
+ rotate: false
+ xy: 1058, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+422
+ rotate: false
+ xy: 1209, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+424
+ rotate: false
+ xy: 1360, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+426
+ rotate: false
+ xy: 1511, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+428
+ rotate: false
+ xy: 1662, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+429
+ rotate: false
+ xy: 1813, 1088
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+431
+ rotate: false
+ xy: 1209, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+433
+ rotate: false
+ xy: 1360, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+436
+ rotate: false
+ xy: 1511, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+438
+ rotate: false
+ xy: 1662, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+440
+ rotate: false
+ xy: 1813, 907
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+442
+ rotate: false
+ xy: 1360, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+444
+ rotate: false
+ xy: 1511, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+446
+ rotate: false
+ xy: 1662, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+447
+ rotate: false
+ xy: 1813, 726
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+449
+ rotate: false
+ xy: 1511, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+451
+ rotate: false
+ xy: 1662, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+453
+ rotate: false
+ xy: 1813, 545
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+455
+ rotate: false
+ xy: 1662, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+458
+ rotate: false
+ xy: 1813, 364
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+460
+ rotate: false
+ xy: 1813, 183
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+462
+ rotate: false
+ xy: 605, 1
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+464
+ rotate: false
+ xy: 756, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+466
+ rotate: false
+ xy: 907, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+468
+ rotate: false
+ xy: 1058, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+469
+ rotate: false
+ xy: 1209, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+472
+ rotate: false
+ xy: 1360, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+474
+ rotate: false
+ xy: 1511, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+476
+ rotate: false
+ xy: 1662, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+479
+ rotate: false
+ xy: 1813, 2
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+
+images16.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+15095
+ rotate: false
+ xy: 1209, 821
+ size: 150, 75
+ orig: 150, 75
+ offset: 0, 0
+ index: -1
+15101
+ rotate: false
+ xy: 1209, 740
+ size: 150, 80
+ orig: 150, 80
+ offset: 0, 0
+ index: -1
+16001
+ rotate: false
+ xy: 1360, 565
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16003
+ rotate: false
+ xy: 1058, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16005
+ rotate: false
+ xy: 1209, 559
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16009
+ rotate: false
+ xy: 1058, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16064
+ rotate: false
+ xy: 1058, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16010
+ rotate: false
+ xy: 1813, 622
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16012
+ rotate: false
+ xy: 1662, 544
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16013
+ rotate: false
+ xy: 1511, 408
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16014
+ rotate: false
+ xy: 1360, 384
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16015
+ rotate: false
+ xy: 1209, 378
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16017
+ rotate: false
+ xy: 1058, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16018
+ rotate: false
+ xy: 1813, 441
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16019
+ rotate: false
+ xy: 1662, 363
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16020
+ rotate: false
+ xy: 1511, 227
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16021
+ rotate: false
+ xy: 1360, 203
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16022
+ rotate: false
+ xy: 1209, 197
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16023
+ rotate: false
+ xy: 1058, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16024
+ rotate: false
+ xy: 1813, 260
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16025
+ rotate: false
+ xy: 1662, 182
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16026
+ rotate: false
+ xy: 1511, 46
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16027
+ rotate: false
+ xy: 1360, 22
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16028
+ rotate: false
+ xy: 1209, 16
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16029
+ rotate: false
+ xy: 1813, 79
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16031
+ rotate: false
+ xy: 1662, 1
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+1686
+ rotate: false
+ xy: 1360, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+3069
+ rotate: false
+ xy: 1511, 1236
+ size: 150, 80
+ orig: 150, 80
+ offset: 0, 0
+ index: -1
+4012
+ rotate: false
+ xy: 1662, 1135
+ size: 150, 181
+ orig: 150, 181
+ offset: 0, 0
+ index: -1
+4048
+ rotate: false
+ xy: 1511, 1003
+ size: 150, 232
+ orig: 150, 232
+ offset: 0, 0
+ index: -1
+4049
+ rotate: false
+ xy: 1813, 1084
+ size: 150, 232
+ orig: 150, 232
+ offset: 0, 0
+ index: -1
+4052
+ rotate: false
+ xy: 1662, 934
+ size: 150, 200
+ orig: 150, 200
+ offset: 0, 0
+ index: -1
+4054
+ rotate: false
+ xy: 1813, 803
+ size: 150, 280
+ orig: 150, 280
+ offset: 0, 0
+ index: -1
+4055
+ rotate: false
+ xy: 1058, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+4061
+ rotate: false
+ xy: 1209, 897
+ size: 150, 238
+ orig: 150, 238
+ offset: 0, 0
+ index: -1
+4069
+ rotate: false
+ xy: 1058, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+4070
+ rotate: false
+ xy: 1360, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+4071
+ rotate: false
+ xy: 1511, 822
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+4079
+ rotate: false
+ xy: 1662, 725
+ size: 150, 208
+ orig: 150, 208
+ offset: 0, 0
+ index: -1
+4080
+ rotate: false
+ xy: 1360, 746
+ size: 150, 208
+ orig: 150, 208
+ offset: 0, 0
+ index: -1
+4165
+ rotate: false
+ xy: 1511, 589
+ size: 150, 232
+ orig: 150, 232
+ offset: 0, 0
+ index: -1
+481
+ rotate: false
+ xy: 1, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+483
+ rotate: false
+ xy: 1, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+484
+ rotate: false
+ xy: 1, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+486
+ rotate: false
+ xy: 1, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+488
+ rotate: false
+ xy: 1, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+489
+ rotate: false
+ xy: 1, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+491
+ rotate: false
+ xy: 1, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+493
+ rotate: false
+ xy: 1, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+495
+ rotate: false
+ xy: 1, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+497
+ rotate: false
+ xy: 1, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+500
+ rotate: false
+ xy: 1, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+502
+ rotate: false
+ xy: 152, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+504
+ rotate: false
+ xy: 152, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+506
+ rotate: false
+ xy: 152, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+508
+ rotate: false
+ xy: 152, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+509
+ rotate: false
+ xy: 152, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+511
+ rotate: false
+ xy: 152, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+513
+ rotate: false
+ xy: 152, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+515
+ rotate: false
+ xy: 152, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+517
+ rotate: false
+ xy: 152, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+519
+ rotate: false
+ xy: 152, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+522
+ rotate: false
+ xy: 152, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+524
+ rotate: false
+ xy: 303, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+526
+ rotate: false
+ xy: 303, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+528
+ rotate: false
+ xy: 303, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+530
+ rotate: false
+ xy: 303, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+531
+ rotate: false
+ xy: 303, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+533
+ rotate: false
+ xy: 303, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+535
+ rotate: false
+ xy: 303, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+537
+ rotate: false
+ xy: 303, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+539
+ rotate: false
+ xy: 303, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+540
+ rotate: false
+ xy: 303, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+543
+ rotate: false
+ xy: 303, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+545
+ rotate: false
+ xy: 454, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+547
+ rotate: false
+ xy: 605, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+549
+ rotate: false
+ xy: 756, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+551
+ rotate: false
+ xy: 907, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+553
+ rotate: false
+ xy: 1058, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+554
+ rotate: false
+ xy: 1209, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+556
+ rotate: false
+ xy: 1360, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+558
+ rotate: false
+ xy: 1511, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+560
+ rotate: false
+ xy: 1662, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+562
+ rotate: false
+ xy: 1813, 1860
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+565
+ rotate: false
+ xy: 454, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+567
+ rotate: false
+ xy: 454, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+569
+ rotate: false
+ xy: 454, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+571
+ rotate: false
+ xy: 454, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+573
+ rotate: false
+ xy: 454, 954
+ size: 150, 181
+ orig: 150, 181
+ offset: 0, 0
+ index: -1
+575
+ rotate: false
+ xy: 454, 773
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+576
+ rotate: false
+ xy: 454, 592
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+578
+ rotate: false
+ xy: 454, 411
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+580
+ rotate: false
+ xy: 454, 230
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+582
+ rotate: false
+ xy: 454, 49
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+584
+ rotate: false
+ xy: 605, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+587
+ rotate: false
+ xy: 756, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+589
+ rotate: false
+ xy: 907, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+591
+ rotate: false
+ xy: 1058, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+593
+ rotate: false
+ xy: 1209, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+595
+ rotate: false
+ xy: 1360, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+597
+ rotate: false
+ xy: 1511, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+599
+ rotate: false
+ xy: 1662, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+601
+ rotate: false
+ xy: 1813, 1679
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+603
+ rotate: false
+ xy: 605, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+605
+ rotate: false
+ xy: 605, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+607
+ rotate: false
+ xy: 605, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+609
+ rotate: false
+ xy: 605, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+611
+ rotate: false
+ xy: 605, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+613
+ rotate: false
+ xy: 605, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+615
+ rotate: false
+ xy: 605, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+617
+ rotate: false
+ xy: 605, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+619
+ rotate: false
+ xy: 605, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+621
+ rotate: false
+ xy: 756, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+623
+ rotate: false
+ xy: 907, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+625
+ rotate: false
+ xy: 1058, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+627
+ rotate: false
+ xy: 1209, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+629
+ rotate: false
+ xy: 1360, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+631
+ rotate: false
+ xy: 1511, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+633
+ rotate: false
+ xy: 1662, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+635
+ rotate: false
+ xy: 1813, 1498
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+637
+ rotate: false
+ xy: 756, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+639
+ rotate: false
+ xy: 756, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+641
+ rotate: false
+ xy: 756, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+643
+ rotate: false
+ xy: 756, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+645
+ rotate: false
+ xy: 756, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+647
+ rotate: false
+ xy: 756, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+649
+ rotate: false
+ xy: 756, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+651
+ rotate: false
+ xy: 756, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+653
+ rotate: false
+ xy: 907, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+655
+ rotate: false
+ xy: 1058, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+657
+ rotate: false
+ xy: 1209, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+659
+ rotate: false
+ xy: 1360, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+661
+ rotate: false
+ xy: 1511, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+663
+ rotate: false
+ xy: 1662, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+665
+ rotate: false
+ xy: 1813, 1317
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+667
+ rotate: false
+ xy: 907, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+669
+ rotate: false
+ xy: 907, 955
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+671
+ rotate: false
+ xy: 907, 774
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+673
+ rotate: false
+ xy: 907, 593
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+675
+ rotate: false
+ xy: 907, 412
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+676
+ rotate: false
+ xy: 907, 231
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+678
+ rotate: false
+ xy: 907, 50
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+680
+ rotate: false
+ xy: 1058, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+682
+ rotate: false
+ xy: 1209, 1136
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+
+images17.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+1
+ rotate: false
+ xy: 605, 24
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+10002
+ rotate: false
+ xy: 893, 797
+ size: 130, 145
+ orig: 130, 145
+ offset: 0, 0
+ index: -1
+15033
+ rotate: false
+ xy: 756, 761
+ size: 130, 100
+ orig: 130, 100
+ offset: 0, 0
+ index: -1
+15050
+ rotate: false
+ xy: 1, 23
+ size: 146, 33
+ orig: 146, 33
+ offset: 0, 0
+ index: -1
+15113
+ rotate: false
+ xy: 289, 1
+ size: 140, 55
+ orig: 140, 55
+ offset: 0, 0
+ index: -1
+1556
+ rotate: false
+ xy: 1334, 978
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8120
+ rotate: false
+ xy: 1334, 978
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+1557
+ rotate: false
+ xy: 1178, 937
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8121
+ rotate: false
+ xy: 1178, 937
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+1558
+ rotate: false
+ xy: 1615, 1119
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8122
+ rotate: false
+ xy: 1615, 1119
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+1559
+ rotate: false
+ xy: 1615, 990
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8123
+ rotate: false
+ xy: 1615, 990
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+16032
+ rotate: false
+ xy: 1, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16033
+ rotate: false
+ xy: 1, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16059
+ rotate: false
+ xy: 1, 1505
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16060
+ rotate: false
+ xy: 1, 1324
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16061
+ rotate: false
+ xy: 1, 1143
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16069
+ rotate: false
+ xy: 1, 962
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16070
+ rotate: false
+ xy: 1, 781
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16071
+ rotate: false
+ xy: 1, 600
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16073
+ rotate: false
+ xy: 1, 419
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16074
+ rotate: false
+ xy: 1, 238
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16076
+ rotate: false
+ xy: 1, 57
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16077
+ rotate: false
+ xy: 152, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16078
+ rotate: false
+ xy: 152, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16079
+ rotate: false
+ xy: 152, 1505
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16080
+ rotate: false
+ xy: 152, 1324
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16081
+ rotate: false
+ xy: 152, 1143
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16082
+ rotate: false
+ xy: 152, 962
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16083
+ rotate: false
+ xy: 152, 781
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16085
+ rotate: false
+ xy: 152, 600
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16086
+ rotate: false
+ xy: 152, 419
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16087
+ rotate: false
+ xy: 152, 238
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16088
+ rotate: false
+ xy: 152, 57
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16090
+ rotate: false
+ xy: 303, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16091
+ rotate: false
+ xy: 303, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16092
+ rotate: false
+ xy: 303, 1505
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16093
+ rotate: false
+ xy: 303, 1324
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16095
+ rotate: false
+ xy: 303, 1143
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16096
+ rotate: false
+ xy: 303, 962
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16097
+ rotate: false
+ xy: 303, 781
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16098
+ rotate: false
+ xy: 303, 600
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16100
+ rotate: false
+ xy: 303, 419
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16101
+ rotate: false
+ xy: 303, 238
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16102
+ rotate: false
+ xy: 303, 57
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16103
+ rotate: false
+ xy: 454, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16104
+ rotate: false
+ xy: 605, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16105
+ rotate: false
+ xy: 756, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16106
+ rotate: false
+ xy: 907, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16107
+ rotate: false
+ xy: 1058, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16108
+ rotate: false
+ xy: 1209, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16109
+ rotate: false
+ xy: 1360, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16110
+ rotate: false
+ xy: 1511, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16111
+ rotate: false
+ xy: 1662, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+16112
+ rotate: false
+ xy: 1813, 1867
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+20000
+ rotate: false
+ xy: 454, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+20001
+ rotate: false
+ xy: 454, 1505
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+20002
+ rotate: false
+ xy: 454, 1324
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+20008
+ rotate: false
+ xy: 454, 1143
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+20009
+ rotate: false
+ xy: 454, 962
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+20014
+ rotate: false
+ xy: 454, 781
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+20015
+ rotate: false
+ xy: 454, 599
+ size: 150, 181
+ orig: 150, 181
+ offset: 0, 0
+ index: -1
+20016
+ rotate: false
+ xy: 454, 418
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+20017
+ rotate: false
+ xy: 454, 236
+ size: 150, 181
+ orig: 150, 181
+ offset: 0, 0
+ index: -1
+21000
+ rotate: false
+ xy: 454, 55
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21001
+ rotate: false
+ xy: 605, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21002
+ rotate: false
+ xy: 756, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21003
+ rotate: false
+ xy: 907, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21010
+ rotate: false
+ xy: 1058, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21011
+ rotate: false
+ xy: 1209, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21012
+ rotate: false
+ xy: 1360, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21013
+ rotate: false
+ xy: 1511, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+21014
+ rotate: false
+ xy: 1662, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+22000
+ rotate: false
+ xy: 1813, 1686
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+22004
+ rotate: false
+ xy: 605, 1505
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+22044
+ rotate: false
+ xy: 605, 1324
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24000
+ rotate: false
+ xy: 605, 1143
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24001
+ rotate: false
+ xy: 605, 962
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24002
+ rotate: false
+ xy: 605, 781
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24003
+ rotate: false
+ xy: 605, 600
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24004
+ rotate: false
+ xy: 605, 419
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24005
+ rotate: false
+ xy: 605, 238
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24006
+ rotate: false
+ xy: 605, 57
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24007
+ rotate: false
+ xy: 756, 1505
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24008
+ rotate: false
+ xy: 907, 1505
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+24009
+ rotate: false
+ xy: 1058, 1505
+ size: 150, 180
+ orig: 150, 180
+ offset: 0, 0
+ index: -1
+3000
+ rotate: false
+ xy: 906, 1359
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3001
+ rotate: false
+ xy: 1052, 1359
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3002
+ rotate: false
+ xy: 1359, 1540
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3003
+ rotate: false
+ xy: 1505, 1540
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3004
+ rotate: false
+ xy: 1651, 1540
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3005
+ rotate: false
+ xy: 1797, 1540
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3006
+ rotate: false
+ xy: 1359, 1394
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3007
+ rotate: false
+ xy: 1198, 1336
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3008
+ rotate: false
+ xy: 906, 1213
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3009
+ rotate: false
+ xy: 1052, 1213
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3010
+ rotate: false
+ xy: 756, 1177
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3011
+ rotate: false
+ xy: 1505, 1394
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3012
+ rotate: false
+ xy: 1651, 1394
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3013
+ rotate: false
+ xy: 1797, 1394
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3014
+ rotate: false
+ xy: 1344, 1248
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3015
+ rotate: false
+ xy: 1198, 1190
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3016
+ rotate: false
+ xy: 902, 1067
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3017
+ rotate: false
+ xy: 756, 1031
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3018
+ rotate: false
+ xy: 1048, 1067
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3019
+ rotate: false
+ xy: 1490, 1248
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3020
+ rotate: false
+ xy: 1636, 1248
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+3021
+ rotate: false
+ xy: 1463, 888
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3022
+ rotate: false
+ xy: 1307, 849
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3023
+ rotate: false
+ xy: 1178, 808
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3024
+ rotate: false
+ xy: 1024, 725
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3025
+ rotate: false
+ xy: 887, 668
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3026
+ rotate: false
+ xy: 756, 632
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3027
+ rotate: false
+ xy: 1744, 979
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3028
+ rotate: false
+ xy: 1592, 861
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3029
+ rotate: false
+ xy: 1436, 759
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3030
+ rotate: false
+ xy: 1307, 720
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3031
+ rotate: false
+ xy: 1153, 679
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3032
+ rotate: false
+ xy: 1016, 596
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3033
+ rotate: false
+ xy: 885, 539
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3034
+ rotate: false
+ xy: 756, 503
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3035
+ rotate: false
+ xy: 1873, 979
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3036
+ rotate: false
+ xy: 1721, 850
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3037
+ rotate: false
+ xy: 1565, 732
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3038
+ rotate: false
+ xy: 1436, 630
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3039
+ rotate: false
+ xy: 1282, 591
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3040
+ rotate: false
+ xy: 1145, 550
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3041
+ rotate: false
+ xy: 1014, 467
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3042
+ rotate: false
+ xy: 885, 410
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3043
+ rotate: false
+ xy: 756, 374
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3044
+ rotate: false
+ xy: 1850, 850
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3045
+ rotate: false
+ xy: 1694, 721
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3046
+ rotate: false
+ xy: 1565, 603
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3047
+ rotate: false
+ xy: 1411, 501
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3048
+ rotate: false
+ xy: 1274, 462
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3049
+ rotate: false
+ xy: 1143, 421
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3050
+ rotate: false
+ xy: 1014, 338
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3051
+ rotate: false
+ xy: 885, 281
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3052
+ rotate: false
+ xy: 756, 245
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3053
+ rotate: false
+ xy: 1823, 721
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3054
+ rotate: false
+ xy: 1694, 592
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3055
+ rotate: false
+ xy: 1540, 474
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3056
+ rotate: false
+ xy: 1403, 372
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3057
+ rotate: false
+ xy: 1272, 333
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3058
+ rotate: false
+ xy: 1143, 292
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3059
+ rotate: false
+ xy: 1014, 209
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3060
+ rotate: false
+ xy: 885, 152
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3061
+ rotate: false
+ xy: 756, 116
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3062
+ rotate: false
+ xy: 1823, 592
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3063
+ rotate: false
+ xy: 885, 23
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3064
+ rotate: false
+ xy: 1014, 80
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3066
+ rotate: false
+ xy: 1669, 463
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3072
+ rotate: false
+ xy: 1532, 345
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3073
+ rotate: false
+ xy: 1401, 243
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3074
+ rotate: false
+ xy: 1272, 204
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3075
+ rotate: false
+ xy: 1143, 163
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3076
+ rotate: false
+ xy: 1143, 34
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3077
+ rotate: false
+ xy: 1798, 463
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3078
+ rotate: false
+ xy: 1401, 114
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3079
+ rotate: false
+ xy: 1272, 75
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3080
+ rotate: false
+ xy: 1530, 216
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3081
+ rotate: false
+ xy: 1530, 87
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3083
+ rotate: false
+ xy: 1659, 216
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3084
+ rotate: false
+ xy: 1659, 87
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3085
+ rotate: false
+ xy: 1788, 334
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3086
+ rotate: false
+ xy: 1917, 334
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3087
+ rotate: false
+ xy: 1788, 205
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3088
+ rotate: false
+ xy: 1788, 205
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4009
+ rotate: false
+ xy: 1209, 1482
+ size: 149, 203
+ orig: 149, 203
+ offset: 0, 0
+ index: -1
+4010
+ rotate: false
+ xy: 1042, 854
+ size: 135, 212
+ orig: 135, 212
+ offset: 0, 0
+ index: -1
+4089
+ rotate: false
+ xy: 756, 1323
+ size: 149, 181
+ orig: 149, 181
+ offset: 0, 0
+ index: -1
+4161
+ rotate: false
+ xy: 756, 862
+ size: 136, 168
+ orig: 136, 168
+ offset: 0, 0
+ index: -1
+5004
+ rotate: false
+ xy: 1344, 1107
+ size: 140, 140
+ orig: 140, 140
+ offset: 0, 0
+ index: -1
+6016
+ rotate: false
+ xy: 1917, 205
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+6019
+ rotate: false
+ xy: 1788, 76
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+6043
+ rotate: false
+ xy: 1917, 76
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8017
+ rotate: false
+ xy: 1782, 1108
+ size: 145, 285
+ orig: 145, 285
+ offset: 0, 0
+ index: -1
+8020
+ rotate: false
+ xy: 148, 1
+ size: 140, 55
+ orig: 140, 55
+ offset: 0, 0
+ index: -1
+8141
+ rotate: false
+ xy: 1485, 1017
+ size: 129, 230
+ orig: 129, 230
+ offset: 0, 0
+ index: -1
+8170
+ rotate: false
+ xy: 1194, 1066
+ size: 139, 123
+ orig: 139, 123
+ offset: 0, 0
+ index: -1
+8171
+ rotate: false
+ xy: 902, 943
+ size: 139, 123
+ orig: 139, 123
+ offset: 0, 0
+ index: -1
+
+images18.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10003
+ rotate: false
+ xy: 1549, 466
+ size: 120, 222
+ orig: 120, 222
+ offset: 0, 0
+ index: -1
+10007
+ rotate: false
+ xy: 1549, 224
+ size: 104, 179
+ orig: 104, 179
+ offset: 0, 0
+ index: -1
+11031
+ rotate: false
+ xy: 1775, 1951
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+11032
+ rotate: false
+ xy: 1775, 1854
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+11036
+ rotate: false
+ xy: 1672, 1633
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+11039
+ rotate: false
+ xy: 1769, 1633
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+11040
+ rotate: false
+ xy: 1671, 1394
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+11041
+ rotate: false
+ xy: 1671, 1297
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+11042
+ rotate: false
+ xy: 1671, 1200
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+11043
+ rotate: false
+ xy: 1671, 1103
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+11048
+ rotate: false
+ xy: 1671, 878
+ size: 96, 224
+ orig: 96, 224
+ offset: 0, 0
+ index: -1
+11053
+ rotate: false
+ xy: 1747, 8
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+12000
+ rotate: false
+ xy: 1162, 1146
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12001
+ rotate: false
+ xy: 1162, 1017
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12002
+ rotate: false
+ xy: 1162, 888
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12004
+ rotate: false
+ xy: 1162, 759
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12005
+ rotate: false
+ xy: 1162, 630
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12009
+ rotate: false
+ xy: 1650, 123
+ size: 100, 100
+ orig: 100, 100
+ offset: 0, 0
+ index: -1
+12010
+ rotate: false
+ xy: 1654, 225
+ size: 100, 100
+ orig: 100, 100
+ offset: 0, 0
+ index: -1
+12021
+ rotate: false
+ xy: 1162, 501
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12022
+ rotate: false
+ xy: 1162, 372
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12023
+ rotate: false
+ xy: 1162, 243
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12024
+ rotate: false
+ xy: 1162, 114
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12025
+ rotate: false
+ xy: 1291, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12026
+ rotate: false
+ xy: 1291, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12027
+ rotate: false
+ xy: 1291, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12028
+ rotate: false
+ xy: 1291, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12029
+ rotate: false
+ xy: 1291, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12030
+ rotate: false
+ xy: 1291, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12031
+ rotate: false
+ xy: 1291, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12032
+ rotate: false
+ xy: 1291, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12033
+ rotate: false
+ xy: 1291, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12034
+ rotate: false
+ xy: 1291, 758
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12035
+ rotate: false
+ xy: 1291, 629
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12042
+ rotate: false
+ xy: 1291, 500
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12043
+ rotate: false
+ xy: 1291, 371
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12045
+ rotate: false
+ xy: 1291, 242
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12047
+ rotate: false
+ xy: 1291, 113
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12049
+ rotate: false
+ xy: 1420, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12051
+ rotate: false
+ xy: 1420, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12061
+ rotate: false
+ xy: 1420, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12063
+ rotate: false
+ xy: 1420, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12066
+ rotate: false
+ xy: 1420, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12070
+ rotate: false
+ xy: 1420, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12071
+ rotate: false
+ xy: 1420, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12079
+ rotate: false
+ xy: 1420, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12084
+ rotate: false
+ xy: 1420, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+13008
+ rotate: false
+ xy: 1863, 1401
+ size: 76, 68
+ orig: 76, 68
+ offset: 0, 0
+ index: -1
+13022
+ rotate: false
+ xy: 1868, 560
+ size: 75, 123
+ orig: 75, 123
+ offset: 0, 0
+ index: -1
+13025
+ rotate: false
+ xy: 1774, 660
+ size: 77, 58
+ orig: 77, 58
+ offset: 0, 0
+ index: -1
+13026
+ rotate: false
+ xy: 1942, 831
+ size: 75, 56
+ orig: 75, 56
+ offset: 0, 0
+ index: -1
+13027
+ rotate: false
+ xy: 1857, 1013
+ size: 78, 55
+ orig: 78, 55
+ offset: 0, 0
+ index: -1
+15002
+ rotate: false
+ xy: 130, 15
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+15008
+ rotate: false
+ xy: 1751, 142
+ size: 100, 50
+ orig: 100, 50
+ offset: 0, 0
+ index: -1
+15011
+ rotate: false
+ xy: 1671, 702
+ size: 80, 45
+ orig: 80, 45
+ offset: 0, 0
+ index: -1
+15021
+ rotate: false
+ xy: 887, 2
+ size: 110, 110
+ orig: 110, 110
+ offset: 0, 0
+ index: -1
+15029
+ rotate: false
+ xy: 775, 81
+ size: 111, 31
+ orig: 111, 31
+ offset: 0, 0
+ index: -1
+15030
+ rotate: false
+ xy: 1852, 142
+ size: 100, 50
+ orig: 100, 50
+ offset: 0, 0
+ index: -1
+15080
+ rotate: false
+ xy: 1852, 142
+ size: 100, 50
+ orig: 100, 50
+ offset: 0, 0
+ index: -1
+15031
+ rotate: false
+ xy: 1751, 74
+ size: 100, 67
+ orig: 100, 67
+ offset: 0, 0
+ index: -1
+15032
+ rotate: false
+ xy: 1650, 60
+ size: 100, 62
+ orig: 100, 62
+ offset: 0, 0
+ index: -1
+15035
+ rotate: false
+ xy: 1852, 11
+ size: 100, 130
+ orig: 100, 130
+ offset: 0, 0
+ index: -1
+15043
+ rotate: false
+ xy: 1671, 1491
+ size: 100, 100
+ orig: 100, 100
+ offset: 0, 0
+ index: -1
+15055
+ rotate: false
+ xy: 1764, 193
+ size: 103, 415
+ orig: 103, 415
+ offset: 0, 0
+ index: -1
+15061
+ rotate: false
+ xy: 1856, 869
+ size: 83, 107
+ orig: 83, 107
+ offset: 0, 0
+ index: -1
+15066
+ rotate: false
+ xy: 1291, 21
+ size: 125, 91
+ orig: 125, 91
+ offset: 0, 0
+ index: -1
+15067
+ rotate: false
+ xy: 1658, 326
+ size: 105, 139
+ orig: 105, 139
+ offset: 0, 0
+ index: -1
+15070
+ rotate: false
+ xy: 1872, 1813
+ size: 92, 43
+ orig: 92, 43
+ offset: 0, 0
+ index: -1
+15073
+ rotate: false
+ xy: 1861, 1206
+ size: 80, 80
+ orig: 80, 80
+ offset: 0, 0
+ index: -1
+15076
+ rotate: false
+ xy: 388, 31
+ size: 116, 65
+ orig: 116, 65
+ offset: 0, 0
+ index: -1
+15078
+ rotate: false
+ xy: 1205, 8
+ size: 82, 40
+ orig: 82, 40
+ offset: 0, 0
+ index: -1
+15093
+ rotate: false
+ xy: 1549, 5
+ size: 100, 77
+ orig: 100, 77
+ offset: 0, 0
+ index: -1
+15133
+ rotate: false
+ xy: 1867, 1558
+ size: 80, 51
+ orig: 80, 51
+ offset: 0, 0
+ index: -1
+15153
+ rotate: false
+ xy: 1672, 1600
+ size: 93, 32
+ orig: 93, 32
+ offset: 0, 0
+ index: -1
+15156
+ rotate: false
+ xy: 1420, 711
+ size: 128, 175
+ orig: 128, 175
+ offset: 0, 0
+ index: -1
+15158
+ rotate: false
+ xy: 775, 50
+ size: 110, 30
+ orig: 110, 30
+ offset: 0, 0
+ index: -1
+15165
+ rotate: false
+ xy: 1942, 755
+ size: 75, 75
+ orig: 75, 75
+ offset: 0, 0
+ index: -1
+15177
+ rotate: false
+ xy: 1162, 49
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+15186
+ rotate: false
+ xy: 1773, 1789
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+15187
+ rotate: false
+ xy: 1671, 813
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+15193
+ rotate: false
+ xy: 1420, 582
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+15195
+ rotate: false
+ xy: 1671, 748
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+15205
+ rotate: false
+ xy: 1, 5
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+2
+ rotate: false
+ xy: 1417, 33
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+25000
+ rotate: false
+ xy: 505, 4
+ size: 103, 30
+ orig: 103, 30
+ offset: 0, 0
+ index: -1
+25001
+ rotate: false
+ xy: 731, 19
+ size: 103, 30
+ orig: 103, 30
+ offset: 0, 0
+ index: -1
+25005
+ rotate: false
+ xy: 1420, 453
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+25006
+ rotate: false
+ xy: 1420, 324
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+25007
+ rotate: false
+ xy: 1420, 195
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+25008
+ rotate: false
+ xy: 1420, 66
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+25009
+ rotate: false
+ xy: 1549, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+3067
+ rotate: false
+ xy: 1751, 41
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+3068
+ rotate: false
+ xy: 1650, 27
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+3097
+ rotate: false
+ xy: 1966, 1323
+ size: 75, 724
+ orig: 75, 724
+ offset: 0, 0
+ index: -1
+3106
+ rotate: false
+ xy: 388, 97
+ size: 120, 15
+ orig: 120, 15
+ offset: 0, 0
+ index: -1
+4007
+ rotate: false
+ xy: 1670, 508
+ size: 93, 100
+ orig: 93, 100
+ offset: 0, 0
+ index: -1
+4036
+ rotate: false
+ xy: 1768, 1078
+ size: 90, 96
+ orig: 90, 96
+ offset: 0, 0
+ index: -1
+4041
+ rotate: false
+ xy: 1678, 1994
+ size: 96, 53
+ orig: 96, 53
+ offset: 0, 0
+ index: -1
+4042
+ rotate: false
+ xy: 1678, 1940
+ size: 96, 53
+ orig: 96, 53
+ offset: 0, 0
+ index: -1
+4043
+ rotate: false
+ xy: 1675, 1778
+ size: 96, 53
+ orig: 96, 53
+ offset: 0, 0
+ index: -1
+4044
+ rotate: false
+ xy: 1108, 1
+ size: 96, 47
+ orig: 96, 47
+ offset: 0, 0
+ index: -1
+4045
+ rotate: false
+ xy: 1672, 1730
+ size: 96, 47
+ orig: 96, 47
+ offset: 0, 0
+ index: -1
+4046
+ rotate: false
+ xy: 1769, 1730
+ size: 96, 47
+ orig: 96, 47
+ offset: 0, 0
+ index: -1
+4053
+ rotate: false
+ xy: 998, 42
+ size: 109, 70
+ orig: 109, 70
+ offset: 0, 0
+ index: -1
+4067
+ rotate: false
+ xy: 1940, 940
+ size: 78, 128
+ orig: 78, 128
+ offset: 0, 0
+ index: -1
+4068
+ rotate: false
+ xy: 1866, 1691
+ size: 93, 97
+ orig: 93, 97
+ offset: 0, 0
+ index: -1
+4076
+ rotate: false
+ xy: 1768, 848
+ size: 87, 128
+ orig: 87, 128
+ offset: 0, 0
+ index: -1
+4081
+ rotate: false
+ xy: 1872, 1947
+ size: 93, 100
+ orig: 93, 100
+ offset: 0, 0
+ index: -1
+4085
+ rotate: false
+ xy: 627, 4
+ size: 103, 48
+ orig: 103, 48
+ offset: 0, 0
+ index: -1
+4086
+ rotate: false
+ xy: 1943, 370
+ size: 73, 189
+ orig: 73, 189
+ offset: 0, 0
+ index: -1
+4090
+ rotate: false
+ xy: 1942, 1105
+ size: 76, 181
+ orig: 76, 181
+ offset: 0, 0
+ index: -1
+4095
+ rotate: false
+ xy: 509, 35
+ size: 117, 77
+ orig: 117, 77
+ offset: 0, 0
+ index: -1
+4099
+ rotate: false
+ xy: 1768, 1393
+ size: 94, 97
+ orig: 94, 97
+ offset: 0, 0
+ index: -1
+4100
+ rotate: false
+ xy: 1772, 1535
+ size: 94, 97
+ orig: 94, 97
+ offset: 0, 0
+ index: -1
+4146
+ rotate: false
+ xy: 1774, 719
+ size: 87, 128
+ orig: 87, 128
+ offset: 0, 0
+ index: -1
+4164
+ rotate: false
+ xy: 1670, 609
+ size: 103, 79
+ orig: 103, 79
+ offset: 0, 0
+ index: -1
+5000
+ rotate: false
+ xy: 1859, 1069
+ size: 82, 105
+ orig: 82, 105
+ offset: 0, 0
+ index: -1
+5001
+ rotate: false
+ xy: 1861, 1287
+ size: 82, 105
+ orig: 82, 105
+ offset: 0, 0
+ index: -1
+5005
+ rotate: false
+ xy: 1944, 561
+ size: 73, 193
+ orig: 73, 193
+ offset: 0, 0
+ index: -1
+5006
+ rotate: false
+ xy: 1768, 1175
+ size: 92, 217
+ orig: 92, 217
+ offset: 0, 0
+ index: -1
+5007
+ rotate: false
+ xy: 1872, 1857
+ size: 93, 89
+ orig: 93, 89
+ offset: 0, 0
+ index: -1
+6006
+ rotate: false
+ xy: 1549, 1291
+ size: 121, 300
+ orig: 121, 300
+ offset: 0, 0
+ index: -1
+6009
+ rotate: false
+ xy: 1863, 1470
+ size: 80, 64
+ orig: 80, 64
+ offset: 0, 0
+ index: -1
+6027
+ rotate: false
+ xy: 1549, 990
+ size: 121, 300
+ orig: 121, 300
+ offset: 0, 0
+ index: -1
+6046
+ rotate: false
+ xy: 1, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+6053
+ rotate: false
+ xy: 1549, 689
+ size: 121, 300
+ orig: 121, 300
+ offset: 0, 0
+ index: -1
+6065
+ rotate: false
+ xy: 1, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+6068
+ rotate: false
+ xy: 1, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+6081
+ rotate: false
+ xy: 1, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+6082
+ rotate: false
+ xy: 1, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+7012
+ rotate: false
+ xy: 1, 1338
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7037
+ rotate: false
+ xy: 1, 1273
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7038
+ rotate: false
+ xy: 1, 1208
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7039
+ rotate: false
+ xy: 1, 1143
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7040
+ rotate: false
+ xy: 1, 1078
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7041
+ rotate: false
+ xy: 1, 1013
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7044
+ rotate: false
+ xy: 1, 948
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7047
+ rotate: false
+ xy: 1, 883
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7048
+ rotate: false
+ xy: 1, 818
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7049
+ rotate: false
+ xy: 1, 753
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7050
+ rotate: false
+ xy: 1, 688
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7051
+ rotate: false
+ xy: 1, 623
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7052
+ rotate: false
+ xy: 1, 558
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7053
+ rotate: false
+ xy: 1, 493
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7054
+ rotate: false
+ xy: 1, 428
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7055
+ rotate: false
+ xy: 1, 363
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7056
+ rotate: false
+ xy: 1, 298
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7057
+ rotate: false
+ xy: 1, 233
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7058
+ rotate: false
+ xy: 1, 168
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7059
+ rotate: false
+ xy: 1, 103
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7074
+ rotate: false
+ xy: 1, 38
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+7076
+ rotate: false
+ xy: 130, 1983
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+8000
+ rotate: false
+ xy: 130, 1854
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8001
+ rotate: false
+ xy: 130, 1725
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8002
+ rotate: false
+ xy: 130, 1596
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8003
+ rotate: false
+ xy: 130, 1467
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8004
+ rotate: false
+ xy: 130, 1338
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8005
+ rotate: false
+ xy: 130, 1209
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8006
+ rotate: false
+ xy: 130, 1080
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8007
+ rotate: false
+ xy: 130, 951
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8008
+ rotate: false
+ xy: 130, 822
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8009
+ rotate: false
+ xy: 130, 693
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8010
+ rotate: false
+ xy: 130, 564
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8011
+ rotate: false
+ xy: 130, 435
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8012
+ rotate: false
+ xy: 130, 306
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8013
+ rotate: false
+ xy: 130, 177
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8016
+ rotate: false
+ xy: 1953, 67
+ size: 73, 302
+ orig: 73, 302
+ offset: 0, 0
+ index: -1
+8018
+ rotate: false
+ xy: 1862, 684
+ size: 79, 184
+ orig: 79, 184
+ offset: 0, 0
+ index: -1
+8021
+ rotate: false
+ xy: 1549, 83
+ size: 100, 140
+ orig: 100, 140
+ offset: 0, 0
+ index: -1
+8026
+ rotate: false
+ xy: 130, 48
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8027
+ rotate: false
+ xy: 1867, 1610
+ size: 80, 80
+ orig: 80, 80
+ offset: 0, 0
+ index: -1
+8029
+ rotate: false
+ xy: 1868, 429
+ size: 74, 130
+ orig: 74, 130
+ offset: 0, 0
+ index: -1
+8035
+ rotate: false
+ xy: 1868, 291
+ size: 74, 137
+ orig: 74, 137
+ offset: 0, 0
+ index: -1
+8053
+ rotate: false
+ xy: 259, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8055
+ rotate: false
+ xy: 259, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8057
+ rotate: false
+ xy: 259, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8059
+ rotate: false
+ xy: 259, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8061
+ rotate: false
+ xy: 259, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8062
+ rotate: false
+ xy: 259, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8063
+ rotate: false
+ xy: 259, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8064
+ rotate: false
+ xy: 259, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8065
+ rotate: false
+ xy: 259, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8066
+ rotate: false
+ xy: 259, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8067
+ rotate: false
+ xy: 259, 758
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8068
+ rotate: false
+ xy: 259, 629
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8069
+ rotate: false
+ xy: 259, 500
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8070
+ rotate: false
+ xy: 259, 371
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8071
+ rotate: false
+ xy: 259, 242
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8072
+ rotate: false
+ xy: 259, 113
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8073
+ rotate: false
+ xy: 388, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8074
+ rotate: false
+ xy: 388, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8076
+ rotate: false
+ xy: 1549, 1592
+ size: 122, 185
+ orig: 122, 185
+ offset: 0, 0
+ index: -1
+8084
+ rotate: false
+ xy: 1549, 404
+ size: 108, 61
+ orig: 108, 61
+ offset: 0, 0
+ index: -1
+8085
+ rotate: false
+ xy: 1940, 888
+ size: 78, 51
+ orig: 78, 51
+ offset: 0, 0
+ index: -1
+8105
+ rotate: false
+ xy: 1549, 1778
+ size: 125, 140
+ orig: 125, 140
+ offset: 0, 0
+ index: -1
+8106
+ rotate: false
+ xy: 388, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8109
+ rotate: false
+ xy: 1768, 977
+ size: 88, 100
+ orig: 88, 100
+ offset: 0, 0
+ index: -1
+8114
+ rotate: false
+ xy: 388, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8116
+ rotate: false
+ xy: 388, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8117
+ rotate: false
+ xy: 388, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8118
+ rotate: false
+ xy: 388, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8119
+ rotate: false
+ xy: 388, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8124
+ rotate: false
+ xy: 388, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8125
+ rotate: false
+ xy: 388, 758
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8126
+ rotate: false
+ xy: 388, 629
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8127
+ rotate: false
+ xy: 388, 500
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8128
+ rotate: false
+ xy: 388, 371
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8129
+ rotate: false
+ xy: 388, 242
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8130
+ rotate: false
+ xy: 388, 113
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8131
+ rotate: false
+ xy: 517, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8132
+ rotate: false
+ xy: 517, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8133
+ rotate: false
+ xy: 517, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8134
+ rotate: false
+ xy: 517, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8135
+ rotate: false
+ xy: 517, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8136
+ rotate: false
+ xy: 517, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8137
+ rotate: false
+ xy: 517, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8138
+ rotate: false
+ xy: 517, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8139
+ rotate: false
+ xy: 517, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8140
+ rotate: false
+ xy: 517, 758
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8143
+ rotate: false
+ xy: 517, 629
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8144
+ rotate: false
+ xy: 517, 500
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8145
+ rotate: false
+ xy: 517, 371
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8146
+ rotate: false
+ xy: 517, 242
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8147
+ rotate: false
+ xy: 517, 113
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8148
+ rotate: false
+ xy: 646, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8149
+ rotate: false
+ xy: 646, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8150
+ rotate: false
+ xy: 646, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8151
+ rotate: false
+ xy: 646, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8152
+ rotate: false
+ xy: 646, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8153
+ rotate: false
+ xy: 646, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8154
+ rotate: false
+ xy: 646, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8155
+ rotate: false
+ xy: 646, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8156
+ rotate: false
+ xy: 646, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8157
+ rotate: false
+ xy: 646, 758
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8158
+ rotate: false
+ xy: 646, 629
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8159
+ rotate: false
+ xy: 646, 440
+ size: 128, 188
+ orig: 128, 188
+ offset: 0, 0
+ index: -1
+8160
+ rotate: false
+ xy: 646, 311
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8161
+ rotate: false
+ xy: 646, 182
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8162
+ rotate: false
+ xy: 646, 53
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8176
+ rotate: false
+ xy: 775, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8177
+ rotate: false
+ xy: 775, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8178
+ rotate: false
+ xy: 775, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8179
+ rotate: false
+ xy: 775, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8180
+ rotate: false
+ xy: 775, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8181
+ rotate: false
+ xy: 775, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8182
+ rotate: false
+ xy: 775, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8183
+ rotate: false
+ xy: 775, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8184
+ rotate: false
+ xy: 775, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8185
+ rotate: false
+ xy: 775, 758
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8186
+ rotate: false
+ xy: 775, 629
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8187
+ rotate: false
+ xy: 775, 500
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8188
+ rotate: false
+ xy: 775, 371
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8189
+ rotate: false
+ xy: 775, 242
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8190
+ rotate: false
+ xy: 775, 113
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8191
+ rotate: false
+ xy: 904, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8192
+ rotate: false
+ xy: 904, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8193
+ rotate: false
+ xy: 904, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8194
+ rotate: false
+ xy: 904, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8195
+ rotate: false
+ xy: 904, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8196
+ rotate: false
+ xy: 904, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8197
+ rotate: false
+ xy: 904, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8198
+ rotate: false
+ xy: 904, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8199
+ rotate: false
+ xy: 904, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8200
+ rotate: false
+ xy: 904, 758
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8201
+ rotate: false
+ xy: 904, 629
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8202
+ rotate: false
+ xy: 904, 500
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8203
+ rotate: false
+ xy: 904, 371
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8204
+ rotate: false
+ xy: 904, 242
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8205
+ rotate: false
+ xy: 904, 113
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8206
+ rotate: false
+ xy: 1033, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8207
+ rotate: false
+ xy: 1033, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8208
+ rotate: false
+ xy: 1033, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8209
+ rotate: false
+ xy: 1033, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8210
+ rotate: false
+ xy: 1033, 1403
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8211
+ rotate: false
+ xy: 1033, 1274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8212
+ rotate: false
+ xy: 1033, 1145
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8213
+ rotate: false
+ xy: 1033, 1016
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8214
+ rotate: false
+ xy: 1033, 887
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8215
+ rotate: false
+ xy: 1033, 758
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8216
+ rotate: false
+ xy: 1033, 629
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8217
+ rotate: false
+ xy: 1033, 500
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8218
+ rotate: false
+ xy: 1033, 371
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8219
+ rotate: false
+ xy: 1033, 242
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8220
+ rotate: false
+ xy: 1033, 113
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8221
+ rotate: false
+ xy: 1162, 1919
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8222
+ rotate: false
+ xy: 1162, 1790
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8223
+ rotate: false
+ xy: 1162, 1661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+8224
+ rotate: false
+ xy: 1162, 1532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+9000
+ rotate: false
+ xy: 259, 5
+ size: 128, 107
+ orig: 128, 107
+ offset: 0, 0
+ index: -1
+9006
+ rotate: false
+ xy: 1162, 1275
+ size: 128, 256
+ orig: 128, 256
+ offset: 0, 0
+ index: -1
+9021
+ rotate: false
+ xy: 1675, 1832
+ size: 97, 86
+ orig: 97, 86
+ offset: 0, 0
+ index: -1
+
+images19.png
+size: 2048,2048
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+0
+ rotate: false
+ xy: 1080, 1672
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+10
+ rotate: false
+ xy: 524, 311
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+100
+ rotate: false
+ xy: 1344, 1629
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+10008
+ rotate: false
+ xy: 1781, 1681
+ size: 47, 64
+ orig: 47, 64
+ offset: 0, 0
+ index: -1
+10010
+ rotate: false
+ xy: 844, 1354
+ size: 32, 70
+ orig: 32, 70
+ offset: 0, 0
+ index: -1
+101
+ rotate: false
+ xy: 1377, 1629
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+102
+ rotate: false
+ xy: 1278, 1603
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+106
+ rotate: false
+ xy: 1311, 1596
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+108
+ rotate: false
+ xy: 1344, 1596
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+110
+ rotate: false
+ xy: 1377, 1596
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+11018
+ rotate: false
+ xy: 795, 1088
+ size: 32, 160
+ orig: 32, 160
+ offset: 0, 0
+ index: -1
+11033
+ rotate: false
+ xy: 828, 1088
+ size: 32, 160
+ orig: 32, 160
+ offset: 0, 0
+ index: -1
+11038
+ rotate: false
+ xy: 1234, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+11049
+ rotate: false
+ xy: 877, 1328
+ size: 32, 96
+ orig: 32, 96
+ offset: 0, 0
+ index: -1
+11050
+ rotate: false
+ xy: 844, 1257
+ size: 32, 96
+ orig: 32, 96
+ offset: 0, 0
+ index: -1
+11051
+ rotate: false
+ xy: 279, 1505
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+11052
+ rotate: false
+ xy: 409, 1713
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+112
+ rotate: false
+ xy: 1410, 1622
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+114
+ rotate: false
+ xy: 1443, 1622
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+116
+ rotate: false
+ xy: 1410, 1589
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+118
+ rotate: false
+ xy: 1443, 1589
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12
+ rotate: false
+ xy: 524, 278
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12013
+ rotate: false
+ xy: 1516, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12014
+ rotate: false
+ xy: 409, 1648
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12015
+ rotate: false
+ xy: 929, 1618
+ size: 62, 62
+ orig: 62, 62
+ offset: 0, 0
+ index: -1
+12016
+ rotate: false
+ xy: 407, 680
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+12017
+ rotate: false
+ xy: 474, 1681
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12018
+ rotate: false
+ xy: 1581, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12019
+ rotate: false
+ xy: 409, 1583
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12020
+ rotate: false
+ xy: 474, 1616
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12044
+ rotate: false
+ xy: 474, 1616
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12046
+ rotate: false
+ xy: 539, 1681
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12050
+ rotate: false
+ xy: 1646, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12080
+ rotate: false
+ xy: 539, 1616
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12081
+ rotate: false
+ xy: 604, 1681
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12085
+ rotate: false
+ xy: 1711, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12090
+ rotate: false
+ xy: 1711, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12086
+ rotate: false
+ xy: 604, 1616
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12087
+ rotate: false
+ xy: 669, 1681
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12088
+ rotate: false
+ xy: 1776, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12089
+ rotate: false
+ xy: 669, 1616
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12091
+ rotate: false
+ xy: 734, 1681
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12092
+ rotate: false
+ xy: 1841, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+121
+ rotate: false
+ xy: 1476, 1609
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12152
+ rotate: false
+ xy: 1267, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+123
+ rotate: false
+ xy: 1476, 1576
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+125
+ rotate: false
+ xy: 577, 850
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+126
+ rotate: false
+ xy: 576, 817
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+128
+ rotate: false
+ xy: 570, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+130
+ rotate: false
+ xy: 610, 850
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13000
+ rotate: false
+ xy: 877, 1277
+ size: 32, 50
+ orig: 32, 50
+ offset: 0, 0
+ index: -1
+13001
+ rotate: false
+ xy: 1300, 1364
+ size: 32, 50
+ orig: 32, 50
+ offset: 0, 0
+ index: -1
+13002
+ rotate: false
+ xy: 1333, 1364
+ size: 32, 50
+ orig: 32, 50
+ offset: 0, 0
+ index: -1
+13003
+ rotate: false
+ xy: 1366, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13004
+ rotate: false
+ xy: 1399, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13005
+ rotate: false
+ xy: 1432, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13006
+ rotate: false
+ xy: 1465, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13009
+ rotate: false
+ xy: 588, 883
+ size: 45, 100
+ orig: 45, 100
+ offset: 0, 0
+ index: -1
+13010
+ rotate: false
+ xy: 602, 1462
+ size: 44, 50
+ orig: 44, 50
+ offset: 0, 0
+ index: -1
+13011
+ rotate: false
+ xy: 1113, 1702
+ size: 54, 43
+ orig: 54, 43
+ offset: 0, 0
+ index: -1
+13012
+ rotate: false
+ xy: 1276, 1702
+ size: 51, 43
+ orig: 51, 43
+ offset: 0, 0
+ index: -1
+13013
+ rotate: false
+ xy: 1168, 1697
+ size: 53, 48
+ orig: 53, 48
+ offset: 0, 0
+ index: -1
+13014
+ rotate: false
+ xy: 1829, 1699
+ size: 47, 46
+ orig: 47, 46
+ offset: 0, 0
+ index: -1
+13015
+ rotate: false
+ xy: 1498, 1394
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13016
+ rotate: false
+ xy: 1531, 1394
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13017
+ rotate: false
+ xy: 1564, 1394
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13018
+ rotate: false
+ xy: 1597, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13019
+ rotate: false
+ xy: 1630, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13020
+ rotate: false
+ xy: 861, 1192
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+13021
+ rotate: false
+ xy: 861, 1159
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13023
+ rotate: false
+ xy: 588, 984
+ size: 47, 91
+ orig: 47, 91
+ offset: 0, 0
+ index: -1
+13024
+ rotate: false
+ xy: 994, 1701
+ size: 62, 44
+ orig: 62, 44
+ offset: 0, 0
+ index: -1
+13028
+ rotate: false
+ xy: 343, 780
+ size: 54, 40
+ orig: 54, 40
+ offset: 0, 0
+ index: -1
+13029
+ rotate: false
+ xy: 1684, 1704
+ size: 48, 41
+ orig: 48, 41
+ offset: 0, 0
+ index: -1
+13030
+ rotate: false
+ xy: 856, 1567
+ size: 56, 48
+ orig: 56, 48
+ offset: 0, 0
+ index: -1
+13031
+ rotate: false
+ xy: 344, 1508
+ size: 64, 44
+ orig: 64, 44
+ offset: 0, 0
+ index: -1
+131
+ rotate: false
+ xy: 609, 817
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+133
+ rotate: false
+ xy: 603, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+135
+ rotate: false
+ xy: 572, 751
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+137
+ rotate: false
+ xy: 572, 718
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+139
+ rotate: false
+ xy: 605, 751
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14
+ rotate: false
+ xy: 524, 245
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14019
+ rotate: false
+ xy: 409, 1518
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+14039
+ rotate: false
+ xy: 474, 1551
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+141
+ rotate: false
+ xy: 605, 718
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+146
+ rotate: false
+ xy: 597, 685
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+148
+ rotate: false
+ xy: 597, 652
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+150
+ rotate: false
+ xy: 597, 619
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15000
+ rotate: false
+ xy: 449, 735
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+15003
+ rotate: false
+ xy: 734, 1616
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15004
+ rotate: false
+ xy: 861, 1126
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15005
+ rotate: false
+ xy: 647, 1469
+ size: 43, 43
+ orig: 43, 43
+ offset: 0, 0
+ index: -1
+15006
+ rotate: false
+ xy: 74, 1957
+ size: 70, 35
+ orig: 70, 35
+ offset: 0, 0
+ index: -1
+15007
+ rotate: false
+ xy: 734, 1555
+ size: 60, 60
+ orig: 60, 60
+ offset: 0, 0
+ index: -1
+15010
+ rotate: false
+ xy: 1583, 1665
+ size: 45, 37
+ orig: 45, 37
+ offset: 0, 0
+ index: -1
+15012
+ rotate: false
+ xy: 1328, 1695
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+15013
+ rotate: false
+ xy: 2012, 2011
+ size: 35, 36
+ orig: 35, 36
+ offset: 0, 0
+ index: -1
+15014
+ rotate: false
+ xy: 861, 1093
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22005
+ rotate: false
+ xy: 861, 1093
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15015
+ rotate: false
+ xy: 1663, 1363
+ size: 32, 40
+ orig: 32, 40
+ offset: 0, 0
+ index: -1
+15016
+ rotate: false
+ xy: 407, 639
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+15017
+ rotate: false
+ xy: 1696, 1371
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15018
+ rotate: false
+ xy: 1877, 1715
+ size: 45, 30
+ orig: 45, 30
+ offset: 0, 0
+ index: -1
+15019
+ rotate: false
+ xy: 1729, 1367
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15020
+ rotate: false
+ xy: 1762, 1344
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15022
+ rotate: false
+ xy: 526, 476
+ size: 34, 65
+ orig: 34, 65
+ offset: 0, 0
+ index: -1
+15023
+ rotate: false
+ xy: 279, 1487
+ size: 36, 17
+ orig: 36, 17
+ offset: 0, 0
+ index: -1
+15024
+ rotate: false
+ xy: 1795, 1329
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15025
+ rotate: false
+ xy: 791, 388
+ size: 22, 35
+ orig: 22, 35
+ offset: 0, 0
+ index: -1
+15026
+ rotate: false
+ xy: 2021, 1529
+ size: 18, 40
+ orig: 18, 40
+ offset: 0, 0
+ index: -1
+15027
+ rotate: false
+ xy: 1379, 1695
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+15028
+ rotate: false
+ xy: 1379, 984
+ size: 20, 50
+ orig: 20, 50
+ offset: 0, 0
+ index: -1
+15034
+ rotate: false
+ xy: 277, 778
+ size: 65, 65
+ orig: 65, 65
+ offset: 0, 0
+ index: -1
+15036
+ rotate: false
+ xy: 407, 588
+ size: 40, 50
+ orig: 40, 50
+ offset: 0, 0
+ index: -1
+15037
+ rotate: false
+ xy: 2010, 1905
+ size: 37, 40
+ orig: 37, 40
+ offset: 0, 0
+ index: -1
+15038
+ rotate: false
+ xy: 490, 735
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+15039
+ rotate: false
+ xy: 2010, 1864
+ size: 37, 40
+ orig: 37, 40
+ offset: 0, 0
+ index: -1
+15040
+ rotate: false
+ xy: 1057, 1705
+ size: 55, 40
+ orig: 55, 40
+ offset: 0, 0
+ index: -1
+15041
+ rotate: false
+ xy: 145, 1977
+ size: 70, 70
+ orig: 70, 70
+ offset: 0, 0
+ index: -1
+15042
+ rotate: false
+ xy: 1430, 1655
+ size: 50, 90
+ orig: 50, 90
+ offset: 0, 0
+ index: -1
+15044
+ rotate: false
+ xy: 1370, 1260
+ size: 27, 55
+ orig: 27, 55
+ offset: 0, 0
+ index: -1
+15045
+ rotate: false
+ xy: 407, 547
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+15046
+ rotate: false
+ xy: 1339, 1285
+ size: 30, 30
+ orig: 30, 30
+ offset: 0, 0
+ index: -1
+15047
+ rotate: false
+ xy: 1481, 1702
+ size: 50, 43
+ orig: 50, 43
+ offset: 0, 0
+ index: -1
+15048
+ rotate: false
+ xy: 487, 426
+ size: 37, 35
+ orig: 37, 35
+ offset: 0, 0
+ index: -1
+15049
+ rotate: false
+ xy: 487, 390
+ size: 37, 35
+ orig: 37, 35
+ offset: 0, 0
+ index: -1
+15051
+ rotate: false
+ xy: 1366, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15052
+ rotate: false
+ xy: 1399, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15053
+ rotate: false
+ xy: 799, 1681
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15054
+ rotate: false
+ xy: 1432, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15057
+ rotate: false
+ xy: 1, 1635
+ size: 70, 42
+ orig: 70, 42
+ offset: 0, 0
+ index: -1
+15058
+ rotate: false
+ xy: 1222, 1696
+ size: 53, 49
+ orig: 53, 49
+ offset: 0, 0
+ index: -1
+15107
+ rotate: false
+ xy: 1222, 1696
+ size: 53, 49
+ orig: 53, 49
+ offset: 0, 0
+ index: -1
+15059
+ rotate: false
+ xy: 74, 1918
+ size: 70, 38
+ orig: 70, 38
+ offset: 0, 0
+ index: -1
+15064
+ rotate: false
+ xy: 1383, 1035
+ size: 24, 100
+ orig: 24, 100
+ offset: 0, 0
+ index: -1
+15065
+ rotate: false
+ xy: 2026, 1389
+ size: 17, 72
+ orig: 17, 72
+ offset: 0, 0
+ index: -1
+15068
+ rotate: false
+ xy: 216, 1987
+ size: 70, 60
+ orig: 70, 60
+ offset: 0, 0
+ index: -1
+15069
+ rotate: false
+ xy: 145, 1926
+ size: 70, 50
+ orig: 70, 50
+ offset: 0, 0
+ index: -1
+15071
+ rotate: false
+ xy: 1465, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15074
+ rotate: false
+ xy: 1498, 1361
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15075
+ rotate: false
+ xy: 1481, 1642
+ size: 50, 59
+ orig: 50, 59
+ offset: 0, 0
+ index: -1
+15077
+ rotate: false
+ xy: 342, 262
+ size: 62, 65
+ orig: 62, 65
+ offset: 0, 0
+ index: -1
+15079
+ rotate: false
+ xy: 602, 1411
+ size: 43, 50
+ orig: 43, 50
+ offset: 0, 0
+ index: -1
+15081
+ rotate: false
+ xy: 563, 669
+ size: 33, 45
+ orig: 33, 45
+ offset: 0, 0
+ index: -1
+15082
+ rotate: false
+ xy: 1356, 1141
+ size: 26, 100
+ orig: 26, 100
+ offset: 0, 0
+ index: -1
+15083
+ rotate: false
+ xy: 410, 1080
+ size: 33, 18
+ orig: 33, 18
+ offset: 0, 0
+ index: -1
+15084
+ rotate: false
+ xy: 273, 1
+ size: 33, 18
+ orig: 33, 18
+ offset: 0, 0
+ index: -1
+15085
+ rotate: false
+ xy: 1356, 1040
+ size: 26, 100
+ orig: 26, 100
+ offset: 0, 0
+ index: -1
+15086
+ rotate: false
+ xy: 1532, 1709
+ size: 50, 36
+ orig: 50, 36
+ offset: 0, 0
+ index: -1
+15087
+ rotate: false
+ xy: 1532, 1665
+ size: 50, 43
+ orig: 50, 43
+ offset: 0, 0
+ index: -1
+15088
+ rotate: false
+ xy: 407, 496
+ size: 40, 50
+ orig: 40, 50
+ offset: 0, 0
+ index: -1
+15089
+ rotate: false
+ xy: 636, 1050
+ size: 20, 55
+ orig: 20, 55
+ offset: 0, 0
+ index: -1
+15090
+ rotate: false
+ xy: 604, 1513
+ size: 45, 37
+ orig: 45, 37
+ offset: 0, 0
+ index: -1
+15091
+ rotate: false
+ xy: 563, 623
+ size: 33, 45
+ orig: 33, 45
+ offset: 0, 0
+ index: -1
+15092
+ rotate: false
+ xy: 407, 419
+ size: 40, 76
+ orig: 40, 76
+ offset: 0, 0
+ index: -1
+15094
+ rotate: false
+ xy: 1, 1554
+ size: 70, 80
+ orig: 70, 80
+ offset: 0, 0
+ index: -1
+15096
+ rotate: false
+ xy: 1339, 1242
+ size: 30, 42
+ orig: 30, 42
+ offset: 0, 0
+ index: -1
+15097
+ rotate: false
+ xy: 1028, 1574
+ size: 34, 40
+ orig: 34, 40
+ offset: 0, 0
+ index: -1
+15098
+ rotate: false
+ xy: 1063, 1574
+ size: 34, 40
+ orig: 34, 40
+ offset: 0, 0
+ index: -1
+15099
+ rotate: false
+ xy: 526, 445
+ size: 34, 30
+ orig: 34, 30
+ offset: 0, 0
+ index: -1
+15100
+ rotate: false
+ xy: 345, 1056
+ size: 34, 23
+ orig: 34, 23
+ offset: 0, 0
+ index: -1
+15102
+ rotate: false
+ xy: 540, 1330
+ size: 60, 60
+ orig: 60, 60
+ offset: 0, 0
+ index: -1
+15103
+ rotate: false
+ xy: 407, 358
+ size: 40, 60
+ orig: 40, 60
+ offset: 0, 0
+ index: -1
+15104
+ rotate: false
+ xy: 531, 715
+ size: 40, 60
+ orig: 40, 60
+ offset: 0, 0
+ index: -1
+15106
+ rotate: false
+ xy: 74, 1875
+ size: 70, 42
+ orig: 70, 42
+ offset: 0, 0
+ index: -1
+15108
+ rotate: false
+ xy: 1, 1799
+ size: 71, 58
+ orig: 71, 58
+ offset: 0, 0
+ index: -1
+15109
+ rotate: false
+ xy: 1906, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15207
+ rotate: false
+ xy: 1906, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15110
+ rotate: false
+ xy: 539, 1551
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15111
+ rotate: false
+ xy: 1801, 1646
+ size: 20, 34
+ orig: 20, 34
+ offset: 0, 0
+ index: -1
+15116
+ rotate: false
+ xy: 1531, 1344
+ size: 32, 49
+ orig: 32, 49
+ offset: 0, 0
+ index: -1
+15117
+ rotate: false
+ xy: 407, 721
+ size: 41, 54
+ orig: 41, 54
+ offset: 0, 0
+ index: -1
+15118
+ rotate: false
+ xy: 277, 981
+ size: 66, 71
+ orig: 66, 71
+ offset: 0, 0
+ index: -1
+15119
+ rotate: false
+ xy: 475, 1247
+ size: 61, 75
+ orig: 61, 75
+ offset: 0, 0
+ index: -1
+15120
+ rotate: false
+ xy: 342, 186
+ size: 61, 75
+ orig: 61, 75
+ offset: 0, 0
+ index: -1
+15128
+ rotate: false
+ xy: 821, 231
+ size: 25, 123
+ orig: 25, 123
+ offset: 0, 0
+ index: -1
+15129
+ rotate: false
+ xy: 760, 461
+ size: 25, 124
+ orig: 25, 124
+ offset: 0, 0
+ index: -1
+15130
+ rotate: false
+ xy: 2012, 1975
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+15131
+ rotate: false
+ xy: 956, 1582
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+15132
+ rotate: false
+ xy: 526, 573
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+15134
+ rotate: false
+ xy: 1564, 1361
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15135
+ rotate: false
+ xy: 1498, 1328
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15136
+ rotate: false
+ xy: 758, 388
+ size: 32, 35
+ orig: 32, 35
+ offset: 0, 0
+ index: -1
+15137
+ rotate: false
+ xy: 789, 355
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15139
+ rotate: false
+ xy: 759, 424
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15140
+ rotate: false
+ xy: 345, 1379
+ size: 64, 128
+ orig: 64, 128
+ offset: 0, 0
+ index: -1
+15141
+ rotate: false
+ xy: 345, 1274
+ size: 64, 104
+ orig: 64, 104
+ offset: 0, 0
+ index: -1
+15142
+ rotate: false
+ xy: 1597, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15143
+ rotate: false
+ xy: 1630, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15144
+ rotate: false
+ xy: 1564, 1328
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15145
+ rotate: false
+ xy: 1531, 1311
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15146
+ rotate: false
+ xy: 1597, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15147
+ rotate: false
+ xy: 1630, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15148
+ rotate: false
+ xy: 1663, 1330
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15149
+ rotate: false
+ xy: 1696, 1338
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15150
+ rotate: false
+ xy: 1729, 1334
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15151
+ rotate: false
+ xy: 1564, 1295
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15152
+ rotate: false
+ xy: 1762, 1311
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15154
+ rotate: false
+ xy: 410, 1229
+ size: 64, 288
+ orig: 64, 288
+ offset: 0, 0
+ index: -1
+15155
+ rotate: false
+ xy: 448, 208
+ size: 38, 512
+ orig: 38, 512
+ offset: 0, 0
+ index: -1
+15157
+ rotate: false
+ xy: 1583, 1703
+ size: 50, 42
+ orig: 50, 42
+ offset: 0, 0
+ index: -1
+15160
+ rotate: false
+ xy: 795, 1561
+ size: 60, 54
+ orig: 60, 54
+ offset: 0, 0
+ index: -1
+15161
+ rotate: false
+ xy: 407, 327
+ size: 40, 30
+ orig: 40, 30
+ offset: 0, 0
+ index: -1
+15162
+ rotate: false
+ xy: 487, 216
+ size: 35, 32
+ orig: 35, 32
+ offset: 0, 0
+ index: -1
+15163
+ rotate: false
+ xy: 992, 1582
+ size: 35, 32
+ orig: 35, 32
+ offset: 0, 0
+ index: -1
+15166
+ rotate: false
+ xy: 526, 542
+ size: 35, 30
+ orig: 35, 30
+ offset: 0, 0
+ index: -1
+15167
+ rotate: false
+ xy: 650, 1513
+ size: 45, 37
+ orig: 45, 37
+ offset: 0, 0
+ index: -1
+15170
+ rotate: false
+ xy: 1597, 1283
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15171
+ rotate: false
+ xy: 1630, 1283
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15172
+ rotate: false
+ xy: 1663, 1297
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15173
+ rotate: false
+ xy: 1696, 1305
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15174
+ rotate: false
+ xy: 1729, 1301
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15175
+ rotate: false
+ xy: 1795, 1296
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15176
+ rotate: false
+ xy: 345, 1145
+ size: 64, 128
+ orig: 64, 128
+ offset: 0, 0
+ index: -1
+15184
+ rotate: false
+ xy: 474, 1518
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+15185
+ rotate: false
+ xy: 475, 1421
+ size: 64, 96
+ orig: 64, 96
+ offset: 0, 0
+ index: -1
+15188
+ rotate: false
+ xy: 799, 1616
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15192
+ rotate: false
+ xy: 1828, 1312
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15194
+ rotate: false
+ xy: 864, 1649
+ size: 64, 96
+ orig: 64, 96
+ offset: 0, 0
+ index: -1
+15197
+ rotate: false
+ xy: 342, 393
+ size: 64, 384
+ orig: 64, 384
+ offset: 0, 0
+ index: -1
+15199
+ rotate: false
+ xy: 1861, 1312
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+152
+ rotate: false
+ xy: 596, 586
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15204
+ rotate: false
+ xy: 343, 821
+ size: 60, 60
+ orig: 60, 60
+ offset: 0, 0
+ index: -1
+15208
+ rotate: false
+ xy: 604, 1551
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15210
+ rotate: false
+ xy: 410, 1164
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15211
+ rotate: false
+ xy: 475, 1356
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15212
+ rotate: false
+ xy: 929, 1681
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15213
+ rotate: false
+ xy: 342, 328
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15214
+ rotate: false
+ xy: 345, 1080
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15215
+ rotate: false
+ xy: 669, 1551
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15216
+ rotate: false
+ xy: 410, 1099
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+15217
+ rotate: false
+ xy: 539, 1518
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+15218
+ rotate: false
+ xy: 864, 1616
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+15219
+ rotate: false
+ xy: 475, 1323
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+15220
+ rotate: false
+ xy: 910, 1346
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+15221
+ rotate: false
+ xy: 910, 1281
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+15222
+ rotate: false
+ xy: 943, 1322
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+15223
+ rotate: false
+ xy: 943, 1257
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+15224
+ rotate: false
+ xy: 976, 1314
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+15225
+ rotate: false
+ xy: 1009, 1314
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+15226
+ rotate: false
+ xy: 1042, 1314
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+15227
+ rotate: false
+ xy: 1075, 1314
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+15229
+ rotate: false
+ xy: 277, 909
+ size: 66, 71
+ orig: 66, 71
+ offset: 0, 0
+ index: -1
+154
+ rotate: false
+ xy: 595, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+156
+ rotate: false
+ xy: 595, 520
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+158
+ rotate: false
+ xy: 594, 487
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16
+ rotate: false
+ xy: 523, 212
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+30
+ rotate: false
+ xy: 523, 212
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+160
+ rotate: false
+ xy: 594, 454
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16000
+ rotate: false
+ xy: 976, 1281
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16002
+ rotate: false
+ xy: 1009, 1281
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16004
+ rotate: false
+ xy: 1042, 1281
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16006
+ rotate: false
+ xy: 1075, 1281
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16007
+ rotate: false
+ xy: 910, 1248
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16008
+ rotate: false
+ xy: 1108, 1346
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16011
+ rotate: false
+ xy: 1108, 1313
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16016
+ rotate: false
+ xy: 1108, 1280
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16030
+ rotate: false
+ xy: 1141, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16034
+ rotate: false
+ xy: 1141, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16035
+ rotate: false
+ xy: 1174, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16036
+ rotate: false
+ xy: 1174, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16037
+ rotate: false
+ xy: 1141, 1283
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16038
+ rotate: false
+ xy: 1207, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16039
+ rotate: false
+ xy: 1207, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16040
+ rotate: false
+ xy: 1174, 1283
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16041
+ rotate: false
+ xy: 1240, 1349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16042
+ rotate: false
+ xy: 1240, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16094
+ rotate: false
+ xy: 1240, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16043
+ rotate: false
+ xy: 1207, 1283
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16044
+ rotate: false
+ xy: 1240, 1283
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16045
+ rotate: false
+ xy: 1762, 1278
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16046
+ rotate: false
+ xy: 976, 1248
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16047
+ rotate: false
+ xy: 1009, 1248
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16048
+ rotate: false
+ xy: 1042, 1248
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16049
+ rotate: false
+ xy: 1075, 1248
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16050
+ rotate: false
+ xy: 1108, 1247
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16051
+ rotate: false
+ xy: 1141, 1250
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16052
+ rotate: false
+ xy: 1174, 1250
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16053
+ rotate: false
+ xy: 1207, 1250
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16054
+ rotate: false
+ xy: 1240, 1250
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16055
+ rotate: false
+ xy: 1894, 1300
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16056
+ rotate: false
+ xy: 1927, 1300
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16057
+ rotate: false
+ xy: 1960, 1300
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16058
+ rotate: false
+ xy: 1993, 1300
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16062
+ rotate: false
+ xy: 1795, 1263
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16063
+ rotate: false
+ xy: 1828, 1279
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16065
+ rotate: false
+ xy: 1861, 1279
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16066
+ rotate: false
+ xy: 1894, 1267
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16067
+ rotate: false
+ xy: 1927, 1267
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16068
+ rotate: false
+ xy: 1960, 1267
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16072
+ rotate: false
+ xy: 1993, 1267
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16075
+ rotate: false
+ xy: 943, 1224
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16084
+ rotate: false
+ xy: 976, 1215
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16089
+ rotate: false
+ xy: 1009, 1215
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16099
+ rotate: false
+ xy: 1042, 1215
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+162
+ rotate: false
+ xy: 594, 421
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+163
+ rotate: false
+ xy: 593, 388
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+164
+ rotate: false
+ xy: 591, 355
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+165
+ rotate: false
+ xy: 590, 322
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+166
+ rotate: false
+ xy: 590, 289
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17
+ rotate: false
+ xy: 1080, 1639
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17012
+ rotate: false
+ xy: 1075, 1215
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17013
+ rotate: false
+ xy: 1108, 1214
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17014
+ rotate: false
+ xy: 1141, 1217
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17039
+ rotate: false
+ xy: 1174, 1217
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18000
+ rotate: false
+ xy: 1207, 1217
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18001
+ rotate: false
+ xy: 208, 275
+ size: 68, 28
+ orig: 68, 28
+ offset: 0, 0
+ index: -1
+18002
+ rotate: false
+ xy: 1240, 1217
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18003
+ rotate: false
+ xy: 208, 246
+ size: 68, 28
+ orig: 68, 28
+ offset: 0, 0
+ index: -1
+18004
+ rotate: false
+ xy: 208, 217
+ size: 68, 28
+ orig: 68, 28
+ offset: 0, 0
+ index: -1
+18005
+ rotate: false
+ xy: 894, 1215
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18006
+ rotate: false
+ xy: 1, 7
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18007
+ rotate: false
+ xy: 70, 22
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18008
+ rotate: false
+ xy: 208, 200
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18009
+ rotate: false
+ xy: 139, 22
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18010
+ rotate: false
+ xy: 894, 1182
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18011
+ rotate: false
+ xy: 894, 1149
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18012
+ rotate: false
+ xy: 894, 1116
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18013
+ rotate: false
+ xy: 208, 183
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18014
+ rotate: false
+ xy: 208, 166
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18015
+ rotate: false
+ xy: 894, 1083
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18016
+ rotate: false
+ xy: 208, 149
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18017
+ rotate: false
+ xy: 927, 1191
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18018
+ rotate: false
+ xy: 208, 132
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18019
+ rotate: false
+ xy: 208, 115
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18020
+ rotate: false
+ xy: 927, 1158
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18021
+ rotate: false
+ xy: 927, 1125
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18022
+ rotate: false
+ xy: 927, 1092
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18023
+ rotate: false
+ xy: 208, 98
+ size: 68, 16
+ orig: 68, 16
+ offset: 0, 0
+ index: -1
+18024
+ rotate: false
+ xy: 960, 1182
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18025
+ rotate: false
+ xy: 960, 1149
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18026
+ rotate: false
+ xy: 208, 69
+ size: 68, 28
+ orig: 68, 28
+ offset: 0, 0
+ index: -1
+18027
+ rotate: false
+ xy: 993, 1182
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18028
+ rotate: false
+ xy: 208, 40
+ size: 68, 28
+ orig: 68, 28
+ offset: 0, 0
+ index: -1
+188
+ rotate: false
+ xy: 590, 256
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19
+ rotate: false
+ xy: 1113, 1636
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19000
+ rotate: false
+ xy: 960, 1116
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19001
+ rotate: false
+ xy: 993, 1149
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19002
+ rotate: false
+ xy: 1026, 1182
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19003
+ rotate: false
+ xy: 993, 1116
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19004
+ rotate: false
+ xy: 1026, 1149
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19005
+ rotate: false
+ xy: 1059, 1182
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19006
+ rotate: false
+ xy: 1026, 1116
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19007
+ rotate: false
+ xy: 1059, 1149
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19008
+ rotate: false
+ xy: 1059, 1116
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19009
+ rotate: false
+ xy: 960, 1083
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19010
+ rotate: false
+ xy: 993, 1083
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19011
+ rotate: false
+ xy: 1026, 1083
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19012
+ rotate: false
+ xy: 1059, 1083
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19013
+ rotate: false
+ xy: 927, 1059
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19014
+ rotate: false
+ xy: 960, 1050
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19015
+ rotate: false
+ xy: 993, 1050
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19016
+ rotate: false
+ xy: 1026, 1050
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19017
+ rotate: false
+ xy: 1059, 1050
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19018
+ rotate: false
+ xy: 1092, 1181
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19019
+ rotate: false
+ xy: 1092, 1148
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19020
+ rotate: false
+ xy: 1092, 1115
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19021
+ rotate: false
+ xy: 1092, 1082
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19022
+ rotate: false
+ xy: 1092, 1049
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19023
+ rotate: false
+ xy: 1828, 1246
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19024
+ rotate: false
+ xy: 1861, 1246
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19025
+ rotate: false
+ xy: 1894, 1234
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19026
+ rotate: false
+ xy: 1927, 1234
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19027
+ rotate: false
+ xy: 1960, 1234
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19028
+ rotate: false
+ xy: 1993, 1234
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2000
+ rotate: false
+ xy: 216, 1936
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+20003
+ rotate: false
+ xy: 1125, 1181
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20004
+ rotate: false
+ xy: 1125, 1148
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20005
+ rotate: false
+ xy: 1125, 1115
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20006
+ rotate: false
+ xy: 1125, 1082
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20007
+ rotate: false
+ xy: 1125, 1049
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2001
+ rotate: false
+ xy: 287, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+20010
+ rotate: false
+ xy: 1158, 1184
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20011
+ rotate: false
+ xy: 1158, 1151
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20012
+ rotate: false
+ xy: 1191, 1184
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20013
+ rotate: false
+ xy: 1158, 1118
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20018
+ rotate: false
+ xy: 1191, 1151
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20019
+ rotate: false
+ xy: 1224, 1184
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2002
+ rotate: false
+ xy: 145, 1875
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2003
+ rotate: false
+ xy: 1, 1503
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2004
+ rotate: false
+ xy: 356, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2005
+ rotate: false
+ xy: 1, 1452
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2006
+ rotate: false
+ xy: 425, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2007
+ rotate: false
+ xy: 1, 1401
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2008
+ rotate: false
+ xy: 494, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2009
+ rotate: false
+ xy: 1, 1350
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2010
+ rotate: false
+ xy: 563, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2011
+ rotate: false
+ xy: 1, 1299
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2012
+ rotate: false
+ xy: 632, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2013
+ rotate: false
+ xy: 1, 1248
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2014
+ rotate: false
+ xy: 701, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2015
+ rotate: false
+ xy: 1, 1197
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2016
+ rotate: false
+ xy: 770, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2017
+ rotate: false
+ xy: 1, 1146
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2018
+ rotate: false
+ xy: 839, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2019
+ rotate: false
+ xy: 1, 1095
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2020
+ rotate: false
+ xy: 908, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2021
+ rotate: false
+ xy: 1, 1044
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2022
+ rotate: false
+ xy: 977, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2023
+ rotate: false
+ xy: 1, 993
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2024
+ rotate: false
+ xy: 1046, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2025
+ rotate: false
+ xy: 1, 942
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2026
+ rotate: false
+ xy: 1115, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2027
+ rotate: false
+ xy: 1, 891
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2028
+ rotate: false
+ xy: 1184, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2029
+ rotate: false
+ xy: 1, 840
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2030
+ rotate: false
+ xy: 1253, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2031
+ rotate: false
+ xy: 1, 789
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2032
+ rotate: false
+ xy: 1322, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2033
+ rotate: false
+ xy: 1, 738
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2034
+ rotate: false
+ xy: 1391, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2035
+ rotate: false
+ xy: 1, 687
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2036
+ rotate: false
+ xy: 1460, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2037
+ rotate: false
+ xy: 1, 636
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2038
+ rotate: false
+ xy: 1529, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2039
+ rotate: false
+ xy: 1, 585
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+204
+ rotate: false
+ xy: 590, 223
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2040
+ rotate: false
+ xy: 1598, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2041
+ rotate: false
+ xy: 1, 534
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2042
+ rotate: false
+ xy: 1667, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2043
+ rotate: false
+ xy: 1, 483
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2044
+ rotate: false
+ xy: 1736, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2045
+ rotate: false
+ xy: 1, 432
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2046
+ rotate: false
+ xy: 1805, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2047
+ rotate: false
+ xy: 1, 381
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2048
+ rotate: false
+ xy: 1874, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2049
+ rotate: false
+ xy: 1, 330
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+205
+ rotate: false
+ xy: 589, 190
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2050
+ rotate: false
+ xy: 1943, 1997
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2051
+ rotate: false
+ xy: 1, 279
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2052
+ rotate: false
+ xy: 1, 228
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2053
+ rotate: false
+ xy: 1, 177
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2054
+ rotate: false
+ xy: 1, 126
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2055
+ rotate: false
+ xy: 1, 75
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2056
+ rotate: false
+ xy: 1, 24
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2057
+ rotate: false
+ xy: 74, 1824
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2058
+ rotate: false
+ xy: 143, 1824
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2059
+ rotate: false
+ xy: 73, 1773
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+206
+ rotate: false
+ xy: 1790, 1572
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2060
+ rotate: false
+ xy: 142, 1773
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2061
+ rotate: false
+ xy: 72, 1722
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2062
+ rotate: false
+ xy: 72, 1671
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2063
+ rotate: false
+ xy: 141, 1722
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2064
+ rotate: false
+ xy: 72, 1620
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2065
+ rotate: false
+ xy: 141, 1671
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2066
+ rotate: false
+ xy: 72, 1569
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2067
+ rotate: false
+ xy: 141, 1620
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2068
+ rotate: false
+ xy: 141, 1569
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2069
+ rotate: false
+ xy: 72, 1518
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+207
+ rotate: false
+ xy: 1509, 1589
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2070
+ rotate: false
+ xy: 141, 1518
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2071
+ rotate: false
+ xy: 70, 1467
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2072
+ rotate: false
+ xy: 70, 1416
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2073
+ rotate: false
+ xy: 139, 1467
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2074
+ rotate: false
+ xy: 70, 1365
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2075
+ rotate: false
+ xy: 139, 1416
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2076
+ rotate: false
+ xy: 70, 1314
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2077
+ rotate: false
+ xy: 139, 1365
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2078
+ rotate: false
+ xy: 70, 1263
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2079
+ rotate: false
+ xy: 139, 1314
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2080
+ rotate: false
+ xy: 70, 1212
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2081
+ rotate: false
+ xy: 139, 1263
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2082
+ rotate: false
+ xy: 70, 1161
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2083
+ rotate: false
+ xy: 139, 1212
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2084
+ rotate: false
+ xy: 70, 1110
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2085
+ rotate: false
+ xy: 139, 1161
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2086
+ rotate: false
+ xy: 70, 1059
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2087
+ rotate: false
+ xy: 139, 1110
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2088
+ rotate: false
+ xy: 70, 1008
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2089
+ rotate: false
+ xy: 139, 1059
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+209
+ rotate: false
+ xy: 1542, 1589
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2090
+ rotate: false
+ xy: 70, 957
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2091
+ rotate: false
+ xy: 139, 1008
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2092
+ rotate: false
+ xy: 70, 906
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2093
+ rotate: false
+ xy: 139, 957
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2094
+ rotate: false
+ xy: 70, 855
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2095
+ rotate: false
+ xy: 139, 906
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2096
+ rotate: false
+ xy: 70, 804
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2097
+ rotate: false
+ xy: 139, 855
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2098
+ rotate: false
+ xy: 70, 753
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2099
+ rotate: false
+ xy: 139, 804
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2100
+ rotate: false
+ xy: 70, 702
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+21004
+ rotate: false
+ xy: 1158, 1085
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21005
+ rotate: false
+ xy: 1191, 1118
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21006
+ rotate: false
+ xy: 1224, 1151
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21007
+ rotate: false
+ xy: 1158, 1052
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21008
+ rotate: false
+ xy: 1191, 1085
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21009
+ rotate: false
+ xy: 1224, 1118
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2101
+ rotate: false
+ xy: 139, 753
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2102
+ rotate: false
+ xy: 70, 651
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2103
+ rotate: false
+ xy: 139, 702
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2104
+ rotate: false
+ xy: 70, 600
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2105
+ rotate: false
+ xy: 139, 651
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2106
+ rotate: false
+ xy: 70, 549
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2107
+ rotate: false
+ xy: 139, 600
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2108
+ rotate: false
+ xy: 70, 498
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2109
+ rotate: false
+ xy: 139, 549
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+211
+ rotate: false
+ xy: 1575, 1589
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2110
+ rotate: false
+ xy: 70, 447
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2111
+ rotate: false
+ xy: 139, 498
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2112
+ rotate: false
+ xy: 70, 396
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2113
+ rotate: false
+ xy: 139, 447
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2114
+ rotate: false
+ xy: 70, 345
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2115
+ rotate: false
+ xy: 139, 396
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2116
+ rotate: false
+ xy: 70, 294
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2117
+ rotate: false
+ xy: 139, 345
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2118
+ rotate: false
+ xy: 70, 243
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2119
+ rotate: false
+ xy: 139, 294
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2120
+ rotate: false
+ xy: 70, 192
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2121
+ rotate: false
+ xy: 139, 243
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2122
+ rotate: false
+ xy: 70, 141
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2123
+ rotate: false
+ xy: 139, 192
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2124
+ rotate: false
+ xy: 70, 90
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2125
+ rotate: false
+ xy: 139, 141
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2126
+ rotate: false
+ xy: 70, 39
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2127
+ rotate: false
+ xy: 139, 90
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2128
+ rotate: false
+ xy: 139, 39
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2129
+ rotate: false
+ xy: 216, 1885
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+213
+ rotate: false
+ xy: 1509, 1556
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2130
+ rotate: false
+ xy: 287, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2131
+ rotate: false
+ xy: 356, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2132
+ rotate: false
+ xy: 425, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2133
+ rotate: false
+ xy: 494, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2134
+ rotate: false
+ xy: 563, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2135
+ rotate: false
+ xy: 632, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2136
+ rotate: false
+ xy: 701, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2137
+ rotate: false
+ xy: 770, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2138
+ rotate: false
+ xy: 839, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2139
+ rotate: false
+ xy: 908, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2140
+ rotate: false
+ xy: 977, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2141
+ rotate: false
+ xy: 1046, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2142
+ rotate: false
+ xy: 1115, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2143
+ rotate: false
+ xy: 1184, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2144
+ rotate: false
+ xy: 1253, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2145
+ rotate: false
+ xy: 1322, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2146
+ rotate: false
+ xy: 1391, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2147
+ rotate: false
+ xy: 1460, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2148
+ rotate: false
+ xy: 1529, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2149
+ rotate: false
+ xy: 1598, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+215
+ rotate: false
+ xy: 1542, 1556
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2150
+ rotate: false
+ xy: 1667, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2151
+ rotate: false
+ xy: 1736, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2152
+ rotate: false
+ xy: 1805, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2153
+ rotate: false
+ xy: 1874, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2154
+ rotate: false
+ xy: 1943, 1946
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2155
+ rotate: false
+ xy: 285, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2156
+ rotate: false
+ xy: 354, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2157
+ rotate: false
+ xy: 423, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2158
+ rotate: false
+ xy: 492, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2159
+ rotate: false
+ xy: 561, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2160
+ rotate: false
+ xy: 630, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2161
+ rotate: false
+ xy: 699, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2162
+ rotate: false
+ xy: 768, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2163
+ rotate: false
+ xy: 837, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2164
+ rotate: false
+ xy: 906, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2165
+ rotate: false
+ xy: 975, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2166
+ rotate: false
+ xy: 1044, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2167
+ rotate: false
+ xy: 1113, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2168
+ rotate: false
+ xy: 1182, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2169
+ rotate: false
+ xy: 1251, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+217
+ rotate: false
+ xy: 1575, 1556
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2170
+ rotate: false
+ xy: 1320, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2171
+ rotate: false
+ xy: 1389, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2172
+ rotate: false
+ xy: 1458, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2173
+ rotate: false
+ xy: 1527, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2174
+ rotate: false
+ xy: 1596, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2175
+ rotate: false
+ xy: 1665, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2176
+ rotate: false
+ xy: 1734, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2177
+ rotate: false
+ xy: 1803, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2178
+ rotate: false
+ xy: 1872, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2179
+ rotate: false
+ xy: 1941, 1895
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2180
+ rotate: false
+ xy: 285, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2181
+ rotate: false
+ xy: 354, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2182
+ rotate: false
+ xy: 423, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2183
+ rotate: false
+ xy: 492, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2184
+ rotate: false
+ xy: 561, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2185
+ rotate: false
+ xy: 630, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2186
+ rotate: false
+ xy: 699, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2187
+ rotate: false
+ xy: 768, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2188
+ rotate: false
+ xy: 837, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2189
+ rotate: false
+ xy: 906, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2190
+ rotate: false
+ xy: 975, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2191
+ rotate: false
+ xy: 1044, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2192
+ rotate: false
+ xy: 1113, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2193
+ rotate: false
+ xy: 1182, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2194
+ rotate: false
+ xy: 1251, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2195
+ rotate: false
+ xy: 1320, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2196
+ rotate: false
+ xy: 1389, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2197
+ rotate: false
+ xy: 1458, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2198
+ rotate: false
+ xy: 1527, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2199
+ rotate: false
+ xy: 1596, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+220
+ rotate: false
+ xy: 1608, 1577
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2200
+ rotate: false
+ xy: 1665, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+22001
+ rotate: false
+ xy: 1191, 1052
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22002
+ rotate: false
+ xy: 405, 239
+ size: 39, 87
+ orig: 39, 87
+ offset: 0, 0
+ index: -1
+22003
+ rotate: false
+ xy: 1224, 1085
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22006
+ rotate: false
+ xy: 1224, 1052
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22007
+ rotate: false
+ xy: 1257, 1184
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22008
+ rotate: false
+ xy: 1257, 1151
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22009
+ rotate: false
+ xy: 1257, 1118
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2201
+ rotate: false
+ xy: 1734, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+22010
+ rotate: false
+ xy: 1257, 1085
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22011
+ rotate: false
+ xy: 696, 1501
+ size: 42, 49
+ orig: 42, 49
+ offset: 0, 0
+ index: -1
+22012
+ rotate: false
+ xy: 1257, 1052
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22013
+ rotate: false
+ xy: 861, 1060
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22014
+ rotate: false
+ xy: 894, 1050
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22015
+ rotate: false
+ xy: 927, 1026
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22016
+ rotate: false
+ xy: 960, 1017
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22017
+ rotate: false
+ xy: 993, 1017
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22018
+ rotate: false
+ xy: 1026, 1017
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22019
+ rotate: false
+ xy: 1059, 1017
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2202
+ rotate: false
+ xy: 1803, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+22020
+ rotate: false
+ xy: 1092, 1016
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22021
+ rotate: false
+ xy: 1125, 1016
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22022
+ rotate: false
+ xy: 1158, 1019
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22023
+ rotate: false
+ xy: 1191, 1019
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22024
+ rotate: false
+ xy: 1224, 1019
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22025
+ rotate: false
+ xy: 1257, 1019
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22026
+ rotate: false
+ xy: 636, 984
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22027
+ rotate: false
+ xy: 636, 1017
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22028
+ rotate: false
+ xy: 1663, 1264
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22029
+ rotate: false
+ xy: 1696, 1272
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2203
+ rotate: false
+ xy: 1872, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+22030
+ rotate: false
+ xy: 1729, 1268
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22031
+ rotate: false
+ xy: 1762, 1245
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22032
+ rotate: false
+ xy: 1795, 1230
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22033
+ rotate: false
+ xy: 1828, 1213
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22034
+ rotate: false
+ xy: 1861, 1213
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22035
+ rotate: false
+ xy: 1894, 1201
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22036
+ rotate: false
+ xy: 1927, 1201
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22037
+ rotate: false
+ xy: 1960, 1201
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22038
+ rotate: false
+ xy: 1993, 1201
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22039
+ rotate: false
+ xy: 1696, 1239
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2204
+ rotate: false
+ xy: 1941, 1844
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+22040
+ rotate: false
+ xy: 404, 200
+ size: 38, 38
+ orig: 38, 38
+ offset: 0, 0
+ index: -1
+22041
+ rotate: false
+ xy: 487, 696
+ size: 38, 38
+ orig: 38, 38
+ offset: 0, 0
+ index: -1
+22042
+ rotate: false
+ xy: 487, 657
+ size: 38, 38
+ orig: 38, 38
+ offset: 0, 0
+ index: -1
+22043
+ rotate: false
+ xy: 487, 618
+ size: 38, 38
+ orig: 38, 38
+ offset: 0, 0
+ index: -1
+22045
+ rotate: false
+ xy: 487, 579
+ size: 38, 38
+ orig: 38, 38
+ offset: 0, 0
+ index: -1
+22046
+ rotate: false
+ xy: 487, 540
+ size: 38, 38
+ orig: 38, 38
+ offset: 0, 0
+ index: -1
+22047
+ rotate: false
+ xy: 487, 501
+ size: 38, 38
+ orig: 38, 38
+ offset: 0, 0
+ index: -1
+22048
+ rotate: false
+ xy: 487, 462
+ size: 38, 38
+ orig: 38, 38
+ offset: 0, 0
+ index: -1
+22049
+ rotate: false
+ xy: 1729, 1235
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2205
+ rotate: false
+ xy: 214, 1834
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+22050
+ rotate: false
+ xy: 1762, 1212
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22051
+ rotate: false
+ xy: 1795, 1197
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22052
+ rotate: false
+ xy: 1828, 1180
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22053
+ rotate: false
+ xy: 1861, 1180
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22054
+ rotate: false
+ xy: 1894, 1168
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22055
+ rotate: false
+ xy: 1927, 1168
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22056
+ rotate: false
+ xy: 1960, 1168
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22057
+ rotate: false
+ xy: 1993, 1168
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22058
+ rotate: false
+ xy: 1273, 1331
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22059
+ rotate: false
+ xy: 1306, 1331
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2206
+ rotate: false
+ xy: 212, 1783
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+22060
+ rotate: false
+ xy: 1273, 1298
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22061
+ rotate: false
+ xy: 1273, 1265
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23002
+ rotate: false
+ xy: 1273, 1265
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22062
+ rotate: false
+ xy: 1306, 1298
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22063
+ rotate: false
+ xy: 1273, 1232
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22064
+ rotate: false
+ xy: 1306, 1265
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22065
+ rotate: false
+ xy: 1306, 1232
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22066
+ rotate: false
+ xy: 1290, 1199
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22067
+ rotate: false
+ xy: 1290, 1166
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22068
+ rotate: false
+ xy: 1290, 1133
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22069
+ rotate: false
+ xy: 1290, 1100
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2207
+ rotate: false
+ xy: 211, 1732
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+22070
+ rotate: false
+ xy: 1290, 1067
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22071
+ rotate: false
+ xy: 525, 410
+ size: 34, 34
+ orig: 34, 34
+ offset: 0, 0
+ index: -1
+22072
+ rotate: false
+ xy: 1383, 1136
+ size: 25, 102
+ orig: 25, 102
+ offset: 0, 0
+ index: -1
+2208
+ rotate: false
+ xy: 210, 1681
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2209
+ rotate: false
+ xy: 210, 1630
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2210
+ rotate: false
+ xy: 210, 1579
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2211
+ rotate: false
+ xy: 210, 1528
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2212
+ rotate: false
+ xy: 210, 1477
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2213
+ rotate: false
+ xy: 208, 1426
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2214
+ rotate: false
+ xy: 208, 1375
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2215
+ rotate: false
+ xy: 208, 1324
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2216
+ rotate: false
+ xy: 208, 1273
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2217
+ rotate: false
+ xy: 208, 1222
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2218
+ rotate: false
+ xy: 208, 1171
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2219
+ rotate: false
+ xy: 208, 1120
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+222
+ rotate: false
+ xy: 1641, 1577
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2220
+ rotate: false
+ xy: 208, 1069
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2221
+ rotate: false
+ xy: 208, 1018
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2222
+ rotate: false
+ xy: 208, 967
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2223
+ rotate: false
+ xy: 208, 916
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2224
+ rotate: false
+ xy: 208, 865
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2225
+ rotate: false
+ xy: 208, 814
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2226
+ rotate: false
+ xy: 208, 763
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2227
+ rotate: false
+ xy: 208, 712
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2228
+ rotate: false
+ xy: 208, 661
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2229
+ rotate: false
+ xy: 208, 610
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2230
+ rotate: false
+ xy: 208, 559
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2231
+ rotate: false
+ xy: 208, 508
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2232
+ rotate: false
+ xy: 208, 457
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2233
+ rotate: false
+ xy: 208, 406
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2234
+ rotate: false
+ xy: 208, 355
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+2235
+ rotate: false
+ xy: 208, 304
+ size: 68, 50
+ orig: 68, 50
+ offset: 0, 0
+ index: -1
+224
+ rotate: false
+ xy: 1608, 1544
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+226
+ rotate: false
+ xy: 1641, 1544
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+228
+ rotate: false
+ xy: 956, 1549
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+229
+ rotate: false
+ xy: 989, 1549
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23000
+ rotate: false
+ xy: 1290, 1034
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23001
+ rotate: false
+ xy: 1323, 1199
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23003
+ rotate: false
+ xy: 1323, 1166
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23004
+ rotate: false
+ xy: 1323, 1133
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23005
+ rotate: false
+ xy: 1323, 1100
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+231
+ rotate: false
+ xy: 1022, 1541
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+233
+ rotate: false
+ xy: 1055, 1541
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+235
+ rotate: false
+ xy: 1088, 1541
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+237
+ rotate: false
+ xy: 1823, 1623
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+239
+ rotate: false
+ xy: 1823, 1590
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+24
+ rotate: false
+ xy: 563, 590
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+241
+ rotate: false
+ xy: 1823, 1557
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+243
+ rotate: false
+ xy: 1856, 1606
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+245
+ rotate: false
+ xy: 1856, 1573
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+247
+ rotate: false
+ xy: 1889, 1606
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+249
+ rotate: false
+ xy: 1889, 1573
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+25002
+ rotate: false
+ xy: 577, 887
+ size: 10, 17
+ orig: 10, 17
+ offset: 0, 0
+ index: -1
+25003
+ rotate: false
+ xy: 530, 161
+ size: 19, 17
+ orig: 19, 17
+ offset: 0, 0
+ index: -1
+25004
+ rotate: false
+ xy: 1273, 1364
+ size: 19, 17
+ orig: 19, 17
+ offset: 0, 0
+ index: -1
+25010
+ rotate: false
+ xy: 1323, 1067
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+25011
+ rotate: false
+ xy: 1323, 1034
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+25012
+ rotate: false
+ xy: 1290, 1001
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+25013
+ rotate: false
+ xy: 1323, 1001
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+25014
+ rotate: false
+ xy: 1339, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+25015
+ rotate: false
+ xy: 1372, 1316
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+25016
+ rotate: false
+ xy: 739, 1512
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25017
+ rotate: false
+ xy: 1923, 1703
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25018
+ rotate: false
+ xy: 1973, 1801
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25019
+ rotate: false
+ xy: 1971, 1758
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25020
+ rotate: false
+ xy: 405, 866
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25021
+ rotate: false
+ xy: 404, 823
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25022
+ rotate: false
+ xy: 691, 1458
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25023
+ rotate: false
+ xy: 1629, 1653
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25024
+ rotate: false
+ xy: 1532, 1622
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25025
+ rotate: false
+ xy: 1575, 1622
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25026
+ rotate: false
+ xy: 448, 862
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25027
+ rotate: false
+ xy: 491, 862
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25028
+ rotate: false
+ xy: 534, 862
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25029
+ rotate: false
+ xy: 447, 819
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25030
+ rotate: false
+ xy: 490, 819
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25031
+ rotate: false
+ xy: 533, 819
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25032
+ rotate: false
+ xy: 994, 1658
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25033
+ rotate: false
+ xy: 994, 1658
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25034
+ rotate: false
+ xy: 994, 1658
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25035
+ rotate: false
+ xy: 994, 1658
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25036
+ rotate: false
+ xy: 992, 1615
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25037
+ rotate: false
+ xy: 602, 1368
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25038
+ rotate: false
+ xy: 601, 1325
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25039
+ rotate: false
+ xy: 1618, 1610
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25040
+ rotate: false
+ xy: 1037, 1658
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25041
+ rotate: false
+ xy: 1035, 1615
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25042
+ rotate: false
+ xy: 1829, 1656
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25043
+ rotate: false
+ xy: 1877, 1672
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25044
+ rotate: false
+ xy: 1920, 1660
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25045
+ rotate: false
+ xy: 913, 1573
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25046
+ rotate: false
+ xy: 782, 1512
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25047
+ rotate: false
+ xy: 825, 1518
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25048
+ rotate: false
+ xy: 868, 1524
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25049
+ rotate: false
+ xy: 398, 778
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25050
+ rotate: false
+ xy: 441, 776
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25051
+ rotate: false
+ xy: 484, 776
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25052
+ rotate: false
+ xy: 527, 776
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25053
+ rotate: false
+ xy: 1971, 1715
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25054
+ rotate: false
+ xy: 1672, 1653
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25055
+ rotate: false
+ xy: 1661, 1610
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25056
+ rotate: false
+ xy: 1715, 1642
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25057
+ rotate: false
+ xy: 1704, 1599
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25058
+ rotate: false
+ xy: 1758, 1638
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25059
+ rotate: false
+ xy: 1758, 1638
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25060
+ rotate: false
+ xy: 1747, 1595
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25061
+ rotate: false
+ xy: 1747, 1595
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25062
+ rotate: false
+ xy: 1747, 1595
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+25063
+ rotate: false
+ xy: 1747, 1595
+ size: 42, 42
+ orig: 42, 42
+ offset: 0, 0
+ index: -1
+251
+ rotate: false
+ xy: 1856, 1540
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+253
+ rotate: false
+ xy: 1889, 1540
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+255
+ rotate: false
+ xy: 1922, 1627
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+257
+ rotate: false
+ xy: 1922, 1594
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+259
+ rotate: false
+ xy: 1922, 1561
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+26
+ rotate: false
+ xy: 562, 557
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+261
+ rotate: false
+ xy: 1922, 1528
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+263
+ rotate: false
+ xy: 487, 183
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+265
+ rotate: false
+ xy: 520, 179
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+267
+ rotate: false
+ xy: 553, 161
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+269
+ rotate: false
+ xy: 586, 157
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+270
+ rotate: false
+ xy: 464, 150
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+271
+ rotate: false
+ xy: 464, 117
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+272
+ rotate: false
+ xy: 464, 84
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+273
+ rotate: false
+ xy: 464, 51
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+274
+ rotate: false
+ xy: 464, 18
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+275
+ rotate: false
+ xy: 497, 146
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+276
+ rotate: false
+ xy: 497, 113
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+277
+ rotate: false
+ xy: 497, 80
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+278
+ rotate: false
+ xy: 497, 47
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+279
+ rotate: false
+ xy: 497, 14
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+28
+ rotate: false
+ xy: 562, 524
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+280
+ rotate: false
+ xy: 530, 128
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+281
+ rotate: false
+ xy: 530, 95
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+282
+ rotate: false
+ xy: 530, 62
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+283
+ rotate: false
+ xy: 530, 29
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+284
+ rotate: false
+ xy: 563, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+285
+ rotate: false
+ xy: 563, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+286
+ rotate: false
+ xy: 563, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+287
+ rotate: false
+ xy: 563, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+288
+ rotate: false
+ xy: 596, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+289
+ rotate: false
+ xy: 596, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+290
+ rotate: false
+ xy: 596, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+291
+ rotate: false
+ xy: 596, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+292
+ rotate: false
+ xy: 619, 157
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+293
+ rotate: false
+ xy: 622, 190
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+294
+ rotate: false
+ xy: 629, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+295
+ rotate: false
+ xy: 629, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+296
+ rotate: false
+ xy: 629, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+298
+ rotate: false
+ xy: 629, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+420
+ rotate: false
+ xy: 629, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+299
+ rotate: false
+ xy: 652, 157
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+300
+ rotate: false
+ xy: 662, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+301
+ rotate: false
+ xy: 662, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+303
+ rotate: false
+ xy: 662, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+304
+ rotate: false
+ xy: 662, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+305
+ rotate: false
+ xy: 636, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+306
+ rotate: false
+ xy: 638, 751
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+307
+ rotate: false
+ xy: 638, 718
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+308
+ rotate: false
+ xy: 630, 685
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+309
+ rotate: false
+ xy: 630, 652
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+310
+ rotate: false
+ xy: 630, 619
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3101
+ rotate: false
+ xy: 817, 157
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3102
+ rotate: false
+ xy: 827, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3103
+ rotate: false
+ xy: 827, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3104
+ rotate: false
+ xy: 827, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3105
+ rotate: false
+ xy: 827, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+311
+ rotate: false
+ xy: 629, 586
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+312
+ rotate: false
+ xy: 628, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+313
+ rotate: false
+ xy: 628, 520
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+314
+ rotate: false
+ xy: 627, 487
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+315
+ rotate: false
+ xy: 627, 454
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+316
+ rotate: false
+ xy: 627, 421
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+317
+ rotate: false
+ xy: 626, 388
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+318
+ rotate: false
+ xy: 624, 355
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+319
+ rotate: false
+ xy: 623, 322
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+32
+ rotate: false
+ xy: 561, 491
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+320
+ rotate: false
+ xy: 623, 289
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+321
+ rotate: false
+ xy: 623, 256
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+322
+ rotate: false
+ xy: 623, 223
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+323
+ rotate: false
+ xy: 655, 190
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+324
+ rotate: false
+ xy: 642, 817
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+325
+ rotate: false
+ xy: 685, 157
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+326
+ rotate: false
+ xy: 695, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+327
+ rotate: false
+ xy: 695, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+328
+ rotate: false
+ xy: 695, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+329
+ rotate: false
+ xy: 695, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+330
+ rotate: false
+ xy: 1955, 1627
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+331
+ rotate: false
+ xy: 1955, 1594
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+332
+ rotate: false
+ xy: 1955, 1594
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+333
+ rotate: false
+ xy: 1955, 1561
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+335
+ rotate: false
+ xy: 1955, 1528
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+336
+ rotate: false
+ xy: 1955, 1528
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+337
+ rotate: false
+ xy: 663, 685
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+338
+ rotate: false
+ xy: 663, 652
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+339
+ rotate: false
+ xy: 663, 619
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+34
+ rotate: false
+ xy: 561, 458
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+340
+ rotate: false
+ xy: 662, 586
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+341
+ rotate: false
+ xy: 661, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+415
+ rotate: false
+ xy: 661, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+342
+ rotate: false
+ xy: 661, 520
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+416
+ rotate: false
+ xy: 661, 520
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+343
+ rotate: false
+ xy: 660, 487
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+344
+ rotate: false
+ xy: 660, 454
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+346
+ rotate: false
+ xy: 660, 421
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+347
+ rotate: false
+ xy: 659, 388
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+349
+ rotate: false
+ xy: 657, 355
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+359
+ rotate: false
+ xy: 656, 322
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+36
+ rotate: false
+ xy: 561, 425
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+367
+ rotate: false
+ xy: 656, 289
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+378
+ rotate: false
+ xy: 656, 256
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+38
+ rotate: false
+ xy: 560, 392
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+389
+ rotate: false
+ xy: 656, 223
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4
+ rotate: false
+ xy: 1113, 1669
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22
+ rotate: false
+ xy: 1113, 1669
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+40
+ rotate: false
+ xy: 558, 359
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+400
+ rotate: false
+ xy: 688, 190
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4021
+ rotate: false
+ xy: 342, 15
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+4022
+ rotate: false
+ xy: 475, 1076
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+4023
+ rotate: false
+ xy: 403, 15
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+4024
+ rotate: false
+ xy: 536, 1076
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+4025
+ rotate: false
+ xy: 344, 882
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+4026
+ rotate: false
+ xy: 405, 909
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+4027
+ rotate: false
+ xy: 466, 905
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+4028
+ rotate: false
+ xy: 527, 905
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+4047
+ rotate: false
+ xy: 1733, 1685
+ size: 47, 60
+ orig: 47, 60
+ offset: 0, 0
+ index: -1
+4077
+ rotate: false
+ xy: 277, 1371
+ size: 67, 105
+ orig: 67, 105
+ offset: 0, 0
+ index: -1
+408
+ rotate: false
+ xy: 718, 157
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4087
+ rotate: false
+ xy: 1, 1858
+ size: 72, 189
+ orig: 72, 189
+ offset: 0, 0
+ index: -1
+4096
+ rotate: false
+ xy: 277, 1265
+ size: 67, 105
+ orig: 67, 105
+ offset: 0, 0
+ index: -1
+4097
+ rotate: false
+ xy: 277, 1159
+ size: 67, 105
+ orig: 67, 105
+ offset: 0, 0
+ index: -1
+412
+ rotate: false
+ xy: 728, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+414
+ rotate: false
+ xy: 728, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4147
+ rotate: false
+ xy: 277, 1053
+ size: 67, 105
+ orig: 67, 105
+ offset: 0, 0
+ index: -1
+4157
+ rotate: false
+ xy: 487, 284
+ size: 36, 105
+ orig: 36, 105
+ offset: 0, 0
+ index: -1
+4158
+ rotate: false
+ xy: 526, 609
+ size: 36, 105
+ orig: 36, 105
+ offset: 0, 0
+ index: -1
+417
+ rotate: false
+ xy: 728, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+418
+ rotate: false
+ xy: 728, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+419
+ rotate: false
+ xy: 2014, 1767
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+42
+ rotate: false
+ xy: 557, 326
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+421
+ rotate: false
+ xy: 669, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+423
+ rotate: false
+ xy: 671, 751
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+425
+ rotate: false
+ xy: 671, 718
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+427
+ rotate: false
+ xy: 696, 685
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+430
+ rotate: false
+ xy: 696, 652
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+432
+ rotate: false
+ xy: 696, 619
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+434
+ rotate: false
+ xy: 695, 586
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+435
+ rotate: false
+ xy: 694, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+437
+ rotate: false
+ xy: 694, 520
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+439
+ rotate: false
+ xy: 693, 487
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+44
+ rotate: false
+ xy: 557, 293
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+441
+ rotate: false
+ xy: 693, 454
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+443
+ rotate: false
+ xy: 693, 421
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+445
+ rotate: false
+ xy: 692, 388
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+448
+ rotate: false
+ xy: 690, 355
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+450
+ rotate: false
+ xy: 689, 322
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+452
+ rotate: false
+ xy: 689, 289
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+454
+ rotate: false
+ xy: 689, 256
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+456
+ rotate: false
+ xy: 689, 223
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+457
+ rotate: false
+ xy: 721, 190
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+459
+ rotate: false
+ xy: 751, 157
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+46
+ rotate: false
+ xy: 557, 260
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+461
+ rotate: false
+ xy: 761, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+463
+ rotate: false
+ xy: 761, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+465
+ rotate: false
+ xy: 761, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+467
+ rotate: false
+ xy: 761, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+470
+ rotate: false
+ xy: 540, 1297
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+473
+ rotate: false
+ xy: 537, 1264
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+475
+ rotate: false
+ xy: 904, 1491
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+477
+ rotate: false
+ xy: 647, 1436
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+478
+ rotate: false
+ xy: 646, 1403
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+48
+ rotate: false
+ xy: 557, 227
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+480
+ rotate: false
+ xy: 645, 1370
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+482
+ rotate: false
+ xy: 680, 1425
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+485
+ rotate: false
+ xy: 679, 1392
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+487
+ rotate: false
+ xy: 678, 1359
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+490
+ rotate: false
+ xy: 645, 1337
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+492
+ rotate: false
+ xy: 678, 1326
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+494
+ rotate: false
+ xy: 644, 1304
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+496
+ rotate: false
+ xy: 677, 1293
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+498
+ rotate: false
+ xy: 1966, 1682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+499
+ rotate: false
+ xy: 2014, 1733
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+50
+ rotate: false
+ xy: 556, 194
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5002
+ rotate: false
+ xy: 712, 1392
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5008
+ rotate: false
+ xy: 1356, 988
+ size: 22, 51
+ orig: 22, 51
+ offset: 0, 0
+ index: -1
+5009
+ rotate: false
+ xy: 788, 226
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+501
+ rotate: false
+ xy: 1988, 1594
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5010
+ rotate: false
+ xy: 937, 1411
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5011
+ rotate: false
+ xy: 970, 1420
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5012
+ rotate: false
+ xy: 1003, 1412
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5013
+ rotate: false
+ xy: 1036, 1412
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5014
+ rotate: false
+ xy: 1069, 1412
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5015
+ rotate: false
+ xy: 1102, 1412
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5016
+ rotate: false
+ xy: 1135, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5017
+ rotate: false
+ xy: 1168, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5018
+ rotate: false
+ xy: 1201, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5019
+ rotate: false
+ xy: 1234, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5020
+ rotate: false
+ xy: 1267, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5021
+ rotate: false
+ xy: 1300, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5022
+ rotate: false
+ xy: 1333, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5023
+ rotate: false
+ xy: 1366, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5024
+ rotate: false
+ xy: 1399, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5025
+ rotate: false
+ xy: 1432, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5026
+ rotate: false
+ xy: 1465, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5027
+ rotate: false
+ xy: 1498, 1427
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5028
+ rotate: false
+ xy: 1531, 1427
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5029
+ rotate: false
+ xy: 1564, 1427
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+503
+ rotate: false
+ xy: 1988, 1561
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5030
+ rotate: false
+ xy: 1597, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5031
+ rotate: false
+ xy: 1630, 1415
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5032
+ rotate: false
+ xy: 1663, 1404
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5033
+ rotate: false
+ xy: 1696, 1404
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5034
+ rotate: false
+ xy: 1729, 1400
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5035
+ rotate: false
+ xy: 1762, 1377
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5036
+ rotate: false
+ xy: 1795, 1362
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5037
+ rotate: false
+ xy: 1828, 1345
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5038
+ rotate: false
+ xy: 1861, 1345
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5039
+ rotate: false
+ xy: 1894, 1333
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5040
+ rotate: false
+ xy: 1927, 1333
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+5041
+ rotate: false
+ xy: 1960, 1333
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+505
+ rotate: false
+ xy: 1988, 1528
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+507
+ rotate: false
+ xy: 838, 1452
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+510
+ rotate: false
+ xy: 871, 1458
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+512
+ rotate: false
+ xy: 904, 1458
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+514
+ rotate: false
+ xy: 913, 1540
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+516
+ rotate: false
+ xy: 871, 1425
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+518
+ rotate: false
+ xy: 904, 1425
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+52
+ rotate: false
+ xy: 739, 1479
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+520
+ rotate: false
+ xy: 1674, 1566
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+521
+ rotate: false
+ xy: 1707, 1566
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+523
+ rotate: false
+ xy: 1674, 1533
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+525
+ rotate: false
+ xy: 1707, 1533
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+527
+ rotate: false
+ xy: 1740, 1562
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+529
+ rotate: false
+ xy: 1740, 1529
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+532
+ rotate: false
+ xy: 1773, 1539
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+534
+ rotate: false
+ xy: 1773, 1506
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+536
+ rotate: false
+ xy: 1806, 1524
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+538
+ rotate: false
+ xy: 1806, 1491
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+54
+ rotate: false
+ xy: 772, 1479
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+561
+ rotate: false
+ xy: 772, 1479
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+541
+ rotate: false
+ xy: 1839, 1507
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+542
+ rotate: false
+ xy: 1872, 1507
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+544
+ rotate: false
+ xy: 1839, 1474
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+546
+ rotate: false
+ xy: 1872, 1474
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+548
+ rotate: false
+ xy: 1905, 1495
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+55
+ rotate: false
+ xy: 805, 1479
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+550
+ rotate: false
+ xy: 1938, 1495
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+552
+ rotate: false
+ xy: 1971, 1495
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+555
+ rotate: false
+ xy: 1905, 1462
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+557
+ rotate: false
+ xy: 1938, 1462
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+559
+ rotate: false
+ xy: 1971, 1462
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+563
+ rotate: false
+ xy: 2004, 1495
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+564
+ rotate: false
+ xy: 2004, 1462
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+566
+ rotate: false
+ xy: 570, 1264
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+568
+ rotate: false
+ xy: 603, 1292
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+57
+ rotate: false
+ xy: 838, 1485
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+570
+ rotate: false
+ xy: 603, 1259
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+572
+ rotate: false
+ xy: 636, 1271
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+574
+ rotate: false
+ xy: 597, 1226
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+577
+ rotate: false
+ xy: 597, 1193
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+579
+ rotate: false
+ xy: 597, 1160
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+581
+ rotate: false
+ xy: 597, 1127
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+583
+ rotate: false
+ xy: 597, 1094
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+585
+ rotate: false
+ xy: 669, 1260
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+586
+ rotate: false
+ xy: 636, 1238
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+588
+ rotate: false
+ xy: 630, 1205
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+590
+ rotate: false
+ xy: 630, 1172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+592
+ rotate: false
+ xy: 630, 1139
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+594
+ rotate: false
+ xy: 630, 1106
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+596
+ rotate: false
+ xy: 669, 1227
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+598
+ rotate: false
+ xy: 663, 1194
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6
+ rotate: false
+ xy: 525, 377
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+600
+ rotate: false
+ xy: 663, 1161
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6010
+ rotate: false
+ xy: 277, 844
+ size: 65, 64
+ orig: 65, 64
+ offset: 0, 0
+ index: -1
+602
+ rotate: false
+ xy: 663, 1128
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+604
+ rotate: false
+ xy: 663, 1095
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+606
+ rotate: false
+ xy: 702, 1260
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6069
+ rotate: false
+ xy: 277, 713
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+608
+ rotate: false
+ xy: 702, 1227
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+610
+ rotate: false
+ xy: 696, 1194
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+612
+ rotate: false
+ xy: 696, 1161
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+614
+ rotate: false
+ xy: 696, 1128
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+616
+ rotate: false
+ xy: 696, 1095
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+618
+ rotate: false
+ xy: 710, 1293
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+620
+ rotate: false
+ xy: 735, 1260
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+622
+ rotate: false
+ xy: 735, 1227
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+624
+ rotate: false
+ xy: 729, 1194
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+626
+ rotate: false
+ xy: 729, 1161
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+628
+ rotate: false
+ xy: 729, 1128
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+630
+ rotate: false
+ xy: 729, 1095
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+632
+ rotate: false
+ xy: 762, 1194
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+634
+ rotate: false
+ xy: 762, 1161
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+636
+ rotate: false
+ xy: 762, 1128
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+638
+ rotate: false
+ xy: 762, 1095
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+640
+ rotate: false
+ xy: 634, 951
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+642
+ rotate: false
+ xy: 634, 918
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+644
+ rotate: false
+ xy: 634, 885
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+646
+ rotate: false
+ xy: 643, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+648
+ rotate: false
+ xy: 723, 355
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+650
+ rotate: false
+ xy: 722, 322
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+652
+ rotate: false
+ xy: 722, 289
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+654
+ rotate: false
+ xy: 722, 256
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+656
+ rotate: false
+ xy: 722, 223
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+658
+ rotate: false
+ xy: 725, 388
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+660
+ rotate: false
+ xy: 754, 190
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+662
+ rotate: false
+ xy: 784, 157
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+664
+ rotate: false
+ xy: 794, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+666
+ rotate: false
+ xy: 794, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+668
+ rotate: false
+ xy: 794, 58
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+670
+ rotate: false
+ xy: 794, 25
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+672
+ rotate: false
+ xy: 756, 355
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+674
+ rotate: false
+ xy: 755, 322
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+677
+ rotate: false
+ xy: 755, 289
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+679
+ rotate: false
+ xy: 755, 256
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+681
+ rotate: false
+ xy: 755, 223
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+683
+ rotate: false
+ xy: 787, 190
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7002
+ rotate: false
+ xy: 277, 680
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7003
+ rotate: false
+ xy: 277, 647
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7004
+ rotate: false
+ xy: 277, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7005
+ rotate: false
+ xy: 277, 581
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7006
+ rotate: false
+ xy: 277, 548
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7008
+ rotate: false
+ xy: 277, 515
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7010
+ rotate: false
+ xy: 277, 482
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7011
+ rotate: false
+ xy: 277, 449
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7014
+ rotate: false
+ xy: 277, 416
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7015
+ rotate: false
+ xy: 277, 383
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7016
+ rotate: false
+ xy: 277, 350
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7017
+ rotate: false
+ xy: 277, 317
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7018
+ rotate: false
+ xy: 277, 284
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7019
+ rotate: false
+ xy: 277, 251
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7020
+ rotate: false
+ xy: 277, 218
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7021
+ rotate: false
+ xy: 277, 185
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7022
+ rotate: false
+ xy: 277, 152
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7023
+ rotate: false
+ xy: 277, 119
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7024
+ rotate: false
+ xy: 277, 86
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7025
+ rotate: false
+ xy: 277, 53
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7026
+ rotate: false
+ xy: 208, 7
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7027
+ rotate: false
+ xy: 277, 20
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7028
+ rotate: false
+ xy: 283, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7029
+ rotate: false
+ xy: 348, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7030
+ rotate: false
+ xy: 413, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7031
+ rotate: false
+ xy: 478, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7032
+ rotate: false
+ xy: 543, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7033
+ rotate: false
+ xy: 608, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7034
+ rotate: false
+ xy: 673, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7035
+ rotate: false
+ xy: 738, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7036
+ rotate: false
+ xy: 803, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7043
+ rotate: false
+ xy: 868, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7045
+ rotate: false
+ xy: 933, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7046
+ rotate: false
+ xy: 998, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7060
+ rotate: false
+ xy: 1063, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7061
+ rotate: false
+ xy: 1128, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7062
+ rotate: false
+ xy: 1193, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7063
+ rotate: false
+ xy: 1258, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7064
+ rotate: false
+ xy: 1323, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7065
+ rotate: false
+ xy: 1388, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7066
+ rotate: false
+ xy: 1453, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7067
+ rotate: false
+ xy: 1518, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7068
+ rotate: false
+ xy: 1583, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7069
+ rotate: false
+ xy: 1648, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7070
+ rotate: false
+ xy: 1713, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7071
+ rotate: false
+ xy: 1778, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7073
+ rotate: false
+ xy: 1843, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7075
+ rotate: false
+ xy: 1908, 1811
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+76
+ rotate: false
+ xy: 871, 1491
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+78
+ rotate: false
+ xy: 734, 1446
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8
+ rotate: false
+ xy: 524, 344
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+80
+ rotate: false
+ xy: 767, 1446
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8022
+ rotate: false
+ xy: 281, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8036
+ rotate: false
+ xy: 74, 1993
+ size: 70, 54
+ orig: 70, 54
+ offset: 0, 0
+ index: -1
+8037
+ rotate: false
+ xy: 346, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8038
+ rotate: false
+ xy: 411, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8039
+ rotate: false
+ xy: 476, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8040
+ rotate: false
+ xy: 541, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8041
+ rotate: false
+ xy: 606, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8042
+ rotate: false
+ xy: 671, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8043
+ rotate: false
+ xy: 736, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8044
+ rotate: false
+ xy: 801, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8045
+ rotate: false
+ xy: 866, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8046
+ rotate: false
+ xy: 931, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8047
+ rotate: false
+ xy: 996, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8048
+ rotate: false
+ xy: 1061, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8049
+ rotate: false
+ xy: 1126, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8050
+ rotate: false
+ xy: 1191, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8051
+ rotate: false
+ xy: 1256, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8052
+ rotate: false
+ xy: 1321, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8054
+ rotate: false
+ xy: 1993, 1333
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+8056
+ rotate: false
+ xy: 727, 457
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+8058
+ rotate: false
+ xy: 745, 1317
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+8060
+ rotate: false
+ xy: 778, 1317
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+8075
+ rotate: false
+ xy: 279, 1603
+ size: 64, 128
+ orig: 64, 128
+ offset: 0, 0
+ index: -1
+8081
+ rotate: false
+ xy: 2021, 1570
+ size: 24, 56
+ orig: 24, 56
+ offset: 0, 0
+ index: -1
+8082
+ rotate: false
+ xy: 1634, 1696
+ size: 49, 49
+ orig: 49, 49
+ offset: 0, 0
+ index: -1
+8083
+ rotate: false
+ xy: 487, 249
+ size: 36, 34
+ orig: 36, 34
+ offset: 0, 0
+ index: -1
+8086
+ rotate: false
+ xy: 728, 586
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8087
+ rotate: false
+ xy: 711, 1359
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8088
+ rotate: false
+ xy: 711, 1326
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8089
+ rotate: false
+ xy: 726, 424
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8090
+ rotate: false
+ xy: 811, 1413
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8091
+ rotate: false
+ xy: 811, 1380
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8092
+ rotate: false
+ xy: 811, 1347
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8093
+ rotate: false
+ xy: 811, 1314
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8094
+ rotate: false
+ xy: 970, 1387
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8095
+ rotate: false
+ xy: 1003, 1379
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8096
+ rotate: false
+ xy: 1036, 1379
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8097
+ rotate: false
+ xy: 1069, 1379
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8098
+ rotate: false
+ xy: 1102, 1379
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8099
+ rotate: false
+ xy: 1, 1678
+ size: 70, 120
+ orig: 70, 120
+ offset: 0, 0
+ index: -1
+8100
+ rotate: false
+ xy: 2014, 1627
+ size: 33, 105
+ orig: 33, 105
+ offset: 0, 0
+ index: -1
+8101
+ rotate: false
+ xy: 1135, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8102
+ rotate: false
+ xy: 768, 1252
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+8103
+ rotate: false
+ xy: 801, 1249
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+8104
+ rotate: false
+ xy: 1168, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8107
+ rotate: false
+ xy: 1201, 1382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8108
+ rotate: false
+ xy: 1386, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8110
+ rotate: false
+ xy: 279, 1538
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8169
+ rotate: false
+ xy: 344, 1553
+ size: 64, 192
+ orig: 64, 192
+ offset: 0, 0
+ index: -1
+8172
+ rotate: false
+ xy: 540, 1391
+ size: 61, 126
+ orig: 61, 126
+ offset: 0, 0
+ index: -1
+8174
+ rotate: false
+ xy: 1451, 1746
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+82
+ rotate: false
+ xy: 800, 1446
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+84
+ rotate: false
+ xy: 1872, 1639
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+85
+ rotate: false
+ xy: 1790, 1605
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+86
+ rotate: false
+ xy: 1146, 1664
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+87
+ rotate: false
+ xy: 1179, 1664
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+88
+ rotate: false
+ xy: 1146, 1631
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+89
+ rotate: false
+ xy: 1179, 1631
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+90
+ rotate: false
+ xy: 1212, 1663
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+91
+ rotate: false
+ xy: 1212, 1630
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+92
+ rotate: false
+ xy: 1245, 1663
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+93
+ rotate: false
+ xy: 1245, 1630
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+94
+ rotate: false
+ xy: 1278, 1669
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+95
+ rotate: false
+ xy: 1278, 1636
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+96
+ rotate: false
+ xy: 1311, 1662
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+97
+ rotate: false
+ xy: 1344, 1662
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+98
+ rotate: false
+ xy: 1377, 1662
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+99
+ rotate: false
+ xy: 1311, 1629
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
diff --git a/desktop/assets/data/images/images.png b/desktop/assets/data/images/images.png
new file mode 100644
index 00000000..cd5dc73a
Binary files /dev/null and b/desktop/assets/data/images/images.png differ
diff --git a/desktop/assets/data/images/images10.png b/desktop/assets/data/images/images10.png
new file mode 100644
index 00000000..93b7cb1c
Binary files /dev/null and b/desktop/assets/data/images/images10.png differ
diff --git a/desktop/assets/data/images/images11.png b/desktop/assets/data/images/images11.png
new file mode 100644
index 00000000..841dbf34
Binary files /dev/null and b/desktop/assets/data/images/images11.png differ
diff --git a/desktop/assets/data/images/images12.png b/desktop/assets/data/images/images12.png
new file mode 100644
index 00000000..83ee40e1
Binary files /dev/null and b/desktop/assets/data/images/images12.png differ
diff --git a/desktop/assets/data/images/images13.png b/desktop/assets/data/images/images13.png
new file mode 100644
index 00000000..98077256
Binary files /dev/null and b/desktop/assets/data/images/images13.png differ
diff --git a/desktop/assets/data/images/images14.png b/desktop/assets/data/images/images14.png
new file mode 100644
index 00000000..fffbaef5
Binary files /dev/null and b/desktop/assets/data/images/images14.png differ
diff --git a/desktop/assets/data/images/images15.png b/desktop/assets/data/images/images15.png
new file mode 100644
index 00000000..92770b4e
Binary files /dev/null and b/desktop/assets/data/images/images15.png differ
diff --git a/desktop/assets/data/images/images16.png b/desktop/assets/data/images/images16.png
new file mode 100644
index 00000000..4317d6cb
Binary files /dev/null and b/desktop/assets/data/images/images16.png differ
diff --git a/desktop/assets/data/images/images17.png b/desktop/assets/data/images/images17.png
new file mode 100644
index 00000000..5179a4c3
Binary files /dev/null and b/desktop/assets/data/images/images17.png differ
diff --git a/desktop/assets/data/images/images18.png b/desktop/assets/data/images/images18.png
new file mode 100644
index 00000000..df2f350e
Binary files /dev/null and b/desktop/assets/data/images/images18.png differ
diff --git a/desktop/assets/data/images/images19.png b/desktop/assets/data/images/images19.png
new file mode 100644
index 00000000..6a2ccff9
Binary files /dev/null and b/desktop/assets/data/images/images19.png differ
diff --git a/desktop/assets/data/images/images2.png b/desktop/assets/data/images/images2.png
new file mode 100644
index 00000000..bb928fe2
Binary files /dev/null and b/desktop/assets/data/images/images2.png differ
diff --git a/desktop/assets/data/images/images3.png b/desktop/assets/data/images/images3.png
new file mode 100644
index 00000000..27d7ebce
Binary files /dev/null and b/desktop/assets/data/images/images3.png differ
diff --git a/desktop/assets/data/images/images4.png b/desktop/assets/data/images/images4.png
new file mode 100644
index 00000000..5ae4adbb
Binary files /dev/null and b/desktop/assets/data/images/images4.png differ
diff --git a/desktop/assets/data/images/images5.png b/desktop/assets/data/images/images5.png
new file mode 100644
index 00000000..648246fb
Binary files /dev/null and b/desktop/assets/data/images/images5.png differ
diff --git a/desktop/assets/data/images/images6.png b/desktop/assets/data/images/images6.png
new file mode 100644
index 00000000..71873911
Binary files /dev/null and b/desktop/assets/data/images/images6.png differ
diff --git a/desktop/assets/data/images/images7.png b/desktop/assets/data/images/images7.png
new file mode 100644
index 00000000..90090d9d
Binary files /dev/null and b/desktop/assets/data/images/images7.png differ
diff --git a/desktop/assets/data/images/images8.png b/desktop/assets/data/images/images8.png
new file mode 100644
index 00000000..c5bbc459
Binary files /dev/null and b/desktop/assets/data/images/images8.png differ
diff --git a/desktop/assets/data/images/images9.png b/desktop/assets/data/images/images9.png
new file mode 100644
index 00000000..ddff8a86
Binary files /dev/null and b/desktop/assets/data/images/images9.png differ
diff --git a/desktop/assets/data/shaders/outlineFragShader.glsl b/desktop/assets/data/shaders/outlineFragShader.glsl
new file mode 100644
index 00000000..41c165fa
--- /dev/null
+++ b/desktop/assets/data/shaders/outlineFragShader.glsl
@@ -0,0 +1,48 @@
+#ifdef GL_ES
+precision mediump float;
+precision mediump int;
+#endif
+
+uniform sampler2D u_texture;
+
+// The inverse of the viewport dimensions along X and Y
+uniform vec2 u_viewportInverse;
+
+// Color of the outline
+uniform vec3 u_color;
+
+// Thickness of the outline
+uniform float u_offset;
+
+// Step to check for neighbors
+uniform float u_step;
+
+varying vec4 v_color;
+varying vec2 v_texCoord;
+
+#define ALPHA_VALUE_BORDER 0.5
+
+void main() {
+ vec2 T = v_texCoord.xy;
+
+ float alpha = 0.0;
+ bool allin = true;
+ for( float ix = -u_offset; ix < u_offset; ix += u_step )
+ {
+ for( float iy = -u_offset; iy < u_offset; iy += u_step )
+ {
+ float newAlpha = texture2D(u_texture, T + vec2(ix, iy) * u_viewportInverse).a;
+ allin = allin && newAlpha > ALPHA_VALUE_BORDER;
+ if (newAlpha > ALPHA_VALUE_BORDER && newAlpha >= alpha)
+ {
+ alpha = newAlpha;
+ }
+ }
+ }
+ if (allin)
+ {
+ alpha = 0.0;
+ }
+
+ gl_FragColor = vec4(u_color,alpha);
+}
\ No newline at end of file
diff --git a/desktop/assets/data/shaders/outlineVertexShader.glsl b/desktop/assets/data/shaders/outlineVertexShader.glsl
new file mode 100644
index 00000000..91625165
--- /dev/null
+++ b/desktop/assets/data/shaders/outlineVertexShader.glsl
@@ -0,0 +1,16 @@
+uniform mat4 u_projTrans;
+
+attribute vec4 a_position;
+attribute vec2 a_texCoord0;
+attribute vec4 a_color;
+
+varying vec4 v_color;
+varying vec2 v_texCoord;
+
+uniform vec2 u_viewportInverse;
+
+void main() {
+ gl_Position = u_projTrans * a_position;
+ v_texCoord = a_texCoord0;
+ v_color = a_color;
+}
\ No newline at end of file
diff --git a/desktop/assets/data/skins/classic/Cinzel-Bold.otf b/desktop/assets/data/skins/classic/Cinzel-Bold.otf
new file mode 100644
index 00000000..736fb115
Binary files /dev/null and b/desktop/assets/data/skins/classic/Cinzel-Bold.otf differ
diff --git a/desktop/assets/data/skins/classic/Livvic-Light.ttf b/desktop/assets/data/skins/classic/Livvic-Light.ttf
new file mode 100644
index 00000000..12fb901d
Binary files /dev/null and b/desktop/assets/data/skins/classic/Livvic-Light.ttf differ
diff --git a/desktop/assets/data/skins/classic/Livvic-Regular.ttf b/desktop/assets/data/skins/classic/Livvic-Regular.ttf
new file mode 100644
index 00000000..1fff10de
Binary files /dev/null and b/desktop/assets/data/skins/classic/Livvic-Regular.ttf differ
diff --git a/desktop/assets/data/skins/classic/TAHOMAB0.TTF b/desktop/assets/data/skins/classic/TAHOMAB0.TTF
new file mode 100644
index 00000000..7f8a09cc
Binary files /dev/null and b/desktop/assets/data/skins/classic/TAHOMAB0.TTF differ
diff --git a/desktop/assets/data/skins/classic/TAHOMA_0.TTF b/desktop/assets/data/skins/classic/TAHOMA_0.TTF
new file mode 100644
index 00000000..4bc68576
Binary files /dev/null and b/desktop/assets/data/skins/classic/TAHOMA_0.TTF differ
diff --git a/desktop/assets/data/skins/classic/ao-skin.atlas b/desktop/assets/data/skins/classic/ao-skin.atlas
new file mode 100644
index 00000000..445ba170
--- /dev/null
+++ b/desktop/assets/data/skins/classic/ao-skin.atlas
@@ -0,0 +1,307 @@
+
+ao-skin.png
+size: 2048,2048
+format: RGBA8888
+filter: Linear,Linear
+repeat: none
+Inventory-Icon
+ rotate: false
+ xy: 229, 169
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+action-bar
+ rotate: false
+ xy: 643, 1961
+ size: 541, 86
+ split: 10, 10, 10, 10
+ orig: 541, 86
+ offset: 0, 0
+ index: -1
+bar
+ rotate: false
+ xy: 1, 5
+ size: 193, 14
+ split: 1, 1, 1, 1
+ pad: 3, 2, 2, 2
+ orig: 193, 14
+ offset: 0, 0
+ index: -1
+bar-frame
+ rotate: false
+ xy: 1186, 2015
+ size: 212, 32
+ split: 9, 9, 9, 9
+ orig: 212, 32
+ offset: 0, 0
+ index: -1
+big-disc
+ rotate: false
+ xy: 269, 220
+ size: 89, 88
+ orig: 89, 88
+ offset: 0, 0
+ index: -1
+blank
+ rotate: false
+ xy: 997, 1657
+ size: 32, 32
+ split: 2, 2, 2, 2
+ pad: 3, 3, 3, 3
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+body-bg
+ rotate: false
+ xy: 1, 878
+ size: 600, 527
+ orig: 600, 527
+ offset: 0, 0
+ index: -1
+button
+ rotate: false
+ xy: 269, 310
+ size: 200, 31
+ split: 9, 9, 3, 3
+ pad: 10, 10, 4, 4
+ orig: 200, 31
+ offset: 0, 0
+ index: -1
+checked
+ rotate: false
+ xy: 229, 135
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+content-bg
+ rotate: false
+ xy: 1, 343
+ size: 533, 533
+ orig: 533, 533
+ offset: 0, 0
+ index: -1
+cross-button
+ rotate: false
+ xy: 603, 1370
+ size: 34, 35
+ orig: 34, 35
+ offset: 0, 0
+ index: -1
+disc
+ rotate: false
+ xy: 997, 1691
+ size: 54, 54
+ orig: 54, 54
+ offset: 0, 0
+ index: -1
+disc-glow
+ rotate: false
+ xy: 536, 812
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+h-scroll
+ rotate: false
+ xy: 851, 1503
+ size: 16, 16
+ split: 5, 5, 7, 7
+ orig: 16, 16
+ offset: 0, 0
+ index: -1
+hover-button
+ rotate: false
+ xy: 643, 1489
+ size: 206, 30
+ split: 10, 9, 2, 2
+ pad: 10, 10, 3, 3
+ orig: 206, 30
+ offset: 0, 0
+ index: -1
+icon-container
+ rotate: false
+ xy: 997, 1875
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+inventory-spells-window
+ rotate: false
+ xy: 643, 1435
+ size: 85, 52
+ orig: 85, 52
+ offset: 0, 0
+ index: -1
+menu-frame
+ rotate: false
+ xy: 1, 21
+ size: 226, 180
+ split: 12, 12, 12, 12
+ pad: 15, 15, 15, 15
+ orig: 226, 180
+ offset: 0, 0
+ index: -1
+paper-bg
+ rotate: false
+ xy: 1, 1407
+ size: 640, 640
+ orig: 640, 640
+ offset: 0, 0
+ index: -1
+scale_bar
+ rotate: false
+ xy: 643, 1941
+ size: 425, 18
+ orig: 425, 18
+ offset: 0, 0
+ index: -1
+select-box
+ rotate: false
+ xy: 471, 325
+ size: 16, 16
+ split: 0, 12, 0, 0
+ orig: 16, 16
+ offset: 0, 0
+ index: -1
+separator
+ rotate: false
+ xy: 1, 1
+ size: 64, 2
+ orig: 64, 2
+ offset: 0, 0
+ index: -1
+simple-window
+ rotate: false
+ xy: 643, 1521
+ size: 352, 418
+ split: 12, 12, 12, 12
+ pad: 15, 15, 15, 15
+ orig: 352, 418
+ offset: 0, 0
+ index: -1
+slot-frame
+ rotate: false
+ xy: 360, 222
+ size: 86, 86
+ split: 11, 11, 11, 11
+ orig: 86, 86
+ offset: 0, 0
+ index: -1
+slot-selected
+ rotate: false
+ xy: 536, 748
+ size: 62, 62
+ orig: 62, 62
+ offset: 0, 0
+ index: -1
+slot-selected2
+ rotate: false
+ xy: 997, 1811
+ size: 62, 62
+ split: 7, 7, 7, 7
+ pad: 0, 0, 0, 0
+ orig: 62, 62
+ offset: 0, 0
+ index: -1
+speech-bubble
+ rotate: false
+ xy: 730, 1455
+ size: 32, 32
+ split: 4, 19, 3, 6
+ pad: 5, 19, 4, 6
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+speech-bubble-flipped
+ rotate: false
+ xy: 536, 586
+ size: 32, 32
+ split: 4, 19, 5, 3
+ pad: 4, 4, 5, 3
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+spells-icon
+ rotate: false
+ xy: 1400, 2015
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+staff-hover-icon
+ rotate: false
+ xy: 536, 684
+ size: 61, 62
+ orig: 61, 62
+ offset: 0, 0
+ index: -1
+staff-icon
+ rotate: false
+ xy: 997, 1747
+ size: 61, 62
+ orig: 61, 62
+ offset: 0, 0
+ index: -1
+staff
+ rotate: false
+ xy: 997, 1747
+ size: 61, 62
+ orig: 61, 62
+ offset: 0, 0
+ index: -1
+staff-selected-icon
+ rotate: false
+ xy: 536, 620
+ size: 61, 62
+ orig: 61, 62
+ offset: 0, 0
+ index: -1
+text-cursor
+ rotate: false
+ xy: 1186, 1964
+ size: 4, 22
+ orig: 4, 22
+ offset: 0, 0
+ index: -1
+tooltip
+ rotate: false
+ xy: 1, 203
+ size: 266, 138
+ split: 10, 10, 10, 10
+ pad: 12, 12, 12, 12
+ orig: 266, 138
+ offset: 0, 0
+ index: -1
+unchecked
+ rotate: false
+ xy: 603, 1336
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+unit-counter
+ rotate: false
+ xy: 1186, 1988
+ size: 101, 25
+ orig: 101, 25
+ offset: 0, 0
+ index: -1
+v-scroll
+ rotate: false
+ xy: 1070, 1943
+ size: 16, 16
+ split: 6, 6, 5, 5
+ orig: 16, 16
+ offset: 0, 0
+ index: -1
+window
+ rotate: false
+ xy: 1434, 2015
+ size: 32, 32
+ split: 15, 16, 15, 16
+ pad: 15, 16, 16, 15
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
diff --git a/desktop/assets/data/skins/classic/ao-skin.json b/desktop/assets/data/skins/classic/ao-skin.json
new file mode 100644
index 00000000..e3f599d3
Binary files /dev/null and b/desktop/assets/data/skins/classic/ao-skin.json differ
diff --git a/desktop/assets/data/skins/classic/ao-skin.png b/desktop/assets/data/skins/classic/ao-skin.png
new file mode 100644
index 00000000..0e3a62d7
Binary files /dev/null and b/desktop/assets/data/skins/classic/ao-skin.png differ
diff --git a/desktop/assets/data/skins/finisterra/KhmerUI.ttf b/desktop/assets/data/skins/finisterra/KhmerUI.ttf
new file mode 100644
index 00000000..8589e762
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/KhmerUI.ttf differ
diff --git a/desktop/assets/data/skins/finisterra/KhmerUIb.ttf b/desktop/assets/data/skins/finisterra/KhmerUIb.ttf
new file mode 100644
index 00000000..fe613cdb
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/KhmerUIb.ttf differ
diff --git a/desktop/assets/data/skins/finisterra/Pieces of Eight.ttf b/desktop/assets/data/skins/finisterra/Pieces of Eight.ttf
new file mode 100644
index 00000000..182a646a
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Pieces of Eight.ttf differ
diff --git a/desktop/assets/data/skins/finisterra/TAHOMAB0.TTF b/desktop/assets/data/skins/finisterra/TAHOMAB0.TTF
new file mode 100644
index 00000000..7f8a09cc
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/TAHOMAB0.TTF differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Rectangular/Large/Button_RL_Background.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Rectangular/Large/Button_RL_Background.png
new file mode 100644
index 00000000..80f40bba
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Rectangular/Large/Button_RL_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Rectangular/Large/Button_RL_Border.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Rectangular/Large/Button_RL_Border.png
new file mode 100644
index 00000000..ad9d16d9
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Rectangular/Large/Button_RL_Border.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Rectangular/Large/Button_RL_Hover.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Rectangular/Large/Button_RL_Hover.png
new file mode 100644
index 00000000..65ccc22f
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Rectangular/Large/Button_RL_Hover.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Rectangular/Large/Button_RL_Overlay.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Rectangular/Large/Button_RL_Overlay.png
new file mode 100644
index 00000000..5789842c
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Rectangular/Large/Button_RL_Overlay.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Button_S1_Background.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Button_S1_Background.png
new file mode 100644
index 00000000..d4aead36
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Button_S1_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Back.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Back.png
new file mode 100644
index 00000000..1e348ad1
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Back.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Close.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Close.png
new file mode 100644
index 00000000..7e7d397a
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Close.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Close_Small.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Close_Small.png
new file mode 100644
index 00000000..3294d6e7
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Close_Small.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Create.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Create.png
new file mode 100644
index 00000000..ea1ae0e6
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Create.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Delete.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Delete.png
new file mode 100644
index 00000000..2a706362
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Delete.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Menu.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Menu.png
new file mode 100644
index 00000000..a9dfcdcd
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Buttons/Square/Icons/Button_S1_Icon_Menu.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Background.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Background.png
new file mode 100644
index 00000000..3cf2740c
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Background2.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Background2.png
new file mode 100644
index 00000000..0aae47be
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Background2.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Focus.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Focus.png
new file mode 100644
index 00000000..185c2f85
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Focus.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Glow.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Glow.png
new file mode 100644
index 00000000..52adc3c6
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Glow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Gradient.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Gradient.png
new file mode 100644
index 00000000..a5bfece6
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Gradient.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Tribal.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Tribal.png
new file mode 100644
index 00000000..7a5065c9
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Input Field/InputField_Tribal.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Select Field/SelectField_Arrow.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Select Field/SelectField_Arrow.png
new file mode 100644
index 00000000..144a8a99
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Select Field/SelectField_Arrow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Select Field/SelectField_Arrow_Hover.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Select Field/SelectField_Arrow_Hover.png
new file mode 100644
index 00000000..653c1e27
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Select Field/SelectField_Arrow_Hover.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Advanced_Horizontal_Handle.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Advanced_Horizontal_Handle.png
new file mode 100644
index 00000000..779704d4
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Advanced_Horizontal_Handle.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Advanced_Horizontal_Handle_Hover.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Advanced_Horizontal_Handle_Hover.png
new file mode 100644
index 00000000..3b4ee689
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Advanced_Horizontal_Handle_Hover.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Box_Background.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Box_Background.png
new file mode 100644
index 00000000..14a73ad7
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Box_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Horizontal_Background.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Horizontal_Background.png
new file mode 100644
index 00000000..2ad5a81a
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Horizontal_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Horizontal_Fill.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Horizontal_Fill.png
new file mode 100644
index 00000000..24b48218
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Horizontal_Fill.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Horizontal_Handle.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Horizontal_Handle.png
new file mode 100644
index 00000000..24c2290f
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Sliders/Slider_Horizontal_Handle.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Checkbox_Checkmark.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Checkbox_Checkmark.png
new file mode 100644
index 00000000..10721635
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Checkbox_Checkmark.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Checkbox_Hover.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Checkbox_Hover.png
new file mode 100644
index 00000000..a14638e4
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Checkbox_Hover.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Radio_Background.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Radio_Background.png
new file mode 100644
index 00000000..9b1b9065
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Radio_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Radio_Checkmark.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Radio_Checkmark.png
new file mode 100644
index 00000000..112e7dd4
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Radio_Checkmark.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Radio_Hover.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Radio_Hover.png
new file mode 100644
index 00000000..23ead478
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Radio_Hover.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Radio_Press.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Radio_Press.png
new file mode 100644
index 00000000..cd4b4e06
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/Radio_Press.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/SwitchToggle_Handle.png b/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/SwitchToggle_Handle.png
new file mode 100644
index 00000000..8e8de685
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Controls/Toggles/SwitchToggle_Handle.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Cursors/Cursor_Normal.png b/desktop/assets/data/skins/finisterra/Textures/Cursors/Cursor_Normal.png
new file mode 100644
index 00000000..5791cb07
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Cursors/Cursor_Normal.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Avatars/CSL_Character_Avatar_Example.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Avatars/CSL_Character_Avatar_Example.png
new file mode 100644
index 00000000..3e2350c5
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Avatars/CSL_Character_Avatar_Example.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Avatars/CharacterCreate_Race_Example.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Avatars/CharacterCreate_Race_Example.png
new file mode 100644
index 00000000..9ded0a5a
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Avatars/CharacterCreate_Race_Example.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Avatars/HeroSelect_Hero_AvatarExample.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Avatars/HeroSelect_Hero_AvatarExample.png
new file mode 100644
index 00000000..7fb30c9d
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Avatars/HeroSelect_Hero_AvatarExample.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Avatars/Portrait.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Avatars/Portrait.png
new file mode 100644
index 00000000..708aadd0
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Avatars/Portrait.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Avatars/UnitFrame_Main_Avatar_Example.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Avatars/UnitFrame_Main_Avatar_Example.png
new file mode 100644
index 00000000..708aadd0
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Avatars/UnitFrame_Main_Avatar_Example.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Background.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Background.png
new file mode 100644
index 00000000..070e2847
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Character Shades/CharacterCreate_CharacterShade.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Character Shades/CharacterCreate_CharacterShade.png
new file mode 100644
index 00000000..df1404cf
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Character Shades/CharacterCreate_CharacterShade.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Character Shades/CharacterSelect_List_CharacterShade.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Character Shades/CharacterSelect_List_CharacterShade.png
new file mode 100644
index 00000000..d6aee1cc
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Character Shades/CharacterSelect_List_CharacterShade.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Character Shades/HeroSelect_CharacterShade.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Character Shades/HeroSelect_CharacterShade.png
new file mode 100644
index 00000000..f1db7466
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Character Shades/HeroSelect_CharacterShade.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Large/Logo_Large_Background.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Large/Logo_Large_Background.png
new file mode 100644
index 00000000..f2454d20
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Large/Logo_Large_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Large/Logo_Large_Foreground_Tribals.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Large/Logo_Large_Foreground_Tribals.png
new file mode 100644
index 00000000..e3748d02
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Large/Logo_Large_Foreground_Tribals.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Large/Logo_Large_Texts.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Large/Logo_Large_Texts.png
new file mode 100644
index 00000000..1f9b2982
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Large/Logo_Large_Texts.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Large/Logo_Large_Tribal.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Large/Logo_Large_Tribal.png
new file mode 100644
index 00000000..aa90ac11
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Large/Logo_Large_Tribal.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Small/Logo_Small_Background.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Small/Logo_Small_Background.png
new file mode 100644
index 00000000..54e7f3ac
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Small/Logo_Small_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Small/Logo_Small_Foreground_Tribals.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Small/Logo_Small_Foreground_Tribals.png
new file mode 100644
index 00000000..08e663c5
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Small/Logo_Small_Foreground_Tribals.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Small/Logo_Small_Texts.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Small/Logo_Small_Texts.png
new file mode 100644
index 00000000..5530a484
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Small/Logo_Small_Texts.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Small/Logo_Small_Tribal.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Small/Logo_Small_Tribal.png
new file mode 100644
index 00000000..5b3860e7
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Logo Small/Logo_Small_Tribal.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Demo/Minimap_Example.png b/desktop/assets/data/skins/finisterra/Textures/Demo/Minimap_Example.png
new file mode 100644
index 00000000..134cb451
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Demo/Minimap_Example.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/ActionBar_Tribals.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/ActionBar_Tribals.png
new file mode 100644
index 00000000..7f90f0fb
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/ActionBar_Tribals.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Bar Menu/ActionBar_BarMenu_Arrow.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Bar Menu/ActionBar_BarMenu_Arrow.png
new file mode 100644
index 00000000..29175c8e
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Bar Menu/ActionBar_BarMenu_Arrow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Bar Menu/ActionBar_BarMenu_Arrow_Hover.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Bar Menu/ActionBar_BarMenu_Arrow_Hover.png
new file mode 100644
index 00000000..4b6b2bce
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Bar Menu/ActionBar_BarMenu_Arrow_Hover.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Bar Menu/ActionBar_BarMenu_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Bar Menu/ActionBar_BarMenu_Background.png
new file mode 100644
index 00000000..f3533c15
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Bar Menu/ActionBar_BarMenu_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/ActionBar_Button_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/ActionBar_Button_Background.png
new file mode 100644
index 00000000..a872d039
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/ActionBar_Button_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/ActionBar_Button_Hover.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/ActionBar_Button_Hover.png
new file mode 100644
index 00000000..bbe9aafa
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/ActionBar_Button_Hover.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/Icons/Book.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/Icons/Book.png
new file mode 100644
index 00000000..c9d4880f
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/Icons/Book.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/Icons/Flame.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/Icons/Flame.png
new file mode 100644
index 00000000..25ed5440
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/Icons/Flame.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/Icons/Profile.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/Icons/Profile.png
new file mode 100644
index 00000000..54599cc9
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/Icons/Profile.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/Icons/Settings.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/Icons/Settings.png
new file mode 100644
index 00000000..7fdb4d4a
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Buttons/Icons/Settings.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Experience Bar/XPBar_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Experience Bar/XPBar_Background.png
new file mode 100644
index 00000000..6dfe3a77
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Experience Bar/XPBar_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Experience Bar/XPBar_Border_Gradient.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Experience Bar/XPBar_Border_Gradient.png
new file mode 100644
index 00000000..a060da7b
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Experience Bar/XPBar_Border_Gradient.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Experience Bar/XPBar_Fill.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Experience Bar/XPBar_Fill.png
new file mode 100644
index 00000000..5c0e5946
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Experience Bar/XPBar_Fill.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Globes/ActionBar_Globe_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Globes/ActionBar_Globe_Background.png
new file mode 100644
index 00000000..b05ee9d6
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Globes/ActionBar_Globe_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Globes/ActionBar_Globe_Fill_Blue.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Globes/ActionBar_Globe_Fill_Blue.png
new file mode 100644
index 00000000..f1271432
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Globes/ActionBar_Globe_Fill_Blue.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Globes/ActionBar_Globe_Fill_Empty.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Globes/ActionBar_Globe_Fill_Empty.png
new file mode 100644
index 00000000..c0679326
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Globes/ActionBar_Globe_Fill_Empty.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Globes/ActionBar_Globe_Fill_Grayscale.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Globes/ActionBar_Globe_Fill_Grayscale.png
new file mode 100644
index 00000000..cbf8881b
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Globes/ActionBar_Globe_Fill_Grayscale.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Globes/ActionBar_Globe_Fill_Red.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Globes/ActionBar_Globe_Fill_Red.png
new file mode 100644
index 00000000..b0fc632c
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Globes/ActionBar_Globe_Fill_Red.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Slots/ActionBar_ExtraSlot_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Slots/ActionBar_ExtraSlot_Background.png
new file mode 100644
index 00000000..d42806f4
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Slots/ActionBar_ExtraSlot_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Slots/ActionBar_MainSlot_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Slots/ActionBar_MainSlot_Background.png
new file mode 100644
index 00000000..f6cf4c73
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/Slots/ActionBar_MainSlot_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/XP Tooltip/XPTooltip_Background_Arrow.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/XP Tooltip/XPTooltip_Background_Arrow.png
new file mode 100644
index 00000000..ab6fc309
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/XP Tooltip/XPTooltip_Background_Arrow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/XP Tooltip/XPTooltip_Background_Middle.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/XP Tooltip/XPTooltip_Background_Middle.png
new file mode 100644
index 00000000..95538de4
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/XP Tooltip/XPTooltip_Background_Middle.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/XP Tooltip/XPTooltip_Background_Side.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/XP Tooltip/XPTooltip_Background_Side.png
new file mode 100644
index 00000000..feb3608c
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Action Bar/XP Tooltip/XPTooltip_Background_Side.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Cast Bars/CastBar_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Cast Bars/CastBar_Background.png
new file mode 100644
index 00000000..3ec3a319
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Cast Bars/CastBar_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Cast Bars/CastBar_Fill_Big.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Cast Bars/CastBar_Fill_Big.png
new file mode 100644
index 00000000..b4a51379
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Cast Bars/CastBar_Fill_Big.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Cast Bars/CastBar_Fill_Small.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Cast Bars/CastBar_Fill_Small.png
new file mode 100644
index 00000000..9d6c5743
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Cast Bars/CastBar_Fill_Small.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Cast Bars/CastBar_Icon_Frame.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Cast Bars/CastBar_Icon_Frame.png
new file mode 100644
index 00000000..1103c9be
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Cast Bars/CastBar_Icon_Frame.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Border/Chat_Border_Vertical.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Border/Chat_Border_Vertical.png
new file mode 100644
index 00000000..26daa0a1
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Border/Chat_Border_Vertical.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Border/Chat_Border_Vertical_Arrow.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Border/Chat_Border_Vertical_Arrow.png
new file mode 100644
index 00000000..4c713114
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Border/Chat_Border_Vertical_Arrow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Border/Chat_Border_Vertical_Arrow_Fill.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Border/Chat_Border_Vertical_Arrow_Fill.png
new file mode 100644
index 00000000..f0acb4c4
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Border/Chat_Border_Vertical_Arrow_Fill.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Chat_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Chat_Background.png
new file mode 100644
index 00000000..735b77e1
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Chat_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Chat_Input_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Chat_Input_Background.png
new file mode 100644
index 00000000..7295c86f
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Chat_Input_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Chat_Submit.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Chat_Submit.png
new file mode 100644
index 00000000..a589dfc4
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Chat_Submit.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Bottom.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Bottom.png
new file mode 100644
index 00000000..c0266fb4
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Bottom.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Down.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Down.png
new file mode 100644
index 00000000..51d88ffe
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Down.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Lock.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Lock.png
new file mode 100644
index 00000000..74d719a0
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Lock.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Settings.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Settings.png
new file mode 100644
index 00000000..0810213f
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Settings.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Top.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Top.png
new file mode 100644
index 00000000..d4825da4
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Top.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Up.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Up.png
new file mode 100644
index 00000000..910227d4
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Icons/Up.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Tabs/Chat_Tab_Active_Arrow.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Tabs/Chat_Tab_Active_Arrow.png
new file mode 100644
index 00000000..a0baca16
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Tabs/Chat_Tab_Active_Arrow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Tabs/Chat_Tab_Active_Overlay.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Tabs/Chat_Tab_Active_Overlay.png
new file mode 100644
index 00000000..549d8d97
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Tabs/Chat_Tab_Active_Overlay.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Tabs/Chat_Tab_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Tabs/Chat_Tab_Background.png
new file mode 100644
index 00000000..a8d4b54e
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Chat/Tabs/Chat_Tab_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Minimap_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Minimap_Background.png
new file mode 100644
index 00000000..e6df89ea
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Minimap_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Minimap_Overlay.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Minimap_Overlay.png
new file mode 100644
index 00000000..68630547
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Minimap_Overlay.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Minimap_Tribal_Backgroung.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Minimap_Tribal_Backgroung.png
new file mode 100644
index 00000000..7ba76dbf
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Minimap_Tribal_Backgroung.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Minimap_Tribal_Fill.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Minimap_Tribal_Fill.png
new file mode 100644
index 00000000..44852b98
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Minimap_Tribal_Fill.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Boss.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Boss.png
new file mode 100644
index 00000000..5e362db4
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Boss.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Boss_Dead.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Boss_Dead.png
new file mode 100644
index 00000000..3464fc9e
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Boss_Dead.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Unit_Green.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Unit_Green.png
new file mode 100644
index 00000000..ba921b7d
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Unit_Green.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Unit_Orange.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Unit_Orange.png
new file mode 100644
index 00000000..578f761a
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Unit_Orange.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Unit_Purple.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Unit_Purple.png
new file mode 100644
index 00000000..ee0cb1cf
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Unit_Purple.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Unit_Red.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Unit_Red.png
new file mode 100644
index 00000000..25304a01
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Pins/Minimap_Pin_Unit_Red.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Zoom Buttons/Minimap_Zoom_Minus.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Zoom Buttons/Minimap_Zoom_Minus.png
new file mode 100644
index 00000000..0e0646e3
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Zoom Buttons/Minimap_Zoom_Minus.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Zoom Buttons/Minimap_Zoom_Plus.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Zoom Buttons/Minimap_Zoom_Plus.png
new file mode 100644
index 00000000..6e97d1e1
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Minimap/Zoom Buttons/Minimap_Zoom_Plus.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Notifications/Notification_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Notifications/Notification_Background.png
new file mode 100644
index 00000000..7b8719cc
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Notifications/Notification_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Notifications/Notification_Background2.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Notifications/Notification_Background2.png
new file mode 100644
index 00000000..c024fe86
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Notifications/Notification_Background2.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/Checkbox/QuestTracker_Checkbox_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/Checkbox/QuestTracker_Checkbox_Background.png
new file mode 100644
index 00000000..e45d05a5
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/Checkbox/QuestTracker_Checkbox_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/Checkbox/QuestTracker_Checkbox_Checkmark_Complete.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/Checkbox/QuestTracker_Checkbox_Checkmark_Complete.png
new file mode 100644
index 00000000..25d34007
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/Checkbox/QuestTracker_Checkbox_Checkmark_Complete.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/Checkbox/QuestTracker_Checkbox_Checkmark_Failed.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/Checkbox/QuestTracker_Checkbox_Checkmark_Failed.png
new file mode 100644
index 00000000..a9f1f2c1
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/Checkbox/QuestTracker_Checkbox_Checkmark_Failed.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/QuestTracker_Border.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/QuestTracker_Border.png
new file mode 100644
index 00000000..511bf1f4
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/QuestTracker_Border.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/QuestTracker_Button_Arrow.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/QuestTracker_Button_Arrow.png
new file mode 100644
index 00000000..89e4a99c
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/QuestTracker_Button_Arrow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/QuestTracker_Button_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/QuestTracker_Button_Background.png
new file mode 100644
index 00000000..06b261ec
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/QuestTracker_Button_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/QuestTracker_Gradient.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/QuestTracker_Gradient.png
new file mode 100644
index 00000000..7ace0c59
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Quest Tracker/QuestTracker_Gradient.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Tooltip/Tooltip_Anchor.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Tooltip/Tooltip_Anchor.png
new file mode 100644
index 00000000..c06516d5
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Tooltip/Tooltip_Anchor.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Tooltip/Tooltip_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Tooltip/Tooltip_Background.png
new file mode 100644
index 00000000..13b4b413
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Tooltip/Tooltip_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Avatar/UnitFrame_Main_Avatar_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Avatar/UnitFrame_Main_Avatar_Background.png
new file mode 100644
index 00000000..b390660d
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Avatar/UnitFrame_Main_Avatar_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Avatar/UnitFrame_Main_Avatar_Mask.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Avatar/UnitFrame_Main_Avatar_Mask.png
new file mode 100644
index 00000000..b7fd060f
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Avatar/UnitFrame_Main_Avatar_Mask.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Avatar/UnitFrame_Main_Avatar_Overlay.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Avatar/UnitFrame_Main_Avatar_Overlay.png
new file mode 100644
index 00000000..963c103c
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Avatar/UnitFrame_Main_Avatar_Overlay.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Avatar/UnitFrame_Main_Avatar_TR.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Avatar/UnitFrame_Main_Avatar_TR.png
new file mode 100644
index 00000000..fc22aa79
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Avatar/UnitFrame_Main_Avatar_TR.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Avatar/UnitFrame_Main_Avatar_TR_Fill.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Avatar/UnitFrame_Main_Avatar_TR_Fill.png
new file mode 100644
index 00000000..01a9b151
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Avatar/UnitFrame_Main_Avatar_TR_Fill.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Bars/UnitFrame_Main_Bar_Primary_Fill.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Bars/UnitFrame_Main_Bar_Primary_Fill.png
new file mode 100644
index 00000000..b8eca9dd
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Bars/UnitFrame_Main_Bar_Primary_Fill.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Bars/UnitFrame_Main_Bar_Secondary_Fill.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Bars/UnitFrame_Main_Bar_Secondary_Fill.png
new file mode 100644
index 00000000..0640e47d
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Bars/UnitFrame_Main_Bar_Secondary_Fill.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Combo Points/UnitFrame_Main_CP_Fill.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Combo Points/UnitFrame_Main_CP_Fill.png
new file mode 100644
index 00000000..b6dab77d
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Combo Points/UnitFrame_Main_CP_Fill.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Combo Points/UnitFrame_Main_CP_Frame.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Combo Points/UnitFrame_Main_CP_Frame.png
new file mode 100644
index 00000000..688312ab
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Combo Points/UnitFrame_Main_CP_Frame.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Level/UnitFrame_Main_Level_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Level/UnitFrame_Main_Level_Background.png
new file mode 100644
index 00000000..2ae431c9
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Level/UnitFrame_Main_Level_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Level/UnitFrame_Main_Level_Skull.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Level/UnitFrame_Main_Level_Skull.png
new file mode 100644
index 00000000..d09a751b
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Level/UnitFrame_Main_Level_Skull.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Role/Icons/UnitFrame_Main_Role_DPS.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Role/Icons/UnitFrame_Main_Role_DPS.png
new file mode 100644
index 00000000..5b4403a7
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Role/Icons/UnitFrame_Main_Role_DPS.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Role/Icons/UnitFrame_Main_Role_HPS.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Role/Icons/UnitFrame_Main_Role_HPS.png
new file mode 100644
index 00000000..121c3995
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Role/Icons/UnitFrame_Main_Role_HPS.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Role/Icons/UnitFrame_Main_Role_Tank.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Role/Icons/UnitFrame_Main_Role_Tank.png
new file mode 100644
index 00000000..48586a7d
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Role/Icons/UnitFrame_Main_Role_Tank.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Role/UnitFrame_Main_Role_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Role/UnitFrame_Main_Role_Background.png
new file mode 100644
index 00000000..bdabb29b
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/Role/UnitFrame_Main_Role_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/UnitFrame_Main_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/UnitFrame_Main_Background.png
new file mode 100644
index 00000000..f3094e33
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/UnitFrame_Main_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/UnitFrame_Main_Elite.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/UnitFrame_Main_Elite.png
new file mode 100644
index 00000000..244ed367
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Main/UnitFrame_Main_Elite.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Party/UnitFrame_Party_Avatar_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Party/UnitFrame_Party_Avatar_Background.png
new file mode 100644
index 00000000..46d5a34b
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Party/UnitFrame_Party_Avatar_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Party/UnitFrame_Party_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Party/UnitFrame_Party_Background.png
new file mode 100644
index 00000000..1d55fd4c
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Party/UnitFrame_Party_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Party/UnitFrame_Party_Level_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Party/UnitFrame_Party_Level_Background.png
new file mode 100644
index 00000000..4285ed72
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Party/UnitFrame_Party_Level_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Party/UnitFrame_Party_Role_Background.png b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Party/UnitFrame_Party_Role_Background.png
new file mode 100644
index 00000000..245e62d3
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/HUD/Unit Frames/Party/UnitFrame_Party_Role_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Loading Bar/LoadingBar_Background.png b/desktop/assets/data/skins/finisterra/Textures/Loading Bar/LoadingBar_Background.png
new file mode 100644
index 00000000..16cabcfc
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Loading Bar/LoadingBar_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Loading Bar/LoadingBar_Fill.png b/desktop/assets/data/skins/finisterra/Textures/Loading Bar/LoadingBar_Fill.png
new file mode 100644
index 00000000..74d391b9
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Loading Bar/LoadingBar_Fill.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/BottomBar_Background.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/BottomBar_Background.png
new file mode 100644
index 00000000..9ae8b5c8
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/BottomBar_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/BottomBar_Border.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/BottomBar_Border.png
new file mode 100644
index 00000000..10e17f9e
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/BottomBar_Border.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/BottomBar_Gradient.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/BottomBar_Gradient.png
new file mode 100644
index 00000000..a1931563
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/BottomBar_Gradient.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/BottomBar_Gradient_Background.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/BottomBar_Gradient_Background.png
new file mode 100644
index 00000000..0aba7c19
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/BottomBar_Gradient_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/Tribals/BottomBar_CenterTribal_Background.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/Tribals/BottomBar_CenterTribal_Background.png
new file mode 100644
index 00000000..408091a8
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/Tribals/BottomBar_CenterTribal_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/Tribals/BottomBar_CenterTribal_Fill.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/Tribals/BottomBar_CenterTribal_Fill.png
new file mode 100644
index 00000000..19b9f699
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/Tribals/BottomBar_CenterTribal_Fill.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/Tribals/BottomBar_SideTribal_Background.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/Tribals/BottomBar_SideTribal_Background.png
new file mode 100644
index 00000000..57e29172
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/Tribals/BottomBar_SideTribal_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/Tribals/BottomBar_SideTribal_Fill.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/Tribals/BottomBar_SideTribal_Fill.png
new file mode 100644
index 00000000..daa2578a
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Bottom Bar/Tribals/BottomBar_SideTribal_Fill.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Create/CharacterCreate_Section_Background.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Create/CharacterCreate_Section_Background.png
new file mode 100644
index 00000000..ee6c740d
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Create/CharacterCreate_Section_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Create/Factions/CharacterCreate_Faction_Blue.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Create/Factions/CharacterCreate_Faction_Blue.png
new file mode 100644
index 00000000..ab3db064
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Create/Factions/CharacterCreate_Faction_Blue.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Create/Factions/CharacterCreate_Faction_Red.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Create/Factions/CharacterCreate_Faction_Red.png
new file mode 100644
index 00000000..61e779c5
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Create/Factions/CharacterCreate_Faction_Red.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Create/Genders/CharacterCreate_Gender_Female.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Create/Genders/CharacterCreate_Gender_Female.png
new file mode 100644
index 00000000..830cf43c
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Create/Genders/CharacterCreate_Gender_Female.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Create/Genders/CharacterCreate_Gender_Male.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Create/Genders/CharacterCreate_Gender_Male.png
new file mode 100644
index 00000000..2f26d75d
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Create/Genders/CharacterCreate_Gender_Male.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/Arrow Button/CS3D_Arrow_Background.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/Arrow Button/CS3D_Arrow_Background.png
new file mode 100644
index 00000000..42ac871d
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/Arrow Button/CS3D_Arrow_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/Arrow Button/CS3D_Arrow_Foreground.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/Arrow Button/CS3D_Arrow_Foreground.png
new file mode 100644
index 00000000..e7ac437e
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/Arrow Button/CS3D_Arrow_Foreground.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/Arrow Button/CS3D_Arrow_Hover.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/Arrow Button/CS3D_Arrow_Hover.png
new file mode 100644
index 00000000..e7192f6d
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/Arrow Button/CS3D_Arrow_Hover.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/Arrow Button/CS3D_Arrow_Overlay.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/Arrow Button/CS3D_Arrow_Overlay.png
new file mode 100644
index 00000000..b0222cdc
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/Arrow Button/CS3D_Arrow_Overlay.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/CS3D_CharacterInfo_Glow.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/CS3D_CharacterInfo_Glow.png
new file mode 100644
index 00000000..08df2d20
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/CS3D_CharacterInfo_Glow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/CS3D_CharacterInfo_Tribal_Bottom.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/CS3D_CharacterInfo_Tribal_Bottom.png
new file mode 100644
index 00000000..368c1b45
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/CS3D_CharacterInfo_Tribal_Bottom.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/CS3D_CharacterInfo_Tribal_Top.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/CS3D_CharacterInfo_Tribal_Top.png
new file mode 100644
index 00000000..278e44ca
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/3D/CS3D_CharacterInfo_Tribal_Top.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Character/CSL_Character_Avatar_Frame.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Character/CSL_Character_Avatar_Frame.png
new file mode 100644
index 00000000..64bd820c
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Character/CSL_Character_Avatar_Frame.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Character/CSL_Character_CreateBtn_Icon.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Character/CSL_Character_CreateBtn_Icon.png
new file mode 100644
index 00000000..d63fcbe4
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Character/CSL_Character_CreateBtn_Icon.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Character/CSL_Character_DeleteBtn.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Character/CSL_Character_DeleteBtn.png
new file mode 100644
index 00000000..66d69257
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Character/CSL_Character_DeleteBtn.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Character/CSL_Character_Gradient.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Character/CSL_Character_Gradient.png
new file mode 100644
index 00000000..306510c2
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Character/CSL_Character_Gradient.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Character/CSL_Character_Selected.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Character/CSL_Character_Selected.png
new file mode 100644
index 00000000..ecb89991
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Character/CSL_Character_Selected.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Header/CSL_Header_Glow.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Header/CSL_Header_Glow.png
new file mode 100644
index 00000000..6a0f46a5
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Header/CSL_Header_Glow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Header/CSL_Header_Tribal.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Header/CSL_Header_Tribal.png
new file mode 100644
index 00000000..2d2b3951
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/List Select/Header/CSL_Header_Tribal.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/Message Box/CharacterSelect_MessageBox.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/Message Box/CharacterSelect_MessageBox.png
new file mode 100644
index 00000000..4a5f2b5e
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/Message Box/CharacterSelect_MessageBox.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/Message Box/CharacterSelect_MessageBox_Button.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/Message Box/CharacterSelect_MessageBox_Button.png
new file mode 100644
index 00000000..d555e67d
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/Message Box/CharacterSelect_MessageBox_Button.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/Message Box/CharacterSelect_MessageBox_Icon_Important.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/Message Box/CharacterSelect_MessageBox_Icon_Important.png
new file mode 100644
index 00000000..3f2d733c
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Character Select/Message Box/CharacterSelect_MessageBox_Icon_Important.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Hero Frame/HeroSelect_Hero_Background.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Hero Frame/HeroSelect_Hero_Background.png
new file mode 100644
index 00000000..12bf5076
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Hero Frame/HeroSelect_Hero_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Hero Frame/HeroSelect_Hero_Frame.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Hero Frame/HeroSelect_Hero_Frame.png
new file mode 100644
index 00000000..0fb89526
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Hero Frame/HeroSelect_Hero_Frame.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Hero Frame/HeroSelect_Hero_Selected.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Hero Frame/HeroSelect_Hero_Selected.png
new file mode 100644
index 00000000..c84428bd
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Hero Frame/HeroSelect_Hero_Selected.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Role Icons/HeroSelect_Role_Defense.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Role Icons/HeroSelect_Role_Defense.png
new file mode 100644
index 00000000..edda64b8
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Role Icons/HeroSelect_Role_Defense.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Role Icons/HeroSelect_Role_Offsense.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Role Icons/HeroSelect_Role_Offsense.png
new file mode 100644
index 00000000..2a07dffd
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Role Icons/HeroSelect_Role_Offsense.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Role Icons/HeroSelect_Role_Support.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Role Icons/HeroSelect_Role_Support.png
new file mode 100644
index 00000000..871b7bd2
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Role Icons/HeroSelect_Role_Support.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Role Icons/HeroSelect_Role_Tank.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Role Icons/HeroSelect_Role_Tank.png
new file mode 100644
index 00000000..3d657096
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Hero Select/Role Icons/HeroSelect_Role_Tank.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Login_Toggle_Gradient.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Login_Toggle_Gradient.png
new file mode 100644
index 00000000..61c1f49a
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Login_Toggle_Gradient.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Miscellaneous/Lobby_Border.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Miscellaneous/Lobby_Border.png
new file mode 100644
index 00000000..db182ea2
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Miscellaneous/Lobby_Border.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Miscellaneous/Lobby_Border_Arrow.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Miscellaneous/Lobby_Border_Arrow.png
new file mode 100644
index 00000000..dec5cc48
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Miscellaneous/Lobby_Border_Arrow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Miscellaneous/Lobby_Gradient.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Miscellaneous/Lobby_Gradient.png
new file mode 100644
index 00000000..92f0b1bc
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Miscellaneous/Lobby_Gradient.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Notifications/Lobby_Notification_Background.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Notifications/Lobby_Notification_Background.png
new file mode 100644
index 00000000..84da97bc
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Notifications/Lobby_Notification_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Notifications/Lobby_Notification_Border_Bottom.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Notifications/Lobby_Notification_Border_Bottom.png
new file mode 100644
index 00000000..bd7a026e
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Notifications/Lobby_Notification_Border_Bottom.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Notifications/Lobby_Notification_Border_Middle.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Notifications/Lobby_Notification_Border_Middle.png
new file mode 100644
index 00000000..1f289988
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Notifications/Lobby_Notification_Border_Middle.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Notifications/Lobby_Notification_Border_Top.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Notifications/Lobby_Notification_Border_Top.png
new file mode 100644
index 00000000..a9b9aff7
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Notifications/Lobby_Notification_Border_Top.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Notifications/Lobby_Notification_Gradient.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Notifications/Lobby_Notification_Gradient.png
new file mode 100644
index 00000000..1b57088e
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Notifications/Lobby_Notification_Gradient.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Switch Select/SwitchSelect_Background.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Switch Select/SwitchSelect_Background.png
new file mode 100644
index 00000000..19b26c3d
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Switch Select/SwitchSelect_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Switch Select/SwitchSelect_Background_Arrow.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Switch Select/SwitchSelect_Background_Arrow.png
new file mode 100644
index 00000000..f08a746e
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Switch Select/SwitchSelect_Background_Arrow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Switch Select/SwitchSelect_Button_Arrow.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Switch Select/SwitchSelect_Button_Arrow.png
new file mode 100644
index 00000000..e65641d5
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Switch Select/SwitchSelect_Button_Arrow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Switch Select/SwitchSelect_Button_Arrow_Hover.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Switch Select/SwitchSelect_Button_Arrow_Hover.png
new file mode 100644
index 00000000..277f7da8
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Switch Select/SwitchSelect_Button_Arrow_Hover.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Tooltip/Tooltip_Lobby_Anchor_Bottom_BG.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Tooltip/Tooltip_Lobby_Anchor_Bottom_BG.png
new file mode 100644
index 00000000..a12a8c27
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Tooltip/Tooltip_Lobby_Anchor_Bottom_BG.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Tooltip/Tooltip_Lobby_Anchor_Bottom_FG.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Tooltip/Tooltip_Lobby_Anchor_Bottom_FG.png
new file mode 100644
index 00000000..f3d683f1
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Tooltip/Tooltip_Lobby_Anchor_Bottom_FG.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Tooltip/Tooltip_Lobby_Anchor_Left_BG.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Tooltip/Tooltip_Lobby_Anchor_Left_BG.png
new file mode 100644
index 00000000..27891dfb
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Tooltip/Tooltip_Lobby_Anchor_Left_BG.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Tooltip/Tooltip_Lobby_Anchor_Left_FG.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Tooltip/Tooltip_Lobby_Anchor_Left_FG.png
new file mode 100644
index 00000000..6d8bbfd8
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Tooltip/Tooltip_Lobby_Anchor_Left_FG.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Lobby/Tooltip/Tooltip_Lobby_Background.png b/desktop/assets/data/skins/finisterra/Textures/Lobby/Tooltip/Tooltip_Lobby_Background.png
new file mode 100644
index 00000000..7bc015b2
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Lobby/Tooltip/Tooltip_Lobby_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Borders/General_Border_Horizontal.png b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Borders/General_Border_Horizontal.png
new file mode 100644
index 00000000..f3efa2a0
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Borders/General_Border_Horizontal.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Borders/General_Border_Horizontal_Arrow.png b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Borders/General_Border_Horizontal_Arrow.png
new file mode 100644
index 00000000..ca9161ac
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Borders/General_Border_Horizontal_Arrow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Borders/General_Border_Horizontal_Arrow_Fill.png b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Borders/General_Border_Horizontal_Arrow_Fill.png
new file mode 100644
index 00000000..4ed4cbd0
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Borders/General_Border_Horizontal_Arrow_Fill.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Currencies/Currency_Bronze_Small.png b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Currencies/Currency_Bronze_Small.png
new file mode 100644
index 00000000..9eb24c7d
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Currencies/Currency_Bronze_Small.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Currencies/Currency_Gold_Small.png b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Currencies/Currency_Gold_Small.png
new file mode 100644
index 00000000..db80ec33
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Currencies/Currency_Gold_Small.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Currencies/Currency_Silver_Small.png b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Currencies/Currency_Silver_Small.png
new file mode 100644
index 00000000..ec0b33a0
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Currencies/Currency_Silver_Small.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Separators/Seprator_Horizontal.png b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Separators/Seprator_Horizontal.png
new file mode 100644
index 00000000..cc6c3a40
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Separators/Seprator_Horizontal.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Separators/Seprator_Vertical.png b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Separators/Seprator_Vertical.png
new file mode 100644
index 00000000..e3eddb95
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Separators/Seprator_Vertical.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Tribals/GameMenu_Tribals.png b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Tribals/GameMenu_Tribals.png
new file mode 100644
index 00000000..e1b29516
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Tribals/GameMenu_Tribals.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Tribals/General_Tribal.png b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Tribals/General_Tribal.png
new file mode 100644
index 00000000..98b419c4
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Tribals/General_Tribal.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Tribals/General_Tribal_Glow.png b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Tribals/General_Tribal_Glow.png
new file mode 100644
index 00000000..f6ef7f1f
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/Tribals/General_Tribal_Glow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/White.png b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/White.png
new file mode 100644
index 00000000..c3773837
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Miscellaneous/White.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Modal Box/ModalBox_Background.png b/desktop/assets/data/skins/finisterra/Textures/Modal Box/ModalBox_Background.png
new file mode 100644
index 00000000..32764d60
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Modal Box/ModalBox_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Arrows_128.png b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Arrows_128.png
new file mode 100644
index 00000000..72feea41
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Arrows_128.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Book_128.png b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Book_128.png
new file mode 100644
index 00000000..72516a46
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Book_128.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Deathkiss_128.png b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Deathkiss_128.png
new file mode 100644
index 00000000..c53f4858
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Deathkiss_128.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Fireball_128.png b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Fireball_128.png
new file mode 100644
index 00000000..1222233d
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Fireball_128.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Leafs_128.png b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Leafs_128.png
new file mode 100644
index 00000000..9cf692a9
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Leafs_128.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Pyroblast_128.png b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Pyroblast_128.png
new file mode 100644
index 00000000..bdb2b27d
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Pyroblast_128.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Shield_128.png b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Shield_128.png
new file mode 100644
index 00000000..cf8b70c2
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Shield_128.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Sunshiny_128.png b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Sunshiny_128.png
new file mode 100644
index 00000000..faff35ec
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Sunshiny_128.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Sword_128.png b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Sword_128.png
new file mode 100644
index 00000000..18eacc8e
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Spell & Item Icons/Icon_Sword_128.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Text Boxes/Icons/TextBox_Icon_Circle.png b/desktop/assets/data/skins/finisterra/Textures/Text Boxes/Icons/TextBox_Icon_Circle.png
new file mode 100644
index 00000000..d9a7cd68
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Text Boxes/Icons/TextBox_Icon_Circle.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Text Boxes/Icons/TextBox_Icon_Star.png b/desktop/assets/data/skins/finisterra/Textures/Text Boxes/Icons/TextBox_Icon_Star.png
new file mode 100644
index 00000000..9aa1506d
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Text Boxes/Icons/TextBox_Icon_Star.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Text Boxes/Icons/TextBox_Icon_Triangle.png b/desktop/assets/data/skins/finisterra/Textures/Text Boxes/Icons/TextBox_Icon_Triangle.png
new file mode 100644
index 00000000..10c330e9
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Text Boxes/Icons/TextBox_Icon_Triangle.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Text Boxes/TextBox_Background.png b/desktop/assets/data/skins/finisterra/Textures/Text Boxes/TextBox_Background.png
new file mode 100644
index 00000000..3dc91238
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Text Boxes/TextBox_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Character_Example.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Character_Example.png
new file mode 100644
index 00000000..5b2def37
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Character_Example.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Equip_Slot_Background.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Equip_Slot_Background.png
new file mode 100644
index 00000000..1da41063
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Equip_Slot_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Back.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Back.png
new file mode 100644
index 00000000..5e11d107
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Back.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Belt.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Belt.png
new file mode 100644
index 00000000..83505f24
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Belt.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Boots.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Boots.png
new file mode 100644
index 00000000..50664ff7
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Boots.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Bracers.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Bracers.png
new file mode 100644
index 00000000..8dbd1b89
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Bracers.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Chest.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Chest.png
new file mode 100644
index 00000000..7e2a20d6
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Chest.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Earrings.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Earrings.png
new file mode 100644
index 00000000..8941c5d9
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Earrings.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Gloves.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Gloves.png
new file mode 100644
index 00000000..842cebdb
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Gloves.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Helmet.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Helmet.png
new file mode 100644
index 00000000..9fb66c9b
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Helmet.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Legs.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Legs.png
new file mode 100644
index 00000000..97e6dcd7
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Legs.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/MainWeapon.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/MainWeapon.png
new file mode 100644
index 00000000..e2f34702
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/MainWeapon.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Necklace.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Necklace.png
new file mode 100644
index 00000000..398520a2
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Necklace.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/OffWeapon.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/OffWeapon.png
new file mode 100644
index 00000000..50f7de25
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/OffWeapon.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Ring.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Ring.png
new file mode 100644
index 00000000..558af312
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Ring.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Shoulders.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Shoulders.png
new file mode 100644
index 00000000..10d96702
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Equip Slot/Icons/Shoulders.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Reputations/Character_Reputation_Bar_Background.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Reputations/Character_Reputation_Bar_Background.png
new file mode 100644
index 00000000..54ebf5ce
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Reputations/Character_Reputation_Bar_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Reputations/Character_Reputation_Bar_Fill.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Reputations/Character_Reputation_Bar_Fill.png
new file mode 100644
index 00000000..b5ccee1e
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Reputations/Character_Reputation_Bar_Fill.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Rotation Controls/Character_RC_Left.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Rotation Controls/Character_RC_Left.png
new file mode 100644
index 00000000..93c4cd22
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Rotation Controls/Character_RC_Left.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Rotation Controls/Character_RC_Middle.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Rotation Controls/Character_RC_Middle.png
new file mode 100644
index 00000000..afd7df66
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Rotation Controls/Character_RC_Middle.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Titles/Character_Titles_Checkbox_Background.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Titles/Character_Titles_Checkbox_Background.png
new file mode 100644
index 00000000..9e40ce7a
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Titles/Character_Titles_Checkbox_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Titles/Character_Titles_Checkbox_Checkmark.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Titles/Character_Titles_Checkbox_Checkmark.png
new file mode 100644
index 00000000..1618ca4a
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Titles/Character_Titles_Checkbox_Checkmark.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Titles/Character_Titles_Glow.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Titles/Character_Titles_Glow.png
new file mode 100644
index 00000000..c09ab2fc
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Character/Titles/Character_Titles_Glow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Inventory/Inventory_Slot_Background.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Inventory/Inventory_Slot_Background.png
new file mode 100644
index 00000000..e8905318
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Inventory/Inventory_Slot_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Inventory/Inventory_Slot_Glow.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Inventory/Inventory_Slot_Glow.png
new file mode 100644
index 00000000..4e559c4b
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Inventory/Inventory_Slot_Glow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Inventory/Inventory_Slot_Overlay.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Inventory/Inventory_Slot_Overlay.png
new file mode 100644
index 00000000..298aeeb8
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Inventory/Inventory_Slot_Overlay.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Inventory/Inventory_Slot_QualityBorder.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Inventory/Inventory_Slot_QualityBorder.png
new file mode 100644
index 00000000..e289a130
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Inventory/Inventory_Slot_QualityBorder.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Spellbook/Spellbook_Row_Background.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Spellbook/Spellbook_Row_Background.png
new file mode 100644
index 00000000..0e0f0498
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Spellbook/Spellbook_Row_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Arrows/Down_End.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Arrows/Down_End.png
new file mode 100644
index 00000000..97ba5e98
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Arrows/Down_End.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Arrows/Down_Start,png.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Arrows/Down_Start,png.png
new file mode 100644
index 00000000..de47fd67
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Arrows/Down_Start,png.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Arrows/Down_To_Right.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Arrows/Down_To_Right.png
new file mode 100644
index 00000000..1c052847
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Arrows/Down_To_Right.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Arrows/Right_End.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Arrows/Right_End.png
new file mode 100644
index 00000000..75d694ee
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Arrows/Right_End.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Arrows/Right_Start.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Arrows/Right_Start.png
new file mode 100644
index 00000000..e3de2813
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Arrows/Right_Start.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Slots/Talent_Slot_Background.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Slots/Talent_Slot_Background.png
new file mode 100644
index 00000000..f0bb01c7
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Slots/Talent_Slot_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Slots/Talent_Slot_GoldBorder.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Slots/Talent_Slot_GoldBorder.png
new file mode 100644
index 00000000..8c9ca505
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Slots/Talent_Slot_GoldBorder.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Slots/Talent_Slot_GoldGlow.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Slots/Talent_Slot_GoldGlow.png
new file mode 100644
index 00000000..dd06e316
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Slots/Talent_Slot_GoldGlow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Slots/Talent_Slot_Points_Background.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Slots/Talent_Slot_Points_Background.png
new file mode 100644
index 00000000..3208ed17
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Slots/Talent_Slot_Points_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Tab/Icons/Flame.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Tab/Icons/Flame.png
new file mode 100644
index 00000000..f13fc453
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Tab/Icons/Flame.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Tab/Icons/Shield.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Tab/Icons/Shield.png
new file mode 100644
index 00000000..296cd83e
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Tab/Icons/Shield.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Tab/Icons/Sword.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Tab/Icons/Sword.png
new file mode 100644
index 00000000..6735cee2
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Tab/Icons/Sword.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Tab/Talents_Tab_Active_Arrow.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Tab/Talents_Tab_Active_Arrow.png
new file mode 100644
index 00000000..46e50c97
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Tab/Talents_Tab_Active_Arrow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Tab/Talents_Tab_Background.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Tab/Talents_Tab_Background.png
new file mode 100644
index 00000000..bc13a37c
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Talents/Tab/Talents_Tab_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Vendor/Vendor_Frame.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Vendor/Vendor_Frame.png
new file mode 100644
index 00000000..4ab49edb
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Vendor/Vendor_Frame.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Background.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Background.png
new file mode 100644
index 00000000..2c14e3b8
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Border_Center.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Border_Center.png
new file mode 100644
index 00000000..05f7cb82
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Border_Center.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Border_Side.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Border_Side.png
new file mode 100644
index 00000000..518adad0
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Border_Side.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Gradient.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Gradient.png
new file mode 100644
index 00000000..6a63c397
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Gradient.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Tribals_Background.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Tribals_Background.png
new file mode 100644
index 00000000..5afd438c
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Tribals_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Tribals_Fill.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Tribals_Fill.png
new file mode 100644
index 00000000..f0cc74d1
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Tribals_Fill.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Tribals_Small_Background.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Tribals_Small_Background.png
new file mode 100644
index 00000000..9ca89737
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Tribals_Small_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Tribals_Small_Fill.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Tribals_Small_Fill.png
new file mode 100644
index 00000000..929f34e9
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Header/Window_Header_Tribals_Small_Fill.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Tabs/Bar/Window_Tabs_Bar_Background_Middle.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Tabs/Bar/Window_Tabs_Bar_Background_Middle.png
new file mode 100644
index 00000000..b4cd7460
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Tabs/Bar/Window_Tabs_Bar_Background_Middle.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Tabs/Bar/Window_Tabs_Bar_Background_Side.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Tabs/Bar/Window_Tabs_Bar_Background_Side.png
new file mode 100644
index 00000000..3d3e8218
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Tabs/Bar/Window_Tabs_Bar_Background_Side.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Tabs/Window_Tabs_Active_Arrow.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Tabs/Window_Tabs_Active_Arrow.png
new file mode 100644
index 00000000..f30cbc40
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Tabs/Window_Tabs_Active_Arrow.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Tabs/Window_Tabs_Active_Border.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Tabs/Window_Tabs_Active_Border.png
new file mode 100644
index 00000000..ea41a6a7
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Tabs/Window_Tabs_Active_Border.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Tabs/Window_Tabs_Active_Gradient.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Tabs/Window_Tabs_Active_Gradient.png
new file mode 100644
index 00000000..26ebccff
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Tabs/Window_Tabs_Active_Gradient.png differ
diff --git a/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Window_Background.png b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Window_Background.png
new file mode 100644
index 00000000..7f551039
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/Textures/Windows/Window/Window_Background.png differ
diff --git a/desktop/assets/data/skins/finisterra/ao-skin.atlas b/desktop/assets/data/skins/finisterra/ao-skin.atlas
new file mode 100644
index 00000000..5ea9b61f
--- /dev/null
+++ b/desktop/assets/data/skins/finisterra/ao-skin.atlas
@@ -0,0 +1,787 @@
+
+ao-skin.png
+size: 2048,2048
+format: RGBA8888
+filter: Linear,Linear
+repeat: none
+Button_S1_Icon_Back
+ rotate: false
+ xy: 656, 1749
+ size: 39, 36
+ orig: 39, 36
+ offset: 0, 0
+ index: -1
+Button_S1_Icon_Close
+ rotate: false
+ xy: 581, 1512
+ size: 36, 36
+ orig: 36, 36
+ offset: 0, 0
+ index: -1
+Button_S1_Icon_Close_Small
+ rotate: false
+ xy: 656, 1715
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+Button_S1_Icon_Create
+ rotate: false
+ xy: 470, 649
+ size: 34, 35
+ orig: 34, 35
+ offset: 0, 0
+ index: -1
+Button_S1_Icon_Delete
+ rotate: false
+ xy: 470, 724
+ size: 36, 36
+ orig: 36, 36
+ offset: 0, 0
+ index: -1
+Button_S1_Icon_Menu
+ rotate: false
+ xy: 1591, 1932
+ size: 30, 33
+ orig: 30, 33
+ offset: 0, 0
+ index: -1
+Cursor_Normal
+ rotate: false
+ xy: 532, 1180
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+XPBar_Fill
+ rotate: false
+ xy: 1, 1887
+ size: 512, 6
+ orig: 512, 6
+ offset: 0, 0
+ index: -1
+ActionBar_MainSlot_Background
+ rotate: false
+ xy: 1491, 1932
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_Avatar_Background
+ rotate: false
+ xy: 382, 1270
+ size: 170, 170
+ orig: 170, 170
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_Avatar_Mask
+ rotate: false
+ xy: 404, 860
+ size: 123, 128
+ orig: 123, 128
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_Avatar_Overlay
+ rotate: false
+ xy: 382, 1120
+ size: 148, 148
+ orig: 148, 148
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_Avatar_TR
+ rotate: false
+ xy: 274, 1179
+ size: 40, 16
+ orig: 40, 16
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_Avatar_TR_Fill
+ rotate: false
+ xy: 1060, 1914
+ size: 24, 12
+ orig: 24, 12
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_Bar_Primary_Fill
+ rotate: false
+ xy: 738, 1989
+ size: 512, 58
+ orig: 512, 58
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_Bar_Secondary_Fill
+ rotate: false
+ xy: 1252, 2001
+ size: 478, 46
+ orig: 478, 46
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_CP_Fill
+ rotate: false
+ xy: 1220, 1961
+ size: 27, 26
+ orig: 27, 26
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_CP_Frame
+ rotate: false
+ xy: 470, 686
+ size: 36, 36
+ orig: 36, 36
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_Level_Background
+ rotate: false
+ xy: 1481, 1814
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_Level_Skull
+ rotate: false
+ xy: 697, 1749
+ size: 28, 36
+ orig: 28, 36
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_Role_DPS
+ rotate: false
+ xy: 262, 1
+ size: 27, 39
+ orig: 27, 39
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_Role_HPS
+ rotate: false
+ xy: 1655, 1963
+ size: 25, 36
+ orig: 25, 36
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_Role_Tank
+ rotate: false
+ xy: 1625, 1963
+ size: 28, 36
+ orig: 28, 36
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_Role_Background
+ rotate: false
+ xy: 980, 1852
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_Background
+ rotate: false
+ xy: 1, 1895
+ size: 735, 152
+ orig: 735, 152
+ offset: 0, 0
+ index: -1
+UnitFrame_Main_Elite
+ rotate: false
+ xy: 1732, 1803
+ size: 248, 244
+ orig: 248, 244
+ offset: 0, 0
+ index: -1
+Icon_Arrows_128
+ rotate: false
+ xy: 621, 1585
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+Icon_Book_128
+ rotate: false
+ xy: 621, 1455
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+Icon_Deathkiss_128
+ rotate: false
+ xy: 1091, 1829
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+Icon_Fireball_128
+ rotate: false
+ xy: 1221, 1813
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+Icon_Leafs_128
+ rotate: false
+ xy: 1351, 1813
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+Icon_Pyroblast_128
+ rotate: false
+ xy: 274, 990
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+Icon_Shield_128
+ rotate: false
+ xy: 274, 860
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+Icon_Sunshiny_128
+ rotate: false
+ xy: 274, 730
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+Icon_Sword_128
+ rotate: false
+ xy: 274, 600
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+Inventory_Slot_Background
+ rotate: false
+ xy: 1481, 1866
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+Inventory_Slot_Glow
+ rotate: false
+ xy: 404, 990
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+Inventory_Slot_Overlay
+ rotate: false
+ xy: 404, 762
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+Inventory_Slot_QualityBorder
+ rotate: false
+ xy: 1591, 1967
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+Character_Reputation_Bar_Background
+ rotate: false
+ xy: 438, 596
+ size: 32, 32
+ split: 4, 4, 4, 4
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+Character_Reputation_Bar_Fill
+ rotate: false
+ xy: 532, 1146
+ size: 32, 32
+ split: 1, 1, 1, 1
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+CheckBox_on
+ rotate: false
+ xy: 274, 497
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+Checkbox_off
+ rotate: false
+ xy: 1982, 1917
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+Checkbox_off_hover
+ rotate: false
+ xy: 404, 630
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+Button_S1_Background
+ rotate: false
+ xy: 404, 630
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+Checkbox_on_hover
+ rotate: false
+ xy: 404, 696
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+Inventory-Icon
+ rotate: false
+ xy: 1557, 1964
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+LoadingBar_Background
+ rotate: false
+ xy: 1982, 1851
+ size: 64, 64
+ split: 31, 31, 31, 31
+ pad: 18, 18, 18, 18
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+LoadingBar_Fill
+ rotate: false
+ xy: 404, 602
+ size: 32, 26
+ split: 15, 15, 12, 12
+ orig: 32, 26
+ offset: 0, 0
+ index: -1
+Slider_Advanced_Horizontal_Handle
+ rotate: false
+ xy: 502, 792
+ size: 32, 66
+ split: 10, 10, 10, 23
+ pad: 10, 10, 10, 22
+ orig: 32, 66
+ offset: 0, 0
+ index: -1
+Slider_Advanced_Horizontal_Handle_Hover
+ rotate: false
+ xy: 1547, 1870
+ size: 28, 58
+ split: 7, 6, 0, 0
+ pad: 2, 2, 0, 10
+ orig: 28, 58
+ offset: 0, 0
+ index: -1
+Slider_Box_Background
+ rotate: false
+ xy: 690, 1715
+ size: 32, 32
+ split: 14, 14, 14, 14
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+Slider_Horizontal_Background
+ rotate: false
+ xy: 382, 1742
+ size: 32, 10
+ split: 5, 5, 4, 4
+ pad: 4, 4, 4, 4
+ orig: 32, 10
+ offset: 0, 0
+ index: -1
+Slider_Horizontal_Fill
+ rotate: false
+ xy: 563, 1508
+ size: 16, 4
+ split: 1, 1, 1, 1
+ orig: 16, 4
+ offset: 0, 0
+ index: -1
+Slider_Horizontal_Handle
+ rotate: false
+ xy: 532, 1214
+ size: 32, 54
+ split: 10, 10, 9, 9
+ orig: 32, 54
+ offset: 0, 0
+ index: -1
+TextInput
+ rotate: false
+ xy: 1, 1
+ size: 259, 39
+ split: 6, 6, 6, 6
+ orig: 259, 39
+ offset: 0, 0
+ index: -1
+TextInputFocus
+ rotate: false
+ xy: 1, 1825
+ size: 500, 60
+ orig: 500, 60
+ offset: 0, 0
+ index: -1
+bar-background
+ rotate: false
+ xy: 1, 1197
+ size: 320, 20
+ orig: 320, 20
+ offset: 0, 0
+ index: -1
+bar-fill
+ rotate: false
+ xy: 1249, 1944
+ size: 1, 20
+ split: 0, 0, 0, 0
+ orig: 1, 20
+ offset: 0, 0
+ index: -1
+bar-icon-background
+ rotate: false
+ xy: 340, 497
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+bar-icon-background-decorated
+ rotate: false
+ xy: 274, 1137
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+bar-icon-background-decorated-over
+ rotate: false
+ xy: 656, 1787
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+bar-overlay
+ rotate: false
+ xy: 738, 1906
+ size: 320, 20
+ orig: 320, 20
+ offset: 0, 0
+ index: -1
+bar-separator
+ rotate: false
+ xy: 1252, 1998
+ size: 320, 1
+ orig: 320, 1
+ offset: 0, 0
+ index: -1
+body
+ rotate: false
+ xy: 311, 1120
+ size: 12, 15
+ orig: 12, 15
+ offset: 0, 0
+ index: -1
+bot_arrow
+ rotate: false
+ xy: 274, 1121
+ size: 18, 14
+ orig: 18, 14
+ offset: 0, 0
+ index: -1
+button
+ rotate: false
+ xy: 382, 1660
+ size: 237, 53
+ orig: 237, 53
+ offset: 0, 0
+ index: -1
+button-background
+ rotate: false
+ xy: 1982, 1983
+ size: 64, 64
+ split: 15, 15, 15, 15
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+button-down
+ rotate: false
+ xy: 382, 1605
+ size: 237, 53
+ orig: 237, 53
+ offset: 0, 0
+ index: -1
+button-hover
+ rotate: false
+ xy: 382, 1550
+ size: 237, 53
+ orig: 237, 53
+ offset: 0, 0
+ index: -1
+decorated-button
+ rotate: false
+ xy: 738, 1851
+ size: 240, 53
+ orig: 240, 53
+ offset: 0, 0
+ index: -1
+empty
+ rotate: false
+ xy: 738, 1928
+ size: 351, 29
+ split: 4, 4, 4, 4
+ orig: 351, 29
+ offset: 0, 0
+ index: -1
+empty-bar
+ rotate: false
+ xy: 382, 1514
+ size: 197, 34
+ split: 10, 10, 10, 10
+ pad: 9, 9, 10, 10
+ orig: 197, 34
+ offset: 0, 0
+ index: -1
+energy
+ rotate: false
+ xy: 1221, 1943
+ size: 16, 16
+ orig: 16, 16
+ offset: 0, 0
+ index: -1
+energy-bar-filled
+ rotate: false
+ xy: 382, 1478
+ size: 179, 16
+ orig: 179, 16
+ offset: 0, 0
+ index: -1
+exp-bar-filled
+ rotate: false
+ xy: 382, 1442
+ size: 179, 16
+ orig: 179, 16
+ offset: 0, 0
+ index: -1
+fill
+ rotate: false
+ xy: 1249, 1966
+ size: 1, 21
+ split: 0, 0, 0, 0
+ orig: 1, 21
+ offset: 0, 0
+ index: -1
+glow
+ rotate: false
+ xy: 274, 563
+ size: 119, 35
+ orig: 119, 35
+ offset: 0, 0
+ index: -1
+heart
+ rotate: false
+ xy: 382, 1724
+ size: 16, 16
+ orig: 16, 16
+ offset: 0, 0
+ index: -1
+helmet
+ rotate: false
+ xy: 1533, 1849
+ size: 12, 15
+ orig: 12, 15
+ offset: 0, 0
+ index: -1
+hp-bar-filled
+ rotate: false
+ xy: 382, 1496
+ size: 179, 16
+ orig: 179, 16
+ offset: 0, 0
+ index: -1
+ingame_bar
+ rotate: false
+ xy: 980, 1894
+ size: 64, 10
+ orig: 64, 10
+ offset: 0, 0
+ index: -1
+ingame_bar_fill
+ rotate: false
+ xy: 274, 485
+ size: 64, 10
+ orig: 64, 10
+ offset: 0, 0
+ index: -1
+lanzar-button
+ rotate: false
+ xy: 1252, 1943
+ size: 237, 53
+ orig: 237, 53
+ offset: 0, 0
+ index: -1
+lanzar-button-down
+ rotate: false
+ xy: 417, 1770
+ size: 237, 53
+ orig: 237, 53
+ offset: 0, 0
+ index: -1
+lanzar-button-hover
+ rotate: false
+ xy: 417, 1715
+ size: 237, 53
+ orig: 237, 53
+ offset: 0, 0
+ index: -1
+line
+ rotate: false
+ xy: 581, 1825
+ size: 16, 2
+ orig: 16, 2
+ offset: 0, 0
+ index: -1
+magic
+ rotate: false
+ xy: 532, 1128
+ size: 16, 16
+ orig: 16, 16
+ offset: 0, 0
+ index: -1
+main-background
+ rotate: false
+ xy: 1, 475
+ size: 271, 720
+ split: 12, 5, 62, 62
+ orig: 271, 720
+ offset: 0, 0
+ index: -1
+main-window
+ rotate: false
+ xy: 1, 42
+ size: 266, 431
+ split: 15, 3, 54, 63
+ pad: 19, 9, 57, 71
+ orig: 266, 431
+ offset: 0, 0
+ index: -1
+mana-bar-filled
+ rotate: false
+ xy: 382, 1460
+ size: 179, 16
+ orig: 179, 16
+ offset: 0, 0
+ index: -1
+message_input
+ rotate: false
+ xy: 738, 1959
+ size: 480, 28
+ split: 1, 1, 2, 0
+ pad: 9, 80, 2, 4
+ orig: 480, 28
+ offset: 0, 0
+ index: -1
+separator
+ rotate: false
+ xy: 515, 1891
+ size: 64, 2
+ orig: 64, 2
+ offset: 0, 0
+ index: -1
+shadow
+ rotate: false
+ xy: 323, 1201
+ size: 50, 16
+ orig: 50, 16
+ offset: 0, 0
+ index: -1
+shield
+ rotate: false
+ xy: 503, 1870
+ size: 10, 15
+ orig: 10, 15
+ offset: 0, 0
+ index: -1
+slot
+ rotate: false
+ xy: 515, 1825
+ size: 64, 64
+ split: 4, 4, 4, 4
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+slot_overlay
+ rotate: false
+ xy: 581, 1829
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+slot_selected
+ rotate: false
+ xy: 647, 1829
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+speech-bubble-flipped
+ rotate: false
+ xy: 1022, 1860
+ size: 32, 32
+ split: 4, 19, 5, 3
+ pad: 4, 4, 5, 3
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+spells
+ rotate: false
+ xy: 1557, 1930
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+stat-empty-bar
+ rotate: false
+ xy: 1982, 1815
+ size: 61, 34
+ split: 12, 12, 12, 12
+ orig: 61, 34
+ offset: 0, 0
+ index: -1
+submit_button
+ rotate: false
+ xy: 340, 539
+ size: 52, 22
+ orig: 52, 22
+ offset: 0, 0
+ index: -1
+text-cursor
+ rotate: false
+ xy: 382, 515
+ size: 4, 22
+ orig: 4, 22
+ offset: 0, 0
+ index: -1
+top_arrow
+ rotate: false
+ xy: 502, 776
+ size: 18, 14
+ orig: 18, 14
+ offset: 0, 0
+ index: -1
+user-stats-frame
+ rotate: false
+ xy: 1, 1754
+ size: 414, 69
+ orig: 414, 69
+ offset: 0, 0
+ index: -1
+weapon
+ rotate: false
+ xy: 294, 1120
+ size: 15, 15
+ orig: 15, 15
+ offset: 0, 0
+ index: -1
+window
+ rotate: false
+ xy: 1, 1219
+ size: 379, 533
+ split: 189, 189, 69, 18
+ pad: 18, 18, 69, 18
+ orig: 379, 533
+ offset: 0, 0
+ index: -1
diff --git a/desktop/assets/data/skins/finisterra/ao-skin.json b/desktop/assets/data/skins/finisterra/ao-skin.json
new file mode 100644
index 00000000..34197b34
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/ao-skin.json differ
diff --git a/desktop/assets/data/skins/finisterra/ao-skin.png b/desktop/assets/data/skins/finisterra/ao-skin.png
new file mode 100644
index 00000000..7f6e2a59
Binary files /dev/null and b/desktop/assets/data/skins/finisterra/ao-skin.png differ
diff --git a/desktop/assets/data/ui/ao-skin-project/ao-skin.scmp b/desktop/assets/data/ui/ao-skin-project/ao-skin.scmp
index 7eaefea1..60644699 100644
--- a/desktop/assets/data/ui/ao-skin-project/ao-skin.scmp
+++ b/desktop/assets/data/ui/ao-skin-project/ao-skin.scmp
@@ -3,7 +3,7 @@ atlasData: {
atlasCurrent: true
drawables: [
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/action-bar.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/action-bar.9.png
bgColor: {
r: 1
g: 1
@@ -18,9 +18,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/bar-frame.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/bar-frame.9.png
bgColor: {
r: 1
g: 1
@@ -35,9 +37,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/hover-button.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/hover-button.9.png
bgColor: {
r: 1
g: 1
@@ -52,9 +56,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/menu-frame.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/menu-frame.9.png
bgColor: {
r: 1
g: 1
@@ -69,9 +75,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/simple-window.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/simple-window.9.png
bgColor: {
r: 1
g: 1
@@ -86,9 +94,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/slot-frame.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/slot-frame.9.png
bgColor: {
r: 1
g: 1
@@ -103,9 +113,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/big-disc.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/big-disc.png
bgColor: {
r: 1
g: 1
@@ -120,9 +132,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/cross-button.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/cross-button.png
bgColor: {
r: 1
g: 1
@@ -137,9 +151,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/disc.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/disc.png
bgColor: {
r: 1
g: 1
@@ -154,9 +170,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/Inventory-Icon.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/Inventory-Icon.png
bgColor: {
r: 1
g: 1
@@ -171,9 +189,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/spells-icon.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/spells-icon.png
bgColor: {
r: 1
g: 1
@@ -188,9 +208,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/unit-counter.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/unit-counter.png
bgColor: {
r: 1
g: 1
@@ -205,9 +227,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/button.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/button.9.png
bgColor: {
r: 1
g: 1
@@ -222,9 +246,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/cross-button.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/cross-button.png
bgColor: {
r: 1
g: 1
@@ -239,9 +265,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TINTED_FROM_COLOR_DATA
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/hover-button.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/hover-button.9.png
bgColor: {
r: 1
g: 1
@@ -256,9 +284,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TINTED_FROM_COLOR_DATA
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/hover-button.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/hover-button.9.png
bgColor: {
r: 1
g: 1
@@ -273,9 +303,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TINTED_FROM_COLOR_DATA
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/scale_bar.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/scale_bar.png
bgColor: {
r: 1
g: 1
@@ -290,9 +322,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/slot-selected.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/slot-selected.png
bgColor: {
r: 0
g: 0
@@ -307,9 +341,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/disc-glow.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/disc-glow.png
bgColor: {
r: 0
g: 0
@@ -324,9 +360,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/text-cursor.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/text-cursor.png
bgColor: {
r: 1
g: 1
@@ -341,9 +379,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/tooltip.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/tooltip.9.png
bgColor: {
r: 1
g: 1
@@ -358,9 +398,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/icon-container.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/icon-container.png
bgColor: {
r: 1
g: 1
@@ -375,9 +417,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/separator.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/separator.png
bgColor: {
r: 1
g: 1
@@ -392,9 +436,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/inventory-spells-window.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/inventory-spells-window.png
bgColor: {
r: 1
g: 1
@@ -409,9 +455,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/Inventory-Icon.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/Inventory-Icon.png
bgColor: {
r: 1
g: 1
@@ -426,9 +474,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TINTED_FROM_COLOR_DATA
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/spells-icon.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/spells-icon.png
bgColor: {
r: 1
g: 1
@@ -443,9 +493,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TINTED_FROM_COLOR_DATA
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/spells-icon.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/spells-icon.png
bgColor: {
r: 1
g: 1
@@ -460,9 +512,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TINTED_FROM_COLOR_DATA
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/Inventory-Icon.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/Inventory-Icon.png
bgColor: {
r: 1
g: 1
@@ -477,9 +531,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TINTED_FROM_COLOR_DATA
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/staff-hover-icon.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/staff-hover-icon.png
bgColor: {
r: 0
g: 0
@@ -494,9 +550,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/staff-icon.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/staff-icon.png
bgColor: {
r: 1
g: 1
@@ -511,9 +569,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/staff-selected-icon.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/staff-selected-icon.png
bgColor: {
r: 1
g: 1
@@ -528,9 +588,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/slot-selected2.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/slot-selected2.9.png
bgColor: {
r: 1
g: 1
@@ -545,9 +607,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/speech-bubble.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/speech-bubble.9.png
bgColor: {
r: 1
g: 1
@@ -562,9 +626,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/bar.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/bar.9.png
bgColor: {
r: 0
g: 0
@@ -579,9 +645,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/speech-bubble-flipped.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/speech-bubble-flipped.9.png
bgColor: {
r: 1
g: 1
@@ -596,9 +664,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/body-bg.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/body-bg.png
bgColor: {
r: 1
g: 1
@@ -613,9 +683,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/content-bg.jpg
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/content-bg.jpg
bgColor: {
r: 1
g: 1
@@ -630,9 +702,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/paper-bg.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/paper-bg.png
bgColor: {
r: 1
g: 1
@@ -647,9 +721,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/blank.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/blank.9.png
bgColor: {
r: 1
g: 1
@@ -664,9 +740,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/blank.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/blank.9.png
bgColor: {
r: 1
g: 1
@@ -686,9 +764,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TINTED
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/blank.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/blank.9.png
bgColor: {
r: 1
g: 1
@@ -708,9 +788,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TINTED
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/blank.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/blank.9.png
bgColor: {
r: 1
g: 1
@@ -730,9 +812,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TINTED
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/blank.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/blank.9.png
bgColor: {
r: 1
g: 1
@@ -752,9 +836,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TINTED
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/unchecked.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/unchecked.png
bgColor: {
r: 1
g: 1
@@ -769,9 +855,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/checked.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/checked.png
bgColor: {
r: 1
g: 1
@@ -786,9 +874,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/v-scroll.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/v-scroll.9.png
bgColor: {
r: 1
g: 1
@@ -803,9 +893,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/v-scroll.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/v-scroll.9.png
bgColor: {
r: 1
g: 1
@@ -825,9 +917,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TINTED
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/h-scroll.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/h-scroll.9.png
bgColor: {
r: 1
g: 1
@@ -842,9 +936,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/h-scroll.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/h-scroll.9.png
bgColor: {
r: 1
g: 1
@@ -864,9 +960,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TINTED
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/h-scroll.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/h-scroll.9.png
bgColor: {
r: 1
g: 1
@@ -886,9 +984,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TINTED
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/select-box.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/select-box.9.png
bgColor: {
r: 1
g: 1
@@ -903,9 +1003,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/window.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/window.9.png
bgColor: {
r: 1
g: 1
@@ -925,9 +1027,11 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: TINTED
+ hidden: false
}
{
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/window.9.png
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/window.9.png
bgColor: {
r: 1
g: 1
@@ -942,6 +1046,27 @@ atlasData: {
minHeight: -1
customized: false
tenPatchData: null
+ type: NINE_PATCH
+ hidden: false
+ }
+ {
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/staff.png
+ bgColor: {
+ r: 1
+ g: 1
+ b: 1
+ a: 1
+ }
+ tint: null
+ tintName: null
+ name: staff
+ tiled: false
+ minWidth: -1
+ minHeight: -1
+ customized: false
+ tenPatchData: null
+ type: TEXTURE
+ hidden: false
}
]
fontDrawables: []
@@ -1164,19 +1289,19 @@ jsonData: {
{
class: com.ray3k.skincomposer.data.FreeTypeFontData
name: big
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/Livvic-Regular.ttf
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/TAHOMAB0.TTF
previewTTF: SourceSansPro-Regular
useCustomSerializer: true
size: 16
mono: false
- hinting: AutoMedium
+ hinting: Slight
color: ao-white
- gamma: 1.8
- renderCount: 4
+ gamma: 1
+ renderCount: 1
borderWidth: 0
borderColor: null
borderStraight: false
- borderGamma: 1.8
+ borderGamma: 1
shadowOffsetX: 0
shadowOffsetY: 0
shadowColor: null
@@ -1186,14 +1311,14 @@ jsonData: {
kerning: true
flip: false
genMipMaps: false
- minFilter: Nearest
- magFilter: Nearest
+ minFilter: Linear
+ magFilter: Linear
incremental: false
}
{
class: com.ray3k.skincomposer.data.FreeTypeFontData
name: cinzel
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/Cinzel-Bold.otf
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/Cinzel-Bold.otf
previewTTF: SourceSansPro-Regular
useCustomSerializer: true
size: 18
@@ -1222,7 +1347,7 @@ jsonData: {
{
class: com.ray3k.skincomposer.data.FreeTypeFontData
name: cinzel-title
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/Cinzel-Bold.otf
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/Cinzel-Bold.otf
previewTTF: SourceSansPro-Regular
useCustomSerializer: true
size: 14
@@ -1251,15 +1376,15 @@ jsonData: {
{
class: com.ray3k.skincomposer.data.FreeTypeFontData
name: flipped
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/TAHOMA_0.TTF
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/TAHOMAB0.TTF
previewTTF: SourceSansPro-Regular
useCustomSerializer: true
size: 16
mono: false
- hinting: AutoMedium
+ hinting: Slight
color: ao-white
gamma: 1.8
- renderCount: 4
+ renderCount: 2
borderWidth: 0
borderColor: null
borderStraight: false
@@ -1280,36 +1405,36 @@ jsonData: {
{
class: com.ray3k.skincomposer.data.FreeTypeFontData
name: flipped-with-border
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/TAHOMAB0.TTF
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/TAHOMAB0.TTF
previewTTF: SourceSansPro-Regular
useCustomSerializer: true
size: 16
mono: false
- hinting: AutoMedium
+ hinting: Slight
color: ao-white
- gamma: 1.8
- renderCount: 4
+ gamma: 1
+ renderCount: 1
borderWidth: 0
borderColor: null
borderStraight: false
borderGamma: 1
shadowOffsetX: -1
shadowOffsetY: -1
- shadowColor: ao-black
+ shadowColor: transparent
spaceX: 0
spaceY: 0
characters: ""
kerning: true
flip: true
genMipMaps: true
- minFilter: Nearest
+ minFilter: Linear
magFilter: Linear
- incremental: false
+ incremental: true
}
{
class: com.ray3k.skincomposer.data.FreeTypeFontData
name: info
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/Livvic-Light.ttf
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/Livvic-Light.ttf
previewTTF: SourceSansPro-Regular
useCustomSerializer: true
size: 12
@@ -1338,12 +1463,12 @@ jsonData: {
{
class: com.ray3k.skincomposer.data.FreeTypeFontData
name: simple
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/TAHOMA_0.TTF
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/TAHOMAB0.TTF
previewTTF: SourceSansPro-Regular
useCustomSerializer: true
size: 14
mono: false
- hinting: AutoMedium
+ hinting: None
color: ao-white
gamma: 1.8
renderCount: 4
@@ -1360,25 +1485,25 @@ jsonData: {
kerning: true
flip: false
genMipMaps: false
- minFilter: Nearest
- magFilter: Nearest
+ minFilter: Linear
+ magFilter: Linear
incremental: false
}
{
class: com.ray3k.skincomposer.data.FreeTypeFontData
name: simple-with-border
- file: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/TAHOMAB0.TTF
+ file: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin_data/TAHOMAB0.TTF
previewTTF: SourceSansPro-Regular
useCustomSerializer: true
- size: 9
+ size: 12
mono: false
- hinting: None
+ hinting: Slight
color: ao-white
- gamma: 1.8
- renderCount: 4
+ gamma: 1
+ renderCount: 1
borderWidth: 1.5
borderColor: ao-black
- borderStraight: true
+ borderStraight: false
borderGamma: 1.8
shadowOffsetX: 0
shadowOffsetY: 0
@@ -1389,12 +1514,35 @@ jsonData: {
kerning: true
flip: false
genMipMaps: false
- minFilter: Nearest
- magFilter: Nearest
+ minFilter: Linear
+ magFilter: Linear
incremental: false
}
]
classStyleMap: {
+ com.badlogic.gdx.scenes.scene2d.ui.Touchpad: [
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: default
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Touchpad
+ properties: {
+ background: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: background
+ optional: true
+ value: null
+ }
+ knob: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: knob
+ optional: true
+ value: null
+ }
+ }
+ deletable: false
+ parent: null
+ }
+ ]
com.badlogic.gdx.scenes.scene2d.ui.Button: [
{
class: com.ray3k.skincomposer.data.StyleData
@@ -1402,98 +1550,84 @@ jsonData: {
clazz: com.badlogic.gdx.scenes.scene2d.ui.Button
properties: {
up: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: up
optional: true
value: button
}
down: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: down
optional: true
value: hover-button
}
over: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: over
optional: true
value: null
}
focused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: focused
optional: true
value: null
}
checked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checked
optional: true
value: null
}
checkedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedOver
optional: true
value: null
}
checkedFocused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedFocused
optional: true
value: null
}
disabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabled
optional: true
value: null
}
pressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetX
optional: true
value: 0
}
pressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetY
optional: true
value: 0
}
unpressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetX
optional: true
value: 0
}
unpressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetY
optional: true
value: 0
}
checkedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetX
optional: true
value: 0
}
checkedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetY
optional: true
@@ -1511,189 +1645,162 @@ jsonData: {
clazz: com.badlogic.gdx.scenes.scene2d.ui.CheckBox
properties: {
checkboxOn: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkboxOn
optional: false
value: cross-button
}
checkboxOff: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkboxOff
optional: false
value: cross-button-disabled
}
checkboxOnOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkboxOnOver
optional: true
value: null
}
checkboxOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkboxOver
optional: true
value: null
}
checkboxOnDisabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkboxOnDisabled
optional: true
value: null
}
checkboxOffDisabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkboxOffDisabled
optional: true
value: null
}
font: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.g2d.BitmapFont
name: font
optional: false
value: simple-with-border
}
fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: fontColor
optional: true
value: ao-white
}
downFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: downFontColor
optional: true
value: null
}
overFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: overFontColor
optional: true
value: null
}
checkedFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: checkedFontColor
optional: true
value: null
}
checkedOverFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: checkedOverFontColor
optional: true
value: null
}
disabledFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: disabledFontColor
optional: true
value: null
}
up: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: up
optional: true
value: null
}
down: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: down
optional: true
value: null
}
over: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: over
optional: true
value: null
}
focused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: focused
optional: true
value: null
}
checked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checked
optional: true
value: null
}
checkedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedOver
optional: true
value: null
}
checkedFocused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedFocused
optional: true
value: null
}
disabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabled
optional: true
value: null
}
pressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetX
optional: true
value: 0
}
pressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetY
optional: true
value: 0
}
unpressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetX
optional: true
value: 0
}
unpressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetY
optional: true
value: 0
}
checkedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetX
optional: true
value: 0
}
checkedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetY
optional: true
@@ -1709,189 +1816,162 @@ jsonData: {
clazz: com.badlogic.gdx.scenes.scene2d.ui.CheckBox
properties: {
checkboxOn: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkboxOn
optional: false
value: checked
}
checkboxOff: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkboxOff
optional: false
value: unchecked
}
checkboxOnOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkboxOnOver
optional: true
value: null
}
checkboxOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkboxOver
optional: true
value: null
}
checkboxOnDisabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkboxOnDisabled
optional: true
value: null
}
checkboxOffDisabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkboxOffDisabled
optional: true
value: null
}
font: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.g2d.BitmapFont
name: font
optional: false
value: cinzel
}
fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: fontColor
optional: true
value: ao-white
}
downFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: downFontColor
optional: true
value: null
}
overFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: overFontColor
optional: true
value: null
}
checkedFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: checkedFontColor
optional: true
value: null
}
checkedOverFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: checkedOverFontColor
optional: true
value: null
}
disabledFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: disabledFontColor
optional: true
value: null
}
up: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: up
optional: true
value: null
}
down: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: down
optional: true
value: null
}
over: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: over
optional: true
value: null
}
focused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: focused
optional: true
value: null
}
checked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checked
optional: true
value: null
}
checkedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedOver
optional: true
value: null
}
checkedFocused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedFocused
optional: true
value: null
}
disabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabled
optional: true
value: null
}
pressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetX
optional: true
value: 0
}
pressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetY
optional: true
value: 0
}
unpressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetX
optional: true
value: 0
}
unpressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetY
optional: true
value: 0
}
checkedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetX
optional: true
value: 0
}
checkedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetY
optional: true
@@ -1902,445 +1982,718 @@ jsonData: {
parent: null
}
]
- com.badlogic.gdx.scenes.scene2d.ui.ImageButton: [
+ com.badlogic.gdx.scenes.scene2d.ui.SplitPane: [
{
class: com.ray3k.skincomposer.data.StyleData
- name: default
- clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageButton
+ name: default-horizontal
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.SplitPane
properties: {
- imageUp: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ handle: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: imageUp
- optional: true
+ name: handle
+ optional: false
value: null
}
- imageDown: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ }
+ deletable: false
+ parent: null
+ }
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: default-vertical
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.SplitPane
+ properties: {
+ handle: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: imageDown
- optional: true
+ name: handle
+ optional: false
value: null
}
- imageOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: imageOver
+ }
+ deletable: false
+ parent: null
+ }
+ ]
+ com.badlogic.gdx.scenes.scene2d.ui.SelectBox: [
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: default
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.SelectBox
+ properties: {
+ font: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: font
+ optional: false
+ value: simple
+ }
+ fontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColor
+ optional: false
+ value: ao-white
+ }
+ disabledFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: disabledFontColor
optional: true
- value: null
+ value: ao-light-grey
}
- imageChecked: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ background: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: imageChecked
+ name: background
optional: true
- value: null
+ value: hover-button-pressed
}
- imageCheckedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ scrollStyle: {
+ type: com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle
+ name: scrollStyle
+ optional: false
+ value: no-background
+ }
+ listStyle: {
+ type: com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle
+ name: listStyle
+ optional: false
+ value: default
+ }
+ backgroundOver: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: imageCheckedOver
+ name: backgroundOver
optional: true
value: null
}
- imageDisabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ backgroundOpen: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: imageDisabled
+ name: backgroundOpen
optional: true
value: null
}
- up: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ backgroundDisabled: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: up
+ name: backgroundDisabled
optional: true
- value: slot-frame
+ value: null
}
- down: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: down
+ }
+ deletable: false
+ parent: null
+ }
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: ui
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.SelectBox
+ properties: {
+ font: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: font
+ optional: false
+ value: cinzel
+ }
+ fontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColor
+ optional: false
+ value: ao-white
+ }
+ disabledFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: disabledFontColor
optional: true
- value: null
+ value: ao-light-grey
}
- over: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ background: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: over
+ name: background
optional: true
- value: null
+ value: select-box
}
- focused: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ scrollStyle: {
+ type: com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle
+ name: scrollStyle
+ optional: false
+ value: ui
+ }
+ listStyle: {
+ type: com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle
+ name: listStyle
+ optional: false
+ value: ui
+ }
+ backgroundOver: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: focused
+ name: backgroundOver
optional: true
value: null
}
- checked: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ backgroundOpen: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: checked
+ name: backgroundOpen
optional: true
value: null
}
- checkedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ backgroundDisabled: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: checkedOver
+ name: backgroundDisabled
optional: true
value: null
}
- checkedFocused: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: checkedFocused
+ }
+ deletable: true
+ parent: null
+ }
+ ]
+ com.badlogic.gdx.scenes.scene2d.ui.Label: [
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: default
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Label
+ properties: {
+ font: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: font
+ optional: false
+ value: simple-with-border
+ }
+ fontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColor
optional: true
- value: null
+ value: ao-white
}
- disabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ background: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabled
+ name: background
optional: true
value: null
}
- pressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: float
- name: pressedOffsetX
- optional: true
- value: 0
- }
- pressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: float
- name: pressedOffsetY
- optional: true
- value: 0
+ }
+ deletable: false
+ parent: null
+ }
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: no-background
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Label
+ properties: {
+ font: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: font
+ optional: false
+ value: cinzel
}
- unpressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: float
- name: unpressedOffsetX
+ fontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColor
optional: true
- value: 0
+ value: ao-blue-grey
}
- unpressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: float
- name: unpressedOffsetY
+ background: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: background
optional: true
- value: 0
+ value: null
}
- checkedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: float
- name: checkedOffsetX
+ }
+ deletable: true
+ parent: null
+ }
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: title-no-background
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Label
+ properties: {
+ font: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: font
+ optional: false
+ value: cinzel-title
+ }
+ fontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColor
optional: true
- value: 0
+ value: orange
}
- checkedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: float
- name: checkedOffsetY
+ background: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: background
optional: true
- value: 0
+ value: null
}
}
- deletable: false
+ deletable: true
parent: null
}
{
class: com.ray3k.skincomposer.data.StyleData
- name: slot
- clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageButton
+ name: desc-no-background
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Label
+ properties: {
+ font: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: font
+ optional: false
+ value: info
+ }
+ fontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColor
+ optional: true
+ value: null
+ }
+ background: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: background
+ optional: true
+ value: null
+ }
+ }
+ deletable: true
+ parent: null
+ }
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: speech-bubble
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Label
+ properties: {
+ font: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: font
+ optional: false
+ value: flipped
+ }
+ fontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColor
+ optional: true
+ value: ao-grey
+ }
+ background: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: background
+ optional: true
+ value: speech-bubble-flipped
+ }
+ }
+ deletable: true
+ parent: null
+ }
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: flipped
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Label
+ properties: {
+ font: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: font
+ optional: false
+ value: flipped
+ }
+ fontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColor
+ optional: true
+ value: ao-white
+ }
+ background: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: background
+ optional: true
+ value: null
+ }
+ }
+ deletable: true
+ parent: null
+ }
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: ui
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Label
+ properties: {
+ font: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: font
+ optional: false
+ value: cinzel
+ }
+ fontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColor
+ optional: true
+ value: orange
+ }
+ background: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: background
+ optional: true
+ value: null
+ }
+ }
+ deletable: true
+ parent: null
+ }
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: bar
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Label
+ properties: {
+ font: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: font
+ optional: false
+ value: simple-with-border
+ }
+ fontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColor
+ optional: true
+ value: ao-white
+ }
+ background: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: background
+ optional: true
+ value: null
+ }
+ }
+ deletable: true
+ parent: null
+ }
+ ]
+ com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton: [
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: default
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton
properties: {
imageUp: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageUp
optional: true
value: null
}
imageDown: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDown
optional: true
value: null
}
imageOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageOver
optional: true
value: null
}
imageChecked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageChecked
optional: true
value: null
}
imageCheckedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageCheckedOver
optional: true
value: null
}
imageDisabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDisabled
optional: true
value: null
}
+ font: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: font
+ optional: false
+ value: simple
+ }
+ fontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColor
+ optional: true
+ value: null
+ }
+ downFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: downFontColor
+ optional: true
+ value: null
+ }
+ overFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: overFontColor
+ optional: true
+ value: null
+ }
+ checkedFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: checkedFontColor
+ optional: true
+ value: null
+ }
+ checkedOverFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: checkedOverFontColor
+ optional: true
+ value: null
+ }
+ disabledFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: disabledFontColor
+ optional: true
+ value: null
+ }
up: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: up
optional: true
- value: slot-frame
+ value: null
}
down: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: down
optional: true
value: null
}
over: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: over
optional: true
value: null
}
focused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: focused
optional: true
value: null
}
checked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checked
optional: true
value: null
}
checkedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedOver
optional: true
value: null
}
checkedFocused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedFocused
optional: true
value: null
}
disabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabled
optional: true
value: null
}
pressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetX
optional: true
value: 0
}
pressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetY
optional: true
value: 0
}
unpressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetX
optional: true
value: 0
}
unpressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetY
optional: true
value: 0
}
checkedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetX
optional: true
value: 0
}
checkedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetY
optional: true
value: 0
}
}
- deletable: true
- parent: null
+ deletable: false
+ parent: default
}
{
class: com.ray3k.skincomposer.data.StyleData
- name: disc
- clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageButton
- properties: {
+ name: big-disc
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton
+ properties: {
imageUp: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageUp
optional: true
value: null
}
imageDown: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDown
optional: true
value: null
}
imageOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageOver
optional: true
value: null
}
imageChecked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageChecked
optional: true
value: null
}
imageCheckedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageCheckedOver
optional: true
value: null
}
imageDisabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDisabled
optional: true
value: null
}
+ font: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: font
+ optional: false
+ value: simple
+ }
+ fontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColor
+ optional: true
+ value: null
+ }
+ downFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: downFontColor
+ optional: true
+ value: null
+ }
+ overFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: overFontColor
+ optional: true
+ value: null
+ }
+ checkedFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: checkedFontColor
+ optional: true
+ value: null
+ }
+ checkedOverFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: checkedOverFontColor
+ optional: true
+ value: null
+ }
+ disabledFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: disabledFontColor
+ optional: true
+ value: null
+ }
up: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: up
optional: true
- value: disc
+ value: big-disc
}
down: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: down
optional: true
value: null
}
over: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: over
optional: true
value: null
}
focused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: focused
optional: true
value: null
}
checked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checked
optional: true
value: null
}
checkedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedOver
optional: true
value: null
}
checkedFocused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedFocused
optional: true
value: null
}
disabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabled
optional: true
value: null
}
pressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetX
optional: true
value: 0
}
pressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetY
optional: true
value: 0
}
unpressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetX
optional: true
value: 0
}
unpressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetY
optional: true
value: 0
}
checkedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetX
optional: true
value: 0
}
checkedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetY
optional: true
@@ -2352,144 +2705,166 @@ jsonData: {
}
{
class: com.ray3k.skincomposer.data.StyleData
- name: big-disc
- clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageButton
+ name: inventory
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton
properties: {
imageUp: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageUp
optional: true
- value: null
+ value: Inventory-Icon
}
imageDown: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDown
optional: true
value: null
}
imageOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageOver
optional: true
value: null
}
imageChecked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageChecked
optional: true
value: null
}
imageCheckedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageCheckedOver
optional: true
value: null
}
imageDisabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDisabled
optional: true
value: null
}
+ font: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: font
+ optional: false
+ value: big
+ }
+ fontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColor
+ optional: true
+ value: ao-white
+ }
+ downFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: downFontColor
+ optional: true
+ value: null
+ }
+ overFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: overFontColor
+ optional: true
+ value: null
+ }
+ checkedFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: checkedFontColor
+ optional: true
+ value: null
+ }
+ checkedOverFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: checkedOverFontColor
+ optional: true
+ value: null
+ }
+ disabledFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: disabledFontColor
+ optional: true
+ value: null
+ }
up: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: up
optional: true
- value: big-disc
+ value: null
}
down: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: down
optional: true
value: null
}
over: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: over
optional: true
value: null
}
focused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: focused
optional: true
value: null
}
checked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checked
optional: true
value: null
}
checkedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedOver
optional: true
value: null
}
checkedFocused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedFocused
optional: true
value: null
}
disabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabled
optional: true
value: null
}
pressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetX
optional: true
value: 0
}
pressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetY
optional: true
value: 0
}
unpressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetX
optional: true
value: 0
}
unpressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetY
optional: true
value: 0
}
checkedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetX
optional: true
value: 0
}
checkedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetY
optional: true
@@ -2499,299 +2874,394 @@ jsonData: {
deletable: true
parent: null
}
+ ]
+ com.badlogic.gdx.scenes.scene2d.ui.TextTooltip: [
{
class: com.ray3k.skincomposer.data.StyleData
- name: icon-container
+ name: default
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.TextTooltip
+ properties: {
+ label: {
+ type: com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle
+ name: label
+ optional: false
+ value: default
+ }
+ background: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: background
+ optional: true
+ value: null
+ }
+ wrapWidth: {
+ type: float
+ name: wrapWidth
+ optional: true
+ value: 300
+ }
+ }
+ deletable: false
+ parent: null
+ }
+ ]
+ com.badlogic.gdx.scenes.scene2d.ui.List: [
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: default
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.List
+ properties: {
+ font: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: font
+ optional: false
+ value: simple
+ }
+ fontColorSelected: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColorSelected
+ optional: false
+ value: ao-pink
+ }
+ fontColorUnselected: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColorUnselected
+ optional: false
+ value: ao-light-grey
+ }
+ selection: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: selection
+ optional: false
+ value: hover-button
+ }
+ down: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: down
+ optional: true
+ value: hover-button-pressed
+ }
+ over: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: over
+ optional: true
+ value: hover-button-2
+ }
+ background: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: background
+ optional: true
+ value: menu-frame
+ }
+ }
+ deletable: false
+ parent: null
+ }
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: ui
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.List
+ properties: {
+ font: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: font
+ optional: false
+ value: cinzel
+ }
+ fontColorSelected: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColorSelected
+ optional: false
+ value: secondary
+ }
+ fontColorUnselected: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColorUnselected
+ optional: false
+ value: ao-white
+ }
+ selection: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: selection
+ optional: false
+ value: orange
+ }
+ down: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: down
+ optional: true
+ value: null
+ }
+ over: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: over
+ optional: true
+ value: selection
+ }
+ background: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: background
+ optional: true
+ value: null
+ }
+ }
+ deletable: true
+ parent: null
+ }
+ ]
+ com.badlogic.gdx.scenes.scene2d.ui.ImageButton: [
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: default
clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageButton
properties: {
imageUp: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageUp
optional: true
value: null
}
imageDown: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDown
optional: true
value: null
}
imageOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageOver
optional: true
value: null
}
imageChecked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageChecked
optional: true
value: null
}
imageCheckedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageCheckedOver
optional: true
value: null
}
imageDisabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDisabled
optional: true
value: null
}
up: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: up
optional: true
- value: icon-container
+ value: slot-frame
}
down: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: down
optional: true
value: null
}
over: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: over
optional: true
value: null
}
focused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: focused
optional: true
value: null
}
checked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checked
optional: true
value: null
}
checkedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedOver
optional: true
value: null
}
checkedFocused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedFocused
optional: true
value: null
}
disabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabled
optional: true
value: null
}
pressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetX
optional: true
value: 0
}
pressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetY
optional: true
value: 0
}
unpressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetX
optional: true
value: 0
}
unpressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetY
optional: true
value: 0
}
checkedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetX
optional: true
value: 0
}
checkedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetY
optional: true
value: 0
}
}
- deletable: true
+ deletable: false
parent: null
}
{
class: com.ray3k.skincomposer.data.StyleData
- name: inventory
+ name: slot
clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageButton
properties: {
imageUp: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageUp
optional: true
- value: Inventory-Icon
+ value: null
}
imageDown: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDown
optional: true
value: null
}
imageOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageOver
optional: true
value: null
}
imageChecked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageChecked
optional: true
value: null
}
imageCheckedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageCheckedOver
optional: true
value: null
}
imageDisabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDisabled
optional: true
value: null
}
up: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: up
optional: true
- value: null
+ value: slot-frame
}
down: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: down
optional: true
value: null
}
over: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: over
optional: true
value: null
}
focused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: focused
optional: true
value: null
}
checked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checked
optional: true
value: null
}
checkedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedOver
optional: true
value: null
}
checkedFocused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedFocused
optional: true
value: null
}
disabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabled
optional: true
value: null
}
pressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetX
optional: true
value: 0
}
pressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetY
optional: true
value: 0
}
unpressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetX
optional: true
value: 0
}
unpressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetY
optional: true
value: 0
}
checkedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetX
optional: true
value: 0
}
checkedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetY
optional: true
- value: 2
+ value: 0
}
}
deletable: true
@@ -2799,148 +3269,128 @@ jsonData: {
}
{
class: com.ray3k.skincomposer.data.StyleData
- name: spells
+ name: disc
clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageButton
properties: {
imageUp: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageUp
optional: true
- value: spells-icon
+ value: null
}
imageDown: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDown
optional: true
value: null
}
imageOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageOver
optional: true
value: null
}
imageChecked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageChecked
optional: true
value: null
}
imageCheckedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageCheckedOver
optional: true
value: null
}
imageDisabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDisabled
optional: true
value: null
}
up: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: up
optional: true
- value: null
+ value: disc
}
down: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: down
optional: true
value: null
}
over: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: over
optional: true
value: null
}
focused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: focused
optional: true
value: null
}
checked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checked
optional: true
value: null
}
checkedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedOver
optional: true
value: null
}
checkedFocused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedFocused
optional: true
value: null
}
disabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabled
optional: true
value: null
}
pressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetX
optional: true
value: 0
}
pressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetY
optional: true
value: 0
}
unpressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetX
optional: true
value: 0
}
unpressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetY
optional: true
- value: -2
+ value: 0
}
checkedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetX
optional: true
value: 0
}
checkedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetY
optional: true
- value: 1
+ value: 0
}
}
deletable: true
@@ -2948,144 +3398,124 @@ jsonData: {
}
{
class: com.ray3k.skincomposer.data.StyleData
- name: staff
+ name: big-disc
clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageButton
properties: {
imageUp: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageUp
optional: true
- value: staff-icon
+ value: null
}
imageDown: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDown
optional: true
value: null
}
imageOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageOver
optional: true
- value: staff-hover-icon
+ value: null
}
imageChecked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageChecked
optional: true
- value: staff-selected-icon
+ value: null
}
imageCheckedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageCheckedOver
optional: true
value: null
}
imageDisabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDisabled
optional: true
value: null
}
up: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: up
optional: true
value: big-disc
}
down: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: down
optional: true
value: null
}
over: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: over
optional: true
value: null
}
focused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: focused
optional: true
value: null
}
checked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checked
optional: true
value: null
}
checkedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedOver
optional: true
value: null
}
checkedFocused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedFocused
optional: true
value: null
}
disabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabled
optional: true
value: null
}
pressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetX
optional: true
value: 0
}
pressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetY
optional: true
value: 0
}
unpressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetX
optional: true
value: 0
}
unpressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetY
optional: true
value: 0
}
checkedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetX
optional: true
value: 0
}
checkedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetY
optional: true
@@ -3095,889 +3525,568 @@ jsonData: {
deletable: true
parent: null
}
- ]
- com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton: [
{
class: com.ray3k.skincomposer.data.StyleData
- name: default
- clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton
+ name: icon-container
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageButton
properties: {
imageUp: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageUp
optional: true
value: null
}
imageDown: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDown
optional: true
value: null
}
imageOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageOver
optional: true
value: null
}
imageChecked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageChecked
optional: true
value: null
}
imageCheckedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageCheckedOver
optional: true
value: null
}
imageDisabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDisabled
optional: true
value: null
}
- font: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: font
- optional: false
- value: simple
- }
- fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: fontColor
- optional: true
- value: null
- }
- downFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: downFontColor
- optional: true
- value: null
- }
- overFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: overFontColor
- optional: true
- value: null
- }
- checkedFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: checkedFontColor
- optional: true
- value: null
- }
- checkedOverFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: checkedOverFontColor
- optional: true
- value: null
- }
- disabledFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: disabledFontColor
- optional: true
- value: null
- }
up: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: up
optional: true
- value: null
+ value: icon-container
}
down: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: down
optional: true
value: null
}
over: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: over
optional: true
value: null
}
focused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: focused
optional: true
value: null
}
checked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checked
optional: true
value: null
}
checkedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedOver
optional: true
value: null
}
checkedFocused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedFocused
optional: true
value: null
}
disabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabled
optional: true
value: null
}
pressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetX
optional: true
value: 0
}
pressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetY
optional: true
value: 0
}
unpressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetX
optional: true
value: 0
}
unpressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetY
optional: true
value: 0
}
checkedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetX
optional: true
value: 0
}
checkedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetY
optional: true
value: 0
}
}
- deletable: false
- parent: default
+ deletable: true
+ parent: null
}
{
class: com.ray3k.skincomposer.data.StyleData
- name: big-disc
- clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton
+ name: inventory
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageButton
properties: {
imageUp: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageUp
optional: true
- value: null
+ value: Inventory-Icon
}
imageDown: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDown
optional: true
value: null
}
imageOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageOver
optional: true
value: null
}
imageChecked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageChecked
optional: true
value: null
}
imageCheckedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageCheckedOver
optional: true
value: null
}
imageDisabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: imageDisabled
optional: true
value: null
}
- font: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: font
- optional: false
- value: simple
- }
- fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: fontColor
- optional: true
- value: null
- }
- downFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: downFontColor
- optional: true
- value: null
- }
- overFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: overFontColor
- optional: true
- value: null
- }
- checkedFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: checkedFontColor
- optional: true
- value: null
- }
- checkedOverFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: checkedOverFontColor
- optional: true
- value: null
- }
- disabledFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: disabledFontColor
- optional: true
- value: null
- }
up: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: up
optional: true
- value: big-disc
+ value: null
}
down: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: down
optional: true
value: null
}
over: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: over
optional: true
value: null
}
focused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: focused
optional: true
value: null
}
checked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checked
optional: true
value: null
}
checkedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedOver
optional: true
value: null
}
checkedFocused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedFocused
optional: true
value: null
}
disabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabled
optional: true
value: null
}
pressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetX
optional: true
value: 0
}
pressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetY
optional: true
value: 0
}
unpressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetX
optional: true
value: 0
}
unpressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetY
optional: true
value: 0
}
checkedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetX
optional: true
value: 0
}
checkedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetY
optional: true
- value: 0
+ value: 2
}
}
deletable: true
parent: null
}
- ]
- com.badlogic.gdx.scenes.scene2d.ui.Label: [
{
class: com.ray3k.skincomposer.data.StyleData
- name: default
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Label
+ name: spells
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageButton
properties: {
- font: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: font
- optional: false
- value: simple-with-border
- }
- fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: fontColor
+ imageUp: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: imageUp
optional: true
- value: ao-white
+ value: spells-icon
}
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ imageDown: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
+ name: imageDown
optional: true
value: null
}
- }
- deletable: false
- parent: null
- }
- {
- class: com.ray3k.skincomposer.data.StyleData
- name: no-background
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Label
- properties: {
- font: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: font
- optional: false
- value: cinzel
- }
- fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: fontColor
+ imageOver: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: imageOver
optional: true
- value: ao-blue-grey
+ value: null
}
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ imageChecked: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
+ name: imageChecked
optional: true
value: null
}
- }
- deletable: true
- parent: null
- }
- {
- class: com.ray3k.skincomposer.data.StyleData
- name: title-no-background
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Label
- properties: {
- font: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: font
- optional: false
- value: cinzel-title
- }
- fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: fontColor
+ imageCheckedOver: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: imageCheckedOver
optional: true
- value: orange
+ value: null
}
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ imageDisabled: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
+ name: imageDisabled
optional: true
value: null
}
- }
- deletable: true
- parent: null
- }
- {
- class: com.ray3k.skincomposer.data.StyleData
- name: desc-no-background
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Label
- properties: {
- font: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: font
- optional: false
- value: info
+ up: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: up
+ optional: true
+ value: null
}
- fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: fontColor
+ down: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: down
optional: true
value: null
}
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ over: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
+ name: over
optional: true
value: null
}
- }
- deletable: true
- parent: null
- }
- {
- class: com.ray3k.skincomposer.data.StyleData
- name: speech-bubble
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Label
- properties: {
- font: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: font
- optional: false
- value: flipped
+ focused: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: focused
+ optional: true
+ value: null
}
- fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: fontColor
+ checked: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: checked
optional: true
- value: ao-grey
+ value: null
}
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ checkedOver: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
+ name: checkedOver
optional: true
- value: speech-bubble-flipped
+ value: null
}
- }
- deletable: true
- parent: null
- }
- {
- class: com.ray3k.skincomposer.data.StyleData
- name: flipped
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Label
- properties: {
- font: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: font
- optional: false
- value: flipped-with-border
- }
- fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: fontColor
+ checkedFocused: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: checkedFocused
optional: true
- value: ao-white
+ value: null
}
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ disabled: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
+ name: disabled
optional: true
value: null
}
- }
- deletable: true
- parent: null
- }
- {
- class: com.ray3k.skincomposer.data.StyleData
- name: ui
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Label
- properties: {
- font: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: font
- optional: false
- value: cinzel
+ pressedOffsetX: {
+ type: float
+ name: pressedOffsetX
+ optional: true
+ value: 0
}
- fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: fontColor
+ pressedOffsetY: {
+ type: float
+ name: pressedOffsetY
optional: true
- value: orange
+ value: 0
}
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
+ unpressedOffsetX: {
+ type: float
+ name: unpressedOffsetX
optional: true
- value: null
+ value: 0
}
- }
- deletable: true
- parent: null
- }
- {
- class: com.ray3k.skincomposer.data.StyleData
- name: bar
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Label
- properties: {
- font: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: font
- optional: false
- value: simple-with-border
+ unpressedOffsetY: {
+ type: float
+ name: unpressedOffsetY
+ optional: true
+ value: -2
}
- fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: fontColor
+ checkedOffsetX: {
+ type: float
+ name: checkedOffsetX
optional: true
- value: ao-white
+ value: 0
}
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
+ checkedOffsetY: {
+ type: float
+ name: checkedOffsetY
optional: true
- value: null
+ value: 1
}
}
deletable: true
parent: null
}
- ]
- com.badlogic.gdx.scenes.scene2d.ui.List: [
{
class: com.ray3k.skincomposer.data.StyleData
- name: default
- clazz: com.badlogic.gdx.scenes.scene2d.ui.List
+ name: staff
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.ImageButton
properties: {
- font: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: font
- optional: false
- value: simple
- }
- fontColorSelected: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: fontColorSelected
- optional: false
- value: ao-pink
- }
- fontColorUnselected: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: fontColorUnselected
- optional: false
- value: ao-light-grey
- }
- selection: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ imageUp: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: selection
- optional: false
- value: hover-button
+ name: imageUp
+ optional: true
+ value: staff-icon
}
- down: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ imageDown: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: down
+ name: imageDown
optional: true
- value: hover-button-pressed
+ value: null
}
- over: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ imageOver: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: over
+ name: imageOver
optional: true
- value: hover-button-2
+ value: staff-hover-icon
}
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ imageChecked: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
+ name: imageChecked
optional: true
- value: menu-frame
- }
- }
- deletable: false
- parent: null
- }
- {
- class: com.ray3k.skincomposer.data.StyleData
- name: ui
- clazz: com.badlogic.gdx.scenes.scene2d.ui.List
- properties: {
- font: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: font
- optional: false
- value: cinzel
+ value: staff-selected-icon
}
- fontColorSelected: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: fontColorSelected
- optional: false
- value: secondary
+ imageCheckedOver: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: imageCheckedOver
+ optional: true
+ value: null
}
- fontColorUnselected: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: fontColorUnselected
- optional: false
- value: ao-white
+ imageDisabled: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: imageDisabled
+ optional: true
+ value: null
}
- selection: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ up: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: selection
- optional: false
- value: orange
+ name: up
+ optional: true
+ value: big-disc
}
down: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: down
optional: true
value: null
}
over: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: over
optional: true
- value: selection
+ value: null
}
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ focused: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
+ name: focused
optional: true
value: null
}
- }
- deletable: true
- parent: null
- }
- ]
- com.badlogic.gdx.scenes.scene2d.ui.ProgressBar: [
- {
- class: com.ray3k.skincomposer.data.StyleData
- name: default-horizontal
- clazz: com.badlogic.gdx.scenes.scene2d.ui.ProgressBar
- properties: {
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
- optional: false
- value: bar-frame
- }
- disabledBackground: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ checked: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledBackground
+ name: checked
optional: true
value: null
}
- knob: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ checkedOver: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knob
+ name: checkedOver
optional: true
- value: text-cursor
+ value: null
}
- disabledKnob: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ checkedFocused: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledKnob
+ name: checkedFocused
optional: true
value: null
}
- knobBefore: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ disabled: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knobBefore
+ name: disabled
optional: true
value: null
}
- knobAfter: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knobAfter
+ pressedOffsetX: {
+ type: float
+ name: pressedOffsetX
optional: true
- value: null
+ value: 0
}
- disabledKnobBefore: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledKnobBefore
+ pressedOffsetY: {
+ type: float
+ name: pressedOffsetY
optional: true
- value: null
+ value: 0
}
- disabledKnobAfter: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledKnobAfter
+ unpressedOffsetX: {
+ type: float
+ name: unpressedOffsetX
optional: true
- value: null
+ value: 0
+ }
+ unpressedOffsetY: {
+ type: float
+ name: unpressedOffsetY
+ optional: true
+ value: 0
+ }
+ checkedOffsetX: {
+ type: float
+ name: checkedOffsetX
+ optional: true
+ value: 0
+ }
+ checkedOffsetY: {
+ type: float
+ name: checkedOffsetY
+ optional: true
+ value: 0
}
}
- deletable: false
+ deletable: true
parent: null
}
+ ]
+ com.badlogic.gdx.scenes.scene2d.ui.Tree: [
{
class: com.ray3k.skincomposer.data.StyleData
- name: default-vertical
- clazz: com.badlogic.gdx.scenes.scene2d.ui.ProgressBar
+ name: default
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Tree
properties: {
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ plus: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
+ name: plus
optional: false
value: null
}
- disabledBackground: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledBackground
- optional: true
- value: null
- }
- knob: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ minus: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knob
- optional: true
+ name: minus
+ optional: false
value: null
}
- disabledKnob: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ plusOver: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledKnob
+ name: plusOver
optional: true
value: null
}
- knobBefore: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ minusOver: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knobBefore
+ name: minusOver
optional: true
value: null
}
- knobAfter: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ over: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knobAfter
+ name: over
optional: true
value: null
}
- disabledKnobBefore: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ selection: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledKnobBefore
+ name: selection
optional: true
value: null
}
- disabledKnobAfter: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ background: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledKnobAfter
+ name: background
optional: true
value: null
}
@@ -3985,233 +4094,306 @@ jsonData: {
deletable: false
parent: null
}
+ ]
+ com.badlogic.gdx.scenes.scene2d.ui.Slider: [
{
class: com.ray3k.skincomposer.data.StyleData
- name: bar
- clazz: com.badlogic.gdx.scenes.scene2d.ui.ProgressBar
+ name: default-horizontal
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Slider
properties: {
+ knobOver: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: knobOver
+ optional: true
+ value: null
+ }
+ knobDown: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: knobDown
+ optional: true
+ value: null
+ }
background: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: background
optional: false
value: bar-frame
}
disabledBackground: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabledBackground
optional: true
value: null
}
knob: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: knob
optional: true
- value: bar
+ value: null
}
disabledKnob: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabledKnob
optional: true
value: null
}
knobBefore: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: knobBefore
optional: true
- value: null
+ value: bar
}
knobAfter: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: knobAfter
optional: true
value: null
}
disabledKnobBefore: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabledKnobBefore
optional: true
value: null
}
disabledKnobAfter: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledKnobAfter
+ name: disabledKnobAfter
+ optional: true
+ value: null
+ }
+ }
+ deletable: false
+ parent: null
+ }
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: default-vertical
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Slider
+ properties: {
+ knobOver: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: knobOver
+ optional: true
+ value: null
+ }
+ knobDown: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: knobDown
optional: true
value: null
}
- }
- deletable: true
- parent: null
- }
- {
- class: com.ray3k.skincomposer.data.StyleData
- name: ui
- clazz: com.badlogic.gdx.scenes.scene2d.ui.ProgressBar
- properties: {
background: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: background
optional: false
- value: h-scroll
+ value: null
}
disabledBackground: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabledBackground
optional: true
value: null
}
knob: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: knob
optional: true
- value: h-scroll-knob
+ value: null
}
disabledKnob: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabledKnob
optional: true
value: null
}
knobBefore: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: knobBefore
optional: true
- value: h-scroll-before
+ value: null
}
knobAfter: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: knobAfter
optional: true
value: null
}
disabledKnobBefore: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabledKnobBefore
optional: true
value: null
}
disabledKnobAfter: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabledKnobAfter
optional: true
value: null
}
}
- deletable: true
+ deletable: false
parent: null
}
]
- com.badlogic.gdx.scenes.scene2d.ui.ScrollPane: [
+ com.badlogic.gdx.scenes.scene2d.ui.Window: [
{
class: com.ray3k.skincomposer.data.StyleData
name: default
- clazz: com.badlogic.gdx.scenes.scene2d.ui.ScrollPane
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Window
properties: {
background: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: background
optional: true
- value: simple-window
+ value: dark-window
}
- corner: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: corner
- optional: true
- value: null
+ titleFont: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: titleFont
+ optional: false
+ value: cinzel
}
- hScroll: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: hScroll
+ titleFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: titleFontColor
optional: true
- value: scale_bar
+ value: ao-white
}
- hScrollKnob: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ stageBackground: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: hScrollKnob
+ name: stageBackground
optional: true
value: null
}
- vScroll: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ }
+ deletable: false
+ parent: null
+ }
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: inventory
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Window
+ properties: {
+ background: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: vScroll
+ name: background
+ optional: true
+ value: slot-frame
+ }
+ titleFont: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: titleFont
+ optional: false
+ value: simple-with-border
+ }
+ titleFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: titleFontColor
optional: true
value: null
}
- vScrollKnob: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ stageBackground: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: vScrollKnob
+ name: stageBackground
optional: true
value: null
}
}
- deletable: false
+ deletable: true
parent: null
}
{
class: com.ray3k.skincomposer.data.StyleData
- name: no-background
- clazz: com.badlogic.gdx.scenes.scene2d.ui.ScrollPane
+ name: ui
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Window
properties: {
background: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: background
optional: true
+ value: body-bg
+ }
+ titleFont: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: titleFont
+ optional: false
+ value: cinzel
+ }
+ titleFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: titleFontColor
+ optional: true
value: null
}
- corner: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ stageBackground: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: corner
+ name: stageBackground
optional: true
value: null
}
- hScroll: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ }
+ deletable: true
+ parent: null
+ }
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: body
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Window
+ properties: {
+ background: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: hScroll
+ name: background
optional: true
- value: scale_bar
+ value: body-bg
}
- hScrollKnob: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ titleFont: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: titleFont
+ optional: false
+ value: cinzel
+ }
+ titleFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: titleFontColor
+ optional: true
+ value: null
+ }
+ stageBackground: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: hScrollKnob
+ name: stageBackground
optional: true
value: null
}
- vScroll: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ }
+ deletable: true
+ parent: null
+ }
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: paper
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Window
+ properties: {
+ background: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: vScroll
+ name: background
+ optional: true
+ value: paper-bg
+ }
+ titleFont: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: titleFont
+ optional: false
+ value: cinzel
+ }
+ titleFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: titleFontColor
optional: true
value: null
}
- vScrollKnob: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ stageBackground: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: vScrollKnob
+ name: stageBackground
optional: true
value: null
}
@@ -4221,122 +4403,140 @@ jsonData: {
}
{
class: com.ray3k.skincomposer.data.StyleData
- name: ui
- clazz: com.badlogic.gdx.scenes.scene2d.ui.ScrollPane
+ name: content
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Window
properties: {
background: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: background
optional: true
- value: null
+ value: content-bg
}
- corner: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: corner
+ titleFont: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: titleFont
+ optional: false
+ value: cinzel
+ }
+ titleFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: titleFontColor
optional: true
- value: semi-transparent
+ value: null
}
- hScroll: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ stageBackground: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: hScroll
+ name: stageBackground
optional: true
- value: h-scroll
+ value: null
}
- hScrollKnob: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ }
+ deletable: true
+ parent: null
+ }
+ {
+ class: com.ray3k.skincomposer.data.StyleData
+ name: spells
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.Window
+ properties: {
+ background: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: hScrollKnob
+ name: background
optional: true
- value: h-scroll-knob
+ value: slot-frame
}
- vScroll: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: vScroll
+ titleFont: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: titleFont
+ optional: false
+ value: simple-with-border
+ }
+ titleFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: titleFontColor
optional: true
- value: v-scroll
+ value: null
}
- vScrollKnob: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ stageBackground: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: vScrollKnob
+ name: stageBackground
optional: true
- value: v-scroll-knob
+ value: null
}
}
deletable: true
parent: null
}
]
- com.badlogic.gdx.scenes.scene2d.ui.SelectBox: [
+ com.badlogic.gdx.scenes.scene2d.ui.TextField: [
{
class: com.ray3k.skincomposer.data.StyleData
name: default
- clazz: com.badlogic.gdx.scenes.scene2d.ui.SelectBox
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.TextField
properties: {
font: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.g2d.BitmapFont
name: font
optional: false
value: simple
}
fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: fontColor
optional: false
value: ao-white
}
+ focusedFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: focusedFontColor
+ optional: true
+ value: null
+ }
disabledFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: disabledFontColor
optional: true
- value: ao-light-grey
+ value: null
}
background: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: background
optional: true
- value: hover-button-pressed
+ value: secondary
}
- scrollStyle: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle
- name: scrollStyle
- optional: false
- value: no-background
+ focusedBackground: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: focusedBackground
+ optional: true
+ value: null
}
- listStyle: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle
- name: listStyle
- optional: false
- value: default
+ disabledBackground: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: disabledBackground
+ optional: true
+ value: null
}
- backgroundOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ cursor: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: backgroundOver
+ name: cursor
optional: true
- value: null
+ value: text-cursor
}
- backgroundOpen: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ selection: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: backgroundOpen
+ name: selection
+ optional: true
+ value: semi-transparent
+ }
+ messageFont: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: messageFont
optional: true
value: null
}
- backgroundDisabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: backgroundDisabled
+ messageFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: messageFontColor
optional: true
value: null
}
@@ -4347,68 +4547,71 @@ jsonData: {
{
class: com.ray3k.skincomposer.data.StyleData
name: ui
- clazz: com.badlogic.gdx.scenes.scene2d.ui.SelectBox
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.TextField
properties: {
font: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.g2d.BitmapFont
name: font
optional: false
value: cinzel
}
fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: fontColor
optional: false
- value: ao-white
+ value: secondary
+ }
+ focusedFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: focusedFontColor
+ optional: true
+ value: null
}
disabledFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: disabledFontColor
optional: true
- value: ao-light-grey
+ value: null
}
background: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: background
optional: true
- value: select-box
- }
- scrollStyle: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle
- name: scrollStyle
- optional: false
- value: ui
- }
- listStyle: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle
- name: listStyle
- optional: false
- value: ui
+ value: semi-transparent
}
- backgroundOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ focusedBackground: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: backgroundOver
+ name: focusedBackground
optional: true
value: null
}
- backgroundOpen: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ disabledBackground: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: backgroundOpen
+ name: disabledBackground
optional: true
value: null
}
- backgroundDisabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ cursor: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: backgroundDisabled
+ name: cursor
+ optional: true
+ value: text-cursor
+ }
+ selection: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: selection
+ optional: true
+ value: selection
+ }
+ messageFont: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: messageFont
+ optional: true
+ value: null
+ }
+ messageFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: messageFontColor
optional: true
value: null
}
@@ -4417,504 +4620,403 @@ jsonData: {
parent: null
}
]
- com.badlogic.gdx.scenes.scene2d.ui.Slider: [
+ com.badlogic.gdx.scenes.scene2d.ui.TextButton: [
{
class: com.ray3k.skincomposer.data.StyleData
- name: default-horizontal
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Slider
+ name: default
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.TextButton
properties: {
- knobOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knobOver
- optional: true
- value: null
+ font: {
+ type: com.badlogic.gdx.graphics.g2d.BitmapFont
+ name: font
+ optional: false
+ value: simple
}
- knobDown: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knobDown
+ fontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: fontColor
optional: true
- value: null
+ value: ao-white
}
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
- optional: false
- value: bar-frame
+ downFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: downFontColor
+ optional: true
+ value: ao-brown
}
- disabledBackground: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledBackground
+ overFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: overFontColor
optional: true
- value: null
+ value: ao-light-grey
}
- knob: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knob
+ checkedFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: checkedFontColor
optional: true
value: null
}
- disabledKnob: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledKnob
+ checkedOverFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: checkedOverFontColor
optional: true
value: null
}
- knobBefore: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knobBefore
+ disabledFontColor: {
+ type: com.badlogic.gdx.graphics.Color
+ name: disabledFontColor
optional: true
- value: bar
+ value: ao-grey
}
- knobAfter: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ up: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knobAfter
+ name: up
optional: true
- value: null
+ value: hover-button-pressed
}
- disabledKnobBefore: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ down: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledKnobBefore
+ name: down
optional: true
- value: null
+ value: hover-button-2
}
- disabledKnobAfter: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ over: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledKnobAfter
+ name: over
optional: true
value: null
}
- }
- deletable: false
- parent: null
- }
- {
- class: com.ray3k.skincomposer.data.StyleData
- name: default-vertical
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Slider
- properties: {
- knobOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ focused: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knobOver
+ name: focused
optional: true
- value: null
+ value: hover-button
}
- knobDown: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ checked: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knobDown
+ name: checked
optional: true
value: null
}
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
- optional: false
- value: null
- }
- disabledBackground: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ checkedOver: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledBackground
+ name: checkedOver
optional: true
value: null
}
- knob: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ checkedFocused: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knob
+ name: checkedFocused
optional: true
value: null
}
- disabledKnob: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ disabled: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledKnob
+ name: disabled
optional: true
value: null
}
- knobBefore: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knobBefore
+ pressedOffsetX: {
+ type: float
+ name: pressedOffsetX
optional: true
- value: null
+ value: 0
}
- knobAfter: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knobAfter
+ pressedOffsetY: {
+ type: float
+ name: pressedOffsetY
optional: true
- value: null
+ value: -1
}
- disabledKnobBefore: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledKnobBefore
+ unpressedOffsetX: {
+ type: float
+ name: unpressedOffsetX
optional: true
- value: null
+ value: 0
}
- disabledKnobAfter: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledKnobAfter
+ unpressedOffsetY: {
+ type: float
+ name: unpressedOffsetY
optional: true
- value: null
- }
- }
- deletable: false
- parent: null
- }
- ]
- com.badlogic.gdx.scenes.scene2d.ui.SplitPane: [
- {
- class: com.ray3k.skincomposer.data.StyleData
- name: default-horizontal
- clazz: com.badlogic.gdx.scenes.scene2d.ui.SplitPane
- properties: {
- handle: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: handle
- optional: false
- value: null
+ value: 0
}
- }
- deletable: false
- parent: null
- }
- {
- class: com.ray3k.skincomposer.data.StyleData
- name: default-vertical
- clazz: com.badlogic.gdx.scenes.scene2d.ui.SplitPane
- properties: {
- handle: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: handle
- optional: false
- value: null
+ checkedOffsetX: {
+ type: float
+ name: checkedOffsetX
+ optional: true
+ value: 0
+ }
+ checkedOffsetY: {
+ type: float
+ name: checkedOffsetY
+ optional: true
+ value: 0
}
}
deletable: false
parent: null
}
- ]
- com.badlogic.gdx.scenes.scene2d.ui.TextButton: [
{
class: com.ray3k.skincomposer.data.StyleData
- name: default
+ name: ui
clazz: com.badlogic.gdx.scenes.scene2d.ui.TextButton
properties: {
font: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.g2d.BitmapFont
name: font
optional: false
- value: simple
+ value: cinzel
}
fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: fontColor
optional: true
value: ao-white
}
downFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: downFontColor
optional: true
- value: ao-brown
+ value: ao-orange
}
overFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: overFontColor
optional: true
- value: ao-light-grey
+ value: orange
}
checkedFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: checkedFontColor
optional: true
value: null
}
checkedOverFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: checkedOverFontColor
optional: true
value: null
}
disabledFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: disabledFontColor
optional: true
value: ao-grey
}
up: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: up
optional: true
- value: hover-button-pressed
+ value: null
}
down: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: down
optional: true
- value: hover-button-2
+ value: null
}
over: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: over
optional: true
value: null
}
focused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: focused
optional: true
- value: hover-button
+ value: null
}
checked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checked
optional: true
value: null
}
checkedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedOver
optional: true
value: null
}
checkedFocused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedFocused
optional: true
value: null
}
disabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabled
optional: true
value: null
}
pressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetX
optional: true
value: 0
}
pressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetY
optional: true
- value: -1
+ value: 0
}
unpressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetX
optional: true
value: 0
}
unpressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetY
optional: true
value: 0
}
checkedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetX
optional: true
value: 0
}
checkedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetY
optional: true
value: 0
}
}
- deletable: false
+ deletable: true
parent: null
}
{
class: com.ray3k.skincomposer.data.StyleData
- name: ui
+ name: magic
clazz: com.badlogic.gdx.scenes.scene2d.ui.TextButton
properties: {
font: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.g2d.BitmapFont
name: font
optional: false
value: cinzel
}
fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: fontColor
optional: true
- value: ao-white
+ value: ao-orange
}
downFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: downFontColor
optional: true
- value: ao-orange
+ value: null
}
overFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: overFontColor
optional: true
- value: orange
+ value: null
}
checkedFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: checkedFontColor
optional: true
value: null
}
checkedOverFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: checkedOverFontColor
optional: true
value: null
}
disabledFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.graphics.Color
name: disabledFontColor
optional: true
- value: ao-grey
+ value: null
}
up: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: up
optional: true
- value: null
+ value: button
}
down: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: down
optional: true
- value: null
+ value: hover-button-pressed
}
over: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: over
optional: true
- value: null
+ value: hover-button
}
focused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: focused
optional: true
value: null
}
checked: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checked
optional: true
value: null
}
checkedOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedOver
optional: true
value: null
}
checkedFocused: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: checkedFocused
optional: true
value: null
}
disabled: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: disabled
optional: true
value: null
}
pressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetX
optional: true
value: 0
}
pressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: pressedOffsetY
optional: true
value: 0
}
unpressedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetX
optional: true
value: 0
}
unpressedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: unpressedOffsetY
optional: true
value: 0
}
checkedOffsetX: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetX
optional: true
value: 0
}
checkedOffsetY: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: float
name: checkedOffsetY
optional: true
@@ -4925,86 +5027,45 @@ jsonData: {
parent: null
}
]
- com.badlogic.gdx.scenes.scene2d.ui.TextField: [
+ com.badlogic.gdx.scenes.scene2d.ui.ScrollPane: [
{
class: com.ray3k.skincomposer.data.StyleData
name: default
- clazz: com.badlogic.gdx.scenes.scene2d.ui.TextField
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.ScrollPane
properties: {
- font: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: font
- optional: false
- value: simple
- }
- fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: fontColor
- optional: false
- value: ao-white
- }
- focusedFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: focusedFontColor
- optional: true
- value: null
- }
- disabledFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: disabledFontColor
- optional: true
- value: null
- }
background: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: background
optional: true
- value: secondary
+ value: simple-window
}
- focusedBackground: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ corner: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: focusedBackground
+ name: corner
optional: true
value: null
}
- disabledBackground: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ hScroll: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledBackground
+ name: hScroll
optional: true
- value: null
+ value: scale_bar
}
- cursor: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ hScrollKnob: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: cursor
+ name: hScrollKnob
optional: true
- value: text-cursor
+ value: null
}
- selection: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ vScroll: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: selection
- optional: true
- value: semi-transparent
- }
- messageFont: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: messageFont
+ name: vScroll
optional: true
value: null
}
- messageFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: messageFontColor
+ vScrollKnob: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: vScrollKnob
optional: true
value: null
}
@@ -5014,83 +5075,42 @@ jsonData: {
}
{
class: com.ray3k.skincomposer.data.StyleData
- name: ui
- clazz: com.badlogic.gdx.scenes.scene2d.ui.TextField
+ name: no-background
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.ScrollPane
properties: {
- font: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: font
- optional: false
- value: cinzel
- }
- fontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: fontColor
- optional: false
- value: secondary
- }
- focusedFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: focusedFontColor
- optional: true
- value: null
- }
- disabledFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: disabledFontColor
- optional: true
- value: null
- }
background: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: background
optional: true
- value: semi-transparent
- }
- focusedBackground: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: focusedBackground
- optional: true
value: null
}
- disabledBackground: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ corner: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: disabledBackground
+ name: corner
optional: true
value: null
}
- cursor: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ hScroll: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: cursor
+ name: hScroll
optional: true
- value: text-cursor
+ value: scale_bar
}
- selection: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ hScrollKnob: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: selection
+ name: hScrollKnob
optional: true
- value: selection
+ value: null
}
- messageFont: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: messageFont
+ vScroll: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: vScroll
optional: true
value: null
}
- messageFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: messageFontColor
+ vScrollKnob: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: vScrollKnob
optional: true
value: null
}
@@ -5098,56 +5118,103 @@ jsonData: {
deletable: true
parent: null
}
- ]
- com.badlogic.gdx.scenes.scene2d.ui.TextTooltip: [
{
class: com.ray3k.skincomposer.data.StyleData
- name: default
- clazz: com.badlogic.gdx.scenes.scene2d.ui.TextTooltip
+ name: ui
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.ScrollPane
properties: {
- label: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle
- name: label
- optional: false
- value: default
- }
background: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: background
optional: true
value: null
}
- wrapWidth: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: float
- name: wrapWidth
+ corner: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: corner
optional: true
- value: 300
+ value: semi-transparent
+ }
+ hScroll: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: hScroll
+ optional: true
+ value: h-scroll
+ }
+ hScrollKnob: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: hScrollKnob
+ optional: true
+ value: h-scroll-knob
+ }
+ vScroll: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: vScroll
+ optional: true
+ value: v-scroll
+ }
+ vScrollKnob: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: vScrollKnob
+ optional: true
+ value: v-scroll-knob
}
}
- deletable: false
+ deletable: true
parent: null
}
]
- com.badlogic.gdx.scenes.scene2d.ui.Touchpad: [
+ com.badlogic.gdx.scenes.scene2d.ui.ProgressBar: [
{
class: com.ray3k.skincomposer.data.StyleData
- name: default
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Touchpad
+ name: default-horizontal
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.ProgressBar
properties: {
background: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
+ name: background
+ optional: false
+ value: bar-frame
+ }
+ disabledBackground: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: disabledBackground
+ optional: true
+ value: null
+ }
+ knob: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: knob
+ optional: true
+ value: text-cursor
+ }
+ disabledKnob: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: disabledKnob
+ optional: true
+ value: null
+ }
+ knobBefore: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: knobBefore
+ optional: true
+ value: null
+ }
+ knobAfter: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: knobAfter
+ optional: true
+ value: null
+ }
+ disabledKnobBefore: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: disabledKnobBefore
optional: true
value: null
}
- knob: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ disabledKnobAfter: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: knob
+ name: disabledKnobAfter
optional: true
value: null
}
@@ -5155,59 +5222,56 @@ jsonData: {
deletable: false
parent: null
}
- ]
- com.badlogic.gdx.scenes.scene2d.ui.Tree: [
{
class: com.ray3k.skincomposer.data.StyleData
- name: default
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Tree
+ name: default-vertical
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.ProgressBar
properties: {
- plus: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ background: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: plus
+ name: background
optional: false
value: null
}
- minus: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ disabledBackground: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: minus
- optional: false
+ name: disabledBackground
+ optional: true
value: null
}
- plusOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ knob: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: plusOver
+ name: knob
optional: true
value: null
}
- minusOver: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ disabledKnob: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: minusOver
+ name: disabledKnob
optional: true
value: null
}
- over: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ knobBefore: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: over
+ name: knobBefore
optional: true
value: null
}
- selection: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ knobAfter: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: selection
+ name: knobAfter
optional: true
value: null
}
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ disabledKnobBefore: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
+ name: disabledKnobBefore
+ optional: true
+ value: null
+ }
+ disabledKnobAfter: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: disabledKnobAfter
optional: true
value: null
}
@@ -5215,75 +5279,56 @@ jsonData: {
deletable: false
parent: null
}
- ]
- com.badlogic.gdx.scenes.scene2d.ui.Window: [
{
class: com.ray3k.skincomposer.data.StyleData
- name: default
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Window
+ name: bar
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.ProgressBar
properties: {
background: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: background
- optional: true
- value: dark-window
- }
- titleFont: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: titleFont
optional: false
- value: cinzel
+ value: bar-frame
}
- titleFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: titleFontColor
+ disabledBackground: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: disabledBackground
optional: true
- value: ao-white
+ value: null
}
- stageBackground: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ knob: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: stageBackground
+ name: knob
+ optional: true
+ value: bar
+ }
+ disabledKnob: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: disabledKnob
optional: true
value: null
}
- }
- deletable: false
- parent: null
- }
- {
- class: com.ray3k.skincomposer.data.StyleData
- name: inventory
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Window
- properties: {
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ knobBefore: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
+ name: knobBefore
optional: true
- value: slot-frame
+ value: null
}
- titleFont: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: titleFont
- optional: false
- value: simple-with-border
+ knobAfter: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: knobAfter
+ optional: true
+ value: null
}
- titleFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: titleFontColor
+ disabledKnobBefore: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: disabledKnobBefore
optional: true
value: null
}
- stageBackground: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ disabledKnobAfter: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: stageBackground
+ name: disabledKnobAfter
optional: true
value: null
}
@@ -5294,70 +5339,53 @@ jsonData: {
{
class: com.ray3k.skincomposer.data.StyleData
name: ui
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Window
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.ProgressBar
properties: {
background: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: background
- optional: true
- value: body-bg
- }
- titleFont: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: titleFont
optional: false
- value: cinzel
+ value: h-scroll
}
- titleFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: titleFontColor
+ disabledBackground: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: disabledBackground
optional: true
value: null
}
- stageBackground: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ knob: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: stageBackground
+ name: knob
+ optional: true
+ value: h-scroll-knob
+ }
+ disabledKnob: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: disabledKnob
optional: true
value: null
}
- }
- deletable: true
- parent: null
- }
- {
- class: com.ray3k.skincomposer.data.StyleData
- name: body
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Window
- properties: {
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ knobBefore: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
+ name: knobBefore
optional: true
- value: body-bg
+ value: h-scroll-before
}
- titleFont: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: titleFont
- optional: false
- value: cinzel
+ knobAfter: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: knobAfter
+ optional: true
+ value: null
}
- titleFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: titleFontColor
+ disabledKnobBefore: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: disabledKnobBefore
optional: true
value: null
}
- stageBackground: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ disabledKnobAfter: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: stageBackground
+ name: disabledKnobAfter
optional: true
value: null
}
@@ -5367,71 +5395,54 @@ jsonData: {
}
{
class: com.ray3k.skincomposer.data.StyleData
- name: paper
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Window
+ name: loading
+ clazz: com.badlogic.gdx.scenes.scene2d.ui.ProgressBar
properties: {
background: {
- class: com.ray3k.skincomposer.data.StyleProperty
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
name: background
- optional: true
- value: paper-bg
- }
- titleFont: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: titleFont
optional: false
- value: cinzel
+ value: h-scroll
}
- titleFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: titleFontColor
+ disabledBackground: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: disabledBackground
optional: true
value: null
}
- stageBackground: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ knob: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: stageBackground
+ name: knob
+ optional: true
+ value: h-scroll-knob
+ }
+ disabledKnob: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: disabledKnob
optional: true
value: null
}
- }
- deletable: true
- parent: null
- }
- {
- class: com.ray3k.skincomposer.data.StyleData
- name: content
- clazz: com.badlogic.gdx.scenes.scene2d.ui.Window
- properties: {
- background: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ knobBefore: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: background
+ name: knobBefore
optional: true
- value: content-bg
+ value: h-scroll-before
}
- titleFont: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.g2d.BitmapFont
- name: titleFont
- optional: false
- value: cinzel
+ knobAfter: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: knobAfter
+ optional: true
+ value: null
}
- titleFontColor: {
- class: com.ray3k.skincomposer.data.StyleProperty
- type: com.badlogic.gdx.graphics.Color
- name: titleFontColor
+ disabledKnobBefore: {
+ type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
+ name: disabledKnobBefore
optional: true
value: null
}
- stageBackground: {
- class: com.ray3k.skincomposer.data.StyleProperty
+ disabledKnobAfter: {
type: com.badlogic.gdx.scenes.scene2d.utils.Drawable
- name: stageBackground
+ name: disabledKnobAfter
optional: true
value: null
}
@@ -5444,27 +5455,28 @@ jsonData: {
customClasses: []
}
preferences: {
- maxUndos: {
- class: java.lang.Integer
- value: 30
- }
- last-import-export-path: {
- class: java.lang.String
- value: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-2/ao-skin.json
+ simple-names: {
+ class: java.lang.Boolean
+ value: true
}
id: {
class: java.lang.Integer
value: 861479681
}
- simple-names: {
- class: java.lang.Boolean
- value: true
+ last-import-export-path: {
+ class: java.lang.String
+ value: C:/Users/guidota/repository/finisterra/desktop/assets/data/skins/classic/ao-skin.json
}
resources-relative: {
class: java.lang.Boolean
value: true
}
+ maxUndos: {
+ class: java.lang.Integer
+ value: 30
+ }
}
-saveFile: C:/Users/guido/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin.scmp
-version: 34
+saveFile: C:/Users/guidota/repository/finisterra/desktop/assets/data/ui/ao-skin-project/ao-skin.scmp
+version: 38
+sceneComposer: null
}
\ No newline at end of file
diff --git a/desktop/assets/data/ui/ao-skin-project/ao-skin_data/inventory.png b/desktop/assets/data/ui/ao-skin-project/ao-skin_data/inventory.png
new file mode 100644
index 00000000..a544c5a4
Binary files /dev/null and b/desktop/assets/data/ui/ao-skin-project/ao-skin_data/inventory.png differ
diff --git a/desktop/assets/data/ui/ao-skin-project/ao-skin_data/spells.png b/desktop/assets/data/ui/ao-skin-project/ao-skin_data/spells.png
new file mode 100644
index 00000000..a35523f5
Binary files /dev/null and b/desktop/assets/data/ui/ao-skin-project/ao-skin_data/spells.png differ
diff --git a/desktop/assets/data/ui/ao-skin-project/ao-skin_data/staff.png b/desktop/assets/data/ui/ao-skin-project/ao-skin_data/staff.png
new file mode 100644
index 00000000..74064530
Binary files /dev/null and b/desktop/assets/data/ui/ao-skin-project/ao-skin_data/staff.png differ
diff --git a/desktop/assets/data/ui/images/shadow.png b/desktop/assets/data/ui/images/shadow.png
new file mode 100644
index 00000000..2c965758
Binary files /dev/null and b/desktop/assets/data/ui/images/shadow.png differ
diff --git a/desktop/build.gradle b/desktop/build.gradle
index aaf2ed45..2714c865 100644
--- a/desktop/build.gradle
+++ b/desktop/build.gradle
@@ -68,7 +68,7 @@ task bundle(type: Exec, dependsOn: [dist, jlink]) {
'--type', 'app-image',
'--name', project.appName,
'--vendor', "Argentum Online Libre",
- '--app-version', "${project.version}",
+ '--app-version', "1.15.0",
'--dest', releasePath,
'--runtime-image', prebuiltJRE,
'--input', "${buildDir}/libs",
@@ -99,7 +99,7 @@ task bundle(type: Exec, dependsOn: [dist, jlink]) {
copy {
from(assetsPath)
- from("${projectDir}/Config.json")
+ from("${projectDir}/config.json")
switch (OS) {
case OperatingSystem.MAC_OS:
diff --git a/desktop/config.json b/desktop/config.json
new file mode 100644
index 00000000..e2570a34
--- /dev/null
+++ b/desktop/config.json
@@ -0,0 +1 @@
+{"initConfig":{"language":"es_AR","video":{"width":1280,"height":720,"vSync":true,"HiDPI_Mode":"Logical"},"resizeable":true,"disableAudio":false,"startMaximized":true},"account":{"email":"asd","password":"asd"},"network":{"servers":[{"desc":"localhost","hostname":"127.0.0.1","port":8667},{"desc":"Servidor @recox","hostname":"45.235.98.29","port":8667}],"selected":1}}
\ No newline at end of file
diff --git a/desktop/src/launcher/DesktopLauncher.java b/desktop/src/launcher/DesktopLauncher.java
index 9425bc11..caf27e48 100644
--- a/desktop/src/launcher/DesktopLauncher.java
+++ b/desktop/src/launcher/DesktopLauncher.java
@@ -6,9 +6,9 @@
import com.badlogic.gdx.graphics.glutils.HdpiMode;
import com.esotericsoftware.minlog.Log;
import game.AOGame;
-import game.ClientConfiguration;
-import game.ClientConfiguration.Init;
-import game.ClientConfiguration.Init.Video;
+import game.Config;
+import game.Config.Init;
+import game.Config.Init.Video;
import game.utils.Resources;
import shared.util.LogSystem;
@@ -16,6 +16,8 @@
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
+import java.util.Arrays;
+import java.util.Comparator;
public class DesktopLauncher {
@@ -26,27 +28,43 @@ public static void main(String[] arg) {
Log.setLogger(new LogSystem());
// Load desktop config.json or create default.
- ClientConfiguration config = ClientConfiguration.loadConfig(Resources.CLIENT_CONFIG);
- if (config == null) {
- Log.warn("DesktopLauncher", "Desktop config.json not found, creating default.");
- config = ClientConfiguration.createConfig();
- config.save(Resources.CLIENT_CONFIG);
+ Config config;
+ if (Config.fileExists(Resources.CLIENT_CONFIG)) {
+ config = Config.fileLoad(Resources.CLIENT_CONFIG);
}
- Init initConfig = config.getInitConfig();
- Video video = initConfig.getVideo();
+ else {
+ Log.info("DesktopLauncher", "Config file " + Resources.CLIENT_CONFIG + " not found, creating default.");
+ config = Config.getDefault();
+ config.fileSave(Resources.CLIENT_CONFIG);
+ }
+
+ Init initConfig = config.initConfig;
+ Video video = initConfig.video;
- Graphics.DisplayMode displayMode = Lwjgl3ApplicationConfiguration.getDisplayMode();
+ Graphics.DisplayMode[] displayModes = Lwjgl3ApplicationConfiguration.getDisplayModes();
+ Graphics.DisplayMode displayMode = Arrays.stream(displayModes)
+ .filter(dm -> dm.height == 720)
+ .max(Comparator.comparingInt(o -> o.refreshRate))
+ .orElse(Arrays.stream(displayModes)
+ .filter(dm -> dm.height == 768)
+ .max(Comparator.comparingInt(o -> o.refreshRate))
+ .orElse(Lwjgl3ApplicationConfiguration.getDisplayMode())
+ );
// Build LWJGL configuration
Lwjgl3ApplicationConfiguration cfg = new Lwjgl3ApplicationConfiguration();
- cfg.setTitle("Finisterra - Argentum Online Java");
- cfg.setWindowedMode(displayMode.width, displayMode.height);
- //cfg.setFullscreenMode(displayMode);
- cfg.useVsync(video.getVsync());
- cfg.setIdleFPS(72);
- cfg.setResizable(initConfig.isResizeable());
+ cfg.setTitle("Finisterra");
+// if (displayMode.equals(Lwjgl3ApplicationConfiguration.getDisplayMode())) {
+// cfg.setFullscreenMode(displayMode);
+// cfg.setDecorated(false);
+// } else {
+ cfg.setWindowedMode(displayMode.width, displayMode.height);
+ cfg.setDecorated(true);
+// }
+ cfg.useVsync(true);
+ cfg.setIdleFPS(60);
+ cfg.setResizable(false);
cfg.disableAudio(initConfig.isDisableAudio());
- cfg.setMaximized(initConfig.isStartMaximized());
cfg.setWindowSizeLimits(854, 480, -1, -1);
if (video.getHiDPIMode().equalsIgnoreCase("Pixels")) {
diff --git a/desktop/src/test/TestLauncher.java b/desktop/src/test/TestLauncher.java
new file mode 100644
index 00000000..80cb1b14
--- /dev/null
+++ b/desktop/src/test/TestLauncher.java
@@ -0,0 +1,84 @@
+package test;
+
+import com.badlogic.gdx.Graphics;
+import com.badlogic.gdx.backends.lwjgl3.Lwjgl3Application;
+import com.badlogic.gdx.backends.lwjgl3.Lwjgl3ApplicationConfiguration;
+import com.badlogic.gdx.graphics.glutils.HdpiMode;
+import com.esotericsoftware.minlog.Log;
+import game.Config;
+import game.Config.Init;
+import game.Config.Init.Video;
+import game.utils.Resources;
+import shared.util.LogSystem;
+
+import javax.swing.*;
+import java.io.File;
+import java.io.IOException;
+import java.io.PrintWriter;
+
+/**
+ * Launcher genérico para correr pruebas
+ * En Intellij IDEA, hacer click derecho en la clase y tocar Run 'TestLauncher.main()'
+ * @todo Revisar
+ */
+public class TestLauncher {
+
+ public static void main(String[] arg) {
+ System.setProperty("org.lwjgl.opengl.Display.enableOSXFullscreenModeAPI", "true");
+ System.setProperty("com.apple.mrj.application.apple.menu.about.name", "Finisterra");
+
+ Log.setLogger(new LogSystem());
+
+ // Load desktop config.json or create default.
+ Config config;
+ if (Config.fileExists(Resources.CLIENT_CONFIG)) {
+ config = Config.fileLoad(Resources.CLIENT_CONFIG);
+ }
+ else {
+ Log.info("DesktopLauncher", "Config file " + Resources.CLIENT_CONFIG + " not found, creating default.");
+ config = Config.getDefault();
+ config.fileSave(Resources.CLIENT_CONFIG);
+ }
+
+ Init initConfig = config.initConfig;
+ Video video = initConfig.video;
+
+ Graphics.DisplayMode displayMode = Lwjgl3ApplicationConfiguration.getDisplayMode();
+
+ // Build LWJGL configuration
+ Lwjgl3ApplicationConfiguration cfg = new Lwjgl3ApplicationConfiguration();
+ cfg.setTitle("Finisterra - Argentum Online Java");
+ cfg.setWindowedMode(displayMode.width, displayMode.height);
+ //cfg.setFullscreenMode(displayMode);
+ cfg.useVsync(video.getVsync());
+ cfg.setIdleFPS(72);
+ cfg.setResizable(initConfig.isResizeable());
+ cfg.disableAudio(initConfig.isDisableAudio());
+ cfg.setMaximized(initConfig.isStartMaximized());
+ cfg.setWindowSizeLimits(854, 480, -1, -1);
+
+ if (video.getHiDPIMode().equalsIgnoreCase("Pixels")) {
+ cfg.setHdpiMode(HdpiMode.Pixels);
+ } else {
+ cfg.setHdpiMode(HdpiMode.Logical);
+ }
+
+ // Set the icon that will be used in the title bar.
+ cfg.setWindowIcon(Resources.CLIENT_ICON);
+
+ // Launch application.
+ try {
+ new Lwjgl3Application(new UITest(), cfg);
+ } catch (Exception e) {
+ e.printStackTrace();
+ JOptionPane.showMessageDialog(null, e.getMessage());
+ try {
+ PrintWriter pw = new PrintWriter(new File("error.txt"));
+ e.printStackTrace(pw);
+ pw.close();
+ } catch (IOException e1) {
+ e1.printStackTrace();
+ }
+ }
+ }
+}
diff --git a/output/descriptors/animations.json b/output/descriptors/animations.json
new file mode 100644
index 00000000..a0892de8
--- /dev/null
+++ b/output/descriptors/animations.json
@@ -0,0 +1 @@
+[{"id":25,"frames":[15,16,17,18,19,20,21,22,23,24],"speed":166},{"id":30,"frames":[26,27,28,29],"speed":66},{"id":49,"frames":[38,39,40,41,42,43,44,45,46,47,48],"speed":183},{"id":60,"frames":[56,57,58,59],"speed":66},{"id":77,"frames":[61,62,63,64],"speed":66},{"id":78,"frames":[65,66,67,68],"speed":66},{"id":79,"frames":[69,70,71,72],"speed":66},{"id":80,"frames":[73,74,75,76],"speed":66},{"id":93,"frames":[85,86,87,88,89,90,91,92],"speed":133},{"id":99,"frames":[96,97,98],"speed":50},{"id":115,"frames":[100,101,102,103,104,105,106,107,108,109,110,111,112,113,114],"speed":250},{"id":119,"frames":[116,117,118],"speed":50},{"id":123,"frames":[120,121,122],"speed":50},{"id":134,"frames":[124,125,126,127,128,129,130,131,132,133],"speed":166},{"id":145,"frames":[135,136,137,138,139,140,141,142,143,144],"speed":166},{"id":156,"frames":[146,147,148,149,150,151,152,153,154,155],"speed":166},{"id":172,"frames":[157,158,159,160,161,162,163,164,165,166,167,168,169,170,171],"speed":250},{"id":183,"frames":[173,174,175,176,177,178,179,180,181,182],"speed":166},{"id":194,"frames":[184,185,186,187,188,189,190,191,192,193],"speed":166},{"id":205,"frames":[195,196,197,198,199,200,201,202,203,204],"speed":166},{"id":221,"frames":[206,207,208,209,210,211,212,213,214,215,216,217,218,219,220],"speed":250},{"id":237,"frames":[222,223,224,225,226,227,228,229,230,231,232,233,234,235,236],"speed":250},{"id":259,"frames":[238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258],"speed":350},{"id":265,"frames":[260,261,262,263,264],"speed":83},{"id":275,"frames":[266,267,268,269,270,271,272,273],"speed":133},{"id":286,"frames":[276,277,278,279,280,281,282,283,284,285],"speed":166},{"id":297,"frames":[287,288,289,290,291,292,293,294,295,296],"speed":166},{"id":308,"frames":[298,299,300,301,302,303,304,305,306,307],"speed":166},{"id":420,"frames":[412,413,414,415,416,417,418,419],"speed":133},{"id":421,"frames":[405,406,407,408,409,410,411],"speed":116},{"id":460,"frames":[448,449,450],"speed":50},{"id":461,"frames":[451,452,453],"speed":50},{"id":462,"frames":[454,455,456],"speed":50},{"id":463,"frames":[457,458,459],"speed":50},{"id":488,"frames":[468,469,470,471,472],"speed":83},{"id":489,"frames":[473,474,475,476,477],"speed":83},{"id":490,"frames":[478,479,480,481,482],"speed":83},{"id":491,"frames":[483,484,485,486,487],"speed":83},{"id":669,"frames":[661,662,663,664,665,666,667,668],"speed":133},{"id":816,"frames":[808,809,810,811,812,812,813,814],"speed":133},{"id":825,"frames":[817,818,819,820,821,822,823,824],"speed":133},{"id":834,"frames":[826,827,828,829,830,831,832,833],"speed":133},{"id":843,"frames":[835,836,837,838,839,840,841,842],"speed":133},{"id":859,"frames":[851,852],"speed":33},{"id":860,"frames":[853,854],"speed":33},{"id":861,"frames":[855,856],"speed":33},{"id":862,"frames":[857,858],"speed":33},{"id":902,"frames":[880,881,882,883,884,885],"speed":100},{"id":903,"frames":[886,887,888,889,890,891],"speed":100},{"id":904,"frames":[892,893,894,895,896],"speed":83},{"id":905,"frames":[897,898,899,900,901],"speed":83},{"id":928,"frames":[906,907,908,909,910,911],"speed":100},{"id":929,"frames":[912,913,914,914,916,917],"speed":100},{"id":930,"frames":[918,919,920,921,922],"speed":83},{"id":931,"frames":[923,924,925,926,927],"speed":83},{"id":955,"frames":[933,934,935,936,937,938],"speed":100},{"id":956,"frames":[939,940,941,942,943,944],"speed":100},{"id":957,"frames":[945,946,947,948,949],"speed":83},{"id":958,"frames":[950,951,952,953,954],"speed":83},{"id":982,"frames":[960,961,962,963,964,965],"speed":100},{"id":983,"frames":[966,967,968,969,970,971],"speed":100},{"id":984,"frames":[972,973,974,975,976],"speed":83},{"id":985,"frames":[977,978,979,980,981],"speed":83},{"id":1009,"frames":[987,988,989,990,991,992],"speed":100},{"id":1010,"frames":[993,994,995,996,997,998],"speed":100},{"id":1011,"frames":[999,1000,1001,1002,1003],"speed":83},{"id":1012,"frames":[1004,1005,1006,1007,1008],"speed":83},{"id":1048,"frames":[1026,1027,1028,1029,1030,1031],"speed":100},{"id":1049,"frames":[1032,1033,1034,1035,1036,1037],"speed":100},{"id":1050,"frames":[1038,1039,1040,1041,1042],"speed":83},{"id":1051,"frames":[1043,1044,1045,1046,1047],"speed":83},{"id":1123,"frames":[1101,1102,1103,1104,1105,1106],"speed":100},{"id":1124,"frames":[1107,1108,1109,1110,1111,1112],"speed":100},{"id":1125,"frames":[1113,1114,1115,1116,1117],"speed":83},{"id":1126,"frames":[1118,1119,1120,1121,1122],"speed":83},{"id":1150,"frames":[1128,1129,1130,1131,1132,1133],"speed":100},{"id":1151,"frames":[1134,1135,1136,1137,1138,1139],"speed":100},{"id":1152,"frames":[1140,1141,1142,1143,1144],"speed":83},{"id":1153,"frames":[1145,1146,1147,1148,1149],"speed":83},{"id":1177,"frames":[1155,1156,1157,1158,1159,1160],"speed":100},{"id":1178,"frames":[1161,1162,1163,1164,1165,1166],"speed":100},{"id":1179,"frames":[1167,1168,1169,1170,1171],"speed":83},{"id":1180,"frames":[1172,1173,1174,1175,1176],"speed":83},{"id":1204,"frames":[1182,1183,1184,1185,1186,1187],"speed":100},{"id":1205,"frames":[1188,1189,1190,1191,1192,1193],"speed":100},{"id":1206,"frames":[1194,1195,1196,1197,1198],"speed":83},{"id":1207,"frames":[1199,1200,1201,1202,1203],"speed":83},{"id":1231,"frames":[1209,1210,1211,1212,1213,1214],"speed":100},{"id":1232,"frames":[1215,1216,1217,1218,1219,1220],"speed":100},{"id":1233,"frames":[1221,1222,1223,1224,1225],"speed":83},{"id":1234,"frames":[1226,1227,1228,1229,1230],"speed":83},{"id":1258,"frames":[1236,1237,1238,1239,1240,1241],"speed":100},{"id":1259,"frames":[1242,1243,1244,1245,1246,1247],"speed":100},{"id":1260,"frames":[1248,1249,1250,1251,1252],"speed":83},{"id":1261,"frames":[1253,1254,1255,1256,1257],"speed":83},{"id":1285,"frames":[1263,1264,1265,1266,1267,1268],"speed":100},{"id":1286,"frames":[1269,1270,1271,1272,1273,1274],"speed":100},{"id":1287,"frames":[1275,1276,1277,1278,1279],"speed":83},{"id":1288,"frames":[1280,1281,1282,1283,1284],"speed":83},{"id":1311,"frames":[1289,1290,1291,1292,1293,1294],"speed":100},{"id":1312,"frames":[1295,1296,1297,1298,1299,1300],"speed":100},{"id":1313,"frames":[1301,1302,1303,1304,1305],"speed":83},{"id":1314,"frames":[1306,1307,1308,1309,1310],"speed":83},{"id":1468,"frames":[1464,1465,1466,1467],"speed":66},{"id":1505,"frames":[324,340,356,372],"speed":66},{"id":1506,"frames":[325,341,357,373],"speed":66},{"id":1507,"frames":[326,342,358,374],"speed":66},{"id":1508,"frames":[327,343,359,375],"speed":66},{"id":1509,"frames":[328,344,360,376],"speed":66},{"id":1510,"frames":[329,345,361,377],"speed":66},{"id":1511,"frames":[330,346,362,378],"speed":66},{"id":1512,"frames":[331,347,363,379],"speed":66},{"id":1513,"frames":[332,348,364,380],"speed":66},{"id":1514,"frames":[333,349,365,381],"speed":66},{"id":1515,"frames":[334,350,366,382],"speed":66},{"id":1516,"frames":[335,351,367,383],"speed":66},{"id":1517,"frames":[336,352,368,384],"speed":66},{"id":1518,"frames":[337,353,369,385],"speed":66},{"id":1519,"frames":[338,354,370,386],"speed":66},{"id":1520,"frames":[339,355,371,387],"speed":66},{"id":1521,"frames":[315,316,317,318,319,320,321,322,323],"speed":150},{"id":1885,"frames":[1877,1878,1879,1880,1881,1882,1883,1884],"speed":133},{"id":1894,"frames":[1886,1887,1888,1889,1890,1891,1892,1893],"speed":133},{"id":1917,"frames":[1895,1896,1897,1898,1899,1900],"speed":100},{"id":1918,"frames":[1901,1902,1903,1904,1905,1906],"speed":100},{"id":1919,"frames":[1907,1908,1909,1910,1911],"speed":83},{"id":1920,"frames":[1912,1913,1914,1915,1916],"speed":83},{"id":1943,"frames":[1921,1922,1923,1924,1925,1926],"speed":100},{"id":1944,"frames":[1927,1928,1929,1930,1931,1932],"speed":100},{"id":1945,"frames":[1933,1934,1935,1936,1937],"speed":83},{"id":1946,"frames":[1938,1939,1940,1941,1942],"speed":83},{"id":1969,"frames":[1947,1948,1949,1950,1951,1952],"speed":100},{"id":1970,"frames":[1953,1954,1955,1956,1957,1958],"speed":100},{"id":1971,"frames":[1959,1960,1961,1962,1963],"speed":83},{"id":1972,"frames":[1964,1965,1966,1967,1968],"speed":83},{"id":1989,"frames":[1973,1974,1975,1976],"speed":66},{"id":1990,"frames":[1977,1978,1979,1980],"speed":66},{"id":1991,"frames":[1981,1982,1983,1984],"speed":66},{"id":1992,"frames":[1985,1986,1987,1988],"speed":66},{"id":2126,"frames":[2110,2111,2112,2113],"speed":66},{"id":2127,"frames":[2114,2115,2116,2117],"speed":66},{"id":2128,"frames":[2118,2119,2120,2121],"speed":66},{"id":2129,"frames":[2122,2123,2124,2125],"speed":66},{"id":2316,"frames":[2310,2311,2312,2313,2314,2315],"speed":100},{"id":2634,"frames":[2630,2631,2632,2633],"speed":66},{"id":3072,"frames":[3056,3057,3058,3059],"speed":66},{"id":3073,"frames":[3060,3061,3062,3063],"speed":66},{"id":3074,"frames":[3064,3065,3066,3067],"speed":66},{"id":3075,"frames":[3068,3069,3070,3071],"speed":66},{"id":3151,"frames":[3129,3130,3131,3132,3133,3134],"speed":100},{"id":3152,"frames":[3135,3136,3137,3138,3139,3140],"speed":100},{"id":3153,"frames":[3141,3142,3143,3144,3145],"speed":83},{"id":3154,"frames":[3146,3147,3148,3149,3150],"speed":83},{"id":3179,"frames":[3157,3158,3159,3160,3161,3162],"speed":100},{"id":3180,"frames":[3163,3164,3165,3166,3167,3168],"speed":100},{"id":3181,"frames":[3169,3170,3171,3172,3173],"speed":83},{"id":3182,"frames":[3174,3175,3176,3177,3178],"speed":83},{"id":3183,"frames":[3076,3077,3078,3079,3080,3081],"speed":100},{"id":3184,"frames":[3082,3083,3084,3085,3086,3087],"speed":100},{"id":3185,"frames":[3088,3089,3090,3091,3092],"speed":83},{"id":3186,"frames":[3093,3094,3095,3096,3097],"speed":83},{"id":3197,"frames":[3187,3188,3189,3190,3191,3192,3193,3194,3195,3196],"speed":166},{"id":3249,"frames":[3227,3228,3229,3230,3231,3232],"speed":100},{"id":3250,"frames":[3233,3234,3235,3236,3237,3238],"speed":100},{"id":3251,"frames":[3239,3240,3241,3242,3243],"speed":83},{"id":3252,"frames":[3244,3245,3246,3247,3248],"speed":83},{"id":3276,"frames":[3254,3255,3256,3257,3258,3259],"speed":100},{"id":3277,"frames":[3260,3261,3262,3263,3264,3265],"speed":100},{"id":3278,"frames":[3266,3267,3268,3269,3270],"speed":83},{"id":3279,"frames":[3271,3272,3273,3274,3275],"speed":83},{"id":3300,"frames":[3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299],"speed":333},{"id":3607,"frames":[3585,3586,3587,3588,3589,3590],"speed":100},{"id":3608,"frames":[3591,3592,3593,3594,3595,3596],"speed":100},{"id":3609,"frames":[3597,3598,3599,3600,3601],"speed":83},{"id":3610,"frames":[3602,3603,3604,3605,3606],"speed":83},{"id":3633,"frames":[3611,3612,3613,3614,3615,3616],"speed":100},{"id":3634,"frames":[3617,3618,3619,3620,3621,3622],"speed":100},{"id":3635,"frames":[3623,3624,3625,3626,3627],"speed":83},{"id":3636,"frames":[3628,3629,3630,3631,3632],"speed":83},{"id":3659,"frames":[3637,3638,3639,3640,3641,3642],"speed":100},{"id":3660,"frames":[3643,3644,3645,3646,3647,3648],"speed":100},{"id":3661,"frames":[3649,3650,3651,3652,3653],"speed":83},{"id":3662,"frames":[3654,3655,3656,3657,3658],"speed":83},{"id":3685,"frames":[3663,3664,3665,3666,3667,3668],"speed":100},{"id":3686,"frames":[3669,3670,3671,3672,3673,3674],"speed":100},{"id":3687,"frames":[3675,3676,3677,3678,3679],"speed":83},{"id":3688,"frames":[3680,3681,3682,3683,3684],"speed":83},{"id":3711,"frames":[3689,3690,3691,3692,3693,3694],"speed":100},{"id":3712,"frames":[3695,3696,3697,3698,3699,3700],"speed":100},{"id":3713,"frames":[3701,3702,3703,3704,3705],"speed":83},{"id":3714,"frames":[3706,3707,3708,3709,3710],"speed":83},{"id":3739,"frames":[3717,3718,3719,3720,3721,3722],"speed":100},{"id":3740,"frames":[3723,3724,3725,3726,3727,3728],"speed":100},{"id":3741,"frames":[3729,3730,3731,3732,3733],"speed":83},{"id":3742,"frames":[3734,3735,3736,3737,3738],"speed":83},{"id":3765,"frames":[3743,3744,3745,3746,3747,3748],"speed":100},{"id":3766,"frames":[3749,3750,3751,3752,3753,3754],"speed":100},{"id":3767,"frames":[3755,3756,3757,3758,3759],"speed":83},{"id":3768,"frames":[3760,3761,3762,3763,3764],"speed":83},{"id":3791,"frames":[3769,3770,3771,3772,3773,3774],"speed":100},{"id":3792,"frames":[3775,3776,3777,3778,3779,3780],"speed":100},{"id":3793,"frames":[3781,3782,3783,3784,3785],"speed":83},{"id":3794,"frames":[3786,3787,3788,3789,3790],"speed":83},{"id":3853,"frames":[3831,3832,3833,3834,3835,3836],"speed":100},{"id":3854,"frames":[3837,3838,3839,3840,3841,3842],"speed":100},{"id":3855,"frames":[3843,3844,3845,3846,3847],"speed":83},{"id":3856,"frames":[3848,3849,3850,3851,3852],"speed":83},{"id":3877,"frames":[3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876],"speed":333},{"id":3900,"frames":[3878,3879,3880,3881,3882,3883],"speed":100},{"id":3901,"frames":[3884,3885,3886,3887,3888,3889],"speed":100},{"id":3902,"frames":[3890,3891,3892,3893,3894],"speed":83},{"id":3903,"frames":[3895,3896,3897,3898,3899],"speed":83},{"id":3926,"frames":[3904,3905,3906,3907,3908,3909],"speed":100},{"id":3927,"frames":[3910,3911,3912,3913,3914,3915],"speed":100},{"id":3928,"frames":[3916,3917,3918,3919,3920],"speed":83},{"id":3929,"frames":[3921,3922,3923,3924,3925],"speed":83},{"id":3952,"frames":[3930,3931,3932,3933,3934,3935],"speed":100},{"id":3953,"frames":[3936,3937,3938,3939,3940,3941],"speed":100},{"id":3954,"frames":[3942,3943,3944,3945,3946],"speed":83},{"id":3955,"frames":[3947,3948,3949,3950,3951],"speed":83},{"id":3978,"frames":[3956,3957,3958,3959,3960,3961],"speed":100},{"id":3979,"frames":[3962,3963,3964,3965,3966,3967],"speed":100},{"id":3980,"frames":[3968,3969,3970,3971,3972],"speed":83},{"id":3981,"frames":[3973,3974,3975,3976,3977],"speed":83},{"id":3993,"frames":[3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992],"speed":183},{"id":4476,"frames":[4464,4465,4466],"speed":50},{"id":4477,"frames":[4467,4468,4469],"speed":50},{"id":4478,"frames":[4470,4471,4472],"speed":50},{"id":4479,"frames":[4473,4474,4475],"speed":50},{"id":4488,"frames":[4480,4481,4482,4483],"speed":66},{"id":4489,"frames":[4484,4485,4486,4487],"speed":66},{"id":4516,"frames":[2140,2141,2142,2143,2144,2145,2146,2147],"speed":133},{"id":4517,"frames":[2148,2149,2150,2151,2152,2153,2154,2155],"speed":133},{"id":4518,"frames":[2156,2157,2158,2159,2160,2161,2162,2163],"speed":133},{"id":4519,"frames":[2164,2165,2166,2167,2168,2169,2170,2171],"speed":133},{"id":4520,"frames":[2178,2179,2180,2181,2182,2183,2184,2185],"speed":133},{"id":4521,"frames":[2186,2187,2188,2189,2190,2191,2192,2193],"speed":133},{"id":4522,"frames":[2194,2195,2196,2197,2198,2199,2200,2201],"speed":133},{"id":4523,"frames":[2202,2203,2204,2205,2206,2207,2208,2209],"speed":133},{"id":4524,"frames":[2210,2211,2212,2213,2214,2215,2216,2217],"speed":133},{"id":4525,"frames":[2218,2219,2220,2221,2222,2223,2224,2225],"speed":133},{"id":4526,"frames":[2226,2227,2228,2229,2230,2231,2232,2233],"speed":133},{"id":4527,"frames":[2234,2235,2236,2237,2238,2239,2240,2241],"speed":133},{"id":4528,"frames":[2242,2243,2244],"speed":50},{"id":4529,"frames":[2245,2246,2247],"speed":50},{"id":4530,"frames":[2248,2249,2250],"speed":50},{"id":4531,"frames":[2251,2252,2253],"speed":50},{"id":4532,"frames":[2254,2255],"speed":33},{"id":4533,"frames":[2256,2257],"speed":33},{"id":4534,"frames":[2258,2259],"speed":33},{"id":4535,"frames":[2260,2261],"speed":33},{"id":4536,"frames":[2262,2263,2264,2265],"speed":66},{"id":4537,"frames":[2266,2267,2268,2269],"speed":66},{"id":4538,"frames":[2270,2271,2272,2273],"speed":66},{"id":4539,"frames":[2274,2275,2276,2277],"speed":66},{"id":4544,"frames":[4540,4541,4542,4543],"speed":66},{"id":4548,"frames":[2342,2343,2344],"speed":50},{"id":4549,"frames":[2345,2346,2347],"speed":50},{"id":4550,"frames":[2348,2349,2350],"speed":50},{"id":4551,"frames":[2351,2352,2353],"speed":50},{"id":4552,"frames":[2354,2355,2356,2357,2358,2359,2360,2361],"speed":133},{"id":4553,"frames":[2362,2363,2364,2365,2366,2367,2368,2369],"speed":133},{"id":4554,"frames":[2370,2371,2372,2373,2374,2375,2376,2377],"speed":133},{"id":4555,"frames":[2378,2379,2380,2381,2382,2383,2384,2385],"speed":133},{"id":4556,"frames":[2386,2387,2388,2389,2390,2391,2392,2393],"speed":133},{"id":4557,"frames":[2394,2395,2396,2397,2398,2399,2400,2401],"speed":133},{"id":4558,"frames":[2402,2403,2404,2405,2406,2407,2408,2409],"speed":133},{"id":4559,"frames":[2410,2411,2412,2413,2414,2415,2416,2417],"speed":133},{"id":4560,"frames":[2418,2419,2420,2421,2422,2423,2424,2425],"speed":133},{"id":4561,"frames":[2426,2427,2428,2429,2430,2431,2432,2433],"speed":133},{"id":4562,"frames":[2434,2435,2436,2437,2438,2439,2440,2441],"speed":133},{"id":4563,"frames":[2442,2443,2444,2445,2446,2447,2448,2449],"speed":133},{"id":4564,"frames":[2450,2451,2452],"speed":50},{"id":4565,"frames":[2453,2454,2455],"speed":50},{"id":4566,"frames":[2456,2457,2458],"speed":50},{"id":4567,"frames":[2459,2460,2461],"speed":50},{"id":4568,"frames":[2462,2463,2464],"speed":50},{"id":4569,"frames":[2465,2466,2467],"speed":50},{"id":4570,"frames":[2468,2469,2470],"speed":50},{"id":4571,"frames":[2471,2472,2473],"speed":50},{"id":4572,"frames":[2474,2475,2476],"speed":50},{"id":4573,"frames":[2477,2478,2479,2480,2481,2482,2483,2484],"speed":133},{"id":4574,"frames":[2485,2486,2487,2488,2489,2490,2491,2492],"speed":133},{"id":4575,"frames":[2493,2494,2495,2496,2497,2498,2499,2500],"speed":133},{"id":4576,"frames":[2501,2502,2503,2504,2505,2506,2507,2508],"speed":133},{"id":4577,"frames":[2509,2510,2511,2512,2513,2514],"speed":100},{"id":4578,"frames":[2515,2516,2517,2518,2519,2520],"speed":100},{"id":4579,"frames":[2521,2522,2523,2524,2525],"speed":83},{"id":4580,"frames":[2526,2527,2528,2529,2530],"speed":83},{"id":4581,"frames":[2531,2532,2533,2534,2535,2536],"speed":100},{"id":4582,"frames":[2537,2538,2539,2540,2541,2542],"speed":100},{"id":4583,"frames":[2543,2544,2545,2546,2547],"speed":83},{"id":4584,"frames":[2548,2549,2550,2551,2552],"speed":83},{"id":4585,"frames":[2553,2554,2555,2556,2557,2558],"speed":100},{"id":4586,"frames":[2559,2560,2561,2562,2563,2564],"speed":100},{"id":4587,"frames":[2565,2566,2567,2568,2569],"speed":83},{"id":4588,"frames":[2570,2571,2572,2573,2574],"speed":83},{"id":4589,"frames":[2575,2576,2577,2578,2579,2580],"speed":100},{"id":4590,"frames":[2581,2582,2583,2584,2585,2586],"speed":100},{"id":4591,"frames":[2587,2588,2589,2590,2591],"speed":83},{"id":4592,"frames":[2592,2593,2594,2595,2596],"speed":83},{"id":4593,"frames":[2597,2598,2599,2600,2601,2602],"speed":100},{"id":4594,"frames":[2603,2604,2605,2606,2607,2608],"speed":100},{"id":4595,"frames":[2609,2610,2611,2612,2613],"speed":83},{"id":4596,"frames":[2614,2615,2616,2617,2618],"speed":83},{"id":4601,"frames":[2641,2642,2643,2644,2645,2646],"speed":100},{"id":4602,"frames":[2647,2648,2649,2650,2651,2652],"speed":100},{"id":4603,"frames":[2653,2654,2655,2656,2657],"speed":83},{"id":4604,"frames":[2658,2659,2660,2661,2662],"speed":83},{"id":4605,"frames":[2663,2664,2665,2666,2667,2668],"speed":100},{"id":4606,"frames":[2669,2670,2671,2672,2673,2674],"speed":100},{"id":4607,"frames":[2675,2676,2677,2678,2679],"speed":83},{"id":4608,"frames":[2680,2681,2682,2683,2684],"speed":83},{"id":4609,"frames":[2685,2686,2687,2688,2689,2690],"speed":100},{"id":4610,"frames":[2691,2692,2693,2694,2695,2696],"speed":100},{"id":4611,"frames":[2697,2698,2699,2700,2701,2702],"speed":100},{"id":4612,"frames":[2703,2704,2705,2706,2707,2708],"speed":100},{"id":4613,"frames":[2709,2710,2711],"speed":50},{"id":4614,"frames":[2712,2713,2714],"speed":50},{"id":4615,"frames":[2715,2716,2717],"speed":50},{"id":4616,"frames":[2718,2719,2720],"speed":50},{"id":4617,"frames":[2721,2722,2723,2724,2725,2726],"speed":100},{"id":4618,"frames":[2727,2728,2729,2730,2731,2732],"speed":100},{"id":4619,"frames":[2733,2734,2735,2736,2737],"speed":83},{"id":4620,"frames":[2738,2739,2740,2741,2742],"speed":83},{"id":4621,"frames":[2743,2744,2745,2746,2747,2748,2749],"speed":116},{"id":4622,"frames":[2750,2751,2752,2753,2754,2755,2756],"speed":116},{"id":4623,"frames":[2757,2758,2759,2760,2761,2762,2763],"speed":116},{"id":4624,"frames":[2764,2765,2766,2767,2768,2769,2770],"speed":116},{"id":4625,"frames":[2771,2772,2773,2774,2775,2776],"speed":100},{"id":4626,"frames":[2777,2778,2779,2780,2781,2782],"speed":100},{"id":4627,"frames":[2783,2784,2785,2786,2787],"speed":83},{"id":4628,"frames":[2788,2789,2790,2791,2792],"speed":83},{"id":4629,"frames":[2793,2794,2795,2796,2797,2798],"speed":100},{"id":4630,"frames":[2799,2800,2801,2802,2803,2804],"speed":100},{"id":4631,"frames":[2805,2806,2807,2808,2809],"speed":83},{"id":4632,"frames":[2810,2811,2812,2813,2814],"speed":83},{"id":4633,"frames":[2815,2816,2817,2818,2819,2820],"speed":100},{"id":4634,"frames":[2821,2822,2823,2824,2825,2826],"speed":100},{"id":4635,"frames":[2827,2828,2829,2830,2831],"speed":83},{"id":4636,"frames":[2832,2833,2834,2835,2836],"speed":83},{"id":4637,"frames":[2837,2838,2839,2840,2841,2842],"speed":100},{"id":4638,"frames":[2843,2844,2845,2846,2847,2848],"speed":100},{"id":4639,"frames":[2849,2850,2851,2852,2853,2854],"speed":100},{"id":4640,"frames":[2855,2856,2857,2858,2859,2860],"speed":100},{"id":4641,"frames":[2861,2862,2863,2864],"speed":66},{"id":4642,"frames":[2865,2866,2867,2868],"speed":66},{"id":4643,"frames":[2869,2870,2871,2872],"speed":66},{"id":4644,"frames":[2873,2874,2875,2876],"speed":66},{"id":4645,"frames":[2877,2878,2879,2880,2881,2882,2883,2884],"speed":133},{"id":4646,"frames":[2885,2886,2887,2888,2889,2890,2891,2892],"speed":133},{"id":4647,"frames":[2893,2894,2895,2896,2897,2898,2899,2900],"speed":133},{"id":4648,"frames":[2901,2902,2903,2904,2905,2906,2907,2908],"speed":133},{"id":4649,"frames":[2909,2910,2911,2912,2913,2914],"speed":100},{"id":4650,"frames":[2915,2916,2917,2918,2919,2920],"speed":100},{"id":4651,"frames":[2921,2922,2923,2924,2925],"speed":83},{"id":4652,"frames":[2926,2927,2928,2929,2930],"speed":83},{"id":4653,"frames":[2931,2932,2933,2934,2935,2936],"speed":100},{"id":4654,"frames":[2937,2938,2939,2940,2941,2942],"speed":100},{"id":4655,"frames":[2943,2944,2945,2946,2947],"speed":83},{"id":4656,"frames":[2948,2949,2950,2951,2952],"speed":83},{"id":4657,"frames":[2953,2954,2955,2956,2957,2958],"speed":100},{"id":4658,"frames":[2959,2960,2961,2962,2963,2964],"speed":100},{"id":4659,"frames":[2965,2966,2967,2968,2969],"speed":83},{"id":4660,"frames":[2970,2971,2972,2973,2974],"speed":83},{"id":4661,"frames":[2975,2976,2977,2978,2979,2980],"speed":100},{"id":4662,"frames":[2981,2982,2983,2984,2985,2986],"speed":100},{"id":4663,"frames":[2987,2988,2989,2990,2991],"speed":83},{"id":4669,"frames":[4000,4001,4002,4003,4004],"speed":83},{"id":4670,"frames":[4005,4006,4007,4008,4009,4010],"speed":100},{"id":4671,"frames":[4011,4012,4013,4014,4015,4016],"speed":100},{"id":4672,"frames":[4017,4018,4019,4020,4021],"speed":83},{"id":4673,"frames":[4022,4023,4024,4025,4026],"speed":83},{"id":4674,"frames":[4027,4028,4029,4030,4031,4032],"speed":100},{"id":4675,"frames":[4033,4034,4035,4036,4037,4038],"speed":100},{"id":4676,"frames":[4039,4040,4041,4042,4043],"speed":83},{"id":4677,"frames":[4044,4045,4046,4047,4048],"speed":83},{"id":4678,"frames":[4049,4050,4051,4052,4053,4054],"speed":100},{"id":4679,"frames":[4055,4056,4057,4058,4059,4060],"speed":100},{"id":4680,"frames":[4061,4062,4063,4064,4065],"speed":83},{"id":4681,"frames":[4066,4067,4068,4069,4070],"speed":83},{"id":4682,"frames":[4071,4072,4073,4074],"speed":66},{"id":4683,"frames":[4075,4076,4077,4078],"speed":66},{"id":4684,"frames":[4079,4080,4081,4082],"speed":66},{"id":4685,"frames":[4083,4084,4085,4086],"speed":66},{"id":4686,"frames":[4087,4088,4089,4090,4091,4092],"speed":100},{"id":4687,"frames":[4093,4094,4095,4096,4097,4098],"speed":100},{"id":4688,"frames":[4099,4100,4101,4102,4103],"speed":83},{"id":4689,"frames":[4104,4105,4106,4107,4108],"speed":83},{"id":4690,"frames":[4109,4110,4111,4112,4113,4114],"speed":100},{"id":4691,"frames":[4115,4116,4117,4118,4119,4120],"speed":100},{"id":4692,"frames":[4121,4122,4123,4124,4125],"speed":83},{"id":4693,"frames":[4126,4127,4128,4129,4130],"speed":83},{"id":4698,"frames":[4135,4136,4137,4138,4139,4140],"speed":100},{"id":4699,"frames":[4141,4142,4143,4144,4145,4146],"speed":100},{"id":4700,"frames":[4147,4148,4149,4150,4151],"speed":83},{"id":4701,"frames":[4152,4153,4154,4155,4156],"speed":83},{"id":4702,"frames":[4157,4158,4159,4160,4161,4162],"speed":100},{"id":4703,"frames":[4163,4164,4165,4166,4167,4168],"speed":100},{"id":4704,"frames":[4169,4170,4171,4172,4173],"speed":83},{"id":4705,"frames":[4174,4175,4176,4177,4178],"speed":83},{"id":4706,"frames":[4179,4180,4181,4182,4183,4184],"speed":100},{"id":4707,"frames":[4185,4186,4187,4188,4189,4190],"speed":100},{"id":4708,"frames":[4191,4192,4193,4194,4195],"speed":83},{"id":4709,"frames":[4196,4197,4198,4199,4200],"speed":83},{"id":4710,"frames":[4201,4202,4203,4204,4205,4206],"speed":100},{"id":4711,"frames":[4207,4208,4209,4210,4211,4212],"speed":100},{"id":4712,"frames":[4213,4214,4215,4216,4217],"speed":83},{"id":4713,"frames":[4218,4219,4220,4221,4222],"speed":83},{"id":4714,"frames":[4223,4224,4225,4226,4227,4228],"speed":100},{"id":4715,"frames":[4229,4230,4231,4232,4233,4234],"speed":100},{"id":4716,"frames":[4235,4236,4237,4238,4239],"speed":83},{"id":4717,"frames":[4240,4241,4242,4243,4244],"speed":83},{"id":4718,"frames":[4245,4246,4247,4248,4249,4250],"speed":100},{"id":4719,"frames":[4251,4252,4253,4254,4255,4256],"speed":100},{"id":4720,"frames":[4257,4258,4259,4260,4261],"speed":83},{"id":4721,"frames":[4262,4263,4264,4265,4266],"speed":83},{"id":4722,"frames":[4267,4268,4269,4270,4271,4272],"speed":100},{"id":4723,"frames":[4273,4274,4275,4276,4277,4278],"speed":100},{"id":4724,"frames":[4279,4280,4281,4282,4283],"speed":83},{"id":4725,"frames":[4284,4285,4286,4287,4288],"speed":83},{"id":4726,"frames":[4289,4290,4291,4292,4293,4294],"speed":100},{"id":4727,"frames":[4295,4296,4297,4298,4299,4300],"speed":100},{"id":4728,"frames":[4301,4302,4303,4304,4305],"speed":83},{"id":4729,"frames":[4306,4307,4308,4309,4310],"speed":83},{"id":4730,"frames":[4320,4321],"speed":33},{"id":4731,"frames":[4322,4323],"speed":33},{"id":4732,"frames":[4324,4325],"speed":33},{"id":4733,"frames":[4326,4327],"speed":33},{"id":4734,"frames":[4328,4329],"speed":33},{"id":4735,"frames":[4330,4331],"speed":33},{"id":4736,"frames":[4332,4333],"speed":33},{"id":4737,"frames":[4334,4335],"speed":33},{"id":4738,"frames":[4336,4337,4338,4339,4340,4341,4342,4343],"speed":133},{"id":4739,"frames":[4344,4345,4346,4347,4348,4349,4350,4351],"speed":133},{"id":4740,"frames":[4352,4353,4354,4355,4356,4357,4358,4359],"speed":133},{"id":4741,"frames":[4360,4361,4362,4363,4364,4365,4366,4367],"speed":133},{"id":4742,"frames":[4368,4369,4370],"speed":50},{"id":4743,"frames":[4371,4372,4373],"speed":50},{"id":4744,"frames":[4374,4375,4376],"speed":50},{"id":4745,"frames":[4377,4378,4379],"speed":50},{"id":4746,"frames":[4380,4381,4382],"speed":50},{"id":4747,"frames":[4383,4384,4385],"speed":50},{"id":4748,"frames":[4386,4387,4388],"speed":50},{"id":4749,"frames":[4389,4390,4391],"speed":50},{"id":4754,"frames":[4404,4405,4406,4407,4408,4409,4410,4411],"speed":133},{"id":4755,"frames":[4412,4413,4414,4415,4416,4417,4418,4419],"speed":133},{"id":4756,"frames":[4420,4421,4422,4423,4424,4425,4426,4427],"speed":133},{"id":4757,"frames":[4428,4429,4430,4431,4432,4433,4434,4435],"speed":133},{"id":4758,"frames":[4436,4437,4438,4439,4440,4441],"speed":100},{"id":4759,"frames":[4442,4443,4444,4445,4446,4447],"speed":100},{"id":4760,"frames":[4448,4449,4450,4451,4452,4453],"speed":100},{"id":4761,"frames":[4454,4455,4456,4457,4458,4459],"speed":100},{"id":4762,"frames":[2000,2001,2002,2003,2004,2005],"speed":100},{"id":4763,"frames":[2006,2007,2008,2009,2010,2011],"speed":100},{"id":4764,"frames":[2012,2013,2014,2015,2016],"speed":83},{"id":4765,"frames":[2017,2018,2019,2020,2021],"speed":83},{"id":4766,"frames":[2022,2023,2024,2025,2026,2027],"speed":100},{"id":4767,"frames":[2028,2029,2030,2031,2032,2033],"speed":100},{"id":4768,"frames":[2034,2035,2036,2037,2038],"speed":83},{"id":4769,"frames":[2039,2040,2041,2042,2043],"speed":83},{"id":4770,"frames":[2044,2045,2046,2047,2048,2049],"speed":100},{"id":4771,"frames":[2050,2051,2052,2053,2054,2055],"speed":100},{"id":4772,"frames":[2056,2057,2058,2059,2060],"speed":83},{"id":4773,"frames":[2061,2062,2063,2064,2065],"speed":83},{"id":4774,"frames":[2066,2067,2068,2069,2070,2071],"speed":100},{"id":4775,"frames":[2072,2073,2074,2075,2076,2077],"speed":100},{"id":4776,"frames":[2078,2079,2080,2081,2082],"speed":83},{"id":4777,"frames":[2083,2084,2085,2086,2087],"speed":83},{"id":4778,"frames":[2088,2089,2090,2091,2092,2093],"speed":100},{"id":4779,"frames":[2094,2095,2096,2097,2098,2099],"speed":100},{"id":4780,"frames":[2100,2101,2102,2103,2104],"speed":83},{"id":4781,"frames":[2105,2106,2107,2108,2109],"speed":83},{"id":4797,"frames":[4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796],"speed":250},{"id":4830,"frames":[4798,4799,4800,4801,4802,4803,4804,4805],"speed":133},{"id":4831,"frames":[4806,4807,4808,4809,4810,4811,4812,4813],"speed":133},{"id":4832,"frames":[4814,4815,4816,4817,4818,4819,4820,4821],"speed":133},{"id":4833,"frames":[4822,4823,4824,4825,4826,4827,4828,4829],"speed":133},{"id":4856,"frames":[4834,4835,4836,4837,4838,4839],"speed":100},{"id":4857,"frames":[4840,4841,4842,4843,4844,4845],"speed":100},{"id":4858,"frames":[4846,4847,4848,4849,4850],"speed":83},{"id":4859,"frames":[4851,4852,4853,4854,4855],"speed":83},{"id":4965,"frames":[4941,4942,4943,4944,4945,4946],"speed":100},{"id":4966,"frames":[4947,4948,4949,4950,4951,4952],"speed":100},{"id":4967,"frames":[4953,4954,4955,4956,4957,4958],"speed":100},{"id":4968,"frames":[4959,4960,4961,4962,4963,4964],"speed":100},{"id":4977,"frames":[4969,4970,4971,4972,4973,4974,4975,4976],"speed":133},{"id":5022,"frames":[5000,5001,5002,5003,5004,5005],"speed":100},{"id":5023,"frames":[5006,5007,5008,5009,5010,5011],"speed":100},{"id":5024,"frames":[5012,5013,5014,5015,5016],"speed":83},{"id":5025,"frames":[5017,5018,5019,5020,5021],"speed":83},{"id":5052,"frames":[5030,5031,5032,5033,5034,5035],"speed":100},{"id":5053,"frames":[5036,5037,5038,5039,5040,5041],"speed":100},{"id":5054,"frames":[5042,5043,5044,5045,5046],"speed":83},{"id":5055,"frames":[5047,5048,5049,5050,5051],"speed":83},{"id":5082,"frames":[5060,5061,5062,5063,5064,5065],"speed":100},{"id":5083,"frames":[5066,5067,5068,5069,5070,5071],"speed":100},{"id":5084,"frames":[5072,5073,5074,5075,5076],"speed":83},{"id":5085,"frames":[5077,5078,5079,5080,5081],"speed":83},{"id":5112,"frames":[5090,5091,5092,5093,5094,5095],"speed":100},{"id":5113,"frames":[5096,5097,5098,5099,5100,5101],"speed":100},{"id":5114,"frames":[5102,5103,5104,5105,5106],"speed":83},{"id":5115,"frames":[5107,5108,5109,5110,5111],"speed":83},{"id":5142,"frames":[5120,5121,5122,5123,5124,5125],"speed":100},{"id":5143,"frames":[5126,5127,5128,5129,5130,5131],"speed":100},{"id":5144,"frames":[5132,5133,5134,5135,5136],"speed":83},{"id":5145,"frames":[5137,5138,5139,5140,5141],"speed":83},{"id":5172,"frames":[5150,5151,5152,5153,5154,5155],"speed":100},{"id":5173,"frames":[5156,5157,5158,5159,5160,5161],"speed":100},{"id":5174,"frames":[5162,5163,5164,5165,5166],"speed":83},{"id":5175,"frames":[5167,5168,5169,5170,5171],"speed":83},{"id":5202,"frames":[5180,5181,5182,5183,5184,5185],"speed":100},{"id":5203,"frames":[5186,5187,5188,5189,5190,5191],"speed":100},{"id":5204,"frames":[5192,5193,5194,5195,5196],"speed":83},{"id":5205,"frames":[5197,5198,5199,5200,5201],"speed":83},{"id":5232,"frames":[5210,5211,5212,5213,5214,5215],"speed":100},{"id":5233,"frames":[5216,5217,5218,5219,5220,5221],"speed":100},{"id":5234,"frames":[5222,5223,5224,5225,5226],"speed":83},{"id":5235,"frames":[5227,5228,5229,5230,5231],"speed":83},{"id":5262,"frames":[5240,5241,5242,5243,5244,5245],"speed":100},{"id":5263,"frames":[5246,5247,5248,5249,5250,5251],"speed":100},{"id":5264,"frames":[5252,5253,5254,5255,5256],"speed":83},{"id":5265,"frames":[5257,5258,5259,5260,5261],"speed":83},{"id":5292,"frames":[5270,5271,5272,5273,5274,5275],"speed":100},{"id":5293,"frames":[5276,5277,5278,5279,5280,5281],"speed":100},{"id":5294,"frames":[5282,5283,5284,5285,5286],"speed":83},{"id":5295,"frames":[5287,5288,5289,5290,5291],"speed":83},{"id":5322,"frames":[5300,5301,5302,5303,5304,5305],"speed":100},{"id":5323,"frames":[5306,5307,5308,5309,5310,5311],"speed":100},{"id":5324,"frames":[5312,5313,5314,5315,5316],"speed":83},{"id":5325,"frames":[5317,5318,5319,5320,5321],"speed":83},{"id":5349,"frames":[5327,5328,5329,5330,5331,5332],"speed":100},{"id":5350,"frames":[5333,5334,5335,5336,5337,5338],"speed":100},{"id":5351,"frames":[5339,5340,5341,5342,5343],"speed":83},{"id":5352,"frames":[5344,5345,5346,5347,5348],"speed":83},{"id":5382,"frames":[5360,5361,5362,5363,5364,5365],"speed":100},{"id":5383,"frames":[5366,5367,5368,5369,5370,5371],"speed":100},{"id":5384,"frames":[5372,5373,5374,5375,5376],"speed":83},{"id":5385,"frames":[5377,5378,5379,5380,5381],"speed":83},{"id":5412,"frames":[5390,5391,5392,5393,5394,5395],"speed":100},{"id":5413,"frames":[5396,5397,5398,5399,5400,5401],"speed":100},{"id":5414,"frames":[5402,5403,5404,5405,5406],"speed":83},{"id":5415,"frames":[5407,5408,5409,5410,5411],"speed":83},{"id":5442,"frames":[5420,5421,5422,5423,5424,5425],"speed":100},{"id":5443,"frames":[5426,5427,5428,5429,5430,5431],"speed":100},{"id":5444,"frames":[5432,5433,5434,5435,5436],"speed":83},{"id":5445,"frames":[5437,5438,5439,5440,5441],"speed":83},{"id":5472,"frames":[5450,5451,5452,5453,5454,5455],"speed":100},{"id":5473,"frames":[5456,5457,5458,5459,5460,5461],"speed":100},{"id":5474,"frames":[5462,5463,5464,5465,5466],"speed":83},{"id":5475,"frames":[5467,5468,5469,5470,5471],"speed":83},{"id":5492,"frames":[5476,5477,5478,5479],"speed":66},{"id":5493,"frames":[5480,5481,5482,5483],"speed":66},{"id":5494,"frames":[5484,5485,5486,5487],"speed":66},{"id":5495,"frames":[5488,5489,5490,5491],"speed":66},{"id":5526,"frames":[5504,5505,5506,5507,5508,5509],"speed":100},{"id":5527,"frames":[5510,5511,5512,5513,5514,5515],"speed":100},{"id":5528,"frames":[5516,5517,5518,5519,5520],"speed":83},{"id":5529,"frames":[5521,5522,5523,5524,5525],"speed":83},{"id":5552,"frames":[5530,5531,5532,5533,5534,5535],"speed":100},{"id":5553,"frames":[5536,5537,5538,5539,5540,5541],"speed":100},{"id":5554,"frames":[5542,5543,5544,5545,5546],"speed":83},{"id":5555,"frames":[5547,5548,5549,5550,5551],"speed":83},{"id":5579,"frames":[5557,5558,5559,5560,5561,5562],"speed":100},{"id":5580,"frames":[5563,5564,5565,5566,5567,5568],"speed":100},{"id":5581,"frames":[5569,5570,5571,5572,5573],"speed":83},{"id":5582,"frames":[5574,5575,5576,5577,5578],"speed":83},{"id":5665,"frames":[5602,5617,5633,5649],"speed":66},{"id":5666,"frames":[5603,5618,5634,5650],"speed":66},{"id":5667,"frames":[5604,5619,5635,5651],"speed":66},{"id":5668,"frames":[5605,5620,5636,5652],"speed":66},{"id":5669,"frames":[5605,5621,5637,5653],"speed":66},{"id":5670,"frames":[5606,5622,5638,5654],"speed":66},{"id":5671,"frames":[5607,5623,5639,5655],"speed":66},{"id":5672,"frames":[5608,5624,5640,5656],"speed":66},{"id":5673,"frames":[5609,5625,5641,5657],"speed":66},{"id":5674,"frames":[5610,5626,5642,5658],"speed":66},{"id":5675,"frames":[5611,5627,5643,5659],"speed":66},{"id":5676,"frames":[5612,5628,5644,5660],"speed":66},{"id":5677,"frames":[5613,5629,5645,5661],"speed":66},{"id":5678,"frames":[5614,5630,5646,5662],"speed":66},{"id":5679,"frames":[5615,5631,5647,5663],"speed":66},{"id":5680,"frames":[5616,5632,5648,5664],"speed":66},{"id":5837,"frames":[5773,5789,5805,5821],"speed":66},{"id":5838,"frames":[5774,5790,5806,5822],"speed":66},{"id":5839,"frames":[5775,5791,5807,5823],"speed":66},{"id":5840,"frames":[5776,5792,5808,5824],"speed":66},{"id":5841,"frames":[5777,5793,5809,5825],"speed":66},{"id":5842,"frames":[5778,5794,5810,5826],"speed":66},{"id":5843,"frames":[5779,5795,5811,5827],"speed":66},{"id":5844,"frames":[5780,5796,5812,5828],"speed":66},{"id":5845,"frames":[5781,5797,5813,5829],"speed":66},{"id":5846,"frames":[5782,5798,5814,5830],"speed":66},{"id":5847,"frames":[5783,5799,5815,5831],"speed":66},{"id":5848,"frames":[5784,5800,5816,5832],"speed":66},{"id":5849,"frames":[5785,5801,5817,5833],"speed":66},{"id":5850,"frames":[5786,5802,5818,5834],"speed":66},{"id":5851,"frames":[5787,5803,5819,5835],"speed":66},{"id":5852,"frames":[5788,5804,5820,5836],"speed":66},{"id":5941,"frames":[5918,5919,5920,5921,5922,5923,5924,5925],"speed":133},{"id":5942,"frames":[5926,5927,5928,5929,5930,5931,5932],"speed":116},{"id":5943,"frames":[5933,5934,5935,5936,5937,5938,5939,5940],"speed":133},{"id":5954,"frames":[5944,5945,5946,5947,5948,5949,5950,5951,5952,5953],"speed":166},{"id":5978,"frames":[5956,5957,5958,5959,5960,5961],"speed":100},{"id":5979,"frames":[5962,5963,5964,5965,5966,5967],"speed":100},{"id":5980,"frames":[5968,5969,5970,5971,5972],"speed":83},{"id":5981,"frames":[5973,5974,5975,5976,5977],"speed":83},{"id":6580,"frames":[6577,6578,6579],"speed":50},{"id":6783,"frames":[6758,6759,6760,6761,6762,6763],"speed":100},{"id":6784,"frames":[6765,6766,6767,6768,6769,6770],"speed":100},{"id":6785,"frames":[6772,6773,6774,6775,6776],"speed":83},{"id":6786,"frames":[6778,6779,6780,6781,6782],"speed":83},{"id":6813,"frames":[6787,6788,6789,6790,6791,6792,6793,6794],"speed":133},{"id":6814,"frames":[6795,6796,6797,6798,6799,6800,6801,6802],"speed":133},{"id":6815,"frames":[6803,6804,6805,6806,6807],"speed":83},{"id":6816,"frames":[6808,6809,6810,6811,6812],"speed":83},{"id":6846,"frames":[6821,6822,6823,6824,6825,6826],"speed":100},{"id":6847,"frames":[6828,6829,6830,6831,6832,6833],"speed":100},{"id":6848,"frames":[6835,6836,6837,6838,6839],"speed":83},{"id":6849,"frames":[6841,6842,6843,6844,6845],"speed":83},{"id":6875,"frames":[6850,6851,6852,6853,6854,6855],"speed":100},{"id":6876,"frames":[6857,6858,6859,6860,6861,6862],"speed":100},{"id":6877,"frames":[6864,6865,6866,6867,6868],"speed":83},{"id":6878,"frames":[6870,6871,6872,6873,6874],"speed":83},{"id":6894,"frames":[6879,6880,6881],"speed":50},{"id":6895,"frames":[6883,6884,6885],"speed":50},{"id":6896,"frames":[6887,6888,6889],"speed":50},{"id":6897,"frames":[6891,6892,6893],"speed":50},{"id":6914,"frames":[6898,6899,6900,6901],"speed":66},{"id":6915,"frames":[6902,6903,6904,6905],"speed":66},{"id":6916,"frames":[6906,6907,6908,6909],"speed":66},{"id":6917,"frames":[6910,6911,6912,6913],"speed":66},{"id":6940,"frames":[6918,6919,6920,6921,6922,6923],"speed":100},{"id":6941,"frames":[6924,6925,6926,6927,6928,6929],"speed":100},{"id":6942,"frames":[6930,6931,6932,6933,6934],"speed":83},{"id":6943,"frames":[6935,6936,6937,6938,6939],"speed":83},{"id":6990,"frames":[6968,6969,6970,6971,6972,6973],"speed":100},{"id":6991,"frames":[6974,6975,6976,6977,6978,6979],"speed":100},{"id":6992,"frames":[6980,6981,6982,6983,6984],"speed":83},{"id":6993,"frames":[6985,6986,6987,6988,6989],"speed":83},{"id":7030,"frames":[7003,7004,7005,7006,7007,7008],"speed":100},{"id":7031,"frames":[7010,7011,7012,7013,7014,7015],"speed":100},{"id":7032,"frames":[7017,7018,7019,7020,7021,7022],"speed":100},{"id":7033,"frames":[7024,7025,7026,7027,7028,7029],"speed":100},{"id":7061,"frames":[7034,7035,7036,7037,7038,7039],"speed":100},{"id":7062,"frames":[7041,7042,7043,7044,7045,7046],"speed":100},{"id":7063,"frames":[7048,7049,7050,7051,7052,7053],"speed":100},{"id":7064,"frames":[7055,7056,7057,7058,7059,7060],"speed":100},{"id":7092,"frames":[7065,7066,7067,7068,7069,7070],"speed":100},{"id":7093,"frames":[7072,7073,7074,7075,7076,7077],"speed":100},{"id":7094,"frames":[7079,7080,7081,7082,7083,7084],"speed":100},{"id":7095,"frames":[7086,7087,7088,7089,7090,7091],"speed":100},{"id":7194,"frames":[7171,7172,7173,7174,7175],"speed":83},{"id":7195,"frames":[7177,7178,7179,7180,7181],"speed":83},{"id":7196,"frames":[7183,7184,7185,7186,7187],"speed":83},{"id":7197,"frames":[7189,7190,7191,7192,7193],"speed":83},{"id":8549,"frames":[8521,8522,8523,8524,8525,8526,8527],"speed":116},{"id":8550,"frames":[8528,8529,8530,8531,8532,8533,8534],"speed":116},{"id":8551,"frames":[8535,8536,8537,8538,8539,8540,8541],"speed":116},{"id":8552,"frames":[8542,8543,8544,8545,8546,8547,8548],"speed":116},{"id":8579,"frames":[8556,8557,8558,8559,8560],"speed":83},{"id":8580,"frames":[8562,8563,8564,8565,8566],"speed":83},{"id":8581,"frames":[8568,8569,8570,8571,8572],"speed":83},{"id":8582,"frames":[8574,8575,8576,8577,8578],"speed":83},{"id":8598,"frames":[8583,8584,8585],"speed":50},{"id":8599,"frames":[8587,8588,8589],"speed":50},{"id":8600,"frames":[8591,8592,8593],"speed":50},{"id":8601,"frames":[8595,8596,8597],"speed":50},{"id":9459,"frames":[9444,9445,9446],"speed":50},{"id":9460,"frames":[9448,9449,9450],"speed":50},{"id":9461,"frames":[9452,9453,9454],"speed":50},{"id":9462,"frames":[9456,9457,9458],"speed":50},{"id":9471,"frames":[9463,9464,9465,9466,9467,9468,9469,9470],"speed":133},{"id":9552,"frames":[9530,9531,9532,9533,9534,9535],"speed":100},{"id":9553,"frames":[9536,9537,9538,9539,9540,9541],"speed":100},{"id":9554,"frames":[9542,9543,9544,9545,9546],"speed":83},{"id":9555,"frames":[9547,9548,9549,9550,9551],"speed":83},{"id":9568,"frames":[9560,9561,9562,9563,9564,9565,9566,9567],"speed":133},{"id":9604,"frames":[9582,9583,9584,9585,9586,9587],"speed":100},{"id":9605,"frames":[9588,9589,9590,9591,9592,9593],"speed":100},{"id":9606,"frames":[9594,9595,9596,9597,9598],"speed":83},{"id":9607,"frames":[9599,9600,9601,9602,9603],"speed":83},{"id":9655,"frames":[9633,9634,9635,9636,9637,9638],"speed":100},{"id":9656,"frames":[9639,9640,9641,9642,9643,9644],"speed":100},{"id":9657,"frames":[9645,9646,9647,9648,9649],"speed":83},{"id":9658,"frames":[9650,9651,9652,9653,9654],"speed":83},{"id":9682,"frames":[9660,9661,9662,9663,9664,9665],"speed":100},{"id":9683,"frames":[9666,9667,9668,9669,9670,9671],"speed":100},{"id":9684,"frames":[9672,9673,9674,9675,9676],"speed":83},{"id":9685,"frames":[9677,9678,9679,9680,9681],"speed":83},{"id":9709,"frames":[9687,9688,9689,9690,9691,9692],"speed":100},{"id":9710,"frames":[9693,9694,9695,9696,9697,9698],"speed":100},{"id":9711,"frames":[9699,9700,9701,9702,9703],"speed":83},{"id":9712,"frames":[9704,9705,9706,9707,9708],"speed":83},{"id":9736,"frames":[9714,9715,9716,9717,9718,9719],"speed":100},{"id":9737,"frames":[9720,9721,9722,9723,9724,9725],"speed":100},{"id":9738,"frames":[9726,9727,9728,9729,9730],"speed":83},{"id":9739,"frames":[9731,9732,9733,9734,9735],"speed":83},{"id":9763,"frames":[9741,9742,9743,9744,9745,9746],"speed":100},{"id":9764,"frames":[9747,9748,9749,9750,9751,9752],"speed":100},{"id":9765,"frames":[9753,9754,9755,9756,9757],"speed":83},{"id":9766,"frames":[9758,9759,9760,9761,9762],"speed":83},{"id":9790,"frames":[9768,9769,9770,9771,9772,9773],"speed":100},{"id":9791,"frames":[9774,9775,9776,9777,9778,9779],"speed":100},{"id":9792,"frames":[9780,9781,9782,9783,9784],"speed":83},{"id":9793,"frames":[9785,9786,9787,9788,9789],"speed":83},{"id":9820,"frames":[9794,9795,9796,9797,9798,9799,9800],"speed":116},{"id":9821,"frames":[9801,9802,9803,9804,9805,9806,9807],"speed":116},{"id":9822,"frames":[9808,9809,9810,9811,9812,9813],"speed":100},{"id":9823,"frames":[9814,9815,9816,9817,9818,9819],"speed":100},{"id":9848,"frames":[9824,9825,9826,9827,9828,9829],"speed":100},{"id":9849,"frames":[9830,9831,9832,9833,9834,9835],"speed":100},{"id":9850,"frames":[9836,9837,9838,9839,9840,9841],"speed":100},{"id":9851,"frames":[9842,9843,9844,9845,9846],"speed":83},{"id":9880,"frames":[9852,9853,9854,9855,9856,9857,9858],"speed":116},{"id":9881,"frames":[9859,9860,9861,9862,9863,9864,9865],"speed":116},{"id":9882,"frames":[9866,9867,9868,9869,9870,9871],"speed":100},{"id":9883,"frames":[9873,9874,9875,9876,9877,9878],"speed":100},{"id":9906,"frames":[9884,9885,9886,9887,9888,9889],"speed":100},{"id":9907,"frames":[9890,9891,9892,9893,9894,9895],"speed":100},{"id":9908,"frames":[9896,9897,9898,9899,9900],"speed":83},{"id":9909,"frames":[9901,9902,9903,9904,9905],"speed":83},{"id":9933,"frames":[9911,9912,9913,9914,9915,9916],"speed":100},{"id":9934,"frames":[9917,9918,9919,9920,9921,9922],"speed":100},{"id":9935,"frames":[9923,9924,9925,9926,9927],"speed":83},{"id":9936,"frames":[9928,9929,9930,9931,9932],"speed":83},{"id":9960,"frames":[9938,9939,9940,9941,9942,9943],"speed":100},{"id":9961,"frames":[9944,9945,9946,9947,9948,9949],"speed":100},{"id":9962,"frames":[9950,9951,9952,9953,9954],"speed":83},{"id":9963,"frames":[9955,9956,9957,9958,9959],"speed":83},{"id":9987,"frames":[9965,9966,9967,9968,9969,9970],"speed":100},{"id":9988,"frames":[9971,9972,9973,9974,9975,9976],"speed":100},{"id":9989,"frames":[9977,9978,9979,9980,9981],"speed":83},{"id":9990,"frames":[9982,9983,9984,9985,9986],"speed":83},{"id":10032,"frames":[10000,10001,10002,10003,10004,10005,10006,10007],"speed":133},{"id":10033,"frames":[10008,10009,10010,10011,10012,10013,10014,10015],"speed":133},{"id":10034,"frames":[10016,10017,10018,10019,10020,10021,10022,10023],"speed":133},{"id":10035,"frames":[10024,10025,10026,10027,10028,10029,10030,10031],"speed":133},{"id":10060,"frames":[10036,10037,10038,10039,10040,10041],"speed":100},{"id":10061,"frames":[10042,10043,10044,10045,10046,10047],"speed":100},{"id":10062,"frames":[10048,10049,10050,10051,10052],"speed":83},{"id":10063,"frames":[10053,10054,10055,10056,10057],"speed":83},{"id":10086,"frames":[10064,10065,10066,10067,10068,10069],"speed":100},{"id":10087,"frames":[10070,10071,10072,10073,10074,10075],"speed":100},{"id":10088,"frames":[10076,10077,10078,10079,10080],"speed":83},{"id":10089,"frames":[10081,10082,10083,10084,10085],"speed":83},{"id":10112,"frames":[10090,10091,10092,10093,10094,10095],"speed":100},{"id":10113,"frames":[10096,10097,10098,10099,10100,10101],"speed":100},{"id":10114,"frames":[10102,10103,10104,10105,10106],"speed":83},{"id":10115,"frames":[10107,10108,10109,10110,10111],"speed":83},{"id":10138,"frames":[10116,10117,10118,10119,10120,10121],"speed":100},{"id":10139,"frames":[10122,10123,10124,10125,10126,10127],"speed":100},{"id":10140,"frames":[10128,10129,10130,10131,10132],"speed":83},{"id":10141,"frames":[10133,10134,10135,10136,10137],"speed":83},{"id":10164,"frames":[10142,10143,10144,10145,10146,10147],"speed":100},{"id":10165,"frames":[10148,10149,10150,10151,10152,10153],"speed":100},{"id":10166,"frames":[10154,10155,10156,10157,10158],"speed":83},{"id":10167,"frames":[10159,10160,10161,10162,10163],"speed":83},{"id":10190,"frames":[10168,10169,10170,10171,10172,10173],"speed":100},{"id":10191,"frames":[10174,10175,10176,10177,10178,10179],"speed":100},{"id":10192,"frames":[10180,10181,10182,10183,10184],"speed":83},{"id":10193,"frames":[10185,10186,10187,10188,10189],"speed":83},{"id":10242,"frames":[10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,10205],"speed":200},{"id":10243,"frames":[10206,10207,10208,10209,10210,10211,10212,10213,10214,10215,10216,10217],"speed":200},{"id":10244,"frames":[10218,10219,10220,10221,10222,10223,10224,10225,10226,10227,10228,10229],"speed":200},{"id":10245,"frames":[10230,10231,10232,10233,10234,10235,10236,10237,10238,10239,10240,10241],"speed":200},{"id":10268,"frames":[10246,10247,10248,10249,10250,10251],"speed":100},{"id":10269,"frames":[10252,10253,10254,10255,10256,10257],"speed":100},{"id":10270,"frames":[10258,10259,10260,10261,10262],"speed":83},{"id":10271,"frames":[10263,10264,10265,10266,10267],"speed":83},{"id":10294,"frames":[10272,10273,10274,10275,10276,10277],"speed":100},{"id":10295,"frames":[10278,10279,10280,10281,10282,10283],"speed":100},{"id":10296,"frames":[10284,10285,10286,10287,10288],"speed":83},{"id":10297,"frames":[10289,10290,10291,10292,10293],"speed":83},{"id":10320,"frames":[10298,10299,10300,10301,10302,10303],"speed":100},{"id":10321,"frames":[10304,10305,10306,10307,10308,10309],"speed":100},{"id":10322,"frames":[10310,10311,10312,10312,10314],"speed":83},{"id":10323,"frames":[10315,10316,10317,10318,10319],"speed":83},{"id":10360,"frames":[10324,10325,10326,10327,10328,10329,10330,10331,10332],"speed":150},{"id":10361,"frames":[10333,10334,10335,10336,10337,10338,10339,10340,10341],"speed":150},{"id":10362,"frames":[10342,10343,10344,10345,10346,10347,10348,10349,10350],"speed":150},{"id":10363,"frames":[10351,10352,10353,10354,10355,10356,10357,10358,10359],"speed":150},{"id":10380,"frames":[10364,10365,10366,10367],"speed":66},{"id":10381,"frames":[10368,10369,10370,10371],"speed":66},{"id":10382,"frames":[10372,10373,10374,10375],"speed":66},{"id":10383,"frames":[10376,10377,10378,10379],"speed":66},{"id":10400,"frames":[10384,10385,10386,10387],"speed":66},{"id":10401,"frames":[10388,10389,10390,10391],"speed":66},{"id":10402,"frames":[10392,10393,10394,10395],"speed":66},{"id":10403,"frames":[10396,10397,10398,10399],"speed":66},{"id":10420,"frames":[10404,10405,10406,10407],"speed":66},{"id":10421,"frames":[10408,10409,10410,10411],"speed":66},{"id":10422,"frames":[10412,10413,10414,10415],"speed":66},{"id":10423,"frames":[10416,10417,10418,10419],"speed":66},{"id":10440,"frames":[10424,10425,10426,10427],"speed":66},{"id":10441,"frames":[10428,10429,10430,10431],"speed":66},{"id":10442,"frames":[10432,10433,10434,10435],"speed":66},{"id":10443,"frames":[10436,10437,10438,10439],"speed":66},{"id":10466,"frames":[10444,10445,10446,10447,10448,10449],"speed":100},{"id":10467,"frames":[10450,10451,10452,10453,10454,10455],"speed":100},{"id":10468,"frames":[10456,10457,10458,10459,10460],"speed":83},{"id":10469,"frames":[10461,10462,10463,10464,10465],"speed":83},{"id":10502,"frames":[10470,10471,10472,10473,10474,10475,10476,10477],"speed":133},{"id":10503,"frames":[10478,10479,10480,10481,10482,10483,10484,10485],"speed":133},{"id":10504,"frames":[10486,10487,10488,10489,10490,10491,10492,10493],"speed":133},{"id":10505,"frames":[10494,10495,10496,10497,10498,10499,10500,10501],"speed":133},{"id":10528,"frames":[10506,10507,10508,10509,10510,10511],"speed":100},{"id":10529,"frames":[10512,10513,10514,10515,10516,10517],"speed":100},{"id":10530,"frames":[10518,10519,10520,10521,10522],"speed":83},{"id":10531,"frames":[10523,10524,10525,10526,10527],"speed":83},{"id":10554,"frames":[10532,10533,10534,10535,10536,10537],"speed":100},{"id":10555,"frames":[10538,10539,10540,10541,10542,10543],"speed":100},{"id":10556,"frames":[10544,10545,10546,10547,10548],"speed":83},{"id":10557,"frames":[10549,10550,10551,10552,10553],"speed":83},{"id":10580,"frames":[10558,10559,10560,10561,10562,10563],"speed":100},{"id":10581,"frames":[10564,10565,10566,10567,10568,10569],"speed":100},{"id":10582,"frames":[10570,10571,10572,10573,10574],"speed":83},{"id":10583,"frames":[10575,10576,10577,10578,10579],"speed":83},{"id":10606,"frames":[10584,10585,10586,10587,10588,10589],"speed":100},{"id":10607,"frames":[10590,10591,10592,10593,10594,10595],"speed":100},{"id":10608,"frames":[10596,10597,10598,10599,10600],"speed":83},{"id":10609,"frames":[10601,10602,10603,10604,10605],"speed":83},{"id":10632,"frames":[10610,10611,10612,10613,10614,10615],"speed":100},{"id":10633,"frames":[10616,10617,10618,10619,10620,10621],"speed":100},{"id":10634,"frames":[10622,10623,10624,10625,10626],"speed":83},{"id":10635,"frames":[10627,10628,10629,10630,10631],"speed":83},{"id":10658,"frames":[10636,10637,10638,10639,10640,10641],"speed":100},{"id":10659,"frames":[10642,10643,10644,10645,10646,10647],"speed":100},{"id":10660,"frames":[10648,10649,10650,10651,10652],"speed":83},{"id":10661,"frames":[10653,10654,10655,10656,10657],"speed":83},{"id":10684,"frames":[10662,10663,10664,10665,10666,10667],"speed":100},{"id":10685,"frames":[10668,10669,10670,10671,10672,10673],"speed":100},{"id":10686,"frames":[10674,10675,10676,10677,10678],"speed":83},{"id":10687,"frames":[10679,10680,10681,10682,10683],"speed":83},{"id":10710,"frames":[10688,10689,10690,10691,10692,10693],"speed":100},{"id":10711,"frames":[10694,10695,10696,10697,10698,10699],"speed":100},{"id":10712,"frames":[10700,10701,10702,10703,10704],"speed":83},{"id":10713,"frames":[10705,10706,10707,10708,10709],"speed":83},{"id":10736,"frames":[10714,10715,10716,10717,10718,10719],"speed":100},{"id":10737,"frames":[10720,10721,10722,10723,10724,10725],"speed":100},{"id":10738,"frames":[10726,10727,10728,10729,10730],"speed":83},{"id":10739,"frames":[10731,10732,10733,10734,10735],"speed":83},{"id":10762,"frames":[10740,10741,10742,10743,10744,10745],"speed":100},{"id":10763,"frames":[10746,10747,10748,10749,10750,10751],"speed":100},{"id":10764,"frames":[10752,10753,10754,10755,10756],"speed":83},{"id":10765,"frames":[10757,10758,10759,10760,10761],"speed":83},{"id":10786,"frames":[10766,10767,10768,10769,10770],"speed":83},{"id":10787,"frames":[10771,10772,10773,10774,10775],"speed":83},{"id":10788,"frames":[10776,10777,10778,10779,10780],"speed":83},{"id":10789,"frames":[10781,10782,10782,10783,10784],"speed":83},{"id":10812,"frames":[10790,10791,10792,10793,10794,10795],"speed":100},{"id":10813,"frames":[10796,10797,10798,10799,10800,10801],"speed":100},{"id":10814,"frames":[10802,10803,10804,10805,10806],"speed":83},{"id":10815,"frames":[10807,10808,10809,10810,10811],"speed":83},{"id":10838,"frames":[10816,10817,10818,10819,10820,10821],"speed":100},{"id":10839,"frames":[10822,10823,10824,10825,10826,10827],"speed":100},{"id":10840,"frames":[10828,10829,10830,10831,10832],"speed":83},{"id":10841,"frames":[10833,10834,10835,10836,10837],"speed":83},{"id":10864,"frames":[10842,10843,10844,10845,10846,10847],"speed":100},{"id":10865,"frames":[10848,10849,10850,10851,10852,10853],"speed":100},{"id":10866,"frames":[10854,10855,10856,10857,10858],"speed":83},{"id":10867,"frames":[10859,10860,10861,10862,10863],"speed":83},{"id":10915,"frames":[10893,10894,10895,10896,10897,10898],"speed":100},{"id":10916,"frames":[10899,10900,10901,10902,10903,10904],"speed":100},{"id":10917,"frames":[10905,10906,10907,10908,10909],"speed":83},{"id":10918,"frames":[10910,10911,10912,10913,10914],"speed":83},{"id":10941,"frames":[10919,10920,10921,10922,10923,10924],"speed":100},{"id":10942,"frames":[10925,10926,10927,10928,10929,10930],"speed":100},{"id":10943,"frames":[10931,10932,10933,10934,10935],"speed":83},{"id":10944,"frames":[10936,10937,10938,10939,10940],"speed":83},{"id":10967,"frames":[10945,10946,10947,10948,10949,10950],"speed":100},{"id":10968,"frames":[10951,10952,10953,10954,10955,10956],"speed":100},{"id":10969,"frames":[10957,10958,10959,10960,10961],"speed":83},{"id":10970,"frames":[10962,10963,10964,10965,10966],"speed":83},{"id":10993,"frames":[10971,10972,10973,10974,10975,10976],"speed":100},{"id":10994,"frames":[10977,10978,10979,10980,10981,10982],"speed":100},{"id":10995,"frames":[10983,10984,10985,10986,10987],"speed":83},{"id":10996,"frames":[10988,10989,10990,10991,10992],"speed":83},{"id":11019,"frames":[10997,10998,10999,11000,11001,11002],"speed":100},{"id":11020,"frames":[11003,11004,11005,11006,11007,11008],"speed":100},{"id":11021,"frames":[11009,11010,11011,11012,11013],"speed":83},{"id":11022,"frames":[11014,11015,11016,11017,11018],"speed":83},{"id":11045,"frames":[11023,11024,11025,11026,11027,11028],"speed":100},{"id":11046,"frames":[11029,11030,11031,11032,11033,11034],"speed":100},{"id":11047,"frames":[11035,11036,11037,11038,11039],"speed":83},{"id":11048,"frames":[11040,11041,11042,11043,11044],"speed":83},{"id":11071,"frames":[11049,11050,11051,11052,11053,11054],"speed":100},{"id":11072,"frames":[11055,11056,11057,11058,11059,11060],"speed":100},{"id":11073,"frames":[11061,11062,11063,11064,11065],"speed":83},{"id":11074,"frames":[11066,11067,11068,11069,11070],"speed":83},{"id":11097,"frames":[11075,11076,11077,11078,11079,11080],"speed":100},{"id":11098,"frames":[11081,11082,11083,11084,11085,11086],"speed":100},{"id":11099,"frames":[11087,11088,11089,11090,11091],"speed":83},{"id":11100,"frames":[11092,11093,11094,11095,11096],"speed":83},{"id":11123,"frames":[11101,11102,11103,11104,11105,11106],"speed":100},{"id":11124,"frames":[11107,11108,11109,11110,11111,11112],"speed":100},{"id":11125,"frames":[11113,11114,11115,11116,11117],"speed":83},{"id":11126,"frames":[11118,11119,11120,11121,11122],"speed":83},{"id":11149,"frames":[11127,11128,11129,11130,11131,11132],"speed":100},{"id":11150,"frames":[11133,11134,11135,11136,11137,11138],"speed":100},{"id":11151,"frames":[11139,11140,11141,11142,11143],"speed":83},{"id":11152,"frames":[11144,11145,11146,11147,11148],"speed":83},{"id":11175,"frames":[11153,11154,11155,11156,11157,11158],"speed":100},{"id":11176,"frames":[11159,11160,11161,11162,11163,11164],"speed":100},{"id":11177,"frames":[11165,11166,11167,11168,11169],"speed":83},{"id":11178,"frames":[11170,11171,11172,11173,11174],"speed":83},{"id":11201,"frames":[11179,11180,11181,11182,11183,11184],"speed":100},{"id":11202,"frames":[11185,11186,11187,11188,11189,11190],"speed":100},{"id":11203,"frames":[11191,11192,11193,11194,11195],"speed":83},{"id":11204,"frames":[11196,11197,11198,11199,11200],"speed":83},{"id":11227,"frames":[11205,11206,11207,11208,11209,11210],"speed":100},{"id":11228,"frames":[11211,11212,11213,11214,11215,11216],"speed":100},{"id":11229,"frames":[11217,11218,11219,11220,11221],"speed":83},{"id":11230,"frames":[11222,11223,11224,11225,11226],"speed":83},{"id":11253,"frames":[11231,11232,11233,11234,11235,11236],"speed":100},{"id":11254,"frames":[11237,11238,11239,11240,11241,11242],"speed":100},{"id":11255,"frames":[11243,11244,11245,11246,11247],"speed":83},{"id":11256,"frames":[11248,11249,11250,11251,11252],"speed":83},{"id":11279,"frames":[11257,11258,11259,11260,11261,11262],"speed":100},{"id":11280,"frames":[11263,11264,11265,11266,11267,11268],"speed":100},{"id":11281,"frames":[11269,11270,11271,11272,11273],"speed":83},{"id":11282,"frames":[11274,11275,11276,11277,11278],"speed":83},{"id":11305,"frames":[11283,11284,11285,11286,11287,11288],"speed":100},{"id":11306,"frames":[11289,11290,11291,11292,11293,11294],"speed":100},{"id":11307,"frames":[11295,11296,11297,11298,11299],"speed":83},{"id":11308,"frames":[11300,11301,11302,11303,11304],"speed":83},{"id":11331,"frames":[11309,11310,11311,11312,11313,11314],"speed":100},{"id":11332,"frames":[11315,11316,11317,11318,11319,11320],"speed":100},{"id":11333,"frames":[11321,11322,11323,11324,11325],"speed":83},{"id":11334,"frames":[11326,11327,11328,11329,11330],"speed":83},{"id":11357,"frames":[11335,11336,11337,11338,11339,11340],"speed":100},{"id":11358,"frames":[11341,11342,11343,11344,11345,11346],"speed":100},{"id":11359,"frames":[11347,11348,11349,11350,11351],"speed":83},{"id":11360,"frames":[11352,11353,11354,11355,11356],"speed":83},{"id":11383,"frames":[11361,11362,11363,11364,11365,11366],"speed":100},{"id":11384,"frames":[11367,11368,11369,11370,11371,11372],"speed":100},{"id":11385,"frames":[11373,11374,11375,11376,11377],"speed":83},{"id":11386,"frames":[11378,11379,11380,11381,11382],"speed":83},{"id":11409,"frames":[11387,11388,11389,11390,11391,11392],"speed":100},{"id":11410,"frames":[11393,11394,11395,11396,11397,11398],"speed":100},{"id":11411,"frames":[11399,11400,11401,11402,11403],"speed":83},{"id":11412,"frames":[11404,11405,11406,11407,11408],"speed":83},{"id":11435,"frames":[11413,11414,11415,11416,11417,11418],"speed":100},{"id":11436,"frames":[11419,11420,11421,11422,11423,11424],"speed":100},{"id":11437,"frames":[11425,11426,11427,11428,11429],"speed":83},{"id":11438,"frames":[11430,11431,11432,11433,11434],"speed":83},{"id":11461,"frames":[11439,11440,11441,11442,11443,11444],"speed":100},{"id":11462,"frames":[11445,11446,11447,11448,11449,11450],"speed":100},{"id":11463,"frames":[11451,11452,11453,11454,11455],"speed":83},{"id":11464,"frames":[11456,11457,11458,11459,11460],"speed":83},{"id":11487,"frames":[11465,11466,11467,11468,11469,11470],"speed":100},{"id":11488,"frames":[11471,11472,11473,11474,11475,11476],"speed":100},{"id":11489,"frames":[11477,11478,11479,11480,11481],"speed":83},{"id":11490,"frames":[11482,11483,11484,11485,11486],"speed":83},{"id":11513,"frames":[11491,11492,11493,11494,11495,11496],"speed":100},{"id":11514,"frames":[11497,11498,11499,11500,11501,11502],"speed":100},{"id":11515,"frames":[11503,11504,11505,11506,11507],"speed":83},{"id":11516,"frames":[11508,11509,11510,11511,11512],"speed":83},{"id":11539,"frames":[11517,11518,11519,11520,11521,11522],"speed":100},{"id":11540,"frames":[11523,11524,11525,11526,11527,11528],"speed":100},{"id":11541,"frames":[11529,11530,11531,11532,11533],"speed":83},{"id":11542,"frames":[11534,11535,11536,11537,11538],"speed":83},{"id":11565,"frames":[11543,11544,11545,11546,11547,11548],"speed":100},{"id":11566,"frames":[11549,11550,11551,11552,11553,11554],"speed":100},{"id":11567,"frames":[11555,11556,11557,11558,11559],"speed":83},{"id":11568,"frames":[11560,11561,11562,11563,11564],"speed":83},{"id":11591,"frames":[11569,11570,11571,11572,11573,11574],"speed":100},{"id":11592,"frames":[11575,11576,11577,11578,11579,11580],"speed":100},{"id":11593,"frames":[11581,11582,11583,11584,11585],"speed":83},{"id":11594,"frames":[11586,11587,11588,11589,11590],"speed":83},{"id":11617,"frames":[11595,11596,11597,11598,11599,11600],"speed":100},{"id":11618,"frames":[11601,11602,11603,11604,11605,11606],"speed":100},{"id":11619,"frames":[11607,11608,11609,11610,11611],"speed":83},{"id":11620,"frames":[11612,11613,11614,11615,11616],"speed":83},{"id":11643,"frames":[11621,11622,11623,11624,11625,11626],"speed":100},{"id":11644,"frames":[11627,11628,11629,11630,11631,11632],"speed":100},{"id":11645,"frames":[11633,11634,11635,11636,11637],"speed":83},{"id":11646,"frames":[11638,11639,11640,11641,11642],"speed":83},{"id":11669,"frames":[11647,11648,11649,11650,11651,11652],"speed":100},{"id":11670,"frames":[11653,11654,11655,11656,11657,11658],"speed":100},{"id":11671,"frames":[11659,11660,11661,11662,11663],"speed":83},{"id":11672,"frames":[11664,11665,11666,11667,11668],"speed":83},{"id":11695,"frames":[11673,11674,11675,11676,11677,11678],"speed":100},{"id":11696,"frames":[11679,11680,11681,11682,11683,11684],"speed":100},{"id":11697,"frames":[11685,11686,11687,11688,11689],"speed":83},{"id":11698,"frames":[11690,11691,11692,11693,11694],"speed":83},{"id":11721,"frames":[11699,11700,11701,11702,11703,11704],"speed":100},{"id":11722,"frames":[11705,11706,11707,11708,11709,11710],"speed":100},{"id":11723,"frames":[11711,11712,11713,11714,11715],"speed":83},{"id":11724,"frames":[11716,11717,11718,11719,11720],"speed":83},{"id":11747,"frames":[11725,11726,11727,11728,11729,11730],"speed":100},{"id":11748,"frames":[11731,11732,11733,11734,11735,11736],"speed":100},{"id":11749,"frames":[11737,11738,11739,11740,11741],"speed":83},{"id":11750,"frames":[11742,11743,11744,11745,11746],"speed":83},{"id":11773,"frames":[11751,11752,11753,11754,11755,11756],"speed":100},{"id":11774,"frames":[11757,11758,11759,11760,11761,11762],"speed":100},{"id":11775,"frames":[11763,11764,11765,11766,11767],"speed":83},{"id":11776,"frames":[11768,11769,11770,11771,11772],"speed":83},{"id":11799,"frames":[11777,11778,11779,11780,11781,11782],"speed":100},{"id":11800,"frames":[11783,11784,11785,11786,11787,11788],"speed":100},{"id":11801,"frames":[11789,11790,11791,11792,11793],"speed":83},{"id":11802,"frames":[11794,11795,11796,11797,11798],"speed":83},{"id":11825,"frames":[11803,11804,11805,11806,11807,11808],"speed":100},{"id":11826,"frames":[11809,11810,11811,11812,11813,11814],"speed":100},{"id":11827,"frames":[11815,11816,11817,11818,11819],"speed":83},{"id":11828,"frames":[11820,11821,11822,11823,11824],"speed":83},{"id":11851,"frames":[11829,11830,11831,11832,11833,11834],"speed":100},{"id":11852,"frames":[11835,11836,11837,11838,11839,11840],"speed":100},{"id":11853,"frames":[11841,11842,11843,11844,11845],"speed":83},{"id":11854,"frames":[11846,11847,11848,11849,11850],"speed":83},{"id":11877,"frames":[11855,11856,11857,11858,11859,11860],"speed":100},{"id":11878,"frames":[11861,11862,11863,11864,11865,11866],"speed":100},{"id":11879,"frames":[11867,11868,11869,11870,11871],"speed":83},{"id":11880,"frames":[11872,11873,11874,11875,11876],"speed":83},{"id":11913,"frames":[11881,11882,11883,11884,11885,11886,11887,11888],"speed":133},{"id":11914,"frames":[11889,11890,11891,11892,11893,11894,11895,11896],"speed":133},{"id":11915,"frames":[11897,11898,11899,11900,11901,11902,11903,11904],"speed":133},{"id":11916,"frames":[11905,11906,11907,11908,11909,11910,11911,11912],"speed":133},{"id":11939,"frames":[11917,11918,11919,11920,11921,11922],"speed":100},{"id":11940,"frames":[11923,11924,11925,11926,11927,11928],"speed":100},{"id":11941,"frames":[11929,11930,11931,11932,11933],"speed":83},{"id":11942,"frames":[11934,11935,11936,11937,11938],"speed":83},{"id":11975,"frames":[11943,11944,11945,11946,11947,11948,11949,11950],"speed":133},{"id":11976,"frames":[11951,11952,11953,11954,11955,11956,11957,11958],"speed":133},{"id":11977,"frames":[11959,11960,11961,11962,11963,11964,11965,11966],"speed":133},{"id":11978,"frames":[11967,11968,11969,11970,11971,11972,11973,11974],"speed":133},{"id":12016,"frames":[12004,12005,12006],"speed":50},{"id":12017,"frames":[12007,12008,12009],"speed":50},{"id":12018,"frames":[12010,12011,12012],"speed":50},{"id":12019,"frames":[12013,12014,12015],"speed":50},{"id":12028,"frames":[12020,12021],"speed":33},{"id":12029,"frames":[12022,12023],"speed":33},{"id":12030,"frames":[12024,12025],"speed":33},{"id":12031,"frames":[12026,12027],"speed":33},{"id":12048,"frames":[12032,12033,12034,12035],"speed":66},{"id":12049,"frames":[12036,12037,12038,12039],"speed":66},{"id":12050,"frames":[12040,12041,12042,12043],"speed":66},{"id":12051,"frames":[12044,12045,12046,12047],"speed":66},{"id":12068,"frames":[12052,12053,12054,12055],"speed":66},{"id":12069,"frames":[12056,12057,12058,12059],"speed":66},{"id":12070,"frames":[12060,12061,12062,12063],"speed":66},{"id":12071,"frames":[12064,12065,12066,12067],"speed":66},{"id":12104,"frames":[12072,12073,12074,12075,12076,12077,12078,12079],"speed":133},{"id":12105,"frames":[12080,12081,12082,12083,12084,12085,12086,12087],"speed":133},{"id":12106,"frames":[12088,12089,12090,12091,12092,12093,12094,12095],"speed":133},{"id":12107,"frames":[12096,12097,12098,12099,12100,12101,12102,12103],"speed":133},{"id":12140,"frames":[12108,12109,12110,12111,12112,12113,12114,12115],"speed":133},{"id":12141,"frames":[12116,12117,12118,12119,12120,12121,12122,12123],"speed":133},{"id":12142,"frames":[12124,12125,12126,12127,12128,12129,12130,12131],"speed":133},{"id":12143,"frames":[12132,12133,12134,12135,12136,12137,12138,12139],"speed":133},{"id":12180,"frames":[12144,12145,12146,12147,12148,12149,12150,12151,12152],"speed":150},{"id":12181,"frames":[12153,12154,12155,12156,12157,12158,12159,12160,12161],"speed":150},{"id":12182,"frames":[12162,12163,12164,12165,12166,12167,12168,12169,12170],"speed":150},{"id":12183,"frames":[12171,12172,12173,12174,12175,12176,12177,12178,12179],"speed":150},{"id":12216,"frames":[12184,12185,12186,12187,12188,12189,12190,12191],"speed":133},{"id":12217,"frames":[12192,12193,12194,12195,12196,12197,12198,12199],"speed":133},{"id":12218,"frames":[12200,12201,12202,12203,12204,12205,12206,12207],"speed":133},{"id":12219,"frames":[12208,12209,12210,12211,12212,12213,12214,12215],"speed":133},{"id":12252,"frames":[12220,12221,12222,12223,12224,12225,12226,12227],"speed":133},{"id":12253,"frames":[12228,12229,12230,12231,12232,12233,12234,12235],"speed":133},{"id":12254,"frames":[12236,12237,12238,12239,12240,12241,12242,12243],"speed":133},{"id":12255,"frames":[12244,12245,12246,12247,12248,12249,12250,12251],"speed":133},{"id":12288,"frames":[12256,12257,12258,12259,12260,12261,12262,12263],"speed":133},{"id":12289,"frames":[12264,12265,12266,12267,12268,12269,12270,12271],"speed":133},{"id":12290,"frames":[12272,12273,12274,12275,12276,12277,12278,12279],"speed":133},{"id":12291,"frames":[12280,12281,12282,12283,12284,12285,12286,12287],"speed":133},{"id":12322,"frames":[12292,12293,12294,12295,12296],"speed":83},{"id":12323,"frames":[12298,12299,12300,12301,12302],"speed":83},{"id":12324,"frames":[12311,12312,12313,12314,12315],"speed":83},{"id":12325,"frames":[12317,12318,12319,12320,12321],"speed":83},{"id":12430,"frames":[12422,12423,12424,12425],"speed":66},{"id":12695,"frames":[12663,12664,12665,12666,12667,12668,12669,12670],"speed":133},{"id":12696,"frames":[12671,12672,12673,12674,12675,12676,12677,12678],"speed":133},{"id":12697,"frames":[12679,12680,12681,12682,12683,12684,12685,12686],"speed":133},{"id":12698,"frames":[12687,12688,12689,12690,12691,12692,12693,12694],"speed":133},{"id":12748,"frames":[12728,12729,12730,12731,12732],"speed":83},{"id":12749,"frames":[12733,12734,12735,12736,12737],"speed":83},{"id":12750,"frames":[12738,12739,12740,12741,12742],"speed":83},{"id":12751,"frames":[12743,12744,12745,12746,12747],"speed":83},{"id":12775,"frames":[12753,12754,12755,12756,12757,12758],"speed":100},{"id":12776,"frames":[12759,12760,12761,12762,12763,12764],"speed":100},{"id":12777,"frames":[12765,12766,12767,12768,12769],"speed":83},{"id":12778,"frames":[12770,12771,12772,12773,12774],"speed":83},{"id":12802,"frames":[12780,12781,12782,12783,12784,12785],"speed":100},{"id":12803,"frames":[12786,12787,12788,12789,12790,12791],"speed":100},{"id":12804,"frames":[12792,12793,12794,12795,12796],"speed":83},{"id":12805,"frames":[12797,12798,12799,12800,12801],"speed":83},{"id":12829,"frames":[12807,12808,12809,12810,12811,12812],"speed":100},{"id":12830,"frames":[12813,12814,12815,12816,12817,12818],"speed":100},{"id":12831,"frames":[12819,12820,12821,12822,12823],"speed":83},{"id":12832,"frames":[12824,12825,12826,12827,12828],"speed":83},{"id":12856,"frames":[12834,12835,12836,12837,12838,12839],"speed":100},{"id":12857,"frames":[12840,12841,12842,12843,12844,12845],"speed":100},{"id":12858,"frames":[12846,12847,12848,12849,12850],"speed":83},{"id":12859,"frames":[12851,12852,12853,12854,12855],"speed":83},{"id":12883,"frames":[12861,12862,12863,12864,12865,12866],"speed":100},{"id":12884,"frames":[12867,12868,12869,12870,12871,12872],"speed":100},{"id":12885,"frames":[12873,12874,12875,12876,12877],"speed":83},{"id":12886,"frames":[12878,12879,12880,12881,12882],"speed":83},{"id":12910,"frames":[12888,12889,12890,12891,12892,12893],"speed":100},{"id":12911,"frames":[12894,12895,12896,12897,12898,12899],"speed":100},{"id":12912,"frames":[12900,12901,12902,12903,12904],"speed":83},{"id":12913,"frames":[12905,12906,12907,12908,12909],"speed":83},{"id":12937,"frames":[12915,12916,12917,12918,12919,12920],"speed":100},{"id":12938,"frames":[12921,12922,12923,12924,12925,12926],"speed":100},{"id":12939,"frames":[12927,12928,12929,12930,12931],"speed":83},{"id":12940,"frames":[12932,12933,12934,12935,12936],"speed":83},{"id":12963,"frames":[12941,12942,12943,12944,12945,12946],"speed":100},{"id":12964,"frames":[12947,12948,12949,12950,12951,12952],"speed":100},{"id":12965,"frames":[12953,12954,12955,12956,12957],"speed":83},{"id":12966,"frames":[12958,12959,12960,12961,12962],"speed":83},{"id":12990,"frames":[12968,12969,12970,12971,12972,12973],"speed":100},{"id":12991,"frames":[12974,12975,12976,12977,12978,12979],"speed":100},{"id":12992,"frames":[12980,12981,12982,12983,12984],"speed":83},{"id":12993,"frames":[12985,12986,12987,12988,12989],"speed":83},{"id":13278,"frames":[13256,13257,13258,13259,13260,13261],"speed":100},{"id":13279,"frames":[13262,13263,13264,13265,13266,13267],"speed":100},{"id":13280,"frames":[13268,13269,13270,13271,13272],"speed":83},{"id":13281,"frames":[13273,13274,13275,13276,13277],"speed":83},{"id":13305,"frames":[13283,13284,13285,13286,13287,13288],"speed":100},{"id":13306,"frames":[13289,13290,13291,13292,13293,13294],"speed":100},{"id":13307,"frames":[13295,13296,13297,13298,13299],"speed":83},{"id":13308,"frames":[13300,13301,13302,13303,13304],"speed":83},{"id":13331,"frames":[13309,13310,13311,13312,13313,13314],"speed":100},{"id":13332,"frames":[13315,13316,13317,13318,13319,13320],"speed":100},{"id":13333,"frames":[13321,13322,13323,13324,13325],"speed":83},{"id":13334,"frames":[13326,13327,13328,13329,13330],"speed":83},{"id":13357,"frames":[13335,13336,13337,13338,13339,13340],"speed":100},{"id":13358,"frames":[13341,13342,13343,13344,13345,13346],"speed":100},{"id":13359,"frames":[13347,13348,13349,13350,13351],"speed":83},{"id":13360,"frames":[13352,13353,13354,13355,13356],"speed":83},{"id":13383,"frames":[13361,13362,13363,13364,13365,13366],"speed":100},{"id":13384,"frames":[13367,13368,13369,13370,13371,13372],"speed":100},{"id":13385,"frames":[13373,13374,13375,13376,13377],"speed":83},{"id":13386,"frames":[13378,13379,13380,13381,13382],"speed":83},{"id":13547,"frames":[13483,13499,13515,13531],"speed":66},{"id":13548,"frames":[13484,13500,13516,13532],"speed":66},{"id":13549,"frames":[13485,13501,13517,13533],"speed":66},{"id":13550,"frames":[13486,13502,13518,13534],"speed":66},{"id":13551,"frames":[13487,13503,13519,13535],"speed":66},{"id":13552,"frames":[13488,13504,13520,13536],"speed":66},{"id":13553,"frames":[13489,13505,13521,13537],"speed":66},{"id":13554,"frames":[13490,13506,13522,13538],"speed":66},{"id":13555,"frames":[13491,13507,13523,13539],"speed":66},{"id":13557,"frames":[13493,13509,13525,13541],"speed":66},{"id":13558,"frames":[13494,13510,13526,13542],"speed":66},{"id":13559,"frames":[13495,13511,13527,13543],"speed":66},{"id":13560,"frames":[13496,13512,13528,13544],"speed":66},{"id":13561,"frames":[13497,13513,13529,13545],"speed":66},{"id":13562,"frames":[13498,13514,13530,13546],"speed":66},{"id":13585,"frames":[13563,13564,13565,13566,13567,13568],"speed":100},{"id":13586,"frames":[13569,13570,13571,13572,13573,13574],"speed":100},{"id":13587,"frames":[13575,13576,13577,13578,13579],"speed":83},{"id":13588,"frames":[13580,13581,13582,13583,13584],"speed":83},{"id":13613,"frames":[13591,13592,13593,13594,13595,13596],"speed":100},{"id":13614,"frames":[13597,13598,13599,13600,13601,13602],"speed":100},{"id":13615,"frames":[13603,13604,13605,13606,13607],"speed":83},{"id":13616,"frames":[13608,13609,13610,13611,13612],"speed":83},{"id":13640,"frames":[13617,13618,13619,13620,13621,13622],"speed":100},{"id":13641,"frames":[13623,13624,13625,13626,13627,13628],"speed":100},{"id":13642,"frames":[13629,13630,13631,13632,13633],"speed":83},{"id":13643,"frames":[13634,13635,13636,13637,13638],"speed":83},{"id":13667,"frames":[13644,13645,13646,13647,13648,13649],"speed":100},{"id":13668,"frames":[13650,13651,13652,13653,13654,13655],"speed":100},{"id":13669,"frames":[13656,13657,13658,13659,13660],"speed":83},{"id":13670,"frames":[13661,13662,13663,13664,13665],"speed":83},{"id":13694,"frames":[13671,13672,13673,13674,13675,13676],"speed":100},{"id":13695,"frames":[13677,13678,13679,13680,13681,13682],"speed":100},{"id":13696,"frames":[13683,13684,13685,13686,13687],"speed":83},{"id":13697,"frames":[13688,13689,13690,13691,13692],"speed":83},{"id":13721,"frames":[13698,13699,13700,13701,13702,13703],"speed":100},{"id":13722,"frames":[13704,13705,13706,13707,13708,13709],"speed":100},{"id":13723,"frames":[13710,13711,13712,13713,13714],"speed":83},{"id":13724,"frames":[13715,13716,13717,13718,13719],"speed":83},{"id":13747,"frames":[13725,13726,13727,13728,13729,13730],"speed":100},{"id":13748,"frames":[13731,13732,13733,13734,13735,13736],"speed":100},{"id":13749,"frames":[13737,13738,13739,13740,13741],"speed":83},{"id":13750,"frames":[13742,13743,13744,13745,13746],"speed":83},{"id":13774,"frames":[13751,13752,13753,13754,13755,13756],"speed":100},{"id":13775,"frames":[13757,13758,13759,13760,13761,13762],"speed":100},{"id":13776,"frames":[13763,13764,13765,13766,13767],"speed":83},{"id":13777,"frames":[13768,13769,13770,13771,13772],"speed":83},{"id":13801,"frames":[13778,13779,13780,13781,13782,13783],"speed":100},{"id":13802,"frames":[13784,13785,13786,13787,13788,13789],"speed":100},{"id":13803,"frames":[13790,13791,13792,13793,13794],"speed":83},{"id":13804,"frames":[13795,13796,13797,13798,13799],"speed":83},{"id":13828,"frames":[13805,13806,13807,13808,13809,13810],"speed":100},{"id":13829,"frames":[13811,13812,13813,13814,13815,13816],"speed":100},{"id":13830,"frames":[13817,13818,13819,13820,13821],"speed":83},{"id":13831,"frames":[13822,13823,13824,13825,13826],"speed":83},{"id":13855,"frames":[13832,13833,13834,13835,13836,13837],"speed":100},{"id":13856,"frames":[13838,13839,13840,13841,13842,13843],"speed":100},{"id":13857,"frames":[13844,13845,13846,13847,13848],"speed":83},{"id":13858,"frames":[13849,13850,13851,13852,13853],"speed":83},{"id":13882,"frames":[13859,13860,13861,13862,13863,13864],"speed":100},{"id":13883,"frames":[13865,13866,13867,13868,13869,13870],"speed":100},{"id":13884,"frames":[13871,13872,13873,13874,13875],"speed":83},{"id":13885,"frames":[13876,13877,13878,13879,13880],"speed":83},{"id":13908,"frames":[13886,13887,13888,13889,13890,13891],"speed":100},{"id":13909,"frames":[13892,13893,13894,13895,13896,13897],"speed":100},{"id":13910,"frames":[13898,13899,13900,13901,13902],"speed":83},{"id":13911,"frames":[13903,13904,13905,13906,13907],"speed":83},{"id":13924,"frames":[13912,13913,13914,13915,13916,13917],"speed":100},{"id":13925,"frames":[13918,13919,13920,13921,13922,13923],"speed":100},{"id":13948,"frames":[13926,13927,13928,13929,13930,13931],"speed":100},{"id":13949,"frames":[13932,13933,13934,13935,13936,13937],"speed":100},{"id":13950,"frames":[13938,13939,13940,13941,13942],"speed":83},{"id":13951,"frames":[13943,13944,13945,13946,13947],"speed":83},{"id":13986,"frames":[13964,13965,13966,13967,13968,13969],"speed":100},{"id":13987,"frames":[13970,13971,13972,13973,13974,13975],"speed":100},{"id":13988,"frames":[13976,13977,13978,13979,13980],"speed":83},{"id":13989,"frames":[13981,13982,13983,13984,13985],"speed":83},{"id":14022,"frames":[14000,14001,14002,14003,14004,14005],"speed":100},{"id":14023,"frames":[14006,14007,14008,14009,14010,14011],"speed":100},{"id":14024,"frames":[14012,14013,14014,14015,14016],"speed":83},{"id":14025,"frames":[14017,14018,14019,14020,14021],"speed":83},{"id":14048,"frames":[14026,14027,14028,14029,14030,14031],"speed":100},{"id":14049,"frames":[14032,14033,14034,14035,14036,14037],"speed":100},{"id":14050,"frames":[14038,14039,14040,14041,14042],"speed":83},{"id":14051,"frames":[14043,14044,14045,14046,14047],"speed":83},{"id":14075,"frames":[14053,14054,14055,14056,14057,14058],"speed":100},{"id":14076,"frames":[14059,14060,14061,14062,14063,14064],"speed":100},{"id":14077,"frames":[14065,14066,14067,14068,14069],"speed":83},{"id":14078,"frames":[14070,14071,14072,14073,14074],"speed":83},{"id":14102,"frames":[14080,14081,14082,14083,14084,14085],"speed":100},{"id":14103,"frames":[14086,14087,14088,14089,14090,14091],"speed":100},{"id":14104,"frames":[14092,14093,14094,14095,14096],"speed":83},{"id":14105,"frames":[14097,14098,14099,14100,14101],"speed":83},{"id":14128,"frames":[14106,14107,14108,14109,14110,14111],"speed":100},{"id":14129,"frames":[14112,14113,14114,14115,14116,14117],"speed":100},{"id":14130,"frames":[14118,14119,14120,14121,14122],"speed":83},{"id":14131,"frames":[14123,14124,14125,14126,14127],"speed":83},{"id":14154,"frames":[14132,14133,14134,14135,14136,14137],"speed":100},{"id":14155,"frames":[14138,14139,14140,14141,14142,14143],"speed":100},{"id":14156,"frames":[14144,14145,14146,14147,14148],"speed":83},{"id":14157,"frames":[14149,14150,14151,14152,14153],"speed":83},{"id":14180,"frames":[14158,14159,14160,14161,14162,14163],"speed":100},{"id":14181,"frames":[14164,14165,14166,14167,14168,14169],"speed":100},{"id":14182,"frames":[14170,14171,14172,14173,14174],"speed":83},{"id":14183,"frames":[14175,14176,14177,14178,14179],"speed":83},{"id":14219,"frames":[14197,14198,14199,14200,14201,14202],"speed":100},{"id":14220,"frames":[14203,14204,14205,14206,14207,14208],"speed":100},{"id":14221,"frames":[14209,14210,14211,14212,14213],"speed":83},{"id":14222,"frames":[14214,14215,14216,14217,14218],"speed":83},{"id":14246,"frames":[14224,14225,14226,14227,14228,14229],"speed":100},{"id":14247,"frames":[14230,14231,14232,14233,14234,14235],"speed":100},{"id":14248,"frames":[14236,14237,14238,14239,14240],"speed":83},{"id":14249,"frames":[14241,14242,14243,14244,14245],"speed":83},{"id":14273,"frames":[14251,14252,14253,14254,14255,14256],"speed":100},{"id":14274,"frames":[14257,14258,14259,14260,14261,14262],"speed":100},{"id":14275,"frames":[14263,14264,14265,14266,14267],"speed":83},{"id":14276,"frames":[14268,14269,14270,14271,14272],"speed":83},{"id":14300,"frames":[14278,14279,14280,14281,14282,14283],"speed":100},{"id":14301,"frames":[14284,14285,14286,14287,14288,14289],"speed":100},{"id":14302,"frames":[14290,14291,14292,14293,14294],"speed":83},{"id":14303,"frames":[14295,14296,14297,14298,14299],"speed":83},{"id":14327,"frames":[14305,14306,14307,14308,14309,14310],"speed":100},{"id":14328,"frames":[14311,14312,14313,14314,14315,14316],"speed":100},{"id":14329,"frames":[14317,14318,14319,14320,14321],"speed":83},{"id":14330,"frames":[14322,14323,14324,14325,14326],"speed":83},{"id":14354,"frames":[14332,14333,14334,14335,14336,14337],"speed":100},{"id":14355,"frames":[14338,14339,14340,14341,14342,14343],"speed":100},{"id":14356,"frames":[14344,14345,14346,14347,14348],"speed":83},{"id":14357,"frames":[14349,14350,14351,14352,14353],"speed":83},{"id":14381,"frames":[14359,14360,14361,14362,14363,14364],"speed":100},{"id":14382,"frames":[14365,14366,14367,14368,14369,14370],"speed":100},{"id":14383,"frames":[14371,14372,14373,14374,14375],"speed":83},{"id":14384,"frames":[14376,14377,14378,14379,14380],"speed":83},{"id":14408,"frames":[14386,14387,14388,14389,14390,14391],"speed":100},{"id":14409,"frames":[14392,14393,14394,14395,14396,14397],"speed":100},{"id":14410,"frames":[14398,14399,14400,14401,14402],"speed":83},{"id":14411,"frames":[14403,14404,14405,14406,14407],"speed":83},{"id":14435,"frames":[14413,14414,14415,14416,14417,14418],"speed":100},{"id":14436,"frames":[14419,14420,14421,14422,14423,14424],"speed":100},{"id":14437,"frames":[14425,14426,14427,14428,14429],"speed":83},{"id":14438,"frames":[14430,14431,14432,14433,14434],"speed":83},{"id":14462,"frames":[14440,14441,14442,14443,14444,14445],"speed":100},{"id":14463,"frames":[14446,14447,14448,14449,14450,14451],"speed":100},{"id":14464,"frames":[14452,14453,14454,14455,14456],"speed":83},{"id":14465,"frames":[14457,14458,14459,14460,14461],"speed":83},{"id":14489,"frames":[14467,14468,14469,14470,14471,14472],"speed":100},{"id":14490,"frames":[14473,14474,14475,14476,14477,14478],"speed":100},{"id":14491,"frames":[14479,14480,14481,14482,14483],"speed":83},{"id":14492,"frames":[14484,14485,14486,14487,14488],"speed":83},{"id":14516,"frames":[14494,14495,14496,14497,14498,14499],"speed":100},{"id":14517,"frames":[14500,14501,14502,14503,14504,14505],"speed":100},{"id":14518,"frames":[14506,14507,14508,14509,14510],"speed":83},{"id":14519,"frames":[14511,14512,14513,14514,14515],"speed":83},{"id":14543,"frames":[14521,14522,14523,14524,14525,14526],"speed":100},{"id":14544,"frames":[14527,14528,14529,14530,14531,14532],"speed":100},{"id":14545,"frames":[14533,14534,14535,14536,14537],"speed":83},{"id":14546,"frames":[14538,14539,14540,14541,14542],"speed":83},{"id":14570,"frames":[14548,14549,14550,14551,14552,14553],"speed":100},{"id":14571,"frames":[14554,14555,14556,14557,14558,14559],"speed":100},{"id":14572,"frames":[14560,14561,14562,14563,14564],"speed":83},{"id":14573,"frames":[14565,14566,14567,14568,14569],"speed":83},{"id":14597,"frames":[14575,14576,14577,14578,14579,14580],"speed":100},{"id":14598,"frames":[14581,14582,14583,14584,14585,14586],"speed":100},{"id":14599,"frames":[14587,14588,14589,14590,14591],"speed":83},{"id":14600,"frames":[14592,14593,14594,14595,14596],"speed":83},{"id":14624,"frames":[14602,14603,14604,14605,14606,14607],"speed":100},{"id":14625,"frames":[14608,14609,14610,14611,14612,14613],"speed":100},{"id":14626,"frames":[14614,14615,14616,14617,14618],"speed":83},{"id":14627,"frames":[14619,14620,14621,14622,14623],"speed":83},{"id":14651,"frames":[14629,14630,14631,14632,14633,14634],"speed":100},{"id":14652,"frames":[14635,14636,14637,14638,14639,14640],"speed":100},{"id":14653,"frames":[14641,14642,14643,14644,14645],"speed":83},{"id":14654,"frames":[14646,14647,14648,14649,14650],"speed":83},{"id":14678,"frames":[14656,14657,14658,14659,14660,14661],"speed":100},{"id":14679,"frames":[14662,14663,14664,14665,14666,14667],"speed":100},{"id":14680,"frames":[14668,14669,14670,14671,14672],"speed":83},{"id":14681,"frames":[14673,14674,14675,14676,14677],"speed":83},{"id":14705,"frames":[14683,14684,14685,14686,14687,14688],"speed":100},{"id":14706,"frames":[14689,14690,14691,14692,14693,14694],"speed":100},{"id":14707,"frames":[14695,14696,14697,14698,14699],"speed":83},{"id":14708,"frames":[14700,14701,14702,14703,14704],"speed":83},{"id":14732,"frames":[14710,14711,14712,14713,14714,14715],"speed":100},{"id":14733,"frames":[14716,14717,14718,14719,14720,14721],"speed":100},{"id":14734,"frames":[14722,14723,14724,14725,14726],"speed":83},{"id":14735,"frames":[14727,14728,14729,14730,14731],"speed":83},{"id":14759,"frames":[14737,14738,14739,14740,14741,14742],"speed":100},{"id":14760,"frames":[14743,14744,14745,14746,14747,14748],"speed":100},{"id":14761,"frames":[14749,14750,14751,14752,14753],"speed":83},{"id":14762,"frames":[14754,14755,14756,14757,14758],"speed":83},{"id":14786,"frames":[14764,14765,14766,14767,14768,14769],"speed":100},{"id":14787,"frames":[14770,14771,14772,14773,14774,14775],"speed":100},{"id":14788,"frames":[14776,14777,14778,14779,14780],"speed":83},{"id":14789,"frames":[14781,14782,14783,14784,14785],"speed":83},{"id":14813,"frames":[14791,14792,14793,14794,14795,14796],"speed":100},{"id":14814,"frames":[14797,14798,14799,14800,14801,14802],"speed":100},{"id":14815,"frames":[14803,14804,14805,14806,14807],"speed":83},{"id":14816,"frames":[14808,14809,14810,14811,14812],"speed":83},{"id":14840,"frames":[14818,14819,14820,14821,14822,14823],"speed":100},{"id":14841,"frames":[14824,14825,14826,14827,14828,14829],"speed":100},{"id":14842,"frames":[14830,14831,14832,14833,14834],"speed":83},{"id":14843,"frames":[14835,14836,14837,14838,14839],"speed":83},{"id":14867,"frames":[14845,14846,14847,14848,14849,14850],"speed":100},{"id":14868,"frames":[14851,14852,14853,14854,14855,14856],"speed":100},{"id":14869,"frames":[14857,14858,14859,14860,14861],"speed":83},{"id":14870,"frames":[14862,14863,14864,14865,14866],"speed":83},{"id":14894,"frames":[14872,14873,14874,14875,14876,14877],"speed":100},{"id":14895,"frames":[14878,14879,14880,14881,14882,14883],"speed":100},{"id":14896,"frames":[14884,14885,14886,14887,14888],"speed":83},{"id":14897,"frames":[14889,14890,14891,14892,14893],"speed":83},{"id":14921,"frames":[14899,14900,14901,14902,14903,14904],"speed":100},{"id":14922,"frames":[14905,14906,14907,14908,14909,14910],"speed":100},{"id":14923,"frames":[14911,14912,14913,14914,14915],"speed":83},{"id":14924,"frames":[14916,14917,14918,14919,14920],"speed":83},{"id":14948,"frames":[14926,14927,14928,14929,14930,14931],"speed":100},{"id":14949,"frames":[14932,14933,14934,14935,14936,14937],"speed":100},{"id":14950,"frames":[14938,14939,14940,14941,14942],"speed":83},{"id":14951,"frames":[14943,14944,14945,14946,14947],"speed":83},{"id":14975,"frames":[14953,14954,14955,14956,14957,14958],"speed":100},{"id":14976,"frames":[14959,14960,14961,14962,14963,14964],"speed":100},{"id":14977,"frames":[14965,14966,14967,14968,14969],"speed":83},{"id":14978,"frames":[14970,14971,14972,14973,14974],"speed":83},{"id":15002,"frames":[14980,14981,14982,14983,14984,14985],"speed":100},{"id":15003,"frames":[14986,14987,14988,14989,14990,14991],"speed":100},{"id":15004,"frames":[14992,14993,14994,14995,14996],"speed":83},{"id":15005,"frames":[14997,14998,14999,15000,15001],"speed":83},{"id":15029,"frames":[15007,15008,15009,15010,15011,15012],"speed":100},{"id":15030,"frames":[15013,15014,15015,15016,15017,15018],"speed":100},{"id":15031,"frames":[15019,15020,15021,15022,15023],"speed":83},{"id":15032,"frames":[15024,15025,15026,15027,15028],"speed":83},{"id":15056,"frames":[15034,15035,15036,15037,15038,15039],"speed":100},{"id":15057,"frames":[15040,15041,15042,15043,15044,15045],"speed":100},{"id":15058,"frames":[15046,15047,15048,15049,15050],"speed":83},{"id":15059,"frames":[15051,15052,15053,15054,15055],"speed":83},{"id":15083,"frames":[15061,15062,15063,15064,15065,15066],"speed":100},{"id":15084,"frames":[15067,15068,15069,15070,15071,15072],"speed":100},{"id":15085,"frames":[15073,15074,15075,15076,15077],"speed":83},{"id":15086,"frames":[15078,15079,15080,15081,15082],"speed":83},{"id":15110,"frames":[15088,15089,15090,15091,15092,15093],"speed":100},{"id":15111,"frames":[15094,15095,15096,15097,15098,15099],"speed":100},{"id":15112,"frames":[15100,15101,15102,15103,15104],"speed":83},{"id":15113,"frames":[15105,15106,15107,15108,15109],"speed":83},{"id":15137,"frames":[15115,15116,15117,15118,15119,15120],"speed":100},{"id":15138,"frames":[15121,15122,15123,15124,15125,15126],"speed":100},{"id":15139,"frames":[15127,15128,15129,15130,15131],"speed":83},{"id":15140,"frames":[15132,15133,15134,15135,15136],"speed":83},{"id":15164,"frames":[15142,15143,15144,15145,15146,15147],"speed":100},{"id":15165,"frames":[15148,15149,15150,15151,15152,15153],"speed":100},{"id":15166,"frames":[15154,15155,15156,15157,15158],"speed":83},{"id":15167,"frames":[15159,15160,15161,15162,15163],"speed":83},{"id":15191,"frames":[15169,15170,15171,15172,15173,15174],"speed":100},{"id":15192,"frames":[15175,15176,15177,15178,15179,15180],"speed":100},{"id":15193,"frames":[15181,15182,15183,15184,15185],"speed":83},{"id":15194,"frames":[15186,15187,15188,15189,15190],"speed":83},{"id":15218,"frames":[15196,15197,15198,15199,15200,15201],"speed":100},{"id":15219,"frames":[15202,15203,15204,15205,15206,15207],"speed":100},{"id":15220,"frames":[15208,15209,15210,15211,15212],"speed":83},{"id":15221,"frames":[15213,15214,15215,15216,15217],"speed":83},{"id":15245,"frames":[15223,15224,15225,15226,15227,15228],"speed":100},{"id":15246,"frames":[15229,15230,15231,15232,15233,15234],"speed":100},{"id":15247,"frames":[15235,15236,15237,15238,15239],"speed":83},{"id":15248,"frames":[15240,15241,15242,15243,15244],"speed":83},{"id":15272,"frames":[15250,15251,15252,15253,15254,15255],"speed":100},{"id":15273,"frames":[15256,15257,15258,15259,15260,15261],"speed":100},{"id":15274,"frames":[15262,15263,15264,15265,15266],"speed":83},{"id":15275,"frames":[15267,15268,15269,15270,15271],"speed":83},{"id":15299,"frames":[15277,15278,15279,15280,15281,15282],"speed":100},{"id":15300,"frames":[15283,15284,15285,15286,15287,15288],"speed":100},{"id":15301,"frames":[15289,15290,15291,15292,15293],"speed":83},{"id":15302,"frames":[15294,15295,15296,15297,15298],"speed":83},{"id":15326,"frames":[15304,15305,15306,15307,15308,15309],"speed":100},{"id":15327,"frames":[15310,15311,15312,15313,15314,15315],"speed":100},{"id":15328,"frames":[15316,15317,15318,15319,15320],"speed":83},{"id":15329,"frames":[15321,15322,15323,15324,15325],"speed":83},{"id":15353,"frames":[15331,15332,15333,15334,15335,15336],"speed":100},{"id":15354,"frames":[15337,15338,15339,15340,15341,15342],"speed":100},{"id":15355,"frames":[15343,15344,15345,15346,15347],"speed":83},{"id":15356,"frames":[15348,15349,15350,15351,15352],"speed":83},{"id":15380,"frames":[15358,15359,15360,15361,15362,15363],"speed":100},{"id":15381,"frames":[15364,15365,15366,15367,15368,15369],"speed":100},{"id":15382,"frames":[15370,15371,15372,15373,15374],"speed":83},{"id":15383,"frames":[15375,15376,15377,15378,15379],"speed":83},{"id":15407,"frames":[15385,15386,15387,15388,15389,15390],"speed":100},{"id":15408,"frames":[15391,15392,15393,15394,15395,15396],"speed":100},{"id":15409,"frames":[15397,15398,15399,15400,15401],"speed":83},{"id":15410,"frames":[15402,15403,15404,15405,15406],"speed":83},{"id":15434,"frames":[15412,15413,15414,15415,15416,15417],"speed":100},{"id":15435,"frames":[15418,15419,15420,15421,15422,15423],"speed":100},{"id":15436,"frames":[15424,15425,15426,15427,15428],"speed":83},{"id":15437,"frames":[15429,15430,15431,15432,15433],"speed":83},{"id":15461,"frames":[15439,15440,15441,15442,15443,15444],"speed":100},{"id":15462,"frames":[15445,15446,15447,15448,15449,15450],"speed":100},{"id":15463,"frames":[15451,15452,15453,15454,15455],"speed":83},{"id":15464,"frames":[15456,15457,15458,15459,15460],"speed":83},{"id":15488,"frames":[15466,15467,15468,15469,15470,15471],"speed":100},{"id":15489,"frames":[15472,15473,15474,15475,15476,15477],"speed":100},{"id":15490,"frames":[15478,15479,15480,15481,15482],"speed":83},{"id":15491,"frames":[15483,15484,15485,15486,15487],"speed":83},{"id":15515,"frames":[15493,15494,15495,15496,15497,15498],"speed":100},{"id":15516,"frames":[15499,15500,15501,15502,15503,15504],"speed":100},{"id":15517,"frames":[15505,15506,15507,15508,15509],"speed":83},{"id":15518,"frames":[15510,15511,15512,15513,15514],"speed":83},{"id":15542,"frames":[15520,15521,15522,15523,15524,15525],"speed":100},{"id":15543,"frames":[15526,15527,15528,15529,15530,15531],"speed":100},{"id":15544,"frames":[15532,15533,15534,15535,15536],"speed":83},{"id":15545,"frames":[15537,15538,15539,15540,15541],"speed":83},{"id":15569,"frames":[15547,15548,15549,15550,15551,15552],"speed":100},{"id":15570,"frames":[15553,15554,15555,15556,15557,15558],"speed":100},{"id":15571,"frames":[15559,15560,15561,15562,15563],"speed":83},{"id":15572,"frames":[15564,15565,15566,15567,15568],"speed":83},{"id":15596,"frames":[15574,15575,15576,15577,15578,15579],"speed":100},{"id":15597,"frames":[15580,15581,15582,15583,15584,15585],"speed":100},{"id":15598,"frames":[15586,15587,15588,15589,15590],"speed":83},{"id":15599,"frames":[15591,15592,15593,15594,15595],"speed":83},{"id":15623,"frames":[15601,15602,15603,15604,15605,15606],"speed":100},{"id":15624,"frames":[15607,15608,15609,15610,15611,15612],"speed":100},{"id":15625,"frames":[15613,15614,15615,15616,15617],"speed":83},{"id":15626,"frames":[15618,15619,15620,15621,15622],"speed":83},{"id":15650,"frames":[15628,15629,15630,15631,15632,15633],"speed":100},{"id":15651,"frames":[15634,15635,15636,15637,15638,15639],"speed":100},{"id":15652,"frames":[15640,15641,15642,15643,15644],"speed":83},{"id":15653,"frames":[15645,15646,15647,15648,15649],"speed":83},{"id":15677,"frames":[15655,15656,15657,15658,15659,15660],"speed":100},{"id":15678,"frames":[15661,15662,15663,15664,15665,15666],"speed":100},{"id":15679,"frames":[15667,15668,15669,15670,15671],"speed":83},{"id":15680,"frames":[15672,15673,15674,15675,15676],"speed":83},{"id":15704,"frames":[15682,15683,15684,15685,15686,15687],"speed":100},{"id":15705,"frames":[15688,15689,15690,15691,15692,15693],"speed":100},{"id":15706,"frames":[15694,15695,15696,15697,15698],"speed":83},{"id":15707,"frames":[15699,15700,15701,15702,15703],"speed":83},{"id":15731,"frames":[15709,15710,15711,15712,15713,15714],"speed":100},{"id":15732,"frames":[15715,15716,15717,15718,15719,15720],"speed":100},{"id":15733,"frames":[15721,15722,15723,15724,15725],"speed":83},{"id":15734,"frames":[15726,15727,15728,15729,15730],"speed":83},{"id":15758,"frames":[15736,15737,15738,15739,15740,15741],"speed":100},{"id":15759,"frames":[15742,15743,15744,15745,15746,15747],"speed":100},{"id":15760,"frames":[15748,15749,15750,15751,15752],"speed":83},{"id":15761,"frames":[15753,15754,15755,15756,15757],"speed":83},{"id":15785,"frames":[15763,15764,15765,15766,15767,15768],"speed":100},{"id":15786,"frames":[15769,15770,15771,15772,15773,15774],"speed":100},{"id":15787,"frames":[15775,15776,15777,15778,15779],"speed":83},{"id":15788,"frames":[15780,15781,15782,15783,15784],"speed":83},{"id":15812,"frames":[15790,15791,15792,15793,15794,15795],"speed":100},{"id":15813,"frames":[15796,15797,15798,15799,15800,15801],"speed":100},{"id":15814,"frames":[15802,15803,15804,15805,15806],"speed":83},{"id":15815,"frames":[15807,15808,15809,15810,15811],"speed":83},{"id":15839,"frames":[15817,15818,15819,15820,15821,15822],"speed":100},{"id":15840,"frames":[15823,15824,15825,15826,15827,15828],"speed":100},{"id":15841,"frames":[15829,15830,15831,15832,15833],"speed":83},{"id":15842,"frames":[15834,15835,15836,15837,15838],"speed":83},{"id":15866,"frames":[15844,15845,15846,15847,15848,15849],"speed":100},{"id":15867,"frames":[15850,15851,15852,15853,15854,15855],"speed":100},{"id":15868,"frames":[15856,15857,15858,15859,15860],"speed":83},{"id":15869,"frames":[15861,15862,15863,15864,15865],"speed":83},{"id":15893,"frames":[15871,15872,15873,15874,15875,15876],"speed":100},{"id":15894,"frames":[15877,15878,15879,15880,15881,15882],"speed":100},{"id":15895,"frames":[15883,15884,15885,15886,15887],"speed":83},{"id":15896,"frames":[15888,15889,15890,15891,15892],"speed":83},{"id":15920,"frames":[15898,15899,15900,15901,15902,15903],"speed":100},{"id":15921,"frames":[15904,15905,15906,15907,15908,15909],"speed":100},{"id":15922,"frames":[15910,15911,15912,15913,15914],"speed":83},{"id":15923,"frames":[15915,15916,15917,15918,15919],"speed":83},{"id":15947,"frames":[15925,15926,15927,15928,15929,15930],"speed":100},{"id":15948,"frames":[15931,15932,15933,15934,15935,15936],"speed":100},{"id":15949,"frames":[15937,15938,15939,15940,15941],"speed":83},{"id":15950,"frames":[15942,15943,15944,15945,15946],"speed":83},{"id":15974,"frames":[15952,15953,15954,15955,15956,15957],"speed":100},{"id":15975,"frames":[15958,15959,15960,15961,15962,15963],"speed":100},{"id":15976,"frames":[15964,15965,15966,15967,15968],"speed":83},{"id":15977,"frames":[15969,15970,15971,15972,15973],"speed":83},{"id":16001,"frames":[15979,15980,15981,15982,15983,15984],"speed":100},{"id":16002,"frames":[15985,15986,15987,15988,15989,15990],"speed":100},{"id":16003,"frames":[15991,15992,15993,15994,15995],"speed":83},{"id":16004,"frames":[15996,15997,15998,15999,16000],"speed":83},{"id":16028,"frames":[16006,16007,16008,16009,16010,16011],"speed":100},{"id":16029,"frames":[16012,16013,16014,16015,16016,16017],"speed":100},{"id":16030,"frames":[16018,16019,16020,16021,16022],"speed":83},{"id":16031,"frames":[16023,16024,16025,16026,16027],"speed":83},{"id":16055,"frames":[16033,16034,16035,16036,16037,16038],"speed":100},{"id":16056,"frames":[16039,16040,16041,16042,16043,16044],"speed":100},{"id":16057,"frames":[16045,16046,16047,16048,16049],"speed":83},{"id":16058,"frames":[16050,16051,16052,16053,16054],"speed":83},{"id":16082,"frames":[16060,16061,16062,16063,16064,16065],"speed":100},{"id":16083,"frames":[16066,16067,16068,16069,16070,16071],"speed":100},{"id":16084,"frames":[16072,16073,16074,16075,16076],"speed":83},{"id":16085,"frames":[16077,16078,16079,16080,16081],"speed":83},{"id":16109,"frames":[16087,16088,16089,16090,16091,16092],"speed":100},{"id":16110,"frames":[16093,16094,16095,16096,16097,16098],"speed":100},{"id":16111,"frames":[16099,16100,16101,16102,16103],"speed":83},{"id":16112,"frames":[16104,16105,16106,16107,16108],"speed":83},{"id":16136,"frames":[16114,16115,16116,16117,16118,16119],"speed":100},{"id":16137,"frames":[16120,16121,16122,16123,16124,16125],"speed":100},{"id":16138,"frames":[16126,16127,16128,16129,16130],"speed":83},{"id":16139,"frames":[16131,16132,16133,16134,16135],"speed":83},{"id":16163,"frames":[16141,16142,16143,16144,16145,16146],"speed":100},{"id":16164,"frames":[16147,16148,16149,16150,16151,16152],"speed":100},{"id":16165,"frames":[16153,16154,16155,16156,16157],"speed":83},{"id":16166,"frames":[16158,16159,16160,16161,16162],"speed":83},{"id":16190,"frames":[16168,16169,16170,16171,16172,16173],"speed":100},{"id":16191,"frames":[16174,16175,16176,16177,16178,16179],"speed":100},{"id":16192,"frames":[16180,16181,16182,16183,16184],"speed":83},{"id":16193,"frames":[16185,16186,16187,16188,16189],"speed":83},{"id":16217,"frames":[16195,16196,16197,16198,16199,16200],"speed":100},{"id":16218,"frames":[16201,16202,16203,16204,16205,16206],"speed":100},{"id":16219,"frames":[16207,16208,16209,16210,16211],"speed":83},{"id":16220,"frames":[16212,16213,16214,16215,16216],"speed":83},{"id":16244,"frames":[16222,16223,16224,16225,16226,16227],"speed":100},{"id":16245,"frames":[16228,16229,16230,16231,16232,16233],"speed":100},{"id":16246,"frames":[16234,16235,16236,16237,16238],"speed":83},{"id":16247,"frames":[16239,16240,16241,16242,16243],"speed":83},{"id":16271,"frames":[16249,16250,16251,16252,16253,16254],"speed":100},{"id":16272,"frames":[16255,16256,16257,16258,16259,16260],"speed":100},{"id":16273,"frames":[16261,16262,16263,16264,16265],"speed":83},{"id":16274,"frames":[16266,16267,16268,16269,16270],"speed":83},{"id":16298,"frames":[16276,16277,16278,16279,16280,16281],"speed":100},{"id":16299,"frames":[16282,16283,16284,16285,16286,16287],"speed":100},{"id":16300,"frames":[16288,16289,16290,16291,16292],"speed":83},{"id":16301,"frames":[16293,16294,16295,16296,16297],"speed":83},{"id":16325,"frames":[16303,16304,16305,16306,16307,16308],"speed":100},{"id":16326,"frames":[16309,16310,16311,16312,16313,16314],"speed":100},{"id":16327,"frames":[16315,16316,16317,16318,16319],"speed":83},{"id":16328,"frames":[16320,16321,16322,16323,16324],"speed":83},{"id":16352,"frames":[16330,16331,16332,16333,16334,16335],"speed":100},{"id":16353,"frames":[16336,16337,16338,16339,16340,16341],"speed":100},{"id":16354,"frames":[16342,16343,16344,16345,16346],"speed":83},{"id":16355,"frames":[16347,16348,16349,16350,16351],"speed":83},{"id":16379,"frames":[16357,16358,16359,16360,16361,16362],"speed":100},{"id":16380,"frames":[16363,16364,16365,16366,16367,16368],"speed":100},{"id":16381,"frames":[16369,16370,16371,16372,16373],"speed":83},{"id":16382,"frames":[16374,16375,16376,16377,16378],"speed":83},{"id":16406,"frames":[16384,16385,16386,16387,16388,16389],"speed":100},{"id":16407,"frames":[16390,16391,16392,16393,16394,16395],"speed":100},{"id":16408,"frames":[16396,16397,16398,16399,16400],"speed":83},{"id":16409,"frames":[16401,16402,16403,16404,16405],"speed":83},{"id":16433,"frames":[16411,16412,16413,16414,16415,16416],"speed":100},{"id":16434,"frames":[16417,16418,16419,16420,16421,16422],"speed":100},{"id":16435,"frames":[16423,16424,16425,16426,16427],"speed":83},{"id":16436,"frames":[16428,16429,16430,16431,16432],"speed":83},{"id":16460,"frames":[16438,16439,16440,16441,16442,16443],"speed":100},{"id":16461,"frames":[16444,16445,16446,16447,16448,16449],"speed":100},{"id":16462,"frames":[16450,16451,16452,16453,16454],"speed":83},{"id":16463,"frames":[16455,16456,16457,16458,16459],"speed":83},{"id":16486,"frames":[16464,16465,16466,16467,16468,16469],"speed":100},{"id":16487,"frames":[16470,16471,16472,16473,16474,16475],"speed":100},{"id":16488,"frames":[16476,16477,16478,16479,16480],"speed":83},{"id":16489,"frames":[16481,16482,16483,16484,16485],"speed":83},{"id":16513,"frames":[16491,16492,16493,16494,16495,16496],"speed":100},{"id":16514,"frames":[16497,16498,16499,16500,16501,16502],"speed":100},{"id":16515,"frames":[16503,16504,16505,16506,16507],"speed":83},{"id":16516,"frames":[16508,16509,16510,16511,16512],"speed":83},{"id":16540,"frames":[16518,16519,16520,16521,16522,16523],"speed":100},{"id":16541,"frames":[16524,16525,16526,16527,16528,16529],"speed":100},{"id":16542,"frames":[16530,16531,16532,16533,16534],"speed":83},{"id":16543,"frames":[16535,16536,16537,16538,16539],"speed":83},{"id":16567,"frames":[16545,16546,16547,16548,16549,16550],"speed":100},{"id":16568,"frames":[16551,16552,16553,16554,16555,16556],"speed":100},{"id":16569,"frames":[16557,16558,16559,16560,16561],"speed":83},{"id":16570,"frames":[16562,16563,16564,16565,16566],"speed":83},{"id":16594,"frames":[16572,16573,16574,16575,16576,16577],"speed":100},{"id":16595,"frames":[16578,16579,16580,16581,16582,16583],"speed":100},{"id":16596,"frames":[16584,16585,16586,16587,16588],"speed":83},{"id":16597,"frames":[16589,16590,16591,16592,16593],"speed":83},{"id":16621,"frames":[16599,16600,16601,16602,16603,16604],"speed":100},{"id":16622,"frames":[16605,16606,16607,16608,16609,16610],"speed":100},{"id":16623,"frames":[16611,16612,16613,16614,16615],"speed":83},{"id":16624,"frames":[16616,16617,16618,16619,16620],"speed":83},{"id":16648,"frames":[16626,16627,16628,16629,16630,16631],"speed":100},{"id":16649,"frames":[16632,16633,16634,16635,16636,16637],"speed":100},{"id":16650,"frames":[16638,16639,16640,16641,16642],"speed":83},{"id":16651,"frames":[16643,16644,16645,16646,16647],"speed":83},{"id":16675,"frames":[16653,16654,16655,16656,16657,16658],"speed":100},{"id":16676,"frames":[16659,16660,16661,16662,16663,16664],"speed":100},{"id":16677,"frames":[16665,16666,16667,16668,16669],"speed":83},{"id":16678,"frames":[16670,16671,16672,16673,16674],"speed":83},{"id":16702,"frames":[16680,16681,16682,16683,16684,16685],"speed":100},{"id":16703,"frames":[16686,16687,16688,16689,16690,16691],"speed":100},{"id":16704,"frames":[16692,16693,16694,16695,16696],"speed":83},{"id":16705,"frames":[16697,16698,16699,16700,16701],"speed":83},{"id":16730,"frames":[16708,16709,16710,16711,16712,16713],"speed":100},{"id":16731,"frames":[16714,16715,16716,16717,16718,16719],"speed":100},{"id":16732,"frames":[16720,16721,16722,16723,16724],"speed":83},{"id":16733,"frames":[16725,16726,16727,16728,16729],"speed":83},{"id":16757,"frames":[16735,16736,16737,16738,16739,16740],"speed":100},{"id":16758,"frames":[16741,16742,16743,16744,16745,16746],"speed":100},{"id":16759,"frames":[16747,16748,16749,16750,16751],"speed":83},{"id":16760,"frames":[16752,16753,16754,16755,16756],"speed":83},{"id":16784,"frames":[16762,16763,16764,16765,16766,16767],"speed":100},{"id":16785,"frames":[16768,16769,16770,16771,16772,16773],"speed":100},{"id":16786,"frames":[16774,16775,16776,16777,16778],"speed":83},{"id":16787,"frames":[16779,16780,16781,16782,16783],"speed":83},{"id":16811,"frames":[16789,16790,16791,16792,16793,16794],"speed":100},{"id":16812,"frames":[16795,16796,16797,16798,16799,16800],"speed":100},{"id":16813,"frames":[16801,16802,16803,16804,16805],"speed":83},{"id":16814,"frames":[16806,16807,16808,16809,16810],"speed":83},{"id":16838,"frames":[16816,16817,16818,16819,16820,16821],"speed":100},{"id":16839,"frames":[16822,16823,16824,16825,16826,16827],"speed":100},{"id":16840,"frames":[16828,16829,16830,16831,16832],"speed":83},{"id":16841,"frames":[16833,16834,16835,16836,16837],"speed":83},{"id":16865,"frames":[16843,16844,16845,16846,16847,16848],"speed":100},{"id":16866,"frames":[16849,16850,16851,16852,16853,16854],"speed":100},{"id":16867,"frames":[16855,16856,16857,16858,16859],"speed":83},{"id":16868,"frames":[16860,16861,16862,16863,16864],"speed":83},{"id":16892,"frames":[16870,16871,16872,16873,16874,16875],"speed":100},{"id":16893,"frames":[16876,16877,16878,16879,16880,16881],"speed":100},{"id":16894,"frames":[16882,16883,16884,16885,16886],"speed":83},{"id":16895,"frames":[16887,16888,16889,16890,16891],"speed":83},{"id":16919,"frames":[16897,16898,16899,16900,16901,16902],"speed":100},{"id":16920,"frames":[16903,16904,16905,16906,16907,16908],"speed":100},{"id":16921,"frames":[16909,16910,16911,16912,16913],"speed":83},{"id":16922,"frames":[16914,16915,16916,16917,16918],"speed":83},{"id":16946,"frames":[16924,16925,16926,16927,16928,16929],"speed":100},{"id":16947,"frames":[16930,16931,16932,16933,16934,16935],"speed":100},{"id":16948,"frames":[16936,16937,16938,16939,16940],"speed":83},{"id":16949,"frames":[16941,16942,16943,16944,16945],"speed":83},{"id":16973,"frames":[16951,16952,16953,16954,16955,16956],"speed":100},{"id":16974,"frames":[16957,16958,16959,16960,16961,16962],"speed":100},{"id":16975,"frames":[16963,16964,16965,16966,16967],"speed":83},{"id":16976,"frames":[16968,16969,16970,16971,16972],"speed":83},{"id":17000,"frames":[16978,16979,16980,16981,16982,16983],"speed":100},{"id":17001,"frames":[16984,16985,16986,16987,16988,16989],"speed":100},{"id":17002,"frames":[16990,16991,16992,16993,16994],"speed":83},{"id":17003,"frames":[16995,16996,16997,16998,16999],"speed":83},{"id":17027,"frames":[17005,17006,17007,17008,17009,17010],"speed":100},{"id":17028,"frames":[17011,17012,17013,17014,17015,17016],"speed":100},{"id":17029,"frames":[17017,17018,17019,17020,17021],"speed":83},{"id":17030,"frames":[17022,17023,17024,17025,17026],"speed":83},{"id":17054,"frames":[17032,17033,17034,17035,17036,17037],"speed":100},{"id":17055,"frames":[17038,17039,17040,17041,17042,17043],"speed":100},{"id":17056,"frames":[17044,17045,17046,17047,17048],"speed":83},{"id":17057,"frames":[17049,17050,17051,17052,17053],"speed":83},{"id":17081,"frames":[17059,17060,17061,17062,17063,17064],"speed":100},{"id":17082,"frames":[17065,17066,17067,17068,17069,17070],"speed":100},{"id":17083,"frames":[17071,17072,17073,17074,17075],"speed":83},{"id":17084,"frames":[17076,17077,17078,17079,17080],"speed":83},{"id":17108,"frames":[17086,17087,17088,17089,17090,17091],"speed":100},{"id":17109,"frames":[17092,17093,17094,17095,17096,17097],"speed":100},{"id":17110,"frames":[17098,17099,17100,17101,17102],"speed":83},{"id":17111,"frames":[17103,17104,17105,17106,17107],"speed":83},{"id":17135,"frames":[17113,17114,17115,17116,17117,17118],"speed":100},{"id":17136,"frames":[17119,17120,17121,17122,17123,17124],"speed":100},{"id":17137,"frames":[17125,17126,17127,17128,17129],"speed":83},{"id":17138,"frames":[17130,17131,17132,17133,17134],"speed":83},{"id":17162,"frames":[17140,17141,17142,17143,17144,17145],"speed":100},{"id":17163,"frames":[17146,17147,17148,17149,17150,17151],"speed":100},{"id":17164,"frames":[17152,17153,17154,17155,17156],"speed":83},{"id":17165,"frames":[17157,17158,17159,17160,17161],"speed":83},{"id":17189,"frames":[17167,17168,17169,17170,17171,17172],"speed":100},{"id":17190,"frames":[17173,17174,17175,17176,17177,17178],"speed":100},{"id":17191,"frames":[17179,17180,17181,17182,17183],"speed":83},{"id":17192,"frames":[17184,17185,17186,17187,17188],"speed":83},{"id":17216,"frames":[17194,17195,17196,17197,17198,17199],"speed":100},{"id":17217,"frames":[17200,17201,17202,17203,17204,17205],"speed":100},{"id":17218,"frames":[17206,17207,17208,17209,17210],"speed":83},{"id":17219,"frames":[17211,17212,17213,17214,17215],"speed":83},{"id":17243,"frames":[17221,17222,17223,17224,17225,17226],"speed":100},{"id":17244,"frames":[17227,17228,17229,17230,17231,17232],"speed":100},{"id":17245,"frames":[17233,17234,17235,17236,17237],"speed":83},{"id":17246,"frames":[17238,17239,17240,17241,17242],"speed":83},{"id":17270,"frames":[17248,17249,17250,17251,17252,17253],"speed":100},{"id":17271,"frames":[17254,17255,17256,17257,17258,17259],"speed":100},{"id":17272,"frames":[17260,17261,17262,17263,17264],"speed":83},{"id":17273,"frames":[17265,17266,17267,17268,17269],"speed":83},{"id":17297,"frames":[17275,17276,17277,17278,17279,17280],"speed":100},{"id":17298,"frames":[17281,17282,17283,17284,17285,17286],"speed":100},{"id":17299,"frames":[17287,17288,17289,17290,17291],"speed":83},{"id":17300,"frames":[17292,17293,17294,17295,17296],"speed":83},{"id":17324,"frames":[17302,17303,17304,17305,17306,17307],"speed":100},{"id":17325,"frames":[17308,17309,17310,17311,17312,17313],"speed":100},{"id":17326,"frames":[17314,17315,17316,17317,17318],"speed":83},{"id":17327,"frames":[17319,17320,17321,17322,17323],"speed":83},{"id":17351,"frames":[17329,17330,17331,17332,17333,17334],"speed":100},{"id":17352,"frames":[17335,17336,17337,17338,17339,17340],"speed":100},{"id":17353,"frames":[17341,17342,17343,17344,17345],"speed":83},{"id":17354,"frames":[17346,17347,17348,17349,17350],"speed":83},{"id":17378,"frames":[17356,17357,17358,17359,17360,17361],"speed":100},{"id":17379,"frames":[17362,17363,17364,17365,17366,17367],"speed":100},{"id":17380,"frames":[17368,17369,17370,17371,17372],"speed":83},{"id":17381,"frames":[17373,17374,17375,17376,17377],"speed":83},{"id":17405,"frames":[17383,17384,17385,17386,17387,17388],"speed":100},{"id":17406,"frames":[17389,17390,17391,17392,17393,17394],"speed":100},{"id":17407,"frames":[17395,17396,17397,17398,17399],"speed":83},{"id":17408,"frames":[17400,17401,17402,17403,17404],"speed":83},{"id":17432,"frames":[17410,17411,17412,17413,17414,17415],"speed":100},{"id":17433,"frames":[17416,17417,17418,17419,17420,17421],"speed":100},{"id":17434,"frames":[17422,17423,17424,17425,17426],"speed":83},{"id":17435,"frames":[17427,17428,17429,17430,17431],"speed":83},{"id":17459,"frames":[17437,17438,17439,17440,17441,17442],"speed":100},{"id":17460,"frames":[17443,17444,17445,17446,17447,17448],"speed":100},{"id":17461,"frames":[17449,17450,17451,17452,17453],"speed":83},{"id":17462,"frames":[17454,17455,17456,17457,17458],"speed":83},{"id":17486,"frames":[17464,17465,17466,17467,17468,17469],"speed":100},{"id":17487,"frames":[17470,17471,17472,17473,17474,17475],"speed":100},{"id":17488,"frames":[17476,17477,17478,17479,17480],"speed":83},{"id":17489,"frames":[17481,17482,17483,17484,17485],"speed":83},{"id":17513,"frames":[17491,17492,17493,17494,17495,17496],"speed":100},{"id":17514,"frames":[17497,17498,17499,17500,17501,17502],"speed":100},{"id":17515,"frames":[17503,17504,17505,17506,17507],"speed":83},{"id":17516,"frames":[17508,17509,17510,17511,17512],"speed":83},{"id":17540,"frames":[17518,17519,17520,17521,17522,17523],"speed":100},{"id":17541,"frames":[17524,17525,17526,17527,17528,17529],"speed":100},{"id":17542,"frames":[17530,17531,17532,17533,17534],"speed":83},{"id":17543,"frames":[17535,17536,17537,17538,17539],"speed":83},{"id":17567,"frames":[17545,17546,17547,17548,17549,17550],"speed":100},{"id":17568,"frames":[17551,17552,17553,17554,17555,17556],"speed":100},{"id":17569,"frames":[17557,17558,17559,17560,17561],"speed":83},{"id":17570,"frames":[17562,17563,17564,17565,17566],"speed":83},{"id":17597,"frames":[17571,17572,17573,17574,17575,17576,17577,17578],"speed":133},{"id":17598,"frames":[17579,17580,17581,17582,17583,17584,17585,17586],"speed":133},{"id":17599,"frames":[17587,17588,17589,17590,17591],"speed":83},{"id":17600,"frames":[17592,17593,17594,17595,17596],"speed":83},{"id":17625,"frames":[17601,17602,17603,17604,17605,17606],"speed":100},{"id":17626,"frames":[17607,17608,17609,17610,17611,17612],"speed":100},{"id":17627,"frames":[17613,17614,17615,17616,17617,17618],"speed":100},{"id":17628,"frames":[17619,17620,17621,17622,17623,17624],"speed":100},{"id":17653,"frames":[17629,17630,17631,17632,17633,17634],"speed":100},{"id":17654,"frames":[17635,17636,17637,17638,17639,17640],"speed":100},{"id":17655,"frames":[17641,17642,17643,17644,17645,17646],"speed":100},{"id":17656,"frames":[17647,17648,17649,17650,17651,17652],"speed":100},{"id":17680,"frames":[17658,17659,17660,17661,17662,17663],"speed":100},{"id":17681,"frames":[17664,17665,17666,17667,17668,17669],"speed":100},{"id":17682,"frames":[17670,17671,17672,17673,17674],"speed":83},{"id":17683,"frames":[17675,17676,17677,17678,17679],"speed":83},{"id":17707,"frames":[17685,17686,17687,17688,17689,17690],"speed":100},{"id":17708,"frames":[17691,17692,17693,17694,17695,17696],"speed":100},{"id":17709,"frames":[17697,17698,17699,17700,17701],"speed":83},{"id":17710,"frames":[17702,17703,17704,17705,17706],"speed":83},{"id":17727,"frames":[17711,17712,17713,17714],"speed":66},{"id":17728,"frames":[17715,17716,17717,17718],"speed":66},{"id":17729,"frames":[17719,17720,17721,17722],"speed":66},{"id":17730,"frames":[17723,17724,17725,17726],"speed":66},{"id":17747,"frames":[17731,17732,17733,17734],"speed":66},{"id":17748,"frames":[17735,17736,17737,17738],"speed":66},{"id":17749,"frames":[17739,17740,17741,17742],"speed":66},{"id":17750,"frames":[17743,17744,17745,17746],"speed":66},{"id":17767,"frames":[17751,17752,17753,17754],"speed":66},{"id":17768,"frames":[17755,17756,17757,17758],"speed":66},{"id":17769,"frames":[17759,17760,17761,17762],"speed":66},{"id":17770,"frames":[17763,17764,17765,17766],"speed":66},{"id":17787,"frames":[17771,17772,17773,17774],"speed":66},{"id":17788,"frames":[17775,17776,17777,17778],"speed":66},{"id":17789,"frames":[17779,17780,17781,17782],"speed":66},{"id":17790,"frames":[17783,17784,17785,17786],"speed":66},{"id":17807,"frames":[17791,17792,17793,17794],"speed":66},{"id":17808,"frames":[17795,17796,17797,17798],"speed":66},{"id":17809,"frames":[17799,17800,17801,17802],"speed":66},{"id":17810,"frames":[17803,17804,17805,17806],"speed":66},{"id":17827,"frames":[17811,17812,17813,17814],"speed":66},{"id":17828,"frames":[17815,17816,17817,17818],"speed":66},{"id":17829,"frames":[17819,17820,17821,17822],"speed":66},{"id":17830,"frames":[17823,17824,17825,17826],"speed":66},{"id":17881,"frames":[17859,17860,17861,17862,17863,17864],"speed":100},{"id":17882,"frames":[17865,17866,17867,17868,17869,17870],"speed":100},{"id":17883,"frames":[17871,17872,17873,17874,17875],"speed":83},{"id":17884,"frames":[17876,17877,17878,17879,17880],"speed":83},{"id":17907,"frames":[17885,17886,17887,17888,17889,17890],"speed":100},{"id":17908,"frames":[17891,17892,17893,17894,17895,17896],"speed":100},{"id":17909,"frames":[17897,17898,17899,17900,17901],"speed":83},{"id":17910,"frames":[17902,17903,17904,17905,17906],"speed":83},{"id":18182,"frames":[18160,18161,18162,18163,18164,18165],"speed":100},{"id":18183,"frames":[18166,18167,18168,18169,18170,18171],"speed":100},{"id":18184,"frames":[18172,18173,18174,18175,18176],"speed":83},{"id":18185,"frames":[18177,18178,18179,18180,18181],"speed":83},{"id":18191,"frames":[18186,18187,18188,18189,18190],"speed":83},{"id":18208,"frames":[18192,18193,18194,18195],"speed":66},{"id":18209,"frames":[18196,18197,18198,18199],"speed":66},{"id":18210,"frames":[18200,18201,18202,18203],"speed":66},{"id":18211,"frames":[18204,18205,18206,18207],"speed":66},{"id":18228,"frames":[18212,18213,18214,18215],"speed":66},{"id":18229,"frames":[18216,18217,18218,18219],"speed":66},{"id":18230,"frames":[18220,18221,18222,18223],"speed":66},{"id":18231,"frames":[18224,18225,18226,18227],"speed":66},{"id":18256,"frames":[18232,18233,18234,18235,18236,18237],"speed":100},{"id":18257,"frames":[18238,18239,18240,18241,18242,18243],"speed":100},{"id":18258,"frames":[18244,18245,18246,18247,18248,18249],"speed":100},{"id":18259,"frames":[18250,18251,18252,18253,18254,18255],"speed":100},{"id":18274,"frames":[18271,18272,18273],"speed":50},{"id":18289,"frames":[18277,18278,18279,20069],"speed":66},{"id":18290,"frames":[18280,18281,18282,20070],"speed":66},{"id":18291,"frames":[18283,18284,18285,20071],"speed":66},{"id":18292,"frames":[18286,18287,18288,20072],"speed":66},{"id":18315,"frames":[18293,18294,18295,18296,18297,18298],"speed":100},{"id":18316,"frames":[18299,18300,18301,18302,18303,18304],"speed":100},{"id":18317,"frames":[18305,18306,18307,18308,18309],"speed":83},{"id":18318,"frames":[18310,18311,18312,18313,18314],"speed":83},{"id":18341,"frames":[18319,18320,18321,18322,18323,18324],"speed":100},{"id":18342,"frames":[18325,18326,18327,18328,18329,18330],"speed":100},{"id":18343,"frames":[18331,18332,18333,18334,18335],"speed":83},{"id":18344,"frames":[18336,18337,18338,18339,18340],"speed":83},{"id":18367,"frames":[18345,18346,18347,18348,18349,18350],"speed":100},{"id":18368,"frames":[18351,18352,18353,18354,18355,18356],"speed":100},{"id":18369,"frames":[18357,18358,18359,18360,18361],"speed":83},{"id":18370,"frames":[18362,18363,18364,18365,18366],"speed":83},{"id":18374,"frames":[18371,18372,18373],"speed":50},{"id":18378,"frames":[18375,18376,18377],"speed":50},{"id":18382,"frames":[18379,18380,18381],"speed":50},{"id":18401,"frames":[18396,18397,18398,18399,18400],"speed":83},{"id":18413,"frames":[18403,18404,18405,18406,18407,18408,18409,18410,18411,18412],"speed":166},{"id":18821,"frames":[18805,18806,18807,18808],"speed":66},{"id":18822,"frames":[18809,18810,18811,18812],"speed":66},{"id":18823,"frames":[18813,18814,18815,18816],"speed":66},{"id":18824,"frames":[18817,18818,18819,18820],"speed":66},{"id":18841,"frames":[18825,18826,18827,18828],"speed":66},{"id":18842,"frames":[18829,18830,18831,18832],"speed":66},{"id":18843,"frames":[18833,18834,18835,18836],"speed":66},{"id":18844,"frames":[18837,18838,18839,18840],"speed":66},{"id":18871,"frames":[18849,18850,18851,18852,18853,18854],"speed":100},{"id":18872,"frames":[18855,18856,18857,18858,18859,18860],"speed":100},{"id":18873,"frames":[18861,18862,18863,18864,18865],"speed":83},{"id":18874,"frames":[18866,18867,18868,18869,18870],"speed":83},{"id":18974,"frames":[18911,18927,18943,18959],"speed":66},{"id":18975,"frames":[18912,18928,18944,18960],"speed":66},{"id":18976,"frames":[18913,18929,18945,18961],"speed":66},{"id":18977,"frames":[18914,18930,18946,18962],"speed":66},{"id":18978,"frames":[18915,18931,18947,18963],"speed":66},{"id":18979,"frames":[18916,18932,18948,18964],"speed":66},{"id":18980,"frames":[18917,18933,18949,18965],"speed":66},{"id":18981,"frames":[18918,18934,18950,18966],"speed":66},{"id":18982,"frames":[18919,18935,18951,18967],"speed":66},{"id":18983,"frames":[18920,18936,18952,18968],"speed":66},{"id":18984,"frames":[18921,18937,18953,18969],"speed":66},{"id":18985,"frames":[18922,18938,18954,18970],"speed":66},{"id":18986,"frames":[18923,18939,18955,18971],"speed":66},{"id":18987,"frames":[18924,18940,18956,18972],"speed":66},{"id":18988,"frames":[18925,18941,18957,18973],"speed":66},{"id":18989,"frames":[18926,18942,18958,18973],"speed":66},{"id":19439,"frames":[19417,19418,19419,19420,19421,19422],"speed":100},{"id":19440,"frames":[19423,19424,19425,19426,19427,19428],"speed":100},{"id":19441,"frames":[19429,19430,19431,19432,19433],"speed":83},{"id":19442,"frames":[19434,19435,19436,19437,19438],"speed":83},{"id":19469,"frames":[19447,19448,19449,19450,19451,19452],"speed":100},{"id":19470,"frames":[19453,19454,19455,19456,19457,19458],"speed":100},{"id":19471,"frames":[19459,19460,19461,19462,19463],"speed":83},{"id":19472,"frames":[19464,19465,19466,19467,19468],"speed":83},{"id":19506,"frames":[19474,19475,19476,19477,19478,19479,19480,19481],"speed":133},{"id":19507,"frames":[19482,19483,19484,19485,19486,19487,19488,19489],"speed":133},{"id":19508,"frames":[19490,19491,19492,19493,19494,19495,19496,19497],"speed":133},{"id":19509,"frames":[19498,19499,19500,19501,19502,19503,19504,19505],"speed":133},{"id":19542,"frames":[19510,19511,19512,19513,19514,19515,19516,19517],"speed":133},{"id":19543,"frames":[19518,19519,19520,19521,19522,19523,19524,19525],"speed":133},{"id":19544,"frames":[19526,19527,19528,19529,19530,19531,19532,19533],"speed":133},{"id":19545,"frames":[19534,19535,19536,19537,19538,19539,19540,19541],"speed":133},{"id":19578,"frames":[19546,19547,19548,19549,19550,19551,19552,19553],"speed":133},{"id":19579,"frames":[19554,19555,19556,19557,19558,19559,19560,19561],"speed":133},{"id":19580,"frames":[19562,19563,19564,19565,19566,19567,19568,19569],"speed":133},{"id":19581,"frames":[19570,19571,19572,19573,19574,19575,19576,19577],"speed":133},{"id":19598,"frames":[19582,19583,19584,19585],"speed":66},{"id":19599,"frames":[19586,19587,19588,19589],"speed":66},{"id":19600,"frames":[19590,19591,19592,19593],"speed":66},{"id":19601,"frames":[19594,19595,19596,19597],"speed":66},{"id":19630,"frames":[19602,19603,19604,19605,19606,19607,19608,19609],"speed":133},{"id":19631,"frames":[19610,19611,19612,19613,19614,19615,19616,19617],"speed":133},{"id":19632,"frames":[19618,19619,19620,19621,19622,19623],"speed":100},{"id":19633,"frames":[19624,19625,19626,19627,19628,19629],"speed":100},{"id":19656,"frames":[19634,19635,19636,19637,19638,19639],"speed":100},{"id":19657,"frames":[19640,19641,19642,19643,19644,19645],"speed":100},{"id":19658,"frames":[19646,19647,19648,19649,19650],"speed":83},{"id":19659,"frames":[19651,19652,19653,19654,19655],"speed":83},{"id":19684,"frames":[19660,19661,19662,19663,19664,19665],"speed":100},{"id":19685,"frames":[19666,19667,19668,19669,19670,19671],"speed":100},{"id":19686,"frames":[19672,19673,19674,19675,19676,19677],"speed":100},{"id":19687,"frames":[19678,19679,19680,19681,19682,19683],"speed":100},{"id":19710,"frames":[19688,19689,19690,19691,19692,19693],"speed":100},{"id":19711,"frames":[19694,19695,19696,19697,19698,19699],"speed":100},{"id":19712,"frames":[19700,19701,19702,19703,19704],"speed":83},{"id":19713,"frames":[19705,19706,19707,19708,19709],"speed":83},{"id":19746,"frames":[19724,19725,19726,19727,19728,19729],"speed":100},{"id":19747,"frames":[19730,19731,19732,19733,19734,19735],"speed":100},{"id":19748,"frames":[19736,19737,19738,19739,19740],"speed":83},{"id":19749,"frames":[19741,19742,19743,19744,19745],"speed":83},{"id":19772,"frames":[19750,19751,19752,19753,19754,19755],"speed":100},{"id":19773,"frames":[19756,19757,19758,19759,19760,19761],"speed":100},{"id":19774,"frames":[19762,19763,19764,19765,19766],"speed":83},{"id":19775,"frames":[19767,19768,19769,19770,19771],"speed":83},{"id":19798,"frames":[19776,19777,19778,19779,19780,19781],"speed":100},{"id":19799,"frames":[19782,19783,19784,19785,19786,19787],"speed":100},{"id":19800,"frames":[19788,19789,19790,19791,19792],"speed":83},{"id":19801,"frames":[19793,19794,19795,19796,19797],"speed":83},{"id":19824,"frames":[19802,19803,19804,19805,19806,19807],"speed":100},{"id":19825,"frames":[19808,19809,19810,19811,19812,19813],"speed":100},{"id":19826,"frames":[19814,19815,19816,19817,19818],"speed":83},{"id":19827,"frames":[19819,19820,19821,19822,19823],"speed":83},{"id":19850,"frames":[19828,19829,19830,19831,19832,19833],"speed":100},{"id":19851,"frames":[19834,19835,19836,19837,19838,19839],"speed":100},{"id":19852,"frames":[19840,19841,19842,19843,19844],"speed":83},{"id":19853,"frames":[19845,19846,19847,19848,19849],"speed":83},{"id":19876,"frames":[19854,19855,19856,19857,19858,19859],"speed":100},{"id":19877,"frames":[19860,19861,19862,19863,19864,19865],"speed":100},{"id":19878,"frames":[19866,19867,19868,19869,19870],"speed":83},{"id":19879,"frames":[19871,19872,19873,19874,19875],"speed":83},{"id":19902,"frames":[19880,19881,19882,19883,19884,19885],"speed":100},{"id":19903,"frames":[19886,19887,19888,19889,19890,19891],"speed":100},{"id":19904,"frames":[19892,19893,19894,19895,19896],"speed":83},{"id":19905,"frames":[19897,19898,19899,19900,19901],"speed":83},{"id":19928,"frames":[19906,19907,19908,19909,19910,19911],"speed":100},{"id":19929,"frames":[19912,19913,19914,19915,19916,19917],"speed":100},{"id":19930,"frames":[19918,19919,19920,19921,19922],"speed":83},{"id":19931,"frames":[19923,19924,19925,19926,19927],"speed":83},{"id":19954,"frames":[19932,19933,19934,19935,19936,19937],"speed":100},{"id":19955,"frames":[19938,19939,19940,19941,19942,19943],"speed":100},{"id":19956,"frames":[19944,19945,19946,19947,19948],"speed":83},{"id":19957,"frames":[19949,19950,19951,19952,19953],"speed":83},{"id":19980,"frames":[19958,19959,19960,19961,19962,19963],"speed":100},{"id":19981,"frames":[19964,19965,19966,19967,19968,19969],"speed":100},{"id":19982,"frames":[19970,19971,19972,19973,19974],"speed":83},{"id":19983,"frames":[19975,19976,19977,19978,19979],"speed":83},{"id":20006,"frames":[19984,19985,19986,19987,19988,19989],"speed":100},{"id":20007,"frames":[19990,19991,19992,19993,19994,19995],"speed":100},{"id":20008,"frames":[19996,19997,19998,19999,20000],"speed":83},{"id":20009,"frames":[20001,20002,20003,20004,20005],"speed":83},{"id":20032,"frames":[20010,20011,20012,20013,20014,20015],"speed":100},{"id":20033,"frames":[20016,20017,20018,20019,20020,20021],"speed":100},{"id":20034,"frames":[20022,20023,20024,20025,20026],"speed":83},{"id":20035,"frames":[20027,20028,20029,20030,20031],"speed":83},{"id":20058,"frames":[20036,20037,20038,20039,20040,20041],"speed":100},{"id":20059,"frames":[20042,20043,20044,20045,20046,20047],"speed":100},{"id":20060,"frames":[20048,20049,20050,20051,20052],"speed":83},{"id":20061,"frames":[20053,20054,20055,20056,20057],"speed":83},{"id":20085,"frames":[20073,20074,20075],"speed":50},{"id":20086,"frames":[20076,20077,20078],"speed":50},{"id":20087,"frames":[20079,20080,20081],"speed":50},{"id":20088,"frames":[20082,20083,20084],"speed":50},{"id":20105,"frames":[20089,20090,20091,20092],"speed":66},{"id":20106,"frames":[20093,20094,20095,20096],"speed":66},{"id":20107,"frames":[20097,20098,20099,20100],"speed":66},{"id":20108,"frames":[20101,20102,20103,20104],"speed":66},{"id":20125,"frames":[20109,20110,20111,20112],"speed":66},{"id":20126,"frames":[20113,20114,20115,20116],"speed":66},{"id":20127,"frames":[20117,20118,20119,20120],"speed":66},{"id":20128,"frames":[20121,20122,20123,20124],"speed":66},{"id":20161,"frames":[20129,20130,20131,20132,20133,20134,20135,20136],"speed":133},{"id":20162,"frames":[20137,20138,20139,20140,20141,20142,20143,20144],"speed":133},{"id":20163,"frames":[20145,20146,20147,20148,20149,20150,20151,20152],"speed":133},{"id":20164,"frames":[20153,20154,20155,20156,20157,20158,20159,20160],"speed":133},{"id":20229,"frames":[20207,20208,20209,20210,20211,20212],"speed":100},{"id":20230,"frames":[20213,20214,20215,20216,20217,20218],"speed":100},{"id":20231,"frames":[20219,20220,20221,20222,20223],"speed":83},{"id":20232,"frames":[20224,20225,20226,20227,20228],"speed":83},{"id":20262,"frames":[20240,20241,20242,20243,20244,20245],"speed":100},{"id":20263,"frames":[20246,20247,20248,20249,20250,20251],"speed":100},{"id":20264,"frames":[20252,20253,20254,20255,20256],"speed":83},{"id":20265,"frames":[20257,20258,20259,20260,20261],"speed":83},{"id":20289,"frames":[20267,20268,20269,20270,20271,20272],"speed":100},{"id":20290,"frames":[20273,20274,20275,20276,20277,20278],"speed":100},{"id":20291,"frames":[20279,20280,20281,20282,20283],"speed":83},{"id":20292,"frames":[20284,20285,20286,20287,20288],"speed":83},{"id":20316,"frames":[20294,20295,20296,20297,20298,20299],"speed":100},{"id":20317,"frames":[20300,20301,20302,20303,20304,20305],"speed":100},{"id":20318,"frames":[20306,20307,20308,20309,20310],"speed":83},{"id":20319,"frames":[20311,20312,20313,20314,20315],"speed":83},{"id":20343,"frames":[20321,20322,20323,20324,20325,20326],"speed":100},{"id":20344,"frames":[20327,20328,20329,20330,20331,20332],"speed":100},{"id":20345,"frames":[20333,20334,20335,20336,20337],"speed":83},{"id":20346,"frames":[20338,20339,20340,20341,20342],"speed":83},{"id":20370,"frames":[20348,20349,20350,20351,20352,20353],"speed":100},{"id":20371,"frames":[20354,20355,20356,20357,20358,20359],"speed":100},{"id":20372,"frames":[20360,20361,20362,20363,20364],"speed":83},{"id":20373,"frames":[20365,20366,20367,20368,20369],"speed":83},{"id":20397,"frames":[20375,20376,20377,20378,20379,20380],"speed":100},{"id":20398,"frames":[20381,20382,20383,20384,20385,20386],"speed":100},{"id":20399,"frames":[20387,20388,20389,20390,20391],"speed":83},{"id":20400,"frames":[20392,20393,20394,20395,20396],"speed":83},{"id":20405,"frames":[20401,20402,20403,20404],"speed":66},{"id":20429,"frames":[20407,20408,20409,20410,20411,20412],"speed":100},{"id":20430,"frames":[20413,20414,20415,20416,20417,20418],"speed":100},{"id":20431,"frames":[20419,20420,20421,20422,20423],"speed":83},{"id":20432,"frames":[20424,20425,20426,20427,20428],"speed":83},{"id":20456,"frames":[20434,20435,20436,20437,20438,20439],"speed":100},{"id":20457,"frames":[20440,20441,20442,20443,20444,20445],"speed":100},{"id":20458,"frames":[20446,20447,20448,20449,20450],"speed":83},{"id":20459,"frames":[20451,20452,20453,20454,20455],"speed":83},{"id":20483,"frames":[20461,20462,20463,20464,20465,20466],"speed":100},{"id":20484,"frames":[20467,20468,20469,20470,20471,20472],"speed":100},{"id":20485,"frames":[20473,20474,20475,20476,20477],"speed":83},{"id":20486,"frames":[20478,20479,20480,20481,20482],"speed":83},{"id":20503,"frames":[20487,20488,20489,20490,20491,20492,20493,20494,20495,20496,20497,20498,20499,20500,20501,20502],"speed":266},{"id":20532,"frames":[20510,20511,20512,20513,20514,20515],"speed":100},{"id":20533,"frames":[20516,20517,20518,20519,20520,20521],"speed":100},{"id":20534,"frames":[20522,20523,20524,20525,20526],"speed":83},{"id":20535,"frames":[20527,20528,20529,20530,20531],"speed":83},{"id":20559,"frames":[20537,20538,20539,20540,20541,20542],"speed":100},{"id":20560,"frames":[20543,20544,20545,20546,20547,20548],"speed":100},{"id":20561,"frames":[20549,20550,20551,20552,20553],"speed":83},{"id":20562,"frames":[20554,20555,20556,20557,20558],"speed":83},{"id":20586,"frames":[20564,20565,20566,20567,20568,20569],"speed":100},{"id":20587,"frames":[20570,20571,20572,20573,20574,20575],"speed":100},{"id":20588,"frames":[20576,20577,20578,20579,20580],"speed":83},{"id":20589,"frames":[20581,20582,20583,20584,20585],"speed":83},{"id":20613,"frames":[20591,20592,20593,20594,20595,20596],"speed":100},{"id":20614,"frames":[20597,20598,20599,20600,20601,20602],"speed":100},{"id":20615,"frames":[20603,20604,20605,20606,20607],"speed":83},{"id":20616,"frames":[20608,20609,20610,20611,20612],"speed":83},{"id":20640,"frames":[20618,20619,20620,20621,20622,20623],"speed":100},{"id":20641,"frames":[20624,20625,20626,20627,20628,20629],"speed":100},{"id":20642,"frames":[20630,20631,20632,20633,20634],"speed":83},{"id":20643,"frames":[20635,20636,20637,20638,20639],"speed":83},{"id":20667,"frames":[20645,20646,20647,20648,20649,20650],"speed":100},{"id":20668,"frames":[20651,20652,20653,20654,20655,20656],"speed":100},{"id":20669,"frames":[20657,20658,20659,20660,20661],"speed":83},{"id":20670,"frames":[20662,20663,20664,20665,20666],"speed":83},{"id":20694,"frames":[20672,20673,20674,20675,20676,20677],"speed":100},{"id":20695,"frames":[20678,20679,20680,20681,20682,20683],"speed":100},{"id":20696,"frames":[20684,20685,20686,20687,20688],"speed":83},{"id":20697,"frames":[20689,20690,20691,20692,20693],"speed":83},{"id":20721,"frames":[20699,20700,20701,20702,20703,20704],"speed":100},{"id":20722,"frames":[20705,20706,20707,20708,20709,20710],"speed":100},{"id":20723,"frames":[20711,20712,20713,20714,20715],"speed":83},{"id":20724,"frames":[20716,20717,20718,20719,20720],"speed":83},{"id":20748,"frames":[20726,20727,20728,20729,20730,20731],"speed":100},{"id":20749,"frames":[20732,20733,20734,20735,20736,20737],"speed":100},{"id":20750,"frames":[20738,20739,20740,20741,20742],"speed":83},{"id":20751,"frames":[20743,20744,20745,20746,20747],"speed":83},{"id":20775,"frames":[20753,20754,20755,20756,20757,20758],"speed":100},{"id":20776,"frames":[20759,20760,20761,20762,20763,20764],"speed":100},{"id":20777,"frames":[20765,20766,20767,20768,20769],"speed":83},{"id":20778,"frames":[20770,20771,20772,20773,20774],"speed":83},{"id":20802,"frames":[20780,20781,20782,20783,20784,20785],"speed":100},{"id":20803,"frames":[20786,20787,20788,20789,20790,20791],"speed":100},{"id":20804,"frames":[20792,20793,20794,20795,20796],"speed":83},{"id":20805,"frames":[20797,20798,20799,20800,20801],"speed":83},{"id":20829,"frames":[20807,20808,20809,20810,20811,20812],"speed":100},{"id":20830,"frames":[20813,20814,20815,20816,20817,20818],"speed":100},{"id":20831,"frames":[20819,20820,20821,20822,20823],"speed":83},{"id":20832,"frames":[20824,20825,20826,20827,20828],"speed":83},{"id":20856,"frames":[20834,20835,20836,20837,20838,20839],"speed":100},{"id":20857,"frames":[20840,20841,20842,20843,20844,20845],"speed":100},{"id":20858,"frames":[20846,20847,20848,20849,20850],"speed":83},{"id":20859,"frames":[20851,20852,20853,20854,20855],"speed":83},{"id":20883,"frames":[20861,20862,20863,20864,20865,20866],"speed":100},{"id":20884,"frames":[20867,20868,20869,20870,20871,20872],"speed":100},{"id":20885,"frames":[20873,20874,20875,20876,20877],"speed":83},{"id":20886,"frames":[20878,20879,20880,20881,20882],"speed":83},{"id":20910,"frames":[20888,20889,20890,20891,20892,20893],"speed":100},{"id":20911,"frames":[20894,20895,20896,20897,20898,20899],"speed":100},{"id":20912,"frames":[20900,20901,20902,20903,20904],"speed":83},{"id":20913,"frames":[20905,20906,20907,20908,20909],"speed":83},{"id":20937,"frames":[20915,20916,20917,20918,20919,20920],"speed":100},{"id":20938,"frames":[20921,20922,20923,20924,20925,20926],"speed":100},{"id":20939,"frames":[20927,20928,20929,20930,20931],"speed":83},{"id":20940,"frames":[20932,20933,20934,20935,20936],"speed":83},{"id":20964,"frames":[20942,20943,20944,20945,20946,20947],"speed":100},{"id":20965,"frames":[20948,20949,20950,20951,20952,20953],"speed":100},{"id":20966,"frames":[20954,20955,20956,20957,20958],"speed":83},{"id":20967,"frames":[20959,20960,20961,20962,20963],"speed":83},{"id":20991,"frames":[20969,20970,20971,20972,20973,20974],"speed":100},{"id":20992,"frames":[20975,20976,20977,20978,20979,20980],"speed":100},{"id":20993,"frames":[20981,20982,20983,20984,20985],"speed":83},{"id":20994,"frames":[20986,20987,20988,20989,20990],"speed":83},{"id":21018,"frames":[20996,20997,20998,20999,21000,21001],"speed":100},{"id":21019,"frames":[21002,21003,21004,21005,21006,21007],"speed":100},{"id":21020,"frames":[21008,21009,21010,21011,21012],"speed":83},{"id":21021,"frames":[21013,21014,21015,21016,21017],"speed":83},{"id":21045,"frames":[21023,21024,21025,21026,21027,21028],"speed":100},{"id":21046,"frames":[21029,21030,21031,21032,21033,21034],"speed":100},{"id":21047,"frames":[21035,21036,21037,21038,21039],"speed":83},{"id":21048,"frames":[21040,21041,21042,21043,21044],"speed":83},{"id":21072,"frames":[21050,21051,21052,21053,21054,21055],"speed":100},{"id":21073,"frames":[21056,21057,21058,21059,21060,21061],"speed":100},{"id":21074,"frames":[21062,21063,21064,21065,21066],"speed":83},{"id":21075,"frames":[21067,21068,21069,21070,21071],"speed":83},{"id":21099,"frames":[21077,21078,21079,21080,21081,21082],"speed":100},{"id":21100,"frames":[21083,21084,21085,21086,21087,21088],"speed":100},{"id":21101,"frames":[21089,21090,21091,21092,21093],"speed":83},{"id":21102,"frames":[21094,21095,21096,21097,21098],"speed":83},{"id":21126,"frames":[21104,21105,21106,21107,21108,21109],"speed":100},{"id":21127,"frames":[21110,21111,21112,21113,21114,21115],"speed":100},{"id":21128,"frames":[21116,21117,21118,21119,21120],"speed":83},{"id":21129,"frames":[21121,21122,21123,21124,21125],"speed":83},{"id":21153,"frames":[21131,21132,21133,21134,21135,21136],"speed":100},{"id":21154,"frames":[21137,21138,21139,21140,21141,21142],"speed":100},{"id":21155,"frames":[21143,21144,21145,21146,21147],"speed":83},{"id":21156,"frames":[21148,21149,21150,21151,21152],"speed":83},{"id":21180,"frames":[21158,21159,21160,21161,21162,21163],"speed":100},{"id":21181,"frames":[21164,21165,21166,21167,21168,21169],"speed":100},{"id":21182,"frames":[21170,21171,21172,21173,21174],"speed":83},{"id":21183,"frames":[21175,21176,21177,21178,21179],"speed":83},{"id":21207,"frames":[21185,21186,21187,21188,21189,21190],"speed":100},{"id":21208,"frames":[21191,21192,21193,21194,21195,21196],"speed":100},{"id":21209,"frames":[21197,21198,21199,21200,21201],"speed":83},{"id":21210,"frames":[21202,21203,21204,21205,21206],"speed":83},{"id":21234,"frames":[21212,21213,21214,21215,21216,21217],"speed":100},{"id":21235,"frames":[21218,21219,21220,21221,21222,21223],"speed":100},{"id":21236,"frames":[21224,21225,21226,21227,21228],"speed":83},{"id":21237,"frames":[21229,21230,21231,21232,21233],"speed":83},{"id":21261,"frames":[21239,21240,21241,21242,21243,21244],"speed":100},{"id":21262,"frames":[21245,21246,21247,21248,21249,21250],"speed":100},{"id":21263,"frames":[21251,21252,21253,21254,21255],"speed":83},{"id":21264,"frames":[21256,21257,21258,21259,21260],"speed":83},{"id":21288,"frames":[21266,21267,21268,21269,21270,21271],"speed":100},{"id":21289,"frames":[21272,21273,21274,21275,21276,21277],"speed":100},{"id":21290,"frames":[21278,21279,21280,21281,21282],"speed":83},{"id":21291,"frames":[21283,21284,21285,21286,21287],"speed":83},{"id":21315,"frames":[21293,21294,21295,21296,21297,21298],"speed":100},{"id":21316,"frames":[21299,21300,21301,21302,21303,21304],"speed":100},{"id":21317,"frames":[21305,21306,21307,21308,21309],"speed":83},{"id":21318,"frames":[21310,21311,21312,21313,21314],"speed":83},{"id":21342,"frames":[21320,21321,21322,21323,21324,21325],"speed":100},{"id":21343,"frames":[21326,21327,21328,21329,21330,21331],"speed":100},{"id":21344,"frames":[21332,21333,21334,21335,21336],"speed":83},{"id":21345,"frames":[21337,21338,21339,21340,21341],"speed":83},{"id":21369,"frames":[21347,21348,21349,21350,21351,21352],"speed":100},{"id":21370,"frames":[21353,21354,21355,21356,21357,21358],"speed":100},{"id":21371,"frames":[21359,21360,21361,21362,21363],"speed":83},{"id":21372,"frames":[21364,21365,21366,21367,21368],"speed":83},{"id":21396,"frames":[21374,21375,21376,21377,21378,21379],"speed":100},{"id":21397,"frames":[21380,21381,21382,21383,21384,21385],"speed":100},{"id":21398,"frames":[21386,21387,21388,21389,21390],"speed":83},{"id":21399,"frames":[21391,21392,21393,21394,21395],"speed":83},{"id":21423,"frames":[21401,21402,21403,21404,21405,21406],"speed":100},{"id":21424,"frames":[21407,21408,21409,21410,21411,21412],"speed":100},{"id":21425,"frames":[21413,21414,21415,21416,21417],"speed":83},{"id":21426,"frames":[21418,21419,21420,21421,21422],"speed":83},{"id":21450,"frames":[21428,21429,21430,21431,21432,21433],"speed":100},{"id":21451,"frames":[21434,21435,21436,21437,21438,21439],"speed":100},{"id":21452,"frames":[21440,21441,21442,21443,21444],"speed":83},{"id":21453,"frames":[21445,21446,21447,21448,21449],"speed":83},{"id":21477,"frames":[21455,21456,21457,21458,21459,21460],"speed":100},{"id":21478,"frames":[21461,21462,21463,21464,21465,21466],"speed":100},{"id":21479,"frames":[21467,21468,21469,21470,21471],"speed":83},{"id":21480,"frames":[21472,21473,21474,21475,21476],"speed":83},{"id":21504,"frames":[21482,21483,21484,21485,21486,21487],"speed":100},{"id":21505,"frames":[21488,21489,21490,21491,21492,21493],"speed":100},{"id":21506,"frames":[21494,21495,21496,21497,21498],"speed":83},{"id":21507,"frames":[21499,21500,21501,21502,21503],"speed":83},{"id":21531,"frames":[21509,21510,21511,21512,21513,21514],"speed":100},{"id":21532,"frames":[21515,21516,21517,21518,21519,21520],"speed":100},{"id":21533,"frames":[21521,21522,21523,21524,21525],"speed":83},{"id":21534,"frames":[21526,21527,21528,21529,21530],"speed":83},{"id":21558,"frames":[21536,21537,21538,21539,21540,21541],"speed":100},{"id":21559,"frames":[21542,21543,21544,21545,21546,21547],"speed":100},{"id":21560,"frames":[21548,21549,21550,21551,21552],"speed":83},{"id":21561,"frames":[21553,21554,21555,21556,21557],"speed":83},{"id":21585,"frames":[21563,21564,21565,21566,21567,21568],"speed":100},{"id":21586,"frames":[21569,21570,21571,21572,21573,21574],"speed":100},{"id":21587,"frames":[21575,21576,21577,21578,21579],"speed":83},{"id":21588,"frames":[21580,21581,21582,21583,21584],"speed":83},{"id":21612,"frames":[21590,21591,21592,21593,21594,21595],"speed":100},{"id":21613,"frames":[21596,21597,21598,21599,21600,21601],"speed":100},{"id":21614,"frames":[21602,21603,21604,21605,21606],"speed":83},{"id":21615,"frames":[21607,21608,21609,21610,21611],"speed":83},{"id":21639,"frames":[21617,21618,21619,21620,21621,21622],"speed":100},{"id":21640,"frames":[21623,21624,21625,21626,21627,21628],"speed":100},{"id":21641,"frames":[21629,21630,21631,21632,21633],"speed":83},{"id":21642,"frames":[21634,21635,21636,21637,21638],"speed":83},{"id":21666,"frames":[21644,21645,21646,21647,21648,21649],"speed":100},{"id":21667,"frames":[21650,21651,21652,21653,21654,21655],"speed":100},{"id":21668,"frames":[21656,21657,21658,21659,21660],"speed":83},{"id":21669,"frames":[21661,21662,21663,21664,21665],"speed":83},{"id":21693,"frames":[21671,21672,21673,21674,21675,21676],"speed":100},{"id":21694,"frames":[21677,21678,21679,21680,21681,21682],"speed":100},{"id":21695,"frames":[21683,21684,21685,21686,21687],"speed":83},{"id":21696,"frames":[21688,21689,21690,21691,21692],"speed":83},{"id":21720,"frames":[21698,21699,21700,21701,21702,21703],"speed":100},{"id":21721,"frames":[21704,21705,21706,21707,21708,21709],"speed":100},{"id":21722,"frames":[21710,21711,21712,21713,21714],"speed":83},{"id":21723,"frames":[21715,21716,21717,21718,21719],"speed":83},{"id":21800,"frames":[21792,21793],"speed":33},{"id":21801,"frames":[21794,21795],"speed":33},{"id":21802,"frames":[21796,21797],"speed":33},{"id":21803,"frames":[21798,21799],"speed":33},{"id":21820,"frames":[21804,21805,21806,21807],"speed":66},{"id":21821,"frames":[21808,21809,21810,21811],"speed":66},{"id":21822,"frames":[21812,21813,21814,21815],"speed":66},{"id":21823,"frames":[21816,21817,21818,21819],"speed":66},{"id":21847,"frames":[21824,21825,21826,21827,21828,21829],"speed":100},{"id":21848,"frames":[21830,21831,21832,21833,21834,21835],"speed":100},{"id":21849,"frames":[21836,21837,21838,21839,21840,21841],"speed":100},{"id":21850,"frames":[21842,21843,21844,21845,21846],"speed":83},{"id":21867,"frames":[21851,21852,21853,21854],"speed":66},{"id":21868,"frames":[21855,21856,21857,21858],"speed":66},{"id":21869,"frames":[21859,21860,21861,21862],"speed":66},{"id":21870,"frames":[21863,21864,21865,21866],"speed":66},{"id":21891,"frames":[21871,21872,21873,21874,21875],"speed":83},{"id":21892,"frames":[21876,21877,21878,21879,21880],"speed":83},{"id":21893,"frames":[21881,21882,21883,21884,21885],"speed":83},{"id":21894,"frames":[21886,21887,21888,21889,21890],"speed":83},{"id":21919,"frames":[21895,21896,21897,21898,21899,21900],"speed":100},{"id":21920,"frames":[21901,21902,21903,21904,21905,21906],"speed":100},{"id":21921,"frames":[21907,21908,21909,21910,21911,21912],"speed":100},{"id":21922,"frames":[21913,21914,21915,21916,21917,21918],"speed":100},{"id":21945,"frames":[21923,21924,21925,21926,21927,21928],"speed":100},{"id":21946,"frames":[21929,21930,21931,21932,21933,21934],"speed":100},{"id":21947,"frames":[21935,21936,21937,21938,21939],"speed":83},{"id":21948,"frames":[21940,21941,21942,21943,21944],"speed":83},{"id":21965,"frames":[21949,21950,21951,21952],"speed":66},{"id":21966,"frames":[21953,21954,21955,21956],"speed":66},{"id":21967,"frames":[21957,21958,21959,21960],"speed":66},{"id":21968,"frames":[21961,21962,21963,21964],"speed":66},{"id":22003,"frames":[21981,21982,21983,21984,21985,21986],"speed":100},{"id":22004,"frames":[21987,21988,21989,21990,21991,21992],"speed":100},{"id":22005,"frames":[21993,21994,21995,21996,21997],"speed":83},{"id":22006,"frames":[21998,21999,22000,22001,22002],"speed":83},{"id":22029,"frames":[22007,22008,22009,22010,22011,22012],"speed":100},{"id":22030,"frames":[22013,22014,22015,22016,22017,22018],"speed":100},{"id":22031,"frames":[22019,22020,22021,22022,22023],"speed":83},{"id":22032,"frames":[22024,22025,22026,22027,22028],"speed":83},{"id":22062,"frames":[22040,22041,22042,22043,22044,22045],"speed":100},{"id":22063,"frames":[22046,22047,22048,22049,22050,22051],"speed":100},{"id":22064,"frames":[22052,22053,22054,22055,22056],"speed":83},{"id":22065,"frames":[22057,22058,22059,22060,22061],"speed":83},{"id":22070,"frames":[22067,22068,22069],"speed":50},{"id":22234,"frames":[22212,22213,22214,22215,22216,22217],"speed":100},{"id":22235,"frames":[22218,22219,22220,22221,22222,22223],"speed":100},{"id":22236,"frames":[22224,22225,22226,22227,22228],"speed":83},{"id":22237,"frames":[22229,22230,22231,22232,22233],"speed":83},{"id":22265,"frames":[22256,22257,22258,22259,22260,22261,22262,22263,22264],"speed":150},{"id":22288,"frames":[22266,22267,22268,22269,22270,22271],"speed":100},{"id":22289,"frames":[22272,22273,22274,22275,22276,22277],"speed":100},{"id":22290,"frames":[22278,22279,22280,22281,22282],"speed":83},{"id":22291,"frames":[22283,22284,22285,22286,22287],"speed":83},{"id":22314,"frames":[22292,22293,22294,22295,22296,22297],"speed":100},{"id":22315,"frames":[22298,22299,22300,22301,22302,22303],"speed":100},{"id":22316,"frames":[22304,22305,22306,22307,22308],"speed":83},{"id":22317,"frames":[22309,22310,22311,22312,22313],"speed":83},{"id":22340,"frames":[22318,22319,22320,22321,22322,22323],"speed":100},{"id":22341,"frames":[22324,22325,22326,22327,22328,22329],"speed":100},{"id":22342,"frames":[22330,22331,22332,22333,22334],"speed":83},{"id":22343,"frames":[22335,22336,22337,22338,22339],"speed":83},{"id":22366,"frames":[22344,22345,22346,22347,22348,22349],"speed":100},{"id":22367,"frames":[22350,22351,22352,22353,22354,22355],"speed":100},{"id":22368,"frames":[22356,22357,22358,22359,22360],"speed":83},{"id":22369,"frames":[22361,22362,22363,22364,22365],"speed":83},{"id":22392,"frames":[22370,22371,22372,22373,22374,22375],"speed":100},{"id":22393,"frames":[22376,22377,22378,22379,22380,22381],"speed":100},{"id":22394,"frames":[22382,22383,22384,22385,22386],"speed":83},{"id":22395,"frames":[22387,22388,22389,22390,22391],"speed":83},{"id":22418,"frames":[22396,22397,22398,22399,22400,22401],"speed":100},{"id":22419,"frames":[22402,22403,22404,22405,22406,22407],"speed":100},{"id":22420,"frames":[22408,22409,22410,22411,22412],"speed":83},{"id":22421,"frames":[22413,22414,22415,22416,22417],"speed":83},{"id":22444,"frames":[22422,22423,22424,22425,22426,22427],"speed":100},{"id":22445,"frames":[22428,22429,22430,22431,22432,22433],"speed":100},{"id":22446,"frames":[22434,22435,22436,22437,22438],"speed":83},{"id":22447,"frames":[22439,22440,22441,22442,22443],"speed":83},{"id":22470,"frames":[22448,22449,22450,22451,22452,22453],"speed":100},{"id":22471,"frames":[22454,22455,22456,22457,22458,22459],"speed":100},{"id":22472,"frames":[22460,22461,22462,22463,22464],"speed":83},{"id":22473,"frames":[22465,22466,22467,22468,22469],"speed":83},{"id":22537,"frames":[22515,22516,22517,22518,22519,22520],"speed":100},{"id":22538,"frames":[22521,22522,22523,22524,22525,22526],"speed":100},{"id":22539,"frames":[22527,22528,22529,22530,22531],"speed":83},{"id":22540,"frames":[22532,22533,22534,22535,22536],"speed":83},{"id":22563,"frames":[22541,22542,22543,22544,22545,22546],"speed":100},{"id":22564,"frames":[22547,22548,22549,22550,22551,22552],"speed":100},{"id":22565,"frames":[22553,22554,22555,22556,22557],"speed":83},{"id":22566,"frames":[22558,22559,22560,22561,22562],"speed":83},{"id":22589,"frames":[22567,22568,22569,22570,22571,22572],"speed":100},{"id":22590,"frames":[22573,22574,22575,22576,22577,22578],"speed":100},{"id":22591,"frames":[22579,22580,22581,22582,22583],"speed":83},{"id":22592,"frames":[22584,22585,22586,22587,22588],"speed":83},{"id":22615,"frames":[22593,22594,22595,22596,22597,22598],"speed":100},{"id":22616,"frames":[22599,22600,22601,22602,22603,22604],"speed":100},{"id":22617,"frames":[22605,22606,22607,22608,22609],"speed":83},{"id":22618,"frames":[22610,22611,22612,22613,22614],"speed":83},{"id":22641,"frames":[22619,22620,22621,22622,22623,22624],"speed":100},{"id":22642,"frames":[22625,22626,22627,22628,22629,22630],"speed":100},{"id":22643,"frames":[22631,22632,22633,22634,22635],"speed":83},{"id":22644,"frames":[22636,22637,22638,22639,22640],"speed":83},{"id":22667,"frames":[22645,22646,22647,22648,22649,22650],"speed":100},{"id":22668,"frames":[22651,22652,22653,22654,22655,22656],"speed":100},{"id":22669,"frames":[22657,22658,22659,22660,22661],"speed":83},{"id":22670,"frames":[22662,22663,22664,22665,22666],"speed":83},{"id":22693,"frames":[22671,22672,22673,22674,22675,22676],"speed":100},{"id":22694,"frames":[22677,22678,22679,22680,22681,22682],"speed":100},{"id":22695,"frames":[22683,22684,22685,22686,22687],"speed":83},{"id":22696,"frames":[22688,22689,22690,22691,22692],"speed":83},{"id":22719,"frames":[22697,22698,22699,22700,22701,22702],"speed":100},{"id":22720,"frames":[22703,22704,22705,22706,22707,22708],"speed":100},{"id":22721,"frames":[22709,22710,22711,22712,22713],"speed":83},{"id":22722,"frames":[22714,22715,22716,22717,22718],"speed":83},{"id":22746,"frames":[22724,22725,22726,22727,22728,22729],"speed":100},{"id":22747,"frames":[22730,22731,22732,22733,22734,22735],"speed":100},{"id":22748,"frames":[22736,22737,22738,22739,22740],"speed":83},{"id":22749,"frames":[22741,22742,22743,22744,22745],"speed":83},{"id":22772,"frames":[22750,22751,22752,22753,22754,22755],"speed":100},{"id":22773,"frames":[22756,22757,22758,22759,22760,22761],"speed":100},{"id":22774,"frames":[22762,22763,22764,22765,22766],"speed":83},{"id":22775,"frames":[22767,22768,22769,22770,22771],"speed":83},{"id":22798,"frames":[22776,22777,22778,22779,22780,22781],"speed":100},{"id":22799,"frames":[22782,22783,22784,22785,22786,22787],"speed":100},{"id":22800,"frames":[22788,22789,22790,22791,22792],"speed":83},{"id":22801,"frames":[22793,22794,22795,22796,22797],"speed":83},{"id":22862,"frames":[22830,22831,22832,22833,22834,22835,22836,22837],"speed":133},{"id":22863,"frames":[22838,22839,22840,22841,22842,22843,22844,22845],"speed":133},{"id":22864,"frames":[22846,22847,22848,22849,22850,22851,22852,22853],"speed":133},{"id":22865,"frames":[22854,22855,22856,22857,22858,22859,22860,22861],"speed":133},{"id":22898,"frames":[22866,22867,22868,22869,22870,22871,22872,22873],"speed":133},{"id":22899,"frames":[22874,22875,22876,22877,22878,22879,22880,22881],"speed":133},{"id":22900,"frames":[22882,22883,22884,22885,22886,22887,22888,22889],"speed":133},{"id":22901,"frames":[22890,22891,22892,22893,22894,22895,22896,22897],"speed":133},{"id":22924,"frames":[22902,22903,22904,22905,22906,22907],"speed":100},{"id":22925,"frames":[22908,22909,22910,22911,22912,22913],"speed":100},{"id":22926,"frames":[22914,22915,22916,22917,22918],"speed":83},{"id":22927,"frames":[22919,22920,22921,22922,22923],"speed":83},{"id":22960,"frames":[22928,22929,22930,22931,22932,22933,22934,22935],"speed":133},{"id":22961,"frames":[22936,22937,22938,22939,22940,22941,22942,22943],"speed":133},{"id":22962,"frames":[22944,22945,22946,22947,22948,22949,22950,22951],"speed":133},{"id":22963,"frames":[22952,22953,22954,22955,22956,22957,22958,22959],"speed":133},{"id":22986,"frames":[22964,22965,22966,22967,22968,22969],"speed":100},{"id":22987,"frames":[22970,22971,22972,22973,22974,22975],"speed":100},{"id":22988,"frames":[22976,22977,22978,22979,22980],"speed":83},{"id":22989,"frames":[22981,22982,22983,22984,22985],"speed":83},{"id":23012,"frames":[22990,22991,22992,22993,22994,22995],"speed":100},{"id":23013,"frames":[22996,22997,22998,22999,23000,23001],"speed":100},{"id":23014,"frames":[23002,23003,23004,23005,23006],"speed":83},{"id":23015,"frames":[23007,23008,23009,23010,23011],"speed":83},{"id":23038,"frames":[23016,23017,23018,23019,23020,23021],"speed":100},{"id":23039,"frames":[23022,23023,23024,23025,23026,23027],"speed":100},{"id":23040,"frames":[23028,23029,23030,23031,23032],"speed":83},{"id":23041,"frames":[23033,23034,23035,23036,23037],"speed":83},{"id":23064,"frames":[23042,23043,23044,23045,23046,23047],"speed":100},{"id":23065,"frames":[23048,23049,23050,23051,23052,23053],"speed":100},{"id":23066,"frames":[23054,23055,23056,23057,23058],"speed":83},{"id":23067,"frames":[23059,23060,23061,23062,23063],"speed":83},{"id":23092,"frames":[23070,23071,23072,23073,23074,23075],"speed":100},{"id":23093,"frames":[23076,23077,23078,23079,23080,23081],"speed":100},{"id":23094,"frames":[23082,23083,23084,23085,23086],"speed":83},{"id":23095,"frames":[23087,23088,23089,23090,23091],"speed":83},{"id":23119,"frames":[23097,23098,23099,23100,23101,23102],"speed":100},{"id":23120,"frames":[23103,23104,23105,23106,23107,23108],"speed":100},{"id":23121,"frames":[23109,23110,23111,23112,23113],"speed":83},{"id":23122,"frames":[23114,23115,23116,23117,23118],"speed":83},{"id":23146,"frames":[23124,23125,23126,23127,23128,23129],"speed":100},{"id":23147,"frames":[23130,23131,23132,23133,23134,23135],"speed":100},{"id":23148,"frames":[23136,23137,23138,23139,23140],"speed":83},{"id":23149,"frames":[23141,23142,23143,23144,23145],"speed":83},{"id":23173,"frames":[23151,23152,23153,23154,23155,23156],"speed":100},{"id":23174,"frames":[23157,23158,23159,23160,23161,23162],"speed":100},{"id":23175,"frames":[23163,23164,23165,23166,23167],"speed":83},{"id":23176,"frames":[23168,23169,23170,23171,23172],"speed":83},{"id":23200,"frames":[23178,23179,23180,23181,23182,23183],"speed":100},{"id":23201,"frames":[23184,23185,23186,23187,23188,23189],"speed":100},{"id":23202,"frames":[23190,23191,23192,23193,23194],"speed":83},{"id":23203,"frames":[23195,23196,23197,23198,23199],"speed":83},{"id":23231,"frames":[23209,23210,23211,23212,23213,23214],"speed":100},{"id":23232,"frames":[23215,23216,23217,23218,23219,23220],"speed":100},{"id":23233,"frames":[23221,23222,23223,23224,23225],"speed":83},{"id":23234,"frames":[23226,23227,23228,23229,23230],"speed":83},{"id":23257,"frames":[23235,23236,23237,23238,23239,23240],"speed":100},{"id":23258,"frames":[23241,23242,23243,23244,23245,23246],"speed":100},{"id":23259,"frames":[23247,23248,23249,23250,23251],"speed":83},{"id":23260,"frames":[23252,23253,23254,23255,23256],"speed":83},{"id":23283,"frames":[23261,23262,23263,23264,23265,23266],"speed":100},{"id":23284,"frames":[23267,23268,23269,23270,23271,23272],"speed":100},{"id":23285,"frames":[23273,23274,23275,23276,23277],"speed":83},{"id":23286,"frames":[23278,23279,23280,23281,23282],"speed":83},{"id":23309,"frames":[23287,23288,23289,23290,23291,23292],"speed":100},{"id":23310,"frames":[23293,23294,23295,23296,23297,23298],"speed":100},{"id":23311,"frames":[23299,23300,23301,23302,23303],"speed":83},{"id":23312,"frames":[23304,23305,23306,23307,23308],"speed":83},{"id":23335,"frames":[23313,23314,23315,23316,23317,23318],"speed":100},{"id":23336,"frames":[23319,23320,23321,23322,23323,23324],"speed":100},{"id":23337,"frames":[23325,23326,23327,23328,23329],"speed":83},{"id":23338,"frames":[23330,23331,23332,23333,23334],"speed":83},{"id":23361,"frames":[23339,23340,23341,23342,23343,23344],"speed":100},{"id":23362,"frames":[23345,23346,23347,23348,23349,23350],"speed":100},{"id":23363,"frames":[23351,23352,23353,23354,23355],"speed":83},{"id":23364,"frames":[23356,23357,23358,23359,23360],"speed":83},{"id":23387,"frames":[23365,23366,23367,23368,23369,23370],"speed":100},{"id":23388,"frames":[23371,23372,23373,23374,23375,23376],"speed":100},{"id":23389,"frames":[23377,23378,23379,23380,23381],"speed":83},{"id":23390,"frames":[23382,23383,23384,23385,23386],"speed":83},{"id":23413,"frames":[23391,23392,23393,23394,23395,23396],"speed":100},{"id":23414,"frames":[23397,23398,23399,23400,23401,23402],"speed":100},{"id":23415,"frames":[23403,23404,23405,23406,23407],"speed":83},{"id":23416,"frames":[23408,23409,23410,23411,23412],"speed":83},{"id":23439,"frames":[23417,23418,23419,23420,23421,23422],"speed":100},{"id":23440,"frames":[23423,23424,23425,23426,23427,23428],"speed":100},{"id":23441,"frames":[23429,23430,23431,23432,23433],"speed":83},{"id":23442,"frames":[23434,23435,23436,23437,23438],"speed":83},{"id":23465,"frames":[23443,23444,23445,23446,23447,23448],"speed":100},{"id":23466,"frames":[23449,23450,23451,23452,23453,23454],"speed":100},{"id":23467,"frames":[23455,23456,23457,23458,23459],"speed":83},{"id":23468,"frames":[23460,23461,23462,23463,23464],"speed":83},{"id":23491,"frames":[23469,23470,23471,23472,23473,23474],"speed":100},{"id":23492,"frames":[23475,23476,23477,23478,23479,23480],"speed":100},{"id":23493,"frames":[23481,23482,23483,23484,23485],"speed":83},{"id":23494,"frames":[23486,23487,23488,23489,23490],"speed":83},{"id":23517,"frames":[23495,23496,23497,23498,23499,23500],"speed":100},{"id":23518,"frames":[23501,23502,23503,23504,23505,23506],"speed":100},{"id":23519,"frames":[23507,23508,23509,23510,23511],"speed":83},{"id":23520,"frames":[23512,23513,23514,23515,23516],"speed":83},{"id":23543,"frames":[23521,23522,23523,23524,23525,23526],"speed":100},{"id":23544,"frames":[23527,23528,23529,23530,23531,23532],"speed":100},{"id":23545,"frames":[23533,23534,23535,23536,23537],"speed":83},{"id":23546,"frames":[23538,23539,23540,23541,23542],"speed":83},{"id":23569,"frames":[23547,23548,23549,23550,23551,23552],"speed":100},{"id":23570,"frames":[23553,23554,23555,23556,23557,23558],"speed":100},{"id":23571,"frames":[23559,23560,23561,23562,23563],"speed":83},{"id":23572,"frames":[23564,23565,23566,23567,23568],"speed":83},{"id":23595,"frames":[23573,23574,23575,23576,23577,23578],"speed":100},{"id":23596,"frames":[23579,23580,23581,23582,23583,23584],"speed":100},{"id":23597,"frames":[23585,23586,23587,23588,23589],"speed":83},{"id":23598,"frames":[23590,23591,23592,23593,23594],"speed":83},{"id":23621,"frames":[23599,23600,23601,23602,23603,23604],"speed":100},{"id":23622,"frames":[23605,23606,23607,23608,23609,23610],"speed":100},{"id":23623,"frames":[23611,23612,23613,23614,23615],"speed":83},{"id":23624,"frames":[23616,23617,23618,23619,23620],"speed":83},{"id":23647,"frames":[23625,23626,23627,23628,23629,23630],"speed":100},{"id":23648,"frames":[23631,23632,23633,23634,23635,23636],"speed":100},{"id":23649,"frames":[23637,23638,23639,23640,23641],"speed":83},{"id":23650,"frames":[23642,23643,23644,23645,23646],"speed":83},{"id":23664,"frames":[23652,23653,23654,23655,23656,23657,23658,23659,23660,23661,23662,23663],"speed":200},{"id":23677,"frames":[23665,23666,23667,23668,23669,23670,23671,23672,23673,23674,23675,23676],"speed":200},{"id":23690,"frames":[23678,23679,23680,23681,23682,23683,23684,23685,23686,23687,23688,23689],"speed":200},{"id":23703,"frames":[23691,23692,23693,23694,23695,23696,23697,23698,23699,23700,23701,23702],"speed":200},{"id":23709,"frames":[23705,23706,23707,23708],"speed":66},{"id":23714,"frames":[23710,23711,23712,23713],"speed":66},{"id":23719,"frames":[23715,23716,23717,23718],"speed":66},{"id":23724,"frames":[23720,23721,23722,23723],"speed":66}]
\ No newline at end of file
diff --git a/output/descriptors/bodies.json b/output/descriptors/bodies.json
new file mode 100644
index 00000000..f5ce7c72
--- /dev/null
+++ b/output/descriptors/bodies.json
@@ -0,0 +1 @@
+[{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[18413],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[259],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[5954],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[145],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[93],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[5943],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[205],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[1894],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[119],"offsetX":0,"offsetY":-15},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[275],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[9568],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[172],"offsetX":0,"offsetY":30},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[421],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[18401],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[237],"offsetX":0,"offsetY":32},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[4797],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[134],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[420],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[5942],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[194],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[1885],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[115],"offsetX":0,"offsetY":32},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[20503],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[265],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[6580],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[156],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[297],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[18191],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[221],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[2316],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[123],"offsetX":0,"offsetY":-15},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[286],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[5941],"offsetX":0,"offsetY":0},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[183],"offsetX":0,"offsetY":32},{"class":"model.descriptors.FXDescriptor","id":0,"indexs":[308],"offsetX":0,"offsetY":0}]
\ No newline at end of file
diff --git a/output/graphics/images.atlas b/output/graphics/images.atlas
new file mode 100644
index 00000000..d34f95a5
--- /dev/null
+++ b/output/graphics/images.atlas
@@ -0,0 +1,150584 @@
+
+images.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10219
+ rotate: false
+ xy: 2, 786
+ size: 746, 236
+ orig: 746, 236
+ offset: 0, 0
+ index: -1
+12307
+ rotate: false
+ xy: 1013, 3
+ size: 1, 1
+ orig: 1, 1
+ offset: 0, 0
+ index: -1
+12308
+ rotate: false
+ xy: 1013, 3
+ size: 1, 1
+ orig: 1, 1
+ offset: 0, 0
+ index: -1
+1331
+ rotate: false
+ xy: 2, 389
+ size: 500, 395
+ orig: 500, 395
+ offset: 0, 0
+ index: -1
+13963
+ rotate: false
+ xy: 902, 166
+ size: 120, 222
+ orig: 120, 222
+ offset: 0, 0
+ index: -1
+1465
+ rotate: false
+ xy: 504, 390
+ size: 210, 222
+ orig: 210, 222
+ offset: 0, 0
+ index: -1
+1466
+ rotate: false
+ xy: 716, 390
+ size: 210, 222
+ orig: 210, 222
+ offset: 0, 0
+ index: -1
+148
+ rotate: false
+ xy: 504, 614
+ size: 240, 170
+ orig: 240, 170
+ offset: 0, 0
+ index: -1
+1534
+ rotate: false
+ xy: 750, 725
+ size: 267, 297
+ orig: 267, 297
+ offset: 0, 0
+ index: -1
+18272
+ rotate: false
+ xy: 204, 4
+ size: 200, 81
+ orig: 200, 81
+ offset: 0, 0
+ index: -1
+19661
+ rotate: false
+ xy: 2, 87
+ size: 576, 300
+ orig: 576, 300
+ offset: 0, 0
+ index: -1
+23749
+ rotate: false
+ xy: 451, 4
+ size: 127, 15
+ orig: 127, 15
+ offset: 0, 0
+ index: -1
+23770
+ rotate: false
+ xy: 928, 397
+ size: 94, 15
+ orig: 94, 15
+ offset: 0, 0
+ index: -1
+23786
+ rotate: false
+ xy: 1013, 57
+ size: 9, 15
+ orig: 9, 15
+ offset: 0, 0
+ index: -1
+23837
+ rotate: false
+ xy: 1013, 23
+ size: 8, 15
+ orig: 8, 15
+ offset: 0, 0
+ index: -1
+23889
+ rotate: false
+ xy: 1013, 6
+ size: 8, 15
+ orig: 8, 15
+ offset: 0, 0
+ index: -1
+23937
+ rotate: false
+ xy: 1013, 40
+ size: 9, 15
+ orig: 9, 15
+ offset: 0, 0
+ index: -1
+313
+ rotate: false
+ xy: 942, 614
+ size: 80, 39
+ orig: 80, 39
+ offset: 0, 0
+ index: -1
+3582
+ rotate: false
+ xy: 580, 4
+ size: 320, 384
+ orig: 320, 384
+ offset: 0, 0
+ index: -1
+3665
+ rotate: false
+ xy: 746, 614
+ size: 96, 39
+ orig: 96, 39
+ offset: 0, 0
+ index: -1
+3666
+ rotate: false
+ xy: 844, 614
+ size: 96, 39
+ orig: 96, 39
+ offset: 0, 0
+ index: -1
+4339
+ rotate: false
+ xy: 928, 564
+ size: 94, 48
+ orig: 94, 48
+ offset: 0, 0
+ index: -1
+4347
+ rotate: false
+ xy: 928, 514
+ size: 94, 48
+ orig: 94, 48
+ offset: 0, 0
+ index: -1
+4355
+ rotate: false
+ xy: 928, 464
+ size: 94, 48
+ orig: 94, 48
+ offset: 0, 0
+ index: -1
+4363
+ rotate: false
+ xy: 928, 414
+ size: 94, 48
+ orig: 94, 48
+ offset: 0, 0
+ index: -1
+4866
+ rotate: false
+ xy: 746, 655
+ size: 276, 68
+ orig: 276, 68
+ offset: 0, 0
+ index: -1
+5358
+ rotate: false
+ xy: 430, 2
+ size: 19, 17
+ orig: 19, 17
+ offset: 0, 0
+ index: -1
+664
+ rotate: false
+ xy: 406, 21
+ size: 172, 64
+ orig: 172, 64
+ offset: 0, 0
+ index: -1
+739
+ rotate: false
+ xy: 902, 74
+ size: 120, 90
+ orig: 120, 90
+ offset: 0, 0
+ index: -1
+740
+ rotate: false
+ xy: 902, 2
+ size: 109, 70
+ orig: 109, 70
+ offset: 0, 0
+ index: -1
+745
+ rotate: false
+ xy: 406, 2
+ size: 22, 17
+ orig: 22, 17
+ offset: 0, 0
+ index: -1
+9557
+ rotate: false
+ xy: 2, 4
+ size: 200, 81
+ orig: 200, 81
+ offset: 0, 0
+ index: -1
+
+images2.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10222
+ rotate: false
+ xy: 2, 786
+ size: 746, 236
+ orig: 746, 236
+ offset: 0, 0
+ index: -1
+10332
+ rotate: false
+ xy: 883, 12
+ size: 139, 75
+ orig: 139, 75
+ offset: 0, 0
+ index: -1
+12703
+ rotate: false
+ xy: 701, 2
+ size: 180, 210
+ orig: 180, 210
+ offset: 0, 0
+ index: -1
+1461
+ rotate: false
+ xy: 883, 89
+ size: 139, 123
+ orig: 139, 123
+ offset: 0, 0
+ index: -1
+17951
+ rotate: false
+ xy: 478, 193
+ size: 221, 89
+ orig: 221, 89
+ offset: 0, 0
+ index: -1
+19416
+ rotate: false
+ xy: 222, 4
+ size: 254, 274
+ orig: 254, 274
+ offset: 0, 0
+ index: -1
+23785
+ rotate: false
+ xy: 680, 53
+ size: 19, 15
+ orig: 19, 15
+ offset: 0, 0
+ index: -1
+23787
+ rotate: false
+ xy: 680, 36
+ size: 19, 15
+ orig: 19, 15
+ offset: 0, 0
+ index: -1
+23835
+ rotate: false
+ xy: 680, 19
+ size: 19, 15
+ orig: 19, 15
+ offset: 0, 0
+ index: -1
+23890
+ rotate: false
+ xy: 680, 2
+ size: 19, 15
+ orig: 19, 15
+ offset: 0, 0
+ index: -1
+391
+ rotate: false
+ xy: 554, 89
+ size: 145, 50
+ orig: 145, 50
+ offset: 0, 0
+ index: -1
+393
+ rotate: false
+ xy: 750, 972
+ size: 270, 50
+ orig: 270, 50
+ offset: 0, 0
+ index: -1
+427
+ rotate: false
+ xy: 701, 500
+ size: 320, 284
+ orig: 320, 284
+ offset: 0, 0
+ index: -1
+428
+ rotate: false
+ xy: 38, 280
+ size: 359, 504
+ orig: 359, 504
+ offset: 0, 0
+ index: -1
+4801
+ rotate: false
+ xy: 478, 141
+ size: 220, 50
+ orig: 220, 50
+ offset: 0, 0
+ index: -1
+4869
+ rotate: false
+ xy: 478, 2
+ size: 74, 137
+ orig: 74, 137
+ offset: 0, 0
+ index: -1
+4972
+ rotate: false
+ xy: 554, 2
+ size: 124, 85
+ orig: 124, 85
+ offset: 0, 0
+ index: -1
+5359
+ rotate: false
+ xy: 680, 70
+ size: 19, 17
+ orig: 19, 17
+ offset: 0, 0
+ index: -1
+5598
+ rotate: false
+ xy: 701, 214
+ size: 320, 284
+ orig: 320, 284
+ offset: 0, 0
+ index: -1
+5749
+ rotate: false
+ xy: 2, 272
+ size: 34, 512
+ orig: 34, 512
+ offset: 0, 0
+ index: -1
+788
+ rotate: false
+ xy: 2, 4
+ size: 218, 266
+ orig: 218, 266
+ offset: 0, 0
+ index: -1
+8558
+ rotate: false
+ xy: 750, 910
+ size: 267, 60
+ orig: 267, 60
+ offset: 0, 0
+ index: -1
+8564
+ rotate: false
+ xy: 750, 848
+ size: 267, 60
+ orig: 267, 60
+ offset: 0, 0
+ index: -1
+8570
+ rotate: false
+ xy: 750, 786
+ size: 267, 60
+ orig: 267, 60
+ offset: 0, 0
+ index: -1
+9580
+ rotate: false
+ xy: 399, 284
+ size: 300, 500
+ orig: 300, 500
+ offset: 0, 0
+ index: -1
+
+images3.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10225
+ rotate: false
+ xy: 2, 786
+ size: 746, 236
+ orig: 746, 236
+ offset: 0, 0
+ index: -1
+10228
+ rotate: false
+ xy: 2, 464
+ size: 746, 236
+ orig: 746, 236
+ offset: 0, 0
+ index: -1
+124
+ rotate: false
+ xy: 992, 505
+ size: 30, 40
+ orig: 30, 40
+ offset: 0, 0
+ index: -1
+1482
+ rotate: false
+ xy: 992, 473
+ size: 30, 30
+ orig: 30, 30
+ offset: 0, 0
+ index: -1
+1493
+ rotate: false
+ xy: 720, 3
+ size: 146, 33
+ orig: 146, 33
+ offset: 0, 0
+ index: -1
+15
+ rotate: false
+ xy: 1008, 903
+ size: 11, 30
+ orig: 11, 30
+ offset: 0, 0
+ index: -1
+153
+ rotate: false
+ xy: 750, 468
+ size: 240, 170
+ orig: 240, 170
+ offset: 0, 0
+ index: -1
+17942
+ rotate: false
+ xy: 868, 2
+ size: 36, 34
+ orig: 36, 34
+ offset: 0, 0
+ index: -1
+18236
+ rotate: false
+ xy: 720, 322
+ size: 301, 140
+ orig: 301, 140
+ offset: 0, 0
+ index: -1
+18242
+ rotate: false
+ xy: 720, 180
+ size: 301, 140
+ orig: 301, 140
+ offset: 0, 0
+ index: -1
+18248
+ rotate: false
+ xy: 720, 38
+ size: 301, 140
+ orig: 301, 140
+ offset: 0, 0
+ index: -1
+18478
+ rotate: false
+ xy: 2, 2
+ size: 357, 460
+ orig: 357, 460
+ offset: 0, 0
+ index: -1
+18804
+ rotate: false
+ xy: 361, 2
+ size: 357, 460
+ orig: 357, 460
+ offset: 0, 0
+ index: -1
+23735
+ rotate: false
+ xy: 1008, 721
+ size: 5, 15
+ orig: 5, 15
+ offset: 0, 0
+ index: -1
+23863
+ rotate: false
+ xy: 1008, 721
+ size: 5, 15
+ orig: 5, 15
+ offset: 0, 0
+ index: -1
+23736
+ rotate: false
+ xy: 1008, 854
+ size: 11, 15
+ orig: 11, 15
+ offset: 0, 0
+ index: -1
+23746
+ rotate: false
+ xy: 634, 711
+ size: 114, 15
+ orig: 114, 15
+ offset: 0, 0
+ index: -1
+23761
+ rotate: false
+ xy: 1008, 952
+ size: 12, 15
+ orig: 12, 15
+ offset: 0, 0
+ index: -1
+23762
+ rotate: false
+ xy: 1008, 704
+ size: 5, 15
+ orig: 5, 15
+ offset: 0, 0
+ index: -1
+23812
+ rotate: false
+ xy: 1008, 988
+ size: 13, 15
+ orig: 13, 15
+ offset: 0, 0
+ index: -1
+23826
+ rotate: false
+ xy: 906, 21
+ size: 116, 15
+ orig: 116, 15
+ offset: 0, 0
+ index: -1
+23836
+ rotate: false
+ xy: 1008, 767
+ size: 10, 15
+ orig: 10, 15
+ offset: 0, 0
+ index: -1
+23862
+ rotate: false
+ xy: 1008, 837
+ size: 11, 15
+ orig: 11, 15
+ offset: 0, 0
+ index: -1
+23864
+ rotate: false
+ xy: 1008, 820
+ size: 11, 15
+ orig: 11, 15
+ offset: 0, 0
+ index: -1
+23901
+ rotate: false
+ xy: 906, 4
+ size: 116, 15
+ orig: 116, 15
+ offset: 0, 0
+ index: -1
+23912
+ rotate: false
+ xy: 1008, 935
+ size: 12, 15
+ orig: 12, 15
+ offset: 0, 0
+ index: -1
+23913
+ rotate: false
+ xy: 1008, 750
+ size: 10, 15
+ orig: 10, 15
+ offset: 0, 0
+ index: -1
+23936
+ rotate: false
+ xy: 1008, 803
+ size: 11, 15
+ orig: 11, 15
+ offset: 0, 0
+ index: -1
+23959
+ rotate: false
+ xy: 1008, 738
+ size: 10, 10
+ orig: 10, 10
+ offset: 0, 0
+ index: -1
+24
+ rotate: false
+ xy: 1008, 871
+ size: 11, 30
+ orig: 11, 30
+ offset: 0, 0
+ index: -1
+4928
+ rotate: false
+ xy: 992, 547
+ size: 30, 42
+ orig: 30, 42
+ offset: 0, 0
+ index: -1
+5357
+ rotate: false
+ xy: 1008, 784
+ size: 10, 17
+ orig: 10, 17
+ offset: 0, 0
+ index: -1
+5591
+ rotate: false
+ xy: 750, 702
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+5764
+ rotate: false
+ xy: 992, 591
+ size: 30, 47
+ orig: 30, 47
+ offset: 0, 0
+ index: -1
+7005
+ rotate: false
+ xy: 634, 728
+ size: 114, 56
+ orig: 114, 56
+ offset: 0, 0
+ index: -1
+7036
+ rotate: false
+ xy: 2, 703
+ size: 156, 81
+ orig: 156, 81
+ offset: 0, 0
+ index: -1
+7037
+ rotate: false
+ xy: 160, 703
+ size: 156, 81
+ orig: 156, 81
+ offset: 0, 0
+ index: -1
+7043
+ rotate: false
+ xy: 318, 703
+ size: 156, 81
+ orig: 156, 81
+ offset: 0, 0
+ index: -1
+7044
+ rotate: false
+ xy: 476, 703
+ size: 156, 81
+ orig: 156, 81
+ offset: 0, 0
+ index: -1
+744
+ rotate: false
+ xy: 1008, 1005
+ size: 13, 17
+ orig: 13, 17
+ offset: 0, 0
+ index: -1
+746
+ rotate: false
+ xy: 1008, 969
+ size: 12, 17
+ orig: 12, 17
+ offset: 0, 0
+ index: -1
+8576
+ rotate: false
+ xy: 750, 640
+ size: 267, 60
+ orig: 267, 60
+ offset: 0, 0
+ index: -1
+
+images4.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10231
+ rotate: false
+ xy: 2, 786
+ size: 746, 236
+ orig: 746, 236
+ offset: 0, 0
+ index: -1
+10234
+ rotate: false
+ xy: 2, 464
+ size: 746, 236
+ orig: 746, 236
+ offset: 0, 0
+ index: -1
+10237
+ rotate: false
+ xy: 2, 226
+ size: 746, 236
+ orig: 746, 236
+ offset: 0, 0
+ index: -1
+10374
+ rotate: false
+ xy: 370, 3
+ size: 198, 94
+ orig: 198, 94
+ offset: 0, 0
+ index: -1
+1464
+ rotate: false
+ xy: 2, 2
+ size: 105, 222
+ orig: 105, 222
+ offset: 0, 0
+ index: -1
+1467
+ rotate: false
+ xy: 109, 2
+ size: 105, 222
+ orig: 105, 222
+ offset: 0, 0
+ index: -1
+21873
+ rotate: false
+ xy: 747, 2
+ size: 132, 46
+ orig: 132, 46
+ offset: 0, 0
+ index: -1
+21878
+ rotate: false
+ xy: 881, 2
+ size: 132, 46
+ orig: 132, 46
+ offset: 0, 0
+ index: -1
+22067
+ rotate: false
+ xy: 750, 444
+ size: 266, 256
+ orig: 266, 256
+ offset: 0, 0
+ index: -1
+22069
+ rotate: false
+ xy: 750, 186
+ size: 266, 256
+ orig: 266, 256
+ offset: 0, 0
+ index: -1
+22868
+ rotate: false
+ xy: 370, 99
+ size: 375, 125
+ orig: 375, 125
+ offset: 0, 0
+ index: -1
+23679
+ rotate: false
+ xy: 747, 50
+ size: 275, 134
+ orig: 275, 134
+ offset: 0, 0
+ index: -1
+23772
+ rotate: false
+ xy: 634, 711
+ size: 114, 15
+ orig: 114, 15
+ offset: 0, 0
+ index: -1
+23926
+ rotate: false
+ xy: 631, 8
+ size: 114, 15
+ orig: 114, 15
+ offset: 0, 0
+ index: -1
+4072
+ rotate: false
+ xy: 570, 3
+ size: 59, 20
+ orig: 59, 20
+ offset: 0, 0
+ index: -1
+42
+ rotate: false
+ xy: 570, 62
+ size: 175, 35
+ orig: 175, 35
+ offset: 0, 0
+ index: -1
+44
+ rotate: false
+ xy: 570, 25
+ size: 175, 35
+ orig: 175, 35
+ offset: 0, 0
+ index: -1
+4667
+ rotate: false
+ xy: 216, 3
+ size: 152, 221
+ orig: 152, 221
+ offset: 0, 0
+ index: -1
+7006
+ rotate: false
+ xy: 634, 728
+ size: 114, 56
+ orig: 114, 56
+ offset: 0, 0
+ index: -1
+7050
+ rotate: false
+ xy: 2, 703
+ size: 156, 81
+ orig: 156, 81
+ offset: 0, 0
+ index: -1
+7051
+ rotate: false
+ xy: 160, 703
+ size: 156, 81
+ orig: 156, 81
+ offset: 0, 0
+ index: -1
+7057
+ rotate: false
+ xy: 318, 703
+ size: 156, 81
+ orig: 156, 81
+ offset: 0, 0
+ index: -1
+7058
+ rotate: false
+ xy: 476, 703
+ size: 156, 81
+ orig: 156, 81
+ offset: 0, 0
+ index: -1
+7222
+ rotate: false
+ xy: 750, 702
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+
+images5.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10240
+ rotate: false
+ xy: 2, 786
+ size: 746, 236
+ orig: 746, 236
+ offset: 0, 0
+ index: -1
+12148
+ rotate: false
+ xy: 776, 121
+ size: 245, 75
+ orig: 245, 75
+ offset: 0, 0
+ index: -1
+12150
+ rotate: false
+ xy: 776, 44
+ size: 245, 75
+ orig: 245, 75
+ offset: 0, 0
+ index: -1
+12334
+ rotate: false
+ xy: 2, 3
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+125
+ rotate: false
+ xy: 960, 2
+ size: 60, 40
+ orig: 60, 40
+ offset: 0, 0
+ index: -1
+126
+ rotate: false
+ xy: 776, 2
+ size: 90, 40
+ orig: 90, 40
+ offset: 0, 0
+ index: -1
+131
+ rotate: false
+ xy: 868, 2
+ size: 90, 40
+ orig: 90, 40
+ offset: 0, 0
+ index: -1
+18193
+ rotate: false
+ xy: 750, 856
+ size: 260, 166
+ orig: 260, 166
+ offset: 0, 0
+ index: -1
+18194
+ rotate: false
+ xy: 750, 688
+ size: 260, 166
+ orig: 260, 166
+ offset: 0, 0
+ index: -1
+18802
+ rotate: false
+ xy: 260, 3
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+19584
+ rotate: false
+ xy: 644, 300
+ size: 149, 49
+ orig: 149, 49
+ offset: 0, 0
+ index: -1
+19585
+ rotate: false
+ xy: 946, 300
+ size: 75, 49
+ orig: 75, 49
+ offset: 0, 0
+ index: -1
+19588
+ rotate: false
+ xy: 795, 300
+ size: 149, 49
+ orig: 149, 49
+ offset: 0, 0
+ index: -1
+19605
+ rotate: false
+ xy: 2, 624
+ size: 640, 160
+ orig: 640, 160
+ offset: 0, 0
+ index: -1
+19606
+ rotate: false
+ xy: 2, 462
+ size: 640, 160
+ orig: 640, 160
+ offset: 0, 0
+ index: -1
+19613
+ rotate: false
+ xy: 2, 300
+ size: 640, 160
+ orig: 640, 160
+ offset: 0, 0
+ index: -1
+22871
+ rotate: false
+ xy: 644, 478
+ size: 375, 125
+ orig: 375, 125
+ offset: 0, 0
+ index: -1
+22876
+ rotate: false
+ xy: 644, 351
+ size: 375, 125
+ orig: 375, 125
+ offset: 0, 0
+ index: -1
+3288
+ rotate: false
+ xy: 518, 198
+ size: 503, 100
+ orig: 503, 100
+ offset: 0, 0
+ index: -1
+4664
+ rotate: false
+ xy: 518, 2
+ size: 256, 194
+ orig: 256, 194
+ offset: 0, 0
+ index: -1
+4668
+ rotate: false
+ xy: 644, 605
+ size: 104, 179
+ orig: 104, 179
+ offset: 0, 0
+ index: -1
+7045
+ rotate: false
+ xy: 908, 605
+ size: 105, 81
+ orig: 105, 81
+ offset: 0, 0
+ index: -1
+7067
+ rotate: false
+ xy: 750, 605
+ size: 156, 81
+ orig: 156, 81
+ offset: 0, 0
+ index: -1
+
+images6.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+1014
+ rotate: false
+ xy: 1002, 344
+ size: 17, 28
+ orig: 17, 28
+ offset: 0, 0
+ index: -1
+11883
+ rotate: false
+ xy: 2, 156
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+12704
+ rotate: false
+ xy: 915, 2
+ size: 76, 68
+ orig: 76, 68
+ offset: 0, 0
+ index: -1
+135
+ rotate: false
+ xy: 602, 775
+ size: 40, 85
+ orig: 40, 85
+ offset: 0, 0
+ index: -1
+139
+ rotate: false
+ xy: 602, 688
+ size: 40, 85
+ orig: 40, 85
+ offset: 0, 0
+ index: -1
+1485
+ rotate: false
+ xy: 602, 646
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+1529
+ rotate: false
+ xy: 719, 72
+ size: 300, 270
+ orig: 300, 270
+ offset: 0, 0
+ index: -1
+17721
+ rotate: false
+ xy: 181, 2
+ size: 198, 96
+ orig: 198, 96
+ offset: 0, 0
+ index: -1
+17975
+ rotate: false
+ xy: 979, 646
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+18405
+ rotate: false
+ xy: 2, 595
+ size: 420, 265
+ orig: 420, 265
+ offset: 0, 0
+ index: -1
+18410
+ rotate: false
+ xy: 2, 328
+ size: 420, 265
+ orig: 420, 265
+ offset: 0, 0
+ index: -1
+18481
+ rotate: false
+ xy: 424, 4
+ size: 293, 338
+ orig: 293, 338
+ offset: 0, 0
+ index: -1
+1877
+ rotate: false
+ xy: 979, 893
+ size: 43, 63
+ orig: 43, 63
+ offset: 0, 0
+ index: -1
+1886
+ rotate: false
+ xy: 979, 828
+ size: 43, 63
+ orig: 43, 63
+ offset: 0, 0
+ index: -1
+18995
+ rotate: false
+ xy: 644, 646
+ size: 333, 376
+ orig: 333, 376
+ offset: 0, 0
+ index: -1
+1900
+ rotate: false
+ xy: 993, 19
+ size: 29, 51
+ orig: 29, 51
+ offset: 0, 0
+ index: -1
+1933
+ rotate: false
+ xy: 1002, 534
+ size: 20, 53
+ orig: 20, 53
+ offset: 0, 0
+ index: -1
+1938
+ rotate: false
+ xy: 1002, 479
+ size: 20, 53
+ orig: 20, 53
+ offset: 0, 0
+ index: -1
+19614
+ rotate: false
+ xy: 2, 862
+ size: 640, 160
+ orig: 640, 160
+ offset: 0, 0
+ index: -1
+19664
+ rotate: false
+ xy: 424, 344
+ size: 576, 300
+ orig: 576, 300
+ offset: 0, 0
+ index: -1
+20168
+ rotate: false
+ xy: 2, 3
+ size: 177, 151
+ orig: 177, 151
+ offset: 0, 0
+ index: -1
+2111
+ rotate: false
+ xy: 719, 3
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+22066
+ rotate: false
+ xy: 381, 2
+ size: 32, 96
+ orig: 32, 96
+ offset: 0, 0
+ index: -1
+2212
+ rotate: false
+ xy: 181, 100
+ size: 240, 54
+ orig: 240, 54
+ offset: 0, 0
+ index: -1
+23737
+ rotate: false
+ xy: 1002, 374
+ size: 20, 15
+ orig: 20, 15
+ offset: 0, 0
+ index: -1
+23764
+ rotate: false
+ xy: 993, 2
+ size: 29, 15
+ orig: 29, 15
+ offset: 0, 0
+ index: -1
+422
+ rotate: false
+ xy: 424, 652
+ size: 176, 208
+ orig: 176, 208
+ offset: 0, 0
+ index: -1
+437
+ rotate: false
+ xy: 1002, 391
+ size: 20, 34
+ orig: 20, 34
+ offset: 0, 0
+ index: -1
+4884
+ rotate: false
+ xy: 1002, 589
+ size: 20, 55
+ orig: 20, 55
+ offset: 0, 0
+ index: -1
+507
+ rotate: false
+ xy: 1002, 427
+ size: 20, 50
+ orig: 20, 50
+ offset: 0, 0
+ index: -1
+6563
+ rotate: false
+ xy: 979, 776
+ size: 43, 50
+ orig: 43, 50
+ offset: 0, 0
+ index: -1
+661
+ rotate: false
+ xy: 979, 958
+ size: 43, 64
+ orig: 43, 64
+ offset: 0, 0
+ index: -1
+
+images7.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+100
+ rotate: false
+ xy: 894, 154
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+10766
+ rotate: false
+ xy: 966, 686
+ size: 49, 200
+ orig: 49, 200
+ offset: 0, 0
+ index: -1
+136
+ rotate: false
+ xy: 942, 67
+ size: 80, 85
+ orig: 80, 85
+ offset: 0, 0
+ index: -1
+18480
+ rotate: false
+ xy: 580, 152
+ size: 312, 388
+ orig: 312, 388
+ offset: 0, 0
+ index: -1
+19667
+ rotate: false
+ xy: 2, 722
+ size: 576, 300
+ orig: 576, 300
+ offset: 0, 0
+ index: -1
+19670
+ rotate: false
+ xy: 2, 420
+ size: 576, 300
+ orig: 576, 300
+ offset: 0, 0
+ index: -1
+19673
+ rotate: false
+ xy: 2, 118
+ size: 576, 300
+ orig: 576, 300
+ offset: 0, 0
+ index: -1
+2210
+ rotate: false
+ xy: 942, 11
+ size: 80, 54
+ orig: 80, 54
+ offset: 0, 0
+ index: -1
+23653
+ rotate: false
+ xy: 2, 2
+ size: 468, 114
+ orig: 468, 114
+ offset: 0, 0
+ index: -1
+23656
+ rotate: false
+ xy: 472, 2
+ size: 468, 114
+ orig: 468, 114
+ offset: 0, 0
+ index: -1
+3187
+ rotate: false
+ xy: 966, 550
+ size: 55, 134
+ orig: 55, 134
+ offset: 0, 0
+ index: -1
+3196
+ rotate: false
+ xy: 966, 888
+ size: 56, 134
+ orig: 56, 134
+ offset: 0, 0
+ index: -1
+3584
+ rotate: false
+ xy: 580, 542
+ size: 384, 480
+ orig: 384, 480
+ offset: 0, 0
+ index: -1
+426
+ rotate: false
+ xy: 894, 284
+ size: 128, 256
+ orig: 128, 256
+ offset: 0, 0
+ index: -1
+7201
+ rotate: false
+ xy: 580, 118
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+743
+ rotate: false
+ xy: 902, 121
+ size: 38, 31
+ orig: 38, 31
+ offset: 0, 0
+ index: -1
+
+images8.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10768
+ rotate: false
+ xy: 875, 548
+ size: 147, 200
+ orig: 147, 200
+ offset: 0, 0
+ index: -1
+10773
+ rotate: false
+ xy: 875, 346
+ size: 147, 200
+ orig: 147, 200
+ offset: 0, 0
+ index: -1
+18479
+ rotate: false
+ xy: 580, 293
+ size: 293, 336
+ orig: 293, 336
+ offset: 0, 0
+ index: -1
+19676
+ rotate: false
+ xy: 2, 722
+ size: 576, 300
+ orig: 576, 300
+ offset: 0, 0
+ index: -1
+19679
+ rotate: false
+ xy: 2, 420
+ size: 576, 300
+ orig: 576, 300
+ offset: 0, 0
+ index: -1
+19682
+ rotate: false
+ xy: 2, 118
+ size: 576, 300
+ orig: 576, 300
+ offset: 0, 0
+ index: -1
+20171
+ rotate: false
+ xy: 902, 127
+ size: 92, 217
+ orig: 92, 217
+ offset: 0, 0
+ index: -1
+23659
+ rotate: false
+ xy: 2, 2
+ size: 468, 114
+ orig: 468, 114
+ offset: 0, 0
+ index: -1
+23662
+ rotate: false
+ xy: 472, 2
+ size: 468, 114
+ orig: 468, 114
+ offset: 0, 0
+ index: -1
+23960
+ rotate: false
+ xy: 996, 130
+ size: 21, 10
+ orig: 21, 10
+ offset: 0, 0
+ index: -1
+277
+ rotate: false
+ xy: 580, 121
+ size: 320, 170
+ orig: 320, 170
+ offset: 0, 0
+ index: -1
+4480
+ rotate: false
+ xy: 875, 294
+ size: 25, 50
+ orig: 25, 50
+ offset: 0, 0
+ index: -1
+4546
+ rotate: false
+ xy: 580, 631
+ size: 253, 391
+ orig: 253, 391
+ offset: 0, 0
+ index: -1
+4873
+ rotate: false
+ xy: 996, 244
+ size: 26, 100
+ orig: 26, 100
+ offset: 0, 0
+ index: -1
+4879
+ rotate: false
+ xy: 996, 142
+ size: 26, 100
+ orig: 26, 100
+ offset: 0, 0
+ index: -1
+696
+ rotate: false
+ xy: 835, 750
+ size: 178, 272
+ orig: 178, 272
+ offset: 0, 0
+ index: -1
+7003
+ rotate: false
+ xy: 835, 692
+ size: 38, 56
+ orig: 38, 56
+ offset: 0, 0
+ index: -1
+7008
+ rotate: false
+ xy: 835, 634
+ size: 38, 56
+ orig: 38, 56
+ offset: 0, 0
+ index: -1
+865
+ rotate: false
+ xy: 942, 2
+ size: 75, 123
+ orig: 75, 123
+ offset: 0, 0
+ index: -1
+
+images9.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10767
+ rotate: false
+ xy: 544, 174
+ size: 98, 200
+ orig: 98, 200
+ offset: 0, 0
+ index: -1
+12073
+ rotate: false
+ xy: 968, 3
+ size: 54, 52
+ orig: 54, 52
+ offset: 0, 0
+ index: -1
+18254
+ rotate: false
+ xy: 710, 195
+ size: 301, 140
+ orig: 301, 140
+ offset: 0, 0
+ index: -1
+1951
+ rotate: false
+ xy: 968, 126
+ size: 54, 67
+ orig: 54, 67
+ offset: 0, 0
+ index: -1
+1957
+ rotate: false
+ xy: 968, 57
+ size: 54, 67
+ orig: 54, 67
+ offset: 0, 0
+ index: -1
+19621
+ rotate: false
+ xy: 2, 862
+ size: 640, 160
+ orig: 640, 160
+ offset: 0, 0
+ index: -1
+19622
+ rotate: false
+ xy: 2, 700
+ size: 640, 160
+ orig: 640, 160
+ offset: 0, 0
+ index: -1
+19627
+ rotate: false
+ xy: 2, 538
+ size: 640, 160
+ orig: 640, 160
+ offset: 0, 0
+ index: -1
+19628
+ rotate: false
+ xy: 2, 376
+ size: 640, 160
+ orig: 640, 160
+ offset: 0, 0
+ index: -1
+2144
+ rotate: false
+ xy: 544, 54
+ size: 98, 31
+ orig: 98, 31
+ offset: 0, 0
+ index: -1
+22879
+ rotate: false
+ xy: 644, 897
+ size: 375, 125
+ orig: 375, 125
+ offset: 0, 0
+ index: -1
+22884
+ rotate: false
+ xy: 644, 770
+ size: 375, 125
+ orig: 375, 125
+ offset: 0, 0
+ index: -1
+22887
+ rotate: false
+ xy: 644, 643
+ size: 375, 125
+ orig: 375, 125
+ offset: 0, 0
+ index: -1
+22892
+ rotate: false
+ xy: 644, 516
+ size: 375, 125
+ orig: 375, 125
+ offset: 0, 0
+ index: -1
+22895
+ rotate: false
+ xy: 644, 389
+ size: 375, 125
+ orig: 375, 125
+ offset: 0, 0
+ index: -1
+2839
+ rotate: false
+ xy: 2, 2
+ size: 297, 50
+ orig: 297, 50
+ offset: 0, 0
+ index: -1
+2840
+ rotate: false
+ xy: 301, 2
+ size: 297, 50
+ orig: 297, 50
+ offset: 0, 0
+ index: -1
+3987
+ rotate: false
+ xy: 710, 337
+ size: 305, 50
+ orig: 305, 50
+ offset: 0, 0
+ index: -1
+525
+ rotate: false
+ xy: 600, 3
+ size: 42, 49
+ orig: 42, 49
+ offset: 0, 0
+ index: -1
+7171
+ rotate: false
+ xy: 544, 87
+ size: 98, 85
+ orig: 98, 85
+ offset: 0, 0
+ index: -1
+7223
+ rotate: false
+ xy: 286, 54
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+7226
+ rotate: false
+ xy: 2, 54
+ size: 282, 320
+ orig: 282, 320
+ offset: 0, 0
+ index: -1
+8167
+ rotate: false
+ xy: 644, 3
+ size: 64, 384
+ orig: 64, 384
+ offset: 0, 0
+ index: -1
+9
+ rotate: false
+ xy: 710, 5
+ size: 256, 188
+ orig: 256, 188
+ offset: 0, 0
+ index: -1
+
+images10.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10207
+ rotate: false
+ xy: 2, 740
+ size: 576, 282
+ orig: 576, 282
+ offset: 0, 0
+ index: -1
+10210
+ rotate: false
+ xy: 2, 456
+ size: 576, 282
+ orig: 576, 282
+ offset: 0, 0
+ index: -1
+10213
+ rotate: false
+ xy: 2, 172
+ size: 576, 282
+ orig: 576, 282
+ offset: 0, 0
+ index: -1
+11886
+ rotate: false
+ xy: 580, 680
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+11891
+ rotate: false
+ xy: 580, 508
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+11894
+ rotate: false
+ xy: 580, 336
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+11902
+ rotate: false
+ xy: 580, 852
+ size: 422, 170
+ orig: 422, 170
+ offset: 0, 0
+ index: -1
+1473
+ rotate: false
+ xy: 1004, 982
+ size: 18, 40
+ orig: 18, 40
+ offset: 0, 0
+ index: -1
+17923
+ rotate: false
+ xy: 1002, 393
+ size: 17, 105
+ orig: 17, 105
+ offset: 0, 0
+ index: -1
+18278
+ rotate: false
+ xy: 2, 4
+ size: 368, 166
+ orig: 368, 166
+ offset: 0, 0
+ index: -1
+18279
+ rotate: false
+ xy: 372, 4
+ size: 368, 166
+ orig: 368, 166
+ offset: 0, 0
+ index: -1
+18404
+ rotate: false
+ xy: 742, 69
+ size: 280, 265
+ orig: 280, 265
+ offset: 0, 0
+ index: -1
+19602
+ rotate: false
+ xy: 580, 174
+ size: 160, 160
+ orig: 160, 160
+ offset: 0, 0
+ index: -1
+21792
+ rotate: false
+ xy: 1002, 696
+ size: 18, 26
+ orig: 18, 26
+ offset: 0, 0
+ index: -1
+21793
+ rotate: false
+ xy: 1002, 668
+ size: 18, 26
+ orig: 18, 26
+ offset: 0, 0
+ index: -1
+21794
+ rotate: false
+ xy: 1002, 640
+ size: 18, 26
+ orig: 18, 26
+ offset: 0, 0
+ index: -1
+21795
+ rotate: false
+ xy: 1002, 612
+ size: 18, 26
+ orig: 18, 26
+ offset: 0, 0
+ index: -1
+21796
+ rotate: false
+ xy: 1002, 584
+ size: 18, 26
+ orig: 18, 26
+ offset: 0, 0
+ index: -1
+21797
+ rotate: false
+ xy: 1002, 556
+ size: 18, 26
+ orig: 18, 26
+ offset: 0, 0
+ index: -1
+21798
+ rotate: false
+ xy: 1002, 528
+ size: 18, 26
+ orig: 18, 26
+ offset: 0, 0
+ index: -1
+21799
+ rotate: false
+ xy: 1002, 500
+ size: 18, 26
+ orig: 18, 26
+ offset: 0, 0
+ index: -1
+2337
+ rotate: false
+ xy: 1002, 341
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+23861
+ rotate: false
+ xy: 1002, 825
+ size: 20, 15
+ orig: 20, 15
+ offset: 0, 0
+ index: -1
+23938
+ rotate: false
+ xy: 1002, 808
+ size: 19, 15
+ orig: 19, 15
+ offset: 0, 0
+ index: -1
+57
+ rotate: false
+ xy: 894, 3
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+75
+ rotate: false
+ xy: 742, 2
+ size: 150, 65
+ orig: 150, 65
+ offset: 0, 0
+ index: -1
+851
+ rotate: false
+ xy: 1004, 954
+ size: 18, 26
+ orig: 18, 26
+ offset: 0, 0
+ index: -1
+852
+ rotate: false
+ xy: 1004, 926
+ size: 18, 26
+ orig: 18, 26
+ offset: 0, 0
+ index: -1
+853
+ rotate: false
+ xy: 1004, 898
+ size: 18, 26
+ orig: 18, 26
+ offset: 0, 0
+ index: -1
+854
+ rotate: false
+ xy: 1004, 870
+ size: 18, 26
+ orig: 18, 26
+ offset: 0, 0
+ index: -1
+855
+ rotate: false
+ xy: 1004, 842
+ size: 18, 26
+ orig: 18, 26
+ offset: 0, 0
+ index: -1
+856
+ rotate: false
+ xy: 1002, 780
+ size: 18, 26
+ orig: 18, 26
+ offset: 0, 0
+ index: -1
+857
+ rotate: false
+ xy: 1002, 752
+ size: 18, 26
+ orig: 18, 26
+ offset: 0, 0
+ index: -1
+858
+ rotate: false
+ xy: 1002, 724
+ size: 18, 26
+ orig: 18, 26
+ offset: 0, 0
+ index: -1
+
+images11.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10195
+ rotate: false
+ xy: 2, 506
+ size: 570, 232
+ orig: 570, 232
+ offset: 0, 0
+ index: -1
+10198
+ rotate: false
+ xy: 2, 272
+ size: 570, 232
+ orig: 570, 232
+ offset: 0, 0
+ index: -1
+10201
+ rotate: false
+ xy: 2, 38
+ size: 570, 232
+ orig: 570, 232
+ offset: 0, 0
+ index: -1
+10216
+ rotate: false
+ xy: 2, 740
+ size: 576, 282
+ orig: 576, 282
+ offset: 0, 0
+ index: -1
+11899
+ rotate: false
+ xy: 580, 852
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+11907
+ rotate: false
+ xy: 580, 680
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+12110
+ rotate: false
+ xy: 844, 643
+ size: 156, 35
+ orig: 156, 35
+ offset: 0, 0
+ index: -1
+127
+ rotate: false
+ xy: 658, 638
+ size: 60, 40
+ orig: 60, 40
+ offset: 0, 0
+ index: -1
+130
+ rotate: false
+ xy: 720, 638
+ size: 60, 40
+ orig: 60, 40
+ offset: 0, 0
+ index: -1
+132
+ rotate: false
+ xy: 782, 638
+ size: 60, 40
+ orig: 60, 40
+ offset: 0, 0
+ index: -1
+1463
+ rotate: false
+ xy: 961, 102
+ size: 61, 126
+ orig: 61, 126
+ offset: 0, 0
+ index: -1
+2173
+ rotate: false
+ xy: 1002, 950
+ size: 17, 72
+ orig: 17, 72
+ offset: 0, 0
+ index: -1
+22830
+ rotate: false
+ xy: 574, 158
+ size: 63, 70
+ orig: 63, 70
+ offset: 0, 0
+ index: -1
+22837
+ rotate: false
+ xy: 574, 86
+ size: 63, 70
+ orig: 63, 70
+ offset: 0, 0
+ index: -1
+2340
+ rotate: false
+ xy: 1002, 898
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+2635
+ rotate: false
+ xy: 1002, 846
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+2638
+ rotate: false
+ xy: 1002, 794
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+2686
+ rotate: false
+ xy: 574, 38
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2992
+ rotate: false
+ xy: 1002, 742
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+2995
+ rotate: false
+ xy: 1002, 690
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+2996
+ rotate: false
+ xy: 1002, 638
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3287
+ rotate: false
+ xy: 574, 536
+ size: 447, 100
+ orig: 447, 100
+ offset: 0, 0
+ index: -1
+3292
+ rotate: false
+ xy: 574, 434
+ size: 447, 100
+ orig: 447, 100
+ offset: 0, 0
+ index: -1
+3864
+ rotate: false
+ xy: 574, 332
+ size: 447, 100
+ orig: 447, 100
+ offset: 0, 0
+ index: -1
+3869
+ rotate: false
+ xy: 574, 230
+ size: 447, 100
+ orig: 447, 100
+ offset: 0, 0
+ index: -1
+5597
+ rotate: false
+ xy: 639, 4
+ size: 320, 224
+ orig: 320, 224
+ offset: 0, 0
+ index: -1
+6560
+ rotate: false
+ xy: 574, 638
+ size: 82, 40
+ orig: 82, 40
+ offset: 0, 0
+ index: -1
+6850
+ rotate: false
+ xy: 961, 2
+ size: 57, 98
+ orig: 57, 98
+ offset: 0, 0
+ index: -1
+9826
+ rotate: false
+ xy: 538, 3
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+9855
+ rotate: false
+ xy: 2, 3
+ size: 132, 33
+ orig: 132, 33
+ offset: 0, 0
+ index: -1
+9862
+ rotate: false
+ xy: 136, 3
+ size: 132, 33
+ orig: 132, 33
+ offset: 0, 0
+ index: -1
+9869
+ rotate: false
+ xy: 270, 3
+ size: 132, 33
+ orig: 132, 33
+ offset: 0, 0
+ index: -1
+9876
+ rotate: false
+ xy: 404, 3
+ size: 132, 33
+ orig: 132, 33
+ offset: 0, 0
+ index: -1
+
+images12.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10204
+ rotate: false
+ xy: 2, 790
+ size: 570, 232
+ orig: 570, 232
+ offset: 0, 0
+ index: -1
+10378
+ rotate: false
+ xy: 564, 275
+ size: 198, 94
+ orig: 198, 94
+ offset: 0, 0
+ index: -1
+11884
+ rotate: false
+ xy: 2, 274
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+11908
+ rotate: false
+ xy: 2, 446
+ size: 561, 170
+ orig: 561, 170
+ offset: 0, 0
+ index: -1
+11910
+ rotate: false
+ xy: 574, 852
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+11945
+ rotate: false
+ xy: 574, 680
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+11970
+ rotate: false
+ xy: 2, 618
+ size: 562, 170
+ orig: 562, 170
+ offset: 0, 0
+ index: -1
+174
+ rotate: false
+ xy: 824, 2
+ size: 192, 128
+ orig: 192, 128
+ offset: 0, 0
+ index: -1
+17761
+ rotate: false
+ xy: 824, 132
+ size: 198, 107
+ orig: 198, 107
+ offset: 0, 0
+ index: -1
+18235
+ rotate: false
+ xy: 566, 513
+ size: 451, 140
+ orig: 451, 140
+ offset: 0, 0
+ index: -1
+18241
+ rotate: false
+ xy: 565, 371
+ size: 451, 140
+ orig: 451, 140
+ offset: 0, 0
+ index: -1
+18406
+ rotate: false
+ xy: 2, 7
+ size: 280, 265
+ orig: 280, 265
+ offset: 0, 0
+ index: -1
+18409
+ rotate: false
+ xy: 284, 7
+ size: 280, 265
+ orig: 280, 265
+ offset: 0, 0
+ index: -1
+1947
+ rotate: false
+ xy: 996, 955
+ size: 26, 67
+ orig: 26, 67
+ offset: 0, 0
+ index: -1
+1953
+ rotate: false
+ xy: 996, 886
+ size: 26, 67
+ orig: 26, 67
+ offset: 0, 0
+ index: -1
+1959
+ rotate: false
+ xy: 996, 817
+ size: 26, 67
+ orig: 26, 67
+ offset: 0, 0
+ index: -1
+1964
+ rotate: false
+ xy: 996, 751
+ size: 26, 64
+ orig: 26, 64
+ offset: 0, 0
+ index: -1
+1994
+ rotate: false
+ xy: 764, 241
+ size: 258, 128
+ orig: 258, 128
+ offset: 0, 0
+ index: -1
+23803
+ rotate: false
+ xy: 907, 663
+ size: 86, 15
+ orig: 86, 15
+ offset: 0, 0
+ index: -1
+2387
+ rotate: false
+ xy: 764, 188
+ size: 56, 51
+ orig: 56, 51
+ offset: 0, 0
+ index: -1
+2685
+ rotate: false
+ xy: 996, 703
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2690
+ rotate: false
+ xy: 996, 655
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+4073
+ rotate: false
+ xy: 602, 658
+ size: 59, 20
+ orig: 59, 20
+ offset: 0, 0
+ index: -1
+4076
+ rotate: false
+ xy: 663, 658
+ size: 59, 20
+ orig: 59, 20
+ offset: 0, 0
+ index: -1
+4077
+ rotate: false
+ xy: 724, 658
+ size: 59, 20
+ orig: 59, 20
+ offset: 0, 0
+ index: -1
+4080
+ rotate: false
+ xy: 785, 658
+ size: 59, 20
+ orig: 59, 20
+ offset: 0, 0
+ index: -1
+4081
+ rotate: false
+ xy: 846, 658
+ size: 59, 20
+ orig: 59, 20
+ offset: 0, 0
+ index: -1
+4885
+ rotate: false
+ xy: 566, 2
+ size: 256, 184
+ orig: 256, 184
+ offset: 0, 0
+ index: -1
+4932
+ rotate: false
+ xy: 566, 655
+ size: 34, 23
+ orig: 34, 23
+ offset: 0, 0
+ index: -1
+7172
+ rotate: false
+ xy: 566, 188
+ size: 196, 85
+ orig: 196, 85
+ offset: 0, 0
+ index: -1
+
+images13.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+11885
+ rotate: false
+ xy: 2, 852
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+11892
+ rotate: false
+ xy: 2, 680
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+11893
+ rotate: false
+ xy: 2, 508
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+11900
+ rotate: false
+ xy: 2, 336
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+11901
+ rotate: false
+ xy: 2, 164
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+18234
+ rotate: false
+ xy: 564, 598
+ size: 450, 140
+ orig: 450, 140
+ offset: 0, 0
+ index: -1
+18240
+ rotate: false
+ xy: 564, 456
+ size: 450, 140
+ orig: 450, 140
+ offset: 0, 0
+ index: -1
+18246
+ rotate: false
+ xy: 564, 314
+ size: 450, 140
+ orig: 450, 140
+ offset: 0, 0
+ index: -1
+18247
+ rotate: false
+ xy: 564, 882
+ size: 451, 140
+ orig: 451, 140
+ offset: 0, 0
+ index: -1
+18253
+ rotate: false
+ xy: 564, 740
+ size: 451, 140
+ orig: 451, 140
+ offset: 0, 0
+ index: -1
+19604
+ rotate: false
+ xy: 504, 2
+ size: 480, 160
+ orig: 480, 160
+ offset: 0, 0
+ index: -1
+2255
+ rotate: false
+ xy: 986, 287
+ size: 36, 25
+ orig: 36, 25
+ offset: 0, 0
+ index: -1
+2257
+ rotate: false
+ xy: 986, 260
+ size: 36, 25
+ orig: 36, 25
+ offset: 0, 0
+ index: -1
+2259
+ rotate: false
+ xy: 986, 233
+ size: 36, 25
+ orig: 36, 25
+ offset: 0, 0
+ index: -1
+2261
+ rotate: false
+ xy: 986, 206
+ size: 36, 25
+ orig: 36, 25
+ offset: 0, 0
+ index: -1
+22904
+ rotate: false
+ xy: 819, 256
+ size: 165, 56
+ orig: 165, 56
+ offset: 0, 0
+ index: -1
+22905
+ rotate: false
+ xy: 819, 198
+ size: 165, 56
+ orig: 165, 56
+ offset: 0, 0
+ index: -1
+340
+ rotate: false
+ xy: 819, 164
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+4321
+ rotate: false
+ xy: 986, 179
+ size: 36, 25
+ orig: 36, 25
+ offset: 0, 0
+ index: -1
+4323
+ rotate: false
+ xy: 986, 152
+ size: 36, 25
+ orig: 36, 25
+ offset: 0, 0
+ index: -1
+4327
+ rotate: false
+ xy: 986, 125
+ size: 36, 25
+ orig: 36, 25
+ offset: 0, 0
+ index: -1
+4329
+ rotate: false
+ xy: 986, 98
+ size: 36, 25
+ orig: 36, 25
+ offset: 0, 0
+ index: -1
+4331
+ rotate: false
+ xy: 986, 71
+ size: 36, 25
+ orig: 36, 25
+ offset: 0, 0
+ index: -1
+4547
+ rotate: false
+ xy: 564, 166
+ size: 253, 146
+ orig: 253, 146
+ offset: 0, 0
+ index: -1
+468
+ rotate: false
+ xy: 986, 2
+ size: 32, 67
+ orig: 32, 67
+ offset: 0, 0
+ index: -1
+4934
+ rotate: false
+ xy: 2, 2
+ size: 500, 160
+ orig: 500, 160
+ offset: 0, 0
+ index: -1
+
+images14.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+11909
+ rotate: false
+ xy: 2, 852
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+11946
+ rotate: false
+ xy: 2, 680
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+11947
+ rotate: false
+ xy: 2, 508
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+11948
+ rotate: false
+ xy: 564, 710
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+11953
+ rotate: false
+ xy: 564, 538
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+11954
+ rotate: false
+ xy: 2, 336
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+11955
+ rotate: false
+ xy: 2, 164
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+11956
+ rotate: false
+ xy: 564, 366
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+11961
+ rotate: false
+ xy: 564, 194
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+12021
+ rotate: false
+ xy: 986, 828
+ size: 36, 25
+ orig: 36, 25
+ offset: 0, 0
+ index: -1
+12023
+ rotate: false
+ xy: 986, 801
+ size: 36, 25
+ orig: 36, 25
+ offset: 0, 0
+ index: -1
+12025
+ rotate: false
+ xy: 986, 774
+ size: 36, 25
+ orig: 36, 25
+ offset: 0, 0
+ index: -1
+12027
+ rotate: false
+ xy: 986, 747
+ size: 36, 25
+ orig: 36, 25
+ offset: 0, 0
+ index: -1
+14185
+ rotate: false
+ xy: 966, 2
+ size: 25, 124
+ orig: 25, 124
+ offset: 0, 0
+ index: -1
+17571
+ rotate: false
+ xy: 986, 692
+ size: 35, 53
+ orig: 35, 53
+ offset: 0, 0
+ index: -1
+17578
+ rotate: false
+ xy: 986, 637
+ size: 35, 53
+ orig: 35, 53
+ offset: 0, 0
+ index: -1
+17579
+ rotate: false
+ xy: 986, 582
+ size: 35, 53
+ orig: 35, 53
+ offset: 0, 0
+ index: -1
+17586
+ rotate: false
+ xy: 986, 527
+ size: 35, 53
+ orig: 35, 53
+ offset: 0, 0
+ index: -1
+17587
+ rotate: false
+ xy: 986, 472
+ size: 35, 53
+ orig: 35, 53
+ offset: 0, 0
+ index: -1
+17592
+ rotate: false
+ xy: 986, 417
+ size: 35, 53
+ orig: 35, 53
+ offset: 0, 0
+ index: -1
+18252
+ rotate: false
+ xy: 564, 882
+ size: 450, 140
+ orig: 450, 140
+ offset: 0, 0
+ index: -1
+1906
+ rotate: false
+ xy: 993, 75
+ size: 29, 51
+ orig: 29, 51
+ offset: 0, 0
+ index: -1
+19607
+ rotate: false
+ xy: 2, 2
+ size: 480, 160
+ orig: 480, 160
+ offset: 0, 0
+ index: -1
+19612
+ rotate: false
+ xy: 484, 2
+ size: 480, 160
+ orig: 480, 160
+ offset: 0, 0
+ index: -1
+1968
+ rotate: false
+ xy: 966, 128
+ size: 56, 64
+ orig: 56, 64
+ offset: 0, 0
+ index: -1
+21804
+ rotate: false
+ xy: 916, 164
+ size: 43, 28
+ orig: 43, 28
+ offset: 0, 0
+ index: -1
+21805
+ rotate: false
+ xy: 564, 164
+ size: 86, 28
+ orig: 86, 28
+ offset: 0, 0
+ index: -1
+21806
+ rotate: false
+ xy: 652, 164
+ size: 86, 28
+ orig: 86, 28
+ offset: 0, 0
+ index: -1
+21809
+ rotate: false
+ xy: 740, 164
+ size: 86, 28
+ orig: 86, 28
+ offset: 0, 0
+ index: -1
+21810
+ rotate: false
+ xy: 828, 164
+ size: 86, 28
+ orig: 86, 28
+ offset: 0, 0
+ index: -1
+2242
+ rotate: false
+ xy: 993, 41
+ size: 29, 32
+ orig: 29, 32
+ offset: 0, 0
+ index: -1
+2244
+ rotate: false
+ xy: 993, 7
+ size: 29, 32
+ orig: 29, 32
+ offset: 0, 0
+ index: -1
+2450
+ rotate: false
+ xy: 986, 367
+ size: 35, 48
+ orig: 35, 48
+ offset: 0, 0
+ index: -1
+2452
+ rotate: false
+ xy: 986, 317
+ size: 35, 48
+ orig: 35, 48
+ offset: 0, 0
+ index: -1
+38
+ rotate: false
+ xy: 986, 280
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+4335
+ rotate: false
+ xy: 986, 855
+ size: 36, 25
+ orig: 36, 25
+ offset: 0, 0
+ index: -1
+48
+ rotate: false
+ xy: 986, 243
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+8457
+ rotate: false
+ xy: 986, 194
+ size: 32, 47
+ orig: 32, 47
+ offset: 0, 0
+ index: -1
+
+images15.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+11962
+ rotate: false
+ xy: 2, 852
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+11963
+ rotate: false
+ xy: 2, 680
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+11964
+ rotate: false
+ xy: 564, 852
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+11969
+ rotate: false
+ xy: 564, 680
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+11971
+ rotate: false
+ xy: 282, 508
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+12666
+ rotate: false
+ xy: 279, 336
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+12667
+ rotate: false
+ xy: 279, 164
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+12720
+ rotate: false
+ xy: 986, 987
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+12721
+ rotate: false
+ xy: 986, 950
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+12722
+ rotate: false
+ xy: 986, 913
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+18403
+ rotate: false
+ xy: 844, 413
+ size: 140, 265
+ orig: 140, 265
+ offset: 0, 0
+ index: -1
+19615
+ rotate: false
+ xy: 260, 2
+ size: 480, 160
+ orig: 480, 160
+ offset: 0, 0
+ index: -1
+20073
+ rotate: false
+ xy: 250, 654
+ size: 30, 24
+ orig: 30, 24
+ offset: 0, 0
+ index: -1
+20074
+ rotate: false
+ xy: 2, 654
+ size: 60, 24
+ orig: 60, 24
+ offset: 0, 0
+ index: -1
+20077
+ rotate: false
+ xy: 64, 654
+ size: 60, 24
+ orig: 60, 24
+ offset: 0, 0
+ index: -1
+20080
+ rotate: false
+ xy: 126, 654
+ size: 60, 24
+ orig: 60, 24
+ offset: 0, 0
+ index: -1
+20083
+ rotate: false
+ xy: 188, 654
+ size: 60, 24
+ orig: 60, 24
+ offset: 0, 0
+ index: -1
+2122
+ rotate: false
+ xy: 957, 48
+ size: 65, 99
+ orig: 65, 99
+ offset: 0, 0
+ index: -1
+21895
+ rotate: false
+ xy: 986, 876
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+21900
+ rotate: false
+ xy: 986, 839
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+21901
+ rotate: false
+ xy: 986, 802
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+21906
+ rotate: false
+ xy: 986, 765
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+21907
+ rotate: false
+ xy: 986, 728
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+21912
+ rotate: false
+ xy: 986, 691
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+21913
+ rotate: false
+ xy: 986, 654
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+21918
+ rotate: false
+ xy: 986, 617
+ size: 35, 35
+ orig: 35, 35
+ offset: 0, 0
+ index: -1
+238
+ rotate: false
+ xy: 810, 2
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+23840
+ rotate: false
+ xy: 986, 413
+ size: 35, 15
+ orig: 35, 15
+ offset: 0, 0
+ index: -1
+2999
+ rotate: false
+ xy: 260, 602
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3000
+ rotate: false
+ xy: 260, 550
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3003
+ rotate: false
+ xy: 260, 498
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3004
+ rotate: false
+ xy: 260, 446
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3007
+ rotate: false
+ xy: 260, 394
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3008
+ rotate: false
+ xy: 260, 342
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3011
+ rotate: false
+ xy: 260, 290
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3012
+ rotate: false
+ xy: 260, 238
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3015
+ rotate: false
+ xy: 260, 186
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+36
+ rotate: false
+ xy: 986, 583
+ size: 35, 32
+ orig: 35, 32
+ offset: 0, 0
+ index: -1
+37
+ rotate: false
+ xy: 986, 549
+ size: 35, 32
+ orig: 35, 32
+ offset: 0, 0
+ index: -1
+4325
+ rotate: false
+ xy: 986, 457
+ size: 35, 25
+ orig: 35, 25
+ offset: 0, 0
+ index: -1
+4333
+ rotate: false
+ xy: 986, 430
+ size: 35, 25
+ orig: 35, 25
+ offset: 0, 0
+ index: -1
+51
+ rotate: false
+ xy: 986, 484
+ size: 35, 30
+ orig: 35, 30
+ offset: 0, 0
+ index: -1
+7224
+ rotate: false
+ xy: 2, 332
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+7225
+ rotate: false
+ xy: 2, 10
+ size: 256, 320
+ orig: 256, 320
+ offset: 0, 0
+ index: -1
+7232
+ rotate: false
+ xy: 742, 2
+ size: 32, 160
+ orig: 32, 160
+ offset: 0, 0
+ index: -1
+7282
+ rotate: false
+ xy: 776, 2
+ size: 32, 160
+ orig: 32, 160
+ offset: 0, 0
+ index: -1
+741
+ rotate: false
+ xy: 986, 516
+ size: 35, 31
+ orig: 35, 31
+ offset: 0, 0
+ index: -1
+81
+ rotate: false
+ xy: 260, 168
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+812
+ rotate: false
+ xy: 841, 347
+ size: 181, 64
+ orig: 181, 64
+ offset: 0, 0
+ index: -1
+821
+ rotate: false
+ xy: 841, 281
+ size: 181, 64
+ orig: 181, 64
+ offset: 0, 0
+ index: -1
+830
+ rotate: false
+ xy: 841, 215
+ size: 181, 64
+ orig: 181, 64
+ offset: 0, 0
+ index: -1
+839
+ rotate: false
+ xy: 841, 149
+ size: 181, 64
+ orig: 181, 64
+ offset: 0, 0
+ index: -1
+874
+ rotate: false
+ xy: 957, 2
+ size: 64, 44
+ orig: 64, 44
+ offset: 0, 0
+ index: -1
+
+images16.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+11972
+ rotate: false
+ xy: 564, 852
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+12075
+ rotate: false
+ xy: 301, 2
+ size: 108, 52
+ orig: 108, 52
+ offset: 0, 0
+ index: -1
+12076
+ rotate: false
+ xy: 411, 2
+ size: 108, 52
+ orig: 108, 52
+ offset: 0, 0
+ index: -1
+12083
+ rotate: false
+ xy: 521, 2
+ size: 108, 52
+ orig: 108, 52
+ offset: 0, 0
+ index: -1
+12084
+ rotate: false
+ xy: 631, 2
+ size: 108, 52
+ orig: 108, 52
+ offset: 0, 0
+ index: -1
+12091
+ rotate: false
+ xy: 741, 2
+ size: 108, 52
+ orig: 108, 52
+ offset: 0, 0
+ index: -1
+12665
+ rotate: false
+ xy: 564, 680
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+12674
+ rotate: false
+ xy: 2, 852
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+12675
+ rotate: false
+ xy: 2, 680
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+1499
+ rotate: false
+ xy: 986, 935
+ size: 34, 87
+ orig: 34, 87
+ offset: 0, 0
+ index: -1
+18232
+ rotate: false
+ xy: 872, 216
+ size: 150, 140
+ orig: 150, 140
+ offset: 0, 0
+ index: -1
+18238
+ rotate: false
+ xy: 872, 74
+ size: 150, 140
+ orig: 150, 140
+ offset: 0, 0
+ index: -1
+18268
+ rotate: false
+ xy: 2, 356
+ size: 73, 302
+ orig: 73, 302
+ offset: 0, 0
+ index: -1
+1907
+ rotate: false
+ xy: 851, 3
+ size: 16, 51
+ orig: 16, 51
+ offset: 0, 0
+ index: -1
+19660
+ rotate: false
+ xy: 2, 54
+ size: 288, 300
+ orig: 288, 300
+ offset: 0, 0
+ index: -1
+19662
+ rotate: false
+ xy: 77, 358
+ size: 288, 300
+ orig: 288, 300
+ offset: 0, 0
+ index: -1
+19663
+ rotate: false
+ xy: 292, 56
+ size: 288, 300
+ orig: 288, 300
+ offset: 0, 0
+ index: -1
+19665
+ rotate: false
+ xy: 367, 358
+ size: 288, 300
+ orig: 288, 300
+ offset: 0, 0
+ index: -1
+19666
+ rotate: false
+ xy: 582, 56
+ size: 288, 300
+ orig: 288, 300
+ offset: 0, 0
+ index: -1
+19668
+ rotate: false
+ xy: 657, 358
+ size: 288, 300
+ orig: 288, 300
+ offset: 0, 0
+ index: -1
+19717
+ rotate: false
+ xy: 576, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+19718
+ rotate: false
+ xy: 612, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+19721
+ rotate: false
+ xy: 648, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+19722
+ rotate: false
+ xy: 684, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+20063
+ rotate: false
+ xy: 720, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+20064
+ rotate: false
+ xy: 756, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+20075
+ rotate: false
+ xy: 947, 358
+ size: 30, 24
+ orig: 30, 24
+ offset: 0, 0
+ index: -1
+20235
+ rotate: false
+ xy: 792, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+20236
+ rotate: false
+ xy: 828, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+2338
+ rotate: false
+ xy: 986, 816
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+2339
+ rotate: false
+ xy: 986, 764
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+23747
+ rotate: false
+ xy: 864, 663
+ size: 120, 15
+ orig: 120, 15
+ offset: 0, 0
+ index: -1
+23815
+ rotate: false
+ xy: 979, 367
+ size: 43, 15
+ orig: 43, 15
+ offset: 0, 0
+ index: -1
+2636
+ rotate: false
+ xy: 986, 712
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+2637
+ rotate: false
+ xy: 986, 660
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+2845
+ rotate: false
+ xy: 2, 2
+ size: 297, 50
+ orig: 297, 50
+ offset: 0, 0
+ index: -1
+3110
+ rotate: false
+ xy: 216, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+3111
+ rotate: false
+ xy: 252, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+400
+ rotate: false
+ xy: 144, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+401
+ rotate: false
+ xy: 180, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+4312
+ rotate: false
+ xy: 288, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+4314
+ rotate: false
+ xy: 324, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+4317
+ rotate: false
+ xy: 360, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+4318
+ rotate: false
+ xy: 396, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+4695
+ rotate: false
+ xy: 432, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+4696
+ rotate: false
+ xy: 468, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+4874
+ rotate: false
+ xy: 2, 660
+ size: 33, 18
+ orig: 33, 18
+ offset: 0, 0
+ index: -1
+4875
+ rotate: false
+ xy: 37, 660
+ size: 33, 18
+ orig: 33, 18
+ offset: 0, 0
+ index: -1
+534
+ rotate: false
+ xy: 986, 868
+ size: 34, 65
+ orig: 34, 65
+ offset: 0, 0
+ index: -1
+70
+ rotate: false
+ xy: 872, 2
+ size: 150, 70
+ orig: 150, 70
+ offset: 0, 0
+ index: -1
+82
+ rotate: false
+ xy: 72, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+83
+ rotate: false
+ xy: 108, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+9521
+ rotate: false
+ xy: 504, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+9522
+ rotate: false
+ xy: 540, 662
+ size: 34, 16
+ orig: 34, 16
+ offset: 0, 0
+ index: -1
+9560
+ rotate: false
+ xy: 947, 568
+ size: 75, 90
+ orig: 75, 90
+ offset: 0, 0
+ index: -1
+9561
+ rotate: false
+ xy: 947, 476
+ size: 75, 90
+ orig: 75, 90
+ offset: 0, 0
+ index: -1
+9562
+ rotate: false
+ xy: 947, 384
+ size: 75, 90
+ orig: 75, 90
+ offset: 0, 0
+ index: -1
+
+images17.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+101
+ rotate: false
+ xy: 894, 353
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+102
+ rotate: false
+ xy: 894, 223
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12074
+ rotate: false
+ xy: 332, 2
+ size: 81, 52
+ orig: 81, 52
+ offset: 0, 0
+ index: -1
+12077
+ rotate: false
+ xy: 415, 2
+ size: 81, 52
+ orig: 81, 52
+ offset: 0, 0
+ index: -1
+12078
+ rotate: false
+ xy: 830, 2
+ size: 54, 52
+ orig: 54, 52
+ offset: 0, 0
+ index: -1
+12082
+ rotate: false
+ xy: 498, 2
+ size: 81, 52
+ orig: 81, 52
+ offset: 0, 0
+ index: -1
+12085
+ rotate: false
+ xy: 581, 2
+ size: 81, 52
+ orig: 81, 52
+ offset: 0, 0
+ index: -1
+12090
+ rotate: false
+ xy: 664, 2
+ size: 81, 52
+ orig: 81, 52
+ offset: 0, 0
+ index: -1
+12092
+ rotate: false
+ xy: 2, 2
+ size: 108, 52
+ orig: 108, 52
+ offset: 0, 0
+ index: -1
+12093
+ rotate: false
+ xy: 747, 2
+ size: 81, 52
+ orig: 81, 52
+ offset: 0, 0
+ index: -1
+12099
+ rotate: false
+ xy: 112, 2
+ size: 108, 52
+ orig: 108, 52
+ offset: 0, 0
+ index: -1
+12100
+ rotate: false
+ xy: 222, 2
+ size: 108, 52
+ orig: 108, 52
+ offset: 0, 0
+ index: -1
+12668
+ rotate: false
+ xy: 564, 852
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+12673
+ rotate: false
+ xy: 564, 680
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+12682
+ rotate: false
+ xy: 2, 852
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+12683
+ rotate: false
+ xy: 2, 680
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+12690
+ rotate: false
+ xy: 332, 508
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+12691
+ rotate: false
+ xy: 332, 336
+ size: 560, 170
+ orig: 560, 170
+ offset: 0, 0
+ index: -1
+18826
+ rotate: false
+ xy: 600, 288
+ size: 100, 46
+ orig: 100, 46
+ offset: 0, 0
+ index: -1
+18827
+ rotate: false
+ xy: 702, 288
+ size: 100, 46
+ orig: 100, 46
+ offset: 0, 0
+ index: -1
+19415
+ rotate: false
+ xy: 292, 56
+ size: 129, 230
+ orig: 129, 230
+ offset: 0, 0
+ index: -1
+19669
+ rotate: false
+ xy: 2, 358
+ size: 288, 300
+ orig: 288, 300
+ offset: 0, 0
+ index: -1
+19671
+ rotate: false
+ xy: 2, 56
+ size: 288, 300
+ orig: 288, 300
+ offset: 0, 0
+ index: -1
+19716
+ rotate: false
+ xy: 268, 662
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+19719
+ rotate: false
+ xy: 287, 662
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+1993
+ rotate: false
+ xy: 893, 93
+ size: 129, 128
+ orig: 129, 128
+ offset: 0, 0
+ index: -1
+2172
+ rotate: false
+ xy: 306, 578
+ size: 24, 100
+ orig: 24, 100
+ offset: 0, 0
+ index: -1
+21872
+ rotate: false
+ xy: 804, 288
+ size: 88, 46
+ orig: 88, 46
+ offset: 0, 0
+ index: -1
+21883
+ rotate: false
+ xy: 332, 288
+ size: 132, 46
+ orig: 132, 46
+ offset: 0, 0
+ index: -1
+21888
+ rotate: false
+ xy: 466, 288
+ size: 132, 46
+ orig: 132, 46
+ offset: 0, 0
+ index: -1
+23666
+ rotate: false
+ xy: 423, 172
+ size: 468, 114
+ orig: 468, 114
+ offset: 0, 0
+ index: -1
+23669
+ rotate: false
+ xy: 423, 56
+ size: 468, 114
+ orig: 468, 114
+ offset: 0, 0
+ index: -1
+23768
+ rotate: false
+ xy: 947, 10
+ size: 74, 15
+ orig: 74, 15
+ offset: 0, 0
+ index: -1
+23880
+ rotate: false
+ xy: 894, 663
+ size: 90, 15
+ orig: 90, 15
+ offset: 0, 0
+ index: -1
+2993
+ rotate: false
+ xy: 986, 972
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+2994
+ rotate: false
+ xy: 986, 920
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+2997
+ rotate: false
+ xy: 986, 868
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+2998
+ rotate: false
+ xy: 986, 816
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3001
+ rotate: false
+ xy: 986, 764
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3002
+ rotate: false
+ xy: 986, 712
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3005
+ rotate: false
+ xy: 986, 660
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3109
+ rotate: false
+ xy: 59, 662
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+3112
+ rotate: false
+ xy: 78, 662
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+3309
+ rotate: false
+ xy: 97, 662
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+399
+ rotate: false
+ xy: 21, 662
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+402
+ rotate: false
+ xy: 40, 662
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+4084
+ rotate: false
+ xy: 886, 5
+ size: 59, 20
+ orig: 59, 20
+ offset: 0, 0
+ index: -1
+4311
+ rotate: false
+ xy: 116, 662
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+4315
+ rotate: false
+ xy: 135, 662
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+4316
+ rotate: false
+ xy: 154, 662
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+4319
+ rotate: false
+ xy: 173, 662
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+4694
+ rotate: false
+ xy: 192, 662
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+4697
+ rotate: false
+ xy: 211, 662
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+5754
+ rotate: false
+ xy: 894, 483
+ size: 128, 175
+ orig: 128, 175
+ offset: 0, 0
+ index: -1
+663
+ rotate: false
+ xy: 893, 27
+ size: 129, 64
+ orig: 129, 64
+ offset: 0, 0
+ index: -1
+7010
+ rotate: false
+ xy: 292, 520
+ size: 38, 56
+ orig: 38, 56
+ offset: 0, 0
+ index: -1
+7015
+ rotate: false
+ xy: 292, 462
+ size: 38, 56
+ orig: 38, 56
+ offset: 0, 0
+ index: -1
+7017
+ rotate: false
+ xy: 292, 404
+ size: 38, 56
+ orig: 38, 56
+ offset: 0, 0
+ index: -1
+7022
+ rotate: false
+ xy: 292, 346
+ size: 38, 56
+ orig: 38, 56
+ offset: 0, 0
+ index: -1
+7024
+ rotate: false
+ xy: 292, 288
+ size: 38, 56
+ orig: 38, 56
+ offset: 0, 0
+ index: -1
+84
+ rotate: false
+ xy: 2, 662
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+9520
+ rotate: false
+ xy: 230, 662
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+9523
+ rotate: false
+ xy: 249, 662
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+
+images18.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+12676
+ rotate: false
+ xy: 563, 852
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+12681
+ rotate: false
+ xy: 563, 680
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+12684
+ rotate: false
+ xy: 563, 508
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+12689
+ rotate: false
+ xy: 563, 336
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+12692
+ rotate: false
+ xy: 563, 164
+ size: 420, 170
+ orig: 420, 170
+ offset: 0, 0
+ index: -1
+12716
+ rotate: false
+ xy: 306, 263
+ size: 54, 43
+ orig: 54, 43
+ offset: 0, 0
+ index: -1
+12717
+ rotate: false
+ xy: 362, 263
+ size: 51, 43
+ orig: 51, 43
+ offset: 0, 0
+ index: -1
+13912
+ rotate: false
+ xy: 985, 796
+ size: 37, 38
+ orig: 37, 38
+ offset: 0, 0
+ index: -1
+13917
+ rotate: false
+ xy: 985, 756
+ size: 37, 38
+ orig: 37, 38
+ offset: 0, 0
+ index: -1
+13918
+ rotate: false
+ xy: 985, 716
+ size: 37, 38
+ orig: 37, 38
+ offset: 0, 0
+ index: -1
+13923
+ rotate: false
+ xy: 985, 676
+ size: 37, 38
+ orig: 37, 38
+ offset: 0, 0
+ index: -1
+14184
+ rotate: false
+ xy: 536, 491
+ size: 25, 123
+ orig: 25, 123
+ offset: 0, 0
+ index: -1
+1483
+ rotate: false
+ xy: 415, 263
+ size: 50, 43
+ orig: 50, 43
+ offset: 0, 0
+ index: -1
+1484
+ rotate: false
+ xy: 985, 878
+ size: 37, 40
+ orig: 37, 40
+ offset: 0, 0
+ index: -1
+1486
+ rotate: false
+ xy: 985, 836
+ size: 37, 40
+ orig: 37, 40
+ offset: 0, 0
+ index: -1
+1488
+ rotate: false
+ xy: 985, 639
+ size: 37, 35
+ orig: 37, 35
+ offset: 0, 0
+ index: -1
+1489
+ rotate: false
+ xy: 985, 602
+ size: 37, 35
+ orig: 37, 35
+ offset: 0, 0
+ index: -1
+17924
+ rotate: false
+ xy: 985, 167
+ size: 16, 105
+ orig: 16, 105
+ offset: 0, 0
+ index: -1
+1939
+ rotate: false
+ xy: 985, 969
+ size: 37, 53
+ orig: 37, 53
+ offset: 0, 0
+ index: -1
+19620
+ rotate: false
+ xy: 2, 2
+ size: 480, 160
+ orig: 480, 160
+ offset: 0, 0
+ index: -1
+19623
+ rotate: false
+ xy: 484, 2
+ size: 480, 160
+ orig: 480, 160
+ offset: 0, 0
+ index: -1
+19634
+ rotate: false
+ xy: 536, 325
+ size: 25, 60
+ orig: 25, 60
+ offset: 0, 0
+ index: -1
+19639
+ rotate: false
+ xy: 536, 263
+ size: 25, 60
+ orig: 25, 60
+ offset: 0, 0
+ index: -1
+2120
+ rotate: false
+ xy: 306, 164
+ size: 195, 97
+ orig: 195, 97
+ offset: 0, 0
+ index: -1
+2185
+ rotate: false
+ xy: 503, 167
+ size: 58, 35
+ orig: 58, 35
+ offset: 0, 0
+ index: -1
+22068
+ rotate: false
+ xy: 2, 358
+ size: 532, 256
+ orig: 532, 256
+ offset: 0, 0
+ index: -1
+23833
+ rotate: false
+ xy: 985, 551
+ size: 37, 15
+ orig: 37, 15
+ offset: 0, 0
+ index: -1
+2392
+ rotate: false
+ xy: 966, 111
+ size: 56, 51
+ orig: 56, 51
+ offset: 0, 0
+ index: -1
+23941
+ rotate: false
+ xy: 985, 534
+ size: 37, 15
+ orig: 37, 15
+ offset: 0, 0
+ index: -1
+2395
+ rotate: false
+ xy: 966, 58
+ size: 56, 51
+ orig: 56, 51
+ offset: 0, 0
+ index: -1
+2400
+ rotate: false
+ xy: 966, 5
+ size: 56, 51
+ orig: 56, 51
+ offset: 0, 0
+ index: -1
+2628
+ rotate: false
+ xy: 503, 204
+ size: 58, 57
+ orig: 58, 57
+ offset: 0, 0
+ index: -1
+2639
+ rotate: false
+ xy: 536, 387
+ size: 25, 102
+ orig: 25, 102
+ offset: 0, 0
+ index: -1
+266
+ rotate: false
+ xy: 519, 291
+ size: 15, 15
+ orig: 15, 15
+ offset: 0, 0
+ index: -1
+273
+ rotate: false
+ xy: 519, 274
+ size: 15, 15
+ orig: 15, 15
+ offset: 0, 0
+ index: -1
+3006
+ rotate: false
+ xy: 985, 482
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3009
+ rotate: false
+ xy: 985, 430
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3010
+ rotate: false
+ xy: 985, 378
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3013
+ rotate: false
+ xy: 985, 326
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3014
+ rotate: false
+ xy: 985, 274
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3016
+ rotate: false
+ xy: 1003, 222
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3019
+ rotate: false
+ xy: 1003, 170
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+311
+ rotate: false
+ xy: 985, 568
+ size: 37, 32
+ orig: 37, 32
+ offset: 0, 0
+ index: -1
+3289
+ rotate: false
+ xy: 2, 922
+ size: 559, 100
+ orig: 559, 100
+ offset: 0, 0
+ index: -1
+3290
+ rotate: false
+ xy: 2, 820
+ size: 559, 100
+ orig: 559, 100
+ offset: 0, 0
+ index: -1
+3866
+ rotate: false
+ xy: 2, 718
+ size: 559, 100
+ orig: 559, 100
+ offset: 0, 0
+ index: -1
+3867
+ rotate: false
+ xy: 2, 616
+ size: 559, 100
+ orig: 559, 100
+ offset: 0, 0
+ index: -1
+4600
+ rotate: false
+ xy: 208, 164
+ size: 96, 192
+ orig: 96, 192
+ offset: 0, 0
+ index: -1
+4881
+ rotate: false
+ xy: 467, 263
+ size: 50, 43
+ orig: 50, 43
+ offset: 0, 0
+ index: -1
+5762
+ rotate: false
+ xy: 985, 920
+ size: 37, 47
+ orig: 37, 47
+ offset: 0, 0
+ index: -1
+8524
+ rotate: false
+ xy: 306, 308
+ size: 228, 48
+ orig: 228, 48
+ offset: 0, 0
+ index: -1
+9205
+ rotate: false
+ xy: 2, 164
+ size: 204, 192
+ orig: 204, 192
+ offset: 0, 0
+ index: -1
+
+images19.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+1017
+ rotate: false
+ xy: 1003, 650
+ size: 17, 28
+ orig: 17, 28
+ offset: 0, 0
+ index: -1
+1350
+ rotate: false
+ xy: 797, 836
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1354
+ rotate: false
+ xy: 793, 2
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+176
+ rotate: false
+ xy: 826, 503
+ size: 192, 128
+ orig: 192, 128
+ offset: 0, 0
+ index: -1
+18269
+ rotate: false
+ xy: 324, 7
+ size: 145, 285
+ orig: 145, 285
+ offset: 0, 0
+ index: -1
+18996
+ rotate: false
+ xy: 324, 294
+ size: 403, 209
+ orig: 403, 209
+ offset: 0, 0
+ index: -1
+19474
+ rotate: false
+ xy: 390, 802
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19481
+ rotate: false
+ xy: 390, 682
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19672
+ rotate: false
+ xy: 507, 722
+ size: 288, 300
+ orig: 288, 300
+ offset: 0, 0
+ index: -1
+19715
+ rotate: false
+ xy: 2, 496
+ size: 320, 182
+ orig: 320, 182
+ offset: 0, 0
+ index: -1
+19720
+ rotate: false
+ xy: 2, 4
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+19723
+ rotate: false
+ xy: 21, 4
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+20062
+ rotate: false
+ xy: 40, 4
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+20065
+ rotate: false
+ xy: 59, 4
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+20234
+ rotate: false
+ xy: 78, 4
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+20237
+ rotate: false
+ xy: 97, 4
+ size: 17, 16
+ orig: 17, 16
+ offset: 0, 0
+ index: -1
+21950
+ rotate: false
+ xy: 568, 632
+ size: 52, 20
+ orig: 52, 20
+ offset: 0, 0
+ index: -1
+21954
+ rotate: false
+ xy: 622, 632
+ size: 52, 20
+ orig: 52, 20
+ offset: 0, 0
+ index: -1
+21958
+ rotate: false
+ xy: 676, 632
+ size: 52, 20
+ orig: 52, 20
+ offset: 0, 0
+ index: -1
+22869
+ rotate: false
+ xy: 324, 505
+ size: 500, 125
+ orig: 500, 125
+ offset: 0, 0
+ index: -1
+23755
+ rotate: false
+ xy: 250, 5
+ size: 72, 15
+ orig: 72, 15
+ offset: 0, 0
+ index: -1
+23763
+ rotate: false
+ xy: 1003, 633
+ size: 17, 15
+ orig: 17, 15
+ offset: 0, 0
+ index: -1
+23774
+ rotate: false
+ xy: 116, 5
+ size: 132, 15
+ orig: 132, 15
+ offset: 0, 0
+ index: -1
+23906
+ rotate: false
+ xy: 730, 637
+ size: 65, 15
+ orig: 65, 15
+ offset: 0, 0
+ index: -1
+279
+ rotate: false
+ xy: 2, 324
+ size: 320, 170
+ orig: 320, 170
+ offset: 0, 0
+ index: -1
+282
+ rotate: false
+ xy: 2, 152
+ size: 320, 170
+ orig: 320, 170
+ offset: 0, 0
+ index: -1
+3020
+ rotate: false
+ xy: 1003, 784
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3023
+ rotate: false
+ xy: 1003, 732
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3024
+ rotate: false
+ xy: 1003, 680
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3027
+ rotate: false
+ xy: 1005, 36
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3283
+ rotate: false
+ xy: 797, 922
+ size: 223, 100
+ orig: 223, 100
+ offset: 0, 0
+ index: -1
+3291
+ rotate: false
+ xy: 2, 922
+ size: 503, 100
+ orig: 503, 100
+ offset: 0, 0
+ index: -1
+394
+ rotate: false
+ xy: 729, 36
+ size: 274, 50
+ orig: 274, 50
+ offset: 0, 0
+ index: -1
+395
+ rotate: false
+ xy: 797, 870
+ size: 224, 50
+ orig: 224, 50
+ offset: 0, 0
+ index: -1
+4085
+ rotate: false
+ xy: 507, 632
+ size: 59, 20
+ orig: 59, 20
+ offset: 0, 0
+ index: -1
+445
+ rotate: false
+ xy: 390, 632
+ size: 115, 48
+ orig: 115, 48
+ offset: 0, 0
+ index: -1
+4864
+ rotate: false
+ xy: 729, 88
+ size: 290, 197
+ orig: 290, 197
+ offset: 0, 0
+ index: -1
+4868
+ rotate: false
+ xy: 729, 287
+ size: 290, 214
+ orig: 290, 214
+ offset: 0, 0
+ index: -1
+4908
+ rotate: false
+ xy: 507, 688
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+4987
+ rotate: false
+ xy: 2, 680
+ size: 320, 240
+ orig: 320, 240
+ offset: 0, 0
+ index: -1
+5752
+ rotate: false
+ xy: 324, 632
+ size: 64, 288
+ orig: 64, 288
+ offset: 0, 0
+ index: -1
+643
+ rotate: false
+ xy: 471, 36
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+7198
+ rotate: false
+ xy: 2, 22
+ size: 320, 128
+ orig: 320, 128
+ offset: 0, 0
+ index: -1
+8702
+ rotate: false
+ xy: 507, 654
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8703
+ rotate: false
+ xy: 471, 2
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+9219
+ rotate: false
+ xy: 797, 633
+ size: 204, 201
+ orig: 204, 201
+ offset: 0, 0
+ index: -1
+
+images20.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+12157
+ rotate: false
+ xy: 776, 158
+ size: 245, 75
+ orig: 245, 75
+ offset: 0, 0
+ index: -1
+12159
+ rotate: false
+ xy: 776, 81
+ size: 245, 75
+ orig: 245, 75
+ offset: 0, 0
+ index: -1
+1358
+ rotate: false
+ xy: 292, 761
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1362
+ rotate: false
+ xy: 292, 727
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1365
+ rotate: false
+ xy: 292, 693
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1369
+ rotate: false
+ xy: 292, 659
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1373
+ rotate: false
+ xy: 292, 625
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1377
+ rotate: false
+ xy: 292, 591
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1414
+ rotate: false
+ xy: 292, 557
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1418
+ rotate: false
+ xy: 292, 523
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1422
+ rotate: false
+ xy: 292, 489
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1426
+ rotate: false
+ xy: 292, 455
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1429
+ rotate: false
+ xy: 292, 421
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1433
+ rotate: false
+ xy: 292, 387
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1460
+ rotate: false
+ xy: 367, 193
+ size: 64, 192
+ orig: 64, 192
+ offset: 0, 0
+ index: -1
+1501
+ rotate: false
+ xy: 564, 191
+ size: 70, 42
+ orig: 70, 42
+ offset: 0, 0
+ index: -1
+17943
+ rotate: false
+ xy: 492, 235
+ size: 24, 56
+ orig: 24, 56
+ offset: 0, 0
+ index: -1
+1912
+ rotate: false
+ xy: 1006, 870
+ size: 16, 50
+ orig: 16, 50
+ offset: 0, 0
+ index: -1
+19674
+ rotate: false
+ xy: 2, 493
+ size: 288, 300
+ orig: 288, 300
+ offset: 0, 0
+ index: -1
+19675
+ rotate: false
+ xy: 2, 191
+ size: 288, 300
+ orig: 288, 300
+ offset: 0, 0
+ index: -1
+20170
+ rotate: false
+ xy: 292, 192
+ size: 73, 193
+ orig: 73, 193
+ offset: 0, 0
+ index: -1
+21852
+ rotate: false
+ xy: 636, 191
+ size: 68, 42
+ orig: 68, 42
+ offset: 0, 0
+ index: -1
+21853
+ rotate: false
+ xy: 706, 191
+ size: 68, 42
+ orig: 68, 42
+ offset: 0, 0
+ index: -1
+22870
+ rotate: false
+ xy: 2, 795
+ size: 500, 125
+ orig: 500, 125
+ offset: 0, 0
+ index: -1
+22877
+ rotate: false
+ xy: 504, 795
+ size: 500, 125
+ orig: 500, 125
+ offset: 0, 0
+ index: -1
+22878
+ rotate: false
+ xy: 518, 668
+ size: 500, 125
+ orig: 500, 125
+ offset: 0, 0
+ index: -1
+22885
+ rotate: false
+ xy: 518, 541
+ size: 500, 125
+ orig: 500, 125
+ offset: 0, 0
+ index: -1
+22886
+ rotate: false
+ xy: 518, 414
+ size: 500, 125
+ orig: 500, 125
+ offset: 0, 0
+ index: -1
+22893
+ rotate: false
+ xy: 518, 287
+ size: 500, 125
+ orig: 500, 125
+ offset: 0, 0
+ index: -1
+23811
+ rotate: false
+ xy: 1006, 853
+ size: 16, 15
+ orig: 16, 15
+ offset: 0, 0
+ index: -1
+23888
+ rotate: false
+ xy: 1006, 836
+ size: 15, 15
+ orig: 15, 15
+ offset: 0, 0
+ index: -1
+2846
+ rotate: false
+ xy: 518, 235
+ size: 297, 50
+ orig: 297, 50
+ offset: 0, 0
+ index: -1
+3865
+ rotate: false
+ xy: 2, 922
+ size: 503, 100
+ orig: 503, 100
+ offset: 0, 0
+ index: -1
+3868
+ rotate: false
+ xy: 507, 922
+ size: 503, 100
+ orig: 503, 100
+ offset: 0, 0
+ index: -1
+392
+ rotate: false
+ xy: 817, 235
+ size: 205, 50
+ orig: 205, 50
+ offset: 0, 0
+ index: -1
+429
+ rotate: false
+ xy: 492, 191
+ size: 70, 42
+ orig: 70, 42
+ offset: 0, 0
+ index: -1
+478
+ rotate: false
+ xy: 433, 340
+ size: 83, 45
+ orig: 83, 45
+ offset: 0, 0
+ index: -1
+482
+ rotate: false
+ xy: 433, 293
+ size: 83, 45
+ orig: 83, 45
+ offset: 0, 0
+ index: -1
+4876
+ rotate: false
+ xy: 260, 3
+ size: 256, 186
+ orig: 256, 186
+ offset: 0, 0
+ index: -1
+4891
+ rotate: false
+ xy: 776, 2
+ size: 100, 77
+ orig: 100, 77
+ offset: 0, 0
+ index: -1
+4940
+ rotate: false
+ xy: 2, 2
+ size: 256, 187
+ orig: 256, 187
+ offset: 0, 0
+ index: -1
+6566
+ rotate: false
+ xy: 518, 3
+ size: 256, 186
+ orig: 256, 186
+ offset: 0, 0
+ index: -1
+6821
+ rotate: false
+ xy: 433, 191
+ size: 57, 100
+ orig: 57, 100
+ offset: 0, 0
+ index: -1
+74
+ rotate: false
+ xy: 878, 14
+ size: 144, 65
+ orig: 144, 65
+ offset: 0, 0
+ index: -1
+
+images21.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10346
+ rotate: false
+ xy: 726, 343
+ size: 295, 75
+ orig: 295, 75
+ offset: 0, 0
+ index: -1
+10769
+ rotate: false
+ xy: 794, 722
+ size: 98, 200
+ orig: 98, 200
+ offset: 0, 0
+ index: -1
+10772
+ rotate: false
+ xy: 894, 722
+ size: 98, 200
+ orig: 98, 200
+ offset: 0, 0
+ index: -1
+12705
+ rotate: false
+ xy: 457, 729
+ size: 45, 100
+ orig: 45, 100
+ offset: 0, 0
+ index: -1
+17760
+ rotate: false
+ xy: 323, 722
+ size: 132, 107
+ orig: 132, 107
+ offset: 0, 0
+ index: -1
+17976
+ rotate: false
+ xy: 990, 71
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+18233
+ rotate: false
+ xy: 712, 201
+ size: 300, 140
+ orig: 300, 140
+ offset: 0, 0
+ index: -1
+1952
+ rotate: false
+ xy: 994, 855
+ size: 28, 67
+ orig: 28, 67
+ offset: 0, 0
+ index: -1
+1958
+ rotate: false
+ xy: 994, 786
+ size: 28, 67
+ orig: 28, 67
+ offset: 0, 0
+ index: -1
+19677
+ rotate: false
+ xy: 504, 722
+ size: 288, 300
+ orig: 288, 300
+ offset: 0, 0
+ index: -1
+20130
+ rotate: false
+ xy: 323, 596
+ size: 406, 124
+ orig: 406, 124
+ offset: 0, 0
+ index: -1
+20131
+ rotate: false
+ xy: 318, 470
+ size: 406, 124
+ orig: 406, 124
+ offset: 0, 0
+ index: -1
+20134
+ rotate: false
+ xy: 318, 344
+ size: 406, 124
+ orig: 406, 124
+ offset: 0, 0
+ index: -1
+20135
+ rotate: false
+ xy: 304, 218
+ size: 406, 124
+ orig: 406, 124
+ offset: 0, 0
+ index: -1
+20138
+ rotate: false
+ xy: 304, 92
+ size: 406, 124
+ orig: 406, 124
+ offset: 0, 0
+ index: -1
+2176
+ rotate: false
+ xy: 304, 4
+ size: 49, 86
+ orig: 49, 86
+ offset: 0, 0
+ index: -1
+2177
+ rotate: false
+ xy: 355, 4
+ size: 49, 86
+ orig: 49, 86
+ offset: 0, 0
+ index: -1
+22894
+ rotate: false
+ xy: 2, 897
+ size: 500, 125
+ orig: 500, 125
+ offset: 0, 0
+ index: -1
+2312
+ rotate: false
+ xy: 2, 20
+ size: 300, 54
+ orig: 300, 54
+ offset: 0, 0
+ index: -1
+23798
+ rotate: false
+ xy: 2, 3
+ size: 131, 15
+ orig: 131, 15
+ offset: 0, 0
+ index: -1
+23849
+ rotate: false
+ xy: 135, 3
+ size: 131, 15
+ orig: 131, 15
+ offset: 0, 0
+ index: -1
+2386
+ rotate: false
+ xy: 994, 733
+ size: 28, 51
+ orig: 28, 51
+ offset: 0, 0
+ index: -1
+23860
+ rotate: false
+ xy: 268, 3
+ size: 34, 15
+ orig: 34, 15
+ offset: 0, 0
+ index: -1
+314
+ rotate: false
+ xy: 989, 420
+ size: 33, 32
+ orig: 33, 32
+ offset: 0, 0
+ index: -1
+472
+ rotate: false
+ xy: 990, 2
+ size: 32, 67
+ orig: 32, 67
+ offset: 0, 0
+ index: -1
+4862
+ rotate: false
+ xy: 712, 2
+ size: 276, 197
+ orig: 276, 197
+ offset: 0, 0
+ index: -1
+4888
+ rotate: false
+ xy: 2, 76
+ size: 300, 160
+ orig: 300, 160
+ offset: 0, 0
+ index: -1
+4893
+ rotate: false
+ xy: 2, 238
+ size: 300, 180
+ orig: 300, 180
+ offset: 0, 0
+ index: -1
+501
+ rotate: false
+ xy: 2, 656
+ size: 319, 239
+ orig: 319, 239
+ offset: 0, 0
+ index: -1
+514
+ rotate: false
+ xy: 2, 420
+ size: 314, 234
+ orig: 314, 234
+ offset: 0, 0
+ index: -1
+5601
+ rotate: false
+ xy: 731, 420
+ size: 256, 300
+ orig: 256, 300
+ offset: 0, 0
+ index: -1
+665
+ rotate: false
+ xy: 323, 831
+ size: 179, 64
+ orig: 179, 64
+ offset: 0, 0
+ index: -1
+7173
+ rotate: false
+ xy: 406, 5
+ size: 294, 85
+ orig: 294, 85
+ offset: 0, 0
+ index: -1
+8531
+ rotate: false
+ xy: 794, 974
+ size: 228, 48
+ orig: 228, 48
+ offset: 0, 0
+ index: -1
+8538
+ rotate: false
+ xy: 794, 924
+ size: 228, 48
+ orig: 228, 48
+ offset: 0, 0
+ index: -1
+9794
+ rotate: false
+ xy: 989, 655
+ size: 33, 65
+ orig: 33, 65
+ offset: 0, 0
+ index: -1
+9800
+ rotate: false
+ xy: 989, 588
+ size: 33, 65
+ orig: 33, 65
+ offset: 0, 0
+ index: -1
+9801
+ rotate: false
+ xy: 989, 521
+ size: 33, 65
+ orig: 33, 65
+ offset: 0, 0
+ index: -1
+9807
+ rotate: false
+ xy: 989, 454
+ size: 33, 65
+ orig: 33, 65
+ offset: 0, 0
+ index: -1
+
+images22.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+1019
+ rotate: false
+ xy: 464, 354
+ size: 17, 28
+ orig: 17, 28
+ offset: 0, 0
+ index: -1
+10770
+ rotate: false
+ xy: 973, 458
+ size: 49, 200
+ orig: 49, 200
+ offset: 0, 0
+ index: -1
+128
+ rotate: false
+ xy: 582, 310
+ size: 30, 40
+ orig: 30, 40
+ offset: 0, 0
+ index: -1
+18244
+ rotate: false
+ xy: 872, 190
+ size: 150, 140
+ orig: 150, 140
+ offset: 0, 0
+ index: -1
+18830
+ rotate: false
+ xy: 2, 2
+ size: 100, 46
+ orig: 100, 46
+ offset: 0, 0
+ index: -1
+18831
+ rotate: false
+ xy: 104, 2
+ size: 100, 46
+ orig: 100, 46
+ offset: 0, 0
+ index: -1
+18834
+ rotate: false
+ xy: 206, 2
+ size: 100, 46
+ orig: 100, 46
+ offset: 0, 0
+ index: -1
+18835
+ rotate: false
+ xy: 308, 2
+ size: 100, 46
+ orig: 100, 46
+ offset: 0, 0
+ index: -1
+18838
+ rotate: false
+ xy: 410, 2
+ size: 100, 46
+ orig: 100, 46
+ offset: 0, 0
+ index: -1
+18839
+ rotate: false
+ xy: 512, 2
+ size: 100, 46
+ orig: 100, 46
+ offset: 0, 0
+ index: -1
+19477
+ rotate: false
+ xy: 2, 472
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19478
+ rotate: false
+ xy: 2, 352
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19626
+ rotate: false
+ xy: 503, 690
+ size: 480, 160
+ orig: 480, 160
+ offset: 0, 0
+ index: -1
+19629
+ rotate: false
+ xy: 2, 592
+ size: 480, 160
+ orig: 480, 160
+ offset: 0, 0
+ index: -1
+19678
+ rotate: false
+ xy: 2, 50
+ size: 288, 300
+ orig: 288, 300
+ offset: 0, 0
+ index: -1
+19680
+ rotate: false
+ xy: 292, 50
+ size: 288, 300
+ orig: 288, 300
+ offset: 0, 0
+ index: -1
+20139
+ rotate: false
+ xy: 614, 332
+ size: 406, 124
+ orig: 406, 124
+ offset: 0, 0
+ index: -1
+21951
+ rotate: false
+ xy: 614, 310
+ size: 51, 20
+ orig: 51, 20
+ offset: 0, 0
+ index: -1
+21955
+ rotate: false
+ xy: 667, 310
+ size: 51, 20
+ orig: 51, 20
+ offset: 0, 0
+ index: -1
+21959
+ rotate: false
+ xy: 720, 310
+ size: 51, 20
+ orig: 51, 20
+ offset: 0, 0
+ index: -1
+22838
+ rotate: false
+ xy: 549, 386
+ size: 63, 70
+ orig: 63, 70
+ offset: 0, 0
+ index: -1
+23672
+ rotate: false
+ xy: 503, 574
+ size: 468, 114
+ orig: 468, 114
+ offset: 0, 0
+ index: -1
+23675
+ rotate: false
+ xy: 503, 458
+ size: 468, 114
+ orig: 468, 114
+ offset: 0, 0
+ index: -1
+23853
+ rotate: false
+ xy: 773, 315
+ size: 97, 15
+ orig: 97, 15
+ offset: 0, 0
+ index: -1
+278
+ rotate: false
+ xy: 504, 852
+ size: 480, 170
+ orig: 480, 170
+ offset: 0, 0
+ index: -1
+283
+ rotate: false
+ xy: 2, 754
+ size: 480, 170
+ orig: 480, 170
+ offset: 0, 0
+ index: -1
+3017
+ rotate: false
+ xy: 986, 972
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3018
+ rotate: false
+ xy: 986, 920
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3021
+ rotate: false
+ xy: 986, 868
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3022
+ rotate: false
+ xy: 986, 816
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3025
+ rotate: false
+ xy: 985, 764
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3026
+ rotate: false
+ xy: 985, 712
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3028
+ rotate: false
+ xy: 484, 874
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3029
+ rotate: false
+ xy: 985, 660
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3031
+ rotate: false
+ xy: 484, 822
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3032
+ rotate: false
+ xy: 484, 770
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3035
+ rotate: false
+ xy: 484, 718
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3036
+ rotate: false
+ xy: 484, 666
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3039
+ rotate: false
+ xy: 484, 614
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3040
+ rotate: false
+ xy: 484, 562
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3043
+ rotate: false
+ xy: 464, 540
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3044
+ rotate: false
+ xy: 483, 510
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3047
+ rotate: false
+ xy: 464, 488
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3048
+ rotate: false
+ xy: 483, 458
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3051
+ rotate: false
+ xy: 464, 436
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3052
+ rotate: false
+ xy: 464, 384
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+4599
+ rotate: false
+ xy: 582, 52
+ size: 288, 256
+ orig: 288, 256
+ offset: 0, 0
+ index: -1
+4933
+ rotate: false
+ xy: 2, 926
+ size: 500, 96
+ orig: 500, 96
+ offset: 0, 0
+ index: -1
+524
+ rotate: false
+ xy: 483, 352
+ size: 64, 104
+ orig: 64, 104
+ offset: 0, 0
+ index: -1
+551
+ rotate: false
+ xy: 549, 352
+ size: 63, 32
+ orig: 63, 32
+ offset: 0, 0
+ index: -1
+8523
+ rotate: false
+ xy: 844, 2
+ size: 171, 48
+ orig: 171, 48
+ offset: 0, 0
+ index: -1
+8545
+ rotate: false
+ xy: 614, 2
+ size: 228, 48
+ orig: 228, 48
+ offset: 0, 0
+ index: -1
+86
+ rotate: false
+ xy: 872, 58
+ size: 150, 130
+ orig: 150, 130
+ offset: 0, 0
+ index: -1
+
+images23.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+1530
+ rotate: false
+ xy: 648, 2
+ size: 204, 204
+ orig: 204, 204
+ offset: 0, 0
+ index: -1
+173
+ rotate: false
+ xy: 926, 894
+ size: 96, 128
+ orig: 96, 128
+ offset: 0, 0
+ index: -1
+17573
+ rotate: false
+ xy: 292, 426
+ size: 105, 53
+ orig: 105, 53
+ offset: 0, 0
+ index: -1
+17576
+ rotate: false
+ xy: 292, 371
+ size: 105, 53
+ orig: 105, 53
+ offset: 0, 0
+ index: -1
+177
+ rotate: false
+ xy: 926, 764
+ size: 96, 128
+ orig: 96, 128
+ offset: 0, 0
+ index: -1
+178
+ rotate: false
+ xy: 926, 634
+ size: 96, 128
+ orig: 96, 128
+ offset: 0, 0
+ index: -1
+182
+ rotate: false
+ xy: 926, 504
+ size: 96, 128
+ orig: 96, 128
+ offset: 0, 0
+ index: -1
+19485
+ rotate: false
+ xy: 2, 904
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19486
+ rotate: false
+ xy: 464, 904
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19493
+ rotate: false
+ xy: 2, 784
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19494
+ rotate: false
+ xy: 464, 784
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19501
+ rotate: false
+ xy: 399, 664
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19502
+ rotate: false
+ xy: 399, 544
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19513
+ rotate: false
+ xy: 399, 424
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19681
+ rotate: false
+ xy: 2, 462
+ size: 288, 300
+ orig: 288, 300
+ offset: 0, 0
+ index: -1
+19683
+ rotate: false
+ xy: 2, 160
+ size: 288, 300
+ orig: 288, 300
+ offset: 0, 0
+ index: -1
+2146
+ rotate: false
+ xy: 954, 2
+ size: 50, 31
+ orig: 50, 31
+ offset: 0, 0
+ index: -1
+2152
+ rotate: false
+ xy: 854, 2
+ size: 98, 31
+ orig: 98, 31
+ offset: 0, 0
+ index: -1
+2175
+ rotate: false
+ xy: 292, 626
+ size: 105, 139
+ orig: 105, 139
+ offset: 0, 0
+ index: -1
+22845
+ rotate: false
+ xy: 861, 712
+ size: 63, 70
+ orig: 63, 70
+ offset: 0, 0
+ index: -1
+22846
+ rotate: false
+ xy: 861, 640
+ size: 63, 70
+ orig: 63, 70
+ offset: 0, 0
+ index: -1
+22853
+ rotate: false
+ xy: 861, 568
+ size: 63, 70
+ orig: 63, 70
+ offset: 0, 0
+ index: -1
+22854
+ rotate: false
+ xy: 861, 496
+ size: 63, 70
+ orig: 63, 70
+ offset: 0, 0
+ index: -1
+22861
+ rotate: false
+ xy: 861, 424
+ size: 63, 70
+ orig: 63, 70
+ offset: 0, 0
+ index: -1
+23824
+ rotate: false
+ xy: 135, 767
+ size: 130, 15
+ orig: 130, 15
+ offset: 0, 0
+ index: -1
+23876
+ rotate: false
+ xy: 267, 767
+ size: 130, 15
+ orig: 130, 15
+ offset: 0, 0
+ index: -1
+2389
+ rotate: false
+ xy: 399, 371
+ size: 112, 51
+ orig: 112, 51
+ offset: 0, 0
+ index: -1
+2390
+ rotate: false
+ xy: 513, 371
+ size: 112, 51
+ orig: 112, 51
+ offset: 0, 0
+ index: -1
+23924
+ rotate: false
+ xy: 2, 767
+ size: 131, 15
+ orig: 131, 15
+ offset: 0, 0
+ index: -1
+3055
+ rotate: false
+ xy: 627, 372
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+326
+ rotate: false
+ xy: 926, 210
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+406
+ rotate: false
+ xy: 854, 35
+ size: 168, 76
+ orig: 168, 76
+ offset: 0, 0
+ index: -1
+423
+ rotate: false
+ xy: 292, 161
+ size: 176, 208
+ orig: 176, 208
+ offset: 0, 0
+ index: -1
+424
+ rotate: false
+ xy: 470, 161
+ size: 176, 208
+ orig: 176, 208
+ offset: 0, 0
+ index: -1
+4324
+ rotate: false
+ xy: 602, 2
+ size: 34, 25
+ orig: 34, 25
+ offset: 0, 0
+ index: -1
+4540
+ rotate: false
+ xy: 2, 4
+ size: 298, 154
+ orig: 298, 154
+ offset: 0, 0
+ index: -1
+4541
+ rotate: false
+ xy: 302, 5
+ size: 298, 154
+ orig: 298, 154
+ offset: 0, 0
+ index: -1
+4867
+ rotate: false
+ xy: 648, 208
+ size: 276, 214
+ orig: 276, 214
+ offset: 0, 0
+ index: -1
+499
+ rotate: false
+ xy: 292, 481
+ size: 105, 60
+ orig: 105, 60
+ offset: 0, 0
+ index: -1
+5944
+ rotate: false
+ xy: 926, 374
+ size: 96, 128
+ orig: 96, 128
+ offset: 0, 0
+ index: -1
+5948
+ rotate: false
+ xy: 926, 244
+ size: 96, 128
+ orig: 96, 128
+ offset: 0, 0
+ index: -1
+7076
+ rotate: false
+ xy: 292, 543
+ size: 105, 81
+ orig: 105, 81
+ offset: 0, 0
+ index: -1
+808
+ rotate: false
+ xy: 602, 95
+ size: 44, 64
+ orig: 44, 64
+ offset: 0, 0
+ index: -1
+817
+ rotate: false
+ xy: 602, 29
+ size: 44, 64
+ orig: 44, 64
+ offset: 0, 0
+ index: -1
+97
+ rotate: false
+ xy: 854, 113
+ size: 168, 93
+ orig: 168, 93
+ offset: 0, 0
+ index: -1
+
+images24.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+1022
+ rotate: false
+ xy: 993, 2
+ size: 17, 28
+ orig: 17, 28
+ offset: 0, 0
+ index: -1
+1531
+ rotate: false
+ xy: 2, 462
+ size: 232, 300
+ orig: 232, 300
+ offset: 0, 0
+ index: -1
+17581
+ rotate: false
+ xy: 916, 66
+ size: 105, 53
+ orig: 105, 53
+ offset: 0, 0
+ index: -1
+17947
+ rotate: false
+ xy: 236, 470
+ size: 190, 292
+ orig: 190, 292
+ offset: 0, 0
+ index: -1
+18213
+ rotate: false
+ xy: 916, 283
+ size: 106, 35
+ orig: 106, 35
+ offset: 0, 0
+ index: -1
+18217
+ rotate: false
+ xy: 916, 246
+ size: 106, 35
+ orig: 106, 35
+ offset: 0, 0
+ index: -1
+18221
+ rotate: false
+ xy: 916, 209
+ size: 106, 35
+ orig: 106, 35
+ offset: 0, 0
+ index: -1
+18225
+ rotate: false
+ xy: 916, 172
+ size: 106, 35
+ orig: 106, 35
+ offset: 0, 0
+ index: -1
+18281
+ rotate: false
+ xy: 546, 208
+ size: 368, 166
+ orig: 368, 166
+ offset: 0, 0
+ index: -1
+18282
+ rotate: false
+ xy: 546, 40
+ size: 368, 166
+ orig: 368, 166
+ offset: 0, 0
+ index: -1
+18803
+ rotate: false
+ xy: 2, 165
+ size: 256, 295
+ orig: 256, 295
+ offset: 0, 0
+ index: -1
+19514
+ rotate: false
+ xy: 2, 904
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19521
+ rotate: false
+ xy: 464, 904
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19522
+ rotate: false
+ xy: 2, 784
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19529
+ rotate: false
+ xy: 464, 784
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+20076
+ rotate: false
+ xy: 428, 282
+ size: 30, 24
+ orig: 30, 24
+ offset: 0, 0
+ index: -1
+20172
+ rotate: false
+ xy: 428, 308
+ size: 93, 89
+ orig: 93, 89
+ offset: 0, 0
+ index: -1
+2182
+ rotate: false
+ xy: 598, 3
+ size: 211, 35
+ orig: 211, 35
+ offset: 0, 0
+ index: -1
+21962
+ rotate: false
+ xy: 811, 2
+ size: 52, 19
+ orig: 52, 19
+ offset: 0, 0
+ index: -1
+2245
+ rotate: false
+ xy: 993, 32
+ size: 29, 32
+ orig: 29, 32
+ offset: 0, 0
+ index: -1
+23695
+ rotate: false
+ xy: 260, 165
+ size: 284, 115
+ orig: 284, 115
+ offset: 0, 0
+ index: -1
+23715
+ rotate: false
+ xy: 916, 2
+ size: 75, 62
+ orig: 75, 62
+ offset: 0, 0
+ index: -1
+23743
+ rotate: false
+ xy: 460, 291
+ size: 84, 15
+ orig: 84, 15
+ offset: 0, 0
+ index: -1
+23748
+ rotate: false
+ xy: 134, 767
+ size: 128, 15
+ orig: 128, 15
+ offset: 0, 0
+ index: -1
+23807
+ rotate: false
+ xy: 865, 6
+ size: 49, 15
+ orig: 49, 15
+ offset: 0, 0
+ index: -1
+23827
+ rotate: false
+ xy: 916, 155
+ size: 106, 15
+ orig: 106, 15
+ offset: 0, 0
+ index: -1
+23838
+ rotate: false
+ xy: 523, 308
+ size: 17, 15
+ orig: 17, 15
+ offset: 0, 0
+ index: -1
+23852
+ rotate: false
+ xy: 916, 138
+ size: 106, 15
+ orig: 106, 15
+ offset: 0, 0
+ index: -1
+23865
+ rotate: false
+ xy: 523, 359
+ size: 21, 15
+ orig: 21, 15
+ offset: 0, 0
+ index: -1
+23897
+ rotate: false
+ xy: 916, 121
+ size: 106, 15
+ orig: 106, 15
+ offset: 0, 0
+ index: -1
+23899
+ rotate: false
+ xy: 264, 767
+ size: 128, 15
+ orig: 128, 15
+ offset: 0, 0
+ index: -1
+23900
+ rotate: false
+ xy: 394, 767
+ size: 127, 15
+ orig: 127, 15
+ offset: 0, 0
+ index: -1
+23914
+ rotate: false
+ xy: 523, 342
+ size: 21, 15
+ orig: 21, 15
+ offset: 0, 0
+ index: -1
+23935
+ rotate: false
+ xy: 523, 325
+ size: 21, 15
+ orig: 21, 15
+ offset: 0, 0
+ index: -1
+23948
+ rotate: false
+ xy: 811, 23
+ size: 103, 15
+ orig: 103, 15
+ offset: 0, 0
+ index: -1
+23951
+ rotate: false
+ xy: 2, 767
+ size: 130, 15
+ orig: 130, 15
+ offset: 0, 0
+ index: -1
+2862
+ rotate: false
+ xy: 916, 727
+ size: 106, 35
+ orig: 106, 35
+ offset: 0, 0
+ index: -1
+2866
+ rotate: false
+ xy: 916, 690
+ size: 106, 35
+ orig: 106, 35
+ offset: 0, 0
+ index: -1
+2870
+ rotate: false
+ xy: 916, 653
+ size: 106, 35
+ orig: 106, 35
+ offset: 0, 0
+ index: -1
+2874
+ rotate: false
+ xy: 916, 616
+ size: 106, 35
+ orig: 106, 35
+ offset: 0, 0
+ index: -1
+3286
+ rotate: false
+ xy: 523, 682
+ size: 391, 100
+ orig: 391, 100
+ offset: 0, 0
+ index: -1
+3293
+ rotate: false
+ xy: 523, 580
+ size: 391, 100
+ orig: 391, 100
+ offset: 0, 0
+ index: -1
+3583
+ rotate: false
+ xy: 2, 3
+ size: 320, 160
+ orig: 320, 160
+ offset: 0, 0
+ index: -1
+3863
+ rotate: false
+ xy: 523, 478
+ size: 391, 100
+ orig: 391, 100
+ offset: 0, 0
+ index: -1
+3870
+ rotate: false
+ xy: 523, 376
+ size: 391, 100
+ orig: 391, 100
+ offset: 0, 0
+ index: -1
+4665
+ rotate: false
+ xy: 428, 583
+ size: 93, 182
+ orig: 93, 182
+ offset: 0, 0
+ index: -1
+4666
+ rotate: false
+ xy: 428, 399
+ size: 93, 182
+ orig: 93, 182
+ offset: 0, 0
+ index: -1
+479
+ rotate: false
+ xy: 260, 423
+ size: 166, 45
+ orig: 166, 45
+ offset: 0, 0
+ index: -1
+4802
+ rotate: false
+ xy: 324, 113
+ size: 220, 50
+ orig: 220, 50
+ offset: 0, 0
+ index: -1
+4809
+ rotate: false
+ xy: 324, 61
+ size: 220, 50
+ orig: 220, 50
+ offset: 0, 0
+ index: -1
+481
+ rotate: false
+ xy: 260, 376
+ size: 166, 45
+ orig: 166, 45
+ offset: 0, 0
+ index: -1
+4810
+ rotate: false
+ xy: 324, 9
+ size: 220, 50
+ orig: 220, 50
+ offset: 0, 0
+ index: -1
+484
+ rotate: false
+ xy: 260, 329
+ size: 166, 45
+ orig: 166, 45
+ offset: 0, 0
+ index: -1
+486
+ rotate: false
+ xy: 260, 282
+ size: 166, 45
+ orig: 166, 45
+ offset: 0, 0
+ index: -1
+4880
+ rotate: false
+ xy: 546, 2
+ size: 50, 36
+ orig: 50, 36
+ offset: 0, 0
+ index: -1
+5477
+ rotate: false
+ xy: 916, 579
+ size: 106, 35
+ orig: 106, 35
+ offset: 0, 0
+ index: -1
+5478
+ rotate: false
+ xy: 916, 542
+ size: 106, 35
+ orig: 106, 35
+ offset: 0, 0
+ index: -1
+5481
+ rotate: false
+ xy: 916, 505
+ size: 106, 35
+ orig: 106, 35
+ offset: 0, 0
+ index: -1
+5482
+ rotate: false
+ xy: 916, 468
+ size: 106, 35
+ orig: 106, 35
+ offset: 0, 0
+ index: -1
+5485
+ rotate: false
+ xy: 916, 431
+ size: 106, 35
+ orig: 106, 35
+ offset: 0, 0
+ index: -1
+5486
+ rotate: false
+ xy: 916, 394
+ size: 106, 35
+ orig: 106, 35
+ offset: 0, 0
+ index: -1
+5489
+ rotate: false
+ xy: 916, 357
+ size: 106, 35
+ orig: 106, 35
+ offset: 0, 0
+ index: -1
+5490
+ rotate: false
+ xy: 916, 320
+ size: 106, 35
+ orig: 106, 35
+ offset: 0, 0
+ index: -1
+5949
+ rotate: false
+ xy: 926, 894
+ size: 96, 128
+ orig: 96, 128
+ offset: 0, 0
+ index: -1
+5953
+ rotate: false
+ xy: 926, 764
+ size: 96, 128
+ orig: 96, 128
+ offset: 0, 0
+ index: -1
+
+images25.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10206
+ rotate: false
+ xy: 516, 20
+ size: 288, 282
+ orig: 288, 282
+ offset: 0, 0
+ index: -1
+10343
+ rotate: false
+ xy: 806, 707
+ size: 118, 75
+ orig: 118, 75
+ offset: 0, 0
+ index: -1
+10352
+ rotate: false
+ xy: 806, 630
+ size: 118, 75
+ orig: 118, 75
+ offset: 0, 0
+ index: -1
+12098
+ rotate: false
+ xy: 2, 730
+ size: 81, 52
+ orig: 81, 52
+ offset: 0, 0
+ index: -1
+12101
+ rotate: false
+ xy: 85, 730
+ size: 81, 52
+ orig: 81, 52
+ offset: 0, 0
+ index: -1
+12163
+ rotate: false
+ xy: 806, 553
+ size: 118, 75
+ orig: 118, 75
+ offset: 0, 0
+ index: -1
+12172
+ rotate: false
+ xy: 806, 476
+ size: 118, 75
+ orig: 118, 75
+ offset: 0, 0
+ index: -1
+1525
+ rotate: false
+ xy: 948, 71
+ size: 74, 64
+ orig: 74, 64
+ offset: 0, 0
+ index: -1
+1526
+ rotate: false
+ xy: 806, 410
+ size: 118, 64
+ orig: 118, 64
+ offset: 0, 0
+ index: -1
+17948
+ rotate: false
+ xy: 2, 436
+ size: 190, 292
+ orig: 190, 292
+ offset: 0, 0
+ index: -1
+17949
+ rotate: false
+ xy: 2, 142
+ size: 190, 292
+ orig: 190, 292
+ offset: 0, 0
+ index: -1
+184
+ rotate: false
+ xy: 926, 730
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+18407
+ rotate: false
+ xy: 806, 2
+ size: 140, 265
+ orig: 140, 265
+ offset: 0, 0
+ index: -1
+188
+ rotate: false
+ xy: 926, 632
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+189
+ rotate: false
+ xy: 926, 534
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+193
+ rotate: false
+ xy: 926, 436
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+19530
+ rotate: false
+ xy: 2, 904
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19537
+ rotate: false
+ xy: 464, 904
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19538
+ rotate: false
+ xy: 2, 784
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19549
+ rotate: false
+ xy: 464, 784
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+22931
+ rotate: false
+ xy: 464, 784
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19550
+ rotate: false
+ xy: 344, 664
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+22932
+ rotate: false
+ xy: 344, 664
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19557
+ rotate: false
+ xy: 344, 544
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+22939
+ rotate: false
+ xy: 344, 544
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19558
+ rotate: false
+ xy: 344, 424
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+22940
+ rotate: false
+ xy: 344, 424
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19565
+ rotate: false
+ xy: 344, 304
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19583
+ rotate: false
+ xy: 194, 679
+ size: 148, 49
+ orig: 148, 49
+ offset: 0, 0
+ index: -1
+19587
+ rotate: false
+ xy: 194, 628
+ size: 148, 49
+ orig: 148, 49
+ offset: 0, 0
+ index: -1
+19591
+ rotate: false
+ xy: 194, 577
+ size: 148, 49
+ orig: 148, 49
+ offset: 0, 0
+ index: -1
+19595
+ rotate: false
+ xy: 194, 526
+ size: 148, 49
+ orig: 148, 49
+ offset: 0, 0
+ index: -1
+19603
+ rotate: false
+ xy: 194, 142
+ size: 320, 160
+ orig: 320, 160
+ offset: 0, 0
+ index: -1
+1966
+ rotate: false
+ xy: 948, 5
+ size: 74, 64
+ orig: 74, 64
+ offset: 0, 0
+ index: -1
+20090
+ rotate: false
+ xy: 194, 475
+ size: 148, 49
+ orig: 148, 49
+ offset: 0, 0
+ index: -1
+20094
+ rotate: false
+ xy: 194, 424
+ size: 148, 49
+ orig: 148, 49
+ offset: 0, 0
+ index: -1
+20098
+ rotate: false
+ xy: 194, 373
+ size: 148, 49
+ orig: 148, 49
+ offset: 0, 0
+ index: -1
+20102
+ rotate: false
+ xy: 194, 322
+ size: 148, 49
+ orig: 148, 49
+ offset: 0, 0
+ index: -1
+2110
+ rotate: false
+ xy: 925, 269
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+2333
+ rotate: false
+ xy: 806, 280
+ size: 117, 128
+ orig: 117, 128
+ offset: 0, 0
+ index: -1
+23825
+ rotate: false
+ xy: 194, 305
+ size: 125, 15
+ orig: 125, 15
+ offset: 0, 0
+ index: -1
+23875
+ rotate: false
+ xy: 516, 3
+ size: 125, 15
+ orig: 125, 15
+ offset: 0, 0
+ index: -1
+23891
+ rotate: false
+ xy: 770, 3
+ size: 34, 15
+ orig: 34, 15
+ offset: 0, 0
+ index: -1
+23950
+ rotate: false
+ xy: 643, 3
+ size: 125, 15
+ orig: 125, 15
+ offset: 0, 0
+ index: -1
+3101
+ rotate: false
+ xy: 322, 732
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3191
+ rotate: false
+ xy: 2, 6
+ size: 340, 134
+ orig: 340, 134
+ offset: 0, 0
+ index: -1
+3194
+ rotate: false
+ xy: 344, 6
+ size: 170, 134
+ orig: 170, 134
+ offset: 0, 0
+ index: -1
+3833
+ rotate: false
+ xy: 168, 730
+ size: 75, 52
+ orig: 75, 52
+ offset: 0, 0
+ index: -1
+3834
+ rotate: false
+ xy: 245, 730
+ size: 75, 52
+ orig: 75, 52
+ offset: 0, 0
+ index: -1
+4863
+ rotate: false
+ xy: 948, 137
+ size: 74, 130
+ orig: 74, 130
+ offset: 0, 0
+ index: -1
+7
+ rotate: false
+ xy: 926, 926
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+8
+ rotate: false
+ xy: 926, 828
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+8684
+ rotate: false
+ xy: 926, 338
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+
+images26.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10194
+ rotate: false
+ xy: 737, 102
+ size: 285, 232
+ orig: 285, 232
+ offset: 0, 0
+ index: -1
+10208
+ rotate: false
+ xy: 125, 152
+ size: 288, 282
+ orig: 288, 282
+ offset: 0, 0
+ index: -1
+10209
+ rotate: false
+ xy: 194, 446
+ size: 288, 282
+ orig: 288, 282
+ offset: 0, 0
+ index: -1
+10350
+ rotate: false
+ xy: 415, 369
+ size: 67, 75
+ orig: 67, 75
+ offset: 0, 0
+ index: -1
+13958
+ rotate: false
+ xy: 288, 4
+ size: 160, 146
+ orig: 160, 146
+ offset: 0, 0
+ index: -1
+1532
+ rotate: false
+ xy: 2, 142
+ size: 121, 292
+ orig: 121, 292
+ offset: 0, 0
+ index: -1
+17801
+ rotate: false
+ xy: 737, 2
+ size: 198, 98
+ orig: 198, 98
+ offset: 0, 0
+ index: -1
+17950
+ rotate: false
+ xy: 2, 436
+ size: 190, 292
+ orig: 190, 292
+ offset: 0, 0
+ index: -1
+1937
+ rotate: false
+ xy: 484, 369
+ size: 55, 53
+ orig: 55, 53
+ offset: 0, 0
+ index: -1
+19566
+ rotate: false
+ xy: 2, 904
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19573
+ rotate: false
+ xy: 464, 904
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+19574
+ rotate: false
+ xy: 2, 784
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+2184
+ rotate: false
+ xy: 618, 282
+ size: 109, 35
+ orig: 109, 35
+ offset: 0, 0
+ index: -1
+2190
+ rotate: false
+ xy: 450, 3
+ size: 211, 35
+ orig: 211, 35
+ offset: 0, 0
+ index: -1
+22947
+ rotate: false
+ xy: 464, 784
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+2359
+ rotate: false
+ xy: 663, 6
+ size: 72, 32
+ orig: 72, 32
+ offset: 0, 0
+ index: -1
+23898
+ rotate: false
+ xy: 618, 319
+ size: 117, 15
+ orig: 117, 15
+ offset: 0, 0
+ index: -1
+2837
+ rotate: false
+ xy: 923, 343
+ size: 99, 50
+ orig: 99, 50
+ offset: 0, 0
+ index: -1
+3192
+ rotate: false
+ xy: 2, 6
+ size: 284, 134
+ orig: 284, 134
+ offset: 0, 0
+ index: -1
+3280
+ rotate: false
+ xy: 484, 628
+ size: 55, 100
+ orig: 55, 100
+ offset: 0, 0
+ index: -1
+3299
+ rotate: false
+ xy: 484, 526
+ size: 55, 100
+ orig: 55, 100
+ offset: 0, 0
+ index: -1
+3839
+ rotate: false
+ xy: 2, 730
+ size: 75, 52
+ orig: 75, 52
+ offset: 0, 0
+ index: -1
+3840
+ rotate: false
+ xy: 79, 730
+ size: 75, 52
+ orig: 75, 52
+ offset: 0, 0
+ index: -1
+3845
+ rotate: false
+ xy: 156, 730
+ size: 75, 52
+ orig: 75, 52
+ offset: 0, 0
+ index: -1
+3846
+ rotate: false
+ xy: 233, 730
+ size: 75, 52
+ orig: 75, 52
+ offset: 0, 0
+ index: -1
+3850
+ rotate: false
+ xy: 310, 730
+ size: 75, 52
+ orig: 75, 52
+ offset: 0, 0
+ index: -1
+3851
+ rotate: false
+ xy: 387, 730
+ size: 75, 52
+ orig: 75, 52
+ offset: 0, 0
+ index: -1
+3857
+ rotate: false
+ xy: 484, 424
+ size: 55, 100
+ orig: 55, 100
+ offset: 0, 0
+ index: -1
+4973
+ rotate: false
+ xy: 415, 282
+ size: 124, 85
+ orig: 124, 85
+ offset: 0, 0
+ index: -1
+5920
+ rotate: false
+ xy: 450, 40
+ size: 285, 110
+ orig: 285, 110
+ offset: 0, 0
+ index: -1
+5921
+ rotate: false
+ xy: 541, 672
+ size: 380, 110
+ orig: 380, 110
+ offset: 0, 0
+ index: -1
+5922
+ rotate: false
+ xy: 541, 560
+ size: 380, 110
+ orig: 380, 110
+ offset: 0, 0
+ index: -1
+5929
+ rotate: false
+ xy: 541, 448
+ size: 380, 110
+ orig: 380, 110
+ offset: 0, 0
+ index: -1
+5930
+ rotate: false
+ xy: 541, 336
+ size: 380, 110
+ orig: 380, 110
+ offset: 0, 0
+ index: -1
+6920
+ rotate: false
+ xy: 464, 730
+ size: 75, 52
+ orig: 75, 52
+ offset: 0, 0
+ index: -1
+6921
+ rotate: false
+ xy: 541, 282
+ size: 75, 52
+ orig: 75, 52
+ offset: 0, 0
+ index: -1
+7199
+ rotate: false
+ xy: 415, 152
+ size: 320, 128
+ orig: 320, 128
+ offset: 0, 0
+ index: -1
+8685
+ rotate: false
+ xy: 926, 926
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+9193
+ rotate: false
+ xy: 926, 828
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+9195
+ rotate: false
+ xy: 926, 730
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+96
+ rotate: false
+ xy: 937, 7
+ size: 85, 93
+ orig: 85, 93
+ offset: 0, 0
+ index: -1
+9796
+ rotate: false
+ xy: 923, 663
+ size: 99, 65
+ orig: 99, 65
+ offset: 0, 0
+ index: -1
+9798
+ rotate: false
+ xy: 923, 596
+ size: 99, 65
+ orig: 99, 65
+ offset: 0, 0
+ index: -1
+9803
+ rotate: false
+ xy: 923, 529
+ size: 99, 65
+ orig: 99, 65
+ offset: 0, 0
+ index: -1
+9805
+ rotate: false
+ xy: 923, 462
+ size: 99, 65
+ orig: 99, 65
+ offset: 0, 0
+ index: -1
+9810
+ rotate: false
+ xy: 923, 395
+ size: 99, 65
+ orig: 99, 65
+ offset: 0, 0
+ index: -1
+
+images27.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+12108
+ rotate: false
+ xy: 410, 166
+ size: 52, 35
+ orig: 52, 35
+ offset: 0, 0
+ index: -1
+17955
+ rotate: false
+ xy: 811, 2
+ size: 122, 185
+ orig: 122, 185
+ offset: 0, 0
+ index: -1
+18250
+ rotate: false
+ xy: 872, 686
+ size: 150, 140
+ orig: 150, 140
+ offset: 0, 0
+ index: -1
+18270
+ rotate: false
+ xy: 935, 3
+ size: 79, 184
+ orig: 79, 184
+ offset: 0, 0
+ index: -1
+19476
+ rotate: false
+ xy: 464, 154
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+1948
+ rotate: false
+ xy: 872, 835
+ size: 52, 67
+ orig: 52, 67
+ offset: 0, 0
+ index: -1
+20142
+ rotate: false
+ xy: 464, 778
+ size: 406, 124
+ orig: 406, 124
+ offset: 0, 0
+ index: -1
+20143
+ rotate: false
+ xy: 2, 658
+ size: 406, 124
+ orig: 406, 124
+ offset: 0, 0
+ index: -1
+20146
+ rotate: false
+ xy: 464, 652
+ size: 406, 124
+ orig: 406, 124
+ offset: 0, 0
+ index: -1
+20147
+ rotate: false
+ xy: 464, 526
+ size: 406, 124
+ orig: 406, 124
+ offset: 0, 0
+ index: -1
+20150
+ rotate: false
+ xy: 2, 532
+ size: 406, 124
+ orig: 406, 124
+ offset: 0, 0
+ index: -1
+20151
+ rotate: false
+ xy: 464, 400
+ size: 406, 124
+ orig: 406, 124
+ offset: 0, 0
+ index: -1
+20154
+ rotate: false
+ xy: 2, 406
+ size: 406, 124
+ orig: 406, 124
+ offset: 0, 0
+ index: -1
+20155
+ rotate: false
+ xy: 464, 274
+ size: 406, 124
+ orig: 406, 124
+ offset: 0, 0
+ index: -1
+20158
+ rotate: false
+ xy: 2, 280
+ size: 406, 124
+ orig: 406, 124
+ offset: 0, 0
+ index: -1
+20159
+ rotate: false
+ xy: 2, 154
+ size: 406, 124
+ orig: 406, 124
+ offset: 0, 0
+ index: -1
+2113
+ rotate: false
+ xy: 712, 85
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+2114
+ rotate: false
+ xy: 712, 16
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+2198
+ rotate: false
+ xy: 811, 189
+ size: 211, 35
+ orig: 211, 35
+ offset: 0, 0
+ index: -1
+22948
+ rotate: false
+ xy: 2, 904
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+22955
+ rotate: false
+ xy: 464, 904
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+22956
+ rotate: false
+ xy: 2, 784
+ size: 460, 118
+ orig: 460, 118
+ offset: 0, 0
+ index: -1
+23711
+ rotate: false
+ xy: 872, 471
+ size: 150, 81
+ orig: 150, 81
+ offset: 0, 0
+ index: -1
+23712
+ rotate: false
+ xy: 872, 388
+ size: 150, 81
+ orig: 150, 81
+ offset: 0, 0
+ index: -1
+2689
+ rotate: false
+ xy: 811, 226
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+4935
+ rotate: false
+ xy: 872, 306
+ size: 150, 80
+ orig: 150, 80
+ offset: 0, 0
+ index: -1
+6789
+ rotate: false
+ xy: 872, 226
+ size: 150, 78
+ orig: 150, 78
+ offset: 0, 0
+ index: -1
+7034
+ rotate: false
+ xy: 410, 701
+ size: 52, 81
+ orig: 52, 81
+ offset: 0, 0
+ index: -1
+7039
+ rotate: false
+ xy: 410, 618
+ size: 52, 81
+ orig: 52, 81
+ offset: 0, 0
+ index: -1
+7041
+ rotate: false
+ xy: 410, 535
+ size: 52, 81
+ orig: 52, 81
+ offset: 0, 0
+ index: -1
+7046
+ rotate: false
+ xy: 410, 452
+ size: 52, 81
+ orig: 52, 81
+ offset: 0, 0
+ index: -1
+7048
+ rotate: false
+ xy: 410, 369
+ size: 52, 81
+ orig: 52, 81
+ offset: 0, 0
+ index: -1
+7053
+ rotate: false
+ xy: 410, 286
+ size: 52, 81
+ orig: 52, 81
+ offset: 0, 0
+ index: -1
+7055
+ rotate: false
+ xy: 410, 203
+ size: 52, 81
+ orig: 52, 81
+ offset: 0, 0
+ index: -1
+90
+ rotate: false
+ xy: 872, 554
+ size: 150, 130
+ orig: 150, 130
+ offset: 0, 0
+ index: -1
+9196
+ rotate: false
+ xy: 926, 926
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+9198
+ rotate: false
+ xy: 926, 828
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+9570
+ rotate: false
+ xy: 406, 2
+ size: 100, 150
+ orig: 100, 150
+ offset: 0, 0
+ index: -1
+9571
+ rotate: false
+ xy: 2, 2
+ size: 200, 150
+ orig: 200, 150
+ offset: 0, 0
+ index: -1
+9572
+ rotate: false
+ xy: 508, 2
+ size: 100, 150
+ orig: 100, 150
+ offset: 0, 0
+ index: -1
+9573
+ rotate: false
+ xy: 610, 2
+ size: 100, 150
+ orig: 100, 150
+ offset: 0, 0
+ index: -1
+9574
+ rotate: false
+ xy: 204, 2
+ size: 200, 150
+ orig: 200, 150
+ offset: 0, 0
+ index: -1
+
+images28.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10211
+ rotate: false
+ xy: 2, 628
+ size: 288, 282
+ orig: 288, 282
+ offset: 0, 0
+ index: -1
+10212
+ rotate: false
+ xy: 2, 344
+ size: 288, 282
+ orig: 288, 282
+ offset: 0, 0
+ index: -1
+10214
+ rotate: false
+ xy: 2, 60
+ size: 288, 282
+ orig: 288, 282
+ offset: 0, 0
+ index: -1
+10218
+ rotate: false
+ xy: 292, 528
+ size: 373, 236
+ orig: 373, 236
+ offset: 0, 0
+ index: -1
+10220
+ rotate: false
+ xy: 292, 290
+ size: 373, 236
+ orig: 373, 236
+ offset: 0, 0
+ index: -1
+10221
+ rotate: false
+ xy: 292, 52
+ size: 373, 236
+ orig: 373, 236
+ offset: 0, 0
+ index: -1
+10344
+ rotate: false
+ xy: 845, 689
+ size: 177, 75
+ orig: 177, 75
+ offset: 0, 0
+ index: -1
+10353
+ rotate: false
+ xy: 845, 612
+ size: 177, 75
+ orig: 177, 75
+ offset: 0, 0
+ index: -1
+1936
+ rotate: false
+ xy: 925, 2
+ size: 75, 53
+ orig: 75, 53
+ offset: 0, 0
+ index: -1
+19479
+ rotate: false
+ xy: 667, 264
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+2117
+ rotate: false
+ xy: 925, 195
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+2211
+ rotate: false
+ xy: 845, 556
+ size: 160, 54
+ orig: 160, 54
+ offset: 0, 0
+ index: -1
+23750
+ rotate: false
+ xy: 900, 820
+ size: 121, 15
+ orig: 121, 15
+ offset: 0, 0
+ index: -1
+23828
+ rotate: false
+ xy: 194, 9
+ size: 96, 15
+ orig: 96, 15
+ offset: 0, 0
+ index: -1
+23848
+ rotate: false
+ xy: 900, 854
+ size: 122, 15
+ orig: 122, 15
+ offset: 0, 0
+ index: -1
+23877
+ rotate: false
+ xy: 900, 837
+ size: 122, 15
+ orig: 122, 15
+ offset: 0, 0
+ index: -1
+2418
+ rotate: false
+ xy: 638, 2
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+284
+ rotate: false
+ xy: 667, 384
+ size: 320, 170
+ orig: 320, 170
+ offset: 0, 0
+ index: -1
+3056
+ rotate: false
+ xy: 925, 126
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+3059
+ rotate: false
+ xy: 925, 57
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+3104
+ rotate: false
+ xy: 1002, 5
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+4071
+ rotate: false
+ xy: 2, 4
+ size: 30, 20
+ orig: 30, 20
+ offset: 0, 0
+ index: -1
+4074
+ rotate: false
+ xy: 34, 4
+ size: 30, 20
+ orig: 30, 20
+ offset: 0, 0
+ index: -1
+4075
+ rotate: false
+ xy: 66, 4
+ size: 30, 20
+ orig: 30, 20
+ offset: 0, 0
+ index: -1
+4078
+ rotate: false
+ xy: 98, 4
+ size: 30, 20
+ orig: 30, 20
+ offset: 0, 0
+ index: -1
+4079
+ rotate: false
+ xy: 130, 4
+ size: 30, 20
+ orig: 30, 20
+ offset: 0, 0
+ index: -1
+4082
+ rotate: false
+ xy: 162, 4
+ size: 30, 20
+ orig: 30, 20
+ offset: 0, 0
+ index: -1
+425
+ rotate: false
+ xy: 667, 556
+ size: 176, 208
+ orig: 176, 208
+ offset: 0, 0
+ index: -1
+4456
+ rotate: false
+ xy: 292, 846
+ size: 90, 64
+ orig: 90, 64
+ offset: 0, 0
+ index: -1
+4459
+ rotate: false
+ xy: 292, 780
+ size: 90, 64
+ orig: 90, 64
+ offset: 0, 0
+ index: -1
+52
+ rotate: false
+ xy: 977, 781
+ size: 45, 37
+ orig: 45, 37
+ offset: 0, 0
+ index: -1
+5936
+ rotate: false
+ xy: 2, 912
+ size: 380, 110
+ orig: 380, 110
+ offset: 0, 0
+ index: -1
+64
+ rotate: false
+ xy: 900, 871
+ size: 122, 64
+ orig: 122, 64
+ offset: 0, 0
+ index: -1
+644
+ rotate: false
+ xy: 384, 766
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+645
+ rotate: false
+ xy: 642, 766
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+646
+ rotate: false
+ xy: 667, 6
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+68
+ rotate: false
+ xy: 900, 937
+ size: 122, 85
+ orig: 122, 85
+ offset: 0, 0
+ index: -1
+6926
+ rotate: false
+ xy: 900, 766
+ size: 75, 52
+ orig: 75, 52
+ offset: 0, 0
+ index: -1
+8525
+ rotate: false
+ xy: 292, 2
+ size: 171, 48
+ orig: 171, 48
+ offset: 0, 0
+ index: -1
+8530
+ rotate: false
+ xy: 465, 2
+ size: 171, 48
+ orig: 171, 48
+ offset: 0, 0
+ index: -1
+8704
+ rotate: false
+ xy: 2, 26
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+9808
+ rotate: false
+ xy: 989, 489
+ size: 33, 65
+ orig: 33, 65
+ offset: 0, 0
+ index: -1
+9814
+ rotate: false
+ xy: 989, 422
+ size: 33, 65
+ orig: 33, 65
+ offset: 0, 0
+ index: -1
+9824
+ rotate: false
+ xy: 989, 387
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+
+images29.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10215
+ rotate: false
+ xy: 2, 628
+ size: 288, 282
+ orig: 288, 282
+ offset: 0, 0
+ index: -1
+10217
+ rotate: false
+ xy: 2, 344
+ size: 288, 282
+ orig: 288, 282
+ offset: 0, 0
+ index: -1
+10223
+ rotate: false
+ xy: 292, 528
+ size: 373, 236
+ orig: 373, 236
+ offset: 0, 0
+ index: -1
+10224
+ rotate: false
+ xy: 292, 290
+ size: 373, 236
+ orig: 373, 236
+ offset: 0, 0
+ index: -1
+10226
+ rotate: false
+ xy: 292, 52
+ size: 373, 236
+ orig: 373, 236
+ offset: 0, 0
+ index: -1
+137
+ rotate: false
+ xy: 900, 886
+ size: 120, 85
+ orig: 120, 85
+ offset: 0, 0
+ index: -1
+1475
+ rotate: false
+ xy: 292, 860
+ size: 90, 50
+ orig: 90, 50
+ offset: 0, 0
+ index: -1
+175
+ rotate: false
+ xy: 2, 214
+ size: 288, 128
+ orig: 288, 128
+ offset: 0, 0
+ index: -1
+17953
+ rotate: false
+ xy: 667, 3
+ size: 250, 254
+ orig: 250, 254
+ offset: 0, 0
+ index: -1
+180
+ rotate: false
+ xy: 2, 84
+ size: 288, 128
+ orig: 288, 128
+ offset: 0, 0
+ index: -1
+18408
+ rotate: false
+ xy: 667, 499
+ size: 140, 265
+ orig: 140, 265
+ offset: 0, 0
+ index: -1
+18412
+ rotate: false
+ xy: 809, 499
+ size: 140, 265
+ orig: 140, 265
+ offset: 0, 0
+ index: -1
+19482
+ rotate: false
+ xy: 900, 766
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19484
+ rotate: false
+ xy: 667, 379
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19487
+ rotate: false
+ xy: 667, 259
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+2179
+ rotate: false
+ xy: 919, 56
+ size: 102, 35
+ orig: 102, 35
+ offset: 0, 0
+ index: -1
+23775
+ rotate: false
+ xy: 900, 1007
+ size: 121, 15
+ orig: 121, 15
+ offset: 0, 0
+ index: -1
+23797
+ rotate: false
+ xy: 900, 990
+ size: 121, 15
+ orig: 121, 15
+ offset: 0, 0
+ index: -1
+23923
+ rotate: false
+ xy: 900, 973
+ size: 121, 15
+ orig: 121, 15
+ offset: 0, 0
+ index: -1
+23955
+ rotate: false
+ xy: 292, 843
+ size: 90, 15
+ orig: 90, 15
+ offset: 0, 0
+ index: -1
+2425
+ rotate: false
+ xy: 638, 2
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+27
+ rotate: false
+ xy: 919, 176
+ size: 102, 81
+ orig: 102, 81
+ offset: 0, 0
+ index: -1
+28
+ rotate: false
+ xy: 919, 93
+ size: 102, 81
+ orig: 102, 81
+ offset: 0, 0
+ index: -1
+3831
+ rotate: false
+ xy: 996, 2
+ size: 25, 52
+ orig: 25, 52
+ offset: 0, 0
+ index: -1
+4338
+ rotate: false
+ xy: 951, 716
+ size: 71, 48
+ orig: 71, 48
+ offset: 0, 0
+ index: -1
+4341
+ rotate: false
+ xy: 951, 666
+ size: 71, 48
+ orig: 71, 48
+ offset: 0, 0
+ index: -1
+4346
+ rotate: false
+ xy: 951, 616
+ size: 71, 48
+ orig: 71, 48
+ offset: 0, 0
+ index: -1
+4362
+ rotate: false
+ xy: 951, 566
+ size: 71, 48
+ orig: 71, 48
+ offset: 0, 0
+ index: -1
+4545
+ rotate: false
+ xy: 642, 766
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+50
+ rotate: false
+ xy: 292, 766
+ size: 75, 75
+ orig: 75, 75
+ offset: 0, 0
+ index: -1
+5937
+ rotate: false
+ xy: 2, 912
+ size: 380, 110
+ orig: 380, 110
+ offset: 0, 0
+ index: -1
+6927
+ rotate: false
+ xy: 919, 2
+ size: 75, 52
+ orig: 75, 52
+ offset: 0, 0
+ index: -1
+735
+ rotate: false
+ xy: 384, 766
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+8532
+ rotate: false
+ xy: 292, 2
+ size: 171, 48
+ orig: 171, 48
+ offset: 0, 0
+ index: -1
+8537
+ rotate: false
+ xy: 465, 2
+ size: 171, 48
+ orig: 171, 48
+ offset: 0, 0
+ index: -1
+8707
+ rotate: false
+ xy: 2, 50
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8709
+ rotate: false
+ xy: 2, 16
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+9795
+ rotate: false
+ xy: 951, 499
+ size: 66, 65
+ orig: 66, 65
+ offset: 0, 0
+ index: -1
+
+images30.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10227
+ rotate: false
+ xy: 2, 786
+ size: 373, 236
+ orig: 373, 236
+ offset: 0, 0
+ index: -1
+10229
+ rotate: false
+ xy: 2, 548
+ size: 373, 236
+ orig: 373, 236
+ offset: 0, 0
+ index: -1
+10230
+ rotate: false
+ xy: 377, 528
+ size: 373, 236
+ orig: 373, 236
+ offset: 0, 0
+ index: -1
+10232
+ rotate: false
+ xy: 2, 310
+ size: 373, 236
+ orig: 373, 236
+ offset: 0, 0
+ index: -1
+10233
+ rotate: false
+ xy: 377, 290
+ size: 373, 236
+ orig: 373, 236
+ offset: 0, 0
+ index: -1
+10235
+ rotate: false
+ xy: 2, 72
+ size: 373, 236
+ orig: 373, 236
+ offset: 0, 0
+ index: -1
+10236
+ rotate: false
+ xy: 377, 52
+ size: 373, 236
+ orig: 373, 236
+ offset: 0, 0
+ index: -1
+10771
+ rotate: false
+ xy: 752, 564
+ size: 49, 200
+ orig: 49, 200
+ offset: 0, 0
+ index: -1
+10774
+ rotate: false
+ xy: 803, 564
+ size: 98, 200
+ orig: 98, 200
+ offset: 0, 0
+ index: -1
+12707
+ rotate: false
+ xy: 981, 82
+ size: 41, 54
+ orig: 41, 54
+ offset: 0, 0
+ index: -1
+18197
+ rotate: false
+ xy: 752, 138
+ size: 260, 166
+ orig: 260, 166
+ offset: 0, 0
+ index: -1
+18320
+ rotate: false
+ xy: 972, 766
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+18990
+ rotate: false
+ xy: 1001, 580
+ size: 17, 28
+ orig: 17, 28
+ offset: 0, 0
+ index: -1
+2112
+ rotate: false
+ xy: 2, 3
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+2131
+ rotate: false
+ xy: 981, 27
+ size: 41, 53
+ orig: 41, 53
+ offset: 0, 0
+ index: -1
+23765
+ rotate: false
+ xy: 981, 10
+ size: 41, 15
+ orig: 41, 15
+ offset: 0, 0
+ index: -1
+2426
+ rotate: false
+ xy: 722, 2
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2878
+ rotate: false
+ xy: 903, 714
+ size: 119, 50
+ orig: 119, 50
+ offset: 0, 0
+ index: -1
+2883
+ rotate: false
+ xy: 903, 662
+ size: 119, 50
+ orig: 119, 50
+ offset: 0, 0
+ index: -1
+3105
+ rotate: false
+ xy: 1001, 610
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3193
+ rotate: false
+ xy: 752, 2
+ size: 227, 134
+ orig: 227, 134
+ offset: 0, 0
+ index: -1
+7000
+ rotate: false
+ xy: 377, 766
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+7001
+ rotate: false
+ xy: 635, 766
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+7002
+ rotate: false
+ xy: 752, 306
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+810
+ rotate: false
+ xy: 893, 958
+ size: 129, 64
+ orig: 129, 64
+ offset: 0, 0
+ index: -1
+819
+ rotate: false
+ xy: 893, 892
+ size: 129, 64
+ orig: 129, 64
+ offset: 0, 0
+ index: -1
+828
+ rotate: false
+ xy: 893, 826
+ size: 129, 64
+ orig: 129, 64
+ offset: 0, 0
+ index: -1
+8539
+ rotate: false
+ xy: 376, 2
+ size: 171, 48
+ orig: 171, 48
+ offset: 0, 0
+ index: -1
+8544
+ rotate: false
+ xy: 549, 2
+ size: 171, 48
+ orig: 171, 48
+ offset: 0, 0
+ index: -1
+868
+ rotate: false
+ xy: 893, 766
+ size: 77, 58
+ orig: 77, 58
+ offset: 0, 0
+ index: -1
+9199
+ rotate: false
+ xy: 903, 564
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+9466
+ rotate: false
+ xy: 198, 6
+ size: 176, 64
+ orig: 176, 64
+ offset: 0, 0
+ index: -1
+
+images31.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10196
+ rotate: false
+ xy: 2, 314
+ size: 285, 232
+ orig: 285, 232
+ offset: 0, 0
+ index: -1
+10197
+ rotate: false
+ xy: 371, 285
+ size: 285, 232
+ orig: 285, 232
+ offset: 0, 0
+ index: -1
+10199
+ rotate: false
+ xy: 2, 80
+ size: 285, 232
+ orig: 285, 232
+ offset: 0, 0
+ index: -1
+10200
+ rotate: false
+ xy: 371, 51
+ size: 285, 232
+ orig: 285, 232
+ offset: 0, 0
+ index: -1
+10238
+ rotate: false
+ xy: 2, 786
+ size: 373, 236
+ orig: 373, 236
+ offset: 0, 0
+ index: -1
+10239
+ rotate: false
+ xy: 377, 786
+ size: 373, 236
+ orig: 373, 236
+ offset: 0, 0
+ index: -1
+10241
+ rotate: false
+ xy: 2, 548
+ size: 373, 236
+ orig: 373, 236
+ offset: 0, 0
+ index: -1
+12305
+ rotate: false
+ xy: 741, 508
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+12426
+ rotate: false
+ xy: 741, 508
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+12306
+ rotate: false
+ xy: 741, 203
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+138
+ rotate: false
+ xy: 658, 11
+ size: 80, 85
+ orig: 80, 85
+ offset: 0, 0
+ index: -1
+146
+ rotate: false
+ xy: 659, 614
+ size: 80, 170
+ orig: 80, 170
+ offset: 0, 0
+ index: -1
+1472
+ rotate: false
+ xy: 998, 3
+ size: 22, 35
+ orig: 22, 35
+ offset: 0, 0
+ index: -1
+150
+ rotate: false
+ xy: 289, 376
+ size: 80, 170
+ orig: 80, 170
+ offset: 0, 0
+ index: -1
+151
+ rotate: false
+ xy: 659, 442
+ size: 80, 170
+ orig: 80, 170
+ offset: 0, 0
+ index: -1
+155
+ rotate: false
+ xy: 289, 204
+ size: 80, 170
+ orig: 80, 170
+ offset: 0, 0
+ index: -1
+18411
+ rotate: false
+ xy: 377, 519
+ size: 280, 265
+ orig: 280, 265
+ offset: 0, 0
+ index: -1
+1895
+ rotate: false
+ xy: 998, 93
+ size: 24, 51
+ orig: 24, 51
+ offset: 0, 0
+ index: -1
+1901
+ rotate: false
+ xy: 998, 40
+ size: 24, 51
+ orig: 24, 51
+ offset: 0, 0
+ index: -1
+1921
+ rotate: false
+ xy: 999, 711
+ size: 22, 53
+ orig: 22, 53
+ offset: 0, 0
+ index: -1
+1927
+ rotate: false
+ xy: 999, 656
+ size: 22, 53
+ orig: 22, 53
+ offset: 0, 0
+ index: -1
+1932
+ rotate: false
+ xy: 998, 146
+ size: 24, 53
+ orig: 24, 53
+ offset: 0, 0
+ index: -1
+19640
+ rotate: false
+ xy: 340, 20
+ size: 25, 60
+ orig: 25, 60
+ offset: 0, 0
+ index: -1
+20173
+ rotate: false
+ xy: 999, 603
+ size: 22, 51
+ orig: 22, 51
+ offset: 0, 0
+ index: -1
+20401
+ rotate: false
+ xy: 289, 82
+ size: 79, 120
+ orig: 79, 120
+ offset: 0, 0
+ index: -1
+23939
+ rotate: false
+ xy: 340, 3
+ size: 25, 15
+ orig: 25, 15
+ offset: 0, 0
+ index: -1
+2630
+ rotate: false
+ xy: 999, 558
+ size: 23, 43
+ orig: 23, 43
+ offset: 0, 0
+ index: -1
+2633
+ rotate: false
+ xy: 999, 513
+ size: 23, 43
+ orig: 23, 43
+ offset: 0, 0
+ index: -1
+287
+ rotate: false
+ xy: 658, 270
+ size: 80, 170
+ orig: 80, 170
+ offset: 0, 0
+ index: -1
+291
+ rotate: false
+ xy: 658, 98
+ size: 80, 170
+ orig: 80, 170
+ offset: 0, 0
+ index: -1
+3108
+ rotate: false
+ xy: 999, 461
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3113
+ rotate: false
+ xy: 999, 409
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3116
+ rotate: false
+ xy: 999, 357
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3117
+ rotate: false
+ xy: 999, 305
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3120
+ rotate: false
+ xy: 999, 253
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3121
+ rotate: false
+ xy: 999, 201
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+408
+ rotate: false
+ xy: 2, 2
+ size: 336, 76
+ orig: 336, 76
+ offset: 0, 0
+ index: -1
+444
+ rotate: false
+ xy: 740, 5
+ size: 256, 196
+ orig: 256, 196
+ offset: 0, 0
+ index: -1
+480
+ rotate: false
+ xy: 741, 461
+ size: 249, 45
+ orig: 249, 45
+ offset: 0, 0
+ index: -1
+485
+ rotate: false
+ xy: 367, 4
+ size: 249, 45
+ orig: 249, 45
+ offset: 0, 0
+ index: -1
+7233
+ rotate: false
+ xy: 752, 766
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+8460
+ rotate: false
+ xy: 618, 2
+ size: 32, 47
+ orig: 32, 47
+ offset: 0, 0
+ index: -1
+
+images32.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10202
+ rotate: false
+ xy: 2, 8
+ size: 285, 232
+ orig: 285, 232
+ offset: 0, 0
+ index: -1
+10347
+ rotate: false
+ xy: 496, 353
+ size: 244, 75
+ orig: 244, 75
+ offset: 0, 0
+ index: -1
+10356
+ rotate: false
+ xy: 496, 276
+ size: 244, 75
+ orig: 244, 75
+ offset: 0, 0
+ index: -1
+10375
+ rotate: false
+ xy: 547, 2
+ size: 186, 94
+ orig: 186, 94
+ offset: 0, 0
+ index: -1
+11882
+ rotate: false
+ xy: 742, 852
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+11887
+ rotate: false
+ xy: 742, 680
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+11890
+ rotate: false
+ xy: 742, 508
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+11895
+ rotate: false
+ xy: 742, 336
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+11898
+ rotate: false
+ xy: 742, 164
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+12167
+ rotate: false
+ xy: 496, 199
+ size: 244, 75
+ orig: 244, 75
+ offset: 0, 0
+ index: -1
+16
+ rotate: false
+ xy: 1000, 132
+ size: 22, 30
+ orig: 22, 30
+ offset: 0, 0
+ index: -1
+17952
+ rotate: false
+ xy: 2, 242
+ size: 234, 264
+ orig: 234, 264
+ offset: 0, 0
+ index: -1
+17954
+ rotate: false
+ xy: 238, 250
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+18284
+ rotate: false
+ xy: 2, 856
+ size: 368, 166
+ orig: 368, 166
+ offset: 0, 0
+ index: -1
+18285
+ rotate: false
+ xy: 372, 856
+ size: 368, 166
+ orig: 368, 166
+ offset: 0, 0
+ index: -1
+18287
+ rotate: false
+ xy: 2, 688
+ size: 368, 166
+ orig: 368, 166
+ offset: 0, 0
+ index: -1
+18288
+ rotate: false
+ xy: 372, 688
+ size: 368, 166
+ orig: 368, 166
+ offset: 0, 0
+ index: -1
+18321
+ rotate: false
+ xy: 306, 508
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+18322
+ rotate: false
+ xy: 383, 508
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+18327
+ rotate: false
+ xy: 460, 508
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+19492
+ rotate: false
+ xy: 2, 568
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19495
+ rotate: false
+ xy: 349, 568
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19592
+ rotate: false
+ xy: 289, 199
+ size: 149, 49
+ orig: 149, 49
+ offset: 0, 0
+ index: -1
+20129
+ rotate: false
+ xy: 537, 430
+ size: 203, 124
+ orig: 203, 124
+ offset: 0, 0
+ index: -1
+2125
+ rotate: false
+ xy: 547, 98
+ size: 193, 99
+ orig: 193, 99
+ offset: 0, 0
+ index: -1
+23
+ rotate: false
+ xy: 1000, 100
+ size: 22, 30
+ orig: 22, 30
+ offset: 0, 0
+ index: -1
+23706
+ rotate: false
+ xy: 2, 508
+ size: 150, 58
+ orig: 150, 58
+ offset: 0, 0
+ index: -1
+23707
+ rotate: false
+ xy: 154, 508
+ size: 150, 58
+ orig: 150, 58
+ offset: 0, 0
+ index: -1
+23760
+ rotate: false
+ xy: 1000, 83
+ size: 22, 15
+ orig: 22, 15
+ offset: 0, 0
+ index: -1
+23808
+ rotate: false
+ xy: 496, 491
+ size: 39, 15
+ orig: 39, 15
+ offset: 0, 0
+ index: -1
+3124
+ rotate: false
+ xy: 1000, 31
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+430
+ rotate: false
+ xy: 440, 199
+ size: 53, 49
+ orig: 53, 49
+ offset: 0, 0
+ index: -1
+1502
+ rotate: false
+ xy: 440, 199
+ size: 53, 49
+ orig: 53, 49
+ offset: 0, 0
+ index: -1
+4896
+ rotate: false
+ xy: 289, 2
+ size: 256, 195
+ orig: 256, 195
+ offset: 0, 0
+ index: -1
+5
+ rotate: false
+ xy: 742, 2
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+7029
+ rotate: false
+ xy: 496, 433
+ size: 38, 56
+ orig: 38, 56
+ offset: 0, 0
+ index: -1
+826
+ rotate: false
+ xy: 696, 622
+ size: 44, 64
+ orig: 44, 64
+ offset: 0, 0
+ index: -1
+835
+ rotate: false
+ xy: 696, 556
+ size: 44, 64
+ orig: 44, 64
+ offset: 0, 0
+ index: -1
+
+images33.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10776
+ rotate: false
+ xy: 694, 471
+ size: 328, 65
+ orig: 328, 65
+ offset: 0, 0
+ index: -1
+10777
+ rotate: false
+ xy: 694, 404
+ size: 328, 65
+ orig: 328, 65
+ offset: 0, 0
+ index: -1
+10778
+ rotate: false
+ xy: 694, 337
+ size: 328, 65
+ orig: 328, 65
+ offset: 0, 0
+ index: -1
+10779
+ rotate: false
+ xy: 694, 270
+ size: 328, 65
+ orig: 328, 65
+ offset: 0, 0
+ index: -1
+10780
+ rotate: false
+ xy: 694, 203
+ size: 328, 65
+ orig: 328, 65
+ offset: 0, 0
+ index: -1
+10781
+ rotate: false
+ xy: 694, 136
+ size: 328, 65
+ orig: 328, 65
+ offset: 0, 0
+ index: -1
+10782
+ rotate: false
+ xy: 694, 69
+ size: 328, 65
+ orig: 328, 65
+ offset: 0, 0
+ index: -1
+10783
+ rotate: false
+ xy: 694, 2
+ size: 328, 65
+ orig: 328, 65
+ offset: 0, 0
+ index: -1
+11903
+ rotate: false
+ xy: 412, 492
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+11906
+ rotate: false
+ xy: 412, 320
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+11911
+ rotate: false
+ xy: 412, 148
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+12146
+ rotate: false
+ xy: 545, 71
+ size: 147, 75
+ orig: 147, 75
+ offset: 0, 0
+ index: -1
+12184
+ rotate: false
+ xy: 644, 5
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+19500
+ rotate: false
+ xy: 2, 904
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19503
+ rotate: false
+ xy: 349, 904
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19512
+ rotate: false
+ xy: 2, 784
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19515
+ rotate: false
+ xy: 349, 784
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19520
+ rotate: false
+ xy: 2, 664
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19523
+ rotate: false
+ xy: 349, 664
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19608
+ rotate: false
+ xy: 696, 862
+ size: 320, 160
+ orig: 320, 160
+ offset: 0, 0
+ index: -1
+19611
+ rotate: false
+ xy: 696, 700
+ size: 320, 160
+ orig: 320, 160
+ offset: 0, 0
+ index: -1
+19616
+ rotate: false
+ xy: 696, 538
+ size: 320, 160
+ orig: 320, 160
+ offset: 0, 0
+ index: -1
+20132
+ rotate: false
+ xy: 2, 538
+ size: 203, 124
+ orig: 203, 124
+ offset: 0, 0
+ index: -1
+20133
+ rotate: false
+ xy: 207, 538
+ size: 203, 124
+ orig: 203, 124
+ offset: 0, 0
+ index: -1
+22254
+ rotate: false
+ xy: 2, 280
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+22255
+ rotate: false
+ xy: 2, 22
+ size: 256, 256
+ orig: 256, 256
+ offset: 0, 0
+ index: -1
+23799
+ rotate: false
+ xy: 2, 5
+ size: 124, 15
+ orig: 124, 15
+ offset: 0, 0
+ index: -1
+23850
+ rotate: false
+ xy: 128, 5
+ size: 124, 15
+ orig: 124, 15
+ offset: 0, 0
+ index: -1
+3060
+ rotate: false
+ xy: 545, 2
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+3190
+ rotate: false
+ xy: 260, 2
+ size: 283, 134
+ orig: 283, 134
+ offset: 0, 0
+ index: -1
+6792
+ rotate: false
+ xy: 260, 458
+ size: 150, 78
+ orig: 150, 78
+ offset: 0, 0
+ index: -1
+6797
+ rotate: false
+ xy: 260, 378
+ size: 150, 78
+ orig: 150, 78
+ offset: 0, 0
+ index: -1
+6800
+ rotate: false
+ xy: 260, 298
+ size: 150, 78
+ orig: 150, 78
+ offset: 0, 0
+ index: -1
+6805
+ rotate: false
+ xy: 260, 218
+ size: 150, 78
+ orig: 150, 78
+ offset: 0, 0
+ index: -1
+6810
+ rotate: false
+ xy: 260, 138
+ size: 150, 78
+ orig: 150, 78
+ offset: 0, 0
+ index: -1
+
+images34.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10203
+ rotate: false
+ xy: 2, 78
+ size: 285, 232
+ orig: 285, 232
+ offset: 0, 0
+ index: -1
+10205
+ rotate: false
+ xy: 289, 78
+ size: 285, 232
+ orig: 285, 232
+ offset: 0, 0
+ index: -1
+10341
+ rotate: false
+ xy: 249, 370
+ size: 139, 75
+ orig: 139, 75
+ offset: 0, 0
+ index: -1
+10784
+ rotate: false
+ xy: 692, 503
+ size: 328, 65
+ orig: 328, 65
+ offset: 0, 0
+ index: -1
+10785
+ rotate: false
+ xy: 692, 436
+ size: 328, 65
+ orig: 328, 65
+ offset: 0, 0
+ index: -1
+12176
+ rotate: false
+ xy: 778, 133
+ size: 244, 75
+ orig: 244, 75
+ offset: 0, 0
+ index: -1
+12730
+ rotate: false
+ xy: 416, 312
+ size: 195, 66
+ orig: 195, 66
+ offset: 0, 0
+ index: -1
+1462
+ rotate: false
+ xy: 249, 447
+ size: 139, 123
+ orig: 139, 123
+ offset: 0, 0
+ index: -1
+1479
+ rotate: false
+ xy: 332, 572
+ size: 50, 90
+ orig: 50, 90
+ offset: 0, 0
+ index: -1
+17752
+ rotate: false
+ xy: 2, 2
+ size: 192, 74
+ orig: 192, 74
+ offset: 0, 0
+ index: -1
+17753
+ rotate: false
+ xy: 196, 2
+ size: 192, 74
+ orig: 192, 74
+ offset: 0, 0
+ index: -1
+17756
+ rotate: false
+ xy: 390, 2
+ size: 192, 74
+ orig: 192, 74
+ offset: 0, 0
+ index: -1
+17757
+ rotate: false
+ xy: 584, 2
+ size: 192, 74
+ orig: 192, 74
+ offset: 0, 0
+ index: -1
+179
+ rotate: false
+ xy: 778, 3
+ size: 192, 128
+ orig: 192, 128
+ offset: 0, 0
+ index: -1
+17944
+ rotate: false
+ xy: 972, 2
+ size: 49, 49
+ orig: 49, 49
+ offset: 0, 0
+ index: -1
+18239
+ rotate: false
+ xy: 390, 522
+ size: 300, 140
+ orig: 300, 140
+ offset: 0, 0
+ index: -1
+18245
+ rotate: false
+ xy: 390, 380
+ size: 300, 140
+ orig: 300, 140
+ offset: 0, 0
+ index: -1
+1898
+ rotate: false
+ xy: 613, 327
+ size: 77, 51
+ orig: 77, 51
+ offset: 0, 0
+ index: -1
+19528
+ rotate: false
+ xy: 2, 904
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19531
+ rotate: false
+ xy: 349, 904
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19536
+ rotate: false
+ xy: 2, 784
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19539
+ rotate: false
+ xy: 349, 784
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19548
+ rotate: false
+ xy: 2, 664
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+22930
+ rotate: false
+ xy: 2, 664
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19551
+ rotate: false
+ xy: 349, 664
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+22933
+ rotate: false
+ xy: 349, 664
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19619
+ rotate: false
+ xy: 696, 862
+ size: 320, 160
+ orig: 320, 160
+ offset: 0, 0
+ index: -1
+19625
+ rotate: false
+ xy: 696, 700
+ size: 320, 160
+ orig: 320, 160
+ offset: 0, 0
+ index: -1
+19714
+ rotate: false
+ xy: 2, 312
+ size: 245, 256
+ orig: 245, 256
+ offset: 0, 0
+ index: -1
+2174
+ rotate: false
+ xy: 2, 571
+ size: 125, 91
+ orig: 125, 91
+ offset: 0, 0
+ index: -1
+2213
+ rotate: false
+ xy: 692, 282
+ size: 320, 54
+ orig: 320, 54
+ offset: 0, 0
+ index: -1
+22833
+ rotate: false
+ xy: 692, 210
+ size: 252, 70
+ orig: 252, 70
+ offset: 0, 0
+ index: -1
+22910
+ rotate: false
+ xy: 249, 312
+ size: 165, 56
+ orig: 165, 56
+ offset: 0, 0
+ index: -1
+5596
+ rotate: false
+ xy: 692, 338
+ size: 320, 96
+ orig: 320, 96
+ offset: 0, 0
+ index: -1
+6787
+ rotate: false
+ xy: 972, 53
+ size: 50, 78
+ orig: 50, 78
+ offset: 0, 0
+ index: -1
+6822
+ rotate: false
+ xy: 576, 210
+ size: 114, 100
+ orig: 114, 100
+ offset: 0, 0
+ index: -1
+69
+ rotate: false
+ xy: 946, 210
+ size: 75, 70
+ orig: 75, 70
+ offset: 0, 0
+ index: -1
+7200
+ rotate: false
+ xy: 696, 570
+ size: 320, 128
+ orig: 320, 128
+ offset: 0, 0
+ index: -1
+866
+ rotate: false
+ xy: 129, 571
+ size: 47, 91
+ orig: 47, 91
+ offset: 0, 0
+ index: -1
+87
+ rotate: false
+ xy: 576, 78
+ size: 200, 130
+ orig: 200, 130
+ offset: 0, 0
+ index: -1
+9563
+ rotate: false
+ xy: 178, 572
+ size: 75, 90
+ orig: 75, 90
+ offset: 0, 0
+ index: -1
+9564
+ rotate: false
+ xy: 255, 572
+ size: 75, 90
+ orig: 75, 90
+ offset: 0, 0
+ index: -1
+
+images35.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10775
+ rotate: false
+ xy: 551, 822
+ size: 49, 200
+ orig: 49, 200
+ offset: 0, 0
+ index: -1
+11944
+ rotate: false
+ xy: 2, 732
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+11949
+ rotate: false
+ xy: 2, 560
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+11952
+ rotate: false
+ xy: 2, 388
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+11957
+ rotate: false
+ xy: 668, 654
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+13953
+ rotate: false
+ xy: 602, 826
+ size: 256, 196
+ orig: 256, 196
+ offset: 0, 0
+ index: -1
+147
+ rotate: false
+ xy: 860, 852
+ size: 160, 170
+ orig: 160, 170
+ offset: 0, 0
+ index: -1
+1478
+ rotate: false
+ xy: 341, 2
+ size: 55, 40
+ orig: 55, 40
+ offset: 0, 0
+ index: -1
+1487
+ rotate: false
+ xy: 398, 2
+ size: 55, 40
+ orig: 55, 40
+ offset: 0, 0
+ index: -1
+1533
+ rotate: false
+ xy: 349, 815
+ size: 200, 207
+ orig: 200, 207
+ offset: 0, 0
+ index: -1
+18192
+ rotate: false
+ xy: 889, 292
+ size: 130, 166
+ orig: 130, 166
+ offset: 0, 0
+ index: -1
+18198
+ rotate: false
+ xy: 2, 220
+ size: 260, 166
+ orig: 260, 166
+ offset: 0, 0
+ index: -1
+18201
+ rotate: false
+ xy: 2, 52
+ size: 260, 166
+ orig: 260, 166
+ offset: 0, 0
+ index: -1
+18237
+ rotate: false
+ xy: 800, 460
+ size: 151, 140
+ orig: 151, 140
+ offset: 0, 0
+ index: -1
+18251
+ rotate: false
+ xy: 284, 673
+ size: 300, 140
+ orig: 300, 140
+ offset: 0, 0
+ index: -1
+1897
+ rotate: false
+ xy: 950, 715
+ size: 72, 51
+ orig: 72, 51
+ offset: 0, 0
+ index: -1
+1903
+ rotate: false
+ xy: 950, 662
+ size: 72, 51
+ orig: 72, 51
+ offset: 0, 0
+ index: -1
+1924
+ rotate: false
+ xy: 953, 547
+ size: 69, 53
+ orig: 69, 53
+ offset: 0, 0
+ index: -1
+19556
+ rotate: false
+ xy: 2, 904
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+22938
+ rotate: false
+ xy: 2, 904
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19559
+ rotate: false
+ xy: 542, 340
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+22941
+ rotate: false
+ xy: 542, 340
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19609
+ rotate: false
+ xy: 841, 6
+ size: 160, 160
+ orig: 160, 160
+ offset: 0, 0
+ index: -1
+20078
+ rotate: false
+ xy: 860, 826
+ size: 30, 24
+ orig: 30, 24
+ offset: 0, 0
+ index: -1
+20079
+ rotate: false
+ xy: 892, 826
+ size: 30, 24
+ orig: 30, 24
+ offset: 0, 0
+ index: -1
+20081
+ rotate: false
+ xy: 541, 2
+ size: 30, 24
+ orig: 30, 24
+ offset: 0, 0
+ index: -1
+20082
+ rotate: false
+ xy: 573, 2
+ size: 30, 24
+ orig: 30, 24
+ offset: 0, 0
+ index: -1
+20084
+ rotate: false
+ xy: 605, 2
+ size: 30, 24
+ orig: 30, 24
+ offset: 0, 0
+ index: -1
+21871
+ rotate: false
+ xy: 842, 292
+ size: 44, 46
+ orig: 44, 46
+ offset: 0, 0
+ index: -1
+21949
+ rotate: false
+ xy: 701, 6
+ size: 26, 20
+ orig: 26, 20
+ offset: 0, 0
+ index: -1
+23682
+ rotate: false
+ xy: 264, 96
+ size: 275, 134
+ orig: 275, 134
+ offset: 0, 0
+ index: -1
+23739
+ rotate: false
+ xy: 542, 656
+ size: 42, 15
+ orig: 42, 15
+ offset: 0, 0
+ index: -1
+23769
+ rotate: false
+ xy: 455, 27
+ size: 84, 15
+ orig: 84, 15
+ offset: 0, 0
+ index: -1
+23776
+ rotate: false
+ xy: 729, 11
+ size: 110, 15
+ orig: 110, 15
+ offset: 0, 0
+ index: -1
+23793
+ rotate: false
+ xy: 455, 10
+ size: 84, 15
+ orig: 84, 15
+ offset: 0, 0
+ index: -1
+23821
+ rotate: false
+ xy: 924, 835
+ size: 98, 15
+ orig: 98, 15
+ offset: 0, 0
+ index: -1
+2838
+ rotate: false
+ xy: 341, 44
+ size: 198, 50
+ orig: 198, 50
+ offset: 0, 0
+ index: -1
+292
+ rotate: false
+ xy: 586, 650
+ size: 80, 170
+ orig: 80, 170
+ offset: 0, 0
+ index: -1
+3125
+ rotate: false
+ xy: 264, 336
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3128
+ rotate: false
+ xy: 264, 284
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3198
+ rotate: false
+ xy: 264, 232
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3201
+ rotate: false
+ xy: 1003, 116
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3202
+ rotate: false
+ xy: 1003, 64
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3205
+ rotate: false
+ xy: 1003, 12
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+33
+ rotate: false
+ xy: 542, 460
+ size: 256, 188
+ orig: 256, 188
+ offset: 0, 0
+ index: -1
+4083
+ rotate: false
+ xy: 637, 6
+ size: 30, 20
+ orig: 30, 20
+ offset: 0, 0
+ index: -1
+4086
+ rotate: false
+ xy: 669, 6
+ size: 30, 20
+ orig: 30, 20
+ offset: 0, 0
+ index: -1
+446
+ rotate: false
+ xy: 175, 2
+ size: 80, 48
+ orig: 80, 48
+ offset: 0, 0
+ index: -1
+4503
+ rotate: false
+ xy: 284, 270
+ size: 256, 185
+ orig: 256, 185
+ offset: 0, 0
+ index: -1
+4542
+ rotate: false
+ xy: 542, 184
+ size: 298, 154
+ orig: 298, 154
+ offset: 0, 0
+ index: -1
+4543
+ rotate: false
+ xy: 541, 28
+ size: 298, 154
+ orig: 298, 154
+ offset: 0, 0
+ index: -1
+4817
+ rotate: false
+ xy: 800, 602
+ size: 220, 50
+ orig: 220, 50
+ offset: 0, 0
+ index: -1
+4899
+ rotate: false
+ xy: 284, 457
+ size: 256, 214
+ orig: 256, 214
+ offset: 0, 0
+ index: -1
+4970
+ rotate: false
+ xy: 953, 460
+ size: 62, 85
+ orig: 62, 85
+ offset: 0, 0
+ index: -1
+552
+ rotate: false
+ xy: 284, 821
+ size: 63, 32
+ orig: 63, 32
+ offset: 0, 0
+ index: -1
+5763
+ rotate: false
+ xy: 284, 855
+ size: 63, 47
+ orig: 63, 47
+ offset: 0, 0
+ index: -1
+633
+ rotate: false
+ xy: 283, 236
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+640
+ rotate: false
+ xy: 283, 236
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6692
+ rotate: false
+ xy: 283, 236
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6705
+ rotate: false
+ xy: 283, 236
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7959
+ rotate: false
+ xy: 283, 236
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8181
+ rotate: false
+ xy: 283, 236
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+73
+ rotate: false
+ xy: 950, 768
+ size: 72, 65
+ orig: 72, 65
+ offset: 0, 0
+ index: -1
+8546
+ rotate: false
+ xy: 2, 2
+ size: 171, 48
+ orig: 171, 48
+ offset: 0, 0
+ index: -1
+8557
+ rotate: false
+ xy: 842, 230
+ size: 178, 60
+ orig: 178, 60
+ offset: 0, 0
+ index: -1
+8559
+ rotate: false
+ xy: 842, 168
+ size: 178, 60
+ orig: 178, 60
+ offset: 0, 0
+ index: -1
+9565
+ rotate: false
+ xy: 264, 4
+ size: 75, 90
+ orig: 75, 90
+ offset: 0, 0
+ index: -1
+
+images36.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+11960
+ rotate: false
+ xy: 2, 732
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+11965
+ rotate: false
+ xy: 511, 852
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+11968
+ rotate: false
+ xy: 2, 560
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+11973
+ rotate: false
+ xy: 2, 388
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+12664
+ rotate: false
+ xy: 2, 216
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+12669
+ rotate: false
+ xy: 638, 680
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+12672
+ rotate: false
+ xy: 2, 44
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+129
+ rotate: false
+ xy: 150, 2
+ size: 30, 40
+ orig: 30, 40
+ offset: 0, 0
+ index: -1
+149
+ rotate: false
+ xy: 349, 852
+ size: 160, 170
+ orig: 160, 170
+ offset: 0, 0
+ index: -1
+152
+ rotate: false
+ xy: 793, 852
+ size: 160, 170
+ orig: 160, 170
+ offset: 0, 0
+ index: -1
+18277
+ rotate: false
+ xy: 284, 537
+ size: 184, 166
+ orig: 184, 166
+ offset: 0, 0
+ index: -1
+19475
+ rotate: false
+ xy: 784, 252
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19564
+ rotate: false
+ xy: 2, 904
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+1973
+ rotate: false
+ xy: 576, 680
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+1974
+ rotate: false
+ xy: 955, 852
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+20488
+ rotate: false
+ xy: 284, 705
+ size: 290, 145
+ orig: 290, 145
+ offset: 0, 0
+ index: -1
+20489
+ rotate: false
+ xy: 542, 392
+ size: 290, 145
+ orig: 290, 145
+ offset: 0, 0
+ index: -1
+21952
+ rotate: false
+ xy: 339, 4
+ size: 25, 20
+ orig: 25, 20
+ offset: 0, 0
+ index: -1
+21953
+ rotate: false
+ xy: 283, 4
+ size: 26, 20
+ orig: 26, 20
+ offset: 0, 0
+ index: -1
+21956
+ rotate: false
+ xy: 366, 4
+ size: 25, 20
+ orig: 25, 20
+ offset: 0, 0
+ index: -1
+21957
+ rotate: false
+ xy: 311, 4
+ size: 26, 20
+ orig: 26, 20
+ offset: 0, 0
+ index: -1
+21960
+ rotate: false
+ xy: 393, 4
+ size: 25, 20
+ orig: 25, 20
+ offset: 0, 0
+ index: -1
+22911
+ rotate: false
+ xy: 576, 622
+ size: 165, 56
+ orig: 165, 56
+ offset: 0, 0
+ index: -1
+23823
+ rotate: false
+ xy: 420, 9
+ size: 120, 15
+ orig: 120, 15
+ offset: 0, 0
+ index: -1
+23846
+ rotate: false
+ xy: 182, 10
+ size: 99, 15
+ orig: 99, 15
+ offset: 0, 0
+ index: -1
+23847
+ rotate: false
+ xy: 669, 31
+ size: 113, 15
+ orig: 113, 15
+ offset: 0, 0
+ index: -1
+23874
+ rotate: false
+ xy: 669, 14
+ size: 113, 15
+ orig: 113, 15
+ offset: 0, 0
+ index: -1
+23887
+ rotate: false
+ xy: 998, 377
+ size: 24, 15
+ orig: 24, 15
+ offset: 0, 0
+ index: -1
+23908
+ rotate: false
+ xy: 784, 375
+ size: 48, 15
+ orig: 48, 15
+ offset: 0, 0
+ index: -1
+23954
+ rotate: false
+ xy: 182, 27
+ size: 100, 15
+ orig: 100, 15
+ offset: 0, 0
+ index: -1
+2465
+ rotate: false
+ xy: 998, 494
+ size: 24, 48
+ orig: 24, 48
+ offset: 0, 0
+ index: -1
+2468
+ rotate: false
+ xy: 998, 444
+ size: 24, 48
+ orig: 24, 48
+ offset: 0, 0
+ index: -1
+2471
+ rotate: false
+ xy: 998, 394
+ size: 24, 48
+ orig: 24, 48
+ offset: 0, 0
+ index: -1
+2629
+ rotate: false
+ xy: 606, 2
+ size: 61, 44
+ orig: 61, 44
+ offset: 0, 0
+ index: -1
+2877
+ rotate: false
+ xy: 284, 852
+ size: 60, 50
+ orig: 60, 50
+ offset: 0, 0
+ index: -1
+2880
+ rotate: false
+ xy: 784, 200
+ size: 237, 50
+ orig: 237, 50
+ offset: 0, 0
+ index: -1
+2881
+ rotate: false
+ xy: 784, 148
+ size: 237, 50
+ orig: 237, 50
+ offset: 0, 0
+ index: -1
+2888
+ rotate: false
+ xy: 784, 96
+ size: 237, 50
+ orig: 237, 50
+ offset: 0, 0
+ index: -1
+2889
+ rotate: false
+ xy: 784, 44
+ size: 237, 50
+ orig: 237, 50
+ offset: 0, 0
+ index: -1
+289
+ rotate: false
+ xy: 542, 220
+ size: 240, 170
+ orig: 240, 170
+ offset: 0, 0
+ index: -1
+294
+ rotate: false
+ xy: 542, 48
+ size: 240, 170
+ orig: 240, 170
+ offset: 0, 0
+ index: -1
+296
+ rotate: false
+ xy: 920, 680
+ size: 80, 170
+ orig: 80, 170
+ offset: 0, 0
+ index: -1
+298
+ rotate: false
+ xy: 834, 372
+ size: 80, 170
+ orig: 80, 170
+ offset: 0, 0
+ index: -1
+302
+ rotate: false
+ xy: 916, 372
+ size: 80, 170
+ orig: 80, 170
+ offset: 0, 0
+ index: -1
+3206
+ rotate: false
+ xy: 1002, 800
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3209
+ rotate: false
+ xy: 1002, 748
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3210
+ rotate: false
+ xy: 1002, 696
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3284
+ rotate: false
+ xy: 743, 578
+ size: 279, 100
+ orig: 279, 100
+ offset: 0, 0
+ index: -1
+34
+ rotate: false
+ xy: 284, 188
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+41
+ rotate: false
+ xy: 882, 7
+ size: 140, 35
+ orig: 140, 35
+ offset: 0, 0
+ index: -1
+439
+ rotate: false
+ xy: 284, 26
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+13952
+ rotate: false
+ xy: 284, 26
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+4872
+ rotate: false
+ xy: 284, 350
+ size: 256, 185
+ orig: 256, 185
+ offset: 0, 0
+ index: -1
+4892
+ rotate: false
+ xy: 840, 2
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+4929
+ rotate: false
+ xy: 44, 2
+ size: 34, 40
+ orig: 34, 40
+ offset: 0, 0
+ index: -1
+4930
+ rotate: false
+ xy: 80, 2
+ size: 34, 40
+ orig: 34, 40
+ offset: 0, 0
+ index: -1
+496
+ rotate: false
+ xy: 116, 2
+ size: 32, 40
+ orig: 32, 40
+ offset: 0, 0
+ index: -1
+6757
+ rotate: false
+ xy: 2, 2
+ size: 40, 40
+ orig: 40, 40
+ offset: 0, 0
+ index: -1
+7035
+ rotate: false
+ xy: 470, 622
+ size: 104, 81
+ orig: 104, 81
+ offset: 0, 0
+ index: -1
+7038
+ rotate: false
+ xy: 628, 539
+ size: 104, 81
+ orig: 104, 81
+ offset: 0, 0
+ index: -1
+7068
+ rotate: false
+ xy: 470, 539
+ size: 156, 81
+ orig: 156, 81
+ offset: 0, 0
+ index: -1
+867
+ rotate: false
+ xy: 542, 2
+ size: 62, 44
+ orig: 62, 44
+ offset: 0, 0
+ index: -1
+871
+ rotate: false
+ xy: 784, 2
+ size: 54, 40
+ orig: 54, 40
+ offset: 0, 0
+ index: -1
+8742
+ rotate: false
+ xy: 734, 544
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+
+images37.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10330
+ rotate: false
+ xy: 783, 181
+ size: 239, 75
+ orig: 239, 75
+ offset: 0, 0
+ index: -1
+10339
+ rotate: false
+ xy: 783, 104
+ size: 239, 75
+ orig: 239, 75
+ offset: 0, 0
+ index: -1
+17977
+ rotate: false
+ xy: 646, 285
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+17978
+ rotate: false
+ xy: 646, 155
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+18202
+ rotate: false
+ xy: 2, 2
+ size: 260, 166
+ orig: 260, 166
+ offset: 0, 0
+ index: -1
+18243
+ rotate: false
+ xy: 324, 2
+ size: 151, 140
+ orig: 151, 140
+ offset: 0, 0
+ index: -1
+18249
+ rotate: false
+ xy: 477, 2
+ size: 151, 140
+ orig: 151, 140
+ offset: 0, 0
+ index: -1
+18255
+ rotate: false
+ xy: 630, 2
+ size: 151, 140
+ orig: 151, 140
+ offset: 0, 0
+ index: -1
+19567
+ rotate: false
+ xy: 2, 904
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19572
+ rotate: false
+ xy: 349, 904
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+19575
+ rotate: false
+ xy: 2, 784
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+2193
+ rotate: false
+ xy: 264, 133
+ size: 58, 35
+ orig: 58, 35
+ offset: 0, 0
+ index: -1
+2201
+ rotate: false
+ xy: 264, 96
+ size: 58, 35
+ orig: 58, 35
+ offset: 0, 0
+ index: -1
+2209
+ rotate: false
+ xy: 264, 59
+ size: 58, 35
+ orig: 58, 35
+ offset: 0, 0
+ index: -1
+2214
+ rotate: false
+ xy: 696, 968
+ size: 320, 54
+ orig: 320, 54
+ offset: 0, 0
+ index: -1
+2221
+ rotate: false
+ xy: 696, 912
+ size: 320, 54
+ orig: 320, 54
+ offset: 0, 0
+ index: -1
+2222
+ rotate: false
+ xy: 696, 856
+ size: 320, 54
+ orig: 320, 54
+ offset: 0, 0
+ index: -1
+2229
+ rotate: false
+ xy: 696, 800
+ size: 320, 54
+ orig: 320, 54
+ offset: 0, 0
+ index: -1
+2230
+ rotate: false
+ xy: 696, 744
+ size: 320, 54
+ orig: 320, 54
+ offset: 0, 0
+ index: -1
+2237
+ rotate: false
+ xy: 696, 688
+ size: 320, 54
+ orig: 320, 54
+ offset: 0, 0
+ index: -1
+2238
+ rotate: false
+ xy: 696, 632
+ size: 320, 54
+ orig: 320, 54
+ offset: 0, 0
+ index: -1
+22946
+ rotate: false
+ xy: 349, 784
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+22949
+ rotate: false
+ xy: 2, 664
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+22954
+ rotate: false
+ xy: 349, 664
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+22957
+ rotate: false
+ xy: 2, 544
+ size: 345, 118
+ orig: 345, 118
+ offset: 0, 0
+ index: -1
+23813
+ rotate: false
+ xy: 661, 467
+ size: 23, 15
+ orig: 23, 15
+ offset: 0, 0
+ index: -1
+2626
+ rotate: false
+ xy: 264, 2
+ size: 53, 55
+ orig: 53, 55
+ offset: 0, 0
+ index: -1
+3213
+ rotate: false
+ xy: 661, 415
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3214
+ rotate: false
+ xy: 1002, 376
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3217
+ rotate: false
+ xy: 1002, 324
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3218
+ rotate: false
+ xy: 1002, 272
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3285
+ rotate: false
+ xy: 687, 530
+ size: 335, 100
+ orig: 335, 100
+ offset: 0, 0
+ index: -1
+3294
+ rotate: false
+ xy: 349, 484
+ size: 335, 100
+ orig: 335, 100
+ offset: 0, 0
+ index: -1
+3296
+ rotate: false
+ xy: 783, 2
+ size: 223, 100
+ orig: 223, 100
+ offset: 0, 0
+ index: -1
+3862
+ rotate: false
+ xy: 686, 428
+ size: 335, 100
+ orig: 335, 100
+ offset: 0, 0
+ index: -1
+3871
+ rotate: false
+ xy: 2, 442
+ size: 335, 100
+ orig: 335, 100
+ offset: 0, 0
+ index: -1
+415
+ rotate: false
+ xy: 349, 586
+ size: 336, 76
+ orig: 336, 76
+ offset: 0, 0
+ index: -1
+4396
+ rotate: false
+ xy: 680, 156
+ size: 101, 100
+ orig: 101, 100
+ offset: 0, 0
+ index: -1
+8705
+ rotate: false
+ xy: 339, 450
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8706
+ rotate: false
+ xy: 339, 416
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8708
+ rotate: false
+ xy: 2, 408
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8743
+ rotate: false
+ xy: 324, 382
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8745
+ rotate: false
+ xy: 2, 374
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8746
+ rotate: false
+ xy: 680, 394
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8748
+ rotate: false
+ xy: 324, 348
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8783
+ rotate: false
+ xy: 2, 340
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8785
+ rotate: false
+ xy: 324, 314
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8786
+ rotate: false
+ xy: 2, 306
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8788
+ rotate: false
+ xy: 324, 280
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8823
+ rotate: false
+ xy: 2, 272
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8825
+ rotate: false
+ xy: 680, 360
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8826
+ rotate: false
+ xy: 680, 326
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8828
+ rotate: false
+ xy: 680, 292
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8863
+ rotate: false
+ xy: 680, 258
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8865
+ rotate: false
+ xy: 324, 246
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8866
+ rotate: false
+ xy: 2, 238
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8868
+ rotate: false
+ xy: 324, 212
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8903
+ rotate: false
+ xy: 2, 204
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8905
+ rotate: false
+ xy: 324, 178
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8906
+ rotate: false
+ xy: 2, 170
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8908
+ rotate: false
+ xy: 324, 144
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+
+images38.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10355
+ rotate: false
+ xy: 2, 635
+ size: 295, 75
+ orig: 295, 75
+ offset: 0, 0
+ index: -1
+10384
+ rotate: false
+ xy: 925, 697
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+12081
+ rotate: false
+ xy: 968, 835
+ size: 54, 52
+ orig: 54, 52
+ offset: 0, 0
+ index: -1
+12149
+ rotate: false
+ xy: 2, 471
+ size: 294, 75
+ orig: 294, 75
+ offset: 0, 0
+ index: -1
+12158
+ rotate: false
+ xy: 614, 509
+ size: 294, 75
+ orig: 294, 75
+ offset: 0, 0
+ index: -1
+12166
+ rotate: false
+ xy: 622, 673
+ size: 295, 75
+ orig: 295, 75
+ offset: 0, 0
+ index: -1
+12175
+ rotate: false
+ xy: 320, 627
+ size: 295, 75
+ orig: 295, 75
+ offset: 0, 0
+ index: -1
+12677
+ rotate: false
+ xy: 2, 5
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+12680
+ rotate: false
+ xy: 284, 5
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+142
+ rotate: false
+ xy: 901, 393
+ size: 120, 85
+ orig: 120, 85
+ offset: 0, 0
+ index: -1
+18993
+ rotate: false
+ xy: 818, 11
+ size: 17, 28
+ orig: 17, 28
+ offset: 0, 0
+ index: -1
+1963
+ rotate: false
+ xy: 968, 955
+ size: 54, 67
+ orig: 54, 67
+ offset: 0, 0
+ index: -1
+20492
+ rotate: false
+ xy: 317, 393
+ size: 290, 145
+ orig: 290, 145
+ offset: 0, 0
+ index: -1
+20493
+ rotate: false
+ xy: 2, 324
+ size: 290, 145
+ orig: 290, 145
+ offset: 0, 0
+ index: -1
+20496
+ rotate: false
+ xy: 609, 362
+ size: 290, 145
+ orig: 290, 145
+ offset: 0, 0
+ index: -1
+20497
+ rotate: false
+ xy: 313, 246
+ size: 290, 145
+ orig: 290, 145
+ offset: 0, 0
+ index: -1
+20500
+ rotate: false
+ xy: 2, 177
+ size: 290, 145
+ orig: 290, 145
+ offset: 0, 0
+ index: -1
+2115
+ rotate: false
+ xy: 313, 177
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+2116
+ rotate: false
+ xy: 509, 177
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+2183
+ rotate: false
+ xy: 656, 4
+ size: 160, 35
+ orig: 160, 35
+ offset: 0, 0
+ index: -1
+2187
+ rotate: false
+ xy: 919, 660
+ size: 102, 35
+ orig: 102, 35
+ offset: 0, 0
+ index: -1
+2192
+ rotate: false
+ xy: 913, 623
+ size: 109, 35
+ orig: 109, 35
+ offset: 0, 0
+ index: -1
+2200
+ rotate: false
+ xy: 913, 586
+ size: 109, 35
+ orig: 109, 35
+ offset: 0, 0
+ index: -1
+2313
+ rotate: false
+ xy: 2, 764
+ size: 300, 54
+ orig: 300, 54
+ offset: 0, 0
+ index: -1
+23654
+ rotate: false
+ xy: 605, 246
+ size: 236, 114
+ orig: 236, 114
+ offset: 0, 0
+ index: -1
+23685
+ rotate: false
+ xy: 566, 41
+ size: 275, 134
+ orig: 275, 134
+ offset: 0, 0
+ index: -1
+23693
+ rotate: false
+ xy: 843, 3
+ size: 143, 118
+ orig: 143, 118
+ offset: 0, 0
+ index: -1
+23809
+ rotate: false
+ xy: 988, 2
+ size: 33, 15
+ orig: 33, 15
+ offset: 0, 0
+ index: -1
+23867
+ rotate: false
+ xy: 925, 837
+ size: 41, 15
+ orig: 41, 15
+ offset: 0, 0
+ index: -1
+23952
+ rotate: false
+ xy: 901, 376
+ size: 120, 15
+ orig: 120, 15
+ offset: 0, 0
+ index: -1
+2397
+ rotate: false
+ xy: 910, 533
+ size: 112, 51
+ orig: 112, 51
+ offset: 0, 0
+ index: -1
+2398
+ rotate: false
+ xy: 910, 480
+ size: 112, 51
+ orig: 112, 51
+ offset: 0, 0
+ index: -1
+2403
+ rotate: false
+ xy: 843, 309
+ size: 56, 51
+ orig: 56, 51
+ offset: 0, 0
+ index: -1
+2851
+ rotate: false
+ xy: 2, 712
+ size: 297, 50
+ orig: 297, 50
+ offset: 0, 0
+ index: -1
+2852
+ rotate: false
+ xy: 626, 802
+ size: 297, 50
+ orig: 297, 50
+ offset: 0, 0
+ index: -1
+2857
+ rotate: false
+ xy: 626, 750
+ size: 297, 50
+ orig: 297, 50
+ offset: 0, 0
+ index: -1
+2858
+ rotate: false
+ xy: 323, 704
+ size: 297, 50
+ orig: 297, 50
+ offset: 0, 0
+ index: -1
+2886
+ rotate: false
+ xy: 901, 324
+ size: 119, 50
+ orig: 119, 50
+ offset: 0, 0
+ index: -1
+3030
+ rotate: false
+ xy: 988, 71
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3033
+ rotate: false
+ xy: 988, 19
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3063
+ rotate: false
+ xy: 925, 766
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+309
+ rotate: false
+ xy: 968, 889
+ size: 54, 64
+ orig: 54, 64
+ offset: 0, 0
+ index: -1
+3221
+ rotate: false
+ xy: 304, 768
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3222
+ rotate: false
+ xy: 304, 716
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3225
+ rotate: false
+ xy: 301, 664
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3301
+ rotate: false
+ xy: 299, 612
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3304
+ rotate: false
+ xy: 298, 560
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3305
+ rotate: false
+ xy: 298, 508
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3308
+ rotate: false
+ xy: 298, 456
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3795
+ rotate: false
+ xy: 294, 404
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3798
+ rotate: false
+ xy: 294, 352
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3799
+ rotate: false
+ xy: 294, 300
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3802
+ rotate: false
+ xy: 294, 248
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3803
+ rotate: false
+ xy: 294, 196
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+4886
+ rotate: false
+ xy: 566, 2
+ size: 45, 37
+ orig: 45, 37
+ offset: 0, 0
+ index: -1
+4887
+ rotate: false
+ xy: 324, 756
+ size: 300, 96
+ orig: 300, 96
+ offset: 0, 0
+ index: -1
+492
+ rotate: false
+ xy: 613, 2
+ size: 41, 37
+ orig: 41, 37
+ offset: 0, 0
+ index: -1
+666
+ rotate: false
+ xy: 705, 180
+ size: 136, 64
+ orig: 136, 64
+ offset: 0, 0
+ index: -1
+7179
+ rotate: false
+ xy: 2, 548
+ size: 294, 85
+ orig: 294, 85
+ offset: 0, 0
+ index: -1
+7185
+ rotate: false
+ xy: 617, 586
+ size: 294, 85
+ orig: 294, 85
+ offset: 0, 0
+ index: -1
+7191
+ rotate: false
+ xy: 318, 540
+ size: 294, 85
+ orig: 294, 85
+ offset: 0, 0
+ index: -1
+8563
+ rotate: false
+ xy: 843, 247
+ size: 178, 60
+ orig: 178, 60
+ offset: 0, 0
+ index: -1
+8565
+ rotate: false
+ xy: 843, 185
+ size: 178, 60
+ orig: 178, 60
+ offset: 0, 0
+ index: -1
+8569
+ rotate: false
+ xy: 843, 123
+ size: 178, 60
+ orig: 178, 60
+ offset: 0, 0
+ index: -1
+8943
+ rotate: false
+ xy: 2, 990
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8945
+ rotate: false
+ xy: 324, 990
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8946
+ rotate: false
+ xy: 646, 990
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8948
+ rotate: false
+ xy: 2, 956
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8983
+ rotate: false
+ xy: 324, 956
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8985
+ rotate: false
+ xy: 646, 956
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8986
+ rotate: false
+ xy: 2, 922
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+8988
+ rotate: false
+ xy: 324, 922
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+9023
+ rotate: false
+ xy: 646, 922
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+9025
+ rotate: false
+ xy: 2, 888
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+9026
+ rotate: false
+ xy: 324, 888
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+9028
+ rotate: false
+ xy: 646, 888
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+9063
+ rotate: false
+ xy: 2, 854
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+9065
+ rotate: false
+ xy: 324, 854
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+9066
+ rotate: false
+ xy: 646, 854
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+9068
+ rotate: false
+ xy: 2, 820
+ size: 320, 32
+ orig: 320, 32
+ offset: 0, 0
+ index: -1
+
+images39.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10326
+ rotate: false
+ xy: 872, 646
+ size: 150, 75
+ orig: 150, 75
+ offset: 0, 0
+ index: -1
+10329
+ rotate: false
+ xy: 586, 947
+ size: 289, 75
+ orig: 289, 75
+ offset: 0, 0
+ index: -1
+10335
+ rotate: false
+ xy: 872, 569
+ size: 150, 75
+ orig: 150, 75
+ offset: 0, 0
+ index: -1
+10338
+ rotate: false
+ xy: 294, 876
+ size: 289, 75
+ orig: 289, 75
+ offset: 0, 0
+ index: -1
+12152
+ rotate: false
+ xy: 875, 800
+ size: 147, 75
+ orig: 147, 75
+ offset: 0, 0
+ index: -1
+17603
+ rotate: false
+ xy: 2, 649
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17604
+ rotate: false
+ xy: 582, 621
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17609
+ rotate: false
+ xy: 292, 582
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17610
+ rotate: false
+ xy: 582, 523
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17615
+ rotate: false
+ xy: 2, 551
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17616
+ rotate: false
+ xy: 292, 484
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17621
+ rotate: false
+ xy: 582, 425
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17622
+ rotate: false
+ xy: 2, 453
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17631
+ rotate: false
+ xy: 292, 386
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17632
+ rotate: false
+ xy: 582, 327
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17637
+ rotate: false
+ xy: 2, 355
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17638
+ rotate: false
+ xy: 292, 288
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17643
+ rotate: false
+ xy: 582, 229
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17644
+ rotate: false
+ xy: 2, 257
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17649
+ rotate: false
+ xy: 292, 190
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+17650
+ rotate: false
+ xy: 2, 159
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+186
+ rotate: false
+ xy: 292, 778
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+191
+ rotate: false
+ xy: 582, 719
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+20402
+ rotate: false
+ xy: 864, 5
+ size: 158, 120
+ orig: 158, 120
+ offset: 0, 0
+ index: -1
+20501
+ rotate: false
+ xy: 2, 877
+ size: 290, 145
+ orig: 290, 145
+ offset: 0, 0
+ index: -1
+21961
+ rotate: false
+ xy: 55, 2
+ size: 26, 19
+ orig: 26, 19
+ offset: 0, 0
+ index: -1
+21963
+ rotate: false
+ xy: 2, 2
+ size: 51, 19
+ orig: 51, 19
+ offset: 0, 0
+ index: -1
+21964
+ rotate: false
+ xy: 83, 2
+ size: 25, 19
+ orig: 25, 19
+ offset: 0, 0
+ index: -1
+2263
+ rotate: false
+ xy: 872, 183
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+2264
+ rotate: false
+ xy: 872, 131
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+23692
+ rotate: false
+ xy: 292, 2
+ size: 284, 118
+ orig: 284, 118
+ offset: 0, 0
+ index: -1
+23698
+ rotate: false
+ xy: 578, 2
+ size: 284, 118
+ orig: 284, 118
+ offset: 0, 0
+ index: -1
+23716
+ rotate: false
+ xy: 872, 299
+ size: 150, 62
+ orig: 150, 62
+ offset: 0, 0
+ index: -1
+23717
+ rotate: false
+ xy: 872, 235
+ size: 150, 62
+ orig: 150, 62
+ offset: 0, 0
+ index: -1
+23721
+ rotate: false
+ xy: 872, 430
+ size: 150, 65
+ orig: 150, 65
+ offset: 0, 0
+ index: -1
+23722
+ rotate: false
+ xy: 872, 363
+ size: 150, 65
+ orig: 150, 65
+ offset: 0, 0
+ index: -1
+23790
+ rotate: false
+ xy: 236, 6
+ size: 54, 15
+ orig: 54, 15
+ offset: 0, 0
+ index: -1
+239
+ rotate: false
+ xy: 877, 877
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+23925
+ rotate: false
+ xy: 110, 6
+ size: 124, 15
+ orig: 124, 15
+ offset: 0, 0
+ index: -1
+4865
+ rotate: false
+ xy: 294, 953
+ size: 290, 69
+ orig: 290, 69
+ offset: 0, 0
+ index: -1
+4897
+ rotate: false
+ xy: 872, 723
+ size: 150, 75
+ orig: 150, 75
+ offset: 0, 0
+ index: -1
+5946
+ rotate: false
+ xy: 2, 747
+ size: 288, 128
+ orig: 288, 128
+ offset: 0, 0
+ index: -1
+5951
+ rotate: false
+ xy: 585, 817
+ size: 288, 128
+ orig: 288, 128
+ offset: 0, 0
+ index: -1
+71
+ rotate: false
+ xy: 872, 497
+ size: 150, 70
+ orig: 150, 70
+ offset: 0, 0
+ index: -1
+8168
+ rotate: false
+ xy: 292, 680
+ size: 288, 96
+ orig: 288, 96
+ offset: 0, 0
+ index: -1
+8744
+ rotate: false
+ xy: 582, 195
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8747
+ rotate: false
+ xy: 582, 161
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8749
+ rotate: false
+ xy: 292, 156
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8782
+ rotate: false
+ xy: 2, 125
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8784
+ rotate: false
+ xy: 582, 127
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8787
+ rotate: false
+ xy: 292, 122
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8789
+ rotate: false
+ xy: 2, 91
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8822
+ rotate: false
+ xy: 2, 57
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8824
+ rotate: false
+ xy: 2, 23
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+
+images40.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+12033
+ rotate: false
+ xy: 870, 556
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+12034
+ rotate: false
+ xy: 870, 504
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+12037
+ rotate: false
+ xy: 870, 452
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+12038
+ rotate: false
+ xy: 870, 400
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+12041
+ rotate: false
+ xy: 870, 348
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+12042
+ rotate: false
+ xy: 870, 296
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+12045
+ rotate: false
+ xy: 870, 244
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+12046
+ rotate: false
+ xy: 870, 192
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+12292
+ rotate: false
+ xy: 980, 48
+ size: 42, 55
+ orig: 42, 55
+ offset: 0, 0
+ index: -1
+12685
+ rotate: false
+ xy: 2, 540
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+12688
+ rotate: false
+ xy: 2, 368
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+12693
+ rotate: false
+ xy: 2, 196
+ size: 280, 170
+ orig: 280, 170
+ offset: 0, 0
+ index: -1
+12735
+ rotate: false
+ xy: 628, 124
+ size: 195, 66
+ orig: 195, 66
+ offset: 0, 0
+ index: -1
+13914
+ rotate: false
+ xy: 2, 712
+ size: 111, 38
+ orig: 111, 38
+ offset: 0, 0
+ index: -1
+13915
+ rotate: false
+ xy: 115, 712
+ size: 111, 38
+ orig: 111, 38
+ offset: 0, 0
+ index: -1
+13920
+ rotate: false
+ xy: 228, 712
+ size: 111, 38
+ orig: 111, 38
+ offset: 0, 0
+ index: -1
+17922
+ rotate: false
+ xy: 341, 2
+ size: 70, 120
+ orig: 70, 120
+ offset: 0, 0
+ index: -1
+1942
+ rotate: false
+ xy: 284, 207
+ size: 55, 53
+ orig: 55, 53
+ offset: 0, 0
+ index: -1
+20403
+ rotate: false
+ xy: 2, 2
+ size: 158, 120
+ orig: 158, 120
+ offset: 0, 0
+ index: -1
+20404
+ rotate: false
+ xy: 162, 2
+ size: 79, 120
+ orig: 79, 120
+ offset: 0, 0
+ index: -1
+2215
+ rotate: false
+ xy: 628, 248
+ size: 240, 54
+ orig: 240, 54
+ offset: 0, 0
+ index: -1
+2220
+ rotate: false
+ xy: 628, 192
+ size: 240, 54
+ orig: 240, 54
+ offset: 0, 0
+ index: -1
+2267
+ rotate: false
+ xy: 872, 972
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+2268
+ rotate: false
+ xy: 872, 920
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+2271
+ rotate: false
+ xy: 872, 868
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+2272
+ rotate: false
+ xy: 872, 816
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+2275
+ rotate: false
+ xy: 872, 764
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+2276
+ rotate: false
+ xy: 872, 712
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+22834
+ rotate: false
+ xy: 2, 124
+ size: 252, 70
+ orig: 252, 70
+ offset: 0, 0
+ index: -1
+22902
+ rotate: false
+ xy: 284, 552
+ size: 55, 56
+ orig: 55, 56
+ offset: 0, 0
+ index: -1
+22907
+ rotate: false
+ xy: 284, 494
+ size: 55, 56
+ orig: 55, 56
+ offset: 0, 0
+ index: -1
+22908
+ rotate: false
+ xy: 284, 436
+ size: 55, 56
+ orig: 55, 56
+ offset: 0, 0
+ index: -1
+22913
+ rotate: false
+ xy: 284, 378
+ size: 55, 56
+ orig: 55, 56
+ offset: 0, 0
+ index: -1
+22914
+ rotate: false
+ xy: 284, 320
+ size: 55, 56
+ orig: 55, 56
+ offset: 0, 0
+ index: -1
+22919
+ rotate: false
+ xy: 284, 262
+ size: 55, 56
+ orig: 55, 56
+ offset: 0, 0
+ index: -1
+23701
+ rotate: false
+ xy: 413, 4
+ size: 284, 118
+ orig: 284, 118
+ offset: 0, 0
+ index: -1
+23758
+ rotate: false
+ xy: 980, 31
+ size: 42, 15
+ orig: 42, 15
+ offset: 0, 0
+ index: -1
+23773
+ rotate: false
+ xy: 699, 107
+ size: 123, 15
+ orig: 123, 15
+ offset: 0, 0
+ index: -1
+23885
+ rotate: false
+ xy: 980, 14
+ size: 41, 15
+ orig: 41, 15
+ offset: 0, 0
+ index: -1
+2896
+ rotate: false
+ xy: 631, 700
+ size: 237, 50
+ orig: 237, 50
+ offset: 0, 0
+ index: -1
+2897
+ rotate: false
+ xy: 631, 648
+ size: 237, 50
+ orig: 237, 50
+ offset: 0, 0
+ index: -1
+300
+ rotate: false
+ xy: 628, 476
+ size: 240, 170
+ orig: 240, 170
+ offset: 0, 0
+ index: -1
+305
+ rotate: false
+ xy: 628, 304
+ size: 240, 170
+ orig: 240, 170
+ offset: 0, 0
+ index: -1
+3295
+ rotate: false
+ xy: 699, 3
+ size: 279, 100
+ orig: 279, 100
+ offset: 0, 0
+ index: -1
+3876
+ rotate: false
+ xy: 284, 610
+ size: 55, 100
+ orig: 55, 100
+ offset: 0, 0
+ index: -1
+389
+ rotate: false
+ xy: 284, 155
+ size: 55, 50
+ orig: 55, 50
+ offset: 0, 0
+ index: -1
+3984
+ rotate: false
+ xy: 870, 660
+ size: 152, 50
+ orig: 152, 50
+ offset: 0, 0
+ index: -1
+3990
+ rotate: false
+ xy: 870, 608
+ size: 152, 50
+ orig: 152, 50
+ offset: 0, 0
+ index: -1
+448
+ rotate: false
+ xy: 256, 162
+ size: 26, 32
+ orig: 26, 32
+ offset: 0, 0
+ index: -1
+483
+ rotate: false
+ xy: 256, 108
+ size: 83, 45
+ orig: 83, 45
+ offset: 0, 0
+ index: -1
+5923
+ rotate: false
+ xy: 341, 572
+ size: 285, 110
+ orig: 285, 110
+ offset: 0, 0
+ index: -1
+5928
+ rotate: false
+ xy: 341, 460
+ size: 285, 110
+ orig: 285, 110
+ offset: 0, 0
+ index: -1
+5931
+ rotate: false
+ xy: 341, 348
+ size: 285, 110
+ orig: 285, 110
+ offset: 0, 0
+ index: -1
+5935
+ rotate: false
+ xy: 341, 236
+ size: 285, 110
+ orig: 285, 110
+ offset: 0, 0
+ index: -1
+5938
+ rotate: false
+ xy: 341, 124
+ size: 285, 110
+ orig: 285, 110
+ offset: 0, 0
+ index: -1
+7174
+ rotate: false
+ xy: 825, 105
+ size: 196, 85
+ orig: 196, 85
+ offset: 0, 0
+ index: -1
+8827
+ rotate: false
+ xy: 2, 990
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8829
+ rotate: false
+ xy: 292, 990
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8862
+ rotate: false
+ xy: 582, 990
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8864
+ rotate: false
+ xy: 2, 956
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8867
+ rotate: false
+ xy: 292, 956
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8869
+ rotate: false
+ xy: 582, 956
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8902
+ rotate: false
+ xy: 2, 922
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8904
+ rotate: false
+ xy: 292, 922
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8907
+ rotate: false
+ xy: 582, 922
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8909
+ rotate: false
+ xy: 2, 888
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8942
+ rotate: false
+ xy: 292, 888
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8944
+ rotate: false
+ xy: 582, 888
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8947
+ rotate: false
+ xy: 2, 854
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8949
+ rotate: false
+ xy: 292, 854
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8982
+ rotate: false
+ xy: 582, 854
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8984
+ rotate: false
+ xy: 2, 820
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8987
+ rotate: false
+ xy: 292, 820
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+8989
+ rotate: false
+ xy: 582, 820
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+9022
+ rotate: false
+ xy: 2, 786
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+9024
+ rotate: false
+ xy: 292, 786
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+9027
+ rotate: false
+ xy: 582, 786
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+9029
+ rotate: false
+ xy: 2, 752
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+9062
+ rotate: false
+ xy: 292, 752
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+9064
+ rotate: false
+ xy: 582, 752
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+9067
+ rotate: false
+ xy: 341, 718
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+9069
+ rotate: false
+ xy: 341, 684
+ size: 288, 32
+ orig: 288, 32
+ offset: 0, 0
+ index: -1
+9201
+ rotate: false
+ xy: 243, 10
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+
+images41.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+12296
+ rotate: false
+ xy: 518, 657
+ size: 42, 55
+ orig: 42, 55
+ offset: 0, 0
+ index: -1
+12298
+ rotate: false
+ xy: 518, 600
+ size: 42, 55
+ orig: 42, 55
+ offset: 0, 0
+ index: -1
+12302
+ rotate: false
+ xy: 518, 543
+ size: 42, 55
+ orig: 42, 55
+ offset: 0, 0
+ index: -1
+12311
+ rotate: false
+ xy: 518, 486
+ size: 42, 55
+ orig: 42, 55
+ offset: 0, 0
+ index: -1
+12315
+ rotate: false
+ xy: 518, 429
+ size: 42, 55
+ orig: 42, 55
+ offset: 0, 0
+ index: -1
+12317
+ rotate: false
+ xy: 518, 372
+ size: 42, 55
+ orig: 42, 55
+ offset: 0, 0
+ index: -1
+1539
+ rotate: false
+ xy: 562, 726
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+154
+ rotate: false
+ xy: 2, 222
+ size: 160, 170
+ orig: 160, 170
+ offset: 0, 0
+ index: -1
+18195
+ rotate: false
+ xy: 164, 228
+ size: 130, 166
+ orig: 130, 166
+ offset: 0, 0
+ index: -1
+18196
+ rotate: false
+ xy: 164, 60
+ size: 130, 166
+ orig: 130, 166
+ offset: 0, 0
+ index: -1
+18205
+ rotate: false
+ xy: 2, 754
+ size: 260, 166
+ orig: 260, 166
+ offset: 0, 0
+ index: -1
+18206
+ rotate: false
+ xy: 264, 754
+ size: 260, 166
+ orig: 260, 166
+ offset: 0, 0
+ index: -1
+18280
+ rotate: false
+ xy: 332, 424
+ size: 184, 166
+ orig: 184, 166
+ offset: 0, 0
+ index: -1
+1881
+ rotate: false
+ xy: 841, 959
+ size: 181, 63
+ orig: 181, 63
+ offset: 0, 0
+ index: -1
+1890
+ rotate: false
+ xy: 841, 894
+ size: 181, 63
+ orig: 181, 63
+ offset: 0, 0
+ index: -1
+21813
+ rotate: false
+ xy: 554, 112
+ size: 86, 28
+ orig: 86, 28
+ offset: 0, 0
+ index: -1
+21814
+ rotate: false
+ xy: 642, 112
+ size: 86, 28
+ orig: 86, 28
+ offset: 0, 0
+ index: -1
+21817
+ rotate: false
+ xy: 730, 112
+ size: 86, 28
+ orig: 86, 28
+ offset: 0, 0
+ index: -1
+2191
+ rotate: false
+ xy: 2, 13
+ size: 160, 35
+ orig: 160, 35
+ offset: 0, 0
+ index: -1
+2199
+ rotate: false
+ xy: 832, 4
+ size: 160, 35
+ orig: 160, 35
+ offset: 0, 0
+ index: -1
+223
+ rotate: false
+ xy: 562, 272
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+224
+ rotate: false
+ xy: 296, 242
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+227
+ rotate: false
+ xy: 554, 142
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+228
+ rotate: false
+ xy: 296, 112
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+22916
+ rotate: false
+ xy: 164, 2
+ size: 165, 56
+ orig: 165, 56
+ offset: 0, 0
+ index: -1
+22917
+ rotate: false
+ xy: 331, 2
+ size: 165, 56
+ orig: 165, 56
+ offset: 0, 0
+ index: -1
+22921
+ rotate: false
+ xy: 498, 2
+ size: 165, 56
+ orig: 165, 56
+ offset: 0, 0
+ index: -1
+22922
+ rotate: false
+ xy: 665, 2
+ size: 165, 56
+ orig: 165, 56
+ offset: 0, 0
+ index: -1
+23688
+ rotate: false
+ xy: 564, 888
+ size: 275, 134
+ orig: 275, 134
+ offset: 0, 0
+ index: -1
+240
+ rotate: false
+ xy: 2, 396
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+241
+ rotate: false
+ xy: 149, 396
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+276
+ rotate: false
+ xy: 2, 50
+ size: 160, 170
+ orig: 160, 170
+ offset: 0, 0
+ index: -1
+3034
+ rotate: false
+ xy: 526, 870
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3037
+ rotate: false
+ xy: 526, 818
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3038
+ rotate: false
+ xy: 526, 766
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3041
+ rotate: false
+ xy: 526, 714
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3042
+ rotate: false
+ xy: 296, 491
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3045
+ rotate: false
+ xy: 296, 439
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3806
+ rotate: false
+ xy: 820, 836
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3807
+ rotate: false
+ xy: 808, 60
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3861
+ rotate: false
+ xy: 2, 922
+ size: 279, 100
+ orig: 279, 100
+ offset: 0, 0
+ index: -1
+3872
+ rotate: false
+ xy: 283, 922
+ size: 279, 100
+ orig: 279, 100
+ offset: 0, 0
+ index: -1
+3986
+ rotate: false
+ xy: 296, 60
+ size: 254, 50
+ orig: 254, 50
+ offset: 0, 0
+ index: -1
+3988
+ rotate: false
+ xy: 552, 60
+ size: 254, 50
+ orig: 254, 50
+ offset: 0, 0
+ index: -1
+43
+ rotate: false
+ xy: 812, 153
+ size: 210, 35
+ orig: 210, 35
+ offset: 0, 0
+ index: -1
+4393
+ rotate: false
+ xy: 820, 598
+ size: 200, 100
+ orig: 200, 100
+ offset: 0, 0
+ index: -1
+4394
+ rotate: false
+ xy: 820, 496
+ size: 200, 100
+ orig: 200, 100
+ offset: 0, 0
+ index: -1
+4397
+ rotate: false
+ xy: 820, 394
+ size: 200, 100
+ orig: 200, 100
+ offset: 0, 0
+ index: -1
+4398
+ rotate: false
+ xy: 820, 292
+ size: 200, 100
+ orig: 200, 100
+ offset: 0, 0
+ index: -1
+4401
+ rotate: false
+ xy: 820, 190
+ size: 200, 100
+ orig: 200, 100
+ offset: 0, 0
+ index: -1
+4499
+ rotate: false
+ xy: 562, 564
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+4818
+ rotate: false
+ xy: 296, 372
+ size: 220, 50
+ orig: 220, 50
+ offset: 0, 0
+ index: -1
+4878
+ rotate: false
+ xy: 2, 592
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+4978
+ rotate: false
+ xy: 994, 9
+ size: 28, 30
+ orig: 28, 30
+ offset: 0, 0
+ index: -1
+5589
+ rotate: false
+ xy: 260, 592
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+5919
+ rotate: false
+ xy: 832, 41
+ size: 190, 110
+ orig: 190, 110
+ offset: 0, 0
+ index: -1
+6562
+ rotate: false
+ xy: 562, 402
+ size: 256, 160
+ orig: 256, 160
+ offset: 0, 0
+ index: -1
+8458
+ rotate: false
+ xy: 2, 543
+ size: 64, 47
+ orig: 64, 47
+ offset: 0, 0
+ index: -1
+8459
+ rotate: false
+ xy: 68, 543
+ size: 64, 47
+ orig: 64, 47
+ offset: 0, 0
+ index: -1
+8462
+ rotate: false
+ xy: 134, 543
+ size: 64, 47
+ orig: 64, 47
+ offset: 0, 0
+ index: -1
+8463
+ rotate: false
+ xy: 200, 543
+ size: 64, 47
+ orig: 64, 47
+ offset: 0, 0
+ index: -1
+8466
+ rotate: false
+ xy: 266, 543
+ size: 64, 47
+ orig: 64, 47
+ offset: 0, 0
+ index: -1
+8571
+ rotate: false
+ xy: 841, 832
+ size: 178, 60
+ orig: 178, 60
+ offset: 0, 0
+ index: -1
+91
+ rotate: false
+ xy: 820, 700
+ size: 200, 130
+ orig: 200, 130
+ offset: 0, 0
+ index: -1
+
+images42.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10349
+ rotate: false
+ xy: 390, 349
+ size: 126, 75
+ orig: 126, 75
+ offset: 0, 0
+ index: -1
+10358
+ rotate: false
+ xy: 390, 272
+ size: 126, 75
+ orig: 126, 75
+ offset: 0, 0
+ index: -1
+12169
+ rotate: false
+ xy: 390, 195
+ size: 126, 75
+ orig: 126, 75
+ offset: 0, 0
+ index: -1
+12260
+ rotate: false
+ xy: 2, 502
+ size: 193, 64
+ orig: 193, 64
+ offset: 0, 0
+ index: -1
+12708
+ rotate: false
+ xy: 586, 195
+ size: 66, 71
+ orig: 66, 71
+ offset: 0, 0
+ index: -1
+1437
+ rotate: false
+ xy: 164, 364
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1441
+ rotate: false
+ xy: 164, 330
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+17921
+ rotate: false
+ xy: 391, 426
+ size: 125, 140
+ orig: 125, 140
+ offset: 0, 0
+ index: -1
+17945
+ rotate: false
+ xy: 706, 2
+ size: 108, 61
+ orig: 108, 61
+ offset: 0, 0
+ index: -1
+181
+ rotate: false
+ xy: 164, 64
+ size: 192, 128
+ orig: 192, 128
+ offset: 0, 0
+ index: -1
+1831
+ rotate: false
+ xy: 164, 296
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1835
+ rotate: false
+ xy: 164, 262
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1839
+ rotate: false
+ xy: 164, 228
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1843
+ rotate: false
+ xy: 164, 194
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+197
+ rotate: false
+ xy: 197, 502
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+1981
+ rotate: false
+ xy: 362, 2
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+1982
+ rotate: false
+ xy: 534, 2
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+1995
+ rotate: false
+ xy: 260, 764
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+2223
+ rotate: false
+ xy: 776, 968
+ size: 240, 54
+ orig: 240, 54
+ offset: 0, 0
+ index: -1
+2228
+ rotate: false
+ xy: 776, 912
+ size: 240, 54
+ orig: 240, 54
+ offset: 0, 0
+ index: -1
+2231
+ rotate: false
+ xy: 776, 856
+ size: 240, 54
+ orig: 240, 54
+ offset: 0, 0
+ index: -1
+2236
+ rotate: false
+ xy: 776, 800
+ size: 240, 54
+ orig: 240, 54
+ offset: 0, 0
+ index: -1
+2239
+ rotate: false
+ xy: 776, 744
+ size: 240, 54
+ orig: 240, 54
+ offset: 0, 0
+ index: -1
+22841
+ rotate: false
+ xy: 654, 196
+ size: 252, 70
+ orig: 252, 70
+ offset: 0, 0
+ index: -1
+231
+ rotate: false
+ xy: 2, 894
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+232
+ rotate: false
+ xy: 260, 894
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+235
+ rotate: false
+ xy: 518, 894
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+236
+ rotate: false
+ xy: 2, 764
+ size: 256, 128
+ orig: 256, 128
+ offset: 0, 0
+ index: -1
+23657
+ rotate: false
+ xy: 776, 524
+ size: 236, 114
+ orig: 236, 114
+ offset: 0, 0
+ index: -1
+23660
+ rotate: false
+ xy: 776, 408
+ size: 236, 114
+ orig: 236, 114
+ offset: 0, 0
+ index: -1
+23663
+ rotate: false
+ xy: 776, 292
+ size: 236, 114
+ orig: 236, 114
+ offset: 0, 0
+ index: -1
+23718
+ rotate: false
+ xy: 816, 2
+ size: 75, 62
+ orig: 75, 62
+ offset: 0, 0
+ index: -1
+23791
+ rotate: false
+ xy: 958, 13
+ size: 64, 15
+ orig: 64, 15
+ offset: 0, 0
+ index: -1
+23800
+ rotate: false
+ xy: 164, 398
+ size: 115, 15
+ orig: 115, 15
+ offset: 0, 0
+ index: -1
+23851
+ rotate: false
+ xy: 776, 275
+ size: 115, 15
+ orig: 115, 15
+ offset: 0, 0
+ index: -1
+23870
+ rotate: false
+ xy: 281, 398
+ size: 71, 15
+ orig: 71, 15
+ offset: 0, 0
+ index: -1
+2640
+ rotate: false
+ xy: 518, 195
+ size: 66, 71
+ orig: 66, 71
+ offset: 0, 0
+ index: -1
+280
+ rotate: false
+ xy: 2, 236
+ size: 160, 170
+ orig: 160, 170
+ offset: 0, 0
+ index: -1
+281
+ rotate: false
+ xy: 2, 64
+ size: 160, 170
+ orig: 160, 170
+ offset: 0, 0
+ index: -1
+2904
+ rotate: false
+ xy: 776, 692
+ size: 237, 50
+ orig: 237, 50
+ offset: 0, 0
+ index: -1
+2905
+ rotate: false
+ xy: 776, 640
+ size: 237, 50
+ orig: 237, 50
+ offset: 0, 0
+ index: -1
+3046
+ rotate: false
+ xy: 354, 450
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3049
+ rotate: false
+ xy: 354, 398
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+35
+ rotate: false
+ xy: 518, 698
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+4369
+ rotate: false
+ xy: 893, 3
+ size: 63, 25
+ orig: 63, 25
+ offset: 0, 0
+ index: -1
+438
+ rotate: false
+ xy: 2, 666
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+4498
+ rotate: false
+ xy: 260, 666
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+4870
+ rotate: false
+ xy: 518, 600
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+4877
+ rotate: false
+ xy: 2, 568
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+4895
+ rotate: false
+ xy: 260, 568
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+531
+ rotate: false
+ xy: 746, 66
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+5590
+ rotate: false
+ xy: 518, 502
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+5945
+ rotate: false
+ xy: 358, 64
+ size: 192, 128
+ orig: 192, 128
+ offset: 0, 0
+ index: -1
+5947
+ rotate: false
+ xy: 552, 65
+ size: 192, 128
+ orig: 192, 128
+ offset: 0, 0
+ index: -1
+6
+ rotate: false
+ xy: 518, 796
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+634
+ rotate: false
+ xy: 518, 370
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+635
+ rotate: false
+ xy: 518, 336
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+636
+ rotate: false
+ xy: 518, 302
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+637
+ rotate: false
+ xy: 518, 268
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6561
+ rotate: false
+ xy: 518, 404
+ size: 256, 96
+ orig: 256, 96
+ offset: 0, 0
+ index: -1
+6825
+ rotate: false
+ xy: 908, 190
+ size: 114, 100
+ orig: 114, 100
+ offset: 0, 0
+ index: -1
+6829
+ rotate: false
+ xy: 908, 88
+ size: 114, 100
+ orig: 114, 100
+ offset: 0, 0
+ index: -1
+7012
+ rotate: false
+ xy: 908, 30
+ size: 114, 56
+ orig: 114, 56
+ offset: 0, 0
+ index: -1
+7178
+ rotate: false
+ xy: 156, 415
+ size: 196, 85
+ orig: 196, 85
+ offset: 0, 0
+ index: -1
+8575
+ rotate: false
+ xy: 2, 2
+ size: 178, 60
+ orig: 178, 60
+ offset: 0, 0
+ index: -1
+8577
+ rotate: false
+ xy: 182, 2
+ size: 178, 60
+ orig: 178, 60
+ offset: 0, 0
+ index: -1
+9566
+ rotate: false
+ xy: 2, 410
+ size: 75, 90
+ orig: 75, 90
+ offset: 0, 0
+ index: -1
+9567
+ rotate: false
+ xy: 79, 410
+ size: 75, 90
+ orig: 75, 90
+ offset: 0, 0
+ index: -1
+
+images43.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10345
+ rotate: false
+ xy: 254, 450
+ size: 236, 75
+ orig: 236, 75
+ offset: 0, 0
+ index: -1
+12186
+ rotate: false
+ xy: 746, 458
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12189
+ rotate: false
+ xy: 746, 392
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+1351
+ rotate: false
+ xy: 374, 50
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+13954
+ rotate: false
+ xy: 632, 2
+ size: 128, 80
+ orig: 128, 80
+ offset: 0, 0
+ index: -1
+13955
+ rotate: false
+ xy: 762, 2
+ size: 128, 80
+ orig: 128, 80
+ offset: 0, 0
+ index: -1
+17764
+ rotate: false
+ xy: 758, 799
+ size: 132, 107
+ orig: 132, 107
+ offset: 0, 0
+ index: -1
+18
+ rotate: false
+ xy: 712, 799
+ size: 44, 30
+ orig: 44, 30
+ offset: 0, 0
+ index: -1
+18199
+ rotate: false
+ xy: 892, 740
+ size: 130, 166
+ orig: 130, 166
+ offset: 0, 0
+ index: -1
+18200
+ rotate: false
+ xy: 892, 572
+ size: 130, 166
+ orig: 130, 166
+ offset: 0, 0
+ index: -1
+18203
+ rotate: false
+ xy: 892, 404
+ size: 130, 166
+ orig: 130, 166
+ offset: 0, 0
+ index: -1
+18204
+ rotate: false
+ xy: 892, 236
+ size: 130, 166
+ orig: 130, 166
+ offset: 0, 0
+ index: -1
+18207
+ rotate: false
+ xy: 892, 68
+ size: 130, 166
+ orig: 130, 166
+ offset: 0, 0
+ index: -1
+18283
+ rotate: false
+ xy: 2, 212
+ size: 184, 166
+ orig: 184, 166
+ offset: 0, 0
+ index: -1
+18286
+ rotate: false
+ xy: 2, 44
+ size: 184, 166
+ orig: 184, 166
+ offset: 0, 0
+ index: -1
+19596
+ rotate: false
+ xy: 717, 524
+ size: 149, 49
+ orig: 149, 49
+ offset: 0, 0
+ index: -1
+20069
+ rotate: false
+ xy: 188, 204
+ size: 184, 166
+ orig: 184, 166
+ offset: 0, 0
+ index: -1
+20070
+ rotate: false
+ xy: 188, 36
+ size: 184, 166
+ orig: 184, 166
+ offset: 0, 0
+ index: -1
+20071
+ rotate: false
+ xy: 456, 200
+ size: 184, 166
+ orig: 184, 166
+ offset: 0, 0
+ index: -1
+22035
+ rotate: false
+ xy: 868, 545
+ size: 17, 28
+ orig: 17, 28
+ offset: 0, 0
+ index: -1
+22867
+ rotate: false
+ xy: 2, 897
+ size: 250, 125
+ orig: 250, 125
+ offset: 0, 0
+ index: -1
+22872
+ rotate: false
+ xy: 2, 770
+ size: 250, 125
+ orig: 250, 125
+ offset: 0, 0
+ index: -1
+22875
+ rotate: false
+ xy: 254, 897
+ size: 250, 125
+ orig: 250, 125
+ offset: 0, 0
+ index: -1
+22880
+ rotate: false
+ xy: 2, 643
+ size: 250, 125
+ orig: 250, 125
+ offset: 0, 0
+ index: -1
+22883
+ rotate: false
+ xy: 254, 770
+ size: 250, 125
+ orig: 250, 125
+ offset: 0, 0
+ index: -1
+22888
+ rotate: false
+ xy: 506, 897
+ size: 250, 125
+ orig: 250, 125
+ offset: 0, 0
+ index: -1
+22891
+ rotate: false
+ xy: 2, 516
+ size: 250, 125
+ orig: 250, 125
+ offset: 0, 0
+ index: -1
+22896
+ rotate: false
+ xy: 254, 643
+ size: 250, 125
+ orig: 250, 125
+ offset: 0, 0
+ index: -1
+23667
+ rotate: false
+ xy: 758, 908
+ size: 236, 114
+ orig: 236, 114
+ offset: 0, 0
+ index: -1
+23670
+ rotate: false
+ xy: 254, 527
+ size: 236, 114
+ orig: 236, 114
+ offset: 0, 0
+ index: -1
+23673
+ rotate: false
+ xy: 374, 84
+ size: 236, 114
+ orig: 236, 114
+ offset: 0, 0
+ index: -1
+23810
+ rotate: false
+ xy: 996, 911
+ size: 26, 15
+ orig: 26, 15
+ offset: 0, 0
+ index: -1
+23893
+ rotate: false
+ xy: 738, 375
+ size: 64, 15
+ orig: 64, 15
+ offset: 0, 0
+ index: -1
+2691
+ rotate: false
+ xy: 996, 976
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2696
+ rotate: false
+ xy: 996, 928
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2746
+ rotate: false
+ xy: 518, 2
+ size: 99, 46
+ orig: 99, 46
+ offset: 0, 0
+ index: -1
+285
+ rotate: false
+ xy: 642, 196
+ size: 160, 170
+ orig: 160, 170
+ offset: 0, 0
+ index: -1
+2879
+ rotate: false
+ xy: 712, 747
+ size: 178, 50
+ orig: 178, 50
+ offset: 0, 0
+ index: -1
+288
+ rotate: false
+ xy: 717, 575
+ size: 160, 170
+ orig: 160, 170
+ offset: 0, 0
+ index: -1
+303
+ rotate: false
+ xy: 374, 200
+ size: 80, 170
+ orig: 80, 170
+ offset: 0, 0
+ index: -1
+307
+ rotate: false
+ xy: 804, 220
+ size: 80, 170
+ orig: 80, 170
+ offset: 0, 0
+ index: -1
+3189
+ rotate: false
+ xy: 2, 380
+ size: 226, 134
+ orig: 226, 134
+ offset: 0, 0
+ index: -1
+3810
+ rotate: false
+ xy: 230, 464
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3860
+ rotate: false
+ xy: 492, 524
+ size: 223, 100
+ orig: 223, 100
+ offset: 0, 0
+ index: -1
+407
+ rotate: false
+ xy: 230, 372
+ size: 252, 76
+ orig: 252, 76
+ offset: 0, 0
+ index: -1
+409
+ rotate: false
+ xy: 492, 446
+ size: 252, 76
+ orig: 252, 76
+ offset: 0, 0
+ index: -1
+414
+ rotate: false
+ xy: 484, 368
+ size: 252, 76
+ orig: 252, 76
+ offset: 0, 0
+ index: -1
+4449
+ rotate: false
+ xy: 892, 2
+ size: 130, 64
+ orig: 130, 64
+ offset: 0, 0
+ index: -1
+5924
+ rotate: false
+ xy: 612, 84
+ size: 190, 110
+ orig: 190, 110
+ offset: 0, 0
+ index: -1
+638
+ rotate: false
+ xy: 2, 2
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+639
+ rotate: false
+ xy: 260, 2
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+662
+ rotate: false
+ xy: 804, 154
+ size: 86, 64
+ orig: 86, 64
+ offset: 0, 0
+ index: -1
+678
+ rotate: false
+ xy: 506, 626
+ size: 209, 107
+ orig: 209, 107
+ offset: 0, 0
+ index: -1
+809
+ rotate: false
+ xy: 804, 88
+ size: 86, 64
+ orig: 86, 64
+ offset: 0, 0
+ index: -1
+9206
+ rotate: false
+ xy: 506, 735
+ size: 204, 160
+ orig: 204, 160
+ offset: 0, 0
+ index: -1
+9463
+ rotate: false
+ xy: 712, 831
+ size: 44, 64
+ orig: 44, 64
+ offset: 0, 0
+ index: -1
+
+images44.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10327
+ rotate: false
+ xy: 643, 2
+ size: 200, 75
+ orig: 200, 75
+ offset: 0, 0
+ index: -1
+10328
+ rotate: false
+ xy: 442, 831
+ size: 250, 75
+ orig: 250, 75
+ offset: 0, 0
+ index: -1
+10337
+ rotate: false
+ xy: 442, 754
+ size: 250, 75
+ orig: 250, 75
+ offset: 0, 0
+ index: -1
+10354
+ rotate: false
+ xy: 396, 77
+ size: 236, 75
+ orig: 236, 75
+ offset: 0, 0
+ index: -1
+12164
+ rotate: false
+ xy: 845, 2
+ size: 177, 75
+ orig: 177, 75
+ offset: 0, 0
+ index: -1
+12165
+ rotate: false
+ xy: 628, 190
+ size: 236, 75
+ orig: 236, 75
+ offset: 0, 0
+ index: -1
+12174
+ rotate: false
+ xy: 634, 113
+ size: 236, 75
+ orig: 236, 75
+ offset: 0, 0
+ index: -1
+1355
+ rotate: false
+ xy: 634, 79
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1504
+ rotate: false
+ xy: 694, 799
+ size: 209, 107
+ orig: 209, 107
+ offset: 0, 0
+ index: -1
+19480
+ rotate: false
+ xy: 164, 710
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19483
+ rotate: false
+ xy: 164, 590
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19488
+ rotate: false
+ xy: 164, 470
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19491
+ rotate: false
+ xy: 164, 350
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19496
+ rotate: false
+ xy: 164, 230
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19499
+ rotate: false
+ xy: 164, 110
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19504
+ rotate: false
+ xy: 396, 634
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19511
+ rotate: false
+ xy: 396, 514
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19516
+ rotate: false
+ xy: 396, 394
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19519
+ rotate: false
+ xy: 396, 274
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19524
+ rotate: false
+ xy: 396, 154
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19527
+ rotate: false
+ xy: 628, 627
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19532
+ rotate: false
+ xy: 628, 507
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19535
+ rotate: false
+ xy: 628, 387
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19540
+ rotate: false
+ xy: 628, 267
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19610
+ rotate: false
+ xy: 2, 6
+ size: 160, 160
+ orig: 160, 160
+ offset: 0, 0
+ index: -1
+20072
+ rotate: false
+ xy: 2, 856
+ size: 184, 166
+ orig: 184, 166
+ offset: 0, 0
+ index: -1
+2123
+ rotate: false
+ xy: 892, 89
+ size: 130, 99
+ orig: 130, 99
+ offset: 0, 0
+ index: -1
+22842
+ rotate: false
+ xy: 389, 5
+ size: 252, 70
+ orig: 252, 70
+ offset: 0, 0
+ index: -1
+2334
+ rotate: false
+ xy: 905, 894
+ size: 117, 128
+ orig: 117, 128
+ offset: 0, 0
+ index: -1
+2335
+ rotate: false
+ xy: 905, 764
+ size: 117, 128
+ orig: 117, 128
+ offset: 0, 0
+ index: -1
+23652
+ rotate: false
+ xy: 426, 908
+ size: 234, 114
+ orig: 234, 114
+ offset: 0, 0
+ index: -1
+23655
+ rotate: false
+ xy: 662, 908
+ size: 234, 114
+ orig: 234, 114
+ offset: 0, 0
+ index: -1
+23676
+ rotate: false
+ xy: 188, 908
+ size: 236, 114
+ orig: 236, 114
+ offset: 0, 0
+ index: -1
+23949
+ rotate: false
+ xy: 899, 747
+ size: 113, 15
+ orig: 113, 15
+ offset: 0, 0
+ index: -1
+290
+ rotate: false
+ xy: 2, 684
+ size: 160, 170
+ orig: 160, 170
+ offset: 0, 0
+ index: -1
+293
+ rotate: false
+ xy: 2, 512
+ size: 160, 170
+ orig: 160, 170
+ offset: 0, 0
+ index: -1
+295
+ rotate: false
+ xy: 2, 340
+ size: 160, 170
+ orig: 160, 170
+ offset: 0, 0
+ index: -1
+299
+ rotate: false
+ xy: 2, 168
+ size: 160, 170
+ orig: 160, 170
+ offset: 0, 0
+ index: -1
+301
+ rotate: false
+ xy: 860, 575
+ size: 160, 170
+ orig: 160, 170
+ offset: 0, 0
+ index: -1
+304
+ rotate: false
+ xy: 860, 403
+ size: 160, 170
+ orig: 160, 170
+ offset: 0, 0
+ index: -1
+3811
+ rotate: false
+ xy: 872, 138
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3873
+ rotate: false
+ xy: 164, 8
+ size: 223, 100
+ orig: 223, 100
+ offset: 0, 0
+ index: -1
+3985
+ rotate: false
+ xy: 694, 747
+ size: 203, 50
+ orig: 203, 50
+ offset: 0, 0
+ index: -1
+416
+ rotate: false
+ xy: 188, 830
+ size: 252, 76
+ orig: 252, 76
+ offset: 0, 0
+ index: -1
+545
+ rotate: false
+ xy: 860, 273
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+7074
+ rotate: false
+ xy: 866, 190
+ size: 156, 81
+ orig: 156, 81
+ offset: 0, 0
+ index: -1
+9470
+ rotate: false
+ xy: 396, 764
+ size: 44, 64
+ orig: 44, 64
+ offset: 0, 0
+ index: -1
+
+images45.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+103
+ rotate: false
+ xy: 842, 274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+10348
+ rotate: false
+ xy: 837, 197
+ size: 185, 75
+ orig: 185, 75
+ offset: 0, 0
+ index: -1
+10357
+ rotate: false
+ xy: 837, 120
+ size: 185, 75
+ orig: 185, 75
+ offset: 0, 0
+ index: -1
+11881
+ rotate: false
+ xy: 864, 616
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+12191
+ rotate: false
+ xy: 974, 54
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+1359
+ rotate: false
+ xy: 466, 518
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1363
+ rotate: false
+ xy: 434, 412
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1364
+ rotate: false
+ xy: 702, 582
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1368
+ rotate: false
+ xy: 688, 476
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+17765
+ rotate: false
+ xy: 234, 435
+ size: 198, 107
+ orig: 198, 107
+ offset: 0, 0
+ index: -1
+17772
+ rotate: false
+ xy: 630, 76
+ size: 192, 74
+ orig: 192, 74
+ offset: 0, 0
+ index: -1
+17781
+ rotate: false
+ xy: 432, 177
+ size: 198, 107
+ orig: 198, 107
+ offset: 0, 0
+ index: -1
+18046
+ rotate: false
+ xy: 934, 835
+ size: 88, 100
+ orig: 88, 100
+ offset: 0, 0
+ index: -1
+1922
+ rotate: false
+ xy: 978, 561
+ size: 44, 53
+ orig: 44, 53
+ offset: 0, 0
+ index: -1
+19547
+ rotate: false
+ xy: 2, 904
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+22929
+ rotate: false
+ xy: 2, 904
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19552
+ rotate: false
+ xy: 2, 784
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+22934
+ rotate: false
+ xy: 2, 784
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19555
+ rotate: false
+ xy: 234, 904
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+22937
+ rotate: false
+ xy: 234, 904
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19560
+ rotate: false
+ xy: 2, 664
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+22942
+ rotate: false
+ xy: 2, 664
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19563
+ rotate: false
+ xy: 234, 784
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19568
+ rotate: false
+ xy: 466, 904
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19571
+ rotate: false
+ xy: 2, 544
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+19576
+ rotate: false
+ xy: 234, 664
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+20136
+ rotate: false
+ xy: 432, 286
+ size: 203, 124
+ orig: 203, 124
+ offset: 0, 0
+ index: -1
+20137
+ rotate: false
+ xy: 637, 278
+ size: 203, 124
+ orig: 203, 124
+ offset: 0, 0
+ index: -1
+20140
+ rotate: false
+ xy: 632, 152
+ size: 203, 124
+ orig: 203, 124
+ offset: 0, 0
+ index: -1
+2121
+ rotate: false
+ xy: 238, 76
+ size: 193, 97
+ orig: 193, 97
+ offset: 0, 0
+ index: -1
+2124
+ rotate: false
+ xy: 433, 76
+ size: 195, 99
+ orig: 195, 99
+ offset: 0, 0
+ index: -1
+21875
+ rotate: false
+ xy: 978, 513
+ size: 44, 46
+ orig: 44, 46
+ offset: 0, 0
+ index: -1
+22038
+ rotate: false
+ xy: 702, 552
+ size: 17, 28
+ orig: 17, 28
+ offset: 0, 0
+ index: -1
+22832
+ rotate: false
+ xy: 256, 4
+ size: 189, 70
+ orig: 189, 70
+ offset: 0, 0
+ index: -1
+22835
+ rotate: false
+ xy: 447, 4
+ size: 189, 70
+ orig: 189, 70
+ offset: 0, 0
+ index: -1
+22840
+ rotate: false
+ xy: 638, 4
+ size: 189, 70
+ orig: 189, 70
+ offset: 0, 0
+ index: -1
+22849
+ rotate: false
+ xy: 2, 4
+ size: 252, 70
+ orig: 252, 70
+ offset: 0, 0
+ index: -1
+22850
+ rotate: false
+ xy: 434, 446
+ size: 252, 70
+ orig: 252, 70
+ offset: 0, 0
+ index: -1
+22857
+ rotate: false
+ xy: 724, 510
+ size: 252, 70
+ orig: 252, 70
+ offset: 0, 0
+ index: -1
+22858
+ rotate: false
+ xy: 692, 404
+ size: 252, 70
+ orig: 252, 70
+ offset: 0, 0
+ index: -1
+22945
+ rotate: false
+ xy: 466, 784
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+22950
+ rotate: false
+ xy: 698, 904
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+22953
+ rotate: false
+ xy: 2, 424
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+22958
+ rotate: false
+ xy: 234, 544
+ size: 230, 118
+ orig: 230, 118
+ offset: 0, 0
+ index: -1
+23658
+ rotate: false
+ xy: 466, 668
+ size: 234, 114
+ orig: 234, 114
+ offset: 0, 0
+ index: -1
+23661
+ rotate: false
+ xy: 466, 552
+ size: 234, 114
+ orig: 234, 114
+ offset: 0, 0
+ index: -1
+23665
+ rotate: false
+ xy: 2, 308
+ size: 234, 114
+ orig: 234, 114
+ offset: 0, 0
+ index: -1
+23668
+ rotate: false
+ xy: 2, 192
+ size: 234, 114
+ orig: 234, 114
+ offset: 0, 0
+ index: -1
+23671
+ rotate: false
+ xy: 2, 76
+ size: 234, 114
+ orig: 234, 114
+ offset: 0, 0
+ index: -1
+23674
+ rotate: false
+ xy: 698, 788
+ size: 234, 114
+ orig: 234, 114
+ offset: 0, 0
+ index: -1
+23699
+ rotate: false
+ xy: 829, 2
+ size: 143, 116
+ orig: 143, 116
+ offset: 0, 0
+ index: -1
+2419
+ rotate: false
+ xy: 972, 274
+ size: 49, 48
+ orig: 49, 48
+ offset: 0, 0
+ index: -1
+267
+ rotate: false
+ xy: 434, 527
+ size: 30, 15
+ orig: 30, 15
+ offset: 0, 0
+ index: -1
+2687
+ rotate: false
+ xy: 946, 404
+ size: 76, 46
+ orig: 76, 46
+ offset: 0, 0
+ index: -1
+306
+ rotate: false
+ xy: 702, 616
+ size: 160, 170
+ orig: 160, 170
+ offset: 0, 0
+ index: -1
+4337
+ rotate: false
+ xy: 974, 4
+ size: 48, 48
+ orig: 48, 48
+ offset: 0, 0
+ index: -1
+487
+ rotate: false
+ xy: 934, 788
+ size: 83, 45
+ orig: 83, 45
+ offset: 0, 0
+ index: -1
+5950
+ rotate: false
+ xy: 238, 305
+ size: 192, 128
+ orig: 192, 128
+ offset: 0, 0
+ index: -1
+5952
+ rotate: false
+ xy: 238, 175
+ size: 192, 128
+ orig: 192, 128
+ offset: 0, 0
+ index: -1
+67
+ rotate: false
+ xy: 930, 937
+ size: 92, 85
+ orig: 92, 85
+ offset: 0, 0
+ index: -1
+6794
+ rotate: false
+ xy: 972, 324
+ size: 50, 78
+ orig: 50, 78
+ offset: 0, 0
+ index: -1
+7004
+ rotate: false
+ xy: 946, 452
+ size: 76, 56
+ orig: 76, 56
+ offset: 0, 0
+ index: -1
+
+images46.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10359
+ rotate: false
+ xy: 933, 675
+ size: 67, 75
+ orig: 67, 75
+ offset: 0, 0
+ index: -1
+11888
+ rotate: false
+ xy: 2, 696
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+11889
+ rotate: false
+ xy: 2, 524
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+11896
+ rotate: false
+ xy: 2, 352
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+11897
+ rotate: false
+ xy: 2, 180
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+11904
+ rotate: false
+ xy: 2, 8
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+11905
+ rotate: false
+ xy: 144, 485
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+11912
+ rotate: false
+ xy: 144, 313
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+11943
+ rotate: false
+ xy: 144, 141
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+11950
+ rotate: false
+ xy: 286, 354
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+11951
+ rotate: false
+ xy: 286, 182
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+12086
+ rotate: false
+ xy: 877, 528
+ size: 54, 52
+ orig: 54, 52
+ offset: 0, 0
+ index: -1
+12089
+ rotate: false
+ xy: 877, 474
+ size: 54, 52
+ orig: 54, 52
+ offset: 0, 0
+ index: -1
+1372
+ rotate: false
+ xy: 2, 990
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1376
+ rotate: false
+ xy: 260, 990
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+13913
+ rotate: false
+ xy: 341, 712
+ size: 74, 38
+ orig: 74, 38
+ offset: 0, 0
+ index: -1
+13921
+ rotate: false
+ xy: 228, 712
+ size: 111, 38
+ orig: 111, 38
+ offset: 0, 0
+ index: -1
+1415
+ rotate: false
+ xy: 518, 990
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1419
+ rotate: false
+ xy: 2, 956
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1423
+ rotate: false
+ xy: 260, 956
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1427
+ rotate: false
+ xy: 518, 956
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1428
+ rotate: false
+ xy: 2, 922
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1432
+ rotate: false
+ xy: 260, 922
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1436
+ rotate: false
+ xy: 518, 922
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1440
+ rotate: false
+ xy: 2, 888
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+17574
+ rotate: false
+ xy: 228, 657
+ size: 140, 53
+ orig: 140, 53
+ offset: 0, 0
+ index: -1
+1832
+ rotate: false
+ xy: 260, 888
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1836
+ rotate: false
+ xy: 518, 888
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1840
+ rotate: false
+ xy: 228, 854
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1844
+ rotate: false
+ xy: 486, 854
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1845
+ rotate: false
+ xy: 744, 854
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1846
+ rotate: false
+ xy: 776, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1849
+ rotate: false
+ xy: 228, 820
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1850
+ rotate: false
+ xy: 776, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1853
+ rotate: false
+ xy: 486, 820
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1854
+ rotate: false
+ xy: 776, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1857
+ rotate: false
+ xy: 744, 820
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+1858
+ rotate: false
+ xy: 776, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1879
+ rotate: false
+ xy: 286, 526
+ size: 129, 63
+ orig: 129, 63
+ offset: 0, 0
+ index: -1
+1949
+ rotate: false
+ xy: 599, 72
+ size: 78, 67
+ orig: 78, 67
+ offset: 0, 0
+ index: -1
+1955
+ rotate: false
+ xy: 599, 3
+ size: 78, 67
+ orig: 78, 67
+ offset: 0, 0
+ index: -1
+20165
+ rotate: false
+ xy: 144, 764
+ size: 82, 105
+ orig: 82, 105
+ offset: 0, 0
+ index: -1
+20166
+ rotate: false
+ xy: 144, 657
+ size: 82, 105
+ orig: 82, 105
+ offset: 0, 0
+ index: -1
+202
+ rotate: false
+ xy: 679, 2
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+2311
+ rotate: false
+ xy: 417, 526
+ size: 200, 54
+ orig: 200, 54
+ offset: 0, 0
+ index: -1
+23678
+ rotate: false
+ xy: 315, 5
+ size: 140, 134
+ orig: 140, 134
+ offset: 0, 0
+ index: -1
+23680
+ rotate: false
+ xy: 482, 390
+ size: 135, 134
+ orig: 135, 134
+ offset: 0, 0
+ index: -1
+23681
+ rotate: false
+ xy: 457, 5
+ size: 140, 134
+ orig: 140, 134
+ offset: 0, 0
+ index: -1
+23683
+ rotate: false
+ xy: 482, 254
+ size: 135, 134
+ orig: 135, 134
+ offset: 0, 0
+ index: -1
+23745
+ rotate: false
+ xy: 920, 16
+ size: 102, 15
+ orig: 102, 15
+ offset: 0, 0
+ index: -1
+23751
+ rotate: false
+ xy: 2, 871
+ size: 112, 15
+ orig: 112, 15
+ offset: 0, 0
+ index: -1
+23822
+ rotate: false
+ xy: 116, 871
+ size: 110, 15
+ orig: 110, 15
+ offset: 0, 0
+ index: -1
+242
+ rotate: false
+ xy: 877, 327
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+243
+ rotate: false
+ xy: 877, 180
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+244
+ rotate: false
+ xy: 877, 33
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+268
+ rotate: false
+ xy: 370, 663
+ size: 45, 15
+ orig: 45, 15
+ offset: 0, 0
+ index: -1
+3070
+ rotate: false
+ xy: 482, 141
+ size: 195, 99
+ orig: 195, 99
+ offset: 0, 0
+ index: -1
+3188
+ rotate: false
+ xy: 144, 5
+ size: 169, 134
+ orig: 169, 134
+ offset: 0, 0
+ index: -1
+3671
+ rotate: false
+ xy: 286, 141
+ size: 96, 39
+ orig: 96, 39
+ offset: 0, 0
+ index: -1
+3672
+ rotate: false
+ xy: 384, 141
+ size: 96, 39
+ orig: 96, 39
+ offset: 0, 0
+ index: -1
+3814
+ rotate: false
+ xy: 1002, 972
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3815
+ rotate: false
+ xy: 1002, 920
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3818
+ rotate: false
+ xy: 1002, 868
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3819
+ rotate: false
+ xy: 1002, 816
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3822
+ rotate: false
+ xy: 1002, 764
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3823
+ rotate: false
+ xy: 1002, 712
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3826
+ rotate: false
+ xy: 1002, 660
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+431
+ rotate: false
+ xy: 873, 2
+ size: 45, 29
+ orig: 45, 29
+ offset: 0, 0
+ index: -1
+532
+ rotate: false
+ xy: 370, 680
+ size: 45, 30
+ orig: 45, 30
+ offset: 0, 0
+ index: -1
+5588
+ rotate: false
+ xy: 228, 786
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+5872
+ rotate: false
+ xy: 486, 786
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+5876
+ rotate: false
+ xy: 744, 786
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+5880
+ rotate: false
+ xy: 228, 752
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+5884
+ rotate: false
+ xy: 486, 752
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+5885
+ rotate: false
+ xy: 744, 752
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+5889
+ rotate: false
+ xy: 417, 718
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+5893
+ rotate: false
+ xy: 675, 718
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+5897
+ rotate: false
+ xy: 417, 684
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6019
+ rotate: false
+ xy: 675, 684
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6023
+ rotate: false
+ xy: 417, 650
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6027
+ rotate: false
+ xy: 675, 650
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6031
+ rotate: false
+ xy: 417, 616
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6032
+ rotate: false
+ xy: 675, 616
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6036
+ rotate: false
+ xy: 417, 582
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6040
+ rotate: false
+ xy: 675, 582
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6044
+ rotate: false
+ xy: 619, 548
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6083
+ rotate: false
+ xy: 619, 514
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6087
+ rotate: false
+ xy: 619, 480
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6091
+ rotate: false
+ xy: 619, 446
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6095
+ rotate: false
+ xy: 619, 412
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6096
+ rotate: false
+ xy: 619, 378
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6100
+ rotate: false
+ xy: 619, 344
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6104
+ rotate: false
+ xy: 619, 310
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6108
+ rotate: false
+ xy: 619, 276
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6147
+ rotate: false
+ xy: 619, 242
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7060
+ rotate: false
+ xy: 428, 443
+ size: 52, 81
+ orig: 52, 81
+ offset: 0, 0
+ index: -1
+7065
+ rotate: false
+ xy: 428, 360
+ size: 52, 81
+ orig: 52, 81
+ offset: 0, 0
+ index: -1
+7070
+ rotate: false
+ xy: 428, 277
+ size: 52, 81
+ orig: 52, 81
+ offset: 0, 0
+ index: -1
+7072
+ rotate: false
+ xy: 428, 194
+ size: 52, 81
+ orig: 52, 81
+ offset: 0, 0
+ index: -1
+7180
+ rotate: false
+ xy: 679, 155
+ size: 196, 85
+ orig: 196, 85
+ offset: 0, 0
+ index: -1
+7184
+ rotate: false
+ xy: 679, 68
+ size: 196, 85
+ orig: 196, 85
+ offset: 0, 0
+ index: -1
+837
+ rotate: false
+ xy: 286, 591
+ size: 129, 64
+ orig: 129, 64
+ offset: 0, 0
+ index: -1
+8556
+ rotate: false
+ xy: 933, 598
+ size: 89, 60
+ orig: 89, 60
+ offset: 0, 0
+ index: -1
+8560
+ rotate: false
+ xy: 933, 536
+ size: 89, 60
+ orig: 89, 60
+ offset: 0, 0
+ index: -1
+8562
+ rotate: false
+ xy: 933, 474
+ size: 89, 60
+ orig: 89, 60
+ offset: 0, 0
+ index: -1
+
+images47.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+11958
+ rotate: false
+ xy: 164, 328
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+11959
+ rotate: false
+ xy: 164, 156
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+11966
+ rotate: false
+ xy: 306, 328
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+11967
+ rotate: false
+ xy: 306, 156
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+11974
+ rotate: false
+ xy: 448, 376
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+12663
+ rotate: false
+ xy: 448, 204
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+12670
+ rotate: false
+ xy: 590, 362
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+12671
+ rotate: false
+ xy: 590, 190
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+12678
+ rotate: false
+ xy: 732, 362
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+12679
+ rotate: false
+ xy: 732, 190
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+12686
+ rotate: false
+ xy: 874, 380
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+12687
+ rotate: false
+ xy: 874, 208
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+12706
+ rotate: false
+ xy: 983, 90
+ size: 32, 49
+ orig: 32, 49
+ offset: 0, 0
+ index: -1
+17575
+ rotate: false
+ xy: 458, 2
+ size: 140, 53
+ orig: 140, 53
+ offset: 0, 0
+ index: -1
+17725
+ rotate: false
+ xy: 804, 664
+ size: 198, 96
+ orig: 198, 96
+ offset: 0, 0
+ index: -1
+17785
+ rotate: false
+ xy: 207, 537
+ size: 198, 107
+ orig: 198, 107
+ offset: 0, 0
+ index: -1
+17805
+ rotate: false
+ xy: 604, 666
+ size: 198, 98
+ orig: 198, 98
+ offset: 0, 0
+ index: -1
+17821
+ rotate: false
+ xy: 590, 90
+ size: 198, 98
+ orig: 198, 98
+ offset: 0, 0
+ index: -1
+19
+ rotate: false
+ xy: 2, 2
+ size: 55, 30
+ orig: 55, 30
+ offset: 0, 0
+ index: -1
+19589
+ rotate: false
+ xy: 906, 90
+ size: 75, 49
+ orig: 75, 49
+ offset: 0, 0
+ index: -1
+19617
+ rotate: false
+ xy: 2, 358
+ size: 160, 160
+ orig: 160, 160
+ offset: 0, 0
+ index: -1
+19618
+ rotate: false
+ xy: 2, 196
+ size: 160, 160
+ orig: 160, 160
+ offset: 0, 0
+ index: -1
+19624
+ rotate: false
+ xy: 2, 34
+ size: 160, 160
+ orig: 160, 160
+ offset: 0, 0
+ index: -1
+20
+ rotate: false
+ xy: 59, 2
+ size: 55, 30
+ orig: 55, 30
+ offset: 0, 0
+ index: -1
+20141
+ rotate: false
+ xy: 2, 898
+ size: 203, 124
+ orig: 203, 124
+ offset: 0, 0
+ index: -1
+20144
+ rotate: false
+ xy: 2, 772
+ size: 203, 124
+ orig: 203, 124
+ offset: 0, 0
+ index: -1
+20145
+ rotate: false
+ xy: 207, 898
+ size: 203, 124
+ orig: 203, 124
+ offset: 0, 0
+ index: -1
+20148
+ rotate: false
+ xy: 2, 646
+ size: 203, 124
+ orig: 203, 124
+ offset: 0, 0
+ index: -1
+20149
+ rotate: false
+ xy: 207, 772
+ size: 203, 124
+ orig: 203, 124
+ offset: 0, 0
+ index: -1
+20152
+ rotate: false
+ xy: 412, 898
+ size: 203, 124
+ orig: 203, 124
+ offset: 0, 0
+ index: -1
+20153
+ rotate: false
+ xy: 2, 520
+ size: 203, 124
+ orig: 203, 124
+ offset: 0, 0
+ index: -1
+20156
+ rotate: false
+ xy: 207, 646
+ size: 203, 124
+ orig: 203, 124
+ offset: 0, 0
+ index: -1
+20157
+ rotate: false
+ xy: 412, 772
+ size: 203, 124
+ orig: 203, 124
+ offset: 0, 0
+ index: -1
+20160
+ rotate: false
+ xy: 617, 898
+ size: 203, 124
+ orig: 203, 124
+ offset: 0, 0
+ index: -1
+21
+ rotate: false
+ xy: 116, 2
+ size: 44, 30
+ orig: 44, 30
+ offset: 0, 0
+ index: -1
+2181
+ rotate: false
+ xy: 207, 500
+ size: 204, 35
+ orig: 204, 35
+ offset: 0, 0
+ index: -1
+23205
+ rotate: false
+ xy: 1004, 680
+ size: 17, 28
+ orig: 17, 28
+ offset: 0, 0
+ index: -1
+23783
+ rotate: false
+ xy: 164, 503
+ size: 40, 15
+ orig: 40, 15
+ offset: 0, 0
+ index: -1
+23805
+ rotate: false
+ xy: 806, 535
+ size: 66, 15
+ orig: 66, 15
+ offset: 0, 0
+ index: -1
+23834
+ rotate: false
+ xy: 326, 27
+ size: 28, 15
+ orig: 28, 15
+ offset: 0, 0
+ index: -1
+23922
+ rotate: false
+ xy: 326, 7
+ size: 110, 15
+ orig: 110, 15
+ offset: 0, 0
+ index: -1
+2474
+ rotate: false
+ xy: 998, 614
+ size: 24, 48
+ orig: 24, 48
+ offset: 0, 0
+ index: -1
+2697
+ rotate: false
+ xy: 996, 42
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+272
+ rotate: false
+ xy: 874, 191
+ size: 30, 15
+ orig: 30, 15
+ offset: 0, 0
+ index: -1
+2841
+ rotate: false
+ xy: 604, 614
+ size: 198, 50
+ orig: 198, 50
+ offset: 0, 0
+ index: -1
+312
+ rotate: false
+ xy: 413, 501
+ size: 33, 45
+ orig: 33, 45
+ offset: 0, 0
+ index: -1
+343
+ rotate: false
+ xy: 164, 10
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+3827
+ rotate: false
+ xy: 1004, 710
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3989
+ rotate: false
+ xy: 617, 846
+ size: 203, 50
+ orig: 203, 50
+ offset: 0, 0
+ index: -1
+4336
+ rotate: false
+ xy: 998, 564
+ size: 24, 48
+ orig: 24, 48
+ offset: 0, 0
+ index: -1
+4402
+ rotate: false
+ xy: 822, 922
+ size: 200, 100
+ orig: 200, 100
+ offset: 0, 0
+ index: -1
+450
+ rotate: false
+ xy: 996, 8
+ size: 26, 32
+ orig: 26, 32
+ offset: 0, 0
+ index: -1
+4501
+ rotate: false
+ xy: 906, 141
+ size: 116, 65
+ orig: 116, 65
+ offset: 0, 0
+ index: -1
+5927
+ rotate: false
+ xy: 412, 660
+ size: 190, 110
+ orig: 190, 110
+ offset: 0, 0
+ index: -1
+5932
+ rotate: false
+ xy: 164, 44
+ size: 190, 110
+ orig: 190, 110
+ offset: 0, 0
+ index: -1
+5934
+ rotate: false
+ xy: 412, 548
+ size: 190, 110
+ orig: 190, 110
+ offset: 0, 0
+ index: -1
+5939
+ rotate: false
+ xy: 806, 552
+ size: 190, 110
+ orig: 190, 110
+ offset: 0, 0
+ index: -1
+6790
+ rotate: false
+ xy: 822, 842
+ size: 200, 78
+ orig: 200, 78
+ offset: 0, 0
+ index: -1
+6791
+ rotate: false
+ xy: 617, 766
+ size: 200, 78
+ orig: 200, 78
+ offset: 0, 0
+ index: -1
+6798
+ rotate: false
+ xy: 819, 762
+ size: 200, 78
+ orig: 200, 78
+ offset: 0, 0
+ index: -1
+6799
+ rotate: false
+ xy: 604, 534
+ size: 200, 78
+ orig: 200, 78
+ offset: 0, 0
+ index: -1
+6851
+ rotate: false
+ xy: 790, 90
+ size: 114, 98
+ orig: 114, 98
+ offset: 0, 0
+ index: -1
+7186
+ rotate: false
+ xy: 600, 3
+ size: 196, 85
+ orig: 196, 85
+ offset: 0, 0
+ index: -1
+7190
+ rotate: false
+ xy: 798, 3
+ size: 196, 85
+ orig: 196, 85
+ offset: 0, 0
+ index: -1
+88
+ rotate: false
+ xy: 356, 24
+ size: 100, 130
+ orig: 100, 130
+ offset: 0, 0
+ index: -1
+9569
+ rotate: false
+ xy: 458, 57
+ size: 130, 145
+ orig: 130, 145
+ offset: 0, 0
+ index: -1
+
+images48.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10394
+ rotate: false
+ xy: 296, 299
+ size: 195, 97
+ orig: 195, 97
+ offset: 0, 0
+ index: -1
+10398
+ rotate: false
+ xy: 337, 757
+ size: 195, 99
+ orig: 195, 99
+ offset: 0, 0
+ index: -1
+10399
+ rotate: false
+ xy: 296, 198
+ size: 193, 99
+ orig: 193, 99
+ offset: 0, 0
+ index: -1
+10414
+ rotate: false
+ xy: 744, 826
+ size: 195, 97
+ orig: 195, 97
+ offset: 0, 0
+ index: -1
+10418
+ rotate: false
+ xy: 337, 656
+ size: 195, 99
+ orig: 195, 99
+ offset: 0, 0
+ index: -1
+10419
+ rotate: false
+ xy: 743, 725
+ size: 193, 99
+ orig: 193, 99
+ offset: 0, 0
+ index: -1
+10434
+ rotate: false
+ xy: 743, 488
+ size: 195, 97
+ orig: 195, 97
+ offset: 0, 0
+ index: -1
+10438
+ rotate: false
+ xy: 337, 555
+ size: 195, 99
+ orig: 195, 99
+ offset: 0, 0
+ index: -1
+10439
+ rotate: false
+ xy: 743, 624
+ size: 193, 99
+ orig: 193, 99
+ offset: 0, 0
+ index: -1
+12694
+ rotate: false
+ xy: 2, 852
+ size: 140, 170
+ orig: 140, 170
+ offset: 0, 0
+ index: -1
+17741
+ rotate: false
+ xy: 344, 926
+ size: 198, 96
+ orig: 198, 96
+ offset: 0, 0
+ index: -1
+17745
+ rotate: false
+ xy: 544, 926
+ size: 198, 96
+ orig: 198, 96
+ offset: 0, 0
+ index: -1
+17762
+ rotate: false
+ xy: 149, 743
+ size: 186, 107
+ orig: 186, 107
+ offset: 0, 0
+ index: -1
+17766
+ rotate: false
+ xy: 149, 634
+ size: 186, 107
+ orig: 186, 107
+ offset: 0, 0
+ index: -1
+17773
+ rotate: false
+ xy: 296, 122
+ size: 192, 74
+ orig: 192, 74
+ offset: 0, 0
+ index: -1
+17780
+ rotate: false
+ xy: 2, 8
+ size: 132, 107
+ orig: 132, 107
+ offset: 0, 0
+ index: -1
+17782
+ rotate: false
+ xy: 149, 525
+ size: 186, 107
+ orig: 186, 107
+ offset: 0, 0
+ index: -1
+17786
+ rotate: false
+ xy: 149, 416
+ size: 186, 107
+ orig: 186, 107
+ offset: 0, 0
+ index: -1
+17825
+ rotate: false
+ xy: 144, 924
+ size: 198, 98
+ orig: 198, 98
+ offset: 0, 0
+ index: -1
+18276
+ rotate: false
+ xy: 633, 122
+ size: 100, 140
+ orig: 100, 140
+ offset: 0, 0
+ index: -1
+18805
+ rotate: false
+ xy: 943, 458
+ size: 79, 60
+ orig: 79, 60
+ offset: 0, 0
+ index: -1
+18808
+ rotate: false
+ xy: 941, 962
+ size: 81, 60
+ orig: 81, 60
+ offset: 0, 0
+ index: -1
+18812
+ rotate: false
+ xy: 941, 900
+ size: 81, 60
+ orig: 81, 60
+ offset: 0, 0
+ index: -1
+18816
+ rotate: false
+ xy: 941, 838
+ size: 81, 60
+ orig: 81, 60
+ offset: 0, 0
+ index: -1
+19489
+ rotate: false
+ xy: 871, 2
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+1967
+ rotate: false
+ xy: 940, 520
+ size: 82, 64
+ orig: 82, 64
+ offset: 0, 0
+ index: -1
+1975
+ rotate: false
+ xy: 534, 686
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+20169
+ rotate: false
+ xy: 491, 122
+ size: 140, 140
+ orig: 140, 140
+ offset: 0, 0
+ index: -1
+20174
+ rotate: false
+ xy: 988, 3
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+21807
+ rotate: false
+ xy: 493, 368
+ size: 43, 28
+ orig: 43, 28
+ offset: 0, 0
+ index: -1
+2189
+ rotate: false
+ xy: 743, 587
+ size: 204, 35
+ orig: 204, 35
+ offset: 0, 0
+ index: -1
+22843
+ rotate: false
+ xy: 144, 852
+ size: 189, 70
+ orig: 189, 70
+ offset: 0, 0
+ index: -1
+2314
+ rotate: false
+ xy: 337, 398
+ size: 200, 54
+ orig: 200, 54
+ offset: 0, 0
+ index: -1
+23208
+ rotate: false
+ xy: 1002, 376
+ size: 17, 28
+ orig: 17, 28
+ offset: 0, 0
+ index: -1
+23684
+ rotate: false
+ xy: 882, 133
+ size: 140, 134
+ orig: 140, 134
+ offset: 0, 0
+ index: -1
+23691
+ rotate: false
+ xy: 439, 2
+ size: 142, 118
+ orig: 142, 118
+ offset: 0, 0
+ index: -1
+23696
+ rotate: false
+ xy: 149, 2
+ size: 143, 118
+ orig: 143, 118
+ offset: 0, 0
+ index: -1
+23697
+ rotate: false
+ xy: 583, 2
+ size: 142, 118
+ orig: 142, 118
+ offset: 0, 0
+ index: -1
+23700
+ rotate: false
+ xy: 727, 2
+ size: 142, 118
+ orig: 142, 118
+ offset: 0, 0
+ index: -1
+23702
+ rotate: false
+ xy: 294, 2
+ size: 143, 118
+ orig: 143, 118
+ offset: 0, 0
+ index: -1
+23814
+ rotate: false
+ xy: 296, 399
+ size: 33, 15
+ orig: 33, 15
+ offset: 0, 0
+ index: -1
+23917
+ rotate: false
+ xy: 539, 450
+ size: 54, 15
+ orig: 54, 15
+ offset: 0, 0
+ index: -1
+245
+ rotate: false
+ xy: 2, 705
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+246
+ rotate: false
+ xy: 2, 558
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+247
+ rotate: false
+ xy: 2, 411
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+248
+ rotate: false
+ xy: 2, 264
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+249
+ rotate: false
+ xy: 2, 117
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+250
+ rotate: false
+ xy: 149, 269
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+251
+ rotate: false
+ xy: 149, 122
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+252
+ rotate: false
+ xy: 596, 742
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+253
+ rotate: false
+ xy: 596, 595
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+254
+ rotate: false
+ xy: 596, 448
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+255
+ rotate: false
+ xy: 735, 122
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+2844
+ rotate: false
+ xy: 743, 436
+ size: 198, 50
+ orig: 198, 50
+ offset: 0, 0
+ index: -1
+3066
+ rotate: false
+ xy: 744, 925
+ size: 195, 97
+ orig: 195, 97
+ offset: 0, 0
+ index: -1
+3071
+ rotate: false
+ xy: 337, 454
+ size: 193, 99
+ orig: 193, 99
+ offset: 0, 0
+ index: -1
+3830
+ rotate: false
+ xy: 1002, 406
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+405
+ rotate: false
+ xy: 938, 653
+ size: 84, 76
+ orig: 84, 76
+ offset: 0, 0
+ index: -1
+45
+ rotate: false
+ xy: 602, 889
+ size: 140, 35
+ orig: 140, 35
+ offset: 0, 0
+ index: -1
+4825
+ rotate: false
+ xy: 493, 316
+ size: 220, 50
+ orig: 220, 50
+ offset: 0, 0
+ index: -1
+4826
+ rotate: false
+ xy: 493, 264
+ size: 220, 50
+ orig: 220, 50
+ offset: 0, 0
+ index: -1
+4975
+ rotate: false
+ xy: 532, 467
+ size: 62, 85
+ orig: 62, 85
+ offset: 0, 0
+ index: -1
+6151
+ rotate: false
+ xy: 344, 892
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6155
+ rotate: false
+ xy: 335, 858
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6806
+ rotate: false
+ xy: 539, 368
+ size: 200, 78
+ orig: 200, 78
+ offset: 0, 0
+ index: -1
+6807
+ rotate: false
+ xy: 741, 356
+ size: 200, 78
+ orig: 200, 78
+ offset: 0, 0
+ index: -1
+6826
+ rotate: false
+ xy: 943, 356
+ size: 57, 100
+ orig: 57, 100
+ offset: 0, 0
+ index: -1
+7175
+ rotate: false
+ xy: 913, 269
+ size: 98, 85
+ orig: 98, 85
+ offset: 0, 0
+ index: -1
+7192
+ rotate: false
+ xy: 715, 269
+ size: 196, 85
+ orig: 196, 85
+ offset: 0, 0
+ index: -1
+76
+ rotate: false
+ xy: 949, 586
+ size: 73, 65
+ orig: 73, 65
+ offset: 0, 0
+ index: -1
+85
+ rotate: false
+ xy: 534, 554
+ size: 60, 130
+ orig: 60, 130
+ offset: 0, 0
+ index: -1
+98
+ rotate: false
+ xy: 938, 731
+ size: 84, 93
+ orig: 84, 93
+ offset: 0, 0
+ index: -1
+
+images49.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+12192
+ rotate: false
+ xy: 64, 805
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12199
+ rotate: false
+ xy: 64, 739
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12200
+ rotate: false
+ xy: 64, 673
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+133
+ rotate: false
+ xy: 396, 574
+ size: 30, 40
+ orig: 30, 40
+ offset: 0, 0
+ index: -1
+140
+ rotate: false
+ xy: 505, 367
+ size: 40, 85
+ orig: 40, 85
+ offset: 0, 0
+ index: -1
+17776
+ rotate: false
+ xy: 505, 158
+ size: 192, 74
+ orig: 192, 74
+ offset: 0, 0
+ index: -1
+17777
+ rotate: false
+ xy: 699, 158
+ size: 192, 74
+ orig: 192, 74
+ offset: 0, 0
+ index: -1
+17946
+ rotate: false
+ xy: 547, 389
+ size: 78, 51
+ orig: 78, 51
+ offset: 0, 0
+ index: -1
+1880
+ rotate: false
+ xy: 64, 2
+ size: 169, 63
+ orig: 169, 63
+ offset: 0, 0
+ index: -1
+1888
+ rotate: false
+ xy: 893, 169
+ size: 129, 63
+ orig: 129, 63
+ offset: 0, 0
+ index: -1
+1896
+ rotate: false
+ xy: 263, 460
+ size: 48, 51
+ orig: 48, 51
+ offset: 0, 0
+ index: -1
+19490
+ rotate: false
+ xy: 313, 453
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19497
+ rotate: false
+ xy: 430, 454
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+1961
+ rotate: false
+ xy: 547, 499
+ size: 78, 67
+ orig: 78, 67
+ offset: 0, 0
+ index: -1
+1976
+ rotate: false
+ xy: 2, 696
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+1977
+ rotate: false
+ xy: 2, 524
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+1978
+ rotate: false
+ xy: 2, 352
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+1979
+ rotate: false
+ xy: 2, 180
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+1980
+ rotate: false
+ xy: 2, 8
+ size: 60, 170
+ orig: 60, 170
+ offset: 0, 0
+ index: -1
+20487
+ rotate: false
+ xy: 64, 67
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+20490
+ rotate: false
+ xy: 211, 305
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+20491
+ rotate: false
+ xy: 211, 158
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+20494
+ rotate: false
+ xy: 358, 305
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+20495
+ rotate: false
+ xy: 358, 158
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+2197
+ rotate: false
+ xy: 656, 579
+ size: 204, 35
+ orig: 204, 35
+ offset: 0, 0
+ index: -1
+2206
+ rotate: false
+ xy: 811, 121
+ size: 211, 35
+ orig: 211, 35
+ offset: 0, 0
+ index: -1
+23686
+ rotate: false
+ xy: 885, 234
+ size: 135, 134
+ orig: 135, 134
+ offset: 0, 0
+ index: -1
+23778
+ rotate: false
+ xy: 789, 243
+ size: 93, 15
+ orig: 93, 15
+ offset: 0, 0
+ index: -1
+23819
+ rotate: false
+ xy: 547, 372
+ size: 78, 15
+ orig: 78, 15
+ offset: 0, 0
+ index: -1
+23894
+ rotate: false
+ xy: 552, 248
+ size: 73, 15
+ orig: 73, 15
+ offset: 0, 0
+ index: -1
+23928
+ rotate: false
+ xy: 789, 347
+ size: 94, 15
+ orig: 94, 15
+ offset: 0, 0
+ index: -1
+23953
+ rotate: false
+ xy: 2, 871
+ size: 110, 15
+ orig: 110, 15
+ offset: 0, 0
+ index: -1
+2405
+ rotate: false
+ xy: 888, 835
+ size: 112, 51
+ orig: 112, 51
+ offset: 0, 0
+ index: -1
+2406
+ rotate: false
+ xy: 888, 782
+ size: 112, 51
+ orig: 112, 51
+ offset: 0, 0
+ index: -1
+2413
+ rotate: false
+ xy: 888, 729
+ size: 112, 51
+ orig: 112, 51
+ offset: 0, 0
+ index: -1
+2414
+ rotate: false
+ xy: 888, 676
+ size: 112, 51
+ orig: 112, 51
+ offset: 0, 0
+ index: -1
+2421
+ rotate: false
+ xy: 927, 71
+ size: 95, 48
+ orig: 95, 48
+ offset: 0, 0
+ index: -1
+256
+ rotate: false
+ xy: 64, 361
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+257
+ rotate: false
+ xy: 166, 513
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+258
+ rotate: false
+ xy: 64, 214
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+2753
+ rotate: false
+ xy: 555, 568
+ size: 99, 46
+ orig: 99, 46
+ offset: 0, 0
+ index: -1
+3057
+ rotate: false
+ xy: 235, 2
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+3058
+ rotate: false
+ xy: 431, 2
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+3061
+ rotate: false
+ xy: 627, 2
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+3062
+ rotate: false
+ xy: 823, 2
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+3281
+ rotate: false
+ xy: 888, 574
+ size: 111, 100
+ orig: 111, 100
+ offset: 0, 0
+ index: -1
+3298
+ rotate: false
+ xy: 888, 472
+ size: 111, 100
+ orig: 111, 100
+ offset: 0, 0
+ index: -1
+3677
+ rotate: false
+ xy: 457, 575
+ size: 96, 39
+ orig: 96, 39
+ offset: 0, 0
+ index: -1
+433
+ rotate: false
+ xy: 505, 234
+ size: 45, 29
+ orig: 45, 29
+ offset: 0, 0
+ index: -1
+4343
+ rotate: false
+ xy: 862, 668
+ size: 24, 48
+ orig: 24, 48
+ offset: 0, 0
+ index: -1
+4344
+ rotate: false
+ xy: 862, 618
+ size: 24, 48
+ orig: 24, 48
+ offset: 0, 0
+ index: -1
+4351
+ rotate: false
+ xy: 862, 568
+ size: 24, 48
+ orig: 24, 48
+ offset: 0, 0
+ index: -1
+4460
+ rotate: false
+ xy: 1002, 972
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+4463
+ rotate: false
+ xy: 1002, 920
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+4490
+ rotate: false
+ xy: 1002, 868
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+4493
+ rotate: false
+ xy: 1002, 816
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+4494
+ rotate: false
+ xy: 1002, 764
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+4497
+ rotate: false
+ xy: 1002, 712
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+4500
+ rotate: false
+ xy: 211, 452
+ size: 50, 59
+ orig: 50, 59
+ offset: 0, 0
+ index: -1
+4750
+ rotate: false
+ xy: 1002, 660
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+4753
+ rotate: false
+ xy: 1001, 608
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+4904
+ rotate: false
+ xy: 1001, 556
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+4907
+ rotate: false
+ xy: 1001, 504
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+4969
+ rotate: false
+ xy: 313, 573
+ size: 31, 85
+ orig: 31, 85
+ offset: 0, 0
+ index: -1
+4971
+ rotate: false
+ xy: 789, 260
+ size: 93, 85
+ orig: 93, 85
+ offset: 0, 0
+ index: -1
+4995
+ rotate: false
+ xy: 1001, 452
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+4998
+ rotate: false
+ xy: 1001, 400
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5871
+ rotate: false
+ xy: 776, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+5875
+ rotate: false
+ xy: 776, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+5879
+ rotate: false
+ xy: 776, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+5883
+ rotate: false
+ xy: 776, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6159
+ rotate: false
+ xy: 2, 990
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6160
+ rotate: false
+ xy: 260, 990
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6164
+ rotate: false
+ xy: 518, 990
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6168
+ rotate: false
+ xy: 2, 956
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6172
+ rotate: false
+ xy: 260, 956
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6211
+ rotate: false
+ xy: 518, 956
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6215
+ rotate: false
+ xy: 2, 922
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6219
+ rotate: false
+ xy: 260, 922
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6223
+ rotate: false
+ xy: 518, 922
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6224
+ rotate: false
+ xy: 2, 888
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6228
+ rotate: false
+ xy: 260, 888
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6232
+ rotate: false
+ xy: 518, 888
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6236
+ rotate: false
+ xy: 114, 854
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6275
+ rotate: false
+ xy: 372, 854
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6279
+ rotate: false
+ xy: 630, 854
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6283
+ rotate: false
+ xy: 114, 820
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6287
+ rotate: false
+ xy: 372, 820
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6288
+ rotate: false
+ xy: 630, 820
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6292
+ rotate: false
+ xy: 114, 786
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6296
+ rotate: false
+ xy: 372, 786
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6300
+ rotate: false
+ xy: 630, 786
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6419
+ rotate: false
+ xy: 114, 752
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6423
+ rotate: false
+ xy: 372, 752
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6427
+ rotate: false
+ xy: 630, 752
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6431
+ rotate: false
+ xy: 114, 718
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6432
+ rotate: false
+ xy: 372, 718
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6436
+ rotate: false
+ xy: 630, 718
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6440
+ rotate: false
+ xy: 346, 684
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6444
+ rotate: false
+ xy: 604, 684
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6483
+ rotate: false
+ xy: 346, 650
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6487
+ rotate: false
+ xy: 604, 650
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6491
+ rotate: false
+ xy: 346, 616
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6495
+ rotate: false
+ xy: 604, 616
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6496
+ rotate: false
+ xy: 627, 534
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6500
+ rotate: false
+ xy: 627, 500
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6504
+ rotate: false
+ xy: 627, 466
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6508
+ rotate: false
+ xy: 627, 432
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+660
+ rotate: false
+ xy: 627, 234
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+6616
+ rotate: false
+ xy: 627, 398
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6620
+ rotate: false
+ xy: 627, 364
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6832
+ rotate: false
+ xy: 885, 370
+ size: 114, 100
+ orig: 114, 100
+ offset: 0, 0
+ index: -1
+6836
+ rotate: false
+ xy: 511, 265
+ size: 114, 100
+ orig: 114, 100
+ offset: 0, 0
+ index: -1
+7013
+ rotate: false
+ xy: 114, 660
+ size: 114, 56
+ orig: 114, 56
+ offset: 0, 0
+ index: -1
+7019
+ rotate: false
+ xy: 230, 660
+ size: 114, 56
+ orig: 114, 56
+ offset: 0, 0
+ index: -1
+7177
+ rotate: false
+ xy: 211, 71
+ size: 98, 85
+ orig: 98, 85
+ offset: 0, 0
+ index: -1
+7181
+ rotate: false
+ xy: 311, 71
+ size: 98, 85
+ orig: 98, 85
+ offset: 0, 0
+ index: -1
+7183
+ rotate: false
+ xy: 411, 71
+ size: 98, 85
+ orig: 98, 85
+ offset: 0, 0
+ index: -1
+7187
+ rotate: false
+ xy: 511, 71
+ size: 98, 85
+ orig: 98, 85
+ offset: 0, 0
+ index: -1
+7189
+ rotate: false
+ xy: 611, 71
+ size: 98, 85
+ orig: 98, 85
+ offset: 0, 0
+ index: -1
+7193
+ rotate: false
+ xy: 711, 71
+ size: 98, 85
+ orig: 98, 85
+ offset: 0, 0
+ index: -1
+8522
+ rotate: false
+ xy: 811, 71
+ size: 114, 48
+ orig: 114, 48
+ offset: 0, 0
+ index: -1
+870
+ rotate: false
+ xy: 547, 442
+ size: 78, 55
+ orig: 78, 55
+ offset: 0, 0
+ index: -1
+872
+ rotate: false
+ xy: 346, 573
+ size: 48, 41
+ orig: 48, 41
+ offset: 0, 0
+ index: -1
+879
+ rotate: false
+ xy: 428, 574
+ size: 27, 40
+ orig: 27, 40
+ offset: 0, 0
+ index: -1
+9575
+ rotate: false
+ xy: 64, 508
+ size: 100, 150
+ orig: 100, 150
+ offset: 0, 0
+ index: -1
+
+images50.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10365
+ rotate: false
+ xy: 343, 398
+ size: 192, 66
+ orig: 192, 66
+ offset: 0, 0
+ index: -1
+10395
+ rotate: false
+ xy: 2, 826
+ size: 193, 97
+ orig: 193, 97
+ offset: 0, 0
+ index: -1
+104
+ rotate: false
+ xy: 796, 762
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+10415
+ rotate: false
+ xy: 197, 925
+ size: 193, 97
+ orig: 193, 97
+ offset: 0, 0
+ index: -1
+10435
+ rotate: false
+ xy: 2, 727
+ size: 193, 97
+ orig: 193, 97
+ offset: 0, 0
+ index: -1
+12072
+ rotate: false
+ xy: 995, 175
+ size: 27, 52
+ orig: 27, 52
+ offset: 0, 0
+ index: -1
+12147
+ rotate: false
+ xy: 338, 321
+ size: 196, 75
+ orig: 196, 75
+ offset: 0, 0
+ index: -1
+12151
+ rotate: false
+ xy: 338, 244
+ size: 196, 75
+ orig: 196, 75
+ offset: 0, 0
+ index: -1
+12194
+ rotate: false
+ xy: 197, 712
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12207
+ rotate: false
+ xy: 974, 958
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12428
+ rotate: false
+ xy: 164, 58
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+14
+ rotate: false
+ xy: 972, 4
+ size: 50, 42
+ orig: 50, 42
+ offset: 0, 0
+ index: -1
+14580
+ rotate: false
+ xy: 995, 128
+ size: 26, 45
+ orig: 26, 45
+ offset: 0, 0
+ index: -1
+17602
+ rotate: false
+ xy: 149, 418
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+17605
+ rotate: false
+ xy: 343, 466
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+17608
+ rotate: false
+ xy: 144, 320
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+17611
+ rotate: false
+ xy: 139, 188
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+17614
+ rotate: false
+ xy: 326, 66
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+17617
+ rotate: false
+ xy: 778, 30
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+185
+ rotate: false
+ xy: 392, 926
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+187
+ rotate: false
+ xy: 586, 926
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+190
+ rotate: false
+ xy: 780, 926
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+192
+ rotate: false
+ xy: 344, 794
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+20175
+ rotate: false
+ xy: 964, 447
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20498
+ rotate: false
+ xy: 197, 778
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+20499
+ rotate: false
+ xy: 2, 580
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+20502
+ rotate: false
+ xy: 2, 433
+ size: 145, 145
+ orig: 145, 145
+ offset: 0, 0
+ index: -1
+2147
+ rotate: false
+ xy: 344, 892
+ size: 26, 31
+ orig: 26, 31
+ offset: 0, 0
+ index: -1
+21818
+ rotate: false
+ xy: 326, 2
+ size: 86, 28
+ orig: 86, 28
+ offset: 0, 0
+ index: -1
+2216
+ rotate: false
+ xy: 164, 2
+ size: 160, 54
+ orig: 160, 54
+ offset: 0, 0
+ index: -1
+2247
+ rotate: false
+ xy: 926, 696
+ size: 29, 32
+ orig: 29, 32
+ offset: 0, 0
+ index: -1
+22474
+ rotate: false
+ xy: 795, 566
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+23687
+ rotate: false
+ xy: 2, 297
+ size: 140, 134
+ orig: 140, 134
+ offset: 0, 0
+ index: -1
+23689
+ rotate: false
+ xy: 2, 161
+ size: 135, 134
+ orig: 135, 134
+ offset: 0, 0
+ index: -1
+23796
+ rotate: false
+ xy: 2, 14
+ size: 109, 15
+ orig: 109, 15
+ offset: 0, 0
+ index: -1
+23871
+ rotate: false
+ xy: 889, 13
+ size: 80, 15
+ orig: 80, 15
+ offset: 0, 0
+ index: -1
+23878
+ rotate: false
+ xy: 778, 13
+ size: 109, 15
+ orig: 109, 15
+ offset: 0, 0
+ index: -1
+23892
+ rotate: false
+ xy: 113, 14
+ size: 49, 15
+ orig: 49, 15
+ offset: 0, 0
+ index: -1
+23911
+ rotate: false
+ xy: 998, 460
+ size: 24, 15
+ orig: 24, 15
+ offset: 0, 0
+ index: -1
+23927
+ rotate: false
+ xy: 414, 15
+ size: 104, 15
+ orig: 104, 15
+ offset: 0, 0
+ index: -1
+26
+ rotate: false
+ xy: 964, 364
+ size: 51, 81
+ orig: 51, 81
+ offset: 0, 0
+ index: -1
+3067
+ rotate: false
+ xy: 2, 925
+ size: 193, 97
+ orig: 193, 97
+ offset: 0, 0
+ index: -1
+3068
+ rotate: false
+ xy: 957, 629
+ size: 65, 99
+ orig: 65, 99
+ offset: 0, 0
+ index: -1
+32
+ rotate: false
+ xy: 974, 926
+ size: 40, 30
+ orig: 40, 30
+ offset: 0, 0
+ index: -1
+3282
+ rotate: false
+ xy: 795, 464
+ size: 167, 100
+ orig: 167, 100
+ offset: 0, 0
+ index: -1
+3297
+ rotate: false
+ xy: 795, 362
+ size: 167, 100
+ orig: 167, 100
+ offset: 0, 0
+ index: -1
+341
+ rotate: false
+ xy: 344, 760
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+342
+ rotate: false
+ xy: 144, 286
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+345
+ rotate: false
+ xy: 326, 32
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+396
+ rotate: false
+ xy: 794, 208
+ size: 174, 50
+ orig: 174, 50
+ offset: 0, 0
+ index: -1
+4352
+ rotate: false
+ xy: 998, 527
+ size: 24, 48
+ orig: 24, 48
+ offset: 0, 0
+ index: -1
+4360
+ rotate: false
+ xy: 998, 477
+ size: 24, 48
+ orig: 24, 48
+ offset: 0, 0
+ index: -1
+4798
+ rotate: false
+ xy: 967, 312
+ size: 55, 50
+ orig: 55, 50
+ offset: 0, 0
+ index: -1
+58
+ rotate: false
+ xy: 796, 696
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+6624
+ rotate: false
+ xy: 392, 892
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6628
+ rotate: false
+ xy: 650, 892
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6629
+ rotate: false
+ xy: 538, 858
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6633
+ rotate: false
+ xy: 538, 824
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6637
+ rotate: false
+ xy: 538, 790
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6641
+ rotate: false
+ xy: 538, 756
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6680
+ rotate: false
+ xy: 537, 722
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6684
+ rotate: false
+ xy: 537, 688
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6688
+ rotate: false
+ xy: 537, 654
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6693
+ rotate: false
+ xy: 537, 620
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6697
+ rotate: false
+ xy: 537, 586
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6701
+ rotate: false
+ xy: 537, 552
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+6795
+ rotate: false
+ xy: 972, 48
+ size: 50, 78
+ orig: 50, 78
+ offset: 0, 0
+ index: -1
+6811
+ rotate: false
+ xy: 333, 164
+ size: 200, 78
+ orig: 200, 78
+ offset: 0, 0
+ index: -1
+6812
+ rotate: false
+ xy: 793, 128
+ size: 200, 78
+ orig: 200, 78
+ offset: 0, 0
+ index: -1
+6823
+ rotate: false
+ xy: 794, 260
+ size: 171, 100
+ orig: 171, 100
+ offset: 0, 0
+ index: -1
+7077
+ rotate: false
+ xy: 970, 229
+ size: 52, 81
+ orig: 52, 81
+ offset: 0, 0
+ index: -1
+7119
+ rotate: false
+ xy: 537, 518
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7120
+ rotate: false
+ xy: 537, 484
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7122
+ rotate: false
+ xy: 537, 450
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7123
+ rotate: false
+ xy: 537, 416
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7125
+ rotate: false
+ xy: 537, 382
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7126
+ rotate: false
+ xy: 536, 348
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7152
+ rotate: false
+ xy: 536, 314
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7153
+ rotate: false
+ xy: 536, 280
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7163
+ rotate: false
+ xy: 536, 246
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7164
+ rotate: false
+ xy: 536, 212
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7165
+ rotate: false
+ xy: 535, 178
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7166
+ rotate: false
+ xy: 535, 144
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7167
+ rotate: false
+ xy: 520, 110
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7168
+ rotate: false
+ xy: 520, 76
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7169
+ rotate: false
+ xy: 520, 42
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7170
+ rotate: false
+ xy: 520, 8
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7231
+ rotate: false
+ xy: 2, 31
+ size: 160, 128
+ orig: 160, 128
+ offset: 0, 0
+ index: -1
+747
+ rotate: false
+ xy: 957, 577
+ size: 65, 50
+ orig: 65, 50
+ offset: 0, 0
+ index: -1
+9194
+ rotate: false
+ xy: 149, 614
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+9197
+ rotate: false
+ xy: 149, 516
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+9200
+ rotate: false
+ xy: 343, 662
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+9202
+ rotate: false
+ xy: 926, 828
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+9203
+ rotate: false
+ xy: 343, 564
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+9204
+ rotate: false
+ xy: 926, 730
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+
+images51.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+144
+ rotate: false
+ xy: 982, 23
+ size: 40, 85
+ orig: 40, 85
+ offset: 0, 0
+ index: -1
+17620
+ rotate: false
+ xy: 776, 924
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+17623
+ rotate: false
+ xy: 776, 826
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+17630
+ rotate: false
+ xy: 776, 728
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+17633
+ rotate: false
+ xy: 776, 630
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+17636
+ rotate: false
+ xy: 776, 532
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+17639
+ rotate: false
+ xy: 776, 434
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+17642
+ rotate: false
+ xy: 776, 336
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+17645
+ rotate: false
+ xy: 776, 238
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+17648
+ rotate: false
+ xy: 776, 140
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+17651
+ rotate: false
+ xy: 776, 42
+ size: 192, 96
+ orig: 192, 96
+ offset: 0, 0
+ index: -1
+1884
+ rotate: false
+ xy: 970, 487
+ size: 52, 63
+ orig: 52, 63
+ offset: 0, 0
+ index: -1
+1893
+ rotate: false
+ xy: 970, 422
+ size: 52, 63
+ orig: 52, 63
+ offset: 0, 0
+ index: -1
+1914
+ rotate: false
+ xy: 970, 110
+ size: 52, 50
+ orig: 52, 50
+ offset: 0, 0
+ index: -1
+1954
+ rotate: false
+ xy: 970, 621
+ size: 52, 67
+ orig: 52, 67
+ offset: 0, 0
+ index: -1
+1960
+ rotate: false
+ xy: 970, 552
+ size: 52, 67
+ orig: 52, 67
+ offset: 0, 0
+ index: -1
+20176
+ rotate: false
+ xy: 970, 292
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20177
+ rotate: false
+ xy: 970, 162
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+2205
+ rotate: false
+ xy: 776, 5
+ size: 204, 35
+ orig: 204, 35
+ offset: 0, 0
+ index: -1
+23789
+ rotate: false
+ xy: 982, 6
+ size: 40, 15
+ orig: 40, 15
+ offset: 0, 0
+ index: -1
+5026
+ rotate: false
+ xy: 1004, 370
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5029
+ rotate: false
+ xy: 1004, 318
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5056
+ rotate: false
+ xy: 1004, 266
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5059
+ rotate: false
+ xy: 1004, 214
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5086
+ rotate: false
+ xy: 1004, 162
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7079
+ rotate: false
+ xy: 970, 939
+ size: 52, 81
+ orig: 52, 81
+ offset: 0, 0
+ index: -1
+7084
+ rotate: false
+ xy: 970, 856
+ size: 52, 81
+ orig: 52, 81
+ offset: 0, 0
+ index: -1
+7086
+ rotate: false
+ xy: 970, 773
+ size: 52, 81
+ orig: 52, 81
+ offset: 0, 0
+ index: -1
+7091
+ rotate: false
+ xy: 970, 690
+ size: 52, 81
+ orig: 52, 81
+ offset: 0, 0
+ index: -1
+7383
+ rotate: false
+ xy: 2, 988
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7387
+ rotate: false
+ xy: 2, 954
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7391
+ rotate: false
+ xy: 260, 988
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7395
+ rotate: false
+ xy: 2, 920
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7396
+ rotate: false
+ xy: 260, 954
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7400
+ rotate: false
+ xy: 518, 988
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7404
+ rotate: false
+ xy: 2, 886
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7408
+ rotate: false
+ xy: 260, 920
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7447
+ rotate: false
+ xy: 518, 954
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7451
+ rotate: false
+ xy: 2, 852
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7455
+ rotate: false
+ xy: 260, 886
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7459
+ rotate: false
+ xy: 518, 920
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7460
+ rotate: false
+ xy: 2, 818
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7464
+ rotate: false
+ xy: 260, 852
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7468
+ rotate: false
+ xy: 518, 886
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7472
+ rotate: false
+ xy: 2, 784
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7527
+ rotate: false
+ xy: 260, 818
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7531
+ rotate: false
+ xy: 518, 852
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7535
+ rotate: false
+ xy: 2, 750
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7539
+ rotate: false
+ xy: 260, 784
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7540
+ rotate: false
+ xy: 518, 818
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7544
+ rotate: false
+ xy: 2, 716
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7548
+ rotate: false
+ xy: 260, 750
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7552
+ rotate: false
+ xy: 518, 784
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7591
+ rotate: false
+ xy: 2, 682
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7595
+ rotate: false
+ xy: 260, 716
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7599
+ rotate: false
+ xy: 518, 750
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7603
+ rotate: false
+ xy: 2, 648
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7604
+ rotate: false
+ xy: 260, 682
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7608
+ rotate: false
+ xy: 518, 716
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7612
+ rotate: false
+ xy: 2, 614
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7616
+ rotate: false
+ xy: 260, 648
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7655
+ rotate: false
+ xy: 518, 682
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7659
+ rotate: false
+ xy: 2, 580
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7663
+ rotate: false
+ xy: 260, 614
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7667
+ rotate: false
+ xy: 518, 648
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7668
+ rotate: false
+ xy: 2, 546
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7672
+ rotate: false
+ xy: 260, 580
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7676
+ rotate: false
+ xy: 518, 614
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7680
+ rotate: false
+ xy: 2, 512
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7755
+ rotate: false
+ xy: 260, 546
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7759
+ rotate: false
+ xy: 518, 580
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7763
+ rotate: false
+ xy: 2, 478
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7767
+ rotate: false
+ xy: 260, 512
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7768
+ rotate: false
+ xy: 518, 546
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7772
+ rotate: false
+ xy: 2, 444
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7776
+ rotate: false
+ xy: 260, 478
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7780
+ rotate: false
+ xy: 518, 512
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7819
+ rotate: false
+ xy: 2, 410
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7823
+ rotate: false
+ xy: 260, 444
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7827
+ rotate: false
+ xy: 518, 478
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7831
+ rotate: false
+ xy: 2, 376
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7832
+ rotate: false
+ xy: 260, 410
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7836
+ rotate: false
+ xy: 518, 444
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7840
+ rotate: false
+ xy: 2, 342
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7844
+ rotate: false
+ xy: 260, 376
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7883
+ rotate: false
+ xy: 518, 410
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7887
+ rotate: false
+ xy: 2, 308
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7891
+ rotate: false
+ xy: 260, 342
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7895
+ rotate: false
+ xy: 518, 376
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7896
+ rotate: false
+ xy: 2, 274
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7900
+ rotate: false
+ xy: 260, 308
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7904
+ rotate: false
+ xy: 518, 342
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7908
+ rotate: false
+ xy: 2, 240
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7947
+ rotate: false
+ xy: 260, 274
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7951
+ rotate: false
+ xy: 518, 308
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7955
+ rotate: false
+ xy: 2, 206
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7979
+ rotate: false
+ xy: 260, 240
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7983
+ rotate: false
+ xy: 518, 274
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7987
+ rotate: false
+ xy: 2, 172
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7991
+ rotate: false
+ xy: 260, 206
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7992
+ rotate: false
+ xy: 518, 240
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+7996
+ rotate: false
+ xy: 2, 138
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8000
+ rotate: false
+ xy: 260, 172
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8004
+ rotate: false
+ xy: 518, 206
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8043
+ rotate: false
+ xy: 2, 104
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8047
+ rotate: false
+ xy: 260, 138
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8051
+ rotate: false
+ xy: 518, 172
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8055
+ rotate: false
+ xy: 2, 70
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8056
+ rotate: false
+ xy: 260, 104
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8060
+ rotate: false
+ xy: 518, 138
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8064
+ rotate: false
+ xy: 2, 36
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8068
+ rotate: false
+ xy: 260, 70
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8107
+ rotate: false
+ xy: 518, 104
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8111
+ rotate: false
+ xy: 2, 2
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8115
+ rotate: false
+ xy: 260, 36
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8119
+ rotate: false
+ xy: 518, 70
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8120
+ rotate: false
+ xy: 260, 2
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8124
+ rotate: false
+ xy: 518, 36
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8128
+ rotate: false
+ xy: 518, 2
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+
+images52.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10336
+ rotate: false
+ xy: 260, 29
+ size: 200, 75
+ orig: 200, 75
+ offset: 0, 0
+ index: -1
+10379
+ rotate: false
+ xy: 776, 136
+ size: 186, 94
+ orig: 186, 94
+ offset: 0, 0
+ index: -1
+10470
+ rotate: false
+ xy: 998, 425
+ size: 24, 31
+ orig: 24, 31
+ offset: 0, 0
+ index: -1
+10478
+ rotate: false
+ xy: 998, 392
+ size: 24, 31
+ orig: 24, 31
+ offset: 0, 0
+ index: -1
+10486
+ rotate: false
+ xy: 998, 359
+ size: 24, 31
+ orig: 24, 31
+ offset: 0, 0
+ index: -1
+10494
+ rotate: false
+ xy: 998, 326
+ size: 24, 31
+ orig: 24, 31
+ offset: 0, 0
+ index: -1
+12115
+ rotate: false
+ xy: 970, 105
+ size: 52, 35
+ orig: 52, 35
+ offset: 0, 0
+ index: -1
+12156
+ rotate: false
+ xy: 462, 29
+ size: 196, 75
+ orig: 196, 75
+ offset: 0, 0
+ index: -1
+12433
+ rotate: false
+ xy: 518, 276
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+12434
+ rotate: false
+ xy: 2, 174
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+12435
+ rotate: false
+ xy: 260, 208
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+12436
+ rotate: false
+ xy: 518, 242
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+12437
+ rotate: false
+ xy: 2, 140
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+12438
+ rotate: false
+ xy: 260, 174
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+17722
+ rotate: false
+ xy: 776, 526
+ size: 186, 96
+ orig: 186, 96
+ offset: 0, 0
+ index: -1
+17726
+ rotate: false
+ xy: 776, 428
+ size: 186, 96
+ orig: 186, 96
+ offset: 0, 0
+ index: -1
+17742
+ rotate: false
+ xy: 776, 330
+ size: 186, 96
+ orig: 186, 96
+ offset: 0, 0
+ index: -1
+17746
+ rotate: false
+ xy: 776, 232
+ size: 186, 96
+ orig: 186, 96
+ offset: 0, 0
+ index: -1
+17802
+ rotate: false
+ xy: 776, 924
+ size: 186, 98
+ orig: 186, 98
+ offset: 0, 0
+ index: -1
+17806
+ rotate: false
+ xy: 776, 824
+ size: 186, 98
+ orig: 186, 98
+ offset: 0, 0
+ index: -1
+17822
+ rotate: false
+ xy: 776, 724
+ size: 186, 98
+ orig: 186, 98
+ offset: 0, 0
+ index: -1
+17826
+ rotate: false
+ xy: 776, 624
+ size: 186, 98
+ orig: 186, 98
+ offset: 0, 0
+ index: -1
+18433
+ rotate: false
+ xy: 518, 208
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+18437
+ rotate: false
+ xy: 2, 106
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+18441
+ rotate: false
+ xy: 260, 140
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+18445
+ rotate: false
+ xy: 518, 174
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+18446
+ rotate: false
+ xy: 2, 72
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+18450
+ rotate: false
+ xy: 260, 106
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+18454
+ rotate: false
+ xy: 518, 140
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+18458
+ rotate: false
+ xy: 2, 38
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+20178
+ rotate: false
+ xy: 964, 894
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20179
+ rotate: false
+ xy: 964, 764
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20180
+ rotate: false
+ xy: 964, 634
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20181
+ rotate: false
+ xy: 964, 504
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20182
+ rotate: false
+ xy: 964, 374
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20183
+ rotate: false
+ xy: 964, 244
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+2140
+ rotate: false
+ xy: 998, 557
+ size: 24, 31
+ orig: 24, 31
+ offset: 0, 0
+ index: -1
+2148
+ rotate: false
+ xy: 998, 524
+ size: 24, 31
+ orig: 24, 31
+ offset: 0, 0
+ index: -1
+2156
+ rotate: false
+ xy: 998, 491
+ size: 24, 31
+ orig: 24, 31
+ offset: 0, 0
+ index: -1
+2164
+ rotate: false
+ xy: 998, 458
+ size: 24, 31
+ orig: 24, 31
+ offset: 0, 0
+ index: -1
+2477
+ rotate: false
+ xy: 998, 926
+ size: 24, 46
+ orig: 24, 46
+ offset: 0, 0
+ index: -1
+2484
+ rotate: false
+ xy: 998, 878
+ size: 24, 46
+ orig: 24, 46
+ offset: 0, 0
+ index: -1
+2485
+ rotate: false
+ xy: 998, 830
+ size: 24, 46
+ orig: 24, 46
+ offset: 0, 0
+ index: -1
+2492
+ rotate: false
+ xy: 998, 782
+ size: 24, 46
+ orig: 24, 46
+ offset: 0, 0
+ index: -1
+2493
+ rotate: false
+ xy: 998, 734
+ size: 24, 46
+ orig: 24, 46
+ offset: 0, 0
+ index: -1
+2500
+ rotate: false
+ xy: 998, 686
+ size: 24, 46
+ orig: 24, 46
+ offset: 0, 0
+ index: -1
+2501
+ rotate: false
+ xy: 998, 638
+ size: 24, 46
+ orig: 24, 46
+ offset: 0, 0
+ index: -1
+2508
+ rotate: false
+ xy: 998, 590
+ size: 24, 46
+ orig: 24, 46
+ offset: 0, 0
+ index: -1
+4332
+ rotate: false
+ xy: 618, 2
+ size: 33, 25
+ orig: 33, 25
+ offset: 0, 0
+ index: -1
+4367
+ rotate: false
+ xy: 998, 974
+ size: 24, 48
+ orig: 24, 48
+ offset: 0, 0
+ index: -1
+4372
+ rotate: false
+ xy: 228, 2
+ size: 63, 25
+ orig: 63, 25
+ offset: 0, 0
+ index: -1
+4375
+ rotate: false
+ xy: 293, 2
+ size: 63, 25
+ orig: 63, 25
+ offset: 0, 0
+ index: -1
+4378
+ rotate: false
+ xy: 358, 2
+ size: 63, 25
+ orig: 63, 25
+ offset: 0, 0
+ index: -1
+4381
+ rotate: false
+ xy: 423, 2
+ size: 63, 25
+ orig: 63, 25
+ offset: 0, 0
+ index: -1
+4384
+ rotate: false
+ xy: 488, 2
+ size: 63, 25
+ orig: 63, 25
+ offset: 0, 0
+ index: -1
+4387
+ rotate: false
+ xy: 553, 2
+ size: 63, 25
+ orig: 63, 25
+ offset: 0, 0
+ index: -1
+5089
+ rotate: false
+ xy: 998, 274
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5886
+ rotate: false
+ xy: 518, 106
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+5890
+ rotate: false
+ xy: 2, 4
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+5894
+ rotate: false
+ xy: 744, 102
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6828
+ rotate: false
+ xy: 964, 142
+ size: 57, 100
+ orig: 57, 100
+ offset: 0, 0
+ index: -1
+6852
+ rotate: false
+ xy: 660, 2
+ size: 171, 98
+ orig: 171, 98
+ offset: 0, 0
+ index: -1
+6853
+ rotate: false
+ xy: 833, 2
+ size: 171, 98
+ orig: 171, 98
+ offset: 0, 0
+ index: -1
+8132
+ rotate: false
+ xy: 2, 990
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8169
+ rotate: false
+ xy: 2, 956
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8173
+ rotate: false
+ xy: 260, 990
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8177
+ rotate: false
+ xy: 2, 922
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8699
+ rotate: false
+ xy: 260, 956
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8701
+ rotate: false
+ xy: 518, 990
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8710
+ rotate: false
+ xy: 2, 888
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8712
+ rotate: false
+ xy: 260, 922
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8739
+ rotate: false
+ xy: 518, 956
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8741
+ rotate: false
+ xy: 2, 854
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8750
+ rotate: false
+ xy: 260, 888
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8752
+ rotate: false
+ xy: 518, 922
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8779
+ rotate: false
+ xy: 2, 820
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8781
+ rotate: false
+ xy: 260, 854
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8790
+ rotate: false
+ xy: 518, 888
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8792
+ rotate: false
+ xy: 2, 786
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8819
+ rotate: false
+ xy: 260, 820
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8821
+ rotate: false
+ xy: 518, 854
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8830
+ rotate: false
+ xy: 2, 752
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8832
+ rotate: false
+ xy: 260, 786
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8859
+ rotate: false
+ xy: 518, 820
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8861
+ rotate: false
+ xy: 2, 718
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8870
+ rotate: false
+ xy: 260, 752
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8872
+ rotate: false
+ xy: 518, 786
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8899
+ rotate: false
+ xy: 2, 684
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8901
+ rotate: false
+ xy: 260, 718
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8910
+ rotate: false
+ xy: 518, 752
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8912
+ rotate: false
+ xy: 2, 650
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8939
+ rotate: false
+ xy: 260, 684
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8941
+ rotate: false
+ xy: 518, 718
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8950
+ rotate: false
+ xy: 2, 616
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8952
+ rotate: false
+ xy: 260, 650
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8979
+ rotate: false
+ xy: 518, 684
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8981
+ rotate: false
+ xy: 2, 582
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8990
+ rotate: false
+ xy: 260, 616
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+8992
+ rotate: false
+ xy: 518, 650
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9019
+ rotate: false
+ xy: 2, 548
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9021
+ rotate: false
+ xy: 260, 582
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9030
+ rotate: false
+ xy: 518, 616
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9032
+ rotate: false
+ xy: 2, 514
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9059
+ rotate: false
+ xy: 260, 548
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9061
+ rotate: false
+ xy: 518, 582
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9070
+ rotate: false
+ xy: 2, 480
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9072
+ rotate: false
+ xy: 260, 514
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9239
+ rotate: false
+ xy: 518, 548
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9243
+ rotate: false
+ xy: 2, 446
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9247
+ rotate: false
+ xy: 260, 480
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9251
+ rotate: false
+ xy: 518, 514
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9252
+ rotate: false
+ xy: 2, 412
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9256
+ rotate: false
+ xy: 260, 446
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9260
+ rotate: false
+ xy: 518, 480
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9264
+ rotate: false
+ xy: 2, 378
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9303
+ rotate: false
+ xy: 260, 412
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9307
+ rotate: false
+ xy: 518, 446
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9311
+ rotate: false
+ xy: 2, 344
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9315
+ rotate: false
+ xy: 260, 378
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9316
+ rotate: false
+ xy: 518, 412
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9320
+ rotate: false
+ xy: 2, 310
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9324
+ rotate: false
+ xy: 260, 344
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9328
+ rotate: false
+ xy: 518, 378
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9367
+ rotate: false
+ xy: 2, 276
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9371
+ rotate: false
+ xy: 260, 310
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9375
+ rotate: false
+ xy: 518, 344
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9379
+ rotate: false
+ xy: 2, 242
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9380
+ rotate: false
+ xy: 260, 276
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9384
+ rotate: false
+ xy: 518, 310
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9388
+ rotate: false
+ xy: 2, 208
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+9392
+ rotate: false
+ xy: 260, 242
+ size: 256, 32
+ orig: 256, 32
+ offset: 0, 0
+ index: -1
+
+images53.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10387
+ rotate: false
+ xy: 490, 312
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+10388
+ rotate: false
+ xy: 490, 243
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+10391
+ rotate: false
+ xy: 490, 174
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+10404
+ rotate: false
+ xy: 490, 105
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+10407
+ rotate: false
+ xy: 490, 36
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+105
+ rotate: false
+ xy: 2, 140
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+106
+ rotate: false
+ xy: 64, 272
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+107
+ rotate: false
+ xy: 104, 404
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+108
+ rotate: false
+ xy: 2, 10
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+109
+ rotate: false
+ xy: 132, 142
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+110
+ rotate: false
+ xy: 194, 274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+111
+ rotate: false
+ xy: 234, 404
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+112
+ rotate: false
+ xy: 132, 12
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+113
+ rotate: false
+ xy: 262, 144
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+114
+ rotate: false
+ xy: 324, 274
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+141
+ rotate: false
+ xy: 942, 67
+ size: 80, 85
+ orig: 80, 85
+ offset: 0, 0
+ index: -1
+1477
+ rotate: false
+ xy: 2, 534
+ size: 100, 110
+ orig: 100, 110
+ offset: 0, 0
+ index: -1
+157
+ rotate: false
+ xy: 364, 404
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+158
+ rotate: false
+ xy: 262, 14
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17601
+ rotate: false
+ xy: 392, 176
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+17606
+ rotate: false
+ xy: 392, 78
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+17751
+ rotate: false
+ xy: 392, 2
+ size: 96, 74
+ orig: 96, 74
+ offset: 0, 0
+ index: -1
+19498
+ rotate: false
+ xy: 906, 904
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19505
+ rotate: false
+ xy: 906, 784
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19510
+ rotate: false
+ xy: 906, 664
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19517
+ rotate: false
+ xy: 901, 154
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+2208
+ rotate: false
+ xy: 795, 720
+ size: 109, 35
+ orig: 109, 35
+ offset: 0, 0
+ index: -1
+2217
+ rotate: false
+ xy: 942, 11
+ size: 80, 54
+ orig: 80, 54
+ offset: 0, 0
+ index: -1
+22866
+ rotate: false
+ xy: 815, 2
+ size: 125, 125
+ orig: 125, 125
+ offset: 0, 0
+ index: -1
+2336
+ rotate: false
+ xy: 904, 534
+ size: 117, 128
+ orig: 117, 128
+ offset: 0, 0
+ index: -1
+23738
+ rotate: false
+ xy: 454, 283
+ size: 32, 15
+ orig: 32, 15
+ offset: 0, 0
+ index: -1
+23759
+ rotate: false
+ xy: 901, 137
+ size: 32, 15
+ orig: 32, 15
+ offset: 0, 0
+ index: -1
+23845
+ rotate: false
+ xy: 815, 363
+ size: 85, 15
+ orig: 85, 15
+ offset: 0, 0
+ index: -1
+23907
+ rotate: false
+ xy: 795, 769
+ size: 56, 15
+ orig: 56, 15
+ offset: 0, 0
+ index: -1
+2623
+ rotate: false
+ xy: 815, 380
+ size: 85, 60
+ orig: 85, 60
+ offset: 0, 0
+ index: -1
+2692
+ rotate: false
+ xy: 853, 757
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2695
+ rotate: false
+ xy: 762, 54
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2847
+ rotate: false
+ xy: 589, 598
+ size: 198, 50
+ orig: 198, 50
+ offset: 0, 0
+ index: -1
+2850
+ rotate: false
+ xy: 589, 546
+ size: 198, 50
+ orig: 198, 50
+ offset: 0, 0
+ index: -1
+2853
+ rotate: false
+ xy: 589, 494
+ size: 198, 50
+ orig: 198, 50
+ offset: 0, 0
+ index: -1
+2856
+ rotate: false
+ xy: 589, 442
+ size: 198, 50
+ orig: 198, 50
+ offset: 0, 0
+ index: -1
+2863
+ rotate: false
+ xy: 795, 683
+ size: 107, 35
+ orig: 107, 35
+ offset: 0, 0
+ index: -1
+2867
+ rotate: false
+ xy: 795, 646
+ size: 107, 35
+ orig: 107, 35
+ offset: 0, 0
+ index: -1
+2891
+ rotate: false
+ xy: 902, 482
+ size: 119, 50
+ orig: 119, 50
+ offset: 0, 0
+ index: -1
+2894
+ rotate: false
+ xy: 902, 430
+ size: 119, 50
+ orig: 119, 50
+ offset: 0, 0
+ index: -1
+2899
+ rotate: false
+ xy: 902, 378
+ size: 119, 50
+ orig: 119, 50
+ offset: 0, 0
+ index: -1
+29
+ rotate: false
+ xy: 853, 805
+ size: 51, 81
+ orig: 51, 81
+ offset: 0, 0
+ index: -1
+2902
+ rotate: false
+ xy: 902, 326
+ size: 119, 50
+ orig: 119, 50
+ offset: 0, 0
+ index: -1
+2907
+ rotate: false
+ xy: 901, 274
+ size: 119, 50
+ orig: 119, 50
+ offset: 0, 0
+ index: -1
+3050
+ rotate: false
+ xy: 454, 352
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3053
+ rotate: false
+ xy: 454, 300
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3195
+ rotate: false
+ xy: 2, 648
+ size: 113, 134
+ orig: 113, 134
+ offset: 0, 0
+ index: -1
+330
+ rotate: false
+ xy: 490, 2
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+3858
+ rotate: false
+ xy: 789, 544
+ size: 111, 100
+ orig: 111, 100
+ offset: 0, 0
+ index: -1
+3875
+ rotate: false
+ xy: 789, 442
+ size: 111, 100
+ orig: 111, 100
+ offset: 0, 0
+ index: -1
+411
+ rotate: false
+ xy: 815, 285
+ size: 84, 76
+ orig: 84, 76
+ offset: 0, 0
+ index: -1
+412
+ rotate: false
+ xy: 815, 207
+ size: 84, 76
+ orig: 84, 76
+ offset: 0, 0
+ index: -1
+418
+ rotate: false
+ xy: 815, 129
+ size: 84, 76
+ orig: 84, 76
+ offset: 0, 0
+ index: -1
+4974
+ rotate: false
+ xy: 494, 447
+ size: 93, 85
+ orig: 93, 85
+ offset: 0, 0
+ index: -1
+5898
+ rotate: false
+ xy: 2, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+5918
+ rotate: false
+ xy: 104, 534
+ size: 95, 110
+ orig: 95, 110
+ offset: 0, 0
+ index: -1
+5925
+ rotate: false
+ xy: 201, 534
+ size: 95, 110
+ orig: 95, 110
+ offset: 0, 0
+ index: -1
+5926
+ rotate: false
+ xy: 298, 534
+ size: 95, 110
+ orig: 95, 110
+ offset: 0, 0
+ index: -1
+5933
+ rotate: false
+ xy: 395, 534
+ size: 95, 110
+ orig: 95, 110
+ offset: 0, 0
+ index: -1
+5940
+ rotate: false
+ xy: 492, 534
+ size: 95, 110
+ orig: 95, 110
+ offset: 0, 0
+ index: -1
+6018
+ rotate: false
+ xy: 228, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6022
+ rotate: false
+ xy: 454, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6026
+ rotate: false
+ xy: 680, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6030
+ rotate: false
+ xy: 2, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6033
+ rotate: false
+ xy: 228, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6037
+ rotate: false
+ xy: 454, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6041
+ rotate: false
+ xy: 680, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6045
+ rotate: false
+ xy: 2, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6082
+ rotate: false
+ xy: 228, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6086
+ rotate: false
+ xy: 454, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6090
+ rotate: false
+ xy: 680, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6094
+ rotate: false
+ xy: 2, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6097
+ rotate: false
+ xy: 228, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6101
+ rotate: false
+ xy: 454, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6105
+ rotate: false
+ xy: 680, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6109
+ rotate: false
+ xy: 175, 854
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6146
+ rotate: false
+ xy: 401, 854
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6150
+ rotate: false
+ xy: 627, 854
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6154
+ rotate: false
+ xy: 175, 820
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6158
+ rotate: false
+ xy: 401, 820
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6161
+ rotate: false
+ xy: 627, 820
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6165
+ rotate: false
+ xy: 175, 786
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6169
+ rotate: false
+ xy: 401, 786
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6173
+ rotate: false
+ xy: 627, 786
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6210
+ rotate: false
+ xy: 117, 752
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6214
+ rotate: false
+ xy: 343, 752
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6218
+ rotate: false
+ xy: 569, 752
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6222
+ rotate: false
+ xy: 117, 718
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6225
+ rotate: false
+ xy: 343, 718
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6229
+ rotate: false
+ xy: 569, 718
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6233
+ rotate: false
+ xy: 117, 684
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6237
+ rotate: false
+ xy: 343, 684
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6274
+ rotate: false
+ xy: 569, 684
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6278
+ rotate: false
+ xy: 117, 650
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6282
+ rotate: false
+ xy: 343, 650
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6286
+ rotate: false
+ xy: 569, 650
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6289
+ rotate: false
+ xy: 589, 408
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6293
+ rotate: false
+ xy: 589, 374
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6297
+ rotate: false
+ xy: 589, 340
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6301
+ rotate: false
+ xy: 589, 306
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6418
+ rotate: false
+ xy: 589, 272
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6422
+ rotate: false
+ xy: 589, 238
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6426
+ rotate: false
+ xy: 589, 204
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6430
+ rotate: false
+ xy: 589, 170
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6433
+ rotate: false
+ xy: 589, 136
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6437
+ rotate: false
+ xy: 589, 102
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+667
+ rotate: false
+ xy: 494, 381
+ size: 93, 64
+ orig: 93, 64
+ offset: 0, 0
+ index: -1
+6824
+ rotate: false
+ xy: 2, 786
+ size: 171, 100
+ orig: 171, 100
+ offset: 0, 0
+ index: -1
+6859
+ rotate: false
+ xy: 589, 2
+ size: 171, 98
+ orig: 171, 98
+ offset: 0, 0
+ index: -1
+727
+ rotate: false
+ xy: 762, 2
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+89
+ rotate: false
+ xy: 2, 270
+ size: 60, 130
+ orig: 60, 130
+ offset: 0, 0
+ index: -1
+92
+ rotate: false
+ xy: 2, 402
+ size: 100, 130
+ orig: 100, 130
+ offset: 0, 0
+ index: -1
+
+images54.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10408
+ rotate: false
+ xy: 852, 2
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+12111
+ rotate: false
+ xy: 590, 613
+ size: 208, 35
+ orig: 208, 35
+ offset: 0, 0
+ index: -1
+12112
+ rotate: false
+ xy: 590, 576
+ size: 208, 35
+ orig: 208, 35
+ offset: 0, 0
+ index: -1
+12119
+ rotate: false
+ xy: 590, 539
+ size: 208, 35
+ orig: 208, 35
+ offset: 0, 0
+ index: -1
+12120
+ rotate: false
+ xy: 590, 502
+ size: 208, 35
+ orig: 208, 35
+ offset: 0, 0
+ index: -1
+12127
+ rotate: false
+ xy: 590, 465
+ size: 208, 35
+ orig: 208, 35
+ offset: 0, 0
+ index: -1
+12128
+ rotate: false
+ xy: 590, 428
+ size: 208, 35
+ orig: 208, 35
+ offset: 0, 0
+ index: -1
+12135
+ rotate: false
+ xy: 589, 391
+ size: 208, 35
+ orig: 208, 35
+ offset: 0, 0
+ index: -1
+12136
+ rotate: false
+ xy: 589, 354
+ size: 208, 35
+ orig: 208, 35
+ offset: 0, 0
+ index: -1
+12155
+ rotate: false
+ xy: 132, 333
+ size: 147, 75
+ orig: 147, 75
+ offset: 0, 0
+ index: -1
+12160
+ rotate: false
+ xy: 589, 225
+ size: 196, 75
+ orig: 196, 75
+ offset: 0, 0
+ index: -1
+12161
+ rotate: false
+ xy: 132, 256
+ size: 147, 75
+ orig: 147, 75
+ offset: 0, 0
+ index: -1
+12740
+ rotate: false
+ xy: 589, 157
+ size: 195, 66
+ orig: 195, 66
+ offset: 0, 0
+ index: -1
+12745
+ rotate: false
+ xy: 589, 89
+ size: 195, 66
+ orig: 195, 66
+ offset: 0, 0
+ index: -1
+13956
+ rotate: false
+ xy: 656, 7
+ size: 128, 80
+ orig: 128, 80
+ offset: 0, 0
+ index: -1
+14027
+ rotate: false
+ xy: 132, 139
+ size: 62, 48
+ orig: 62, 48
+ offset: 0, 0
+ index: -1
+14030
+ rotate: false
+ xy: 132, 89
+ size: 62, 48
+ orig: 62, 48
+ offset: 0, 0
+ index: -1
+143
+ rotate: false
+ xy: 281, 381
+ size: 80, 85
+ orig: 80, 85
+ offset: 0, 0
+ index: -1
+1528
+ rotate: false
+ xy: 281, 299
+ size: 80, 80
+ orig: 80, 80
+ offset: 0, 0
+ index: -1
+159
+ rotate: false
+ xy: 2, 654
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+160
+ rotate: false
+ xy: 2, 524
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+161
+ rotate: false
+ xy: 2, 394
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+162
+ rotate: false
+ xy: 2, 264
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+163
+ rotate: false
+ xy: 2, 134
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+164
+ rotate: false
+ xy: 2, 4
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+165
+ rotate: false
+ xy: 132, 410
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+18809
+ rotate: false
+ xy: 283, 530
+ size: 79, 60
+ orig: 79, 60
+ offset: 0, 0
+ index: -1
+18820
+ rotate: false
+ xy: 281, 468
+ size: 81, 60
+ orig: 81, 60
+ offset: 0, 0
+ index: -1
+1889
+ rotate: false
+ xy: 852, 227
+ size: 169, 63
+ orig: 169, 63
+ offset: 0, 0
+ index: -1
+19518
+ rotate: false
+ xy: 906, 904
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19525
+ rotate: false
+ xy: 906, 784
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19526
+ rotate: false
+ xy: 906, 664
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+1983
+ rotate: false
+ xy: 852, 602
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+1984
+ rotate: false
+ xy: 852, 540
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+1985
+ rotate: false
+ xy: 852, 478
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+1986
+ rotate: false
+ xy: 852, 416
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+1987
+ rotate: false
+ xy: 852, 354
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+1988
+ rotate: false
+ xy: 852, 292
+ size: 170, 60
+ orig: 170, 60
+ offset: 0, 0
+ index: -1
+20091
+ rotate: false
+ xy: 132, 540
+ size: 149, 49
+ orig: 149, 49
+ offset: 0, 0
+ index: -1
+2133
+ rotate: false
+ xy: 810, 731
+ size: 41, 53
+ orig: 41, 53
+ offset: 0, 0
+ index: -1
+23756
+ rotate: false
+ xy: 132, 72
+ size: 62, 15
+ orig: 62, 15
+ offset: 0, 0
+ index: -1
+23779
+ rotate: false
+ xy: 196, 239
+ size: 83, 15
+ orig: 83, 15
+ offset: 0, 0
+ index: -1
+23904
+ rotate: false
+ xy: 196, 222
+ size: 83, 15
+ orig: 83, 15
+ offset: 0, 0
+ index: -1
+2627
+ rotate: false
+ xy: 810, 591
+ size: 40, 60
+ orig: 40, 60
+ offset: 0, 0
+ index: -1
+2698
+ rotate: false
+ xy: 853, 840
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2701
+ rotate: false
+ xy: 853, 792
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2704
+ rotate: false
+ xy: 853, 744
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2707
+ rotate: false
+ xy: 853, 696
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2859
+ rotate: false
+ xy: 589, 302
+ size: 198, 50
+ orig: 198, 50
+ offset: 0, 0
+ index: -1
+410
+ rotate: false
+ xy: 852, 149
+ size: 168, 76
+ orig: 168, 76
+ offset: 0, 0
+ index: -1
+413
+ rotate: false
+ xy: 852, 71
+ size: 168, 76
+ orig: 168, 76
+ offset: 0, 0
+ index: -1
+4504
+ rotate: false
+ xy: 132, 189
+ size: 62, 65
+ orig: 62, 65
+ offset: 0, 0
+ index: -1
+469
+ rotate: false
+ xy: 951, 2
+ size: 64, 67
+ orig: 64, 67
+ offset: 0, 0
+ index: -1
+474
+ rotate: false
+ xy: 786, 9
+ size: 64, 55
+ orig: 64, 55
+ offset: 0, 0
+ index: -1
+4800
+ rotate: false
+ xy: 196, 165
+ size: 165, 50
+ orig: 165, 50
+ offset: 0, 0
+ index: -1
+4803
+ rotate: false
+ xy: 196, 113
+ size: 165, 50
+ orig: 165, 50
+ offset: 0, 0
+ index: -1
+4808
+ rotate: false
+ xy: 196, 61
+ size: 165, 50
+ orig: 165, 50
+ offset: 0, 0
+ index: -1
+4811
+ rotate: false
+ xy: 196, 9
+ size: 165, 50
+ orig: 165, 50
+ offset: 0, 0
+ index: -1
+4882
+ rotate: false
+ xy: 132, 2
+ size: 62, 62
+ orig: 62, 62
+ offset: 0, 0
+ index: -1
+4890
+ rotate: false
+ xy: 810, 653
+ size: 40, 76
+ orig: 40, 76
+ offset: 0, 0
+ index: -1
+495
+ rotate: false
+ xy: 852, 664
+ size: 40, 30
+ orig: 40, 30
+ offset: 0, 0
+ index: -1
+4976
+ rotate: false
+ xy: 623, 2
+ size: 31, 85
+ orig: 31, 85
+ offset: 0, 0
+ index: -1
+5116
+ rotate: false
+ xy: 262, 488
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5119
+ rotate: false
+ xy: 262, 436
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+553
+ rotate: false
+ xy: 787, 230
+ size: 63, 32
+ orig: 63, 32
+ offset: 0, 0
+ index: -1
+555
+ rotate: false
+ xy: 787, 196
+ size: 63, 32
+ orig: 63, 32
+ offset: 0, 0
+ index: -1
+5772
+ rotate: false
+ xy: 281, 217
+ size: 80, 80
+ orig: 80, 80
+ offset: 0, 0
+ index: -1
+629
+ rotate: false
+ xy: 786, 66
+ size: 64, 128
+ orig: 64, 128
+ offset: 0, 0
+ index: -1
+6441
+ rotate: false
+ xy: 2, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6445
+ rotate: false
+ xy: 228, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6482
+ rotate: false
+ xy: 454, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6486
+ rotate: false
+ xy: 680, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6490
+ rotate: false
+ xy: 2, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6494
+ rotate: false
+ xy: 228, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6497
+ rotate: false
+ xy: 454, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+65
+ rotate: false
+ xy: 589, 2
+ size: 32, 85
+ orig: 32, 85
+ offset: 0, 0
+ index: -1
+6501
+ rotate: false
+ xy: 680, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6505
+ rotate: false
+ xy: 2, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6509
+ rotate: false
+ xy: 228, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+66
+ rotate: false
+ xy: 789, 264
+ size: 61, 85
+ orig: 61, 85
+ offset: 0, 0
+ index: -1
+6615
+ rotate: false
+ xy: 454, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6619
+ rotate: false
+ xy: 680, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6623
+ rotate: false
+ xy: 2, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6627
+ rotate: false
+ xy: 228, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6630
+ rotate: false
+ xy: 454, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6634
+ rotate: false
+ xy: 680, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6638
+ rotate: false
+ xy: 175, 854
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6642
+ rotate: false
+ xy: 401, 854
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6679
+ rotate: false
+ xy: 627, 854
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6683
+ rotate: false
+ xy: 175, 820
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6687
+ rotate: false
+ xy: 401, 820
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6691
+ rotate: false
+ xy: 627, 820
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6694
+ rotate: false
+ xy: 175, 786
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6698
+ rotate: false
+ xy: 401, 786
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6702
+ rotate: false
+ xy: 627, 786
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6706
+ rotate: false
+ xy: 132, 752
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8182
+ rotate: false
+ xy: 132, 752
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+6802
+ rotate: false
+ xy: 800, 511
+ size: 50, 78
+ orig: 50, 78
+ offset: 0, 0
+ index: -1
+6803
+ rotate: false
+ xy: 800, 431
+ size: 50, 78
+ orig: 50, 78
+ offset: 0, 0
+ index: -1
+6808
+ rotate: false
+ xy: 800, 351
+ size: 50, 78
+ orig: 50, 78
+ offset: 0, 0
+ index: -1
+6830
+ rotate: false
+ xy: 2, 786
+ size: 171, 100
+ orig: 171, 100
+ offset: 0, 0
+ index: -1
+7020
+ rotate: false
+ xy: 132, 592
+ size: 114, 56
+ orig: 114, 56
+ offset: 0, 0
+ index: -1
+7026
+ rotate: false
+ xy: 248, 592
+ size: 114, 56
+ orig: 114, 56
+ offset: 0, 0
+ index: -1
+7118
+ rotate: false
+ xy: 358, 752
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7121
+ rotate: false
+ xy: 584, 752
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7124
+ rotate: false
+ xy: 132, 718
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7127
+ rotate: false
+ xy: 358, 718
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7129
+ rotate: false
+ xy: 584, 718
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7131
+ rotate: false
+ xy: 132, 684
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7151
+ rotate: false
+ xy: 358, 684
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7154
+ rotate: false
+ xy: 584, 684
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7382
+ rotate: false
+ xy: 132, 650
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7386
+ rotate: false
+ xy: 358, 650
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7390
+ rotate: false
+ xy: 584, 650
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7394
+ rotate: false
+ xy: 364, 616
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7397
+ rotate: false
+ xy: 364, 582
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7401
+ rotate: false
+ xy: 364, 548
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7405
+ rotate: false
+ xy: 364, 514
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7409
+ rotate: false
+ xy: 364, 480
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7446
+ rotate: false
+ xy: 364, 446
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7450
+ rotate: false
+ xy: 363, 412
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7454
+ rotate: false
+ xy: 363, 378
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7458
+ rotate: false
+ xy: 363, 344
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7461
+ rotate: false
+ xy: 363, 310
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7465
+ rotate: false
+ xy: 363, 276
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7469
+ rotate: false
+ xy: 363, 242
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7473
+ rotate: false
+ xy: 363, 208
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7526
+ rotate: false
+ xy: 363, 174
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7530
+ rotate: false
+ xy: 363, 140
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7534
+ rotate: false
+ xy: 363, 106
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7538
+ rotate: false
+ xy: 363, 72
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7541
+ rotate: false
+ xy: 363, 38
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7545
+ rotate: false
+ xy: 363, 4
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+
+images55.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10397
+ rotate: false
+ xy: 430, 211
+ size: 130, 99
+ orig: 130, 99
+ offset: 0, 0
+ index: -1
+12079
+ rotate: false
+ xy: 262, 304
+ size: 27, 52
+ orig: 27, 52
+ offset: 0, 0
+ index: -1
+12116
+ rotate: false
+ xy: 852, 707
+ size: 52, 35
+ orig: 52, 35
+ offset: 0, 0
+ index: -1
+12123
+ rotate: false
+ xy: 852, 670
+ size: 52, 35
+ orig: 52, 35
+ offset: 0, 0
+ index: -1
+12124
+ rotate: false
+ xy: 852, 633
+ size: 52, 35
+ orig: 52, 35
+ offset: 0, 0
+ index: -1
+12131
+ rotate: false
+ xy: 852, 596
+ size: 52, 35
+ orig: 52, 35
+ offset: 0, 0
+ index: -1
+12132
+ rotate: false
+ xy: 852, 559
+ size: 52, 35
+ orig: 52, 35
+ offset: 0, 0
+ index: -1
+12139
+ rotate: false
+ xy: 852, 522
+ size: 52, 35
+ orig: 52, 35
+ offset: 0, 0
+ index: -1
+12710
+ rotate: false
+ xy: 788, 299
+ size: 61, 75
+ orig: 61, 75
+ offset: 0, 0
+ index: -1
+12711
+ rotate: false
+ xy: 788, 222
+ size: 61, 75
+ orig: 61, 75
+ offset: 0, 0
+ index: -1
+13957
+ rotate: false
+ xy: 132, 304
+ size: 128, 80
+ orig: 128, 80
+ offset: 0, 0
+ index: -1
+14033
+ rotate: false
+ xy: 746, 668
+ size: 62, 48
+ orig: 62, 48
+ offset: 0, 0
+ index: -1
+14036
+ rotate: false
+ xy: 498, 5
+ size: 62, 48
+ orig: 62, 48
+ offset: 0, 0
+ index: -1
+1500
+ rotate: false
+ xy: 132, 392
+ size: 160, 96
+ orig: 160, 96
+ offset: 0, 0
+ index: -1
+166
+ rotate: false
+ xy: 2, 654
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+167
+ rotate: false
+ xy: 2, 414
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+168
+ rotate: false
+ xy: 2, 284
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+169
+ rotate: false
+ xy: 2, 154
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+170
+ rotate: false
+ xy: 2, 24
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+171
+ rotate: false
+ xy: 132, 174
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17759
+ rotate: false
+ xy: 294, 304
+ size: 66, 107
+ orig: 66, 107
+ offset: 0, 0
+ index: -1
+17763
+ rotate: false
+ xy: 362, 304
+ size: 66, 107
+ orig: 66, 107
+ offset: 0, 0
+ index: -1
+17784
+ rotate: false
+ xy: 2, 545
+ size: 132, 107
+ orig: 132, 107
+ offset: 0, 0
+ index: -1
+18807
+ rotate: false
+ xy: 132, 656
+ size: 160, 60
+ orig: 160, 60
+ offset: 0, 0
+ index: -1
+19533
+ rotate: false
+ xy: 906, 904
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19534
+ rotate: false
+ xy: 906, 784
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19541
+ rotate: false
+ xy: 906, 664
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19546
+ rotate: false
+ xy: 906, 544
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+22928
+ rotate: false
+ xy: 906, 544
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19553
+ rotate: false
+ xy: 906, 424
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+22935
+ rotate: false
+ xy: 906, 424
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19554
+ rotate: false
+ xy: 906, 304
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+22936
+ rotate: false
+ xy: 906, 304
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+206
+ rotate: false
+ xy: 132, 44
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+207
+ rotate: false
+ xy: 262, 174
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+208
+ rotate: false
+ xy: 262, 44
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+2254
+ rotate: false
+ xy: 800, 3
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+23754
+ rotate: false
+ xy: 132, 27
+ size: 82, 15
+ orig: 82, 15
+ offset: 0, 0
+ index: -1
+23771
+ rotate: false
+ xy: 2, 7
+ size: 105, 15
+ orig: 105, 15
+ offset: 0, 0
+ index: -1
+23781
+ rotate: false
+ xy: 788, 139
+ size: 61, 15
+ orig: 61, 15
+ offset: 0, 0
+ index: -1
+23784
+ rotate: false
+ xy: 262, 375
+ size: 30, 15
+ orig: 30, 15
+ offset: 0, 0
+ index: -1
+23788
+ rotate: false
+ xy: 262, 358
+ size: 30, 15
+ orig: 30, 15
+ offset: 0, 0
+ index: -1
+23801
+ rotate: false
+ xy: 109, 7
+ size: 105, 15
+ orig: 105, 15
+ offset: 0, 0
+ index: -1
+23817
+ rotate: false
+ xy: 788, 122
+ size: 61, 15
+ orig: 61, 15
+ offset: 0, 0
+ index: -1
+23857
+ rotate: false
+ xy: 788, 105
+ size: 61, 15
+ orig: 61, 15
+ offset: 0, 0
+ index: -1
+23869
+ rotate: false
+ xy: 788, 88
+ size: 61, 15
+ orig: 61, 15
+ offset: 0, 0
+ index: -1
+2388
+ rotate: false
+ xy: 412, 2
+ size: 84, 51
+ orig: 84, 51
+ offset: 0, 0
+ index: -1
+2710
+ rotate: false
+ xy: 853, 840
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2713
+ rotate: false
+ xy: 853, 792
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2716
+ rotate: false
+ xy: 853, 744
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2871
+ rotate: false
+ xy: 742, 376
+ size: 107, 35
+ orig: 107, 35
+ offset: 0, 0
+ index: -1
+2882
+ rotate: false
+ xy: 562, 428
+ size: 178, 50
+ orig: 178, 50
+ offset: 0, 0
+ index: -1
+2887
+ rotate: false
+ xy: 562, 376
+ size: 178, 50
+ orig: 178, 50
+ offset: 0, 0
+ index: -1
+3054
+ rotate: false
+ xy: 392, 252
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3069
+ rotate: false
+ xy: 430, 312
+ size: 130, 99
+ orig: 130, 99
+ offset: 0, 0
+ index: -1
+3663
+ rotate: false
+ xy: 392, 211
+ size: 32, 39
+ orig: 32, 39
+ offset: 0, 0
+ index: -1
+3678
+ rotate: false
+ xy: 216, 3
+ size: 96, 39
+ orig: 96, 39
+ offset: 0, 0
+ index: -1
+3682
+ rotate: false
+ xy: 314, 3
+ size: 96, 39
+ orig: 96, 39
+ offset: 0, 0
+ index: -1
+417
+ rotate: false
+ xy: 392, 133
+ size: 168, 76
+ orig: 168, 76
+ offset: 0, 0
+ index: -1
+419
+ rotate: false
+ xy: 392, 55
+ size: 168, 76
+ orig: 168, 76
+ offset: 0, 0
+ index: -1
+4390
+ rotate: false
+ xy: 735, 3
+ size: 63, 25
+ orig: 63, 25
+ offset: 0, 0
+ index: -1
+449
+ rotate: false
+ xy: 852, 488
+ size: 52, 32
+ orig: 52, 32
+ offset: 0, 0
+ index: -1
+452
+ rotate: false
+ xy: 852, 454
+ size: 52, 32
+ orig: 52, 32
+ offset: 0, 0
+ index: -1
+455
+ rotate: false
+ xy: 852, 420
+ size: 52, 32
+ orig: 52, 32
+ offset: 0, 0
+ index: -1
+458
+ rotate: false
+ xy: 852, 386
+ size: 52, 32
+ orig: 52, 32
+ offset: 0, 0
+ index: -1
+4979
+ rotate: false
+ xy: 851, 2
+ size: 53, 30
+ orig: 53, 30
+ offset: 0, 0
+ index: -1
+4980
+ rotate: false
+ xy: 906, 2
+ size: 53, 30
+ orig: 53, 30
+ offset: 0, 0
+ index: -1
+4983
+ rotate: false
+ xy: 961, 2
+ size: 53, 30
+ orig: 53, 30
+ offset: 0, 0
+ index: -1
+4993
+ rotate: false
+ xy: 810, 724
+ size: 40, 60
+ orig: 40, 60
+ offset: 0, 0
+ index: -1
+4994
+ rotate: false
+ xy: 810, 662
+ size: 40, 60
+ orig: 40, 60
+ offset: 0, 0
+ index: -1
+62
+ rotate: false
+ xy: 788, 156
+ size: 61, 64
+ orig: 61, 64
+ offset: 0, 0
+ index: -1
+6831
+ rotate: false
+ xy: 2, 786
+ size: 171, 100
+ orig: 171, 100
+ offset: 0, 0
+ index: -1
+6837
+ rotate: false
+ xy: 851, 202
+ size: 171, 100
+ orig: 171, 100
+ offset: 0, 0
+ index: -1
+6838
+ rotate: false
+ xy: 851, 100
+ size: 171, 100
+ orig: 171, 100
+ offset: 0, 0
+ index: -1
+6843
+ rotate: false
+ xy: 562, 2
+ size: 171, 100
+ orig: 171, 100
+ offset: 0, 0
+ index: -1
+7027
+ rotate: false
+ xy: 735, 30
+ size: 114, 56
+ orig: 114, 56
+ offset: 0, 0
+ index: -1
+7042
+ rotate: false
+ xy: 746, 579
+ size: 104, 81
+ orig: 104, 81
+ offset: 0, 0
+ index: -1
+7049
+ rotate: false
+ xy: 746, 496
+ size: 104, 81
+ orig: 104, 81
+ offset: 0, 0
+ index: -1
+7052
+ rotate: false
+ xy: 746, 413
+ size: 104, 81
+ orig: 104, 81
+ offset: 0, 0
+ index: -1
+7075
+ rotate: false
+ xy: 136, 573
+ size: 156, 81
+ orig: 156, 81
+ offset: 0, 0
+ index: -1
+7081
+ rotate: false
+ xy: 136, 490
+ size: 156, 81
+ orig: 156, 81
+ offset: 0, 0
+ index: -1
+7549
+ rotate: false
+ xy: 2, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7553
+ rotate: false
+ xy: 228, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7590
+ rotate: false
+ xy: 454, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7594
+ rotate: false
+ xy: 680, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7598
+ rotate: false
+ xy: 2, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7602
+ rotate: false
+ xy: 228, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7605
+ rotate: false
+ xy: 454, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7609
+ rotate: false
+ xy: 680, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7613
+ rotate: false
+ xy: 2, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7617
+ rotate: false
+ xy: 228, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7654
+ rotate: false
+ xy: 454, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7658
+ rotate: false
+ xy: 680, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7662
+ rotate: false
+ xy: 2, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7666
+ rotate: false
+ xy: 228, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7669
+ rotate: false
+ xy: 454, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7673
+ rotate: false
+ xy: 680, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7677
+ rotate: false
+ xy: 175, 854
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7681
+ rotate: false
+ xy: 401, 854
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7754
+ rotate: false
+ xy: 627, 854
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7758
+ rotate: false
+ xy: 175, 820
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7762
+ rotate: false
+ xy: 401, 820
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7766
+ rotate: false
+ xy: 627, 820
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7769
+ rotate: false
+ xy: 175, 786
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7773
+ rotate: false
+ xy: 401, 786
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7777
+ rotate: false
+ xy: 627, 786
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7781
+ rotate: false
+ xy: 132, 752
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7818
+ rotate: false
+ xy: 358, 752
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7822
+ rotate: false
+ xy: 584, 752
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7826
+ rotate: false
+ xy: 132, 718
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7830
+ rotate: false
+ xy: 358, 718
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7833
+ rotate: false
+ xy: 584, 718
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7837
+ rotate: false
+ xy: 294, 684
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7841
+ rotate: false
+ xy: 520, 684
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7845
+ rotate: false
+ xy: 294, 650
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7882
+ rotate: false
+ xy: 520, 650
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7886
+ rotate: false
+ xy: 294, 616
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7890
+ rotate: false
+ xy: 520, 616
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7894
+ rotate: false
+ xy: 294, 582
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7897
+ rotate: false
+ xy: 520, 582
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7901
+ rotate: false
+ xy: 294, 548
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7905
+ rotate: false
+ xy: 520, 548
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7909
+ rotate: false
+ xy: 294, 514
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7946
+ rotate: false
+ xy: 520, 514
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7950
+ rotate: false
+ xy: 294, 480
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7954
+ rotate: false
+ xy: 520, 480
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7958
+ rotate: false
+ xy: 562, 342
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7978
+ rotate: false
+ xy: 562, 308
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7982
+ rotate: false
+ xy: 562, 274
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7986
+ rotate: false
+ xy: 562, 240
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7990
+ rotate: false
+ xy: 562, 206
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7993
+ rotate: false
+ xy: 562, 172
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+7997
+ rotate: false
+ xy: 562, 138
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8001
+ rotate: false
+ xy: 562, 104
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+811
+ rotate: false
+ xy: 851, 34
+ size: 171, 64
+ orig: 171, 64
+ offset: 0, 0
+ index: -1
+815
+ rotate: false
+ xy: 851, 320
+ size: 53, 64
+ orig: 53, 64
+ offset: 0, 0
+ index: -1
+9797
+ rotate: false
+ xy: 294, 413
+ size: 132, 65
+ orig: 132, 65
+ offset: 0, 0
+ index: -1
+9804
+ rotate: false
+ xy: 428, 413
+ size: 132, 65
+ orig: 132, 65
+ offset: 0, 0
+ index: -1
+
+images56.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10325
+ rotate: false
+ xy: 905, 107
+ size: 100, 75
+ orig: 100, 75
+ offset: 0, 0
+ index: -1
+10342
+ rotate: false
+ xy: 684, 505
+ size: 59, 75
+ orig: 59, 75
+ offset: 0, 0
+ index: -1
+10351
+ rotate: false
+ xy: 777, 59
+ size: 59, 75
+ orig: 59, 75
+ offset: 0, 0
+ index: -1
+10396
+ rotate: false
+ xy: 838, 107
+ size: 65, 99
+ orig: 65, 99
+ offset: 0, 0
+ index: -1
+12113
+ rotate: false
+ xy: 300, 545
+ size: 156, 35
+ orig: 156, 35
+ offset: 0, 0
+ index: -1
+12943
+ rotate: false
+ xy: 262, 34
+ size: 171, 99
+ orig: 171, 99
+ offset: 0, 0
+ index: -1
+12944
+ rotate: false
+ xy: 435, 34
+ size: 171, 99
+ orig: 171, 99
+ offset: 0, 0
+ index: -1
+14028
+ rotate: false
+ xy: 810, 516
+ size: 93, 48
+ orig: 93, 48
+ offset: 0, 0
+ index: -1
+14039
+ rotate: false
+ xy: 746, 668
+ size: 62, 48
+ orig: 62, 48
+ offset: 0, 0
+ index: -1
+14042
+ rotate: false
+ xy: 746, 618
+ size: 62, 48
+ orig: 62, 48
+ offset: 0, 0
+ index: -1
+1481
+ rotate: false
+ xy: 265, 2
+ size: 40, 30
+ orig: 40, 30
+ offset: 0, 0
+ index: -1
+17
+ rotate: false
+ xy: 343, 2
+ size: 33, 30
+ orig: 33, 30
+ offset: 0, 0
+ index: -1
+17779
+ rotate: false
+ xy: 2, 545
+ size: 66, 107
+ orig: 66, 107
+ offset: 0, 0
+ index: -1
+17783
+ rotate: false
+ xy: 70, 545
+ size: 66, 107
+ orig: 66, 107
+ offset: 0, 0
+ index: -1
+17792
+ rotate: false
+ xy: 262, 216
+ size: 192, 79
+ orig: 192, 79
+ offset: 0, 0
+ index: -1
+17793
+ rotate: false
+ xy: 262, 135
+ size: 192, 79
+ orig: 192, 79
+ offset: 0, 0
+ index: -1
+18328
+ rotate: false
+ xy: 744, 208
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+18333
+ rotate: false
+ xy: 821, 208
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+18806
+ rotate: false
+ xy: 745, 454
+ size: 158, 60
+ orig: 158, 60
+ offset: 0, 0
+ index: -1
+18810
+ rotate: false
+ xy: 745, 392
+ size: 158, 60
+ orig: 158, 60
+ offset: 0, 0
+ index: -1
+18811
+ rotate: false
+ xy: 132, 656
+ size: 160, 60
+ orig: 160, 60
+ offset: 0, 0
+ index: -1
+18814
+ rotate: false
+ xy: 745, 330
+ size: 158, 60
+ orig: 158, 60
+ offset: 0, 0
+ index: -1
+18818
+ rotate: false
+ xy: 745, 268
+ size: 158, 60
+ orig: 158, 60
+ offset: 0, 0
+ index: -1
+1934
+ rotate: false
+ xy: 810, 674
+ size: 40, 53
+ orig: 40, 53
+ offset: 0, 0
+ index: -1
+1935
+ rotate: false
+ xy: 683, 270
+ size: 60, 53
+ orig: 60, 53
+ offset: 0, 0
+ index: -1
+1940
+ rotate: false
+ xy: 682, 215
+ size: 60, 53
+ orig: 60, 53
+ offset: 0, 0
+ index: -1
+19561
+ rotate: false
+ xy: 906, 904
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+22943
+ rotate: false
+ xy: 906, 904
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19562
+ rotate: false
+ xy: 906, 784
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19569
+ rotate: false
+ xy: 906, 664
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19570
+ rotate: false
+ xy: 905, 544
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+19577
+ rotate: false
+ xy: 905, 424
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+1997
+ rotate: false
+ xy: 683, 443
+ size: 60, 60
+ orig: 60, 60
+ offset: 0, 0
+ index: -1
+209
+ rotate: false
+ xy: 2, 654
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+210
+ rotate: false
+ xy: 2, 414
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+211
+ rotate: false
+ xy: 2, 284
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+212
+ rotate: false
+ xy: 2, 154
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+213
+ rotate: false
+ xy: 2, 24
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+214
+ rotate: false
+ xy: 132, 294
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+215
+ rotate: false
+ xy: 132, 164
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+216
+ rotate: false
+ xy: 132, 34
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+2180
+ rotate: false
+ xy: 138, 619
+ size: 153, 35
+ orig: 153, 35
+ offset: 0, 0
+ index: -1
+21808
+ rotate: false
+ xy: 536, 4
+ size: 43, 28
+ orig: 43, 28
+ offset: 0, 0
+ index: -1
+21811
+ rotate: false
+ xy: 581, 4
+ size: 43, 28
+ orig: 43, 28
+ offset: 0, 0
+ index: -1
+21812
+ rotate: false
+ xy: 626, 4
+ size: 43, 28
+ orig: 43, 28
+ offset: 0, 0
+ index: -1
+21815
+ rotate: false
+ xy: 671, 4
+ size: 43, 28
+ orig: 43, 28
+ offset: 0, 0
+ index: -1
+2188
+ rotate: false
+ xy: 138, 582
+ size: 153, 35
+ orig: 153, 35
+ offset: 0, 0
+ index: -1
+2195
+ rotate: false
+ xy: 262, 388
+ size: 102, 35
+ orig: 102, 35
+ offset: 0, 0
+ index: -1
+22
+ rotate: false
+ xy: 378, 2
+ size: 33, 30
+ orig: 33, 30
+ offset: 0, 0
+ index: -1
+2203
+ rotate: false
+ xy: 262, 351
+ size: 102, 35
+ orig: 102, 35
+ offset: 0, 0
+ index: -1
+2207
+ rotate: false
+ xy: 138, 545
+ size: 160, 35
+ orig: 160, 35
+ offset: 0, 0
+ index: -1
+22848
+ rotate: false
+ xy: 456, 136
+ size: 189, 70
+ orig: 189, 70
+ offset: 0, 0
+ index: -1
+22851
+ rotate: false
+ xy: 647, 136
+ size: 189, 70
+ orig: 189, 70
+ offset: 0, 0
+ index: -1
+22944
+ rotate: false
+ xy: 132, 425
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+22951
+ rotate: false
+ xy: 249, 425
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+22952
+ rotate: false
+ xy: 905, 304
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+22959
+ rotate: false
+ xy: 905, 184
+ size: 115, 118
+ orig: 115, 118
+ offset: 0, 0
+ index: -1
+23752
+ rotate: false
+ xy: 2, 7
+ size: 102, 15
+ orig: 102, 15
+ offset: 0, 0
+ index: -1
+23757
+ rotate: false
+ xy: 852, 727
+ size: 52, 15
+ orig: 52, 15
+ offset: 0, 0
+ index: -1
+23777
+ rotate: false
+ xy: 106, 7
+ size: 102, 15
+ orig: 102, 15
+ offset: 0, 0
+ index: -1
+23795
+ rotate: false
+ xy: 262, 300
+ size: 101, 15
+ orig: 101, 15
+ offset: 0, 0
+ index: -1
+23806
+ rotate: false
+ xy: 716, 17
+ size: 59, 15
+ orig: 59, 15
+ offset: 0, 0
+ index: -1
+23858
+ rotate: false
+ xy: 852, 710
+ size: 52, 15
+ orig: 52, 15
+ offset: 0, 0
+ index: -1
+23873
+ rotate: false
+ xy: 262, 334
+ size: 102, 15
+ orig: 102, 15
+ offset: 0, 0
+ index: -1
+23902
+ rotate: false
+ xy: 262, 317
+ size: 102, 15
+ orig: 102, 15
+ offset: 0, 0
+ index: -1
+2619
+ rotate: false
+ xy: 810, 729
+ size: 40, 55
+ orig: 40, 55
+ offset: 0, 0
+ index: -1
+2693
+ rotate: false
+ xy: 939, 59
+ size: 76, 46
+ orig: 76, 46
+ offset: 0, 0
+ index: -1
+2719
+ rotate: false
+ xy: 853, 840
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2744
+ rotate: false
+ xy: 853, 792
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2748
+ rotate: false
+ xy: 853, 744
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2751
+ rotate: false
+ xy: 852, 662
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2755
+ rotate: false
+ xy: 852, 614
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2758
+ rotate: false
+ xy: 852, 566
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2760
+ rotate: false
+ xy: 838, 59
+ size: 99, 46
+ orig: 99, 46
+ offset: 0, 0
+ index: -1
+31
+ rotate: false
+ xy: 683, 325
+ size: 60, 54
+ orig: 60, 54
+ offset: 0, 0
+ index: -1
+3859
+ rotate: false
+ xy: 608, 34
+ size: 167, 100
+ orig: 167, 100
+ offset: 0, 0
+ index: -1
+434
+ rotate: false
+ xy: 503, 3
+ size: 31, 29
+ orig: 31, 29
+ offset: 0, 0
+ index: -1
+475
+ rotate: false
+ xy: 919, 2
+ size: 96, 55
+ orig: 96, 55
+ offset: 0, 0
+ index: -1
+4883
+ rotate: false
+ xy: 810, 570
+ size: 40, 50
+ orig: 40, 50
+ offset: 0, 0
+ index: -1
+4931
+ rotate: false
+ xy: 307, 2
+ size: 34, 30
+ orig: 34, 30
+ offset: 0, 0
+ index: -1
+4981
+ rotate: false
+ xy: 413, 2
+ size: 28, 30
+ orig: 28, 30
+ offset: 0, 0
+ index: -1
+4982
+ rotate: false
+ xy: 443, 2
+ size: 28, 30
+ orig: 28, 30
+ offset: 0, 0
+ index: -1
+4984
+ rotate: false
+ xy: 210, 2
+ size: 53, 30
+ orig: 53, 30
+ offset: 0, 0
+ index: -1
+4985
+ rotate: false
+ xy: 473, 2
+ size: 28, 30
+ orig: 28, 30
+ offset: 0, 0
+ index: -1
+4992
+ rotate: false
+ xy: 683, 381
+ size: 60, 60
+ orig: 60, 60
+ offset: 0, 0
+ index: -1
+556
+ rotate: false
+ xy: 745, 584
+ size: 63, 32
+ orig: 63, 32
+ offset: 0, 0
+ index: -1
+567
+ rotate: false
+ xy: 745, 550
+ size: 63, 32
+ orig: 63, 32
+ offset: 0, 0
+ index: -1
+568
+ rotate: false
+ xy: 745, 516
+ size: 63, 32
+ orig: 63, 32
+ offset: 0, 0
+ index: -1
+6844
+ rotate: false
+ xy: 2, 786
+ size: 171, 100
+ orig: 171, 100
+ offset: 0, 0
+ index: -1
+748
+ rotate: false
+ xy: 810, 622
+ size: 40, 50
+ orig: 40, 50
+ offset: 0, 0
+ index: -1
+8005
+ rotate: false
+ xy: 2, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8042
+ rotate: false
+ xy: 228, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8046
+ rotate: false
+ xy: 454, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8050
+ rotate: false
+ xy: 680, 990
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8054
+ rotate: false
+ xy: 2, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8057
+ rotate: false
+ xy: 228, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8061
+ rotate: false
+ xy: 454, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8065
+ rotate: false
+ xy: 680, 956
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8069
+ rotate: false
+ xy: 2, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8106
+ rotate: false
+ xy: 228, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8110
+ rotate: false
+ xy: 454, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8114
+ rotate: false
+ xy: 680, 922
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8118
+ rotate: false
+ xy: 2, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8121
+ rotate: false
+ xy: 228, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8125
+ rotate: false
+ xy: 454, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8129
+ rotate: false
+ xy: 680, 888
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8133
+ rotate: false
+ xy: 175, 854
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8170
+ rotate: false
+ xy: 401, 854
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8174
+ rotate: false
+ xy: 627, 854
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8178
+ rotate: false
+ xy: 175, 820
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8566
+ rotate: false
+ xy: 366, 483
+ size: 89, 60
+ orig: 89, 60
+ offset: 0, 0
+ index: -1
+8568
+ rotate: false
+ xy: 366, 421
+ size: 89, 60
+ orig: 89, 60
+ offset: 0, 0
+ index: -1
+8572
+ rotate: false
+ xy: 366, 359
+ size: 89, 60
+ orig: 89, 60
+ offset: 0, 0
+ index: -1
+8574
+ rotate: false
+ xy: 366, 297
+ size: 89, 60
+ orig: 89, 60
+ offset: 0, 0
+ index: -1
+8698
+ rotate: false
+ xy: 401, 820
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8700
+ rotate: false
+ xy: 627, 820
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8711
+ rotate: false
+ xy: 175, 786
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8713
+ rotate: false
+ xy: 401, 786
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8738
+ rotate: false
+ xy: 627, 786
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8740
+ rotate: false
+ xy: 132, 752
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8751
+ rotate: false
+ xy: 358, 752
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8753
+ rotate: false
+ xy: 584, 752
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8778
+ rotate: false
+ xy: 132, 718
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8780
+ rotate: false
+ xy: 358, 718
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8791
+ rotate: false
+ xy: 584, 718
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8793
+ rotate: false
+ xy: 294, 684
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8818
+ rotate: false
+ xy: 520, 684
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8820
+ rotate: false
+ xy: 294, 650
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8831
+ rotate: false
+ xy: 520, 650
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8833
+ rotate: false
+ xy: 293, 616
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8858
+ rotate: false
+ xy: 519, 616
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8860
+ rotate: false
+ xy: 293, 582
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8871
+ rotate: false
+ xy: 519, 582
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8873
+ rotate: false
+ xy: 458, 548
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8898
+ rotate: false
+ xy: 458, 514
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8900
+ rotate: false
+ xy: 457, 480
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8911
+ rotate: false
+ xy: 457, 446
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8913
+ rotate: false
+ xy: 457, 412
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8938
+ rotate: false
+ xy: 457, 378
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8940
+ rotate: false
+ xy: 457, 344
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8951
+ rotate: false
+ xy: 457, 310
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8953
+ rotate: false
+ xy: 457, 276
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8978
+ rotate: false
+ xy: 456, 242
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8980
+ rotate: false
+ xy: 456, 208
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9559
+ rotate: false
+ xy: 777, 2
+ size: 140, 55
+ orig: 140, 55
+ offset: 0, 0
+ index: -1
+
+images57.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10038
+ rotate: false
+ xy: 521, 415
+ size: 171, 98
+ orig: 171, 98
+ offset: 0, 0
+ index: -1
+10039
+ rotate: false
+ xy: 348, 214
+ size: 171, 98
+ orig: 171, 98
+ offset: 0, 0
+ index: -1
+10044
+ rotate: false
+ xy: 521, 315
+ size: 171, 98
+ orig: 171, 98
+ offset: 0, 0
+ index: -1
+10045
+ rotate: false
+ xy: 521, 215
+ size: 171, 98
+ orig: 171, 98
+ offset: 0, 0
+ index: -1
+10050
+ rotate: false
+ xy: 760, 610
+ size: 171, 98
+ orig: 171, 98
+ offset: 0, 0
+ index: -1
+10051
+ rotate: false
+ xy: 694, 476
+ size: 171, 98
+ orig: 171, 98
+ offset: 0, 0
+ index: -1
+10055
+ rotate: false
+ xy: 694, 376
+ size: 171, 98
+ orig: 171, 98
+ offset: 0, 0
+ index: -1
+10056
+ rotate: false
+ xy: 694, 276
+ size: 171, 98
+ orig: 171, 98
+ offset: 0, 0
+ index: -1
+10324
+ rotate: false
+ xy: 972, 947
+ size: 50, 75
+ orig: 50, 75
+ offset: 0, 0
+ index: -1
+10331
+ rotate: false
+ xy: 778, 787
+ size: 189, 75
+ orig: 189, 75
+ offset: 0, 0
+ index: -1
+10333
+ rotate: false
+ xy: 972, 870
+ size: 50, 75
+ orig: 50, 75
+ offset: 0, 0
+ index: -1
+10340
+ rotate: false
+ xy: 780, 710
+ size: 189, 75
+ orig: 189, 75
+ offset: 0, 0
+ index: -1
+10366
+ rotate: false
+ xy: 175, 74
+ size: 192, 66
+ orig: 192, 66
+ offset: 0, 0
+ index: -1
+10369
+ rotate: false
+ xy: 390, 715
+ size: 192, 66
+ orig: 192, 66
+ offset: 0, 0
+ index: -1
+10385
+ rotate: false
+ xy: 584, 715
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+10386
+ rotate: false
+ xy: 348, 145
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+10389
+ rotate: false
+ xy: 369, 76
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+10390
+ rotate: false
+ xy: 384, 7
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+10405
+ rotate: false
+ xy: 544, 146
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+10406
+ rotate: false
+ xy: 565, 77
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+10409
+ rotate: false
+ xy: 580, 8
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+10410
+ rotate: false
+ xy: 761, 78
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+12168
+ rotate: false
+ xy: 740, 147
+ size: 185, 75
+ orig: 185, 75
+ offset: 0, 0
+ index: -1
+12728
+ rotate: false
+ xy: 957, 90
+ size: 65, 66
+ orig: 65, 66
+ offset: 0, 0
+ index: -1
+12949
+ rotate: false
+ xy: 2, 680
+ size: 171, 99
+ orig: 171, 99
+ offset: 0, 0
+ index: -1
+12950
+ rotate: false
+ xy: 2, 579
+ size: 171, 99
+ orig: 171, 99
+ offset: 0, 0
+ index: -1
+12955
+ rotate: false
+ xy: 2, 478
+ size: 171, 99
+ orig: 171, 99
+ offset: 0, 0
+ index: -1
+12956
+ rotate: false
+ xy: 2, 377
+ size: 171, 99
+ orig: 171, 99
+ offset: 0, 0
+ index: -1
+12960
+ rotate: false
+ xy: 2, 276
+ size: 171, 99
+ orig: 171, 99
+ offset: 0, 0
+ index: -1
+12961
+ rotate: false
+ xy: 2, 175
+ size: 171, 99
+ orig: 171, 99
+ offset: 0, 0
+ index: -1
+17582
+ rotate: false
+ xy: 874, 224
+ size: 140, 53
+ orig: 140, 53
+ offset: 0, 0
+ index: -1
+17712
+ rotate: false
+ xy: 196, 782
+ size: 192, 78
+ orig: 192, 78
+ offset: 0, 0
+ index: -1
+17713
+ rotate: false
+ xy: 390, 863
+ size: 192, 78
+ orig: 192, 78
+ offset: 0, 0
+ index: -1
+17716
+ rotate: false
+ xy: 584, 944
+ size: 192, 78
+ orig: 192, 78
+ offset: 0, 0
+ index: -1
+17717
+ rotate: false
+ xy: 390, 783
+ size: 192, 78
+ orig: 192, 78
+ offset: 0, 0
+ index: -1
+17732
+ rotate: false
+ xy: 584, 864
+ size: 192, 78
+ orig: 192, 78
+ offset: 0, 0
+ index: -1
+17733
+ rotate: false
+ xy: 778, 944
+ size: 192, 78
+ orig: 192, 78
+ offset: 0, 0
+ index: -1
+17736
+ rotate: false
+ xy: 584, 784
+ size: 192, 78
+ orig: 192, 78
+ offset: 0, 0
+ index: -1
+17737
+ rotate: false
+ xy: 778, 864
+ size: 192, 78
+ orig: 192, 78
+ offset: 0, 0
+ index: -1
+17754
+ rotate: false
+ xy: 776, 2
+ size: 96, 74
+ orig: 96, 74
+ offset: 0, 0
+ index: -1
+17755
+ rotate: false
+ xy: 874, 2
+ size: 96, 74
+ orig: 96, 74
+ offset: 0, 0
+ index: -1
+17796
+ rotate: false
+ xy: 2, 943
+ size: 192, 79
+ orig: 192, 79
+ offset: 0, 0
+ index: -1
+17797
+ rotate: false
+ xy: 2, 862
+ size: 192, 79
+ orig: 192, 79
+ offset: 0, 0
+ index: -1
+17812
+ rotate: false
+ xy: 196, 943
+ size: 192, 79
+ orig: 192, 79
+ offset: 0, 0
+ index: -1
+17813
+ rotate: false
+ xy: 2, 781
+ size: 192, 79
+ orig: 192, 79
+ offset: 0, 0
+ index: -1
+17816
+ rotate: false
+ xy: 196, 862
+ size: 192, 79
+ orig: 192, 79
+ offset: 0, 0
+ index: -1
+17817
+ rotate: false
+ xy: 390, 943
+ size: 192, 79
+ orig: 192, 79
+ offset: 0, 0
+ index: -1
+18162
+ rotate: false
+ xy: 2, 74
+ size: 171, 99
+ orig: 171, 99
+ offset: 0, 0
+ index: -1
+18163
+ rotate: false
+ xy: 175, 647
+ size: 171, 99
+ orig: 171, 99
+ offset: 0, 0
+ index: -1
+18168
+ rotate: false
+ xy: 175, 546
+ size: 171, 99
+ orig: 171, 99
+ offset: 0, 0
+ index: -1
+18169
+ rotate: false
+ xy: 175, 445
+ size: 171, 99
+ orig: 171, 99
+ offset: 0, 0
+ index: -1
+18174
+ rotate: false
+ xy: 175, 344
+ size: 171, 99
+ orig: 171, 99
+ offset: 0, 0
+ index: -1
+18175
+ rotate: false
+ xy: 175, 243
+ size: 171, 99
+ orig: 171, 99
+ offset: 0, 0
+ index: -1
+18179
+ rotate: false
+ xy: 175, 142
+ size: 171, 99
+ orig: 171, 99
+ offset: 0, 0
+ index: -1
+18180
+ rotate: false
+ xy: 348, 614
+ size: 171, 99
+ orig: 171, 99
+ offset: 0, 0
+ index: -1
+18319
+ rotate: false
+ xy: 997, 409
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+18324
+ rotate: false
+ xy: 997, 349
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+1930
+ rotate: false
+ xy: 954, 593
+ size: 68, 53
+ orig: 68, 53
+ offset: 0, 0
+ index: -1
+19645
+ rotate: false
+ xy: 997, 531
+ size: 25, 60
+ orig: 25, 60
+ offset: 0, 0
+ index: -1
+19646
+ rotate: false
+ xy: 997, 469
+ size: 25, 60
+ orig: 25, 60
+ offset: 0, 0
+ index: -1
+2155
+ rotate: false
+ xy: 348, 715
+ size: 26, 31
+ orig: 26, 31
+ offset: 0, 0
+ index: -1
+217
+ rotate: false
+ xy: 867, 446
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+2178
+ rotate: false
+ xy: 971, 713
+ size: 51, 35
+ orig: 51, 35
+ offset: 0, 0
+ index: -1
+218
+ rotate: false
+ xy: 867, 316
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+2196
+ rotate: false
+ xy: 867, 279
+ size: 153, 35
+ orig: 153, 35
+ offset: 0, 0
+ index: -1
+22856
+ rotate: false
+ xy: 2, 2
+ size: 189, 70
+ orig: 189, 70
+ offset: 0, 0
+ index: -1
+22859
+ rotate: false
+ xy: 193, 2
+ size: 189, 70
+ orig: 189, 70
+ offset: 0, 0
+ index: -1
+23909
+ rotate: false
+ xy: 954, 576
+ size: 40, 15
+ orig: 40, 15
+ offset: 0, 0
+ index: -1
+2762
+ rotate: false
+ xy: 971, 750
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+2890
+ rotate: false
+ xy: 694, 224
+ size: 178, 50
+ orig: 178, 50
+ offset: 0, 0
+ index: -1
+346
+ rotate: false
+ xy: 196, 748
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+349
+ rotate: false
+ xy: 760, 576
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5753
+ rotate: false
+ xy: 694, 585
+ size: 64, 128
+ orig: 64, 128
+ offset: 0, 0
+ index: -1
+6860
+ rotate: false
+ xy: 348, 514
+ size: 171, 98
+ orig: 171, 98
+ offset: 0, 0
+ index: -1
+6866
+ rotate: false
+ xy: 521, 615
+ size: 171, 98
+ orig: 171, 98
+ offset: 0, 0
+ index: -1
+6867
+ rotate: false
+ xy: 348, 414
+ size: 171, 98
+ orig: 171, 98
+ offset: 0, 0
+ index: -1
+6872
+ rotate: false
+ xy: 521, 515
+ size: 171, 98
+ orig: 171, 98
+ offset: 0, 0
+ index: -1
+6873
+ rotate: false
+ xy: 348, 314
+ size: 171, 98
+ orig: 171, 98
+ offset: 0, 0
+ index: -1
+814
+ rotate: false
+ xy: 927, 158
+ size: 95, 64
+ orig: 95, 64
+ offset: 0, 0
+ index: -1
+824
+ rotate: false
+ xy: 969, 798
+ size: 53, 64
+ orig: 53, 64
+ offset: 0, 0
+ index: -1
+8578
+ rotate: false
+ xy: 933, 648
+ size: 89, 60
+ orig: 89, 60
+ offset: 0, 0
+ index: -1
+9444
+ rotate: false
+ xy: 972, 18
+ size: 50, 70
+ orig: 50, 70
+ offset: 0, 0
+ index: -1
+
+images58.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10370
+ rotate: false
+ xy: 333, 853
+ size: 192, 66
+ orig: 192, 66
+ offset: 0, 0
+ index: -1
+10393
+ rotate: false
+ xy: 526, 2
+ size: 130, 97
+ orig: 130, 97
+ offset: 0, 0
+ index: -1
+10413
+ rotate: false
+ xy: 658, 2
+ size: 130, 97
+ orig: 130, 97
+ offset: 0, 0
+ index: -1
+10416
+ rotate: false
+ xy: 855, 854
+ size: 65, 99
+ orig: 65, 99
+ offset: 0, 0
+ index: -1
+10425
+ rotate: false
+ xy: 171, 955
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+10426
+ rotate: false
+ xy: 367, 955
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+10429
+ rotate: false
+ xy: 563, 955
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+10430
+ rotate: false
+ xy: 759, 955
+ size: 194, 67
+ orig: 194, 67
+ offset: 0, 0
+ index: -1
+10433
+ rotate: false
+ xy: 790, 2
+ size: 130, 97
+ orig: 130, 97
+ offset: 0, 0
+ index: -1
+10436
+ rotate: false
+ xy: 855, 753
+ size: 65, 99
+ orig: 65, 99
+ offset: 0, 0
+ index: -1
+12170
+ rotate: false
+ xy: 955, 947
+ size: 67, 75
+ orig: 67, 75
+ offset: 0, 0
+ index: -1
+12177
+ rotate: false
+ xy: 146, 844
+ size: 185, 75
+ orig: 185, 75
+ offset: 0, 0
+ index: -1
+12309
+ rotate: false
+ xy: 652, 265
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12310
+ rotate: false
+ xy: 652, 135
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12328
+ rotate: false
+ xy: 782, 359
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12329
+ rotate: false
+ xy: 782, 229
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+1812
+ rotate: false
+ xy: 262, 525
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+1996
+ rotate: false
+ xy: 392, 655
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+2119
+ rotate: false
+ xy: 262, 2
+ size: 130, 97
+ orig: 130, 97
+ offset: 0, 0
+ index: -1
+219
+ rotate: false
+ xy: 2, 674
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+220
+ rotate: false
+ xy: 2, 544
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+222
+ rotate: false
+ xy: 2, 414
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+225
+ rotate: false
+ xy: 2, 284
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+226
+ rotate: false
+ xy: 2, 154
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+229
+ rotate: false
+ xy: 2, 24
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+22903
+ rotate: false
+ xy: 912, 379
+ size: 110, 56
+ orig: 110, 56
+ offset: 0, 0
+ index: -1
+22906
+ rotate: false
+ xy: 912, 321
+ size: 110, 56
+ orig: 110, 56
+ offset: 0, 0
+ index: -1
+22909
+ rotate: false
+ xy: 912, 263
+ size: 110, 56
+ orig: 110, 56
+ offset: 0, 0
+ index: -1
+230
+ rotate: false
+ xy: 132, 662
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+2310
+ rotate: false
+ xy: 922, 7
+ size: 100, 54
+ orig: 100, 54
+ offset: 0, 0
+ index: -1
+233
+ rotate: false
+ xy: 132, 532
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+234
+ rotate: false
+ xy: 132, 402
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+23694
+ rotate: false
+ xy: 2, 804
+ size: 142, 116
+ orig: 142, 116
+ offset: 0, 0
+ index: -1
+23710
+ rotate: false
+ xy: 940, 146
+ size: 75, 81
+ orig: 75, 81
+ offset: 0, 0
+ index: -1
+23839
+ rotate: false
+ xy: 103, 7
+ size: 26, 15
+ orig: 26, 15
+ offset: 0, 0
+ index: -1
+23879
+ rotate: false
+ xy: 2, 7
+ size: 99, 15
+ orig: 99, 15
+ offset: 0, 0
+ index: -1
+2631
+ rotate: false
+ xy: 844, 101
+ size: 46, 43
+ orig: 46, 43
+ offset: 0, 0
+ index: -1
+274
+ rotate: false
+ xy: 714, 101
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+2895
+ rotate: false
+ xy: 146, 792
+ size: 178, 50
+ orig: 178, 50
+ offset: 0, 0
+ index: -1
+3065
+ rotate: false
+ xy: 394, 2
+ size: 130, 97
+ orig: 130, 97
+ offset: 0, 0
+ index: -1
+350
+ rotate: false
+ xy: 559, 819
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+3874
+ rotate: false
+ xy: 2, 922
+ size: 167, 100
+ orig: 167, 100
+ offset: 0, 0
+ index: -1
+4392
+ rotate: false
+ xy: 753, 819
+ size: 100, 100
+ orig: 100, 100
+ offset: 0, 0
+ index: -1
+4395
+ rotate: false
+ xy: 922, 845
+ size: 100, 100
+ orig: 100, 100
+ offset: 0, 0
+ index: -1
+4399
+ rotate: false
+ xy: 922, 743
+ size: 100, 100
+ orig: 100, 100
+ offset: 0, 0
+ index: -1
+4400
+ rotate: false
+ xy: 922, 641
+ size: 100, 100
+ orig: 100, 100
+ offset: 0, 0
+ index: -1
+4403
+ rotate: false
+ xy: 922, 539
+ size: 100, 100
+ orig: 100, 100
+ offset: 0, 0
+ index: -1
+4448
+ rotate: false
+ xy: 782, 753
+ size: 66, 64
+ orig: 66, 64
+ offset: 0, 0
+ index: -1
+4486
+ rotate: false
+ xy: 912, 229
+ size: 107, 32
+ orig: 107, 32
+ offset: 0, 0
+ index: -1
+451
+ rotate: false
+ xy: 892, 112
+ size: 26, 32
+ orig: 26, 32
+ offset: 0, 0
+ index: -1
+4511
+ rotate: false
+ xy: 262, 395
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+464
+ rotate: false
+ xy: 132, 272
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4782
+ rotate: false
+ xy: 392, 525
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4783
+ rotate: false
+ xy: 522, 655
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4784
+ rotate: false
+ xy: 262, 265
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4785
+ rotate: false
+ xy: 392, 395
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4786
+ rotate: false
+ xy: 522, 525
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4787
+ rotate: false
+ xy: 262, 135
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4788
+ rotate: false
+ xy: 392, 265
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4789
+ rotate: false
+ xy: 522, 395
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4790
+ rotate: false
+ xy: 392, 135
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4791
+ rotate: false
+ xy: 522, 265
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4792
+ rotate: false
+ xy: 522, 135
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4793
+ rotate: false
+ xy: 652, 655
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4794
+ rotate: false
+ xy: 652, 525
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4795
+ rotate: false
+ xy: 652, 395
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+4796
+ rotate: false
+ xy: 652, 395
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+5755
+ rotate: false
+ xy: 922, 437
+ size: 100, 100
+ orig: 100, 100
+ offset: 0, 0
+ index: -1
+641
+ rotate: false
+ xy: 132, 142
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+647
+ rotate: false
+ xy: 132, 12
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+7082
+ rotate: false
+ xy: 782, 146
+ size: 156, 81
+ orig: 156, 81
+ offset: 0, 0
+ index: -1
+728
+ rotate: false
+ xy: 262, 655
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+813
+ rotate: false
+ xy: 782, 687
+ size: 138, 64
+ orig: 138, 64
+ offset: 0, 0
+ index: -1
+822
+ rotate: false
+ xy: 782, 621
+ size: 138, 64
+ orig: 138, 64
+ offset: 0, 0
+ index: -1
+831
+ rotate: false
+ xy: 782, 555
+ size: 138, 64
+ orig: 138, 64
+ offset: 0, 0
+ index: -1
+840
+ rotate: false
+ xy: 782, 489
+ size: 138, 64
+ orig: 138, 64
+ offset: 0, 0
+ index: -1
+8991
+ rotate: false
+ xy: 171, 921
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+8993
+ rotate: false
+ xy: 397, 921
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9018
+ rotate: false
+ xy: 623, 921
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9020
+ rotate: false
+ xy: 527, 887
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9031
+ rotate: false
+ xy: 527, 853
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9033
+ rotate: false
+ xy: 333, 819
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9058
+ rotate: false
+ xy: 326, 785
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9060
+ rotate: false
+ xy: 552, 785
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9071
+ rotate: false
+ xy: 262, 101
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9073
+ rotate: false
+ xy: 488, 101
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9556
+ rotate: false
+ xy: 922, 63
+ size: 100, 81
+ orig: 100, 81
+ offset: 0, 0
+ index: -1
+
+images59.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+1015
+ rotate: false
+ xy: 222, 297
+ size: 34, 28
+ orig: 34, 28
+ offset: 0, 0
+ index: -1
+1016
+ rotate: false
+ xy: 258, 297
+ size: 34, 28
+ orig: 34, 28
+ offset: 0, 0
+ index: -1
+10417
+ rotate: false
+ xy: 689, 11
+ size: 130, 99
+ orig: 130, 99
+ offset: 0, 0
+ index: -1
+12004
+ rotate: false
+ xy: 778, 530
+ size: 29, 32
+ orig: 29, 32
+ offset: 0, 0
+ index: -1
+12006
+ rotate: false
+ xy: 778, 496
+ size: 29, 32
+ orig: 29, 32
+ offset: 0, 0
+ index: -1
+12007
+ rotate: false
+ xy: 778, 462
+ size: 29, 32
+ orig: 29, 32
+ offset: 0, 0
+ index: -1
+12009
+ rotate: false
+ xy: 778, 428
+ size: 29, 32
+ orig: 29, 32
+ offset: 0, 0
+ index: -1
+12010
+ rotate: false
+ xy: 778, 394
+ size: 29, 32
+ orig: 29, 32
+ offset: 0, 0
+ index: -1
+12012
+ rotate: false
+ xy: 778, 360
+ size: 29, 32
+ orig: 29, 32
+ offset: 0, 0
+ index: -1
+12013
+ rotate: false
+ xy: 778, 326
+ size: 29, 32
+ orig: 29, 32
+ offset: 0, 0
+ index: -1
+12015
+ rotate: false
+ xy: 778, 292
+ size: 29, 32
+ orig: 29, 32
+ offset: 0, 0
+ index: -1
+12187
+ rotate: false
+ xy: 810, 855
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12188
+ rotate: false
+ xy: 810, 789
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12195
+ rotate: false
+ xy: 810, 723
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12196
+ rotate: false
+ xy: 810, 657
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12203
+ rotate: false
+ xy: 584, 651
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12204
+ rotate: false
+ xy: 809, 591
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12211
+ rotate: false
+ xy: 132, 617
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12212
+ rotate: false
+ xy: 326, 617
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12223
+ rotate: false
+ xy: 584, 585
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12224
+ rotate: false
+ xy: 584, 519
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12231
+ rotate: false
+ xy: 809, 525
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12232
+ rotate: false
+ xy: 809, 459
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12239
+ rotate: false
+ xy: 132, 551
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12240
+ rotate: false
+ xy: 326, 551
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12247
+ rotate: false
+ xy: 132, 485
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12248
+ rotate: false
+ xy: 326, 485
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12259
+ rotate: false
+ xy: 584, 453
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12267
+ rotate: false
+ xy: 809, 393
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12268
+ rotate: false
+ xy: 132, 419
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12275
+ rotate: false
+ xy: 326, 419
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12276
+ rotate: false
+ xy: 584, 387
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12283
+ rotate: false
+ xy: 809, 327
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12284
+ rotate: false
+ xy: 584, 321
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+12330
+ rotate: false
+ xy: 2, 791
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12331
+ rotate: false
+ xy: 2, 661
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12332
+ rotate: false
+ xy: 2, 531
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12333
+ rotate: false
+ xy: 2, 401
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+12942
+ rotate: false
+ xy: 396, 114
+ size: 114, 99
+ orig: 114, 99
+ offset: 0, 0
+ index: -1
+12945
+ rotate: false
+ xy: 396, 13
+ size: 114, 99
+ orig: 114, 99
+ offset: 0, 0
+ index: -1
+12948
+ rotate: false
+ xy: 906, 92
+ size: 114, 99
+ orig: 114, 99
+ offset: 0, 0
+ index: -1
+1349
+ rotate: false
+ xy: 584, 187
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1353
+ rotate: false
+ xy: 808, 193
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1357
+ rotate: false
+ xy: 584, 153
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+14044
+ rotate: false
+ xy: 520, 633
+ size: 62, 48
+ orig: 62, 48
+ offset: 0, 0
+ index: -1
+14047
+ rotate: false
+ xy: 520, 583
+ size: 62, 48
+ orig: 62, 48
+ offset: 0, 0
+ index: -1
+17791
+ rotate: false
+ xy: 808, 112
+ size: 96, 79
+ orig: 96, 79
+ offset: 0, 0
+ index: -1
+17799
+ rotate: false
+ xy: 516, 294
+ size: 66, 98
+ orig: 66, 98
+ offset: 0, 0
+ index: -1
+17800
+ rotate: false
+ xy: 262, 144
+ size: 132, 98
+ orig: 132, 98
+ offset: 0, 0
+ index: -1
+17803
+ rotate: false
+ xy: 516, 194
+ size: 66, 98
+ orig: 66, 98
+ offset: 0, 0
+ index: -1
+17804
+ rotate: false
+ xy: 262, 44
+ size: 132, 98
+ orig: 132, 98
+ offset: 0, 0
+ index: -1
+17957
+ rotate: false
+ xy: 2, 271
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17958
+ rotate: false
+ xy: 2, 141
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17959
+ rotate: false
+ xy: 2, 11
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17960
+ rotate: false
+ xy: 132, 167
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17961
+ rotate: false
+ xy: 132, 37
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+18188
+ rotate: false
+ xy: 809, 261
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+18398
+ rotate: false
+ xy: 584, 255
+ size: 192, 64
+ orig: 192, 64
+ offset: 0, 0
+ index: -1
+18432
+ rotate: false
+ xy: 132, 751
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+18436
+ rotate: false
+ xy: 358, 751
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+18440
+ rotate: false
+ xy: 584, 751
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+18444
+ rotate: false
+ xy: 132, 717
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+18447
+ rotate: false
+ xy: 358, 717
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+18451
+ rotate: false
+ xy: 584, 717
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+18455
+ rotate: false
+ xy: 132, 683
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+18459
+ rotate: false
+ xy: 358, 683
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+1950
+ rotate: false
+ xy: 821, 26
+ size: 80, 67
+ orig: 80, 67
+ offset: 0, 0
+ index: -1
+2163
+ rotate: false
+ xy: 778, 153
+ size: 26, 31
+ orig: 26, 31
+ offset: 0, 0
+ index: -1
+21816
+ rotate: false
+ xy: 132, 297
+ size: 43, 28
+ orig: 43, 28
+ offset: 0, 0
+ index: -1
+21819
+ rotate: false
+ xy: 177, 297
+ size: 43, 28
+ orig: 43, 28
+ offset: 0, 0
+ index: -1
+2243
+ rotate: false
+ xy: 748, 119
+ size: 58, 32
+ orig: 58, 32
+ offset: 0, 0
+ index: -1
+2248
+ rotate: false
+ xy: 778, 666
+ size: 29, 32
+ orig: 29, 32
+ offset: 0, 0
+ index: -1
+2250
+ rotate: false
+ xy: 778, 632
+ size: 29, 32
+ orig: 29, 32
+ offset: 0, 0
+ index: -1
+2251
+ rotate: false
+ xy: 778, 598
+ size: 29, 32
+ orig: 29, 32
+ offset: 0, 0
+ index: -1
+2253
+ rotate: false
+ xy: 778, 564
+ size: 29, 32
+ orig: 29, 32
+ offset: 0, 0
+ index: -1
+2343
+ rotate: false
+ xy: 520, 556
+ size: 62, 25
+ orig: 62, 25
+ offset: 0, 0
+ index: -1
+2346
+ rotate: false
+ xy: 520, 529
+ size: 62, 25
+ orig: 62, 25
+ offset: 0, 0
+ index: -1
+2349
+ rotate: false
+ xy: 520, 502
+ size: 62, 25
+ orig: 62, 25
+ offset: 0, 0
+ index: -1
+2352
+ rotate: false
+ xy: 520, 475
+ size: 62, 25
+ orig: 62, 25
+ offset: 0, 0
+ index: -1
+23802
+ rotate: false
+ xy: 233, 402
+ size: 95, 15
+ orig: 95, 15
+ offset: 0, 0
+ index: -1
+23918
+ rotate: false
+ xy: 330, 402
+ size: 66, 15
+ orig: 66, 15
+ offset: 0, 0
+ index: -1
+23921
+ rotate: false
+ xy: 132, 402
+ size: 99, 15
+ orig: 99, 15
+ offset: 0, 0
+ index: -1
+2393
+ rotate: false
+ xy: 778, 239
+ size: 28, 51
+ orig: 28, 51
+ offset: 0, 0
+ index: -1
+23934
+ rotate: false
+ xy: 778, 700
+ size: 30, 15
+ orig: 30, 15
+ offset: 0, 0
+ index: -1
+2394
+ rotate: false
+ xy: 262, 244
+ size: 28, 51
+ orig: 28, 51
+ offset: 0, 0
+ index: -1
+23946
+ rotate: false
+ xy: 821, 95
+ size: 83, 15
+ orig: 83, 15
+ offset: 0, 0
+ index: -1
+23956
+ rotate: false
+ xy: 821, 9
+ size: 80, 15
+ orig: 80, 15
+ offset: 0, 0
+ index: -1
+2401
+ rotate: false
+ xy: 778, 186
+ size: 28, 51
+ orig: 28, 51
+ offset: 0, 0
+ index: -1
+269
+ rotate: false
+ xy: 334, 27
+ size: 60, 15
+ orig: 60, 15
+ offset: 0, 0
+ index: -1
+270
+ rotate: false
+ xy: 334, 10
+ size: 60, 15
+ orig: 60, 15
+ offset: 0, 0
+ index: -1
+2875
+ rotate: false
+ xy: 903, 3
+ size: 107, 35
+ orig: 107, 35
+ offset: 0, 0
+ index: -1
+353
+ rotate: false
+ xy: 584, 221
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+354
+ rotate: false
+ xy: 808, 227
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+3664
+ rotate: false
+ xy: 682, 112
+ size: 64, 39
+ orig: 64, 39
+ offset: 0, 0
+ index: -1
+3683
+ rotate: false
+ xy: 584, 112
+ size: 96, 39
+ orig: 96, 39
+ offset: 0, 0
+ index: -1
+397
+ rotate: false
+ xy: 903, 40
+ size: 114, 50
+ orig: 114, 50
+ offset: 0, 0
+ index: -1
+4465
+ rotate: false
+ xy: 520, 448
+ size: 62, 25
+ orig: 62, 25
+ offset: 0, 0
+ index: -1
+4468
+ rotate: false
+ xy: 520, 421
+ size: 62, 25
+ orig: 62, 25
+ offset: 0, 0
+ index: -1
+4471
+ rotate: false
+ xy: 520, 394
+ size: 62, 25
+ orig: 62, 25
+ offset: 0, 0
+ index: -1
+4894
+ rotate: false
+ xy: 512, 112
+ size: 70, 80
+ orig: 70, 80
+ offset: 0, 0
+ index: -1
+5146
+ rotate: false
+ xy: 1004, 869
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5149
+ rotate: false
+ xy: 1004, 817
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5176
+ rotate: false
+ xy: 1004, 765
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5179
+ rotate: false
+ xy: 1004, 713
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5206
+ rotate: false
+ xy: 1004, 661
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5209
+ rotate: false
+ xy: 1004, 609
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5236
+ rotate: false
+ xy: 1003, 557
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5239
+ rotate: false
+ xy: 1003, 505
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5266
+ rotate: false
+ xy: 1003, 453
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5269
+ rotate: false
+ xy: 1003, 401
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5296
+ rotate: false
+ xy: 1003, 349
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5299
+ rotate: false
+ xy: 1003, 297
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5353
+ rotate: false
+ xy: 1003, 245
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5356
+ rotate: false
+ xy: 1002, 193
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6833
+ rotate: false
+ xy: 512, 10
+ size: 57, 100
+ orig: 57, 100
+ offset: 0, 0
+ index: -1
+6835
+ rotate: false
+ xy: 571, 10
+ size: 57, 100
+ orig: 57, 100
+ offset: 0, 0
+ index: -1
+6839
+ rotate: false
+ xy: 906, 921
+ size: 114, 100
+ orig: 114, 100
+ offset: 0, 0
+ index: -1
+6841
+ rotate: false
+ xy: 630, 10
+ size: 57, 100
+ orig: 57, 100
+ offset: 0, 0
+ index: -1
+6842
+ rotate: false
+ xy: 400, 317
+ size: 114, 100
+ orig: 114, 100
+ offset: 0, 0
+ index: -1
+6845
+ rotate: false
+ xy: 400, 215
+ size: 114, 100
+ orig: 114, 100
+ offset: 0, 0
+ index: -1
+7056
+ rotate: false
+ xy: 294, 244
+ size: 104, 81
+ orig: 104, 81
+ offset: 0, 0
+ index: -1
+9238
+ rotate: false
+ xy: 2, 989
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9242
+ rotate: false
+ xy: 228, 989
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9246
+ rotate: false
+ xy: 454, 989
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9250
+ rotate: false
+ xy: 680, 989
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9253
+ rotate: false
+ xy: 2, 955
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9257
+ rotate: false
+ xy: 228, 955
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9261
+ rotate: false
+ xy: 454, 955
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9265
+ rotate: false
+ xy: 680, 955
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9302
+ rotate: false
+ xy: 2, 921
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9306
+ rotate: false
+ xy: 228, 921
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9310
+ rotate: false
+ xy: 454, 921
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9314
+ rotate: false
+ xy: 680, 921
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9317
+ rotate: false
+ xy: 132, 887
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9321
+ rotate: false
+ xy: 358, 887
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9325
+ rotate: false
+ xy: 584, 887
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9329
+ rotate: false
+ xy: 132, 853
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9366
+ rotate: false
+ xy: 358, 853
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9370
+ rotate: false
+ xy: 584, 853
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9374
+ rotate: false
+ xy: 132, 819
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9378
+ rotate: false
+ xy: 358, 819
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9381
+ rotate: false
+ xy: 584, 819
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9385
+ rotate: false
+ xy: 132, 785
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9389
+ rotate: false
+ xy: 358, 785
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9393
+ rotate: false
+ xy: 584, 785
+ size: 224, 32
+ orig: 224, 32
+ offset: 0, 0
+ index: -1
+9811
+ rotate: false
+ xy: 132, 327
+ size: 132, 65
+ orig: 132, 65
+ offset: 0, 0
+ index: -1
+9817
+ rotate: false
+ xy: 266, 327
+ size: 132, 65
+ orig: 132, 65
+ offset: 0, 0
+ index: -1
+9827
+ rotate: false
+ xy: 132, 2
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+9832
+ rotate: false
+ xy: 233, 2
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+
+images60.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10437
+ rotate: false
+ xy: 136, 13
+ size: 130, 99
+ orig: 130, 99
+ offset: 0, 0
+ index: -1
+12053
+ rotate: false
+ xy: 870, 538
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+12054
+ rotate: false
+ xy: 870, 486
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+12057
+ rotate: false
+ xy: 870, 434
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+12058
+ rotate: false
+ xy: 870, 382
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+12061
+ rotate: false
+ xy: 870, 330
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+12062
+ rotate: false
+ xy: 870, 278
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+12065
+ rotate: false
+ xy: 870, 226
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+12118
+ rotate: false
+ xy: 866, 189
+ size: 156, 35
+ orig: 156, 35
+ offset: 0, 0
+ index: -1
+12121
+ rotate: false
+ xy: 866, 152
+ size: 156, 35
+ orig: 156, 35
+ offset: 0, 0
+ index: -1
+12126
+ rotate: false
+ xy: 866, 115
+ size: 156, 35
+ orig: 156, 35
+ offset: 0, 0
+ index: -1
+12729
+ rotate: false
+ xy: 694, 74
+ size: 130, 66
+ orig: 130, 66
+ offset: 0, 0
+ index: -1
+12731
+ rotate: false
+ xy: 892, 47
+ size: 130, 66
+ orig: 130, 66
+ offset: 0, 0
+ index: -1
+12951
+ rotate: false
+ xy: 398, 16
+ size: 114, 99
+ orig: 114, 99
+ offset: 0, 0
+ index: -1
+12954
+ rotate: false
+ xy: 588, 175
+ size: 114, 99
+ orig: 114, 99
+ offset: 0, 0
+ index: -1
+12957
+ rotate: false
+ xy: 578, 74
+ size: 114, 99
+ orig: 114, 99
+ offset: 0, 0
+ index: -1
+1361
+ rotate: false
+ xy: 2, 990
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1366
+ rotate: false
+ xy: 196, 990
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1370
+ rotate: false
+ xy: 390, 990
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1374
+ rotate: false
+ xy: 584, 990
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1378
+ rotate: false
+ xy: 778, 990
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1413
+ rotate: false
+ xy: 2, 956
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1417
+ rotate: false
+ xy: 196, 956
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1421
+ rotate: false
+ xy: 390, 956
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1425
+ rotate: false
+ xy: 584, 956
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1430
+ rotate: false
+ xy: 778, 956
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1434
+ rotate: false
+ xy: 2, 922
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1438
+ rotate: false
+ xy: 196, 922
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1442
+ rotate: false
+ xy: 390, 922
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1474
+ rotate: false
+ xy: 420, 356
+ size: 89, 50
+ orig: 89, 50
+ offset: 0, 0
+ index: -1
+1480
+ rotate: false
+ xy: 392, 278
+ size: 100, 70
+ orig: 100, 70
+ offset: 0, 0
+ index: -1
+17720
+ rotate: false
+ xy: 2, 2
+ size: 132, 96
+ orig: 132, 96
+ offset: 0, 0
+ index: -1
+17758
+ rotate: false
+ xy: 392, 200
+ size: 96, 74
+ orig: 96, 74
+ offset: 0, 0
+ index: -1
+17771
+ rotate: false
+ xy: 490, 200
+ size: 96, 74
+ orig: 96, 74
+ offset: 0, 0
+ index: -1
+17819
+ rotate: false
+ xy: 446, 550
+ size: 66, 98
+ orig: 66, 98
+ offset: 0, 0
+ index: -1
+17962
+ rotate: false
+ xy: 2, 750
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17963
+ rotate: false
+ xy: 2, 620
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17964
+ rotate: false
+ xy: 2, 490
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17965
+ rotate: false
+ xy: 2, 360
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17966
+ rotate: false
+ xy: 2, 230
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17967
+ rotate: false
+ xy: 2, 100
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17968
+ rotate: false
+ xy: 2, 100
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17969
+ rotate: false
+ xy: 132, 634
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17970
+ rotate: false
+ xy: 132, 504
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17971
+ rotate: false
+ xy: 132, 374
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17972
+ rotate: false
+ xy: 132, 244
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17973
+ rotate: false
+ xy: 132, 114
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+17974
+ rotate: false
+ xy: 262, 460
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+18043
+ rotate: false
+ xy: 262, 330
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+18260
+ rotate: false
+ xy: 262, 200
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+1830
+ rotate: false
+ xy: 584, 922
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18334
+ rotate: false
+ xy: 292, 590
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+18338
+ rotate: false
+ xy: 369, 590
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+1834
+ rotate: false
+ xy: 778, 922
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1838
+ rotate: false
+ xy: 136, 888
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1842
+ rotate: false
+ xy: 330, 888
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1847
+ rotate: false
+ xy: 524, 888
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1851
+ rotate: false
+ xy: 718, 888
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1855
+ rotate: false
+ xy: 136, 854
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1859
+ rotate: false
+ xy: 330, 854
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18815
+ rotate: false
+ xy: 708, 588
+ size: 160, 60
+ orig: 160, 60
+ offset: 0, 0
+ index: -1
+18819
+ rotate: false
+ xy: 708, 526
+ size: 160, 60
+ orig: 160, 60
+ offset: 0, 0
+ index: -1
+20110
+ rotate: false
+ xy: 704, 194
+ size: 160, 50
+ orig: 160, 50
+ offset: 0, 0
+ index: -1
+20111
+ rotate: false
+ xy: 704, 142
+ size: 160, 50
+ orig: 160, 50
+ offset: 0, 0
+ index: -1
+2219
+ rotate: false
+ xy: 132, 764
+ size: 160, 54
+ orig: 160, 54
+ offset: 0, 0
+ index: -1
+2224
+ rotate: false
+ xy: 708, 470
+ size: 160, 54
+ orig: 160, 54
+ offset: 0, 0
+ index: -1
+2227
+ rotate: false
+ xy: 708, 414
+ size: 160, 54
+ orig: 160, 54
+ offset: 0, 0
+ index: -1
+2232
+ rotate: false
+ xy: 708, 358
+ size: 160, 54
+ orig: 160, 54
+ offset: 0, 0
+ index: -1
+2235
+ rotate: false
+ xy: 708, 302
+ size: 160, 54
+ orig: 160, 54
+ offset: 0, 0
+ index: -1
+2240
+ rotate: false
+ xy: 708, 246
+ size: 160, 54
+ orig: 160, 54
+ offset: 0, 0
+ index: -1
+2246
+ rotate: false
+ xy: 912, 888
+ size: 58, 32
+ orig: 58, 32
+ offset: 0, 0
+ index: -1
+2249
+ rotate: false
+ xy: 514, 2
+ size: 58, 32
+ orig: 58, 32
+ offset: 0, 0
+ index: -1
+2256
+ rotate: false
+ xy: 826, 115
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+22831
+ rotate: false
+ xy: 578, 2
+ size: 126, 70
+ orig: 126, 70
+ offset: 0, 0
+ index: -1
+22836
+ rotate: false
+ xy: 706, 2
+ size: 126, 70
+ orig: 126, 70
+ offset: 0, 0
+ index: -1
+22912
+ rotate: false
+ xy: 912, 822
+ size: 110, 56
+ orig: 110, 56
+ offset: 0, 0
+ index: -1
+22915
+ rotate: false
+ xy: 912, 764
+ size: 110, 56
+ orig: 110, 56
+ offset: 0, 0
+ index: -1
+22918
+ rotate: false
+ xy: 912, 706
+ size: 110, 56
+ orig: 110, 56
+ offset: 0, 0
+ index: -1
+22920
+ rotate: false
+ xy: 910, 648
+ size: 110, 56
+ orig: 110, 56
+ offset: 0, 0
+ index: -1
+22923
+ rotate: false
+ xy: 910, 590
+ size: 110, 56
+ orig: 110, 56
+ offset: 0, 0
+ index: -1
+23744
+ rotate: false
+ xy: 420, 459
+ size: 92, 15
+ orig: 92, 15
+ offset: 0, 0
+ index: -1
+23753
+ rotate: false
+ xy: 420, 442
+ size: 92, 15
+ orig: 92, 15
+ offset: 0, 0
+ index: -1
+23794
+ rotate: false
+ xy: 420, 425
+ size: 92, 15
+ orig: 92, 15
+ offset: 0, 0
+ index: -1
+23820
+ rotate: false
+ xy: 934, 30
+ size: 88, 15
+ orig: 88, 15
+ offset: 0, 0
+ index: -1
+23854
+ rotate: false
+ xy: 934, 13
+ size: 88, 15
+ orig: 88, 15
+ offset: 0, 0
+ index: -1
+23903
+ rotate: false
+ xy: 420, 408
+ size: 92, 15
+ orig: 92, 15
+ offset: 0, 0
+ index: -1
+23910
+ rotate: false
+ xy: 870, 595
+ size: 32, 15
+ orig: 32, 15
+ offset: 0, 0
+ index: -1
+2402
+ rotate: false
+ xy: 262, 711
+ size: 28, 51
+ orig: 28, 51
+ offset: 0, 0
+ index: -1
+2409
+ rotate: false
+ xy: 262, 658
+ size: 28, 51
+ orig: 28, 51
+ offset: 0, 0
+ index: -1
+2410
+ rotate: false
+ xy: 262, 605
+ size: 28, 51
+ orig: 28, 51
+ offset: 0, 0
+ index: -1
+2632
+ rotate: false
+ xy: 886, 2
+ size: 46, 43
+ orig: 46, 43
+ offset: 0, 0
+ index: -1
+2702
+ rotate: false
+ xy: 392, 494
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2703
+ rotate: false
+ xy: 392, 446
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2708
+ rotate: false
+ xy: 392, 398
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2709
+ rotate: false
+ xy: 392, 350
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2765
+ rotate: false
+ xy: 392, 542
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+3102
+ rotate: false
+ xy: 876, 768
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3103
+ rotate: false
+ xy: 876, 716
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3106
+ rotate: false
+ xy: 874, 664
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3107
+ rotate: false
+ xy: 874, 612
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3667
+ rotate: false
+ xy: 2, 881
+ size: 64, 39
+ orig: 64, 39
+ offset: 0, 0
+ index: -1
+3670
+ rotate: false
+ xy: 68, 881
+ size: 64, 39
+ orig: 64, 39
+ offset: 0, 0
+ index: -1
+3673
+ rotate: false
+ xy: 826, 74
+ size: 64, 39
+ orig: 64, 39
+ offset: 0, 0
+ index: -1
+4474
+ rotate: false
+ xy: 514, 90
+ size: 62, 25
+ orig: 62, 25
+ offset: 0, 0
+ index: -1
+5386
+ rotate: false
+ xy: 494, 304
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5618
+ rotate: false
+ xy: 524, 854
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5619
+ rotate: false
+ xy: 718, 854
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5622
+ rotate: false
+ xy: 136, 820
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5623
+ rotate: false
+ xy: 330, 820
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5626
+ rotate: false
+ xy: 524, 820
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5627
+ rotate: false
+ xy: 718, 820
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5630
+ rotate: false
+ xy: 294, 786
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5631
+ rotate: false
+ xy: 488, 786
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5698
+ rotate: false
+ xy: 682, 786
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5699
+ rotate: false
+ xy: 294, 752
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5702
+ rotate: false
+ xy: 488, 752
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5703
+ rotate: false
+ xy: 682, 752
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5706
+ rotate: false
+ xy: 292, 718
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5707
+ rotate: false
+ xy: 486, 718
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5710
+ rotate: false
+ xy: 680, 718
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5711
+ rotate: false
+ xy: 292, 684
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5790
+ rotate: false
+ xy: 486, 684
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5791
+ rotate: false
+ xy: 680, 684
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5794
+ rotate: false
+ xy: 292, 650
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5795
+ rotate: false
+ xy: 486, 650
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5798
+ rotate: false
+ xy: 680, 650
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5799
+ rotate: false
+ xy: 514, 616
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5802
+ rotate: false
+ xy: 514, 582
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5803
+ rotate: false
+ xy: 514, 548
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5870
+ rotate: false
+ xy: 514, 514
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5874
+ rotate: false
+ xy: 514, 480
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5878
+ rotate: false
+ xy: 514, 446
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5882
+ rotate: false
+ xy: 514, 412
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5887
+ rotate: false
+ xy: 514, 378
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5891
+ rotate: false
+ xy: 514, 344
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5895
+ rotate: false
+ xy: 514, 310
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+5899
+ rotate: false
+ xy: 514, 276
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+63
+ rotate: false
+ xy: 420, 476
+ size: 92, 64
+ orig: 92, 64
+ offset: 0, 0
+ index: -1
+6880
+ rotate: false
+ xy: 514, 63
+ size: 62, 25
+ orig: 62, 25
+ offset: 0, 0
+ index: -1
+6884
+ rotate: false
+ xy: 514, 36
+ size: 62, 25
+ orig: 62, 25
+ offset: 0, 0
+ index: -1
+7088
+ rotate: false
+ xy: 262, 117
+ size: 156, 81
+ orig: 156, 81
+ offset: 0, 0
+ index: -1
+7089
+ rotate: false
+ xy: 420, 117
+ size: 156, 81
+ orig: 156, 81
+ offset: 0, 0
+ index: -1
+9446
+ rotate: false
+ xy: 972, 952
+ size: 50, 70
+ orig: 50, 70
+ offset: 0, 0
+ index: -1
+9448
+ rotate: false
+ xy: 972, 880
+ size: 50, 70
+ orig: 50, 70
+ offset: 0, 0
+ index: -1
+9450
+ rotate: false
+ xy: 834, 2
+ size: 50, 70
+ orig: 50, 70
+ offset: 0, 0
+ index: -1
+95
+ rotate: false
+ xy: 268, 16
+ size: 128, 99
+ orig: 128, 99
+ offset: 0, 0
+ index: -1
+
+images61.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10334
+ rotate: false
+ xy: 824, 2
+ size: 100, 75
+ orig: 100, 75
+ offset: 0, 0
+ index: -1
+10373
+ rotate: false
+ xy: 389, 444
+ size: 132, 94
+ orig: 132, 94
+ offset: 0, 0
+ index: -1
+10377
+ rotate: false
+ xy: 523, 413
+ size: 132, 94
+ orig: 132, 94
+ offset: 0, 0
+ index: -1
+12144
+ rotate: false
+ xy: 973, 597
+ size: 49, 75
+ orig: 49, 75
+ offset: 0, 0
+ index: -1
+12153
+ rotate: false
+ xy: 973, 520
+ size: 49, 75
+ orig: 49, 75
+ offset: 0, 0
+ index: -1
+12162
+ rotate: false
+ xy: 262, 433
+ size: 59, 75
+ orig: 59, 75
+ offset: 0, 0
+ index: -1
+12173
+ rotate: false
+ xy: 522, 947
+ size: 177, 75
+ orig: 177, 75
+ offset: 0, 0
+ index: -1
+12178
+ rotate: false
+ xy: 517, 271
+ size: 126, 75
+ orig: 126, 75
+ offset: 0, 0
+ index: -1
+12197
+ rotate: false
+ xy: 875, 841
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12202
+ rotate: false
+ xy: 875, 775
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12205
+ rotate: false
+ xy: 645, 278
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12210
+ rotate: false
+ xy: 645, 212
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12213
+ rotate: false
+ xy: 652, 78
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12294
+ rotate: false
+ xy: 789, 348
+ size: 126, 55
+ orig: 126, 55
+ offset: 0, 0
+ index: -1
+12300
+ rotate: false
+ xy: 517, 142
+ size: 126, 55
+ orig: 126, 55
+ offset: 0, 0
+ index: -1
+12734
+ rotate: false
+ xy: 330, 2
+ size: 130, 66
+ orig: 130, 66
+ offset: 0, 0
+ index: -1
+12736
+ rotate: false
+ xy: 462, 2
+ size: 130, 66
+ orig: 130, 66
+ offset: 0, 0
+ index: -1
+12739
+ rotate: false
+ xy: 594, 2
+ size: 130, 66
+ orig: 130, 66
+ offset: 0, 0
+ index: -1
+12959
+ rotate: false
+ xy: 791, 471
+ size: 114, 99
+ orig: 114, 99
+ offset: 0, 0
+ index: -1
+12962
+ rotate: false
+ xy: 880, 674
+ size: 114, 99
+ orig: 114, 99
+ offset: 0, 0
+ index: -1
+17584
+ rotate: false
+ xy: 917, 347
+ size: 105, 53
+ orig: 105, 53
+ offset: 0, 0
+ index: -1
+17607
+ rotate: false
+ xy: 807, 150
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+17724
+ rotate: false
+ xy: 523, 575
+ size: 132, 96
+ orig: 132, 96
+ offset: 0, 0
+ index: -1
+17740
+ rotate: false
+ xy: 657, 574
+ size: 132, 96
+ orig: 132, 96
+ offset: 0, 0
+ index: -1
+17744
+ rotate: false
+ xy: 657, 410
+ size: 132, 96
+ orig: 132, 96
+ offset: 0, 0
+ index: -1
+17774
+ rotate: false
+ xy: 726, 2
+ size: 96, 74
+ orig: 96, 74
+ offset: 0, 0
+ index: -1
+17775
+ rotate: false
+ xy: 926, 3
+ size: 96, 74
+ orig: 96, 74
+ offset: 0, 0
+ index: -1
+17820
+ rotate: false
+ xy: 2, 20
+ size: 132, 98
+ orig: 132, 98
+ offset: 0, 0
+ index: -1
+17824
+ rotate: false
+ xy: 389, 540
+ size: 132, 98
+ orig: 132, 98
+ offset: 0, 0
+ index: -1
+17956
+ rotate: false
+ xy: 907, 544
+ size: 64, 128
+ orig: 64, 128
+ offset: 0, 0
+ index: -1
+18161
+ rotate: false
+ xy: 163, 276
+ size: 114, 99
+ orig: 114, 99
+ offset: 0, 0
+ index: -1
+18261
+ rotate: false
+ xy: 2, 894
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+18262
+ rotate: false
+ xy: 2, 764
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+18263
+ rotate: false
+ xy: 132, 894
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+18264
+ rotate: false
+ xy: 2, 634
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+18265
+ rotate: false
+ xy: 132, 764
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+18266
+ rotate: false
+ xy: 262, 894
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+18267
+ rotate: false
+ xy: 2, 504
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+18325
+ rotate: false
+ xy: 490, 214
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+1882
+ rotate: false
+ xy: 879, 959
+ size: 138, 63
+ orig: 138, 63
+ offset: 0, 0
+ index: -1
+1891
+ rotate: false
+ xy: 517, 348
+ size: 138, 63
+ orig: 138, 63
+ offset: 0, 0
+ index: -1
+196
+ rotate: false
+ xy: 791, 405
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+1965
+ rotate: false
+ xy: 973, 454
+ size: 49, 64
+ orig: 49, 64
+ offset: 0, 0
+ index: -1
+198
+ rotate: false
+ xy: 163, 210
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+20184
+ rotate: false
+ xy: 129, 244
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20185
+ rotate: false
+ xy: 279, 276
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+22256
+ rotate: false
+ xy: 879, 907
+ size: 40, 50
+ orig: 40, 50
+ offset: 0, 0
+ index: -1
+22839
+ rotate: false
+ xy: 517, 199
+ size: 126, 70
+ orig: 126, 70
+ offset: 0, 0
+ index: -1
+22844
+ rotate: false
+ xy: 524, 70
+ size: 126, 70
+ orig: 126, 70
+ offset: 0, 0
+ index: -1
+22873
+ rotate: false
+ xy: 262, 637
+ size: 125, 125
+ orig: 125, 125
+ offset: 0, 0
+ index: -1
+22874
+ rotate: false
+ xy: 392, 767
+ size: 125, 125
+ orig: 125, 125
+ offset: 0, 0
+ index: -1
+22881
+ rotate: false
+ xy: 2, 247
+ size: 125, 125
+ orig: 125, 125
+ offset: 0, 0
+ index: -1
+22882
+ rotate: false
+ xy: 132, 377
+ size: 125, 125
+ orig: 125, 125
+ offset: 0, 0
+ index: -1
+22889
+ rotate: false
+ xy: 262, 510
+ size: 125, 125
+ orig: 125, 125
+ offset: 0, 0
+ index: -1
+22890
+ rotate: false
+ xy: 2, 120
+ size: 125, 125
+ orig: 125, 125
+ offset: 0, 0
+ index: -1
+22897
+ rotate: false
+ xy: 392, 640
+ size: 125, 125
+ orig: 125, 125
+ offset: 0, 0
+ index: -1
+2354
+ rotate: false
+ xy: 490, 180
+ size: 25, 32
+ orig: 25, 32
+ offset: 0, 0
+ index: -1
+23725
+ rotate: false
+ xy: 132, 634
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+23726
+ rotate: false
+ xy: 262, 764
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+23727
+ rotate: false
+ xy: 392, 894
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+23728
+ rotate: false
+ xy: 2, 374
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+23729
+ rotate: false
+ xy: 132, 504
+ size: 128, 128
+ orig: 128, 128
+ offset: 0, 0
+ index: -1
+23766
+ rotate: false
+ xy: 921, 458
+ size: 50, 15
+ orig: 50, 15
+ offset: 0, 0
+ index: -1
+23872
+ rotate: false
+ xy: 136, 5
+ size: 93, 15
+ orig: 93, 15
+ offset: 0, 0
+ index: -1
+23896
+ rotate: false
+ xy: 2, 3
+ size: 95, 15
+ orig: 95, 15
+ offset: 0, 0
+ index: -1
+23915
+ rotate: false
+ xy: 99, 3
+ size: 32, 15
+ orig: 32, 15
+ offset: 0, 0
+ index: -1
+23947
+ rotate: false
+ xy: 231, 5
+ size: 93, 15
+ orig: 93, 15
+ offset: 0, 0
+ index: -1
+2711
+ rotate: false
+ xy: 996, 727
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2712
+ rotate: false
+ xy: 996, 679
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2898
+ rotate: false
+ xy: 522, 895
+ size: 178, 50
+ orig: 178, 50
+ offset: 0, 0
+ index: -1
+2903
+ rotate: false
+ xy: 522, 843
+ size: 178, 50
+ orig: 178, 50
+ offset: 0, 0
+ index: -1
+2906
+ rotate: false
+ xy: 692, 774
+ size: 178, 50
+ orig: 178, 50
+ offset: 0, 0
+ index: -1
+3
+ rotate: false
+ xy: 129, 210
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+344
+ rotate: false
+ xy: 645, 178
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+347
+ rotate: false
+ xy: 645, 144
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+3983
+ rotate: false
+ xy: 921, 907
+ size: 101, 50
+ orig: 101, 50
+ offset: 0, 0
+ index: -1
+3991
+ rotate: false
+ xy: 921, 402
+ size: 101, 50
+ orig: 101, 50
+ offset: 0, 0
+ index: -1
+4452
+ rotate: false
+ xy: 657, 344
+ size: 130, 64
+ orig: 130, 64
+ offset: 0, 0
+ index: -1
+453
+ rotate: false
+ xy: 992, 79
+ size: 26, 32
+ orig: 26, 32
+ offset: 0, 0
+ index: -1
+471
+ rotate: false
+ xy: 907, 475
+ size: 64, 67
+ orig: 64, 67
+ offset: 0, 0
+ index: -1
+4816
+ rotate: false
+ xy: 519, 725
+ size: 165, 50
+ orig: 165, 50
+ offset: 0, 0
+ index: -1
+4819
+ rotate: false
+ xy: 519, 673
+ size: 165, 50
+ orig: 165, 50
+ offset: 0, 0
+ index: -1
+4824
+ rotate: false
+ xy: 129, 158
+ size: 165, 50
+ orig: 165, 50
+ offset: 0, 0
+ index: -1
+56
+ rotate: false
+ xy: 323, 444
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+6017
+ rotate: false
+ xy: 686, 740
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6021
+ rotate: false
+ xy: 686, 706
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6025
+ rotate: false
+ xy: 686, 672
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6029
+ rotate: false
+ xy: 129, 124
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6034
+ rotate: false
+ xy: 136, 90
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6038
+ rotate: false
+ xy: 136, 56
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6042
+ rotate: false
+ xy: 136, 22
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6046
+ rotate: false
+ xy: 323, 410
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6081
+ rotate: false
+ xy: 323, 376
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6085
+ rotate: false
+ xy: 323, 342
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6089
+ rotate: false
+ xy: 323, 308
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6093
+ rotate: false
+ xy: 323, 274
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6098
+ rotate: false
+ xy: 293, 240
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6102
+ rotate: false
+ xy: 296, 206
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6106
+ rotate: false
+ xy: 296, 172
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6110
+ rotate: false
+ xy: 323, 138
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6145
+ rotate: false
+ xy: 330, 104
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6149
+ rotate: false
+ xy: 330, 70
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6153
+ rotate: false
+ xy: 824, 113
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6157
+ rotate: false
+ xy: 798, 79
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6854
+ rotate: false
+ xy: 791, 572
+ size: 114, 98
+ orig: 114, 98
+ offset: 0, 0
+ index: -1
+6858
+ rotate: false
+ xy: 791, 248
+ size: 114, 98
+ orig: 114, 98
+ offset: 0, 0
+ index: -1
+6861
+ rotate: false
+ xy: 907, 247
+ size: 114, 98
+ orig: 114, 98
+ offset: 0, 0
+ index: -1
+6865
+ rotate: false
+ xy: 905, 147
+ size: 114, 98
+ orig: 114, 98
+ offset: 0, 0
+ index: -1
+6888
+ rotate: false
+ xy: 259, 406
+ size: 62, 25
+ orig: 62, 25
+ offset: 0, 0
+ index: -1
+820
+ rotate: false
+ xy: 702, 892
+ size: 171, 64
+ orig: 171, 64
+ offset: 0, 0
+ index: -1
+829
+ rotate: false
+ xy: 519, 777
+ size: 171, 64
+ orig: 171, 64
+ offset: 0, 0
+ index: -1
+838
+ rotate: false
+ xy: 702, 826
+ size: 171, 64
+ orig: 171, 64
+ offset: 0, 0
+ index: -1
+9465
+ rotate: false
+ xy: 523, 509
+ size: 132, 64
+ orig: 132, 64
+ offset: 0, 0
+ index: -1
+9467
+ rotate: false
+ xy: 701, 958
+ size: 176, 64
+ orig: 176, 64
+ offset: 0, 0
+ index: -1
+9468
+ rotate: false
+ xy: 657, 508
+ size: 132, 64
+ orig: 132, 64
+ offset: 0, 0
+ index: -1
+
+images62.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+18323
+ rotate: false
+ xy: 972, 236
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+18326
+ rotate: false
+ xy: 972, 176
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+18329
+ rotate: false
+ xy: 972, 116
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+18332
+ rotate: false
+ xy: 972, 56
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+19635
+ rotate: false
+ xy: 972, 606
+ size: 50, 60
+ orig: 50, 60
+ offset: 0, 0
+ index: -1
+19638
+ rotate: false
+ xy: 972, 544
+ size: 50, 60
+ orig: 50, 60
+ offset: 0, 0
+ index: -1
+19641
+ rotate: false
+ xy: 972, 482
+ size: 50, 60
+ orig: 50, 60
+ offset: 0, 0
+ index: -1
+19644
+ rotate: false
+ xy: 972, 420
+ size: 50, 60
+ orig: 50, 60
+ offset: 0, 0
+ index: -1
+19647
+ rotate: false
+ xy: 972, 358
+ size: 50, 60
+ orig: 50, 60
+ offset: 0, 0
+ index: -1
+19650
+ rotate: false
+ xy: 972, 296
+ size: 50, 60
+ orig: 50, 60
+ offset: 0, 0
+ index: -1
+3832
+ rotate: false
+ xy: 972, 2
+ size: 50, 52
+ orig: 50, 52
+ offset: 0, 0
+ index: -1
+6162
+ rotate: false
+ xy: 2, 988
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6166
+ rotate: false
+ xy: 2, 954
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6170
+ rotate: false
+ xy: 196, 988
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6174
+ rotate: false
+ xy: 2, 920
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6209
+ rotate: false
+ xy: 196, 954
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6213
+ rotate: false
+ xy: 390, 988
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6217
+ rotate: false
+ xy: 2, 886
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6221
+ rotate: false
+ xy: 196, 920
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6226
+ rotate: false
+ xy: 390, 954
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6230
+ rotate: false
+ xy: 584, 988
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6234
+ rotate: false
+ xy: 2, 852
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6238
+ rotate: false
+ xy: 196, 886
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6273
+ rotate: false
+ xy: 390, 920
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6277
+ rotate: false
+ xy: 584, 954
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6281
+ rotate: false
+ xy: 778, 988
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6285
+ rotate: false
+ xy: 2, 818
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6290
+ rotate: false
+ xy: 196, 852
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6294
+ rotate: false
+ xy: 390, 886
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6298
+ rotate: false
+ xy: 584, 920
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6302
+ rotate: false
+ xy: 778, 954
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6321
+ rotate: false
+ xy: 2, 784
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6322
+ rotate: false
+ xy: 196, 818
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6325
+ rotate: false
+ xy: 390, 852
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6326
+ rotate: false
+ xy: 584, 886
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6329
+ rotate: false
+ xy: 778, 920
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6330
+ rotate: false
+ xy: 2, 750
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6333
+ rotate: false
+ xy: 196, 784
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6334
+ rotate: false
+ xy: 390, 818
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6369
+ rotate: false
+ xy: 584, 852
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6370
+ rotate: false
+ xy: 778, 886
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6373
+ rotate: false
+ xy: 2, 716
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6374
+ rotate: false
+ xy: 196, 750
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6377
+ rotate: false
+ xy: 390, 784
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6378
+ rotate: false
+ xy: 584, 818
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6381
+ rotate: false
+ xy: 778, 852
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6382
+ rotate: false
+ xy: 2, 682
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6417
+ rotate: false
+ xy: 196, 716
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6421
+ rotate: false
+ xy: 390, 750
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6425
+ rotate: false
+ xy: 584, 784
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6429
+ rotate: false
+ xy: 778, 818
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6434
+ rotate: false
+ xy: 2, 648
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6438
+ rotate: false
+ xy: 196, 682
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6442
+ rotate: false
+ xy: 390, 716
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6446
+ rotate: false
+ xy: 584, 750
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6481
+ rotate: false
+ xy: 778, 784
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6485
+ rotate: false
+ xy: 2, 614
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6489
+ rotate: false
+ xy: 196, 648
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6493
+ rotate: false
+ xy: 390, 682
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6498
+ rotate: false
+ xy: 584, 716
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6502
+ rotate: false
+ xy: 778, 750
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6506
+ rotate: false
+ xy: 2, 580
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6510
+ rotate: false
+ xy: 196, 614
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6614
+ rotate: false
+ xy: 390, 648
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6618
+ rotate: false
+ xy: 584, 682
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6622
+ rotate: false
+ xy: 778, 716
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6626
+ rotate: false
+ xy: 2, 546
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6631
+ rotate: false
+ xy: 196, 580
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6635
+ rotate: false
+ xy: 390, 614
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6639
+ rotate: false
+ xy: 584, 648
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6643
+ rotate: false
+ xy: 778, 682
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6678
+ rotate: false
+ xy: 2, 512
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+668
+ rotate: false
+ xy: 972, 668
+ size: 50, 64
+ orig: 50, 64
+ offset: 0, 0
+ index: -1
+6682
+ rotate: false
+ xy: 196, 546
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6686
+ rotate: false
+ xy: 390, 580
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6690
+ rotate: false
+ xy: 584, 614
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6695
+ rotate: false
+ xy: 778, 648
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6699
+ rotate: false
+ xy: 2, 478
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6703
+ rotate: false
+ xy: 196, 512
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+6707
+ rotate: false
+ xy: 390, 546
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8183
+ rotate: false
+ xy: 390, 546
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7111
+ rotate: false
+ xy: 584, 580
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7114
+ rotate: false
+ xy: 778, 614
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7117
+ rotate: false
+ xy: 2, 444
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7128
+ rotate: false
+ xy: 196, 478
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7130
+ rotate: false
+ xy: 390, 512
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7132
+ rotate: false
+ xy: 584, 546
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7150
+ rotate: false
+ xy: 778, 580
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7155
+ rotate: false
+ xy: 2, 410
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7381
+ rotate: false
+ xy: 196, 444
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7385
+ rotate: false
+ xy: 390, 478
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7389
+ rotate: false
+ xy: 584, 512
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7393
+ rotate: false
+ xy: 778, 546
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7398
+ rotate: false
+ xy: 2, 376
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7402
+ rotate: false
+ xy: 196, 410
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7406
+ rotate: false
+ xy: 390, 444
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7410
+ rotate: false
+ xy: 584, 478
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7445
+ rotate: false
+ xy: 778, 512
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7449
+ rotate: false
+ xy: 2, 342
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7453
+ rotate: false
+ xy: 196, 376
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7457
+ rotate: false
+ xy: 390, 410
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7462
+ rotate: false
+ xy: 584, 444
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7466
+ rotate: false
+ xy: 778, 478
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7470
+ rotate: false
+ xy: 2, 308
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7474
+ rotate: false
+ xy: 196, 342
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7525
+ rotate: false
+ xy: 390, 376
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7529
+ rotate: false
+ xy: 584, 410
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7533
+ rotate: false
+ xy: 778, 444
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7537
+ rotate: false
+ xy: 2, 274
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7542
+ rotate: false
+ xy: 196, 308
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7546
+ rotate: false
+ xy: 390, 342
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7550
+ rotate: false
+ xy: 584, 376
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7554
+ rotate: false
+ xy: 778, 410
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7589
+ rotate: false
+ xy: 2, 240
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7593
+ rotate: false
+ xy: 196, 274
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7597
+ rotate: false
+ xy: 390, 308
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7601
+ rotate: false
+ xy: 584, 342
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7606
+ rotate: false
+ xy: 778, 376
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7610
+ rotate: false
+ xy: 2, 206
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7614
+ rotate: false
+ xy: 196, 240
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7618
+ rotate: false
+ xy: 390, 274
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7653
+ rotate: false
+ xy: 584, 308
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7657
+ rotate: false
+ xy: 778, 342
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7661
+ rotate: false
+ xy: 2, 172
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7665
+ rotate: false
+ xy: 196, 206
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7670
+ rotate: false
+ xy: 390, 240
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7674
+ rotate: false
+ xy: 584, 274
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7678
+ rotate: false
+ xy: 778, 308
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7682
+ rotate: false
+ xy: 2, 138
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7753
+ rotate: false
+ xy: 196, 172
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7757
+ rotate: false
+ xy: 390, 206
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7761
+ rotate: false
+ xy: 584, 240
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7765
+ rotate: false
+ xy: 778, 274
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7770
+ rotate: false
+ xy: 2, 104
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7774
+ rotate: false
+ xy: 196, 138
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7778
+ rotate: false
+ xy: 390, 172
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7782
+ rotate: false
+ xy: 584, 206
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7817
+ rotate: false
+ xy: 778, 240
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7821
+ rotate: false
+ xy: 2, 70
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7825
+ rotate: false
+ xy: 196, 104
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7829
+ rotate: false
+ xy: 390, 138
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7834
+ rotate: false
+ xy: 584, 172
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7838
+ rotate: false
+ xy: 778, 206
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7842
+ rotate: false
+ xy: 2, 36
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7846
+ rotate: false
+ xy: 196, 70
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7881
+ rotate: false
+ xy: 390, 104
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7885
+ rotate: false
+ xy: 584, 138
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7889
+ rotate: false
+ xy: 778, 172
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7893
+ rotate: false
+ xy: 2, 2
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7898
+ rotate: false
+ xy: 196, 36
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7902
+ rotate: false
+ xy: 390, 70
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7906
+ rotate: false
+ xy: 584, 104
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7910
+ rotate: false
+ xy: 778, 138
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7945
+ rotate: false
+ xy: 196, 2
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7949
+ rotate: false
+ xy: 390, 36
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7953
+ rotate: false
+ xy: 584, 70
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7957
+ rotate: false
+ xy: 778, 104
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7977
+ rotate: false
+ xy: 390, 2
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7981
+ rotate: false
+ xy: 584, 36
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7985
+ rotate: false
+ xy: 778, 70
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7989
+ rotate: false
+ xy: 584, 2
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7994
+ rotate: false
+ xy: 778, 36
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+7998
+ rotate: false
+ xy: 778, 2
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9452
+ rotate: false
+ xy: 972, 950
+ size: 50, 70
+ orig: 50, 70
+ offset: 0, 0
+ index: -1
+9454
+ rotate: false
+ xy: 972, 878
+ size: 50, 70
+ orig: 50, 70
+ offset: 0, 0
+ index: -1
+9456
+ rotate: false
+ xy: 972, 806
+ size: 50, 70
+ orig: 50, 70
+ offset: 0, 0
+ index: -1
+9458
+ rotate: false
+ xy: 972, 734
+ size: 50, 70
+ orig: 50, 70
+ offset: 0, 0
+ index: -1
+
+images63.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10037
+ rotate: false
+ xy: 582, 104
+ size: 114, 98
+ orig: 114, 98
+ offset: 0, 0
+ index: -1
+10040
+ rotate: false
+ xy: 582, 4
+ size: 114, 98
+ orig: 114, 98
+ offset: 0, 0
+ index: -1
+10043
+ rotate: false
+ xy: 908, 188
+ size: 114, 98
+ orig: 114, 98
+ offset: 0, 0
+ index: -1
+10046
+ rotate: false
+ xy: 698, 120
+ size: 114, 98
+ orig: 114, 98
+ offset: 0, 0
+ index: -1
+10049
+ rotate: false
+ xy: 698, 20
+ size: 114, 98
+ orig: 114, 98
+ offset: 0, 0
+ index: -1
+1348
+ rotate: false
+ xy: 552, 238
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+13500
+ rotate: false
+ xy: 2, 340
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+13501
+ rotate: false
+ xy: 196, 374
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+13504
+ rotate: false
+ xy: 390, 408
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+13505
+ rotate: false
+ xy: 584, 442
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+13508
+ rotate: false
+ xy: 778, 476
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+13509
+ rotate: false
+ xy: 2, 306
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+13512
+ rotate: false
+ xy: 196, 340
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+13513
+ rotate: false
+ xy: 390, 374
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+1352
+ rotate: false
+ xy: 520, 204
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1356
+ rotate: false
+ xy: 778, 288
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1360
+ rotate: false
+ xy: 746, 254
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1367
+ rotate: false
+ xy: 714, 220
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+17583
+ rotate: false
+ xy: 882, 76
+ size: 140, 53
+ orig: 140, 53
+ offset: 0, 0
+ index: -1
+17590
+ rotate: false
+ xy: 882, 21
+ size: 140, 53
+ orig: 140, 53
+ offset: 0, 0
+ index: -1
+18164
+ rotate: false
+ xy: 2, 103
+ size: 114, 99
+ orig: 114, 99
+ offset: 0, 0
+ index: -1
+18167
+ rotate: false
+ xy: 2, 2
+ size: 114, 99
+ orig: 114, 99
+ offset: 0, 0
+ index: -1
+18170
+ rotate: false
+ xy: 118, 103
+ size: 114, 99
+ orig: 114, 99
+ offset: 0, 0
+ index: -1
+18173
+ rotate: false
+ xy: 118, 2
+ size: 114, 99
+ orig: 114, 99
+ offset: 0, 0
+ index: -1
+18176
+ rotate: false
+ xy: 234, 103
+ size: 114, 99
+ orig: 114, 99
+ offset: 0, 0
+ index: -1
+18178
+ rotate: false
+ xy: 234, 2
+ size: 114, 99
+ orig: 114, 99
+ offset: 0, 0
+ index: -1
+18181
+ rotate: false
+ xy: 350, 103
+ size: 114, 99
+ orig: 114, 99
+ offset: 0, 0
+ index: -1
+18275
+ rotate: false
+ xy: 882, 131
+ size: 140, 55
+ orig: 140, 55
+ offset: 0, 0
+ index: -1
+18335
+ rotate: false
+ xy: 972, 960
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+18337
+ rotate: false
+ xy: 972, 900
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+18340
+ rotate: false
+ xy: 972, 840
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+18346
+ rotate: false
+ xy: 972, 780
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+18349
+ rotate: false
+ xy: 972, 720
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+18352
+ rotate: false
+ xy: 972, 660
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+18355
+ rotate: false
+ xy: 972, 600
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+18358
+ rotate: false
+ xy: 972, 540
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+18361
+ rotate: false
+ xy: 972, 480
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+18363
+ rotate: false
+ xy: 972, 420
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+18366
+ rotate: false
+ xy: 972, 360
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+18431
+ rotate: false
+ xy: 584, 408
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18435
+ rotate: false
+ xy: 778, 442
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18439
+ rotate: false
+ xy: 2, 272
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18443
+ rotate: false
+ xy: 196, 306
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18448
+ rotate: false
+ xy: 390, 340
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18452
+ rotate: false
+ xy: 584, 374
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18456
+ rotate: false
+ xy: 778, 408
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18460
+ rotate: false
+ xy: 2, 238
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18927
+ rotate: false
+ xy: 196, 272
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18928
+ rotate: false
+ xy: 390, 306
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18931
+ rotate: false
+ xy: 584, 340
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18932
+ rotate: false
+ xy: 778, 374
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18935
+ rotate: false
+ xy: 2, 204
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18936
+ rotate: false
+ xy: 196, 238
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18939
+ rotate: false
+ xy: 390, 272
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+18940
+ rotate: false
+ xy: 584, 306
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+20186
+ rotate: false
+ xy: 814, 90
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20187
+ rotate: false
+ xy: 848, 90
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+23829
+ rotate: false
+ xy: 880, 4
+ size: 86, 15
+ orig: 86, 15
+ offset: 0, 0
+ index: -1
+23920
+ rotate: false
+ xy: 698, 3
+ size: 88, 15
+ orig: 88, 15
+ offset: 0, 0
+ index: -1
+23931
+ rotate: false
+ xy: 814, 6
+ size: 64, 15
+ orig: 64, 15
+ offset: 0, 0
+ index: -1
+23932
+ rotate: false
+ xy: 968, 4
+ size: 54, 15
+ orig: 54, 15
+ offset: 0, 0
+ index: -1
+348
+ rotate: false
+ xy: 196, 204
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+351
+ rotate: false
+ xy: 390, 238
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+352
+ rotate: false
+ xy: 584, 272
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+355
+ rotate: false
+ xy: 358, 204
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+454
+ rotate: false
+ xy: 876, 220
+ size: 26, 32
+ orig: 26, 32
+ offset: 0, 0
+ index: -1
+4827
+ rotate: false
+ xy: 778, 322
+ size: 165, 50
+ orig: 165, 50
+ offset: 0, 0
+ index: -1
+6868
+ rotate: false
+ xy: 350, 3
+ size: 114, 98
+ orig: 114, 98
+ offset: 0, 0
+ index: -1
+6871
+ rotate: false
+ xy: 466, 104
+ size: 114, 98
+ orig: 114, 98
+ offset: 0, 0
+ index: -1
+6874
+ rotate: false
+ xy: 466, 4
+ size: 114, 98
+ orig: 114, 98
+ offset: 0, 0
+ index: -1
+72
+ rotate: false
+ xy: 945, 288
+ size: 75, 70
+ orig: 75, 70
+ offset: 0, 0
+ index: -1
+8002
+ rotate: false
+ xy: 2, 986
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8006
+ rotate: false
+ xy: 2, 952
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8041
+ rotate: false
+ xy: 196, 986
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8045
+ rotate: false
+ xy: 2, 918
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8049
+ rotate: false
+ xy: 196, 952
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8053
+ rotate: false
+ xy: 390, 986
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8058
+ rotate: false
+ xy: 2, 884
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8062
+ rotate: false
+ xy: 196, 918
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8066
+ rotate: false
+ xy: 390, 952
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8070
+ rotate: false
+ xy: 584, 986
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8105
+ rotate: false
+ xy: 2, 850
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8109
+ rotate: false
+ xy: 196, 884
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8113
+ rotate: false
+ xy: 390, 918
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8117
+ rotate: false
+ xy: 584, 952
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8122
+ rotate: false
+ xy: 778, 986
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8126
+ rotate: false
+ xy: 2, 816
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8130
+ rotate: false
+ xy: 196, 850
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8134
+ rotate: false
+ xy: 390, 884
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8171
+ rotate: false
+ xy: 584, 918
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8175
+ rotate: false
+ xy: 778, 952
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8179
+ rotate: false
+ xy: 2, 782
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8695
+ rotate: false
+ xy: 196, 816
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8697
+ rotate: false
+ xy: 390, 850
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8714
+ rotate: false
+ xy: 584, 884
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8716
+ rotate: false
+ xy: 778, 918
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8735
+ rotate: false
+ xy: 2, 748
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8737
+ rotate: false
+ xy: 196, 782
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8754
+ rotate: false
+ xy: 390, 816
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8756
+ rotate: false
+ xy: 584, 850
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8775
+ rotate: false
+ xy: 778, 884
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8777
+ rotate: false
+ xy: 2, 714
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8794
+ rotate: false
+ xy: 196, 748
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8796
+ rotate: false
+ xy: 390, 782
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8815
+ rotate: false
+ xy: 584, 816
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8817
+ rotate: false
+ xy: 778, 850
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8834
+ rotate: false
+ xy: 2, 680
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8836
+ rotate: false
+ xy: 196, 714
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8855
+ rotate: false
+ xy: 390, 748
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8857
+ rotate: false
+ xy: 584, 782
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8874
+ rotate: false
+ xy: 778, 816
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8876
+ rotate: false
+ xy: 2, 646
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8895
+ rotate: false
+ xy: 196, 680
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8897
+ rotate: false
+ xy: 390, 714
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8914
+ rotate: false
+ xy: 584, 748
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8916
+ rotate: false
+ xy: 778, 782
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8935
+ rotate: false
+ xy: 2, 612
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8937
+ rotate: false
+ xy: 196, 646
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8954
+ rotate: false
+ xy: 390, 680
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8956
+ rotate: false
+ xy: 584, 714
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8975
+ rotate: false
+ xy: 778, 748
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8977
+ rotate: false
+ xy: 2, 578
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8994
+ rotate: false
+ xy: 196, 612
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+8996
+ rotate: false
+ xy: 390, 646
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9015
+ rotate: false
+ xy: 584, 680
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9017
+ rotate: false
+ xy: 778, 714
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9034
+ rotate: false
+ xy: 2, 544
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9036
+ rotate: false
+ xy: 196, 578
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9055
+ rotate: false
+ xy: 390, 612
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9057
+ rotate: false
+ xy: 584, 646
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9074
+ rotate: false
+ xy: 778, 680
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9076
+ rotate: false
+ xy: 2, 510
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9237
+ rotate: false
+ xy: 196, 544
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9241
+ rotate: false
+ xy: 390, 578
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9245
+ rotate: false
+ xy: 584, 612
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9249
+ rotate: false
+ xy: 778, 646
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9254
+ rotate: false
+ xy: 2, 476
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9258
+ rotate: false
+ xy: 196, 510
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9262
+ rotate: false
+ xy: 390, 544
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9266
+ rotate: false
+ xy: 584, 578
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9301
+ rotate: false
+ xy: 778, 612
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9305
+ rotate: false
+ xy: 2, 442
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9309
+ rotate: false
+ xy: 196, 476
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9313
+ rotate: false
+ xy: 390, 510
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9318
+ rotate: false
+ xy: 584, 544
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9322
+ rotate: false
+ xy: 778, 578
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9326
+ rotate: false
+ xy: 2, 408
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9330
+ rotate: false
+ xy: 196, 442
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9365
+ rotate: false
+ xy: 390, 476
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9369
+ rotate: false
+ xy: 584, 510
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9373
+ rotate: false
+ xy: 778, 544
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9377
+ rotate: false
+ xy: 2, 374
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9382
+ rotate: false
+ xy: 196, 408
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9386
+ rotate: false
+ xy: 390, 442
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9390
+ rotate: false
+ xy: 584, 476
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9394
+ rotate: false
+ xy: 778, 510
+ size: 192, 32
+ orig: 192, 32
+ offset: 0, 0
+ index: -1
+9799
+ rotate: false
+ xy: 814, 23
+ size: 66, 65
+ orig: 66, 65
+ offset: 0, 0
+ index: -1
+
+images64.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10052
+ rotate: false
+ xy: 2, 924
+ size: 114, 98
+ orig: 114, 98
+ offset: 0, 0
+ index: -1
+10054
+ rotate: false
+ xy: 2, 824
+ size: 114, 98
+ orig: 114, 98
+ offset: 0, 0
+ index: -1
+10057
+ rotate: false
+ xy: 118, 924
+ size: 114, 98
+ orig: 114, 98
+ offset: 0, 0
+ index: -1
+1020
+ rotate: false
+ xy: 734, 221
+ size: 34, 28
+ orig: 34, 28
+ offset: 0, 0
+ index: -1
+10372
+ rotate: false
+ xy: 134, 434
+ size: 66, 94
+ orig: 66, 94
+ offset: 0, 0
+ index: -1
+12066
+ rotate: false
+ xy: 558, 920
+ size: 149, 50
+ orig: 149, 50
+ offset: 0, 0
+ index: -1
+12222
+ rotate: false
+ xy: 216, 854
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12225
+ rotate: false
+ xy: 362, 854
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12230
+ rotate: false
+ xy: 508, 854
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12233
+ rotate: false
+ xy: 860, 852
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12238
+ rotate: false
+ xy: 709, 804
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12241
+ rotate: false
+ xy: 855, 786
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12246
+ rotate: false
+ xy: 202, 754
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12249
+ rotate: false
+ xy: 348, 754
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12258
+ rotate: false
+ xy: 494, 754
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12261
+ rotate: false
+ xy: 202, 654
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12266
+ rotate: false
+ xy: 348, 654
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12269
+ rotate: false
+ xy: 202, 520
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12274
+ rotate: false
+ xy: 202, 454
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12277
+ rotate: false
+ xy: 198, 354
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12282
+ rotate: false
+ xy: 198, 288
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12285
+ rotate: false
+ xy: 198, 222
+ size: 144, 64
+ orig: 144, 64
+ offset: 0, 0
+ index: -1
+12313
+ rotate: false
+ xy: 378, 238
+ size: 126, 55
+ orig: 126, 55
+ offset: 0, 0
+ index: -1
+12319
+ rotate: false
+ xy: 896, 163
+ size: 126, 55
+ orig: 126, 55
+ offset: 0, 0
+ index: -1
+12741
+ rotate: false
+ xy: 198, 154
+ size: 130, 66
+ orig: 130, 66
+ offset: 0, 0
+ index: -1
+12744
+ rotate: false
+ xy: 198, 86
+ size: 130, 66
+ orig: 130, 66
+ offset: 0, 0
+ index: -1
+12746
+ rotate: false
+ xy: 198, 18
+ size: 130, 66
+ orig: 130, 66
+ offset: 0, 0
+ index: -1
+1371
+ rotate: false
+ xy: 216, 820
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1375
+ rotate: false
+ xy: 378, 820
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1379
+ rotate: false
+ xy: 540, 820
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+13916
+ rotate: false
+ xy: 100, 2
+ size: 74, 38
+ orig: 74, 38
+ offset: 0, 0
+ index: -1
+1412
+ rotate: false
+ xy: 202, 720
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1416
+ rotate: false
+ xy: 364, 720
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1420
+ rotate: false
+ xy: 202, 620
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1424
+ rotate: false
+ xy: 202, 586
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1431
+ rotate: false
+ xy: 202, 420
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1435
+ rotate: false
+ xy: 344, 204
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1439
+ rotate: false
+ xy: 458, 150
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1443
+ rotate: false
+ xy: 836, 752
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1490
+ rotate: false
+ xy: 344, 238
+ size: 32, 50
+ orig: 32, 50
+ offset: 0, 0
+ index: -1
+17591
+ rotate: false
+ xy: 882, 969
+ size: 140, 53
+ orig: 140, 53
+ offset: 0, 0
+ index: -1
+17595
+ rotate: false
+ xy: 330, 11
+ size: 140, 53
+ orig: 140, 53
+ offset: 0, 0
+ index: -1
+17596
+ rotate: false
+ xy: 460, 95
+ size: 140, 53
+ orig: 140, 53
+ offset: 0, 0
+ index: -1
+17612
+ rotate: false
+ xy: 2, 726
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+17613
+ rotate: false
+ xy: 118, 826
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+17618
+ rotate: false
+ xy: 2, 628
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+17619
+ rotate: false
+ xy: 2, 530
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+17624
+ rotate: false
+ xy: 2, 432
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+17629
+ rotate: false
+ xy: 2, 334
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+17634
+ rotate: false
+ xy: 2, 236
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+17635
+ rotate: false
+ xy: 2, 138
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+17640
+ rotate: false
+ xy: 2, 40
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+17641
+ rotate: false
+ xy: 100, 336
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+17646
+ rotate: false
+ xy: 100, 238
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+17647
+ rotate: false
+ xy: 100, 140
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+17652
+ rotate: false
+ xy: 100, 42
+ size: 96, 96
+ orig: 96, 96
+ offset: 0, 0
+ index: -1
+17719
+ rotate: false
+ xy: 134, 628
+ size: 66, 96
+ orig: 66, 96
+ offset: 0, 0
+ index: -1
+17723
+ rotate: false
+ xy: 134, 530
+ size: 66, 96
+ orig: 66, 96
+ offset: 0, 0
+ index: -1
+17823
+ rotate: false
+ xy: 134, 726
+ size: 66, 98
+ orig: 66, 98
+ offset: 0, 0
+ index: -1
+1829
+ rotate: false
+ xy: 836, 718
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1833
+ rotate: false
+ xy: 832, 684
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1837
+ rotate: false
+ xy: 734, 186
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1923
+ rotate: false
+ xy: 634, 569
+ size: 66, 53
+ orig: 66, 53
+ offset: 0, 0
+ index: -1
+20095
+ rotate: false
+ xy: 709, 921
+ size: 149, 49
+ orig: 149, 49
+ offset: 0, 0
+ index: -1
+20099
+ rotate: false
+ xy: 860, 918
+ size: 149, 49
+ orig: 149, 49
+ offset: 0, 0
+ index: -1
+201
+ rotate: false
+ xy: 364, 588
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+20103
+ rotate: false
+ xy: 709, 870
+ size: 149, 49
+ orig: 149, 49
+ offset: 0, 0
+ index: -1
+20114
+ rotate: false
+ xy: 234, 972
+ size: 160, 50
+ orig: 160, 50
+ offset: 0, 0
+ index: -1
+20115
+ rotate: false
+ xy: 396, 972
+ size: 160, 50
+ orig: 160, 50
+ offset: 0, 0
+ index: -1
+20118
+ rotate: false
+ xy: 558, 972
+ size: 160, 50
+ orig: 160, 50
+ offset: 0, 0
+ index: -1
+20119
+ rotate: false
+ xy: 720, 972
+ size: 160, 50
+ orig: 160, 50
+ offset: 0, 0
+ index: -1
+20122
+ rotate: false
+ xy: 234, 920
+ size: 160, 50
+ orig: 160, 50
+ offset: 0, 0
+ index: -1
+20123
+ rotate: false
+ xy: 396, 920
+ size: 160, 50
+ orig: 160, 50
+ offset: 0, 0
+ index: -1
+20188
+ rotate: false
+ xy: 100, 694
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20189
+ rotate: false
+ xy: 100, 564
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20190
+ rotate: false
+ xy: 100, 434
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20191
+ rotate: false
+ xy: 494, 590
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20192
+ rotate: false
+ xy: 344, 290
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20193
+ rotate: false
+ xy: 348, 456
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20194
+ rotate: false
+ xy: 602, 20
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20195
+ rotate: false
+ xy: 634, 624
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20196
+ rotate: false
+ xy: 668, 624
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20197
+ rotate: false
+ xy: 900, 222
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+203
+ rotate: false
+ xy: 382, 439
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+2118
+ rotate: false
+ xy: 636, 251
+ size: 65, 97
+ orig: 65, 97
+ offset: 0, 0
+ index: -1
+2204
+ rotate: false
+ xy: 868, 26
+ size: 153, 35
+ orig: 153, 35
+ offset: 0, 0
+ index: -1
+22847
+ rotate: false
+ xy: 488, 516
+ size: 126, 70
+ orig: 126, 70
+ offset: 0, 0
+ index: -1
+22852
+ rotate: false
+ xy: 378, 367
+ size: 126, 70
+ orig: 126, 70
+ offset: 0, 0
+ index: -1
+22855
+ rotate: false
+ xy: 378, 295
+ size: 126, 70
+ orig: 126, 70
+ offset: 0, 0
+ index: -1
+22860
+ rotate: false
+ xy: 330, 132
+ size: 126, 70
+ orig: 126, 70
+ offset: 0, 0
+ index: -1
+23713
+ rotate: false
+ xy: 618, 433
+ size: 75, 81
+ orig: 75, 81
+ offset: 0, 0
+ index: -1
+23780
+ rotate: false
+ xy: 948, 9
+ size: 74, 15
+ orig: 74, 15
+ offset: 0, 0
+ index: -1
+23855
+ rotate: false
+ xy: 708, 2
+ size: 79, 15
+ orig: 79, 15
+ offset: 0, 0
+ index: -1
+23881
+ rotate: false
+ xy: 789, 3
+ size: 78, 15
+ orig: 78, 15
+ offset: 0, 0
+ index: -1
+23895
+ rotate: false
+ xy: 536, 2
+ size: 84, 15
+ orig: 84, 15
+ offset: 0, 0
+ index: -1
+2391
+ rotate: false
+ xy: 616, 516
+ size: 84, 51
+ orig: 84, 51
+ offset: 0, 0
+ index: -1
+23919
+ rotate: false
+ xy: 869, 9
+ size: 77, 15
+ orig: 77, 15
+ offset: 0, 0
+ index: -1
+23929
+ rotate: false
+ xy: 622, 2
+ size: 84, 15
+ orig: 84, 15
+ offset: 0, 0
+ index: -1
+271
+ rotate: false
+ xy: 458, 187
+ size: 45, 15
+ orig: 45, 15
+ offset: 0, 0
+ index: -1
+2884
+ rotate: false
+ xy: 962, 632
+ size: 60, 50
+ orig: 60, 50
+ offset: 0, 0
+ index: -1
+2885
+ rotate: false
+ xy: 962, 580
+ size: 60, 50
+ orig: 60, 50
+ offset: 0, 0
+ index: -1
+2892
+ rotate: false
+ xy: 962, 528
+ size: 60, 50
+ orig: 60, 50
+ offset: 0, 0
+ index: -1
+2893
+ rotate: false
+ xy: 962, 476
+ size: 60, 50
+ orig: 60, 50
+ offset: 0, 0
+ index: -1
+3064
+ rotate: false
+ xy: 703, 251
+ size: 65, 97
+ orig: 65, 97
+ offset: 0, 0
+ index: -1
+327
+ rotate: false
+ xy: 506, 184
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+331
+ rotate: false
+ xy: 832, 584
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+334
+ rotate: false
+ xy: 2, 6
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+335
+ rotate: false
+ xy: 702, 506
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+339
+ rotate: false
+ xy: 832, 484
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+356
+ rotate: false
+ xy: 742, 86
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+360
+ rotate: false
+ xy: 872, 63
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+4451
+ rotate: false
+ xy: 954, 352
+ size: 66, 64
+ orig: 66, 64
+ offset: 0, 0
+ index: -1
+456
+ rotate: false
+ xy: 994, 684
+ size: 26, 32
+ orig: 26, 32
+ offset: 0, 0
+ index: -1
+470
+ rotate: false
+ xy: 636, 182
+ size: 96, 67
+ orig: 96, 67
+ offset: 0, 0
+ index: -1
+476
+ rotate: false
+ xy: 955, 419
+ size: 64, 55
+ orig: 64, 55
+ offset: 0, 0
+ index: -1
+5389
+ rotate: false
+ xy: 1002, 111
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5416
+ rotate: false
+ xy: 1001, 800
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5419
+ rotate: false
+ xy: 998, 734
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+59
+ rotate: false
+ xy: 640, 754
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+624
+ rotate: false
+ xy: 506, 284
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+625
+ rotate: false
+ xy: 506, 218
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+626
+ rotate: false
+ xy: 330, 66
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+627
+ rotate: false
+ xy: 472, 29
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+628
+ rotate: false
+ xy: 706, 738
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+630
+ rotate: false
+ xy: 702, 672
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+671
+ rotate: false
+ xy: 702, 606
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+675
+ rotate: false
+ xy: 832, 618
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+676
+ rotate: false
+ xy: 702, 540
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+677
+ rotate: false
+ xy: 832, 518
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+6788
+ rotate: false
+ xy: 636, 19
+ size: 100, 78
+ orig: 100, 78
+ offset: 0, 0
+ index: -1
+6892
+ rotate: false
+ xy: 472, 2
+ size: 62, 25
+ orig: 62, 25
+ offset: 0, 0
+ index: -1
+7059
+ rotate: false
+ xy: 528, 671
+ size: 104, 81
+ orig: 104, 81
+ offset: 0, 0
+ index: -1
+7066
+ rotate: false
+ xy: 528, 588
+ size: 104, 81
+ orig: 104, 81
+ offset: 0, 0
+ index: -1
+7069
+ rotate: false
+ xy: 382, 505
+ size: 104, 81
+ orig: 104, 81
+ offset: 0, 0
+ index: -1
+7073
+ rotate: false
+ xy: 512, 433
+ size: 104, 81
+ orig: 104, 81
+ offset: 0, 0
+ index: -1
+7080
+ rotate: false
+ xy: 506, 350
+ size: 104, 81
+ orig: 104, 81
+ offset: 0, 0
+ index: -1
+7083
+ rotate: false
+ xy: 612, 350
+ size: 104, 81
+ orig: 104, 81
+ offset: 0, 0
+ index: -1
+7087
+ rotate: false
+ xy: 718, 357
+ size: 104, 81
+ orig: 104, 81
+ offset: 0, 0
+ index: -1
+7090
+ rotate: false
+ xy: 636, 99
+ size: 104, 81
+ orig: 104, 81
+ offset: 0, 0
+ index: -1
+718
+ rotate: false
+ xy: 695, 440
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+719
+ rotate: false
+ xy: 825, 418
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+720
+ rotate: false
+ xy: 824, 352
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+721
+ rotate: false
+ xy: 770, 286
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+833
+ rotate: false
+ xy: 654, 854
+ size: 53, 64
+ orig: 53, 64
+ offset: 0, 0
+ index: -1
+863
+ rotate: false
+ xy: 770, 220
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+864
+ rotate: false
+ xy: 742, 120
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+875
+ rotate: false
+ xy: 738, 20
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+876
+ rotate: false
+ xy: 872, 97
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+9464
+ rotate: false
+ xy: 934, 286
+ size: 88, 64
+ orig: 88, 64
+ offset: 0, 0
+ index: -1
+9469
+ rotate: false
+ xy: 934, 220
+ size: 88, 64
+ orig: 88, 64
+ offset: 0, 0
+ index: -1
+
+images65.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10392
+ rotate: false
+ xy: 825, 2
+ size: 65, 97
+ orig: 65, 97
+ offset: 0, 0
+ index: -1
+10412
+ rotate: false
+ xy: 892, 2
+ size: 65, 97
+ orig: 65, 97
+ offset: 0, 0
+ index: -1
+12129
+ rotate: false
+ xy: 262, 127
+ size: 156, 35
+ orig: 156, 35
+ offset: 0, 0
+ index: -1
+12134
+ rotate: false
+ xy: 270, 90
+ size: 156, 35
+ orig: 156, 35
+ offset: 0, 0
+ index: -1
+12137
+ rotate: false
+ xy: 270, 53
+ size: 156, 35
+ orig: 156, 35
+ offset: 0, 0
+ index: -1
+12321
+ rotate: false
+ xy: 980, 214
+ size: 42, 55
+ orig: 42, 55
+ offset: 0, 0
+ index: -1
+12724
+ rotate: false
+ xy: 982, 306
+ size: 32, 35
+ orig: 32, 35
+ offset: 0, 0
+ index: -1
+12941
+ rotate: false
+ xy: 428, 64
+ size: 57, 99
+ orig: 57, 99
+ offset: 0, 0
+ index: -1
+1471
+ rotate: false
+ xy: 132, 958
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+17739
+ rotate: false
+ xy: 2, 2
+ size: 66, 96
+ orig: 66, 96
+ offset: 0, 0
+ index: -1
+17743
+ rotate: false
+ xy: 70, 2
+ size: 66, 96
+ orig: 66, 96
+ offset: 0, 0
+ index: -1
+17794
+ rotate: false
+ xy: 880, 377
+ size: 96, 79
+ orig: 96, 79
+ offset: 0, 0
+ index: -1
+18187
+ rotate: false
+ xy: 392, 494
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+18189
+ rotate: false
+ xy: 392, 428
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+18271
+ rotate: false
+ xy: 880, 861
+ size: 100, 81
+ orig: 100, 81
+ offset: 0, 0
+ index: -1
+18273
+ rotate: false
+ xy: 880, 778
+ size: 100, 81
+ orig: 100, 81
+ offset: 0, 0
+ index: -1
+18330
+ rotate: false
+ xy: 993, 41
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+18397
+ rotate: false
+ xy: 392, 362
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+18399
+ rotate: false
+ xy: 392, 296
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+1841
+ rotate: false
+ xy: 262, 990
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1848
+ rotate: false
+ xy: 424, 990
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1852
+ rotate: false
+ xy: 586, 990
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1856
+ rotate: false
+ xy: 748, 990
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1860
+ rotate: false
+ xy: 262, 956
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1928
+ rotate: false
+ xy: 978, 395
+ size: 44, 53
+ orig: 44, 53
+ offset: 0, 0
+ index: -1
+19593
+ rotate: false
+ xy: 270, 2
+ size: 75, 49
+ orig: 75, 49
+ offset: 0, 0
+ index: -1
+19597
+ rotate: false
+ xy: 347, 2
+ size: 75, 49
+ orig: 75, 49
+ offset: 0, 0
+ index: -1
+20092
+ rotate: false
+ xy: 424, 2
+ size: 75, 49
+ orig: 75, 49
+ offset: 0, 0
+ index: -1
+20198
+ rotate: false
+ xy: 846, 826
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20199
+ rotate: false
+ xy: 846, 696
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20200
+ rotate: false
+ xy: 846, 566
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20201
+ rotate: false
+ xy: 846, 436
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20202
+ rotate: false
+ xy: 846, 306
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20203
+ rotate: false
+ xy: 982, 814
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20204
+ rotate: false
+ xy: 982, 684
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+20205
+ rotate: false
+ xy: 982, 554
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+22072
+ rotate: false
+ xy: 959, 3
+ size: 32, 96
+ orig: 32, 96
+ offset: 0, 0
+ index: -1
+22259
+ rotate: false
+ xy: 982, 502
+ size: 40, 50
+ orig: 40, 50
+ offset: 0, 0
+ index: -1
+22260
+ rotate: false
+ xy: 982, 450
+ size: 40, 50
+ orig: 40, 50
+ offset: 0, 0
+ index: -1
+22263
+ rotate: false
+ xy: 982, 343
+ size: 40, 50
+ orig: 40, 50
+ offset: 0, 0
+ index: -1
+2767
+ rotate: false
+ xy: 392, 165
+ size: 99, 46
+ orig: 99, 46
+ offset: 0, 0
+ index: -1
+3668
+ rotate: false
+ xy: 987, 101
+ size: 32, 39
+ orig: 32, 39
+ offset: 0, 0
+ index: -1
+3995
+ rotate: false
+ xy: 2, 826
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+3997
+ rotate: false
+ xy: 132, 892
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+3999
+ rotate: false
+ xy: 2, 760
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4132
+ rotate: false
+ xy: 132, 826
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4133
+ rotate: false
+ xy: 262, 890
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4313
+ rotate: false
+ xy: 2, 694
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4405
+ rotate: false
+ xy: 132, 760
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4406
+ rotate: false
+ xy: 262, 824
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4409
+ rotate: false
+ xy: 2, 628
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4410
+ rotate: false
+ xy: 132, 694
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4413
+ rotate: false
+ xy: 262, 758
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4414
+ rotate: false
+ xy: 2, 562
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4417
+ rotate: false
+ xy: 132, 628
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4418
+ rotate: false
+ xy: 262, 692
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4421
+ rotate: false
+ xy: 2, 496
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4422
+ rotate: false
+ xy: 132, 562
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4425
+ rotate: false
+ xy: 262, 626
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4426
+ rotate: false
+ xy: 2, 430
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4429
+ rotate: false
+ xy: 132, 496
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4430
+ rotate: false
+ xy: 262, 560
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4433
+ rotate: false
+ xy: 2, 364
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4434
+ rotate: false
+ xy: 132, 430
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4437
+ rotate: false
+ xy: 262, 494
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4440
+ rotate: false
+ xy: 2, 298
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4443
+ rotate: false
+ xy: 132, 364
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4446
+ rotate: false
+ xy: 262, 428
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4455
+ rotate: false
+ xy: 2, 232
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4458
+ rotate: false
+ xy: 132, 298
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4506
+ rotate: false
+ xy: 262, 362
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4508
+ rotate: false
+ xy: 2, 166
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4513
+ rotate: false
+ xy: 132, 232
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4514
+ rotate: false
+ xy: 262, 296
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+457
+ rotate: false
+ xy: 993, 7
+ size: 26, 32
+ orig: 26, 32
+ offset: 0, 0
+ index: -1
+4597
+ rotate: false
+ xy: 2, 100
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+466
+ rotate: false
+ xy: 987, 142
+ size: 32, 70
+ orig: 32, 70
+ offset: 0, 0
+ index: -1
+4909
+ rotate: false
+ xy: 132, 166
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4942
+ rotate: false
+ xy: 132, 100
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4945
+ rotate: false
+ xy: 262, 230
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4948
+ rotate: false
+ xy: 262, 164
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4951
+ rotate: false
+ xy: 392, 890
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4954
+ rotate: false
+ xy: 392, 824
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4957
+ rotate: false
+ xy: 392, 758
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4960
+ rotate: false
+ xy: 392, 692
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4963
+ rotate: false
+ xy: 392, 626
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+4986
+ rotate: false
+ xy: 392, 560
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+5617
+ rotate: false
+ xy: 424, 956
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5620
+ rotate: false
+ xy: 586, 956
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5621
+ rotate: false
+ xy: 522, 922
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5624
+ rotate: false
+ xy: 748, 956
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5625
+ rotate: false
+ xy: 522, 888
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5628
+ rotate: false
+ xy: 684, 922
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5629
+ rotate: false
+ xy: 522, 854
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5632
+ rotate: false
+ xy: 684, 888
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5697
+ rotate: false
+ xy: 522, 820
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5700
+ rotate: false
+ xy: 684, 854
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5701
+ rotate: false
+ xy: 522, 786
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5704
+ rotate: false
+ xy: 684, 820
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5705
+ rotate: false
+ xy: 522, 752
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5708
+ rotate: false
+ xy: 684, 786
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5709
+ rotate: false
+ xy: 522, 718
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5712
+ rotate: false
+ xy: 684, 752
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5789
+ rotate: false
+ xy: 522, 684
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5792
+ rotate: false
+ xy: 684, 718
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5793
+ rotate: false
+ xy: 522, 650
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5796
+ rotate: false
+ xy: 684, 684
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5797
+ rotate: false
+ xy: 522, 616
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5800
+ rotate: false
+ xy: 684, 650
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5801
+ rotate: false
+ xy: 522, 582
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5804
+ rotate: false
+ xy: 684, 616
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5869
+ rotate: false
+ xy: 684, 582
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5873
+ rotate: false
+ xy: 522, 548
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5877
+ rotate: false
+ xy: 522, 514
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5881
+ rotate: false
+ xy: 684, 548
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5888
+ rotate: false
+ xy: 684, 514
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5892
+ rotate: false
+ xy: 522, 480
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5896
+ rotate: false
+ xy: 522, 446
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+5900
+ rotate: false
+ xy: 684, 480
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6016
+ rotate: false
+ xy: 684, 446
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6020
+ rotate: false
+ xy: 522, 412
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6024
+ rotate: false
+ xy: 522, 378
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6028
+ rotate: false
+ xy: 684, 412
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6035
+ rotate: false
+ xy: 684, 378
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6039
+ rotate: false
+ xy: 522, 344
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6043
+ rotate: false
+ xy: 522, 310
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6047
+ rotate: false
+ xy: 684, 344
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6080
+ rotate: false
+ xy: 684, 310
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6084
+ rotate: false
+ xy: 522, 276
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6088
+ rotate: false
+ xy: 684, 276
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6092
+ rotate: false
+ xy: 494, 242
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6099
+ rotate: false
+ xy: 656, 242
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6103
+ rotate: false
+ xy: 494, 208
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6107
+ rotate: false
+ xy: 656, 208
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6111
+ rotate: false
+ xy: 493, 174
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6144
+ rotate: false
+ xy: 655, 174
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6148
+ rotate: false
+ xy: 493, 140
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6152
+ rotate: false
+ xy: 655, 140
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6156
+ rotate: false
+ xy: 501, 106
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6163
+ rotate: false
+ xy: 663, 106
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6167
+ rotate: false
+ xy: 501, 72
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6171
+ rotate: false
+ xy: 663, 72
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6175
+ rotate: false
+ xy: 501, 38
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6208
+ rotate: false
+ xy: 501, 4
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6212
+ rotate: false
+ xy: 663, 38
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6216
+ rotate: false
+ xy: 663, 4
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6220
+ rotate: false
+ xy: 846, 271
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6227
+ rotate: false
+ xy: 818, 237
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6231
+ rotate: false
+ xy: 818, 203
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6235
+ rotate: false
+ xy: 817, 169
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6239
+ rotate: false
+ xy: 825, 135
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6272
+ rotate: false
+ xy: 825, 101
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+650
+ rotate: false
+ xy: 138, 2
+ size: 64, 96
+ orig: 64, 96
+ offset: 0, 0
+ index: -1
+6793
+ rotate: false
+ xy: 910, 944
+ size: 100, 78
+ orig: 100, 78
+ offset: 0, 0
+ index: -1
+6796
+ rotate: false
+ xy: 880, 698
+ size: 100, 78
+ orig: 100, 78
+ offset: 0, 0
+ index: -1
+6801
+ rotate: false
+ xy: 880, 618
+ size: 100, 78
+ orig: 100, 78
+ offset: 0, 0
+ index: -1
+6804
+ rotate: false
+ xy: 880, 538
+ size: 100, 78
+ orig: 100, 78
+ offset: 0, 0
+ index: -1
+6809
+ rotate: false
+ xy: 880, 458
+ size: 100, 78
+ orig: 100, 78
+ offset: 0, 0
+ index: -1
+736
+ rotate: false
+ xy: 204, 2
+ size: 64, 96
+ orig: 64, 96
+ offset: 0, 0
+ index: -1
+877
+ rotate: false
+ xy: 2, 958
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+878
+ rotate: false
+ xy: 2, 892
+ size: 128, 64
+ orig: 128, 64
+ offset: 0, 0
+ index: -1
+9445
+ rotate: false
+ xy: 880, 305
+ size: 100, 70
+ orig: 100, 70
+ offset: 0, 0
+ index: -1
+9558
+ rotate: false
+ xy: 392, 213
+ size: 100, 81
+ orig: 100, 81
+ offset: 0, 0
+ index: -1
+
+images66.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+1021
+ rotate: false
+ xy: 974, 2
+ size: 34, 28
+ orig: 34, 28
+ offset: 0, 0
+ index: -1
+12208
+ rotate: false
+ xy: 974, 956
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12215
+ rotate: false
+ xy: 974, 890
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12220
+ rotate: false
+ xy: 974, 824
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12227
+ rotate: false
+ xy: 974, 758
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12228
+ rotate: false
+ xy: 974, 692
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12235
+ rotate: false
+ xy: 974, 626
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12236
+ rotate: false
+ xy: 974, 560
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12243
+ rotate: false
+ xy: 974, 494
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12244
+ rotate: false
+ xy: 974, 428
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12251
+ rotate: false
+ xy: 974, 362
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12256
+ rotate: false
+ xy: 974, 296
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12263
+ rotate: false
+ xy: 974, 230
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12264
+ rotate: false
+ xy: 974, 164
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12271
+ rotate: false
+ xy: 974, 98
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12272
+ rotate: false
+ xy: 974, 32
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+6276
+ rotate: false
+ xy: 2, 988
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6280
+ rotate: false
+ xy: 2, 954
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6284
+ rotate: false
+ xy: 164, 988
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6291
+ rotate: false
+ xy: 2, 920
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6295
+ rotate: false
+ xy: 164, 954
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6299
+ rotate: false
+ xy: 326, 988
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6303
+ rotate: false
+ xy: 2, 886
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6320
+ rotate: false
+ xy: 164, 920
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6323
+ rotate: false
+ xy: 326, 954
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6324
+ rotate: false
+ xy: 488, 988
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6327
+ rotate: false
+ xy: 2, 852
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6328
+ rotate: false
+ xy: 164, 886
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6331
+ rotate: false
+ xy: 326, 920
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6332
+ rotate: false
+ xy: 488, 954
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6335
+ rotate: false
+ xy: 650, 988
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6368
+ rotate: false
+ xy: 2, 818
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6371
+ rotate: false
+ xy: 164, 852
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6372
+ rotate: false
+ xy: 326, 886
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6375
+ rotate: false
+ xy: 488, 920
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6376
+ rotate: false
+ xy: 650, 954
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6379
+ rotate: false
+ xy: 812, 988
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6380
+ rotate: false
+ xy: 2, 784
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6383
+ rotate: false
+ xy: 164, 818
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6416
+ rotate: false
+ xy: 326, 852
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6420
+ rotate: false
+ xy: 488, 886
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6424
+ rotate: false
+ xy: 650, 920
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6428
+ rotate: false
+ xy: 812, 954
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6435
+ rotate: false
+ xy: 2, 750
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6439
+ rotate: false
+ xy: 164, 784
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6443
+ rotate: false
+ xy: 326, 818
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6447
+ rotate: false
+ xy: 488, 852
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6480
+ rotate: false
+ xy: 650, 886
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6484
+ rotate: false
+ xy: 812, 920
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6488
+ rotate: false
+ xy: 2, 716
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6492
+ rotate: false
+ xy: 164, 750
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6499
+ rotate: false
+ xy: 326, 784
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6503
+ rotate: false
+ xy: 488, 818
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6507
+ rotate: false
+ xy: 650, 852
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6511
+ rotate: false
+ xy: 812, 886
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6613
+ rotate: false
+ xy: 2, 682
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6617
+ rotate: false
+ xy: 164, 716
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6621
+ rotate: false
+ xy: 326, 750
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6625
+ rotate: false
+ xy: 488, 784
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6632
+ rotate: false
+ xy: 650, 818
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6636
+ rotate: false
+ xy: 812, 852
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6640
+ rotate: false
+ xy: 2, 648
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6644
+ rotate: false
+ xy: 164, 682
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6677
+ rotate: false
+ xy: 326, 716
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6708
+ rotate: false
+ xy: 326, 716
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8184
+ rotate: false
+ xy: 326, 716
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6681
+ rotate: false
+ xy: 488, 750
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6685
+ rotate: false
+ xy: 650, 784
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6689
+ rotate: false
+ xy: 812, 818
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6696
+ rotate: false
+ xy: 2, 614
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6700
+ rotate: false
+ xy: 164, 648
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+6704
+ rotate: false
+ xy: 326, 682
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7110
+ rotate: false
+ xy: 488, 716
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7113
+ rotate: false
+ xy: 650, 750
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7116
+ rotate: false
+ xy: 812, 784
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7133
+ rotate: false
+ xy: 2, 580
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7134
+ rotate: false
+ xy: 164, 614
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7137
+ rotate: false
+ xy: 326, 648
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7149
+ rotate: false
+ xy: 488, 682
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7156
+ rotate: false
+ xy: 650, 716
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7380
+ rotate: false
+ xy: 812, 750
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7384
+ rotate: false
+ xy: 2, 546
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7388
+ rotate: false
+ xy: 164, 580
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7392
+ rotate: false
+ xy: 326, 614
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7399
+ rotate: false
+ xy: 488, 648
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7403
+ rotate: false
+ xy: 650, 682
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7407
+ rotate: false
+ xy: 812, 716
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7411
+ rotate: false
+ xy: 2, 512
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7444
+ rotate: false
+ xy: 164, 546
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7448
+ rotate: false
+ xy: 326, 580
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7452
+ rotate: false
+ xy: 488, 614
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7456
+ rotate: false
+ xy: 650, 648
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7463
+ rotate: false
+ xy: 812, 682
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7467
+ rotate: false
+ xy: 2, 478
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7471
+ rotate: false
+ xy: 164, 512
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7475
+ rotate: false
+ xy: 326, 546
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7524
+ rotate: false
+ xy: 488, 580
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7528
+ rotate: false
+ xy: 650, 614
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7532
+ rotate: false
+ xy: 812, 648
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7536
+ rotate: false
+ xy: 2, 444
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7543
+ rotate: false
+ xy: 164, 478
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7547
+ rotate: false
+ xy: 326, 512
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7551
+ rotate: false
+ xy: 488, 546
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7555
+ rotate: false
+ xy: 650, 580
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7588
+ rotate: false
+ xy: 812, 614
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7592
+ rotate: false
+ xy: 2, 410
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7596
+ rotate: false
+ xy: 164, 444
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7600
+ rotate: false
+ xy: 326, 478
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7607
+ rotate: false
+ xy: 488, 512
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7611
+ rotate: false
+ xy: 650, 546
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7615
+ rotate: false
+ xy: 812, 580
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7619
+ rotate: false
+ xy: 2, 376
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7652
+ rotate: false
+ xy: 164, 410
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7656
+ rotate: false
+ xy: 326, 444
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7660
+ rotate: false
+ xy: 488, 478
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7664
+ rotate: false
+ xy: 650, 512
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7671
+ rotate: false
+ xy: 812, 546
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7675
+ rotate: false
+ xy: 2, 342
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7679
+ rotate: false
+ xy: 164, 376
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7683
+ rotate: false
+ xy: 326, 410
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7752
+ rotate: false
+ xy: 488, 444
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7756
+ rotate: false
+ xy: 650, 478
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7760
+ rotate: false
+ xy: 812, 512
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7764
+ rotate: false
+ xy: 2, 308
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7771
+ rotate: false
+ xy: 164, 342
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7775
+ rotate: false
+ xy: 326, 376
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7779
+ rotate: false
+ xy: 488, 410
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7783
+ rotate: false
+ xy: 650, 444
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7816
+ rotate: false
+ xy: 812, 478
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7820
+ rotate: false
+ xy: 2, 274
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7824
+ rotate: false
+ xy: 164, 308
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7828
+ rotate: false
+ xy: 326, 342
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7835
+ rotate: false
+ xy: 488, 376
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7839
+ rotate: false
+ xy: 650, 410
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7843
+ rotate: false
+ xy: 812, 444
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7847
+ rotate: false
+ xy: 2, 240
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7880
+ rotate: false
+ xy: 164, 274
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7884
+ rotate: false
+ xy: 326, 308
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7888
+ rotate: false
+ xy: 488, 342
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7892
+ rotate: false
+ xy: 650, 376
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7899
+ rotate: false
+ xy: 812, 410
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7903
+ rotate: false
+ xy: 2, 206
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7907
+ rotate: false
+ xy: 164, 240
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7911
+ rotate: false
+ xy: 326, 274
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7944
+ rotate: false
+ xy: 488, 308
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7948
+ rotate: false
+ xy: 650, 342
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7952
+ rotate: false
+ xy: 812, 376
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7956
+ rotate: false
+ xy: 2, 172
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7976
+ rotate: false
+ xy: 164, 206
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7980
+ rotate: false
+ xy: 326, 240
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7984
+ rotate: false
+ xy: 488, 274
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7988
+ rotate: false
+ xy: 650, 308
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7995
+ rotate: false
+ xy: 812, 342
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+7999
+ rotate: false
+ xy: 2, 138
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8003
+ rotate: false
+ xy: 164, 172
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8007
+ rotate: false
+ xy: 326, 206
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8040
+ rotate: false
+ xy: 488, 240
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8044
+ rotate: false
+ xy: 650, 274
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8048
+ rotate: false
+ xy: 812, 308
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8052
+ rotate: false
+ xy: 2, 104
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8059
+ rotate: false
+ xy: 164, 138
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8063
+ rotate: false
+ xy: 326, 172
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8067
+ rotate: false
+ xy: 488, 206
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8071
+ rotate: false
+ xy: 650, 240
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8104
+ rotate: false
+ xy: 812, 274
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8108
+ rotate: false
+ xy: 2, 70
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8112
+ rotate: false
+ xy: 164, 104
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8116
+ rotate: false
+ xy: 326, 138
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8123
+ rotate: false
+ xy: 488, 172
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8127
+ rotate: false
+ xy: 650, 206
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8131
+ rotate: false
+ xy: 812, 240
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8172
+ rotate: false
+ xy: 2, 36
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8176
+ rotate: false
+ xy: 164, 70
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8180
+ rotate: false
+ xy: 326, 104
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8694
+ rotate: false
+ xy: 488, 138
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8696
+ rotate: false
+ xy: 650, 172
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8715
+ rotate: false
+ xy: 812, 206
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8717
+ rotate: false
+ xy: 2, 2
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8734
+ rotate: false
+ xy: 164, 36
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8736
+ rotate: false
+ xy: 326, 70
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8755
+ rotate: false
+ xy: 488, 104
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8757
+ rotate: false
+ xy: 650, 138
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8774
+ rotate: false
+ xy: 812, 172
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8776
+ rotate: false
+ xy: 164, 2
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8795
+ rotate: false
+ xy: 326, 36
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8797
+ rotate: false
+ xy: 488, 70
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8814
+ rotate: false
+ xy: 650, 104
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8816
+ rotate: false
+ xy: 812, 138
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8835
+ rotate: false
+ xy: 326, 2
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8837
+ rotate: false
+ xy: 488, 36
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8854
+ rotate: false
+ xy: 650, 70
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8856
+ rotate: false
+ xy: 812, 104
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8875
+ rotate: false
+ xy: 488, 2
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8877
+ rotate: false
+ xy: 650, 36
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8894
+ rotate: false
+ xy: 812, 70
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8896
+ rotate: false
+ xy: 650, 2
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8915
+ rotate: false
+ xy: 812, 36
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8917
+ rotate: false
+ xy: 812, 2
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+
+images67.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+1
+ rotate: false
+ xy: 328, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+10364
+ rotate: false
+ xy: 167, 2
+ size: 96, 66
+ orig: 96, 66
+ offset: 0, 0
+ index: -1
+10367
+ rotate: false
+ xy: 265, 2
+ size: 96, 66
+ orig: 96, 66
+ offset: 0, 0
+ index: -1
+10368
+ rotate: false
+ xy: 363, 2
+ size: 96, 66
+ orig: 96, 66
+ offset: 0, 0
+ index: -1
+10371
+ rotate: false
+ xy: 461, 2
+ size: 96, 66
+ orig: 96, 66
+ offset: 0, 0
+ index: -1
+10376
+ rotate: false
+ xy: 695, 137
+ size: 66, 94
+ orig: 66, 94
+ offset: 0, 0
+ index: -1
+10411
+ rotate: false
+ xy: 594, 275
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+10424
+ rotate: false
+ xy: 594, 206
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+10427
+ rotate: false
+ xy: 596, 137
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+10428
+ rotate: false
+ xy: 925, 374
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+10431
+ rotate: false
+ xy: 925, 305
+ size: 97, 67
+ orig: 97, 67
+ offset: 0, 0
+ index: -1
+10432
+ rotate: false
+ xy: 2, 2
+ size: 65, 97
+ orig: 65, 97
+ offset: 0, 0
+ index: -1
+12145
+ rotate: false
+ xy: 394, 187
+ size: 98, 75
+ orig: 98, 75
+ offset: 0, 0
+ index: -1
+12154
+ rotate: false
+ xy: 394, 110
+ size: 98, 75
+ orig: 98, 75
+ offset: 0, 0
+ index: -1
+12179
+ rotate: false
+ xy: 800, 230
+ size: 64, 75
+ orig: 64, 75
+ offset: 0, 0
+ index: -1
+12279
+ rotate: false
+ xy: 974, 958
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12280
+ rotate: false
+ xy: 974, 892
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12287
+ rotate: false
+ xy: 974, 826
+ size: 48, 64
+ orig: 48, 64
+ offset: 0, 0
+ index: -1
+12732
+ rotate: false
+ xy: 559, 2
+ size: 65, 66
+ orig: 65, 66
+ offset: 0, 0
+ index: -1
+12733
+ rotate: false
+ xy: 626, 2
+ size: 65, 66
+ orig: 65, 66
+ offset: 0, 0
+ index: -1
+12737
+ rotate: false
+ xy: 693, 2
+ size: 65, 66
+ orig: 65, 66
+ offset: 0, 0
+ index: -1
+12738
+ rotate: false
+ xy: 760, 2
+ size: 65, 66
+ orig: 65, 66
+ offset: 0, 0
+ index: -1
+12946
+ rotate: false
+ xy: 862, 307
+ size: 57, 99
+ orig: 57, 99
+ offset: 0, 0
+ index: -1
+12947
+ rotate: false
+ xy: 866, 106
+ size: 57, 99
+ orig: 57, 99
+ offset: 0, 0
+ index: -1
+1335
+ rotate: false
+ xy: 424, 344
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1339
+ rotate: false
+ xy: 618, 412
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1343
+ rotate: false
+ xy: 586, 378
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1347
+ rotate: false
+ xy: 554, 344
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13499
+ rotate: false
+ xy: 164, 684
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+13502
+ rotate: false
+ xy: 326, 718
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+13503
+ rotate: false
+ xy: 488, 752
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+13506
+ rotate: false
+ xy: 650, 786
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+13507
+ rotate: false
+ xy: 812, 820
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+13510
+ rotate: false
+ xy: 2, 616
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+13511
+ rotate: false
+ xy: 164, 650
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+13514
+ rotate: false
+ xy: 326, 684
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1380
+ rotate: false
+ xy: 198, 70
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1384
+ rotate: false
+ xy: 780, 442
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1388
+ rotate: false
+ xy: 748, 408
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13919
+ rotate: false
+ xy: 394, 70
+ size: 74, 38
+ orig: 74, 38
+ offset: 0, 0
+ index: -1
+1392
+ rotate: false
+ xy: 716, 374
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+17711
+ rotate: false
+ xy: 69, 21
+ size: 96, 78
+ orig: 96, 78
+ offset: 0, 0
+ index: -1
+17714
+ rotate: false
+ xy: 198, 264
+ size: 96, 78
+ orig: 96, 78
+ offset: 0, 0
+ index: -1
+17715
+ rotate: false
+ xy: 198, 184
+ size: 96, 78
+ orig: 96, 78
+ offset: 0, 0
+ index: -1
+17718
+ rotate: false
+ xy: 198, 104
+ size: 96, 78
+ orig: 96, 78
+ offset: 0, 0
+ index: -1
+17731
+ rotate: false
+ xy: 296, 264
+ size: 96, 78
+ orig: 96, 78
+ offset: 0, 0
+ index: -1
+17734
+ rotate: false
+ xy: 296, 184
+ size: 96, 78
+ orig: 96, 78
+ offset: 0, 0
+ index: -1
+17735
+ rotate: false
+ xy: 296, 104
+ size: 96, 78
+ orig: 96, 78
+ offset: 0, 0
+ index: -1
+17738
+ rotate: false
+ xy: 394, 264
+ size: 96, 78
+ orig: 96, 78
+ offset: 0, 0
+ index: -1
+17778
+ rotate: false
+ xy: 494, 196
+ size: 96, 74
+ orig: 96, 74
+ offset: 0, 0
+ index: -1
+17795
+ rotate: false
+ xy: 2, 263
+ size: 96, 79
+ orig: 96, 79
+ offset: 0, 0
+ index: -1
+17798
+ rotate: false
+ xy: 2, 182
+ size: 96, 79
+ orig: 96, 79
+ offset: 0, 0
+ index: -1
+17811
+ rotate: false
+ xy: 2, 101
+ size: 96, 79
+ orig: 96, 79
+ offset: 0, 0
+ index: -1
+17814
+ rotate: false
+ xy: 100, 263
+ size: 96, 79
+ orig: 96, 79
+ offset: 0, 0
+ index: -1
+17815
+ rotate: false
+ xy: 100, 182
+ size: 96, 79
+ orig: 96, 79
+ offset: 0, 0
+ index: -1
+17818
+ rotate: false
+ xy: 100, 101
+ size: 96, 79
+ orig: 96, 79
+ offset: 0, 0
+ index: -1
+18430
+ rotate: false
+ xy: 488, 718
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+18434
+ rotate: false
+ xy: 650, 752
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+18438
+ rotate: false
+ xy: 812, 786
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+18442
+ rotate: false
+ xy: 2, 582
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+18449
+ rotate: false
+ xy: 164, 616
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+18453
+ rotate: false
+ xy: 326, 650
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+18457
+ rotate: false
+ xy: 488, 684
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+18461
+ rotate: false
+ xy: 650, 718
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+18926
+ rotate: false
+ xy: 812, 752
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+18929
+ rotate: false
+ xy: 2, 548
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+18930
+ rotate: false
+ xy: 164, 582
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+18933
+ rotate: false
+ xy: 326, 616
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+18934
+ rotate: false
+ xy: 488, 650
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+18937
+ rotate: false
+ xy: 650, 684
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+18938
+ rotate: false
+ xy: 812, 718
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+18941
+ rotate: false
+ xy: 2, 514
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+1902
+ rotate: false
+ xy: 974, 643
+ size: 48, 51
+ orig: 48, 51
+ offset: 0, 0
+ index: -1
+1956
+ rotate: false
+ xy: 784, 94
+ size: 80, 67
+ orig: 80, 67
+ offset: 0, 0
+ index: -1
+1962
+ rotate: false
+ xy: 827, 8
+ size: 80, 67
+ orig: 80, 67
+ offset: 0, 0
+ index: -1
+20206
+ rotate: false
+ xy: 974, 696
+ size: 32, 128
+ orig: 32, 128
+ offset: 0, 0
+ index: -1
+22099
+ rotate: false
+ xy: 164, 548
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22100
+ rotate: false
+ xy: 326, 582
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22108
+ rotate: false
+ xy: 488, 616
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22109
+ rotate: false
+ xy: 650, 650
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22117
+ rotate: false
+ xy: 812, 684
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22118
+ rotate: false
+ xy: 2, 480
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22126
+ rotate: false
+ xy: 164, 514
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22127
+ rotate: false
+ xy: 326, 548
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22135
+ rotate: false
+ xy: 488, 582
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22136
+ rotate: false
+ xy: 650, 616
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22144
+ rotate: false
+ xy: 812, 650
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22145
+ rotate: false
+ xy: 2, 446
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22153
+ rotate: false
+ xy: 164, 480
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22154
+ rotate: false
+ xy: 326, 514
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22162
+ rotate: false
+ xy: 488, 548
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22163
+ rotate: false
+ xy: 650, 582
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22171
+ rotate: false
+ xy: 812, 616
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22172
+ rotate: false
+ xy: 2, 412
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22180
+ rotate: false
+ xy: 164, 446
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22181
+ rotate: false
+ xy: 326, 480
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22189
+ rotate: false
+ xy: 488, 514
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22190
+ rotate: false
+ xy: 650, 548
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22198
+ rotate: false
+ xy: 812, 582
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22199
+ rotate: false
+ xy: 2, 378
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22207
+ rotate: false
+ xy: 164, 412
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22208
+ rotate: false
+ xy: 326, 446
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22479
+ rotate: false
+ xy: 488, 480
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22484
+ rotate: false
+ xy: 650, 514
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22489
+ rotate: false
+ xy: 812, 548
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22494
+ rotate: false
+ xy: 2, 344
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22495
+ rotate: false
+ xy: 164, 378
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22500
+ rotate: false
+ xy: 326, 412
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22505
+ rotate: false
+ xy: 488, 446
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+22510
+ rotate: false
+ xy: 650, 480
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+23742
+ rotate: false
+ xy: 69, 4
+ size: 76, 15
+ orig: 76, 15
+ offset: 0, 0
+ index: -1
+23804
+ rotate: false
+ xy: 784, 77
+ size: 76, 15
+ orig: 76, 15
+ offset: 0, 0
+ index: -1
+23841
+ rotate: false
+ xy: 862, 77
+ size: 44, 15
+ orig: 44, 15
+ offset: 0, 0
+ index: -1
+2424
+ rotate: false
+ xy: 973, 493
+ size: 49, 48
+ orig: 49, 48
+ offset: 0, 0
+ index: -1
+2427
+ rotate: false
+ xy: 973, 443
+ size: 49, 48
+ orig: 49, 48
+ offset: 0, 0
+ index: -1
+338
+ rotate: false
+ xy: 925, 205
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+357
+ rotate: false
+ xy: 925, 105
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+364
+ rotate: false
+ xy: 164, 344
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+368
+ rotate: false
+ xy: 326, 378
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+375
+ rotate: false
+ xy: 294, 344
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+379
+ rotate: false
+ xy: 488, 412
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+383
+ rotate: false
+ xy: 650, 446
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+387
+ rotate: false
+ xy: 456, 378
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+4
+ rotate: false
+ xy: 878, 408
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+40
+ rotate: false
+ xy: 693, 270
+ size: 105, 35
+ orig: 105, 35
+ offset: 0, 0
+ index: -1
+4345
+ rotate: false
+ xy: 974, 593
+ size: 48, 48
+ orig: 48, 48
+ offset: 0, 0
+ index: -1
+4350
+ rotate: false
+ xy: 974, 543
+ size: 48, 48
+ orig: 48, 48
+ offset: 0, 0
+ index: -1
+46
+ rotate: false
+ xy: 693, 233
+ size: 105, 35
+ orig: 105, 35
+ offset: 0, 0
+ index: -1
+651
+ rotate: false
+ xy: 925, 239
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+652
+ rotate: false
+ xy: 925, 139
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+6855
+ rotate: false
+ xy: 914, 448
+ size: 57, 98
+ orig: 57, 98
+ offset: 0, 0
+ index: -1
+6857
+ rotate: false
+ xy: 866, 207
+ size: 57, 98
+ orig: 57, 98
+ offset: 0, 0
+ index: -1
+6932
+ rotate: false
+ xy: 494, 70
+ size: 75, 52
+ orig: 75, 52
+ offset: 0, 0
+ index: -1
+6933
+ rotate: false
+ xy: 571, 70
+ size: 75, 52
+ orig: 75, 52
+ offset: 0, 0
+ index: -1
+8934
+ rotate: false
+ xy: 2, 990
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8936
+ rotate: false
+ xy: 2, 956
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8955
+ rotate: false
+ xy: 164, 990
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8957
+ rotate: false
+ xy: 2, 922
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8974
+ rotate: false
+ xy: 164, 956
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8976
+ rotate: false
+ xy: 326, 990
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8995
+ rotate: false
+ xy: 2, 888
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+8997
+ rotate: false
+ xy: 164, 922
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9014
+ rotate: false
+ xy: 326, 956
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9016
+ rotate: false
+ xy: 488, 990
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9035
+ rotate: false
+ xy: 2, 854
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9037
+ rotate: false
+ xy: 164, 888
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9054
+ rotate: false
+ xy: 326, 922
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9056
+ rotate: false
+ xy: 488, 956
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9075
+ rotate: false
+ xy: 650, 990
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9077
+ rotate: false
+ xy: 2, 820
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9097
+ rotate: false
+ xy: 164, 854
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9100
+ rotate: false
+ xy: 326, 888
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9103
+ rotate: false
+ xy: 488, 922
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9124
+ rotate: false
+ xy: 650, 956
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9127
+ rotate: false
+ xy: 812, 990
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9130
+ rotate: false
+ xy: 2, 786
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9236
+ rotate: false
+ xy: 164, 820
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9240
+ rotate: false
+ xy: 326, 854
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9244
+ rotate: false
+ xy: 488, 888
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9248
+ rotate: false
+ xy: 650, 922
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9255
+ rotate: false
+ xy: 812, 956
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9259
+ rotate: false
+ xy: 2, 752
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9263
+ rotate: false
+ xy: 164, 786
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9267
+ rotate: false
+ xy: 326, 820
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9300
+ rotate: false
+ xy: 488, 854
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9304
+ rotate: false
+ xy: 650, 888
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9308
+ rotate: false
+ xy: 812, 922
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9312
+ rotate: false
+ xy: 2, 718
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9319
+ rotate: false
+ xy: 164, 752
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9323
+ rotate: false
+ xy: 326, 786
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9327
+ rotate: false
+ xy: 488, 820
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9331
+ rotate: false
+ xy: 650, 854
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9364
+ rotate: false
+ xy: 812, 888
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9368
+ rotate: false
+ xy: 2, 684
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9372
+ rotate: false
+ xy: 164, 718
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9376
+ rotate: false
+ xy: 326, 752
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9383
+ rotate: false
+ xy: 488, 786
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9387
+ rotate: false
+ xy: 650, 820
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9391
+ rotate: false
+ xy: 812, 854
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9395
+ rotate: false
+ xy: 2, 650
+ size: 160, 32
+ orig: 160, 32
+ offset: 0, 0
+ index: -1
+9449
+ rotate: false
+ xy: 812, 476
+ size: 100, 70
+ orig: 100, 70
+ offset: 0, 0
+ index: -1
+9453
+ rotate: false
+ xy: 492, 272
+ size: 100, 70
+ orig: 100, 70
+ offset: 0, 0
+ index: -1
+9457
+ rotate: false
+ xy: 494, 124
+ size: 100, 70
+ orig: 100, 70
+ offset: 0, 0
+ index: -1
+9802
+ rotate: false
+ xy: 794, 307
+ size: 66, 65
+ orig: 66, 65
+ offset: 0, 0
+ index: -1
+9806
+ rotate: false
+ xy: 648, 70
+ size: 66, 65
+ orig: 66, 65
+ offset: 0, 0
+ index: -1
+9809
+ rotate: false
+ xy: 716, 70
+ size: 66, 65
+ orig: 66, 65
+ offset: 0, 0
+ index: -1
+9812
+ rotate: false
+ xy: 693, 307
+ size: 99, 65
+ orig: 99, 65
+ offset: 0, 0
+ index: -1
+9816
+ rotate: false
+ xy: 763, 163
+ size: 99, 65
+ orig: 99, 65
+ offset: 0, 0
+ index: -1
+9818
+ rotate: false
+ xy: 909, 38
+ size: 99, 65
+ orig: 99, 65
+ offset: 0, 0
+ index: -1
+9833
+ rotate: false
+ xy: 909, 3
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+
+images68.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+12185
+ rotate: false
+ xy: 114, 692
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12190
+ rotate: false
+ xy: 114, 626
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12193
+ rotate: false
+ xy: 114, 560
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12198
+ rotate: false
+ xy: 114, 494
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12201
+ rotate: false
+ xy: 114, 428
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12206
+ rotate: false
+ xy: 100, 328
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12209
+ rotate: false
+ xy: 100, 262
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12214
+ rotate: false
+ xy: 100, 196
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12221
+ rotate: false
+ xy: 100, 130
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12226
+ rotate: false
+ xy: 100, 64
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12229
+ rotate: false
+ xy: 212, 724
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12234
+ rotate: false
+ xy: 212, 658
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12237
+ rotate: false
+ xy: 212, 592
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12242
+ rotate: false
+ xy: 212, 526
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12245
+ rotate: false
+ xy: 212, 460
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12250
+ rotate: false
+ xy: 212, 394
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12257
+ rotate: false
+ xy: 198, 328
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12262
+ rotate: false
+ xy: 198, 262
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12265
+ rotate: false
+ xy: 198, 196
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12270
+ rotate: false
+ xy: 198, 130
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12273
+ rotate: false
+ xy: 198, 64
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12952
+ rotate: false
+ xy: 960, 685
+ size: 57, 99
+ orig: 57, 99
+ offset: 0, 0
+ index: -1
+12953
+ rotate: false
+ xy: 960, 584
+ size: 57, 99
+ orig: 57, 99
+ offset: 0, 0
+ index: -1
+12958
+ rotate: false
+ xy: 960, 483
+ size: 57, 99
+ orig: 57, 99
+ offset: 0, 0
+ index: -1
+1399
+ rotate: false
+ xy: 350, 990
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1403
+ rotate: false
+ xy: 480, 990
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1407
+ rotate: false
+ xy: 610, 990
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1411
+ rotate: false
+ xy: 740, 990
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1444
+ rotate: false
+ xy: 870, 990
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1448
+ rotate: false
+ xy: 350, 956
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1452
+ rotate: false
+ xy: 480, 956
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1456
+ rotate: false
+ xy: 610, 956
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+17589
+ rotate: false
+ xy: 234, 919
+ size: 105, 53
+ orig: 105, 53
+ offset: 0, 0
+ index: -1
+17594
+ rotate: false
+ xy: 216, 864
+ size: 105, 53
+ orig: 105, 53
+ offset: 0, 0
+ index: -1
+1816
+ rotate: false
+ xy: 740, 956
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18160
+ rotate: false
+ xy: 960, 382
+ size: 57, 99
+ orig: 57, 99
+ offset: 0, 0
+ index: -1
+1820
+ rotate: false
+ xy: 870, 956
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1824
+ rotate: false
+ xy: 341, 922
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1828
+ rotate: false
+ xy: 471, 922
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1861
+ rotate: false
+ xy: 601, 922
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1865
+ rotate: false
+ xy: 731, 922
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1869
+ rotate: false
+ xy: 861, 922
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1873
+ rotate: false
+ xy: 341, 888
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18813
+ rotate: false
+ xy: 100, 2
+ size: 79, 60
+ orig: 79, 60
+ offset: 0, 0
+ index: -1
+18817
+ rotate: false
+ xy: 181, 2
+ size: 79, 60
+ orig: 79, 60
+ offset: 0, 0
+ index: -1
+19636
+ rotate: false
+ xy: 262, 2
+ size: 75, 60
+ orig: 75, 60
+ offset: 0, 0
+ index: -1
+21897
+ rotate: false
+ xy: 216, 827
+ size: 105, 35
+ orig: 105, 35
+ offset: 0, 0
+ index: -1
+21898
+ rotate: false
+ xy: 216, 790
+ size: 105, 35
+ orig: 105, 35
+ offset: 0, 0
+ index: -1
+23720
+ rotate: false
+ xy: 947, 21
+ size: 75, 65
+ orig: 75, 65
+ offset: 0, 0
+ index: -1
+23792
+ rotate: false
+ xy: 947, 4
+ size: 74, 15
+ orig: 74, 15
+ offset: 0, 0
+ index: -1
+2432
+ rotate: false
+ xy: 973, 838
+ size: 49, 48
+ orig: 49, 48
+ offset: 0, 0
+ index: -1
+2435
+ rotate: false
+ xy: 973, 788
+ size: 49, 48
+ orig: 49, 48
+ offset: 0, 0
+ index: -1
+361
+ rotate: false
+ xy: 118, 824
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+365
+ rotate: false
+ xy: 114, 394
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+432
+ rotate: false
+ xy: 991, 896
+ size: 31, 58
+ orig: 31, 58
+ offset: 0, 0
+ index: -1
+4799
+ rotate: false
+ xy: 2, 772
+ size: 110, 50
+ orig: 110, 50
+ offset: 0, 0
+ index: -1
+4804
+ rotate: false
+ xy: 2, 720
+ size: 110, 50
+ orig: 110, 50
+ offset: 0, 0
+ index: -1
+4807
+ rotate: false
+ xy: 2, 668
+ size: 110, 50
+ orig: 110, 50
+ offset: 0, 0
+ index: -1
+4812
+ rotate: false
+ xy: 2, 616
+ size: 110, 50
+ orig: 110, 50
+ offset: 0, 0
+ index: -1
+4815
+ rotate: false
+ xy: 2, 564
+ size: 110, 50
+ orig: 110, 50
+ offset: 0, 0
+ index: -1
+4820
+ rotate: false
+ xy: 2, 512
+ size: 110, 50
+ orig: 110, 50
+ offset: 0, 0
+ index: -1
+4823
+ rotate: false
+ xy: 2, 460
+ size: 110, 50
+ orig: 110, 50
+ offset: 0, 0
+ index: -1
+4828
+ rotate: false
+ xy: 2, 408
+ size: 110, 50
+ orig: 110, 50
+ offset: 0, 0
+ index: -1
+5446
+ rotate: false
+ xy: 1000, 972
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5592
+ rotate: false
+ xy: 2, 342
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+5593
+ rotate: false
+ xy: 2, 276
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+5599
+ rotate: false
+ xy: 2, 210
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+5600
+ rotate: false
+ xy: 2, 144
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+5604
+ rotate: false
+ xy: 471, 888
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5608
+ rotate: false
+ xy: 601, 888
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5612
+ rotate: false
+ xy: 731, 888
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5616
+ rotate: false
+ xy: 861, 888
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5633
+ rotate: false
+ xy: 323, 854
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5637
+ rotate: false
+ xy: 453, 854
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5641
+ rotate: false
+ xy: 583, 854
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5645
+ rotate: false
+ xy: 713, 854
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5652
+ rotate: false
+ xy: 843, 854
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5656
+ rotate: false
+ xy: 323, 820
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5660
+ rotate: false
+ xy: 453, 820
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5664
+ rotate: false
+ xy: 583, 820
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5684
+ rotate: false
+ xy: 713, 820
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5688
+ rotate: false
+ xy: 843, 820
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5692
+ rotate: false
+ xy: 323, 786
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5696
+ rotate: false
+ xy: 453, 786
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5713
+ rotate: false
+ xy: 583, 786
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5717
+ rotate: false
+ xy: 713, 786
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5721
+ rotate: false
+ xy: 843, 786
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5725
+ rotate: false
+ xy: 310, 752
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5776
+ rotate: false
+ xy: 310, 718
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5780
+ rotate: false
+ xy: 440, 752
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5784
+ rotate: false
+ xy: 310, 684
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5788
+ rotate: false
+ xy: 440, 718
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5805
+ rotate: false
+ xy: 570, 752
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5809
+ rotate: false
+ xy: 310, 650
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5813
+ rotate: false
+ xy: 440, 684
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5817
+ rotate: false
+ xy: 570, 718
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5824
+ rotate: false
+ xy: 700, 752
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5828
+ rotate: false
+ xy: 310, 616
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5832
+ rotate: false
+ xy: 440, 650
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5836
+ rotate: false
+ xy: 570, 684
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5856
+ rotate: false
+ xy: 700, 718
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5860
+ rotate: false
+ xy: 830, 752
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5864
+ rotate: false
+ xy: 310, 582
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5868
+ rotate: false
+ xy: 440, 616
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5901
+ rotate: false
+ xy: 570, 650
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5905
+ rotate: false
+ xy: 700, 684
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5909
+ rotate: false
+ xy: 830, 718
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+5913
+ rotate: false
+ xy: 310, 548
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6003
+ rotate: false
+ xy: 440, 582
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6007
+ rotate: false
+ xy: 570, 616
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6011
+ rotate: false
+ xy: 700, 650
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6015
+ rotate: false
+ xy: 830, 684
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6048
+ rotate: false
+ xy: 310, 514
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6052
+ rotate: false
+ xy: 440, 548
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6056
+ rotate: false
+ xy: 570, 582
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6060
+ rotate: false
+ xy: 700, 616
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6067
+ rotate: false
+ xy: 830, 650
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6071
+ rotate: false
+ xy: 310, 480
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6075
+ rotate: false
+ xy: 440, 514
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6079
+ rotate: false
+ xy: 570, 548
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6112
+ rotate: false
+ xy: 700, 582
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6116
+ rotate: false
+ xy: 830, 616
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6120
+ rotate: false
+ xy: 310, 446
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6124
+ rotate: false
+ xy: 440, 480
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6131
+ rotate: false
+ xy: 570, 514
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6135
+ rotate: false
+ xy: 700, 548
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6139
+ rotate: false
+ xy: 830, 582
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6143
+ rotate: false
+ xy: 310, 412
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6176
+ rotate: false
+ xy: 440, 446
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6180
+ rotate: false
+ xy: 570, 480
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6184
+ rotate: false
+ xy: 700, 514
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6188
+ rotate: false
+ xy: 830, 548
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6195
+ rotate: false
+ xy: 440, 412
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6199
+ rotate: false
+ xy: 570, 446
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6203
+ rotate: false
+ xy: 700, 480
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6207
+ rotate: false
+ xy: 830, 514
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6240
+ rotate: false
+ xy: 570, 412
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6244
+ rotate: false
+ xy: 700, 446
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6248
+ rotate: false
+ xy: 830, 480
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6252
+ rotate: false
+ xy: 700, 412
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6259
+ rotate: false
+ xy: 830, 446
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6263
+ rotate: false
+ xy: 830, 412
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6267
+ rotate: false
+ xy: 310, 378
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6271
+ rotate: false
+ xy: 440, 378
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6307
+ rotate: false
+ xy: 570, 378
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6311
+ rotate: false
+ xy: 700, 378
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6315
+ rotate: false
+ xy: 830, 378
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6319
+ rotate: false
+ xy: 296, 344
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6336
+ rotate: false
+ xy: 296, 310
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6340
+ rotate: false
+ xy: 426, 344
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6344
+ rotate: false
+ xy: 296, 276
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6348
+ rotate: false
+ xy: 426, 310
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6355
+ rotate: false
+ xy: 556, 344
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6359
+ rotate: false
+ xy: 296, 242
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6363
+ rotate: false
+ xy: 426, 276
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6367
+ rotate: false
+ xy: 556, 310
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6384
+ rotate: false
+ xy: 686, 344
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6388
+ rotate: false
+ xy: 296, 208
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6392
+ rotate: false
+ xy: 426, 242
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6396
+ rotate: false
+ xy: 556, 276
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6403
+ rotate: false
+ xy: 686, 310
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6407
+ rotate: false
+ xy: 816, 344
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6411
+ rotate: false
+ xy: 296, 174
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6415
+ rotate: false
+ xy: 426, 208
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6448
+ rotate: false
+ xy: 556, 242
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6452
+ rotate: false
+ xy: 686, 276
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6456
+ rotate: false
+ xy: 816, 310
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6460
+ rotate: false
+ xy: 296, 140
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6467
+ rotate: false
+ xy: 426, 174
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6471
+ rotate: false
+ xy: 556, 208
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6475
+ rotate: false
+ xy: 686, 242
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6479
+ rotate: false
+ xy: 816, 276
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6512
+ rotate: false
+ xy: 296, 106
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6516
+ rotate: false
+ xy: 426, 140
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6520
+ rotate: false
+ xy: 556, 174
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6524
+ rotate: false
+ xy: 686, 208
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6544
+ rotate: false
+ xy: 816, 242
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6548
+ rotate: false
+ xy: 296, 72
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6552
+ rotate: false
+ xy: 426, 106
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6556
+ rotate: false
+ xy: 556, 140
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6600
+ rotate: false
+ xy: 686, 174
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6604
+ rotate: false
+ xy: 816, 208
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6608
+ rotate: false
+ xy: 426, 72
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6612
+ rotate: false
+ xy: 556, 106
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6645
+ rotate: false
+ xy: 686, 140
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6649
+ rotate: false
+ xy: 816, 174
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6653
+ rotate: false
+ xy: 556, 72
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6657
+ rotate: false
+ xy: 686, 106
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6664
+ rotate: false
+ xy: 816, 140
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6721
+ rotate: false
+ xy: 816, 140
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8197
+ rotate: false
+ xy: 816, 140
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6668
+ rotate: false
+ xy: 686, 72
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6672
+ rotate: false
+ xy: 816, 106
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6676
+ rotate: false
+ xy: 816, 72
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6709
+ rotate: false
+ xy: 339, 38
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6713
+ rotate: false
+ xy: 339, 4
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+6717
+ rotate: false
+ xy: 469, 38
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7007
+ rotate: false
+ xy: 946, 320
+ size: 76, 56
+ orig: 76, 56
+ offset: 0, 0
+ index: -1
+7011
+ rotate: false
+ xy: 946, 262
+ size: 76, 56
+ orig: 76, 56
+ offset: 0, 0
+ index: -1
+7014
+ rotate: false
+ xy: 946, 204
+ size: 76, 56
+ orig: 76, 56
+ offset: 0, 0
+ index: -1
+7018
+ rotate: false
+ xy: 946, 146
+ size: 76, 56
+ orig: 76, 56
+ offset: 0, 0
+ index: -1
+7021
+ rotate: false
+ xy: 946, 88
+ size: 76, 56
+ orig: 76, 56
+ offset: 0, 0
+ index: -1
+7109
+ rotate: false
+ xy: 469, 4
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7112
+ rotate: false
+ xy: 599, 38
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7115
+ rotate: false
+ xy: 599, 4
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7135
+ rotate: false
+ xy: 729, 38
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7136
+ rotate: false
+ xy: 729, 4
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+737
+ rotate: false
+ xy: 118, 858
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+818
+ rotate: false
+ xy: 859, 6
+ size: 86, 64
+ orig: 86, 64
+ offset: 0, 0
+ index: -1
+8526
+ rotate: false
+ xy: 2, 974
+ size: 114, 48
+ orig: 114, 48
+ offset: 0, 0
+ index: -1
+8529
+ rotate: false
+ xy: 2, 924
+ size: 114, 48
+ orig: 114, 48
+ offset: 0, 0
+ index: -1
+8533
+ rotate: false
+ xy: 118, 974
+ size: 114, 48
+ orig: 114, 48
+ offset: 0, 0
+ index: -1
+8536
+ rotate: false
+ xy: 2, 874
+ size: 114, 48
+ orig: 114, 48
+ offset: 0, 0
+ index: -1
+8540
+ rotate: false
+ xy: 118, 924
+ size: 114, 48
+ orig: 114, 48
+ offset: 0, 0
+ index: -1
+8543
+ rotate: false
+ xy: 234, 974
+ size: 114, 48
+ orig: 114, 48
+ offset: 0, 0
+ index: -1
+8547
+ rotate: false
+ xy: 2, 824
+ size: 114, 48
+ orig: 114, 48
+ offset: 0, 0
+ index: -1
+8609
+ rotate: false
+ xy: 2, 78
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+8613
+ rotate: false
+ xy: 2, 12
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+8617
+ rotate: false
+ xy: 114, 758
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+
+images69.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+12171
+ rotate: false
+ xy: 912, 15
+ size: 59, 75
+ orig: 59, 75
+ offset: 0, 0
+ index: -1
+12278
+ rotate: false
+ xy: 912, 956
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12281
+ rotate: false
+ xy: 912, 890
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+12286
+ rotate: false
+ xy: 912, 824
+ size: 96, 64
+ orig: 96, 64
+ offset: 0, 0
+ index: -1
+13392
+ rotate: false
+ xy: 652, 2
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13394
+ rotate: false
+ xy: 782, 36
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13400
+ rotate: false
+ xy: 782, 2
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+14579
+ rotate: false
+ xy: 971, 401
+ size: 51, 45
+ orig: 51, 45
+ offset: 0, 0
+ index: -1
+14585
+ rotate: false
+ xy: 971, 354
+ size: 51, 45
+ orig: 51, 45
+ offset: 0, 0
+ index: -1
+14591
+ rotate: false
+ xy: 971, 307
+ size: 51, 45
+ orig: 51, 45
+ offset: 0, 0
+ index: -1
+14596
+ rotate: false
+ xy: 971, 260
+ size: 51, 45
+ orig: 51, 45
+ offset: 0, 0
+ index: -1
+18165
+ rotate: false
+ xy: 912, 395
+ size: 57, 99
+ orig: 57, 99
+ offset: 0, 0
+ index: -1
+18166
+ rotate: false
+ xy: 912, 294
+ size: 57, 99
+ orig: 57, 99
+ offset: 0, 0
+ index: -1
+18171
+ rotate: false
+ xy: 912, 193
+ size: 57, 99
+ orig: 57, 99
+ offset: 0, 0
+ index: -1
+18172
+ rotate: false
+ xy: 912, 92
+ size: 57, 99
+ orig: 57, 99
+ offset: 0, 0
+ index: -1
+1883
+ rotate: false
+ xy: 912, 561
+ size: 95, 63
+ orig: 95, 63
+ offset: 0, 0
+ index: -1
+1892
+ rotate: false
+ xy: 912, 496
+ size: 95, 63
+ orig: 95, 63
+ offset: 0, 0
+ index: -1
+2186
+ rotate: false
+ xy: 971, 223
+ size: 51, 35
+ orig: 51, 35
+ offset: 0, 0
+ index: -1
+2194
+ rotate: false
+ xy: 971, 186
+ size: 51, 35
+ orig: 51, 35
+ offset: 0, 0
+ index: -1
+2202
+ rotate: false
+ xy: 971, 149
+ size: 51, 35
+ orig: 51, 35
+ offset: 0, 0
+ index: -1
+2355
+ rotate: false
+ xy: 973, 11
+ size: 49, 32
+ orig: 49, 32
+ offset: 0, 0
+ index: -1
+2440
+ rotate: false
+ xy: 973, 45
+ size: 49, 48
+ orig: 49, 48
+ offset: 0, 0
+ index: -1
+2769
+ rotate: false
+ xy: 971, 448
+ size: 51, 46
+ orig: 51, 46
+ offset: 0, 0
+ index: -1
+3835
+ rotate: false
+ xy: 971, 95
+ size: 50, 52
+ orig: 50, 52
+ offset: 0, 0
+ index: -1
+7138
+ rotate: false
+ xy: 2, 988
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7148
+ rotate: false
+ xy: 2, 954
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7157
+ rotate: false
+ xy: 132, 988
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7288
+ rotate: false
+ xy: 2, 920
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7290
+ rotate: false
+ xy: 132, 954
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7296
+ rotate: false
+ xy: 262, 988
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7298
+ rotate: false
+ xy: 2, 886
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7304
+ rotate: false
+ xy: 132, 920
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7306
+ rotate: false
+ xy: 262, 954
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7316
+ rotate: false
+ xy: 392, 988
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7318
+ rotate: false
+ xy: 2, 852
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7319
+ rotate: false
+ xy: 132, 886
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7321
+ rotate: false
+ xy: 262, 920
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7323
+ rotate: false
+ xy: 392, 954
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7325
+ rotate: false
+ xy: 522, 988
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7331
+ rotate: false
+ xy: 2, 818
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7333
+ rotate: false
+ xy: 132, 852
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7339
+ rotate: false
+ xy: 262, 886
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7341
+ rotate: false
+ xy: 392, 920
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7352
+ rotate: false
+ xy: 522, 954
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7354
+ rotate: false
+ xy: 652, 988
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7355
+ rotate: false
+ xy: 2, 784
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7357
+ rotate: false
+ xy: 132, 818
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7368
+ rotate: false
+ xy: 262, 852
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7370
+ rotate: false
+ xy: 392, 886
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7371
+ rotate: false
+ xy: 522, 920
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7373
+ rotate: false
+ xy: 652, 954
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7379
+ rotate: false
+ xy: 782, 988
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7412
+ rotate: false
+ xy: 2, 750
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7416
+ rotate: false
+ xy: 132, 784
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7420
+ rotate: false
+ xy: 262, 818
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7424
+ rotate: false
+ xy: 392, 852
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7431
+ rotate: false
+ xy: 522, 886
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7435
+ rotate: false
+ xy: 652, 920
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7439
+ rotate: false
+ xy: 782, 954
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7443
+ rotate: false
+ xy: 2, 716
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7476
+ rotate: false
+ xy: 132, 750
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7480
+ rotate: false
+ xy: 262, 784
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7484
+ rotate: false
+ xy: 392, 818
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7488
+ rotate: false
+ xy: 522, 852
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7511
+ rotate: false
+ xy: 652, 886
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7515
+ rotate: false
+ xy: 782, 920
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7519
+ rotate: false
+ xy: 2, 682
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7523
+ rotate: false
+ xy: 132, 716
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7556
+ rotate: false
+ xy: 262, 750
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7560
+ rotate: false
+ xy: 392, 784
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7564
+ rotate: false
+ xy: 522, 818
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7568
+ rotate: false
+ xy: 652, 852
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7575
+ rotate: false
+ xy: 782, 886
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7579
+ rotate: false
+ xy: 2, 648
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7583
+ rotate: false
+ xy: 132, 682
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7587
+ rotate: false
+ xy: 262, 716
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7620
+ rotate: false
+ xy: 392, 750
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7624
+ rotate: false
+ xy: 522, 784
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7628
+ rotate: false
+ xy: 652, 818
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7632
+ rotate: false
+ xy: 782, 852
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7639
+ rotate: false
+ xy: 2, 614
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7643
+ rotate: false
+ xy: 132, 648
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7647
+ rotate: false
+ xy: 262, 682
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7651
+ rotate: false
+ xy: 392, 716
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7688
+ rotate: false
+ xy: 522, 750
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7692
+ rotate: false
+ xy: 652, 784
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7696
+ rotate: false
+ xy: 782, 818
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7700
+ rotate: false
+ xy: 2, 580
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7739
+ rotate: false
+ xy: 132, 614
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7743
+ rotate: false
+ xy: 262, 648
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7747
+ rotate: false
+ xy: 392, 682
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7751
+ rotate: false
+ xy: 522, 716
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7784
+ rotate: false
+ xy: 652, 750
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7788
+ rotate: false
+ xy: 782, 784
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7792
+ rotate: false
+ xy: 2, 546
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7796
+ rotate: false
+ xy: 132, 580
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7803
+ rotate: false
+ xy: 262, 614
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7807
+ rotate: false
+ xy: 392, 648
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7811
+ rotate: false
+ xy: 522, 682
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7815
+ rotate: false
+ xy: 652, 716
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7848
+ rotate: false
+ xy: 782, 750
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7852
+ rotate: false
+ xy: 2, 512
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7856
+ rotate: false
+ xy: 132, 546
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7860
+ rotate: false
+ xy: 262, 580
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7867
+ rotate: false
+ xy: 392, 614
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7871
+ rotate: false
+ xy: 522, 648
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7875
+ rotate: false
+ xy: 652, 682
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7879
+ rotate: false
+ xy: 782, 716
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7912
+ rotate: false
+ xy: 2, 478
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7916
+ rotate: false
+ xy: 132, 512
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7920
+ rotate: false
+ xy: 262, 546
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7924
+ rotate: false
+ xy: 392, 580
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7931
+ rotate: false
+ xy: 522, 614
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7935
+ rotate: false
+ xy: 652, 648
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7939
+ rotate: false
+ xy: 782, 682
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7943
+ rotate: false
+ xy: 2, 444
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7963
+ rotate: false
+ xy: 132, 478
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7967
+ rotate: false
+ xy: 262, 512
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7971
+ rotate: false
+ xy: 392, 546
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+7975
+ rotate: false
+ xy: 522, 580
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8008
+ rotate: false
+ xy: 652, 614
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8012
+ rotate: false
+ xy: 782, 648
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8016
+ rotate: false
+ xy: 2, 410
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8020
+ rotate: false
+ xy: 132, 444
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8027
+ rotate: false
+ xy: 262, 478
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8031
+ rotate: false
+ xy: 392, 512
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8035
+ rotate: false
+ xy: 522, 546
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8039
+ rotate: false
+ xy: 652, 580
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8072
+ rotate: false
+ xy: 782, 614
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8076
+ rotate: false
+ xy: 2, 376
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8080
+ rotate: false
+ xy: 132, 410
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8084
+ rotate: false
+ xy: 262, 444
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8091
+ rotate: false
+ xy: 392, 478
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8095
+ rotate: false
+ xy: 522, 512
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8099
+ rotate: false
+ xy: 652, 546
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8103
+ rotate: false
+ xy: 782, 580
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8135
+ rotate: false
+ xy: 2, 342
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8139
+ rotate: false
+ xy: 132, 376
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8143
+ rotate: false
+ xy: 262, 410
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8147
+ rotate: false
+ xy: 392, 444
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8185
+ rotate: false
+ xy: 522, 478
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8189
+ rotate: false
+ xy: 652, 512
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8193
+ rotate: false
+ xy: 782, 546
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+823
+ rotate: false
+ xy: 912, 758
+ size: 95, 64
+ orig: 95, 64
+ offset: 0, 0
+ index: -1
+832
+ rotate: false
+ xy: 912, 692
+ size: 95, 64
+ orig: 95, 64
+ offset: 0, 0
+ index: -1
+841
+ rotate: false
+ xy: 912, 626
+ size: 95, 64
+ orig: 95, 64
+ offset: 0, 0
+ index: -1
+8691
+ rotate: false
+ xy: 2, 308
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8693
+ rotate: false
+ xy: 132, 342
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8718
+ rotate: false
+ xy: 262, 376
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8720
+ rotate: false
+ xy: 392, 410
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8731
+ rotate: false
+ xy: 522, 444
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8733
+ rotate: false
+ xy: 652, 478
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8758
+ rotate: false
+ xy: 782, 512
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8760
+ rotate: false
+ xy: 2, 274
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8771
+ rotate: false
+ xy: 132, 308
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8773
+ rotate: false
+ xy: 262, 342
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8798
+ rotate: false
+ xy: 392, 376
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8800
+ rotate: false
+ xy: 522, 410
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8811
+ rotate: false
+ xy: 652, 444
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8813
+ rotate: false
+ xy: 782, 478
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8838
+ rotate: false
+ xy: 2, 240
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8840
+ rotate: false
+ xy: 132, 274
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8851
+ rotate: false
+ xy: 262, 308
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8853
+ rotate: false
+ xy: 392, 342
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8878
+ rotate: false
+ xy: 522, 376
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8880
+ rotate: false
+ xy: 652, 410
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8891
+ rotate: false
+ xy: 782, 444
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8893
+ rotate: false
+ xy: 2, 206
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8918
+ rotate: false
+ xy: 132, 240
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8920
+ rotate: false
+ xy: 262, 274
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8931
+ rotate: false
+ xy: 392, 308
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8933
+ rotate: false
+ xy: 522, 342
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8958
+ rotate: false
+ xy: 652, 376
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8960
+ rotate: false
+ xy: 782, 410
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8971
+ rotate: false
+ xy: 2, 172
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8973
+ rotate: false
+ xy: 132, 206
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+8998
+ rotate: false
+ xy: 262, 240
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9000
+ rotate: false
+ xy: 392, 274
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9011
+ rotate: false
+ xy: 522, 308
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9013
+ rotate: false
+ xy: 652, 342
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9038
+ rotate: false
+ xy: 782, 376
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9040
+ rotate: false
+ xy: 2, 138
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9051
+ rotate: false
+ xy: 132, 172
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9053
+ rotate: false
+ xy: 262, 206
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9078
+ rotate: false
+ xy: 392, 240
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9080
+ rotate: false
+ xy: 522, 274
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9096
+ rotate: false
+ xy: 652, 308
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9098
+ rotate: false
+ xy: 782, 342
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9099
+ rotate: false
+ xy: 2, 104
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9101
+ rotate: false
+ xy: 132, 138
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9102
+ rotate: false
+ xy: 262, 172
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9104
+ rotate: false
+ xy: 392, 206
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9123
+ rotate: false
+ xy: 522, 240
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9125
+ rotate: false
+ xy: 652, 274
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9126
+ rotate: false
+ xy: 782, 308
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9128
+ rotate: false
+ xy: 2, 70
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9129
+ rotate: false
+ xy: 132, 104
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9131
+ rotate: false
+ xy: 262, 138
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9146
+ rotate: false
+ xy: 392, 172
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9148
+ rotate: false
+ xy: 522, 206
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9149
+ rotate: false
+ xy: 652, 240
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9151
+ rotate: false
+ xy: 782, 274
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9162
+ rotate: false
+ xy: 2, 36
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9164
+ rotate: false
+ xy: 132, 70
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9165
+ rotate: false
+ xy: 262, 104
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9167
+ rotate: false
+ xy: 392, 138
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9178
+ rotate: false
+ xy: 522, 172
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9180
+ rotate: false
+ xy: 652, 206
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9181
+ rotate: false
+ xy: 782, 240
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9183
+ rotate: false
+ xy: 2, 2
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9223
+ rotate: false
+ xy: 132, 36
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9227
+ rotate: false
+ xy: 262, 70
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9231
+ rotate: false
+ xy: 392, 104
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9235
+ rotate: false
+ xy: 522, 138
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9268
+ rotate: false
+ xy: 652, 172
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9272
+ rotate: false
+ xy: 782, 206
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9276
+ rotate: false
+ xy: 132, 2
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9280
+ rotate: false
+ xy: 262, 36
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9287
+ rotate: false
+ xy: 392, 70
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9291
+ rotate: false
+ xy: 522, 104
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9295
+ rotate: false
+ xy: 652, 138
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9299
+ rotate: false
+ xy: 782, 172
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9332
+ rotate: false
+ xy: 262, 2
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9336
+ rotate: false
+ xy: 392, 36
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9340
+ rotate: false
+ xy: 522, 70
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9344
+ rotate: false
+ xy: 652, 104
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9351
+ rotate: false
+ xy: 782, 138
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9415
+ rotate: false
+ xy: 782, 138
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9355
+ rotate: false
+ xy: 392, 2
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9419
+ rotate: false
+ xy: 392, 2
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9359
+ rotate: false
+ xy: 522, 36
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9423
+ rotate: false
+ xy: 522, 36
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9363
+ rotate: false
+ xy: 652, 70
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9427
+ rotate: false
+ xy: 652, 70
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9396
+ rotate: false
+ xy: 782, 104
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9400
+ rotate: false
+ xy: 522, 2
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9404
+ rotate: false
+ xy: 652, 36
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+9408
+ rotate: false
+ xy: 782, 70
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+
+images70.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10036
+ rotate: false
+ xy: 61, 278
+ size: 57, 98
+ orig: 57, 98
+ offset: 0, 0
+ index: -1
+10041
+ rotate: false
+ xy: 912, 723
+ size: 57, 98
+ orig: 57, 98
+ offset: 0, 0
+ index: -1
+10042
+ rotate: false
+ xy: 2, 78
+ size: 57, 98
+ orig: 57, 98
+ offset: 0, 0
+ index: -1
+10047
+ rotate: false
+ xy: 61, 178
+ size: 57, 98
+ orig: 57, 98
+ offset: 0, 0
+ index: -1
+10048
+ rotate: false
+ xy: 912, 623
+ size: 57, 98
+ orig: 57, 98
+ offset: 0, 0
+ index: -1
+10053
+ rotate: false
+ xy: 61, 78
+ size: 57, 98
+ orig: 57, 98
+ offset: 0, 0
+ index: -1
+117
+ rotate: false
+ xy: 831, 142
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12109
+ rotate: false
+ xy: 608, 471
+ size: 104, 35
+ orig: 104, 35
+ offset: 0, 0
+ index: -1
+12114
+ rotate: false
+ xy: 738, 505
+ size: 104, 35
+ orig: 104, 35
+ offset: 0, 0
+ index: -1
+12117
+ rotate: false
+ xy: 585, 434
+ size: 104, 35
+ orig: 104, 35
+ offset: 0, 0
+ index: -1
+12122
+ rotate: false
+ xy: 714, 468
+ size: 104, 35
+ orig: 104, 35
+ offset: 0, 0
+ index: -1
+12125
+ rotate: false
+ xy: 691, 431
+ size: 104, 35
+ orig: 104, 35
+ offset: 0, 0
+ index: -1
+12130
+ rotate: false
+ xy: 638, 290
+ size: 104, 35
+ orig: 104, 35
+ offset: 0, 0
+ index: -1
+12133
+ rotate: false
+ xy: 632, 253
+ size: 104, 35
+ orig: 104, 35
+ offset: 0, 0
+ index: -1
+12138
+ rotate: false
+ xy: 632, 216
+ size: 104, 35
+ orig: 104, 35
+ offset: 0, 0
+ index: -1
+12718
+ rotate: false
+ xy: 969, 243
+ size: 53, 48
+ orig: 53, 48
+ offset: 0, 0
+ index: -1
+12742
+ rotate: false
+ xy: 827, 74
+ size: 65, 66
+ orig: 65, 66
+ offset: 0, 0
+ index: -1
+12743
+ rotate: false
+ xy: 869, 6
+ size: 65, 66
+ orig: 65, 66
+ offset: 0, 0
+ index: -1
+12747
+ rotate: false
+ xy: 894, 74
+ size: 65, 66
+ orig: 65, 66
+ offset: 0, 0
+ index: -1
+1334
+ rotate: false
+ xy: 534, 179
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1338
+ rotate: false
+ xy: 733, 142
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13402
+ rotate: false
+ xy: 2, 990
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13408
+ rotate: false
+ xy: 2, 956
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13410
+ rotate: false
+ xy: 132, 990
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1342
+ rotate: false
+ xy: 435, 146
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13420
+ rotate: false
+ xy: 2, 922
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13422
+ rotate: false
+ xy: 132, 956
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13423
+ rotate: false
+ xy: 262, 990
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13425
+ rotate: false
+ xy: 2, 888
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13427
+ rotate: false
+ xy: 132, 922
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13429
+ rotate: false
+ xy: 262, 956
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13435
+ rotate: false
+ xy: 392, 990
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13437
+ rotate: false
+ xy: 2, 854
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13443
+ rotate: false
+ xy: 132, 888
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13445
+ rotate: false
+ xy: 262, 922
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13456
+ rotate: false
+ xy: 392, 956
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13458
+ rotate: false
+ xy: 522, 990
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13459
+ rotate: false
+ xy: 2, 820
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1346
+ rotate: false
+ xy: 533, 145
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13461
+ rotate: false
+ xy: 132, 854
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13472
+ rotate: false
+ xy: 262, 888
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13474
+ rotate: false
+ xy: 392, 922
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13475
+ rotate: false
+ xy: 522, 956
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13477
+ rotate: false
+ xy: 652, 990
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13486
+ rotate: false
+ xy: 2, 786
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13490
+ rotate: false
+ xy: 132, 820
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13494
+ rotate: false
+ xy: 262, 854
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13498
+ rotate: false
+ xy: 392, 888
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13515
+ rotate: false
+ xy: 522, 922
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13519
+ rotate: false
+ xy: 652, 956
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13523
+ rotate: false
+ xy: 782, 990
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13527
+ rotate: false
+ xy: 2, 752
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13534
+ rotate: false
+ xy: 132, 786
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13538
+ rotate: false
+ xy: 262, 820
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13542
+ rotate: false
+ xy: 392, 854
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+13546
+ rotate: false
+ xy: 522, 888
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1381
+ rotate: false
+ xy: 533, 63
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1385
+ rotate: false
+ xy: 631, 62
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1389
+ rotate: false
+ xy: 729, 60
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1535
+ rotate: false
+ xy: 208, 238
+ size: 80, 64
+ orig: 80, 64
+ offset: 0, 0
+ index: -1
+18177
+ rotate: false
+ xy: 912, 923
+ size: 57, 99
+ orig: 57, 99
+ offset: 0, 0
+ index: -1
+18214
+ rotate: false
+ xy: 262, 443
+ size: 107, 35
+ orig: 107, 35
+ offset: 0, 0
+ index: -1
+18218
+ rotate: false
+ xy: 392, 477
+ size: 107, 35
+ orig: 107, 35
+ offset: 0, 0
+ index: -1
+18222
+ rotate: false
+ xy: 522, 511
+ size: 107, 35
+ orig: 107, 35
+ offset: 0, 0
+ index: -1
+18226
+ rotate: false
+ xy: 652, 545
+ size: 107, 35
+ orig: 107, 35
+ offset: 0, 0
+ index: -1
+18339
+ rotate: false
+ xy: 385, 2
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+18347
+ rotate: false
+ xy: 560, 2
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+18348
+ rotate: false
+ xy: 637, 2
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+18402
+ rotate: false
+ xy: 971, 896
+ size: 47, 60
+ orig: 47, 60
+ offset: 0, 0
+ index: -1
+18417
+ rotate: false
+ xy: 652, 922
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18421
+ rotate: false
+ xy: 782, 956
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18425
+ rotate: false
+ xy: 2, 718
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18429
+ rotate: false
+ xy: 132, 752
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18462
+ rotate: false
+ xy: 262, 786
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18466
+ rotate: false
+ xy: 392, 820
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18470
+ rotate: false
+ xy: 522, 854
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18474
+ rotate: false
+ xy: 652, 888
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18711
+ rotate: false
+ xy: 782, 922
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18713
+ rotate: false
+ xy: 2, 684
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18729
+ rotate: false
+ xy: 2, 684
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18719
+ rotate: false
+ xy: 132, 718
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18721
+ rotate: false
+ xy: 262, 752
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18727
+ rotate: false
+ xy: 392, 786
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18739
+ rotate: false
+ xy: 522, 820
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18741
+ rotate: false
+ xy: 652, 854
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18742
+ rotate: false
+ xy: 782, 888
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18762
+ rotate: false
+ xy: 782, 888
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18744
+ rotate: false
+ xy: 2, 650
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18764
+ rotate: false
+ xy: 2, 650
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18746
+ rotate: false
+ xy: 132, 684
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18754
+ rotate: false
+ xy: 132, 684
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18748
+ rotate: false
+ xy: 262, 718
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18756
+ rotate: false
+ xy: 262, 718
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18775
+ rotate: false
+ xy: 392, 752
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18777
+ rotate: false
+ xy: 522, 786
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18778
+ rotate: false
+ xy: 652, 820
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1878
+ rotate: false
+ xy: 120, 141
+ size: 86, 63
+ orig: 86, 63
+ offset: 0, 0
+ index: -1
+18780
+ rotate: false
+ xy: 782, 854
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18791
+ rotate: false
+ xy: 2, 616
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18793
+ rotate: false
+ xy: 132, 650
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18794
+ rotate: false
+ xy: 262, 684
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18796
+ rotate: false
+ xy: 392, 718
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1887
+ rotate: false
+ xy: 120, 76
+ size: 86, 63
+ orig: 86, 63
+ offset: 0, 0
+ index: -1
+18913
+ rotate: false
+ xy: 522, 752
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18961
+ rotate: false
+ xy: 522, 752
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18917
+ rotate: false
+ xy: 652, 786
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18965
+ rotate: false
+ xy: 652, 786
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18921
+ rotate: false
+ xy: 782, 820
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18969
+ rotate: false
+ xy: 782, 820
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18925
+ rotate: false
+ xy: 2, 582
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18973
+ rotate: false
+ xy: 2, 582
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18942
+ rotate: false
+ xy: 132, 616
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18946
+ rotate: false
+ xy: 262, 650
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18950
+ rotate: false
+ xy: 392, 684
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+18954
+ rotate: false
+ xy: 522, 718
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+1899
+ rotate: false
+ xy: 969, 449
+ size: 53, 51
+ orig: 53, 51
+ offset: 0, 0
+ index: -1
+1905
+ rotate: false
+ xy: 969, 396
+ size: 53, 51
+ orig: 53, 51
+ offset: 0, 0
+ index: -1
+1909
+ rotate: false
+ xy: 969, 343
+ size: 53, 51
+ orig: 53, 51
+ offset: 0, 0
+ index: -1
+1910
+ rotate: false
+ xy: 820, 452
+ size: 72, 51
+ orig: 72, 51
+ offset: 0, 0
+ index: -1
+1915
+ rotate: false
+ xy: 363, 110
+ size: 70, 50
+ orig: 70, 50
+ offset: 0, 0
+ index: -1
+1916
+ rotate: false
+ xy: 817, 176
+ size: 78, 50
+ orig: 78, 50
+ offset: 0, 0
+ index: -1
+1925
+ rotate: false
+ xy: 640, 379
+ size: 47, 53
+ orig: 47, 53
+ offset: 0, 0
+ index: -1
+1931
+ rotate: false
+ xy: 388, 246
+ size: 46, 53
+ orig: 46, 53
+ offset: 0, 0
+ index: -1
+19637
+ rotate: false
+ xy: 208, 109
+ size: 75, 60
+ orig: 75, 60
+ offset: 0, 0
+ index: -1
+19642
+ rotate: false
+ xy: 738, 228
+ size: 75, 60
+ orig: 75, 60
+ offset: 0, 0
+ index: -1
+19643
+ rotate: false
+ xy: 815, 228
+ size: 75, 60
+ orig: 75, 60
+ offset: 0, 0
+ index: -1
+19648
+ rotate: false
+ xy: 888, 292
+ size: 75, 60
+ orig: 75, 60
+ offset: 0, 0
+ index: -1
+19649
+ rotate: false
+ xy: 892, 230
+ size: 75, 60
+ orig: 75, 60
+ offset: 0, 0
+ index: -1
+19652
+ rotate: false
+ xy: 971, 836
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+19655
+ rotate: false
+ xy: 971, 776
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+2
+ rotate: false
+ xy: 306, 75
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2141
+ rotate: false
+ xy: 844, 505
+ size: 48, 31
+ orig: 48, 31
+ offset: 0, 0
+ index: -1
+21903
+ rotate: false
+ xy: 782, 579
+ size: 105, 35
+ orig: 105, 35
+ offset: 0, 0
+ index: -1
+21904
+ rotate: false
+ xy: 371, 440
+ size: 105, 35
+ orig: 105, 35
+ offset: 0, 0
+ index: -1
+21909
+ rotate: false
+ xy: 501, 474
+ size: 105, 35
+ orig: 105, 35
+ offset: 0, 0
+ index: -1
+21910
+ rotate: false
+ xy: 631, 508
+ size: 105, 35
+ orig: 105, 35
+ offset: 0, 0
+ index: -1
+21915
+ rotate: false
+ xy: 761, 542
+ size: 105, 35
+ orig: 105, 35
+ offset: 0, 0
+ index: -1
+21916
+ rotate: false
+ xy: 478, 437
+ size: 105, 35
+ orig: 105, 35
+ offset: 0, 0
+ index: -1
+22098
+ rotate: false
+ xy: 652, 752
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22101
+ rotate: false
+ xy: 782, 786
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22107
+ rotate: false
+ xy: 2, 548
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22110
+ rotate: false
+ xy: 132, 582
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22116
+ rotate: false
+ xy: 262, 616
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22119
+ rotate: false
+ xy: 392, 650
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22125
+ rotate: false
+ xy: 522, 684
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22128
+ rotate: false
+ xy: 652, 718
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22134
+ rotate: false
+ xy: 782, 752
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22137
+ rotate: false
+ xy: 2, 514
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22143
+ rotate: false
+ xy: 132, 548
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22146
+ rotate: false
+ xy: 262, 582
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22152
+ rotate: false
+ xy: 392, 616
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22155
+ rotate: false
+ xy: 522, 650
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22161
+ rotate: false
+ xy: 652, 684
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22164
+ rotate: false
+ xy: 782, 718
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22170
+ rotate: false
+ xy: 2, 480
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22173
+ rotate: false
+ xy: 132, 514
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22179
+ rotate: false
+ xy: 262, 548
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+2218
+ rotate: false
+ xy: 797, 327
+ size: 80, 54
+ orig: 80, 54
+ offset: 0, 0
+ index: -1
+22182
+ rotate: false
+ xy: 392, 582
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22188
+ rotate: false
+ xy: 522, 616
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22191
+ rotate: false
+ xy: 652, 650
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22197
+ rotate: false
+ xy: 782, 684
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22200
+ rotate: false
+ xy: 2, 446
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22206
+ rotate: false
+ xy: 132, 480
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22209
+ rotate: false
+ xy: 262, 514
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22213
+ rotate: false
+ xy: 971, 716
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+22216
+ rotate: false
+ xy: 971, 656
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+22241
+ rotate: false
+ xy: 392, 548
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22245
+ rotate: false
+ xy: 522, 582
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22249
+ rotate: false
+ xy: 652, 616
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22253
+ rotate: false
+ xy: 782, 650
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22478
+ rotate: false
+ xy: 2, 412
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22483
+ rotate: false
+ xy: 132, 446
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22488
+ rotate: false
+ xy: 262, 480
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22493
+ rotate: false
+ xy: 392, 514
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22496
+ rotate: false
+ xy: 522, 548
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22501
+ rotate: false
+ xy: 652, 582
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22506
+ rotate: false
+ xy: 782, 616
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+22511
+ rotate: false
+ xy: 2, 378
+ size: 128, 32
+ orig: 128, 32
+ offset: 0, 0
+ index: -1
+2252
+ rotate: false
+ xy: 372, 76
+ size: 58, 32
+ orig: 58, 32
+ offset: 0, 0
+ index: -1
+2315
+ rotate: false
+ xy: 132, 390
+ size: 100, 54
+ orig: 100, 54
+ offset: 0, 0
+ index: -1
+2356
+ rotate: false
+ xy: 894, 402
+ size: 73, 32
+ orig: 73, 32
+ offset: 0, 0
+ index: -1
+2358
+ rotate: false
+ xy: 797, 418
+ size: 95, 32
+ orig: 95, 32
+ offset: 0, 0
+ index: -1
+23723
+ rotate: false
+ xy: 208, 171
+ size: 75, 65
+ orig: 75, 65
+ offset: 0, 0
+ index: -1
+23782
+ rotate: false
+ xy: 971, 639
+ size: 51, 15
+ orig: 51, 15
+ offset: 0, 0
+ index: -1
+23830
+ rotate: false
+ xy: 205, 8
+ size: 74, 15
+ orig: 74, 15
+ offset: 0, 0
+ index: -1
+23832
+ rotate: false
+ xy: 971, 622
+ size: 51, 15
+ orig: 51, 15
+ offset: 0, 0
+ index: -1
+23843
+ rotate: false
+ xy: 897, 146
+ size: 62, 15
+ orig: 62, 15
+ offset: 0, 0
+ index: -1
+23844
+ rotate: false
+ xy: 2, 9
+ size: 76, 15
+ orig: 76, 15
+ offset: 0, 0
+ index: -1
+23905
+ rotate: false
+ xy: 281, 8
+ size: 74, 15
+ orig: 74, 15
+ offset: 0, 0
+ index: -1
+23930
+ rotate: false
+ xy: 80, 7
+ size: 74, 15
+ orig: 74, 15
+ offset: 0, 0
+ index: -1
+23933
+ rotate: false
+ xy: 156, 7
+ size: 44, 15
+ orig: 44, 15
+ offset: 0, 0
+ index: -1
+2420
+ rotate: false
+ xy: 936, 2
+ size: 72, 48
+ orig: 72, 48
+ offset: 0, 0
+ index: -1
+2422
+ rotate: false
+ xy: 205, 25
+ size: 96, 48
+ orig: 96, 48
+ offset: 0, 0
+ index: -1
+2430
+ rotate: false
+ xy: 290, 251
+ size: 96, 48
+ orig: 96, 48
+ offset: 0, 0
+ index: -1
+2438
+ rotate: false
+ xy: 285, 167
+ size: 96, 48
+ orig: 96, 48
+ offset: 0, 0
+ index: -1
+2446
+ rotate: false
+ xy: 436, 248
+ size: 96, 48
+ orig: 96, 48
+ offset: 0, 0
+ index: -1
+2480
+ rotate: false
+ xy: 534, 247
+ size: 96, 46
+ orig: 96, 46
+ offset: 0, 0
+ index: -1
+2481
+ rotate: false
+ xy: 435, 98
+ size: 96, 46
+ orig: 96, 46
+ offset: 0, 0
+ index: -1
+2488
+ rotate: false
+ xy: 533, 97
+ size: 96, 46
+ orig: 96, 46
+ offset: 0, 0
+ index: -1
+2489
+ rotate: false
+ xy: 729, 94
+ size: 96, 46
+ orig: 96, 46
+ offset: 0, 0
+ index: -1
+2621
+ rotate: false
+ xy: 894, 486
+ size: 73, 50
+ orig: 73, 50
+ offset: 0, 0
+ index: -1
+2699
+ rotate: false
+ xy: 891, 354
+ size: 76, 46
+ orig: 76, 46
+ offset: 0, 0
+ index: -1
+2842
+ rotate: false
+ xy: 104, 24
+ size: 99, 50
+ orig: 99, 50
+ offset: 0, 0
+ index: -1
+2843
+ rotate: false
+ xy: 438, 385
+ size: 99, 50
+ orig: 99, 50
+ offset: 0, 0
+ index: -1
+2848
+ rotate: false
+ xy: 438, 333
+ size: 99, 50
+ orig: 99, 50
+ offset: 0, 0
+ index: -1
+2849
+ rotate: false
+ xy: 539, 382
+ size: 99, 50
+ orig: 99, 50
+ offset: 0, 0
+ index: -1
+2854
+ rotate: false
+ xy: 539, 330
+ size: 99, 50
+ orig: 99, 50
+ offset: 0, 0
+ index: -1
+2855
+ rotate: false
+ xy: 689, 379
+ size: 99, 50
+ orig: 99, 50
+ offset: 0, 0
+ index: -1
+2860
+ rotate: false
+ xy: 640, 327
+ size: 99, 50
+ orig: 99, 50
+ offset: 0, 0
+ index: -1
+2900
+ rotate: false
+ xy: 961, 104
+ size: 60, 50
+ orig: 60, 50
+ offset: 0, 0
+ index: -1
+2901
+ rotate: false
+ xy: 961, 52
+ size: 60, 50
+ orig: 60, 50
+ offset: 0, 0
+ index: -1
+369
+ rotate: false
+ xy: 208, 75
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+374
+ rotate: false
+ xy: 290, 217
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+378
+ rotate: false
+ xy: 436, 214
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+382
+ rotate: false
+ xy: 534, 213
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+3838
+ rotate: false
+ xy: 971, 568
+ size: 50, 52
+ orig: 50, 52
+ offset: 0, 0
+ index: -1
+386
+ rotate: false
+ xy: 436, 180
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+39
+ rotate: false
+ xy: 744, 290
+ size: 70, 35
+ orig: 70, 35
+ offset: 0, 0
+ index: -1
+390
+ rotate: false
+ xy: 2, 26
+ size: 100, 50
+ orig: 100, 50
+ offset: 0, 0
+ index: -1
+398
+ rotate: false
+ xy: 741, 327
+ size: 54, 50
+ orig: 54, 50
+ offset: 0, 0
+ index: -1
+4340
+ rotate: false
+ xy: 631, 96
+ size: 96, 48
+ orig: 96, 48
+ offset: 0, 0
+ index: -1
+4348
+ rotate: false
+ xy: 462, 13
+ size: 96, 48
+ orig: 96, 48
+ offset: 0, 0
+ index: -1
+4357
+ rotate: false
+ xy: 894, 436
+ size: 73, 48
+ orig: 73, 48
+ offset: 0, 0
+ index: -1
+447
+ rotate: false
+ xy: 303, 25
+ size: 80, 48
+ orig: 80, 48
+ offset: 0, 0
+ index: -1
+47
+ rotate: false
+ xy: 816, 290
+ size: 70, 35
+ orig: 70, 35
+ offset: 0, 0
+ index: -1
+493
+ rotate: false
+ xy: 388, 209
+ size: 46, 35
+ orig: 46, 35
+ offset: 0, 0
+ index: -1
+5476
+ rotate: false
+ xy: 969, 206
+ size: 53, 35
+ orig: 53, 35
+ offset: 0, 0
+ index: -1
+642
+ rotate: false
+ xy: 738, 176
+ size: 77, 50
+ orig: 77, 50
+ offset: 0, 0
+ index: -1
+6564
+ rotate: false
+ xy: 234, 391
+ size: 100, 50
+ orig: 100, 50
+ offset: 0, 0
+ index: -1
+679
+ rotate: false
+ xy: 971, 958
+ size: 47, 64
+ orig: 47, 64
+ offset: 0, 0
+ index: -1
+6862
+ rotate: false
+ xy: 2, 278
+ size: 57, 98
+ orig: 57, 98
+ offset: 0, 0
+ index: -1
+6864
+ rotate: false
+ xy: 912, 823
+ size: 57, 98
+ orig: 57, 98
+ offset: 0, 0
+ index: -1
+6870
+ rotate: false
+ xy: 2, 178
+ size: 57, 98
+ orig: 57, 98
+ offset: 0, 0
+ index: -1
+7025
+ rotate: false
+ xy: 285, 109
+ size: 76, 56
+ orig: 76, 56
+ offset: 0, 0
+ index: -1
+7028
+ rotate: false
+ xy: 714, 2
+ size: 76, 56
+ orig: 76, 56
+ offset: 0, 0
+ index: -1
+827
+ rotate: false
+ xy: 120, 272
+ size: 86, 64
+ orig: 86, 64
+ offset: 0, 0
+ index: -1
+836
+ rotate: false
+ xy: 120, 206
+ size: 86, 64
+ orig: 86, 64
+ offset: 0, 0
+ index: -1
+842
+ rotate: false
+ xy: 969, 502
+ size: 53, 64
+ orig: 53, 64
+ offset: 0, 0
+ index: -1
+8521
+ rotate: false
+ xy: 912, 573
+ size: 57, 48
+ orig: 57, 48
+ offset: 0, 0
+ index: -1
+8527
+ rotate: false
+ xy: 965, 293
+ size: 57, 48
+ orig: 57, 48
+ offset: 0, 0
+ index: -1
+8528
+ rotate: false
+ xy: 965, 156
+ size: 57, 48
+ orig: 57, 48
+ offset: 0, 0
+ index: -1
+8584
+ rotate: false
+ xy: 336, 388
+ size: 100, 50
+ orig: 100, 50
+ offset: 0, 0
+ index: -1
+8588
+ rotate: false
+ xy: 132, 338
+ size: 100, 50
+ orig: 100, 50
+ offset: 0, 0
+ index: -1
+8592
+ rotate: false
+ xy: 234, 339
+ size: 100, 50
+ orig: 100, 50
+ offset: 0, 0
+ index: -1
+8596
+ rotate: false
+ xy: 336, 336
+ size: 100, 50
+ orig: 100, 50
+ offset: 0, 0
+ index: -1
+869
+ rotate: false
+ xy: 792, 2
+ size: 75, 56
+ orig: 75, 56
+ offset: 0, 0
+ index: -1
+881
+ rotate: false
+ xy: 383, 162
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9813
+ rotate: false
+ xy: 897, 163
+ size: 66, 65
+ orig: 66, 65
+ offset: 0, 0
+ index: -1
+9838
+ rotate: false
+ xy: 234, 304
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+9839
+ rotate: false
+ xy: 335, 301
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+9844
+ rotate: false
+ xy: 436, 298
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+9845
+ rotate: false
+ xy: 537, 295
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+9854
+ rotate: false
+ xy: 632, 181
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+9856
+ rotate: false
+ xy: 632, 146
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+9861
+ rotate: false
+ xy: 432, 63
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+9863
+ rotate: false
+ xy: 868, 538
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+9868
+ rotate: false
+ xy: 790, 383
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+
+images71.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10474
+ rotate: false
+ xy: 371, 956
+ size: 98, 31
+ orig: 98, 31
+ offset: 0, 0
+ index: -1
+10482
+ rotate: false
+ xy: 471, 956
+ size: 98, 31
+ orig: 98, 31
+ offset: 0, 0
+ index: -1
+10490
+ rotate: false
+ xy: 571, 956
+ size: 98, 31
+ orig: 98, 31
+ offset: 0, 0
+ index: -1
+10498
+ rotate: false
+ xy: 671, 956
+ size: 98, 31
+ orig: 98, 31
+ offset: 0, 0
+ index: -1
+12005
+ rotate: false
+ xy: 596, 79
+ size: 58, 32
+ orig: 58, 32
+ offset: 0, 0
+ index: -1
+12008
+ rotate: false
+ xy: 596, 45
+ size: 58, 32
+ orig: 58, 32
+ offset: 0, 0
+ index: -1
+12011
+ rotate: false
+ xy: 596, 11
+ size: 58, 32
+ orig: 58, 32
+ offset: 0, 0
+ index: -1
+12293
+ rotate: false
+ xy: 464, 24
+ size: 84, 55
+ orig: 84, 55
+ offset: 0, 0
+ index: -1
+12709
+ rotate: false
+ xy: 550, 29
+ size: 44, 50
+ orig: 44, 50
+ offset: 0, 0
+ index: -1
+13922
+ rotate: false
+ xy: 948, 5
+ size: 74, 38
+ orig: 74, 38
+ offset: 0, 0
+ index: -1
+1393
+ rotate: false
+ xy: 266, 872
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1398
+ rotate: false
+ xy: 364, 872
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1402
+ rotate: false
+ xy: 462, 872
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+14029
+ rotate: false
+ xy: 561, 147
+ size: 93, 48
+ orig: 93, 48
+ offset: 0, 0
+ index: -1
+1406
+ rotate: false
+ xy: 560, 872
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1410
+ rotate: false
+ xy: 658, 872
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1445
+ rotate: false
+ xy: 756, 855
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1449
+ rotate: false
+ xy: 266, 838
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1453
+ rotate: false
+ xy: 168, 824
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1457
+ rotate: false
+ xy: 70, 822
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1496
+ rotate: false
+ xy: 69, 221
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+1527
+ rotate: false
+ xy: 134, 155
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+1536
+ rotate: false
+ xy: 2, 353
+ size: 65, 64
+ orig: 65, 64
+ offset: 0, 0
+ index: -1
+1538
+ rotate: false
+ xy: 134, 89
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+17572
+ rotate: false
+ xy: 952, 639
+ size: 70, 53
+ orig: 70, 53
+ offset: 0, 0
+ index: -1
+17577
+ rotate: false
+ xy: 952, 584
+ size: 70, 53
+ orig: 70, 53
+ offset: 0, 0
+ index: -1
+17580
+ rotate: false
+ xy: 952, 529
+ size: 70, 53
+ orig: 70, 53
+ offset: 0, 0
+ index: -1
+17585
+ rotate: false
+ xy: 952, 474
+ size: 70, 53
+ orig: 70, 53
+ offset: 0, 0
+ index: -1
+17588
+ rotate: false
+ xy: 952, 419
+ size: 70, 53
+ orig: 70, 53
+ offset: 0, 0
+ index: -1
+17593
+ rotate: false
+ xy: 465, 364
+ size: 70, 53
+ orig: 70, 53
+ offset: 0, 0
+ index: -1
+1815
+ rotate: false
+ xy: 364, 838
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1819
+ rotate: false
+ xy: 462, 838
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1823
+ rotate: false
+ xy: 560, 838
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1827
+ rotate: false
+ xy: 658, 838
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18353
+ rotate: false
+ xy: 656, 137
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+18354
+ rotate: false
+ xy: 656, 77
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+18359
+ rotate: false
+ xy: 656, 17
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+1862
+ rotate: false
+ xy: 756, 821
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1866
+ rotate: false
+ xy: 854, 809
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1870
+ rotate: false
+ xy: 266, 804
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1874
+ rotate: false
+ xy: 168, 790
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1929
+ rotate: false
+ xy: 955, 882
+ size: 66, 53
+ orig: 66, 53
+ offset: 0, 0
+ index: -1
+195
+ rotate: false
+ xy: 2, 155
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+19582
+ rotate: false
+ xy: 948, 300
+ size: 74, 49
+ orig: 74, 49
+ offset: 0, 0
+ index: -1
+19586
+ rotate: false
+ xy: 948, 249
+ size: 74, 49
+ orig: 74, 49
+ offset: 0, 0
+ index: -1
+19590
+ rotate: false
+ xy: 948, 198
+ size: 74, 49
+ orig: 74, 49
+ offset: 0, 0
+ index: -1
+19594
+ rotate: false
+ xy: 948, 147
+ size: 74, 49
+ orig: 74, 49
+ offset: 0, 0
+ index: -1
+199
+ rotate: false
+ xy: 2, 89
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+200
+ rotate: false
+ xy: 2, 23
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+20089
+ rotate: false
+ xy: 948, 96
+ size: 74, 49
+ orig: 74, 49
+ offset: 0, 0
+ index: -1
+20093
+ rotate: false
+ xy: 948, 45
+ size: 74, 49
+ orig: 74, 49
+ offset: 0, 0
+ index: -1
+20096
+ rotate: false
+ xy: 2, 419
+ size: 75, 49
+ orig: 75, 49
+ offset: 0, 0
+ index: -1
+20109
+ rotate: false
+ xy: 273, 419
+ size: 80, 50
+ orig: 80, 50
+ offset: 0, 0
+ index: -1
+20112
+ rotate: false
+ xy: 355, 419
+ size: 80, 50
+ orig: 80, 50
+ offset: 0, 0
+ index: -1
+20113
+ rotate: false
+ xy: 437, 419
+ size: 80, 50
+ orig: 80, 50
+ offset: 0, 0
+ index: -1
+204
+ rotate: false
+ xy: 68, 155
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+2138
+ rotate: false
+ xy: 952, 750
+ size: 70, 60
+ orig: 70, 60
+ offset: 0, 0
+ index: -1
+2139
+ rotate: false
+ xy: 465, 312
+ size: 70, 50
+ orig: 70, 50
+ offset: 0, 0
+ index: -1
+2160
+ rotate: false
+ xy: 171, 956
+ size: 98, 31
+ orig: 98, 31
+ offset: 0, 0
+ index: -1
+2168
+ rotate: false
+ xy: 271, 956
+ size: 98, 31
+ orig: 98, 31
+ offset: 0, 0
+ index: -1
+21826
+ rotate: false
+ xy: 305, 989
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+21827
+ rotate: false
+ xy: 406, 989
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+21832
+ rotate: false
+ xy: 507, 989
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+21833
+ rotate: false
+ xy: 608, 989
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+21838
+ rotate: false
+ xy: 709, 989
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+21839
+ rotate: false
+ xy: 810, 989
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+21844
+ rotate: false
+ xy: 911, 989
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+21845
+ rotate: false
+ xy: 70, 954
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+21856
+ rotate: false
+ xy: 663, 216
+ size: 68, 42
+ orig: 68, 42
+ offset: 0, 0
+ index: -1
+2258
+ rotate: false
+ xy: 266, 471
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+2260
+ rotate: false
+ xy: 300, 471
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+2357
+ rotate: false
+ xy: 70, 788
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+2364
+ rotate: false
+ xy: 949, 385
+ size: 73, 32
+ orig: 73, 32
+ offset: 0, 0
+ index: -1
+2365
+ rotate: false
+ xy: 364, 804
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+2372
+ rotate: false
+ xy: 949, 351
+ size: 73, 32
+ orig: 73, 32
+ offset: 0, 0
+ index: -1
+2373
+ rotate: false
+ xy: 462, 804
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+23740
+ rotate: false
+ xy: 850, 10
+ size: 58, 15
+ orig: 58, 15
+ offset: 0, 0
+ index: -1
+23741
+ rotate: false
+ xy: 77, 6
+ size: 70, 15
+ orig: 70, 15
+ offset: 0, 0
+ index: -1
+23767
+ rotate: false
+ xy: 436, 6
+ size: 63, 15
+ orig: 63, 15
+ offset: 0, 0
+ index: -1
+2381
+ rotate: false
+ xy: 560, 804
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+23818
+ rotate: false
+ xy: 149, 6
+ size: 70, 15
+ orig: 70, 15
+ offset: 0, 0
+ index: -1
+23831
+ rotate: false
+ xy: 465, 243
+ size: 60, 15
+ orig: 60, 15
+ offset: 0, 0
+ index: -1
+23856
+ rotate: false
+ xy: 221, 6
+ size: 70, 15
+ orig: 70, 15
+ offset: 0, 0
+ index: -1
+23859
+ rotate: false
+ xy: 501, 7
+ size: 43, 15
+ orig: 43, 15
+ offset: 0, 0
+ index: -1
+23866
+ rotate: false
+ xy: 910, 10
+ size: 31, 15
+ orig: 31, 15
+ offset: 0, 0
+ index: -1
+23882
+ rotate: false
+ xy: 365, 6
+ size: 69, 15
+ orig: 69, 15
+ offset: 0, 0
+ index: -1
+23883
+ rotate: false
+ xy: 527, 243
+ size: 60, 15
+ orig: 60, 15
+ offset: 0, 0
+ index: -1
+23944
+ rotate: false
+ xy: 663, 199
+ size: 63, 15
+ orig: 63, 15
+ offset: 0, 0
+ index: -1
+23945
+ rotate: false
+ xy: 2, 6
+ size: 73, 15
+ orig: 73, 15
+ offset: 0, 0
+ index: -1
+23957
+ rotate: false
+ xy: 293, 6
+ size: 70, 15
+ orig: 70, 15
+ offset: 0, 0
+ index: -1
+23958
+ rotate: false
+ xy: 589, 243
+ size: 60, 15
+ orig: 60, 15
+ offset: 0, 0
+ index: -1
+2429
+ rotate: false
+ xy: 79, 419
+ size: 95, 48
+ orig: 95, 48
+ offset: 0, 0
+ index: -1
+2437
+ rotate: false
+ xy: 176, 419
+ size: 95, 48
+ orig: 95, 48
+ offset: 0, 0
+ index: -1
+2445
+ rotate: false
+ xy: 464, 147
+ size: 95, 48
+ orig: 95, 48
+ offset: 0, 0
+ index: -1
+2496
+ rotate: false
+ xy: 857, 891
+ size: 96, 46
+ orig: 96, 46
+ offset: 0, 0
+ index: -1
+2497
+ rotate: false
+ xy: 857, 843
+ size: 96, 46
+ orig: 96, 46
+ offset: 0, 0
+ index: -1
+2504
+ rotate: false
+ xy: 168, 858
+ size: 96, 46
+ orig: 96, 46
+ offset: 0, 0
+ index: -1
+2505
+ rotate: false
+ xy: 70, 856
+ size: 96, 46
+ orig: 96, 46
+ offset: 0, 0
+ index: -1
+2624
+ rotate: false
+ xy: 465, 260
+ size: 70, 50
+ orig: 70, 50
+ offset: 0, 0
+ index: -1
+3676
+ rotate: false
+ xy: 465, 197
+ size: 64, 39
+ orig: 64, 39
+ offset: 0, 0
+ index: -1
+3679
+ rotate: false
+ xy: 531, 197
+ size: 64, 39
+ orig: 64, 39
+ offset: 0, 0
+ index: -1
+3681
+ rotate: false
+ xy: 597, 197
+ size: 64, 39
+ orig: 64, 39
+ offset: 0, 0
+ index: -1
+3994
+ rotate: false
+ xy: 134, 23
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+3996
+ rotate: false
+ xy: 135, 353
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+3998
+ rotate: false
+ xy: 135, 287
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4131
+ rotate: false
+ xy: 135, 221
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4134
+ rotate: false
+ xy: 200, 155
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4320
+ rotate: false
+ xy: 334, 471
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4322
+ rotate: false
+ xy: 368, 471
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4326
+ rotate: false
+ xy: 402, 471
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4328
+ rotate: false
+ xy: 436, 471
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4330
+ rotate: false
+ xy: 470, 471
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4334
+ rotate: false
+ xy: 504, 471
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+435
+ rotate: false
+ xy: 68, 89
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12429
+ rotate: false
+ xy: 68, 89
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4356
+ rotate: false
+ xy: 771, 939
+ size: 96, 48
+ orig: 96, 48
+ offset: 0, 0
+ index: -1
+436
+ rotate: false
+ xy: 68, 23
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4364
+ rotate: false
+ xy: 869, 939
+ size: 96, 48
+ orig: 96, 48
+ offset: 0, 0
+ index: -1
+4368
+ rotate: false
+ xy: 550, 2
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4404
+ rotate: false
+ xy: 200, 89
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4407
+ rotate: false
+ xy: 200, 23
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4408
+ rotate: false
+ xy: 201, 353
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4411
+ rotate: false
+ xy: 201, 287
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4412
+ rotate: false
+ xy: 201, 221
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4415
+ rotate: false
+ xy: 266, 155
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4416
+ rotate: false
+ xy: 266, 89
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4419
+ rotate: false
+ xy: 266, 23
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4420
+ rotate: false
+ xy: 267, 353
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4423
+ rotate: false
+ xy: 267, 287
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4424
+ rotate: false
+ xy: 267, 221
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4427
+ rotate: false
+ xy: 332, 155
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4428
+ rotate: false
+ xy: 332, 89
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4431
+ rotate: false
+ xy: 332, 23
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4432
+ rotate: false
+ xy: 333, 353
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4435
+ rotate: false
+ xy: 333, 287
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4436
+ rotate: false
+ xy: 333, 221
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4438
+ rotate: false
+ xy: 398, 155
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4439
+ rotate: false
+ xy: 398, 89
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4441
+ rotate: false
+ xy: 398, 23
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4442
+ rotate: false
+ xy: 399, 353
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4444
+ rotate: false
+ xy: 399, 287
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4445
+ rotate: false
+ xy: 399, 221
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4447
+ rotate: false
+ xy: 464, 81
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4450
+ rotate: false
+ xy: 2, 287
+ size: 65, 64
+ orig: 65, 64
+ offset: 0, 0
+ index: -1
+4453
+ rotate: false
+ xy: 2, 221
+ size: 65, 64
+ orig: 65, 64
+ offset: 0, 0
+ index: -1
+4454
+ rotate: false
+ xy: 530, 81
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4487
+ rotate: false
+ xy: 596, 113
+ size: 58, 32
+ orig: 58, 32
+ offset: 0, 0
+ index: -1
+4805
+ rotate: false
+ xy: 967, 937
+ size: 55, 50
+ orig: 55, 50
+ offset: 0, 0
+ index: -1
+4861
+ rotate: false
+ xy: 952, 694
+ size: 70, 54
+ orig: 70, 54
+ offset: 0, 0
+ index: -1
+5449
+ rotate: false
+ xy: 519, 419
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5496
+ rotate: false
+ xy: 734, 446
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5499
+ rotate: false
+ xy: 734, 394
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5583
+ rotate: false
+ xy: 733, 342
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5586
+ rotate: false
+ xy: 733, 290
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5603
+ rotate: false
+ xy: 658, 804
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5607
+ rotate: false
+ xy: 756, 787
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5611
+ rotate: false
+ xy: 854, 775
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5615
+ rotate: false
+ xy: 266, 770
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5634
+ rotate: false
+ xy: 168, 756
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5638
+ rotate: false
+ xy: 70, 754
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5642
+ rotate: false
+ xy: 364, 770
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5646
+ rotate: false
+ xy: 462, 770
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5651
+ rotate: false
+ xy: 560, 770
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5655
+ rotate: false
+ xy: 658, 770
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5659
+ rotate: false
+ xy: 756, 753
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5663
+ rotate: false
+ xy: 854, 741
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5683
+ rotate: false
+ xy: 266, 736
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5687
+ rotate: false
+ xy: 168, 722
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5691
+ rotate: false
+ xy: 70, 720
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5695
+ rotate: false
+ xy: 364, 736
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5714
+ rotate: false
+ xy: 462, 736
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5718
+ rotate: false
+ xy: 560, 736
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5722
+ rotate: false
+ xy: 658, 736
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5726
+ rotate: false
+ xy: 756, 719
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5756
+ rotate: false
+ xy: 733, 238
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5759
+ rotate: false
+ xy: 733, 186
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5767
+ rotate: false
+ xy: 733, 134
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5770
+ rotate: false
+ xy: 733, 82
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5775
+ rotate: false
+ xy: 854, 707
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5779
+ rotate: false
+ xy: 266, 702
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5783
+ rotate: false
+ xy: 168, 688
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5787
+ rotate: false
+ xy: 70, 686
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5806
+ rotate: false
+ xy: 364, 702
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5810
+ rotate: false
+ xy: 462, 702
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5814
+ rotate: false
+ xy: 560, 702
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5818
+ rotate: false
+ xy: 658, 702
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5823
+ rotate: false
+ xy: 756, 685
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5827
+ rotate: false
+ xy: 854, 673
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5831
+ rotate: false
+ xy: 266, 668
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5835
+ rotate: false
+ xy: 168, 654
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5855
+ rotate: false
+ xy: 70, 652
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5859
+ rotate: false
+ xy: 364, 668
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5863
+ rotate: false
+ xy: 462, 668
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5867
+ rotate: false
+ xy: 560, 668
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5902
+ rotate: false
+ xy: 658, 668
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5906
+ rotate: false
+ xy: 756, 651
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5910
+ rotate: false
+ xy: 854, 639
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5914
+ rotate: false
+ xy: 266, 634
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+5982
+ rotate: false
+ xy: 733, 30
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6002
+ rotate: false
+ xy: 168, 620
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6006
+ rotate: false
+ xy: 70, 618
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6010
+ rotate: false
+ xy: 364, 634
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6014
+ rotate: false
+ xy: 462, 634
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6049
+ rotate: false
+ xy: 560, 634
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6053
+ rotate: false
+ xy: 658, 634
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6057
+ rotate: false
+ xy: 756, 617
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6061
+ rotate: false
+ xy: 854, 605
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6066
+ rotate: false
+ xy: 266, 600
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6070
+ rotate: false
+ xy: 168, 586
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6074
+ rotate: false
+ xy: 70, 584
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6078
+ rotate: false
+ xy: 364, 600
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6113
+ rotate: false
+ xy: 462, 600
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6117
+ rotate: false
+ xy: 560, 600
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6121
+ rotate: false
+ xy: 658, 600
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6125
+ rotate: false
+ xy: 756, 583
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6130
+ rotate: false
+ xy: 854, 571
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6134
+ rotate: false
+ xy: 266, 566
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6138
+ rotate: false
+ xy: 168, 552
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6142
+ rotate: false
+ xy: 70, 550
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6177
+ rotate: false
+ xy: 364, 566
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6181
+ rotate: false
+ xy: 462, 566
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6185
+ rotate: false
+ xy: 560, 566
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6189
+ rotate: false
+ xy: 658, 566
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6194
+ rotate: false
+ xy: 756, 549
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6198
+ rotate: false
+ xy: 854, 537
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6202
+ rotate: false
+ xy: 266, 532
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6206
+ rotate: false
+ xy: 168, 518
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6241
+ rotate: false
+ xy: 70, 516
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6245
+ rotate: false
+ xy: 364, 532
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6249
+ rotate: false
+ xy: 462, 532
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6253
+ rotate: false
+ xy: 560, 532
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6258
+ rotate: false
+ xy: 658, 532
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6262
+ rotate: false
+ xy: 756, 515
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6266
+ rotate: false
+ xy: 854, 503
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6270
+ rotate: false
+ xy: 266, 498
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6306
+ rotate: false
+ xy: 168, 484
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6310
+ rotate: false
+ xy: 70, 482
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6314
+ rotate: false
+ xy: 364, 498
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6318
+ rotate: false
+ xy: 462, 498
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6337
+ rotate: false
+ xy: 560, 498
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6341
+ rotate: false
+ xy: 658, 498
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6345
+ rotate: false
+ xy: 756, 481
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6349
+ rotate: false
+ xy: 854, 469
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6354
+ rotate: false
+ xy: 538, 464
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6358
+ rotate: false
+ xy: 636, 464
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6362
+ rotate: false
+ xy: 753, 447
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6366
+ rotate: false
+ xy: 851, 435
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6385
+ rotate: false
+ xy: 753, 413
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6389
+ rotate: false
+ xy: 851, 401
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6393
+ rotate: false
+ xy: 538, 430
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6397
+ rotate: false
+ xy: 636, 430
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6402
+ rotate: false
+ xy: 753, 379
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6406
+ rotate: false
+ xy: 851, 367
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6410
+ rotate: false
+ xy: 538, 396
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6414
+ rotate: false
+ xy: 636, 396
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6449
+ rotate: false
+ xy: 537, 362
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6453
+ rotate: false
+ xy: 635, 362
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6457
+ rotate: false
+ xy: 752, 345
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6461
+ rotate: false
+ xy: 850, 333
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6466
+ rotate: false
+ xy: 752, 311
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6470
+ rotate: false
+ xy: 850, 299
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6474
+ rotate: false
+ xy: 537, 328
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6478
+ rotate: false
+ xy: 635, 328
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+648
+ rotate: false
+ xy: 69, 353
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+6513
+ rotate: false
+ xy: 752, 277
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6517
+ rotate: false
+ xy: 850, 265
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6521
+ rotate: false
+ xy: 537, 294
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6525
+ rotate: false
+ xy: 635, 294
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+653
+ rotate: false
+ xy: 69, 287
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+6545
+ rotate: false
+ xy: 537, 260
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6549
+ rotate: false
+ xy: 635, 260
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6553
+ rotate: false
+ xy: 752, 243
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6557
+ rotate: false
+ xy: 850, 231
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6599
+ rotate: false
+ xy: 752, 209
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6603
+ rotate: false
+ xy: 850, 197
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6607
+ rotate: false
+ xy: 752, 175
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6611
+ rotate: false
+ xy: 850, 163
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6646
+ rotate: false
+ xy: 752, 141
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6650
+ rotate: false
+ xy: 850, 129
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6654
+ rotate: false
+ xy: 752, 107
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6658
+ rotate: false
+ xy: 850, 95
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6663
+ rotate: false
+ xy: 752, 73
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13419
+ rotate: false
+ xy: 752, 73
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13471
+ rotate: false
+ xy: 752, 73
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18738
+ rotate: false
+ xy: 752, 73
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18790
+ rotate: false
+ xy: 752, 73
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22102
+ rotate: false
+ xy: 752, 73
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22210
+ rotate: false
+ xy: 752, 73
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6722
+ rotate: false
+ xy: 752, 73
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7315
+ rotate: false
+ xy: 752, 73
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7367
+ rotate: false
+ xy: 752, 73
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8198
+ rotate: false
+ xy: 752, 73
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6667
+ rotate: false
+ xy: 850, 61
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6671
+ rotate: false
+ xy: 752, 39
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6675
+ rotate: false
+ xy: 850, 27
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6710
+ rotate: false
+ xy: 752, 5
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6899
+ rotate: false
+ xy: 171, 906
+ size: 96, 48
+ orig: 96, 48
+ offset: 0, 0
+ index: -1
+6900
+ rotate: false
+ xy: 70, 904
+ size: 96, 48
+ orig: 96, 48
+ offset: 0, 0
+ index: -1
+6903
+ rotate: false
+ xy: 269, 906
+ size: 96, 48
+ orig: 96, 48
+ offset: 0, 0
+ index: -1
+6904
+ rotate: false
+ xy: 367, 906
+ size: 96, 48
+ orig: 96, 48
+ offset: 0, 0
+ index: -1
+6907
+ rotate: false
+ xy: 465, 906
+ size: 96, 48
+ orig: 96, 48
+ offset: 0, 0
+ index: -1
+6908
+ rotate: false
+ xy: 563, 906
+ size: 96, 48
+ orig: 96, 48
+ offset: 0, 0
+ index: -1
+6911
+ rotate: false
+ xy: 661, 906
+ size: 96, 48
+ orig: 96, 48
+ offset: 0, 0
+ index: -1
+6912
+ rotate: false
+ xy: 759, 889
+ size: 96, 48
+ orig: 96, 48
+ offset: 0, 0
+ index: -1
+9815
+ rotate: false
+ xy: 2, 922
+ size: 66, 65
+ orig: 66, 65
+ offset: 0, 0
+ index: -1
+9819
+ rotate: false
+ xy: 2, 855
+ size: 66, 65
+ orig: 66, 65
+ offset: 0, 0
+ index: -1
+9825
+ rotate: false
+ xy: 955, 847
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+9828
+ rotate: false
+ xy: 955, 812
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+9831
+ rotate: false
+ xy: 2, 820
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+9834
+ rotate: false
+ xy: 2, 785
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+9837
+ rotate: false
+ xy: 2, 750
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+9840
+ rotate: false
+ xy: 2, 750
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+9843
+ rotate: false
+ xy: 2, 715
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+9846
+ rotate: false
+ xy: 2, 680
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+9853
+ rotate: false
+ xy: 2, 645
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+9857
+ rotate: false
+ xy: 2, 610
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+9860
+ rotate: false
+ xy: 2, 575
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+9864
+ rotate: false
+ xy: 2, 540
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+9867
+ rotate: false
+ xy: 2, 505
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+9870
+ rotate: false
+ xy: 2, 989
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+9871
+ rotate: false
+ xy: 2, 470
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+9875
+ rotate: false
+ xy: 103, 989
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+9877
+ rotate: false
+ xy: 204, 989
+ size: 99, 33
+ orig: 99, 33
+ offset: 0, 0
+ index: -1
+
+images72.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+12295
+ rotate: false
+ xy: 453, 506
+ size: 84, 55
+ orig: 84, 55
+ offset: 0, 0
+ index: -1
+12299
+ rotate: false
+ xy: 398, 148
+ size: 84, 55
+ orig: 84, 55
+ offset: 0, 0
+ index: -1
+12301
+ rotate: false
+ xy: 484, 148
+ size: 84, 55
+ orig: 84, 55
+ offset: 0, 0
+ index: -1
+12312
+ rotate: false
+ xy: 845, 491
+ size: 84, 55
+ orig: 84, 55
+ offset: 0, 0
+ index: -1
+12314
+ rotate: false
+ xy: 845, 434
+ size: 84, 55
+ orig: 84, 55
+ offset: 0, 0
+ index: -1
+12318
+ rotate: false
+ xy: 845, 377
+ size: 84, 55
+ orig: 84, 55
+ offset: 0, 0
+ index: -1
+12320
+ rotate: false
+ xy: 845, 320
+ size: 84, 55
+ orig: 84, 55
+ offset: 0, 0
+ index: -1
+12340
+ rotate: false
+ xy: 134, 446
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12341
+ rotate: false
+ xy: 134, 380
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12342
+ rotate: false
+ xy: 134, 314
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12343
+ rotate: false
+ xy: 134, 248
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12344
+ rotate: false
+ xy: 134, 182
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12345
+ rotate: false
+ xy: 134, 116
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12346
+ rotate: false
+ xy: 200, 710
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12432
+ rotate: false
+ xy: 200, 644
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+12723
+ rotate: false
+ xy: 829, 2
+ size: 80, 51
+ orig: 80, 51
+ offset: 0, 0
+ index: -1
+14026
+ rotate: false
+ xy: 453, 613
+ size: 31, 48
+ orig: 31, 48
+ offset: 0, 0
+ index: -1
+14031
+ rotate: false
+ xy: 453, 563
+ size: 31, 48
+ orig: 31, 48
+ offset: 0, 0
+ index: -1
+14032
+ rotate: false
+ xy: 714, 296
+ size: 31, 48
+ orig: 31, 48
+ offset: 0, 0
+ index: -1
+17926
+ rotate: false
+ xy: 530, 271
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+17927
+ rotate: false
+ xy: 530, 205
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+18045
+ rotate: false
+ xy: 200, 578
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18047
+ rotate: false
+ xy: 200, 512
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18128
+ rotate: false
+ xy: 200, 446
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18129
+ rotate: false
+ xy: 200, 380
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18130
+ rotate: false
+ xy: 200, 314
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18131
+ rotate: false
+ xy: 200, 248
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18132
+ rotate: false
+ xy: 200, 182
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18133
+ rotate: false
+ xy: 200, 116
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18134
+ rotate: false
+ xy: 266, 658
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18135
+ rotate: false
+ xy: 266, 592
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18152
+ rotate: false
+ xy: 266, 526
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18153
+ rotate: false
+ xy: 266, 460
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18154
+ rotate: false
+ xy: 266, 394
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18155
+ rotate: false
+ xy: 266, 328
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18156
+ rotate: false
+ xy: 266, 262
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18157
+ rotate: false
+ xy: 266, 196
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18158
+ rotate: false
+ xy: 266, 130
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18159
+ rotate: false
+ xy: 288, 64
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18186
+ rotate: false
+ xy: 332, 609
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18190
+ rotate: false
+ xy: 332, 543
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18212
+ rotate: false
+ xy: 486, 607
+ size: 53, 35
+ orig: 53, 35
+ offset: 0, 0
+ index: -1
+18216
+ rotate: false
+ xy: 398, 566
+ size: 53, 35
+ orig: 53, 35
+ offset: 0, 0
+ index: -1
+18220
+ rotate: false
+ xy: 398, 529
+ size: 53, 35
+ orig: 53, 35
+ offset: 0, 0
+ index: -1
+18224
+ rotate: false
+ xy: 486, 570
+ size: 53, 35
+ orig: 53, 35
+ offset: 0, 0
+ index: -1
+18360
+ rotate: false
+ xy: 2, 2
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+18364
+ rotate: false
+ xy: 79, 2
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+18365
+ rotate: false
+ xy: 156, 2
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+18396
+ rotate: false
+ xy: 332, 477
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18400
+ rotate: false
+ xy: 332, 411
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+18991
+ rotate: false
+ xy: 747, 102
+ size: 34, 28
+ orig: 34, 28
+ offset: 0, 0
+ index: -1
+18999
+ rotate: false
+ xy: 332, 345
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+19000
+ rotate: false
+ xy: 332, 279
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+19001
+ rotate: false
+ xy: 332, 213
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+19002
+ rotate: false
+ xy: 332, 147
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+19003
+ rotate: false
+ xy: 354, 64
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+19004
+ rotate: false
+ xy: 420, 64
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+19005
+ rotate: false
+ xy: 398, 403
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+19006
+ rotate: false
+ xy: 398, 337
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+19007
+ rotate: false
+ xy: 398, 271
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+19008
+ rotate: false
+ xy: 398, 205
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+19009
+ rotate: false
+ xy: 486, 65
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+19010
+ rotate: false
+ xy: 464, 403
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+19011
+ rotate: false
+ xy: 464, 337
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+19012
+ rotate: false
+ xy: 464, 271
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+19013
+ rotate: false
+ xy: 464, 205
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+19014
+ rotate: false
+ xy: 552, 65
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+1904
+ rotate: false
+ xy: 911, 2
+ size: 77, 51
+ orig: 77, 51
+ offset: 0, 0
+ index: -1
+19653
+ rotate: false
+ xy: 233, 2
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+19654
+ rotate: false
+ xy: 310, 4
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+2130
+ rotate: false
+ xy: 751, 187
+ size: 33, 53
+ orig: 33, 53
+ offset: 0, 0
+ index: -1
+21825
+ rotate: false
+ xy: 679, 513
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+21828
+ rotate: false
+ xy: 679, 478
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+21857
+ rotate: false
+ xy: 153, 776
+ size: 68, 42
+ orig: 68, 42
+ offset: 0, 0
+ index: -1
+21860
+ rotate: false
+ xy: 223, 776
+ size: 68, 42
+ orig: 68, 42
+ offset: 0, 0
+ index: -1
+21861
+ rotate: false
+ xy: 677, 434
+ size: 68, 42
+ orig: 68, 42
+ offset: 0, 0
+ index: -1
+21864
+ rotate: false
+ xy: 677, 390
+ size: 68, 42
+ orig: 68, 42
+ offset: 0, 0
+ index: -1
+21865
+ rotate: false
+ xy: 677, 346
+ size: 68, 42
+ orig: 68, 42
+ offset: 0, 0
+ index: -1
+21876
+ rotate: false
+ xy: 976, 872
+ size: 44, 46
+ orig: 44, 46
+ offset: 0, 0
+ index: -1
+21880
+ rotate: false
+ xy: 976, 824
+ size: 44, 46
+ orig: 44, 46
+ offset: 0, 0
+ index: -1
+21881
+ rotate: false
+ xy: 976, 776
+ size: 44, 46
+ orig: 44, 46
+ offset: 0, 0
+ index: -1
+21885
+ rotate: false
+ xy: 976, 728
+ size: 44, 46
+ orig: 44, 46
+ offset: 0, 0
+ index: -1
+21896
+ rotate: false
+ xy: 522, 469
+ size: 70, 35
+ orig: 70, 35
+ offset: 0, 0
+ index: -1
+21899
+ rotate: false
+ xy: 607, 511
+ size: 70, 35
+ orig: 70, 35
+ offset: 0, 0
+ index: -1
+21902
+ rotate: false
+ xy: 570, 132
+ size: 70, 35
+ orig: 70, 35
+ offset: 0, 0
+ index: -1
+21905
+ rotate: false
+ xy: 642, 132
+ size: 70, 35
+ orig: 70, 35
+ offset: 0, 0
+ index: -1
+21908
+ rotate: false
+ xy: 714, 132
+ size: 70, 35
+ orig: 70, 35
+ offset: 0, 0
+ index: -1
+22214
+ rotate: false
+ xy: 387, 4
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+22215
+ rotate: false
+ xy: 464, 4
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+22219
+ rotate: false
+ xy: 398, 469
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+22220
+ rotate: false
+ xy: 541, 5
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+22221
+ rotate: false
+ xy: 564, 409
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+22222
+ rotate: false
+ xy: 969, 490
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+22225
+ rotate: false
+ xy: 695, 72
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+22226
+ rotate: false
+ xy: 564, 349
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+22227
+ rotate: false
+ xy: 564, 289
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+22228
+ rotate: false
+ xy: 695, 12
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+22230
+ rotate: false
+ xy: 647, 169
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+22231
+ rotate: false
+ xy: 564, 229
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+22232
+ rotate: false
+ xy: 570, 169
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+22233
+ rotate: false
+ xy: 699, 169
+ size: 50, 58
+ orig: 50, 58
+ offset: 0, 0
+ index: -1
+2225
+ rotate: false
+ xy: 747, 2
+ size: 80, 54
+ orig: 80, 54
+ offset: 0, 0
+ index: -1
+22264
+ rotate: false
+ xy: 982, 972
+ size: 40, 50
+ orig: 40, 50
+ offset: 0, 0
+ index: -1
+23705
+ rotate: false
+ xy: 618, 72
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+23708
+ rotate: false
+ xy: 618, 12
+ size: 75, 58
+ orig: 75, 58
+ offset: 0, 0
+ index: -1
+23816
+ rotate: false
+ xy: 332, 130
+ size: 53, 15
+ orig: 53, 15
+ offset: 0, 0
+ index: -1
+23842
+ rotate: false
+ xy: 387, 130
+ size: 53, 15
+ orig: 53, 15
+ offset: 0, 0
+ index: -1
+23868
+ rotate: false
+ xy: 969, 567
+ size: 51, 15
+ orig: 51, 15
+ offset: 0, 0
+ index: -1
+23884
+ rotate: false
+ xy: 969, 550
+ size: 51, 15
+ orig: 51, 15
+ offset: 0, 0
+ index: -1
+23886
+ rotate: false
+ xy: 898, 803
+ size: 31, 15
+ orig: 31, 15
+ offset: 0, 0
+ index: -1
+23916
+ rotate: false
+ xy: 442, 131
+ size: 43, 15
+ orig: 43, 15
+ offset: 0, 0
+ index: -1
+23940
+ rotate: false
+ xy: 532, 131
+ size: 31, 15
+ orig: 31, 15
+ offset: 0, 0
+ index: -1
+23942
+ rotate: false
+ xy: 487, 131
+ size: 43, 15
+ orig: 43, 15
+ offset: 0, 0
+ index: -1
+23943
+ rotate: false
+ xy: 969, 584
+ size: 53, 15
+ orig: 53, 15
+ offset: 0, 0
+ index: -1
+2396
+ rotate: false
+ xy: 641, 229
+ size: 84, 51
+ orig: 84, 51
+ offset: 0, 0
+ index: -1
+2399
+ rotate: false
+ xy: 845, 267
+ size: 84, 51
+ orig: 84, 51
+ offset: 0, 0
+ index: -1
+2404
+ rotate: false
+ xy: 845, 214
+ size: 84, 51
+ orig: 84, 51
+ offset: 0, 0
+ index: -1
+2407
+ rotate: false
+ xy: 845, 161
+ size: 84, 51
+ orig: 84, 51
+ offset: 0, 0
+ index: -1
+2412
+ rotate: false
+ xy: 845, 108
+ size: 84, 51
+ orig: 84, 51
+ offset: 0, 0
+ index: -1
+2415
+ rotate: false
+ xy: 845, 55
+ size: 84, 51
+ orig: 84, 51
+ offset: 0, 0
+ index: -1
+2622
+ rotate: false
+ xy: 967, 141
+ size: 55, 35
+ orig: 55, 35
+ offset: 0, 0
+ index: -1
+2625
+ rotate: false
+ xy: 975, 675
+ size: 47, 51
+ orig: 47, 51
+ offset: 0, 0
+ index: -1
+2705
+ rotate: false
+ xy: 898, 752
+ size: 76, 46
+ orig: 76, 46
+ offset: 0, 0
+ index: -1
+2861
+ rotate: false
+ xy: 931, 57
+ size: 54, 35
+ orig: 54, 35
+ offset: 0, 0
+ index: -1
+3114
+ rotate: false
+ xy: 982, 920
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3115
+ rotate: false
+ xy: 940, 904
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3118
+ rotate: false
+ xy: 940, 852
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3119
+ rotate: false
+ xy: 940, 800
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3122
+ rotate: false
+ xy: 933, 666
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3123
+ rotate: false
+ xy: 933, 614
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3126
+ rotate: false
+ xy: 933, 562
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3127
+ rotate: false
+ xy: 933, 510
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3199
+ rotate: false
+ xy: 641, 459
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3200
+ rotate: false
+ xy: 931, 458
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3203
+ rotate: false
+ xy: 931, 406
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3204
+ rotate: false
+ xy: 641, 407
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3207
+ rotate: false
+ xy: 641, 355
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3208
+ rotate: false
+ xy: 931, 354
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3211
+ rotate: false
+ xy: 641, 303
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3212
+ rotate: false
+ xy: 931, 302
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3215
+ rotate: false
+ xy: 931, 250
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3216
+ rotate: false
+ xy: 931, 198
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3219
+ rotate: false
+ xy: 931, 146
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3220
+ rotate: false
+ xy: 931, 94
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3223
+ rotate: false
+ xy: 677, 294
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3669
+ rotate: false
+ xy: 539, 507
+ size: 32, 39
+ orig: 32, 39
+ offset: 0, 0
+ index: -1
+3674
+ rotate: false
+ xy: 573, 507
+ size: 32, 39
+ orig: 32, 39
+ offset: 0, 0
+ index: -1
+3675
+ rotate: false
+ xy: 607, 469
+ size: 32, 39
+ orig: 32, 39
+ offset: 0, 0
+ index: -1
+3684
+ rotate: false
+ xy: 387, 677
+ size: 64, 39
+ orig: 64, 39
+ offset: 0, 0
+ index: -1
+4370
+ rotate: false
+ xy: 307, 725
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4371
+ rotate: false
+ xy: 341, 725
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4457
+ rotate: false
+ xy: 2, 854
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4502
+ rotate: false
+ xy: 2, 788
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4505
+ rotate: false
+ xy: 2, 722
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4507
+ rotate: false
+ xy: 2, 656
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4509
+ rotate: false
+ xy: 2, 590
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4510
+ rotate: false
+ xy: 2, 524
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4512
+ rotate: false
+ xy: 2, 458
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4515
+ rotate: false
+ xy: 2, 392
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4598
+ rotate: false
+ xy: 2, 326
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+473
+ rotate: false
+ xy: 990, 84
+ size: 32, 55
+ orig: 32, 55
+ offset: 0, 0
+ index: -1
+477
+ rotate: false
+ xy: 990, 27
+ size: 32, 55
+ orig: 32, 55
+ offset: 0, 0
+ index: -1
+4806
+ rotate: false
+ xy: 967, 438
+ size: 55, 50
+ orig: 55, 50
+ offset: 0, 0
+ index: -1
+4813
+ rotate: false
+ xy: 967, 386
+ size: 55, 50
+ orig: 55, 50
+ offset: 0, 0
+ index: -1
+4814
+ rotate: false
+ xy: 967, 334
+ size: 55, 50
+ orig: 55, 50
+ offset: 0, 0
+ index: -1
+4821
+ rotate: false
+ xy: 967, 282
+ size: 55, 50
+ orig: 55, 50
+ offset: 0, 0
+ index: -1
+4822
+ rotate: false
+ xy: 967, 230
+ size: 55, 50
+ orig: 55, 50
+ offset: 0, 0
+ index: -1
+4829
+ rotate: false
+ xy: 967, 178
+ size: 55, 50
+ orig: 55, 50
+ offset: 0, 0
+ index: -1
+4898
+ rotate: false
+ xy: 2, 260
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4941
+ rotate: false
+ xy: 2, 194
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4943
+ rotate: false
+ xy: 2, 128
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4944
+ rotate: false
+ xy: 2, 62
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4946
+ rotate: false
+ xy: 68, 854
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4947
+ rotate: false
+ xy: 68, 788
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4949
+ rotate: false
+ xy: 68, 722
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4950
+ rotate: false
+ xy: 68, 656
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4952
+ rotate: false
+ xy: 68, 590
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4953
+ rotate: false
+ xy: 68, 524
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4955
+ rotate: false
+ xy: 68, 458
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4956
+ rotate: false
+ xy: 68, 392
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4958
+ rotate: false
+ xy: 68, 326
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4959
+ rotate: false
+ xy: 68, 260
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4961
+ rotate: false
+ xy: 68, 194
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4962
+ rotate: false
+ xy: 68, 128
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+4964
+ rotate: false
+ xy: 68, 62
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+5479
+ rotate: false
+ xy: 332, 688
+ size: 53, 35
+ orig: 53, 35
+ offset: 0, 0
+ index: -1
+5480
+ rotate: false
+ xy: 486, 681
+ size: 53, 35
+ orig: 53, 35
+ offset: 0, 0
+ index: -1
+5483
+ rotate: false
+ xy: 398, 640
+ size: 53, 35
+ orig: 53, 35
+ offset: 0, 0
+ index: -1
+5484
+ rotate: false
+ xy: 969, 638
+ size: 53, 35
+ orig: 53, 35
+ offset: 0, 0
+ index: -1
+5487
+ rotate: false
+ xy: 486, 644
+ size: 53, 35
+ orig: 53, 35
+ offset: 0, 0
+ index: -1
+5488
+ rotate: false
+ xy: 398, 603
+ size: 53, 35
+ orig: 53, 35
+ offset: 0, 0
+ index: -1
+5491
+ rotate: false
+ xy: 969, 601
+ size: 53, 35
+ orig: 53, 35
+ offset: 0, 0
+ index: -1
+5765
+ rotate: false
+ xy: 453, 663
+ size: 31, 53
+ orig: 31, 53
+ offset: 0, 0
+ index: -1
+5985
+ rotate: false
+ xy: 134, 869
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5986
+ rotate: false
+ xy: 134, 817
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5989
+ rotate: false
+ xy: 288, 724
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5990
+ rotate: false
+ xy: 266, 724
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5993
+ rotate: false
+ xy: 727, 244
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+61
+ rotate: false
+ xy: 530, 403
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+6565
+ rotate: false
+ xy: 134, 710
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+6714
+ rotate: false
+ xy: 2, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6718
+ rotate: false
+ xy: 100, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+6937
+ rotate: false
+ xy: 134, 62
+ size: 75, 52
+ orig: 75, 52
+ offset: 0, 0
+ index: -1
+6938
+ rotate: false
+ xy: 211, 62
+ size: 75, 52
+ orig: 75, 52
+ offset: 0, 0
+ index: -1
+7102
+ rotate: false
+ xy: 198, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7105
+ rotate: false
+ xy: 296, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7108
+ rotate: false
+ xy: 394, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7139
+ rotate: false
+ xy: 492, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7141
+ rotate: false
+ xy: 590, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7143
+ rotate: false
+ xy: 688, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7147
+ rotate: false
+ xy: 786, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7158
+ rotate: false
+ xy: 884, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7287
+ rotate: false
+ xy: 2, 956
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7289
+ rotate: false
+ xy: 100, 956
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7295
+ rotate: false
+ xy: 198, 956
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7297
+ rotate: false
+ xy: 296, 956
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7303
+ rotate: false
+ xy: 394, 956
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7305
+ rotate: false
+ xy: 492, 956
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7317
+ rotate: false
+ xy: 590, 956
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7320
+ rotate: false
+ xy: 688, 956
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7322
+ rotate: false
+ xy: 786, 956
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7324
+ rotate: false
+ xy: 884, 956
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7326
+ rotate: false
+ xy: 156, 922
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7332
+ rotate: false
+ xy: 254, 922
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7334
+ rotate: false
+ xy: 352, 922
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+734
+ rotate: false
+ xy: 530, 337
+ size: 32, 64
+ orig: 32, 64
+ offset: 0, 0
+ index: -1
+7340
+ rotate: false
+ xy: 450, 922
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7342
+ rotate: false
+ xy: 548, 922
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7351
+ rotate: false
+ xy: 646, 922
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7353
+ rotate: false
+ xy: 744, 922
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7356
+ rotate: false
+ xy: 842, 922
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7358
+ rotate: false
+ xy: 156, 888
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7369
+ rotate: false
+ xy: 254, 888
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7372
+ rotate: false
+ xy: 352, 888
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7374
+ rotate: false
+ xy: 450, 888
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7413
+ rotate: false
+ xy: 548, 888
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7417
+ rotate: false
+ xy: 646, 888
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7421
+ rotate: false
+ xy: 744, 888
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7425
+ rotate: false
+ xy: 842, 888
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7430
+ rotate: false
+ xy: 156, 854
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7434
+ rotate: false
+ xy: 254, 854
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7438
+ rotate: false
+ xy: 352, 854
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7442
+ rotate: false
+ xy: 450, 854
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7477
+ rotate: false
+ xy: 548, 854
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7481
+ rotate: false
+ xy: 646, 854
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7485
+ rotate: false
+ xy: 744, 854
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7489
+ rotate: false
+ xy: 842, 854
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7510
+ rotate: false
+ xy: 156, 820
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7514
+ rotate: false
+ xy: 254, 820
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7518
+ rotate: false
+ xy: 352, 820
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7522
+ rotate: false
+ xy: 450, 820
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7557
+ rotate: false
+ xy: 548, 820
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7561
+ rotate: false
+ xy: 646, 820
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7565
+ rotate: false
+ xy: 744, 820
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7569
+ rotate: false
+ xy: 842, 820
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7574
+ rotate: false
+ xy: 310, 786
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7578
+ rotate: false
+ xy: 408, 786
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7582
+ rotate: false
+ xy: 506, 786
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7586
+ rotate: false
+ xy: 604, 786
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7621
+ rotate: false
+ xy: 702, 786
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7625
+ rotate: false
+ xy: 800, 786
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7629
+ rotate: false
+ xy: 310, 752
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7633
+ rotate: false
+ xy: 408, 752
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7638
+ rotate: false
+ xy: 506, 752
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7642
+ rotate: false
+ xy: 604, 752
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7646
+ rotate: false
+ xy: 702, 752
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7650
+ rotate: false
+ xy: 800, 752
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7689
+ rotate: false
+ xy: 387, 718
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7693
+ rotate: false
+ xy: 485, 718
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7697
+ rotate: false
+ xy: 583, 718
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7701
+ rotate: false
+ xy: 681, 718
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7738
+ rotate: false
+ xy: 779, 718
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7742
+ rotate: false
+ xy: 877, 718
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7746
+ rotate: false
+ xy: 541, 684
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7750
+ rotate: false
+ xy: 639, 684
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7785
+ rotate: false
+ xy: 737, 684
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7789
+ rotate: false
+ xy: 835, 684
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7793
+ rotate: false
+ xy: 541, 650
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7797
+ rotate: false
+ xy: 639, 650
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7802
+ rotate: false
+ xy: 737, 650
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7806
+ rotate: false
+ xy: 835, 650
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7810
+ rotate: false
+ xy: 541, 616
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7814
+ rotate: false
+ xy: 639, 616
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7849
+ rotate: false
+ xy: 737, 616
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7853
+ rotate: false
+ xy: 835, 616
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7857
+ rotate: false
+ xy: 541, 582
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7861
+ rotate: false
+ xy: 639, 582
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7866
+ rotate: false
+ xy: 737, 582
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7870
+ rotate: false
+ xy: 835, 582
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7874
+ rotate: false
+ xy: 541, 548
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7878
+ rotate: false
+ xy: 639, 548
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7913
+ rotate: false
+ xy: 737, 548
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7917
+ rotate: false
+ xy: 835, 548
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7921
+ rotate: false
+ xy: 747, 514
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7925
+ rotate: false
+ xy: 747, 480
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7930
+ rotate: false
+ xy: 747, 446
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7934
+ rotate: false
+ xy: 747, 412
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7938
+ rotate: false
+ xy: 747, 378
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7942
+ rotate: false
+ xy: 747, 344
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7962
+ rotate: false
+ xy: 747, 310
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7966
+ rotate: false
+ xy: 747, 276
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7970
+ rotate: false
+ xy: 747, 242
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+7974
+ rotate: false
+ xy: 747, 58
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8534
+ rotate: false
+ xy: 786, 192
+ size: 57, 48
+ orig: 57, 48
+ offset: 0, 0
+ index: -1
+8535
+ rotate: false
+ xy: 786, 142
+ size: 57, 48
+ orig: 57, 48
+ offset: 0, 0
+ index: -1
+8541
+ rotate: false
+ xy: 786, 92
+ size: 57, 48
+ orig: 57, 48
+ offset: 0, 0
+ index: -1
+8608
+ rotate: false
+ xy: 134, 644
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8612
+ rotate: false
+ xy: 134, 578
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+8616
+ rotate: false
+ xy: 134, 512
+ size: 64, 64
+ orig: 64, 64
+ offset: 0, 0
+ index: -1
+94
+ rotate: false
+ xy: 450, 469
+ size: 70, 35
+ orig: 70, 35
+ offset: 0, 0
+ index: -1
+9874
+ rotate: false
+ xy: 2, 921
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+9878
+ rotate: false
+ xy: 70, 921
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+
+images73.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10003
+ rotate: false
+ xy: 455, 296
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+10011
+ rotate: false
+ xy: 553, 330
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+10019
+ rotate: false
+ xy: 455, 262
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+10027
+ rotate: false
+ xy: 553, 296
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+10473
+ rotate: false
+ xy: 455, 161
+ size: 96, 31
+ orig: 96, 31
+ offset: 0, 0
+ index: -1
+10481
+ rotate: false
+ xy: 553, 161
+ size: 96, 31
+ orig: 96, 31
+ offset: 0, 0
+ index: -1
+10489
+ rotate: false
+ xy: 259, 128
+ size: 96, 31
+ orig: 96, 31
+ offset: 0, 0
+ index: -1
+10497
+ rotate: false
+ xy: 357, 128
+ size: 96, 31
+ orig: 96, 31
+ offset: 0, 0
+ index: -1
+12032
+ rotate: false
+ xy: 182, 518
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+12035
+ rotate: false
+ xy: 182, 466
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+12036
+ rotate: false
+ xy: 182, 414
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+12039
+ rotate: false
+ xy: 182, 362
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+12040
+ rotate: false
+ xy: 182, 310
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+12043
+ rotate: false
+ xy: 182, 258
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+12044
+ rotate: false
+ xy: 182, 206
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+12047
+ rotate: false
+ xy: 177, 107
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+12052
+ rotate: false
+ xy: 177, 55
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+12055
+ rotate: false
+ xy: 932, 868
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+12056
+ rotate: false
+ xy: 651, 717
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+12059
+ rotate: false
+ xy: 651, 665
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+12060
+ rotate: false
+ xy: 651, 613
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+12063
+ rotate: false
+ xy: 651, 561
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+12064
+ rotate: false
+ xy: 651, 509
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+12067
+ rotate: false
+ xy: 651, 457
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+13391
+ rotate: false
+ xy: 455, 228
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13393
+ rotate: false
+ xy: 553, 262
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13399
+ rotate: false
+ xy: 455, 194
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13401
+ rotate: false
+ xy: 553, 228
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13407
+ rotate: false
+ xy: 553, 194
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13409
+ rotate: false
+ xy: 455, 127
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13421
+ rotate: false
+ xy: 553, 127
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13424
+ rotate: false
+ xy: 254, 94
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13426
+ rotate: false
+ xy: 254, 60
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13428
+ rotate: false
+ xy: 352, 94
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13430
+ rotate: false
+ xy: 352, 60
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13436
+ rotate: false
+ xy: 293, 26
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13438
+ rotate: false
+ xy: 450, 93
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13444
+ rotate: false
+ xy: 548, 93
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13446
+ rotate: false
+ xy: 450, 59
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13455
+ rotate: false
+ xy: 548, 59
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13457
+ rotate: false
+ xy: 450, 25
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13460
+ rotate: false
+ xy: 548, 25
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13462
+ rotate: false
+ xy: 736, 889
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13473
+ rotate: false
+ xy: 834, 889
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13476
+ rotate: false
+ xy: 736, 855
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13478
+ rotate: false
+ xy: 834, 855
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13485
+ rotate: false
+ xy: 733, 821
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13489
+ rotate: false
+ xy: 831, 821
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13493
+ rotate: false
+ xy: 733, 787
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13497
+ rotate: false
+ xy: 831, 787
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13516
+ rotate: false
+ xy: 733, 753
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13520
+ rotate: false
+ xy: 831, 753
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13524
+ rotate: false
+ xy: 728, 719
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13528
+ rotate: false
+ xy: 728, 685
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13533
+ rotate: false
+ xy: 826, 719
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13537
+ rotate: false
+ xy: 728, 651
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13541
+ rotate: false
+ xy: 826, 685
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+13545
+ rotate: false
+ xy: 728, 617
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+14034
+ rotate: false
+ xy: 2, 974
+ size: 93, 48
+ orig: 93, 48
+ offset: 0, 0
+ index: -1
+14035
+ rotate: false
+ xy: 2, 924
+ size: 93, 48
+ orig: 93, 48
+ offset: 0, 0
+ index: -1
+14040
+ rotate: false
+ xy: 97, 974
+ size: 93, 48
+ orig: 93, 48
+ offset: 0, 0
+ index: -1
+14041
+ rotate: false
+ xy: 2, 874
+ size: 93, 48
+ orig: 93, 48
+ offset: 0, 0
+ index: -1
+14045
+ rotate: false
+ xy: 97, 924
+ size: 93, 48
+ orig: 93, 48
+ offset: 0, 0
+ index: -1
+14046
+ rotate: false
+ xy: 192, 974
+ size: 93, 48
+ orig: 93, 48
+ offset: 0, 0
+ index: -1
+14578
+ rotate: false
+ xy: 923, 265
+ size: 76, 45
+ orig: 76, 45
+ offset: 0, 0
+ index: -1
+14584
+ rotate: false
+ xy: 940, 14
+ size: 76, 45
+ orig: 76, 45
+ offset: 0, 0
+ index: -1
+18416
+ rotate: false
+ xy: 826, 651
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18420
+ rotate: false
+ xy: 728, 583
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18424
+ rotate: false
+ xy: 826, 617
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18428
+ rotate: false
+ xy: 728, 549
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18463
+ rotate: false
+ xy: 826, 583
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18467
+ rotate: false
+ xy: 728, 515
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18471
+ rotate: false
+ xy: 826, 549
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18475
+ rotate: false
+ xy: 728, 481
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18710
+ rotate: false
+ xy: 826, 515
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18712
+ rotate: false
+ xy: 728, 447
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18718
+ rotate: false
+ xy: 826, 481
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18720
+ rotate: false
+ xy: 728, 413
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18726
+ rotate: false
+ xy: 826, 447
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18728
+ rotate: false
+ xy: 728, 379
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18740
+ rotate: false
+ xy: 826, 413
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18743
+ rotate: false
+ xy: 826, 379
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18763
+ rotate: false
+ xy: 826, 379
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18745
+ rotate: false
+ xy: 728, 345
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18765
+ rotate: false
+ xy: 728, 345
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18747
+ rotate: false
+ xy: 826, 345
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18755
+ rotate: false
+ xy: 826, 345
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18749
+ rotate: false
+ xy: 727, 311
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18757
+ rotate: false
+ xy: 727, 311
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18774
+ rotate: false
+ xy: 727, 277
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18776
+ rotate: false
+ xy: 825, 311
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18779
+ rotate: false
+ xy: 825, 277
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18781
+ rotate: false
+ xy: 727, 243
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18792
+ rotate: false
+ xy: 825, 243
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18795
+ rotate: false
+ xy: 725, 209
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18797
+ rotate: false
+ xy: 725, 175
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18912
+ rotate: false
+ xy: 823, 209
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18960
+ rotate: false
+ xy: 823, 209
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18916
+ rotate: false
+ xy: 823, 175
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18964
+ rotate: false
+ xy: 823, 175
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18920
+ rotate: false
+ xy: 725, 141
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18968
+ rotate: false
+ xy: 725, 141
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18924
+ rotate: false
+ xy: 823, 141
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18972
+ rotate: false
+ xy: 823, 141
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18943
+ rotate: false
+ xy: 725, 107
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18947
+ rotate: false
+ xy: 823, 107
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18951
+ rotate: false
+ xy: 724, 73
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+18955
+ rotate: false
+ xy: 724, 39
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+1911
+ rotate: false
+ xy: 2, 74
+ size: 75, 51
+ orig: 75, 51
+ offset: 0, 0
+ index: -1
+1941
+ rotate: false
+ xy: 2, 127
+ size: 75, 53
+ orig: 75, 53
+ offset: 0, 0
+ index: -1
+20097
+ rotate: false
+ xy: 651, 304
+ size: 74, 49
+ orig: 74, 49
+ offset: 0, 0
+ index: -1
+20100
+ rotate: false
+ xy: 651, 406
+ size: 75, 49
+ orig: 75, 49
+ offset: 0, 0
+ index: -1
+20101
+ rotate: false
+ xy: 651, 253
+ size: 74, 49
+ orig: 74, 49
+ offset: 0, 0
+ index: -1
+20104
+ rotate: false
+ xy: 651, 355
+ size: 75, 49
+ orig: 75, 49
+ offset: 0, 0
+ index: -1
+20116
+ rotate: false
+ xy: 2, 598
+ size: 80, 50
+ orig: 80, 50
+ offset: 0, 0
+ index: -1
+20117
+ rotate: false
+ xy: 2, 546
+ size: 80, 50
+ orig: 80, 50
+ offset: 0, 0
+ index: -1
+20120
+ rotate: false
+ xy: 2, 494
+ size: 80, 50
+ orig: 80, 50
+ offset: 0, 0
+ index: -1
+20121
+ rotate: false
+ xy: 2, 442
+ size: 80, 50
+ orig: 80, 50
+ offset: 0, 0
+ index: -1
+20124
+ rotate: false
+ xy: 2, 390
+ size: 80, 50
+ orig: 80, 50
+ offset: 0, 0
+ index: -1
+2142
+ rotate: false
+ xy: 651, 120
+ size: 72, 31
+ orig: 72, 31
+ offset: 0, 0
+ index: -1
+2143
+ rotate: false
+ xy: 737, 957
+ size: 96, 31
+ orig: 96, 31
+ offset: 0, 0
+ index: -1
+2151
+ rotate: false
+ xy: 835, 957
+ size: 96, 31
+ orig: 96, 31
+ offset: 0, 0
+ index: -1
+2159
+ rotate: false
+ xy: 287, 943
+ size: 96, 31
+ orig: 96, 31
+ offset: 0, 0
+ index: -1
+2167
+ rotate: false
+ xy: 385, 943
+ size: 96, 31
+ orig: 96, 31
+ offset: 0, 0
+ index: -1
+21874
+ rotate: false
+ xy: 97, 876
+ size: 88, 46
+ orig: 88, 46
+ offset: 0, 0
+ index: -1
+21877
+ rotate: false
+ xy: 192, 926
+ size: 88, 46
+ orig: 88, 46
+ offset: 0, 0
+ index: -1
+21879
+ rotate: false
+ xy: 287, 976
+ size: 88, 46
+ orig: 88, 46
+ offset: 0, 0
+ index: -1
+21882
+ rotate: false
+ xy: 377, 976
+ size: 88, 46
+ orig: 88, 46
+ offset: 0, 0
+ index: -1
+21884
+ rotate: false
+ xy: 467, 976
+ size: 88, 46
+ orig: 88, 46
+ offset: 0, 0
+ index: -1
+21887
+ rotate: false
+ xy: 557, 976
+ size: 88, 46
+ orig: 88, 46
+ offset: 0, 0
+ index: -1
+21889
+ rotate: false
+ xy: 647, 976
+ size: 88, 46
+ orig: 88, 46
+ offset: 0, 0
+ index: -1
+21911
+ rotate: false
+ xy: 724, 2
+ size: 70, 35
+ orig: 70, 35
+ offset: 0, 0
+ index: -1
+21914
+ rotate: false
+ xy: 796, 2
+ size: 70, 35
+ orig: 70, 35
+ offset: 0, 0
+ index: -1
+21917
+ rotate: false
+ xy: 868, 2
+ size: 70, 35
+ orig: 70, 35
+ offset: 0, 0
+ index: -1
+22071
+ rotate: false
+ xy: 822, 73
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22077
+ rotate: false
+ xy: 822, 39
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22097
+ rotate: false
+ xy: 921, 197
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22106
+ rotate: false
+ xy: 921, 163
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22111
+ rotate: false
+ xy: 921, 129
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22115
+ rotate: false
+ xy: 921, 95
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22120
+ rotate: false
+ xy: 920, 61
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22257
+ rotate: false
+ xy: 2, 338
+ size: 80, 50
+ orig: 80, 50
+ offset: 0, 0
+ index: -1
+22258
+ rotate: false
+ xy: 2, 286
+ size: 80, 50
+ orig: 80, 50
+ offset: 0, 0
+ index: -1
+2226
+ rotate: false
+ xy: 2, 818
+ size: 80, 54
+ orig: 80, 54
+ offset: 0, 0
+ index: -1
+22261
+ rotate: false
+ xy: 2, 234
+ size: 80, 50
+ orig: 80, 50
+ offset: 0, 0
+ index: -1
+22262
+ rotate: false
+ xy: 2, 182
+ size: 80, 50
+ orig: 80, 50
+ offset: 0, 0
+ index: -1
+2233
+ rotate: false
+ xy: 2, 762
+ size: 80, 54
+ orig: 80, 54
+ offset: 0, 0
+ index: -1
+2234
+ rotate: false
+ xy: 2, 706
+ size: 80, 54
+ orig: 80, 54
+ offset: 0, 0
+ index: -1
+2241
+ rotate: false
+ xy: 2, 650
+ size: 80, 54
+ orig: 80, 54
+ offset: 0, 0
+ index: -1
+2262
+ rotate: false
+ xy: 2, 22
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+2265
+ rotate: false
+ xy: 933, 972
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+2266
+ rotate: false
+ xy: 933, 920
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+2269
+ rotate: false
+ xy: 182, 778
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+2270
+ rotate: false
+ xy: 182, 726
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+2273
+ rotate: false
+ xy: 182, 674
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+2274
+ rotate: false
+ xy: 182, 622
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+2277
+ rotate: false
+ xy: 182, 570
+ size: 75, 50
+ orig: 75, 50
+ offset: 0, 0
+ index: -1
+2366
+ rotate: false
+ xy: 97, 842
+ size: 95, 32
+ orig: 95, 32
+ offset: 0, 0
+ index: -1
+2374
+ rotate: false
+ xy: 923, 231
+ size: 95, 32
+ orig: 95, 32
+ offset: 0, 0
+ index: -1
+2408
+ rotate: false
+ xy: 177, 2
+ size: 56, 51
+ orig: 56, 51
+ offset: 0, 0
+ index: -1
+2411
+ rotate: false
+ xy: 235, 2
+ size: 56, 51
+ orig: 56, 51
+ offset: 0, 0
+ index: -1
+2423
+ rotate: false
+ xy: 651, 203
+ size: 72, 48
+ orig: 72, 48
+ offset: 0, 0
+ index: -1
+2428
+ rotate: false
+ xy: 651, 153
+ size: 72, 48
+ orig: 72, 48
+ offset: 0, 0
+ index: -1
+2451
+ rotate: false
+ xy: 662, 769
+ size: 69, 48
+ orig: 69, 48
+ offset: 0, 0
+ index: -1
+2688
+ rotate: false
+ xy: 924, 691
+ size: 75, 46
+ orig: 75, 46
+ offset: 0, 0
+ index: -1
+2694
+ rotate: false
+ xy: 924, 643
+ size: 75, 46
+ orig: 75, 46
+ offset: 0, 0
+ index: -1
+2700
+ rotate: false
+ xy: 924, 595
+ size: 75, 46
+ orig: 75, 46
+ offset: 0, 0
+ index: -1
+2706
+ rotate: false
+ xy: 924, 547
+ size: 75, 46
+ orig: 75, 46
+ offset: 0, 0
+ index: -1
+2745
+ rotate: false
+ xy: 192, 878
+ size: 76, 46
+ orig: 76, 46
+ offset: 0, 0
+ index: -1
+2747
+ rotate: false
+ xy: 194, 830
+ size: 74, 46
+ orig: 74, 46
+ offset: 0, 0
+ index: -1
+2752
+ rotate: false
+ xy: 646, 72
+ size: 76, 46
+ orig: 76, 46
+ offset: 0, 0
+ index: -1
+2759
+ rotate: false
+ xy: 646, 24
+ size: 76, 46
+ orig: 76, 46
+ offset: 0, 0
+ index: -1
+2766
+ rotate: false
+ xy: 929, 739
+ size: 76, 46
+ orig: 76, 46
+ offset: 0, 0
+ index: -1
+2908
+ rotate: false
+ xy: 674, 874
+ size: 60, 50
+ orig: 60, 50
+ offset: 0, 0
+ index: -1
+5747
+ rotate: false
+ xy: 929, 787
+ size: 93, 32
+ orig: 93, 32
+ offset: 0, 0
+ index: -1
+5766
+ rotate: false
+ xy: 662, 819
+ size: 69, 53
+ orig: 69, 53
+ offset: 0, 0
+ index: -1
+5994
+ rotate: false
+ xy: 1001, 687
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+5997
+ rotate: false
+ xy: 1001, 635
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6567
+ rotate: false
+ xy: 1001, 583
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6570
+ rotate: false
+ xy: 1001, 531
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6571
+ rotate: false
+ xy: 1001, 479
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6574
+ rotate: false
+ xy: 1001, 427
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6817
+ rotate: false
+ xy: 1001, 375
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6820
+ rotate: false
+ xy: 1001, 323
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6944
+ rotate: false
+ xy: 1001, 271
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+8009
+ rotate: false
+ xy: 737, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8013
+ rotate: false
+ xy: 835, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8017
+ rotate: false
+ xy: 483, 942
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8021
+ rotate: false
+ xy: 581, 942
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8026
+ rotate: false
+ xy: 737, 923
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8030
+ rotate: false
+ xy: 835, 923
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8034
+ rotate: false
+ xy: 282, 909
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8038
+ rotate: false
+ xy: 380, 909
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8073
+ rotate: false
+ xy: 478, 908
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8077
+ rotate: false
+ xy: 576, 908
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8081
+ rotate: false
+ xy: 84, 808
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8085
+ rotate: false
+ xy: 84, 774
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8090
+ rotate: false
+ xy: 84, 740
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8094
+ rotate: false
+ xy: 84, 706
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8098
+ rotate: false
+ xy: 84, 672
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8102
+ rotate: false
+ xy: 84, 638
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8136
+ rotate: false
+ xy: 84, 604
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8140
+ rotate: false
+ xy: 84, 570
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8144
+ rotate: false
+ xy: 84, 536
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8148
+ rotate: false
+ xy: 84, 502
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8186
+ rotate: false
+ xy: 84, 468
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8190
+ rotate: false
+ xy: 84, 434
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8194
+ rotate: false
+ xy: 84, 400
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8542
+ rotate: false
+ xy: 391, 10
+ size: 57, 48
+ orig: 57, 48
+ offset: 0, 0
+ index: -1
+8690
+ rotate: false
+ xy: 84, 366
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8692
+ rotate: false
+ xy: 84, 332
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8719
+ rotate: false
+ xy: 84, 298
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8721
+ rotate: false
+ xy: 84, 264
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+873
+ rotate: false
+ xy: 679, 926
+ size: 56, 48
+ orig: 56, 48
+ offset: 0, 0
+ index: -1
+8730
+ rotate: false
+ xy: 84, 230
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8732
+ rotate: false
+ xy: 84, 196
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8759
+ rotate: false
+ xy: 84, 162
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8761
+ rotate: false
+ xy: 79, 128
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8770
+ rotate: false
+ xy: 79, 94
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8772
+ rotate: false
+ xy: 79, 60
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8799
+ rotate: false
+ xy: 79, 26
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8801
+ rotate: false
+ xy: 270, 875
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8810
+ rotate: false
+ xy: 368, 875
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8812
+ rotate: false
+ xy: 466, 874
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+882
+ rotate: false
+ xy: 182, 159
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+883
+ rotate: false
+ xy: 932, 821
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+8839
+ rotate: false
+ xy: 564, 874
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8841
+ rotate: false
+ xy: 270, 841
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8850
+ rotate: false
+ xy: 368, 841
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8852
+ rotate: false
+ xy: 466, 840
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8879
+ rotate: false
+ xy: 564, 840
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+888
+ rotate: false
+ xy: 924, 500
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+8881
+ rotate: false
+ xy: 270, 807
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+889
+ rotate: false
+ xy: 924, 453
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+8890
+ rotate: false
+ xy: 368, 807
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8892
+ rotate: false
+ xy: 466, 806
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8919
+ rotate: false
+ xy: 564, 806
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8921
+ rotate: false
+ xy: 259, 773
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8930
+ rotate: false
+ xy: 357, 773
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8932
+ rotate: false
+ xy: 259, 739
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+894
+ rotate: false
+ xy: 924, 406
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+895
+ rotate: false
+ xy: 924, 359
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+8959
+ rotate: false
+ xy: 357, 739
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8961
+ rotate: false
+ xy: 259, 705
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8970
+ rotate: false
+ xy: 357, 705
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+8972
+ rotate: false
+ xy: 259, 671
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+899
+ rotate: false
+ xy: 924, 312
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+8999
+ rotate: false
+ xy: 357, 671
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9001
+ rotate: false
+ xy: 259, 637
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9010
+ rotate: false
+ xy: 357, 637
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9012
+ rotate: false
+ xy: 259, 603
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9039
+ rotate: false
+ xy: 357, 603
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9041
+ rotate: false
+ xy: 259, 569
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9050
+ rotate: false
+ xy: 357, 569
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9052
+ rotate: false
+ xy: 259, 535
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9079
+ rotate: false
+ xy: 357, 535
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9081
+ rotate: false
+ xy: 259, 501
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9089
+ rotate: false
+ xy: 357, 501
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9092
+ rotate: false
+ xy: 259, 467
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9095
+ rotate: false
+ xy: 357, 467
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9105
+ rotate: false
+ xy: 259, 433
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9108
+ rotate: false
+ xy: 357, 433
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9111
+ rotate: false
+ xy: 259, 399
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9116
+ rotate: false
+ xy: 357, 399
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9119
+ rotate: false
+ xy: 259, 365
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9122
+ rotate: false
+ xy: 357, 365
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9132
+ rotate: false
+ xy: 259, 331
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9135
+ rotate: false
+ xy: 357, 331
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9138
+ rotate: false
+ xy: 259, 297
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9145
+ rotate: false
+ xy: 357, 297
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9147
+ rotate: false
+ xy: 259, 263
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9150
+ rotate: false
+ xy: 357, 263
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9152
+ rotate: false
+ xy: 259, 229
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9161
+ rotate: false
+ xy: 357, 229
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9163
+ rotate: false
+ xy: 259, 195
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9166
+ rotate: false
+ xy: 357, 195
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9168
+ rotate: false
+ xy: 259, 161
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9177
+ rotate: false
+ xy: 357, 161
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9179
+ rotate: false
+ xy: 455, 772
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9182
+ rotate: false
+ xy: 455, 738
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9184
+ rotate: false
+ xy: 553, 772
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9222
+ rotate: false
+ xy: 455, 704
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9226
+ rotate: false
+ xy: 553, 738
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9230
+ rotate: false
+ xy: 455, 670
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9234
+ rotate: false
+ xy: 553, 704
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9269
+ rotate: false
+ xy: 455, 636
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9273
+ rotate: false
+ xy: 553, 670
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9277
+ rotate: false
+ xy: 455, 602
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9281
+ rotate: false
+ xy: 553, 636
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9286
+ rotate: false
+ xy: 455, 568
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9290
+ rotate: false
+ xy: 553, 602
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9294
+ rotate: false
+ xy: 455, 534
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9298
+ rotate: false
+ xy: 553, 568
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9333
+ rotate: false
+ xy: 455, 500
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9337
+ rotate: false
+ xy: 553, 534
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9341
+ rotate: false
+ xy: 455, 466
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9345
+ rotate: false
+ xy: 553, 500
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9350
+ rotate: false
+ xy: 455, 432
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9414
+ rotate: false
+ xy: 455, 432
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9354
+ rotate: false
+ xy: 553, 466
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9418
+ rotate: false
+ xy: 553, 466
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9358
+ rotate: false
+ xy: 455, 398
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9422
+ rotate: false
+ xy: 455, 398
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9362
+ rotate: false
+ xy: 553, 432
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9426
+ rotate: false
+ xy: 553, 432
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9397
+ rotate: false
+ xy: 455, 364
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9401
+ rotate: false
+ xy: 553, 398
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9405
+ rotate: false
+ xy: 455, 330
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+9409
+ rotate: false
+ xy: 553, 364
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+
+images74.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10002
+ rotate: false
+ xy: 485, 2
+ size: 73, 32
+ orig: 73, 32
+ offset: 0, 0
+ index: -1
+1001
+ rotate: false
+ xy: 233, 833
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1002
+ rotate: false
+ xy: 310, 833
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1006
+ rotate: false
+ xy: 387, 833
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1007
+ rotate: false
+ xy: 516, 788
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1028
+ rotate: false
+ xy: 645, 778
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10446
+ rotate: false
+ xy: 645, 778
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1029
+ rotate: false
+ xy: 722, 734
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10447
+ rotate: false
+ xy: 722, 734
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1034
+ rotate: false
+ xy: 645, 731
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10452
+ rotate: false
+ xy: 645, 731
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1035
+ rotate: false
+ xy: 722, 687
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10453
+ rotate: false
+ xy: 722, 687
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1040
+ rotate: false
+ xy: 851, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10458
+ rotate: false
+ xy: 851, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1041
+ rotate: false
+ xy: 928, 678
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10459
+ rotate: false
+ xy: 928, 678
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1045
+ rotate: false
+ xy: 851, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10463
+ rotate: false
+ xy: 851, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1046
+ rotate: false
+ xy: 928, 631
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10464
+ rotate: false
+ xy: 928, 631
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1103
+ rotate: false
+ xy: 2, 786
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1104
+ rotate: false
+ xy: 79, 786
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1109
+ rotate: false
+ xy: 156, 786
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1110
+ rotate: false
+ xy: 233, 786
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1115
+ rotate: false
+ xy: 310, 786
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1116
+ rotate: false
+ xy: 387, 786
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1120
+ rotate: false
+ xy: 516, 741
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1121
+ rotate: false
+ xy: 645, 684
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1130
+ rotate: false
+ xy: 722, 640
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1131
+ rotate: false
+ xy: 851, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1136
+ rotate: false
+ xy: 928, 584
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1137
+ rotate: false
+ xy: 2, 739
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1142
+ rotate: false
+ xy: 79, 739
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1143
+ rotate: false
+ xy: 156, 739
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1147
+ rotate: false
+ xy: 233, 739
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1148
+ rotate: false
+ xy: 310, 739
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1157
+ rotate: false
+ xy: 387, 739
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1158
+ rotate: false
+ xy: 516, 694
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1163
+ rotate: false
+ xy: 645, 637
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1164
+ rotate: false
+ xy: 722, 593
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1169
+ rotate: false
+ xy: 851, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1170
+ rotate: false
+ xy: 928, 537
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1174
+ rotate: false
+ xy: 851, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1175
+ rotate: false
+ xy: 928, 490
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1184
+ rotate: false
+ xy: 2, 692
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1185
+ rotate: false
+ xy: 79, 692
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1190
+ rotate: false
+ xy: 156, 692
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1191
+ rotate: false
+ xy: 233, 692
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1196
+ rotate: false
+ xy: 310, 692
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1197
+ rotate: false
+ xy: 387, 692
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1201
+ rotate: false
+ xy: 516, 647
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1202
+ rotate: false
+ xy: 645, 590
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12094
+ rotate: false
+ xy: 961, 917
+ size: 54, 52
+ orig: 54, 52
+ offset: 0, 0
+ index: -1
+12097
+ rotate: false
+ xy: 464, 920
+ size: 54, 52
+ orig: 54, 52
+ offset: 0, 0
+ index: -1
+12102
+ rotate: false
+ xy: 464, 866
+ size: 54, 52
+ orig: 54, 52
+ offset: 0, 0
+ index: -1
+1211
+ rotate: false
+ xy: 722, 546
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1212
+ rotate: false
+ xy: 851, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1217
+ rotate: false
+ xy: 928, 443
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1218
+ rotate: false
+ xy: 2, 645
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1223
+ rotate: false
+ xy: 79, 645
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1224
+ rotate: false
+ xy: 156, 645
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1228
+ rotate: false
+ xy: 233, 645
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1229
+ rotate: false
+ xy: 310, 645
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1238
+ rotate: false
+ xy: 387, 645
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1239
+ rotate: false
+ xy: 516, 600
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1244
+ rotate: false
+ xy: 645, 543
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1245
+ rotate: false
+ xy: 722, 499
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1250
+ rotate: false
+ xy: 851, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1251
+ rotate: false
+ xy: 928, 396
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1255
+ rotate: false
+ xy: 516, 553
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1256
+ rotate: false
+ xy: 645, 496
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1265
+ rotate: false
+ xy: 722, 452
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1266
+ rotate: false
+ xy: 2, 598
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1271
+ rotate: false
+ xy: 79, 598
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1272
+ rotate: false
+ xy: 156, 598
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1277
+ rotate: false
+ xy: 233, 598
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1278
+ rotate: false
+ xy: 310, 598
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1282
+ rotate: false
+ xy: 387, 598
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1283
+ rotate: false
+ xy: 2, 551
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1291
+ rotate: false
+ xy: 79, 551
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1292
+ rotate: false
+ xy: 156, 551
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1297
+ rotate: false
+ xy: 233, 551
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1298
+ rotate: false
+ xy: 310, 551
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1303
+ rotate: false
+ xy: 387, 551
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1304
+ rotate: false
+ xy: 516, 506
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1308
+ rotate: false
+ xy: 645, 449
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+1309
+ rotate: false
+ xy: 722, 405
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14037
+ rotate: false
+ xy: 431, 159
+ size: 31, 48
+ orig: 31, 48
+ offset: 0, 0
+ index: -1
+14590
+ rotate: false
+ xy: 520, 977
+ size: 76, 45
+ orig: 76, 45
+ offset: 0, 0
+ index: -1
+14595
+ rotate: false
+ xy: 598, 977
+ size: 76, 45
+ orig: 76, 45
+ offset: 0, 0
+ index: -1
+18331
+ rotate: false
+ xy: 437, 209
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+18336
+ rotate: false
+ xy: 177, 29
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+18372
+ rotate: false
+ xy: 752, 969
+ size: 64, 53
+ orig: 64, 53
+ offset: 0, 0
+ index: -1
+18376
+ rotate: false
+ xy: 672, 921
+ size: 64, 53
+ orig: 64, 53
+ offset: 0, 0
+ index: -1
+18380
+ rotate: false
+ xy: 818, 969
+ size: 64, 53
+ orig: 64, 53
+ offset: 0, 0
+ index: -1
+18384
+ rotate: false
+ xy: 958, 819
+ size: 64, 47
+ orig: 64, 47
+ offset: 0, 0
+ index: -1
+18387
+ rotate: false
+ xy: 669, 872
+ size: 64, 47
+ orig: 64, 47
+ offset: 0, 0
+ index: -1
+18390
+ rotate: false
+ xy: 812, 822
+ size: 64, 47
+ orig: 64, 47
+ offset: 0, 0
+ index: -1
+18825
+ rotate: false
+ xy: 379, 174
+ size: 50, 46
+ orig: 50, 46
+ offset: 0, 0
+ index: -1
+18828
+ rotate: false
+ xy: 793, 46
+ size: 50, 46
+ orig: 50, 46
+ offset: 0, 0
+ index: -1
+18829
+ rotate: false
+ xy: 234, 110
+ size: 50, 46
+ orig: 50, 46
+ offset: 0, 0
+ index: -1
+18832
+ rotate: false
+ xy: 373, 126
+ size: 50, 46
+ orig: 50, 46
+ offset: 0, 0
+ index: -1
+18833
+ rotate: false
+ xy: 460, 94
+ size: 50, 46
+ orig: 50, 46
+ offset: 0, 0
+ index: -1
+18836
+ rotate: false
+ xy: 227, 62
+ size: 50, 46
+ orig: 50, 46
+ offset: 0, 0
+ index: -1
+18837
+ rotate: false
+ xy: 363, 78
+ size: 50, 46
+ orig: 50, 46
+ offset: 0, 0
+ index: -1
+18840
+ rotate: false
+ xy: 223, 14
+ size: 50, 46
+ orig: 50, 46
+ offset: 0, 0
+ index: -1
+18992
+ rotate: false
+ xy: 2, 101
+ size: 34, 28
+ orig: 34, 28
+ offset: 0, 0
+ index: -1
+2002
+ rotate: false
+ xy: 851, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2003
+ rotate: false
+ xy: 928, 349
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2008
+ rotate: false
+ xy: 2, 504
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2009
+ rotate: false
+ xy: 79, 504
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2014
+ rotate: false
+ xy: 156, 504
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2015
+ rotate: false
+ xy: 233, 504
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2019
+ rotate: false
+ xy: 310, 504
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2020
+ rotate: false
+ xy: 387, 504
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2024
+ rotate: false
+ xy: 516, 459
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2025
+ rotate: false
+ xy: 2, 457
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2030
+ rotate: false
+ xy: 79, 457
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2031
+ rotate: false
+ xy: 156, 457
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2036
+ rotate: false
+ xy: 233, 457
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2037
+ rotate: false
+ xy: 310, 457
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2041
+ rotate: false
+ xy: 387, 457
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2042
+ rotate: false
+ xy: 516, 412
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2046
+ rotate: false
+ xy: 645, 402
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2047
+ rotate: false
+ xy: 722, 358
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2052
+ rotate: false
+ xy: 851, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2053
+ rotate: false
+ xy: 928, 302
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2058
+ rotate: false
+ xy: 2, 410
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2059
+ rotate: false
+ xy: 79, 410
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2063
+ rotate: false
+ xy: 156, 410
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2064
+ rotate: false
+ xy: 233, 410
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2068
+ rotate: false
+ xy: 310, 410
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2069
+ rotate: false
+ xy: 387, 410
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2074
+ rotate: false
+ xy: 515, 365
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2075
+ rotate: false
+ xy: 643, 355
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2080
+ rotate: false
+ xy: 720, 311
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2081
+ rotate: false
+ xy: 848, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2085
+ rotate: false
+ xy: 925, 255
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2086
+ rotate: false
+ xy: 2, 363
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2090
+ rotate: false
+ xy: 79, 363
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2091
+ rotate: false
+ xy: 156, 363
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2096
+ rotate: false
+ xy: 233, 363
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2097
+ rotate: false
+ xy: 310, 363
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2102
+ rotate: false
+ xy: 387, 363
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2103
+ rotate: false
+ xy: 515, 318
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2107
+ rotate: false
+ xy: 592, 308
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2108
+ rotate: false
+ xy: 720, 264
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2132
+ rotate: false
+ xy: 425, 104
+ size: 33, 53
+ orig: 33, 53
+ offset: 0, 0
+ index: -1
+21886
+ rotate: false
+ xy: 405, 4
+ size: 44, 46
+ orig: 44, 46
+ offset: 0, 0
+ index: -1
+22036
+ rotate: false
+ xy: 38, 101
+ size: 34, 28
+ orig: 34, 28
+ offset: 0, 0
+ index: -1
+22037
+ rotate: false
+ xy: 74, 101
+ size: 34, 28
+ orig: 34, 28
+ offset: 0, 0
+ index: -1
+22124
+ rotate: false
+ xy: 2, 136
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22129
+ rotate: false
+ xy: 2, 171
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22133
+ rotate: false
+ xy: 2, 208
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22138
+ rotate: false
+ xy: 100, 136
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22142
+ rotate: false
+ xy: 100, 171
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22147
+ rotate: false
+ xy: 100, 208
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22151
+ rotate: false
+ xy: 79, 50
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22156
+ rotate: false
+ xy: 110, 89
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22160
+ rotate: false
+ xy: 198, 158
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+23206
+ rotate: false
+ xy: 198, 125
+ size: 34, 28
+ orig: 34, 28
+ offset: 0, 0
+ index: -1
+23207
+ rotate: false
+ xy: 198, 192
+ size: 34, 28
+ orig: 34, 28
+ offset: 0, 0
+ index: -1
+2363
+ rotate: false
+ xy: 792, 12
+ size: 49, 32
+ orig: 49, 32
+ offset: 0, 0
+ index: -1
+2380
+ rotate: false
+ xy: 843, 3
+ size: 73, 32
+ orig: 73, 32
+ offset: 0, 0
+ index: -1
+2416
+ rotate: false
+ xy: 961, 971
+ size: 56, 51
+ orig: 56, 51
+ offset: 0, 0
+ index: -1
+2431
+ rotate: false
+ xy: 2, 974
+ size: 72, 48
+ orig: 72, 48
+ offset: 0, 0
+ index: -1
+2436
+ rotate: false
+ xy: 76, 974
+ size: 72, 48
+ orig: 72, 48
+ offset: 0, 0
+ index: -1
+2439
+ rotate: false
+ xy: 150, 974
+ size: 72, 48
+ orig: 72, 48
+ offset: 0, 0
+ index: -1
+2443
+ rotate: false
+ xy: 464, 392
+ size: 49, 48
+ orig: 49, 48
+ offset: 0, 0
+ index: -1
+2444
+ rotate: false
+ xy: 224, 974
+ size: 72, 48
+ orig: 72, 48
+ offset: 0, 0
+ index: -1
+2447
+ rotate: false
+ xy: 298, 974
+ size: 72, 48
+ orig: 72, 48
+ offset: 0, 0
+ index: -1
+2448
+ rotate: false
+ xy: 592, 355
+ size: 49, 48
+ orig: 49, 48
+ offset: 0, 0
+ index: -1
+2454
+ rotate: false
+ xy: 797, 294
+ size: 49, 48
+ orig: 49, 48
+ offset: 0, 0
+ index: -1
+2457
+ rotate: false
+ xy: 464, 342
+ size: 49, 48
+ orig: 49, 48
+ offset: 0, 0
+ index: -1
+2460
+ rotate: false
+ xy: 669, 305
+ size: 49, 48
+ orig: 49, 48
+ offset: 0, 0
+ index: -1
+2463
+ rotate: false
+ xy: 797, 244
+ size: 49, 48
+ orig: 49, 48
+ offset: 0, 0
+ index: -1
+2466
+ rotate: false
+ xy: 464, 142
+ size: 47, 48
+ orig: 47, 48
+ offset: 0, 0
+ index: -1
+2469
+ rotate: false
+ xy: 667, 105
+ size: 47, 48
+ orig: 47, 48
+ offset: 0, 0
+ index: -1
+2472
+ rotate: false
+ xy: 666, 55
+ size: 47, 48
+ orig: 47, 48
+ offset: 0, 0
+ index: -1
+2475
+ rotate: false
+ xy: 356, 28
+ size: 47, 48
+ orig: 47, 48
+ offset: 0, 0
+ index: -1
+2511
+ rotate: false
+ xy: 848, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2512
+ rotate: false
+ xy: 925, 208
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2517
+ rotate: false
+ xy: 2, 316
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2518
+ rotate: false
+ xy: 79, 316
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2523
+ rotate: false
+ xy: 156, 316
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2524
+ rotate: false
+ xy: 233, 316
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2528
+ rotate: false
+ xy: 310, 316
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2529
+ rotate: false
+ xy: 387, 316
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2533
+ rotate: false
+ xy: 515, 271
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2534
+ rotate: false
+ xy: 592, 261
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2539
+ rotate: false
+ xy: 719, 217
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2540
+ rotate: false
+ xy: 846, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2545
+ rotate: false
+ xy: 923, 161
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2546
+ rotate: false
+ xy: 2, 269
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2550
+ rotate: false
+ xy: 79, 269
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2551
+ rotate: false
+ xy: 156, 269
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2555
+ rotate: false
+ xy: 233, 269
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2556
+ rotate: false
+ xy: 310, 269
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2561
+ rotate: false
+ xy: 387, 269
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2562
+ rotate: false
+ xy: 514, 224
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2567
+ rotate: false
+ xy: 591, 214
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2568
+ rotate: false
+ xy: 718, 170
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2572
+ rotate: false
+ xy: 845, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2573
+ rotate: false
+ xy: 922, 114
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2577
+ rotate: false
+ xy: 2, 54
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2578
+ rotate: false
+ xy: 2, 7
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2583
+ rotate: false
+ xy: 206, 222
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2584
+ rotate: false
+ xy: 283, 222
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2589
+ rotate: false
+ xy: 360, 222
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2590
+ rotate: false
+ xy: 514, 177
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2594
+ rotate: false
+ xy: 591, 167
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2595
+ rotate: false
+ xy: 718, 123
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2599
+ rotate: false
+ xy: 845, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2600
+ rotate: false
+ xy: 922, 67
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2605
+ rotate: false
+ xy: 79, 2
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2606
+ rotate: false
+ xy: 302, 175
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2611
+ rotate: false
+ xy: 513, 130
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2612
+ rotate: false
+ xy: 590, 120
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2616
+ rotate: false
+ xy: 716, 76
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2617
+ rotate: false
+ xy: 845, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2620
+ rotate: false
+ xy: 955, 772
+ size: 64, 45
+ orig: 64, 45
+ offset: 0, 0
+ index: -1
+2643
+ rotate: false
+ xy: 922, 2
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2644
+ rotate: false
+ xy: 296, 128
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2649
+ rotate: false
+ xy: 512, 83
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2650
+ rotate: false
+ xy: 589, 73
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2655
+ rotate: false
+ xy: 715, 29
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2656
+ rotate: false
+ xy: 286, 81
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2660
+ rotate: false
+ xy: 279, 34
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2661
+ rotate: false
+ xy: 500, 36
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2665
+ rotate: false
+ xy: 577, 26
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2754
+ rotate: false
+ xy: 676, 976
+ size: 74, 46
+ orig: 74, 46
+ offset: 0, 0
+ index: -1
+2761
+ rotate: false
+ xy: 520, 929
+ size: 74, 46
+ orig: 74, 46
+ offset: 0, 0
+ index: -1
+2768
+ rotate: false
+ xy: 596, 929
+ size: 74, 46
+ orig: 74, 46
+ offset: 0, 0
+ index: -1
+3224
+ rotate: false
+ xy: 415, 52
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3680
+ rotate: false
+ xy: 451, 3
+ size: 32, 39
+ orig: 32, 39
+ offset: 0, 0
+ index: -1
+3841
+ rotate: false
+ xy: 810, 768
+ size: 50, 52
+ orig: 50, 52
+ offset: 0, 0
+ index: -1
+3844
+ rotate: false
+ xy: 464, 812
+ size: 50, 52
+ orig: 50, 52
+ offset: 0, 0
+ index: -1
+3847
+ rotate: false
+ xy: 593, 775
+ size: 50, 52
+ orig: 50, 52
+ offset: 0, 0
+ index: -1
+3849
+ rotate: false
+ xy: 799, 714
+ size: 50, 52
+ orig: 50, 52
+ offset: 0, 0
+ index: -1
+3852
+ rotate: false
+ xy: 799, 660
+ size: 50, 52
+ orig: 50, 52
+ offset: 0, 0
+ index: -1
+3982
+ rotate: false
+ xy: 799, 500
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+3992
+ rotate: false
+ xy: 464, 598
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+4342
+ rotate: false
+ xy: 451, 44
+ size: 47, 48
+ orig: 47, 48
+ offset: 0, 0
+ index: -1
+4349
+ rotate: false
+ xy: 372, 974
+ size: 72, 48
+ orig: 72, 48
+ offset: 0, 0
+ index: -1
+4353
+ rotate: false
+ xy: 654, 5
+ size: 47, 48
+ orig: 47, 48
+ offset: 0, 0
+ index: -1
+4354
+ rotate: false
+ xy: 597, 879
+ size: 70, 48
+ orig: 70, 48
+ offset: 0, 0
+ index: -1
+4358
+ rotate: false
+ xy: 464, 292
+ size: 49, 48
+ orig: 49, 48
+ offset: 0, 0
+ index: -1
+4365
+ rotate: false
+ xy: 446, 974
+ size: 72, 48
+ orig: 72, 48
+ offset: 0, 0
+ index: -1
+4373
+ rotate: false
+ xy: 2, 242
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4374
+ rotate: false
+ xy: 36, 242
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4376
+ rotate: false
+ xy: 70, 242
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4377
+ rotate: false
+ xy: 104, 242
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4379
+ rotate: false
+ xy: 138, 242
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4380
+ rotate: false
+ xy: 172, 242
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4382
+ rotate: false
+ xy: 234, 195
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4383
+ rotate: false
+ xy: 268, 195
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4385
+ rotate: false
+ xy: 156, 2
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4386
+ rotate: false
+ xy: 275, 7
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4388
+ rotate: false
+ xy: 309, 7
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4389
+ rotate: false
+ xy: 703, 2
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4391
+ rotate: false
+ xy: 737, 2
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+4481
+ rotate: false
+ xy: 593, 561
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+4482
+ rotate: false
+ xy: 799, 448
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+6898
+ rotate: false
+ xy: 669, 255
+ size: 48, 48
+ orig: 48, 48
+ offset: 0, 0
+ index: -1
+6901
+ rotate: false
+ xy: 796, 194
+ size: 48, 48
+ orig: 48, 48
+ offset: 0, 0
+ index: -1
+6902
+ rotate: false
+ xy: 464, 242
+ size: 48, 48
+ orig: 48, 48
+ offset: 0, 0
+ index: -1
+6905
+ rotate: false
+ xy: 668, 205
+ size: 48, 48
+ orig: 48, 48
+ offset: 0, 0
+ index: -1
+6906
+ rotate: false
+ xy: 795, 144
+ size: 48, 48
+ orig: 48, 48
+ offset: 0, 0
+ index: -1
+6909
+ rotate: false
+ xy: 464, 192
+ size: 48, 48
+ orig: 48, 48
+ offset: 0, 0
+ index: -1
+6910
+ rotate: false
+ xy: 668, 155
+ size: 48, 48
+ orig: 48, 48
+ offset: 0, 0
+ index: -1
+6913
+ rotate: false
+ xy: 795, 94
+ size: 48, 48
+ orig: 48, 48
+ offset: 0, 0
+ index: -1
+6919
+ rotate: false
+ xy: 464, 758
+ size: 50, 52
+ orig: 50, 52
+ offset: 0, 0
+ index: -1
+6922
+ rotate: false
+ xy: 593, 721
+ size: 50, 52
+ orig: 50, 52
+ offset: 0, 0
+ index: -1
+6925
+ rotate: false
+ xy: 799, 606
+ size: 50, 52
+ orig: 50, 52
+ offset: 0, 0
+ index: -1
+6928
+ rotate: false
+ xy: 464, 704
+ size: 50, 52
+ orig: 50, 52
+ offset: 0, 0
+ index: -1
+6931
+ rotate: false
+ xy: 593, 667
+ size: 50, 52
+ orig: 50, 52
+ offset: 0, 0
+ index: -1
+6934
+ rotate: false
+ xy: 799, 552
+ size: 50, 52
+ orig: 50, 52
+ offset: 0, 0
+ index: -1
+6936
+ rotate: false
+ xy: 464, 650
+ size: 50, 52
+ orig: 50, 52
+ offset: 0, 0
+ index: -1
+6939
+ rotate: false
+ xy: 593, 613
+ size: 50, 52
+ orig: 50, 52
+ offset: 0, 0
+ index: -1
+6947
+ rotate: false
+ xy: 1005, 673
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6948
+ rotate: false
+ xy: 1005, 621
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6951
+ rotate: false
+ xy: 1005, 569
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6952
+ rotate: false
+ xy: 1005, 517
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6955
+ rotate: false
+ xy: 1005, 465
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6956
+ rotate: false
+ xy: 1005, 413
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6959
+ rotate: false
+ xy: 1005, 361
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6960
+ rotate: false
+ xy: 1005, 309
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6963
+ rotate: false
+ xy: 1005, 257
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6994
+ rotate: false
+ xy: 1002, 205
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+6997
+ rotate: false
+ xy: 1000, 153
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7096
+ rotate: false
+ xy: 999, 101
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7099
+ rotate: false
+ xy: 999, 49
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7202
+ rotate: false
+ xy: 208, 73
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7205
+ rotate: false
+ xy: 204, 21
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+8467
+ rotate: false
+ xy: 815, 920
+ size: 64, 47
+ orig: 64, 47
+ offset: 0, 0
+ index: -1
+8470
+ rotate: false
+ xy: 958, 868
+ size: 64, 47
+ orig: 64, 47
+ offset: 0, 0
+ index: -1
+8471
+ rotate: false
+ xy: 815, 871
+ size: 64, 47
+ orig: 64, 47
+ offset: 0, 0
+ index: -1
+8548
+ rotate: false
+ xy: 597, 829
+ size: 57, 48
+ orig: 57, 48
+ offset: 0, 0
+ index: -1
+8583
+ rotate: false
+ xy: 593, 509
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+8585
+ rotate: false
+ xy: 464, 546
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+8587
+ rotate: false
+ xy: 593, 457
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+8589
+ rotate: false
+ xy: 799, 396
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+8591
+ rotate: false
+ xy: 464, 494
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+8593
+ rotate: false
+ xy: 464, 442
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+8595
+ rotate: false
+ xy: 593, 405
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+8597
+ rotate: false
+ xy: 799, 344
+ size: 50, 50
+ orig: 50, 50
+ offset: 0, 0
+ index: -1
+900
+ rotate: false
+ xy: 884, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+908
+ rotate: false
+ xy: 884, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+909
+ rotate: false
+ xy: 738, 922
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+914
+ rotate: false
+ xy: 738, 875
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+915
+ rotate: false
+ xy: 881, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+920
+ rotate: false
+ xy: 881, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+921
+ rotate: false
+ xy: 2, 927
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+925
+ rotate: false
+ xy: 79, 927
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+926
+ rotate: false
+ xy: 156, 927
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+935
+ rotate: false
+ xy: 233, 927
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+936
+ rotate: false
+ xy: 310, 927
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+941
+ rotate: false
+ xy: 387, 927
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+942
+ rotate: false
+ xy: 520, 882
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+947
+ rotate: false
+ xy: 735, 828
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+948
+ rotate: false
+ xy: 878, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+952
+ rotate: false
+ xy: 2, 880
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+953
+ rotate: false
+ xy: 79, 880
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+962
+ rotate: false
+ xy: 156, 880
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+963
+ rotate: false
+ xy: 233, 880
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+968
+ rotate: false
+ xy: 310, 880
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+969
+ rotate: false
+ xy: 387, 880
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+974
+ rotate: false
+ xy: 520, 835
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+975
+ rotate: false
+ xy: 656, 825
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+979
+ rotate: false
+ xy: 733, 781
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+980
+ rotate: false
+ xy: 862, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+989
+ rotate: false
+ xy: 939, 725
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+990
+ rotate: false
+ xy: 2, 833
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+995
+ rotate: false
+ xy: 79, 833
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+996
+ rotate: false
+ xy: 156, 833
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+
+images75.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10004
+ rotate: false
+ xy: 296, 888
+ size: 95, 32
+ orig: 95, 32
+ offset: 0, 0
+ index: -1
+10010
+ rotate: false
+ xy: 541, 50
+ size: 73, 32
+ orig: 73, 32
+ offset: 0, 0
+ index: -1
+10012
+ rotate: false
+ xy: 394, 922
+ size: 95, 32
+ orig: 95, 32
+ offset: 0, 0
+ index: -1
+10018
+ rotate: false
+ xy: 616, 50
+ size: 73, 32
+ orig: 73, 32
+ offset: 0, 0
+ index: -1
+10020
+ rotate: false
+ xy: 492, 956
+ size: 95, 32
+ orig: 95, 32
+ offset: 0, 0
+ index: -1
+10026
+ rotate: false
+ xy: 691, 50
+ size: 73, 32
+ orig: 73, 32
+ offset: 0, 0
+ index: -1
+10028
+ rotate: false
+ xy: 590, 990
+ size: 95, 32
+ orig: 95, 32
+ offset: 0, 0
+ index: -1
+12020
+ rotate: false
+ xy: 305, 2
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+12022
+ rotate: false
+ xy: 339, 2
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+12024
+ rotate: false
+ xy: 2, 7
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+12026
+ rotate: false
+ xy: 914, 54
+ size: 32, 25
+ orig: 32, 25
+ offset: 0, 0
+ index: -1
+12080
+ rotate: false
+ xy: 995, 970
+ size: 27, 52
+ orig: 27, 52
+ offset: 0, 0
+ index: -1
+14038
+ rotate: false
+ xy: 991, 119
+ size: 31, 48
+ orig: 31, 48
+ offset: 0, 0
+ index: -1
+14043
+ rotate: false
+ xy: 991, 69
+ size: 31, 48
+ orig: 31, 48
+ offset: 0, 0
+ index: -1
+1491
+ rotate: false
+ xy: 984, 222
+ size: 32, 50
+ orig: 32, 50
+ offset: 0, 0
+ index: -1
+1503
+ rotate: false
+ xy: 233, 2
+ size: 70, 38
+ orig: 70, 38
+ offset: 0, 0
+ index: -1
+18345
+ rotate: false
+ xy: 849, 635
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+18350
+ rotate: false
+ xy: 849, 575
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+18351
+ rotate: false
+ xy: 849, 515
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+18356
+ rotate: false
+ xy: 849, 455
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+18357
+ rotate: false
+ xy: 849, 395
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+18362
+ rotate: false
+ xy: 849, 335
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+18371
+ rotate: false
+ xy: 876, 405
+ size: 32, 53
+ orig: 32, 53
+ offset: 0, 0
+ index: -1
+18373
+ rotate: false
+ xy: 876, 350
+ size: 32, 53
+ orig: 32, 53
+ offset: 0, 0
+ index: -1
+18375
+ rotate: false
+ xy: 876, 295
+ size: 32, 53
+ orig: 32, 53
+ offset: 0, 0
+ index: -1
+18377
+ rotate: false
+ xy: 876, 240
+ size: 32, 53
+ orig: 32, 53
+ offset: 0, 0
+ index: -1
+18379
+ rotate: false
+ xy: 876, 185
+ size: 32, 53
+ orig: 32, 53
+ offset: 0, 0
+ index: -1
+18381
+ rotate: false
+ xy: 876, 130
+ size: 32, 53
+ orig: 32, 53
+ offset: 0, 0
+ index: -1
+1908
+ rotate: false
+ xy: 987, 169
+ size: 32, 51
+ orig: 32, 51
+ offset: 0, 0
+ index: -1
+1926
+ rotate: false
+ xy: 876, 460
+ size: 25, 53
+ orig: 25, 53
+ offset: 0, 0
+ index: -1
+19651
+ rotate: false
+ xy: 849, 275
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+21831
+ rotate: false
+ xy: 953, 887
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+21834
+ rotate: false
+ xy: 952, 652
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+21837
+ rotate: false
+ xy: 952, 617
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+21840
+ rotate: false
+ xy: 953, 582
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+21843
+ rotate: false
+ xy: 953, 547
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+21851
+ rotate: false
+ xy: 876, 84
+ size: 34, 42
+ orig: 34, 42
+ offset: 0, 0
+ index: -1
+22165
+ rotate: false
+ xy: 2, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22169
+ rotate: false
+ xy: 2, 956
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22174
+ rotate: false
+ xy: 100, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22178
+ rotate: false
+ xy: 2, 922
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22183
+ rotate: false
+ xy: 100, 956
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22187
+ rotate: false
+ xy: 198, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22192
+ rotate: false
+ xy: 2, 888
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22196
+ rotate: false
+ xy: 100, 922
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22201
+ rotate: false
+ xy: 198, 956
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22205
+ rotate: false
+ xy: 296, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22212
+ rotate: false
+ xy: 849, 215
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+22217
+ rotate: false
+ xy: 849, 155
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+22218
+ rotate: false
+ xy: 849, 95
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+22223
+ rotate: false
+ xy: 876, 635
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+22224
+ rotate: false
+ xy: 876, 575
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+22229
+ rotate: false
+ xy: 876, 515
+ size: 25, 58
+ orig: 25, 58
+ offset: 0, 0
+ index: -1
+22240
+ rotate: false
+ xy: 2, 854
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22244
+ rotate: false
+ xy: 100, 888
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22248
+ rotate: false
+ xy: 198, 922
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22252
+ rotate: false
+ xy: 296, 956
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22477
+ rotate: false
+ xy: 394, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22482
+ rotate: false
+ xy: 2, 820
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22487
+ rotate: false
+ xy: 100, 854
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22492
+ rotate: false
+ xy: 198, 888
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22497
+ rotate: false
+ xy: 296, 922
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22502
+ rotate: false
+ xy: 394, 956
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22507
+ rotate: false
+ xy: 492, 990
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+22512
+ rotate: false
+ xy: 2, 786
+ size: 96, 32
+ orig: 96, 32
+ offset: 0, 0
+ index: -1
+2342
+ rotate: false
+ xy: 36, 7
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+2344
+ rotate: false
+ xy: 948, 54
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+2367
+ rotate: false
+ xy: 766, 50
+ size: 72, 32
+ orig: 72, 32
+ offset: 0, 0
+ index: -1
+2375
+ rotate: false
+ xy: 840, 50
+ size: 72, 32
+ orig: 72, 32
+ offset: 0, 0
+ index: -1
+2382
+ rotate: false
+ xy: 100, 820
+ size: 95, 32
+ orig: 95, 32
+ offset: 0, 0
+ index: -1
+2478
+ rotate: false
+ xy: 974, 922
+ size: 48, 46
+ orig: 48, 46
+ offset: 0, 0
+ index: -1
+2479
+ rotate: false
+ xy: 464, 2
+ size: 72, 46
+ orig: 72, 46
+ offset: 0, 0
+ index: -1
+2482
+ rotate: false
+ xy: 538, 2
+ size: 72, 46
+ orig: 72, 46
+ offset: 0, 0
+ index: -1
+2483
+ rotate: false
+ xy: 903, 547
+ size: 48, 46
+ orig: 48, 46
+ offset: 0, 0
+ index: -1
+2486
+ rotate: false
+ xy: 903, 499
+ size: 48, 46
+ orig: 48, 46
+ offset: 0, 0
+ index: -1
+2487
+ rotate: false
+ xy: 612, 2
+ size: 72, 46
+ orig: 72, 46
+ offset: 0, 0
+ index: -1
+2490
+ rotate: false
+ xy: 686, 2
+ size: 72, 46
+ orig: 72, 46
+ offset: 0, 0
+ index: -1
+2491
+ rotate: false
+ xy: 910, 414
+ size: 48, 46
+ orig: 48, 46
+ offset: 0, 0
+ index: -1
+2494
+ rotate: false
+ xy: 910, 366
+ size: 48, 46
+ orig: 48, 46
+ offset: 0, 0
+ index: -1
+2495
+ rotate: false
+ xy: 760, 2
+ size: 72, 46
+ orig: 72, 46
+ offset: 0, 0
+ index: -1
+2498
+ rotate: false
+ xy: 834, 2
+ size: 72, 46
+ orig: 72, 46
+ offset: 0, 0
+ index: -1
+2499
+ rotate: false
+ xy: 910, 318
+ size: 48, 46
+ orig: 48, 46
+ offset: 0, 0
+ index: -1
+2502
+ rotate: false
+ xy: 910, 270
+ size: 48, 46
+ orig: 48, 46
+ offset: 0, 0
+ index: -1
+2503
+ rotate: false
+ xy: 908, 2
+ size: 72, 46
+ orig: 72, 46
+ offset: 0, 0
+ index: -1
+2506
+ rotate: false
+ xy: 910, 222
+ size: 72, 46
+ orig: 72, 46
+ offset: 0, 0
+ index: -1
+2507
+ rotate: false
+ xy: 953, 499
+ size: 48, 46
+ orig: 48, 46
+ offset: 0, 0
+ index: -1
+2666
+ rotate: false
+ xy: 2, 739
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2671
+ rotate: false
+ xy: 2, 692
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2672
+ rotate: false
+ xy: 2, 645
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2677
+ rotate: false
+ xy: 2, 598
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2678
+ rotate: false
+ xy: 2, 551
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2682
+ rotate: false
+ xy: 2, 504
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2683
+ rotate: false
+ xy: 2, 457
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2723
+ rotate: false
+ xy: 2, 410
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2724
+ rotate: false
+ xy: 2, 363
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2729
+ rotate: false
+ xy: 2, 316
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2730
+ rotate: false
+ xy: 2, 269
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2735
+ rotate: false
+ xy: 2, 222
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2736
+ rotate: false
+ xy: 2, 175
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2740
+ rotate: false
+ xy: 2, 128
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2741
+ rotate: false
+ xy: 2, 81
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2773
+ rotate: false
+ xy: 2, 34
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2774
+ rotate: false
+ xy: 100, 773
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2779
+ rotate: false
+ xy: 197, 807
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2780
+ rotate: false
+ xy: 295, 841
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2785
+ rotate: false
+ xy: 393, 875
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2786
+ rotate: false
+ xy: 491, 909
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2790
+ rotate: false
+ xy: 589, 943
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2791
+ rotate: false
+ xy: 687, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2795
+ rotate: false
+ xy: 764, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2796
+ rotate: false
+ xy: 841, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2801
+ rotate: false
+ xy: 918, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2802
+ rotate: false
+ xy: 79, 726
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2807
+ rotate: false
+ xy: 79, 679
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2808
+ rotate: false
+ xy: 79, 632
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2812
+ rotate: false
+ xy: 79, 585
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2813
+ rotate: false
+ xy: 79, 538
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2817
+ rotate: false
+ xy: 79, 491
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2818
+ rotate: false
+ xy: 79, 444
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2823
+ rotate: false
+ xy: 79, 397
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2824
+ rotate: false
+ xy: 79, 350
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2829
+ rotate: false
+ xy: 79, 303
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2830
+ rotate: false
+ xy: 79, 256
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2834
+ rotate: false
+ xy: 79, 209
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2835
+ rotate: false
+ xy: 79, 162
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2864
+ rotate: false
+ xy: 903, 462
+ size: 54, 35
+ orig: 54, 35
+ offset: 0, 0
+ index: -1
+2865
+ rotate: false
+ xy: 959, 462
+ size: 54, 35
+ orig: 54, 35
+ offset: 0, 0
+ index: -1
+2911
+ rotate: false
+ xy: 79, 115
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2912
+ rotate: false
+ xy: 79, 68
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2917
+ rotate: false
+ xy: 79, 21
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2918
+ rotate: false
+ xy: 177, 760
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2923
+ rotate: false
+ xy: 156, 713
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2924
+ rotate: false
+ xy: 156, 666
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2928
+ rotate: false
+ xy: 156, 619
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2929
+ rotate: false
+ xy: 156, 572
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2933
+ rotate: false
+ xy: 156, 525
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2934
+ rotate: false
+ xy: 156, 478
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2939
+ rotate: false
+ xy: 156, 431
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2940
+ rotate: false
+ xy: 156, 384
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2945
+ rotate: false
+ xy: 156, 337
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2946
+ rotate: false
+ xy: 156, 290
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2950
+ rotate: false
+ xy: 156, 243
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2951
+ rotate: false
+ xy: 156, 196
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2955
+ rotate: false
+ xy: 156, 149
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2956
+ rotate: false
+ xy: 156, 102
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2961
+ rotate: false
+ xy: 156, 55
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2962
+ rotate: false
+ xy: 156, 8
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2967
+ rotate: false
+ xy: 274, 794
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2968
+ rotate: false
+ xy: 254, 747
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2972
+ rotate: false
+ xy: 233, 700
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2973
+ rotate: false
+ xy: 233, 653
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2977
+ rotate: false
+ xy: 233, 606
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2978
+ rotate: false
+ xy: 233, 559
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2983
+ rotate: false
+ xy: 233, 512
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2984
+ rotate: false
+ xy: 233, 465
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2989
+ rotate: false
+ xy: 233, 418
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2990
+ rotate: false
+ xy: 233, 371
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3078
+ rotate: false
+ xy: 233, 324
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3079
+ rotate: false
+ xy: 233, 277
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3084
+ rotate: false
+ xy: 233, 230
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3085
+ rotate: false
+ xy: 233, 183
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3090
+ rotate: false
+ xy: 233, 136
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3091
+ rotate: false
+ xy: 233, 89
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3095
+ rotate: false
+ xy: 233, 42
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3096
+ rotate: false
+ xy: 372, 828
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3131
+ rotate: false
+ xy: 470, 862
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3132
+ rotate: false
+ xy: 568, 896
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3137
+ rotate: false
+ xy: 666, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3138
+ rotate: false
+ xy: 743, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3143
+ rotate: false
+ xy: 820, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3144
+ rotate: false
+ xy: 897, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3148
+ rotate: false
+ xy: 351, 781
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3149
+ rotate: false
+ xy: 331, 734
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3159
+ rotate: false
+ xy: 310, 687
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3160
+ rotate: false
+ xy: 310, 640
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3165
+ rotate: false
+ xy: 310, 593
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3166
+ rotate: false
+ xy: 310, 546
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3171
+ rotate: false
+ xy: 310, 499
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3172
+ rotate: false
+ xy: 310, 452
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3176
+ rotate: false
+ xy: 310, 405
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3177
+ rotate: false
+ xy: 310, 358
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3229
+ rotate: false
+ xy: 310, 311
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3230
+ rotate: false
+ xy: 310, 264
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3235
+ rotate: false
+ xy: 310, 217
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3236
+ rotate: false
+ xy: 310, 170
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3241
+ rotate: false
+ xy: 310, 123
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3242
+ rotate: false
+ xy: 310, 76
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3246
+ rotate: false
+ xy: 310, 29
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3247
+ rotate: false
+ xy: 449, 815
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3256
+ rotate: false
+ xy: 547, 849
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3257
+ rotate: false
+ xy: 645, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3262
+ rotate: false
+ xy: 722, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3263
+ rotate: false
+ xy: 799, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3268
+ rotate: false
+ xy: 876, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3269
+ rotate: false
+ xy: 428, 768
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3273
+ rotate: false
+ xy: 408, 721
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3274
+ rotate: false
+ xy: 387, 674
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3302
+ rotate: false
+ xy: 984, 835
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3303
+ rotate: false
+ xy: 982, 17
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3587
+ rotate: false
+ xy: 387, 627
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3588
+ rotate: false
+ xy: 387, 580
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3593
+ rotate: false
+ xy: 387, 533
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3594
+ rotate: false
+ xy: 387, 486
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3599
+ rotate: false
+ xy: 387, 439
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3600
+ rotate: false
+ xy: 387, 392
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3604
+ rotate: false
+ xy: 387, 345
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3605
+ rotate: false
+ xy: 387, 298
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3613
+ rotate: false
+ xy: 387, 251
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3614
+ rotate: false
+ xy: 387, 204
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3619
+ rotate: false
+ xy: 387, 157
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3620
+ rotate: false
+ xy: 387, 110
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3625
+ rotate: false
+ xy: 387, 63
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3626
+ rotate: false
+ xy: 387, 16
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3630
+ rotate: false
+ xy: 526, 802
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3631
+ rotate: false
+ xy: 624, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3639
+ rotate: false
+ xy: 701, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3640
+ rotate: false
+ xy: 778, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3645
+ rotate: false
+ xy: 855, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3646
+ rotate: false
+ xy: 505, 755
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3651
+ rotate: false
+ xy: 485, 708
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3652
+ rotate: false
+ xy: 464, 661
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3656
+ rotate: false
+ xy: 464, 614
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3657
+ rotate: false
+ xy: 464, 567
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3691
+ rotate: false
+ xy: 464, 520
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3692
+ rotate: false
+ xy: 464, 473
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3697
+ rotate: false
+ xy: 464, 426
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3698
+ rotate: false
+ xy: 464, 379
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3703
+ rotate: false
+ xy: 464, 332
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3704
+ rotate: false
+ xy: 464, 285
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3708
+ rotate: false
+ xy: 464, 238
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3709
+ rotate: false
+ xy: 464, 191
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3719
+ rotate: false
+ xy: 464, 144
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3720
+ rotate: false
+ xy: 464, 97
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3725
+ rotate: false
+ xy: 464, 50
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3726
+ rotate: false
+ xy: 603, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3731
+ rotate: false
+ xy: 680, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3732
+ rotate: false
+ xy: 757, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3736
+ rotate: false
+ xy: 834, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3737
+ rotate: false
+ xy: 582, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3745
+ rotate: false
+ xy: 659, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3746
+ rotate: false
+ xy: 736, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3751
+ rotate: false
+ xy: 813, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3752
+ rotate: false
+ xy: 562, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3757
+ rotate: false
+ xy: 639, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3758
+ rotate: false
+ xy: 716, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3762
+ rotate: false
+ xy: 793, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3763
+ rotate: false
+ xy: 541, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3771
+ rotate: false
+ xy: 541, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3772
+ rotate: false
+ xy: 618, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3777
+ rotate: false
+ xy: 541, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3778
+ rotate: false
+ xy: 618, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3783
+ rotate: false
+ xy: 695, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3784
+ rotate: false
+ xy: 541, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3788
+ rotate: false
+ xy: 618, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3789
+ rotate: false
+ xy: 695, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3880
+ rotate: false
+ xy: 772, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3881
+ rotate: false
+ xy: 541, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3886
+ rotate: false
+ xy: 618, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3887
+ rotate: false
+ xy: 695, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3892
+ rotate: false
+ xy: 772, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3893
+ rotate: false
+ xy: 541, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3897
+ rotate: false
+ xy: 618, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3898
+ rotate: false
+ xy: 695, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3906
+ rotate: false
+ xy: 772, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3907
+ rotate: false
+ xy: 541, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3912
+ rotate: false
+ xy: 618, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3913
+ rotate: false
+ xy: 695, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3918
+ rotate: false
+ xy: 772, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3919
+ rotate: false
+ xy: 541, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3923
+ rotate: false
+ xy: 618, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3924
+ rotate: false
+ xy: 695, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3932
+ rotate: false
+ xy: 772, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3933
+ rotate: false
+ xy: 541, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3938
+ rotate: false
+ xy: 618, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3939
+ rotate: false
+ xy: 695, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3944
+ rotate: false
+ xy: 772, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3945
+ rotate: false
+ xy: 541, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3949
+ rotate: false
+ xy: 618, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3950
+ rotate: false
+ xy: 695, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3958
+ rotate: false
+ xy: 772, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3959
+ rotate: false
+ xy: 541, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3964
+ rotate: false
+ xy: 618, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3965
+ rotate: false
+ xy: 695, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3970
+ rotate: false
+ xy: 772, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3971
+ rotate: false
+ xy: 541, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3975
+ rotate: false
+ xy: 618, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+3976
+ rotate: false
+ xy: 695, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4002
+ rotate: false
+ xy: 772, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4003
+ rotate: false
+ xy: 541, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4007
+ rotate: false
+ xy: 695, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4008
+ rotate: false
+ xy: 772, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4013
+ rotate: false
+ xy: 618, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4014
+ rotate: false
+ xy: 772, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4019
+ rotate: false
+ xy: 618, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4020
+ rotate: false
+ xy: 695, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4024
+ rotate: false
+ xy: 695, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4025
+ rotate: false
+ xy: 772, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4029
+ rotate: false
+ xy: 772, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4030
+ rotate: false
+ xy: 910, 175
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4035
+ rotate: false
+ xy: 910, 128
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4036
+ rotate: false
+ xy: 914, 81
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4361
+ rotate: false
+ xy: 903, 645
+ size: 47, 48
+ orig: 47, 48
+ offset: 0, 0
+ index: -1
+4366
+ rotate: false
+ xy: 903, 595
+ size: 47, 48
+ orig: 47, 48
+ offset: 0, 0
+ index: -1
+4485
+ rotate: false
+ xy: 198, 854
+ size: 95, 32
+ orig: 95, 32
+ offset: 0, 0
+ index: -1
+569
+ rotate: false
+ xy: 959, 754
+ size: 63, 32
+ orig: 63, 32
+ offset: 0, 0
+ index: -1
+570
+ rotate: false
+ xy: 959, 687
+ size: 63, 32
+ orig: 63, 32
+ offset: 0, 0
+ index: -1
+742
+ rotate: false
+ xy: 949, 721
+ size: 73, 31
+ orig: 73, 31
+ offset: 0, 0
+ index: -1
+880
+ rotate: false
+ xy: 870, 695
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+884
+ rotate: false
+ xy: 890, 742
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+887
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10256
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1299
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13345
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17869
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19457
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19760
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19890
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22525
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22551
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22577
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23323
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23375
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23479
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23531
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23537
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23615
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4255
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+913
+ rotate: false
+ xy: 911, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+890
+ rotate: false
+ xy: 932, 836
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+893
+ rotate: false
+ xy: 897, 695
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+896
+ rotate: false
+ xy: 963, 788
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+898
+ rotate: false
+ xy: 960, 415
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+901
+ rotate: false
+ xy: 960, 368
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+907
+ rotate: false
+ xy: 960, 321
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+910
+ rotate: false
+ xy: 960, 274
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+
+images76.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10475
+ rotate: false
+ xy: 374, 4
+ size: 74, 31
+ orig: 74, 31
+ offset: 0, 0
+ index: -1
+10483
+ rotate: false
+ xy: 450, 4
+ size: 74, 31
+ orig: 74, 31
+ offset: 0, 0
+ index: -1
+10491
+ rotate: false
+ xy: 526, 4
+ size: 74, 31
+ orig: 74, 31
+ offset: 0, 0
+ index: -1
+10499
+ rotate: false
+ xy: 602, 4
+ size: 74, 31
+ orig: 74, 31
+ offset: 0, 0
+ index: -1
+2145
+ rotate: false
+ xy: 70, 4
+ size: 74, 31
+ orig: 74, 31
+ offset: 0, 0
+ index: -1
+2150
+ rotate: false
+ xy: 678, 4
+ size: 72, 31
+ orig: 72, 31
+ offset: 0, 0
+ index: -1
+2153
+ rotate: false
+ xy: 146, 4
+ size: 74, 31
+ orig: 74, 31
+ offset: 0, 0
+ index: -1
+2158
+ rotate: false
+ xy: 752, 4
+ size: 72, 31
+ orig: 72, 31
+ offset: 0, 0
+ index: -1
+2161
+ rotate: false
+ xy: 222, 4
+ size: 74, 31
+ orig: 74, 31
+ offset: 0, 0
+ index: -1
+2166
+ rotate: false
+ xy: 826, 4
+ size: 72, 31
+ orig: 72, 31
+ offset: 0, 0
+ index: -1
+2169
+ rotate: false
+ xy: 298, 4
+ size: 74, 31
+ orig: 74, 31
+ offset: 0, 0
+ index: -1
+21846
+ rotate: false
+ xy: 2, 2
+ size: 66, 33
+ orig: 66, 33
+ offset: 0, 0
+ index: -1
+2383
+ rotate: false
+ xy: 900, 3
+ size: 72, 32
+ orig: 72, 32
+ offset: 0, 0
+ index: -1
+4041
+ rotate: false
+ xy: 2, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4042
+ rotate: false
+ xy: 2, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4046
+ rotate: false
+ xy: 79, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4047
+ rotate: false
+ xy: 2, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4051
+ rotate: false
+ xy: 79, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4052
+ rotate: false
+ xy: 156, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4057
+ rotate: false
+ xy: 2, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4058
+ rotate: false
+ xy: 79, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4063
+ rotate: false
+ xy: 156, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4064
+ rotate: false
+ xy: 233, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4068
+ rotate: false
+ xy: 2, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4069
+ rotate: false
+ xy: 79, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4089
+ rotate: false
+ xy: 156, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4090
+ rotate: false
+ xy: 233, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4095
+ rotate: false
+ xy: 310, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4096
+ rotate: false
+ xy: 2, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4101
+ rotate: false
+ xy: 79, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4102
+ rotate: false
+ xy: 156, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4106
+ rotate: false
+ xy: 233, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4107
+ rotate: false
+ xy: 310, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4111
+ rotate: false
+ xy: 387, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4112
+ rotate: false
+ xy: 2, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4117
+ rotate: false
+ xy: 79, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4118
+ rotate: false
+ xy: 156, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4123
+ rotate: false
+ xy: 233, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4124
+ rotate: false
+ xy: 310, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4128
+ rotate: false
+ xy: 387, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4129
+ rotate: false
+ xy: 464, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4137
+ rotate: false
+ xy: 2, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4138
+ rotate: false
+ xy: 79, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4143
+ rotate: false
+ xy: 156, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4144
+ rotate: false
+ xy: 233, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4149
+ rotate: false
+ xy: 310, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4150
+ rotate: false
+ xy: 387, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4154
+ rotate: false
+ xy: 464, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4155
+ rotate: false
+ xy: 541, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4159
+ rotate: false
+ xy: 2, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4160
+ rotate: false
+ xy: 79, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4165
+ rotate: false
+ xy: 156, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4166
+ rotate: false
+ xy: 233, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4171
+ rotate: false
+ xy: 310, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4172
+ rotate: false
+ xy: 387, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4176
+ rotate: false
+ xy: 464, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4177
+ rotate: false
+ xy: 541, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4181
+ rotate: false
+ xy: 618, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4182
+ rotate: false
+ xy: 2, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4187
+ rotate: false
+ xy: 79, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4188
+ rotate: false
+ xy: 156, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4193
+ rotate: false
+ xy: 233, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4194
+ rotate: false
+ xy: 310, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4198
+ rotate: false
+ xy: 387, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4199
+ rotate: false
+ xy: 464, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4203
+ rotate: false
+ xy: 541, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4204
+ rotate: false
+ xy: 618, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4209
+ rotate: false
+ xy: 695, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4210
+ rotate: false
+ xy: 2, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4215
+ rotate: false
+ xy: 79, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4216
+ rotate: false
+ xy: 156, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4220
+ rotate: false
+ xy: 233, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4221
+ rotate: false
+ xy: 310, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4225
+ rotate: false
+ xy: 387, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4226
+ rotate: false
+ xy: 464, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4231
+ rotate: false
+ xy: 541, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4232
+ rotate: false
+ xy: 618, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4237
+ rotate: false
+ xy: 695, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4238
+ rotate: false
+ xy: 772, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4242
+ rotate: false
+ xy: 2, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4243
+ rotate: false
+ xy: 79, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4247
+ rotate: false
+ xy: 156, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4248
+ rotate: false
+ xy: 233, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4253
+ rotate: false
+ xy: 310, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4254
+ rotate: false
+ xy: 387, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4259
+ rotate: false
+ xy: 464, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4260
+ rotate: false
+ xy: 541, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4264
+ rotate: false
+ xy: 618, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4265
+ rotate: false
+ xy: 695, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4269
+ rotate: false
+ xy: 772, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4270
+ rotate: false
+ xy: 849, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4275
+ rotate: false
+ xy: 2, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4276
+ rotate: false
+ xy: 79, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4281
+ rotate: false
+ xy: 156, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4282
+ rotate: false
+ xy: 233, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4286
+ rotate: false
+ xy: 310, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4287
+ rotate: false
+ xy: 387, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4291
+ rotate: false
+ xy: 464, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4292
+ rotate: false
+ xy: 541, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4297
+ rotate: false
+ xy: 618, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4298
+ rotate: false
+ xy: 695, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4303
+ rotate: false
+ xy: 772, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4304
+ rotate: false
+ xy: 849, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4308
+ rotate: false
+ xy: 926, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4309
+ rotate: false
+ xy: 2, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4836
+ rotate: false
+ xy: 79, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4837
+ rotate: false
+ xy: 156, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4842
+ rotate: false
+ xy: 233, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4843
+ rotate: false
+ xy: 310, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4848
+ rotate: false
+ xy: 387, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4849
+ rotate: false
+ xy: 464, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4853
+ rotate: false
+ xy: 541, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+4854
+ rotate: false
+ xy: 618, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5002
+ rotate: false
+ xy: 695, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5003
+ rotate: false
+ xy: 772, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5008
+ rotate: false
+ xy: 849, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5009
+ rotate: false
+ xy: 926, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5014
+ rotate: false
+ xy: 2, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5015
+ rotate: false
+ xy: 79, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5019
+ rotate: false
+ xy: 156, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5020
+ rotate: false
+ xy: 233, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5032
+ rotate: false
+ xy: 310, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5033
+ rotate: false
+ xy: 387, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5038
+ rotate: false
+ xy: 464, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5039
+ rotate: false
+ xy: 541, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5044
+ rotate: false
+ xy: 618, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5045
+ rotate: false
+ xy: 695, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5049
+ rotate: false
+ xy: 772, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5050
+ rotate: false
+ xy: 849, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5062
+ rotate: false
+ xy: 926, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5063
+ rotate: false
+ xy: 2, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5068
+ rotate: false
+ xy: 79, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5069
+ rotate: false
+ xy: 156, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5074
+ rotate: false
+ xy: 233, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5075
+ rotate: false
+ xy: 310, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5079
+ rotate: false
+ xy: 387, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5080
+ rotate: false
+ xy: 464, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5092
+ rotate: false
+ xy: 541, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5093
+ rotate: false
+ xy: 618, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5098
+ rotate: false
+ xy: 695, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5099
+ rotate: false
+ xy: 772, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5104
+ rotate: false
+ xy: 849, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5105
+ rotate: false
+ xy: 926, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5109
+ rotate: false
+ xy: 2, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5110
+ rotate: false
+ xy: 79, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5122
+ rotate: false
+ xy: 156, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5123
+ rotate: false
+ xy: 233, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5128
+ rotate: false
+ xy: 310, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5129
+ rotate: false
+ xy: 387, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5134
+ rotate: false
+ xy: 464, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5135
+ rotate: false
+ xy: 541, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5139
+ rotate: false
+ xy: 618, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5140
+ rotate: false
+ xy: 695, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5152
+ rotate: false
+ xy: 772, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5153
+ rotate: false
+ xy: 849, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5158
+ rotate: false
+ xy: 926, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5159
+ rotate: false
+ xy: 2, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5164
+ rotate: false
+ xy: 79, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5165
+ rotate: false
+ xy: 156, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5169
+ rotate: false
+ xy: 233, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5170
+ rotate: false
+ xy: 310, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5182
+ rotate: false
+ xy: 387, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5183
+ rotate: false
+ xy: 464, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5188
+ rotate: false
+ xy: 541, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5189
+ rotate: false
+ xy: 618, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5194
+ rotate: false
+ xy: 695, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5195
+ rotate: false
+ xy: 772, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5199
+ rotate: false
+ xy: 849, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5200
+ rotate: false
+ xy: 926, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5212
+ rotate: false
+ xy: 2, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5213
+ rotate: false
+ xy: 79, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5218
+ rotate: false
+ xy: 156, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5219
+ rotate: false
+ xy: 233, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5224
+ rotate: false
+ xy: 310, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5225
+ rotate: false
+ xy: 387, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5229
+ rotate: false
+ xy: 464, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5230
+ rotate: false
+ xy: 541, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5242
+ rotate: false
+ xy: 618, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5243
+ rotate: false
+ xy: 695, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5248
+ rotate: false
+ xy: 772, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5249
+ rotate: false
+ xy: 849, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5254
+ rotate: false
+ xy: 926, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5255
+ rotate: false
+ xy: 2, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5259
+ rotate: false
+ xy: 79, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5260
+ rotate: false
+ xy: 156, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5272
+ rotate: false
+ xy: 233, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5273
+ rotate: false
+ xy: 310, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5278
+ rotate: false
+ xy: 387, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5279
+ rotate: false
+ xy: 464, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5284
+ rotate: false
+ xy: 541, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5285
+ rotate: false
+ xy: 618, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5289
+ rotate: false
+ xy: 695, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5290
+ rotate: false
+ xy: 772, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5302
+ rotate: false
+ xy: 849, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5303
+ rotate: false
+ xy: 926, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5308
+ rotate: false
+ xy: 2, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5309
+ rotate: false
+ xy: 79, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5314
+ rotate: false
+ xy: 156, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5315
+ rotate: false
+ xy: 233, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5319
+ rotate: false
+ xy: 310, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5320
+ rotate: false
+ xy: 387, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5329
+ rotate: false
+ xy: 464, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5330
+ rotate: false
+ xy: 541, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5335
+ rotate: false
+ xy: 618, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5336
+ rotate: false
+ xy: 695, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5341
+ rotate: false
+ xy: 772, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5342
+ rotate: false
+ xy: 849, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5346
+ rotate: false
+ xy: 926, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5347
+ rotate: false
+ xy: 79, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5362
+ rotate: false
+ xy: 156, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5363
+ rotate: false
+ xy: 233, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5368
+ rotate: false
+ xy: 310, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5369
+ rotate: false
+ xy: 387, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5374
+ rotate: false
+ xy: 464, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5375
+ rotate: false
+ xy: 541, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5379
+ rotate: false
+ xy: 618, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5380
+ rotate: false
+ xy: 695, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5392
+ rotate: false
+ xy: 772, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5393
+ rotate: false
+ xy: 849, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5398
+ rotate: false
+ xy: 926, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5399
+ rotate: false
+ xy: 156, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5404
+ rotate: false
+ xy: 233, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5405
+ rotate: false
+ xy: 310, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5409
+ rotate: false
+ xy: 387, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5410
+ rotate: false
+ xy: 464, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5422
+ rotate: false
+ xy: 541, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5423
+ rotate: false
+ xy: 618, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5428
+ rotate: false
+ xy: 695, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5429
+ rotate: false
+ xy: 772, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5434
+ rotate: false
+ xy: 849, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5435
+ rotate: false
+ xy: 926, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5439
+ rotate: false
+ xy: 233, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5440
+ rotate: false
+ xy: 310, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5452
+ rotate: false
+ xy: 387, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5453
+ rotate: false
+ xy: 464, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5458
+ rotate: false
+ xy: 541, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5459
+ rotate: false
+ xy: 618, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5464
+ rotate: false
+ xy: 695, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5465
+ rotate: false
+ xy: 772, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5469
+ rotate: false
+ xy: 849, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5470
+ rotate: false
+ xy: 926, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5506
+ rotate: false
+ xy: 310, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5507
+ rotate: false
+ xy: 387, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5512
+ rotate: false
+ xy: 464, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5513
+ rotate: false
+ xy: 541, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5518
+ rotate: false
+ xy: 618, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5519
+ rotate: false
+ xy: 695, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5523
+ rotate: false
+ xy: 772, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5524
+ rotate: false
+ xy: 849, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5532
+ rotate: false
+ xy: 926, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5533
+ rotate: false
+ xy: 387, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5538
+ rotate: false
+ xy: 464, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5539
+ rotate: false
+ xy: 541, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5544
+ rotate: false
+ xy: 618, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5545
+ rotate: false
+ xy: 695, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5549
+ rotate: false
+ xy: 772, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5550
+ rotate: false
+ xy: 849, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5559
+ rotate: false
+ xy: 926, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5560
+ rotate: false
+ xy: 464, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5565
+ rotate: false
+ xy: 541, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5566
+ rotate: false
+ xy: 618, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5571
+ rotate: false
+ xy: 695, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5572
+ rotate: false
+ xy: 772, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5576
+ rotate: false
+ xy: 849, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5577
+ rotate: false
+ xy: 926, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5958
+ rotate: false
+ xy: 541, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5959
+ rotate: false
+ xy: 618, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5964
+ rotate: false
+ xy: 695, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5965
+ rotate: false
+ xy: 772, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5970
+ rotate: false
+ xy: 849, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5971
+ rotate: false
+ xy: 926, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5975
+ rotate: false
+ xy: 618, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+5976
+ rotate: false
+ xy: 695, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+6760
+ rotate: false
+ xy: 772, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+6761
+ rotate: false
+ xy: 849, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+6767
+ rotate: false
+ xy: 926, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+6768
+ rotate: false
+ xy: 695, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+6774
+ rotate: false
+ xy: 772, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+6775
+ rotate: false
+ xy: 849, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+6780
+ rotate: false
+ xy: 926, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+6781
+ rotate: false
+ xy: 772, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+6970
+ rotate: false
+ xy: 849, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+6971
+ rotate: false
+ xy: 926, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+6976
+ rotate: false
+ xy: 849, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+6977
+ rotate: false
+ xy: 926, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+6982
+ rotate: false
+ xy: 926, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+7206
+ rotate: false
+ xy: 1003, 972
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7209
+ rotate: false
+ xy: 1003, 920
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7210
+ rotate: false
+ xy: 1003, 868
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7213
+ rotate: false
+ xy: 1003, 816
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7214
+ rotate: false
+ xy: 1003, 764
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7217
+ rotate: false
+ xy: 1003, 712
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7218
+ rotate: false
+ xy: 1003, 660
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7221
+ rotate: false
+ xy: 1003, 608
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7227
+ rotate: false
+ xy: 1003, 556
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7230
+ rotate: false
+ xy: 1003, 504
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7684
+ rotate: false
+ xy: 1003, 452
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7687
+ rotate: false
+ xy: 1003, 400
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+8602
+ rotate: false
+ xy: 1003, 348
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+8605
+ rotate: false
+ xy: 1003, 296
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9207
+ rotate: false
+ xy: 1003, 244
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9210
+ rotate: false
+ xy: 1003, 192
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9211
+ rotate: false
+ xy: 1003, 140
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9214
+ rotate: false
+ xy: 1003, 88
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9829
+ rotate: false
+ xy: 974, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+
+images77.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10005
+ rotate: false
+ xy: 2, 3
+ size: 72, 32
+ orig: 72, 32
+ offset: 0, 0
+ index: -1
+10013
+ rotate: false
+ xy: 76, 3
+ size: 72, 32
+ orig: 72, 32
+ offset: 0, 0
+ index: -1
+10021
+ rotate: false
+ xy: 150, 3
+ size: 72, 32
+ orig: 72, 32
+ offset: 0, 0
+ index: -1
+10029
+ rotate: false
+ xy: 224, 3
+ size: 72, 32
+ orig: 72, 32
+ offset: 0, 0
+ index: -1
+10066
+ rotate: false
+ xy: 618, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10067
+ rotate: false
+ xy: 695, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10072
+ rotate: false
+ xy: 772, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10073
+ rotate: false
+ xy: 849, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10078
+ rotate: false
+ xy: 926, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10079
+ rotate: false
+ xy: 2, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10083
+ rotate: false
+ xy: 79, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10084
+ rotate: false
+ xy: 156, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10092
+ rotate: false
+ xy: 233, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10093
+ rotate: false
+ xy: 310, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10098
+ rotate: false
+ xy: 387, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10099
+ rotate: false
+ xy: 464, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10104
+ rotate: false
+ xy: 541, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10105
+ rotate: false
+ xy: 618, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10109
+ rotate: false
+ xy: 695, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10110
+ rotate: false
+ xy: 772, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10118
+ rotate: false
+ xy: 849, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10119
+ rotate: false
+ xy: 926, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10124
+ rotate: false
+ xy: 2, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10125
+ rotate: false
+ xy: 79, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10130
+ rotate: false
+ xy: 156, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10131
+ rotate: false
+ xy: 233, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10135
+ rotate: false
+ xy: 310, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10136
+ rotate: false
+ xy: 387, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10144
+ rotate: false
+ xy: 464, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10145
+ rotate: false
+ xy: 541, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10150
+ rotate: false
+ xy: 618, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10151
+ rotate: false
+ xy: 695, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10156
+ rotate: false
+ xy: 772, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10157
+ rotate: false
+ xy: 849, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10161
+ rotate: false
+ xy: 926, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10162
+ rotate: false
+ xy: 2, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10170
+ rotate: false
+ xy: 79, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10171
+ rotate: false
+ xy: 156, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10176
+ rotate: false
+ xy: 233, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10177
+ rotate: false
+ xy: 310, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10182
+ rotate: false
+ xy: 387, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10183
+ rotate: false
+ xy: 464, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10187
+ rotate: false
+ xy: 541, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10188
+ rotate: false
+ xy: 618, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10248
+ rotate: false
+ xy: 695, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10249
+ rotate: false
+ xy: 772, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10254
+ rotate: false
+ xy: 849, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10255
+ rotate: false
+ xy: 926, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10260
+ rotate: false
+ xy: 2, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10261
+ rotate: false
+ xy: 79, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10265
+ rotate: false
+ xy: 156, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10266
+ rotate: false
+ xy: 233, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10274
+ rotate: false
+ xy: 310, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10275
+ rotate: false
+ xy: 387, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10280
+ rotate: false
+ xy: 464, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10281
+ rotate: false
+ xy: 541, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10286
+ rotate: false
+ xy: 618, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10287
+ rotate: false
+ xy: 695, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10291
+ rotate: false
+ xy: 772, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10292
+ rotate: false
+ xy: 849, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10300
+ rotate: false
+ xy: 926, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10301
+ rotate: false
+ xy: 2, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10306
+ rotate: false
+ xy: 79, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10307
+ rotate: false
+ xy: 156, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10312
+ rotate: false
+ xy: 233, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10313
+ rotate: false
+ xy: 310, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10317
+ rotate: false
+ xy: 387, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10318
+ rotate: false
+ xy: 464, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10472
+ rotate: false
+ xy: 298, 4
+ size: 72, 31
+ orig: 72, 31
+ offset: 0, 0
+ index: -1
+10480
+ rotate: false
+ xy: 372, 4
+ size: 72, 31
+ orig: 72, 31
+ offset: 0, 0
+ index: -1
+10488
+ rotate: false
+ xy: 446, 4
+ size: 72, 31
+ orig: 72, 31
+ offset: 0, 0
+ index: -1
+10496
+ rotate: false
+ xy: 520, 4
+ size: 72, 31
+ orig: 72, 31
+ offset: 0, 0
+ index: -1
+10508
+ rotate: false
+ xy: 541, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10509
+ rotate: false
+ xy: 618, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10514
+ rotate: false
+ xy: 695, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10515
+ rotate: false
+ xy: 772, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10520
+ rotate: false
+ xy: 849, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10521
+ rotate: false
+ xy: 926, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10525
+ rotate: false
+ xy: 2, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10526
+ rotate: false
+ xy: 79, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10534
+ rotate: false
+ xy: 156, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10535
+ rotate: false
+ xy: 233, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10540
+ rotate: false
+ xy: 310, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10541
+ rotate: false
+ xy: 387, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10546
+ rotate: false
+ xy: 464, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10547
+ rotate: false
+ xy: 541, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10551
+ rotate: false
+ xy: 618, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10552
+ rotate: false
+ xy: 695, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10560
+ rotate: false
+ xy: 772, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10561
+ rotate: false
+ xy: 849, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10566
+ rotate: false
+ xy: 926, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10567
+ rotate: false
+ xy: 2, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10572
+ rotate: false
+ xy: 79, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10573
+ rotate: false
+ xy: 156, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10577
+ rotate: false
+ xy: 233, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10578
+ rotate: false
+ xy: 310, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10586
+ rotate: false
+ xy: 387, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10587
+ rotate: false
+ xy: 464, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10592
+ rotate: false
+ xy: 541, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10593
+ rotate: false
+ xy: 618, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10598
+ rotate: false
+ xy: 695, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10599
+ rotate: false
+ xy: 772, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10603
+ rotate: false
+ xy: 849, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10604
+ rotate: false
+ xy: 926, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10612
+ rotate: false
+ xy: 79, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10613
+ rotate: false
+ xy: 156, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10618
+ rotate: false
+ xy: 233, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10619
+ rotate: false
+ xy: 310, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10624
+ rotate: false
+ xy: 387, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10625
+ rotate: false
+ xy: 464, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10629
+ rotate: false
+ xy: 541, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10630
+ rotate: false
+ xy: 618, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10638
+ rotate: false
+ xy: 695, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10639
+ rotate: false
+ xy: 772, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10644
+ rotate: false
+ xy: 849, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10645
+ rotate: false
+ xy: 926, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10650
+ rotate: false
+ xy: 156, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10651
+ rotate: false
+ xy: 233, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10655
+ rotate: false
+ xy: 310, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10656
+ rotate: false
+ xy: 387, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10664
+ rotate: false
+ xy: 464, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10665
+ rotate: false
+ xy: 541, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10670
+ rotate: false
+ xy: 618, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10671
+ rotate: false
+ xy: 695, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10676
+ rotate: false
+ xy: 772, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10677
+ rotate: false
+ xy: 849, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10681
+ rotate: false
+ xy: 926, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10682
+ rotate: false
+ xy: 233, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10690
+ rotate: false
+ xy: 310, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10691
+ rotate: false
+ xy: 387, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10696
+ rotate: false
+ xy: 464, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10697
+ rotate: false
+ xy: 541, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10702
+ rotate: false
+ xy: 618, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10703
+ rotate: false
+ xy: 695, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10707
+ rotate: false
+ xy: 772, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10708
+ rotate: false
+ xy: 849, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10716
+ rotate: false
+ xy: 926, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10717
+ rotate: false
+ xy: 310, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10722
+ rotate: false
+ xy: 387, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10723
+ rotate: false
+ xy: 464, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10728
+ rotate: false
+ xy: 541, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10729
+ rotate: false
+ xy: 618, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10733
+ rotate: false
+ xy: 695, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10734
+ rotate: false
+ xy: 772, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10742
+ rotate: false
+ xy: 849, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10743
+ rotate: false
+ xy: 926, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10748
+ rotate: false
+ xy: 387, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10749
+ rotate: false
+ xy: 464, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10754
+ rotate: false
+ xy: 541, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10755
+ rotate: false
+ xy: 618, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10759
+ rotate: false
+ xy: 695, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10760
+ rotate: false
+ xy: 772, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10792
+ rotate: false
+ xy: 849, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10793
+ rotate: false
+ xy: 926, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10798
+ rotate: false
+ xy: 464, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10799
+ rotate: false
+ xy: 541, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10804
+ rotate: false
+ xy: 618, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10805
+ rotate: false
+ xy: 695, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10809
+ rotate: false
+ xy: 772, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10810
+ rotate: false
+ xy: 849, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10818
+ rotate: false
+ xy: 926, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10819
+ rotate: false
+ xy: 541, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10824
+ rotate: false
+ xy: 618, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10825
+ rotate: false
+ xy: 695, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10830
+ rotate: false
+ xy: 772, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10831
+ rotate: false
+ xy: 849, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10835
+ rotate: false
+ xy: 926, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10836
+ rotate: false
+ xy: 618, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10844
+ rotate: false
+ xy: 695, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10845
+ rotate: false
+ xy: 772, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10850
+ rotate: false
+ xy: 849, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10851
+ rotate: false
+ xy: 926, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10856
+ rotate: false
+ xy: 695, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10857
+ rotate: false
+ xy: 772, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10861
+ rotate: false
+ xy: 849, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10862
+ rotate: false
+ xy: 926, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10895
+ rotate: false
+ xy: 772, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10896
+ rotate: false
+ xy: 849, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10901
+ rotate: false
+ xy: 926, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10902
+ rotate: false
+ xy: 849, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10907
+ rotate: false
+ xy: 926, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10908
+ rotate: false
+ xy: 926, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21824
+ rotate: false
+ xy: 979, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+6983
+ rotate: false
+ xy: 2, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+6987
+ rotate: false
+ xy: 2, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+6988
+ rotate: false
+ xy: 79, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9215
+ rotate: false
+ xy: 1003, 972
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9218
+ rotate: false
+ xy: 1003, 920
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9472
+ rotate: false
+ xy: 1003, 868
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9475
+ rotate: false
+ xy: 1003, 816
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9476
+ rotate: false
+ xy: 1003, 764
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9479
+ rotate: false
+ xy: 1003, 712
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9480
+ rotate: false
+ xy: 1003, 660
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9483
+ rotate: false
+ xy: 1003, 608
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9484
+ rotate: false
+ xy: 1003, 556
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9487
+ rotate: false
+ xy: 1003, 504
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9488
+ rotate: false
+ xy: 1003, 452
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9491
+ rotate: false
+ xy: 1003, 400
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9492
+ rotate: false
+ xy: 1003, 348
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9495
+ rotate: false
+ xy: 1003, 296
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9496
+ rotate: false
+ xy: 1003, 244
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9499
+ rotate: false
+ xy: 1003, 192
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9500
+ rotate: false
+ xy: 1003, 140
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9503
+ rotate: false
+ xy: 1003, 88
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9532
+ rotate: false
+ xy: 2, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9533
+ rotate: false
+ xy: 79, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9538
+ rotate: false
+ xy: 156, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9539
+ rotate: false
+ xy: 2, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9544
+ rotate: false
+ xy: 79, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9545
+ rotate: false
+ xy: 156, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9549
+ rotate: false
+ xy: 233, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9550
+ rotate: false
+ xy: 2, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9584
+ rotate: false
+ xy: 79, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15657
+ rotate: false
+ xy: 79, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9585
+ rotate: false
+ xy: 156, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15658
+ rotate: false
+ xy: 156, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9590
+ rotate: false
+ xy: 233, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15663
+ rotate: false
+ xy: 233, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9591
+ rotate: false
+ xy: 310, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15664
+ rotate: false
+ xy: 310, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9596
+ rotate: false
+ xy: 2, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9597
+ rotate: false
+ xy: 79, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9601
+ rotate: false
+ xy: 156, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9602
+ rotate: false
+ xy: 233, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9635
+ rotate: false
+ xy: 310, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9636
+ rotate: false
+ xy: 387, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9641
+ rotate: false
+ xy: 2, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9642
+ rotate: false
+ xy: 79, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9647
+ rotate: false
+ xy: 156, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9648
+ rotate: false
+ xy: 233, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9652
+ rotate: false
+ xy: 310, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9653
+ rotate: false
+ xy: 387, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9662
+ rotate: false
+ xy: 464, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15738
+ rotate: false
+ xy: 464, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9663
+ rotate: false
+ xy: 2, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15739
+ rotate: false
+ xy: 2, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9668
+ rotate: false
+ xy: 79, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15744
+ rotate: false
+ xy: 79, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9669
+ rotate: false
+ xy: 156, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15745
+ rotate: false
+ xy: 156, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9674
+ rotate: false
+ xy: 233, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9675
+ rotate: false
+ xy: 310, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9679
+ rotate: false
+ xy: 387, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9680
+ rotate: false
+ xy: 464, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9689
+ rotate: false
+ xy: 541, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15576
+ rotate: false
+ xy: 541, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9690
+ rotate: false
+ xy: 2, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15577
+ rotate: false
+ xy: 2, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9695
+ rotate: false
+ xy: 79, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15582
+ rotate: false
+ xy: 79, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9696
+ rotate: false
+ xy: 156, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15583
+ rotate: false
+ xy: 156, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9701
+ rotate: false
+ xy: 233, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15588
+ rotate: false
+ xy: 233, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9702
+ rotate: false
+ xy: 310, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15589
+ rotate: false
+ xy: 310, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9706
+ rotate: false
+ xy: 387, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15593
+ rotate: false
+ xy: 387, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9707
+ rotate: false
+ xy: 464, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15594
+ rotate: false
+ xy: 464, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9716
+ rotate: false
+ xy: 541, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9717
+ rotate: false
+ xy: 618, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9722
+ rotate: false
+ xy: 2, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9723
+ rotate: false
+ xy: 79, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9728
+ rotate: false
+ xy: 156, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9729
+ rotate: false
+ xy: 233, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9733
+ rotate: false
+ xy: 310, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9734
+ rotate: false
+ xy: 387, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9743
+ rotate: false
+ xy: 464, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9744
+ rotate: false
+ xy: 541, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9749
+ rotate: false
+ xy: 618, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9750
+ rotate: false
+ xy: 695, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9755
+ rotate: false
+ xy: 2, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9756
+ rotate: false
+ xy: 79, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9760
+ rotate: false
+ xy: 156, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9761
+ rotate: false
+ xy: 233, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9770
+ rotate: false
+ xy: 310, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9771
+ rotate: false
+ xy: 387, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9776
+ rotate: false
+ xy: 464, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9777
+ rotate: false
+ xy: 541, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9782
+ rotate: false
+ xy: 618, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9783
+ rotate: false
+ xy: 695, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9787
+ rotate: false
+ xy: 772, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9788
+ rotate: false
+ xy: 2, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9830
+ rotate: false
+ xy: 594, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+9835
+ rotate: false
+ xy: 629, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+9836
+ rotate: false
+ xy: 664, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+9841
+ rotate: false
+ xy: 699, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+9842
+ rotate: false
+ xy: 734, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+9852
+ rotate: false
+ xy: 769, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+9858
+ rotate: false
+ xy: 804, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+9859
+ rotate: false
+ xy: 839, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+9865
+ rotate: false
+ xy: 874, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+9866
+ rotate: false
+ xy: 909, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+9873
+ rotate: false
+ xy: 944, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+9886
+ rotate: false
+ xy: 79, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9887
+ rotate: false
+ xy: 156, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9892
+ rotate: false
+ xy: 233, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9893
+ rotate: false
+ xy: 310, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9898
+ rotate: false
+ xy: 387, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9899
+ rotate: false
+ xy: 464, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9903
+ rotate: false
+ xy: 541, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9904
+ rotate: false
+ xy: 618, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9913
+ rotate: false
+ xy: 695, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9914
+ rotate: false
+ xy: 772, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9919
+ rotate: false
+ xy: 849, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9920
+ rotate: false
+ xy: 2, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9925
+ rotate: false
+ xy: 79, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9926
+ rotate: false
+ xy: 156, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9930
+ rotate: false
+ xy: 233, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9931
+ rotate: false
+ xy: 310, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9940
+ rotate: false
+ xy: 387, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9941
+ rotate: false
+ xy: 464, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9946
+ rotate: false
+ xy: 541, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9947
+ rotate: false
+ xy: 618, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9952
+ rotate: false
+ xy: 695, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9953
+ rotate: false
+ xy: 772, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9957
+ rotate: false
+ xy: 849, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9958
+ rotate: false
+ xy: 926, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9967
+ rotate: false
+ xy: 2, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9968
+ rotate: false
+ xy: 79, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9973
+ rotate: false
+ xy: 156, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9974
+ rotate: false
+ xy: 233, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9979
+ rotate: false
+ xy: 310, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9980
+ rotate: false
+ xy: 387, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9984
+ rotate: false
+ xy: 464, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+9985
+ rotate: false
+ xy: 541, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+
+images78.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10912
+ rotate: false
+ xy: 2, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10913
+ rotate: false
+ xy: 2, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10921
+ rotate: false
+ xy: 79, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10922
+ rotate: false
+ xy: 2, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10927
+ rotate: false
+ xy: 79, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10928
+ rotate: false
+ xy: 156, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10933
+ rotate: false
+ xy: 2, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10934
+ rotate: false
+ xy: 79, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10938
+ rotate: false
+ xy: 156, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10939
+ rotate: false
+ xy: 233, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10947
+ rotate: false
+ xy: 2, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10948
+ rotate: false
+ xy: 79, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10953
+ rotate: false
+ xy: 156, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10954
+ rotate: false
+ xy: 233, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10959
+ rotate: false
+ xy: 310, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10960
+ rotate: false
+ xy: 2, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10964
+ rotate: false
+ xy: 79, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10965
+ rotate: false
+ xy: 156, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10973
+ rotate: false
+ xy: 233, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10974
+ rotate: false
+ xy: 310, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10979
+ rotate: false
+ xy: 387, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10980
+ rotate: false
+ xy: 2, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10985
+ rotate: false
+ xy: 79, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10986
+ rotate: false
+ xy: 156, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10990
+ rotate: false
+ xy: 233, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10991
+ rotate: false
+ xy: 310, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+10999
+ rotate: false
+ xy: 387, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11000
+ rotate: false
+ xy: 464, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11005
+ rotate: false
+ xy: 2, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11006
+ rotate: false
+ xy: 79, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11011
+ rotate: false
+ xy: 156, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11012
+ rotate: false
+ xy: 233, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11016
+ rotate: false
+ xy: 310, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11017
+ rotate: false
+ xy: 387, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11025
+ rotate: false
+ xy: 464, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11026
+ rotate: false
+ xy: 541, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11031
+ rotate: false
+ xy: 2, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11032
+ rotate: false
+ xy: 79, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11037
+ rotate: false
+ xy: 156, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11038
+ rotate: false
+ xy: 233, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11042
+ rotate: false
+ xy: 310, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11043
+ rotate: false
+ xy: 387, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11051
+ rotate: false
+ xy: 464, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11052
+ rotate: false
+ xy: 541, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11057
+ rotate: false
+ xy: 618, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11058
+ rotate: false
+ xy: 2, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11063
+ rotate: false
+ xy: 79, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11064
+ rotate: false
+ xy: 156, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11068
+ rotate: false
+ xy: 233, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11069
+ rotate: false
+ xy: 310, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11077
+ rotate: false
+ xy: 387, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11078
+ rotate: false
+ xy: 464, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11083
+ rotate: false
+ xy: 541, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11084
+ rotate: false
+ xy: 618, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11089
+ rotate: false
+ xy: 695, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11090
+ rotate: false
+ xy: 2, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11094
+ rotate: false
+ xy: 79, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11095
+ rotate: false
+ xy: 156, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11103
+ rotate: false
+ xy: 233, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11104
+ rotate: false
+ xy: 310, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11109
+ rotate: false
+ xy: 387, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11110
+ rotate: false
+ xy: 464, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11115
+ rotate: false
+ xy: 541, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11116
+ rotate: false
+ xy: 618, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11120
+ rotate: false
+ xy: 695, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11121
+ rotate: false
+ xy: 772, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11129
+ rotate: false
+ xy: 2, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11130
+ rotate: false
+ xy: 79, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11135
+ rotate: false
+ xy: 156, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11136
+ rotate: false
+ xy: 233, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11141
+ rotate: false
+ xy: 310, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11142
+ rotate: false
+ xy: 387, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11146
+ rotate: false
+ xy: 464, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11147
+ rotate: false
+ xy: 541, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11155
+ rotate: false
+ xy: 618, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11156
+ rotate: false
+ xy: 695, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11161
+ rotate: false
+ xy: 772, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11162
+ rotate: false
+ xy: 849, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11167
+ rotate: false
+ xy: 2, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11168
+ rotate: false
+ xy: 79, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11172
+ rotate: false
+ xy: 156, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11173
+ rotate: false
+ xy: 233, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11181
+ rotate: false
+ xy: 310, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11182
+ rotate: false
+ xy: 387, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11187
+ rotate: false
+ xy: 464, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11188
+ rotate: false
+ xy: 541, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11193
+ rotate: false
+ xy: 618, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11194
+ rotate: false
+ xy: 695, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11198
+ rotate: false
+ xy: 772, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11199
+ rotate: false
+ xy: 849, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11207
+ rotate: false
+ xy: 926, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11208
+ rotate: false
+ xy: 2, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11213
+ rotate: false
+ xy: 79, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11214
+ rotate: false
+ xy: 156, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11219
+ rotate: false
+ xy: 233, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11220
+ rotate: false
+ xy: 310, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11224
+ rotate: false
+ xy: 387, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11225
+ rotate: false
+ xy: 464, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11233
+ rotate: false
+ xy: 541, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11234
+ rotate: false
+ xy: 618, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11239
+ rotate: false
+ xy: 695, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11240
+ rotate: false
+ xy: 772, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11245
+ rotate: false
+ xy: 849, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11246
+ rotate: false
+ xy: 926, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11250
+ rotate: false
+ xy: 2, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11251
+ rotate: false
+ xy: 79, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11259
+ rotate: false
+ xy: 156, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11260
+ rotate: false
+ xy: 233, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11265
+ rotate: false
+ xy: 310, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11266
+ rotate: false
+ xy: 387, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11271
+ rotate: false
+ xy: 464, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11272
+ rotate: false
+ xy: 541, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11276
+ rotate: false
+ xy: 618, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11277
+ rotate: false
+ xy: 695, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11285
+ rotate: false
+ xy: 772, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11286
+ rotate: false
+ xy: 849, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11291
+ rotate: false
+ xy: 926, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11292
+ rotate: false
+ xy: 2, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11297
+ rotate: false
+ xy: 79, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11298
+ rotate: false
+ xy: 156, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11302
+ rotate: false
+ xy: 233, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11303
+ rotate: false
+ xy: 310, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11311
+ rotate: false
+ xy: 387, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11312
+ rotate: false
+ xy: 464, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11317
+ rotate: false
+ xy: 541, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11318
+ rotate: false
+ xy: 618, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11323
+ rotate: false
+ xy: 695, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11324
+ rotate: false
+ xy: 772, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11328
+ rotate: false
+ xy: 849, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11329
+ rotate: false
+ xy: 926, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11337
+ rotate: false
+ xy: 2, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11338
+ rotate: false
+ xy: 79, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11343
+ rotate: false
+ xy: 156, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11344
+ rotate: false
+ xy: 233, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11349
+ rotate: false
+ xy: 310, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11350
+ rotate: false
+ xy: 387, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11354
+ rotate: false
+ xy: 464, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11355
+ rotate: false
+ xy: 541, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11363
+ rotate: false
+ xy: 618, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11364
+ rotate: false
+ xy: 695, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11369
+ rotate: false
+ xy: 772, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11370
+ rotate: false
+ xy: 849, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11375
+ rotate: false
+ xy: 926, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11376
+ rotate: false
+ xy: 2, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11380
+ rotate: false
+ xy: 79, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11381
+ rotate: false
+ xy: 156, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11389
+ rotate: false
+ xy: 233, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11390
+ rotate: false
+ xy: 310, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11395
+ rotate: false
+ xy: 387, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11396
+ rotate: false
+ xy: 464, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11401
+ rotate: false
+ xy: 541, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11402
+ rotate: false
+ xy: 618, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11406
+ rotate: false
+ xy: 695, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11407
+ rotate: false
+ xy: 772, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11415
+ rotate: false
+ xy: 849, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11416
+ rotate: false
+ xy: 926, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11421
+ rotate: false
+ xy: 2, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11422
+ rotate: false
+ xy: 79, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11427
+ rotate: false
+ xy: 156, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11428
+ rotate: false
+ xy: 233, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11432
+ rotate: false
+ xy: 310, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11433
+ rotate: false
+ xy: 387, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11441
+ rotate: false
+ xy: 464, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11442
+ rotate: false
+ xy: 541, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11447
+ rotate: false
+ xy: 618, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11448
+ rotate: false
+ xy: 695, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11453
+ rotate: false
+ xy: 772, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11454
+ rotate: false
+ xy: 849, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11458
+ rotate: false
+ xy: 926, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11459
+ rotate: false
+ xy: 2, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11467
+ rotate: false
+ xy: 79, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11468
+ rotate: false
+ xy: 156, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11473
+ rotate: false
+ xy: 233, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11474
+ rotate: false
+ xy: 310, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11479
+ rotate: false
+ xy: 387, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11480
+ rotate: false
+ xy: 464, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11484
+ rotate: false
+ xy: 541, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11485
+ rotate: false
+ xy: 618, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11493
+ rotate: false
+ xy: 695, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11494
+ rotate: false
+ xy: 772, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11499
+ rotate: false
+ xy: 849, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11500
+ rotate: false
+ xy: 926, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11505
+ rotate: false
+ xy: 2, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11506
+ rotate: false
+ xy: 79, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11510
+ rotate: false
+ xy: 156, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11511
+ rotate: false
+ xy: 233, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11519
+ rotate: false
+ xy: 310, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11520
+ rotate: false
+ xy: 387, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11525
+ rotate: false
+ xy: 464, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11526
+ rotate: false
+ xy: 541, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11531
+ rotate: false
+ xy: 618, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11532
+ rotate: false
+ xy: 695, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11536
+ rotate: false
+ xy: 772, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11537
+ rotate: false
+ xy: 849, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11545
+ rotate: false
+ xy: 926, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11546
+ rotate: false
+ xy: 79, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11551
+ rotate: false
+ xy: 156, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11552
+ rotate: false
+ xy: 233, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11557
+ rotate: false
+ xy: 310, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11558
+ rotate: false
+ xy: 387, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11562
+ rotate: false
+ xy: 464, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11563
+ rotate: false
+ xy: 541, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11571
+ rotate: false
+ xy: 618, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11572
+ rotate: false
+ xy: 695, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11577
+ rotate: false
+ xy: 772, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11578
+ rotate: false
+ xy: 849, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11583
+ rotate: false
+ xy: 926, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11584
+ rotate: false
+ xy: 156, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11588
+ rotate: false
+ xy: 233, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11589
+ rotate: false
+ xy: 310, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11597
+ rotate: false
+ xy: 387, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11598
+ rotate: false
+ xy: 464, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11603
+ rotate: false
+ xy: 541, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11604
+ rotate: false
+ xy: 618, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11609
+ rotate: false
+ xy: 695, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11610
+ rotate: false
+ xy: 772, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11614
+ rotate: false
+ xy: 849, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11615
+ rotate: false
+ xy: 926, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11623
+ rotate: false
+ xy: 233, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11624
+ rotate: false
+ xy: 310, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11629
+ rotate: false
+ xy: 387, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11630
+ rotate: false
+ xy: 464, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11635
+ rotate: false
+ xy: 541, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11636
+ rotate: false
+ xy: 618, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11640
+ rotate: false
+ xy: 695, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11641
+ rotate: false
+ xy: 772, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11649
+ rotate: false
+ xy: 849, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11650
+ rotate: false
+ xy: 926, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11655
+ rotate: false
+ xy: 310, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11656
+ rotate: false
+ xy: 387, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11661
+ rotate: false
+ xy: 464, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11662
+ rotate: false
+ xy: 541, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11666
+ rotate: false
+ xy: 618, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11667
+ rotate: false
+ xy: 695, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11675
+ rotate: false
+ xy: 772, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11676
+ rotate: false
+ xy: 849, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11681
+ rotate: false
+ xy: 926, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11682
+ rotate: false
+ xy: 387, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11687
+ rotate: false
+ xy: 464, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11688
+ rotate: false
+ xy: 541, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11692
+ rotate: false
+ xy: 618, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11693
+ rotate: false
+ xy: 695, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11701
+ rotate: false
+ xy: 772, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11702
+ rotate: false
+ xy: 849, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11707
+ rotate: false
+ xy: 926, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11708
+ rotate: false
+ xy: 464, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11713
+ rotate: false
+ xy: 541, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11714
+ rotate: false
+ xy: 618, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11718
+ rotate: false
+ xy: 695, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11719
+ rotate: false
+ xy: 772, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11727
+ rotate: false
+ xy: 849, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11728
+ rotate: false
+ xy: 926, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11733
+ rotate: false
+ xy: 541, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11734
+ rotate: false
+ xy: 618, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11739
+ rotate: false
+ xy: 695, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11740
+ rotate: false
+ xy: 772, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11744
+ rotate: false
+ xy: 849, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11745
+ rotate: false
+ xy: 926, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11753
+ rotate: false
+ xy: 618, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11754
+ rotate: false
+ xy: 695, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11759
+ rotate: false
+ xy: 772, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11760
+ rotate: false
+ xy: 849, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11765
+ rotate: false
+ xy: 926, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11766
+ rotate: false
+ xy: 695, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11770
+ rotate: false
+ xy: 772, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11771
+ rotate: false
+ xy: 849, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11779
+ rotate: false
+ xy: 926, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11780
+ rotate: false
+ xy: 772, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11785
+ rotate: false
+ xy: 849, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11786
+ rotate: false
+ xy: 926, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11791
+ rotate: false
+ xy: 849, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11792
+ rotate: false
+ xy: 926, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11796
+ rotate: false
+ xy: 926, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+121
+ rotate: false
+ xy: 212, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+21829
+ rotate: false
+ xy: 2, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+21830
+ rotate: false
+ xy: 37, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+21835
+ rotate: false
+ xy: 72, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+21836
+ rotate: false
+ xy: 107, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+21841
+ rotate: false
+ xy: 142, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+21842
+ rotate: false
+ xy: 177, 2
+ size: 33, 33
+ orig: 33, 33
+ offset: 0, 0
+ index: -1
+325
+ rotate: false
+ xy: 278, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+329
+ rotate: false
+ xy: 344, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+333
+ rotate: false
+ xy: 410, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+337
+ rotate: false
+ xy: 476, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+358
+ rotate: false
+ xy: 542, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+362
+ rotate: false
+ xy: 608, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+366
+ rotate: false
+ xy: 674, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+370
+ rotate: false
+ xy: 740, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+373
+ rotate: false
+ xy: 806, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+377
+ rotate: false
+ xy: 872, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+381
+ rotate: false
+ xy: 938, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9504
+ rotate: false
+ xy: 1003, 972
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9507
+ rotate: false
+ xy: 1003, 920
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9508
+ rotate: false
+ xy: 1003, 868
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9511
+ rotate: false
+ xy: 1003, 816
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9512
+ rotate: false
+ xy: 1003, 764
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9515
+ rotate: false
+ xy: 1003, 712
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9516
+ rotate: false
+ xy: 1003, 660
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9519
+ rotate: false
+ xy: 1003, 608
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9524
+ rotate: false
+ xy: 1003, 556
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9527
+ rotate: false
+ xy: 1003, 504
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9576
+ rotate: false
+ xy: 1003, 452
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9579
+ rotate: false
+ xy: 1003, 400
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9608
+ rotate: false
+ xy: 1003, 348
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9611
+ rotate: false
+ xy: 1003, 296
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9612
+ rotate: false
+ xy: 1003, 244
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9615
+ rotate: false
+ xy: 1003, 192
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9616
+ rotate: false
+ xy: 1003, 140
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9619
+ rotate: false
+ xy: 1003, 88
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9620
+ rotate: false
+ xy: 1004, 36
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+
+images79.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10868
+ rotate: false
+ xy: 1003, 504
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+10871
+ rotate: false
+ xy: 1003, 452
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+10872
+ rotate: false
+ xy: 1003, 400
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+10875
+ rotate: false
+ xy: 1003, 348
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+10876
+ rotate: false
+ xy: 1003, 296
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+10879
+ rotate: false
+ xy: 1003, 244
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+10880
+ rotate: false
+ xy: 1003, 192
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+10883
+ rotate: false
+ xy: 1003, 140
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+10884
+ rotate: false
+ xy: 1003, 88
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+10887
+ rotate: false
+ xy: 1003, 36
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+11797
+ rotate: false
+ xy: 2, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11805
+ rotate: false
+ xy: 2, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11806
+ rotate: false
+ xy: 79, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11811
+ rotate: false
+ xy: 2, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11812
+ rotate: false
+ xy: 79, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11817
+ rotate: false
+ xy: 156, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11818
+ rotate: false
+ xy: 2, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11822
+ rotate: false
+ xy: 79, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11823
+ rotate: false
+ xy: 156, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11831
+ rotate: false
+ xy: 233, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11832
+ rotate: false
+ xy: 2, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11837
+ rotate: false
+ xy: 79, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11838
+ rotate: false
+ xy: 156, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11843
+ rotate: false
+ xy: 233, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11844
+ rotate: false
+ xy: 310, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11848
+ rotate: false
+ xy: 2, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11849
+ rotate: false
+ xy: 79, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11857
+ rotate: false
+ xy: 156, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11858
+ rotate: false
+ xy: 233, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11863
+ rotate: false
+ xy: 310, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11864
+ rotate: false
+ xy: 387, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11869
+ rotate: false
+ xy: 2, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11870
+ rotate: false
+ xy: 79, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11874
+ rotate: false
+ xy: 156, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11875
+ rotate: false
+ xy: 233, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11919
+ rotate: false
+ xy: 310, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11920
+ rotate: false
+ xy: 387, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11925
+ rotate: false
+ xy: 464, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11926
+ rotate: false
+ xy: 2, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11931
+ rotate: false
+ xy: 79, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11932
+ rotate: false
+ xy: 156, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11936
+ rotate: false
+ xy: 233, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+11937
+ rotate: false
+ xy: 310, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12755
+ rotate: false
+ xy: 387, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12756
+ rotate: false
+ xy: 464, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12761
+ rotate: false
+ xy: 541, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12762
+ rotate: false
+ xy: 2, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12767
+ rotate: false
+ xy: 79, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12768
+ rotate: false
+ xy: 156, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12772
+ rotate: false
+ xy: 233, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12773
+ rotate: false
+ xy: 310, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12782
+ rotate: false
+ xy: 387, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12783
+ rotate: false
+ xy: 464, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12788
+ rotate: false
+ xy: 541, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12789
+ rotate: false
+ xy: 618, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12794
+ rotate: false
+ xy: 2, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12795
+ rotate: false
+ xy: 79, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12799
+ rotate: false
+ xy: 156, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12800
+ rotate: false
+ xy: 233, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12809
+ rotate: false
+ xy: 310, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12810
+ rotate: false
+ xy: 387, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12815
+ rotate: false
+ xy: 464, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12816
+ rotate: false
+ xy: 541, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12821
+ rotate: false
+ xy: 618, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12822
+ rotate: false
+ xy: 695, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12826
+ rotate: false
+ xy: 2, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12827
+ rotate: false
+ xy: 79, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12836
+ rotate: false
+ xy: 156, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12837
+ rotate: false
+ xy: 233, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12842
+ rotate: false
+ xy: 310, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12843
+ rotate: false
+ xy: 387, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12848
+ rotate: false
+ xy: 464, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12849
+ rotate: false
+ xy: 541, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12853
+ rotate: false
+ xy: 618, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12854
+ rotate: false
+ xy: 695, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12863
+ rotate: false
+ xy: 772, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12864
+ rotate: false
+ xy: 2, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12869
+ rotate: false
+ xy: 79, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12870
+ rotate: false
+ xy: 156, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12875
+ rotate: false
+ xy: 233, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12876
+ rotate: false
+ xy: 310, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12880
+ rotate: false
+ xy: 387, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12881
+ rotate: false
+ xy: 464, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12890
+ rotate: false
+ xy: 541, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12891
+ rotate: false
+ xy: 618, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12896
+ rotate: false
+ xy: 695, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12897
+ rotate: false
+ xy: 772, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12902
+ rotate: false
+ xy: 849, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12903
+ rotate: false
+ xy: 2, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12907
+ rotate: false
+ xy: 79, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12908
+ rotate: false
+ xy: 156, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12917
+ rotate: false
+ xy: 233, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12918
+ rotate: false
+ xy: 310, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12923
+ rotate: false
+ xy: 387, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12924
+ rotate: false
+ xy: 464, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12929
+ rotate: false
+ xy: 541, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12930
+ rotate: false
+ xy: 618, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12934
+ rotate: false
+ xy: 695, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12935
+ rotate: false
+ xy: 772, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12970
+ rotate: false
+ xy: 849, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12971
+ rotate: false
+ xy: 926, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12976
+ rotate: false
+ xy: 2, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12977
+ rotate: false
+ xy: 79, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12982
+ rotate: false
+ xy: 156, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12983
+ rotate: false
+ xy: 233, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12987
+ rotate: false
+ xy: 310, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+12988
+ rotate: false
+ xy: 387, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13258
+ rotate: false
+ xy: 464, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13259
+ rotate: false
+ xy: 541, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13264
+ rotate: false
+ xy: 618, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13265
+ rotate: false
+ xy: 695, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13270
+ rotate: false
+ xy: 772, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13271
+ rotate: false
+ xy: 849, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13275
+ rotate: false
+ xy: 926, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13276
+ rotate: false
+ xy: 2, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13285
+ rotate: false
+ xy: 79, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13286
+ rotate: false
+ xy: 156, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13291
+ rotate: false
+ xy: 233, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13292
+ rotate: false
+ xy: 310, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13297
+ rotate: false
+ xy: 387, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13298
+ rotate: false
+ xy: 464, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13302
+ rotate: false
+ xy: 541, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13303
+ rotate: false
+ xy: 618, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13311
+ rotate: false
+ xy: 695, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13312
+ rotate: false
+ xy: 772, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13317
+ rotate: false
+ xy: 849, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13318
+ rotate: false
+ xy: 926, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13323
+ rotate: false
+ xy: 2, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13324
+ rotate: false
+ xy: 79, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13328
+ rotate: false
+ xy: 156, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13329
+ rotate: false
+ xy: 233, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13337
+ rotate: false
+ xy: 310, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13338
+ rotate: false
+ xy: 387, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13343
+ rotate: false
+ xy: 464, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13344
+ rotate: false
+ xy: 541, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13349
+ rotate: false
+ xy: 618, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13350
+ rotate: false
+ xy: 695, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13354
+ rotate: false
+ xy: 772, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13355
+ rotate: false
+ xy: 849, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13363
+ rotate: false
+ xy: 926, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13364
+ rotate: false
+ xy: 2, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13369
+ rotate: false
+ xy: 79, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13370
+ rotate: false
+ xy: 156, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13375
+ rotate: false
+ xy: 233, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13376
+ rotate: false
+ xy: 310, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13380
+ rotate: false
+ xy: 387, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13381
+ rotate: false
+ xy: 464, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13565
+ rotate: false
+ xy: 541, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13566
+ rotate: false
+ xy: 618, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13571
+ rotate: false
+ xy: 695, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13572
+ rotate: false
+ xy: 772, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13577
+ rotate: false
+ xy: 849, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13578
+ rotate: false
+ xy: 926, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13582
+ rotate: false
+ xy: 2, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13583
+ rotate: false
+ xy: 79, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13593
+ rotate: false
+ xy: 156, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13594
+ rotate: false
+ xy: 233, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13599
+ rotate: false
+ xy: 310, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13600
+ rotate: false
+ xy: 387, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13605
+ rotate: false
+ xy: 464, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13606
+ rotate: false
+ xy: 541, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13610
+ rotate: false
+ xy: 618, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13611
+ rotate: false
+ xy: 695, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13619
+ rotate: false
+ xy: 772, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13620
+ rotate: false
+ xy: 849, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13625
+ rotate: false
+ xy: 926, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13626
+ rotate: false
+ xy: 2, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13631
+ rotate: false
+ xy: 79, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13632
+ rotate: false
+ xy: 156, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13636
+ rotate: false
+ xy: 233, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13637
+ rotate: false
+ xy: 310, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13646
+ rotate: false
+ xy: 387, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13647
+ rotate: false
+ xy: 464, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13652
+ rotate: false
+ xy: 541, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13653
+ rotate: false
+ xy: 618, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13658
+ rotate: false
+ xy: 695, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13659
+ rotate: false
+ xy: 772, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13663
+ rotate: false
+ xy: 849, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13664
+ rotate: false
+ xy: 926, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13673
+ rotate: false
+ xy: 2, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13674
+ rotate: false
+ xy: 79, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13679
+ rotate: false
+ xy: 156, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13680
+ rotate: false
+ xy: 233, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13685
+ rotate: false
+ xy: 310, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13686
+ rotate: false
+ xy: 387, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13690
+ rotate: false
+ xy: 464, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13691
+ rotate: false
+ xy: 541, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13700
+ rotate: false
+ xy: 618, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13701
+ rotate: false
+ xy: 695, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13706
+ rotate: false
+ xy: 772, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13707
+ rotate: false
+ xy: 849, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13712
+ rotate: false
+ xy: 926, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13713
+ rotate: false
+ xy: 2, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13717
+ rotate: false
+ xy: 79, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13718
+ rotate: false
+ xy: 156, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13727
+ rotate: false
+ xy: 233, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13728
+ rotate: false
+ xy: 310, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13733
+ rotate: false
+ xy: 387, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13734
+ rotate: false
+ xy: 464, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13739
+ rotate: false
+ xy: 541, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13740
+ rotate: false
+ xy: 618, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13744
+ rotate: false
+ xy: 695, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13745
+ rotate: false
+ xy: 772, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13753
+ rotate: false
+ xy: 849, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13754
+ rotate: false
+ xy: 926, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13759
+ rotate: false
+ xy: 79, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13760
+ rotate: false
+ xy: 156, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13765
+ rotate: false
+ xy: 233, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13766
+ rotate: false
+ xy: 310, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13770
+ rotate: false
+ xy: 387, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13771
+ rotate: false
+ xy: 464, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13780
+ rotate: false
+ xy: 541, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13781
+ rotate: false
+ xy: 618, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13786
+ rotate: false
+ xy: 695, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13787
+ rotate: false
+ xy: 772, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13792
+ rotate: false
+ xy: 849, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13793
+ rotate: false
+ xy: 926, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13797
+ rotate: false
+ xy: 156, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13798
+ rotate: false
+ xy: 233, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13807
+ rotate: false
+ xy: 310, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13808
+ rotate: false
+ xy: 387, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13813
+ rotate: false
+ xy: 464, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13814
+ rotate: false
+ xy: 541, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13819
+ rotate: false
+ xy: 618, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13820
+ rotate: false
+ xy: 695, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13824
+ rotate: false
+ xy: 772, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13825
+ rotate: false
+ xy: 849, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13834
+ rotate: false
+ xy: 926, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13835
+ rotate: false
+ xy: 233, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13840
+ rotate: false
+ xy: 310, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13841
+ rotate: false
+ xy: 387, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13846
+ rotate: false
+ xy: 464, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13847
+ rotate: false
+ xy: 541, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13851
+ rotate: false
+ xy: 618, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13852
+ rotate: false
+ xy: 695, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13861
+ rotate: false
+ xy: 772, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13862
+ rotate: false
+ xy: 849, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13867
+ rotate: false
+ xy: 926, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13868
+ rotate: false
+ xy: 310, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13873
+ rotate: false
+ xy: 387, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13874
+ rotate: false
+ xy: 464, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13878
+ rotate: false
+ xy: 541, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13879
+ rotate: false
+ xy: 618, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13888
+ rotate: false
+ xy: 695, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13889
+ rotate: false
+ xy: 772, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13894
+ rotate: false
+ xy: 849, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13895
+ rotate: false
+ xy: 926, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13900
+ rotate: false
+ xy: 387, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13901
+ rotate: false
+ xy: 464, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13905
+ rotate: false
+ xy: 541, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13906
+ rotate: false
+ xy: 618, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13928
+ rotate: false
+ xy: 695, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13929
+ rotate: false
+ xy: 772, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13934
+ rotate: false
+ xy: 849, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13935
+ rotate: false
+ xy: 926, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13940
+ rotate: false
+ xy: 464, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13941
+ rotate: false
+ xy: 541, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13945
+ rotate: false
+ xy: 618, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13946
+ rotate: false
+ xy: 695, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13966
+ rotate: false
+ xy: 772, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13967
+ rotate: false
+ xy: 849, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13972
+ rotate: false
+ xy: 926, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13973
+ rotate: false
+ xy: 541, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13978
+ rotate: false
+ xy: 618, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13979
+ rotate: false
+ xy: 695, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13983
+ rotate: false
+ xy: 772, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+13984
+ rotate: false
+ xy: 849, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14002
+ rotate: false
+ xy: 926, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14003
+ rotate: false
+ xy: 618, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14008
+ rotate: false
+ xy: 695, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14009
+ rotate: false
+ xy: 772, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14014
+ rotate: false
+ xy: 849, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14015
+ rotate: false
+ xy: 926, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14019
+ rotate: false
+ xy: 695, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14020
+ rotate: false
+ xy: 772, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14055
+ rotate: false
+ xy: 849, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14056
+ rotate: false
+ xy: 926, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14061
+ rotate: false
+ xy: 772, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14062
+ rotate: false
+ xy: 849, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14067
+ rotate: false
+ xy: 926, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14068
+ rotate: false
+ xy: 849, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14072
+ rotate: false
+ xy: 926, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14073
+ rotate: false
+ xy: 926, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+385
+ rotate: false
+ xy: 2, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+459
+ rotate: false
+ xy: 992, 2
+ size: 26, 32
+ orig: 26, 32
+ offset: 0, 0
+ index: -1
+500
+ rotate: false
+ xy: 68, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+512
+ rotate: false
+ xy: 134, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+529
+ rotate: false
+ xy: 200, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+530
+ rotate: false
+ xy: 266, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+546
+ rotate: false
+ xy: 332, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+547
+ rotate: false
+ xy: 398, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+548
+ rotate: false
+ xy: 464, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+549
+ rotate: false
+ xy: 530, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+610
+ rotate: false
+ xy: 596, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+611
+ rotate: false
+ xy: 662, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+612
+ rotate: false
+ xy: 728, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+613
+ rotate: false
+ xy: 794, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+614
+ rotate: false
+ xy: 860, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+615
+ rotate: false
+ xy: 926, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9623
+ rotate: false
+ xy: 1003, 972
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9624
+ rotate: false
+ xy: 1003, 920
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9627
+ rotate: false
+ xy: 1003, 868
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9628
+ rotate: false
+ xy: 1003, 816
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9631
+ rotate: false
+ xy: 1003, 764
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9991
+ rotate: false
+ xy: 1003, 712
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9994
+ rotate: false
+ xy: 1003, 660
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9995
+ rotate: false
+ xy: 1003, 608
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9998
+ rotate: false
+ xy: 1003, 556
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+
+images80.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+1053
+ rotate: false
+ xy: 794, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1054
+ rotate: false
+ xy: 860, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1057
+ rotate: false
+ xy: 926, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+10888
+ rotate: false
+ xy: 1003, 972
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+10891
+ rotate: false
+ xy: 1003, 920
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+11981
+ rotate: false
+ xy: 1003, 868
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+11984
+ rotate: false
+ xy: 1003, 816
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+11985
+ rotate: false
+ xy: 1003, 764
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+11988
+ rotate: false
+ xy: 1003, 712
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+11989
+ rotate: false
+ xy: 1003, 660
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+11992
+ rotate: false
+ xy: 1003, 608
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+11993
+ rotate: false
+ xy: 1003, 556
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+11996
+ rotate: false
+ xy: 1003, 504
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+12000
+ rotate: false
+ xy: 1003, 452
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+12003
+ rotate: false
+ xy: 1003, 400
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+12335
+ rotate: false
+ xy: 1003, 348
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+12338
+ rotate: false
+ xy: 1003, 296
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+12347
+ rotate: false
+ xy: 1003, 244
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+12350
+ rotate: false
+ xy: 1003, 192
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+12351
+ rotate: false
+ xy: 1003, 140
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+12354
+ rotate: false
+ xy: 1003, 88
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+12390
+ rotate: false
+ xy: 1003, 36
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+14082
+ rotate: false
+ xy: 2, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14083
+ rotate: false
+ xy: 2, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14088
+ rotate: false
+ xy: 79, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14089
+ rotate: false
+ xy: 2, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14094
+ rotate: false
+ xy: 79, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14095
+ rotate: false
+ xy: 156, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14099
+ rotate: false
+ xy: 2, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14100
+ rotate: false
+ xy: 79, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14108
+ rotate: false
+ xy: 156, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14109
+ rotate: false
+ xy: 233, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14114
+ rotate: false
+ xy: 2, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14115
+ rotate: false
+ xy: 79, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14120
+ rotate: false
+ xy: 156, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14121
+ rotate: false
+ xy: 233, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14125
+ rotate: false
+ xy: 310, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14126
+ rotate: false
+ xy: 2, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14134
+ rotate: false
+ xy: 79, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14135
+ rotate: false
+ xy: 156, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14140
+ rotate: false
+ xy: 233, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14141
+ rotate: false
+ xy: 310, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14146
+ rotate: false
+ xy: 387, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14147
+ rotate: false
+ xy: 2, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14151
+ rotate: false
+ xy: 79, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14152
+ rotate: false
+ xy: 156, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14160
+ rotate: false
+ xy: 233, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14161
+ rotate: false
+ xy: 310, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14166
+ rotate: false
+ xy: 387, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14167
+ rotate: false
+ xy: 464, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14172
+ rotate: false
+ xy: 2, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14173
+ rotate: false
+ xy: 79, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14177
+ rotate: false
+ xy: 156, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14178
+ rotate: false
+ xy: 233, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14199
+ rotate: false
+ xy: 310, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14200
+ rotate: false
+ xy: 387, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14205
+ rotate: false
+ xy: 464, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14206
+ rotate: false
+ xy: 541, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14211
+ rotate: false
+ xy: 2, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14212
+ rotate: false
+ xy: 79, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14216
+ rotate: false
+ xy: 156, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14217
+ rotate: false
+ xy: 233, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14226
+ rotate: false
+ xy: 310, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14227
+ rotate: false
+ xy: 387, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14232
+ rotate: false
+ xy: 464, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14233
+ rotate: false
+ xy: 541, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14238
+ rotate: false
+ xy: 618, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14239
+ rotate: false
+ xy: 2, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14243
+ rotate: false
+ xy: 79, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14244
+ rotate: false
+ xy: 156, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14253
+ rotate: false
+ xy: 233, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14254
+ rotate: false
+ xy: 310, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14259
+ rotate: false
+ xy: 387, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14260
+ rotate: false
+ xy: 464, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14265
+ rotate: false
+ xy: 541, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14266
+ rotate: false
+ xy: 618, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14270
+ rotate: false
+ xy: 695, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14271
+ rotate: false
+ xy: 2, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14280
+ rotate: false
+ xy: 79, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14281
+ rotate: false
+ xy: 156, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14286
+ rotate: false
+ xy: 233, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14287
+ rotate: false
+ xy: 310, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14292
+ rotate: false
+ xy: 387, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14293
+ rotate: false
+ xy: 464, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14297
+ rotate: false
+ xy: 541, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14298
+ rotate: false
+ xy: 618, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14307
+ rotate: false
+ xy: 695, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14308
+ rotate: false
+ xy: 772, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14313
+ rotate: false
+ xy: 2, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14314
+ rotate: false
+ xy: 79, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14319
+ rotate: false
+ xy: 156, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14320
+ rotate: false
+ xy: 233, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14324
+ rotate: false
+ xy: 310, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14325
+ rotate: false
+ xy: 387, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14334
+ rotate: false
+ xy: 464, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14335
+ rotate: false
+ xy: 541, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14340
+ rotate: false
+ xy: 618, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14341
+ rotate: false
+ xy: 695, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14346
+ rotate: false
+ xy: 772, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14347
+ rotate: false
+ xy: 849, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14351
+ rotate: false
+ xy: 2, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14352
+ rotate: false
+ xy: 79, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14361
+ rotate: false
+ xy: 156, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14362
+ rotate: false
+ xy: 233, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14367
+ rotate: false
+ xy: 310, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14368
+ rotate: false
+ xy: 387, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14373
+ rotate: false
+ xy: 464, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14374
+ rotate: false
+ xy: 541, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14378
+ rotate: false
+ xy: 618, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14379
+ rotate: false
+ xy: 695, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14388
+ rotate: false
+ xy: 772, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14389
+ rotate: false
+ xy: 849, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14394
+ rotate: false
+ xy: 926, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14395
+ rotate: false
+ xy: 2, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14400
+ rotate: false
+ xy: 79, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14401
+ rotate: false
+ xy: 156, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14405
+ rotate: false
+ xy: 233, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14406
+ rotate: false
+ xy: 310, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14415
+ rotate: false
+ xy: 387, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14416
+ rotate: false
+ xy: 464, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14421
+ rotate: false
+ xy: 541, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14422
+ rotate: false
+ xy: 618, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14427
+ rotate: false
+ xy: 695, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14428
+ rotate: false
+ xy: 772, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14432
+ rotate: false
+ xy: 849, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14433
+ rotate: false
+ xy: 926, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14442
+ rotate: false
+ xy: 2, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14443
+ rotate: false
+ xy: 79, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14448
+ rotate: false
+ xy: 156, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14449
+ rotate: false
+ xy: 233, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14454
+ rotate: false
+ xy: 310, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14455
+ rotate: false
+ xy: 387, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14459
+ rotate: false
+ xy: 464, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14460
+ rotate: false
+ xy: 541, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14469
+ rotate: false
+ xy: 618, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14470
+ rotate: false
+ xy: 695, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14475
+ rotate: false
+ xy: 772, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14476
+ rotate: false
+ xy: 849, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14481
+ rotate: false
+ xy: 926, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14482
+ rotate: false
+ xy: 2, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14486
+ rotate: false
+ xy: 79, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14487
+ rotate: false
+ xy: 156, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14496
+ rotate: false
+ xy: 233, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14497
+ rotate: false
+ xy: 310, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14502
+ rotate: false
+ xy: 387, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14503
+ rotate: false
+ xy: 464, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14508
+ rotate: false
+ xy: 541, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14509
+ rotate: false
+ xy: 618, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14513
+ rotate: false
+ xy: 695, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14514
+ rotate: false
+ xy: 772, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14523
+ rotate: false
+ xy: 849, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14524
+ rotate: false
+ xy: 926, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14529
+ rotate: false
+ xy: 2, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14530
+ rotate: false
+ xy: 79, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14535
+ rotate: false
+ xy: 156, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14536
+ rotate: false
+ xy: 233, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14540
+ rotate: false
+ xy: 310, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14541
+ rotate: false
+ xy: 387, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14550
+ rotate: false
+ xy: 464, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14551
+ rotate: false
+ xy: 541, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14556
+ rotate: false
+ xy: 618, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14557
+ rotate: false
+ xy: 695, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14562
+ rotate: false
+ xy: 772, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14563
+ rotate: false
+ xy: 849, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14567
+ rotate: false
+ xy: 926, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14568
+ rotate: false
+ xy: 2, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14577
+ rotate: false
+ xy: 79, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14583
+ rotate: false
+ xy: 156, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14589
+ rotate: false
+ xy: 233, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14594
+ rotate: false
+ xy: 310, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14604
+ rotate: false
+ xy: 387, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14605
+ rotate: false
+ xy: 464, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14610
+ rotate: false
+ xy: 541, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14611
+ rotate: false
+ xy: 618, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14616
+ rotate: false
+ xy: 695, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14617
+ rotate: false
+ xy: 772, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14621
+ rotate: false
+ xy: 849, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14622
+ rotate: false
+ xy: 926, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14631
+ rotate: false
+ xy: 2, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14632
+ rotate: false
+ xy: 79, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14637
+ rotate: false
+ xy: 156, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14638
+ rotate: false
+ xy: 233, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14643
+ rotate: false
+ xy: 310, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14644
+ rotate: false
+ xy: 387, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14648
+ rotate: false
+ xy: 464, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14649
+ rotate: false
+ xy: 541, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14658
+ rotate: false
+ xy: 618, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14659
+ rotate: false
+ xy: 695, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14664
+ rotate: false
+ xy: 772, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14665
+ rotate: false
+ xy: 849, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14670
+ rotate: false
+ xy: 926, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14671
+ rotate: false
+ xy: 2, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14675
+ rotate: false
+ xy: 79, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14676
+ rotate: false
+ xy: 156, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14685
+ rotate: false
+ xy: 233, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14686
+ rotate: false
+ xy: 310, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14691
+ rotate: false
+ xy: 387, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14692
+ rotate: false
+ xy: 464, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14697
+ rotate: false
+ xy: 541, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14698
+ rotate: false
+ xy: 618, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14702
+ rotate: false
+ xy: 695, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14703
+ rotate: false
+ xy: 772, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14712
+ rotate: false
+ xy: 849, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14713
+ rotate: false
+ xy: 926, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14718
+ rotate: false
+ xy: 2, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14719
+ rotate: false
+ xy: 79, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14724
+ rotate: false
+ xy: 156, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14725
+ rotate: false
+ xy: 233, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14729
+ rotate: false
+ xy: 310, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14730
+ rotate: false
+ xy: 387, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14739
+ rotate: false
+ xy: 464, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14740
+ rotate: false
+ xy: 541, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14745
+ rotate: false
+ xy: 618, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14746
+ rotate: false
+ xy: 695, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14751
+ rotate: false
+ xy: 772, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14752
+ rotate: false
+ xy: 849, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14756
+ rotate: false
+ xy: 926, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14757
+ rotate: false
+ xy: 79, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14766
+ rotate: false
+ xy: 156, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14767
+ rotate: false
+ xy: 233, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14772
+ rotate: false
+ xy: 310, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14773
+ rotate: false
+ xy: 387, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14778
+ rotate: false
+ xy: 464, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14779
+ rotate: false
+ xy: 541, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14783
+ rotate: false
+ xy: 618, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14784
+ rotate: false
+ xy: 695, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14793
+ rotate: false
+ xy: 772, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14794
+ rotate: false
+ xy: 849, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14799
+ rotate: false
+ xy: 926, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14800
+ rotate: false
+ xy: 156, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14805
+ rotate: false
+ xy: 233, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14806
+ rotate: false
+ xy: 310, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14810
+ rotate: false
+ xy: 387, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14811
+ rotate: false
+ xy: 464, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14820
+ rotate: false
+ xy: 541, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14821
+ rotate: false
+ xy: 618, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14826
+ rotate: false
+ xy: 695, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14827
+ rotate: false
+ xy: 772, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14832
+ rotate: false
+ xy: 849, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14833
+ rotate: false
+ xy: 926, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14837
+ rotate: false
+ xy: 233, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14838
+ rotate: false
+ xy: 310, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14847
+ rotate: false
+ xy: 387, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14848
+ rotate: false
+ xy: 464, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14853
+ rotate: false
+ xy: 541, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14854
+ rotate: false
+ xy: 618, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14859
+ rotate: false
+ xy: 695, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14860
+ rotate: false
+ xy: 772, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14864
+ rotate: false
+ xy: 849, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14865
+ rotate: false
+ xy: 926, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14874
+ rotate: false
+ xy: 310, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14875
+ rotate: false
+ xy: 387, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14880
+ rotate: false
+ xy: 464, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14881
+ rotate: false
+ xy: 541, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14886
+ rotate: false
+ xy: 618, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14887
+ rotate: false
+ xy: 695, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14891
+ rotate: false
+ xy: 772, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14892
+ rotate: false
+ xy: 849, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14901
+ rotate: false
+ xy: 926, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14902
+ rotate: false
+ xy: 387, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14907
+ rotate: false
+ xy: 464, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14908
+ rotate: false
+ xy: 541, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14913
+ rotate: false
+ xy: 618, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14914
+ rotate: false
+ xy: 695, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14918
+ rotate: false
+ xy: 772, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14919
+ rotate: false
+ xy: 849, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14928
+ rotate: false
+ xy: 926, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14929
+ rotate: false
+ xy: 464, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14934
+ rotate: false
+ xy: 541, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14935
+ rotate: false
+ xy: 618, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14940
+ rotate: false
+ xy: 695, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14941
+ rotate: false
+ xy: 772, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14945
+ rotate: false
+ xy: 849, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14946
+ rotate: false
+ xy: 926, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14955
+ rotate: false
+ xy: 541, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14956
+ rotate: false
+ xy: 618, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14961
+ rotate: false
+ xy: 695, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14962
+ rotate: false
+ xy: 772, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14967
+ rotate: false
+ xy: 849, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14968
+ rotate: false
+ xy: 926, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14972
+ rotate: false
+ xy: 618, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14973
+ rotate: false
+ xy: 695, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14982
+ rotate: false
+ xy: 772, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14983
+ rotate: false
+ xy: 849, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14988
+ rotate: false
+ xy: 926, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14989
+ rotate: false
+ xy: 695, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14994
+ rotate: false
+ xy: 772, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14995
+ rotate: false
+ xy: 849, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+14999
+ rotate: false
+ xy: 926, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15000
+ rotate: false
+ xy: 772, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15009
+ rotate: false
+ xy: 849, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15010
+ rotate: false
+ xy: 926, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15015
+ rotate: false
+ xy: 849, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15016
+ rotate: false
+ xy: 926, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15021
+ rotate: false
+ xy: 926, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2361
+ rotate: false
+ xy: 992, 2
+ size: 25, 32
+ orig: 25, 32
+ offset: 0, 0
+ index: -1
+616
+ rotate: false
+ xy: 2, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+617
+ rotate: false
+ xy: 68, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+618
+ rotate: false
+ xy: 134, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+619
+ rotate: false
+ xy: 200, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+620
+ rotate: false
+ xy: 266, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+621
+ rotate: false
+ xy: 332, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+622
+ rotate: false
+ xy: 398, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+623
+ rotate: false
+ xy: 464, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+649
+ rotate: false
+ xy: 530, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+670
+ rotate: false
+ xy: 596, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+672
+ rotate: false
+ xy: 662, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+673
+ rotate: false
+ xy: 728, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+
+images81.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+1058
+ rotate: false
+ xy: 2, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1061
+ rotate: false
+ xy: 68, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1062
+ rotate: false
+ xy: 134, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1065
+ rotate: false
+ xy: 200, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1066
+ rotate: false
+ xy: 266, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1069
+ rotate: false
+ xy: 332, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1070
+ rotate: false
+ xy: 398, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1073
+ rotate: false
+ xy: 464, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1074
+ rotate: false
+ xy: 530, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1077
+ rotate: false
+ xy: 596, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1078
+ rotate: false
+ xy: 662, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1081
+ rotate: false
+ xy: 728, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1082
+ rotate: false
+ xy: 794, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1085
+ rotate: false
+ xy: 860, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1086
+ rotate: false
+ xy: 926, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12393
+ rotate: false
+ xy: 1003, 972
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+12394
+ rotate: false
+ xy: 1003, 920
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+12397
+ rotate: false
+ xy: 1003, 868
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+12994
+ rotate: false
+ xy: 1003, 816
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+12997
+ rotate: false
+ xy: 1003, 764
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+12998
+ rotate: false
+ xy: 1003, 712
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13001
+ rotate: false
+ xy: 1003, 660
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13003
+ rotate: false
+ xy: 1003, 608
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13006
+ rotate: false
+ xy: 1003, 556
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13007
+ rotate: false
+ xy: 1003, 504
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13010
+ rotate: false
+ xy: 1003, 452
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13011
+ rotate: false
+ xy: 1003, 400
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13014
+ rotate: false
+ xy: 1003, 348
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13015
+ rotate: false
+ xy: 1003, 296
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13018
+ rotate: false
+ xy: 1003, 244
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13019
+ rotate: false
+ xy: 1003, 192
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13022
+ rotate: false
+ xy: 1003, 140
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13023
+ rotate: false
+ xy: 1003, 88
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13026
+ rotate: false
+ xy: 1003, 36
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+15022
+ rotate: false
+ xy: 2, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15026
+ rotate: false
+ xy: 2, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15027
+ rotate: false
+ xy: 79, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15036
+ rotate: false
+ xy: 2, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15037
+ rotate: false
+ xy: 79, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15042
+ rotate: false
+ xy: 156, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15043
+ rotate: false
+ xy: 2, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15048
+ rotate: false
+ xy: 79, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15049
+ rotate: false
+ xy: 156, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15053
+ rotate: false
+ xy: 233, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15054
+ rotate: false
+ xy: 2, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15063
+ rotate: false
+ xy: 79, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15064
+ rotate: false
+ xy: 156, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15069
+ rotate: false
+ xy: 233, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15070
+ rotate: false
+ xy: 310, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15075
+ rotate: false
+ xy: 2, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15076
+ rotate: false
+ xy: 79, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15080
+ rotate: false
+ xy: 156, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15081
+ rotate: false
+ xy: 233, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15090
+ rotate: false
+ xy: 310, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15091
+ rotate: false
+ xy: 387, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15096
+ rotate: false
+ xy: 2, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15097
+ rotate: false
+ xy: 79, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15102
+ rotate: false
+ xy: 156, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15103
+ rotate: false
+ xy: 233, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15107
+ rotate: false
+ xy: 310, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15108
+ rotate: false
+ xy: 387, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15117
+ rotate: false
+ xy: 464, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15118
+ rotate: false
+ xy: 2, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15123
+ rotate: false
+ xy: 79, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15124
+ rotate: false
+ xy: 156, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15129
+ rotate: false
+ xy: 233, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15130
+ rotate: false
+ xy: 310, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15134
+ rotate: false
+ xy: 387, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15135
+ rotate: false
+ xy: 464, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15144
+ rotate: false
+ xy: 541, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15145
+ rotate: false
+ xy: 2, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15150
+ rotate: false
+ xy: 79, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15151
+ rotate: false
+ xy: 156, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15156
+ rotate: false
+ xy: 233, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15157
+ rotate: false
+ xy: 310, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15161
+ rotate: false
+ xy: 387, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15162
+ rotate: false
+ xy: 464, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15171
+ rotate: false
+ xy: 541, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15172
+ rotate: false
+ xy: 618, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15177
+ rotate: false
+ xy: 2, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15178
+ rotate: false
+ xy: 79, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15183
+ rotate: false
+ xy: 156, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15184
+ rotate: false
+ xy: 233, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15188
+ rotate: false
+ xy: 310, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15189
+ rotate: false
+ xy: 387, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15198
+ rotate: false
+ xy: 464, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15199
+ rotate: false
+ xy: 541, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15204
+ rotate: false
+ xy: 618, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15205
+ rotate: false
+ xy: 695, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15210
+ rotate: false
+ xy: 2, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15211
+ rotate: false
+ xy: 79, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15215
+ rotate: false
+ xy: 156, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15216
+ rotate: false
+ xy: 233, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15225
+ rotate: false
+ xy: 310, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15226
+ rotate: false
+ xy: 387, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15231
+ rotate: false
+ xy: 464, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15232
+ rotate: false
+ xy: 541, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15237
+ rotate: false
+ xy: 618, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15238
+ rotate: false
+ xy: 695, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15242
+ rotate: false
+ xy: 772, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15243
+ rotate: false
+ xy: 2, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15252
+ rotate: false
+ xy: 79, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15253
+ rotate: false
+ xy: 156, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15258
+ rotate: false
+ xy: 233, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15259
+ rotate: false
+ xy: 310, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15264
+ rotate: false
+ xy: 387, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15265
+ rotate: false
+ xy: 464, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15269
+ rotate: false
+ xy: 541, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15270
+ rotate: false
+ xy: 618, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15279
+ rotate: false
+ xy: 695, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15280
+ rotate: false
+ xy: 772, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15285
+ rotate: false
+ xy: 849, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15286
+ rotate: false
+ xy: 2, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15291
+ rotate: false
+ xy: 79, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15292
+ rotate: false
+ xy: 156, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15296
+ rotate: false
+ xy: 233, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15297
+ rotate: false
+ xy: 310, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15306
+ rotate: false
+ xy: 387, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15307
+ rotate: false
+ xy: 464, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15312
+ rotate: false
+ xy: 541, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15313
+ rotate: false
+ xy: 618, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15318
+ rotate: false
+ xy: 695, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15319
+ rotate: false
+ xy: 772, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15323
+ rotate: false
+ xy: 849, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15324
+ rotate: false
+ xy: 926, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15333
+ rotate: false
+ xy: 2, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15334
+ rotate: false
+ xy: 79, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15339
+ rotate: false
+ xy: 156, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15340
+ rotate: false
+ xy: 233, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15345
+ rotate: false
+ xy: 310, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15346
+ rotate: false
+ xy: 387, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15350
+ rotate: false
+ xy: 464, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15351
+ rotate: false
+ xy: 541, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15360
+ rotate: false
+ xy: 618, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15361
+ rotate: false
+ xy: 695, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15366
+ rotate: false
+ xy: 772, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15367
+ rotate: false
+ xy: 849, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15372
+ rotate: false
+ xy: 926, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15373
+ rotate: false
+ xy: 2, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15377
+ rotate: false
+ xy: 79, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15378
+ rotate: false
+ xy: 156, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15387
+ rotate: false
+ xy: 233, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15388
+ rotate: false
+ xy: 310, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15393
+ rotate: false
+ xy: 387, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15394
+ rotate: false
+ xy: 464, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15399
+ rotate: false
+ xy: 541, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15400
+ rotate: false
+ xy: 618, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15404
+ rotate: false
+ xy: 695, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15405
+ rotate: false
+ xy: 772, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15414
+ rotate: false
+ xy: 849, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15415
+ rotate: false
+ xy: 926, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15420
+ rotate: false
+ xy: 2, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15421
+ rotate: false
+ xy: 79, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15426
+ rotate: false
+ xy: 156, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15427
+ rotate: false
+ xy: 233, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15431
+ rotate: false
+ xy: 310, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15432
+ rotate: false
+ xy: 387, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15441
+ rotate: false
+ xy: 464, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15442
+ rotate: false
+ xy: 541, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15447
+ rotate: false
+ xy: 618, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15448
+ rotate: false
+ xy: 695, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15453
+ rotate: false
+ xy: 772, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15454
+ rotate: false
+ xy: 849, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15458
+ rotate: false
+ xy: 926, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15459
+ rotate: false
+ xy: 2, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15468
+ rotate: false
+ xy: 79, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15469
+ rotate: false
+ xy: 156, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15474
+ rotate: false
+ xy: 233, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15475
+ rotate: false
+ xy: 310, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15480
+ rotate: false
+ xy: 387, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15481
+ rotate: false
+ xy: 464, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15485
+ rotate: false
+ xy: 541, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15486
+ rotate: false
+ xy: 618, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15495
+ rotate: false
+ xy: 695, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15496
+ rotate: false
+ xy: 772, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15501
+ rotate: false
+ xy: 849, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15502
+ rotate: false
+ xy: 926, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15507
+ rotate: false
+ xy: 2, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15508
+ rotate: false
+ xy: 79, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15512
+ rotate: false
+ xy: 156, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15513
+ rotate: false
+ xy: 233, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15522
+ rotate: false
+ xy: 310, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15523
+ rotate: false
+ xy: 387, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15528
+ rotate: false
+ xy: 464, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15529
+ rotate: false
+ xy: 541, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15534
+ rotate: false
+ xy: 618, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15535
+ rotate: false
+ xy: 695, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15539
+ rotate: false
+ xy: 772, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15540
+ rotate: false
+ xy: 849, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15549
+ rotate: false
+ xy: 926, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15550
+ rotate: false
+ xy: 2, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15555
+ rotate: false
+ xy: 79, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15556
+ rotate: false
+ xy: 156, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15561
+ rotate: false
+ xy: 233, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15562
+ rotate: false
+ xy: 310, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15566
+ rotate: false
+ xy: 387, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15567
+ rotate: false
+ xy: 464, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15603
+ rotate: false
+ xy: 541, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15604
+ rotate: false
+ xy: 618, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15609
+ rotate: false
+ xy: 695, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15610
+ rotate: false
+ xy: 772, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15615
+ rotate: false
+ xy: 849, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15616
+ rotate: false
+ xy: 926, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15620
+ rotate: false
+ xy: 2, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15621
+ rotate: false
+ xy: 79, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15630
+ rotate: false
+ xy: 156, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15631
+ rotate: false
+ xy: 233, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15636
+ rotate: false
+ xy: 310, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15637
+ rotate: false
+ xy: 387, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15642
+ rotate: false
+ xy: 464, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15643
+ rotate: false
+ xy: 541, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15647
+ rotate: false
+ xy: 618, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15648
+ rotate: false
+ xy: 695, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15669
+ rotate: false
+ xy: 772, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15670
+ rotate: false
+ xy: 849, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15674
+ rotate: false
+ xy: 926, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15675
+ rotate: false
+ xy: 2, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15684
+ rotate: false
+ xy: 79, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15685
+ rotate: false
+ xy: 156, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15690
+ rotate: false
+ xy: 233, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15691
+ rotate: false
+ xy: 310, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15696
+ rotate: false
+ xy: 387, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15697
+ rotate: false
+ xy: 464, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15701
+ rotate: false
+ xy: 541, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15702
+ rotate: false
+ xy: 618, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15711
+ rotate: false
+ xy: 695, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15712
+ rotate: false
+ xy: 772, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15717
+ rotate: false
+ xy: 849, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15718
+ rotate: false
+ xy: 926, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15723
+ rotate: false
+ xy: 79, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15724
+ rotate: false
+ xy: 156, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15728
+ rotate: false
+ xy: 233, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15729
+ rotate: false
+ xy: 310, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15750
+ rotate: false
+ xy: 387, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15751
+ rotate: false
+ xy: 464, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15755
+ rotate: false
+ xy: 541, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15756
+ rotate: false
+ xy: 618, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15765
+ rotate: false
+ xy: 695, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15766
+ rotate: false
+ xy: 772, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15771
+ rotate: false
+ xy: 849, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15772
+ rotate: false
+ xy: 926, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15777
+ rotate: false
+ xy: 156, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15778
+ rotate: false
+ xy: 233, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15782
+ rotate: false
+ xy: 310, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15783
+ rotate: false
+ xy: 387, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15792
+ rotate: false
+ xy: 464, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15793
+ rotate: false
+ xy: 541, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15798
+ rotate: false
+ xy: 618, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15799
+ rotate: false
+ xy: 695, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15804
+ rotate: false
+ xy: 772, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15805
+ rotate: false
+ xy: 849, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15809
+ rotate: false
+ xy: 926, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15810
+ rotate: false
+ xy: 233, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15819
+ rotate: false
+ xy: 310, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15820
+ rotate: false
+ xy: 387, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15825
+ rotate: false
+ xy: 464, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15826
+ rotate: false
+ xy: 541, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15831
+ rotate: false
+ xy: 618, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15832
+ rotate: false
+ xy: 695, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15836
+ rotate: false
+ xy: 772, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15837
+ rotate: false
+ xy: 849, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15846
+ rotate: false
+ xy: 926, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15847
+ rotate: false
+ xy: 310, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15852
+ rotate: false
+ xy: 387, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15853
+ rotate: false
+ xy: 464, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15858
+ rotate: false
+ xy: 541, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15859
+ rotate: false
+ xy: 618, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15863
+ rotate: false
+ xy: 695, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15864
+ rotate: false
+ xy: 772, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15873
+ rotate: false
+ xy: 849, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15874
+ rotate: false
+ xy: 926, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15879
+ rotate: false
+ xy: 387, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15880
+ rotate: false
+ xy: 464, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15885
+ rotate: false
+ xy: 541, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15886
+ rotate: false
+ xy: 618, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15890
+ rotate: false
+ xy: 695, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15891
+ rotate: false
+ xy: 772, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15900
+ rotate: false
+ xy: 849, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15901
+ rotate: false
+ xy: 926, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15906
+ rotate: false
+ xy: 464, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15907
+ rotate: false
+ xy: 541, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15912
+ rotate: false
+ xy: 618, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15913
+ rotate: false
+ xy: 695, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15917
+ rotate: false
+ xy: 772, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15918
+ rotate: false
+ xy: 849, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15927
+ rotate: false
+ xy: 926, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15928
+ rotate: false
+ xy: 541, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15933
+ rotate: false
+ xy: 618, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15934
+ rotate: false
+ xy: 695, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15939
+ rotate: false
+ xy: 772, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15940
+ rotate: false
+ xy: 849, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15944
+ rotate: false
+ xy: 926, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15945
+ rotate: false
+ xy: 618, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15954
+ rotate: false
+ xy: 695, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15955
+ rotate: false
+ xy: 772, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15960
+ rotate: false
+ xy: 849, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15961
+ rotate: false
+ xy: 926, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15966
+ rotate: false
+ xy: 695, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15967
+ rotate: false
+ xy: 772, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15971
+ rotate: false
+ xy: 849, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15972
+ rotate: false
+ xy: 926, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15981
+ rotate: false
+ xy: 772, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15982
+ rotate: false
+ xy: 849, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15987
+ rotate: false
+ xy: 926, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15988
+ rotate: false
+ xy: 849, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15993
+ rotate: false
+ xy: 926, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15994
+ rotate: false
+ xy: 926, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2362
+ rotate: false
+ xy: 992, 2
+ size: 25, 32
+ orig: 25, 32
+ offset: 0, 0
+ index: -1
+
+images82.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+1089
+ rotate: false
+ xy: 2, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1090
+ rotate: false
+ xy: 68, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1093
+ rotate: false
+ xy: 134, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1094
+ rotate: false
+ xy: 200, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1097
+ rotate: false
+ xy: 266, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1098
+ rotate: false
+ xy: 332, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13027
+ rotate: false
+ xy: 1003, 972
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13030
+ rotate: false
+ xy: 1003, 920
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13031
+ rotate: false
+ xy: 1003, 868
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13034
+ rotate: false
+ xy: 1003, 816
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13035
+ rotate: false
+ xy: 1003, 764
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13038
+ rotate: false
+ xy: 1003, 712
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13039
+ rotate: false
+ xy: 1003, 660
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13042
+ rotate: false
+ xy: 1003, 608
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13043
+ rotate: false
+ xy: 1003, 556
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13046
+ rotate: false
+ xy: 1003, 504
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13047
+ rotate: false
+ xy: 1003, 452
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13050
+ rotate: false
+ xy: 1003, 400
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13051
+ rotate: false
+ xy: 1003, 348
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13054
+ rotate: false
+ xy: 1003, 296
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13055
+ rotate: false
+ xy: 1003, 244
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13058
+ rotate: false
+ xy: 1003, 192
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13059
+ rotate: false
+ xy: 1003, 140
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13062
+ rotate: false
+ xy: 1003, 88
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13063
+ rotate: false
+ xy: 1003, 36
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+1316
+ rotate: false
+ xy: 398, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1317
+ rotate: false
+ xy: 464, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1320
+ rotate: false
+ xy: 530, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1321
+ rotate: false
+ xy: 596, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1324
+ rotate: false
+ xy: 662, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1325
+ rotate: false
+ xy: 728, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1328
+ rotate: false
+ xy: 794, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1329
+ rotate: false
+ xy: 860, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1333
+ rotate: false
+ xy: 926, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+15998
+ rotate: false
+ xy: 2, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+15999
+ rotate: false
+ xy: 2, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16008
+ rotate: false
+ xy: 79, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16009
+ rotate: false
+ xy: 2, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16014
+ rotate: false
+ xy: 79, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16015
+ rotate: false
+ xy: 156, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16020
+ rotate: false
+ xy: 2, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16021
+ rotate: false
+ xy: 79, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16025
+ rotate: false
+ xy: 156, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16026
+ rotate: false
+ xy: 233, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16035
+ rotate: false
+ xy: 2, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16036
+ rotate: false
+ xy: 79, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16041
+ rotate: false
+ xy: 156, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16042
+ rotate: false
+ xy: 233, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16047
+ rotate: false
+ xy: 310, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16048
+ rotate: false
+ xy: 2, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16052
+ rotate: false
+ xy: 79, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16053
+ rotate: false
+ xy: 156, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16062
+ rotate: false
+ xy: 233, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16063
+ rotate: false
+ xy: 310, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16068
+ rotate: false
+ xy: 387, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16069
+ rotate: false
+ xy: 2, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16074
+ rotate: false
+ xy: 79, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16075
+ rotate: false
+ xy: 156, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16079
+ rotate: false
+ xy: 233, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16080
+ rotate: false
+ xy: 310, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16089
+ rotate: false
+ xy: 387, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16090
+ rotate: false
+ xy: 464, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16095
+ rotate: false
+ xy: 2, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16096
+ rotate: false
+ xy: 79, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16101
+ rotate: false
+ xy: 156, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16102
+ rotate: false
+ xy: 233, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16106
+ rotate: false
+ xy: 310, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16107
+ rotate: false
+ xy: 387, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16116
+ rotate: false
+ xy: 464, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16117
+ rotate: false
+ xy: 541, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16122
+ rotate: false
+ xy: 2, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16123
+ rotate: false
+ xy: 79, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16128
+ rotate: false
+ xy: 156, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16129
+ rotate: false
+ xy: 233, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16133
+ rotate: false
+ xy: 310, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16134
+ rotate: false
+ xy: 387, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16143
+ rotate: false
+ xy: 464, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16144
+ rotate: false
+ xy: 541, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16149
+ rotate: false
+ xy: 618, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16150
+ rotate: false
+ xy: 2, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16155
+ rotate: false
+ xy: 79, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16156
+ rotate: false
+ xy: 156, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16160
+ rotate: false
+ xy: 233, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16161
+ rotate: false
+ xy: 310, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16170
+ rotate: false
+ xy: 387, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16171
+ rotate: false
+ xy: 464, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16176
+ rotate: false
+ xy: 541, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16177
+ rotate: false
+ xy: 618, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16182
+ rotate: false
+ xy: 695, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16183
+ rotate: false
+ xy: 2, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16187
+ rotate: false
+ xy: 79, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16188
+ rotate: false
+ xy: 156, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16197
+ rotate: false
+ xy: 233, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16198
+ rotate: false
+ xy: 310, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16203
+ rotate: false
+ xy: 387, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16204
+ rotate: false
+ xy: 464, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16209
+ rotate: false
+ xy: 541, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16210
+ rotate: false
+ xy: 618, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16214
+ rotate: false
+ xy: 695, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16215
+ rotate: false
+ xy: 772, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16224
+ rotate: false
+ xy: 2, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16225
+ rotate: false
+ xy: 79, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16230
+ rotate: false
+ xy: 156, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16231
+ rotate: false
+ xy: 233, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16236
+ rotate: false
+ xy: 310, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16237
+ rotate: false
+ xy: 387, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16241
+ rotate: false
+ xy: 464, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16242
+ rotate: false
+ xy: 541, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16251
+ rotate: false
+ xy: 618, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16252
+ rotate: false
+ xy: 695, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16257
+ rotate: false
+ xy: 772, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16258
+ rotate: false
+ xy: 849, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16263
+ rotate: false
+ xy: 2, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16264
+ rotate: false
+ xy: 79, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16268
+ rotate: false
+ xy: 156, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16269
+ rotate: false
+ xy: 233, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16278
+ rotate: false
+ xy: 310, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16279
+ rotate: false
+ xy: 387, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16284
+ rotate: false
+ xy: 464, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16285
+ rotate: false
+ xy: 541, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16290
+ rotate: false
+ xy: 618, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16291
+ rotate: false
+ xy: 695, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16295
+ rotate: false
+ xy: 772, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16296
+ rotate: false
+ xy: 849, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16305
+ rotate: false
+ xy: 926, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16306
+ rotate: false
+ xy: 2, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16311
+ rotate: false
+ xy: 79, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16312
+ rotate: false
+ xy: 156, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16317
+ rotate: false
+ xy: 233, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16318
+ rotate: false
+ xy: 310, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16322
+ rotate: false
+ xy: 387, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16323
+ rotate: false
+ xy: 464, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16332
+ rotate: false
+ xy: 541, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16333
+ rotate: false
+ xy: 618, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16338
+ rotate: false
+ xy: 695, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16339
+ rotate: false
+ xy: 772, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16344
+ rotate: false
+ xy: 849, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16345
+ rotate: false
+ xy: 926, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16349
+ rotate: false
+ xy: 2, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16350
+ rotate: false
+ xy: 79, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16359
+ rotate: false
+ xy: 156, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16360
+ rotate: false
+ xy: 233, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16365
+ rotate: false
+ xy: 310, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16366
+ rotate: false
+ xy: 387, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16371
+ rotate: false
+ xy: 464, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16372
+ rotate: false
+ xy: 541, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16376
+ rotate: false
+ xy: 618, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16377
+ rotate: false
+ xy: 695, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16386
+ rotate: false
+ xy: 772, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16387
+ rotate: false
+ xy: 849, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16392
+ rotate: false
+ xy: 926, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16393
+ rotate: false
+ xy: 2, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16398
+ rotate: false
+ xy: 79, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16399
+ rotate: false
+ xy: 156, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16403
+ rotate: false
+ xy: 233, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16404
+ rotate: false
+ xy: 310, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16413
+ rotate: false
+ xy: 387, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16414
+ rotate: false
+ xy: 464, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16419
+ rotate: false
+ xy: 541, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16420
+ rotate: false
+ xy: 618, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16425
+ rotate: false
+ xy: 695, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16426
+ rotate: false
+ xy: 772, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16430
+ rotate: false
+ xy: 849, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16431
+ rotate: false
+ xy: 926, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16440
+ rotate: false
+ xy: 2, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16441
+ rotate: false
+ xy: 79, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16446
+ rotate: false
+ xy: 156, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16447
+ rotate: false
+ xy: 233, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16452
+ rotate: false
+ xy: 310, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16453
+ rotate: false
+ xy: 387, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16457
+ rotate: false
+ xy: 464, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16458
+ rotate: false
+ xy: 541, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16466
+ rotate: false
+ xy: 618, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16467
+ rotate: false
+ xy: 695, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16472
+ rotate: false
+ xy: 772, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16473
+ rotate: false
+ xy: 849, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16478
+ rotate: false
+ xy: 926, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16479
+ rotate: false
+ xy: 2, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16483
+ rotate: false
+ xy: 79, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16484
+ rotate: false
+ xy: 156, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16493
+ rotate: false
+ xy: 233, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16494
+ rotate: false
+ xy: 310, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16499
+ rotate: false
+ xy: 387, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16500
+ rotate: false
+ xy: 464, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16505
+ rotate: false
+ xy: 541, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16506
+ rotate: false
+ xy: 618, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16510
+ rotate: false
+ xy: 695, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16511
+ rotate: false
+ xy: 772, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16520
+ rotate: false
+ xy: 849, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16521
+ rotate: false
+ xy: 926, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16526
+ rotate: false
+ xy: 2, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16527
+ rotate: false
+ xy: 79, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16532
+ rotate: false
+ xy: 156, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16533
+ rotate: false
+ xy: 233, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16537
+ rotate: false
+ xy: 310, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16538
+ rotate: false
+ xy: 387, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16547
+ rotate: false
+ xy: 464, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16548
+ rotate: false
+ xy: 541, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16553
+ rotate: false
+ xy: 618, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16554
+ rotate: false
+ xy: 695, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16559
+ rotate: false
+ xy: 772, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16560
+ rotate: false
+ xy: 849, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16564
+ rotate: false
+ xy: 926, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16565
+ rotate: false
+ xy: 2, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16574
+ rotate: false
+ xy: 79, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16575
+ rotate: false
+ xy: 156, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16580
+ rotate: false
+ xy: 233, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16581
+ rotate: false
+ xy: 310, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16586
+ rotate: false
+ xy: 387, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16587
+ rotate: false
+ xy: 464, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16591
+ rotate: false
+ xy: 541, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16592
+ rotate: false
+ xy: 618, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16601
+ rotate: false
+ xy: 695, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16602
+ rotate: false
+ xy: 772, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16607
+ rotate: false
+ xy: 849, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16608
+ rotate: false
+ xy: 926, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16613
+ rotate: false
+ xy: 2, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16614
+ rotate: false
+ xy: 79, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16618
+ rotate: false
+ xy: 156, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16619
+ rotate: false
+ xy: 233, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16628
+ rotate: false
+ xy: 310, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16629
+ rotate: false
+ xy: 387, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16634
+ rotate: false
+ xy: 464, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16635
+ rotate: false
+ xy: 541, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16640
+ rotate: false
+ xy: 618, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16641
+ rotate: false
+ xy: 695, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16645
+ rotate: false
+ xy: 772, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16646
+ rotate: false
+ xy: 849, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16655
+ rotate: false
+ xy: 926, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16656
+ rotate: false
+ xy: 79, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16661
+ rotate: false
+ xy: 156, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16662
+ rotate: false
+ xy: 233, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16667
+ rotate: false
+ xy: 310, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16668
+ rotate: false
+ xy: 387, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16672
+ rotate: false
+ xy: 464, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16673
+ rotate: false
+ xy: 541, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16682
+ rotate: false
+ xy: 618, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16683
+ rotate: false
+ xy: 695, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16688
+ rotate: false
+ xy: 772, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16689
+ rotate: false
+ xy: 849, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16694
+ rotate: false
+ xy: 926, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16695
+ rotate: false
+ xy: 156, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16699
+ rotate: false
+ xy: 233, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16700
+ rotate: false
+ xy: 310, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16710
+ rotate: false
+ xy: 387, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16711
+ rotate: false
+ xy: 464, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16716
+ rotate: false
+ xy: 541, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16717
+ rotate: false
+ xy: 618, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16722
+ rotate: false
+ xy: 695, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16723
+ rotate: false
+ xy: 772, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16727
+ rotate: false
+ xy: 849, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16728
+ rotate: false
+ xy: 926, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16737
+ rotate: false
+ xy: 233, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16738
+ rotate: false
+ xy: 310, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16743
+ rotate: false
+ xy: 387, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16744
+ rotate: false
+ xy: 464, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16749
+ rotate: false
+ xy: 541, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16750
+ rotate: false
+ xy: 618, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16754
+ rotate: false
+ xy: 695, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16755
+ rotate: false
+ xy: 772, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16764
+ rotate: false
+ xy: 849, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16765
+ rotate: false
+ xy: 926, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16770
+ rotate: false
+ xy: 310, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16771
+ rotate: false
+ xy: 387, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16776
+ rotate: false
+ xy: 464, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16777
+ rotate: false
+ xy: 541, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16781
+ rotate: false
+ xy: 618, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16782
+ rotate: false
+ xy: 695, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16791
+ rotate: false
+ xy: 772, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16792
+ rotate: false
+ xy: 849, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16797
+ rotate: false
+ xy: 926, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16798
+ rotate: false
+ xy: 387, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16803
+ rotate: false
+ xy: 464, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16804
+ rotate: false
+ xy: 541, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16808
+ rotate: false
+ xy: 618, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16809
+ rotate: false
+ xy: 695, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16818
+ rotate: false
+ xy: 772, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16819
+ rotate: false
+ xy: 849, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16824
+ rotate: false
+ xy: 926, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16825
+ rotate: false
+ xy: 464, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16830
+ rotate: false
+ xy: 541, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16831
+ rotate: false
+ xy: 618, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16835
+ rotate: false
+ xy: 695, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16836
+ rotate: false
+ xy: 772, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16845
+ rotate: false
+ xy: 849, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16846
+ rotate: false
+ xy: 926, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16851
+ rotate: false
+ xy: 541, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16852
+ rotate: false
+ xy: 618, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16857
+ rotate: false
+ xy: 695, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16858
+ rotate: false
+ xy: 772, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16862
+ rotate: false
+ xy: 849, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16863
+ rotate: false
+ xy: 926, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16872
+ rotate: false
+ xy: 618, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16873
+ rotate: false
+ xy: 695, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16878
+ rotate: false
+ xy: 772, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16879
+ rotate: false
+ xy: 849, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16884
+ rotate: false
+ xy: 926, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16885
+ rotate: false
+ xy: 695, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16889
+ rotate: false
+ xy: 772, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16890
+ rotate: false
+ xy: 849, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16899
+ rotate: false
+ xy: 926, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16900
+ rotate: false
+ xy: 772, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16905
+ rotate: false
+ xy: 849, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16906
+ rotate: false
+ xy: 926, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16911
+ rotate: false
+ xy: 849, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16912
+ rotate: false
+ xy: 926, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16916
+ rotate: false
+ xy: 926, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2369
+ rotate: false
+ xy: 992, 2
+ size: 25, 32
+ orig: 25, 32
+ offset: 0, 0
+ index: -1
+
+images83.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+13066
+ rotate: false
+ xy: 1003, 972
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13067
+ rotate: false
+ xy: 1003, 920
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13070
+ rotate: false
+ xy: 1003, 868
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13071
+ rotate: false
+ xy: 1003, 816
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13074
+ rotate: false
+ xy: 1003, 764
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13075
+ rotate: false
+ xy: 1003, 712
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13078
+ rotate: false
+ xy: 1003, 660
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13079
+ rotate: false
+ xy: 1003, 608
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13082
+ rotate: false
+ xy: 1003, 556
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13083
+ rotate: false
+ xy: 1003, 504
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13086
+ rotate: false
+ xy: 1003, 452
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13087
+ rotate: false
+ xy: 1003, 400
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13090
+ rotate: false
+ xy: 1003, 348
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13091
+ rotate: false
+ xy: 1003, 296
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13094
+ rotate: false
+ xy: 1003, 244
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13095
+ rotate: false
+ xy: 1003, 192
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13098
+ rotate: false
+ xy: 1003, 140
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13099
+ rotate: false
+ xy: 1003, 88
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13102
+ rotate: false
+ xy: 1003, 36
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+1337
+ rotate: false
+ xy: 2, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1341
+ rotate: false
+ xy: 68, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1345
+ rotate: false
+ xy: 134, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1382
+ rotate: false
+ xy: 200, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1386
+ rotate: false
+ xy: 266, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1390
+ rotate: false
+ xy: 332, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1394
+ rotate: false
+ xy: 398, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1397
+ rotate: false
+ xy: 464, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1401
+ rotate: false
+ xy: 530, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1405
+ rotate: false
+ xy: 596, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1409
+ rotate: false
+ xy: 662, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1446
+ rotate: false
+ xy: 728, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1450
+ rotate: false
+ xy: 794, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1454
+ rotate: false
+ xy: 860, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1458
+ rotate: false
+ xy: 926, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+16917
+ rotate: false
+ xy: 2, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16926
+ rotate: false
+ xy: 2, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16927
+ rotate: false
+ xy: 79, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16932
+ rotate: false
+ xy: 2, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16933
+ rotate: false
+ xy: 79, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16938
+ rotate: false
+ xy: 156, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16939
+ rotate: false
+ xy: 2, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16943
+ rotate: false
+ xy: 79, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16944
+ rotate: false
+ xy: 156, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16953
+ rotate: false
+ xy: 233, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16954
+ rotate: false
+ xy: 2, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16959
+ rotate: false
+ xy: 79, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16960
+ rotate: false
+ xy: 156, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16965
+ rotate: false
+ xy: 233, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16966
+ rotate: false
+ xy: 310, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16970
+ rotate: false
+ xy: 2, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16971
+ rotate: false
+ xy: 79, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16980
+ rotate: false
+ xy: 156, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16981
+ rotate: false
+ xy: 233, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16986
+ rotate: false
+ xy: 310, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16987
+ rotate: false
+ xy: 387, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16992
+ rotate: false
+ xy: 2, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16993
+ rotate: false
+ xy: 79, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16997
+ rotate: false
+ xy: 156, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+16998
+ rotate: false
+ xy: 233, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17007
+ rotate: false
+ xy: 310, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17008
+ rotate: false
+ xy: 387, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17013
+ rotate: false
+ xy: 464, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17014
+ rotate: false
+ xy: 2, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17019
+ rotate: false
+ xy: 79, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17020
+ rotate: false
+ xy: 156, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17024
+ rotate: false
+ xy: 233, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17025
+ rotate: false
+ xy: 310, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17034
+ rotate: false
+ xy: 387, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17035
+ rotate: false
+ xy: 464, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17040
+ rotate: false
+ xy: 541, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17041
+ rotate: false
+ xy: 2, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17046
+ rotate: false
+ xy: 79, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17047
+ rotate: false
+ xy: 156, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17051
+ rotate: false
+ xy: 233, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17052
+ rotate: false
+ xy: 310, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17061
+ rotate: false
+ xy: 387, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17115
+ rotate: false
+ xy: 387, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17062
+ rotate: false
+ xy: 464, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17116
+ rotate: false
+ xy: 464, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17067
+ rotate: false
+ xy: 541, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17121
+ rotate: false
+ xy: 541, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17068
+ rotate: false
+ xy: 618, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17122
+ rotate: false
+ xy: 618, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17073
+ rotate: false
+ xy: 2, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17127
+ rotate: false
+ xy: 2, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17074
+ rotate: false
+ xy: 79, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17128
+ rotate: false
+ xy: 79, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17078
+ rotate: false
+ xy: 156, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17132
+ rotate: false
+ xy: 156, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17079
+ rotate: false
+ xy: 233, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17133
+ rotate: false
+ xy: 233, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17088
+ rotate: false
+ xy: 310, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17223
+ rotate: false
+ xy: 310, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17089
+ rotate: false
+ xy: 387, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17224
+ rotate: false
+ xy: 387, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17094
+ rotate: false
+ xy: 464, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17229
+ rotate: false
+ xy: 464, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17095
+ rotate: false
+ xy: 541, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17230
+ rotate: false
+ xy: 541, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17100
+ rotate: false
+ xy: 618, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17235
+ rotate: false
+ xy: 618, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17101
+ rotate: false
+ xy: 695, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17236
+ rotate: false
+ xy: 695, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17105
+ rotate: false
+ xy: 2, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17240
+ rotate: false
+ xy: 2, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17106
+ rotate: false
+ xy: 79, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17241
+ rotate: false
+ xy: 79, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17142
+ rotate: false
+ xy: 156, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17143
+ rotate: false
+ xy: 233, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17148
+ rotate: false
+ xy: 310, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17149
+ rotate: false
+ xy: 387, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17154
+ rotate: false
+ xy: 464, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17155
+ rotate: false
+ xy: 541, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17159
+ rotate: false
+ xy: 618, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17160
+ rotate: false
+ xy: 695, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17169
+ rotate: false
+ xy: 772, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17170
+ rotate: false
+ xy: 2, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17175
+ rotate: false
+ xy: 79, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17176
+ rotate: false
+ xy: 156, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17181
+ rotate: false
+ xy: 233, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17182
+ rotate: false
+ xy: 310, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17186
+ rotate: false
+ xy: 387, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17187
+ rotate: false
+ xy: 464, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17196
+ rotate: false
+ xy: 541, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17197
+ rotate: false
+ xy: 618, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17202
+ rotate: false
+ xy: 695, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17203
+ rotate: false
+ xy: 772, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17208
+ rotate: false
+ xy: 849, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17209
+ rotate: false
+ xy: 2, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17213
+ rotate: false
+ xy: 79, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17214
+ rotate: false
+ xy: 156, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17250
+ rotate: false
+ xy: 233, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17251
+ rotate: false
+ xy: 310, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17256
+ rotate: false
+ xy: 387, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17257
+ rotate: false
+ xy: 464, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17262
+ rotate: false
+ xy: 541, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17263
+ rotate: false
+ xy: 618, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17267
+ rotate: false
+ xy: 695, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17268
+ rotate: false
+ xy: 772, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17277
+ rotate: false
+ xy: 849, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17278
+ rotate: false
+ xy: 926, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17283
+ rotate: false
+ xy: 2, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17284
+ rotate: false
+ xy: 79, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17289
+ rotate: false
+ xy: 156, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17290
+ rotate: false
+ xy: 233, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17294
+ rotate: false
+ xy: 310, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17295
+ rotate: false
+ xy: 387, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17304
+ rotate: false
+ xy: 464, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17305
+ rotate: false
+ xy: 541, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17310
+ rotate: false
+ xy: 618, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17311
+ rotate: false
+ xy: 695, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17316
+ rotate: false
+ xy: 772, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17317
+ rotate: false
+ xy: 849, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17321
+ rotate: false
+ xy: 926, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17322
+ rotate: false
+ xy: 2, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17331
+ rotate: false
+ xy: 79, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17332
+ rotate: false
+ xy: 156, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17337
+ rotate: false
+ xy: 233, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17338
+ rotate: false
+ xy: 310, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17343
+ rotate: false
+ xy: 387, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17344
+ rotate: false
+ xy: 464, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17348
+ rotate: false
+ xy: 541, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17349
+ rotate: false
+ xy: 618, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17358
+ rotate: false
+ xy: 695, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17359
+ rotate: false
+ xy: 772, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17364
+ rotate: false
+ xy: 849, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17365
+ rotate: false
+ xy: 926, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17370
+ rotate: false
+ xy: 2, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17371
+ rotate: false
+ xy: 79, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17375
+ rotate: false
+ xy: 156, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17376
+ rotate: false
+ xy: 233, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17385
+ rotate: false
+ xy: 310, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17386
+ rotate: false
+ xy: 387, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17391
+ rotate: false
+ xy: 464, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17392
+ rotate: false
+ xy: 541, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17397
+ rotate: false
+ xy: 618, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17398
+ rotate: false
+ xy: 695, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17402
+ rotate: false
+ xy: 772, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17403
+ rotate: false
+ xy: 849, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17412
+ rotate: false
+ xy: 926, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17413
+ rotate: false
+ xy: 2, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17418
+ rotate: false
+ xy: 79, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17419
+ rotate: false
+ xy: 156, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17424
+ rotate: false
+ xy: 233, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17425
+ rotate: false
+ xy: 310, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17429
+ rotate: false
+ xy: 387, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17430
+ rotate: false
+ xy: 464, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17439
+ rotate: false
+ xy: 541, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17440
+ rotate: false
+ xy: 618, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17445
+ rotate: false
+ xy: 695, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17446
+ rotate: false
+ xy: 772, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17451
+ rotate: false
+ xy: 849, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17452
+ rotate: false
+ xy: 926, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17456
+ rotate: false
+ xy: 2, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17457
+ rotate: false
+ xy: 79, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17466
+ rotate: false
+ xy: 156, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17467
+ rotate: false
+ xy: 233, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17472
+ rotate: false
+ xy: 310, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17473
+ rotate: false
+ xy: 387, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17478
+ rotate: false
+ xy: 464, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17479
+ rotate: false
+ xy: 541, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17483
+ rotate: false
+ xy: 618, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17484
+ rotate: false
+ xy: 695, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17493
+ rotate: false
+ xy: 772, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17494
+ rotate: false
+ xy: 849, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17499
+ rotate: false
+ xy: 926, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17500
+ rotate: false
+ xy: 2, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17505
+ rotate: false
+ xy: 79, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17506
+ rotate: false
+ xy: 156, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17510
+ rotate: false
+ xy: 233, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17511
+ rotate: false
+ xy: 310, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17520
+ rotate: false
+ xy: 387, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17521
+ rotate: false
+ xy: 464, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17526
+ rotate: false
+ xy: 541, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17527
+ rotate: false
+ xy: 618, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17532
+ rotate: false
+ xy: 695, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17533
+ rotate: false
+ xy: 772, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17537
+ rotate: false
+ xy: 849, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17538
+ rotate: false
+ xy: 926, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17547
+ rotate: false
+ xy: 2, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17548
+ rotate: false
+ xy: 79, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17553
+ rotate: false
+ xy: 156, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17554
+ rotate: false
+ xy: 233, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17559
+ rotate: false
+ xy: 310, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17560
+ rotate: false
+ xy: 387, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17564
+ rotate: false
+ xy: 464, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17565
+ rotate: false
+ xy: 541, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17660
+ rotate: false
+ xy: 618, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17661
+ rotate: false
+ xy: 695, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17666
+ rotate: false
+ xy: 772, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17667
+ rotate: false
+ xy: 849, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17672
+ rotate: false
+ xy: 926, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17673
+ rotate: false
+ xy: 2, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17677
+ rotate: false
+ xy: 79, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17678
+ rotate: false
+ xy: 156, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17687
+ rotate: false
+ xy: 233, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17688
+ rotate: false
+ xy: 310, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17693
+ rotate: false
+ xy: 387, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17694
+ rotate: false
+ xy: 464, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17699
+ rotate: false
+ xy: 541, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17700
+ rotate: false
+ xy: 618, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17704
+ rotate: false
+ xy: 695, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17705
+ rotate: false
+ xy: 772, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17861
+ rotate: false
+ xy: 849, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17862
+ rotate: false
+ xy: 926, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17867
+ rotate: false
+ xy: 79, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17868
+ rotate: false
+ xy: 156, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17873
+ rotate: false
+ xy: 233, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17874
+ rotate: false
+ xy: 310, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17878
+ rotate: false
+ xy: 387, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17879
+ rotate: false
+ xy: 464, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17887
+ rotate: false
+ xy: 541, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17888
+ rotate: false
+ xy: 618, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17893
+ rotate: false
+ xy: 695, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17894
+ rotate: false
+ xy: 772, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17899
+ rotate: false
+ xy: 849, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17900
+ rotate: false
+ xy: 926, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17904
+ rotate: false
+ xy: 156, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+17905
+ rotate: false
+ xy: 233, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+18295
+ rotate: false
+ xy: 310, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+18296
+ rotate: false
+ xy: 387, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+18301
+ rotate: false
+ xy: 464, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+18302
+ rotate: false
+ xy: 541, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+18307
+ rotate: false
+ xy: 618, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+18308
+ rotate: false
+ xy: 695, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+18312
+ rotate: false
+ xy: 772, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+18313
+ rotate: false
+ xy: 849, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+18851
+ rotate: false
+ xy: 926, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+18852
+ rotate: false
+ xy: 233, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+18857
+ rotate: false
+ xy: 310, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+18858
+ rotate: false
+ xy: 387, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+18863
+ rotate: false
+ xy: 464, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+18864
+ rotate: false
+ xy: 541, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+18868
+ rotate: false
+ xy: 618, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+18869
+ rotate: false
+ xy: 695, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19419
+ rotate: false
+ xy: 772, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19420
+ rotate: false
+ xy: 849, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19425
+ rotate: false
+ xy: 926, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19426
+ rotate: false
+ xy: 310, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19431
+ rotate: false
+ xy: 387, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19432
+ rotate: false
+ xy: 464, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19436
+ rotate: false
+ xy: 541, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19437
+ rotate: false
+ xy: 618, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19449
+ rotate: false
+ xy: 695, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19450
+ rotate: false
+ xy: 772, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19455
+ rotate: false
+ xy: 849, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19456
+ rotate: false
+ xy: 926, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19461
+ rotate: false
+ xy: 387, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19462
+ rotate: false
+ xy: 464, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19466
+ rotate: false
+ xy: 541, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19467
+ rotate: false
+ xy: 618, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19690
+ rotate: false
+ xy: 695, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19691
+ rotate: false
+ xy: 772, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19696
+ rotate: false
+ xy: 849, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19697
+ rotate: false
+ xy: 926, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19702
+ rotate: false
+ xy: 464, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19703
+ rotate: false
+ xy: 541, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19707
+ rotate: false
+ xy: 618, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19708
+ rotate: false
+ xy: 695, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19726
+ rotate: false
+ xy: 772, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19727
+ rotate: false
+ xy: 849, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19732
+ rotate: false
+ xy: 926, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19733
+ rotate: false
+ xy: 541, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19738
+ rotate: false
+ xy: 618, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19739
+ rotate: false
+ xy: 695, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19743
+ rotate: false
+ xy: 772, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19744
+ rotate: false
+ xy: 849, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19752
+ rotate: false
+ xy: 926, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19753
+ rotate: false
+ xy: 618, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19758
+ rotate: false
+ xy: 695, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19759
+ rotate: false
+ xy: 772, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19764
+ rotate: false
+ xy: 849, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19765
+ rotate: false
+ xy: 926, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19769
+ rotate: false
+ xy: 695, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19770
+ rotate: false
+ xy: 772, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19778
+ rotate: false
+ xy: 849, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19779
+ rotate: false
+ xy: 926, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19784
+ rotate: false
+ xy: 772, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19785
+ rotate: false
+ xy: 849, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19790
+ rotate: false
+ xy: 926, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19791
+ rotate: false
+ xy: 849, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19795
+ rotate: false
+ xy: 926, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19796
+ rotate: false
+ xy: 926, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2370
+ rotate: false
+ xy: 992, 2
+ size: 25, 32
+ orig: 25, 32
+ offset: 0, 0
+ index: -1
+
+images84.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+13103
+ rotate: false
+ xy: 1003, 972
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13106
+ rotate: false
+ xy: 1003, 920
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13107
+ rotate: false
+ xy: 1003, 868
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13110
+ rotate: false
+ xy: 1003, 816
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13111
+ rotate: false
+ xy: 1003, 764
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13114
+ rotate: false
+ xy: 1003, 712
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13115
+ rotate: false
+ xy: 1003, 660
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13118
+ rotate: false
+ xy: 1003, 608
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13119
+ rotate: false
+ xy: 1003, 556
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13122
+ rotate: false
+ xy: 1003, 504
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13123
+ rotate: false
+ xy: 1003, 452
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13126
+ rotate: false
+ xy: 1003, 400
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13127
+ rotate: false
+ xy: 1003, 348
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13130
+ rotate: false
+ xy: 1003, 296
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13131
+ rotate: false
+ xy: 1003, 244
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13134
+ rotate: false
+ xy: 1003, 192
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13135
+ rotate: false
+ xy: 1003, 140
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13138
+ rotate: false
+ xy: 1003, 88
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13139
+ rotate: false
+ xy: 1003, 36
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+1541
+ rotate: false
+ xy: 2, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1542
+ rotate: false
+ xy: 68, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1545
+ rotate: false
+ xy: 134, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1546
+ rotate: false
+ xy: 200, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1549
+ rotate: false
+ xy: 266, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1550
+ rotate: false
+ xy: 332, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1553
+ rotate: false
+ xy: 398, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1554
+ rotate: false
+ xy: 464, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1557
+ rotate: false
+ xy: 530, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1558
+ rotate: false
+ xy: 596, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1561
+ rotate: false
+ xy: 662, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1562
+ rotate: false
+ xy: 728, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1565
+ rotate: false
+ xy: 794, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1566
+ rotate: false
+ xy: 860, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1569
+ rotate: false
+ xy: 926, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19804
+ rotate: false
+ xy: 2, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19805
+ rotate: false
+ xy: 2, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19810
+ rotate: false
+ xy: 79, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19811
+ rotate: false
+ xy: 2, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19816
+ rotate: false
+ xy: 79, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19817
+ rotate: false
+ xy: 156, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19821
+ rotate: false
+ xy: 2, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19822
+ rotate: false
+ xy: 79, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19830
+ rotate: false
+ xy: 156, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19831
+ rotate: false
+ xy: 233, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19836
+ rotate: false
+ xy: 2, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19837
+ rotate: false
+ xy: 79, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19842
+ rotate: false
+ xy: 156, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19843
+ rotate: false
+ xy: 233, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19847
+ rotate: false
+ xy: 310, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19848
+ rotate: false
+ xy: 2, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19856
+ rotate: false
+ xy: 79, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19857
+ rotate: false
+ xy: 156, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19862
+ rotate: false
+ xy: 233, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19863
+ rotate: false
+ xy: 310, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19868
+ rotate: false
+ xy: 387, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19869
+ rotate: false
+ xy: 2, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19873
+ rotate: false
+ xy: 79, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19874
+ rotate: false
+ xy: 156, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19882
+ rotate: false
+ xy: 233, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19883
+ rotate: false
+ xy: 310, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19888
+ rotate: false
+ xy: 387, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19889
+ rotate: false
+ xy: 464, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19894
+ rotate: false
+ xy: 2, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19895
+ rotate: false
+ xy: 79, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19899
+ rotate: false
+ xy: 156, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19900
+ rotate: false
+ xy: 233, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19908
+ rotate: false
+ xy: 310, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19909
+ rotate: false
+ xy: 387, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19914
+ rotate: false
+ xy: 464, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19915
+ rotate: false
+ xy: 541, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19920
+ rotate: false
+ xy: 2, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19921
+ rotate: false
+ xy: 79, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19925
+ rotate: false
+ xy: 156, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19926
+ rotate: false
+ xy: 233, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19934
+ rotate: false
+ xy: 310, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19935
+ rotate: false
+ xy: 387, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19940
+ rotate: false
+ xy: 464, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19941
+ rotate: false
+ xy: 541, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19946
+ rotate: false
+ xy: 618, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19947
+ rotate: false
+ xy: 2, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19951
+ rotate: false
+ xy: 79, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19952
+ rotate: false
+ xy: 156, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19960
+ rotate: false
+ xy: 233, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19961
+ rotate: false
+ xy: 310, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19966
+ rotate: false
+ xy: 387, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19967
+ rotate: false
+ xy: 464, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19972
+ rotate: false
+ xy: 541, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19973
+ rotate: false
+ xy: 618, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19977
+ rotate: false
+ xy: 695, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19978
+ rotate: false
+ xy: 2, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19986
+ rotate: false
+ xy: 79, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19987
+ rotate: false
+ xy: 156, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19992
+ rotate: false
+ xy: 233, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19993
+ rotate: false
+ xy: 310, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19998
+ rotate: false
+ xy: 387, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+19999
+ rotate: false
+ xy: 464, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20003
+ rotate: false
+ xy: 541, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20004
+ rotate: false
+ xy: 618, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20012
+ rotate: false
+ xy: 695, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20013
+ rotate: false
+ xy: 772, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20018
+ rotate: false
+ xy: 2, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20019
+ rotate: false
+ xy: 79, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20024
+ rotate: false
+ xy: 156, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20025
+ rotate: false
+ xy: 233, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20029
+ rotate: false
+ xy: 310, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20030
+ rotate: false
+ xy: 387, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20038
+ rotate: false
+ xy: 464, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20039
+ rotate: false
+ xy: 541, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20044
+ rotate: false
+ xy: 618, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20045
+ rotate: false
+ xy: 695, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20050
+ rotate: false
+ xy: 772, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20051
+ rotate: false
+ xy: 849, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20055
+ rotate: false
+ xy: 2, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20056
+ rotate: false
+ xy: 79, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20209
+ rotate: false
+ xy: 156, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20210
+ rotate: false
+ xy: 233, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20215
+ rotate: false
+ xy: 310, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20216
+ rotate: false
+ xy: 387, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20221
+ rotate: false
+ xy: 464, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20222
+ rotate: false
+ xy: 541, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20226
+ rotate: false
+ xy: 618, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20227
+ rotate: false
+ xy: 695, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20242
+ rotate: false
+ xy: 772, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20243
+ rotate: false
+ xy: 849, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20248
+ rotate: false
+ xy: 926, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20249
+ rotate: false
+ xy: 2, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20254
+ rotate: false
+ xy: 79, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20255
+ rotate: false
+ xy: 156, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20259
+ rotate: false
+ xy: 233, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20260
+ rotate: false
+ xy: 310, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20269
+ rotate: false
+ xy: 387, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20270
+ rotate: false
+ xy: 464, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20275
+ rotate: false
+ xy: 541, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20276
+ rotate: false
+ xy: 618, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20281
+ rotate: false
+ xy: 695, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20282
+ rotate: false
+ xy: 772, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20286
+ rotate: false
+ xy: 849, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20287
+ rotate: false
+ xy: 926, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20296
+ rotate: false
+ xy: 2, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20297
+ rotate: false
+ xy: 79, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20302
+ rotate: false
+ xy: 156, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20303
+ rotate: false
+ xy: 233, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20308
+ rotate: false
+ xy: 310, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20309
+ rotate: false
+ xy: 387, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20313
+ rotate: false
+ xy: 464, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20314
+ rotate: false
+ xy: 541, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20323
+ rotate: false
+ xy: 618, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20324
+ rotate: false
+ xy: 695, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20329
+ rotate: false
+ xy: 772, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20330
+ rotate: false
+ xy: 849, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20335
+ rotate: false
+ xy: 926, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20336
+ rotate: false
+ xy: 2, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20340
+ rotate: false
+ xy: 79, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20341
+ rotate: false
+ xy: 156, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20350
+ rotate: false
+ xy: 233, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20351
+ rotate: false
+ xy: 310, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20356
+ rotate: false
+ xy: 387, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20357
+ rotate: false
+ xy: 464, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20362
+ rotate: false
+ xy: 541, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20363
+ rotate: false
+ xy: 618, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20367
+ rotate: false
+ xy: 695, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20368
+ rotate: false
+ xy: 772, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20377
+ rotate: false
+ xy: 849, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20378
+ rotate: false
+ xy: 926, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20383
+ rotate: false
+ xy: 2, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20384
+ rotate: false
+ xy: 79, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20389
+ rotate: false
+ xy: 156, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20390
+ rotate: false
+ xy: 233, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20394
+ rotate: false
+ xy: 310, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20395
+ rotate: false
+ xy: 387, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20409
+ rotate: false
+ xy: 464, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20410
+ rotate: false
+ xy: 541, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20415
+ rotate: false
+ xy: 618, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20416
+ rotate: false
+ xy: 695, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20421
+ rotate: false
+ xy: 772, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20422
+ rotate: false
+ xy: 849, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20426
+ rotate: false
+ xy: 926, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20427
+ rotate: false
+ xy: 2, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20436
+ rotate: false
+ xy: 79, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20437
+ rotate: false
+ xy: 156, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20442
+ rotate: false
+ xy: 233, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20443
+ rotate: false
+ xy: 310, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20448
+ rotate: false
+ xy: 387, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20449
+ rotate: false
+ xy: 464, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20453
+ rotate: false
+ xy: 541, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20454
+ rotate: false
+ xy: 618, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20463
+ rotate: false
+ xy: 695, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20464
+ rotate: false
+ xy: 772, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20469
+ rotate: false
+ xy: 849, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20470
+ rotate: false
+ xy: 926, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20475
+ rotate: false
+ xy: 2, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20476
+ rotate: false
+ xy: 79, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20480
+ rotate: false
+ xy: 156, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20481
+ rotate: false
+ xy: 233, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20512
+ rotate: false
+ xy: 310, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20513
+ rotate: false
+ xy: 387, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20518
+ rotate: false
+ xy: 464, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22627
+ rotate: false
+ xy: 464, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20519
+ rotate: false
+ xy: 541, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22628
+ rotate: false
+ xy: 541, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20524
+ rotate: false
+ xy: 618, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22633
+ rotate: false
+ xy: 618, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20525
+ rotate: false
+ xy: 695, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22634
+ rotate: false
+ xy: 695, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20529
+ rotate: false
+ xy: 772, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20530
+ rotate: false
+ xy: 849, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20539
+ rotate: false
+ xy: 926, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20540
+ rotate: false
+ xy: 2, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20545
+ rotate: false
+ xy: 79, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20546
+ rotate: false
+ xy: 156, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20551
+ rotate: false
+ xy: 233, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20552
+ rotate: false
+ xy: 310, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20556
+ rotate: false
+ xy: 387, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20557
+ rotate: false
+ xy: 464, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20566
+ rotate: false
+ xy: 541, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20567
+ rotate: false
+ xy: 618, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20572
+ rotate: false
+ xy: 695, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20573
+ rotate: false
+ xy: 772, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20578
+ rotate: false
+ xy: 849, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20579
+ rotate: false
+ xy: 926, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20583
+ rotate: false
+ xy: 2, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20584
+ rotate: false
+ xy: 79, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20593
+ rotate: false
+ xy: 156, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20594
+ rotate: false
+ xy: 233, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20599
+ rotate: false
+ xy: 310, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20600
+ rotate: false
+ xy: 387, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20605
+ rotate: false
+ xy: 464, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20606
+ rotate: false
+ xy: 541, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20610
+ rotate: false
+ xy: 618, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20611
+ rotate: false
+ xy: 695, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20620
+ rotate: false
+ xy: 772, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20621
+ rotate: false
+ xy: 849, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20626
+ rotate: false
+ xy: 926, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20627
+ rotate: false
+ xy: 79, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20632
+ rotate: false
+ xy: 156, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20633
+ rotate: false
+ xy: 233, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20637
+ rotate: false
+ xy: 310, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20638
+ rotate: false
+ xy: 387, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20647
+ rotate: false
+ xy: 464, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20648
+ rotate: false
+ xy: 541, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20653
+ rotate: false
+ xy: 618, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20654
+ rotate: false
+ xy: 695, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20659
+ rotate: false
+ xy: 772, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20660
+ rotate: false
+ xy: 849, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20664
+ rotate: false
+ xy: 926, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20665
+ rotate: false
+ xy: 156, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20674
+ rotate: false
+ xy: 233, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20675
+ rotate: false
+ xy: 310, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20680
+ rotate: false
+ xy: 387, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20681
+ rotate: false
+ xy: 464, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20686
+ rotate: false
+ xy: 541, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20687
+ rotate: false
+ xy: 618, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20691
+ rotate: false
+ xy: 695, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20692
+ rotate: false
+ xy: 772, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20701
+ rotate: false
+ xy: 849, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20702
+ rotate: false
+ xy: 926, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20707
+ rotate: false
+ xy: 233, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20708
+ rotate: false
+ xy: 310, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20713
+ rotate: false
+ xy: 387, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20714
+ rotate: false
+ xy: 464, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20718
+ rotate: false
+ xy: 541, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20719
+ rotate: false
+ xy: 618, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20728
+ rotate: false
+ xy: 695, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20729
+ rotate: false
+ xy: 772, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20734
+ rotate: false
+ xy: 849, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20735
+ rotate: false
+ xy: 926, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20740
+ rotate: false
+ xy: 310, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20741
+ rotate: false
+ xy: 387, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20745
+ rotate: false
+ xy: 464, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20746
+ rotate: false
+ xy: 541, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20755
+ rotate: false
+ xy: 618, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20756
+ rotate: false
+ xy: 695, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20761
+ rotate: false
+ xy: 772, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20762
+ rotate: false
+ xy: 849, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20767
+ rotate: false
+ xy: 926, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20768
+ rotate: false
+ xy: 387, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20772
+ rotate: false
+ xy: 464, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20773
+ rotate: false
+ xy: 541, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20782
+ rotate: false
+ xy: 618, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20783
+ rotate: false
+ xy: 695, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20788
+ rotate: false
+ xy: 772, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20789
+ rotate: false
+ xy: 849, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20794
+ rotate: false
+ xy: 926, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20795
+ rotate: false
+ xy: 464, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20799
+ rotate: false
+ xy: 541, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20800
+ rotate: false
+ xy: 618, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20809
+ rotate: false
+ xy: 695, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20810
+ rotate: false
+ xy: 772, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20815
+ rotate: false
+ xy: 849, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20816
+ rotate: false
+ xy: 926, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20821
+ rotate: false
+ xy: 541, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20822
+ rotate: false
+ xy: 618, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20826
+ rotate: false
+ xy: 695, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20827
+ rotate: false
+ xy: 772, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20836
+ rotate: false
+ xy: 849, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20837
+ rotate: false
+ xy: 926, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20842
+ rotate: false
+ xy: 618, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20843
+ rotate: false
+ xy: 695, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20848
+ rotate: false
+ xy: 772, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20849
+ rotate: false
+ xy: 849, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20853
+ rotate: false
+ xy: 926, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20854
+ rotate: false
+ xy: 695, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20863
+ rotate: false
+ xy: 772, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20864
+ rotate: false
+ xy: 849, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20869
+ rotate: false
+ xy: 926, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20870
+ rotate: false
+ xy: 772, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20875
+ rotate: false
+ xy: 849, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20876
+ rotate: false
+ xy: 926, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20880
+ rotate: false
+ xy: 849, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20881
+ rotate: false
+ xy: 926, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20890
+ rotate: false
+ xy: 926, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2377
+ rotate: false
+ xy: 992, 2
+ size: 25, 32
+ orig: 25, 32
+ offset: 0, 0
+ index: -1
+
+images85.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+13142
+ rotate: false
+ xy: 1003, 972
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13143
+ rotate: false
+ xy: 1003, 920
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13146
+ rotate: false
+ xy: 1003, 868
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13147
+ rotate: false
+ xy: 1003, 816
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13150
+ rotate: false
+ xy: 1003, 764
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13151
+ rotate: false
+ xy: 1003, 712
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13154
+ rotate: false
+ xy: 1003, 660
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13155
+ rotate: false
+ xy: 1003, 608
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13158
+ rotate: false
+ xy: 1003, 556
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13159
+ rotate: false
+ xy: 1003, 504
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13162
+ rotate: false
+ xy: 1003, 452
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13163
+ rotate: false
+ xy: 1003, 400
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13166
+ rotate: false
+ xy: 1003, 348
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13167
+ rotate: false
+ xy: 1003, 296
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13170
+ rotate: false
+ xy: 1003, 244
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13171
+ rotate: false
+ xy: 1003, 192
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13174
+ rotate: false
+ xy: 1003, 140
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13175
+ rotate: false
+ xy: 1003, 88
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13178
+ rotate: false
+ xy: 1003, 36
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+1570
+ rotate: false
+ xy: 2, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1573
+ rotate: false
+ xy: 68, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1574
+ rotate: false
+ xy: 134, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1577
+ rotate: false
+ xy: 200, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1578
+ rotate: false
+ xy: 266, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1581
+ rotate: false
+ xy: 332, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1582
+ rotate: false
+ xy: 398, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1585
+ rotate: false
+ xy: 464, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1586
+ rotate: false
+ xy: 530, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1589
+ rotate: false
+ xy: 596, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1590
+ rotate: false
+ xy: 662, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1593
+ rotate: false
+ xy: 728, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1594
+ rotate: false
+ xy: 794, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1597
+ rotate: false
+ xy: 860, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1598
+ rotate: false
+ xy: 926, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+20891
+ rotate: false
+ xy: 2, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20896
+ rotate: false
+ xy: 2, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20897
+ rotate: false
+ xy: 79, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20902
+ rotate: false
+ xy: 2, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20903
+ rotate: false
+ xy: 79, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20907
+ rotate: false
+ xy: 156, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20908
+ rotate: false
+ xy: 2, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20917
+ rotate: false
+ xy: 79, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20918
+ rotate: false
+ xy: 156, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20923
+ rotate: false
+ xy: 233, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20924
+ rotate: false
+ xy: 2, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20929
+ rotate: false
+ xy: 79, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20930
+ rotate: false
+ xy: 156, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20934
+ rotate: false
+ xy: 233, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20935
+ rotate: false
+ xy: 310, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20944
+ rotate: false
+ xy: 2, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20945
+ rotate: false
+ xy: 79, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20950
+ rotate: false
+ xy: 156, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20951
+ rotate: false
+ xy: 233, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20956
+ rotate: false
+ xy: 310, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20957
+ rotate: false
+ xy: 387, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20961
+ rotate: false
+ xy: 2, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20962
+ rotate: false
+ xy: 79, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20971
+ rotate: false
+ xy: 156, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20972
+ rotate: false
+ xy: 233, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20977
+ rotate: false
+ xy: 310, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20978
+ rotate: false
+ xy: 387, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20983
+ rotate: false
+ xy: 464, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20984
+ rotate: false
+ xy: 2, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20988
+ rotate: false
+ xy: 79, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20989
+ rotate: false
+ xy: 156, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20998
+ rotate: false
+ xy: 233, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+20999
+ rotate: false
+ xy: 310, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21004
+ rotate: false
+ xy: 387, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21005
+ rotate: false
+ xy: 464, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21010
+ rotate: false
+ xy: 541, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21011
+ rotate: false
+ xy: 2, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21015
+ rotate: false
+ xy: 79, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21016
+ rotate: false
+ xy: 156, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21025
+ rotate: false
+ xy: 233, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21026
+ rotate: false
+ xy: 310, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21031
+ rotate: false
+ xy: 387, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21032
+ rotate: false
+ xy: 464, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21037
+ rotate: false
+ xy: 541, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21038
+ rotate: false
+ xy: 618, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21042
+ rotate: false
+ xy: 2, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21043
+ rotate: false
+ xy: 79, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21052
+ rotate: false
+ xy: 156, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21053
+ rotate: false
+ xy: 233, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21058
+ rotate: false
+ xy: 310, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21059
+ rotate: false
+ xy: 387, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21064
+ rotate: false
+ xy: 464, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21065
+ rotate: false
+ xy: 541, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21069
+ rotate: false
+ xy: 618, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21070
+ rotate: false
+ xy: 695, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21079
+ rotate: false
+ xy: 2, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21080
+ rotate: false
+ xy: 79, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21085
+ rotate: false
+ xy: 156, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21086
+ rotate: false
+ xy: 233, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21091
+ rotate: false
+ xy: 310, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21092
+ rotate: false
+ xy: 387, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21096
+ rotate: false
+ xy: 464, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21097
+ rotate: false
+ xy: 541, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21106
+ rotate: false
+ xy: 618, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21107
+ rotate: false
+ xy: 695, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21112
+ rotate: false
+ xy: 772, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21113
+ rotate: false
+ xy: 2, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21118
+ rotate: false
+ xy: 79, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21119
+ rotate: false
+ xy: 156, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21123
+ rotate: false
+ xy: 233, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21124
+ rotate: false
+ xy: 310, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21133
+ rotate: false
+ xy: 387, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21134
+ rotate: false
+ xy: 464, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21139
+ rotate: false
+ xy: 541, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21140
+ rotate: false
+ xy: 618, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21145
+ rotate: false
+ xy: 695, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21146
+ rotate: false
+ xy: 772, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21150
+ rotate: false
+ xy: 849, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21151
+ rotate: false
+ xy: 2, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21160
+ rotate: false
+ xy: 79, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21161
+ rotate: false
+ xy: 156, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21166
+ rotate: false
+ xy: 233, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21167
+ rotate: false
+ xy: 310, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21172
+ rotate: false
+ xy: 387, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21173
+ rotate: false
+ xy: 464, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21177
+ rotate: false
+ xy: 541, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21178
+ rotate: false
+ xy: 618, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21187
+ rotate: false
+ xy: 695, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21188
+ rotate: false
+ xy: 772, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21193
+ rotate: false
+ xy: 849, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21194
+ rotate: false
+ xy: 926, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21199
+ rotate: false
+ xy: 2, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21200
+ rotate: false
+ xy: 79, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21204
+ rotate: false
+ xy: 156, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21205
+ rotate: false
+ xy: 233, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21214
+ rotate: false
+ xy: 310, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21215
+ rotate: false
+ xy: 387, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21220
+ rotate: false
+ xy: 464, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21221
+ rotate: false
+ xy: 541, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21226
+ rotate: false
+ xy: 618, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21227
+ rotate: false
+ xy: 695, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21231
+ rotate: false
+ xy: 772, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21232
+ rotate: false
+ xy: 849, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21241
+ rotate: false
+ xy: 926, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21242
+ rotate: false
+ xy: 2, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21247
+ rotate: false
+ xy: 79, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21248
+ rotate: false
+ xy: 156, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21253
+ rotate: false
+ xy: 233, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21254
+ rotate: false
+ xy: 310, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21258
+ rotate: false
+ xy: 387, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21259
+ rotate: false
+ xy: 464, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21268
+ rotate: false
+ xy: 541, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21269
+ rotate: false
+ xy: 618, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21274
+ rotate: false
+ xy: 695, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21275
+ rotate: false
+ xy: 772, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21280
+ rotate: false
+ xy: 849, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21281
+ rotate: false
+ xy: 926, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21285
+ rotate: false
+ xy: 2, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21286
+ rotate: false
+ xy: 79, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21295
+ rotate: false
+ xy: 156, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21296
+ rotate: false
+ xy: 233, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21301
+ rotate: false
+ xy: 310, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21302
+ rotate: false
+ xy: 387, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21307
+ rotate: false
+ xy: 464, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21308
+ rotate: false
+ xy: 541, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21312
+ rotate: false
+ xy: 618, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21313
+ rotate: false
+ xy: 695, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21322
+ rotate: false
+ xy: 772, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21323
+ rotate: false
+ xy: 849, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21328
+ rotate: false
+ xy: 926, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21329
+ rotate: false
+ xy: 2, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21334
+ rotate: false
+ xy: 79, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21335
+ rotate: false
+ xy: 156, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21339
+ rotate: false
+ xy: 233, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21340
+ rotate: false
+ xy: 310, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21349
+ rotate: false
+ xy: 387, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21350
+ rotate: false
+ xy: 464, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21355
+ rotate: false
+ xy: 541, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21356
+ rotate: false
+ xy: 618, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21361
+ rotate: false
+ xy: 695, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21362
+ rotate: false
+ xy: 772, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21366
+ rotate: false
+ xy: 849, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21367
+ rotate: false
+ xy: 926, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21376
+ rotate: false
+ xy: 2, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21377
+ rotate: false
+ xy: 79, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21382
+ rotate: false
+ xy: 156, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21383
+ rotate: false
+ xy: 233, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21388
+ rotate: false
+ xy: 310, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21389
+ rotate: false
+ xy: 387, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21393
+ rotate: false
+ xy: 464, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21394
+ rotate: false
+ xy: 541, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21403
+ rotate: false
+ xy: 618, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21404
+ rotate: false
+ xy: 695, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21409
+ rotate: false
+ xy: 772, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21410
+ rotate: false
+ xy: 849, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21415
+ rotate: false
+ xy: 926, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21416
+ rotate: false
+ xy: 2, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21420
+ rotate: false
+ xy: 79, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21421
+ rotate: false
+ xy: 156, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21430
+ rotate: false
+ xy: 233, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21431
+ rotate: false
+ xy: 310, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21436
+ rotate: false
+ xy: 387, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21437
+ rotate: false
+ xy: 464, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21442
+ rotate: false
+ xy: 541, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21443
+ rotate: false
+ xy: 618, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21447
+ rotate: false
+ xy: 695, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21448
+ rotate: false
+ xy: 772, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21457
+ rotate: false
+ xy: 849, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21458
+ rotate: false
+ xy: 926, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21463
+ rotate: false
+ xy: 2, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21464
+ rotate: false
+ xy: 79, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21469
+ rotate: false
+ xy: 156, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21470
+ rotate: false
+ xy: 233, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21474
+ rotate: false
+ xy: 310, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21475
+ rotate: false
+ xy: 387, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21484
+ rotate: false
+ xy: 464, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21485
+ rotate: false
+ xy: 541, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21490
+ rotate: false
+ xy: 618, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21491
+ rotate: false
+ xy: 695, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21496
+ rotate: false
+ xy: 772, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21497
+ rotate: false
+ xy: 849, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21501
+ rotate: false
+ xy: 926, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21502
+ rotate: false
+ xy: 2, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21511
+ rotate: false
+ xy: 79, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21512
+ rotate: false
+ xy: 156, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21517
+ rotate: false
+ xy: 233, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21518
+ rotate: false
+ xy: 310, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21523
+ rotate: false
+ xy: 387, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21524
+ rotate: false
+ xy: 464, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21528
+ rotate: false
+ xy: 541, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21529
+ rotate: false
+ xy: 618, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21538
+ rotate: false
+ xy: 695, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21539
+ rotate: false
+ xy: 772, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21544
+ rotate: false
+ xy: 849, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21545
+ rotate: false
+ xy: 926, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21550
+ rotate: false
+ xy: 79, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21551
+ rotate: false
+ xy: 156, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21555
+ rotate: false
+ xy: 233, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21556
+ rotate: false
+ xy: 310, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21565
+ rotate: false
+ xy: 387, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21566
+ rotate: false
+ xy: 464, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21571
+ rotate: false
+ xy: 541, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21572
+ rotate: false
+ xy: 618, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21577
+ rotate: false
+ xy: 695, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21578
+ rotate: false
+ xy: 772, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21582
+ rotate: false
+ xy: 849, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21583
+ rotate: false
+ xy: 926, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21592
+ rotate: false
+ xy: 156, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21593
+ rotate: false
+ xy: 233, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21598
+ rotate: false
+ xy: 310, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21599
+ rotate: false
+ xy: 387, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21604
+ rotate: false
+ xy: 464, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21605
+ rotate: false
+ xy: 541, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21609
+ rotate: false
+ xy: 618, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21610
+ rotate: false
+ xy: 695, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21619
+ rotate: false
+ xy: 772, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21620
+ rotate: false
+ xy: 849, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21625
+ rotate: false
+ xy: 926, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21626
+ rotate: false
+ xy: 233, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21631
+ rotate: false
+ xy: 310, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21632
+ rotate: false
+ xy: 387, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21636
+ rotate: false
+ xy: 464, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21637
+ rotate: false
+ xy: 541, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21646
+ rotate: false
+ xy: 618, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21647
+ rotate: false
+ xy: 695, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21652
+ rotate: false
+ xy: 772, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21653
+ rotate: false
+ xy: 849, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21658
+ rotate: false
+ xy: 926, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21659
+ rotate: false
+ xy: 310, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21663
+ rotate: false
+ xy: 387, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21664
+ rotate: false
+ xy: 464, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21673
+ rotate: false
+ xy: 541, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21674
+ rotate: false
+ xy: 618, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21679
+ rotate: false
+ xy: 695, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21680
+ rotate: false
+ xy: 772, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21685
+ rotate: false
+ xy: 849, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21686
+ rotate: false
+ xy: 926, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21690
+ rotate: false
+ xy: 387, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21691
+ rotate: false
+ xy: 464, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21700
+ rotate: false
+ xy: 541, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21701
+ rotate: false
+ xy: 618, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21706
+ rotate: false
+ xy: 695, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21707
+ rotate: false
+ xy: 772, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21712
+ rotate: false
+ xy: 849, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21713
+ rotate: false
+ xy: 926, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21717
+ rotate: false
+ xy: 464, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21718
+ rotate: false
+ xy: 541, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21925
+ rotate: false
+ xy: 618, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21926
+ rotate: false
+ xy: 695, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21931
+ rotate: false
+ xy: 772, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21932
+ rotate: false
+ xy: 849, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21937
+ rotate: false
+ xy: 926, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21938
+ rotate: false
+ xy: 541, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21942
+ rotate: false
+ xy: 618, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21943
+ rotate: false
+ xy: 695, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21983
+ rotate: false
+ xy: 772, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21984
+ rotate: false
+ xy: 849, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21989
+ rotate: false
+ xy: 926, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21990
+ rotate: false
+ xy: 618, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21995
+ rotate: false
+ xy: 695, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+21996
+ rotate: false
+ xy: 772, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22000
+ rotate: false
+ xy: 849, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22001
+ rotate: false
+ xy: 926, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22009
+ rotate: false
+ xy: 695, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22010
+ rotate: false
+ xy: 772, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22015
+ rotate: false
+ xy: 849, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22016
+ rotate: false
+ xy: 926, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22021
+ rotate: false
+ xy: 772, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22022
+ rotate: false
+ xy: 849, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22026
+ rotate: false
+ xy: 926, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22027
+ rotate: false
+ xy: 849, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22042
+ rotate: false
+ xy: 926, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22043
+ rotate: false
+ xy: 926, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2378
+ rotate: false
+ xy: 992, 2
+ size: 25, 32
+ orig: 25, 32
+ offset: 0, 0
+ index: -1
+
+images86.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+13179
+ rotate: false
+ xy: 1003, 972
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13182
+ rotate: false
+ xy: 1003, 920
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13183
+ rotate: false
+ xy: 1003, 868
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13186
+ rotate: false
+ xy: 1003, 816
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13187
+ rotate: false
+ xy: 1003, 764
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13190
+ rotate: false
+ xy: 1003, 712
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13191
+ rotate: false
+ xy: 1003, 660
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13194
+ rotate: false
+ xy: 1003, 608
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13195
+ rotate: false
+ xy: 1003, 556
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13198
+ rotate: false
+ xy: 1003, 504
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13199
+ rotate: false
+ xy: 1003, 452
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13202
+ rotate: false
+ xy: 1003, 400
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13203
+ rotate: false
+ xy: 1003, 348
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13206
+ rotate: false
+ xy: 1003, 296
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13207
+ rotate: false
+ xy: 1003, 244
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13210
+ rotate: false
+ xy: 1003, 192
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13211
+ rotate: false
+ xy: 1003, 140
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13214
+ rotate: false
+ xy: 1003, 88
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13215
+ rotate: false
+ xy: 1003, 36
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+1601
+ rotate: false
+ xy: 2, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1602
+ rotate: false
+ xy: 68, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1605
+ rotate: false
+ xy: 134, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1606
+ rotate: false
+ xy: 200, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1609
+ rotate: false
+ xy: 266, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1610
+ rotate: false
+ xy: 332, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1613
+ rotate: false
+ xy: 398, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1614
+ rotate: false
+ xy: 464, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1617
+ rotate: false
+ xy: 530, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1618
+ rotate: false
+ xy: 596, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1621
+ rotate: false
+ xy: 662, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1622
+ rotate: false
+ xy: 728, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1625
+ rotate: false
+ xy: 794, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1626
+ rotate: false
+ xy: 860, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1629
+ rotate: false
+ xy: 926, 3
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22048
+ rotate: false
+ xy: 2, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22049
+ rotate: false
+ xy: 2, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22054
+ rotate: false
+ xy: 79, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22055
+ rotate: false
+ xy: 2, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22059
+ rotate: false
+ xy: 79, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22060
+ rotate: false
+ xy: 156, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22268
+ rotate: false
+ xy: 2, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22269
+ rotate: false
+ xy: 79, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22274
+ rotate: false
+ xy: 156, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22275
+ rotate: false
+ xy: 233, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22280
+ rotate: false
+ xy: 2, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22281
+ rotate: false
+ xy: 79, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22285
+ rotate: false
+ xy: 156, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22286
+ rotate: false
+ xy: 233, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22294
+ rotate: false
+ xy: 310, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22295
+ rotate: false
+ xy: 2, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22300
+ rotate: false
+ xy: 79, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22301
+ rotate: false
+ xy: 156, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22306
+ rotate: false
+ xy: 233, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22307
+ rotate: false
+ xy: 310, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22311
+ rotate: false
+ xy: 387, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22312
+ rotate: false
+ xy: 2, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22320
+ rotate: false
+ xy: 79, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22321
+ rotate: false
+ xy: 156, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22326
+ rotate: false
+ xy: 233, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22327
+ rotate: false
+ xy: 310, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22332
+ rotate: false
+ xy: 387, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22333
+ rotate: false
+ xy: 464, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22337
+ rotate: false
+ xy: 2, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22338
+ rotate: false
+ xy: 79, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22346
+ rotate: false
+ xy: 156, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22347
+ rotate: false
+ xy: 233, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22352
+ rotate: false
+ xy: 310, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22353
+ rotate: false
+ xy: 387, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22358
+ rotate: false
+ xy: 464, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22359
+ rotate: false
+ xy: 541, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22363
+ rotate: false
+ xy: 2, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22364
+ rotate: false
+ xy: 79, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22372
+ rotate: false
+ xy: 156, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22373
+ rotate: false
+ xy: 233, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22378
+ rotate: false
+ xy: 310, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22379
+ rotate: false
+ xy: 387, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22384
+ rotate: false
+ xy: 464, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22385
+ rotate: false
+ xy: 541, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22389
+ rotate: false
+ xy: 618, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22390
+ rotate: false
+ xy: 2, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22398
+ rotate: false
+ xy: 79, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22399
+ rotate: false
+ xy: 156, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22404
+ rotate: false
+ xy: 233, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22405
+ rotate: false
+ xy: 310, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22410
+ rotate: false
+ xy: 387, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22411
+ rotate: false
+ xy: 464, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22415
+ rotate: false
+ xy: 541, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22416
+ rotate: false
+ xy: 618, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22424
+ rotate: false
+ xy: 695, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22425
+ rotate: false
+ xy: 2, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22430
+ rotate: false
+ xy: 79, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22431
+ rotate: false
+ xy: 156, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22436
+ rotate: false
+ xy: 233, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22437
+ rotate: false
+ xy: 310, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22441
+ rotate: false
+ xy: 387, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22442
+ rotate: false
+ xy: 464, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22450
+ rotate: false
+ xy: 541, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22451
+ rotate: false
+ xy: 618, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22456
+ rotate: false
+ xy: 695, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22457
+ rotate: false
+ xy: 772, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22462
+ rotate: false
+ xy: 2, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22463
+ rotate: false
+ xy: 79, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22467
+ rotate: false
+ xy: 156, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22468
+ rotate: false
+ xy: 233, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22517
+ rotate: false
+ xy: 310, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22518
+ rotate: false
+ xy: 387, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22523
+ rotate: false
+ xy: 464, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22524
+ rotate: false
+ xy: 541, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22529
+ rotate: false
+ xy: 618, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22530
+ rotate: false
+ xy: 695, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22534
+ rotate: false
+ xy: 772, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22535
+ rotate: false
+ xy: 849, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22543
+ rotate: false
+ xy: 2, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22544
+ rotate: false
+ xy: 79, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22549
+ rotate: false
+ xy: 156, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22550
+ rotate: false
+ xy: 233, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22555
+ rotate: false
+ xy: 310, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22556
+ rotate: false
+ xy: 387, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22560
+ rotate: false
+ xy: 464, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22561
+ rotate: false
+ xy: 541, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22569
+ rotate: false
+ xy: 618, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22570
+ rotate: false
+ xy: 695, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22575
+ rotate: false
+ xy: 772, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22576
+ rotate: false
+ xy: 849, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22581
+ rotate: false
+ xy: 926, 977
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22582
+ rotate: false
+ xy: 2, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22586
+ rotate: false
+ xy: 79, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22587
+ rotate: false
+ xy: 156, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22595
+ rotate: false
+ xy: 233, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22596
+ rotate: false
+ xy: 310, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22601
+ rotate: false
+ xy: 387, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22602
+ rotate: false
+ xy: 464, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22607
+ rotate: false
+ xy: 541, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22608
+ rotate: false
+ xy: 618, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22612
+ rotate: false
+ xy: 695, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22613
+ rotate: false
+ xy: 772, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22621
+ rotate: false
+ xy: 849, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22622
+ rotate: false
+ xy: 926, 930
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22638
+ rotate: false
+ xy: 2, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22639
+ rotate: false
+ xy: 79, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22647
+ rotate: false
+ xy: 156, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22648
+ rotate: false
+ xy: 233, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22653
+ rotate: false
+ xy: 310, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22654
+ rotate: false
+ xy: 387, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22659
+ rotate: false
+ xy: 464, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22660
+ rotate: false
+ xy: 541, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22664
+ rotate: false
+ xy: 618, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22665
+ rotate: false
+ xy: 695, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22673
+ rotate: false
+ xy: 772, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22674
+ rotate: false
+ xy: 849, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22679
+ rotate: false
+ xy: 926, 883
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22680
+ rotate: false
+ xy: 2, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22685
+ rotate: false
+ xy: 79, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22686
+ rotate: false
+ xy: 156, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22690
+ rotate: false
+ xy: 233, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22691
+ rotate: false
+ xy: 310, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22699
+ rotate: false
+ xy: 387, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22700
+ rotate: false
+ xy: 464, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22705
+ rotate: false
+ xy: 541, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22706
+ rotate: false
+ xy: 618, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22711
+ rotate: false
+ xy: 695, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22712
+ rotate: false
+ xy: 772, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22716
+ rotate: false
+ xy: 849, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22717
+ rotate: false
+ xy: 926, 836
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22726
+ rotate: false
+ xy: 2, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22727
+ rotate: false
+ xy: 79, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22732
+ rotate: false
+ xy: 156, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22733
+ rotate: false
+ xy: 233, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22738
+ rotate: false
+ xy: 310, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22739
+ rotate: false
+ xy: 387, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22743
+ rotate: false
+ xy: 464, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22744
+ rotate: false
+ xy: 541, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22752
+ rotate: false
+ xy: 618, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22753
+ rotate: false
+ xy: 695, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22758
+ rotate: false
+ xy: 772, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22759
+ rotate: false
+ xy: 849, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22764
+ rotate: false
+ xy: 926, 789
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22765
+ rotate: false
+ xy: 2, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22769
+ rotate: false
+ xy: 79, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22770
+ rotate: false
+ xy: 156, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22778
+ rotate: false
+ xy: 233, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22779
+ rotate: false
+ xy: 310, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22784
+ rotate: false
+ xy: 387, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22785
+ rotate: false
+ xy: 464, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22790
+ rotate: false
+ xy: 541, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22791
+ rotate: false
+ xy: 618, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22795
+ rotate: false
+ xy: 695, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22796
+ rotate: false
+ xy: 772, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22966
+ rotate: false
+ xy: 849, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22967
+ rotate: false
+ xy: 926, 742
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22972
+ rotate: false
+ xy: 2, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22973
+ rotate: false
+ xy: 79, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22978
+ rotate: false
+ xy: 156, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22979
+ rotate: false
+ xy: 233, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22983
+ rotate: false
+ xy: 310, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22984
+ rotate: false
+ xy: 387, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22992
+ rotate: false
+ xy: 464, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22993
+ rotate: false
+ xy: 541, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22998
+ rotate: false
+ xy: 618, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+22999
+ rotate: false
+ xy: 695, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23004
+ rotate: false
+ xy: 772, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23005
+ rotate: false
+ xy: 849, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23009
+ rotate: false
+ xy: 926, 695
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23010
+ rotate: false
+ xy: 2, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23018
+ rotate: false
+ xy: 79, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23019
+ rotate: false
+ xy: 156, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23024
+ rotate: false
+ xy: 233, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23025
+ rotate: false
+ xy: 310, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23030
+ rotate: false
+ xy: 387, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23031
+ rotate: false
+ xy: 464, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23035
+ rotate: false
+ xy: 541, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23036
+ rotate: false
+ xy: 618, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23044
+ rotate: false
+ xy: 695, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23045
+ rotate: false
+ xy: 772, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23050
+ rotate: false
+ xy: 849, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23051
+ rotate: false
+ xy: 926, 648
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23056
+ rotate: false
+ xy: 2, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23057
+ rotate: false
+ xy: 79, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23061
+ rotate: false
+ xy: 156, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23062
+ rotate: false
+ xy: 233, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23072
+ rotate: false
+ xy: 310, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23073
+ rotate: false
+ xy: 387, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23078
+ rotate: false
+ xy: 464, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23079
+ rotate: false
+ xy: 541, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23084
+ rotate: false
+ xy: 618, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23085
+ rotate: false
+ xy: 695, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23089
+ rotate: false
+ xy: 772, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23090
+ rotate: false
+ xy: 849, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23099
+ rotate: false
+ xy: 926, 601
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23100
+ rotate: false
+ xy: 79, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23105
+ rotate: false
+ xy: 156, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23106
+ rotate: false
+ xy: 233, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23111
+ rotate: false
+ xy: 310, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23112
+ rotate: false
+ xy: 387, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23116
+ rotate: false
+ xy: 464, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23117
+ rotate: false
+ xy: 541, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23126
+ rotate: false
+ xy: 618, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23127
+ rotate: false
+ xy: 695, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23132
+ rotate: false
+ xy: 772, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23133
+ rotate: false
+ xy: 849, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23138
+ rotate: false
+ xy: 926, 554
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23139
+ rotate: false
+ xy: 156, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23143
+ rotate: false
+ xy: 233, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23144
+ rotate: false
+ xy: 310, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23153
+ rotate: false
+ xy: 387, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23154
+ rotate: false
+ xy: 464, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23159
+ rotate: false
+ xy: 541, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23160
+ rotate: false
+ xy: 618, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23165
+ rotate: false
+ xy: 695, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23166
+ rotate: false
+ xy: 772, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23170
+ rotate: false
+ xy: 849, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23171
+ rotate: false
+ xy: 926, 507
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23180
+ rotate: false
+ xy: 233, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23181
+ rotate: false
+ xy: 310, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23186
+ rotate: false
+ xy: 387, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23187
+ rotate: false
+ xy: 464, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23192
+ rotate: false
+ xy: 541, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23193
+ rotate: false
+ xy: 618, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23197
+ rotate: false
+ xy: 695, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23198
+ rotate: false
+ xy: 772, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23211
+ rotate: false
+ xy: 849, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23212
+ rotate: false
+ xy: 926, 460
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23217
+ rotate: false
+ xy: 310, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23218
+ rotate: false
+ xy: 387, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23223
+ rotate: false
+ xy: 464, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23224
+ rotate: false
+ xy: 541, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23228
+ rotate: false
+ xy: 618, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23229
+ rotate: false
+ xy: 695, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23237
+ rotate: false
+ xy: 772, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23238
+ rotate: false
+ xy: 849, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23243
+ rotate: false
+ xy: 926, 413
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23244
+ rotate: false
+ xy: 387, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23249
+ rotate: false
+ xy: 464, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23250
+ rotate: false
+ xy: 541, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23254
+ rotate: false
+ xy: 618, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23255
+ rotate: false
+ xy: 695, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23263
+ rotate: false
+ xy: 772, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23264
+ rotate: false
+ xy: 849, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23269
+ rotate: false
+ xy: 926, 366
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23270
+ rotate: false
+ xy: 464, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23275
+ rotate: false
+ xy: 541, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23276
+ rotate: false
+ xy: 618, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23280
+ rotate: false
+ xy: 695, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23281
+ rotate: false
+ xy: 772, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23289
+ rotate: false
+ xy: 849, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23290
+ rotate: false
+ xy: 926, 319
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23295
+ rotate: false
+ xy: 541, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23296
+ rotate: false
+ xy: 618, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23301
+ rotate: false
+ xy: 695, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23302
+ rotate: false
+ xy: 772, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23306
+ rotate: false
+ xy: 849, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23307
+ rotate: false
+ xy: 926, 272
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23315
+ rotate: false
+ xy: 618, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23316
+ rotate: false
+ xy: 695, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23321
+ rotate: false
+ xy: 772, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23322
+ rotate: false
+ xy: 849, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23327
+ rotate: false
+ xy: 926, 225
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23328
+ rotate: false
+ xy: 695, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23332
+ rotate: false
+ xy: 772, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23333
+ rotate: false
+ xy: 849, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23341
+ rotate: false
+ xy: 926, 178
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23342
+ rotate: false
+ xy: 772, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23347
+ rotate: false
+ xy: 849, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23348
+ rotate: false
+ xy: 926, 131
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23353
+ rotate: false
+ xy: 849, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23354
+ rotate: false
+ xy: 926, 84
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23358
+ rotate: false
+ xy: 926, 37
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2385
+ rotate: false
+ xy: 992, 2
+ size: 25, 32
+ orig: 25, 32
+ offset: 0, 0
+ index: -1
+
+images87.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10
+ rotate: false
+ xy: 574, 960
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+10000
+ rotate: false
+ xy: 546, 927
+ size: 25, 32
+ orig: 25, 32
+ offset: 0, 0
+ index: -1
+10007
+ rotate: false
+ xy: 546, 893
+ size: 25, 32
+ orig: 25, 32
+ offset: 0, 0
+ index: -1
+10008
+ rotate: false
+ xy: 546, 859
+ size: 25, 32
+ orig: 25, 32
+ offset: 0, 0
+ index: -1
+10015
+ rotate: false
+ xy: 546, 825
+ size: 25, 32
+ orig: 25, 32
+ offset: 0, 0
+ index: -1
+10016
+ rotate: false
+ xy: 546, 791
+ size: 25, 32
+ orig: 25, 32
+ offset: 0, 0
+ index: -1
+10023
+ rotate: false
+ xy: 546, 757
+ size: 25, 32
+ orig: 25, 32
+ offset: 0, 0
+ index: -1
+10024
+ rotate: false
+ xy: 546, 723
+ size: 25, 32
+ orig: 25, 32
+ offset: 0, 0
+ index: -1
+10031
+ rotate: false
+ xy: 546, 689
+ size: 25, 32
+ orig: 25, 32
+ offset: 0, 0
+ index: -1
+1013
+ rotate: false
+ xy: 444, 655
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1018
+ rotate: false
+ xy: 478, 655
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1023
+ rotate: false
+ xy: 512, 655
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1024
+ rotate: false
+ xy: 546, 654
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1025
+ rotate: false
+ xy: 580, 654
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+10471
+ rotate: false
+ xy: 54, 961
+ size: 48, 31
+ orig: 48, 31
+ offset: 0, 0
+ index: -1
+10476
+ rotate: false
+ xy: 104, 961
+ size: 50, 31
+ orig: 50, 31
+ offset: 0, 0
+ index: -1
+10477
+ rotate: false
+ xy: 156, 961
+ size: 26, 31
+ orig: 26, 31
+ offset: 0, 0
+ index: -1
+10479
+ rotate: false
+ xy: 184, 961
+ size: 48, 31
+ orig: 48, 31
+ offset: 0, 0
+ index: -1
+10484
+ rotate: false
+ xy: 234, 961
+ size: 50, 31
+ orig: 50, 31
+ offset: 0, 0
+ index: -1
+10485
+ rotate: false
+ xy: 286, 961
+ size: 26, 31
+ orig: 26, 31
+ offset: 0, 0
+ index: -1
+10487
+ rotate: false
+ xy: 314, 961
+ size: 48, 31
+ orig: 48, 31
+ offset: 0, 0
+ index: -1
+10492
+ rotate: false
+ xy: 364, 961
+ size: 50, 31
+ orig: 50, 31
+ offset: 0, 0
+ index: -1
+10493
+ rotate: false
+ xy: 416, 961
+ size: 26, 31
+ orig: 26, 31
+ offset: 0, 0
+ index: -1
+10495
+ rotate: false
+ xy: 444, 961
+ size: 48, 31
+ orig: 48, 31
+ offset: 0, 0
+ index: -1
+10500
+ rotate: false
+ xy: 494, 961
+ size: 50, 31
+ orig: 50, 31
+ offset: 0, 0
+ index: -1
+10501
+ rotate: false
+ xy: 546, 961
+ size: 26, 31
+ orig: 26, 31
+ offset: 0, 0
+ index: -1
+1052
+ rotate: false
+ xy: 614, 654
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1055
+ rotate: false
+ xy: 648, 654
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1056
+ rotate: false
+ xy: 682, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1059
+ rotate: false
+ xy: 716, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1060
+ rotate: false
+ xy: 750, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1063
+ rotate: false
+ xy: 784, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1064
+ rotate: false
+ xy: 818, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1067
+ rotate: false
+ xy: 852, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1068
+ rotate: false
+ xy: 886, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1071
+ rotate: false
+ xy: 920, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1072
+ rotate: false
+ xy: 954, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1075
+ rotate: false
+ xy: 988, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1076
+ rotate: false
+ xy: 2, 621
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1079
+ rotate: false
+ xy: 36, 621
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1080
+ rotate: false
+ xy: 70, 621
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1083
+ rotate: false
+ xy: 104, 621
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1084
+ rotate: false
+ xy: 138, 621
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1087
+ rotate: false
+ xy: 172, 621
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1088
+ rotate: false
+ xy: 206, 621
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1091
+ rotate: false
+ xy: 240, 621
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1092
+ rotate: false
+ xy: 274, 621
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1095
+ rotate: false
+ xy: 308, 621
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1096
+ rotate: false
+ xy: 342, 621
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1099
+ rotate: false
+ xy: 376, 621
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+11
+ rotate: false
+ xy: 608, 960
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1100
+ rotate: false
+ xy: 410, 621
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1127
+ rotate: false
+ xy: 444, 621
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1154
+ rotate: false
+ xy: 478, 621
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+116
+ rotate: false
+ xy: 812, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+118
+ rotate: false
+ xy: 846, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1181
+ rotate: false
+ xy: 512, 621
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12
+ rotate: false
+ xy: 642, 960
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+120
+ rotate: false
+ xy: 880, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1208
+ rotate: false
+ xy: 546, 620
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+122
+ rotate: false
+ xy: 914, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1235
+ rotate: false
+ xy: 580, 620
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1262
+ rotate: false
+ xy: 614, 620
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13
+ rotate: false
+ xy: 676, 960
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1315
+ rotate: false
+ xy: 648, 620
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1318
+ rotate: false
+ xy: 682, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1319
+ rotate: false
+ xy: 716, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13218
+ rotate: false
+ xy: 1002, 460
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13219
+ rotate: false
+ xy: 1002, 408
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+1322
+ rotate: false
+ xy: 750, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13222
+ rotate: false
+ xy: 1002, 356
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13223
+ rotate: false
+ xy: 1002, 304
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13226
+ rotate: false
+ xy: 1002, 252
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13227
+ rotate: false
+ xy: 1002, 200
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+1323
+ rotate: false
+ xy: 784, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13230
+ rotate: false
+ xy: 1002, 114
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13231
+ rotate: false
+ xy: 999, 62
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13234
+ rotate: false
+ xy: 999, 10
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+1326
+ rotate: false
+ xy: 818, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1327
+ rotate: false
+ xy: 852, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1330
+ rotate: false
+ xy: 886, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1332
+ rotate: false
+ xy: 920, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1336
+ rotate: false
+ xy: 954, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1340
+ rotate: false
+ xy: 988, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1344
+ rotate: false
+ xy: 2, 587
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1383
+ rotate: false
+ xy: 36, 587
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1387
+ rotate: false
+ xy: 70, 587
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1391
+ rotate: false
+ xy: 104, 587
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1395
+ rotate: false
+ xy: 138, 587
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1396
+ rotate: false
+ xy: 172, 587
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1400
+ rotate: false
+ xy: 206, 587
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1404
+ rotate: false
+ xy: 240, 587
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1408
+ rotate: false
+ xy: 274, 587
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1447
+ rotate: false
+ xy: 308, 587
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1451
+ rotate: false
+ xy: 342, 587
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1455
+ rotate: false
+ xy: 376, 587
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1459
+ rotate: false
+ xy: 410, 587
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1469
+ rotate: false
+ xy: 444, 587
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1470
+ rotate: false
+ xy: 478, 587
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1476
+ rotate: false
+ xy: 512, 587
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1494
+ rotate: false
+ xy: 546, 586
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1495
+ rotate: false
+ xy: 580, 586
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1497
+ rotate: false
+ xy: 614, 586
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1498
+ rotate: false
+ xy: 648, 586
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1522
+ rotate: false
+ xy: 682, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1523
+ rotate: false
+ xy: 716, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1524
+ rotate: false
+ xy: 750, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1537
+ rotate: false
+ xy: 784, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1540
+ rotate: false
+ xy: 818, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1543
+ rotate: false
+ xy: 852, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1544
+ rotate: false
+ xy: 886, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1547
+ rotate: false
+ xy: 920, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1548
+ rotate: false
+ xy: 954, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1551
+ rotate: false
+ xy: 988, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1552
+ rotate: false
+ xy: 2, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1555
+ rotate: false
+ xy: 36, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1556
+ rotate: false
+ xy: 70, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1559
+ rotate: false
+ xy: 104, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1560
+ rotate: false
+ xy: 138, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1563
+ rotate: false
+ xy: 172, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1564
+ rotate: false
+ xy: 206, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1567
+ rotate: false
+ xy: 240, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1568
+ rotate: false
+ xy: 274, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1571
+ rotate: false
+ xy: 308, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1572
+ rotate: false
+ xy: 342, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1575
+ rotate: false
+ xy: 376, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1576
+ rotate: false
+ xy: 410, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1579
+ rotate: false
+ xy: 444, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1580
+ rotate: false
+ xy: 478, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1583
+ rotate: false
+ xy: 512, 553
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1584
+ rotate: false
+ xy: 546, 552
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1587
+ rotate: false
+ xy: 580, 552
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1588
+ rotate: false
+ xy: 614, 552
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1591
+ rotate: false
+ xy: 648, 552
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1592
+ rotate: false
+ xy: 682, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1595
+ rotate: false
+ xy: 716, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1596
+ rotate: false
+ xy: 750, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1599
+ rotate: false
+ xy: 784, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1600
+ rotate: false
+ xy: 818, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1603
+ rotate: false
+ xy: 852, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1604
+ rotate: false
+ xy: 886, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1607
+ rotate: false
+ xy: 920, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1608
+ rotate: false
+ xy: 954, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1611
+ rotate: false
+ xy: 988, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1612
+ rotate: false
+ xy: 2, 519
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1615
+ rotate: false
+ xy: 36, 519
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1616
+ rotate: false
+ xy: 70, 519
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1619
+ rotate: false
+ xy: 104, 519
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1620
+ rotate: false
+ xy: 138, 519
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1623
+ rotate: false
+ xy: 172, 519
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1624
+ rotate: false
+ xy: 206, 519
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1627
+ rotate: false
+ xy: 240, 519
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1628
+ rotate: false
+ xy: 274, 519
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1630
+ rotate: false
+ xy: 308, 519
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1631
+ rotate: false
+ xy: 374, 519
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1632
+ rotate: false
+ xy: 408, 519
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1633
+ rotate: false
+ xy: 442, 519
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1634
+ rotate: false
+ xy: 542, 518
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1635
+ rotate: false
+ xy: 508, 519
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1636
+ rotate: false
+ xy: 608, 518
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1637
+ rotate: false
+ xy: 676, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1638
+ rotate: false
+ xy: 742, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1639
+ rotate: false
+ xy: 642, 518
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1640
+ rotate: false
+ xy: 808, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1641
+ rotate: false
+ xy: 842, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1642
+ rotate: false
+ xy: 908, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1643
+ rotate: false
+ xy: 974, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1644
+ rotate: false
+ xy: 2, 485
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1645
+ rotate: false
+ xy: 36, 485
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1646
+ rotate: false
+ xy: 102, 485
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1647
+ rotate: false
+ xy: 168, 485
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1648
+ rotate: false
+ xy: 202, 485
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1649
+ rotate: false
+ xy: 236, 485
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1650
+ rotate: false
+ xy: 302, 485
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1651
+ rotate: false
+ xy: 368, 485
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1652
+ rotate: false
+ xy: 402, 485
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1653
+ rotate: false
+ xy: 436, 485
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1654
+ rotate: false
+ xy: 536, 484
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1655
+ rotate: false
+ xy: 502, 485
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1656
+ rotate: false
+ xy: 602, 484
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1657
+ rotate: false
+ xy: 670, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1658
+ rotate: false
+ xy: 736, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1659
+ rotate: false
+ xy: 636, 484
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1660
+ rotate: false
+ xy: 802, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1661
+ rotate: false
+ xy: 836, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1662
+ rotate: false
+ xy: 902, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1663
+ rotate: false
+ xy: 968, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1664
+ rotate: false
+ xy: 2, 451
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1665
+ rotate: false
+ xy: 36, 451
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1666
+ rotate: false
+ xy: 102, 451
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1667
+ rotate: false
+ xy: 168, 451
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1668
+ rotate: false
+ xy: 202, 451
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1669
+ rotate: false
+ xy: 236, 451
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1670
+ rotate: false
+ xy: 302, 451
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1671
+ rotate: false
+ xy: 368, 451
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1672
+ rotate: false
+ xy: 402, 451
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1673
+ rotate: false
+ xy: 436, 451
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1674
+ rotate: false
+ xy: 536, 450
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1675
+ rotate: false
+ xy: 502, 451
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1676
+ rotate: false
+ xy: 602, 450
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1677
+ rotate: false
+ xy: 670, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1678
+ rotate: false
+ xy: 736, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1679
+ rotate: false
+ xy: 636, 450
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1680
+ rotate: false
+ xy: 802, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1681
+ rotate: false
+ xy: 836, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1682
+ rotate: false
+ xy: 902, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1683
+ rotate: false
+ xy: 968, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1684
+ rotate: false
+ xy: 2, 417
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1685
+ rotate: false
+ xy: 36, 417
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1686
+ rotate: false
+ xy: 102, 417
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1687
+ rotate: false
+ xy: 168, 417
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1688
+ rotate: false
+ xy: 202, 417
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1689
+ rotate: false
+ xy: 236, 417
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1690
+ rotate: false
+ xy: 302, 417
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1691
+ rotate: false
+ xy: 368, 417
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1692
+ rotate: false
+ xy: 402, 417
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1693
+ rotate: false
+ xy: 436, 417
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1694
+ rotate: false
+ xy: 536, 416
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1695
+ rotate: false
+ xy: 502, 417
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1696
+ rotate: false
+ xy: 602, 416
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1697
+ rotate: false
+ xy: 670, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1698
+ rotate: false
+ xy: 736, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1699
+ rotate: false
+ xy: 636, 416
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1700
+ rotate: false
+ xy: 802, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1701
+ rotate: false
+ xy: 836, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1702
+ rotate: false
+ xy: 902, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1703
+ rotate: false
+ xy: 968, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1704
+ rotate: false
+ xy: 2, 383
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1705
+ rotate: false
+ xy: 36, 383
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1706
+ rotate: false
+ xy: 102, 383
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1707
+ rotate: false
+ xy: 168, 383
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1708
+ rotate: false
+ xy: 202, 383
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1709
+ rotate: false
+ xy: 236, 383
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1710
+ rotate: false
+ xy: 302, 383
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1711
+ rotate: false
+ xy: 368, 383
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1712
+ rotate: false
+ xy: 402, 383
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1713
+ rotate: false
+ xy: 436, 383
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1714
+ rotate: false
+ xy: 536, 382
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1715
+ rotate: false
+ xy: 502, 383
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1716
+ rotate: false
+ xy: 602, 382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1717
+ rotate: false
+ xy: 670, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1718
+ rotate: false
+ xy: 736, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1719
+ rotate: false
+ xy: 636, 382
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1720
+ rotate: false
+ xy: 802, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1721
+ rotate: false
+ xy: 836, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1722
+ rotate: false
+ xy: 902, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1723
+ rotate: false
+ xy: 968, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1724
+ rotate: false
+ xy: 2, 349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1725
+ rotate: false
+ xy: 36, 349
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1726
+ rotate: false
+ xy: 102, 349
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1727
+ rotate: false
+ xy: 168, 349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1728
+ rotate: false
+ xy: 202, 349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1729
+ rotate: false
+ xy: 236, 349
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1730
+ rotate: false
+ xy: 302, 349
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1731
+ rotate: false
+ xy: 368, 349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1732
+ rotate: false
+ xy: 402, 349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1733
+ rotate: false
+ xy: 436, 349
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1734
+ rotate: false
+ xy: 536, 348
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1735
+ rotate: false
+ xy: 502, 349
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1736
+ rotate: false
+ xy: 602, 348
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1737
+ rotate: false
+ xy: 670, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1738
+ rotate: false
+ xy: 736, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1739
+ rotate: false
+ xy: 636, 348
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1740
+ rotate: false
+ xy: 802, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1741
+ rotate: false
+ xy: 836, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1742
+ rotate: false
+ xy: 902, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1743
+ rotate: false
+ xy: 968, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1744
+ rotate: false
+ xy: 2, 315
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1808
+ rotate: false
+ xy: 2, 315
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1745
+ rotate: false
+ xy: 36, 315
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1809
+ rotate: false
+ xy: 36, 315
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1746
+ rotate: false
+ xy: 102, 315
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1810
+ rotate: false
+ xy: 102, 315
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1747
+ rotate: false
+ xy: 168, 315
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1811
+ rotate: false
+ xy: 168, 315
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1748
+ rotate: false
+ xy: 202, 315
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1749
+ rotate: false
+ xy: 236, 315
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1750
+ rotate: false
+ xy: 302, 315
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1751
+ rotate: false
+ xy: 368, 315
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1752
+ rotate: false
+ xy: 402, 315
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1753
+ rotate: false
+ xy: 436, 315
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1754
+ rotate: false
+ xy: 536, 314
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1755
+ rotate: false
+ xy: 502, 315
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1756
+ rotate: false
+ xy: 602, 314
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1757
+ rotate: false
+ xy: 670, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1758
+ rotate: false
+ xy: 736, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1759
+ rotate: false
+ xy: 636, 314
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1760
+ rotate: false
+ xy: 802, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1761
+ rotate: false
+ xy: 836, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1762
+ rotate: false
+ xy: 902, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1763
+ rotate: false
+ xy: 968, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1764
+ rotate: false
+ xy: 2, 281
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1765
+ rotate: false
+ xy: 36, 281
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1766
+ rotate: false
+ xy: 102, 281
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1767
+ rotate: false
+ xy: 168, 281
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1768
+ rotate: false
+ xy: 202, 281
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1769
+ rotate: false
+ xy: 236, 281
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1770
+ rotate: false
+ xy: 302, 281
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1771
+ rotate: false
+ xy: 368, 281
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1772
+ rotate: false
+ xy: 402, 281
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1773
+ rotate: false
+ xy: 436, 281
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1774
+ rotate: false
+ xy: 536, 280
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1775
+ rotate: false
+ xy: 502, 281
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1776
+ rotate: false
+ xy: 602, 280
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1777
+ rotate: false
+ xy: 670, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1778
+ rotate: false
+ xy: 736, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1779
+ rotate: false
+ xy: 636, 280
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1780
+ rotate: false
+ xy: 802, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1781
+ rotate: false
+ xy: 836, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1782
+ rotate: false
+ xy: 902, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1783
+ rotate: false
+ xy: 968, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1784
+ rotate: false
+ xy: 2, 247
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1785
+ rotate: false
+ xy: 36, 247
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1786
+ rotate: false
+ xy: 102, 247
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1787
+ rotate: false
+ xy: 168, 247
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1788
+ rotate: false
+ xy: 202, 247
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1789
+ rotate: false
+ xy: 236, 247
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1790
+ rotate: false
+ xy: 302, 247
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1791
+ rotate: false
+ xy: 368, 247
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1792
+ rotate: false
+ xy: 402, 247
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1793
+ rotate: false
+ xy: 436, 247
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1794
+ rotate: false
+ xy: 536, 246
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1795
+ rotate: false
+ xy: 502, 247
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1796
+ rotate: false
+ xy: 602, 246
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1797
+ rotate: false
+ xy: 670, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1798
+ rotate: false
+ xy: 736, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1799
+ rotate: false
+ xy: 636, 246
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1800
+ rotate: false
+ xy: 802, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1801
+ rotate: false
+ xy: 836, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1802
+ rotate: false
+ xy: 902, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1803
+ rotate: false
+ xy: 968, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1804
+ rotate: false
+ xy: 2, 213
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1805
+ rotate: false
+ xy: 36, 213
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1806
+ rotate: false
+ xy: 102, 213
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1807
+ rotate: false
+ xy: 168, 213
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1813
+ rotate: false
+ xy: 202, 213
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1814
+ rotate: false
+ xy: 236, 213
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1817
+ rotate: false
+ xy: 302, 213
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1818
+ rotate: false
+ xy: 336, 213
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1821
+ rotate: false
+ xy: 402, 213
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1822
+ rotate: false
+ xy: 436, 213
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1825
+ rotate: false
+ xy: 502, 213
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1826
+ rotate: false
+ xy: 536, 212
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1863
+ rotate: false
+ xy: 602, 212
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1864
+ rotate: false
+ xy: 668, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1867
+ rotate: false
+ xy: 702, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1868
+ rotate: false
+ xy: 768, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1871
+ rotate: false
+ xy: 802, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1872
+ rotate: false
+ xy: 868, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1875
+ rotate: false
+ xy: 902, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+1876
+ rotate: false
+ xy: 968, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1998
+ rotate: false
+ xy: 2, 179
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+1999
+ rotate: false
+ xy: 36, 179
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2134
+ rotate: false
+ xy: 70, 179
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2135
+ rotate: false
+ xy: 104, 179
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2136
+ rotate: false
+ xy: 138, 179
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2137
+ rotate: false
+ xy: 172, 179
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2149
+ rotate: false
+ xy: 728, 988
+ size: 48, 31
+ orig: 48, 31
+ offset: 0, 0
+ index: -1
+2154
+ rotate: false
+ xy: 778, 988
+ size: 50, 31
+ orig: 50, 31
+ offset: 0, 0
+ index: -1
+2157
+ rotate: false
+ xy: 830, 988
+ size: 48, 31
+ orig: 48, 31
+ offset: 0, 0
+ index: -1
+2162
+ rotate: false
+ xy: 880, 988
+ size: 50, 31
+ orig: 50, 31
+ offset: 0, 0
+ index: -1
+2165
+ rotate: false
+ xy: 932, 988
+ size: 48, 31
+ orig: 48, 31
+ offset: 0, 0
+ index: -1
+2170
+ rotate: false
+ xy: 2, 961
+ size: 50, 31
+ orig: 50, 31
+ offset: 0, 0
+ index: -1
+2171
+ rotate: false
+ xy: 982, 988
+ size: 26, 31
+ orig: 26, 31
+ offset: 0, 0
+ index: -1
+2278
+ rotate: false
+ xy: 206, 179
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2279
+ rotate: false
+ xy: 240, 179
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2280
+ rotate: false
+ xy: 306, 179
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2281
+ rotate: false
+ xy: 372, 179
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2282
+ rotate: false
+ xy: 406, 179
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2283
+ rotate: false
+ xy: 440, 179
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2284
+ rotate: false
+ xy: 506, 178
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2285
+ rotate: false
+ xy: 572, 178
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2286
+ rotate: false
+ xy: 606, 178
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2287
+ rotate: false
+ xy: 640, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2288
+ rotate: false
+ xy: 706, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2289
+ rotate: false
+ xy: 772, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2290
+ rotate: false
+ xy: 806, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2291
+ rotate: false
+ xy: 840, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2292
+ rotate: false
+ xy: 906, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2293
+ rotate: false
+ xy: 972, 166
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2294
+ rotate: false
+ xy: 2, 145
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2295
+ rotate: false
+ xy: 36, 145
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2296
+ rotate: false
+ xy: 102, 145
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2297
+ rotate: false
+ xy: 168, 145
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2298
+ rotate: false
+ xy: 202, 145
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2299
+ rotate: false
+ xy: 236, 145
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2300
+ rotate: false
+ xy: 302, 145
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2301
+ rotate: false
+ xy: 368, 145
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2302
+ rotate: false
+ xy: 402, 145
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2303
+ rotate: false
+ xy: 436, 145
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2304
+ rotate: false
+ xy: 502, 144
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2305
+ rotate: false
+ xy: 568, 144
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2306
+ rotate: false
+ xy: 602, 144
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2307
+ rotate: false
+ xy: 636, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2308
+ rotate: false
+ xy: 702, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2309
+ rotate: false
+ xy: 768, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2317
+ rotate: false
+ xy: 802, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2318
+ rotate: false
+ xy: 836, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2319
+ rotate: false
+ xy: 902, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2320
+ rotate: false
+ xy: 968, 132
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2321
+ rotate: false
+ xy: 2, 111
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2322
+ rotate: false
+ xy: 36, 111
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2323
+ rotate: false
+ xy: 102, 111
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2324
+ rotate: false
+ xy: 168, 111
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2325
+ rotate: false
+ xy: 202, 111
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2326
+ rotate: false
+ xy: 236, 111
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2327
+ rotate: false
+ xy: 302, 111
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2328
+ rotate: false
+ xy: 368, 111
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2329
+ rotate: false
+ xy: 402, 111
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2330
+ rotate: false
+ xy: 436, 111
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2331
+ rotate: false
+ xy: 502, 110
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+2332
+ rotate: false
+ xy: 568, 110
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2341
+ rotate: false
+ xy: 602, 110
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2345
+ rotate: false
+ xy: 2, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+2347
+ rotate: false
+ xy: 35, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+2348
+ rotate: false
+ xy: 68, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+2350
+ rotate: false
+ xy: 101, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+2351
+ rotate: false
+ xy: 134, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+2353
+ rotate: false
+ xy: 167, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+2360
+ rotate: false
+ xy: 636, 104
+ size: 48, 32
+ orig: 48, 32
+ offset: 0, 0
+ index: -1
+2368
+ rotate: false
+ xy: 686, 104
+ size: 48, 32
+ orig: 48, 32
+ offset: 0, 0
+ index: -1
+2371
+ rotate: false
+ xy: 736, 104
+ size: 49, 32
+ orig: 49, 32
+ offset: 0, 0
+ index: -1
+2376
+ rotate: false
+ xy: 787, 104
+ size: 48, 32
+ orig: 48, 32
+ offset: 0, 0
+ index: -1
+2379
+ rotate: false
+ xy: 837, 104
+ size: 49, 32
+ orig: 49, 32
+ offset: 0, 0
+ index: -1
+2384
+ rotate: false
+ xy: 888, 104
+ size: 48, 32
+ orig: 48, 32
+ offset: 0, 0
+ index: -1
+260
+ rotate: false
+ xy: 948, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+261
+ rotate: false
+ xy: 982, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+262
+ rotate: false
+ xy: 2, 927
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+263
+ rotate: false
+ xy: 36, 927
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+264
+ rotate: false
+ xy: 70, 927
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+310
+ rotate: false
+ xy: 104, 927
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+315
+ rotate: false
+ xy: 138, 927
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3155
+ rotate: false
+ xy: 938, 98
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3156
+ rotate: false
+ xy: 2, 77
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+316
+ rotate: false
+ xy: 172, 927
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+317
+ rotate: false
+ xy: 206, 927
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+318
+ rotate: false
+ xy: 240, 927
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+319
+ rotate: false
+ xy: 274, 927
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+320
+ rotate: false
+ xy: 308, 927
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+321
+ rotate: false
+ xy: 342, 927
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+322
+ rotate: false
+ xy: 376, 927
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3226
+ rotate: false
+ xy: 36, 77
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+323
+ rotate: false
+ xy: 410, 927
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+324
+ rotate: false
+ xy: 444, 927
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3253
+ rotate: false
+ xy: 70, 77
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+328
+ rotate: false
+ xy: 478, 927
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3310
+ rotate: false
+ xy: 104, 77
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3311
+ rotate: false
+ xy: 138, 77
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3312
+ rotate: false
+ xy: 204, 77
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3313
+ rotate: false
+ xy: 270, 77
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3314
+ rotate: false
+ xy: 304, 77
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3315
+ rotate: false
+ xy: 338, 77
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3316
+ rotate: false
+ xy: 404, 77
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3317
+ rotate: false
+ xy: 470, 76
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3318
+ rotate: false
+ xy: 504, 76
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3319
+ rotate: false
+ xy: 538, 76
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+332
+ rotate: false
+ xy: 512, 927
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3320
+ rotate: false
+ xy: 604, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3321
+ rotate: false
+ xy: 670, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3322
+ rotate: false
+ xy: 704, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3323
+ rotate: false
+ xy: 738, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3324
+ rotate: false
+ xy: 804, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3325
+ rotate: false
+ xy: 870, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3326
+ rotate: false
+ xy: 904, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3327
+ rotate: false
+ xy: 2, 43
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3328
+ rotate: false
+ xy: 68, 43
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3329
+ rotate: false
+ xy: 938, 64
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3330
+ rotate: false
+ xy: 134, 43
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3331
+ rotate: false
+ xy: 168, 43
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3332
+ rotate: false
+ xy: 234, 43
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3333
+ rotate: false
+ xy: 300, 43
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3334
+ rotate: false
+ xy: 334, 43
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3335
+ rotate: false
+ xy: 368, 43
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3336
+ rotate: false
+ xy: 468, 42
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3337
+ rotate: false
+ xy: 434, 43
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3338
+ rotate: false
+ xy: 534, 42
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3339
+ rotate: false
+ xy: 602, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3340
+ rotate: false
+ xy: 668, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3341
+ rotate: false
+ xy: 568, 42
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3342
+ rotate: false
+ xy: 734, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3343
+ rotate: false
+ xy: 768, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3344
+ rotate: false
+ xy: 834, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3345
+ rotate: false
+ xy: 900, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3346
+ rotate: false
+ xy: 934, 30
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3347
+ rotate: false
+ xy: 2, 9
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3348
+ rotate: false
+ xy: 68, 9
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3349
+ rotate: false
+ xy: 134, 9
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3350
+ rotate: false
+ xy: 168, 9
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3351
+ rotate: false
+ xy: 202, 9
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3352
+ rotate: false
+ xy: 268, 9
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3353
+ rotate: false
+ xy: 334, 9
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3354
+ rotate: false
+ xy: 368, 9
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3355
+ rotate: false
+ xy: 402, 9
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3356
+ rotate: false
+ xy: 468, 8
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3357
+ rotate: false
+ xy: 534, 8
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3358
+ rotate: false
+ xy: 568, 8
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3359
+ rotate: false
+ xy: 602, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+336
+ rotate: false
+ xy: 573, 926
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3360
+ rotate: false
+ xy: 668, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3361
+ rotate: false
+ xy: 734, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3362
+ rotate: false
+ xy: 768, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3363
+ rotate: false
+ xy: 802, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3364
+ rotate: false
+ xy: 868, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+359
+ rotate: false
+ xy: 607, 926
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+363
+ rotate: false
+ xy: 641, 926
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+367
+ rotate: false
+ xy: 675, 926
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+371
+ rotate: false
+ xy: 709, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+372
+ rotate: false
+ xy: 743, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+376
+ rotate: false
+ xy: 777, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+380
+ rotate: false
+ xy: 811, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+384
+ rotate: false
+ xy: 845, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+388
+ rotate: false
+ xy: 879, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+403
+ rotate: false
+ xy: 913, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+404
+ rotate: false
+ xy: 947, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+440
+ rotate: false
+ xy: 981, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12712
+ rotate: false
+ xy: 981, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+441
+ rotate: false
+ xy: 2, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12713
+ rotate: false
+ xy: 2, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+442
+ rotate: false
+ xy: 36, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12714
+ rotate: false
+ xy: 36, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+443
+ rotate: false
+ xy: 70, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12715
+ rotate: false
+ xy: 70, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4464
+ rotate: false
+ xy: 200, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+4466
+ rotate: false
+ xy: 233, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+4467
+ rotate: false
+ xy: 266, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+4469
+ rotate: false
+ xy: 299, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+4470
+ rotate: false
+ xy: 332, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+4472
+ rotate: false
+ xy: 365, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+4473
+ rotate: false
+ xy: 398, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+4475
+ rotate: false
+ xy: 431, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+465
+ rotate: false
+ xy: 104, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+467
+ rotate: false
+ xy: 138, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+494
+ rotate: false
+ xy: 172, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12967
+ rotate: false
+ xy: 172, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+497
+ rotate: false
+ xy: 206, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+498
+ rotate: false
+ xy: 240, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+502
+ rotate: false
+ xy: 274, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+503
+ rotate: false
+ xy: 308, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+504
+ rotate: false
+ xy: 342, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+505
+ rotate: false
+ xy: 376, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+506
+ rotate: false
+ xy: 410, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+508
+ rotate: false
+ xy: 444, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+509
+ rotate: false
+ xy: 478, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+510
+ rotate: false
+ xy: 512, 893
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+511
+ rotate: false
+ xy: 573, 892
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+513
+ rotate: false
+ xy: 607, 892
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+515
+ rotate: false
+ xy: 641, 892
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+516
+ rotate: false
+ xy: 675, 892
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+517
+ rotate: false
+ xy: 709, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+518
+ rotate: false
+ xy: 743, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+519
+ rotate: false
+ xy: 777, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+520
+ rotate: false
+ xy: 811, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+521
+ rotate: false
+ xy: 845, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+522
+ rotate: false
+ xy: 879, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+523
+ rotate: false
+ xy: 913, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+526
+ rotate: false
+ xy: 947, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+527
+ rotate: false
+ xy: 981, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+528
+ rotate: false
+ xy: 2, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+53
+ rotate: false
+ xy: 710, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+533
+ rotate: false
+ xy: 36, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+535
+ rotate: false
+ xy: 70, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+536
+ rotate: false
+ xy: 104, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+537
+ rotate: false
+ xy: 138, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+538
+ rotate: false
+ xy: 172, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+539
+ rotate: false
+ xy: 206, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+54
+ rotate: false
+ xy: 744, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+540
+ rotate: false
+ xy: 240, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+541
+ rotate: false
+ xy: 274, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+542
+ rotate: false
+ xy: 308, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5736
+ rotate: false
+ xy: 308, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+543
+ rotate: false
+ xy: 342, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+544
+ rotate: false
+ xy: 376, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+55
+ rotate: false
+ xy: 778, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+550
+ rotate: false
+ xy: 410, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+554
+ rotate: false
+ xy: 444, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+557
+ rotate: false
+ xy: 478, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+558
+ rotate: false
+ xy: 512, 859
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+559
+ rotate: false
+ xy: 573, 858
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+560
+ rotate: false
+ xy: 607, 858
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+561
+ rotate: false
+ xy: 641, 858
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+562
+ rotate: false
+ xy: 675, 858
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+563
+ rotate: false
+ xy: 709, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22723
+ rotate: false
+ xy: 709, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+564
+ rotate: false
+ xy: 743, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+565
+ rotate: false
+ xy: 777, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+566
+ rotate: false
+ xy: 811, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+571
+ rotate: false
+ xy: 845, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+572
+ rotate: false
+ xy: 879, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+573
+ rotate: false
+ xy: 913, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+574
+ rotate: false
+ xy: 947, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+575
+ rotate: false
+ xy: 981, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+576
+ rotate: false
+ xy: 2, 825
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+577
+ rotate: false
+ xy: 36, 825
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+578
+ rotate: false
+ xy: 70, 825
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+579
+ rotate: false
+ xy: 104, 825
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+580
+ rotate: false
+ xy: 138, 825
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+581
+ rotate: false
+ xy: 172, 825
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+582
+ rotate: false
+ xy: 206, 825
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+583
+ rotate: false
+ xy: 240, 825
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+584
+ rotate: false
+ xy: 274, 825
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+585
+ rotate: false
+ xy: 308, 825
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+586
+ rotate: false
+ xy: 342, 825
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+587
+ rotate: false
+ xy: 376, 825
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+588
+ rotate: false
+ xy: 410, 825
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+589
+ rotate: false
+ xy: 444, 825
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+590
+ rotate: false
+ xy: 478, 825
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+591
+ rotate: false
+ xy: 512, 825
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+592
+ rotate: false
+ xy: 573, 824
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+593
+ rotate: false
+ xy: 607, 824
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+594
+ rotate: false
+ xy: 641, 824
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+595
+ rotate: false
+ xy: 675, 824
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+596
+ rotate: false
+ xy: 709, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+597
+ rotate: false
+ xy: 743, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+598
+ rotate: false
+ xy: 777, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+599
+ rotate: false
+ xy: 811, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+600
+ rotate: false
+ xy: 845, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+601
+ rotate: false
+ xy: 879, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+602
+ rotate: false
+ xy: 913, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+603
+ rotate: false
+ xy: 947, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+604
+ rotate: false
+ xy: 981, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+605
+ rotate: false
+ xy: 2, 791
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+606
+ rotate: false
+ xy: 36, 791
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+607
+ rotate: false
+ xy: 70, 791
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+608
+ rotate: false
+ xy: 104, 791
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+609
+ rotate: false
+ xy: 138, 791
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+631
+ rotate: false
+ xy: 172, 791
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+632
+ rotate: false
+ xy: 206, 791
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+654
+ rotate: false
+ xy: 240, 791
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+655
+ rotate: false
+ xy: 274, 791
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+656
+ rotate: false
+ xy: 308, 791
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+657
+ rotate: false
+ xy: 342, 791
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+658
+ rotate: false
+ xy: 376, 791
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+659
+ rotate: false
+ xy: 410, 791
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+674
+ rotate: false
+ xy: 444, 791
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+680
+ rotate: false
+ xy: 478, 791
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+681
+ rotate: false
+ xy: 512, 791
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+682
+ rotate: false
+ xy: 573, 790
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+683
+ rotate: false
+ xy: 607, 790
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+684
+ rotate: false
+ xy: 641, 790
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+685
+ rotate: false
+ xy: 675, 790
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+686
+ rotate: false
+ xy: 709, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+687
+ rotate: false
+ xy: 743, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6879
+ rotate: false
+ xy: 464, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+688
+ rotate: false
+ xy: 777, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6881
+ rotate: false
+ xy: 497, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+6883
+ rotate: false
+ xy: 530, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+6885
+ rotate: false
+ xy: 563, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+6887
+ rotate: false
+ xy: 596, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+6889
+ rotate: false
+ xy: 629, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+689
+ rotate: false
+ xy: 811, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6891
+ rotate: false
+ xy: 662, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+6893
+ rotate: false
+ xy: 695, 994
+ size: 31, 25
+ orig: 31, 25
+ offset: 0, 0
+ index: -1
+690
+ rotate: false
+ xy: 845, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+691
+ rotate: false
+ xy: 879, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+692
+ rotate: false
+ xy: 913, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+693
+ rotate: false
+ xy: 947, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+694
+ rotate: false
+ xy: 981, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+695
+ rotate: false
+ xy: 2, 757
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+697
+ rotate: false
+ xy: 36, 757
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+698
+ rotate: false
+ xy: 70, 757
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+699
+ rotate: false
+ xy: 104, 757
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+700
+ rotate: false
+ xy: 138, 757
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+701
+ rotate: false
+ xy: 172, 757
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+702
+ rotate: false
+ xy: 206, 757
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+703
+ rotate: false
+ xy: 240, 757
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+704
+ rotate: false
+ xy: 274, 757
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+705
+ rotate: false
+ xy: 308, 757
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+706
+ rotate: false
+ xy: 342, 757
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+707
+ rotate: false
+ xy: 376, 757
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+708
+ rotate: false
+ xy: 410, 757
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+709
+ rotate: false
+ xy: 444, 757
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+710
+ rotate: false
+ xy: 478, 757
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+711
+ rotate: false
+ xy: 512, 757
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+712
+ rotate: false
+ xy: 573, 756
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+713
+ rotate: false
+ xy: 607, 756
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+714
+ rotate: false
+ xy: 641, 756
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+715
+ rotate: false
+ xy: 675, 756
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+716
+ rotate: false
+ xy: 709, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+717
+ rotate: false
+ xy: 743, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+722
+ rotate: false
+ xy: 777, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+723
+ rotate: false
+ xy: 811, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+724
+ rotate: false
+ xy: 845, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+725
+ rotate: false
+ xy: 879, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+726
+ rotate: false
+ xy: 913, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+729
+ rotate: false
+ xy: 947, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+730
+ rotate: false
+ xy: 981, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+731
+ rotate: false
+ xy: 2, 723
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+732
+ rotate: false
+ xy: 36, 723
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+733
+ rotate: false
+ xy: 70, 723
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+738
+ rotate: false
+ xy: 104, 723
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+749
+ rotate: false
+ xy: 138, 723
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+750
+ rotate: false
+ xy: 172, 723
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+751
+ rotate: false
+ xy: 206, 723
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+752
+ rotate: false
+ xy: 240, 723
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+753
+ rotate: false
+ xy: 274, 723
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+754
+ rotate: false
+ xy: 308, 723
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+755
+ rotate: false
+ xy: 342, 723
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+756
+ rotate: false
+ xy: 376, 723
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+757
+ rotate: false
+ xy: 410, 723
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+758
+ rotate: false
+ xy: 444, 723
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+759
+ rotate: false
+ xy: 478, 723
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+760
+ rotate: false
+ xy: 512, 723
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+761
+ rotate: false
+ xy: 573, 722
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+762
+ rotate: false
+ xy: 607, 722
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+763
+ rotate: false
+ xy: 641, 722
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+764
+ rotate: false
+ xy: 675, 722
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+765
+ rotate: false
+ xy: 709, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+766
+ rotate: false
+ xy: 743, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+767
+ rotate: false
+ xy: 777, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+768
+ rotate: false
+ xy: 811, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+769
+ rotate: false
+ xy: 845, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+770
+ rotate: false
+ xy: 879, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+771
+ rotate: false
+ xy: 913, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+772
+ rotate: false
+ xy: 947, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+773
+ rotate: false
+ xy: 981, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+774
+ rotate: false
+ xy: 2, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+775
+ rotate: false
+ xy: 36, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+776
+ rotate: false
+ xy: 70, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+777
+ rotate: false
+ xy: 104, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+778
+ rotate: false
+ xy: 138, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+779
+ rotate: false
+ xy: 172, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+780
+ rotate: false
+ xy: 206, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+781
+ rotate: false
+ xy: 240, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+782
+ rotate: false
+ xy: 274, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+783
+ rotate: false
+ xy: 308, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+784
+ rotate: false
+ xy: 342, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+785
+ rotate: false
+ xy: 376, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+786
+ rotate: false
+ xy: 410, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+787
+ rotate: false
+ xy: 444, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+789
+ rotate: false
+ xy: 478, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+790
+ rotate: false
+ xy: 512, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+791
+ rotate: false
+ xy: 512, 689
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+792
+ rotate: false
+ xy: 573, 688
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+793
+ rotate: false
+ xy: 607, 688
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+794
+ rotate: false
+ xy: 641, 688
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+795
+ rotate: false
+ xy: 675, 688
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+796
+ rotate: false
+ xy: 709, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+797
+ rotate: false
+ xy: 743, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+798
+ rotate: false
+ xy: 777, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+799
+ rotate: false
+ xy: 811, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+800
+ rotate: false
+ xy: 845, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+801
+ rotate: false
+ xy: 879, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+802
+ rotate: false
+ xy: 913, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+803
+ rotate: false
+ xy: 947, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+804
+ rotate: false
+ xy: 981, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+805
+ rotate: false
+ xy: 2, 655
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+806
+ rotate: false
+ xy: 36, 655
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+807
+ rotate: false
+ xy: 70, 655
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+844
+ rotate: false
+ xy: 104, 655
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+845
+ rotate: false
+ xy: 138, 655
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+846
+ rotate: false
+ xy: 172, 655
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+847
+ rotate: false
+ xy: 206, 655
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+848
+ rotate: false
+ xy: 240, 655
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+849
+ rotate: false
+ xy: 274, 655
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+850
+ rotate: false
+ xy: 308, 655
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+885
+ rotate: false
+ xy: 972, 85
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+886
+ rotate: false
+ xy: 972, 38
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+932
+ rotate: false
+ xy: 342, 655
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+959
+ rotate: false
+ xy: 376, 655
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+986
+ rotate: false
+ xy: 410, 655
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+
+images88.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+13235
+ rotate: false
+ xy: 1002, 970
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13238
+ rotate: false
+ xy: 1002, 918
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13239
+ rotate: false
+ xy: 1002, 866
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13242
+ rotate: false
+ xy: 1002, 814
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13243
+ rotate: false
+ xy: 1002, 762
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13246
+ rotate: false
+ xy: 1002, 710
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13247
+ rotate: false
+ xy: 1002, 658
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13250
+ rotate: false
+ xy: 1002, 504
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13251
+ rotate: false
+ xy: 946, 494
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13254
+ rotate: false
+ xy: 1002, 452
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13959
+ rotate: false
+ xy: 1002, 400
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13962
+ rotate: false
+ xy: 1002, 348
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13990
+ rotate: false
+ xy: 1002, 296
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13993
+ rotate: false
+ xy: 1002, 244
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13994
+ rotate: false
+ xy: 1002, 192
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+13997
+ rotate: false
+ xy: 1004, 140
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+14186
+ rotate: false
+ xy: 1002, 88
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+14189
+ rotate: false
+ xy: 902, 52
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+3365
+ rotate: false
+ xy: 2, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3366
+ rotate: false
+ xy: 36, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3367
+ rotate: false
+ xy: 70, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3368
+ rotate: false
+ xy: 136, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3369
+ rotate: false
+ xy: 202, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3370
+ rotate: false
+ xy: 236, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3371
+ rotate: false
+ xy: 270, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3372
+ rotate: false
+ xy: 336, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3373
+ rotate: false
+ xy: 402, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3374
+ rotate: false
+ xy: 436, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3375
+ rotate: false
+ xy: 470, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3376
+ rotate: false
+ xy: 536, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3377
+ rotate: false
+ xy: 602, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3378
+ rotate: false
+ xy: 636, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3379
+ rotate: false
+ xy: 670, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3380
+ rotate: false
+ xy: 736, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3381
+ rotate: false
+ xy: 802, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3382
+ rotate: false
+ xy: 836, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3383
+ rotate: false
+ xy: 870, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3384
+ rotate: false
+ xy: 936, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3385
+ rotate: false
+ xy: 2, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3386
+ rotate: false
+ xy: 36, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3387
+ rotate: false
+ xy: 70, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3388
+ rotate: false
+ xy: 136, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3389
+ rotate: false
+ xy: 202, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3390
+ rotate: false
+ xy: 236, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3391
+ rotate: false
+ xy: 270, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3392
+ rotate: false
+ xy: 336, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3393
+ rotate: false
+ xy: 402, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3394
+ rotate: false
+ xy: 436, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3395
+ rotate: false
+ xy: 470, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3396
+ rotate: false
+ xy: 536, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3397
+ rotate: false
+ xy: 602, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3398
+ rotate: false
+ xy: 636, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3399
+ rotate: false
+ xy: 670, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3400
+ rotate: false
+ xy: 736, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3401
+ rotate: false
+ xy: 802, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3402
+ rotate: false
+ xy: 836, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3403
+ rotate: false
+ xy: 870, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3404
+ rotate: false
+ xy: 936, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3405
+ rotate: false
+ xy: 2, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3406
+ rotate: false
+ xy: 36, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3407
+ rotate: false
+ xy: 70, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3408
+ rotate: false
+ xy: 136, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3409
+ rotate: false
+ xy: 202, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3410
+ rotate: false
+ xy: 236, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3411
+ rotate: false
+ xy: 270, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3412
+ rotate: false
+ xy: 336, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3413
+ rotate: false
+ xy: 402, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3414
+ rotate: false
+ xy: 436, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3415
+ rotate: false
+ xy: 470, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3416
+ rotate: false
+ xy: 536, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3417
+ rotate: false
+ xy: 602, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3418
+ rotate: false
+ xy: 636, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3419
+ rotate: false
+ xy: 670, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3420
+ rotate: false
+ xy: 736, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3421
+ rotate: false
+ xy: 802, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3422
+ rotate: false
+ xy: 836, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3423
+ rotate: false
+ xy: 870, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3424
+ rotate: false
+ xy: 936, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3425
+ rotate: false
+ xy: 2, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3426
+ rotate: false
+ xy: 36, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3427
+ rotate: false
+ xy: 70, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3428
+ rotate: false
+ xy: 136, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3429
+ rotate: false
+ xy: 202, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3430
+ rotate: false
+ xy: 236, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3431
+ rotate: false
+ xy: 270, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3432
+ rotate: false
+ xy: 336, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3433
+ rotate: false
+ xy: 402, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3434
+ rotate: false
+ xy: 436, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3435
+ rotate: false
+ xy: 470, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3436
+ rotate: false
+ xy: 536, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3437
+ rotate: false
+ xy: 602, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3438
+ rotate: false
+ xy: 636, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3439
+ rotate: false
+ xy: 670, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3440
+ rotate: false
+ xy: 736, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3441
+ rotate: false
+ xy: 802, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3442
+ rotate: false
+ xy: 836, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3443
+ rotate: false
+ xy: 870, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3444
+ rotate: false
+ xy: 936, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3445
+ rotate: false
+ xy: 2, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3446
+ rotate: false
+ xy: 36, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3447
+ rotate: false
+ xy: 70, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3448
+ rotate: false
+ xy: 136, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3449
+ rotate: false
+ xy: 202, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3450
+ rotate: false
+ xy: 236, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3451
+ rotate: false
+ xy: 270, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3452
+ rotate: false
+ xy: 336, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3453
+ rotate: false
+ xy: 402, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3454
+ rotate: false
+ xy: 436, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3455
+ rotate: false
+ xy: 470, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3456
+ rotate: false
+ xy: 536, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3457
+ rotate: false
+ xy: 602, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3458
+ rotate: false
+ xy: 636, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3459
+ rotate: false
+ xy: 670, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3460
+ rotate: false
+ xy: 736, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3461
+ rotate: false
+ xy: 802, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3462
+ rotate: false
+ xy: 836, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3463
+ rotate: false
+ xy: 870, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3464
+ rotate: false
+ xy: 936, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3465
+ rotate: false
+ xy: 2, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3466
+ rotate: false
+ xy: 36, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3467
+ rotate: false
+ xy: 70, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3468
+ rotate: false
+ xy: 136, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3469
+ rotate: false
+ xy: 202, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3470
+ rotate: false
+ xy: 236, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3471
+ rotate: false
+ xy: 270, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3472
+ rotate: false
+ xy: 336, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3473
+ rotate: false
+ xy: 402, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3474
+ rotate: false
+ xy: 436, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3475
+ rotate: false
+ xy: 470, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3476
+ rotate: false
+ xy: 536, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3477
+ rotate: false
+ xy: 602, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3478
+ rotate: false
+ xy: 636, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3479
+ rotate: false
+ xy: 670, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3480
+ rotate: false
+ xy: 736, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3481
+ rotate: false
+ xy: 802, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3482
+ rotate: false
+ xy: 836, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3483
+ rotate: false
+ xy: 870, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3484
+ rotate: false
+ xy: 936, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3485
+ rotate: false
+ xy: 2, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3486
+ rotate: false
+ xy: 36, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3487
+ rotate: false
+ xy: 70, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3488
+ rotate: false
+ xy: 136, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3489
+ rotate: false
+ xy: 202, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3490
+ rotate: false
+ xy: 236, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3491
+ rotate: false
+ xy: 270, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3492
+ rotate: false
+ xy: 336, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3493
+ rotate: false
+ xy: 402, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3494
+ rotate: false
+ xy: 436, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3495
+ rotate: false
+ xy: 470, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3496
+ rotate: false
+ xy: 536, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3497
+ rotate: false
+ xy: 602, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3498
+ rotate: false
+ xy: 636, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3499
+ rotate: false
+ xy: 670, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3500
+ rotate: false
+ xy: 736, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3501
+ rotate: false
+ xy: 802, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3502
+ rotate: false
+ xy: 836, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3503
+ rotate: false
+ xy: 870, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3504
+ rotate: false
+ xy: 936, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3505
+ rotate: false
+ xy: 2, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3506
+ rotate: false
+ xy: 36, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3507
+ rotate: false
+ xy: 70, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3508
+ rotate: false
+ xy: 136, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3509
+ rotate: false
+ xy: 202, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3510
+ rotate: false
+ xy: 236, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3511
+ rotate: false
+ xy: 270, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3512
+ rotate: false
+ xy: 336, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3513
+ rotate: false
+ xy: 402, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3514
+ rotate: false
+ xy: 436, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3578
+ rotate: false
+ xy: 436, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3515
+ rotate: false
+ xy: 470, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3579
+ rotate: false
+ xy: 470, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3516
+ rotate: false
+ xy: 536, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3580
+ rotate: false
+ xy: 536, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3517
+ rotate: false
+ xy: 602, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3581
+ rotate: false
+ xy: 602, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3518
+ rotate: false
+ xy: 636, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3519
+ rotate: false
+ xy: 670, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3520
+ rotate: false
+ xy: 736, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3521
+ rotate: false
+ xy: 802, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3522
+ rotate: false
+ xy: 836, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3523
+ rotate: false
+ xy: 870, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3524
+ rotate: false
+ xy: 936, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3525
+ rotate: false
+ xy: 2, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3526
+ rotate: false
+ xy: 36, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3527
+ rotate: false
+ xy: 70, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3528
+ rotate: false
+ xy: 136, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3529
+ rotate: false
+ xy: 202, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3530
+ rotate: false
+ xy: 236, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3531
+ rotate: false
+ xy: 270, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3532
+ rotate: false
+ xy: 336, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3533
+ rotate: false
+ xy: 402, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3534
+ rotate: false
+ xy: 436, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3535
+ rotate: false
+ xy: 470, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3536
+ rotate: false
+ xy: 536, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3537
+ rotate: false
+ xy: 602, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3538
+ rotate: false
+ xy: 636, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3539
+ rotate: false
+ xy: 670, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3540
+ rotate: false
+ xy: 736, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3541
+ rotate: false
+ xy: 802, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3542
+ rotate: false
+ xy: 836, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3543
+ rotate: false
+ xy: 870, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3544
+ rotate: false
+ xy: 936, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3545
+ rotate: false
+ xy: 2, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3546
+ rotate: false
+ xy: 36, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3547
+ rotate: false
+ xy: 70, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3548
+ rotate: false
+ xy: 136, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3549
+ rotate: false
+ xy: 202, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3550
+ rotate: false
+ xy: 236, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3551
+ rotate: false
+ xy: 270, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3552
+ rotate: false
+ xy: 336, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3553
+ rotate: false
+ xy: 402, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3554
+ rotate: false
+ xy: 436, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3555
+ rotate: false
+ xy: 470, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3556
+ rotate: false
+ xy: 536, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3557
+ rotate: false
+ xy: 602, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3558
+ rotate: false
+ xy: 636, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3559
+ rotate: false
+ xy: 670, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3560
+ rotate: false
+ xy: 736, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3561
+ rotate: false
+ xy: 802, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3562
+ rotate: false
+ xy: 836, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3563
+ rotate: false
+ xy: 870, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3564
+ rotate: false
+ xy: 936, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3565
+ rotate: false
+ xy: 2, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3566
+ rotate: false
+ xy: 36, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3567
+ rotate: false
+ xy: 70, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3568
+ rotate: false
+ xy: 136, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3569
+ rotate: false
+ xy: 202, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3570
+ rotate: false
+ xy: 236, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3571
+ rotate: false
+ xy: 270, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3572
+ rotate: false
+ xy: 336, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3573
+ rotate: false
+ xy: 402, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3574
+ rotate: false
+ xy: 436, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3575
+ rotate: false
+ xy: 470, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3576
+ rotate: false
+ xy: 536, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+3577
+ rotate: false
+ xy: 602, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3715
+ rotate: false
+ xy: 636, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+3716
+ rotate: false
+ xy: 670, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+4484
+ rotate: false
+ xy: 736, 648
+ size: 48, 32
+ orig: 48, 32
+ offset: 0, 0
+ index: -1
+4860
+ rotate: false
+ xy: 786, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4900
+ rotate: false
+ xy: 820, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4901
+ rotate: false
+ xy: 854, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4902
+ rotate: false
+ xy: 888, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4903
+ rotate: false
+ xy: 922, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4910
+ rotate: false
+ xy: 956, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4911
+ rotate: false
+ xy: 990, 624
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4912
+ rotate: false
+ xy: 2, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4913
+ rotate: false
+ xy: 36, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4914
+ rotate: false
+ xy: 70, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4915
+ rotate: false
+ xy: 104, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4916
+ rotate: false
+ xy: 138, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4917
+ rotate: false
+ xy: 172, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4918
+ rotate: false
+ xy: 206, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4919
+ rotate: false
+ xy: 240, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4920
+ rotate: false
+ xy: 274, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4921
+ rotate: false
+ xy: 308, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4922
+ rotate: false
+ xy: 342, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4923
+ rotate: false
+ xy: 376, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+4924
+ rotate: false
+ xy: 442, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4925
+ rotate: false
+ xy: 476, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4926
+ rotate: false
+ xy: 510, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4927
+ rotate: false
+ xy: 544, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4936
+ rotate: false
+ xy: 578, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4937
+ rotate: false
+ xy: 612, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4938
+ rotate: false
+ xy: 646, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4939
+ rotate: false
+ xy: 680, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4988
+ rotate: false
+ xy: 714, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4989
+ rotate: false
+ xy: 748, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4990
+ rotate: false
+ xy: 782, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4991
+ rotate: false
+ xy: 816, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+4999
+ rotate: false
+ xy: 850, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5326
+ rotate: false
+ xy: 884, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5500
+ rotate: false
+ xy: 918, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5501
+ rotate: false
+ xy: 952, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5502
+ rotate: false
+ xy: 986, 590
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5503
+ rotate: false
+ xy: 2, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5556
+ rotate: false
+ xy: 36, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5587
+ rotate: false
+ xy: 70, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5594
+ rotate: false
+ xy: 104, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5595
+ rotate: false
+ xy: 138, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5602
+ rotate: false
+ xy: 172, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5605
+ rotate: false
+ xy: 238, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5606
+ rotate: false
+ xy: 272, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5609
+ rotate: false
+ xy: 338, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5610
+ rotate: false
+ xy: 372, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5613
+ rotate: false
+ xy: 438, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5614
+ rotate: false
+ xy: 472, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5635
+ rotate: false
+ xy: 538, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5636
+ rotate: false
+ xy: 604, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5639
+ rotate: false
+ xy: 638, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5640
+ rotate: false
+ xy: 704, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5643
+ rotate: false
+ xy: 738, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5644
+ rotate: false
+ xy: 804, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5647
+ rotate: false
+ xy: 838, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5648
+ rotate: false
+ xy: 904, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5649
+ rotate: false
+ xy: 938, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5650
+ rotate: false
+ xy: 2, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5653
+ rotate: false
+ xy: 972, 556
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5654
+ rotate: false
+ xy: 68, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5657
+ rotate: false
+ xy: 134, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5658
+ rotate: false
+ xy: 168, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5661
+ rotate: false
+ xy: 234, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5662
+ rotate: false
+ xy: 268, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5681
+ rotate: false
+ xy: 334, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5682
+ rotate: false
+ xy: 368, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5685
+ rotate: false
+ xy: 434, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5686
+ rotate: false
+ xy: 468, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5689
+ rotate: false
+ xy: 534, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5690
+ rotate: false
+ xy: 568, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5693
+ rotate: false
+ xy: 634, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5694
+ rotate: false
+ xy: 668, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5715
+ rotate: false
+ xy: 734, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5716
+ rotate: false
+ xy: 800, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5719
+ rotate: false
+ xy: 834, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5720
+ rotate: false
+ xy: 900, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5723
+ rotate: false
+ xy: 2, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5724
+ rotate: false
+ xy: 934, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5727
+ rotate: false
+ xy: 68, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5728
+ rotate: false
+ xy: 968, 522
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5729
+ rotate: false
+ xy: 134, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5730
+ rotate: false
+ xy: 168, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5731
+ rotate: false
+ xy: 202, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5732
+ rotate: false
+ xy: 236, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5733
+ rotate: false
+ xy: 270, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5734
+ rotate: false
+ xy: 304, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5735
+ rotate: false
+ xy: 338, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5737
+ rotate: false
+ xy: 372, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5738
+ rotate: false
+ xy: 406, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5739
+ rotate: false
+ xy: 440, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5740
+ rotate: false
+ xy: 474, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5741
+ rotate: false
+ xy: 508, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5742
+ rotate: false
+ xy: 542, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5743
+ rotate: false
+ xy: 576, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5744
+ rotate: false
+ xy: 610, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5745
+ rotate: false
+ xy: 644, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5746
+ rotate: false
+ xy: 678, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5748
+ rotate: false
+ xy: 712, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5773
+ rotate: false
+ xy: 746, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5774
+ rotate: false
+ xy: 780, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5777
+ rotate: false
+ xy: 846, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5778
+ rotate: false
+ xy: 880, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5781
+ rotate: false
+ xy: 965, 488
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5782
+ rotate: false
+ xy: 2, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5785
+ rotate: false
+ xy: 68, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5786
+ rotate: false
+ xy: 102, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5807
+ rotate: false
+ xy: 168, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5808
+ rotate: false
+ xy: 234, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5811
+ rotate: false
+ xy: 268, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5812
+ rotate: false
+ xy: 334, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5815
+ rotate: false
+ xy: 368, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5816
+ rotate: false
+ xy: 434, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5819
+ rotate: false
+ xy: 468, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5820
+ rotate: false
+ xy: 534, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5821
+ rotate: false
+ xy: 568, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5822
+ rotate: false
+ xy: 602, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5825
+ rotate: false
+ xy: 668, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5826
+ rotate: false
+ xy: 702, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5829
+ rotate: false
+ xy: 768, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5830
+ rotate: false
+ xy: 802, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5833
+ rotate: false
+ xy: 868, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5834
+ rotate: false
+ xy: 936, 454
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5853
+ rotate: false
+ xy: 902, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5854
+ rotate: false
+ xy: 2, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5857
+ rotate: false
+ xy: 68, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5858
+ rotate: false
+ xy: 102, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5861
+ rotate: false
+ xy: 168, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5862
+ rotate: false
+ xy: 202, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5865
+ rotate: false
+ xy: 268, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5866
+ rotate: false
+ xy: 302, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5903
+ rotate: false
+ xy: 368, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5904
+ rotate: false
+ xy: 434, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5907
+ rotate: false
+ xy: 468, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5908
+ rotate: false
+ xy: 534, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5911
+ rotate: false
+ xy: 568, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5912
+ rotate: false
+ xy: 634, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5915
+ rotate: false
+ xy: 668, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+5916
+ rotate: false
+ xy: 734, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+5955
+ rotate: false
+ xy: 768, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6000
+ rotate: false
+ xy: 802, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6001
+ rotate: false
+ xy: 836, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6004
+ rotate: false
+ xy: 902, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6005
+ rotate: false
+ xy: 936, 420
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6008
+ rotate: false
+ xy: 2, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6009
+ rotate: false
+ xy: 36, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6012
+ rotate: false
+ xy: 102, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6013
+ rotate: false
+ xy: 136, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6050
+ rotate: false
+ xy: 202, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6051
+ rotate: false
+ xy: 268, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6054
+ rotate: false
+ xy: 302, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6055
+ rotate: false
+ xy: 368, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6058
+ rotate: false
+ xy: 402, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6059
+ rotate: false
+ xy: 468, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6062
+ rotate: false
+ xy: 502, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6063
+ rotate: false
+ xy: 568, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6064
+ rotate: false
+ xy: 602, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6065
+ rotate: false
+ xy: 636, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6068
+ rotate: false
+ xy: 702, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6069
+ rotate: false
+ xy: 736, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6072
+ rotate: false
+ xy: 802, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6073
+ rotate: false
+ xy: 836, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6076
+ rotate: false
+ xy: 902, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6077
+ rotate: false
+ xy: 936, 386
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6114
+ rotate: false
+ xy: 2, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6115
+ rotate: false
+ xy: 68, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6118
+ rotate: false
+ xy: 102, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6119
+ rotate: false
+ xy: 168, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6122
+ rotate: false
+ xy: 202, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6123
+ rotate: false
+ xy: 268, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6126
+ rotate: false
+ xy: 302, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6127
+ rotate: false
+ xy: 368, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6128
+ rotate: false
+ xy: 402, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6129
+ rotate: false
+ xy: 436, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6132
+ rotate: false
+ xy: 502, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6133
+ rotate: false
+ xy: 536, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6136
+ rotate: false
+ xy: 602, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6137
+ rotate: false
+ xy: 636, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6140
+ rotate: false
+ xy: 702, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6141
+ rotate: false
+ xy: 736, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6178
+ rotate: false
+ xy: 802, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6179
+ rotate: false
+ xy: 868, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6182
+ rotate: false
+ xy: 936, 352
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6183
+ rotate: false
+ xy: 902, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6186
+ rotate: false
+ xy: 2, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6187
+ rotate: false
+ xy: 68, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6190
+ rotate: false
+ xy: 102, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6191
+ rotate: false
+ xy: 168, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6192
+ rotate: false
+ xy: 202, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6193
+ rotate: false
+ xy: 236, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6196
+ rotate: false
+ xy: 302, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6197
+ rotate: false
+ xy: 336, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6200
+ rotate: false
+ xy: 402, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6201
+ rotate: false
+ xy: 436, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6204
+ rotate: false
+ xy: 502, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6205
+ rotate: false
+ xy: 536, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6242
+ rotate: false
+ xy: 602, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6243
+ rotate: false
+ xy: 668, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6246
+ rotate: false
+ xy: 702, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6247
+ rotate: false
+ xy: 768, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6250
+ rotate: false
+ xy: 802, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6251
+ rotate: false
+ xy: 868, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6254
+ rotate: false
+ xy: 936, 318
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6255
+ rotate: false
+ xy: 902, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6256
+ rotate: false
+ xy: 2, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6257
+ rotate: false
+ xy: 36, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6260
+ rotate: false
+ xy: 102, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6261
+ rotate: false
+ xy: 136, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6264
+ rotate: false
+ xy: 202, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6265
+ rotate: false
+ xy: 236, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6268
+ rotate: false
+ xy: 302, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6269
+ rotate: false
+ xy: 336, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6304
+ rotate: false
+ xy: 402, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6305
+ rotate: false
+ xy: 436, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6308
+ rotate: false
+ xy: 502, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6309
+ rotate: false
+ xy: 536, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6312
+ rotate: false
+ xy: 602, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6313
+ rotate: false
+ xy: 636, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6316
+ rotate: false
+ xy: 702, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6317
+ rotate: false
+ xy: 736, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6338
+ rotate: false
+ xy: 802, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6339
+ rotate: false
+ xy: 868, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6342
+ rotate: false
+ xy: 936, 284
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6343
+ rotate: false
+ xy: 902, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6346
+ rotate: false
+ xy: 2, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6347
+ rotate: false
+ xy: 68, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6350
+ rotate: false
+ xy: 102, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6351
+ rotate: false
+ xy: 168, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6352
+ rotate: false
+ xy: 202, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6353
+ rotate: false
+ xy: 236, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6356
+ rotate: false
+ xy: 302, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6357
+ rotate: false
+ xy: 336, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6360
+ rotate: false
+ xy: 402, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6361
+ rotate: false
+ xy: 436, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6364
+ rotate: false
+ xy: 502, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6365
+ rotate: false
+ xy: 536, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6386
+ rotate: false
+ xy: 602, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6387
+ rotate: false
+ xy: 668, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6390
+ rotate: false
+ xy: 702, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6391
+ rotate: false
+ xy: 768, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6394
+ rotate: false
+ xy: 802, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6395
+ rotate: false
+ xy: 868, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6398
+ rotate: false
+ xy: 936, 250
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6399
+ rotate: false
+ xy: 902, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6400
+ rotate: false
+ xy: 2, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6401
+ rotate: false
+ xy: 36, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6404
+ rotate: false
+ xy: 102, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6405
+ rotate: false
+ xy: 136, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6408
+ rotate: false
+ xy: 202, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6409
+ rotate: false
+ xy: 236, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6412
+ rotate: false
+ xy: 302, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6413
+ rotate: false
+ xy: 336, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6450
+ rotate: false
+ xy: 402, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6451
+ rotate: false
+ xy: 468, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6454
+ rotate: false
+ xy: 502, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6455
+ rotate: false
+ xy: 568, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6458
+ rotate: false
+ xy: 602, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6459
+ rotate: false
+ xy: 668, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6462
+ rotate: false
+ xy: 702, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6463
+ rotate: false
+ xy: 768, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6464
+ rotate: false
+ xy: 802, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22475
+ rotate: false
+ xy: 802, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6465
+ rotate: false
+ xy: 836, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6468
+ rotate: false
+ xy: 902, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22480
+ rotate: false
+ xy: 902, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6469
+ rotate: false
+ xy: 936, 216
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6472
+ rotate: false
+ xy: 2, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22485
+ rotate: false
+ xy: 2, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6473
+ rotate: false
+ xy: 36, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6476
+ rotate: false
+ xy: 102, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22490
+ rotate: false
+ xy: 102, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6477
+ rotate: false
+ xy: 136, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6514
+ rotate: false
+ xy: 202, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6515
+ rotate: false
+ xy: 268, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6518
+ rotate: false
+ xy: 302, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6519
+ rotate: false
+ xy: 368, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6522
+ rotate: false
+ xy: 402, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6523
+ rotate: false
+ xy: 468, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6526
+ rotate: false
+ xy: 502, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6527
+ rotate: false
+ xy: 568, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6528
+ rotate: false
+ xy: 602, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6529
+ rotate: false
+ xy: 636, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6530
+ rotate: false
+ xy: 702, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6531
+ rotate: false
+ xy: 768, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6532
+ rotate: false
+ xy: 802, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6533
+ rotate: false
+ xy: 836, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6534
+ rotate: false
+ xy: 936, 182
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6535
+ rotate: false
+ xy: 902, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6536
+ rotate: false
+ xy: 2, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6537
+ rotate: false
+ xy: 36, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6538
+ rotate: false
+ xy: 102, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6539
+ rotate: false
+ xy: 168, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6540
+ rotate: false
+ xy: 202, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6541
+ rotate: false
+ xy: 236, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6542
+ rotate: false
+ xy: 302, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6543
+ rotate: false
+ xy: 368, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6546
+ rotate: false
+ xy: 402, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6547
+ rotate: false
+ xy: 468, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6550
+ rotate: false
+ xy: 502, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6551
+ rotate: false
+ xy: 568, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6554
+ rotate: false
+ xy: 602, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6555
+ rotate: false
+ xy: 668, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6558
+ rotate: false
+ xy: 702, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6559
+ rotate: false
+ xy: 768, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6577
+ rotate: false
+ xy: 802, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6578
+ rotate: false
+ xy: 836, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6579
+ rotate: false
+ xy: 902, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6581
+ rotate: false
+ xy: 936, 148
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6582
+ rotate: false
+ xy: 2, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6583
+ rotate: false
+ xy: 68, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6584
+ rotate: false
+ xy: 970, 148
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6585
+ rotate: false
+ xy: 134, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6586
+ rotate: false
+ xy: 168, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6587
+ rotate: false
+ xy: 234, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6588
+ rotate: false
+ xy: 300, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6589
+ rotate: false
+ xy: 334, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6590
+ rotate: false
+ xy: 368, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6591
+ rotate: false
+ xy: 434, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6592
+ rotate: false
+ xy: 500, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6593
+ rotate: false
+ xy: 534, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6594
+ rotate: false
+ xy: 568, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6595
+ rotate: false
+ xy: 634, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6596
+ rotate: false
+ xy: 700, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6597
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19015
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19018
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19019
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19022
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19050
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19054
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19058
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19062
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19090
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19094
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19111
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19115
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19130
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19134
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19143
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19146
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19147
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19150
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19154
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19158
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6648
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6652
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6656
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6660
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8023
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8075
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8079
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8083
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8087
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8220
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8224
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8228
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8232
+ rotate: false
+ xy: 734, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6598
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19016
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19017
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19020
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19021
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19049
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19053
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19057
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19061
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19089
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19093
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19129
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19133
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19144
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19145
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19148
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19149
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19153
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19157
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8219
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8223
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8227
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8231
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6601
+ rotate: false
+ xy: 834, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6602
+ rotate: false
+ xy: 868, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6605
+ rotate: false
+ xy: 934, 114
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6606
+ rotate: false
+ xy: 2, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6609
+ rotate: false
+ xy: 968, 114
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6610
+ rotate: false
+ xy: 68, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6647
+ rotate: false
+ xy: 134, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6651
+ rotate: false
+ xy: 200, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6655
+ rotate: false
+ xy: 266, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6659
+ rotate: false
+ xy: 332, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6661
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13395
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13405
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13412
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13414
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13415
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13417
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13432
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13442
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13453
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13464
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13466
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13467
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13469
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13480
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18590
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18609
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18714
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18724
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18731
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18733
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18734
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18736
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18751
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18759
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18761
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18767
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18772
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18783
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18785
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18786
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18788
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18799
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19039
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19042
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19043
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19046
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19063
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19067
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19071
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19075
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19103
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19107
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19159
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19162
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19163
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19166
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19167
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19171
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19175
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19179
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19183
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19186
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19187
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19190
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19194
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19198
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19199
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19202
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19203
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19206
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22095
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22104
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22113
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22122
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22131
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22140
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22149
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22158
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22167
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22176
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22185
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22194
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22203
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6665
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6669
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6673
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6712
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6716
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6720
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6724
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7291
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7301
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7308
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7310
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7311
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7313
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7328
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7338
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7349
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7360
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7362
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7363
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7365
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7376
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7927
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7928
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7932
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7936
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7940
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8188
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8192
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8196
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8200
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8201
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8205
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8209
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8213
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8328
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8341
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6662
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13404
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13418
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13431
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13452
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13470
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13479
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18723
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18737
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18750
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18766
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18771
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18789
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18798
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19040
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19041
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19044
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19045
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19160
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19161
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19164
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19165
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19184
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19185
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19188
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19189
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19193
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19197
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19200
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19201
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19204
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19205
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22096
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22103
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22112
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22202
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22204
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22211
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6723
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7300
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7314
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7327
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7348
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7366
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7375
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8199
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6666
+ rotate: false
+ xy: 498, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6670
+ rotate: false
+ xy: 564, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6674
+ rotate: false
+ xy: 630, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6711
+ rotate: false
+ xy: 696, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6715
+ rotate: false
+ xy: 762, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6719
+ rotate: false
+ xy: 828, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6725
+ rotate: false
+ xy: 894, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6726
+ rotate: false
+ xy: 928, 80
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6727
+ rotate: false
+ xy: 2, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6728
+ rotate: false
+ xy: 68, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6729
+ rotate: false
+ xy: 102, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6730
+ rotate: false
+ xy: 136, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6731
+ rotate: false
+ xy: 202, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6732
+ rotate: false
+ xy: 268, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6733
+ rotate: false
+ xy: 302, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6734
+ rotate: false
+ xy: 336, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6735
+ rotate: false
+ xy: 402, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6736
+ rotate: false
+ xy: 468, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6737
+ rotate: false
+ xy: 502, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6738
+ rotate: false
+ xy: 536, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6739
+ rotate: false
+ xy: 602, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6740
+ rotate: false
+ xy: 668, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6741
+ rotate: false
+ xy: 702, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6742
+ rotate: false
+ xy: 736, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6743
+ rotate: false
+ xy: 802, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6744
+ rotate: false
+ xy: 868, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6745
+ rotate: false
+ xy: 921, 46
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6746
+ rotate: false
+ xy: 955, 46
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6747
+ rotate: false
+ xy: 2, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6748
+ rotate: false
+ xy: 68, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6749
+ rotate: false
+ xy: 102, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6750
+ rotate: false
+ xy: 136, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6751
+ rotate: false
+ xy: 202, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6752
+ rotate: false
+ xy: 268, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6753
+ rotate: false
+ xy: 302, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6754
+ rotate: false
+ xy: 336, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6755
+ rotate: false
+ xy: 402, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+6756
+ rotate: false
+ xy: 468, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+6967
+ rotate: false
+ xy: 502, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7100
+ rotate: false
+ xy: 536, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7101
+ rotate: false
+ xy: 570, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7103
+ rotate: false
+ xy: 636, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7104
+ rotate: false
+ xy: 670, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7106
+ rotate: false
+ xy: 736, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7107
+ rotate: false
+ xy: 770, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7140
+ rotate: false
+ xy: 836, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7142
+ rotate: false
+ xy: 902, 12
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7144
+ rotate: false
+ xy: 2, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7145
+ rotate: false
+ xy: 968, 12
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7146
+ rotate: false
+ xy: 68, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7159
+ rotate: false
+ xy: 134, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7160
+ rotate: false
+ xy: 200, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7161
+ rotate: false
+ xy: 234, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7162
+ rotate: false
+ xy: 268, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7234
+ rotate: false
+ xy: 302, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7235
+ rotate: false
+ xy: 336, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7236
+ rotate: false
+ xy: 402, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7237
+ rotate: false
+ xy: 468, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7238
+ rotate: false
+ xy: 502, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7239
+ rotate: false
+ xy: 536, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7240
+ rotate: false
+ xy: 602, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7241
+ rotate: false
+ xy: 668, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7242
+ rotate: false
+ xy: 702, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7243
+ rotate: false
+ xy: 736, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7244
+ rotate: false
+ xy: 802, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7245
+ rotate: false
+ xy: 868, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+
+images89.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+14190
+ rotate: false
+ xy: 1002, 970
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+14193
+ rotate: false
+ xy: 1002, 918
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17831
+ rotate: false
+ xy: 1000, 866
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17834
+ rotate: false
+ xy: 970, 740
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17835
+ rotate: false
+ xy: 1002, 686
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17838
+ rotate: false
+ xy: 1002, 634
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17839
+ rotate: false
+ xy: 1000, 582
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17842
+ rotate: false
+ xy: 1000, 530
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17843
+ rotate: false
+ xy: 1004, 478
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17846
+ rotate: false
+ xy: 970, 410
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17847
+ rotate: false
+ xy: 1002, 345
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17850
+ rotate: false
+ xy: 1002, 293
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17851
+ rotate: false
+ xy: 1002, 241
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17854
+ rotate: false
+ xy: 1002, 189
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17855
+ rotate: false
+ xy: 1002, 137
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17858
+ rotate: false
+ xy: 998, 85
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17911
+ rotate: false
+ xy: 910, 2
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+7246
+ rotate: false
+ xy: 2, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7247
+ rotate: false
+ xy: 36, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7248
+ rotate: false
+ xy: 102, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7249
+ rotate: false
+ xy: 168, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7250
+ rotate: false
+ xy: 202, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7251
+ rotate: false
+ xy: 236, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7252
+ rotate: false
+ xy: 302, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7253
+ rotate: false
+ xy: 368, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7254
+ rotate: false
+ xy: 402, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7255
+ rotate: false
+ xy: 436, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7256
+ rotate: false
+ xy: 502, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7257
+ rotate: false
+ xy: 568, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7258
+ rotate: false
+ xy: 602, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7259
+ rotate: false
+ xy: 636, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7260
+ rotate: false
+ xy: 702, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7261
+ rotate: false
+ xy: 768, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7262
+ rotate: false
+ xy: 802, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7263
+ rotate: false
+ xy: 836, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7264
+ rotate: false
+ xy: 902, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7265
+ rotate: false
+ xy: 968, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7266
+ rotate: false
+ xy: 2, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7267
+ rotate: false
+ xy: 36, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7268
+ rotate: false
+ xy: 102, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7269
+ rotate: false
+ xy: 168, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7270
+ rotate: false
+ xy: 202, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7271
+ rotate: false
+ xy: 236, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7272
+ rotate: false
+ xy: 302, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7273
+ rotate: false
+ xy: 368, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7274
+ rotate: false
+ xy: 402, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7275
+ rotate: false
+ xy: 436, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7276
+ rotate: false
+ xy: 502, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7277
+ rotate: false
+ xy: 568, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7278
+ rotate: false
+ xy: 602, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7279
+ rotate: false
+ xy: 636, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7280
+ rotate: false
+ xy: 702, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7281
+ rotate: false
+ xy: 768, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7283
+ rotate: false
+ xy: 802, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7284
+ rotate: false
+ xy: 836, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7285
+ rotate: false
+ xy: 902, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7286
+ rotate: false
+ xy: 936, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7292
+ rotate: false
+ xy: 2, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7293
+ rotate: false
+ xy: 68, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7294
+ rotate: false
+ xy: 102, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7299
+ rotate: false
+ xy: 168, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7302
+ rotate: false
+ xy: 202, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7307
+ rotate: false
+ xy: 268, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7309
+ rotate: false
+ xy: 334, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7312
+ rotate: false
+ xy: 400, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7329
+ rotate: false
+ xy: 466, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7330
+ rotate: false
+ xy: 532, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7335
+ rotate: false
+ xy: 566, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7336
+ rotate: false
+ xy: 632, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7337
+ rotate: false
+ xy: 666, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7343
+ rotate: false
+ xy: 732, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7344
+ rotate: false
+ xy: 798, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7345
+ rotate: false
+ xy: 832, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7346
+ rotate: false
+ xy: 898, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7347
+ rotate: false
+ xy: 932, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7350
+ rotate: false
+ xy: 2, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7359
+ rotate: false
+ xy: 68, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7361
+ rotate: false
+ xy: 134, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7364
+ rotate: false
+ xy: 200, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7377
+ rotate: false
+ xy: 266, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7378
+ rotate: false
+ xy: 966, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7414
+ rotate: false
+ xy: 332, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7415
+ rotate: false
+ xy: 398, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7418
+ rotate: false
+ xy: 432, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7419
+ rotate: false
+ xy: 498, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7422
+ rotate: false
+ xy: 532, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7423
+ rotate: false
+ xy: 598, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7426
+ rotate: false
+ xy: 632, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7427
+ rotate: false
+ xy: 698, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7428
+ rotate: false
+ xy: 732, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7429
+ rotate: false
+ xy: 766, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7432
+ rotate: false
+ xy: 832, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7433
+ rotate: false
+ xy: 866, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7436
+ rotate: false
+ xy: 932, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7437
+ rotate: false
+ xy: 2, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7440
+ rotate: false
+ xy: 966, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7441
+ rotate: false
+ xy: 68, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7478
+ rotate: false
+ xy: 134, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7479
+ rotate: false
+ xy: 200, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7482
+ rotate: false
+ xy: 234, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7483
+ rotate: false
+ xy: 300, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7486
+ rotate: false
+ xy: 334, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7487
+ rotate: false
+ xy: 400, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7490
+ rotate: false
+ xy: 434, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7491
+ rotate: false
+ xy: 500, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7492
+ rotate: false
+ xy: 534, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7493
+ rotate: false
+ xy: 568, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7494
+ rotate: false
+ xy: 634, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7495
+ rotate: false
+ xy: 700, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7496
+ rotate: false
+ xy: 734, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7497
+ rotate: false
+ xy: 768, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7498
+ rotate: false
+ xy: 834, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7499
+ rotate: false
+ xy: 900, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7500
+ rotate: false
+ xy: 934, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7501
+ rotate: false
+ xy: 2, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7502
+ rotate: false
+ xy: 68, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7503
+ rotate: false
+ xy: 134, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7504
+ rotate: false
+ xy: 168, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7505
+ rotate: false
+ xy: 202, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7506
+ rotate: false
+ xy: 268, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7507
+ rotate: false
+ xy: 334, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7508
+ rotate: false
+ xy: 368, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7509
+ rotate: false
+ xy: 402, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7512
+ rotate: false
+ xy: 468, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7513
+ rotate: false
+ xy: 502, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7516
+ rotate: false
+ xy: 568, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7517
+ rotate: false
+ xy: 602, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7520
+ rotate: false
+ xy: 668, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7521
+ rotate: false
+ xy: 702, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7558
+ rotate: false
+ xy: 768, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7559
+ rotate: false
+ xy: 834, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7562
+ rotate: false
+ xy: 868, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7563
+ rotate: false
+ xy: 934, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7566
+ rotate: false
+ xy: 2, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7567
+ rotate: false
+ xy: 68, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7570
+ rotate: false
+ xy: 102, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7571
+ rotate: false
+ xy: 168, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7572
+ rotate: false
+ xy: 202, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7573
+ rotate: false
+ xy: 236, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7576
+ rotate: false
+ xy: 302, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7577
+ rotate: false
+ xy: 336, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7580
+ rotate: false
+ xy: 402, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7581
+ rotate: false
+ xy: 436, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7584
+ rotate: false
+ xy: 502, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7585
+ rotate: false
+ xy: 536, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7622
+ rotate: false
+ xy: 602, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7623
+ rotate: false
+ xy: 668, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7626
+ rotate: false
+ xy: 702, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7627
+ rotate: false
+ xy: 768, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7630
+ rotate: false
+ xy: 802, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7631
+ rotate: false
+ xy: 868, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7634
+ rotate: false
+ xy: 902, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7635
+ rotate: false
+ xy: 2, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7636
+ rotate: false
+ xy: 36, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7637
+ rotate: false
+ xy: 70, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7640
+ rotate: false
+ xy: 136, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7641
+ rotate: false
+ xy: 170, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7644
+ rotate: false
+ xy: 236, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7645
+ rotate: false
+ xy: 270, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7648
+ rotate: false
+ xy: 336, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7649
+ rotate: false
+ xy: 370, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7690
+ rotate: false
+ xy: 436, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7691
+ rotate: false
+ xy: 502, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7694
+ rotate: false
+ xy: 536, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7695
+ rotate: false
+ xy: 602, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7698
+ rotate: false
+ xy: 636, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7699
+ rotate: false
+ xy: 702, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7702
+ rotate: false
+ xy: 736, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7703
+ rotate: false
+ xy: 802, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7704
+ rotate: false
+ xy: 836, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7705
+ rotate: false
+ xy: 870, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7706
+ rotate: false
+ xy: 2, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7707
+ rotate: false
+ xy: 936, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7708
+ rotate: false
+ xy: 989, 738
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7709
+ rotate: false
+ xy: 68, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7710
+ rotate: false
+ xy: 134, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7711
+ rotate: false
+ xy: 200, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7712
+ rotate: false
+ xy: 234, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7713
+ rotate: false
+ xy: 268, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7714
+ rotate: false
+ xy: 334, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7715
+ rotate: false
+ xy: 400, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7716
+ rotate: false
+ xy: 434, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7717
+ rotate: false
+ xy: 468, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7718
+ rotate: false
+ xy: 534, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7719
+ rotate: false
+ xy: 600, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7720
+ rotate: false
+ xy: 634, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7721
+ rotate: false
+ xy: 668, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7722
+ rotate: false
+ xy: 734, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7723
+ rotate: false
+ xy: 800, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7724
+ rotate: false
+ xy: 834, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7725
+ rotate: false
+ xy: 868, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7726
+ rotate: false
+ xy: 2, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7727
+ rotate: false
+ xy: 934, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7728
+ rotate: false
+ xy: 968, 704
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7729
+ rotate: false
+ xy: 68, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7730
+ rotate: false
+ xy: 134, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7731
+ rotate: false
+ xy: 200, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7732
+ rotate: false
+ xy: 234, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7733
+ rotate: false
+ xy: 268, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7734
+ rotate: false
+ xy: 334, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7735
+ rotate: false
+ xy: 400, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7736
+ rotate: false
+ xy: 434, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7737
+ rotate: false
+ xy: 468, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7740
+ rotate: false
+ xy: 534, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7741
+ rotate: false
+ xy: 568, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7744
+ rotate: false
+ xy: 634, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7745
+ rotate: false
+ xy: 668, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7748
+ rotate: false
+ xy: 734, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7749
+ rotate: false
+ xy: 768, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7786
+ rotate: false
+ xy: 834, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7787
+ rotate: false
+ xy: 900, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7790
+ rotate: false
+ xy: 2, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7791
+ rotate: false
+ xy: 934, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7794
+ rotate: false
+ xy: 68, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7795
+ rotate: false
+ xy: 968, 670
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7798
+ rotate: false
+ xy: 134, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7799
+ rotate: false
+ xy: 200, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7800
+ rotate: false
+ xy: 234, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7801
+ rotate: false
+ xy: 268, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7804
+ rotate: false
+ xy: 334, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7805
+ rotate: false
+ xy: 368, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7808
+ rotate: false
+ xy: 434, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7809
+ rotate: false
+ xy: 468, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7812
+ rotate: false
+ xy: 534, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7813
+ rotate: false
+ xy: 568, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7850
+ rotate: false
+ xy: 634, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7851
+ rotate: false
+ xy: 700, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7854
+ rotate: false
+ xy: 734, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7855
+ rotate: false
+ xy: 800, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7858
+ rotate: false
+ xy: 834, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7859
+ rotate: false
+ xy: 900, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7862
+ rotate: false
+ xy: 2, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7863
+ rotate: false
+ xy: 934, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7864
+ rotate: false
+ xy: 968, 636
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7865
+ rotate: false
+ xy: 68, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7868
+ rotate: false
+ xy: 134, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7869
+ rotate: false
+ xy: 168, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7872
+ rotate: false
+ xy: 234, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7873
+ rotate: false
+ xy: 268, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7876
+ rotate: false
+ xy: 334, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7877
+ rotate: false
+ xy: 368, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7914
+ rotate: false
+ xy: 434, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7915
+ rotate: false
+ xy: 500, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7918
+ rotate: false
+ xy: 534, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7919
+ rotate: false
+ xy: 600, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7922
+ rotate: false
+ xy: 634, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7923
+ rotate: false
+ xy: 700, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7926
+ rotate: false
+ xy: 734, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7929
+ rotate: false
+ xy: 800, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7933
+ rotate: false
+ xy: 866, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7937
+ rotate: false
+ xy: 2, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7941
+ rotate: false
+ xy: 68, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7960
+ rotate: false
+ xy: 932, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7961
+ rotate: false
+ xy: 134, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7964
+ rotate: false
+ xy: 966, 602
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7965
+ rotate: false
+ xy: 200, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7968
+ rotate: false
+ xy: 266, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7969
+ rotate: false
+ xy: 300, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+7972
+ rotate: false
+ xy: 366, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+7973
+ rotate: false
+ xy: 400, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8010
+ rotate: false
+ xy: 466, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8011
+ rotate: false
+ xy: 532, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8014
+ rotate: false
+ xy: 566, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8015
+ rotate: false
+ xy: 632, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8018
+ rotate: false
+ xy: 666, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8019
+ rotate: false
+ xy: 732, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8022
+ rotate: false
+ xy: 766, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8024
+ rotate: false
+ xy: 832, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8025
+ rotate: false
+ xy: 866, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8028
+ rotate: false
+ xy: 932, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8029
+ rotate: false
+ xy: 2, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8032
+ rotate: false
+ xy: 966, 568
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8033
+ rotate: false
+ xy: 68, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8036
+ rotate: false
+ xy: 134, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8037
+ rotate: false
+ xy: 168, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8074
+ rotate: false
+ xy: 234, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8078
+ rotate: false
+ xy: 300, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8082
+ rotate: false
+ xy: 366, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8086
+ rotate: false
+ xy: 432, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8088
+ rotate: false
+ xy: 498, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8089
+ rotate: false
+ xy: 532, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8092
+ rotate: false
+ xy: 598, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8093
+ rotate: false
+ xy: 632, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8096
+ rotate: false
+ xy: 698, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8097
+ rotate: false
+ xy: 732, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8100
+ rotate: false
+ xy: 798, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8101
+ rotate: false
+ xy: 832, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8137
+ rotate: false
+ xy: 898, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8138
+ rotate: false
+ xy: 964, 534
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8141
+ rotate: false
+ xy: 2, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8142
+ rotate: false
+ xy: 68, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8145
+ rotate: false
+ xy: 102, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8146
+ rotate: false
+ xy: 168, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8149
+ rotate: false
+ xy: 202, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8150
+ rotate: false
+ xy: 268, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8151
+ rotate: false
+ xy: 302, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8152
+ rotate: false
+ xy: 336, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8153
+ rotate: false
+ xy: 402, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8154
+ rotate: false
+ xy: 468, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8155
+ rotate: false
+ xy: 502, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8156
+ rotate: false
+ xy: 536, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8157
+ rotate: false
+ xy: 602, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8158
+ rotate: false
+ xy: 668, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8159
+ rotate: false
+ xy: 702, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8160
+ rotate: false
+ xy: 736, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8161
+ rotate: false
+ xy: 802, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8162
+ rotate: false
+ xy: 868, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8163
+ rotate: false
+ xy: 902, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8164
+ rotate: false
+ xy: 2, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8165
+ rotate: false
+ xy: 68, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8166
+ rotate: false
+ xy: 936, 500
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8187
+ rotate: false
+ xy: 134, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8191
+ rotate: false
+ xy: 200, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8195
+ rotate: false
+ xy: 266, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8202
+ rotate: false
+ xy: 332, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8203
+ rotate: false
+ xy: 398, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8204
+ rotate: false
+ xy: 970, 496
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8206
+ rotate: false
+ xy: 464, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8207
+ rotate: false
+ xy: 530, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8208
+ rotate: false
+ xy: 596, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8210
+ rotate: false
+ xy: 630, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8211
+ rotate: false
+ xy: 696, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8212
+ rotate: false
+ xy: 762, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8214
+ rotate: false
+ xy: 796, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8215
+ rotate: false
+ xy: 862, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8216
+ rotate: false
+ xy: 928, 466
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8217
+ rotate: false
+ xy: 962, 462
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8218
+ rotate: false
+ xy: 2, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8221
+ rotate: false
+ xy: 68, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8222
+ rotate: false
+ xy: 102, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8225
+ rotate: false
+ xy: 168, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8226
+ rotate: false
+ xy: 202, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8229
+ rotate: false
+ xy: 268, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8230
+ rotate: false
+ xy: 302, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8233
+ rotate: false
+ xy: 368, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8241
+ rotate: false
+ xy: 368, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8409
+ rotate: false
+ xy: 368, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8417
+ rotate: false
+ xy: 368, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8234
+ rotate: false
+ xy: 402, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8242
+ rotate: false
+ xy: 402, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8410
+ rotate: false
+ xy: 402, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8418
+ rotate: false
+ xy: 402, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8235
+ rotate: false
+ xy: 468, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8411
+ rotate: false
+ xy: 468, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8419
+ rotate: false
+ xy: 468, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8236
+ rotate: false
+ xy: 534, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8412
+ rotate: false
+ xy: 534, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8420
+ rotate: false
+ xy: 534, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8237
+ rotate: false
+ xy: 568, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8509
+ rotate: false
+ xy: 568, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8238
+ rotate: false
+ xy: 602, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8510
+ rotate: false
+ xy: 602, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8239
+ rotate: false
+ xy: 668, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8511
+ rotate: false
+ xy: 668, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8240
+ rotate: false
+ xy: 734, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8416
+ rotate: false
+ xy: 734, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8424
+ rotate: false
+ xy: 734, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8512
+ rotate: false
+ xy: 734, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8243
+ rotate: false
+ xy: 768, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8244
+ rotate: false
+ xy: 834, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8245
+ rotate: false
+ xy: 868, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8246
+ rotate: false
+ xy: 2, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8247
+ rotate: false
+ xy: 68, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8248
+ rotate: false
+ xy: 902, 432
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8249
+ rotate: false
+ xy: 936, 428
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8250
+ rotate: false
+ xy: 134, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8251
+ rotate: false
+ xy: 200, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8252
+ rotate: false
+ xy: 266, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8253
+ rotate: false
+ xy: 300, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8254
+ rotate: false
+ xy: 334, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8255
+ rotate: false
+ xy: 400, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8256
+ rotate: false
+ xy: 466, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8257
+ rotate: false
+ xy: 500, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8258
+ rotate: false
+ xy: 534, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8259
+ rotate: false
+ xy: 600, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8260
+ rotate: false
+ xy: 666, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8261
+ rotate: false
+ xy: 700, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8262
+ rotate: false
+ xy: 734, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8263
+ rotate: false
+ xy: 800, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8264
+ rotate: false
+ xy: 866, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8265
+ rotate: false
+ xy: 900, 398
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8266
+ rotate: false
+ xy: 2, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8274
+ rotate: false
+ xy: 2, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8267
+ rotate: false
+ xy: 68, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8275
+ rotate: false
+ xy: 68, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8268
+ rotate: false
+ xy: 989, 397
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8276
+ rotate: false
+ xy: 989, 397
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8269
+ rotate: false
+ xy: 934, 394
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8270
+ rotate: false
+ xy: 134, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8271
+ rotate: false
+ xy: 200, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8272
+ rotate: false
+ xy: 266, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8273
+ rotate: false
+ xy: 300, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8277
+ rotate: false
+ xy: 334, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8278
+ rotate: false
+ xy: 368, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8279
+ rotate: false
+ xy: 434, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8280
+ rotate: false
+ xy: 500, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8281
+ rotate: false
+ xy: 534, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8282
+ rotate: false
+ xy: 568, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8283
+ rotate: false
+ xy: 634, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8284
+ rotate: false
+ xy: 700, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8285
+ rotate: false
+ xy: 734, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8286
+ rotate: false
+ xy: 768, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8287
+ rotate: false
+ xy: 834, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8288
+ rotate: false
+ xy: 900, 364
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8289
+ rotate: false
+ xy: 968, 363
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8290
+ rotate: false
+ xy: 2, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8291
+ rotate: false
+ xy: 68, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8292
+ rotate: false
+ xy: 934, 360
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8293
+ rotate: false
+ xy: 134, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8294
+ rotate: false
+ xy: 168, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8295
+ rotate: false
+ xy: 234, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8296
+ rotate: false
+ xy: 300, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8297
+ rotate: false
+ xy: 334, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8298
+ rotate: false
+ xy: 368, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8299
+ rotate: false
+ xy: 434, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8300
+ rotate: false
+ xy: 500, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8301
+ rotate: false
+ xy: 534, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8302
+ rotate: false
+ xy: 568, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8303
+ rotate: false
+ xy: 634, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8304
+ rotate: false
+ xy: 700, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8305
+ rotate: false
+ xy: 734, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8306
+ rotate: false
+ xy: 768, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8307
+ rotate: false
+ xy: 834, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8308
+ rotate: false
+ xy: 900, 330
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8309
+ rotate: false
+ xy: 968, 329
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8310
+ rotate: false
+ xy: 2, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8311
+ rotate: false
+ xy: 68, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8312
+ rotate: false
+ xy: 934, 326
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8313
+ rotate: false
+ xy: 134, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8314
+ rotate: false
+ xy: 168, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8315
+ rotate: false
+ xy: 234, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8316
+ rotate: false
+ xy: 300, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8317
+ rotate: false
+ xy: 334, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8318
+ rotate: false
+ xy: 368, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8319
+ rotate: false
+ xy: 434, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8320
+ rotate: false
+ xy: 500, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8321
+ rotate: false
+ xy: 534, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8322
+ rotate: false
+ xy: 568, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8323
+ rotate: false
+ xy: 634, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8324
+ rotate: false
+ xy: 700, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8325
+ rotate: false
+ xy: 734, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8326
+ rotate: false
+ xy: 768, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8327
+ rotate: false
+ xy: 834, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8329
+ rotate: false
+ xy: 900, 296
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8330
+ rotate: false
+ xy: 2, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8331
+ rotate: false
+ xy: 68, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8332
+ rotate: false
+ xy: 968, 295
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8348
+ rotate: false
+ xy: 968, 295
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8333
+ rotate: false
+ xy: 934, 292
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8334
+ rotate: false
+ xy: 134, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8335
+ rotate: false
+ xy: 200, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8336
+ rotate: false
+ xy: 266, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8337
+ rotate: false
+ xy: 300, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8338
+ rotate: false
+ xy: 334, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8339
+ rotate: false
+ xy: 400, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8340
+ rotate: false
+ xy: 466, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8342
+ rotate: false
+ xy: 500, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8343
+ rotate: false
+ xy: 566, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8344
+ rotate: false
+ xy: 632, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8345
+ rotate: false
+ xy: 666, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8346
+ rotate: false
+ xy: 700, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8347
+ rotate: false
+ xy: 766, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8349
+ rotate: false
+ xy: 832, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8350
+ rotate: false
+ xy: 2, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8351
+ rotate: false
+ xy: 68, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8352
+ rotate: false
+ xy: 866, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8353
+ rotate: false
+ xy: 900, 262
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8354
+ rotate: false
+ xy: 134, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8355
+ rotate: false
+ xy: 200, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8356
+ rotate: false
+ xy: 968, 261
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8357
+ rotate: false
+ xy: 934, 258
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8358
+ rotate: false
+ xy: 266, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8359
+ rotate: false
+ xy: 332, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8360
+ rotate: false
+ xy: 398, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8361
+ rotate: false
+ xy: 432, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8393
+ rotate: false
+ xy: 432, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8362
+ rotate: false
+ xy: 466, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8363
+ rotate: false
+ xy: 532, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8364
+ rotate: false
+ xy: 598, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8365
+ rotate: false
+ xy: 632, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8397
+ rotate: false
+ xy: 632, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8366
+ rotate: false
+ xy: 666, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8367
+ rotate: false
+ xy: 732, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8368
+ rotate: false
+ xy: 798, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8369
+ rotate: false
+ xy: 832, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8401
+ rotate: false
+ xy: 832, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8370
+ rotate: false
+ xy: 2, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8371
+ rotate: false
+ xy: 68, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8372
+ rotate: false
+ xy: 866, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8373
+ rotate: false
+ xy: 900, 228
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8405
+ rotate: false
+ xy: 900, 228
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8374
+ rotate: false
+ xy: 134, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8375
+ rotate: false
+ xy: 200, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8376
+ rotate: false
+ xy: 968, 227
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8377
+ rotate: false
+ xy: 934, 224
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8378
+ rotate: false
+ xy: 266, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8379
+ rotate: false
+ xy: 332, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8380
+ rotate: false
+ xy: 398, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8381
+ rotate: false
+ xy: 432, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8382
+ rotate: false
+ xy: 466, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8383
+ rotate: false
+ xy: 532, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8384
+ rotate: false
+ xy: 598, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8385
+ rotate: false
+ xy: 632, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8386
+ rotate: false
+ xy: 666, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8387
+ rotate: false
+ xy: 732, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8388
+ rotate: false
+ xy: 798, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8389
+ rotate: false
+ xy: 832, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8390
+ rotate: false
+ xy: 2, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8391
+ rotate: false
+ xy: 68, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8392
+ rotate: false
+ xy: 866, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8394
+ rotate: false
+ xy: 134, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8395
+ rotate: false
+ xy: 200, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8396
+ rotate: false
+ xy: 900, 194
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8398
+ rotate: false
+ xy: 266, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8399
+ rotate: false
+ xy: 332, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8400
+ rotate: false
+ xy: 968, 193
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8402
+ rotate: false
+ xy: 398, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8403
+ rotate: false
+ xy: 464, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8404
+ rotate: false
+ xy: 934, 190
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8406
+ rotate: false
+ xy: 530, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8407
+ rotate: false
+ xy: 596, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8408
+ rotate: false
+ xy: 662, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8413
+ rotate: false
+ xy: 696, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8421
+ rotate: false
+ xy: 696, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8414
+ rotate: false
+ xy: 730, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8422
+ rotate: false
+ xy: 730, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8415
+ rotate: false
+ xy: 796, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8423
+ rotate: false
+ xy: 796, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8425
+ rotate: false
+ xy: 862, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8426
+ rotate: false
+ xy: 2, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8427
+ rotate: false
+ xy: 68, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8428
+ rotate: false
+ xy: 896, 160
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8429
+ rotate: false
+ xy: 968, 159
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8430
+ rotate: false
+ xy: 134, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8431
+ rotate: false
+ xy: 200, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8432
+ rotate: false
+ xy: 930, 156
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8433
+ rotate: false
+ xy: 266, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8481
+ rotate: false
+ xy: 266, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8434
+ rotate: false
+ xy: 300, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8482
+ rotate: false
+ xy: 300, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8435
+ rotate: false
+ xy: 366, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8483
+ rotate: false
+ xy: 366, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8436
+ rotate: false
+ xy: 432, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8484
+ rotate: false
+ xy: 432, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8437
+ rotate: false
+ xy: 466, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8438
+ rotate: false
+ xy: 500, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8439
+ rotate: false
+ xy: 566, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8440
+ rotate: false
+ xy: 632, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8441
+ rotate: false
+ xy: 666, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8442
+ rotate: false
+ xy: 700, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8443
+ rotate: false
+ xy: 766, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8444
+ rotate: false
+ xy: 832, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8445
+ rotate: false
+ xy: 866, 126
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8446
+ rotate: false
+ xy: 2, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8447
+ rotate: false
+ xy: 68, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8448
+ rotate: false
+ xy: 964, 125
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8449
+ rotate: false
+ xy: 900, 122
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8450
+ rotate: false
+ xy: 134, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8451
+ rotate: false
+ xy: 200, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8452
+ rotate: false
+ xy: 266, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8453
+ rotate: false
+ xy: 300, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8454
+ rotate: false
+ xy: 334, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8455
+ rotate: false
+ xy: 400, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8456
+ rotate: false
+ xy: 466, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8473
+ rotate: false
+ xy: 500, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8474
+ rotate: false
+ xy: 534, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8475
+ rotate: false
+ xy: 600, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8476
+ rotate: false
+ xy: 666, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8477
+ rotate: false
+ xy: 700, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8478
+ rotate: false
+ xy: 734, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8479
+ rotate: false
+ xy: 800, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8480
+ rotate: false
+ xy: 866, 92
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8485
+ rotate: false
+ xy: 961, 91
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8486
+ rotate: false
+ xy: 2, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8487
+ rotate: false
+ xy: 68, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8488
+ rotate: false
+ xy: 900, 88
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8489
+ rotate: false
+ xy: 134, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8497
+ rotate: false
+ xy: 134, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8490
+ rotate: false
+ xy: 168, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8498
+ rotate: false
+ xy: 168, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8491
+ rotate: false
+ xy: 234, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8499
+ rotate: false
+ xy: 234, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8492
+ rotate: false
+ xy: 300, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8500
+ rotate: false
+ xy: 300, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8493
+ rotate: false
+ xy: 334, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8494
+ rotate: false
+ xy: 368, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8495
+ rotate: false
+ xy: 434, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8496
+ rotate: false
+ xy: 500, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8501
+ rotate: false
+ xy: 534, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8502
+ rotate: false
+ xy: 568, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8503
+ rotate: false
+ xy: 634, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8504
+ rotate: false
+ xy: 700, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8505
+ rotate: false
+ xy: 734, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8513
+ rotate: false
+ xy: 734, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8506
+ rotate: false
+ xy: 768, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8514
+ rotate: false
+ xy: 768, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8507
+ rotate: false
+ xy: 834, 58
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8515
+ rotate: false
+ xy: 834, 58
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8508
+ rotate: false
+ xy: 961, 57
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8516
+ rotate: false
+ xy: 961, 57
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8517
+ rotate: false
+ xy: 900, 54
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8518
+ rotate: false
+ xy: 2, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8519
+ rotate: false
+ xy: 68, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8520
+ rotate: false
+ xy: 134, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8610
+ rotate: false
+ xy: 168, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8611
+ rotate: false
+ xy: 202, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8614
+ rotate: false
+ xy: 236, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8615
+ rotate: false
+ xy: 270, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8618
+ rotate: false
+ xy: 304, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8619
+ rotate: false
+ xy: 338, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8620
+ rotate: false
+ xy: 372, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8621
+ rotate: false
+ xy: 406, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8622
+ rotate: false
+ xy: 472, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8623
+ rotate: false
+ xy: 506, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8624
+ rotate: false
+ xy: 540, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8625
+ rotate: false
+ xy: 606, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8626
+ rotate: false
+ xy: 640, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8627
+ rotate: false
+ xy: 674, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8628
+ rotate: false
+ xy: 740, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8629
+ rotate: false
+ xy: 774, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8630
+ rotate: false
+ xy: 808, 24
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8631
+ rotate: false
+ xy: 842, 24
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8632
+ rotate: false
+ xy: 934, 23
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8633
+ rotate: false
+ xy: 876, 20
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8634
+ rotate: false
+ xy: 2, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8635
+ rotate: false
+ xy: 36, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8636
+ rotate: false
+ xy: 70, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8637
+ rotate: false
+ xy: 104, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8638
+ rotate: false
+ xy: 138, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8639
+ rotate: false
+ xy: 172, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8640
+ rotate: false
+ xy: 238, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8641
+ rotate: false
+ xy: 272, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8642
+ rotate: false
+ xy: 306, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8643
+ rotate: false
+ xy: 372, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8644
+ rotate: false
+ xy: 406, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8645
+ rotate: false
+ xy: 440, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8646
+ rotate: false
+ xy: 506, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8647
+ rotate: false
+ xy: 540, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8648
+ rotate: false
+ xy: 574, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8649
+ rotate: false
+ xy: 640, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8650
+ rotate: false
+ xy: 674, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8651
+ rotate: false
+ xy: 708, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8652
+ rotate: false
+ xy: 774, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+891
+ rotate: false
+ xy: 968, 839
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+892
+ rotate: false
+ xy: 995, 819
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+897
+ rotate: false
+ xy: 968, 792
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+906
+ rotate: false
+ xy: 995, 772
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+911
+ rotate: false
+ xy: 996, 431
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+912
+ rotate: false
+ xy: 934, 109
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+917
+ rotate: false
+ xy: 934, 62
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+918
+ rotate: false
+ xy: 995, 38
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+923
+ rotate: false
+ xy: 968, 10
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+
+images90.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10001
+ rotate: false
+ xy: 542, 614
+ size: 49, 32
+ orig: 49, 32
+ offset: 0, 0
+ index: -1
+10006
+ rotate: false
+ xy: 593, 614
+ size: 48, 32
+ orig: 48, 32
+ offset: 0, 0
+ index: -1
+10009
+ rotate: false
+ xy: 643, 614
+ size: 49, 32
+ orig: 49, 32
+ offset: 0, 0
+ index: -1
+10014
+ rotate: false
+ xy: 694, 614
+ size: 48, 32
+ orig: 48, 32
+ offset: 0, 0
+ index: -1
+10017
+ rotate: false
+ xy: 744, 614
+ size: 49, 32
+ orig: 49, 32
+ offset: 0, 0
+ index: -1
+10022
+ rotate: false
+ xy: 795, 614
+ size: 48, 32
+ orig: 48, 32
+ offset: 0, 0
+ index: -1
+10025
+ rotate: false
+ xy: 845, 614
+ size: 49, 32
+ orig: 49, 32
+ offset: 0, 0
+ index: -1
+10030
+ rotate: false
+ xy: 930, 604
+ size: 48, 32
+ orig: 48, 32
+ offset: 0, 0
+ index: -1
+11979
+ rotate: false
+ xy: 896, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+11980
+ rotate: false
+ xy: 980, 600
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12014
+ rotate: false
+ xy: 2, 580
+ size: 58, 32
+ orig: 58, 32
+ offset: 0, 0
+ index: -1
+12358
+ rotate: false
+ xy: 62, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12378
+ rotate: false
+ xy: 62, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12359
+ rotate: false
+ xy: 96, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12379
+ rotate: false
+ xy: 96, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12360
+ rotate: false
+ xy: 130, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12380
+ rotate: false
+ xy: 130, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12361
+ rotate: false
+ xy: 164, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12381
+ rotate: false
+ xy: 164, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12362
+ rotate: false
+ xy: 198, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12363
+ rotate: false
+ xy: 232, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12364
+ rotate: false
+ xy: 266, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12365
+ rotate: false
+ xy: 300, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12366
+ rotate: false
+ xy: 334, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12367
+ rotate: false
+ xy: 368, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12368
+ rotate: false
+ xy: 402, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12369
+ rotate: false
+ xy: 436, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12370
+ rotate: false
+ xy: 470, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12371
+ rotate: false
+ xy: 504, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12372
+ rotate: false
+ xy: 538, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12373
+ rotate: false
+ xy: 572, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12374
+ rotate: false
+ xy: 606, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12375
+ rotate: false
+ xy: 640, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12376
+ rotate: false
+ xy: 674, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12377
+ rotate: false
+ xy: 708, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12382
+ rotate: false
+ xy: 742, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12383
+ rotate: false
+ xy: 776, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12384
+ rotate: false
+ xy: 810, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12385
+ rotate: false
+ xy: 844, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12386
+ rotate: false
+ xy: 878, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12387
+ rotate: false
+ xy: 912, 570
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12388
+ rotate: false
+ xy: 946, 570
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12389
+ rotate: false
+ xy: 980, 566
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12400
+ rotate: false
+ xy: 2, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12401
+ rotate: false
+ xy: 36, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12402
+ rotate: false
+ xy: 70, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12403
+ rotate: false
+ xy: 104, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12404
+ rotate: false
+ xy: 138, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12405
+ rotate: false
+ xy: 172, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12406
+ rotate: false
+ xy: 206, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12407
+ rotate: false
+ xy: 240, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12408
+ rotate: false
+ xy: 274, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12409
+ rotate: false
+ xy: 308, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12410
+ rotate: false
+ xy: 342, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12411
+ rotate: false
+ xy: 376, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12412
+ rotate: false
+ xy: 410, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12413
+ rotate: false
+ xy: 444, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12414
+ rotate: false
+ xy: 478, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12415
+ rotate: false
+ xy: 512, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12416
+ rotate: false
+ xy: 546, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12417
+ rotate: false
+ xy: 580, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12418
+ rotate: false
+ xy: 614, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12419
+ rotate: false
+ xy: 648, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12420
+ rotate: false
+ xy: 682, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12421
+ rotate: false
+ xy: 716, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12422
+ rotate: false
+ xy: 750, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12423
+ rotate: false
+ xy: 784, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12424
+ rotate: false
+ xy: 884, 536
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12425
+ rotate: false
+ xy: 850, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12439
+ rotate: false
+ xy: 950, 532
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12440
+ rotate: false
+ xy: 2, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12441
+ rotate: false
+ xy: 68, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12442
+ rotate: false
+ xy: 984, 532
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12443
+ rotate: false
+ xy: 134, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12444
+ rotate: false
+ xy: 168, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12445
+ rotate: false
+ xy: 234, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12446
+ rotate: false
+ xy: 300, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12447
+ rotate: false
+ xy: 334, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12448
+ rotate: false
+ xy: 368, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12449
+ rotate: false
+ xy: 434, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12450
+ rotate: false
+ xy: 500, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12451
+ rotate: false
+ xy: 534, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12452
+ rotate: false
+ xy: 568, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12453
+ rotate: false
+ xy: 634, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12454
+ rotate: false
+ xy: 700, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12455
+ rotate: false
+ xy: 734, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12456
+ rotate: false
+ xy: 768, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12457
+ rotate: false
+ xy: 868, 502
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12458
+ rotate: false
+ xy: 834, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12459
+ rotate: false
+ xy: 934, 498
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12460
+ rotate: false
+ xy: 2, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12461
+ rotate: false
+ xy: 68, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12462
+ rotate: false
+ xy: 968, 498
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12463
+ rotate: false
+ xy: 134, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12464
+ rotate: false
+ xy: 168, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12465
+ rotate: false
+ xy: 234, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12466
+ rotate: false
+ xy: 300, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12467
+ rotate: false
+ xy: 334, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12468
+ rotate: false
+ xy: 368, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12469
+ rotate: false
+ xy: 434, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12470
+ rotate: false
+ xy: 500, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12471
+ rotate: false
+ xy: 534, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12472
+ rotate: false
+ xy: 568, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12473
+ rotate: false
+ xy: 634, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12474
+ rotate: false
+ xy: 700, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12475
+ rotate: false
+ xy: 734, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12476
+ rotate: false
+ xy: 768, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12477
+ rotate: false
+ xy: 868, 468
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12478
+ rotate: false
+ xy: 834, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12479
+ rotate: false
+ xy: 934, 464
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12480
+ rotate: false
+ xy: 2, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12481
+ rotate: false
+ xy: 68, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12482
+ rotate: false
+ xy: 968, 464
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12483
+ rotate: false
+ xy: 134, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12484
+ rotate: false
+ xy: 168, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12485
+ rotate: false
+ xy: 234, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12486
+ rotate: false
+ xy: 300, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12487
+ rotate: false
+ xy: 334, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12488
+ rotate: false
+ xy: 368, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12489
+ rotate: false
+ xy: 434, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12490
+ rotate: false
+ xy: 500, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12491
+ rotate: false
+ xy: 534, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12492
+ rotate: false
+ xy: 568, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12493
+ rotate: false
+ xy: 634, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12494
+ rotate: false
+ xy: 700, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12495
+ rotate: false
+ xy: 734, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12496
+ rotate: false
+ xy: 768, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12497
+ rotate: false
+ xy: 868, 434
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12498
+ rotate: false
+ xy: 834, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12499
+ rotate: false
+ xy: 934, 430
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12500
+ rotate: false
+ xy: 2, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12501
+ rotate: false
+ xy: 68, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12502
+ rotate: false
+ xy: 968, 430
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12503
+ rotate: false
+ xy: 134, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12504
+ rotate: false
+ xy: 168, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12505
+ rotate: false
+ xy: 234, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12506
+ rotate: false
+ xy: 300, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12507
+ rotate: false
+ xy: 334, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12508
+ rotate: false
+ xy: 368, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12509
+ rotate: false
+ xy: 434, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12510
+ rotate: false
+ xy: 500, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12511
+ rotate: false
+ xy: 534, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12512
+ rotate: false
+ xy: 568, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12513
+ rotate: false
+ xy: 634, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12514
+ rotate: false
+ xy: 700, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12515
+ rotate: false
+ xy: 734, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12516
+ rotate: false
+ xy: 768, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12517
+ rotate: false
+ xy: 868, 400
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12518
+ rotate: false
+ xy: 834, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12519
+ rotate: false
+ xy: 934, 396
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12520
+ rotate: false
+ xy: 2, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12521
+ rotate: false
+ xy: 68, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12522
+ rotate: false
+ xy: 968, 396
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12523
+ rotate: false
+ xy: 134, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12524
+ rotate: false
+ xy: 168, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12525
+ rotate: false
+ xy: 234, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12526
+ rotate: false
+ xy: 300, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12527
+ rotate: false
+ xy: 334, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12528
+ rotate: false
+ xy: 368, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12529
+ rotate: false
+ xy: 434, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12530
+ rotate: false
+ xy: 500, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12531
+ rotate: false
+ xy: 534, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12532
+ rotate: false
+ xy: 568, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12533
+ rotate: false
+ xy: 634, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12534
+ rotate: false
+ xy: 700, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12535
+ rotate: false
+ xy: 734, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12536
+ rotate: false
+ xy: 768, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12537
+ rotate: false
+ xy: 868, 366
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12538
+ rotate: false
+ xy: 834, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12539
+ rotate: false
+ xy: 934, 362
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12540
+ rotate: false
+ xy: 2, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12541
+ rotate: false
+ xy: 68, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12542
+ rotate: false
+ xy: 968, 362
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12543
+ rotate: false
+ xy: 134, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12544
+ rotate: false
+ xy: 168, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12545
+ rotate: false
+ xy: 234, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12546
+ rotate: false
+ xy: 300, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12547
+ rotate: false
+ xy: 334, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12548
+ rotate: false
+ xy: 368, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12549
+ rotate: false
+ xy: 434, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12550
+ rotate: false
+ xy: 500, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12551
+ rotate: false
+ xy: 534, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12552
+ rotate: false
+ xy: 568, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12553
+ rotate: false
+ xy: 634, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12554
+ rotate: false
+ xy: 700, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12555
+ rotate: false
+ xy: 734, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12556
+ rotate: false
+ xy: 768, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12557
+ rotate: false
+ xy: 868, 332
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12558
+ rotate: false
+ xy: 834, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12559
+ rotate: false
+ xy: 934, 328
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12560
+ rotate: false
+ xy: 2, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12561
+ rotate: false
+ xy: 68, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12562
+ rotate: false
+ xy: 968, 328
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12563
+ rotate: false
+ xy: 134, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12564
+ rotate: false
+ xy: 168, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12565
+ rotate: false
+ xy: 234, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12566
+ rotate: false
+ xy: 300, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12567
+ rotate: false
+ xy: 334, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12568
+ rotate: false
+ xy: 368, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12569
+ rotate: false
+ xy: 434, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12570
+ rotate: false
+ xy: 500, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12571
+ rotate: false
+ xy: 534, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12572
+ rotate: false
+ xy: 568, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12573
+ rotate: false
+ xy: 634, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12574
+ rotate: false
+ xy: 700, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12575
+ rotate: false
+ xy: 734, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12576
+ rotate: false
+ xy: 768, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12577
+ rotate: false
+ xy: 868, 298
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12578
+ rotate: false
+ xy: 834, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12579
+ rotate: false
+ xy: 934, 294
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12580
+ rotate: false
+ xy: 2, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12581
+ rotate: false
+ xy: 68, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12582
+ rotate: false
+ xy: 968, 294
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12583
+ rotate: false
+ xy: 134, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12584
+ rotate: false
+ xy: 168, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12585
+ rotate: false
+ xy: 234, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12586
+ rotate: false
+ xy: 300, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12587
+ rotate: false
+ xy: 334, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12588
+ rotate: false
+ xy: 368, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12589
+ rotate: false
+ xy: 434, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12590
+ rotate: false
+ xy: 500, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12591
+ rotate: false
+ xy: 534, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12592
+ rotate: false
+ xy: 568, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12593
+ rotate: false
+ xy: 634, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12594
+ rotate: false
+ xy: 700, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12595
+ rotate: false
+ xy: 734, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12596
+ rotate: false
+ xy: 768, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12597
+ rotate: false
+ xy: 868, 264
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12598
+ rotate: false
+ xy: 834, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12599
+ rotate: false
+ xy: 934, 260
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12600
+ rotate: false
+ xy: 2, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12601
+ rotate: false
+ xy: 68, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12602
+ rotate: false
+ xy: 968, 260
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12603
+ rotate: false
+ xy: 134, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12604
+ rotate: false
+ xy: 168, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12605
+ rotate: false
+ xy: 234, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12606
+ rotate: false
+ xy: 300, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12607
+ rotate: false
+ xy: 334, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12608
+ rotate: false
+ xy: 368, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12609
+ rotate: false
+ xy: 434, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12610
+ rotate: false
+ xy: 500, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12611
+ rotate: false
+ xy: 534, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12612
+ rotate: false
+ xy: 568, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12613
+ rotate: false
+ xy: 634, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12614
+ rotate: false
+ xy: 700, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12615
+ rotate: false
+ xy: 734, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12616
+ rotate: false
+ xy: 768, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12617
+ rotate: false
+ xy: 868, 230
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12618
+ rotate: false
+ xy: 834, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12619
+ rotate: false
+ xy: 934, 226
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12620
+ rotate: false
+ xy: 2, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12621
+ rotate: false
+ xy: 68, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12622
+ rotate: false
+ xy: 968, 226
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12623
+ rotate: false
+ xy: 134, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12624
+ rotate: false
+ xy: 168, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12625
+ rotate: false
+ xy: 234, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12626
+ rotate: false
+ xy: 300, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12627
+ rotate: false
+ xy: 334, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12628
+ rotate: false
+ xy: 368, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12629
+ rotate: false
+ xy: 434, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12630
+ rotate: false
+ xy: 500, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12631
+ rotate: false
+ xy: 534, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12632
+ rotate: false
+ xy: 568, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12633
+ rotate: false
+ xy: 634, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12634
+ rotate: false
+ xy: 700, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12635
+ rotate: false
+ xy: 734, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12636
+ rotate: false
+ xy: 768, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12637
+ rotate: false
+ xy: 868, 196
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12638
+ rotate: false
+ xy: 834, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12639
+ rotate: false
+ xy: 934, 192
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12640
+ rotate: false
+ xy: 2, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12641
+ rotate: false
+ xy: 68, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12642
+ rotate: false
+ xy: 968, 192
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12643
+ rotate: false
+ xy: 134, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12644
+ rotate: false
+ xy: 168, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12645
+ rotate: false
+ xy: 234, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12646
+ rotate: false
+ xy: 300, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12647
+ rotate: false
+ xy: 334, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12648
+ rotate: false
+ xy: 368, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12649
+ rotate: false
+ xy: 434, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12650
+ rotate: false
+ xy: 500, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12651
+ rotate: false
+ xy: 534, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12652
+ rotate: false
+ xy: 568, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12653
+ rotate: false
+ xy: 634, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12654
+ rotate: false
+ xy: 700, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12655
+ rotate: false
+ xy: 734, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12656
+ rotate: false
+ xy: 768, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12657
+ rotate: false
+ xy: 868, 162
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12658
+ rotate: false
+ xy: 834, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12659
+ rotate: false
+ xy: 934, 158
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12660
+ rotate: false
+ xy: 2, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12661
+ rotate: false
+ xy: 68, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+12662
+ rotate: false
+ xy: 968, 158
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12700
+ rotate: false
+ xy: 134, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12725
+ rotate: false
+ xy: 168, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12726
+ rotate: false
+ xy: 202, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12727
+ rotate: false
+ xy: 236, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12752
+ rotate: false
+ xy: 270, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12779
+ rotate: false
+ xy: 304, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12806
+ rotate: false
+ xy: 338, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12833
+ rotate: false
+ xy: 372, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12860
+ rotate: false
+ xy: 406, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12887
+ rotate: false
+ xy: 440, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+12914
+ rotate: false
+ xy: 474, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13255
+ rotate: false
+ xy: 508, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13282
+ rotate: false
+ xy: 542, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13387
+ rotate: false
+ xy: 576, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13388
+ rotate: false
+ xy: 610, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13389
+ rotate: false
+ xy: 676, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13390
+ rotate: false
+ xy: 710, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13396
+ rotate: false
+ xy: 776, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13397
+ rotate: false
+ xy: 842, 128
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13398
+ rotate: false
+ xy: 910, 124
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13403
+ rotate: false
+ xy: 876, 128
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13406
+ rotate: false
+ xy: 2, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13411
+ rotate: false
+ xy: 68, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13413
+ rotate: false
+ xy: 134, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13416
+ rotate: false
+ xy: 200, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13433
+ rotate: false
+ xy: 266, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13434
+ rotate: false
+ xy: 976, 124
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13439
+ rotate: false
+ xy: 332, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13440
+ rotate: false
+ xy: 398, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13441
+ rotate: false
+ xy: 432, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13447
+ rotate: false
+ xy: 498, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13448
+ rotate: false
+ xy: 564, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13449
+ rotate: false
+ xy: 598, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13450
+ rotate: false
+ xy: 664, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13451
+ rotate: false
+ xy: 698, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13454
+ rotate: false
+ xy: 732, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13463
+ rotate: false
+ xy: 832, 94
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13465
+ rotate: false
+ xy: 898, 90
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13468
+ rotate: false
+ xy: 2, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13481
+ rotate: false
+ xy: 68, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13482
+ rotate: false
+ xy: 798, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13483
+ rotate: false
+ xy: 964, 90
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13484
+ rotate: false
+ xy: 134, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13487
+ rotate: false
+ xy: 200, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13488
+ rotate: false
+ xy: 234, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13491
+ rotate: false
+ xy: 300, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13492
+ rotate: false
+ xy: 334, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13495
+ rotate: false
+ xy: 400, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13496
+ rotate: false
+ xy: 434, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13517
+ rotate: false
+ xy: 500, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13518
+ rotate: false
+ xy: 566, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13521
+ rotate: false
+ xy: 600, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13522
+ rotate: false
+ xy: 666, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13525
+ rotate: false
+ xy: 700, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13526
+ rotate: false
+ xy: 766, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13529
+ rotate: false
+ xy: 800, 60
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13530
+ rotate: false
+ xy: 866, 56
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13531
+ rotate: false
+ xy: 900, 56
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13532
+ rotate: false
+ xy: 2, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13535
+ rotate: false
+ xy: 934, 56
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13536
+ rotate: false
+ xy: 68, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13539
+ rotate: false
+ xy: 134, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13540
+ rotate: false
+ xy: 168, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13543
+ rotate: false
+ xy: 234, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13544
+ rotate: false
+ xy: 268, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+13589
+ rotate: false
+ xy: 334, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13590
+ rotate: false
+ xy: 368, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13639
+ rotate: false
+ xy: 402, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13666
+ rotate: false
+ xy: 436, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13693
+ rotate: false
+ xy: 470, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13720
+ rotate: false
+ xy: 504, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13773
+ rotate: false
+ xy: 538, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13800
+ rotate: false
+ xy: 572, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13827
+ rotate: false
+ xy: 606, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13854
+ rotate: false
+ xy: 640, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+13881
+ rotate: false
+ xy: 674, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14052
+ rotate: false
+ xy: 708, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14079
+ rotate: false
+ xy: 742, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14196
+ rotate: false
+ xy: 776, 26
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14223
+ rotate: false
+ xy: 810, 26
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14250
+ rotate: false
+ xy: 844, 22
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14277
+ rotate: false
+ xy: 878, 22
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14304
+ rotate: false
+ xy: 912, 22
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14331
+ rotate: false
+ xy: 946, 9
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14358
+ rotate: false
+ xy: 2, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14385
+ rotate: false
+ xy: 36, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14412
+ rotate: false
+ xy: 70, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14439
+ rotate: false
+ xy: 104, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14466
+ rotate: false
+ xy: 138, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14493
+ rotate: false
+ xy: 172, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14520
+ rotate: false
+ xy: 206, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14547
+ rotate: false
+ xy: 240, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14574
+ rotate: false
+ xy: 274, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14601
+ rotate: false
+ xy: 308, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14628
+ rotate: false
+ xy: 342, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14655
+ rotate: false
+ xy: 376, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14682
+ rotate: false
+ xy: 410, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14709
+ rotate: false
+ xy: 444, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14736
+ rotate: false
+ xy: 478, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14763
+ rotate: false
+ xy: 512, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14790
+ rotate: false
+ xy: 546, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14817
+ rotate: false
+ xy: 580, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14844
+ rotate: false
+ xy: 614, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14871
+ rotate: false
+ xy: 648, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14898
+ rotate: false
+ xy: 682, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14925
+ rotate: false
+ xy: 716, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17914
+ rotate: false
+ xy: 1002, 936
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17915
+ rotate: false
+ xy: 1004, 790
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+17918
+ rotate: false
+ xy: 1004, 738
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+18392
+ rotate: false
+ xy: 1002, 686
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+18395
+ rotate: false
+ xy: 1002, 634
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+18845
+ rotate: false
+ xy: 1002, 480
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+18848
+ rotate: false
+ xy: 1002, 428
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+19443
+ rotate: false
+ xy: 1002, 376
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+19446
+ rotate: false
+ xy: 1002, 324
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21724
+ rotate: false
+ xy: 1002, 272
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21727
+ rotate: false
+ xy: 1002, 220
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21728
+ rotate: false
+ xy: 1002, 168
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21731
+ rotate: false
+ xy: 998, 72
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+8653
+ rotate: false
+ xy: 2, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8654
+ rotate: false
+ xy: 36, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8655
+ rotate: false
+ xy: 102, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8656
+ rotate: false
+ xy: 136, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8657
+ rotate: false
+ xy: 170, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8658
+ rotate: false
+ xy: 236, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8659
+ rotate: false
+ xy: 270, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8660
+ rotate: false
+ xy: 304, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8661
+ rotate: false
+ xy: 370, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8662
+ rotate: false
+ xy: 404, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8663
+ rotate: false
+ xy: 438, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8664
+ rotate: false
+ xy: 504, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8665
+ rotate: false
+ xy: 538, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8666
+ rotate: false
+ xy: 572, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8667
+ rotate: false
+ xy: 638, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8668
+ rotate: false
+ xy: 672, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8669
+ rotate: false
+ xy: 706, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8670
+ rotate: false
+ xy: 772, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8671
+ rotate: false
+ xy: 806, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8672
+ rotate: false
+ xy: 840, 988
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8673
+ rotate: false
+ xy: 906, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8674
+ rotate: false
+ xy: 940, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8675
+ rotate: false
+ xy: 2, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8676
+ rotate: false
+ xy: 974, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8677
+ rotate: false
+ xy: 68, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8678
+ rotate: false
+ xy: 102, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8679
+ rotate: false
+ xy: 168, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8680
+ rotate: false
+ xy: 202, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8681
+ rotate: false
+ xy: 236, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8682
+ rotate: false
+ xy: 302, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8686
+ rotate: false
+ xy: 336, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8687
+ rotate: false
+ xy: 370, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8688
+ rotate: false
+ xy: 436, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8689
+ rotate: false
+ xy: 470, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8722
+ rotate: false
+ xy: 536, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8723
+ rotate: false
+ xy: 602, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8724
+ rotate: false
+ xy: 636, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8725
+ rotate: false
+ xy: 702, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8726
+ rotate: false
+ xy: 736, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8727
+ rotate: false
+ xy: 770, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8728
+ rotate: false
+ xy: 836, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8729
+ rotate: false
+ xy: 870, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8762
+ rotate: false
+ xy: 936, 954
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8763
+ rotate: false
+ xy: 2, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8764
+ rotate: false
+ xy: 36, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8765
+ rotate: false
+ xy: 102, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8766
+ rotate: false
+ xy: 136, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8767
+ rotate: false
+ xy: 170, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8768
+ rotate: false
+ xy: 236, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8769
+ rotate: false
+ xy: 270, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8802
+ rotate: false
+ xy: 336, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8803
+ rotate: false
+ xy: 402, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8804
+ rotate: false
+ xy: 436, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8805
+ rotate: false
+ xy: 502, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8806
+ rotate: false
+ xy: 536, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8807
+ rotate: false
+ xy: 570, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8808
+ rotate: false
+ xy: 636, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8809
+ rotate: false
+ xy: 670, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8842
+ rotate: false
+ xy: 736, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8843
+ rotate: false
+ xy: 802, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8844
+ rotate: false
+ xy: 836, 920
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8845
+ rotate: false
+ xy: 902, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8846
+ rotate: false
+ xy: 936, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8847
+ rotate: false
+ xy: 2, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8848
+ rotate: false
+ xy: 68, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8849
+ rotate: false
+ xy: 102, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8882
+ rotate: false
+ xy: 168, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8883
+ rotate: false
+ xy: 234, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8884
+ rotate: false
+ xy: 268, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8885
+ rotate: false
+ xy: 334, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8886
+ rotate: false
+ xy: 368, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8887
+ rotate: false
+ xy: 402, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8888
+ rotate: false
+ xy: 468, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8889
+ rotate: false
+ xy: 502, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8922
+ rotate: false
+ xy: 568, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8923
+ rotate: false
+ xy: 634, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8924
+ rotate: false
+ xy: 668, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8925
+ rotate: false
+ xy: 734, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8926
+ rotate: false
+ xy: 768, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8927
+ rotate: false
+ xy: 802, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8928
+ rotate: false
+ xy: 868, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8929
+ rotate: false
+ xy: 902, 886
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8962
+ rotate: false
+ xy: 2, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8963
+ rotate: false
+ xy: 68, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8964
+ rotate: false
+ xy: 102, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8965
+ rotate: false
+ xy: 168, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8966
+ rotate: false
+ xy: 202, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8967
+ rotate: false
+ xy: 236, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+8968
+ rotate: false
+ xy: 302, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+8969
+ rotate: false
+ xy: 336, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9002
+ rotate: false
+ xy: 402, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9003
+ rotate: false
+ xy: 468, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9004
+ rotate: false
+ xy: 502, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9005
+ rotate: false
+ xy: 568, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9006
+ rotate: false
+ xy: 602, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9007
+ rotate: false
+ xy: 636, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9008
+ rotate: false
+ xy: 702, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9009
+ rotate: false
+ xy: 736, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9042
+ rotate: false
+ xy: 802, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9043
+ rotate: false
+ xy: 868, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9044
+ rotate: false
+ xy: 902, 852
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9045
+ rotate: false
+ xy: 2, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9046
+ rotate: false
+ xy: 36, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9047
+ rotate: false
+ xy: 70, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9048
+ rotate: false
+ xy: 136, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9049
+ rotate: false
+ xy: 170, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9082
+ rotate: false
+ xy: 236, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9083
+ rotate: false
+ xy: 302, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9084
+ rotate: false
+ xy: 336, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9085
+ rotate: false
+ xy: 402, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9087
+ rotate: false
+ xy: 436, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9088
+ rotate: false
+ xy: 470, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9090
+ rotate: false
+ xy: 536, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9091
+ rotate: false
+ xy: 570, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9093
+ rotate: false
+ xy: 636, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9094
+ rotate: false
+ xy: 670, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9106
+ rotate: false
+ xy: 736, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9107
+ rotate: false
+ xy: 802, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9109
+ rotate: false
+ xy: 836, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9110
+ rotate: false
+ xy: 902, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9112
+ rotate: false
+ xy: 2, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9113
+ rotate: false
+ xy: 936, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9114
+ rotate: false
+ xy: 970, 808
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9115
+ rotate: false
+ xy: 68, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9117
+ rotate: false
+ xy: 134, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9118
+ rotate: false
+ xy: 168, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9120
+ rotate: false
+ xy: 234, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9121
+ rotate: false
+ xy: 268, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9133
+ rotate: false
+ xy: 334, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9134
+ rotate: false
+ xy: 400, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9136
+ rotate: false
+ xy: 434, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9137
+ rotate: false
+ xy: 500, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9139
+ rotate: false
+ xy: 534, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9140
+ rotate: false
+ xy: 600, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9141
+ rotate: false
+ xy: 634, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9142
+ rotate: false
+ xy: 668, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9143
+ rotate: false
+ xy: 734, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9144
+ rotate: false
+ xy: 768, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9153
+ rotate: false
+ xy: 834, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9154
+ rotate: false
+ xy: 900, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9155
+ rotate: false
+ xy: 2, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9156
+ rotate: false
+ xy: 934, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9157
+ rotate: false
+ xy: 968, 774
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9158
+ rotate: false
+ xy: 68, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9159
+ rotate: false
+ xy: 134, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9160
+ rotate: false
+ xy: 168, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9169
+ rotate: false
+ xy: 234, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9170
+ rotate: false
+ xy: 300, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9171
+ rotate: false
+ xy: 334, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9172
+ rotate: false
+ xy: 400, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9173
+ rotate: false
+ xy: 434, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9174
+ rotate: false
+ xy: 468, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9175
+ rotate: false
+ xy: 534, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9176
+ rotate: false
+ xy: 568, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9185
+ rotate: false
+ xy: 634, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9186
+ rotate: false
+ xy: 700, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9187
+ rotate: false
+ xy: 734, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9188
+ rotate: false
+ xy: 800, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9189
+ rotate: false
+ xy: 834, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9190
+ rotate: false
+ xy: 868, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9191
+ rotate: false
+ xy: 902, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9192
+ rotate: false
+ xy: 936, 740
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9220
+ rotate: false
+ xy: 970, 740
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9221
+ rotate: false
+ xy: 2, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9224
+ rotate: false
+ xy: 68, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9225
+ rotate: false
+ xy: 102, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9228
+ rotate: false
+ xy: 168, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9229
+ rotate: false
+ xy: 202, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9232
+ rotate: false
+ xy: 268, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9233
+ rotate: false
+ xy: 302, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9270
+ rotate: false
+ xy: 368, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9271
+ rotate: false
+ xy: 434, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9274
+ rotate: false
+ xy: 468, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9275
+ rotate: false
+ xy: 534, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9278
+ rotate: false
+ xy: 568, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9279
+ rotate: false
+ xy: 634, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9282
+ rotate: false
+ xy: 668, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9283
+ rotate: false
+ xy: 734, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9284
+ rotate: false
+ xy: 768, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9285
+ rotate: false
+ xy: 802, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9288
+ rotate: false
+ xy: 868, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9289
+ rotate: false
+ xy: 936, 706
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9292
+ rotate: false
+ xy: 902, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9293
+ rotate: false
+ xy: 2, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9296
+ rotate: false
+ xy: 68, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9297
+ rotate: false
+ xy: 102, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+933
+ rotate: false
+ xy: 970, 907
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9334
+ rotate: false
+ xy: 168, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9335
+ rotate: false
+ xy: 234, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9338
+ rotate: false
+ xy: 268, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9339
+ rotate: false
+ xy: 334, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9342
+ rotate: false
+ xy: 368, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9343
+ rotate: false
+ xy: 434, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9346
+ rotate: false
+ xy: 468, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9347
+ rotate: false
+ xy: 534, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9348
+ rotate: false
+ xy: 568, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9412
+ rotate: false
+ xy: 568, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9349
+ rotate: false
+ xy: 602, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9413
+ rotate: false
+ xy: 602, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9352
+ rotate: false
+ xy: 668, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9416
+ rotate: false
+ xy: 668, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9353
+ rotate: false
+ xy: 702, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9417
+ rotate: false
+ xy: 702, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9356
+ rotate: false
+ xy: 768, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9420
+ rotate: false
+ xy: 768, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9357
+ rotate: false
+ xy: 802, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9421
+ rotate: false
+ xy: 802, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9360
+ rotate: false
+ xy: 868, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9424
+ rotate: false
+ xy: 868, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9361
+ rotate: false
+ xy: 936, 672
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9425
+ rotate: false
+ xy: 936, 672
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+938
+ rotate: false
+ xy: 997, 889
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+939
+ rotate: false
+ xy: 968, 860
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9398
+ rotate: false
+ xy: 2, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9399
+ rotate: false
+ xy: 902, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9402
+ rotate: false
+ xy: 68, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9403
+ rotate: false
+ xy: 134, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9406
+ rotate: false
+ xy: 168, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9407
+ rotate: false
+ xy: 234, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9410
+ rotate: false
+ xy: 268, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9411
+ rotate: false
+ xy: 334, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9428
+ rotate: false
+ xy: 368, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9429
+ rotate: false
+ xy: 402, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9430
+ rotate: false
+ xy: 468, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9431
+ rotate: false
+ xy: 534, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9432
+ rotate: false
+ xy: 568, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9433
+ rotate: false
+ xy: 602, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9434
+ rotate: false
+ xy: 668, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9435
+ rotate: false
+ xy: 734, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9436
+ rotate: false
+ xy: 768, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9437
+ rotate: false
+ xy: 802, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9438
+ rotate: false
+ xy: 868, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9439
+ rotate: false
+ xy: 934, 638
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+944
+ rotate: false
+ xy: 995, 842
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9440
+ rotate: false
+ xy: 968, 638
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9441
+ rotate: false
+ xy: 2, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9442
+ rotate: false
+ xy: 68, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+9443
+ rotate: false
+ xy: 134, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+945
+ rotate: false
+ xy: 968, 43
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+950
+ rotate: false
+ xy: 995, 25
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9529
+ rotate: false
+ xy: 168, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9581
+ rotate: false
+ xy: 202, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9632
+ rotate: false
+ xy: 236, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9659
+ rotate: false
+ xy: 270, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9686
+ rotate: false
+ xy: 304, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9713
+ rotate: false
+ xy: 338, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9740
+ rotate: false
+ xy: 372, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9767
+ rotate: false
+ xy: 406, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9910
+ rotate: false
+ xy: 440, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9937
+ rotate: false
+ xy: 474, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+9964
+ rotate: false
+ xy: 508, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+
+images91.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+14952
+ rotate: false
+ xy: 2, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+14979
+ rotate: false
+ xy: 36, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15006
+ rotate: false
+ xy: 70, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15033
+ rotate: false
+ xy: 104, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15060
+ rotate: false
+ xy: 138, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15087
+ rotate: false
+ xy: 172, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15114
+ rotate: false
+ xy: 206, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15141
+ rotate: false
+ xy: 240, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15168
+ rotate: false
+ xy: 274, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15195
+ rotate: false
+ xy: 308, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15222
+ rotate: false
+ xy: 342, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15249
+ rotate: false
+ xy: 376, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15276
+ rotate: false
+ xy: 410, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15303
+ rotate: false
+ xy: 444, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15330
+ rotate: false
+ xy: 478, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15357
+ rotate: false
+ xy: 512, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15384
+ rotate: false
+ xy: 546, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15411
+ rotate: false
+ xy: 580, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15438
+ rotate: false
+ xy: 614, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15465
+ rotate: false
+ xy: 648, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15492
+ rotate: false
+ xy: 682, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15519
+ rotate: false
+ xy: 716, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15546
+ rotate: false
+ xy: 750, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15600
+ rotate: false
+ xy: 784, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15627
+ rotate: false
+ xy: 818, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15681
+ rotate: false
+ xy: 852, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15708
+ rotate: false
+ xy: 886, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15762
+ rotate: false
+ xy: 920, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15789
+ rotate: false
+ xy: 954, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15816
+ rotate: false
+ xy: 988, 988
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15843
+ rotate: false
+ xy: 2, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15870
+ rotate: false
+ xy: 36, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15897
+ rotate: false
+ xy: 70, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15924
+ rotate: false
+ xy: 104, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15951
+ rotate: false
+ xy: 138, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+15978
+ rotate: false
+ xy: 172, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16005
+ rotate: false
+ xy: 206, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16032
+ rotate: false
+ xy: 240, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16059
+ rotate: false
+ xy: 274, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16086
+ rotate: false
+ xy: 308, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16113
+ rotate: false
+ xy: 342, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16140
+ rotate: false
+ xy: 376, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16167
+ rotate: false
+ xy: 410, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16194
+ rotate: false
+ xy: 444, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16221
+ rotate: false
+ xy: 478, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16248
+ rotate: false
+ xy: 512, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16275
+ rotate: false
+ xy: 546, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16302
+ rotate: false
+ xy: 580, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16329
+ rotate: false
+ xy: 614, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16356
+ rotate: false
+ xy: 648, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16383
+ rotate: false
+ xy: 682, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16410
+ rotate: false
+ xy: 716, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16437
+ rotate: false
+ xy: 750, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16490
+ rotate: false
+ xy: 784, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16517
+ rotate: false
+ xy: 818, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16544
+ rotate: false
+ xy: 852, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16571
+ rotate: false
+ xy: 886, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16598
+ rotate: false
+ xy: 920, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16625
+ rotate: false
+ xy: 954, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16652
+ rotate: false
+ xy: 988, 954
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16679
+ rotate: false
+ xy: 2, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16706
+ rotate: false
+ xy: 36, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16707
+ rotate: false
+ xy: 70, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17544
+ rotate: false
+ xy: 70, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16734
+ rotate: false
+ xy: 104, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16761
+ rotate: false
+ xy: 138, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16788
+ rotate: false
+ xy: 172, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16815
+ rotate: false
+ xy: 206, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16842
+ rotate: false
+ xy: 240, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16869
+ rotate: false
+ xy: 274, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16896
+ rotate: false
+ xy: 308, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16923
+ rotate: false
+ xy: 342, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16950
+ rotate: false
+ xy: 376, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+16977
+ rotate: false
+ xy: 410, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17004
+ rotate: false
+ xy: 444, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17031
+ rotate: false
+ xy: 478, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17058
+ rotate: false
+ xy: 512, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17112
+ rotate: false
+ xy: 512, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17085
+ rotate: false
+ xy: 546, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17220
+ rotate: false
+ xy: 546, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17139
+ rotate: false
+ xy: 580, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17166
+ rotate: false
+ xy: 614, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17193
+ rotate: false
+ xy: 648, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17247
+ rotate: false
+ xy: 682, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17274
+ rotate: false
+ xy: 716, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17301
+ rotate: false
+ xy: 750, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17328
+ rotate: false
+ xy: 784, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17355
+ rotate: false
+ xy: 818, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17382
+ rotate: false
+ xy: 852, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17409
+ rotate: false
+ xy: 886, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17436
+ rotate: false
+ xy: 920, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17463
+ rotate: false
+ xy: 954, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17490
+ rotate: false
+ xy: 988, 920
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17517
+ rotate: false
+ xy: 2, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17657
+ rotate: false
+ xy: 36, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17684
+ rotate: false
+ xy: 70, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17925
+ rotate: false
+ xy: 104, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17928
+ rotate: false
+ xy: 138, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17929
+ rotate: false
+ xy: 172, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17930
+ rotate: false
+ xy: 206, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17931
+ rotate: false
+ xy: 240, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17932
+ rotate: false
+ xy: 274, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17933
+ rotate: false
+ xy: 308, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17934
+ rotate: false
+ xy: 342, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17935
+ rotate: false
+ xy: 376, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17936
+ rotate: false
+ xy: 410, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17937
+ rotate: false
+ xy: 444, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17938
+ rotate: false
+ xy: 478, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17939
+ rotate: false
+ xy: 512, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17940
+ rotate: false
+ xy: 546, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17941
+ rotate: false
+ xy: 580, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17979
+ rotate: false
+ xy: 614, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17980
+ rotate: false
+ xy: 648, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17981
+ rotate: false
+ xy: 682, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17982
+ rotate: false
+ xy: 716, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17983
+ rotate: false
+ xy: 750, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17984
+ rotate: false
+ xy: 784, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17985
+ rotate: false
+ xy: 818, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17986
+ rotate: false
+ xy: 852, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17987
+ rotate: false
+ xy: 886, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17988
+ rotate: false
+ xy: 920, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17989
+ rotate: false
+ xy: 954, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17990
+ rotate: false
+ xy: 988, 886
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17991
+ rotate: false
+ xy: 2, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17992
+ rotate: false
+ xy: 36, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17993
+ rotate: false
+ xy: 70, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17994
+ rotate: false
+ xy: 104, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17995
+ rotate: false
+ xy: 138, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17996
+ rotate: false
+ xy: 172, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17997
+ rotate: false
+ xy: 206, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17998
+ rotate: false
+ xy: 240, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+17999
+ rotate: false
+ xy: 274, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18000
+ rotate: false
+ xy: 308, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18001
+ rotate: false
+ xy: 342, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18002
+ rotate: false
+ xy: 376, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18003
+ rotate: false
+ xy: 410, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18004
+ rotate: false
+ xy: 444, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18005
+ rotate: false
+ xy: 478, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18006
+ rotate: false
+ xy: 512, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18007
+ rotate: false
+ xy: 546, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18008
+ rotate: false
+ xy: 580, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18009
+ rotate: false
+ xy: 614, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18010
+ rotate: false
+ xy: 648, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18011
+ rotate: false
+ xy: 682, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18012
+ rotate: false
+ xy: 716, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18013
+ rotate: false
+ xy: 750, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18014
+ rotate: false
+ xy: 784, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18015
+ rotate: false
+ xy: 818, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18016
+ rotate: false
+ xy: 852, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18017
+ rotate: false
+ xy: 886, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18018
+ rotate: false
+ xy: 920, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18019
+ rotate: false
+ xy: 954, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18020
+ rotate: false
+ xy: 988, 852
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18021
+ rotate: false
+ xy: 2, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18022
+ rotate: false
+ xy: 36, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18023
+ rotate: false
+ xy: 70, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18024
+ rotate: false
+ xy: 104, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18025
+ rotate: false
+ xy: 138, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18026
+ rotate: false
+ xy: 172, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18027
+ rotate: false
+ xy: 206, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18028
+ rotate: false
+ xy: 240, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18029
+ rotate: false
+ xy: 274, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18030
+ rotate: false
+ xy: 308, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18031
+ rotate: false
+ xy: 342, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18032
+ rotate: false
+ xy: 376, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18033
+ rotate: false
+ xy: 410, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18034
+ rotate: false
+ xy: 444, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18035
+ rotate: false
+ xy: 478, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18036
+ rotate: false
+ xy: 512, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18037
+ rotate: false
+ xy: 546, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18038
+ rotate: false
+ xy: 580, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18039
+ rotate: false
+ xy: 614, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18040
+ rotate: false
+ xy: 648, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18041
+ rotate: false
+ xy: 682, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18042
+ rotate: false
+ xy: 716, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18044
+ rotate: false
+ xy: 750, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18048
+ rotate: false
+ xy: 784, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18049
+ rotate: false
+ xy: 818, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18050
+ rotate: false
+ xy: 884, 818
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18051
+ rotate: false
+ xy: 950, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18052
+ rotate: false
+ xy: 984, 818
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18053
+ rotate: false
+ xy: 2, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18054
+ rotate: false
+ xy: 68, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18055
+ rotate: false
+ xy: 134, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18056
+ rotate: false
+ xy: 168, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18057
+ rotate: false
+ xy: 202, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18058
+ rotate: false
+ xy: 268, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18059
+ rotate: false
+ xy: 334, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18060
+ rotate: false
+ xy: 368, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18061
+ rotate: false
+ xy: 402, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18062
+ rotate: false
+ xy: 468, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18063
+ rotate: false
+ xy: 534, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18064
+ rotate: false
+ xy: 568, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18065
+ rotate: false
+ xy: 602, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18066
+ rotate: false
+ xy: 668, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18067
+ rotate: false
+ xy: 734, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18068
+ rotate: false
+ xy: 768, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18069
+ rotate: false
+ xy: 802, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18070
+ rotate: false
+ xy: 868, 784
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18071
+ rotate: false
+ xy: 934, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18072
+ rotate: false
+ xy: 968, 784
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18073
+ rotate: false
+ xy: 2, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18074
+ rotate: false
+ xy: 68, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18075
+ rotate: false
+ xy: 134, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18076
+ rotate: false
+ xy: 168, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18077
+ rotate: false
+ xy: 202, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18078
+ rotate: false
+ xy: 268, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18079
+ rotate: false
+ xy: 334, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18080
+ rotate: false
+ xy: 368, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18081
+ rotate: false
+ xy: 402, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18082
+ rotate: false
+ xy: 468, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18083
+ rotate: false
+ xy: 534, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18084
+ rotate: false
+ xy: 568, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18085
+ rotate: false
+ xy: 602, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18086
+ rotate: false
+ xy: 668, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18087
+ rotate: false
+ xy: 734, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18088
+ rotate: false
+ xy: 768, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18089
+ rotate: false
+ xy: 802, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18090
+ rotate: false
+ xy: 868, 750
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18091
+ rotate: false
+ xy: 934, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18092
+ rotate: false
+ xy: 968, 750
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18093
+ rotate: false
+ xy: 2, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18094
+ rotate: false
+ xy: 68, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18095
+ rotate: false
+ xy: 134, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18096
+ rotate: false
+ xy: 168, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18097
+ rotate: false
+ xy: 202, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18098
+ rotate: false
+ xy: 268, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18099
+ rotate: false
+ xy: 334, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18100
+ rotate: false
+ xy: 368, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18101
+ rotate: false
+ xy: 402, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18102
+ rotate: false
+ xy: 468, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18103
+ rotate: false
+ xy: 534, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18104
+ rotate: false
+ xy: 568, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18105
+ rotate: false
+ xy: 602, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18106
+ rotate: false
+ xy: 668, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18107
+ rotate: false
+ xy: 734, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18108
+ rotate: false
+ xy: 768, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18109
+ rotate: false
+ xy: 802, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18110
+ rotate: false
+ xy: 868, 716
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18111
+ rotate: false
+ xy: 934, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18112
+ rotate: false
+ xy: 968, 716
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18113
+ rotate: false
+ xy: 2, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18114
+ rotate: false
+ xy: 68, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18115
+ rotate: false
+ xy: 134, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18116
+ rotate: false
+ xy: 168, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18117
+ rotate: false
+ xy: 202, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18118
+ rotate: false
+ xy: 268, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18119
+ rotate: false
+ xy: 334, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18120
+ rotate: false
+ xy: 368, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18121
+ rotate: false
+ xy: 402, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18122
+ rotate: false
+ xy: 468, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18123
+ rotate: false
+ xy: 534, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18124
+ rotate: false
+ xy: 568, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18125
+ rotate: false
+ xy: 602, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18126
+ rotate: false
+ xy: 668, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18127
+ rotate: false
+ xy: 734, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18136
+ rotate: false
+ xy: 768, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18137
+ rotate: false
+ xy: 802, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18138
+ rotate: false
+ xy: 868, 682
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18139
+ rotate: false
+ xy: 934, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18140
+ rotate: false
+ xy: 968, 682
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18141
+ rotate: false
+ xy: 2, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18142
+ rotate: false
+ xy: 68, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18143
+ rotate: false
+ xy: 134, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18144
+ rotate: false
+ xy: 168, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18145
+ rotate: false
+ xy: 202, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18146
+ rotate: false
+ xy: 268, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18147
+ rotate: false
+ xy: 334, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18148
+ rotate: false
+ xy: 368, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18149
+ rotate: false
+ xy: 402, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18150
+ rotate: false
+ xy: 468, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18151
+ rotate: false
+ xy: 534, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18414
+ rotate: false
+ xy: 568, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18415
+ rotate: false
+ xy: 602, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18418
+ rotate: false
+ xy: 668, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18419
+ rotate: false
+ xy: 702, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18422
+ rotate: false
+ xy: 768, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18423
+ rotate: false
+ xy: 802, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18426
+ rotate: false
+ xy: 868, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18427
+ rotate: false
+ xy: 902, 648
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18464
+ rotate: false
+ xy: 2, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18465
+ rotate: false
+ xy: 968, 648
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18468
+ rotate: false
+ xy: 68, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18469
+ rotate: false
+ xy: 134, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18472
+ rotate: false
+ xy: 168, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18473
+ rotate: false
+ xy: 234, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18476
+ rotate: false
+ xy: 268, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18477
+ rotate: false
+ xy: 334, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18482
+ rotate: false
+ xy: 368, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18483
+ rotate: false
+ xy: 402, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18484
+ rotate: false
+ xy: 468, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18485
+ rotate: false
+ xy: 534, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18486
+ rotate: false
+ xy: 568, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18487
+ rotate: false
+ xy: 602, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18488
+ rotate: false
+ xy: 668, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18489
+ rotate: false
+ xy: 734, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18490
+ rotate: false
+ xy: 768, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18491
+ rotate: false
+ xy: 802, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18492
+ rotate: false
+ xy: 868, 614
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18493
+ rotate: false
+ xy: 934, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18494
+ rotate: false
+ xy: 968, 614
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18495
+ rotate: false
+ xy: 2, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18496
+ rotate: false
+ xy: 68, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18497
+ rotate: false
+ xy: 134, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18498
+ rotate: false
+ xy: 168, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18499
+ rotate: false
+ xy: 202, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18500
+ rotate: false
+ xy: 268, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18501
+ rotate: false
+ xy: 334, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18502
+ rotate: false
+ xy: 368, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18503
+ rotate: false
+ xy: 402, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18504
+ rotate: false
+ xy: 468, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18505
+ rotate: false
+ xy: 534, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18506
+ rotate: false
+ xy: 568, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18507
+ rotate: false
+ xy: 602, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18508
+ rotate: false
+ xy: 668, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18509
+ rotate: false
+ xy: 734, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18510
+ rotate: false
+ xy: 768, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18511
+ rotate: false
+ xy: 802, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18512
+ rotate: false
+ xy: 868, 580
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18513
+ rotate: false
+ xy: 934, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18514
+ rotate: false
+ xy: 968, 580
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18515
+ rotate: false
+ xy: 2, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18516
+ rotate: false
+ xy: 68, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18517
+ rotate: false
+ xy: 134, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18518
+ rotate: false
+ xy: 168, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18519
+ rotate: false
+ xy: 202, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18520
+ rotate: false
+ xy: 268, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18521
+ rotate: false
+ xy: 334, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18522
+ rotate: false
+ xy: 368, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18523
+ rotate: false
+ xy: 402, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18524
+ rotate: false
+ xy: 468, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18525
+ rotate: false
+ xy: 534, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18526
+ rotate: false
+ xy: 568, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18527
+ rotate: false
+ xy: 602, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18528
+ rotate: false
+ xy: 668, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18529
+ rotate: false
+ xy: 734, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18530
+ rotate: false
+ xy: 768, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18531
+ rotate: false
+ xy: 802, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18532
+ rotate: false
+ xy: 868, 546
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18533
+ rotate: false
+ xy: 934, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18534
+ rotate: false
+ xy: 968, 546
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18535
+ rotate: false
+ xy: 2, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18536
+ rotate: false
+ xy: 68, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18537
+ rotate: false
+ xy: 134, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18538
+ rotate: false
+ xy: 168, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18539
+ rotate: false
+ xy: 202, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18540
+ rotate: false
+ xy: 268, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18541
+ rotate: false
+ xy: 334, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18542
+ rotate: false
+ xy: 368, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18543
+ rotate: false
+ xy: 402, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18544
+ rotate: false
+ xy: 468, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18545
+ rotate: false
+ xy: 534, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18546
+ rotate: false
+ xy: 568, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18547
+ rotate: false
+ xy: 602, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18548
+ rotate: false
+ xy: 668, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18549
+ rotate: false
+ xy: 734, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18550
+ rotate: false
+ xy: 768, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18551
+ rotate: false
+ xy: 802, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18552
+ rotate: false
+ xy: 868, 512
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18553
+ rotate: false
+ xy: 934, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18554
+ rotate: false
+ xy: 968, 512
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18555
+ rotate: false
+ xy: 2, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18556
+ rotate: false
+ xy: 68, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18557
+ rotate: false
+ xy: 134, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18558
+ rotate: false
+ xy: 168, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18559
+ rotate: false
+ xy: 202, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18560
+ rotate: false
+ xy: 268, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18561
+ rotate: false
+ xy: 334, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18562
+ rotate: false
+ xy: 368, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18563
+ rotate: false
+ xy: 402, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18564
+ rotate: false
+ xy: 468, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18565
+ rotate: false
+ xy: 534, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18566
+ rotate: false
+ xy: 568, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18567
+ rotate: false
+ xy: 602, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18568
+ rotate: false
+ xy: 668, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18569
+ rotate: false
+ xy: 734, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18570
+ rotate: false
+ xy: 768, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18571
+ rotate: false
+ xy: 802, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18572
+ rotate: false
+ xy: 868, 478
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18573
+ rotate: false
+ xy: 934, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18574
+ rotate: false
+ xy: 968, 478
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18575
+ rotate: false
+ xy: 2, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18576
+ rotate: false
+ xy: 68, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18577
+ rotate: false
+ xy: 134, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18578
+ rotate: false
+ xy: 168, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18579
+ rotate: false
+ xy: 202, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18580
+ rotate: false
+ xy: 268, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18581
+ rotate: false
+ xy: 334, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18582
+ rotate: false
+ xy: 368, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18583
+ rotate: false
+ xy: 402, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18584
+ rotate: false
+ xy: 468, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18585
+ rotate: false
+ xy: 534, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18586
+ rotate: false
+ xy: 568, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18587
+ rotate: false
+ xy: 602, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18588
+ rotate: false
+ xy: 668, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18589
+ rotate: false
+ xy: 734, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18591
+ rotate: false
+ xy: 768, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18592
+ rotate: false
+ xy: 834, 444
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18593
+ rotate: false
+ xy: 900, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18594
+ rotate: false
+ xy: 934, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18595
+ rotate: false
+ xy: 2, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18596
+ rotate: false
+ xy: 68, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18597
+ rotate: false
+ xy: 968, 444
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18598
+ rotate: false
+ xy: 134, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18599
+ rotate: false
+ xy: 168, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18600
+ rotate: false
+ xy: 234, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18601
+ rotate: false
+ xy: 300, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18602
+ rotate: false
+ xy: 334, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18603
+ rotate: false
+ xy: 368, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18604
+ rotate: false
+ xy: 434, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18605
+ rotate: false
+ xy: 500, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18606
+ rotate: false
+ xy: 534, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18607
+ rotate: false
+ xy: 568, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18608
+ rotate: false
+ xy: 634, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18610
+ rotate: false
+ xy: 700, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18611
+ rotate: false
+ xy: 734, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18612
+ rotate: false
+ xy: 800, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18613
+ rotate: false
+ xy: 866, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18614
+ rotate: false
+ xy: 900, 410
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18615
+ rotate: false
+ xy: 934, 410
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18616
+ rotate: false
+ xy: 2, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18617
+ rotate: false
+ xy: 68, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18618
+ rotate: false
+ xy: 102, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18619
+ rotate: false
+ xy: 136, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18620
+ rotate: false
+ xy: 202, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18621
+ rotate: false
+ xy: 268, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18622
+ rotate: false
+ xy: 302, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18623
+ rotate: false
+ xy: 336, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18624
+ rotate: false
+ xy: 402, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18625
+ rotate: false
+ xy: 468, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18626
+ rotate: false
+ xy: 502, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18627
+ rotate: false
+ xy: 536, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18628
+ rotate: false
+ xy: 602, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18629
+ rotate: false
+ xy: 668, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18630
+ rotate: false
+ xy: 702, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18631
+ rotate: false
+ xy: 736, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18632
+ rotate: false
+ xy: 802, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18633
+ rotate: false
+ xy: 868, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18634
+ rotate: false
+ xy: 902, 376
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18635
+ rotate: false
+ xy: 936, 376
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18636
+ rotate: false
+ xy: 2, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18637
+ rotate: false
+ xy: 68, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18638
+ rotate: false
+ xy: 102, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18639
+ rotate: false
+ xy: 136, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18640
+ rotate: false
+ xy: 202, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18641
+ rotate: false
+ xy: 268, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18642
+ rotate: false
+ xy: 302, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18643
+ rotate: false
+ xy: 336, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18644
+ rotate: false
+ xy: 402, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18645
+ rotate: false
+ xy: 468, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18646
+ rotate: false
+ xy: 502, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18647
+ rotate: false
+ xy: 536, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18648
+ rotate: false
+ xy: 602, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18649
+ rotate: false
+ xy: 668, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18650
+ rotate: false
+ xy: 702, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18651
+ rotate: false
+ xy: 736, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18652
+ rotate: false
+ xy: 802, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18653
+ rotate: false
+ xy: 868, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18654
+ rotate: false
+ xy: 902, 342
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18655
+ rotate: false
+ xy: 936, 342
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18656
+ rotate: false
+ xy: 2, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18657
+ rotate: false
+ xy: 68, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18658
+ rotate: false
+ xy: 102, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18659
+ rotate: false
+ xy: 136, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18660
+ rotate: false
+ xy: 202, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18661
+ rotate: false
+ xy: 268, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18662
+ rotate: false
+ xy: 302, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18663
+ rotate: false
+ xy: 336, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18664
+ rotate: false
+ xy: 402, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18665
+ rotate: false
+ xy: 468, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18666
+ rotate: false
+ xy: 502, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18667
+ rotate: false
+ xy: 536, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18668
+ rotate: false
+ xy: 602, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18669
+ rotate: false
+ xy: 668, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18670
+ rotate: false
+ xy: 702, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18671
+ rotate: false
+ xy: 736, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18672
+ rotate: false
+ xy: 802, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18673
+ rotate: false
+ xy: 868, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18674
+ rotate: false
+ xy: 902, 308
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18675
+ rotate: false
+ xy: 936, 308
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18676
+ rotate: false
+ xy: 2, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18677
+ rotate: false
+ xy: 68, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18678
+ rotate: false
+ xy: 102, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18679
+ rotate: false
+ xy: 136, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18680
+ rotate: false
+ xy: 202, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18681
+ rotate: false
+ xy: 268, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18682
+ rotate: false
+ xy: 302, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18683
+ rotate: false
+ xy: 336, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18684
+ rotate: false
+ xy: 402, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18685
+ rotate: false
+ xy: 468, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18686
+ rotate: false
+ xy: 502, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18687
+ rotate: false
+ xy: 536, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18688
+ rotate: false
+ xy: 602, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18689
+ rotate: false
+ xy: 668, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18690
+ rotate: false
+ xy: 702, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18691
+ rotate: false
+ xy: 736, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18692
+ rotate: false
+ xy: 802, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18693
+ rotate: false
+ xy: 868, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18694
+ rotate: false
+ xy: 902, 274
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18695
+ rotate: false
+ xy: 936, 274
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18696
+ rotate: false
+ xy: 2, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18697
+ rotate: false
+ xy: 68, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18698
+ rotate: false
+ xy: 102, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18699
+ rotate: false
+ xy: 136, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18700
+ rotate: false
+ xy: 202, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18701
+ rotate: false
+ xy: 268, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18702
+ rotate: false
+ xy: 302, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18703
+ rotate: false
+ xy: 336, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18704
+ rotate: false
+ xy: 402, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18705
+ rotate: false
+ xy: 468, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18706
+ rotate: false
+ xy: 502, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18707
+ rotate: false
+ xy: 536, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18708
+ rotate: false
+ xy: 602, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18709
+ rotate: false
+ xy: 636, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18715
+ rotate: false
+ xy: 702, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18716
+ rotate: false
+ xy: 768, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18717
+ rotate: false
+ xy: 802, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18722
+ rotate: false
+ xy: 868, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18725
+ rotate: false
+ xy: 902, 240
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18730
+ rotate: false
+ xy: 2, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18758
+ rotate: false
+ xy: 2, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18732
+ rotate: false
+ xy: 68, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18760
+ rotate: false
+ xy: 68, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18735
+ rotate: false
+ xy: 134, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18752
+ rotate: false
+ xy: 200, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18768
+ rotate: false
+ xy: 200, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18753
+ rotate: false
+ xy: 968, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18769
+ rotate: false
+ xy: 968, 240
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18770
+ rotate: false
+ xy: 266, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18773
+ rotate: false
+ xy: 300, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18782
+ rotate: false
+ xy: 366, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18784
+ rotate: false
+ xy: 432, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18787
+ rotate: false
+ xy: 498, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18800
+ rotate: false
+ xy: 564, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18801
+ rotate: false
+ xy: 630, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18875
+ rotate: false
+ xy: 664, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18876
+ rotate: false
+ xy: 698, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18877
+ rotate: false
+ xy: 732, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18878
+ rotate: false
+ xy: 766, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18879
+ rotate: false
+ xy: 800, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18880
+ rotate: false
+ xy: 834, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18881
+ rotate: false
+ xy: 900, 206
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18882
+ rotate: false
+ xy: 966, 206
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18883
+ rotate: false
+ xy: 2, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18884
+ rotate: false
+ xy: 36, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18885
+ rotate: false
+ xy: 102, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18886
+ rotate: false
+ xy: 168, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18887
+ rotate: false
+ xy: 202, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18888
+ rotate: false
+ xy: 236, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18889
+ rotate: false
+ xy: 302, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18890
+ rotate: false
+ xy: 368, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18891
+ rotate: false
+ xy: 402, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18892
+ rotate: false
+ xy: 436, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18893
+ rotate: false
+ xy: 502, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18894
+ rotate: false
+ xy: 568, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18895
+ rotate: false
+ xy: 602, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18896
+ rotate: false
+ xy: 636, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18897
+ rotate: false
+ xy: 702, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18898
+ rotate: false
+ xy: 768, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18899
+ rotate: false
+ xy: 802, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18900
+ rotate: false
+ xy: 836, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18901
+ rotate: false
+ xy: 902, 172
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18902
+ rotate: false
+ xy: 968, 172
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18903
+ rotate: false
+ xy: 2, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18904
+ rotate: false
+ xy: 36, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18905
+ rotate: false
+ xy: 102, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18906
+ rotate: false
+ xy: 168, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18907
+ rotate: false
+ xy: 202, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18908
+ rotate: false
+ xy: 236, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18909
+ rotate: false
+ xy: 302, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18910
+ rotate: false
+ xy: 368, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18911
+ rotate: false
+ xy: 402, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18959
+ rotate: false
+ xy: 402, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18914
+ rotate: false
+ xy: 468, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18962
+ rotate: false
+ xy: 468, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18915
+ rotate: false
+ xy: 502, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18963
+ rotate: false
+ xy: 502, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18918
+ rotate: false
+ xy: 568, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18966
+ rotate: false
+ xy: 568, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18919
+ rotate: false
+ xy: 602, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18967
+ rotate: false
+ xy: 602, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18922
+ rotate: false
+ xy: 668, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18970
+ rotate: false
+ xy: 668, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18923
+ rotate: false
+ xy: 702, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18971
+ rotate: false
+ xy: 702, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18944
+ rotate: false
+ xy: 768, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18945
+ rotate: false
+ xy: 834, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18948
+ rotate: false
+ xy: 868, 138
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18949
+ rotate: false
+ xy: 934, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18952
+ rotate: false
+ xy: 2, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18953
+ rotate: false
+ xy: 968, 138
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18956
+ rotate: false
+ xy: 68, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+18957
+ rotate: false
+ xy: 134, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18958
+ rotate: false
+ xy: 168, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18994
+ rotate: false
+ xy: 202, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18997
+ rotate: false
+ xy: 236, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+18998
+ rotate: false
+ xy: 270, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19023
+ rotate: false
+ xy: 304, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19024
+ rotate: false
+ xy: 338, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19025
+ rotate: false
+ xy: 404, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19026
+ rotate: false
+ xy: 470, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19027
+ rotate: false
+ xy: 504, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19028
+ rotate: false
+ xy: 538, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19029
+ rotate: false
+ xy: 604, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19030
+ rotate: false
+ xy: 670, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19031
+ rotate: false
+ xy: 704, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19032
+ rotate: false
+ xy: 738, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19033
+ rotate: false
+ xy: 804, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19034
+ rotate: false
+ xy: 870, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19035
+ rotate: false
+ xy: 904, 104
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19036
+ rotate: false
+ xy: 938, 104
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19037
+ rotate: false
+ xy: 2, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19038
+ rotate: false
+ xy: 68, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19047
+ rotate: false
+ xy: 102, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19048
+ rotate: false
+ xy: 136, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19051
+ rotate: false
+ xy: 202, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19052
+ rotate: false
+ xy: 236, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19055
+ rotate: false
+ xy: 302, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19056
+ rotate: false
+ xy: 336, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19059
+ rotate: false
+ xy: 402, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19060
+ rotate: false
+ xy: 436, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19064
+ rotate: false
+ xy: 502, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19065
+ rotate: false
+ xy: 568, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19066
+ rotate: false
+ xy: 634, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19068
+ rotate: false
+ xy: 668, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19069
+ rotate: false
+ xy: 734, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19070
+ rotate: false
+ xy: 800, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19072
+ rotate: false
+ xy: 834, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19073
+ rotate: false
+ xy: 900, 70
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19074
+ rotate: false
+ xy: 966, 70
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19076
+ rotate: false
+ xy: 2, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19077
+ rotate: false
+ xy: 68, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19078
+ rotate: false
+ xy: 134, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19079
+ rotate: false
+ xy: 168, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19080
+ rotate: false
+ xy: 202, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19081
+ rotate: false
+ xy: 268, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19082
+ rotate: false
+ xy: 334, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19083
+ rotate: false
+ xy: 368, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19084
+ rotate: false
+ xy: 402, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19085
+ rotate: false
+ xy: 468, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19086
+ rotate: false
+ xy: 534, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19087
+ rotate: false
+ xy: 568, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19088
+ rotate: false
+ xy: 602, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19091
+ rotate: false
+ xy: 668, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19092
+ rotate: false
+ xy: 702, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19095
+ rotate: false
+ xy: 768, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19096
+ rotate: false
+ xy: 802, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19097
+ rotate: false
+ xy: 868, 36
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19098
+ rotate: false
+ xy: 934, 36
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19099
+ rotate: false
+ xy: 2, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19100
+ rotate: false
+ xy: 36, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19101
+ rotate: false
+ xy: 102, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19102
+ rotate: false
+ xy: 168, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19104
+ rotate: false
+ xy: 202, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19105
+ rotate: false
+ xy: 268, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19106
+ rotate: false
+ xy: 334, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19108
+ rotate: false
+ xy: 368, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19109
+ rotate: false
+ xy: 434, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19110
+ rotate: false
+ xy: 500, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19112
+ rotate: false
+ xy: 534, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19113
+ rotate: false
+ xy: 600, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19114
+ rotate: false
+ xy: 666, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19116
+ rotate: false
+ xy: 700, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19117
+ rotate: false
+ xy: 766, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19118
+ rotate: false
+ xy: 832, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19119
+ rotate: false
+ xy: 866, 2
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19120
+ rotate: false
+ xy: 900, 2
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+21732
+ rotate: false
+ xy: 1002, 766
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21735
+ rotate: false
+ xy: 1002, 714
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21736
+ rotate: false
+ xy: 1002, 662
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21739
+ rotate: false
+ xy: 1002, 610
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21740
+ rotate: false
+ xy: 1002, 558
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21743
+ rotate: false
+ xy: 1002, 506
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21744
+ rotate: false
+ xy: 1002, 454
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21747
+ rotate: false
+ xy: 1002, 402
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21748
+ rotate: false
+ xy: 1002, 350
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21751
+ rotate: false
+ xy: 1002, 298
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21752
+ rotate: false
+ xy: 1002, 246
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21755
+ rotate: false
+ xy: 1002, 194
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21756
+ rotate: false
+ xy: 1002, 142
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21759
+ rotate: false
+ xy: 1004, 90
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21760
+ rotate: false
+ xy: 1000, 38
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+960
+ rotate: false
+ xy: 968, 23
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+
+images92.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+1000
+ rotate: false
+ xy: 553, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1003
+ rotate: false
+ xy: 605, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1004
+ rotate: false
+ xy: 657, 244
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1005
+ rotate: false
+ xy: 684, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1008
+ rotate: false
+ xy: 763, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1026
+ rotate: false
+ xy: 736, 244
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10444
+ rotate: false
+ xy: 736, 244
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1027
+ rotate: false
+ xy: 815, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10445
+ rotate: false
+ xy: 815, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1030
+ rotate: false
+ xy: 867, 229
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10448
+ rotate: false
+ xy: 867, 229
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1031
+ rotate: false
+ xy: 919, 229
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10449
+ rotate: false
+ xy: 919, 229
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1032
+ rotate: false
+ xy: 946, 229
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10450
+ rotate: false
+ xy: 946, 229
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1033
+ rotate: false
+ xy: 29, 200
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10451
+ rotate: false
+ xy: 29, 200
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1036
+ rotate: false
+ xy: 81, 200
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10454
+ rotate: false
+ xy: 81, 200
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1037
+ rotate: false
+ xy: 973, 211
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10455
+ rotate: false
+ xy: 973, 211
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1038
+ rotate: false
+ xy: 2, 203
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10456
+ rotate: false
+ xy: 2, 203
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1039
+ rotate: false
+ xy: 133, 200
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10457
+ rotate: false
+ xy: 133, 200
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1042
+ rotate: false
+ xy: 185, 200
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10460
+ rotate: false
+ xy: 185, 200
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1043
+ rotate: false
+ xy: 237, 200
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10461
+ rotate: false
+ xy: 237, 200
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1044
+ rotate: false
+ xy: 264, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10462
+ rotate: false
+ xy: 264, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1047
+ rotate: false
+ xy: 316, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10465
+ rotate: false
+ xy: 316, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1101
+ rotate: false
+ xy: 368, 197
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1102
+ rotate: false
+ xy: 395, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1105
+ rotate: false
+ xy: 447, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1106
+ rotate: false
+ xy: 499, 197
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1107
+ rotate: false
+ xy: 526, 197
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1108
+ rotate: false
+ xy: 553, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1111
+ rotate: false
+ xy: 605, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1112
+ rotate: false
+ xy: 657, 197
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1113
+ rotate: false
+ xy: 684, 197
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1114
+ rotate: false
+ xy: 711, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1117
+ rotate: false
+ xy: 763, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1118
+ rotate: false
+ xy: 815, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1119
+ rotate: false
+ xy: 861, 182
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1122
+ rotate: false
+ xy: 913, 182
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1128
+ rotate: false
+ xy: 965, 164
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1129
+ rotate: false
+ xy: 29, 153
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1132
+ rotate: false
+ xy: 81, 153
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1133
+ rotate: false
+ xy: 2, 156
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1134
+ rotate: false
+ xy: 992, 154
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1135
+ rotate: false
+ xy: 133, 153
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1138
+ rotate: false
+ xy: 185, 153
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1139
+ rotate: false
+ xy: 237, 153
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1140
+ rotate: false
+ xy: 264, 150
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1141
+ rotate: false
+ xy: 291, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1144
+ rotate: false
+ xy: 343, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1145
+ rotate: false
+ xy: 395, 150
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1146
+ rotate: false
+ xy: 422, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1149
+ rotate: false
+ xy: 474, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1155
+ rotate: false
+ xy: 526, 150
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1156
+ rotate: false
+ xy: 553, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1159
+ rotate: false
+ xy: 605, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1160
+ rotate: false
+ xy: 657, 150
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1161
+ rotate: false
+ xy: 684, 150
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1162
+ rotate: false
+ xy: 711, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1165
+ rotate: false
+ xy: 763, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1166
+ rotate: false
+ xy: 815, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1167
+ rotate: false
+ xy: 842, 135
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1168
+ rotate: false
+ xy: 869, 135
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1171
+ rotate: false
+ xy: 29, 106
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1172
+ rotate: false
+ xy: 921, 135
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1173
+ rotate: false
+ xy: 81, 106
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1176
+ rotate: false
+ xy: 133, 106
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1182
+ rotate: false
+ xy: 948, 117
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1183
+ rotate: false
+ xy: 185, 106
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1186
+ rotate: false
+ xy: 264, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1187
+ rotate: false
+ xy: 2, 109
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1188
+ rotate: false
+ xy: 975, 107
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1189
+ rotate: false
+ xy: 316, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1192
+ rotate: false
+ xy: 368, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1193
+ rotate: false
+ xy: 237, 106
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1194
+ rotate: false
+ xy: 420, 103
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1195
+ rotate: false
+ xy: 447, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1198
+ rotate: false
+ xy: 499, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1199
+ rotate: false
+ xy: 551, 103
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1200
+ rotate: false
+ xy: 578, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1203
+ rotate: false
+ xy: 630, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1209
+ rotate: false
+ xy: 682, 103
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1210
+ rotate: false
+ xy: 709, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1213
+ rotate: false
+ xy: 761, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1214
+ rotate: false
+ xy: 813, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1215
+ rotate: false
+ xy: 840, 88
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1216
+ rotate: false
+ xy: 867, 88
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1219
+ rotate: false
+ xy: 29, 59
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1220
+ rotate: false
+ xy: 919, 88
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1221
+ rotate: false
+ xy: 946, 70
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1222
+ rotate: false
+ xy: 81, 59
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1225
+ rotate: false
+ xy: 133, 59
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1226
+ rotate: false
+ xy: 2, 62
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1227
+ rotate: false
+ xy: 185, 59
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1230
+ rotate: false
+ xy: 264, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1236
+ rotate: false
+ xy: 973, 60
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1237
+ rotate: false
+ xy: 316, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1240
+ rotate: false
+ xy: 368, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1241
+ rotate: false
+ xy: 237, 59
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1242
+ rotate: false
+ xy: 420, 56
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1243
+ rotate: false
+ xy: 447, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1246
+ rotate: false
+ xy: 499, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1247
+ rotate: false
+ xy: 551, 56
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1248
+ rotate: false
+ xy: 578, 56
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1249
+ rotate: false
+ xy: 605, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1252
+ rotate: false
+ xy: 657, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1253
+ rotate: false
+ xy: 709, 56
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1254
+ rotate: false
+ xy: 755, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1257
+ rotate: false
+ xy: 834, 41
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1263
+ rotate: false
+ xy: 807, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1264
+ rotate: false
+ xy: 886, 41
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1267
+ rotate: false
+ xy: 29, 12
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1268
+ rotate: false
+ xy: 938, 23
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1269
+ rotate: false
+ xy: 2, 15
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1270
+ rotate: false
+ xy: 81, 12
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1273
+ rotate: false
+ xy: 133, 12
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1274
+ rotate: false
+ xy: 965, 13
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1275
+ rotate: false
+ xy: 185, 12
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1276
+ rotate: false
+ xy: 212, 12
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1279
+ rotate: false
+ xy: 264, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1280
+ rotate: false
+ xy: 316, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1281
+ rotate: false
+ xy: 343, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1284
+ rotate: false
+ xy: 395, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1289
+ rotate: false
+ xy: 447, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1290
+ rotate: false
+ xy: 474, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1293
+ rotate: false
+ xy: 526, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1294
+ rotate: false
+ xy: 578, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1295
+ rotate: false
+ xy: 605, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1296
+ rotate: false
+ xy: 632, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1300
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10257
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13346
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17870
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17896
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17897
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19458
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19761
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19891
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19995
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22526
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22552
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22578
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22579
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22604
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22605
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22657
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22682
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22708
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22735
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22761
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23324
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23376
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23480
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23532
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23584
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23610
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23611
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3648
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4256
+ rotate: false
+ xy: 684, 9
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1301
+ rotate: false
+ xy: 711, 4
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+1302
+ rotate: false
+ xy: 738, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1306
+ rotate: false
+ xy: 992, 3
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+18215
+ rotate: false
+ xy: 554, 338
+ size: 54, 35
+ orig: 54, 35
+ offset: 0, 0
+ index: -1
+18219
+ rotate: false
+ xy: 610, 338
+ size: 54, 35
+ orig: 54, 35
+ offset: 0, 0
+ index: -1
+18223
+ rotate: false
+ xy: 666, 338
+ size: 54, 35
+ orig: 54, 35
+ offset: 0, 0
+ index: -1
+18227
+ rotate: false
+ xy: 722, 338
+ size: 54, 35
+ orig: 54, 35
+ offset: 0, 0
+ index: -1
+19121
+ rotate: false
+ xy: 2, 987
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19122
+ rotate: false
+ xy: 68, 987
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19123
+ rotate: false
+ xy: 102, 987
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19124
+ rotate: false
+ xy: 136, 987
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19125
+ rotate: false
+ xy: 202, 987
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19126
+ rotate: false
+ xy: 268, 987
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19127
+ rotate: false
+ xy: 302, 987
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19128
+ rotate: false
+ xy: 336, 987
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19131
+ rotate: false
+ xy: 402, 987
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19132
+ rotate: false
+ xy: 436, 987
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19135
+ rotate: false
+ xy: 502, 987
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19136
+ rotate: false
+ xy: 536, 987
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19137
+ rotate: false
+ xy: 602, 987
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19138
+ rotate: false
+ xy: 668, 987
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19139
+ rotate: false
+ xy: 702, 987
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19140
+ rotate: false
+ xy: 736, 987
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19141
+ rotate: false
+ xy: 802, 987
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19142
+ rotate: false
+ xy: 868, 987
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19151
+ rotate: false
+ xy: 902, 987
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19152
+ rotate: false
+ xy: 936, 987
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19155
+ rotate: false
+ xy: 2, 953
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19156
+ rotate: false
+ xy: 36, 953
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19168
+ rotate: false
+ xy: 102, 953
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19169
+ rotate: false
+ xy: 168, 953
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19170
+ rotate: false
+ xy: 234, 953
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19172
+ rotate: false
+ xy: 268, 953
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19173
+ rotate: false
+ xy: 334, 953
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19174
+ rotate: false
+ xy: 400, 953
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19176
+ rotate: false
+ xy: 434, 953
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19177
+ rotate: false
+ xy: 500, 953
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19178
+ rotate: false
+ xy: 566, 953
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19180
+ rotate: false
+ xy: 600, 953
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19181
+ rotate: false
+ xy: 666, 953
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19182
+ rotate: false
+ xy: 732, 953
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19191
+ rotate: false
+ xy: 766, 953
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19192
+ rotate: false
+ xy: 800, 953
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19195
+ rotate: false
+ xy: 866, 953
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19196
+ rotate: false
+ xy: 900, 953
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19207
+ rotate: false
+ xy: 966, 953
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19208
+ rotate: false
+ xy: 2, 919
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19209
+ rotate: false
+ xy: 68, 919
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19210
+ rotate: false
+ xy: 134, 919
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19211
+ rotate: false
+ xy: 168, 919
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19212
+ rotate: false
+ xy: 202, 919
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19213
+ rotate: false
+ xy: 268, 919
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19214
+ rotate: false
+ xy: 334, 919
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19215
+ rotate: false
+ xy: 368, 919
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19216
+ rotate: false
+ xy: 402, 919
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19217
+ rotate: false
+ xy: 468, 919
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19218
+ rotate: false
+ xy: 534, 919
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19219
+ rotate: false
+ xy: 568, 919
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19220
+ rotate: false
+ xy: 602, 919
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19221
+ rotate: false
+ xy: 668, 919
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19222
+ rotate: false
+ xy: 734, 919
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19223
+ rotate: false
+ xy: 768, 919
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19224
+ rotate: false
+ xy: 802, 919
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19225
+ rotate: false
+ xy: 868, 919
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19226
+ rotate: false
+ xy: 934, 919
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19227
+ rotate: false
+ xy: 968, 919
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19228
+ rotate: false
+ xy: 2, 885
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19229
+ rotate: false
+ xy: 68, 885
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19230
+ rotate: false
+ xy: 134, 885
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19231
+ rotate: false
+ xy: 168, 885
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19232
+ rotate: false
+ xy: 202, 885
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19233
+ rotate: false
+ xy: 268, 885
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19234
+ rotate: false
+ xy: 334, 885
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19235
+ rotate: false
+ xy: 368, 885
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19236
+ rotate: false
+ xy: 402, 885
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19237
+ rotate: false
+ xy: 468, 885
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19238
+ rotate: false
+ xy: 534, 885
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19239
+ rotate: false
+ xy: 568, 885
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19240
+ rotate: false
+ xy: 602, 885
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19241
+ rotate: false
+ xy: 668, 885
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19242
+ rotate: false
+ xy: 734, 885
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19243
+ rotate: false
+ xy: 768, 885
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19244
+ rotate: false
+ xy: 802, 885
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19245
+ rotate: false
+ xy: 868, 885
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19246
+ rotate: false
+ xy: 934, 885
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19247
+ rotate: false
+ xy: 968, 885
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19248
+ rotate: false
+ xy: 2, 851
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19249
+ rotate: false
+ xy: 68, 851
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19250
+ rotate: false
+ xy: 134, 851
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19251
+ rotate: false
+ xy: 168, 851
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19252
+ rotate: false
+ xy: 202, 851
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19253
+ rotate: false
+ xy: 268, 851
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19254
+ rotate: false
+ xy: 334, 851
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19255
+ rotate: false
+ xy: 368, 851
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19256
+ rotate: false
+ xy: 402, 851
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19257
+ rotate: false
+ xy: 468, 851
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19258
+ rotate: false
+ xy: 534, 851
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19259
+ rotate: false
+ xy: 568, 851
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19260
+ rotate: false
+ xy: 602, 851
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19261
+ rotate: false
+ xy: 668, 851
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19262
+ rotate: false
+ xy: 734, 851
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19263
+ rotate: false
+ xy: 768, 851
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19264
+ rotate: false
+ xy: 802, 851
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19265
+ rotate: false
+ xy: 868, 851
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19266
+ rotate: false
+ xy: 934, 851
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19267
+ rotate: false
+ xy: 968, 851
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19268
+ rotate: false
+ xy: 2, 817
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19269
+ rotate: false
+ xy: 68, 817
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19270
+ rotate: false
+ xy: 134, 817
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19271
+ rotate: false
+ xy: 168, 817
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19272
+ rotate: false
+ xy: 202, 817
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19273
+ rotate: false
+ xy: 268, 817
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19274
+ rotate: false
+ xy: 334, 817
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19275
+ rotate: false
+ xy: 368, 817
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19276
+ rotate: false
+ xy: 402, 817
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19277
+ rotate: false
+ xy: 468, 817
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19278
+ rotate: false
+ xy: 534, 817
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19279
+ rotate: false
+ xy: 568, 817
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19280
+ rotate: false
+ xy: 602, 817
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19281
+ rotate: false
+ xy: 668, 817
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19282
+ rotate: false
+ xy: 734, 817
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19283
+ rotate: false
+ xy: 768, 817
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19284
+ rotate: false
+ xy: 802, 817
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19285
+ rotate: false
+ xy: 868, 817
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19286
+ rotate: false
+ xy: 934, 817
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19287
+ rotate: false
+ xy: 968, 817
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19288
+ rotate: false
+ xy: 2, 783
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19289
+ rotate: false
+ xy: 68, 783
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19290
+ rotate: false
+ xy: 134, 783
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19291
+ rotate: false
+ xy: 168, 783
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19292
+ rotate: false
+ xy: 202, 783
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19293
+ rotate: false
+ xy: 268, 783
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19294
+ rotate: false
+ xy: 334, 783
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19295
+ rotate: false
+ xy: 368, 783
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19296
+ rotate: false
+ xy: 402, 783
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19297
+ rotate: false
+ xy: 468, 783
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19298
+ rotate: false
+ xy: 534, 783
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19299
+ rotate: false
+ xy: 568, 783
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19300
+ rotate: false
+ xy: 602, 783
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19301
+ rotate: false
+ xy: 668, 783
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19302
+ rotate: false
+ xy: 734, 783
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19303
+ rotate: false
+ xy: 768, 783
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19304
+ rotate: false
+ xy: 802, 783
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19305
+ rotate: false
+ xy: 868, 783
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19306
+ rotate: false
+ xy: 934, 783
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19307
+ rotate: false
+ xy: 968, 783
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19308
+ rotate: false
+ xy: 2, 749
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19309
+ rotate: false
+ xy: 68, 749
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19310
+ rotate: false
+ xy: 134, 749
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19311
+ rotate: false
+ xy: 168, 749
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19312
+ rotate: false
+ xy: 202, 749
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19313
+ rotate: false
+ xy: 268, 749
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19314
+ rotate: false
+ xy: 334, 749
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19315
+ rotate: false
+ xy: 368, 749
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19316
+ rotate: false
+ xy: 402, 749
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19317
+ rotate: false
+ xy: 468, 749
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19318
+ rotate: false
+ xy: 534, 749
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19319
+ rotate: false
+ xy: 568, 749
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19320
+ rotate: false
+ xy: 602, 749
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19321
+ rotate: false
+ xy: 668, 749
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19322
+ rotate: false
+ xy: 734, 749
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19323
+ rotate: false
+ xy: 768, 749
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19324
+ rotate: false
+ xy: 802, 749
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19325
+ rotate: false
+ xy: 868, 749
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19326
+ rotate: false
+ xy: 934, 749
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19327
+ rotate: false
+ xy: 968, 749
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19328
+ rotate: false
+ xy: 2, 715
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19329
+ rotate: false
+ xy: 68, 715
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19330
+ rotate: false
+ xy: 134, 715
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19331
+ rotate: false
+ xy: 168, 715
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19332
+ rotate: false
+ xy: 202, 715
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19333
+ rotate: false
+ xy: 268, 715
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19334
+ rotate: false
+ xy: 334, 715
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19335
+ rotate: false
+ xy: 368, 715
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19336
+ rotate: false
+ xy: 402, 715
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19337
+ rotate: false
+ xy: 468, 715
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19338
+ rotate: false
+ xy: 534, 715
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19339
+ rotate: false
+ xy: 568, 715
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19340
+ rotate: false
+ xy: 602, 715
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19341
+ rotate: false
+ xy: 668, 715
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19342
+ rotate: false
+ xy: 734, 715
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19343
+ rotate: false
+ xy: 768, 715
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19344
+ rotate: false
+ xy: 802, 715
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19345
+ rotate: false
+ xy: 868, 715
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19346
+ rotate: false
+ xy: 934, 715
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19347
+ rotate: false
+ xy: 968, 715
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19348
+ rotate: false
+ xy: 2, 681
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19349
+ rotate: false
+ xy: 68, 681
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19350
+ rotate: false
+ xy: 134, 681
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19351
+ rotate: false
+ xy: 168, 681
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19352
+ rotate: false
+ xy: 202, 681
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19353
+ rotate: false
+ xy: 268, 681
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19354
+ rotate: false
+ xy: 334, 681
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19355
+ rotate: false
+ xy: 368, 681
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19356
+ rotate: false
+ xy: 402, 681
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19357
+ rotate: false
+ xy: 468, 681
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19358
+ rotate: false
+ xy: 534, 681
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19359
+ rotate: false
+ xy: 568, 681
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19360
+ rotate: false
+ xy: 602, 681
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19361
+ rotate: false
+ xy: 668, 681
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19362
+ rotate: false
+ xy: 734, 681
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19363
+ rotate: false
+ xy: 768, 681
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19364
+ rotate: false
+ xy: 802, 681
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19365
+ rotate: false
+ xy: 868, 681
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19366
+ rotate: false
+ xy: 934, 681
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19367
+ rotate: false
+ xy: 968, 681
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19368
+ rotate: false
+ xy: 2, 647
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19369
+ rotate: false
+ xy: 68, 647
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19370
+ rotate: false
+ xy: 134, 647
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19371
+ rotate: false
+ xy: 168, 647
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19372
+ rotate: false
+ xy: 202, 647
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19373
+ rotate: false
+ xy: 268, 647
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19374
+ rotate: false
+ xy: 334, 647
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19375
+ rotate: false
+ xy: 368, 647
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19376
+ rotate: false
+ xy: 402, 647
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19377
+ rotate: false
+ xy: 468, 647
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19378
+ rotate: false
+ xy: 534, 647
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19379
+ rotate: false
+ xy: 568, 647
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19380
+ rotate: false
+ xy: 602, 647
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19381
+ rotate: false
+ xy: 668, 647
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19382
+ rotate: false
+ xy: 734, 647
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19383
+ rotate: false
+ xy: 768, 647
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19384
+ rotate: false
+ xy: 802, 647
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19385
+ rotate: false
+ xy: 868, 647
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19386
+ rotate: false
+ xy: 934, 647
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19387
+ rotate: false
+ xy: 968, 647
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19388
+ rotate: false
+ xy: 2, 613
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19389
+ rotate: false
+ xy: 68, 613
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19390
+ rotate: false
+ xy: 134, 613
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19391
+ rotate: false
+ xy: 168, 613
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19392
+ rotate: false
+ xy: 202, 613
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19393
+ rotate: false
+ xy: 268, 613
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19394
+ rotate: false
+ xy: 334, 613
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19395
+ rotate: false
+ xy: 368, 613
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19396
+ rotate: false
+ xy: 402, 613
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19397
+ rotate: false
+ xy: 468, 613
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19398
+ rotate: false
+ xy: 534, 613
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19399
+ rotate: false
+ xy: 568, 613
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19400
+ rotate: false
+ xy: 602, 613
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19401
+ rotate: false
+ xy: 668, 613
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19402
+ rotate: false
+ xy: 734, 613
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19403
+ rotate: false
+ xy: 768, 613
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19404
+ rotate: false
+ xy: 802, 613
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19405
+ rotate: false
+ xy: 868, 613
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19406
+ rotate: false
+ xy: 934, 613
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19407
+ rotate: false
+ xy: 968, 613
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19408
+ rotate: false
+ xy: 2, 579
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19409
+ rotate: false
+ xy: 68, 579
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19410
+ rotate: false
+ xy: 134, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19411
+ rotate: false
+ xy: 168, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19412
+ rotate: false
+ xy: 202, 579
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19413
+ rotate: false
+ xy: 268, 579
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+19414
+ rotate: false
+ xy: 334, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+19473
+ rotate: false
+ xy: 368, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2000
+ rotate: false
+ xy: 790, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20066
+ rotate: false
+ xy: 402, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20067
+ rotate: false
+ xy: 436, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20068
+ rotate: false
+ xy: 470, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20167
+ rotate: false
+ xy: 504, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20233
+ rotate: false
+ xy: 538, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20238
+ rotate: false
+ xy: 572, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20239
+ rotate: false
+ xy: 606, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20266
+ rotate: false
+ xy: 640, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20293
+ rotate: false
+ xy: 674, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20320
+ rotate: false
+ xy: 708, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20347
+ rotate: false
+ xy: 742, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20374
+ rotate: false
+ xy: 776, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20406
+ rotate: false
+ xy: 810, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20433
+ rotate: false
+ xy: 844, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20460
+ rotate: false
+ xy: 878, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20504
+ rotate: false
+ xy: 912, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20505
+ rotate: false
+ xy: 946, 579
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20506
+ rotate: false
+ xy: 980, 571
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20507
+ rotate: false
+ xy: 2, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20508
+ rotate: false
+ xy: 36, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20509
+ rotate: false
+ xy: 70, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20536
+ rotate: false
+ xy: 104, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20563
+ rotate: false
+ xy: 138, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20590
+ rotate: false
+ xy: 172, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20617
+ rotate: false
+ xy: 206, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20644
+ rotate: false
+ xy: 240, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20671
+ rotate: false
+ xy: 274, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20698
+ rotate: false
+ xy: 308, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20725
+ rotate: false
+ xy: 342, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20752
+ rotate: false
+ xy: 376, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20779
+ rotate: false
+ xy: 410, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20806
+ rotate: false
+ xy: 444, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20833
+ rotate: false
+ xy: 478, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20860
+ rotate: false
+ xy: 512, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20887
+ rotate: false
+ xy: 546, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20914
+ rotate: false
+ xy: 580, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20941
+ rotate: false
+ xy: 614, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20968
+ rotate: false
+ xy: 648, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+20995
+ rotate: false
+ xy: 682, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21022
+ rotate: false
+ xy: 716, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21049
+ rotate: false
+ xy: 750, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21076
+ rotate: false
+ xy: 784, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21103
+ rotate: false
+ xy: 818, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21130
+ rotate: false
+ xy: 852, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21157
+ rotate: false
+ xy: 886, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21184
+ rotate: false
+ xy: 920, 545
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21211
+ rotate: false
+ xy: 954, 537
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21238
+ rotate: false
+ xy: 988, 537
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21265
+ rotate: false
+ xy: 2, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21292
+ rotate: false
+ xy: 36, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21319
+ rotate: false
+ xy: 70, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21346
+ rotate: false
+ xy: 104, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21373
+ rotate: false
+ xy: 138, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21400
+ rotate: false
+ xy: 172, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21427
+ rotate: false
+ xy: 206, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21454
+ rotate: false
+ xy: 240, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21481
+ rotate: false
+ xy: 274, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21508
+ rotate: false
+ xy: 308, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21535
+ rotate: false
+ xy: 342, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21562
+ rotate: false
+ xy: 376, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21589
+ rotate: false
+ xy: 410, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21616
+ rotate: false
+ xy: 444, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21643
+ rotate: false
+ xy: 478, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21670
+ rotate: false
+ xy: 512, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21697
+ rotate: false
+ xy: 546, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+21763
+ rotate: false
+ xy: 1002, 969
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21764
+ rotate: false
+ xy: 1002, 917
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21767
+ rotate: false
+ xy: 1002, 865
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21768
+ rotate: false
+ xy: 1002, 813
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21771
+ rotate: false
+ xy: 1002, 761
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21772
+ rotate: false
+ xy: 1002, 709
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21775
+ rotate: false
+ xy: 1002, 657
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21776
+ rotate: false
+ xy: 1002, 605
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21779
+ rotate: false
+ xy: 1002, 451
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21780
+ rotate: false
+ xy: 1002, 352
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21783
+ rotate: false
+ xy: 1003, 253
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21784
+ rotate: false
+ xy: 1000, 201
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21787
+ rotate: false
+ xy: 842, 185
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21788
+ rotate: false
+ xy: 1002, 102
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21791
+ rotate: false
+ xy: 736, 51
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+21854
+ rotate: false
+ xy: 778, 331
+ size: 34, 42
+ orig: 34, 42
+ offset: 0, 0
+ index: -1
+21855
+ rotate: false
+ xy: 814, 331
+ size: 34, 42
+ orig: 34, 42
+ offset: 0, 0
+ index: -1
+21858
+ rotate: false
+ xy: 850, 331
+ size: 34, 42
+ orig: 34, 42
+ offset: 0, 0
+ index: -1
+21859
+ rotate: false
+ xy: 886, 323
+ size: 34, 42
+ orig: 34, 42
+ offset: 0, 0
+ index: -1
+21862
+ rotate: false
+ xy: 922, 323
+ size: 34, 42
+ orig: 34, 42
+ offset: 0, 0
+ index: -1
+21863
+ rotate: false
+ xy: 958, 323
+ size: 34, 42
+ orig: 34, 42
+ offset: 0, 0
+ index: -1
+21866
+ rotate: false
+ xy: 2, 297
+ size: 34, 42
+ orig: 34, 42
+ offset: 0, 0
+ index: -1
+21969
+ rotate: false
+ xy: 580, 511
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+21970
+ rotate: false
+ xy: 646, 511
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+21971
+ rotate: false
+ xy: 712, 511
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+21972
+ rotate: false
+ xy: 778, 511
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+21973
+ rotate: false
+ xy: 844, 511
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+21974
+ rotate: false
+ xy: 944, 503
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+21975
+ rotate: false
+ xy: 2, 477
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+21976
+ rotate: false
+ xy: 68, 477
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+21977
+ rotate: false
+ xy: 134, 477
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+21978
+ rotate: false
+ xy: 200, 477
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+21979
+ rotate: false
+ xy: 266, 477
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+21980
+ rotate: false
+ xy: 332, 477
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22033
+ rotate: false
+ xy: 910, 511
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22034
+ rotate: false
+ xy: 398, 477
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22039
+ rotate: false
+ xy: 432, 477
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22073
+ rotate: false
+ xy: 466, 477
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22074
+ rotate: false
+ xy: 500, 477
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22075
+ rotate: false
+ xy: 534, 477
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22076
+ rotate: false
+ xy: 568, 477
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22078
+ rotate: false
+ xy: 602, 477
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22079
+ rotate: false
+ xy: 636, 477
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22080
+ rotate: false
+ xy: 702, 477
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22081
+ rotate: false
+ xy: 768, 477
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22082
+ rotate: false
+ xy: 802, 477
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22083
+ rotate: false
+ xy: 836, 477
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22084
+ rotate: false
+ xy: 936, 469
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22085
+ rotate: false
+ xy: 902, 477
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22086
+ rotate: false
+ xy: 2, 443
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22087
+ rotate: false
+ xy: 36, 443
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22088
+ rotate: false
+ xy: 102, 443
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22089
+ rotate: false
+ xy: 168, 443
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22090
+ rotate: false
+ xy: 202, 443
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22091
+ rotate: false
+ xy: 236, 443
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22092
+ rotate: false
+ xy: 302, 443
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22093
+ rotate: false
+ xy: 368, 443
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22105
+ rotate: false
+ xy: 402, 443
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22114
+ rotate: false
+ xy: 468, 443
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22121
+ rotate: false
+ xy: 534, 443
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22123
+ rotate: false
+ xy: 600, 443
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22130
+ rotate: false
+ xy: 666, 443
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22132
+ rotate: false
+ xy: 732, 443
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22139
+ rotate: false
+ xy: 798, 443
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22141
+ rotate: false
+ xy: 864, 443
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22148
+ rotate: false
+ xy: 930, 435
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22150
+ rotate: false
+ xy: 2, 409
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22157
+ rotate: false
+ xy: 68, 409
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22159
+ rotate: false
+ xy: 134, 409
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22166
+ rotate: false
+ xy: 200, 409
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22168
+ rotate: false
+ xy: 266, 409
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22175
+ rotate: false
+ xy: 332, 409
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22177
+ rotate: false
+ xy: 398, 409
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22184
+ rotate: false
+ xy: 464, 409
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22186
+ rotate: false
+ xy: 530, 409
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22193
+ rotate: false
+ xy: 596, 409
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22195
+ rotate: false
+ xy: 662, 409
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22238
+ rotate: false
+ xy: 728, 409
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22239
+ rotate: false
+ xy: 762, 409
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22242
+ rotate: false
+ xy: 828, 409
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22243
+ rotate: false
+ xy: 862, 409
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22246
+ rotate: false
+ xy: 928, 401
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22247
+ rotate: false
+ xy: 2, 375
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22250
+ rotate: false
+ xy: 962, 401
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22251
+ rotate: false
+ xy: 68, 375
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22476
+ rotate: false
+ xy: 134, 375
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22481
+ rotate: false
+ xy: 200, 375
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22486
+ rotate: false
+ xy: 266, 375
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22491
+ rotate: false
+ xy: 332, 375
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22498
+ rotate: false
+ xy: 398, 375
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22499
+ rotate: false
+ xy: 464, 375
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22503
+ rotate: false
+ xy: 498, 375
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22504
+ rotate: false
+ xy: 564, 375
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22508
+ rotate: false
+ xy: 598, 375
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22509
+ rotate: false
+ xy: 664, 375
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22513
+ rotate: false
+ xy: 698, 375
+ size: 64, 32
+ orig: 64, 32
+ offset: 0, 0
+ index: -1
+22514
+ rotate: false
+ xy: 764, 375
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+22802
+ rotate: false
+ xy: 1000, 50
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+23068
+ rotate: false
+ xy: 798, 375
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23069
+ rotate: false
+ xy: 832, 375
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23096
+ rotate: false
+ xy: 866, 375
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23123
+ rotate: false
+ xy: 900, 367
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23150
+ rotate: false
+ xy: 934, 367
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23177
+ rotate: false
+ xy: 968, 367
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23204
+ rotate: false
+ xy: 2, 341
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23651
+ rotate: false
+ xy: 36, 341
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23704
+ rotate: false
+ xy: 70, 341
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23730
+ rotate: false
+ xy: 104, 341
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23731
+ rotate: false
+ xy: 138, 341
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23732
+ rotate: false
+ xy: 172, 341
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23733
+ rotate: false
+ xy: 206, 341
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+23734
+ rotate: false
+ xy: 240, 341
+ size: 32, 32
+ orig: 32, 32
+ offset: 0, 0
+ index: -1
+2868
+ rotate: false
+ xy: 274, 338
+ size: 54, 35
+ orig: 54, 35
+ offset: 0, 0
+ index: -1
+2869
+ rotate: false
+ xy: 330, 338
+ size: 54, 35
+ orig: 54, 35
+ offset: 0, 0
+ index: -1
+2872
+ rotate: false
+ xy: 386, 338
+ size: 54, 35
+ orig: 54, 35
+ offset: 0, 0
+ index: -1
+2873
+ rotate: false
+ xy: 442, 338
+ size: 54, 35
+ orig: 54, 35
+ offset: 0, 0
+ index: -1
+2876
+ rotate: false
+ xy: 498, 338
+ size: 54, 35
+ orig: 54, 35
+ offset: 0, 0
+ index: -1
+916
+ rotate: false
+ xy: 38, 294
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+919
+ rotate: false
+ xy: 90, 294
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+922
+ rotate: false
+ xy: 142, 294
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+924
+ rotate: false
+ xy: 194, 294
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+927
+ rotate: false
+ xy: 273, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+934
+ rotate: false
+ xy: 325, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+937
+ rotate: false
+ xy: 377, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+940
+ rotate: false
+ xy: 429, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+943
+ rotate: false
+ xy: 481, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+946
+ rotate: false
+ xy: 533, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+949
+ rotate: false
+ xy: 585, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+951
+ rotate: false
+ xy: 637, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+954
+ rotate: false
+ xy: 689, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+961
+ rotate: false
+ xy: 768, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+964
+ rotate: false
+ xy: 820, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+965
+ rotate: false
+ xy: 996, 404
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+966
+ rotate: false
+ xy: 994, 305
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+967
+ rotate: false
+ xy: 872, 276
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+970
+ rotate: false
+ xy: 924, 276
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+971
+ rotate: false
+ xy: 246, 294
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+972
+ rotate: false
+ xy: 741, 291
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+973
+ rotate: false
+ xy: 29, 247
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+976
+ rotate: false
+ xy: 81, 247
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+977
+ rotate: false
+ xy: 976, 258
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+978
+ rotate: false
+ xy: 133, 247
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+981
+ rotate: false
+ xy: 185, 247
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+987
+ rotate: false
+ xy: 2, 250
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+988
+ rotate: false
+ xy: 264, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+991
+ rotate: false
+ xy: 316, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+992
+ rotate: false
+ xy: 237, 247
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+993
+ rotate: false
+ xy: 368, 244
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+994
+ rotate: false
+ xy: 395, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+997
+ rotate: false
+ xy: 447, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+998
+ rotate: false
+ xy: 499, 244
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+999
+ rotate: false
+ xy: 526, 244
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+
+images93.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+12001
+ rotate: false
+ xy: 989, 844
+ size: 33, 50
+ orig: 33, 50
+ offset: 0, 0
+ index: -1
+12087
+ rotate: false
+ xy: 705, 61
+ size: 27, 52
+ orig: 27, 52
+ offset: 0, 0
+ index: -1
+12088
+ rotate: false
+ xy: 732, 331
+ size: 27, 52
+ orig: 27, 52
+ offset: 0, 0
+ index: -1
+12095
+ rotate: false
+ xy: 732, 277
+ size: 27, 52
+ orig: 27, 52
+ offset: 0, 0
+ index: -1
+12096
+ rotate: false
+ xy: 732, 223
+ size: 27, 52
+ orig: 27, 52
+ offset: 0, 0
+ index: -1
+12103
+ rotate: false
+ xy: 732, 169
+ size: 27, 52
+ orig: 27, 52
+ offset: 0, 0
+ index: -1
+12719
+ rotate: false
+ xy: 797, 334
+ size: 47, 46
+ orig: 47, 46
+ offset: 0, 0
+ index: -1
+1305
+ rotate: false
+ xy: 849, 902
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1307
+ rotate: false
+ xy: 926, 949
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1310
+ rotate: false
+ xy: 2, 338
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+1492
+ rotate: false
+ xy: 678, 9
+ size: 32, 50
+ orig: 32, 50
+ offset: 0, 0
+ index: -1
+18383
+ rotate: false
+ xy: 990, 456
+ size: 32, 47
+ orig: 32, 47
+ offset: 0, 0
+ index: -1
+18385
+ rotate: false
+ xy: 990, 407
+ size: 32, 47
+ orig: 32, 47
+ offset: 0, 0
+ index: -1
+18386
+ rotate: false
+ xy: 990, 358
+ size: 32, 47
+ orig: 32, 47
+ offset: 0, 0
+ index: -1
+18388
+ rotate: false
+ xy: 990, 309
+ size: 32, 47
+ orig: 32, 47
+ offset: 0, 0
+ index: -1
+18389
+ rotate: false
+ xy: 990, 260
+ size: 32, 47
+ orig: 32, 47
+ offset: 0, 0
+ index: -1
+18391
+ rotate: false
+ xy: 990, 211
+ size: 32, 47
+ orig: 32, 47
+ offset: 0, 0
+ index: -1
+1913
+ rotate: false
+ xy: 712, 9
+ size: 32, 50
+ orig: 32, 50
+ offset: 0, 0
+ index: -1
+2001
+ rotate: false
+ xy: 79, 385
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2004
+ rotate: false
+ xy: 156, 432
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2005
+ rotate: false
+ xy: 703, 385
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2006
+ rotate: false
+ xy: 728, 432
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2007
+ rotate: false
+ xy: 233, 479
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2010
+ rotate: false
+ xy: 310, 526
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2011
+ rotate: false
+ xy: 753, 479
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2012
+ rotate: false
+ xy: 730, 385
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2013
+ rotate: false
+ xy: 387, 573
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2016
+ rotate: false
+ xy: 464, 620
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2017
+ rotate: false
+ xy: 778, 526
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2018
+ rotate: false
+ xy: 541, 667
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2021
+ rotate: false
+ xy: 618, 714
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2022
+ rotate: false
+ xy: 755, 432
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2023
+ rotate: false
+ xy: 695, 761
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2026
+ rotate: false
+ xy: 772, 808
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2027
+ rotate: false
+ xy: 757, 385
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2028
+ rotate: false
+ xy: 803, 573
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2029
+ rotate: false
+ xy: 849, 855
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2032
+ rotate: false
+ xy: 901, 902
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2033
+ rotate: false
+ xy: 780, 479
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2034
+ rotate: false
+ xy: 828, 620
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2035
+ rotate: false
+ xy: 2, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2038
+ rotate: false
+ xy: 54, 338
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2039
+ rotate: false
+ xy: 782, 432
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2040
+ rotate: false
+ xy: 131, 385
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2043
+ rotate: false
+ xy: 208, 432
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2044
+ rotate: false
+ xy: 784, 385
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2045
+ rotate: false
+ xy: 285, 479
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2048
+ rotate: false
+ xy: 362, 526
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2049
+ rotate: false
+ xy: 805, 526
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2050
+ rotate: false
+ xy: 853, 667
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2051
+ rotate: false
+ xy: 439, 573
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2054
+ rotate: false
+ xy: 516, 620
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2055
+ rotate: false
+ xy: 830, 573
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2056
+ rotate: false
+ xy: 807, 479
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2057
+ rotate: false
+ xy: 593, 667
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2060
+ rotate: false
+ xy: 670, 714
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2061
+ rotate: false
+ xy: 878, 714
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2062
+ rotate: false
+ xy: 747, 761
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2065
+ rotate: false
+ xy: 824, 808
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2066
+ rotate: false
+ xy: 855, 620
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2067
+ rotate: false
+ xy: 901, 855
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2070
+ rotate: false
+ xy: 2, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2071
+ rotate: false
+ xy: 809, 432
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2072
+ rotate: false
+ xy: 832, 526
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2073
+ rotate: false
+ xy: 54, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2076
+ rotate: false
+ xy: 106, 338
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2077
+ rotate: false
+ xy: 903, 761
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2078
+ rotate: false
+ xy: 880, 667
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2079
+ rotate: false
+ xy: 183, 385
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2082
+ rotate: false
+ xy: 260, 432
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2083
+ rotate: false
+ xy: 857, 573
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2084
+ rotate: false
+ xy: 337, 479
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2087
+ rotate: false
+ xy: 414, 526
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2088
+ rotate: false
+ xy: 834, 479
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2089
+ rotate: false
+ xy: 491, 573
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2092
+ rotate: false
+ xy: 568, 620
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2093
+ rotate: false
+ xy: 928, 808
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2094
+ rotate: false
+ xy: 905, 714
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2095
+ rotate: false
+ xy: 645, 667
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2098
+ rotate: false
+ xy: 722, 714
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2099
+ rotate: false
+ xy: 882, 620
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2100
+ rotate: false
+ xy: 859, 526
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2101
+ rotate: false
+ xy: 799, 761
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2104
+ rotate: false
+ xy: 876, 808
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2105
+ rotate: false
+ xy: 930, 761
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2106
+ rotate: false
+ xy: 2, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2109
+ rotate: false
+ xy: 54, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21890
+ rotate: false
+ xy: 978, 948
+ size: 44, 46
+ orig: 44, 46
+ offset: 0, 0
+ index: -1
+22805
+ rotate: false
+ xy: 1005, 896
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+22806
+ rotate: false
+ xy: 971, 698
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+22809
+ rotate: false
+ xy: 971, 596
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+22810
+ rotate: false
+ xy: 971, 544
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+22813
+ rotate: false
+ xy: 971, 492
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+22814
+ rotate: false
+ xy: 971, 440
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+23359
+ rotate: false
+ xy: 2, 949
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23367
+ rotate: false
+ xy: 2, 902
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23368
+ rotate: false
+ xy: 79, 949
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23373
+ rotate: false
+ xy: 2, 855
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23374
+ rotate: false
+ xy: 79, 902
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23379
+ rotate: false
+ xy: 156, 949
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23380
+ rotate: false
+ xy: 2, 808
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23384
+ rotate: false
+ xy: 79, 855
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23385
+ rotate: false
+ xy: 156, 902
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23393
+ rotate: false
+ xy: 233, 949
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23394
+ rotate: false
+ xy: 2, 761
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23399
+ rotate: false
+ xy: 79, 808
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23400
+ rotate: false
+ xy: 156, 855
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23405
+ rotate: false
+ xy: 233, 902
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23406
+ rotate: false
+ xy: 310, 949
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23410
+ rotate: false
+ xy: 2, 714
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23411
+ rotate: false
+ xy: 79, 761
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23419
+ rotate: false
+ xy: 156, 808
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23420
+ rotate: false
+ xy: 233, 855
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23425
+ rotate: false
+ xy: 310, 902
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23426
+ rotate: false
+ xy: 387, 949
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23431
+ rotate: false
+ xy: 2, 667
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23432
+ rotate: false
+ xy: 79, 714
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23436
+ rotate: false
+ xy: 156, 761
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23437
+ rotate: false
+ xy: 233, 808
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23445
+ rotate: false
+ xy: 310, 855
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23446
+ rotate: false
+ xy: 387, 902
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23451
+ rotate: false
+ xy: 464, 949
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23452
+ rotate: false
+ xy: 2, 620
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23457
+ rotate: false
+ xy: 79, 667
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23458
+ rotate: false
+ xy: 156, 714
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23462
+ rotate: false
+ xy: 233, 761
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23463
+ rotate: false
+ xy: 310, 808
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23471
+ rotate: false
+ xy: 387, 855
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23472
+ rotate: false
+ xy: 464, 902
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23477
+ rotate: false
+ xy: 541, 949
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23478
+ rotate: false
+ xy: 2, 573
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23483
+ rotate: false
+ xy: 79, 620
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23484
+ rotate: false
+ xy: 156, 667
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23488
+ rotate: false
+ xy: 233, 714
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23489
+ rotate: false
+ xy: 310, 761
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23497
+ rotate: false
+ xy: 387, 808
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23498
+ rotate: false
+ xy: 464, 855
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23503
+ rotate: false
+ xy: 541, 902
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23504
+ rotate: false
+ xy: 618, 949
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23509
+ rotate: false
+ xy: 2, 526
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23510
+ rotate: false
+ xy: 79, 573
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23514
+ rotate: false
+ xy: 156, 620
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23515
+ rotate: false
+ xy: 233, 667
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23523
+ rotate: false
+ xy: 310, 714
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23524
+ rotate: false
+ xy: 387, 761
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23529
+ rotate: false
+ xy: 464, 808
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23530
+ rotate: false
+ xy: 541, 855
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23535
+ rotate: false
+ xy: 618, 902
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23536
+ rotate: false
+ xy: 695, 949
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23540
+ rotate: false
+ xy: 2, 479
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23541
+ rotate: false
+ xy: 79, 526
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23549
+ rotate: false
+ xy: 156, 573
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23550
+ rotate: false
+ xy: 233, 620
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23555
+ rotate: false
+ xy: 310, 667
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23556
+ rotate: false
+ xy: 387, 714
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23561
+ rotate: false
+ xy: 464, 761
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23562
+ rotate: false
+ xy: 541, 808
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23566
+ rotate: false
+ xy: 618, 855
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23567
+ rotate: false
+ xy: 695, 902
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23575
+ rotate: false
+ xy: 772, 949
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23576
+ rotate: false
+ xy: 2, 432
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23581
+ rotate: false
+ xy: 79, 479
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23582
+ rotate: false
+ xy: 156, 526
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23587
+ rotate: false
+ xy: 233, 573
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23588
+ rotate: false
+ xy: 310, 620
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23592
+ rotate: false
+ xy: 387, 667
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23593
+ rotate: false
+ xy: 464, 714
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23601
+ rotate: false
+ xy: 541, 761
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23602
+ rotate: false
+ xy: 618, 808
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23607
+ rotate: false
+ xy: 695, 855
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23608
+ rotate: false
+ xy: 772, 902
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23613
+ rotate: false
+ xy: 849, 949
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23614
+ rotate: false
+ xy: 2, 385
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23618
+ rotate: false
+ xy: 79, 432
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23619
+ rotate: false
+ xy: 156, 479
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23627
+ rotate: false
+ xy: 233, 526
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23628
+ rotate: false
+ xy: 310, 573
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23633
+ rotate: false
+ xy: 387, 620
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23634
+ rotate: false
+ xy: 464, 667
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23639
+ rotate: false
+ xy: 541, 714
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23640
+ rotate: false
+ xy: 618, 761
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23644
+ rotate: false
+ xy: 695, 808
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+23645
+ rotate: false
+ xy: 772, 855
+ size: 75, 45
+ orig: 75, 45
+ offset: 0, 0
+ index: -1
+2417
+ rotate: false
+ xy: 732, 116
+ size: 28, 51
+ orig: 28, 51
+ offset: 0, 0
+ index: -1
+2433
+ rotate: false
+ xy: 811, 382
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2434
+ rotate: false
+ xy: 838, 382
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2441
+ rotate: false
+ xy: 865, 382
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2442
+ rotate: false
+ xy: 892, 382
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2449
+ rotate: false
+ xy: 919, 382
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2453
+ rotate: false
+ xy: 946, 382
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2455
+ rotate: false
+ xy: 834, 2
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2456
+ rotate: false
+ xy: 990, 109
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2458
+ rotate: false
+ xy: 990, 59
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2459
+ rotate: false
+ xy: 963, 648
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2509
+ rotate: false
+ xy: 907, 667
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2510
+ rotate: false
+ xy: 106, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2513
+ rotate: false
+ xy: 158, 338
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2514
+ rotate: false
+ xy: 884, 573
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2515
+ rotate: false
+ xy: 932, 714
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2516
+ rotate: false
+ xy: 235, 385
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2519
+ rotate: false
+ xy: 312, 432
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2520
+ rotate: false
+ xy: 909, 620
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2521
+ rotate: false
+ xy: 934, 667
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2522
+ rotate: false
+ xy: 389, 479
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2525
+ rotate: false
+ xy: 466, 526
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2526
+ rotate: false
+ xy: 836, 432
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2527
+ rotate: false
+ xy: 543, 573
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2530
+ rotate: false
+ xy: 620, 620
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2531
+ rotate: false
+ xy: 861, 479
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2532
+ rotate: false
+ xy: 697, 667
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2535
+ rotate: false
+ xy: 774, 714
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2536
+ rotate: false
+ xy: 886, 526
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2537
+ rotate: false
+ xy: 863, 432
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2538
+ rotate: false
+ xy: 851, 761
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2541
+ rotate: false
+ xy: 2, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2542
+ rotate: false
+ xy: 911, 573
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2543
+ rotate: false
+ xy: 888, 479
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2544
+ rotate: false
+ xy: 54, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2547
+ rotate: false
+ xy: 106, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2548
+ rotate: false
+ xy: 936, 620
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2549
+ rotate: false
+ xy: 158, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2552
+ rotate: false
+ xy: 210, 338
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2553
+ rotate: false
+ xy: 890, 432
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2554
+ rotate: false
+ xy: 287, 385
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2557
+ rotate: false
+ xy: 364, 432
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2558
+ rotate: false
+ xy: 913, 526
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2559
+ rotate: false
+ xy: 938, 573
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2560
+ rotate: false
+ xy: 441, 479
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2563
+ rotate: false
+ xy: 518, 526
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2564
+ rotate: false
+ xy: 915, 479
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2565
+ rotate: false
+ xy: 917, 432
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2566
+ rotate: false
+ xy: 595, 573
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2569
+ rotate: false
+ xy: 672, 620
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2570
+ rotate: false
+ xy: 940, 526
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2571
+ rotate: false
+ xy: 749, 667
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2574
+ rotate: false
+ xy: 826, 714
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2575
+ rotate: false
+ xy: 942, 479
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2576
+ rotate: false
+ xy: 2, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2579
+ rotate: false
+ xy: 54, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2580
+ rotate: false
+ xy: 944, 432
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2581
+ rotate: false
+ xy: 950, 335
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2582
+ rotate: false
+ xy: 106, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2585
+ rotate: false
+ xy: 158, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2588
+ rotate: false
+ xy: 210, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2591
+ rotate: false
+ xy: 262, 338
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2593
+ rotate: false
+ xy: 339, 385
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2596
+ rotate: false
+ xy: 416, 432
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2598
+ rotate: false
+ xy: 493, 479
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2601
+ rotate: false
+ xy: 570, 526
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2604
+ rotate: false
+ xy: 647, 573
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2607
+ rotate: false
+ xy: 724, 620
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2610
+ rotate: false
+ xy: 801, 667
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2613
+ rotate: false
+ xy: 2, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2615
+ rotate: false
+ xy: 54, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2618
+ rotate: false
+ xy: 106, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2642
+ rotate: false
+ xy: 158, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2645
+ rotate: false
+ xy: 210, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2648
+ rotate: false
+ xy: 262, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2651
+ rotate: false
+ xy: 314, 338
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2654
+ rotate: false
+ xy: 391, 385
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2657
+ rotate: false
+ xy: 468, 432
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2659
+ rotate: false
+ xy: 545, 479
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2662
+ rotate: false
+ xy: 622, 526
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2664
+ rotate: false
+ xy: 699, 573
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2667
+ rotate: false
+ xy: 776, 620
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2670
+ rotate: false
+ xy: 2, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2673
+ rotate: false
+ xy: 54, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2676
+ rotate: false
+ xy: 106, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2679
+ rotate: false
+ xy: 158, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2681
+ rotate: false
+ xy: 210, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2684
+ rotate: false
+ xy: 262, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2714
+ rotate: false
+ xy: 770, 77
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2715
+ rotate: false
+ xy: 961, 804
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2717
+ rotate: false
+ xy: 961, 756
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2722
+ rotate: false
+ xy: 314, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2725
+ rotate: false
+ xy: 366, 338
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2728
+ rotate: false
+ xy: 443, 385
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2731
+ rotate: false
+ xy: 520, 432
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2734
+ rotate: false
+ xy: 597, 479
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2737
+ rotate: false
+ xy: 674, 526
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2739
+ rotate: false
+ xy: 751, 573
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2742
+ rotate: false
+ xy: 54, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2772
+ rotate: false
+ xy: 106, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2775
+ rotate: false
+ xy: 158, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2778
+ rotate: false
+ xy: 210, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2781
+ rotate: false
+ xy: 262, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2784
+ rotate: false
+ xy: 314, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2787
+ rotate: false
+ xy: 366, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2789
+ rotate: false
+ xy: 418, 338
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2792
+ rotate: false
+ xy: 495, 385
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2794
+ rotate: false
+ xy: 572, 432
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2797
+ rotate: false
+ xy: 649, 479
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2800
+ rotate: false
+ xy: 726, 526
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2803
+ rotate: false
+ xy: 106, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2806
+ rotate: false
+ xy: 158, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2809
+ rotate: false
+ xy: 210, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2811
+ rotate: false
+ xy: 262, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2814
+ rotate: false
+ xy: 314, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2816
+ rotate: false
+ xy: 366, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2819
+ rotate: false
+ xy: 418, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2822
+ rotate: false
+ xy: 470, 338
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2825
+ rotate: false
+ xy: 547, 385
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2828
+ rotate: false
+ xy: 624, 432
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2831
+ rotate: false
+ xy: 701, 479
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2833
+ rotate: false
+ xy: 158, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2836
+ rotate: false
+ xy: 210, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2910
+ rotate: false
+ xy: 262, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2913
+ rotate: false
+ xy: 314, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2916
+ rotate: false
+ xy: 366, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2919
+ rotate: false
+ xy: 418, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2922
+ rotate: false
+ xy: 470, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2925
+ rotate: false
+ xy: 522, 338
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2927
+ rotate: false
+ xy: 599, 385
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2930
+ rotate: false
+ xy: 676, 432
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2932
+ rotate: false
+ xy: 210, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2935
+ rotate: false
+ xy: 262, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2938
+ rotate: false
+ xy: 314, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2941
+ rotate: false
+ xy: 366, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2944
+ rotate: false
+ xy: 418, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2947
+ rotate: false
+ xy: 470, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2949
+ rotate: false
+ xy: 522, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2952
+ rotate: false
+ xy: 574, 338
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2954
+ rotate: false
+ xy: 651, 385
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2957
+ rotate: false
+ xy: 262, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2960
+ rotate: false
+ xy: 314, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2963
+ rotate: false
+ xy: 366, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2966
+ rotate: false
+ xy: 418, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2969
+ rotate: false
+ xy: 470, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2971
+ rotate: false
+ xy: 522, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2974
+ rotate: false
+ xy: 574, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2976
+ rotate: false
+ xy: 626, 338
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2979
+ rotate: false
+ xy: 314, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2982
+ rotate: false
+ xy: 366, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2985
+ rotate: false
+ xy: 418, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2988
+ rotate: false
+ xy: 470, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2991
+ rotate: false
+ xy: 522, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3077
+ rotate: false
+ xy: 574, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3080
+ rotate: false
+ xy: 626, 291
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3083
+ rotate: false
+ xy: 366, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3086
+ rotate: false
+ xy: 418, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3089
+ rotate: false
+ xy: 470, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3092
+ rotate: false
+ xy: 522, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3094
+ rotate: false
+ xy: 574, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3097
+ rotate: false
+ xy: 626, 244
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3130
+ rotate: false
+ xy: 418, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3133
+ rotate: false
+ xy: 470, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3136
+ rotate: false
+ xy: 522, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3139
+ rotate: false
+ xy: 574, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3142
+ rotate: false
+ xy: 626, 197
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3145
+ rotate: false
+ xy: 470, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3147
+ rotate: false
+ xy: 522, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3150
+ rotate: false
+ xy: 574, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3158
+ rotate: false
+ xy: 626, 150
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3161
+ rotate: false
+ xy: 522, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3164
+ rotate: false
+ xy: 574, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3167
+ rotate: false
+ xy: 626, 103
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3170
+ rotate: false
+ xy: 574, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3173
+ rotate: false
+ xy: 626, 56
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3175
+ rotate: false
+ xy: 626, 9
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3178
+ rotate: false
+ xy: 953, 901
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3228
+ rotate: false
+ xy: 797, 287
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3231
+ rotate: false
+ xy: 797, 240
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3234
+ rotate: false
+ xy: 797, 193
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3237
+ rotate: false
+ xy: 798, 146
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3240
+ rotate: false
+ xy: 846, 335
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3243
+ rotate: false
+ xy: 849, 288
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3245
+ rotate: false
+ xy: 849, 241
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3248
+ rotate: false
+ xy: 849, 194
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3255
+ rotate: false
+ xy: 850, 147
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3258
+ rotate: false
+ xy: 898, 335
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3261
+ rotate: false
+ xy: 901, 288
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3264
+ rotate: false
+ xy: 901, 241
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3267
+ rotate: false
+ xy: 901, 194
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3270
+ rotate: false
+ xy: 902, 147
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3272
+ rotate: false
+ xy: 798, 99
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3275
+ rotate: false
+ xy: 850, 100
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3306
+ rotate: false
+ xy: 734, 64
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3307
+ rotate: false
+ xy: 761, 333
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3586
+ rotate: false
+ xy: 902, 100
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3589
+ rotate: false
+ xy: 798, 52
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3592
+ rotate: false
+ xy: 850, 53
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3595
+ rotate: false
+ xy: 902, 53
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3598
+ rotate: false
+ xy: 782, 5
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3601
+ rotate: false
+ xy: 861, 6
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3603
+ rotate: false
+ xy: 913, 6
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3606
+ rotate: false
+ xy: 965, 12
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3796
+ rotate: false
+ xy: 761, 281
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3797
+ rotate: false
+ xy: 761, 229
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3800
+ rotate: false
+ xy: 761, 177
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3801
+ rotate: false
+ xy: 762, 125
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3804
+ rotate: false
+ xy: 746, 12
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3805
+ rotate: false
+ xy: 953, 283
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3808
+ rotate: false
+ xy: 953, 231
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3809
+ rotate: false
+ xy: 954, 179
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3812
+ rotate: false
+ xy: 954, 127
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3813
+ rotate: false
+ xy: 954, 75
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3836
+ rotate: false
+ xy: 678, 331
+ size: 25, 52
+ orig: 25, 52
+ offset: 0, 0
+ index: -1
+3837
+ rotate: false
+ xy: 678, 277
+ size: 25, 52
+ orig: 25, 52
+ offset: 0, 0
+ index: -1
+3842
+ rotate: false
+ xy: 678, 223
+ size: 25, 52
+ orig: 25, 52
+ offset: 0, 0
+ index: -1
+3843
+ rotate: false
+ xy: 678, 169
+ size: 25, 52
+ orig: 25, 52
+ offset: 0, 0
+ index: -1
+3848
+ rotate: false
+ xy: 678, 115
+ size: 25, 52
+ orig: 25, 52
+ offset: 0, 0
+ index: -1
+4483
+ rotate: false
+ xy: 990, 159
+ size: 25, 50
+ orig: 25, 50
+ offset: 0, 0
+ index: -1
+4871
+ rotate: false
+ xy: 989, 797
+ size: 33, 45
+ orig: 33, 45
+ offset: 0, 0
+ index: -1
+4889
+ rotate: false
+ xy: 989, 750
+ size: 33, 45
+ orig: 33, 45
+ offset: 0, 0
+ index: -1
+6918
+ rotate: false
+ xy: 678, 61
+ size: 25, 52
+ orig: 25, 52
+ offset: 0, 0
+ index: -1
+6923
+ rotate: false
+ xy: 705, 331
+ size: 25, 52
+ orig: 25, 52
+ offset: 0, 0
+ index: -1
+6924
+ rotate: false
+ xy: 705, 277
+ size: 25, 52
+ orig: 25, 52
+ offset: 0, 0
+ index: -1
+6929
+ rotate: false
+ xy: 705, 223
+ size: 25, 52
+ orig: 25, 52
+ offset: 0, 0
+ index: -1
+6930
+ rotate: false
+ xy: 705, 169
+ size: 25, 52
+ orig: 25, 52
+ offset: 0, 0
+ index: -1
+6935
+ rotate: false
+ xy: 705, 115
+ size: 25, 52
+ orig: 25, 52
+ offset: 0, 0
+ index: -1
+8461
+ rotate: false
+ xy: 955, 852
+ size: 32, 47
+ orig: 32, 47
+ offset: 0, 0
+ index: -1
+8464
+ rotate: false
+ xy: 990, 701
+ size: 32, 47
+ orig: 32, 47
+ offset: 0, 0
+ index: -1
+8465
+ rotate: false
+ xy: 990, 652
+ size: 32, 47
+ orig: 32, 47
+ offset: 0, 0
+ index: -1
+8468
+ rotate: false
+ xy: 990, 603
+ size: 32, 47
+ orig: 32, 47
+ offset: 0, 0
+ index: -1
+8469
+ rotate: false
+ xy: 990, 554
+ size: 32, 47
+ orig: 32, 47
+ offset: 0, 0
+ index: -1
+8472
+ rotate: false
+ xy: 990, 505
+ size: 32, 47
+ orig: 32, 47
+ offset: 0, 0
+ index: -1
+
+images94.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+14586
+ rotate: false
+ xy: 990, 237
+ size: 26, 45
+ orig: 26, 45
+ offset: 0, 0
+ index: -1
+2461
+ rotate: false
+ xy: 990, 970
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2462
+ rotate: false
+ xy: 990, 920
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2464
+ rotate: false
+ xy: 990, 870
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2467
+ rotate: false
+ xy: 990, 820
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2470
+ rotate: false
+ xy: 990, 770
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2473
+ rotate: false
+ xy: 990, 720
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2476
+ rotate: false
+ xy: 990, 670
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+2586
+ rotate: false
+ xy: 990, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2587
+ rotate: false
+ xy: 990, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2592
+ rotate: false
+ xy: 990, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2597
+ rotate: false
+ xy: 990, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2602
+ rotate: false
+ xy: 990, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2718
+ rotate: false
+ xy: 990, 572
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2720
+ rotate: false
+ xy: 990, 524
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2743
+ rotate: false
+ xy: 990, 476
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2749
+ rotate: false
+ xy: 990, 476
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2750
+ rotate: false
+ xy: 990, 428
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2756
+ rotate: false
+ xy: 990, 380
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2757
+ rotate: false
+ xy: 990, 332
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2763
+ rotate: false
+ xy: 990, 332
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2764
+ rotate: false
+ xy: 990, 284
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+2770
+ rotate: false
+ xy: 990, 284
+ size: 26, 46
+ orig: 26, 46
+ offset: 0, 0
+ index: -1
+3612
+ rotate: false
+ xy: 2, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3615
+ rotate: false
+ xy: 2, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3618
+ rotate: false
+ xy: 54, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3621
+ rotate: false
+ xy: 2, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3624
+ rotate: false
+ xy: 54, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3627
+ rotate: false
+ xy: 106, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3629
+ rotate: false
+ xy: 2, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3632
+ rotate: false
+ xy: 54, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3638
+ rotate: false
+ xy: 106, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3641
+ rotate: false
+ xy: 158, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3644
+ rotate: false
+ xy: 2, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3647
+ rotate: false
+ xy: 54, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3650
+ rotate: false
+ xy: 106, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3653
+ rotate: false
+ xy: 158, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22740
+ rotate: false
+ xy: 158, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3655
+ rotate: false
+ xy: 210, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3658
+ rotate: false
+ xy: 2, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3690
+ rotate: false
+ xy: 54, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3693
+ rotate: false
+ xy: 106, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3696
+ rotate: false
+ xy: 158, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3699
+ rotate: false
+ xy: 210, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3702
+ rotate: false
+ xy: 262, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3705
+ rotate: false
+ xy: 2, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3707
+ rotate: false
+ xy: 54, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3710
+ rotate: false
+ xy: 106, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3718
+ rotate: false
+ xy: 158, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3721
+ rotate: false
+ xy: 210, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3724
+ rotate: false
+ xy: 262, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3727
+ rotate: false
+ xy: 314, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3730
+ rotate: false
+ xy: 2, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3733
+ rotate: false
+ xy: 54, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3735
+ rotate: false
+ xy: 106, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3738
+ rotate: false
+ xy: 158, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3744
+ rotate: false
+ xy: 210, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3747
+ rotate: false
+ xy: 262, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3750
+ rotate: false
+ xy: 314, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3753
+ rotate: false
+ xy: 366, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3756
+ rotate: false
+ xy: 2, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3759
+ rotate: false
+ xy: 54, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3761
+ rotate: false
+ xy: 106, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3764
+ rotate: false
+ xy: 158, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3770
+ rotate: false
+ xy: 210, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3773
+ rotate: false
+ xy: 262, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3776
+ rotate: false
+ xy: 314, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3779
+ rotate: false
+ xy: 366, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3782
+ rotate: false
+ xy: 418, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3785
+ rotate: false
+ xy: 2, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3787
+ rotate: false
+ xy: 54, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3790
+ rotate: false
+ xy: 106, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3879
+ rotate: false
+ xy: 158, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3882
+ rotate: false
+ xy: 210, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3885
+ rotate: false
+ xy: 262, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3888
+ rotate: false
+ xy: 314, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3891
+ rotate: false
+ xy: 366, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3894
+ rotate: false
+ xy: 418, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3896
+ rotate: false
+ xy: 470, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3899
+ rotate: false
+ xy: 2, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3905
+ rotate: false
+ xy: 54, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3908
+ rotate: false
+ xy: 106, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3911
+ rotate: false
+ xy: 158, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3914
+ rotate: false
+ xy: 210, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3917
+ rotate: false
+ xy: 262, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3920
+ rotate: false
+ xy: 314, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3922
+ rotate: false
+ xy: 366, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3925
+ rotate: false
+ xy: 418, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3931
+ rotate: false
+ xy: 470, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3934
+ rotate: false
+ xy: 522, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3937
+ rotate: false
+ xy: 2, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3940
+ rotate: false
+ xy: 54, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3943
+ rotate: false
+ xy: 106, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3946
+ rotate: false
+ xy: 158, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3948
+ rotate: false
+ xy: 210, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3951
+ rotate: false
+ xy: 262, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3957
+ rotate: false
+ xy: 314, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3960
+ rotate: false
+ xy: 366, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3963
+ rotate: false
+ xy: 418, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3966
+ rotate: false
+ xy: 470, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3969
+ rotate: false
+ xy: 522, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3972
+ rotate: false
+ xy: 574, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3974
+ rotate: false
+ xy: 2, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3977
+ rotate: false
+ xy: 54, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4001
+ rotate: false
+ xy: 106, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4004
+ rotate: false
+ xy: 158, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4006
+ rotate: false
+ xy: 210, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4009
+ rotate: false
+ xy: 262, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4012
+ rotate: false
+ xy: 314, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4015
+ rotate: false
+ xy: 366, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4018
+ rotate: false
+ xy: 418, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4021
+ rotate: false
+ xy: 470, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4023
+ rotate: false
+ xy: 522, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4026
+ rotate: false
+ xy: 574, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4028
+ rotate: false
+ xy: 626, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4031
+ rotate: false
+ xy: 2, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4034
+ rotate: false
+ xy: 54, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4037
+ rotate: false
+ xy: 106, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4040
+ rotate: false
+ xy: 158, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4043
+ rotate: false
+ xy: 210, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4045
+ rotate: false
+ xy: 262, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4048
+ rotate: false
+ xy: 314, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4050
+ rotate: false
+ xy: 366, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4053
+ rotate: false
+ xy: 418, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4056
+ rotate: false
+ xy: 470, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4059
+ rotate: false
+ xy: 522, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4062
+ rotate: false
+ xy: 574, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4065
+ rotate: false
+ xy: 626, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4067
+ rotate: false
+ xy: 678, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4070
+ rotate: false
+ xy: 2, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4088
+ rotate: false
+ xy: 54, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4091
+ rotate: false
+ xy: 106, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4094
+ rotate: false
+ xy: 158, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4097
+ rotate: false
+ xy: 210, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4100
+ rotate: false
+ xy: 262, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4103
+ rotate: false
+ xy: 314, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4105
+ rotate: false
+ xy: 366, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4108
+ rotate: false
+ xy: 418, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4110
+ rotate: false
+ xy: 470, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4113
+ rotate: false
+ xy: 522, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4116
+ rotate: false
+ xy: 574, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4119
+ rotate: false
+ xy: 626, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4122
+ rotate: false
+ xy: 678, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4125
+ rotate: false
+ xy: 730, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4127
+ rotate: false
+ xy: 2, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4130
+ rotate: false
+ xy: 54, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4136
+ rotate: false
+ xy: 106, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4139
+ rotate: false
+ xy: 158, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4142
+ rotate: false
+ xy: 210, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4145
+ rotate: false
+ xy: 262, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4148
+ rotate: false
+ xy: 314, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4151
+ rotate: false
+ xy: 366, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4153
+ rotate: false
+ xy: 418, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4156
+ rotate: false
+ xy: 470, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4158
+ rotate: false
+ xy: 522, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4161
+ rotate: false
+ xy: 574, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4164
+ rotate: false
+ xy: 626, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4167
+ rotate: false
+ xy: 678, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4170
+ rotate: false
+ xy: 730, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4173
+ rotate: false
+ xy: 782, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4175
+ rotate: false
+ xy: 2, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4178
+ rotate: false
+ xy: 54, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4180
+ rotate: false
+ xy: 106, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4183
+ rotate: false
+ xy: 158, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4186
+ rotate: false
+ xy: 210, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4189
+ rotate: false
+ xy: 262, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4192
+ rotate: false
+ xy: 314, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4195
+ rotate: false
+ xy: 366, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4197
+ rotate: false
+ xy: 418, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4200
+ rotate: false
+ xy: 470, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4202
+ rotate: false
+ xy: 522, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4205
+ rotate: false
+ xy: 574, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4208
+ rotate: false
+ xy: 626, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4211
+ rotate: false
+ xy: 678, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4214
+ rotate: false
+ xy: 730, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4217
+ rotate: false
+ xy: 782, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4219
+ rotate: false
+ xy: 834, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4222
+ rotate: false
+ xy: 2, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4224
+ rotate: false
+ xy: 54, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4227
+ rotate: false
+ xy: 106, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4230
+ rotate: false
+ xy: 158, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4233
+ rotate: false
+ xy: 210, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4236
+ rotate: false
+ xy: 262, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4239
+ rotate: false
+ xy: 314, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4241
+ rotate: false
+ xy: 366, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4244
+ rotate: false
+ xy: 418, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4246
+ rotate: false
+ xy: 470, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4249
+ rotate: false
+ xy: 522, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4252
+ rotate: false
+ xy: 574, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4258
+ rotate: false
+ xy: 626, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4261
+ rotate: false
+ xy: 678, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4263
+ rotate: false
+ xy: 730, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4266
+ rotate: false
+ xy: 782, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4268
+ rotate: false
+ xy: 834, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4271
+ rotate: false
+ xy: 886, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4274
+ rotate: false
+ xy: 2, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4277
+ rotate: false
+ xy: 54, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4280
+ rotate: false
+ xy: 106, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4283
+ rotate: false
+ xy: 158, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4285
+ rotate: false
+ xy: 210, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4288
+ rotate: false
+ xy: 262, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4290
+ rotate: false
+ xy: 314, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4293
+ rotate: false
+ xy: 366, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4296
+ rotate: false
+ xy: 418, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4299
+ rotate: false
+ xy: 470, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4302
+ rotate: false
+ xy: 522, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4305
+ rotate: false
+ xy: 574, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4307
+ rotate: false
+ xy: 626, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4310
+ rotate: false
+ xy: 678, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4359
+ rotate: false
+ xy: 990, 620
+ size: 25, 48
+ orig: 25, 48
+ offset: 0, 0
+ index: -1
+4835
+ rotate: false
+ xy: 730, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4838
+ rotate: false
+ xy: 782, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4841
+ rotate: false
+ xy: 834, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4844
+ rotate: false
+ xy: 886, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4847
+ rotate: false
+ xy: 938, 973
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4850
+ rotate: false
+ xy: 2, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4852
+ rotate: false
+ xy: 54, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+4855
+ rotate: false
+ xy: 106, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5001
+ rotate: false
+ xy: 158, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5004
+ rotate: false
+ xy: 210, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5007
+ rotate: false
+ xy: 262, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5010
+ rotate: false
+ xy: 314, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5013
+ rotate: false
+ xy: 366, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5016
+ rotate: false
+ xy: 418, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5018
+ rotate: false
+ xy: 470, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5021
+ rotate: false
+ xy: 522, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5031
+ rotate: false
+ xy: 574, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5034
+ rotate: false
+ xy: 626, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5037
+ rotate: false
+ xy: 678, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5040
+ rotate: false
+ xy: 730, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5043
+ rotate: false
+ xy: 782, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5046
+ rotate: false
+ xy: 834, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5048
+ rotate: false
+ xy: 886, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5051
+ rotate: false
+ xy: 938, 926
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5061
+ rotate: false
+ xy: 2, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5064
+ rotate: false
+ xy: 54, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5067
+ rotate: false
+ xy: 106, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5070
+ rotate: false
+ xy: 158, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5073
+ rotate: false
+ xy: 210, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5076
+ rotate: false
+ xy: 262, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5078
+ rotate: false
+ xy: 314, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5081
+ rotate: false
+ xy: 366, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5091
+ rotate: false
+ xy: 418, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5094
+ rotate: false
+ xy: 470, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5097
+ rotate: false
+ xy: 522, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5100
+ rotate: false
+ xy: 574, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5103
+ rotate: false
+ xy: 626, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5106
+ rotate: false
+ xy: 678, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5108
+ rotate: false
+ xy: 730, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5111
+ rotate: false
+ xy: 782, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5121
+ rotate: false
+ xy: 834, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5124
+ rotate: false
+ xy: 886, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5127
+ rotate: false
+ xy: 938, 879
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5130
+ rotate: false
+ xy: 54, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5133
+ rotate: false
+ xy: 106, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5136
+ rotate: false
+ xy: 158, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5138
+ rotate: false
+ xy: 210, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5141
+ rotate: false
+ xy: 262, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5151
+ rotate: false
+ xy: 314, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5154
+ rotate: false
+ xy: 366, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5157
+ rotate: false
+ xy: 418, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5160
+ rotate: false
+ xy: 470, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5163
+ rotate: false
+ xy: 522, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5166
+ rotate: false
+ xy: 574, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5168
+ rotate: false
+ xy: 626, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5171
+ rotate: false
+ xy: 678, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5181
+ rotate: false
+ xy: 730, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5184
+ rotate: false
+ xy: 782, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5187
+ rotate: false
+ xy: 834, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5190
+ rotate: false
+ xy: 886, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5193
+ rotate: false
+ xy: 938, 832
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5196
+ rotate: false
+ xy: 106, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5198
+ rotate: false
+ xy: 158, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5201
+ rotate: false
+ xy: 210, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5211
+ rotate: false
+ xy: 262, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5214
+ rotate: false
+ xy: 314, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5217
+ rotate: false
+ xy: 366, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5220
+ rotate: false
+ xy: 418, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5223
+ rotate: false
+ xy: 470, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5226
+ rotate: false
+ xy: 522, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5228
+ rotate: false
+ xy: 574, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5231
+ rotate: false
+ xy: 626, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5241
+ rotate: false
+ xy: 678, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5244
+ rotate: false
+ xy: 730, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5247
+ rotate: false
+ xy: 782, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5250
+ rotate: false
+ xy: 834, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5253
+ rotate: false
+ xy: 886, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5256
+ rotate: false
+ xy: 938, 785
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5258
+ rotate: false
+ xy: 158, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5261
+ rotate: false
+ xy: 210, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5271
+ rotate: false
+ xy: 262, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5274
+ rotate: false
+ xy: 314, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5277
+ rotate: false
+ xy: 366, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5280
+ rotate: false
+ xy: 418, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5283
+ rotate: false
+ xy: 470, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5286
+ rotate: false
+ xy: 522, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5288
+ rotate: false
+ xy: 574, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5291
+ rotate: false
+ xy: 626, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5301
+ rotate: false
+ xy: 678, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5304
+ rotate: false
+ xy: 730, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5307
+ rotate: false
+ xy: 782, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5310
+ rotate: false
+ xy: 834, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5313
+ rotate: false
+ xy: 886, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5316
+ rotate: false
+ xy: 938, 738
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5318
+ rotate: false
+ xy: 210, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5321
+ rotate: false
+ xy: 262, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5328
+ rotate: false
+ xy: 314, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5331
+ rotate: false
+ xy: 366, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5334
+ rotate: false
+ xy: 418, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5337
+ rotate: false
+ xy: 470, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5340
+ rotate: false
+ xy: 522, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5343
+ rotate: false
+ xy: 574, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5345
+ rotate: false
+ xy: 626, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5348
+ rotate: false
+ xy: 678, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5361
+ rotate: false
+ xy: 730, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5364
+ rotate: false
+ xy: 782, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5367
+ rotate: false
+ xy: 834, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5370
+ rotate: false
+ xy: 886, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5373
+ rotate: false
+ xy: 938, 691
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5376
+ rotate: false
+ xy: 262, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5378
+ rotate: false
+ xy: 314, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5381
+ rotate: false
+ xy: 366, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5391
+ rotate: false
+ xy: 418, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5394
+ rotate: false
+ xy: 470, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5397
+ rotate: false
+ xy: 522, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5400
+ rotate: false
+ xy: 574, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5403
+ rotate: false
+ xy: 626, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5406
+ rotate: false
+ xy: 678, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5408
+ rotate: false
+ xy: 730, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5411
+ rotate: false
+ xy: 782, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5421
+ rotate: false
+ xy: 834, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5424
+ rotate: false
+ xy: 886, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5427
+ rotate: false
+ xy: 938, 644
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5430
+ rotate: false
+ xy: 314, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5433
+ rotate: false
+ xy: 366, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5436
+ rotate: false
+ xy: 418, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5438
+ rotate: false
+ xy: 470, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5441
+ rotate: false
+ xy: 522, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5451
+ rotate: false
+ xy: 574, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5454
+ rotate: false
+ xy: 626, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5457
+ rotate: false
+ xy: 678, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5460
+ rotate: false
+ xy: 730, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5463
+ rotate: false
+ xy: 782, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5466
+ rotate: false
+ xy: 834, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5468
+ rotate: false
+ xy: 886, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5471
+ rotate: false
+ xy: 938, 597
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5505
+ rotate: false
+ xy: 366, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5508
+ rotate: false
+ xy: 418, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5511
+ rotate: false
+ xy: 470, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5514
+ rotate: false
+ xy: 522, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5517
+ rotate: false
+ xy: 574, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5520
+ rotate: false
+ xy: 626, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5522
+ rotate: false
+ xy: 678, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5525
+ rotate: false
+ xy: 730, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5531
+ rotate: false
+ xy: 782, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5534
+ rotate: false
+ xy: 834, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5537
+ rotate: false
+ xy: 886, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5540
+ rotate: false
+ xy: 938, 550
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5543
+ rotate: false
+ xy: 418, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5546
+ rotate: false
+ xy: 470, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5548
+ rotate: false
+ xy: 522, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5551
+ rotate: false
+ xy: 574, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5558
+ rotate: false
+ xy: 626, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5561
+ rotate: false
+ xy: 678, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5564
+ rotate: false
+ xy: 730, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5567
+ rotate: false
+ xy: 782, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5570
+ rotate: false
+ xy: 834, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5573
+ rotate: false
+ xy: 886, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5575
+ rotate: false
+ xy: 938, 503
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5578
+ rotate: false
+ xy: 470, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5957
+ rotate: false
+ xy: 522, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5960
+ rotate: false
+ xy: 574, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5963
+ rotate: false
+ xy: 626, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5966
+ rotate: false
+ xy: 678, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5969
+ rotate: false
+ xy: 730, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5972
+ rotate: false
+ xy: 782, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5974
+ rotate: false
+ xy: 834, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+5977
+ rotate: false
+ xy: 886, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+6759
+ rotate: false
+ xy: 938, 456
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+6762
+ rotate: false
+ xy: 522, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+6766
+ rotate: false
+ xy: 574, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+6769
+ rotate: false
+ xy: 626, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+6773
+ rotate: false
+ xy: 678, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+6776
+ rotate: false
+ xy: 730, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+6779
+ rotate: false
+ xy: 782, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+6782
+ rotate: false
+ xy: 834, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+6969
+ rotate: false
+ xy: 886, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+6972
+ rotate: false
+ xy: 938, 409
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+6975
+ rotate: false
+ xy: 574, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+6978
+ rotate: false
+ xy: 626, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+6981
+ rotate: false
+ xy: 678, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+6984
+ rotate: false
+ xy: 730, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+6986
+ rotate: false
+ xy: 782, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+6989
+ rotate: false
+ xy: 834, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9531
+ rotate: false
+ xy: 886, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9534
+ rotate: false
+ xy: 938, 362
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9537
+ rotate: false
+ xy: 626, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9540
+ rotate: false
+ xy: 678, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9543
+ rotate: false
+ xy: 730, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9546
+ rotate: false
+ xy: 782, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9548
+ rotate: false
+ xy: 834, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9551
+ rotate: false
+ xy: 886, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9583
+ rotate: false
+ xy: 938, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15656
+ rotate: false
+ xy: 938, 315
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9586
+ rotate: false
+ xy: 678, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15659
+ rotate: false
+ xy: 678, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9589
+ rotate: false
+ xy: 730, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15662
+ rotate: false
+ xy: 730, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9592
+ rotate: false
+ xy: 782, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15665
+ rotate: false
+ xy: 782, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9595
+ rotate: false
+ xy: 834, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9598
+ rotate: false
+ xy: 886, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9600
+ rotate: false
+ xy: 938, 268
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9603
+ rotate: false
+ xy: 730, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9634
+ rotate: false
+ xy: 782, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9637
+ rotate: false
+ xy: 834, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9640
+ rotate: false
+ xy: 886, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9643
+ rotate: false
+ xy: 938, 221
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9646
+ rotate: false
+ xy: 782, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9649
+ rotate: false
+ xy: 834, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9651
+ rotate: false
+ xy: 886, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9654
+ rotate: false
+ xy: 938, 174
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9661
+ rotate: false
+ xy: 834, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15737
+ rotate: false
+ xy: 834, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9664
+ rotate: false
+ xy: 886, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15740
+ rotate: false
+ xy: 886, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9667
+ rotate: false
+ xy: 938, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15743
+ rotate: false
+ xy: 938, 127
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9670
+ rotate: false
+ xy: 886, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15746
+ rotate: false
+ xy: 886, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9673
+ rotate: false
+ xy: 938, 80
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9676
+ rotate: false
+ xy: 938, 33
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+
+images95.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10065
+ rotate: false
+ xy: 734, 836
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10068
+ rotate: false
+ xy: 786, 836
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10071
+ rotate: false
+ xy: 838, 836
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10074
+ rotate: false
+ xy: 890, 836
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10077
+ rotate: false
+ xy: 942, 836
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10080
+ rotate: false
+ xy: 250, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10082
+ rotate: false
+ xy: 302, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10085
+ rotate: false
+ xy: 354, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10091
+ rotate: false
+ xy: 406, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10094
+ rotate: false
+ xy: 458, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10097
+ rotate: false
+ xy: 510, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10100
+ rotate: false
+ xy: 562, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10103
+ rotate: false
+ xy: 614, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10106
+ rotate: false
+ xy: 666, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10108
+ rotate: false
+ xy: 718, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10111
+ rotate: false
+ xy: 770, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10117
+ rotate: false
+ xy: 822, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10120
+ rotate: false
+ xy: 874, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10123
+ rotate: false
+ xy: 926, 789
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10126
+ rotate: false
+ xy: 250, 742
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10129
+ rotate: false
+ xy: 302, 742
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10132
+ rotate: false
+ xy: 354, 742
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10134
+ rotate: false
+ xy: 406, 742
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10137
+ rotate: false
+ xy: 458, 742
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10143
+ rotate: false
+ xy: 510, 742
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10146
+ rotate: false
+ xy: 562, 742
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10149
+ rotate: false
+ xy: 614, 742
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10152
+ rotate: false
+ xy: 666, 742
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10155
+ rotate: false
+ xy: 718, 742
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10158
+ rotate: false
+ xy: 770, 742
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10160
+ rotate: false
+ xy: 822, 742
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10163
+ rotate: false
+ xy: 874, 742
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10169
+ rotate: false
+ xy: 926, 742
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10172
+ rotate: false
+ xy: 322, 695
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10175
+ rotate: false
+ xy: 374, 695
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10178
+ rotate: false
+ xy: 426, 695
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10181
+ rotate: false
+ xy: 478, 695
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10184
+ rotate: false
+ xy: 530, 695
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10186
+ rotate: false
+ xy: 582, 695
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10189
+ rotate: false
+ xy: 634, 695
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10247
+ rotate: false
+ xy: 686, 695
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10250
+ rotate: false
+ xy: 738, 695
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10253
+ rotate: false
+ xy: 790, 695
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10259
+ rotate: false
+ xy: 842, 695
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10262
+ rotate: false
+ xy: 894, 695
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10264
+ rotate: false
+ xy: 358, 648
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10267
+ rotate: false
+ xy: 410, 648
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10273
+ rotate: false
+ xy: 462, 648
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10276
+ rotate: false
+ xy: 514, 648
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10279
+ rotate: false
+ xy: 566, 648
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10282
+ rotate: false
+ xy: 618, 648
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10285
+ rotate: false
+ xy: 670, 648
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10288
+ rotate: false
+ xy: 722, 648
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10290
+ rotate: false
+ xy: 774, 648
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10293
+ rotate: false
+ xy: 826, 648
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10299
+ rotate: false
+ xy: 878, 648
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10302
+ rotate: false
+ xy: 966, 633
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10305
+ rotate: false
+ xy: 358, 601
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10308
+ rotate: false
+ xy: 410, 601
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10311
+ rotate: false
+ xy: 462, 601
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10314
+ rotate: false
+ xy: 514, 601
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10316
+ rotate: false
+ xy: 566, 601
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10319
+ rotate: false
+ xy: 618, 601
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10507
+ rotate: false
+ xy: 670, 601
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10510
+ rotate: false
+ xy: 722, 601
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10513
+ rotate: false
+ xy: 774, 601
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10516
+ rotate: false
+ xy: 826, 601
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10519
+ rotate: false
+ xy: 878, 601
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10522
+ rotate: false
+ xy: 966, 586
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10524
+ rotate: false
+ xy: 430, 554
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10527
+ rotate: false
+ xy: 482, 554
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10533
+ rotate: false
+ xy: 534, 554
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10536
+ rotate: false
+ xy: 586, 554
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10539
+ rotate: false
+ xy: 638, 554
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10542
+ rotate: false
+ xy: 690, 554
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10545
+ rotate: false
+ xy: 742, 554
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10548
+ rotate: false
+ xy: 794, 554
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10550
+ rotate: false
+ xy: 846, 554
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10553
+ rotate: false
+ xy: 961, 539
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10559
+ rotate: false
+ xy: 466, 507
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10562
+ rotate: false
+ xy: 518, 507
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10565
+ rotate: false
+ xy: 570, 507
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10568
+ rotate: false
+ xy: 622, 507
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10571
+ rotate: false
+ xy: 674, 507
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10574
+ rotate: false
+ xy: 726, 507
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10576
+ rotate: false
+ xy: 778, 507
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10579
+ rotate: false
+ xy: 830, 507
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10585
+ rotate: false
+ xy: 918, 492
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10588
+ rotate: false
+ xy: 970, 492
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10591
+ rotate: false
+ xy: 466, 460
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10594
+ rotate: false
+ xy: 518, 460
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10597
+ rotate: false
+ xy: 570, 460
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10600
+ rotate: false
+ xy: 622, 460
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10602
+ rotate: false
+ xy: 674, 460
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10605
+ rotate: false
+ xy: 726, 460
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10611
+ rotate: false
+ xy: 778, 460
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10614
+ rotate: false
+ xy: 830, 460
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10617
+ rotate: false
+ xy: 918, 445
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10620
+ rotate: false
+ xy: 970, 445
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10623
+ rotate: false
+ xy: 538, 413
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10626
+ rotate: false
+ xy: 590, 413
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10628
+ rotate: false
+ xy: 642, 413
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10631
+ rotate: false
+ xy: 694, 413
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10637
+ rotate: false
+ xy: 746, 413
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10640
+ rotate: false
+ xy: 798, 413
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10643
+ rotate: false
+ xy: 913, 398
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10646
+ rotate: false
+ xy: 965, 398
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10649
+ rotate: false
+ xy: 574, 366
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10652
+ rotate: false
+ xy: 626, 366
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10654
+ rotate: false
+ xy: 678, 366
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10657
+ rotate: false
+ xy: 730, 366
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10663
+ rotate: false
+ xy: 782, 366
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10666
+ rotate: false
+ xy: 870, 351
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10669
+ rotate: false
+ xy: 922, 351
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10672
+ rotate: false
+ xy: 574, 319
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10675
+ rotate: false
+ xy: 626, 319
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10678
+ rotate: false
+ xy: 678, 319
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10680
+ rotate: false
+ xy: 730, 319
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10683
+ rotate: false
+ xy: 782, 319
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10689
+ rotate: false
+ xy: 870, 304
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10692
+ rotate: false
+ xy: 922, 304
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10695
+ rotate: false
+ xy: 646, 272
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10698
+ rotate: false
+ xy: 698, 272
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10701
+ rotate: false
+ xy: 750, 272
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10704
+ rotate: false
+ xy: 865, 257
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10706
+ rotate: false
+ xy: 917, 257
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10709
+ rotate: false
+ xy: 969, 247
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10715
+ rotate: false
+ xy: 682, 225
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10718
+ rotate: false
+ xy: 734, 225
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10721
+ rotate: false
+ xy: 682, 178
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10724
+ rotate: false
+ xy: 734, 178
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10727
+ rotate: false
+ xy: 830, 210
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10730
+ rotate: false
+ xy: 882, 210
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10732
+ rotate: false
+ xy: 961, 200
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10735
+ rotate: false
+ xy: 830, 163
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10741
+ rotate: false
+ xy: 882, 163
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10744
+ rotate: false
+ xy: 961, 153
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10747
+ rotate: false
+ xy: 826, 116
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10750
+ rotate: false
+ xy: 878, 116
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10753
+ rotate: false
+ xy: 957, 106
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10756
+ rotate: false
+ xy: 862, 69
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10758
+ rotate: false
+ xy: 862, 22
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10761
+ rotate: false
+ xy: 950, 59
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10791
+ rotate: false
+ xy: 950, 12
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10869
+ rotate: false
+ xy: 326, 378
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+10870
+ rotate: false
+ xy: 326, 326
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+10873
+ rotate: false
+ xy: 326, 274
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+10874
+ rotate: false
+ xy: 326, 222
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+10877
+ rotate: false
+ xy: 326, 170
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+10878
+ rotate: false
+ xy: 326, 118
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+10881
+ rotate: false
+ xy: 326, 66
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+10882
+ rotate: false
+ xy: 358, 14
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+10885
+ rotate: false
+ xy: 362, 534
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+10886
+ rotate: false
+ xy: 362, 482
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+10889
+ rotate: false
+ xy: 362, 430
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+10890
+ rotate: false
+ xy: 362, 378
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+11982
+ rotate: false
+ xy: 362, 326
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+11983
+ rotate: false
+ xy: 362, 274
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+11986
+ rotate: false
+ xy: 362, 222
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+11987
+ rotate: false
+ xy: 362, 170
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+11990
+ rotate: false
+ xy: 362, 118
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+11991
+ rotate: false
+ xy: 362, 66
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+11994
+ rotate: false
+ xy: 394, 14
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+11995
+ rotate: false
+ xy: 925, 539
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+12002
+ rotate: false
+ xy: 398, 487
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+12336
+ rotate: false
+ xy: 398, 435
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+12337
+ rotate: false
+ xy: 398, 383
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+12348
+ rotate: false
+ xy: 398, 331
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+12349
+ rotate: false
+ xy: 398, 279
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+12352
+ rotate: false
+ xy: 398, 227
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+12353
+ rotate: false
+ xy: 398, 175
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+12391
+ rotate: false
+ xy: 398, 123
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+12392
+ rotate: false
+ xy: 398, 71
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+12395
+ rotate: false
+ xy: 430, 19
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+12396
+ rotate: false
+ xy: 882, 502
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+12995
+ rotate: false
+ xy: 882, 450
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+12996
+ rotate: false
+ xy: 434, 393
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+12999
+ rotate: false
+ xy: 434, 341
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13000
+ rotate: false
+ xy: 434, 289
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13004
+ rotate: false
+ xy: 434, 237
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13005
+ rotate: false
+ xy: 434, 185
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13008
+ rotate: false
+ xy: 434, 133
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13009
+ rotate: false
+ xy: 434, 81
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13012
+ rotate: false
+ xy: 466, 29
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13013
+ rotate: false
+ xy: 470, 393
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13016
+ rotate: false
+ xy: 470, 341
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13017
+ rotate: false
+ xy: 470, 289
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13020
+ rotate: false
+ xy: 470, 237
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13021
+ rotate: false
+ xy: 470, 185
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13024
+ rotate: false
+ xy: 470, 133
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13025
+ rotate: false
+ xy: 470, 81
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13028
+ rotate: false
+ xy: 502, 29
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13029
+ rotate: false
+ xy: 877, 398
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13032
+ rotate: false
+ xy: 506, 346
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13033
+ rotate: false
+ xy: 506, 294
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13036
+ rotate: false
+ xy: 506, 242
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13037
+ rotate: false
+ xy: 506, 190
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13040
+ rotate: false
+ xy: 506, 138
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13041
+ rotate: false
+ xy: 506, 86
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13044
+ rotate: false
+ xy: 538, 34
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13045
+ rotate: false
+ xy: 834, 361
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13048
+ rotate: false
+ xy: 974, 346
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13049
+ rotate: false
+ xy: 834, 309
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13052
+ rotate: false
+ xy: 974, 294
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13053
+ rotate: false
+ xy: 542, 242
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13056
+ rotate: false
+ xy: 542, 190
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13057
+ rotate: false
+ xy: 542, 138
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13060
+ rotate: false
+ xy: 542, 86
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13061
+ rotate: false
+ xy: 574, 34
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13064
+ rotate: false
+ xy: 578, 242
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13065
+ rotate: false
+ xy: 578, 190
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13068
+ rotate: false
+ xy: 578, 138
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13069
+ rotate: false
+ xy: 578, 86
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13072
+ rotate: false
+ xy: 610, 34
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13073
+ rotate: false
+ xy: 829, 257
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13076
+ rotate: false
+ xy: 614, 195
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13077
+ rotate: false
+ xy: 614, 143
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13080
+ rotate: false
+ xy: 614, 91
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13081
+ rotate: false
+ xy: 646, 39
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13084
+ rotate: false
+ xy: 786, 220
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13085
+ rotate: false
+ xy: 650, 126
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13088
+ rotate: false
+ xy: 682, 74
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13089
+ rotate: false
+ xy: 686, 126
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13092
+ rotate: false
+ xy: 682, 22
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13093
+ rotate: false
+ xy: 718, 74
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13096
+ rotate: false
+ xy: 722, 126
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13097
+ rotate: false
+ xy: 718, 22
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13100
+ rotate: false
+ xy: 754, 74
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13101
+ rotate: false
+ xy: 758, 126
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13104
+ rotate: false
+ xy: 754, 22
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13105
+ rotate: false
+ xy: 790, 74
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13108
+ rotate: false
+ xy: 790, 22
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13109
+ rotate: false
+ xy: 794, 168
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13112
+ rotate: false
+ xy: 826, 54
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13113
+ rotate: false
+ xy: 826, 2
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13116
+ rotate: false
+ xy: 914, 64
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13117
+ rotate: false
+ xy: 914, 12
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+22817
+ rotate: false
+ xy: 1002, 54
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+22818
+ rotate: false
+ xy: 1002, 2
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+2603
+ rotate: false
+ xy: 990, 977
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2608
+ rotate: false
+ xy: 994, 883
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2609
+ rotate: false
+ xy: 182, 836
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2614
+ rotate: false
+ xy: 994, 836
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2641
+ rotate: false
+ xy: 218, 789
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2646
+ rotate: false
+ xy: 218, 742
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2647
+ rotate: false
+ xy: 290, 695
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2652
+ rotate: false
+ xy: 946, 695
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2653
+ rotate: false
+ xy: 326, 648
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2658
+ rotate: false
+ xy: 326, 601
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2663
+ rotate: false
+ xy: 398, 554
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2668
+ rotate: false
+ xy: 898, 554
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2669
+ rotate: false
+ xy: 434, 507
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2674
+ rotate: false
+ xy: 434, 460
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2675
+ rotate: false
+ xy: 506, 413
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2680
+ rotate: false
+ xy: 850, 413
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2721
+ rotate: false
+ xy: 542, 366
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2726
+ rotate: false
+ xy: 542, 319
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2727
+ rotate: false
+ xy: 614, 272
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2732
+ rotate: false
+ xy: 802, 272
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2733
+ rotate: false
+ xy: 650, 225
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2738
+ rotate: false
+ xy: 650, 178
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2771
+ rotate: false
+ xy: 934, 210
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2776
+ rotate: false
+ xy: 934, 163
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2777
+ rotate: false
+ xy: 930, 116
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3816
+ rotate: false
+ xy: 2, 925
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3817
+ rotate: false
+ xy: 2, 873
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3820
+ rotate: false
+ xy: 2, 821
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3821
+ rotate: false
+ xy: 2, 769
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3824
+ rotate: false
+ xy: 2, 717
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3825
+ rotate: false
+ xy: 2, 665
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3828
+ rotate: false
+ xy: 2, 613
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+3829
+ rotate: false
+ xy: 2, 561
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+4461
+ rotate: false
+ xy: 2, 509
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+4462
+ rotate: false
+ xy: 2, 457
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+4491
+ rotate: false
+ xy: 2, 405
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+4492
+ rotate: false
+ xy: 2, 353
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+4495
+ rotate: false
+ xy: 2, 301
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+4496
+ rotate: false
+ xy: 2, 249
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+4751
+ rotate: false
+ xy: 2, 197
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+4752
+ rotate: false
+ xy: 2, 145
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+4905
+ rotate: false
+ xy: 2, 93
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+4906
+ rotate: false
+ xy: 2, 41
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+4996
+ rotate: false
+ xy: 38, 925
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+4997
+ rotate: false
+ xy: 38, 873
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5027
+ rotate: false
+ xy: 38, 821
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5028
+ rotate: false
+ xy: 38, 769
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5057
+ rotate: false
+ xy: 38, 717
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5058
+ rotate: false
+ xy: 38, 665
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5087
+ rotate: false
+ xy: 38, 613
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5088
+ rotate: false
+ xy: 38, 561
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5117
+ rotate: false
+ xy: 38, 509
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5118
+ rotate: false
+ xy: 38, 457
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5147
+ rotate: false
+ xy: 38, 405
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5148
+ rotate: false
+ xy: 38, 353
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5177
+ rotate: false
+ xy: 38, 301
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5178
+ rotate: false
+ xy: 38, 249
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5207
+ rotate: false
+ xy: 38, 197
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5208
+ rotate: false
+ xy: 38, 145
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5237
+ rotate: false
+ xy: 38, 93
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5238
+ rotate: false
+ xy: 38, 41
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5267
+ rotate: false
+ xy: 74, 878
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5268
+ rotate: false
+ xy: 74, 826
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5297
+ rotate: false
+ xy: 74, 774
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5298
+ rotate: false
+ xy: 74, 722
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5354
+ rotate: false
+ xy: 74, 670
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5355
+ rotate: false
+ xy: 74, 618
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5387
+ rotate: false
+ xy: 74, 566
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5388
+ rotate: false
+ xy: 74, 514
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5417
+ rotate: false
+ xy: 74, 462
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5418
+ rotate: false
+ xy: 74, 410
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5447
+ rotate: false
+ xy: 74, 358
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5448
+ rotate: false
+ xy: 74, 306
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5497
+ rotate: false
+ xy: 74, 254
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5498
+ rotate: false
+ xy: 74, 202
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5584
+ rotate: false
+ xy: 74, 150
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5585
+ rotate: false
+ xy: 74, 98
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5757
+ rotate: false
+ xy: 74, 46
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5758
+ rotate: false
+ xy: 110, 831
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5768
+ rotate: false
+ xy: 110, 779
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5769
+ rotate: false
+ xy: 110, 727
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5983
+ rotate: false
+ xy: 110, 675
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5984
+ rotate: false
+ xy: 110, 623
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5987
+ rotate: false
+ xy: 110, 571
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5988
+ rotate: false
+ xy: 110, 519
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5991
+ rotate: false
+ xy: 110, 467
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5992
+ rotate: false
+ xy: 110, 415
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5995
+ rotate: false
+ xy: 110, 363
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+5996
+ rotate: false
+ xy: 110, 311
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6568
+ rotate: false
+ xy: 110, 259
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6569
+ rotate: false
+ xy: 110, 207
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6572
+ rotate: false
+ xy: 110, 155
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6573
+ rotate: false
+ xy: 110, 103
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6818
+ rotate: false
+ xy: 110, 51
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6819
+ rotate: false
+ xy: 146, 831
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6945
+ rotate: false
+ xy: 146, 779
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6946
+ rotate: false
+ xy: 146, 727
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6949
+ rotate: false
+ xy: 146, 675
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6950
+ rotate: false
+ xy: 146, 623
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6953
+ rotate: false
+ xy: 146, 571
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6954
+ rotate: false
+ xy: 146, 519
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6957
+ rotate: false
+ xy: 146, 467
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6958
+ rotate: false
+ xy: 146, 415
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6961
+ rotate: false
+ xy: 146, 363
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6962
+ rotate: false
+ xy: 146, 311
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6995
+ rotate: false
+ xy: 146, 259
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+6996
+ rotate: false
+ xy: 146, 207
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+7097
+ rotate: false
+ xy: 146, 155
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+7098
+ rotate: false
+ xy: 146, 103
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+7203
+ rotate: false
+ xy: 146, 51
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+7204
+ rotate: false
+ xy: 182, 784
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+7207
+ rotate: false
+ xy: 182, 732
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+7208
+ rotate: false
+ xy: 182, 680
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+7211
+ rotate: false
+ xy: 182, 628
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+7212
+ rotate: false
+ xy: 182, 576
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+7215
+ rotate: false
+ xy: 182, 524
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+7216
+ rotate: false
+ xy: 182, 472
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+7219
+ rotate: false
+ xy: 182, 420
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+7220
+ rotate: false
+ xy: 182, 368
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+7228
+ rotate: false
+ xy: 182, 316
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+7229
+ rotate: false
+ xy: 182, 264
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+7685
+ rotate: false
+ xy: 182, 212
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+7686
+ rotate: false
+ xy: 182, 160
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+8603
+ rotate: false
+ xy: 182, 108
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+8604
+ rotate: false
+ xy: 182, 56
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9208
+ rotate: false
+ xy: 214, 4
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9209
+ rotate: false
+ xy: 978, 784
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9212
+ rotate: false
+ xy: 978, 732
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9213
+ rotate: false
+ xy: 218, 680
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9216
+ rotate: false
+ xy: 218, 628
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9217
+ rotate: false
+ xy: 218, 576
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9473
+ rotate: false
+ xy: 218, 524
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9474
+ rotate: false
+ xy: 218, 472
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9477
+ rotate: false
+ xy: 218, 420
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9478
+ rotate: false
+ xy: 218, 368
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9481
+ rotate: false
+ xy: 218, 316
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9482
+ rotate: false
+ xy: 218, 264
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9485
+ rotate: false
+ xy: 218, 212
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9486
+ rotate: false
+ xy: 218, 160
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9489
+ rotate: false
+ xy: 218, 108
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9490
+ rotate: false
+ xy: 218, 56
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9493
+ rotate: false
+ xy: 250, 4
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9494
+ rotate: false
+ xy: 254, 680
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9497
+ rotate: false
+ xy: 254, 628
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9498
+ rotate: false
+ xy: 254, 576
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9501
+ rotate: false
+ xy: 254, 524
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9502
+ rotate: false
+ xy: 254, 472
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9505
+ rotate: false
+ xy: 254, 420
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9506
+ rotate: false
+ xy: 254, 368
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9509
+ rotate: false
+ xy: 254, 316
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9510
+ rotate: false
+ xy: 254, 264
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9513
+ rotate: false
+ xy: 254, 212
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9514
+ rotate: false
+ xy: 254, 160
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9517
+ rotate: false
+ xy: 254, 108
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9518
+ rotate: false
+ xy: 254, 56
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9525
+ rotate: false
+ xy: 286, 4
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9526
+ rotate: false
+ xy: 973, 680
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9577
+ rotate: false
+ xy: 290, 628
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9578
+ rotate: false
+ xy: 290, 576
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9609
+ rotate: false
+ xy: 290, 524
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9610
+ rotate: false
+ xy: 290, 472
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9613
+ rotate: false
+ xy: 290, 420
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9614
+ rotate: false
+ xy: 290, 368
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9617
+ rotate: false
+ xy: 290, 316
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9618
+ rotate: false
+ xy: 290, 264
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9621
+ rotate: false
+ xy: 290, 212
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9622
+ rotate: false
+ xy: 290, 160
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9625
+ rotate: false
+ xy: 290, 108
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9626
+ rotate: false
+ xy: 290, 56
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9629
+ rotate: false
+ xy: 322, 4
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9630
+ rotate: false
+ xy: 930, 643
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9678
+ rotate: false
+ xy: 2, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9681
+ rotate: false
+ xy: 54, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9688
+ rotate: false
+ xy: 106, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15575
+ rotate: false
+ xy: 106, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9691
+ rotate: false
+ xy: 158, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15578
+ rotate: false
+ xy: 158, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9694
+ rotate: false
+ xy: 210, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15581
+ rotate: false
+ xy: 210, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9697
+ rotate: false
+ xy: 262, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15584
+ rotate: false
+ xy: 262, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9700
+ rotate: false
+ xy: 314, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15587
+ rotate: false
+ xy: 314, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9703
+ rotate: false
+ xy: 366, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15590
+ rotate: false
+ xy: 366, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9705
+ rotate: false
+ xy: 418, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15592
+ rotate: false
+ xy: 418, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9708
+ rotate: false
+ xy: 470, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15595
+ rotate: false
+ xy: 470, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9715
+ rotate: false
+ xy: 522, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9718
+ rotate: false
+ xy: 574, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9721
+ rotate: false
+ xy: 626, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9724
+ rotate: false
+ xy: 678, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9727
+ rotate: false
+ xy: 730, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9730
+ rotate: false
+ xy: 782, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9732
+ rotate: false
+ xy: 834, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9735
+ rotate: false
+ xy: 886, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9742
+ rotate: false
+ xy: 938, 977
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9745
+ rotate: false
+ xy: 74, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9748
+ rotate: false
+ xy: 126, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9751
+ rotate: false
+ xy: 178, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9754
+ rotate: false
+ xy: 230, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9757
+ rotate: false
+ xy: 282, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9759
+ rotate: false
+ xy: 334, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9762
+ rotate: false
+ xy: 386, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9769
+ rotate: false
+ xy: 438, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9772
+ rotate: false
+ xy: 490, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9775
+ rotate: false
+ xy: 542, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9778
+ rotate: false
+ xy: 594, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9781
+ rotate: false
+ xy: 646, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9784
+ rotate: false
+ xy: 698, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9786
+ rotate: false
+ xy: 750, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9789
+ rotate: false
+ xy: 802, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9885
+ rotate: false
+ xy: 854, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9888
+ rotate: false
+ xy: 906, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9891
+ rotate: false
+ xy: 958, 930
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9894
+ rotate: false
+ xy: 110, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9897
+ rotate: false
+ xy: 162, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9900
+ rotate: false
+ xy: 214, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9902
+ rotate: false
+ xy: 266, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9905
+ rotate: false
+ xy: 318, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9912
+ rotate: false
+ xy: 370, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9915
+ rotate: false
+ xy: 422, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9918
+ rotate: false
+ xy: 474, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9921
+ rotate: false
+ xy: 526, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9924
+ rotate: false
+ xy: 578, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9927
+ rotate: false
+ xy: 630, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9929
+ rotate: false
+ xy: 682, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9932
+ rotate: false
+ xy: 734, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9939
+ rotate: false
+ xy: 786, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9942
+ rotate: false
+ xy: 838, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9945
+ rotate: false
+ xy: 890, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9948
+ rotate: false
+ xy: 942, 883
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9951
+ rotate: false
+ xy: 110, 4
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9954
+ rotate: false
+ xy: 162, 4
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9956
+ rotate: false
+ xy: 214, 836
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9959
+ rotate: false
+ xy: 266, 836
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9966
+ rotate: false
+ xy: 318, 836
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9969
+ rotate: false
+ xy: 370, 836
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9972
+ rotate: false
+ xy: 422, 836
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9975
+ rotate: false
+ xy: 474, 836
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9978
+ rotate: false
+ xy: 526, 836
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9981
+ rotate: false
+ xy: 578, 836
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9983
+ rotate: false
+ xy: 630, 836
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9986
+ rotate: false
+ xy: 682, 836
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+9992
+ rotate: false
+ xy: 930, 591
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9993
+ rotate: false
+ xy: 326, 534
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9996
+ rotate: false
+ xy: 326, 482
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+9997
+ rotate: false
+ xy: 326, 430
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+
+images96.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10794
+ rotate: false
+ xy: 2, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10797
+ rotate: false
+ xy: 2, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10800
+ rotate: false
+ xy: 54, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10803
+ rotate: false
+ xy: 2, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10806
+ rotate: false
+ xy: 54, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10808
+ rotate: false
+ xy: 106, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10811
+ rotate: false
+ xy: 2, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10817
+ rotate: false
+ xy: 54, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10820
+ rotate: false
+ xy: 106, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10823
+ rotate: false
+ xy: 158, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10826
+ rotate: false
+ xy: 2, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10829
+ rotate: false
+ xy: 54, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10832
+ rotate: false
+ xy: 106, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10834
+ rotate: false
+ xy: 158, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10837
+ rotate: false
+ xy: 210, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10843
+ rotate: false
+ xy: 2, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10846
+ rotate: false
+ xy: 54, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10849
+ rotate: false
+ xy: 106, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10852
+ rotate: false
+ xy: 158, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10855
+ rotate: false
+ xy: 210, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10858
+ rotate: false
+ xy: 262, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10860
+ rotate: false
+ xy: 2, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10863
+ rotate: false
+ xy: 54, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10894
+ rotate: false
+ xy: 106, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10897
+ rotate: false
+ xy: 158, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10900
+ rotate: false
+ xy: 210, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10903
+ rotate: false
+ xy: 262, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10906
+ rotate: false
+ xy: 314, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10909
+ rotate: false
+ xy: 2, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10911
+ rotate: false
+ xy: 54, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10914
+ rotate: false
+ xy: 106, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10920
+ rotate: false
+ xy: 158, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10923
+ rotate: false
+ xy: 210, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10926
+ rotate: false
+ xy: 262, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10929
+ rotate: false
+ xy: 314, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10932
+ rotate: false
+ xy: 366, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10935
+ rotate: false
+ xy: 2, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10937
+ rotate: false
+ xy: 54, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10940
+ rotate: false
+ xy: 106, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10946
+ rotate: false
+ xy: 158, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10949
+ rotate: false
+ xy: 210, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10952
+ rotate: false
+ xy: 262, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10955
+ rotate: false
+ xy: 314, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10958
+ rotate: false
+ xy: 366, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10961
+ rotate: false
+ xy: 418, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10963
+ rotate: false
+ xy: 2, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10966
+ rotate: false
+ xy: 54, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10972
+ rotate: false
+ xy: 106, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10975
+ rotate: false
+ xy: 158, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10978
+ rotate: false
+ xy: 210, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10981
+ rotate: false
+ xy: 262, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10984
+ rotate: false
+ xy: 314, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10987
+ rotate: false
+ xy: 366, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10989
+ rotate: false
+ xy: 418, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10992
+ rotate: false
+ xy: 470, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+10998
+ rotate: false
+ xy: 2, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11001
+ rotate: false
+ xy: 54, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11004
+ rotate: false
+ xy: 106, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11007
+ rotate: false
+ xy: 158, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11010
+ rotate: false
+ xy: 210, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11013
+ rotate: false
+ xy: 262, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11015
+ rotate: false
+ xy: 314, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11018
+ rotate: false
+ xy: 366, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11024
+ rotate: false
+ xy: 418, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11027
+ rotate: false
+ xy: 470, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11030
+ rotate: false
+ xy: 522, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11033
+ rotate: false
+ xy: 2, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11036
+ rotate: false
+ xy: 54, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11039
+ rotate: false
+ xy: 106, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11041
+ rotate: false
+ xy: 158, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11044
+ rotate: false
+ xy: 210, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11050
+ rotate: false
+ xy: 262, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11053
+ rotate: false
+ xy: 314, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11056
+ rotate: false
+ xy: 366, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11059
+ rotate: false
+ xy: 418, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11062
+ rotate: false
+ xy: 470, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11065
+ rotate: false
+ xy: 522, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11067
+ rotate: false
+ xy: 574, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11070
+ rotate: false
+ xy: 2, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11076
+ rotate: false
+ xy: 54, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11079
+ rotate: false
+ xy: 106, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11082
+ rotate: false
+ xy: 158, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11085
+ rotate: false
+ xy: 210, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11088
+ rotate: false
+ xy: 262, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11091
+ rotate: false
+ xy: 314, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11093
+ rotate: false
+ xy: 366, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11096
+ rotate: false
+ xy: 418, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11102
+ rotate: false
+ xy: 470, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11105
+ rotate: false
+ xy: 522, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11108
+ rotate: false
+ xy: 574, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11111
+ rotate: false
+ xy: 626, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11114
+ rotate: false
+ xy: 2, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11117
+ rotate: false
+ xy: 54, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11119
+ rotate: false
+ xy: 106, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11122
+ rotate: false
+ xy: 158, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11128
+ rotate: false
+ xy: 210, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11131
+ rotate: false
+ xy: 262, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11134
+ rotate: false
+ xy: 314, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11137
+ rotate: false
+ xy: 366, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11140
+ rotate: false
+ xy: 418, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11143
+ rotate: false
+ xy: 470, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11145
+ rotate: false
+ xy: 522, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11148
+ rotate: false
+ xy: 574, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11154
+ rotate: false
+ xy: 626, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11157
+ rotate: false
+ xy: 678, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11160
+ rotate: false
+ xy: 2, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11163
+ rotate: false
+ xy: 54, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11166
+ rotate: false
+ xy: 106, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11169
+ rotate: false
+ xy: 158, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11171
+ rotate: false
+ xy: 210, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11174
+ rotate: false
+ xy: 262, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11180
+ rotate: false
+ xy: 314, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11183
+ rotate: false
+ xy: 366, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11186
+ rotate: false
+ xy: 418, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11189
+ rotate: false
+ xy: 470, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11192
+ rotate: false
+ xy: 522, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11195
+ rotate: false
+ xy: 574, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11197
+ rotate: false
+ xy: 626, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11200
+ rotate: false
+ xy: 678, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11206
+ rotate: false
+ xy: 730, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11209
+ rotate: false
+ xy: 2, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11212
+ rotate: false
+ xy: 54, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11215
+ rotate: false
+ xy: 106, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11218
+ rotate: false
+ xy: 158, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11221
+ rotate: false
+ xy: 210, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11223
+ rotate: false
+ xy: 262, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11226
+ rotate: false
+ xy: 314, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11232
+ rotate: false
+ xy: 366, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11235
+ rotate: false
+ xy: 418, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11238
+ rotate: false
+ xy: 470, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11241
+ rotate: false
+ xy: 522, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11244
+ rotate: false
+ xy: 574, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11247
+ rotate: false
+ xy: 626, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11249
+ rotate: false
+ xy: 678, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11252
+ rotate: false
+ xy: 730, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11258
+ rotate: false
+ xy: 782, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11261
+ rotate: false
+ xy: 2, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11264
+ rotate: false
+ xy: 54, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11267
+ rotate: false
+ xy: 106, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11270
+ rotate: false
+ xy: 158, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11273
+ rotate: false
+ xy: 210, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11275
+ rotate: false
+ xy: 262, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11278
+ rotate: false
+ xy: 314, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11284
+ rotate: false
+ xy: 366, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11287
+ rotate: false
+ xy: 418, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11290
+ rotate: false
+ xy: 470, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11293
+ rotate: false
+ xy: 522, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11296
+ rotate: false
+ xy: 574, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11299
+ rotate: false
+ xy: 626, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11301
+ rotate: false
+ xy: 678, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11304
+ rotate: false
+ xy: 730, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11310
+ rotate: false
+ xy: 782, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11313
+ rotate: false
+ xy: 834, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11316
+ rotate: false
+ xy: 2, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11319
+ rotate: false
+ xy: 54, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11322
+ rotate: false
+ xy: 106, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11325
+ rotate: false
+ xy: 158, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11327
+ rotate: false
+ xy: 210, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11330
+ rotate: false
+ xy: 262, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11336
+ rotate: false
+ xy: 314, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11339
+ rotate: false
+ xy: 366, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11342
+ rotate: false
+ xy: 418, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11345
+ rotate: false
+ xy: 470, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11348
+ rotate: false
+ xy: 522, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11351
+ rotate: false
+ xy: 574, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11353
+ rotate: false
+ xy: 626, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11356
+ rotate: false
+ xy: 678, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11362
+ rotate: false
+ xy: 730, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11365
+ rotate: false
+ xy: 782, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11368
+ rotate: false
+ xy: 834, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11371
+ rotate: false
+ xy: 886, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11374
+ rotate: false
+ xy: 2, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11377
+ rotate: false
+ xy: 54, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11379
+ rotate: false
+ xy: 106, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11382
+ rotate: false
+ xy: 158, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11388
+ rotate: false
+ xy: 210, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11391
+ rotate: false
+ xy: 262, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11394
+ rotate: false
+ xy: 314, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11397
+ rotate: false
+ xy: 366, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11400
+ rotate: false
+ xy: 418, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11403
+ rotate: false
+ xy: 470, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11405
+ rotate: false
+ xy: 522, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11408
+ rotate: false
+ xy: 574, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11414
+ rotate: false
+ xy: 626, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11417
+ rotate: false
+ xy: 678, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11420
+ rotate: false
+ xy: 730, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11423
+ rotate: false
+ xy: 782, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11426
+ rotate: false
+ xy: 834, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11429
+ rotate: false
+ xy: 886, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11431
+ rotate: false
+ xy: 938, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11434
+ rotate: false
+ xy: 2, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11440
+ rotate: false
+ xy: 54, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11443
+ rotate: false
+ xy: 106, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11446
+ rotate: false
+ xy: 158, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11449
+ rotate: false
+ xy: 210, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11452
+ rotate: false
+ xy: 262, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11455
+ rotate: false
+ xy: 314, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11457
+ rotate: false
+ xy: 366, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11460
+ rotate: false
+ xy: 418, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11466
+ rotate: false
+ xy: 470, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11469
+ rotate: false
+ xy: 522, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11472
+ rotate: false
+ xy: 574, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11475
+ rotate: false
+ xy: 626, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11478
+ rotate: false
+ xy: 678, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11481
+ rotate: false
+ xy: 730, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11483
+ rotate: false
+ xy: 782, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11486
+ rotate: false
+ xy: 834, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11492
+ rotate: false
+ xy: 886, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11495
+ rotate: false
+ xy: 938, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11498
+ rotate: false
+ xy: 2, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11501
+ rotate: false
+ xy: 54, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11504
+ rotate: false
+ xy: 106, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11507
+ rotate: false
+ xy: 158, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11509
+ rotate: false
+ xy: 210, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11512
+ rotate: false
+ xy: 262, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11518
+ rotate: false
+ xy: 314, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11521
+ rotate: false
+ xy: 366, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11524
+ rotate: false
+ xy: 418, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11527
+ rotate: false
+ xy: 470, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11530
+ rotate: false
+ xy: 522, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11533
+ rotate: false
+ xy: 574, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11535
+ rotate: false
+ xy: 626, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11538
+ rotate: false
+ xy: 678, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11544
+ rotate: false
+ xy: 730, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11547
+ rotate: false
+ xy: 782, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11550
+ rotate: false
+ xy: 834, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11553
+ rotate: false
+ xy: 886, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11556
+ rotate: false
+ xy: 938, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11559
+ rotate: false
+ xy: 54, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11561
+ rotate: false
+ xy: 106, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11564
+ rotate: false
+ xy: 158, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11570
+ rotate: false
+ xy: 210, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11573
+ rotate: false
+ xy: 262, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11576
+ rotate: false
+ xy: 314, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11579
+ rotate: false
+ xy: 366, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11582
+ rotate: false
+ xy: 418, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11585
+ rotate: false
+ xy: 470, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11587
+ rotate: false
+ xy: 522, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11590
+ rotate: false
+ xy: 574, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11596
+ rotate: false
+ xy: 626, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11599
+ rotate: false
+ xy: 678, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11602
+ rotate: false
+ xy: 730, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11605
+ rotate: false
+ xy: 782, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11608
+ rotate: false
+ xy: 834, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11611
+ rotate: false
+ xy: 886, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11613
+ rotate: false
+ xy: 938, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11616
+ rotate: false
+ xy: 106, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11622
+ rotate: false
+ xy: 158, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11625
+ rotate: false
+ xy: 210, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11628
+ rotate: false
+ xy: 262, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11631
+ rotate: false
+ xy: 314, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11634
+ rotate: false
+ xy: 366, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11637
+ rotate: false
+ xy: 418, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11639
+ rotate: false
+ xy: 470, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11642
+ rotate: false
+ xy: 522, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11648
+ rotate: false
+ xy: 574, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11651
+ rotate: false
+ xy: 626, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11654
+ rotate: false
+ xy: 678, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11657
+ rotate: false
+ xy: 730, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11660
+ rotate: false
+ xy: 782, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11663
+ rotate: false
+ xy: 834, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11665
+ rotate: false
+ xy: 886, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11668
+ rotate: false
+ xy: 938, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11674
+ rotate: false
+ xy: 158, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11677
+ rotate: false
+ xy: 210, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11680
+ rotate: false
+ xy: 262, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11683
+ rotate: false
+ xy: 314, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11686
+ rotate: false
+ xy: 366, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11689
+ rotate: false
+ xy: 418, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11691
+ rotate: false
+ xy: 470, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11694
+ rotate: false
+ xy: 522, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11700
+ rotate: false
+ xy: 574, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11703
+ rotate: false
+ xy: 626, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11706
+ rotate: false
+ xy: 678, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11709
+ rotate: false
+ xy: 730, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11712
+ rotate: false
+ xy: 782, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11715
+ rotate: false
+ xy: 834, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11717
+ rotate: false
+ xy: 886, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11720
+ rotate: false
+ xy: 938, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11726
+ rotate: false
+ xy: 210, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11729
+ rotate: false
+ xy: 262, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11732
+ rotate: false
+ xy: 314, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11735
+ rotate: false
+ xy: 366, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11738
+ rotate: false
+ xy: 418, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11741
+ rotate: false
+ xy: 470, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11743
+ rotate: false
+ xy: 522, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11746
+ rotate: false
+ xy: 574, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11752
+ rotate: false
+ xy: 626, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11755
+ rotate: false
+ xy: 678, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11758
+ rotate: false
+ xy: 730, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11761
+ rotate: false
+ xy: 782, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11764
+ rotate: false
+ xy: 834, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11767
+ rotate: false
+ xy: 886, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11769
+ rotate: false
+ xy: 938, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11772
+ rotate: false
+ xy: 262, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11778
+ rotate: false
+ xy: 314, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11781
+ rotate: false
+ xy: 366, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11784
+ rotate: false
+ xy: 418, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11787
+ rotate: false
+ xy: 470, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11790
+ rotate: false
+ xy: 522, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11793
+ rotate: false
+ xy: 574, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11795
+ rotate: false
+ xy: 626, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11798
+ rotate: false
+ xy: 678, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11804
+ rotate: false
+ xy: 730, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11807
+ rotate: false
+ xy: 782, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11810
+ rotate: false
+ xy: 834, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11813
+ rotate: false
+ xy: 886, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11816
+ rotate: false
+ xy: 938, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11819
+ rotate: false
+ xy: 314, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11821
+ rotate: false
+ xy: 366, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11824
+ rotate: false
+ xy: 418, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11830
+ rotate: false
+ xy: 470, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11833
+ rotate: false
+ xy: 522, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11836
+ rotate: false
+ xy: 574, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11839
+ rotate: false
+ xy: 626, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11842
+ rotate: false
+ xy: 678, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11845
+ rotate: false
+ xy: 730, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11847
+ rotate: false
+ xy: 782, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11850
+ rotate: false
+ xy: 834, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11856
+ rotate: false
+ xy: 886, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11859
+ rotate: false
+ xy: 938, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11862
+ rotate: false
+ xy: 366, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11865
+ rotate: false
+ xy: 418, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11868
+ rotate: false
+ xy: 470, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11871
+ rotate: false
+ xy: 522, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11873
+ rotate: false
+ xy: 574, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11876
+ rotate: false
+ xy: 626, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11918
+ rotate: false
+ xy: 678, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11921
+ rotate: false
+ xy: 730, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11924
+ rotate: false
+ xy: 782, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11927
+ rotate: false
+ xy: 834, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11930
+ rotate: false
+ xy: 886, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11933
+ rotate: false
+ xy: 938, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11935
+ rotate: false
+ xy: 418, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+11938
+ rotate: false
+ xy: 470, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12754
+ rotate: false
+ xy: 522, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12757
+ rotate: false
+ xy: 574, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12760
+ rotate: false
+ xy: 626, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12763
+ rotate: false
+ xy: 678, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12766
+ rotate: false
+ xy: 730, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12769
+ rotate: false
+ xy: 782, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12771
+ rotate: false
+ xy: 834, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12774
+ rotate: false
+ xy: 886, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12781
+ rotate: false
+ xy: 938, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12784
+ rotate: false
+ xy: 470, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12787
+ rotate: false
+ xy: 522, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12790
+ rotate: false
+ xy: 574, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12793
+ rotate: false
+ xy: 626, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12796
+ rotate: false
+ xy: 678, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12798
+ rotate: false
+ xy: 730, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12801
+ rotate: false
+ xy: 782, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12808
+ rotate: false
+ xy: 834, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12811
+ rotate: false
+ xy: 886, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12814
+ rotate: false
+ xy: 938, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12817
+ rotate: false
+ xy: 522, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12820
+ rotate: false
+ xy: 574, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12823
+ rotate: false
+ xy: 626, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12825
+ rotate: false
+ xy: 678, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12828
+ rotate: false
+ xy: 730, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12835
+ rotate: false
+ xy: 782, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12838
+ rotate: false
+ xy: 834, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12841
+ rotate: false
+ xy: 886, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12844
+ rotate: false
+ xy: 938, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12847
+ rotate: false
+ xy: 574, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12850
+ rotate: false
+ xy: 626, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12852
+ rotate: false
+ xy: 678, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12855
+ rotate: false
+ xy: 730, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12862
+ rotate: false
+ xy: 782, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12865
+ rotate: false
+ xy: 834, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12868
+ rotate: false
+ xy: 886, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12871
+ rotate: false
+ xy: 938, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12874
+ rotate: false
+ xy: 626, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12877
+ rotate: false
+ xy: 678, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12879
+ rotate: false
+ xy: 730, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12882
+ rotate: false
+ xy: 782, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12889
+ rotate: false
+ xy: 834, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12892
+ rotate: false
+ xy: 886, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12895
+ rotate: false
+ xy: 938, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12898
+ rotate: false
+ xy: 678, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12901
+ rotate: false
+ xy: 730, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12904
+ rotate: false
+ xy: 782, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12906
+ rotate: false
+ xy: 834, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12909
+ rotate: false
+ xy: 886, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12916
+ rotate: false
+ xy: 938, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12919
+ rotate: false
+ xy: 730, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12922
+ rotate: false
+ xy: 782, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12925
+ rotate: false
+ xy: 834, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12928
+ rotate: false
+ xy: 886, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12931
+ rotate: false
+ xy: 938, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12933
+ rotate: false
+ xy: 782, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12936
+ rotate: false
+ xy: 834, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12969
+ rotate: false
+ xy: 886, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12972
+ rotate: false
+ xy: 938, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12975
+ rotate: false
+ xy: 834, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12978
+ rotate: false
+ xy: 886, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12981
+ rotate: false
+ xy: 938, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12984
+ rotate: false
+ xy: 886, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12986
+ rotate: false
+ xy: 938, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+12989
+ rotate: false
+ xy: 938, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2782
+ rotate: false
+ xy: 990, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2783
+ rotate: false
+ xy: 990, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2788
+ rotate: false
+ xy: 990, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2793
+ rotate: false
+ xy: 990, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2798
+ rotate: false
+ xy: 990, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2799
+ rotate: false
+ xy: 990, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2804
+ rotate: false
+ xy: 990, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2805
+ rotate: false
+ xy: 990, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2810
+ rotate: false
+ xy: 990, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2815
+ rotate: false
+ xy: 990, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2820
+ rotate: false
+ xy: 990, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2821
+ rotate: false
+ xy: 990, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2826
+ rotate: false
+ xy: 990, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2827
+ rotate: false
+ xy: 990, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2832
+ rotate: false
+ xy: 990, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2909
+ rotate: false
+ xy: 990, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2914
+ rotate: false
+ xy: 990, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2915
+ rotate: false
+ xy: 990, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2920
+ rotate: false
+ xy: 990, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2921
+ rotate: false
+ xy: 990, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2926
+ rotate: false
+ xy: 990, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+
+images97.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+13257
+ rotate: false
+ xy: 2, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13260
+ rotate: false
+ xy: 2, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13263
+ rotate: false
+ xy: 54, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13266
+ rotate: false
+ xy: 2, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13269
+ rotate: false
+ xy: 54, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13272
+ rotate: false
+ xy: 106, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13274
+ rotate: false
+ xy: 2, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13277
+ rotate: false
+ xy: 54, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13284
+ rotate: false
+ xy: 106, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13287
+ rotate: false
+ xy: 158, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13290
+ rotate: false
+ xy: 2, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13293
+ rotate: false
+ xy: 54, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13296
+ rotate: false
+ xy: 106, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13299
+ rotate: false
+ xy: 158, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13301
+ rotate: false
+ xy: 210, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13304
+ rotate: false
+ xy: 2, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13310
+ rotate: false
+ xy: 54, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13313
+ rotate: false
+ xy: 106, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13316
+ rotate: false
+ xy: 158, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13319
+ rotate: false
+ xy: 210, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13322
+ rotate: false
+ xy: 262, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13325
+ rotate: false
+ xy: 2, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13327
+ rotate: false
+ xy: 54, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13330
+ rotate: false
+ xy: 106, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13336
+ rotate: false
+ xy: 158, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13339
+ rotate: false
+ xy: 210, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13342
+ rotate: false
+ xy: 262, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13348
+ rotate: false
+ xy: 314, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13351
+ rotate: false
+ xy: 2, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13353
+ rotate: false
+ xy: 54, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13356
+ rotate: false
+ xy: 106, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13362
+ rotate: false
+ xy: 158, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13365
+ rotate: false
+ xy: 210, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13368
+ rotate: false
+ xy: 262, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13371
+ rotate: false
+ xy: 314, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13374
+ rotate: false
+ xy: 366, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13377
+ rotate: false
+ xy: 2, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13379
+ rotate: false
+ xy: 54, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13382
+ rotate: false
+ xy: 106, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23360
+ rotate: false
+ xy: 106, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13564
+ rotate: false
+ xy: 158, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13567
+ rotate: false
+ xy: 210, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13570
+ rotate: false
+ xy: 262, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13573
+ rotate: false
+ xy: 314, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13576
+ rotate: false
+ xy: 366, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13579
+ rotate: false
+ xy: 418, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13581
+ rotate: false
+ xy: 2, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13584
+ rotate: false
+ xy: 54, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13592
+ rotate: false
+ xy: 106, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13595
+ rotate: false
+ xy: 158, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13598
+ rotate: false
+ xy: 210, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13601
+ rotate: false
+ xy: 262, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13604
+ rotate: false
+ xy: 314, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13607
+ rotate: false
+ xy: 366, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13609
+ rotate: false
+ xy: 418, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13612
+ rotate: false
+ xy: 470, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13618
+ rotate: false
+ xy: 2, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13621
+ rotate: false
+ xy: 54, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13624
+ rotate: false
+ xy: 106, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13627
+ rotate: false
+ xy: 158, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13630
+ rotate: false
+ xy: 210, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13633
+ rotate: false
+ xy: 262, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13635
+ rotate: false
+ xy: 314, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13638
+ rotate: false
+ xy: 366, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13645
+ rotate: false
+ xy: 418, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13648
+ rotate: false
+ xy: 470, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13651
+ rotate: false
+ xy: 522, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13654
+ rotate: false
+ xy: 2, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13657
+ rotate: false
+ xy: 54, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13660
+ rotate: false
+ xy: 106, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13662
+ rotate: false
+ xy: 158, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13665
+ rotate: false
+ xy: 210, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13672
+ rotate: false
+ xy: 262, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13675
+ rotate: false
+ xy: 314, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13678
+ rotate: false
+ xy: 366, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13681
+ rotate: false
+ xy: 418, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13684
+ rotate: false
+ xy: 470, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13687
+ rotate: false
+ xy: 522, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13689
+ rotate: false
+ xy: 574, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13692
+ rotate: false
+ xy: 2, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13699
+ rotate: false
+ xy: 54, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13702
+ rotate: false
+ xy: 106, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13705
+ rotate: false
+ xy: 158, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13708
+ rotate: false
+ xy: 210, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13711
+ rotate: false
+ xy: 262, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13714
+ rotate: false
+ xy: 314, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13716
+ rotate: false
+ xy: 366, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13719
+ rotate: false
+ xy: 418, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13726
+ rotate: false
+ xy: 470, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13729
+ rotate: false
+ xy: 522, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13732
+ rotate: false
+ xy: 574, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13735
+ rotate: false
+ xy: 626, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13738
+ rotate: false
+ xy: 2, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13741
+ rotate: false
+ xy: 54, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13743
+ rotate: false
+ xy: 106, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13746
+ rotate: false
+ xy: 158, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13752
+ rotate: false
+ xy: 210, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13755
+ rotate: false
+ xy: 262, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13758
+ rotate: false
+ xy: 314, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13761
+ rotate: false
+ xy: 366, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13764
+ rotate: false
+ xy: 418, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13767
+ rotate: false
+ xy: 470, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13769
+ rotate: false
+ xy: 522, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13772
+ rotate: false
+ xy: 574, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13779
+ rotate: false
+ xy: 626, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13782
+ rotate: false
+ xy: 678, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13785
+ rotate: false
+ xy: 2, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13788
+ rotate: false
+ xy: 54, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13791
+ rotate: false
+ xy: 106, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13794
+ rotate: false
+ xy: 158, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13796
+ rotate: false
+ xy: 210, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13799
+ rotate: false
+ xy: 262, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13806
+ rotate: false
+ xy: 314, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13809
+ rotate: false
+ xy: 366, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13812
+ rotate: false
+ xy: 418, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13815
+ rotate: false
+ xy: 470, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13818
+ rotate: false
+ xy: 522, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13821
+ rotate: false
+ xy: 574, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13823
+ rotate: false
+ xy: 626, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13826
+ rotate: false
+ xy: 678, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13833
+ rotate: false
+ xy: 730, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13836
+ rotate: false
+ xy: 2, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13839
+ rotate: false
+ xy: 54, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13842
+ rotate: false
+ xy: 106, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13845
+ rotate: false
+ xy: 158, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13848
+ rotate: false
+ xy: 210, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13850
+ rotate: false
+ xy: 262, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13853
+ rotate: false
+ xy: 314, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13860
+ rotate: false
+ xy: 366, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13863
+ rotate: false
+ xy: 418, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13866
+ rotate: false
+ xy: 470, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13869
+ rotate: false
+ xy: 522, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13872
+ rotate: false
+ xy: 574, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13875
+ rotate: false
+ xy: 626, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13877
+ rotate: false
+ xy: 678, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13880
+ rotate: false
+ xy: 730, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13887
+ rotate: false
+ xy: 782, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13890
+ rotate: false
+ xy: 2, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13893
+ rotate: false
+ xy: 54, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13896
+ rotate: false
+ xy: 106, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13899
+ rotate: false
+ xy: 158, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13902
+ rotate: false
+ xy: 210, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13904
+ rotate: false
+ xy: 262, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13907
+ rotate: false
+ xy: 314, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13927
+ rotate: false
+ xy: 366, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13930
+ rotate: false
+ xy: 418, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13933
+ rotate: false
+ xy: 470, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13936
+ rotate: false
+ xy: 522, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13939
+ rotate: false
+ xy: 574, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13942
+ rotate: false
+ xy: 626, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13944
+ rotate: false
+ xy: 678, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13947
+ rotate: false
+ xy: 730, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13965
+ rotate: false
+ xy: 782, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13968
+ rotate: false
+ xy: 834, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13971
+ rotate: false
+ xy: 2, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13974
+ rotate: false
+ xy: 54, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13977
+ rotate: false
+ xy: 106, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13980
+ rotate: false
+ xy: 158, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13982
+ rotate: false
+ xy: 210, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+13985
+ rotate: false
+ xy: 262, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14001
+ rotate: false
+ xy: 314, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14004
+ rotate: false
+ xy: 366, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14007
+ rotate: false
+ xy: 418, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14010
+ rotate: false
+ xy: 470, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14013
+ rotate: false
+ xy: 522, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14016
+ rotate: false
+ xy: 574, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14018
+ rotate: false
+ xy: 626, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14021
+ rotate: false
+ xy: 678, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14054
+ rotate: false
+ xy: 730, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14057
+ rotate: false
+ xy: 782, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14060
+ rotate: false
+ xy: 834, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14063
+ rotate: false
+ xy: 886, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14066
+ rotate: false
+ xy: 2, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14069
+ rotate: false
+ xy: 54, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14071
+ rotate: false
+ xy: 106, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14074
+ rotate: false
+ xy: 158, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14081
+ rotate: false
+ xy: 210, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14084
+ rotate: false
+ xy: 262, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14087
+ rotate: false
+ xy: 314, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14090
+ rotate: false
+ xy: 366, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14093
+ rotate: false
+ xy: 418, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14096
+ rotate: false
+ xy: 470, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14098
+ rotate: false
+ xy: 522, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14101
+ rotate: false
+ xy: 574, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14107
+ rotate: false
+ xy: 626, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14110
+ rotate: false
+ xy: 678, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14113
+ rotate: false
+ xy: 730, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14116
+ rotate: false
+ xy: 782, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14119
+ rotate: false
+ xy: 834, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14122
+ rotate: false
+ xy: 886, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14124
+ rotate: false
+ xy: 938, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14127
+ rotate: false
+ xy: 2, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14133
+ rotate: false
+ xy: 54, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14136
+ rotate: false
+ xy: 106, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14139
+ rotate: false
+ xy: 158, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14142
+ rotate: false
+ xy: 210, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14145
+ rotate: false
+ xy: 262, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14148
+ rotate: false
+ xy: 314, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14150
+ rotate: false
+ xy: 366, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14153
+ rotate: false
+ xy: 418, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14159
+ rotate: false
+ xy: 470, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14162
+ rotate: false
+ xy: 522, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14165
+ rotate: false
+ xy: 574, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14168
+ rotate: false
+ xy: 626, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14171
+ rotate: false
+ xy: 678, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14174
+ rotate: false
+ xy: 730, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14176
+ rotate: false
+ xy: 782, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14179
+ rotate: false
+ xy: 834, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14198
+ rotate: false
+ xy: 886, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14201
+ rotate: false
+ xy: 938, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14204
+ rotate: false
+ xy: 2, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14207
+ rotate: false
+ xy: 54, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14210
+ rotate: false
+ xy: 106, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14213
+ rotate: false
+ xy: 158, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14215
+ rotate: false
+ xy: 210, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14218
+ rotate: false
+ xy: 262, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14225
+ rotate: false
+ xy: 314, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14228
+ rotate: false
+ xy: 366, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14231
+ rotate: false
+ xy: 418, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14234
+ rotate: false
+ xy: 470, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14237
+ rotate: false
+ xy: 522, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14240
+ rotate: false
+ xy: 574, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14242
+ rotate: false
+ xy: 626, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14245
+ rotate: false
+ xy: 678, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14252
+ rotate: false
+ xy: 730, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14255
+ rotate: false
+ xy: 782, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14258
+ rotate: false
+ xy: 834, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14261
+ rotate: false
+ xy: 886, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14264
+ rotate: false
+ xy: 938, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14267
+ rotate: false
+ xy: 54, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14269
+ rotate: false
+ xy: 106, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14272
+ rotate: false
+ xy: 158, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14279
+ rotate: false
+ xy: 210, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14282
+ rotate: false
+ xy: 262, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14285
+ rotate: false
+ xy: 314, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14288
+ rotate: false
+ xy: 366, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14291
+ rotate: false
+ xy: 418, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14294
+ rotate: false
+ xy: 470, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14296
+ rotate: false
+ xy: 522, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14299
+ rotate: false
+ xy: 574, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14306
+ rotate: false
+ xy: 626, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14309
+ rotate: false
+ xy: 678, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14312
+ rotate: false
+ xy: 730, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14315
+ rotate: false
+ xy: 782, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14318
+ rotate: false
+ xy: 834, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14321
+ rotate: false
+ xy: 886, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14323
+ rotate: false
+ xy: 938, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14326
+ rotate: false
+ xy: 106, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14333
+ rotate: false
+ xy: 158, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14336
+ rotate: false
+ xy: 210, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14339
+ rotate: false
+ xy: 262, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14342
+ rotate: false
+ xy: 314, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14345
+ rotate: false
+ xy: 366, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14348
+ rotate: false
+ xy: 418, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14350
+ rotate: false
+ xy: 470, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14353
+ rotate: false
+ xy: 522, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14360
+ rotate: false
+ xy: 574, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14363
+ rotate: false
+ xy: 626, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14366
+ rotate: false
+ xy: 678, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14369
+ rotate: false
+ xy: 730, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14372
+ rotate: false
+ xy: 782, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14375
+ rotate: false
+ xy: 834, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14377
+ rotate: false
+ xy: 886, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14380
+ rotate: false
+ xy: 938, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14387
+ rotate: false
+ xy: 158, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14390
+ rotate: false
+ xy: 210, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14393
+ rotate: false
+ xy: 262, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14396
+ rotate: false
+ xy: 314, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14399
+ rotate: false
+ xy: 366, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14402
+ rotate: false
+ xy: 418, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14404
+ rotate: false
+ xy: 470, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14407
+ rotate: false
+ xy: 522, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14414
+ rotate: false
+ xy: 574, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14417
+ rotate: false
+ xy: 626, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14420
+ rotate: false
+ xy: 678, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14423
+ rotate: false
+ xy: 730, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14426
+ rotate: false
+ xy: 782, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14429
+ rotate: false
+ xy: 834, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14431
+ rotate: false
+ xy: 886, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14434
+ rotate: false
+ xy: 938, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14441
+ rotate: false
+ xy: 210, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14444
+ rotate: false
+ xy: 262, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14447
+ rotate: false
+ xy: 314, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14450
+ rotate: false
+ xy: 366, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14453
+ rotate: false
+ xy: 418, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14456
+ rotate: false
+ xy: 470, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14458
+ rotate: false
+ xy: 522, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14461
+ rotate: false
+ xy: 574, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14468
+ rotate: false
+ xy: 626, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14471
+ rotate: false
+ xy: 678, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14474
+ rotate: false
+ xy: 730, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14477
+ rotate: false
+ xy: 782, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14480
+ rotate: false
+ xy: 834, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14483
+ rotate: false
+ xy: 886, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14485
+ rotate: false
+ xy: 938, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14488
+ rotate: false
+ xy: 262, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14495
+ rotate: false
+ xy: 314, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14498
+ rotate: false
+ xy: 366, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14501
+ rotate: false
+ xy: 418, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14504
+ rotate: false
+ xy: 470, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14507
+ rotate: false
+ xy: 522, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14510
+ rotate: false
+ xy: 574, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14512
+ rotate: false
+ xy: 626, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14515
+ rotate: false
+ xy: 678, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14522
+ rotate: false
+ xy: 730, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14525
+ rotate: false
+ xy: 782, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14528
+ rotate: false
+ xy: 834, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14531
+ rotate: false
+ xy: 886, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14534
+ rotate: false
+ xy: 938, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14537
+ rotate: false
+ xy: 314, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14539
+ rotate: false
+ xy: 366, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14542
+ rotate: false
+ xy: 418, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14549
+ rotate: false
+ xy: 470, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14552
+ rotate: false
+ xy: 522, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14555
+ rotate: false
+ xy: 574, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14558
+ rotate: false
+ xy: 626, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14561
+ rotate: false
+ xy: 678, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14564
+ rotate: false
+ xy: 730, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14566
+ rotate: false
+ xy: 782, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14569
+ rotate: false
+ xy: 834, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14576
+ rotate: false
+ xy: 886, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14582
+ rotate: false
+ xy: 938, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14588
+ rotate: false
+ xy: 366, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14593
+ rotate: false
+ xy: 418, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14603
+ rotate: false
+ xy: 470, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14606
+ rotate: false
+ xy: 522, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14609
+ rotate: false
+ xy: 574, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14612
+ rotate: false
+ xy: 626, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14615
+ rotate: false
+ xy: 678, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14618
+ rotate: false
+ xy: 730, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14620
+ rotate: false
+ xy: 782, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14623
+ rotate: false
+ xy: 834, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14630
+ rotate: false
+ xy: 886, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14633
+ rotate: false
+ xy: 938, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14636
+ rotate: false
+ xy: 418, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14639
+ rotate: false
+ xy: 470, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14642
+ rotate: false
+ xy: 522, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14645
+ rotate: false
+ xy: 574, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14647
+ rotate: false
+ xy: 626, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14650
+ rotate: false
+ xy: 678, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14657
+ rotate: false
+ xy: 730, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14660
+ rotate: false
+ xy: 782, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14663
+ rotate: false
+ xy: 834, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14666
+ rotate: false
+ xy: 886, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14669
+ rotate: false
+ xy: 938, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14672
+ rotate: false
+ xy: 470, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14674
+ rotate: false
+ xy: 522, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14677
+ rotate: false
+ xy: 574, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14684
+ rotate: false
+ xy: 626, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14687
+ rotate: false
+ xy: 678, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14690
+ rotate: false
+ xy: 730, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14693
+ rotate: false
+ xy: 782, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14696
+ rotate: false
+ xy: 834, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14699
+ rotate: false
+ xy: 886, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14701
+ rotate: false
+ xy: 938, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14704
+ rotate: false
+ xy: 522, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14711
+ rotate: false
+ xy: 574, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14714
+ rotate: false
+ xy: 626, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14717
+ rotate: false
+ xy: 678, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14720
+ rotate: false
+ xy: 730, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14723
+ rotate: false
+ xy: 782, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14726
+ rotate: false
+ xy: 834, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14728
+ rotate: false
+ xy: 886, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14731
+ rotate: false
+ xy: 938, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14738
+ rotate: false
+ xy: 574, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14741
+ rotate: false
+ xy: 626, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14744
+ rotate: false
+ xy: 678, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14747
+ rotate: false
+ xy: 730, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14750
+ rotate: false
+ xy: 782, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14753
+ rotate: false
+ xy: 834, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14755
+ rotate: false
+ xy: 886, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14758
+ rotate: false
+ xy: 938, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14765
+ rotate: false
+ xy: 626, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14768
+ rotate: false
+ xy: 678, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14771
+ rotate: false
+ xy: 730, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14774
+ rotate: false
+ xy: 782, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14777
+ rotate: false
+ xy: 834, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14780
+ rotate: false
+ xy: 886, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14782
+ rotate: false
+ xy: 938, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14785
+ rotate: false
+ xy: 678, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14792
+ rotate: false
+ xy: 730, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14795
+ rotate: false
+ xy: 782, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14798
+ rotate: false
+ xy: 834, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14801
+ rotate: false
+ xy: 886, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14804
+ rotate: false
+ xy: 938, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14807
+ rotate: false
+ xy: 730, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14809
+ rotate: false
+ xy: 782, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14812
+ rotate: false
+ xy: 834, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14819
+ rotate: false
+ xy: 886, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14822
+ rotate: false
+ xy: 938, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14825
+ rotate: false
+ xy: 782, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14828
+ rotate: false
+ xy: 834, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14831
+ rotate: false
+ xy: 886, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14834
+ rotate: false
+ xy: 938, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14836
+ rotate: false
+ xy: 834, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14839
+ rotate: false
+ xy: 886, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14846
+ rotate: false
+ xy: 938, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14849
+ rotate: false
+ xy: 886, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14852
+ rotate: false
+ xy: 938, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14855
+ rotate: false
+ xy: 938, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+2931
+ rotate: false
+ xy: 990, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2936
+ rotate: false
+ xy: 990, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2937
+ rotate: false
+ xy: 990, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2942
+ rotate: false
+ xy: 990, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2943
+ rotate: false
+ xy: 990, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2948
+ rotate: false
+ xy: 990, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2953
+ rotate: false
+ xy: 990, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2958
+ rotate: false
+ xy: 990, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2959
+ rotate: false
+ xy: 990, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2964
+ rotate: false
+ xy: 990, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2965
+ rotate: false
+ xy: 990, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2970
+ rotate: false
+ xy: 990, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2975
+ rotate: false
+ xy: 990, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2980
+ rotate: false
+ xy: 990, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2981
+ rotate: false
+ xy: 990, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2986
+ rotate: false
+ xy: 990, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+2987
+ rotate: false
+ xy: 990, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3076
+ rotate: false
+ xy: 990, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3098
+ rotate: false
+ xy: 990, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3099
+ rotate: false
+ xy: 990, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3100
+ rotate: false
+ xy: 990, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3081
+ rotate: false
+ xy: 990, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3082
+ rotate: false
+ xy: 990, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3087
+ rotate: false
+ xy: 990, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+
+images98.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+14858
+ rotate: false
+ xy: 2, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14861
+ rotate: false
+ xy: 2, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14863
+ rotate: false
+ xy: 54, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14866
+ rotate: false
+ xy: 2, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14873
+ rotate: false
+ xy: 54, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14876
+ rotate: false
+ xy: 106, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14879
+ rotate: false
+ xy: 2, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14882
+ rotate: false
+ xy: 54, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14885
+ rotate: false
+ xy: 106, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14888
+ rotate: false
+ xy: 158, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14890
+ rotate: false
+ xy: 2, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14893
+ rotate: false
+ xy: 54, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14900
+ rotate: false
+ xy: 106, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14903
+ rotate: false
+ xy: 158, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14906
+ rotate: false
+ xy: 210, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14909
+ rotate: false
+ xy: 2, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14912
+ rotate: false
+ xy: 54, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14915
+ rotate: false
+ xy: 106, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14917
+ rotate: false
+ xy: 158, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14920
+ rotate: false
+ xy: 210, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14927
+ rotate: false
+ xy: 262, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14930
+ rotate: false
+ xy: 2, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14933
+ rotate: false
+ xy: 54, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14936
+ rotate: false
+ xy: 106, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14939
+ rotate: false
+ xy: 158, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14942
+ rotate: false
+ xy: 210, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14944
+ rotate: false
+ xy: 262, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14947
+ rotate: false
+ xy: 314, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14954
+ rotate: false
+ xy: 2, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14957
+ rotate: false
+ xy: 54, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14960
+ rotate: false
+ xy: 106, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14963
+ rotate: false
+ xy: 158, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14966
+ rotate: false
+ xy: 210, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14969
+ rotate: false
+ xy: 262, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14971
+ rotate: false
+ xy: 314, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14974
+ rotate: false
+ xy: 366, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14981
+ rotate: false
+ xy: 2, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14984
+ rotate: false
+ xy: 54, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14987
+ rotate: false
+ xy: 106, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14990
+ rotate: false
+ xy: 158, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14993
+ rotate: false
+ xy: 210, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14996
+ rotate: false
+ xy: 262, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+14998
+ rotate: false
+ xy: 314, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15001
+ rotate: false
+ xy: 366, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15008
+ rotate: false
+ xy: 418, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15011
+ rotate: false
+ xy: 2, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15014
+ rotate: false
+ xy: 54, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15017
+ rotate: false
+ xy: 106, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15020
+ rotate: false
+ xy: 158, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15023
+ rotate: false
+ xy: 210, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15025
+ rotate: false
+ xy: 262, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15028
+ rotate: false
+ xy: 314, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15035
+ rotate: false
+ xy: 366, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15038
+ rotate: false
+ xy: 418, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15041
+ rotate: false
+ xy: 470, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15044
+ rotate: false
+ xy: 2, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15047
+ rotate: false
+ xy: 54, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15050
+ rotate: false
+ xy: 106, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15052
+ rotate: false
+ xy: 158, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15055
+ rotate: false
+ xy: 210, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15062
+ rotate: false
+ xy: 262, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15065
+ rotate: false
+ xy: 314, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15068
+ rotate: false
+ xy: 366, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15071
+ rotate: false
+ xy: 418, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15074
+ rotate: false
+ xy: 470, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15077
+ rotate: false
+ xy: 522, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15079
+ rotate: false
+ xy: 2, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15082
+ rotate: false
+ xy: 54, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15089
+ rotate: false
+ xy: 106, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15092
+ rotate: false
+ xy: 158, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15095
+ rotate: false
+ xy: 210, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15098
+ rotate: false
+ xy: 262, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15101
+ rotate: false
+ xy: 314, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15104
+ rotate: false
+ xy: 366, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15106
+ rotate: false
+ xy: 418, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15109
+ rotate: false
+ xy: 470, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15116
+ rotate: false
+ xy: 522, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15119
+ rotate: false
+ xy: 574, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15122
+ rotate: false
+ xy: 2, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15125
+ rotate: false
+ xy: 54, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15128
+ rotate: false
+ xy: 106, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15131
+ rotate: false
+ xy: 158, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15133
+ rotate: false
+ xy: 210, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15136
+ rotate: false
+ xy: 262, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15143
+ rotate: false
+ xy: 314, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15146
+ rotate: false
+ xy: 366, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15149
+ rotate: false
+ xy: 418, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15152
+ rotate: false
+ xy: 470, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15155
+ rotate: false
+ xy: 522, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15158
+ rotate: false
+ xy: 574, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15160
+ rotate: false
+ xy: 626, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15163
+ rotate: false
+ xy: 2, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15170
+ rotate: false
+ xy: 54, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15173
+ rotate: false
+ xy: 106, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15176
+ rotate: false
+ xy: 158, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15179
+ rotate: false
+ xy: 210, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15182
+ rotate: false
+ xy: 262, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15185
+ rotate: false
+ xy: 314, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15187
+ rotate: false
+ xy: 366, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15190
+ rotate: false
+ xy: 418, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15197
+ rotate: false
+ xy: 470, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15200
+ rotate: false
+ xy: 522, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15203
+ rotate: false
+ xy: 574, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15206
+ rotate: false
+ xy: 626, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15209
+ rotate: false
+ xy: 678, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15212
+ rotate: false
+ xy: 2, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15214
+ rotate: false
+ xy: 54, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15217
+ rotate: false
+ xy: 106, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15224
+ rotate: false
+ xy: 158, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15227
+ rotate: false
+ xy: 210, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15230
+ rotate: false
+ xy: 262, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15233
+ rotate: false
+ xy: 314, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15236
+ rotate: false
+ xy: 366, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15239
+ rotate: false
+ xy: 418, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15241
+ rotate: false
+ xy: 470, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15244
+ rotate: false
+ xy: 522, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15251
+ rotate: false
+ xy: 574, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15254
+ rotate: false
+ xy: 626, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15257
+ rotate: false
+ xy: 678, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15260
+ rotate: false
+ xy: 730, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15263
+ rotate: false
+ xy: 2, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15266
+ rotate: false
+ xy: 54, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15268
+ rotate: false
+ xy: 106, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15271
+ rotate: false
+ xy: 158, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15278
+ rotate: false
+ xy: 210, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15281
+ rotate: false
+ xy: 262, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15284
+ rotate: false
+ xy: 314, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15287
+ rotate: false
+ xy: 366, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15290
+ rotate: false
+ xy: 418, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15293
+ rotate: false
+ xy: 470, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15295
+ rotate: false
+ xy: 522, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15298
+ rotate: false
+ xy: 574, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15305
+ rotate: false
+ xy: 626, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15308
+ rotate: false
+ xy: 678, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15311
+ rotate: false
+ xy: 730, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15314
+ rotate: false
+ xy: 782, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15317
+ rotate: false
+ xy: 2, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15320
+ rotate: false
+ xy: 54, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15322
+ rotate: false
+ xy: 106, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15325
+ rotate: false
+ xy: 158, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15332
+ rotate: false
+ xy: 210, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15335
+ rotate: false
+ xy: 262, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15338
+ rotate: false
+ xy: 314, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15341
+ rotate: false
+ xy: 366, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15344
+ rotate: false
+ xy: 418, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15347
+ rotate: false
+ xy: 470, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15349
+ rotate: false
+ xy: 522, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15352
+ rotate: false
+ xy: 574, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15359
+ rotate: false
+ xy: 626, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15362
+ rotate: false
+ xy: 678, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15365
+ rotate: false
+ xy: 730, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15368
+ rotate: false
+ xy: 782, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15371
+ rotate: false
+ xy: 834, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15374
+ rotate: false
+ xy: 2, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15376
+ rotate: false
+ xy: 54, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15379
+ rotate: false
+ xy: 106, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15386
+ rotate: false
+ xy: 158, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15389
+ rotate: false
+ xy: 210, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15392
+ rotate: false
+ xy: 262, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15395
+ rotate: false
+ xy: 314, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15398
+ rotate: false
+ xy: 366, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15401
+ rotate: false
+ xy: 418, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15403
+ rotate: false
+ xy: 470, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15406
+ rotate: false
+ xy: 522, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15413
+ rotate: false
+ xy: 574, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15416
+ rotate: false
+ xy: 626, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15419
+ rotate: false
+ xy: 678, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15422
+ rotate: false
+ xy: 730, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15425
+ rotate: false
+ xy: 782, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15428
+ rotate: false
+ xy: 834, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15430
+ rotate: false
+ xy: 886, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15433
+ rotate: false
+ xy: 2, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15440
+ rotate: false
+ xy: 54, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15443
+ rotate: false
+ xy: 106, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15446
+ rotate: false
+ xy: 158, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15449
+ rotate: false
+ xy: 210, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15452
+ rotate: false
+ xy: 262, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15455
+ rotate: false
+ xy: 314, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15457
+ rotate: false
+ xy: 366, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15460
+ rotate: false
+ xy: 418, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15467
+ rotate: false
+ xy: 470, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15470
+ rotate: false
+ xy: 522, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15473
+ rotate: false
+ xy: 574, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15476
+ rotate: false
+ xy: 626, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15479
+ rotate: false
+ xy: 678, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15482
+ rotate: false
+ xy: 730, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15484
+ rotate: false
+ xy: 782, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15487
+ rotate: false
+ xy: 834, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15494
+ rotate: false
+ xy: 886, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15497
+ rotate: false
+ xy: 938, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15500
+ rotate: false
+ xy: 2, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15503
+ rotate: false
+ xy: 54, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15506
+ rotate: false
+ xy: 106, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15509
+ rotate: false
+ xy: 158, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15511
+ rotate: false
+ xy: 210, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15514
+ rotate: false
+ xy: 262, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15521
+ rotate: false
+ xy: 314, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15524
+ rotate: false
+ xy: 366, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15527
+ rotate: false
+ xy: 418, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15530
+ rotate: false
+ xy: 470, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15533
+ rotate: false
+ xy: 522, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15536
+ rotate: false
+ xy: 574, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15538
+ rotate: false
+ xy: 626, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15541
+ rotate: false
+ xy: 678, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15548
+ rotate: false
+ xy: 730, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15551
+ rotate: false
+ xy: 782, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15554
+ rotate: false
+ xy: 834, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15557
+ rotate: false
+ xy: 886, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15560
+ rotate: false
+ xy: 938, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15563
+ rotate: false
+ xy: 2, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15565
+ rotate: false
+ xy: 54, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15568
+ rotate: false
+ xy: 106, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15602
+ rotate: false
+ xy: 158, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15605
+ rotate: false
+ xy: 210, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15608
+ rotate: false
+ xy: 262, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15611
+ rotate: false
+ xy: 314, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15614
+ rotate: false
+ xy: 366, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15617
+ rotate: false
+ xy: 418, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15619
+ rotate: false
+ xy: 470, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15622
+ rotate: false
+ xy: 522, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15629
+ rotate: false
+ xy: 574, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15632
+ rotate: false
+ xy: 626, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15635
+ rotate: false
+ xy: 678, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15638
+ rotate: false
+ xy: 730, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15641
+ rotate: false
+ xy: 782, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15644
+ rotate: false
+ xy: 834, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15646
+ rotate: false
+ xy: 886, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15649
+ rotate: false
+ xy: 938, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15668
+ rotate: false
+ xy: 54, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15671
+ rotate: false
+ xy: 106, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15673
+ rotate: false
+ xy: 158, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15676
+ rotate: false
+ xy: 210, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15683
+ rotate: false
+ xy: 262, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15686
+ rotate: false
+ xy: 314, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15689
+ rotate: false
+ xy: 366, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15692
+ rotate: false
+ xy: 418, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15695
+ rotate: false
+ xy: 470, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15698
+ rotate: false
+ xy: 522, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15700
+ rotate: false
+ xy: 574, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15703
+ rotate: false
+ xy: 626, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15710
+ rotate: false
+ xy: 678, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15713
+ rotate: false
+ xy: 730, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15716
+ rotate: false
+ xy: 782, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15719
+ rotate: false
+ xy: 834, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15722
+ rotate: false
+ xy: 886, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15725
+ rotate: false
+ xy: 938, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15727
+ rotate: false
+ xy: 106, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15730
+ rotate: false
+ xy: 158, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15749
+ rotate: false
+ xy: 210, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15752
+ rotate: false
+ xy: 262, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15754
+ rotate: false
+ xy: 314, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15757
+ rotate: false
+ xy: 366, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15764
+ rotate: false
+ xy: 418, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15767
+ rotate: false
+ xy: 470, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15770
+ rotate: false
+ xy: 522, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15773
+ rotate: false
+ xy: 574, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15776
+ rotate: false
+ xy: 626, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15779
+ rotate: false
+ xy: 678, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15781
+ rotate: false
+ xy: 730, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15784
+ rotate: false
+ xy: 782, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15791
+ rotate: false
+ xy: 834, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15794
+ rotate: false
+ xy: 886, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15797
+ rotate: false
+ xy: 938, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15800
+ rotate: false
+ xy: 158, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15803
+ rotate: false
+ xy: 210, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15806
+ rotate: false
+ xy: 262, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15808
+ rotate: false
+ xy: 314, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15811
+ rotate: false
+ xy: 366, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15818
+ rotate: false
+ xy: 418, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15821
+ rotate: false
+ xy: 470, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15824
+ rotate: false
+ xy: 522, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15827
+ rotate: false
+ xy: 574, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15830
+ rotate: false
+ xy: 626, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15833
+ rotate: false
+ xy: 678, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15835
+ rotate: false
+ xy: 730, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15838
+ rotate: false
+ xy: 782, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15845
+ rotate: false
+ xy: 834, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15848
+ rotate: false
+ xy: 886, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15851
+ rotate: false
+ xy: 938, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15854
+ rotate: false
+ xy: 210, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15857
+ rotate: false
+ xy: 262, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15860
+ rotate: false
+ xy: 314, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15862
+ rotate: false
+ xy: 366, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15865
+ rotate: false
+ xy: 418, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15872
+ rotate: false
+ xy: 470, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15875
+ rotate: false
+ xy: 522, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15878
+ rotate: false
+ xy: 574, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15881
+ rotate: false
+ xy: 626, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15884
+ rotate: false
+ xy: 678, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15887
+ rotate: false
+ xy: 730, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15889
+ rotate: false
+ xy: 782, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15892
+ rotate: false
+ xy: 834, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15899
+ rotate: false
+ xy: 886, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15902
+ rotate: false
+ xy: 938, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15905
+ rotate: false
+ xy: 262, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15908
+ rotate: false
+ xy: 314, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15911
+ rotate: false
+ xy: 366, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15914
+ rotate: false
+ xy: 418, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15916
+ rotate: false
+ xy: 470, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15919
+ rotate: false
+ xy: 522, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15926
+ rotate: false
+ xy: 574, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15929
+ rotate: false
+ xy: 626, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15932
+ rotate: false
+ xy: 678, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15935
+ rotate: false
+ xy: 730, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15938
+ rotate: false
+ xy: 782, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15941
+ rotate: false
+ xy: 834, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15943
+ rotate: false
+ xy: 886, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15946
+ rotate: false
+ xy: 938, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15953
+ rotate: false
+ xy: 314, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15956
+ rotate: false
+ xy: 366, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15959
+ rotate: false
+ xy: 418, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15962
+ rotate: false
+ xy: 470, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15965
+ rotate: false
+ xy: 522, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15968
+ rotate: false
+ xy: 574, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15970
+ rotate: false
+ xy: 626, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15973
+ rotate: false
+ xy: 678, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15980
+ rotate: false
+ xy: 730, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15983
+ rotate: false
+ xy: 782, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15986
+ rotate: false
+ xy: 834, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15989
+ rotate: false
+ xy: 886, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15992
+ rotate: false
+ xy: 938, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15995
+ rotate: false
+ xy: 366, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+15997
+ rotate: false
+ xy: 418, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16000
+ rotate: false
+ xy: 470, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16007
+ rotate: false
+ xy: 522, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16010
+ rotate: false
+ xy: 574, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16013
+ rotate: false
+ xy: 626, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16016
+ rotate: false
+ xy: 678, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16019
+ rotate: false
+ xy: 730, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16022
+ rotate: false
+ xy: 782, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16024
+ rotate: false
+ xy: 834, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16027
+ rotate: false
+ xy: 886, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16034
+ rotate: false
+ xy: 938, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16037
+ rotate: false
+ xy: 418, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16040
+ rotate: false
+ xy: 470, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16043
+ rotate: false
+ xy: 522, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16046
+ rotate: false
+ xy: 574, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16049
+ rotate: false
+ xy: 626, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16051
+ rotate: false
+ xy: 678, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16054
+ rotate: false
+ xy: 730, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16061
+ rotate: false
+ xy: 782, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16064
+ rotate: false
+ xy: 834, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16067
+ rotate: false
+ xy: 886, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16070
+ rotate: false
+ xy: 938, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16073
+ rotate: false
+ xy: 470, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16076
+ rotate: false
+ xy: 522, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16078
+ rotate: false
+ xy: 574, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16081
+ rotate: false
+ xy: 626, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16088
+ rotate: false
+ xy: 678, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16091
+ rotate: false
+ xy: 730, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16094
+ rotate: false
+ xy: 782, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16097
+ rotate: false
+ xy: 834, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16100
+ rotate: false
+ xy: 886, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16103
+ rotate: false
+ xy: 938, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16105
+ rotate: false
+ xy: 522, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16108
+ rotate: false
+ xy: 574, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16115
+ rotate: false
+ xy: 626, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16118
+ rotate: false
+ xy: 678, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16121
+ rotate: false
+ xy: 730, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16124
+ rotate: false
+ xy: 782, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16127
+ rotate: false
+ xy: 834, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16130
+ rotate: false
+ xy: 886, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16132
+ rotate: false
+ xy: 938, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16135
+ rotate: false
+ xy: 574, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16142
+ rotate: false
+ xy: 626, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16145
+ rotate: false
+ xy: 678, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16148
+ rotate: false
+ xy: 730, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16151
+ rotate: false
+ xy: 782, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16154
+ rotate: false
+ xy: 834, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16157
+ rotate: false
+ xy: 886, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16159
+ rotate: false
+ xy: 938, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16162
+ rotate: false
+ xy: 626, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16169
+ rotate: false
+ xy: 678, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16172
+ rotate: false
+ xy: 730, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16175
+ rotate: false
+ xy: 782, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16178
+ rotate: false
+ xy: 834, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16181
+ rotate: false
+ xy: 886, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16184
+ rotate: false
+ xy: 938, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16186
+ rotate: false
+ xy: 678, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16189
+ rotate: false
+ xy: 730, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16196
+ rotate: false
+ xy: 782, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16199
+ rotate: false
+ xy: 834, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16202
+ rotate: false
+ xy: 886, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16205
+ rotate: false
+ xy: 938, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16208
+ rotate: false
+ xy: 730, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16211
+ rotate: false
+ xy: 782, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16213
+ rotate: false
+ xy: 834, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16216
+ rotate: false
+ xy: 886, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16223
+ rotate: false
+ xy: 938, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16226
+ rotate: false
+ xy: 782, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16229
+ rotate: false
+ xy: 834, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16232
+ rotate: false
+ xy: 886, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16235
+ rotate: false
+ xy: 938, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16238
+ rotate: false
+ xy: 834, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16240
+ rotate: false
+ xy: 886, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16243
+ rotate: false
+ xy: 938, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16250
+ rotate: false
+ xy: 886, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16253
+ rotate: false
+ xy: 938, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16256
+ rotate: false
+ xy: 938, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3088
+ rotate: false
+ xy: 990, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3093
+ rotate: false
+ xy: 990, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3129
+ rotate: false
+ xy: 990, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3134
+ rotate: false
+ xy: 990, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3135
+ rotate: false
+ xy: 990, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3140
+ rotate: false
+ xy: 990, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3141
+ rotate: false
+ xy: 990, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3146
+ rotate: false
+ xy: 990, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3157
+ rotate: false
+ xy: 990, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3162
+ rotate: false
+ xy: 990, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3163
+ rotate: false
+ xy: 990, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3168
+ rotate: false
+ xy: 990, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3169
+ rotate: false
+ xy: 990, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3174
+ rotate: false
+ xy: 990, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3227
+ rotate: false
+ xy: 990, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3232
+ rotate: false
+ xy: 990, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3233
+ rotate: false
+ xy: 990, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3238
+ rotate: false
+ xy: 990, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3239
+ rotate: false
+ xy: 990, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3244
+ rotate: false
+ xy: 990, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3254
+ rotate: false
+ xy: 990, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+
+images99.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+16259
+ rotate: false
+ xy: 2, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16262
+ rotate: false
+ xy: 2, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16265
+ rotate: false
+ xy: 54, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16267
+ rotate: false
+ xy: 2, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16270
+ rotate: false
+ xy: 54, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16277
+ rotate: false
+ xy: 106, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16280
+ rotate: false
+ xy: 2, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16283
+ rotate: false
+ xy: 54, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16286
+ rotate: false
+ xy: 106, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16289
+ rotate: false
+ xy: 158, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16292
+ rotate: false
+ xy: 2, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16294
+ rotate: false
+ xy: 54, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16297
+ rotate: false
+ xy: 106, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16304
+ rotate: false
+ xy: 158, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16307
+ rotate: false
+ xy: 210, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16310
+ rotate: false
+ xy: 2, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16313
+ rotate: false
+ xy: 54, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16316
+ rotate: false
+ xy: 106, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16319
+ rotate: false
+ xy: 158, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16321
+ rotate: false
+ xy: 210, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16324
+ rotate: false
+ xy: 262, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16331
+ rotate: false
+ xy: 2, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16334
+ rotate: false
+ xy: 54, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16337
+ rotate: false
+ xy: 106, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16340
+ rotate: false
+ xy: 158, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16343
+ rotate: false
+ xy: 210, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16346
+ rotate: false
+ xy: 262, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16348
+ rotate: false
+ xy: 314, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16351
+ rotate: false
+ xy: 2, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16358
+ rotate: false
+ xy: 54, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16361
+ rotate: false
+ xy: 106, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16364
+ rotate: false
+ xy: 158, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16367
+ rotate: false
+ xy: 210, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16370
+ rotate: false
+ xy: 262, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16373
+ rotate: false
+ xy: 314, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16375
+ rotate: false
+ xy: 366, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16378
+ rotate: false
+ xy: 2, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16385
+ rotate: false
+ xy: 54, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16388
+ rotate: false
+ xy: 106, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16391
+ rotate: false
+ xy: 158, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16394
+ rotate: false
+ xy: 210, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16397
+ rotate: false
+ xy: 262, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16400
+ rotate: false
+ xy: 314, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16402
+ rotate: false
+ xy: 366, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16405
+ rotate: false
+ xy: 418, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16412
+ rotate: false
+ xy: 2, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16415
+ rotate: false
+ xy: 54, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16418
+ rotate: false
+ xy: 106, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16421
+ rotate: false
+ xy: 158, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16424
+ rotate: false
+ xy: 210, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16427
+ rotate: false
+ xy: 262, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16429
+ rotate: false
+ xy: 314, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16432
+ rotate: false
+ xy: 366, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16439
+ rotate: false
+ xy: 418, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16442
+ rotate: false
+ xy: 470, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16445
+ rotate: false
+ xy: 2, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16448
+ rotate: false
+ xy: 54, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16451
+ rotate: false
+ xy: 106, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16454
+ rotate: false
+ xy: 158, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16456
+ rotate: false
+ xy: 210, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16459
+ rotate: false
+ xy: 262, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16465
+ rotate: false
+ xy: 314, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16468
+ rotate: false
+ xy: 366, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16471
+ rotate: false
+ xy: 418, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16474
+ rotate: false
+ xy: 470, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16477
+ rotate: false
+ xy: 522, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16480
+ rotate: false
+ xy: 2, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16482
+ rotate: false
+ xy: 54, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16485
+ rotate: false
+ xy: 106, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16492
+ rotate: false
+ xy: 158, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16495
+ rotate: false
+ xy: 210, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16498
+ rotate: false
+ xy: 262, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16501
+ rotate: false
+ xy: 314, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16504
+ rotate: false
+ xy: 366, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16507
+ rotate: false
+ xy: 418, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16509
+ rotate: false
+ xy: 470, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16512
+ rotate: false
+ xy: 522, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16519
+ rotate: false
+ xy: 574, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16522
+ rotate: false
+ xy: 2, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16525
+ rotate: false
+ xy: 54, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16528
+ rotate: false
+ xy: 106, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16531
+ rotate: false
+ xy: 158, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16534
+ rotate: false
+ xy: 210, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16536
+ rotate: false
+ xy: 262, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16539
+ rotate: false
+ xy: 314, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16546
+ rotate: false
+ xy: 366, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16549
+ rotate: false
+ xy: 418, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16552
+ rotate: false
+ xy: 470, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16555
+ rotate: false
+ xy: 522, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16558
+ rotate: false
+ xy: 574, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16561
+ rotate: false
+ xy: 626, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16563
+ rotate: false
+ xy: 2, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16566
+ rotate: false
+ xy: 54, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16573
+ rotate: false
+ xy: 106, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16576
+ rotate: false
+ xy: 158, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16579
+ rotate: false
+ xy: 210, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16582
+ rotate: false
+ xy: 262, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16585
+ rotate: false
+ xy: 314, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16588
+ rotate: false
+ xy: 366, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16590
+ rotate: false
+ xy: 418, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16593
+ rotate: false
+ xy: 470, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16600
+ rotate: false
+ xy: 522, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16603
+ rotate: false
+ xy: 574, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16606
+ rotate: false
+ xy: 626, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16609
+ rotate: false
+ xy: 678, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16612
+ rotate: false
+ xy: 2, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16615
+ rotate: false
+ xy: 54, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16617
+ rotate: false
+ xy: 106, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16620
+ rotate: false
+ xy: 158, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16627
+ rotate: false
+ xy: 210, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16630
+ rotate: false
+ xy: 262, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16633
+ rotate: false
+ xy: 314, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16636
+ rotate: false
+ xy: 366, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16639
+ rotate: false
+ xy: 418, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16642
+ rotate: false
+ xy: 470, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16644
+ rotate: false
+ xy: 522, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16647
+ rotate: false
+ xy: 574, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16654
+ rotate: false
+ xy: 626, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16657
+ rotate: false
+ xy: 678, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16660
+ rotate: false
+ xy: 730, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16663
+ rotate: false
+ xy: 2, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16666
+ rotate: false
+ xy: 54, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16669
+ rotate: false
+ xy: 106, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16671
+ rotate: false
+ xy: 158, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16674
+ rotate: false
+ xy: 210, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16681
+ rotate: false
+ xy: 262, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16684
+ rotate: false
+ xy: 314, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16687
+ rotate: false
+ xy: 366, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16690
+ rotate: false
+ xy: 418, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16693
+ rotate: false
+ xy: 470, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16696
+ rotate: false
+ xy: 522, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16698
+ rotate: false
+ xy: 574, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16701
+ rotate: false
+ xy: 626, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16709
+ rotate: false
+ xy: 678, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16712
+ rotate: false
+ xy: 730, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16715
+ rotate: false
+ xy: 782, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16718
+ rotate: false
+ xy: 2, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16721
+ rotate: false
+ xy: 54, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16724
+ rotate: false
+ xy: 106, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16726
+ rotate: false
+ xy: 158, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16729
+ rotate: false
+ xy: 210, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16736
+ rotate: false
+ xy: 262, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16739
+ rotate: false
+ xy: 314, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16742
+ rotate: false
+ xy: 366, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16745
+ rotate: false
+ xy: 418, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16748
+ rotate: false
+ xy: 470, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16751
+ rotate: false
+ xy: 522, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16753
+ rotate: false
+ xy: 574, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16756
+ rotate: false
+ xy: 626, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16763
+ rotate: false
+ xy: 678, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16766
+ rotate: false
+ xy: 730, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16769
+ rotate: false
+ xy: 782, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16772
+ rotate: false
+ xy: 834, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16775
+ rotate: false
+ xy: 2, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16778
+ rotate: false
+ xy: 54, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16780
+ rotate: false
+ xy: 106, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16783
+ rotate: false
+ xy: 158, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16790
+ rotate: false
+ xy: 210, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16793
+ rotate: false
+ xy: 262, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16796
+ rotate: false
+ xy: 314, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16799
+ rotate: false
+ xy: 366, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16802
+ rotate: false
+ xy: 418, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16805
+ rotate: false
+ xy: 470, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16807
+ rotate: false
+ xy: 522, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16810
+ rotate: false
+ xy: 574, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16817
+ rotate: false
+ xy: 626, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16820
+ rotate: false
+ xy: 678, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16823
+ rotate: false
+ xy: 730, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16826
+ rotate: false
+ xy: 782, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16829
+ rotate: false
+ xy: 834, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16832
+ rotate: false
+ xy: 886, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16834
+ rotate: false
+ xy: 2, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16837
+ rotate: false
+ xy: 54, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16844
+ rotate: false
+ xy: 106, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16847
+ rotate: false
+ xy: 158, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16850
+ rotate: false
+ xy: 210, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16853
+ rotate: false
+ xy: 262, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16856
+ rotate: false
+ xy: 314, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16859
+ rotate: false
+ xy: 366, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16861
+ rotate: false
+ xy: 418, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16864
+ rotate: false
+ xy: 470, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16871
+ rotate: false
+ xy: 522, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16874
+ rotate: false
+ xy: 574, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16877
+ rotate: false
+ xy: 626, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16880
+ rotate: false
+ xy: 678, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16883
+ rotate: false
+ xy: 730, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16886
+ rotate: false
+ xy: 782, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16888
+ rotate: false
+ xy: 834, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16891
+ rotate: false
+ xy: 886, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16898
+ rotate: false
+ xy: 938, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16901
+ rotate: false
+ xy: 2, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16904
+ rotate: false
+ xy: 54, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16907
+ rotate: false
+ xy: 106, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16910
+ rotate: false
+ xy: 158, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16913
+ rotate: false
+ xy: 210, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16915
+ rotate: false
+ xy: 262, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16918
+ rotate: false
+ xy: 314, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16925
+ rotate: false
+ xy: 366, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16928
+ rotate: false
+ xy: 418, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16931
+ rotate: false
+ xy: 470, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16934
+ rotate: false
+ xy: 522, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16937
+ rotate: false
+ xy: 574, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16940
+ rotate: false
+ xy: 626, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16942
+ rotate: false
+ xy: 678, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16945
+ rotate: false
+ xy: 730, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16952
+ rotate: false
+ xy: 782, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16955
+ rotate: false
+ xy: 834, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16958
+ rotate: false
+ xy: 886, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16961
+ rotate: false
+ xy: 938, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16964
+ rotate: false
+ xy: 2, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16967
+ rotate: false
+ xy: 54, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16969
+ rotate: false
+ xy: 106, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16972
+ rotate: false
+ xy: 158, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16979
+ rotate: false
+ xy: 210, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16982
+ rotate: false
+ xy: 262, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16985
+ rotate: false
+ xy: 314, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16988
+ rotate: false
+ xy: 366, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16991
+ rotate: false
+ xy: 418, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16994
+ rotate: false
+ xy: 470, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16996
+ rotate: false
+ xy: 522, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+16999
+ rotate: false
+ xy: 574, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17006
+ rotate: false
+ xy: 626, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17009
+ rotate: false
+ xy: 678, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17012
+ rotate: false
+ xy: 730, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17015
+ rotate: false
+ xy: 782, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17018
+ rotate: false
+ xy: 834, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17021
+ rotate: false
+ xy: 886, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17023
+ rotate: false
+ xy: 938, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17026
+ rotate: false
+ xy: 54, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17033
+ rotate: false
+ xy: 106, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17036
+ rotate: false
+ xy: 158, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17039
+ rotate: false
+ xy: 210, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17042
+ rotate: false
+ xy: 262, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17045
+ rotate: false
+ xy: 314, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17048
+ rotate: false
+ xy: 366, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17050
+ rotate: false
+ xy: 418, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17053
+ rotate: false
+ xy: 470, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17060
+ rotate: false
+ xy: 522, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17114
+ rotate: false
+ xy: 522, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17063
+ rotate: false
+ xy: 574, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17117
+ rotate: false
+ xy: 574, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17066
+ rotate: false
+ xy: 626, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17120
+ rotate: false
+ xy: 626, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17069
+ rotate: false
+ xy: 678, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17123
+ rotate: false
+ xy: 678, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17072
+ rotate: false
+ xy: 730, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17126
+ rotate: false
+ xy: 730, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17075
+ rotate: false
+ xy: 782, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17129
+ rotate: false
+ xy: 782, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17077
+ rotate: false
+ xy: 834, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17131
+ rotate: false
+ xy: 834, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17080
+ rotate: false
+ xy: 886, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17134
+ rotate: false
+ xy: 886, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17087
+ rotate: false
+ xy: 938, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17222
+ rotate: false
+ xy: 938, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17090
+ rotate: false
+ xy: 106, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17225
+ rotate: false
+ xy: 106, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17093
+ rotate: false
+ xy: 158, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17228
+ rotate: false
+ xy: 158, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17096
+ rotate: false
+ xy: 210, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17231
+ rotate: false
+ xy: 210, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17099
+ rotate: false
+ xy: 262, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17234
+ rotate: false
+ xy: 262, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17102
+ rotate: false
+ xy: 314, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17237
+ rotate: false
+ xy: 314, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17104
+ rotate: false
+ xy: 366, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17239
+ rotate: false
+ xy: 366, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17107
+ rotate: false
+ xy: 418, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17242
+ rotate: false
+ xy: 418, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17141
+ rotate: false
+ xy: 470, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17144
+ rotate: false
+ xy: 522, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17147
+ rotate: false
+ xy: 574, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17150
+ rotate: false
+ xy: 626, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17153
+ rotate: false
+ xy: 678, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17156
+ rotate: false
+ xy: 730, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17158
+ rotate: false
+ xy: 782, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17161
+ rotate: false
+ xy: 834, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17168
+ rotate: false
+ xy: 886, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17171
+ rotate: false
+ xy: 938, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17174
+ rotate: false
+ xy: 158, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17177
+ rotate: false
+ xy: 210, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17180
+ rotate: false
+ xy: 262, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17183
+ rotate: false
+ xy: 314, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17185
+ rotate: false
+ xy: 366, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17188
+ rotate: false
+ xy: 418, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17195
+ rotate: false
+ xy: 470, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17198
+ rotate: false
+ xy: 522, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17201
+ rotate: false
+ xy: 574, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17204
+ rotate: false
+ xy: 626, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17207
+ rotate: false
+ xy: 678, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17210
+ rotate: false
+ xy: 730, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17212
+ rotate: false
+ xy: 782, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17215
+ rotate: false
+ xy: 834, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17249
+ rotate: false
+ xy: 886, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17252
+ rotate: false
+ xy: 938, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17255
+ rotate: false
+ xy: 210, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17258
+ rotate: false
+ xy: 262, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17261
+ rotate: false
+ xy: 314, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17264
+ rotate: false
+ xy: 366, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17266
+ rotate: false
+ xy: 418, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17269
+ rotate: false
+ xy: 470, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17276
+ rotate: false
+ xy: 522, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17279
+ rotate: false
+ xy: 574, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17282
+ rotate: false
+ xy: 626, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17285
+ rotate: false
+ xy: 678, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17288
+ rotate: false
+ xy: 730, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17291
+ rotate: false
+ xy: 782, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17293
+ rotate: false
+ xy: 834, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17296
+ rotate: false
+ xy: 886, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17303
+ rotate: false
+ xy: 938, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17306
+ rotate: false
+ xy: 262, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17309
+ rotate: false
+ xy: 314, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17312
+ rotate: false
+ xy: 366, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17315
+ rotate: false
+ xy: 418, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17318
+ rotate: false
+ xy: 470, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17320
+ rotate: false
+ xy: 522, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17323
+ rotate: false
+ xy: 574, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17330
+ rotate: false
+ xy: 626, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17333
+ rotate: false
+ xy: 678, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17336
+ rotate: false
+ xy: 730, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17339
+ rotate: false
+ xy: 782, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17342
+ rotate: false
+ xy: 834, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17345
+ rotate: false
+ xy: 886, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17347
+ rotate: false
+ xy: 938, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17350
+ rotate: false
+ xy: 314, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17357
+ rotate: false
+ xy: 366, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17360
+ rotate: false
+ xy: 418, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17363
+ rotate: false
+ xy: 470, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17366
+ rotate: false
+ xy: 522, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17369
+ rotate: false
+ xy: 574, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17372
+ rotate: false
+ xy: 626, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17374
+ rotate: false
+ xy: 678, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17377
+ rotate: false
+ xy: 730, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17384
+ rotate: false
+ xy: 782, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17387
+ rotate: false
+ xy: 834, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17390
+ rotate: false
+ xy: 886, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17393
+ rotate: false
+ xy: 938, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17396
+ rotate: false
+ xy: 366, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17399
+ rotate: false
+ xy: 418, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17401
+ rotate: false
+ xy: 470, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17404
+ rotate: false
+ xy: 522, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17411
+ rotate: false
+ xy: 574, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17414
+ rotate: false
+ xy: 626, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17417
+ rotate: false
+ xy: 678, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17420
+ rotate: false
+ xy: 730, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17423
+ rotate: false
+ xy: 782, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17426
+ rotate: false
+ xy: 834, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17428
+ rotate: false
+ xy: 886, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17431
+ rotate: false
+ xy: 938, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17438
+ rotate: false
+ xy: 418, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17441
+ rotate: false
+ xy: 470, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17444
+ rotate: false
+ xy: 522, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17447
+ rotate: false
+ xy: 574, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17450
+ rotate: false
+ xy: 626, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17453
+ rotate: false
+ xy: 678, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17455
+ rotate: false
+ xy: 730, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17458
+ rotate: false
+ xy: 782, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17465
+ rotate: false
+ xy: 834, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17468
+ rotate: false
+ xy: 886, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17471
+ rotate: false
+ xy: 938, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17474
+ rotate: false
+ xy: 470, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17477
+ rotate: false
+ xy: 522, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17480
+ rotate: false
+ xy: 574, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17482
+ rotate: false
+ xy: 626, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17485
+ rotate: false
+ xy: 678, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17492
+ rotate: false
+ xy: 730, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17495
+ rotate: false
+ xy: 782, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17498
+ rotate: false
+ xy: 834, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17501
+ rotate: false
+ xy: 886, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17504
+ rotate: false
+ xy: 938, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17507
+ rotate: false
+ xy: 522, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17509
+ rotate: false
+ xy: 574, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17512
+ rotate: false
+ xy: 626, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17519
+ rotate: false
+ xy: 678, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17522
+ rotate: false
+ xy: 730, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17525
+ rotate: false
+ xy: 782, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17528
+ rotate: false
+ xy: 834, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17531
+ rotate: false
+ xy: 886, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17534
+ rotate: false
+ xy: 938, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17536
+ rotate: false
+ xy: 574, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17539
+ rotate: false
+ xy: 626, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17546
+ rotate: false
+ xy: 678, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17549
+ rotate: false
+ xy: 730, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17552
+ rotate: false
+ xy: 782, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17555
+ rotate: false
+ xy: 834, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17558
+ rotate: false
+ xy: 886, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17561
+ rotate: false
+ xy: 938, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17563
+ rotate: false
+ xy: 626, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17566
+ rotate: false
+ xy: 678, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17659
+ rotate: false
+ xy: 730, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17662
+ rotate: false
+ xy: 782, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17665
+ rotate: false
+ xy: 834, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17668
+ rotate: false
+ xy: 886, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17671
+ rotate: false
+ xy: 938, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17674
+ rotate: false
+ xy: 678, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17676
+ rotate: false
+ xy: 730, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17679
+ rotate: false
+ xy: 782, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17686
+ rotate: false
+ xy: 834, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17689
+ rotate: false
+ xy: 886, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17692
+ rotate: false
+ xy: 938, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17695
+ rotate: false
+ xy: 730, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17698
+ rotate: false
+ xy: 782, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17701
+ rotate: false
+ xy: 834, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17703
+ rotate: false
+ xy: 886, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17706
+ rotate: false
+ xy: 938, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17860
+ rotate: false
+ xy: 782, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17863
+ rotate: false
+ xy: 834, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17866
+ rotate: false
+ xy: 886, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17872
+ rotate: false
+ xy: 938, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17875
+ rotate: false
+ xy: 834, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17877
+ rotate: false
+ xy: 886, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17880
+ rotate: false
+ xy: 938, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17886
+ rotate: false
+ xy: 886, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17889
+ rotate: false
+ xy: 938, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17892
+ rotate: false
+ xy: 938, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3259
+ rotate: false
+ xy: 990, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3260
+ rotate: false
+ xy: 990, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3265
+ rotate: false
+ xy: 990, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3266
+ rotate: false
+ xy: 990, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3271
+ rotate: false
+ xy: 990, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3585
+ rotate: false
+ xy: 990, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3590
+ rotate: false
+ xy: 990, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3591
+ rotate: false
+ xy: 990, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3596
+ rotate: false
+ xy: 990, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3597
+ rotate: false
+ xy: 990, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3602
+ rotate: false
+ xy: 990, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3611
+ rotate: false
+ xy: 990, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3616
+ rotate: false
+ xy: 990, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3617
+ rotate: false
+ xy: 990, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3622
+ rotate: false
+ xy: 990, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3623
+ rotate: false
+ xy: 990, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3628
+ rotate: false
+ xy: 990, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3637
+ rotate: false
+ xy: 990, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3642
+ rotate: false
+ xy: 990, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3643
+ rotate: false
+ xy: 990, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3649
+ rotate: false
+ xy: 990, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+
+images100.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+17895
+ rotate: false
+ xy: 2, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17898
+ rotate: false
+ xy: 2, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17901
+ rotate: false
+ xy: 54, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17903
+ rotate: false
+ xy: 2, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+17906
+ rotate: false
+ xy: 54, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+18294
+ rotate: false
+ xy: 106, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+18297
+ rotate: false
+ xy: 2, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+18300
+ rotate: false
+ xy: 54, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+18303
+ rotate: false
+ xy: 106, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+18306
+ rotate: false
+ xy: 158, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+18309
+ rotate: false
+ xy: 2, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+18311
+ rotate: false
+ xy: 54, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+18314
+ rotate: false
+ xy: 106, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+18850
+ rotate: false
+ xy: 158, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+18853
+ rotate: false
+ xy: 210, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+18856
+ rotate: false
+ xy: 2, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+18859
+ rotate: false
+ xy: 54, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+18862
+ rotate: false
+ xy: 106, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+18865
+ rotate: false
+ xy: 158, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+18867
+ rotate: false
+ xy: 210, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+18870
+ rotate: false
+ xy: 262, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19418
+ rotate: false
+ xy: 2, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19421
+ rotate: false
+ xy: 54, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19424
+ rotate: false
+ xy: 106, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19427
+ rotate: false
+ xy: 158, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19430
+ rotate: false
+ xy: 210, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19433
+ rotate: false
+ xy: 262, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19435
+ rotate: false
+ xy: 314, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19438
+ rotate: false
+ xy: 2, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19448
+ rotate: false
+ xy: 54, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19451
+ rotate: false
+ xy: 106, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19454
+ rotate: false
+ xy: 158, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19460
+ rotate: false
+ xy: 210, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19463
+ rotate: false
+ xy: 262, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19465
+ rotate: false
+ xy: 314, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19468
+ rotate: false
+ xy: 366, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19689
+ rotate: false
+ xy: 2, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19692
+ rotate: false
+ xy: 54, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19695
+ rotate: false
+ xy: 106, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19698
+ rotate: false
+ xy: 158, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19701
+ rotate: false
+ xy: 210, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19704
+ rotate: false
+ xy: 262, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19706
+ rotate: false
+ xy: 314, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19709
+ rotate: false
+ xy: 366, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19725
+ rotate: false
+ xy: 418, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19728
+ rotate: false
+ xy: 2, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19731
+ rotate: false
+ xy: 54, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19734
+ rotate: false
+ xy: 106, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19737
+ rotate: false
+ xy: 158, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19740
+ rotate: false
+ xy: 210, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19742
+ rotate: false
+ xy: 262, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19745
+ rotate: false
+ xy: 314, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19751
+ rotate: false
+ xy: 366, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19754
+ rotate: false
+ xy: 418, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19757
+ rotate: false
+ xy: 470, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19763
+ rotate: false
+ xy: 2, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19766
+ rotate: false
+ xy: 54, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19768
+ rotate: false
+ xy: 106, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19771
+ rotate: false
+ xy: 158, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19777
+ rotate: false
+ xy: 210, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19780
+ rotate: false
+ xy: 262, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19783
+ rotate: false
+ xy: 314, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19786
+ rotate: false
+ xy: 366, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19789
+ rotate: false
+ xy: 418, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19792
+ rotate: false
+ xy: 470, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19794
+ rotate: false
+ xy: 522, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19797
+ rotate: false
+ xy: 2, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19803
+ rotate: false
+ xy: 54, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19806
+ rotate: false
+ xy: 106, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19809
+ rotate: false
+ xy: 158, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19812
+ rotate: false
+ xy: 210, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19815
+ rotate: false
+ xy: 262, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19818
+ rotate: false
+ xy: 314, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19820
+ rotate: false
+ xy: 366, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19823
+ rotate: false
+ xy: 418, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19829
+ rotate: false
+ xy: 470, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19832
+ rotate: false
+ xy: 522, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19835
+ rotate: false
+ xy: 574, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19838
+ rotate: false
+ xy: 2, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19841
+ rotate: false
+ xy: 54, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19844
+ rotate: false
+ xy: 106, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19846
+ rotate: false
+ xy: 158, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19849
+ rotate: false
+ xy: 210, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19855
+ rotate: false
+ xy: 262, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19858
+ rotate: false
+ xy: 314, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19861
+ rotate: false
+ xy: 366, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19864
+ rotate: false
+ xy: 418, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19867
+ rotate: false
+ xy: 470, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19870
+ rotate: false
+ xy: 522, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19872
+ rotate: false
+ xy: 574, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19875
+ rotate: false
+ xy: 626, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19881
+ rotate: false
+ xy: 2, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19884
+ rotate: false
+ xy: 54, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19887
+ rotate: false
+ xy: 106, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19893
+ rotate: false
+ xy: 158, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19896
+ rotate: false
+ xy: 210, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19898
+ rotate: false
+ xy: 262, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19901
+ rotate: false
+ xy: 314, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19907
+ rotate: false
+ xy: 366, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19910
+ rotate: false
+ xy: 418, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19913
+ rotate: false
+ xy: 470, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19916
+ rotate: false
+ xy: 522, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19919
+ rotate: false
+ xy: 574, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19922
+ rotate: false
+ xy: 626, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19924
+ rotate: false
+ xy: 678, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19927
+ rotate: false
+ xy: 2, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19933
+ rotate: false
+ xy: 54, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19936
+ rotate: false
+ xy: 106, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19939
+ rotate: false
+ xy: 158, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19942
+ rotate: false
+ xy: 210, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19945
+ rotate: false
+ xy: 262, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19948
+ rotate: false
+ xy: 314, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19950
+ rotate: false
+ xy: 366, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19953
+ rotate: false
+ xy: 418, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19959
+ rotate: false
+ xy: 470, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19962
+ rotate: false
+ xy: 522, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19965
+ rotate: false
+ xy: 574, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19968
+ rotate: false
+ xy: 626, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19971
+ rotate: false
+ xy: 678, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19974
+ rotate: false
+ xy: 730, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19976
+ rotate: false
+ xy: 2, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19979
+ rotate: false
+ xy: 54, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19985
+ rotate: false
+ xy: 106, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19988
+ rotate: false
+ xy: 158, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19991
+ rotate: false
+ xy: 210, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19994
+ rotate: false
+ xy: 262, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+19997
+ rotate: false
+ xy: 314, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20000
+ rotate: false
+ xy: 366, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20002
+ rotate: false
+ xy: 418, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20005
+ rotate: false
+ xy: 470, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20011
+ rotate: false
+ xy: 522, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20014
+ rotate: false
+ xy: 574, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20017
+ rotate: false
+ xy: 626, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20020
+ rotate: false
+ xy: 678, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20023
+ rotate: false
+ xy: 730, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20026
+ rotate: false
+ xy: 782, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20028
+ rotate: false
+ xy: 2, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20031
+ rotate: false
+ xy: 54, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20037
+ rotate: false
+ xy: 106, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20040
+ rotate: false
+ xy: 158, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20043
+ rotate: false
+ xy: 210, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20046
+ rotate: false
+ xy: 262, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20049
+ rotate: false
+ xy: 314, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20052
+ rotate: false
+ xy: 366, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20054
+ rotate: false
+ xy: 418, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20057
+ rotate: false
+ xy: 470, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20208
+ rotate: false
+ xy: 522, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20211
+ rotate: false
+ xy: 574, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20214
+ rotate: false
+ xy: 626, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20217
+ rotate: false
+ xy: 678, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20220
+ rotate: false
+ xy: 730, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20223
+ rotate: false
+ xy: 782, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20225
+ rotate: false
+ xy: 834, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20228
+ rotate: false
+ xy: 2, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20241
+ rotate: false
+ xy: 54, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20244
+ rotate: false
+ xy: 106, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20247
+ rotate: false
+ xy: 158, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20250
+ rotate: false
+ xy: 210, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20253
+ rotate: false
+ xy: 262, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20256
+ rotate: false
+ xy: 314, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20258
+ rotate: false
+ xy: 366, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20261
+ rotate: false
+ xy: 418, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20268
+ rotate: false
+ xy: 470, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20271
+ rotate: false
+ xy: 522, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20274
+ rotate: false
+ xy: 574, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20277
+ rotate: false
+ xy: 626, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20280
+ rotate: false
+ xy: 678, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20283
+ rotate: false
+ xy: 730, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20285
+ rotate: false
+ xy: 782, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20288
+ rotate: false
+ xy: 834, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20295
+ rotate: false
+ xy: 886, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20298
+ rotate: false
+ xy: 2, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20301
+ rotate: false
+ xy: 54, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20304
+ rotate: false
+ xy: 106, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20307
+ rotate: false
+ xy: 158, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20310
+ rotate: false
+ xy: 210, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20312
+ rotate: false
+ xy: 262, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20315
+ rotate: false
+ xy: 314, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20322
+ rotate: false
+ xy: 366, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20325
+ rotate: false
+ xy: 418, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20328
+ rotate: false
+ xy: 470, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20331
+ rotate: false
+ xy: 522, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20334
+ rotate: false
+ xy: 574, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20337
+ rotate: false
+ xy: 626, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20339
+ rotate: false
+ xy: 678, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20342
+ rotate: false
+ xy: 730, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20349
+ rotate: false
+ xy: 782, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20352
+ rotate: false
+ xy: 834, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20355
+ rotate: false
+ xy: 886, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20358
+ rotate: false
+ xy: 938, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20361
+ rotate: false
+ xy: 2, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20364
+ rotate: false
+ xy: 54, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20366
+ rotate: false
+ xy: 106, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20369
+ rotate: false
+ xy: 158, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20376
+ rotate: false
+ xy: 210, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20379
+ rotate: false
+ xy: 262, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20382
+ rotate: false
+ xy: 314, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20385
+ rotate: false
+ xy: 366, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20388
+ rotate: false
+ xy: 418, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20391
+ rotate: false
+ xy: 470, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20393
+ rotate: false
+ xy: 522, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20396
+ rotate: false
+ xy: 574, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20408
+ rotate: false
+ xy: 626, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20411
+ rotate: false
+ xy: 678, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20414
+ rotate: false
+ xy: 730, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20417
+ rotate: false
+ xy: 782, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20420
+ rotate: false
+ xy: 834, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20423
+ rotate: false
+ xy: 886, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20425
+ rotate: false
+ xy: 938, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20428
+ rotate: false
+ xy: 2, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20435
+ rotate: false
+ xy: 54, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20438
+ rotate: false
+ xy: 106, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20441
+ rotate: false
+ xy: 158, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20444
+ rotate: false
+ xy: 210, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20447
+ rotate: false
+ xy: 262, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20450
+ rotate: false
+ xy: 314, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20452
+ rotate: false
+ xy: 366, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20455
+ rotate: false
+ xy: 418, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20462
+ rotate: false
+ xy: 470, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20465
+ rotate: false
+ xy: 522, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20468
+ rotate: false
+ xy: 574, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20471
+ rotate: false
+ xy: 626, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20474
+ rotate: false
+ xy: 678, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20477
+ rotate: false
+ xy: 730, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20479
+ rotate: false
+ xy: 782, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20482
+ rotate: false
+ xy: 834, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20511
+ rotate: false
+ xy: 886, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20514
+ rotate: false
+ xy: 938, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20517
+ rotate: false
+ xy: 54, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22626
+ rotate: false
+ xy: 54, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20520
+ rotate: false
+ xy: 106, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22629
+ rotate: false
+ xy: 106, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20523
+ rotate: false
+ xy: 158, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22632
+ rotate: false
+ xy: 158, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20526
+ rotate: false
+ xy: 210, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22635
+ rotate: false
+ xy: 210, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20528
+ rotate: false
+ xy: 262, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20531
+ rotate: false
+ xy: 314, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20538
+ rotate: false
+ xy: 366, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20541
+ rotate: false
+ xy: 418, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20544
+ rotate: false
+ xy: 470, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20547
+ rotate: false
+ xy: 522, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20550
+ rotate: false
+ xy: 574, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20553
+ rotate: false
+ xy: 626, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20555
+ rotate: false
+ xy: 678, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20558
+ rotate: false
+ xy: 730, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20565
+ rotate: false
+ xy: 782, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20568
+ rotate: false
+ xy: 834, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20571
+ rotate: false
+ xy: 886, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20574
+ rotate: false
+ xy: 938, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20577
+ rotate: false
+ xy: 106, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20580
+ rotate: false
+ xy: 158, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20582
+ rotate: false
+ xy: 210, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20585
+ rotate: false
+ xy: 262, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20592
+ rotate: false
+ xy: 314, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20595
+ rotate: false
+ xy: 366, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20598
+ rotate: false
+ xy: 418, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20601
+ rotate: false
+ xy: 470, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20604
+ rotate: false
+ xy: 522, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20607
+ rotate: false
+ xy: 574, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20609
+ rotate: false
+ xy: 626, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20612
+ rotate: false
+ xy: 678, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20619
+ rotate: false
+ xy: 730, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20622
+ rotate: false
+ xy: 782, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20625
+ rotate: false
+ xy: 834, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20628
+ rotate: false
+ xy: 886, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20631
+ rotate: false
+ xy: 938, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20634
+ rotate: false
+ xy: 158, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20636
+ rotate: false
+ xy: 210, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20639
+ rotate: false
+ xy: 262, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20646
+ rotate: false
+ xy: 314, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20649
+ rotate: false
+ xy: 366, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20652
+ rotate: false
+ xy: 418, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20655
+ rotate: false
+ xy: 470, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20658
+ rotate: false
+ xy: 522, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20661
+ rotate: false
+ xy: 574, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20663
+ rotate: false
+ xy: 626, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20666
+ rotate: false
+ xy: 678, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20673
+ rotate: false
+ xy: 730, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20676
+ rotate: false
+ xy: 782, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20679
+ rotate: false
+ xy: 834, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20682
+ rotate: false
+ xy: 886, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20685
+ rotate: false
+ xy: 938, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20688
+ rotate: false
+ xy: 210, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20690
+ rotate: false
+ xy: 262, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20693
+ rotate: false
+ xy: 314, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20700
+ rotate: false
+ xy: 366, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20703
+ rotate: false
+ xy: 418, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20706
+ rotate: false
+ xy: 470, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20709
+ rotate: false
+ xy: 522, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20712
+ rotate: false
+ xy: 574, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20715
+ rotate: false
+ xy: 626, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20717
+ rotate: false
+ xy: 678, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20720
+ rotate: false
+ xy: 730, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20727
+ rotate: false
+ xy: 782, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20730
+ rotate: false
+ xy: 834, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20733
+ rotate: false
+ xy: 886, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20736
+ rotate: false
+ xy: 938, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20739
+ rotate: false
+ xy: 262, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20742
+ rotate: false
+ xy: 314, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20744
+ rotate: false
+ xy: 366, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20747
+ rotate: false
+ xy: 418, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20754
+ rotate: false
+ xy: 470, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20757
+ rotate: false
+ xy: 522, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20760
+ rotate: false
+ xy: 574, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20763
+ rotate: false
+ xy: 626, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20766
+ rotate: false
+ xy: 678, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20769
+ rotate: false
+ xy: 730, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20771
+ rotate: false
+ xy: 782, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20774
+ rotate: false
+ xy: 834, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20781
+ rotate: false
+ xy: 886, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20784
+ rotate: false
+ xy: 938, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20787
+ rotate: false
+ xy: 314, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20790
+ rotate: false
+ xy: 366, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20793
+ rotate: false
+ xy: 418, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20796
+ rotate: false
+ xy: 470, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20798
+ rotate: false
+ xy: 522, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20801
+ rotate: false
+ xy: 574, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20808
+ rotate: false
+ xy: 626, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20811
+ rotate: false
+ xy: 678, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20814
+ rotate: false
+ xy: 730, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20817
+ rotate: false
+ xy: 782, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20820
+ rotate: false
+ xy: 834, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20823
+ rotate: false
+ xy: 886, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20825
+ rotate: false
+ xy: 938, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20828
+ rotate: false
+ xy: 366, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20835
+ rotate: false
+ xy: 418, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20838
+ rotate: false
+ xy: 470, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20841
+ rotate: false
+ xy: 522, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20844
+ rotate: false
+ xy: 574, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20847
+ rotate: false
+ xy: 626, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20850
+ rotate: false
+ xy: 678, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20852
+ rotate: false
+ xy: 730, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20855
+ rotate: false
+ xy: 782, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20862
+ rotate: false
+ xy: 834, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20865
+ rotate: false
+ xy: 886, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20868
+ rotate: false
+ xy: 938, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20871
+ rotate: false
+ xy: 418, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20874
+ rotate: false
+ xy: 470, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20877
+ rotate: false
+ xy: 522, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20879
+ rotate: false
+ xy: 574, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20882
+ rotate: false
+ xy: 626, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20889
+ rotate: false
+ xy: 678, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20892
+ rotate: false
+ xy: 730, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20895
+ rotate: false
+ xy: 782, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20898
+ rotate: false
+ xy: 834, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20901
+ rotate: false
+ xy: 886, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20904
+ rotate: false
+ xy: 938, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20906
+ rotate: false
+ xy: 470, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20909
+ rotate: false
+ xy: 522, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20916
+ rotate: false
+ xy: 574, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20919
+ rotate: false
+ xy: 626, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20922
+ rotate: false
+ xy: 678, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20925
+ rotate: false
+ xy: 730, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20928
+ rotate: false
+ xy: 782, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20931
+ rotate: false
+ xy: 834, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20933
+ rotate: false
+ xy: 886, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20936
+ rotate: false
+ xy: 938, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20943
+ rotate: false
+ xy: 522, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20946
+ rotate: false
+ xy: 574, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20949
+ rotate: false
+ xy: 626, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20952
+ rotate: false
+ xy: 678, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20955
+ rotate: false
+ xy: 730, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20958
+ rotate: false
+ xy: 782, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20960
+ rotate: false
+ xy: 834, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20963
+ rotate: false
+ xy: 886, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20970
+ rotate: false
+ xy: 938, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20973
+ rotate: false
+ xy: 574, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20976
+ rotate: false
+ xy: 626, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20979
+ rotate: false
+ xy: 678, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20982
+ rotate: false
+ xy: 730, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20985
+ rotate: false
+ xy: 782, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20987
+ rotate: false
+ xy: 834, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20990
+ rotate: false
+ xy: 886, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+20997
+ rotate: false
+ xy: 938, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21000
+ rotate: false
+ xy: 626, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21003
+ rotate: false
+ xy: 678, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21006
+ rotate: false
+ xy: 730, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21009
+ rotate: false
+ xy: 782, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21012
+ rotate: false
+ xy: 834, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21014
+ rotate: false
+ xy: 886, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21017
+ rotate: false
+ xy: 938, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21024
+ rotate: false
+ xy: 678, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21027
+ rotate: false
+ xy: 730, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21030
+ rotate: false
+ xy: 782, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21033
+ rotate: false
+ xy: 834, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21036
+ rotate: false
+ xy: 886, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21039
+ rotate: false
+ xy: 938, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21041
+ rotate: false
+ xy: 730, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21044
+ rotate: false
+ xy: 782, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21051
+ rotate: false
+ xy: 834, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21054
+ rotate: false
+ xy: 886, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21057
+ rotate: false
+ xy: 938, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21060
+ rotate: false
+ xy: 782, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21063
+ rotate: false
+ xy: 834, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21066
+ rotate: false
+ xy: 886, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21068
+ rotate: false
+ xy: 938, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21071
+ rotate: false
+ xy: 834, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21078
+ rotate: false
+ xy: 886, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21081
+ rotate: false
+ xy: 938, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21084
+ rotate: false
+ xy: 886, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21087
+ rotate: false
+ xy: 938, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21090
+ rotate: false
+ xy: 938, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3654
+ rotate: false
+ xy: 990, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3689
+ rotate: false
+ xy: 990, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3694
+ rotate: false
+ xy: 990, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3695
+ rotate: false
+ xy: 990, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3700
+ rotate: false
+ xy: 990, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3701
+ rotate: false
+ xy: 990, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3706
+ rotate: false
+ xy: 990, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3717
+ rotate: false
+ xy: 990, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3722
+ rotate: false
+ xy: 990, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3723
+ rotate: false
+ xy: 990, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3728
+ rotate: false
+ xy: 990, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3729
+ rotate: false
+ xy: 990, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3734
+ rotate: false
+ xy: 990, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3743
+ rotate: false
+ xy: 990, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3748
+ rotate: false
+ xy: 990, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3749
+ rotate: false
+ xy: 990, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3754
+ rotate: false
+ xy: 990, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3755
+ rotate: false
+ xy: 990, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3760
+ rotate: false
+ xy: 990, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3769
+ rotate: false
+ xy: 990, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3774
+ rotate: false
+ xy: 990, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+
+images101.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+21093
+ rotate: false
+ xy: 2, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21095
+ rotate: false
+ xy: 2, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21098
+ rotate: false
+ xy: 54, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21105
+ rotate: false
+ xy: 2, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21108
+ rotate: false
+ xy: 54, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21111
+ rotate: false
+ xy: 106, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21114
+ rotate: false
+ xy: 2, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21117
+ rotate: false
+ xy: 54, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21120
+ rotate: false
+ xy: 106, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21122
+ rotate: false
+ xy: 158, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21125
+ rotate: false
+ xy: 2, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21132
+ rotate: false
+ xy: 54, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21135
+ rotate: false
+ xy: 106, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21138
+ rotate: false
+ xy: 158, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21141
+ rotate: false
+ xy: 210, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21144
+ rotate: false
+ xy: 2, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21147
+ rotate: false
+ xy: 54, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21149
+ rotate: false
+ xy: 106, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21152
+ rotate: false
+ xy: 158, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21159
+ rotate: false
+ xy: 210, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21162
+ rotate: false
+ xy: 262, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21165
+ rotate: false
+ xy: 2, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21168
+ rotate: false
+ xy: 54, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21171
+ rotate: false
+ xy: 106, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21174
+ rotate: false
+ xy: 158, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21176
+ rotate: false
+ xy: 210, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21179
+ rotate: false
+ xy: 262, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21186
+ rotate: false
+ xy: 314, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21189
+ rotate: false
+ xy: 2, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21192
+ rotate: false
+ xy: 54, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21195
+ rotate: false
+ xy: 106, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21198
+ rotate: false
+ xy: 158, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21201
+ rotate: false
+ xy: 210, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21203
+ rotate: false
+ xy: 262, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21206
+ rotate: false
+ xy: 314, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21213
+ rotate: false
+ xy: 366, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21216
+ rotate: false
+ xy: 2, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21219
+ rotate: false
+ xy: 54, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21222
+ rotate: false
+ xy: 106, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21225
+ rotate: false
+ xy: 158, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21228
+ rotate: false
+ xy: 210, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21230
+ rotate: false
+ xy: 262, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21233
+ rotate: false
+ xy: 314, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21240
+ rotate: false
+ xy: 366, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21243
+ rotate: false
+ xy: 418, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21246
+ rotate: false
+ xy: 2, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21249
+ rotate: false
+ xy: 54, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21252
+ rotate: false
+ xy: 106, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21255
+ rotate: false
+ xy: 158, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21257
+ rotate: false
+ xy: 210, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21260
+ rotate: false
+ xy: 262, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21267
+ rotate: false
+ xy: 314, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21270
+ rotate: false
+ xy: 366, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21273
+ rotate: false
+ xy: 418, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21276
+ rotate: false
+ xy: 470, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21279
+ rotate: false
+ xy: 2, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21282
+ rotate: false
+ xy: 54, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21284
+ rotate: false
+ xy: 106, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21287
+ rotate: false
+ xy: 158, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21294
+ rotate: false
+ xy: 210, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21297
+ rotate: false
+ xy: 262, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21300
+ rotate: false
+ xy: 314, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21303
+ rotate: false
+ xy: 366, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21306
+ rotate: false
+ xy: 418, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21309
+ rotate: false
+ xy: 470, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21311
+ rotate: false
+ xy: 522, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21314
+ rotate: false
+ xy: 2, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21321
+ rotate: false
+ xy: 54, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21324
+ rotate: false
+ xy: 106, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21327
+ rotate: false
+ xy: 158, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21330
+ rotate: false
+ xy: 210, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21333
+ rotate: false
+ xy: 262, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21336
+ rotate: false
+ xy: 314, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21338
+ rotate: false
+ xy: 366, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21341
+ rotate: false
+ xy: 418, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21348
+ rotate: false
+ xy: 470, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21351
+ rotate: false
+ xy: 522, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21354
+ rotate: false
+ xy: 574, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21357
+ rotate: false
+ xy: 2, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21360
+ rotate: false
+ xy: 54, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21363
+ rotate: false
+ xy: 106, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21365
+ rotate: false
+ xy: 158, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21368
+ rotate: false
+ xy: 210, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21375
+ rotate: false
+ xy: 262, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21378
+ rotate: false
+ xy: 314, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21381
+ rotate: false
+ xy: 366, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21384
+ rotate: false
+ xy: 418, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21387
+ rotate: false
+ xy: 470, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21390
+ rotate: false
+ xy: 522, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21392
+ rotate: false
+ xy: 574, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21395
+ rotate: false
+ xy: 626, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21402
+ rotate: false
+ xy: 2, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21405
+ rotate: false
+ xy: 54, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21408
+ rotate: false
+ xy: 106, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21411
+ rotate: false
+ xy: 158, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21414
+ rotate: false
+ xy: 210, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21417
+ rotate: false
+ xy: 262, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21419
+ rotate: false
+ xy: 314, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21422
+ rotate: false
+ xy: 366, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21429
+ rotate: false
+ xy: 418, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21432
+ rotate: false
+ xy: 470, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21435
+ rotate: false
+ xy: 522, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21438
+ rotate: false
+ xy: 574, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21441
+ rotate: false
+ xy: 626, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21444
+ rotate: false
+ xy: 678, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21446
+ rotate: false
+ xy: 2, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21449
+ rotate: false
+ xy: 54, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21456
+ rotate: false
+ xy: 106, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21459
+ rotate: false
+ xy: 158, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21462
+ rotate: false
+ xy: 210, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21465
+ rotate: false
+ xy: 262, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21468
+ rotate: false
+ xy: 314, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21471
+ rotate: false
+ xy: 366, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21473
+ rotate: false
+ xy: 418, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21476
+ rotate: false
+ xy: 470, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21483
+ rotate: false
+ xy: 522, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21486
+ rotate: false
+ xy: 574, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21489
+ rotate: false
+ xy: 626, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21492
+ rotate: false
+ xy: 678, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21495
+ rotate: false
+ xy: 730, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21498
+ rotate: false
+ xy: 2, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21500
+ rotate: false
+ xy: 54, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21503
+ rotate: false
+ xy: 106, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21510
+ rotate: false
+ xy: 158, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21513
+ rotate: false
+ xy: 210, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21516
+ rotate: false
+ xy: 262, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21519
+ rotate: false
+ xy: 314, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21522
+ rotate: false
+ xy: 366, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21525
+ rotate: false
+ xy: 418, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21527
+ rotate: false
+ xy: 470, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21530
+ rotate: false
+ xy: 522, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21537
+ rotate: false
+ xy: 574, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21540
+ rotate: false
+ xy: 626, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21543
+ rotate: false
+ xy: 678, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21546
+ rotate: false
+ xy: 730, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21549
+ rotate: false
+ xy: 782, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21552
+ rotate: false
+ xy: 2, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21554
+ rotate: false
+ xy: 54, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21557
+ rotate: false
+ xy: 106, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21564
+ rotate: false
+ xy: 158, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21567
+ rotate: false
+ xy: 210, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21570
+ rotate: false
+ xy: 262, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21573
+ rotate: false
+ xy: 314, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21576
+ rotate: false
+ xy: 366, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21579
+ rotate: false
+ xy: 418, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21581
+ rotate: false
+ xy: 470, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21584
+ rotate: false
+ xy: 522, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21591
+ rotate: false
+ xy: 574, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21594
+ rotate: false
+ xy: 626, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21597
+ rotate: false
+ xy: 678, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21600
+ rotate: false
+ xy: 730, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21603
+ rotate: false
+ xy: 782, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21606
+ rotate: false
+ xy: 834, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21608
+ rotate: false
+ xy: 2, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21611
+ rotate: false
+ xy: 54, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21618
+ rotate: false
+ xy: 106, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21621
+ rotate: false
+ xy: 158, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21624
+ rotate: false
+ xy: 210, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21627
+ rotate: false
+ xy: 262, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21630
+ rotate: false
+ xy: 314, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21633
+ rotate: false
+ xy: 366, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21635
+ rotate: false
+ xy: 418, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21638
+ rotate: false
+ xy: 470, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21645
+ rotate: false
+ xy: 522, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21648
+ rotate: false
+ xy: 574, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21651
+ rotate: false
+ xy: 626, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21654
+ rotate: false
+ xy: 678, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21657
+ rotate: false
+ xy: 730, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21660
+ rotate: false
+ xy: 782, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21662
+ rotate: false
+ xy: 834, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21665
+ rotate: false
+ xy: 886, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21672
+ rotate: false
+ xy: 2, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21675
+ rotate: false
+ xy: 54, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21678
+ rotate: false
+ xy: 106, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21681
+ rotate: false
+ xy: 158, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21684
+ rotate: false
+ xy: 210, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21687
+ rotate: false
+ xy: 262, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21689
+ rotate: false
+ xy: 314, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21692
+ rotate: false
+ xy: 366, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21699
+ rotate: false
+ xy: 418, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21702
+ rotate: false
+ xy: 470, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21705
+ rotate: false
+ xy: 522, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21708
+ rotate: false
+ xy: 574, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21711
+ rotate: false
+ xy: 626, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21714
+ rotate: false
+ xy: 678, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21716
+ rotate: false
+ xy: 730, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21719
+ rotate: false
+ xy: 782, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21924
+ rotate: false
+ xy: 834, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21927
+ rotate: false
+ xy: 886, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21930
+ rotate: false
+ xy: 938, 942
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21933
+ rotate: false
+ xy: 2, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21936
+ rotate: false
+ xy: 54, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21939
+ rotate: false
+ xy: 106, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21941
+ rotate: false
+ xy: 158, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21944
+ rotate: false
+ xy: 210, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21982
+ rotate: false
+ xy: 262, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21985
+ rotate: false
+ xy: 314, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21988
+ rotate: false
+ xy: 366, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21991
+ rotate: false
+ xy: 418, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21994
+ rotate: false
+ xy: 470, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21997
+ rotate: false
+ xy: 522, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+21999
+ rotate: false
+ xy: 574, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22002
+ rotate: false
+ xy: 626, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22008
+ rotate: false
+ xy: 678, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22011
+ rotate: false
+ xy: 730, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22014
+ rotate: false
+ xy: 782, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22017
+ rotate: false
+ xy: 834, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22020
+ rotate: false
+ xy: 886, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22023
+ rotate: false
+ xy: 938, 895
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22025
+ rotate: false
+ xy: 2, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22028
+ rotate: false
+ xy: 54, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22041
+ rotate: false
+ xy: 106, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22044
+ rotate: false
+ xy: 158, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22047
+ rotate: false
+ xy: 210, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22050
+ rotate: false
+ xy: 262, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22053
+ rotate: false
+ xy: 314, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22056
+ rotate: false
+ xy: 366, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22058
+ rotate: false
+ xy: 418, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22061
+ rotate: false
+ xy: 470, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22267
+ rotate: false
+ xy: 522, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22270
+ rotate: false
+ xy: 574, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22273
+ rotate: false
+ xy: 626, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22276
+ rotate: false
+ xy: 678, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22279
+ rotate: false
+ xy: 730, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22282
+ rotate: false
+ xy: 782, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22284
+ rotate: false
+ xy: 834, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22287
+ rotate: false
+ xy: 886, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22293
+ rotate: false
+ xy: 938, 848
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22296
+ rotate: false
+ xy: 54, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22299
+ rotate: false
+ xy: 106, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22302
+ rotate: false
+ xy: 158, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22305
+ rotate: false
+ xy: 210, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22308
+ rotate: false
+ xy: 262, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22310
+ rotate: false
+ xy: 314, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22313
+ rotate: false
+ xy: 366, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22319
+ rotate: false
+ xy: 418, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22322
+ rotate: false
+ xy: 470, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22325
+ rotate: false
+ xy: 522, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22328
+ rotate: false
+ xy: 574, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22331
+ rotate: false
+ xy: 626, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22334
+ rotate: false
+ xy: 678, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22336
+ rotate: false
+ xy: 730, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22339
+ rotate: false
+ xy: 782, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22345
+ rotate: false
+ xy: 834, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22348
+ rotate: false
+ xy: 886, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22351
+ rotate: false
+ xy: 938, 801
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22354
+ rotate: false
+ xy: 106, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22357
+ rotate: false
+ xy: 158, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22360
+ rotate: false
+ xy: 210, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22362
+ rotate: false
+ xy: 262, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22365
+ rotate: false
+ xy: 314, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22371
+ rotate: false
+ xy: 366, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22374
+ rotate: false
+ xy: 418, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22377
+ rotate: false
+ xy: 470, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22380
+ rotate: false
+ xy: 522, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22383
+ rotate: false
+ xy: 574, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22386
+ rotate: false
+ xy: 626, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22388
+ rotate: false
+ xy: 678, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22391
+ rotate: false
+ xy: 730, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22397
+ rotate: false
+ xy: 782, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22400
+ rotate: false
+ xy: 834, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22403
+ rotate: false
+ xy: 886, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22406
+ rotate: false
+ xy: 938, 754
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22409
+ rotate: false
+ xy: 158, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22412
+ rotate: false
+ xy: 210, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22414
+ rotate: false
+ xy: 262, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22417
+ rotate: false
+ xy: 314, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22423
+ rotate: false
+ xy: 366, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22426
+ rotate: false
+ xy: 418, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22429
+ rotate: false
+ xy: 470, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22432
+ rotate: false
+ xy: 522, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22435
+ rotate: false
+ xy: 574, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22438
+ rotate: false
+ xy: 626, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22440
+ rotate: false
+ xy: 678, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22443
+ rotate: false
+ xy: 730, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22449
+ rotate: false
+ xy: 782, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22452
+ rotate: false
+ xy: 834, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22455
+ rotate: false
+ xy: 886, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22458
+ rotate: false
+ xy: 938, 707
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22461
+ rotate: false
+ xy: 210, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22464
+ rotate: false
+ xy: 262, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22466
+ rotate: false
+ xy: 314, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22469
+ rotate: false
+ xy: 366, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22516
+ rotate: false
+ xy: 418, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22519
+ rotate: false
+ xy: 470, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22522
+ rotate: false
+ xy: 522, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22528
+ rotate: false
+ xy: 574, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22531
+ rotate: false
+ xy: 626, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22533
+ rotate: false
+ xy: 678, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22536
+ rotate: false
+ xy: 730, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22542
+ rotate: false
+ xy: 782, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22545
+ rotate: false
+ xy: 834, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22548
+ rotate: false
+ xy: 886, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22554
+ rotate: false
+ xy: 938, 660
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22557
+ rotate: false
+ xy: 262, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22559
+ rotate: false
+ xy: 314, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22562
+ rotate: false
+ xy: 366, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22568
+ rotate: false
+ xy: 418, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22571
+ rotate: false
+ xy: 470, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22574
+ rotate: false
+ xy: 522, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22580
+ rotate: false
+ xy: 574, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22583
+ rotate: false
+ xy: 626, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22585
+ rotate: false
+ xy: 678, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22588
+ rotate: false
+ xy: 730, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22594
+ rotate: false
+ xy: 782, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22597
+ rotate: false
+ xy: 834, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22600
+ rotate: false
+ xy: 886, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22603
+ rotate: false
+ xy: 938, 613
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22606
+ rotate: false
+ xy: 314, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22609
+ rotate: false
+ xy: 366, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22611
+ rotate: false
+ xy: 418, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22614
+ rotate: false
+ xy: 470, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22620
+ rotate: false
+ xy: 522, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22623
+ rotate: false
+ xy: 574, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22637
+ rotate: false
+ xy: 626, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22640
+ rotate: false
+ xy: 678, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22646
+ rotate: false
+ xy: 730, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22649
+ rotate: false
+ xy: 782, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22652
+ rotate: false
+ xy: 834, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22655
+ rotate: false
+ xy: 886, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22658
+ rotate: false
+ xy: 938, 566
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22661
+ rotate: false
+ xy: 366, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22663
+ rotate: false
+ xy: 418, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22666
+ rotate: false
+ xy: 470, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22672
+ rotate: false
+ xy: 522, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22675
+ rotate: false
+ xy: 574, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22678
+ rotate: false
+ xy: 626, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22681
+ rotate: false
+ xy: 678, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22684
+ rotate: false
+ xy: 730, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22687
+ rotate: false
+ xy: 782, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22689
+ rotate: false
+ xy: 834, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22692
+ rotate: false
+ xy: 886, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22698
+ rotate: false
+ xy: 938, 519
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22701
+ rotate: false
+ xy: 418, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22704
+ rotate: false
+ xy: 470, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22707
+ rotate: false
+ xy: 522, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22710
+ rotate: false
+ xy: 574, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22713
+ rotate: false
+ xy: 626, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22715
+ rotate: false
+ xy: 678, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22718
+ rotate: false
+ xy: 730, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22725
+ rotate: false
+ xy: 782, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22728
+ rotate: false
+ xy: 834, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22731
+ rotate: false
+ xy: 886, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22734
+ rotate: false
+ xy: 938, 472
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22737
+ rotate: false
+ xy: 470, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22742
+ rotate: false
+ xy: 522, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22745
+ rotate: false
+ xy: 574, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22751
+ rotate: false
+ xy: 626, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22754
+ rotate: false
+ xy: 678, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22757
+ rotate: false
+ xy: 730, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22760
+ rotate: false
+ xy: 782, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22763
+ rotate: false
+ xy: 834, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22766
+ rotate: false
+ xy: 886, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22768
+ rotate: false
+ xy: 938, 425
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22771
+ rotate: false
+ xy: 522, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22777
+ rotate: false
+ xy: 574, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22780
+ rotate: false
+ xy: 626, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22783
+ rotate: false
+ xy: 678, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22786
+ rotate: false
+ xy: 730, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22789
+ rotate: false
+ xy: 782, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22792
+ rotate: false
+ xy: 834, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22794
+ rotate: false
+ xy: 886, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22797
+ rotate: false
+ xy: 938, 378
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22965
+ rotate: false
+ xy: 574, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22968
+ rotate: false
+ xy: 626, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22971
+ rotate: false
+ xy: 678, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22974
+ rotate: false
+ xy: 730, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22977
+ rotate: false
+ xy: 782, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22980
+ rotate: false
+ xy: 834, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22982
+ rotate: false
+ xy: 886, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22985
+ rotate: false
+ xy: 938, 331
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22991
+ rotate: false
+ xy: 626, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22994
+ rotate: false
+ xy: 678, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+22997
+ rotate: false
+ xy: 730, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23000
+ rotate: false
+ xy: 782, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23003
+ rotate: false
+ xy: 834, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23006
+ rotate: false
+ xy: 886, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23008
+ rotate: false
+ xy: 938, 284
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23011
+ rotate: false
+ xy: 678, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23017
+ rotate: false
+ xy: 730, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23020
+ rotate: false
+ xy: 782, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23023
+ rotate: false
+ xy: 834, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23026
+ rotate: false
+ xy: 886, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23029
+ rotate: false
+ xy: 938, 237
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23032
+ rotate: false
+ xy: 730, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23034
+ rotate: false
+ xy: 782, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23037
+ rotate: false
+ xy: 834, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23043
+ rotate: false
+ xy: 886, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23046
+ rotate: false
+ xy: 938, 190
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23049
+ rotate: false
+ xy: 782, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23052
+ rotate: false
+ xy: 834, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23055
+ rotate: false
+ xy: 886, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23058
+ rotate: false
+ xy: 938, 143
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23060
+ rotate: false
+ xy: 834, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23063
+ rotate: false
+ xy: 886, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23071
+ rotate: false
+ xy: 938, 96
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23074
+ rotate: false
+ xy: 886, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23077
+ rotate: false
+ xy: 938, 49
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23080
+ rotate: false
+ xy: 938, 2
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3775
+ rotate: false
+ xy: 990, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3780
+ rotate: false
+ xy: 990, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3781
+ rotate: false
+ xy: 990, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3786
+ rotate: false
+ xy: 990, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3878
+ rotate: false
+ xy: 990, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3883
+ rotate: false
+ xy: 990, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3884
+ rotate: false
+ xy: 990, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3889
+ rotate: false
+ xy: 990, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3890
+ rotate: false
+ xy: 990, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3895
+ rotate: false
+ xy: 990, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3904
+ rotate: false
+ xy: 990, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3909
+ rotate: false
+ xy: 990, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3910
+ rotate: false
+ xy: 990, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3915
+ rotate: false
+ xy: 990, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3916
+ rotate: false
+ xy: 990, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3921
+ rotate: false
+ xy: 990, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3930
+ rotate: false
+ xy: 990, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3935
+ rotate: false
+ xy: 990, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3936
+ rotate: false
+ xy: 990, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3941
+ rotate: false
+ xy: 990, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3942
+ rotate: false
+ xy: 990, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+
+images102.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+13120
+ rotate: false
+ xy: 158, 403
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13121
+ rotate: false
+ xy: 158, 351
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13124
+ rotate: false
+ xy: 158, 299
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13125
+ rotate: false
+ xy: 158, 247
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13128
+ rotate: false
+ xy: 158, 195
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13129
+ rotate: false
+ xy: 158, 143
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13132
+ rotate: false
+ xy: 158, 91
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13133
+ rotate: false
+ xy: 158, 39
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13136
+ rotate: false
+ xy: 194, 403
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13137
+ rotate: false
+ xy: 210, 685
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13140
+ rotate: false
+ xy: 210, 633
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13141
+ rotate: false
+ xy: 210, 581
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13144
+ rotate: false
+ xy: 210, 529
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13145
+ rotate: false
+ xy: 210, 477
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13148
+ rotate: false
+ xy: 194, 351
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13149
+ rotate: false
+ xy: 194, 299
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13152
+ rotate: false
+ xy: 194, 247
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13153
+ rotate: false
+ xy: 194, 195
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13156
+ rotate: false
+ xy: 194, 143
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13157
+ rotate: false
+ xy: 194, 91
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13160
+ rotate: false
+ xy: 194, 39
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13161
+ rotate: false
+ xy: 230, 425
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13164
+ rotate: false
+ xy: 246, 685
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13165
+ rotate: false
+ xy: 246, 633
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13168
+ rotate: false
+ xy: 246, 581
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13169
+ rotate: false
+ xy: 246, 529
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13172
+ rotate: false
+ xy: 246, 477
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13173
+ rotate: false
+ xy: 230, 373
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13176
+ rotate: false
+ xy: 230, 321
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13177
+ rotate: false
+ xy: 230, 269
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13180
+ rotate: false
+ xy: 230, 217
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13181
+ rotate: false
+ xy: 230, 165
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13184
+ rotate: false
+ xy: 230, 113
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13185
+ rotate: false
+ xy: 230, 61
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13188
+ rotate: false
+ xy: 230, 9
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13189
+ rotate: false
+ xy: 266, 425
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13192
+ rotate: false
+ xy: 282, 685
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13193
+ rotate: false
+ xy: 282, 633
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13196
+ rotate: false
+ xy: 282, 581
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13197
+ rotate: false
+ xy: 282, 529
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13200
+ rotate: false
+ xy: 282, 477
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13201
+ rotate: false
+ xy: 266, 373
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13204
+ rotate: false
+ xy: 266, 321
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13205
+ rotate: false
+ xy: 266, 269
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13208
+ rotate: false
+ xy: 266, 217
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13209
+ rotate: false
+ xy: 266, 165
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13212
+ rotate: false
+ xy: 266, 113
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13213
+ rotate: false
+ xy: 266, 61
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13216
+ rotate: false
+ xy: 266, 9
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13217
+ rotate: false
+ xy: 302, 425
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13220
+ rotate: false
+ xy: 318, 685
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13221
+ rotate: false
+ xy: 318, 633
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13224
+ rotate: false
+ xy: 318, 581
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13225
+ rotate: false
+ xy: 318, 529
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13228
+ rotate: false
+ xy: 318, 477
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13229
+ rotate: false
+ xy: 302, 373
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13232
+ rotate: false
+ xy: 302, 321
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13233
+ rotate: false
+ xy: 302, 269
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13236
+ rotate: false
+ xy: 302, 217
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13237
+ rotate: false
+ xy: 302, 165
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13240
+ rotate: false
+ xy: 302, 113
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13241
+ rotate: false
+ xy: 302, 61
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13244
+ rotate: false
+ xy: 302, 9
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13245
+ rotate: false
+ xy: 338, 425
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13248
+ rotate: false
+ xy: 354, 685
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13249
+ rotate: false
+ xy: 354, 633
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13252
+ rotate: false
+ xy: 354, 581
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13253
+ rotate: false
+ xy: 354, 529
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13960
+ rotate: false
+ xy: 354, 477
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13961
+ rotate: false
+ xy: 338, 373
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13991
+ rotate: false
+ xy: 338, 321
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13992
+ rotate: false
+ xy: 338, 269
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13995
+ rotate: false
+ xy: 338, 217
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+13996
+ rotate: false
+ xy: 338, 165
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+14187
+ rotate: false
+ xy: 338, 113
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+14188
+ rotate: false
+ xy: 338, 61
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+14191
+ rotate: false
+ xy: 338, 9
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+14192
+ rotate: false
+ xy: 374, 425
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17832
+ rotate: false
+ xy: 390, 685
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17833
+ rotate: false
+ xy: 390, 633
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17836
+ rotate: false
+ xy: 390, 581
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17837
+ rotate: false
+ xy: 390, 529
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17840
+ rotate: false
+ xy: 390, 477
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17841
+ rotate: false
+ xy: 374, 373
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17844
+ rotate: false
+ xy: 374, 321
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17845
+ rotate: false
+ xy: 374, 269
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17848
+ rotate: false
+ xy: 374, 217
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17849
+ rotate: false
+ xy: 374, 165
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17852
+ rotate: false
+ xy: 374, 113
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17853
+ rotate: false
+ xy: 374, 61
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17856
+ rotate: false
+ xy: 374, 9
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17857
+ rotate: false
+ xy: 410, 425
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17912
+ rotate: false
+ xy: 426, 685
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17913
+ rotate: false
+ xy: 426, 633
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17916
+ rotate: false
+ xy: 426, 581
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+17917
+ rotate: false
+ xy: 426, 529
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+18393
+ rotate: false
+ xy: 426, 477
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+18394
+ rotate: false
+ xy: 410, 373
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+18846
+ rotate: false
+ xy: 410, 321
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+18847
+ rotate: false
+ xy: 410, 269
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+19444
+ rotate: false
+ xy: 410, 217
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+19445
+ rotate: false
+ xy: 410, 165
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21725
+ rotate: false
+ xy: 410, 113
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21726
+ rotate: false
+ xy: 410, 61
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21729
+ rotate: false
+ xy: 410, 9
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21730
+ rotate: false
+ xy: 446, 425
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21733
+ rotate: false
+ xy: 462, 685
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21734
+ rotate: false
+ xy: 462, 633
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21737
+ rotate: false
+ xy: 462, 581
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21738
+ rotate: false
+ xy: 462, 529
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21741
+ rotate: false
+ xy: 462, 477
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21742
+ rotate: false
+ xy: 446, 373
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21745
+ rotate: false
+ xy: 446, 321
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21746
+ rotate: false
+ xy: 446, 269
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21749
+ rotate: false
+ xy: 446, 217
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21750
+ rotate: false
+ xy: 446, 165
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21753
+ rotate: false
+ xy: 446, 113
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21754
+ rotate: false
+ xy: 446, 61
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21757
+ rotate: false
+ xy: 446, 9
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21758
+ rotate: false
+ xy: 482, 425
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21761
+ rotate: false
+ xy: 498, 685
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21762
+ rotate: false
+ xy: 498, 633
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21765
+ rotate: false
+ xy: 498, 581
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21766
+ rotate: false
+ xy: 498, 529
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21769
+ rotate: false
+ xy: 498, 477
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21770
+ rotate: false
+ xy: 482, 373
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21773
+ rotate: false
+ xy: 482, 321
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21774
+ rotate: false
+ xy: 482, 269
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21777
+ rotate: false
+ xy: 482, 217
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21778
+ rotate: false
+ xy: 482, 165
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21781
+ rotate: false
+ xy: 482, 113
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21782
+ rotate: false
+ xy: 482, 61
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21785
+ rotate: false
+ xy: 482, 9
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21786
+ rotate: false
+ xy: 518, 425
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21789
+ rotate: false
+ xy: 534, 685
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+21790
+ rotate: false
+ xy: 534, 633
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+22803
+ rotate: false
+ xy: 534, 581
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+22804
+ rotate: false
+ xy: 534, 529
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+22807
+ rotate: false
+ xy: 534, 477
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+22808
+ rotate: false
+ xy: 518, 373
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+22811
+ rotate: false
+ xy: 518, 321
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+22812
+ rotate: false
+ xy: 518, 269
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+22815
+ rotate: false
+ xy: 518, 217
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+22816
+ rotate: false
+ xy: 518, 165
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+22819
+ rotate: false
+ xy: 518, 113
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+22820
+ rotate: false
+ xy: 518, 61
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+22821
+ rotate: false
+ xy: 1002, 591
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+22822
+ rotate: false
+ xy: 1002, 539
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+22823
+ rotate: false
+ xy: 518, 9
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+22824
+ rotate: false
+ xy: 554, 425
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+22825
+ rotate: false
+ xy: 1002, 487
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+22827
+ rotate: false
+ xy: 570, 685
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+22828
+ rotate: false
+ xy: 570, 633
+ size: 34, 50
+ orig: 34, 50
+ offset: 0, 0
+ index: -1
+23083
+ rotate: false
+ xy: 2, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23086
+ rotate: false
+ xy: 54, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23088
+ rotate: false
+ xy: 106, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23091
+ rotate: false
+ xy: 158, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23098
+ rotate: false
+ xy: 210, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23101
+ rotate: false
+ xy: 262, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23104
+ rotate: false
+ xy: 314, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23107
+ rotate: false
+ xy: 366, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23110
+ rotate: false
+ xy: 418, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23113
+ rotate: false
+ xy: 470, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23115
+ rotate: false
+ xy: 522, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23118
+ rotate: false
+ xy: 574, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23125
+ rotate: false
+ xy: 626, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23128
+ rotate: false
+ xy: 678, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23131
+ rotate: false
+ xy: 730, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23134
+ rotate: false
+ xy: 782, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23137
+ rotate: false
+ xy: 834, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23140
+ rotate: false
+ xy: 886, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23142
+ rotate: false
+ xy: 938, 972
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23145
+ rotate: false
+ xy: 2, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23152
+ rotate: false
+ xy: 54, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23155
+ rotate: false
+ xy: 106, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23158
+ rotate: false
+ xy: 158, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23161
+ rotate: false
+ xy: 210, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23164
+ rotate: false
+ xy: 262, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23167
+ rotate: false
+ xy: 314, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23169
+ rotate: false
+ xy: 366, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23172
+ rotate: false
+ xy: 418, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23179
+ rotate: false
+ xy: 470, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23182
+ rotate: false
+ xy: 522, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23185
+ rotate: false
+ xy: 574, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23188
+ rotate: false
+ xy: 626, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23191
+ rotate: false
+ xy: 678, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23194
+ rotate: false
+ xy: 730, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23196
+ rotate: false
+ xy: 782, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23199
+ rotate: false
+ xy: 834, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23210
+ rotate: false
+ xy: 886, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23213
+ rotate: false
+ xy: 938, 925
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23216
+ rotate: false
+ xy: 2, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23219
+ rotate: false
+ xy: 54, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23222
+ rotate: false
+ xy: 106, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23225
+ rotate: false
+ xy: 158, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23227
+ rotate: false
+ xy: 210, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23230
+ rotate: false
+ xy: 262, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23236
+ rotate: false
+ xy: 314, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23239
+ rotate: false
+ xy: 366, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23242
+ rotate: false
+ xy: 418, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23245
+ rotate: false
+ xy: 470, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23248
+ rotate: false
+ xy: 522, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23251
+ rotate: false
+ xy: 574, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23253
+ rotate: false
+ xy: 626, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23256
+ rotate: false
+ xy: 678, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23262
+ rotate: false
+ xy: 730, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23265
+ rotate: false
+ xy: 782, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23268
+ rotate: false
+ xy: 834, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23271
+ rotate: false
+ xy: 886, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23274
+ rotate: false
+ xy: 938, 878
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23277
+ rotate: false
+ xy: 2, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23279
+ rotate: false
+ xy: 2, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23282
+ rotate: false
+ xy: 2, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23288
+ rotate: false
+ xy: 2, 690
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23291
+ rotate: false
+ xy: 2, 643
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23294
+ rotate: false
+ xy: 2, 596
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23297
+ rotate: false
+ xy: 2, 549
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23300
+ rotate: false
+ xy: 2, 502
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23303
+ rotate: false
+ xy: 2, 455
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23305
+ rotate: false
+ xy: 2, 408
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23308
+ rotate: false
+ xy: 2, 361
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23314
+ rotate: false
+ xy: 2, 314
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23317
+ rotate: false
+ xy: 2, 267
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23320
+ rotate: false
+ xy: 2, 220
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23326
+ rotate: false
+ xy: 2, 173
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23329
+ rotate: false
+ xy: 2, 126
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23331
+ rotate: false
+ xy: 2, 79
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23334
+ rotate: false
+ xy: 2, 32
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23340
+ rotate: false
+ xy: 54, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23343
+ rotate: false
+ xy: 106, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23346
+ rotate: false
+ xy: 158, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23349
+ rotate: false
+ xy: 210, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23352
+ rotate: false
+ xy: 262, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23355
+ rotate: false
+ xy: 314, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23357
+ rotate: false
+ xy: 366, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23366
+ rotate: false
+ xy: 418, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23369
+ rotate: false
+ xy: 470, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23372
+ rotate: false
+ xy: 522, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23378
+ rotate: false
+ xy: 574, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23381
+ rotate: false
+ xy: 626, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23383
+ rotate: false
+ xy: 678, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23386
+ rotate: false
+ xy: 730, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23392
+ rotate: false
+ xy: 782, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23395
+ rotate: false
+ xy: 834, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23398
+ rotate: false
+ xy: 886, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23401
+ rotate: false
+ xy: 938, 831
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23404
+ rotate: false
+ xy: 54, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23407
+ rotate: false
+ xy: 54, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23409
+ rotate: false
+ xy: 54, 690
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23412
+ rotate: false
+ xy: 54, 643
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23418
+ rotate: false
+ xy: 54, 596
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23421
+ rotate: false
+ xy: 54, 549
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23424
+ rotate: false
+ xy: 54, 502
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23427
+ rotate: false
+ xy: 54, 455
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23430
+ rotate: false
+ xy: 54, 408
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23433
+ rotate: false
+ xy: 54, 361
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23435
+ rotate: false
+ xy: 54, 314
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23438
+ rotate: false
+ xy: 54, 267
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23444
+ rotate: false
+ xy: 54, 220
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23447
+ rotate: false
+ xy: 54, 173
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23450
+ rotate: false
+ xy: 54, 126
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23453
+ rotate: false
+ xy: 54, 79
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23456
+ rotate: false
+ xy: 54, 32
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23459
+ rotate: false
+ xy: 106, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23461
+ rotate: false
+ xy: 158, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23464
+ rotate: false
+ xy: 210, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23470
+ rotate: false
+ xy: 262, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23473
+ rotate: false
+ xy: 314, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23476
+ rotate: false
+ xy: 366, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23482
+ rotate: false
+ xy: 418, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23485
+ rotate: false
+ xy: 470, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23487
+ rotate: false
+ xy: 522, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23490
+ rotate: false
+ xy: 574, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23496
+ rotate: false
+ xy: 626, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23499
+ rotate: false
+ xy: 678, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23502
+ rotate: false
+ xy: 730, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23505
+ rotate: false
+ xy: 782, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23508
+ rotate: false
+ xy: 834, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23511
+ rotate: false
+ xy: 886, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23513
+ rotate: false
+ xy: 938, 784
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23516
+ rotate: false
+ xy: 106, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23522
+ rotate: false
+ xy: 106, 690
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23525
+ rotate: false
+ xy: 106, 643
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23528
+ rotate: false
+ xy: 106, 596
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23534
+ rotate: false
+ xy: 106, 549
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23539
+ rotate: false
+ xy: 106, 502
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23542
+ rotate: false
+ xy: 106, 455
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23548
+ rotate: false
+ xy: 106, 408
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23551
+ rotate: false
+ xy: 106, 361
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23554
+ rotate: false
+ xy: 106, 314
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23557
+ rotate: false
+ xy: 106, 267
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23560
+ rotate: false
+ xy: 106, 220
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23563
+ rotate: false
+ xy: 106, 173
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23565
+ rotate: false
+ xy: 106, 126
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23568
+ rotate: false
+ xy: 106, 79
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23574
+ rotate: false
+ xy: 106, 32
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23577
+ rotate: false
+ xy: 158, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23580
+ rotate: false
+ xy: 210, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23583
+ rotate: false
+ xy: 262, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23586
+ rotate: false
+ xy: 314, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23589
+ rotate: false
+ xy: 366, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23591
+ rotate: false
+ xy: 418, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23594
+ rotate: false
+ xy: 470, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23600
+ rotate: false
+ xy: 522, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23603
+ rotate: false
+ xy: 574, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23606
+ rotate: false
+ xy: 626, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23609
+ rotate: false
+ xy: 678, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23612
+ rotate: false
+ xy: 730, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23617
+ rotate: false
+ xy: 782, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23620
+ rotate: false
+ xy: 834, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23626
+ rotate: false
+ xy: 886, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23629
+ rotate: false
+ xy: 938, 737
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23632
+ rotate: false
+ xy: 158, 690
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23635
+ rotate: false
+ xy: 158, 643
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23638
+ rotate: false
+ xy: 158, 596
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23641
+ rotate: false
+ xy: 158, 549
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23643
+ rotate: false
+ xy: 158, 502
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+23646
+ rotate: false
+ xy: 158, 455
+ size: 50, 45
+ orig: 50, 45
+ offset: 0, 0
+ index: -1
+3947
+ rotate: false
+ xy: 990, 972
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3956
+ rotate: false
+ xy: 990, 925
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3961
+ rotate: false
+ xy: 990, 878
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3962
+ rotate: false
+ xy: 990, 831
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3967
+ rotate: false
+ xy: 990, 784
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3968
+ rotate: false
+ xy: 990, 737
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+3973
+ rotate: false
+ xy: 570, 586
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4000
+ rotate: false
+ xy: 570, 539
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4005
+ rotate: false
+ xy: 570, 492
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4010
+ rotate: false
+ xy: 554, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4011
+ rotate: false
+ xy: 554, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4016
+ rotate: false
+ xy: 554, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4017
+ rotate: false
+ xy: 554, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4022
+ rotate: false
+ xy: 554, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4027
+ rotate: false
+ xy: 554, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4032
+ rotate: false
+ xy: 554, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4033
+ rotate: false
+ xy: 554, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4038
+ rotate: false
+ xy: 554, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4039
+ rotate: false
+ xy: 581, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4044
+ rotate: false
+ xy: 590, 445
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4049
+ rotate: false
+ xy: 597, 586
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4054
+ rotate: false
+ xy: 597, 539
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4055
+ rotate: false
+ xy: 597, 492
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4060
+ rotate: false
+ xy: 606, 690
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4061
+ rotate: false
+ xy: 606, 643
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4066
+ rotate: false
+ xy: 581, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4087
+ rotate: false
+ xy: 581, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4092
+ rotate: false
+ xy: 581, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4093
+ rotate: false
+ xy: 581, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4098
+ rotate: false
+ xy: 581, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4099
+ rotate: false
+ xy: 581, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4104
+ rotate: false
+ xy: 581, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4109
+ rotate: false
+ xy: 581, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4114
+ rotate: false
+ xy: 608, 398
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4115
+ rotate: false
+ xy: 617, 445
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4120
+ rotate: false
+ xy: 624, 596
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4121
+ rotate: false
+ xy: 633, 690
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4126
+ rotate: false
+ xy: 633, 643
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4135
+ rotate: false
+ xy: 624, 549
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4140
+ rotate: false
+ xy: 624, 502
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4141
+ rotate: false
+ xy: 608, 351
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4146
+ rotate: false
+ xy: 608, 304
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4147
+ rotate: false
+ xy: 608, 257
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4152
+ rotate: false
+ xy: 608, 210
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4157
+ rotate: false
+ xy: 608, 163
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4162
+ rotate: false
+ xy: 608, 116
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4163
+ rotate: false
+ xy: 608, 69
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4168
+ rotate: false
+ xy: 608, 22
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4169
+ rotate: false
+ xy: 635, 398
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4174
+ rotate: false
+ xy: 644, 455
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4179
+ rotate: false
+ xy: 651, 596
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4184
+ rotate: false
+ xy: 660, 690
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4185
+ rotate: false
+ xy: 660, 643
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4190
+ rotate: false
+ xy: 651, 549
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4191
+ rotate: false
+ xy: 651, 502
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4196
+ rotate: false
+ xy: 635, 351
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4201
+ rotate: false
+ xy: 635, 304
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4206
+ rotate: false
+ xy: 635, 257
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4207
+ rotate: false
+ xy: 635, 210
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4212
+ rotate: false
+ xy: 635, 163
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4213
+ rotate: false
+ xy: 635, 116
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4218
+ rotate: false
+ xy: 635, 69
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4223
+ rotate: false
+ xy: 635, 22
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4228
+ rotate: false
+ xy: 662, 408
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4229
+ rotate: false
+ xy: 671, 455
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4234
+ rotate: false
+ xy: 678, 596
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4235
+ rotate: false
+ xy: 687, 690
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4240
+ rotate: false
+ xy: 687, 643
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4245
+ rotate: false
+ xy: 678, 549
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4250
+ rotate: false
+ xy: 678, 502
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4251
+ rotate: false
+ xy: 662, 361
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4257
+ rotate: false
+ xy: 662, 314
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4262
+ rotate: false
+ xy: 662, 267
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4267
+ rotate: false
+ xy: 662, 220
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4272
+ rotate: false
+ xy: 662, 173
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4273
+ rotate: false
+ xy: 662, 126
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4278
+ rotate: false
+ xy: 662, 79
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4279
+ rotate: false
+ xy: 662, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4284
+ rotate: false
+ xy: 689, 408
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4289
+ rotate: false
+ xy: 698, 455
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4294
+ rotate: false
+ xy: 705, 596
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4295
+ rotate: false
+ xy: 714, 690
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4300
+ rotate: false
+ xy: 714, 643
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4301
+ rotate: false
+ xy: 705, 549
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4306
+ rotate: false
+ xy: 705, 502
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4834
+ rotate: false
+ xy: 689, 361
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4839
+ rotate: false
+ xy: 689, 314
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4840
+ rotate: false
+ xy: 689, 267
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4845
+ rotate: false
+ xy: 689, 220
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4846
+ rotate: false
+ xy: 689, 173
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+4851
+ rotate: false
+ xy: 689, 126
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5000
+ rotate: false
+ xy: 689, 79
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5005
+ rotate: false
+ xy: 689, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5006
+ rotate: false
+ xy: 716, 408
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5011
+ rotate: false
+ xy: 725, 455
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5012
+ rotate: false
+ xy: 732, 596
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5017
+ rotate: false
+ xy: 741, 690
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5030
+ rotate: false
+ xy: 741, 643
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5035
+ rotate: false
+ xy: 732, 549
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5036
+ rotate: false
+ xy: 732, 502
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5041
+ rotate: false
+ xy: 716, 361
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5042
+ rotate: false
+ xy: 716, 314
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5047
+ rotate: false
+ xy: 716, 267
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5060
+ rotate: false
+ xy: 716, 220
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5065
+ rotate: false
+ xy: 716, 173
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5066
+ rotate: false
+ xy: 716, 126
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5071
+ rotate: false
+ xy: 716, 79
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5072
+ rotate: false
+ xy: 716, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5077
+ rotate: false
+ xy: 743, 408
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5090
+ rotate: false
+ xy: 752, 455
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5095
+ rotate: false
+ xy: 759, 596
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5096
+ rotate: false
+ xy: 768, 690
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5101
+ rotate: false
+ xy: 768, 643
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5102
+ rotate: false
+ xy: 759, 549
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5107
+ rotate: false
+ xy: 759, 502
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5120
+ rotate: false
+ xy: 743, 361
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5125
+ rotate: false
+ xy: 743, 314
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5126
+ rotate: false
+ xy: 743, 267
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5131
+ rotate: false
+ xy: 743, 220
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5132
+ rotate: false
+ xy: 743, 173
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5137
+ rotate: false
+ xy: 743, 126
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5150
+ rotate: false
+ xy: 743, 79
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5155
+ rotate: false
+ xy: 743, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5156
+ rotate: false
+ xy: 770, 408
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5161
+ rotate: false
+ xy: 779, 455
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5162
+ rotate: false
+ xy: 786, 596
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5167
+ rotate: false
+ xy: 795, 690
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5180
+ rotate: false
+ xy: 795, 643
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5185
+ rotate: false
+ xy: 786, 549
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5186
+ rotate: false
+ xy: 786, 502
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5191
+ rotate: false
+ xy: 797, 408
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5192
+ rotate: false
+ xy: 806, 455
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5197
+ rotate: false
+ xy: 813, 596
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5210
+ rotate: false
+ xy: 822, 690
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5215
+ rotate: false
+ xy: 822, 643
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5216
+ rotate: false
+ xy: 813, 549
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5221
+ rotate: false
+ xy: 813, 502
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5222
+ rotate: false
+ xy: 824, 408
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5227
+ rotate: false
+ xy: 833, 455
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5240
+ rotate: false
+ xy: 840, 596
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5245
+ rotate: false
+ xy: 849, 690
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5246
+ rotate: false
+ xy: 849, 643
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5251
+ rotate: false
+ xy: 840, 549
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5252
+ rotate: false
+ xy: 840, 502
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5257
+ rotate: false
+ xy: 851, 408
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5270
+ rotate: false
+ xy: 860, 455
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5275
+ rotate: false
+ xy: 867, 596
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5276
+ rotate: false
+ xy: 876, 690
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5281
+ rotate: false
+ xy: 876, 643
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5282
+ rotate: false
+ xy: 867, 549
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5287
+ rotate: false
+ xy: 867, 502
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5300
+ rotate: false
+ xy: 878, 408
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5305
+ rotate: false
+ xy: 887, 455
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5306
+ rotate: false
+ xy: 894, 596
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5311
+ rotate: false
+ xy: 903, 690
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5312
+ rotate: false
+ xy: 903, 643
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5317
+ rotate: false
+ xy: 894, 549
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5327
+ rotate: false
+ xy: 894, 502
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5332
+ rotate: false
+ xy: 905, 408
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5333
+ rotate: false
+ xy: 914, 455
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5338
+ rotate: false
+ xy: 921, 596
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5339
+ rotate: false
+ xy: 930, 690
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5344
+ rotate: false
+ xy: 930, 643
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5360
+ rotate: false
+ xy: 921, 549
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5365
+ rotate: false
+ xy: 921, 502
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5366
+ rotate: false
+ xy: 941, 455
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5371
+ rotate: false
+ xy: 948, 596
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5372
+ rotate: false
+ xy: 957, 690
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5377
+ rotate: false
+ xy: 957, 643
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5390
+ rotate: false
+ xy: 948, 549
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5395
+ rotate: false
+ xy: 948, 502
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5396
+ rotate: false
+ xy: 968, 455
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5401
+ rotate: false
+ xy: 975, 596
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5402
+ rotate: false
+ xy: 984, 690
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5407
+ rotate: false
+ xy: 984, 643
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5420
+ rotate: false
+ xy: 975, 549
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5425
+ rotate: false
+ xy: 975, 502
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5426
+ rotate: false
+ xy: 995, 440
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5431
+ rotate: false
+ xy: 932, 408
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5432
+ rotate: false
+ xy: 959, 408
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5437
+ rotate: false
+ xy: 986, 393
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5450
+ rotate: false
+ xy: 770, 361
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5455
+ rotate: false
+ xy: 797, 361
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5456
+ rotate: false
+ xy: 824, 361
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5461
+ rotate: false
+ xy: 851, 361
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5462
+ rotate: false
+ xy: 878, 361
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5467
+ rotate: false
+ xy: 905, 361
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5504
+ rotate: false
+ xy: 932, 361
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5509
+ rotate: false
+ xy: 959, 361
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5510
+ rotate: false
+ xy: 986, 346
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5515
+ rotate: false
+ xy: 770, 314
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5516
+ rotate: false
+ xy: 797, 314
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5521
+ rotate: false
+ xy: 824, 314
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5530
+ rotate: false
+ xy: 851, 314
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5535
+ rotate: false
+ xy: 878, 314
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5536
+ rotate: false
+ xy: 905, 314
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5541
+ rotate: false
+ xy: 932, 314
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5542
+ rotate: false
+ xy: 959, 314
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5547
+ rotate: false
+ xy: 986, 299
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5557
+ rotate: false
+ xy: 770, 267
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5562
+ rotate: false
+ xy: 797, 267
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5563
+ rotate: false
+ xy: 824, 267
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5568
+ rotate: false
+ xy: 851, 267
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5569
+ rotate: false
+ xy: 878, 267
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5574
+ rotate: false
+ xy: 905, 267
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5956
+ rotate: false
+ xy: 932, 267
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5961
+ rotate: false
+ xy: 959, 267
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5962
+ rotate: false
+ xy: 986, 252
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5967
+ rotate: false
+ xy: 770, 220
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5968
+ rotate: false
+ xy: 797, 220
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+5973
+ rotate: false
+ xy: 824, 220
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+6758
+ rotate: false
+ xy: 851, 220
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+6763
+ rotate: false
+ xy: 878, 220
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+6765
+ rotate: false
+ xy: 905, 220
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+6770
+ rotate: false
+ xy: 932, 220
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+6772
+ rotate: false
+ xy: 959, 220
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+6778
+ rotate: false
+ xy: 986, 205
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+6968
+ rotate: false
+ xy: 770, 173
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+6973
+ rotate: false
+ xy: 797, 173
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+6974
+ rotate: false
+ xy: 824, 173
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+6979
+ rotate: false
+ xy: 851, 173
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+6980
+ rotate: false
+ xy: 878, 173
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+6985
+ rotate: false
+ xy: 905, 173
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9530
+ rotate: false
+ xy: 932, 173
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9535
+ rotate: false
+ xy: 959, 173
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9536
+ rotate: false
+ xy: 986, 158
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9541
+ rotate: false
+ xy: 770, 126
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9542
+ rotate: false
+ xy: 770, 79
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9547
+ rotate: false
+ xy: 770, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9582
+ rotate: false
+ xy: 797, 126
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15655
+ rotate: false
+ xy: 797, 126
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9587
+ rotate: false
+ xy: 824, 126
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15660
+ rotate: false
+ xy: 824, 126
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9588
+ rotate: false
+ xy: 851, 126
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15661
+ rotate: false
+ xy: 851, 126
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9593
+ rotate: false
+ xy: 878, 126
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15666
+ rotate: false
+ xy: 878, 126
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9594
+ rotate: false
+ xy: 905, 126
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9599
+ rotate: false
+ xy: 932, 126
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9633
+ rotate: false
+ xy: 959, 126
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9638
+ rotate: false
+ xy: 986, 111
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9639
+ rotate: false
+ xy: 797, 79
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9644
+ rotate: false
+ xy: 797, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9645
+ rotate: false
+ xy: 824, 79
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9650
+ rotate: false
+ xy: 824, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9660
+ rotate: false
+ xy: 851, 79
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15736
+ rotate: false
+ xy: 851, 79
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9665
+ rotate: false
+ xy: 878, 79
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15741
+ rotate: false
+ xy: 878, 79
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9666
+ rotate: false
+ xy: 905, 79
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15742
+ rotate: false
+ xy: 905, 79
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9671
+ rotate: false
+ xy: 932, 79
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15747
+ rotate: false
+ xy: 932, 79
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9672
+ rotate: false
+ xy: 959, 79
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9677
+ rotate: false
+ xy: 986, 64
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9687
+ rotate: false
+ xy: 851, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15574
+ rotate: false
+ xy: 851, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9692
+ rotate: false
+ xy: 878, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15579
+ rotate: false
+ xy: 878, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9693
+ rotate: false
+ xy: 905, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15580
+ rotate: false
+ xy: 905, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9698
+ rotate: false
+ xy: 932, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15585
+ rotate: false
+ xy: 932, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9699
+ rotate: false
+ xy: 959, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15586
+ rotate: false
+ xy: 959, 32
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9704
+ rotate: false
+ xy: 986, 17
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15591
+ rotate: false
+ xy: 986, 17
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+
+images103.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+10064
+ rotate: false
+ xy: 164, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10069
+ rotate: false
+ xy: 191, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10070
+ rotate: false
+ xy: 218, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10075
+ rotate: false
+ xy: 2, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10076
+ rotate: false
+ xy: 29, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10081
+ rotate: false
+ xy: 56, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10090
+ rotate: false
+ xy: 83, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10095
+ rotate: false
+ xy: 110, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10096
+ rotate: false
+ xy: 137, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10101
+ rotate: false
+ xy: 164, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10102
+ rotate: false
+ xy: 191, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10107
+ rotate: false
+ xy: 218, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10116
+ rotate: false
+ xy: 245, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10121
+ rotate: false
+ xy: 2, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10122
+ rotate: false
+ xy: 29, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10127
+ rotate: false
+ xy: 56, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10128
+ rotate: false
+ xy: 83, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10133
+ rotate: false
+ xy: 110, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10142
+ rotate: false
+ xy: 137, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10147
+ rotate: false
+ xy: 164, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10148
+ rotate: false
+ xy: 191, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10153
+ rotate: false
+ xy: 218, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10154
+ rotate: false
+ xy: 245, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10159
+ rotate: false
+ xy: 272, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10168
+ rotate: false
+ xy: 2, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10173
+ rotate: false
+ xy: 29, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10174
+ rotate: false
+ xy: 56, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10179
+ rotate: false
+ xy: 83, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10180
+ rotate: false
+ xy: 110, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10185
+ rotate: false
+ xy: 137, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10246
+ rotate: false
+ xy: 164, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10251
+ rotate: false
+ xy: 191, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10252
+ rotate: false
+ xy: 218, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10258
+ rotate: false
+ xy: 245, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10263
+ rotate: false
+ xy: 272, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10272
+ rotate: false
+ xy: 299, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10277
+ rotate: false
+ xy: 2, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10278
+ rotate: false
+ xy: 29, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10283
+ rotate: false
+ xy: 56, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10284
+ rotate: false
+ xy: 83, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10289
+ rotate: false
+ xy: 110, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10298
+ rotate: false
+ xy: 137, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10303
+ rotate: false
+ xy: 164, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10304
+ rotate: false
+ xy: 191, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10309
+ rotate: false
+ xy: 218, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10310
+ rotate: false
+ xy: 245, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10315
+ rotate: false
+ xy: 272, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10506
+ rotate: false
+ xy: 299, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10511
+ rotate: false
+ xy: 326, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10512
+ rotate: false
+ xy: 2, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10517
+ rotate: false
+ xy: 29, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10518
+ rotate: false
+ xy: 56, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10523
+ rotate: false
+ xy: 83, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10532
+ rotate: false
+ xy: 110, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10537
+ rotate: false
+ xy: 137, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10538
+ rotate: false
+ xy: 164, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10543
+ rotate: false
+ xy: 191, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10544
+ rotate: false
+ xy: 218, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10549
+ rotate: false
+ xy: 245, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10558
+ rotate: false
+ xy: 272, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10563
+ rotate: false
+ xy: 299, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10564
+ rotate: false
+ xy: 326, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10569
+ rotate: false
+ xy: 353, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10570
+ rotate: false
+ xy: 2, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10575
+ rotate: false
+ xy: 29, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10584
+ rotate: false
+ xy: 56, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10589
+ rotate: false
+ xy: 83, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10590
+ rotate: false
+ xy: 110, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10595
+ rotate: false
+ xy: 137, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10596
+ rotate: false
+ xy: 164, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10601
+ rotate: false
+ xy: 191, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10610
+ rotate: false
+ xy: 218, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10615
+ rotate: false
+ xy: 245, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10616
+ rotate: false
+ xy: 272, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10621
+ rotate: false
+ xy: 299, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10622
+ rotate: false
+ xy: 326, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10627
+ rotate: false
+ xy: 353, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10636
+ rotate: false
+ xy: 380, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10641
+ rotate: false
+ xy: 2, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10642
+ rotate: false
+ xy: 29, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10647
+ rotate: false
+ xy: 56, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10648
+ rotate: false
+ xy: 83, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10653
+ rotate: false
+ xy: 110, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10662
+ rotate: false
+ xy: 137, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10667
+ rotate: false
+ xy: 164, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10668
+ rotate: false
+ xy: 191, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10673
+ rotate: false
+ xy: 218, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10674
+ rotate: false
+ xy: 245, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10679
+ rotate: false
+ xy: 272, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10688
+ rotate: false
+ xy: 299, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10693
+ rotate: false
+ xy: 326, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10694
+ rotate: false
+ xy: 353, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10699
+ rotate: false
+ xy: 380, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10700
+ rotate: false
+ xy: 407, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10705
+ rotate: false
+ xy: 2, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10714
+ rotate: false
+ xy: 29, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10719
+ rotate: false
+ xy: 56, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10720
+ rotate: false
+ xy: 83, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10725
+ rotate: false
+ xy: 110, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10726
+ rotate: false
+ xy: 137, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10731
+ rotate: false
+ xy: 164, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10740
+ rotate: false
+ xy: 191, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10745
+ rotate: false
+ xy: 218, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10746
+ rotate: false
+ xy: 245, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10751
+ rotate: false
+ xy: 272, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10752
+ rotate: false
+ xy: 299, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10757
+ rotate: false
+ xy: 326, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10790
+ rotate: false
+ xy: 353, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10795
+ rotate: false
+ xy: 380, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10796
+ rotate: false
+ xy: 407, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10801
+ rotate: false
+ xy: 434, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10802
+ rotate: false
+ xy: 2, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10807
+ rotate: false
+ xy: 29, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10816
+ rotate: false
+ xy: 56, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10821
+ rotate: false
+ xy: 83, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10822
+ rotate: false
+ xy: 110, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10827
+ rotate: false
+ xy: 137, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10828
+ rotate: false
+ xy: 164, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10833
+ rotate: false
+ xy: 191, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10842
+ rotate: false
+ xy: 218, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10847
+ rotate: false
+ xy: 245, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10848
+ rotate: false
+ xy: 272, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10853
+ rotate: false
+ xy: 299, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10854
+ rotate: false
+ xy: 326, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10859
+ rotate: false
+ xy: 353, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10893
+ rotate: false
+ xy: 380, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10898
+ rotate: false
+ xy: 407, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10899
+ rotate: false
+ xy: 434, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10904
+ rotate: false
+ xy: 461, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10905
+ rotate: false
+ xy: 2, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10910
+ rotate: false
+ xy: 29, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10919
+ rotate: false
+ xy: 56, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10924
+ rotate: false
+ xy: 83, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10925
+ rotate: false
+ xy: 110, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10930
+ rotate: false
+ xy: 137, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10931
+ rotate: false
+ xy: 164, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10936
+ rotate: false
+ xy: 191, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10945
+ rotate: false
+ xy: 218, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10950
+ rotate: false
+ xy: 245, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10951
+ rotate: false
+ xy: 272, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10956
+ rotate: false
+ xy: 299, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10957
+ rotate: false
+ xy: 326, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10962
+ rotate: false
+ xy: 353, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10971
+ rotate: false
+ xy: 380, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10976
+ rotate: false
+ xy: 407, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10977
+ rotate: false
+ xy: 434, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10982
+ rotate: false
+ xy: 461, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10983
+ rotate: false
+ xy: 488, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10988
+ rotate: false
+ xy: 2, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+10997
+ rotate: false
+ xy: 29, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11002
+ rotate: false
+ xy: 56, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11003
+ rotate: false
+ xy: 83, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11008
+ rotate: false
+ xy: 110, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11009
+ rotate: false
+ xy: 137, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11014
+ rotate: false
+ xy: 164, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11023
+ rotate: false
+ xy: 191, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11028
+ rotate: false
+ xy: 218, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11029
+ rotate: false
+ xy: 245, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11034
+ rotate: false
+ xy: 272, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11035
+ rotate: false
+ xy: 299, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11040
+ rotate: false
+ xy: 326, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11049
+ rotate: false
+ xy: 353, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11054
+ rotate: false
+ xy: 380, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11055
+ rotate: false
+ xy: 407, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11060
+ rotate: false
+ xy: 434, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11061
+ rotate: false
+ xy: 461, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11066
+ rotate: false
+ xy: 488, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11075
+ rotate: false
+ xy: 515, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11080
+ rotate: false
+ xy: 2, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11081
+ rotate: false
+ xy: 29, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11086
+ rotate: false
+ xy: 56, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11087
+ rotate: false
+ xy: 83, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11092
+ rotate: false
+ xy: 110, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11101
+ rotate: false
+ xy: 137, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11106
+ rotate: false
+ xy: 164, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11107
+ rotate: false
+ xy: 191, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11112
+ rotate: false
+ xy: 218, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11113
+ rotate: false
+ xy: 245, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11118
+ rotate: false
+ xy: 272, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11127
+ rotate: false
+ xy: 299, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11132
+ rotate: false
+ xy: 326, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11133
+ rotate: false
+ xy: 353, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11138
+ rotate: false
+ xy: 380, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11139
+ rotate: false
+ xy: 407, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11144
+ rotate: false
+ xy: 434, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11153
+ rotate: false
+ xy: 461, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11158
+ rotate: false
+ xy: 488, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11159
+ rotate: false
+ xy: 515, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11164
+ rotate: false
+ xy: 542, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11165
+ rotate: false
+ xy: 29, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11170
+ rotate: false
+ xy: 56, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11179
+ rotate: false
+ xy: 83, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11184
+ rotate: false
+ xy: 110, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11185
+ rotate: false
+ xy: 137, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11190
+ rotate: false
+ xy: 164, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11191
+ rotate: false
+ xy: 191, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11196
+ rotate: false
+ xy: 218, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11205
+ rotate: false
+ xy: 245, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11210
+ rotate: false
+ xy: 272, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11211
+ rotate: false
+ xy: 299, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11216
+ rotate: false
+ xy: 326, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11217
+ rotate: false
+ xy: 353, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11222
+ rotate: false
+ xy: 380, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11231
+ rotate: false
+ xy: 407, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11236
+ rotate: false
+ xy: 434, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11237
+ rotate: false
+ xy: 461, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11242
+ rotate: false
+ xy: 488, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11243
+ rotate: false
+ xy: 515, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11248
+ rotate: false
+ xy: 542, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11257
+ rotate: false
+ xy: 569, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11262
+ rotate: false
+ xy: 56, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11263
+ rotate: false
+ xy: 83, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11268
+ rotate: false
+ xy: 110, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11269
+ rotate: false
+ xy: 137, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11274
+ rotate: false
+ xy: 164, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11283
+ rotate: false
+ xy: 191, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11288
+ rotate: false
+ xy: 218, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11289
+ rotate: false
+ xy: 245, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11294
+ rotate: false
+ xy: 272, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11295
+ rotate: false
+ xy: 299, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11300
+ rotate: false
+ xy: 326, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11309
+ rotate: false
+ xy: 353, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11314
+ rotate: false
+ xy: 380, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11315
+ rotate: false
+ xy: 407, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11320
+ rotate: false
+ xy: 434, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11321
+ rotate: false
+ xy: 461, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11326
+ rotate: false
+ xy: 488, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11335
+ rotate: false
+ xy: 515, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11340
+ rotate: false
+ xy: 542, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11341
+ rotate: false
+ xy: 569, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11346
+ rotate: false
+ xy: 596, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11347
+ rotate: false
+ xy: 83, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11352
+ rotate: false
+ xy: 110, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11361
+ rotate: false
+ xy: 137, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11366
+ rotate: false
+ xy: 164, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11367
+ rotate: false
+ xy: 191, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11372
+ rotate: false
+ xy: 218, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11373
+ rotate: false
+ xy: 245, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11378
+ rotate: false
+ xy: 272, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11387
+ rotate: false
+ xy: 299, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11392
+ rotate: false
+ xy: 326, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11393
+ rotate: false
+ xy: 353, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11398
+ rotate: false
+ xy: 380, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11399
+ rotate: false
+ xy: 407, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11404
+ rotate: false
+ xy: 434, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11413
+ rotate: false
+ xy: 461, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11418
+ rotate: false
+ xy: 488, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11419
+ rotate: false
+ xy: 515, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11424
+ rotate: false
+ xy: 542, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11425
+ rotate: false
+ xy: 569, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11430
+ rotate: false
+ xy: 596, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11439
+ rotate: false
+ xy: 623, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11444
+ rotate: false
+ xy: 110, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11445
+ rotate: false
+ xy: 137, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11450
+ rotate: false
+ xy: 164, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11451
+ rotate: false
+ xy: 191, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11456
+ rotate: false
+ xy: 218, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11465
+ rotate: false
+ xy: 245, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11470
+ rotate: false
+ xy: 272, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11471
+ rotate: false
+ xy: 299, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11476
+ rotate: false
+ xy: 326, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11477
+ rotate: false
+ xy: 353, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11482
+ rotate: false
+ xy: 380, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11491
+ rotate: false
+ xy: 407, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11496
+ rotate: false
+ xy: 434, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11497
+ rotate: false
+ xy: 461, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11502
+ rotate: false
+ xy: 488, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11503
+ rotate: false
+ xy: 515, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11508
+ rotate: false
+ xy: 542, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11517
+ rotate: false
+ xy: 569, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11522
+ rotate: false
+ xy: 596, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11523
+ rotate: false
+ xy: 623, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11528
+ rotate: false
+ xy: 650, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11529
+ rotate: false
+ xy: 137, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11534
+ rotate: false
+ xy: 164, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11543
+ rotate: false
+ xy: 191, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11548
+ rotate: false
+ xy: 218, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11549
+ rotate: false
+ xy: 245, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11554
+ rotate: false
+ xy: 272, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11555
+ rotate: false
+ xy: 299, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11560
+ rotate: false
+ xy: 326, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11569
+ rotate: false
+ xy: 353, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11574
+ rotate: false
+ xy: 380, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11575
+ rotate: false
+ xy: 407, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11580
+ rotate: false
+ xy: 434, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11581
+ rotate: false
+ xy: 461, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11586
+ rotate: false
+ xy: 488, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11595
+ rotate: false
+ xy: 515, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11600
+ rotate: false
+ xy: 542, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11601
+ rotate: false
+ xy: 569, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11606
+ rotate: false
+ xy: 596, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11607
+ rotate: false
+ xy: 623, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11612
+ rotate: false
+ xy: 650, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11621
+ rotate: false
+ xy: 677, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11626
+ rotate: false
+ xy: 164, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11627
+ rotate: false
+ xy: 191, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11632
+ rotate: false
+ xy: 218, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11633
+ rotate: false
+ xy: 245, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11638
+ rotate: false
+ xy: 272, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11647
+ rotate: false
+ xy: 299, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11652
+ rotate: false
+ xy: 326, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11653
+ rotate: false
+ xy: 353, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11658
+ rotate: false
+ xy: 380, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11659
+ rotate: false
+ xy: 407, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11664
+ rotate: false
+ xy: 434, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11673
+ rotate: false
+ xy: 461, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11678
+ rotate: false
+ xy: 488, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11679
+ rotate: false
+ xy: 515, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11684
+ rotate: false
+ xy: 542, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11685
+ rotate: false
+ xy: 569, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11690
+ rotate: false
+ xy: 596, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11699
+ rotate: false
+ xy: 623, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11704
+ rotate: false
+ xy: 650, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11705
+ rotate: false
+ xy: 677, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11710
+ rotate: false
+ xy: 704, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11711
+ rotate: false
+ xy: 191, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11716
+ rotate: false
+ xy: 218, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11725
+ rotate: false
+ xy: 245, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11730
+ rotate: false
+ xy: 272, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11731
+ rotate: false
+ xy: 299, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11736
+ rotate: false
+ xy: 326, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11737
+ rotate: false
+ xy: 353, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11742
+ rotate: false
+ xy: 380, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11751
+ rotate: false
+ xy: 407, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11756
+ rotate: false
+ xy: 434, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11757
+ rotate: false
+ xy: 461, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11762
+ rotate: false
+ xy: 488, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11763
+ rotate: false
+ xy: 515, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11768
+ rotate: false
+ xy: 542, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11777
+ rotate: false
+ xy: 569, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11782
+ rotate: false
+ xy: 596, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11783
+ rotate: false
+ xy: 623, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11788
+ rotate: false
+ xy: 650, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11789
+ rotate: false
+ xy: 677, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11794
+ rotate: false
+ xy: 704, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11803
+ rotate: false
+ xy: 731, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11808
+ rotate: false
+ xy: 218, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11809
+ rotate: false
+ xy: 245, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11814
+ rotate: false
+ xy: 272, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11815
+ rotate: false
+ xy: 299, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11820
+ rotate: false
+ xy: 326, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11829
+ rotate: false
+ xy: 353, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11834
+ rotate: false
+ xy: 380, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11835
+ rotate: false
+ xy: 407, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11840
+ rotate: false
+ xy: 434, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11841
+ rotate: false
+ xy: 461, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11846
+ rotate: false
+ xy: 488, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11855
+ rotate: false
+ xy: 515, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11860
+ rotate: false
+ xy: 542, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11861
+ rotate: false
+ xy: 569, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11866
+ rotate: false
+ xy: 596, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11867
+ rotate: false
+ xy: 623, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11872
+ rotate: false
+ xy: 650, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11917
+ rotate: false
+ xy: 677, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11922
+ rotate: false
+ xy: 704, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11923
+ rotate: false
+ xy: 731, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11928
+ rotate: false
+ xy: 758, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11929
+ rotate: false
+ xy: 245, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+11934
+ rotate: false
+ xy: 272, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12753
+ rotate: false
+ xy: 299, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12758
+ rotate: false
+ xy: 326, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12759
+ rotate: false
+ xy: 353, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12764
+ rotate: false
+ xy: 380, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12765
+ rotate: false
+ xy: 407, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12770
+ rotate: false
+ xy: 434, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12780
+ rotate: false
+ xy: 461, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12785
+ rotate: false
+ xy: 488, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12786
+ rotate: false
+ xy: 515, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12791
+ rotate: false
+ xy: 542, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12792
+ rotate: false
+ xy: 569, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12797
+ rotate: false
+ xy: 596, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12807
+ rotate: false
+ xy: 623, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12812
+ rotate: false
+ xy: 650, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12813
+ rotate: false
+ xy: 677, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12818
+ rotate: false
+ xy: 704, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12819
+ rotate: false
+ xy: 731, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12824
+ rotate: false
+ xy: 758, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12834
+ rotate: false
+ xy: 785, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12839
+ rotate: false
+ xy: 272, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12840
+ rotate: false
+ xy: 299, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12845
+ rotate: false
+ xy: 326, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12846
+ rotate: false
+ xy: 353, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12851
+ rotate: false
+ xy: 380, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12861
+ rotate: false
+ xy: 407, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12866
+ rotate: false
+ xy: 434, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12867
+ rotate: false
+ xy: 461, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12872
+ rotate: false
+ xy: 488, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12873
+ rotate: false
+ xy: 515, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12878
+ rotate: false
+ xy: 542, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12888
+ rotate: false
+ xy: 569, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12893
+ rotate: false
+ xy: 596, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12894
+ rotate: false
+ xy: 623, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12899
+ rotate: false
+ xy: 650, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12900
+ rotate: false
+ xy: 677, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12905
+ rotate: false
+ xy: 704, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12915
+ rotate: false
+ xy: 731, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12920
+ rotate: false
+ xy: 758, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12921
+ rotate: false
+ xy: 785, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12926
+ rotate: false
+ xy: 812, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12927
+ rotate: false
+ xy: 299, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12932
+ rotate: false
+ xy: 326, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12968
+ rotate: false
+ xy: 353, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12973
+ rotate: false
+ xy: 380, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12974
+ rotate: false
+ xy: 407, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12979
+ rotate: false
+ xy: 434, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12980
+ rotate: false
+ xy: 461, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+12985
+ rotate: false
+ xy: 488, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13256
+ rotate: false
+ xy: 515, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13261
+ rotate: false
+ xy: 542, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13262
+ rotate: false
+ xy: 569, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13267
+ rotate: false
+ xy: 596, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13268
+ rotate: false
+ xy: 623, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13273
+ rotate: false
+ xy: 650, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13283
+ rotate: false
+ xy: 677, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13288
+ rotate: false
+ xy: 704, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13289
+ rotate: false
+ xy: 731, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13294
+ rotate: false
+ xy: 758, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13295
+ rotate: false
+ xy: 785, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13300
+ rotate: false
+ xy: 812, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13309
+ rotate: false
+ xy: 839, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13314
+ rotate: false
+ xy: 326, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13315
+ rotate: false
+ xy: 353, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13320
+ rotate: false
+ xy: 380, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13321
+ rotate: false
+ xy: 407, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13326
+ rotate: false
+ xy: 434, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13335
+ rotate: false
+ xy: 461, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13340
+ rotate: false
+ xy: 488, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13341
+ rotate: false
+ xy: 515, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13347
+ rotate: false
+ xy: 542, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13352
+ rotate: false
+ xy: 569, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13361
+ rotate: false
+ xy: 596, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13366
+ rotate: false
+ xy: 623, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13367
+ rotate: false
+ xy: 650, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13372
+ rotate: false
+ xy: 677, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13373
+ rotate: false
+ xy: 704, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13378
+ rotate: false
+ xy: 731, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13563
+ rotate: false
+ xy: 758, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13568
+ rotate: false
+ xy: 785, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13569
+ rotate: false
+ xy: 812, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13574
+ rotate: false
+ xy: 839, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13575
+ rotate: false
+ xy: 866, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13580
+ rotate: false
+ xy: 353, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13591
+ rotate: false
+ xy: 380, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13596
+ rotate: false
+ xy: 407, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13597
+ rotate: false
+ xy: 434, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13602
+ rotate: false
+ xy: 461, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13603
+ rotate: false
+ xy: 488, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13608
+ rotate: false
+ xy: 515, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13617
+ rotate: false
+ xy: 542, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13622
+ rotate: false
+ xy: 569, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13623
+ rotate: false
+ xy: 596, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13628
+ rotate: false
+ xy: 623, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13629
+ rotate: false
+ xy: 650, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13634
+ rotate: false
+ xy: 677, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13644
+ rotate: false
+ xy: 704, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13649
+ rotate: false
+ xy: 731, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13650
+ rotate: false
+ xy: 758, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13655
+ rotate: false
+ xy: 785, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13656
+ rotate: false
+ xy: 812, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13661
+ rotate: false
+ xy: 839, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13671
+ rotate: false
+ xy: 866, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13676
+ rotate: false
+ xy: 893, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13677
+ rotate: false
+ xy: 380, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13682
+ rotate: false
+ xy: 407, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13683
+ rotate: false
+ xy: 434, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13688
+ rotate: false
+ xy: 461, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13698
+ rotate: false
+ xy: 488, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13703
+ rotate: false
+ xy: 515, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13704
+ rotate: false
+ xy: 542, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13709
+ rotate: false
+ xy: 569, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13710
+ rotate: false
+ xy: 596, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13715
+ rotate: false
+ xy: 623, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13725
+ rotate: false
+ xy: 650, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13730
+ rotate: false
+ xy: 677, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13731
+ rotate: false
+ xy: 704, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13736
+ rotate: false
+ xy: 731, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13737
+ rotate: false
+ xy: 758, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13742
+ rotate: false
+ xy: 785, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13751
+ rotate: false
+ xy: 812, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13756
+ rotate: false
+ xy: 839, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13757
+ rotate: false
+ xy: 866, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13762
+ rotate: false
+ xy: 893, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13763
+ rotate: false
+ xy: 920, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13768
+ rotate: false
+ xy: 407, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13778
+ rotate: false
+ xy: 434, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13783
+ rotate: false
+ xy: 461, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13784
+ rotate: false
+ xy: 488, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13789
+ rotate: false
+ xy: 515, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13790
+ rotate: false
+ xy: 542, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13795
+ rotate: false
+ xy: 569, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13805
+ rotate: false
+ xy: 596, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13810
+ rotate: false
+ xy: 623, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13811
+ rotate: false
+ xy: 650, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13816
+ rotate: false
+ xy: 677, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13817
+ rotate: false
+ xy: 704, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13822
+ rotate: false
+ xy: 731, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13832
+ rotate: false
+ xy: 758, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13837
+ rotate: false
+ xy: 785, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13838
+ rotate: false
+ xy: 812, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13843
+ rotate: false
+ xy: 839, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13844
+ rotate: false
+ xy: 866, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13849
+ rotate: false
+ xy: 893, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13859
+ rotate: false
+ xy: 920, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13864
+ rotate: false
+ xy: 947, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13865
+ rotate: false
+ xy: 434, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13870
+ rotate: false
+ xy: 461, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13871
+ rotate: false
+ xy: 488, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13876
+ rotate: false
+ xy: 515, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13886
+ rotate: false
+ xy: 542, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13891
+ rotate: false
+ xy: 569, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13892
+ rotate: false
+ xy: 596, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13897
+ rotate: false
+ xy: 623, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13898
+ rotate: false
+ xy: 650, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13903
+ rotate: false
+ xy: 677, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13926
+ rotate: false
+ xy: 704, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13931
+ rotate: false
+ xy: 731, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13932
+ rotate: false
+ xy: 758, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13937
+ rotate: false
+ xy: 785, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13938
+ rotate: false
+ xy: 812, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13943
+ rotate: false
+ xy: 839, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13964
+ rotate: false
+ xy: 866, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13969
+ rotate: false
+ xy: 893, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13970
+ rotate: false
+ xy: 920, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13975
+ rotate: false
+ xy: 947, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13976
+ rotate: false
+ xy: 974, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+13981
+ rotate: false
+ xy: 461, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14000
+ rotate: false
+ xy: 488, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14005
+ rotate: false
+ xy: 515, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14006
+ rotate: false
+ xy: 542, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14011
+ rotate: false
+ xy: 569, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14012
+ rotate: false
+ xy: 596, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14017
+ rotate: false
+ xy: 623, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14053
+ rotate: false
+ xy: 650, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14058
+ rotate: false
+ xy: 677, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14059
+ rotate: false
+ xy: 704, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14064
+ rotate: false
+ xy: 731, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14065
+ rotate: false
+ xy: 758, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14070
+ rotate: false
+ xy: 785, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14080
+ rotate: false
+ xy: 812, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14085
+ rotate: false
+ xy: 839, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14086
+ rotate: false
+ xy: 866, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14091
+ rotate: false
+ xy: 893, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14092
+ rotate: false
+ xy: 920, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14097
+ rotate: false
+ xy: 947, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14106
+ rotate: false
+ xy: 974, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14111
+ rotate: false
+ xy: 488, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14112
+ rotate: false
+ xy: 515, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14117
+ rotate: false
+ xy: 542, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14118
+ rotate: false
+ xy: 569, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14123
+ rotate: false
+ xy: 596, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14132
+ rotate: false
+ xy: 623, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14137
+ rotate: false
+ xy: 650, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14138
+ rotate: false
+ xy: 677, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14143
+ rotate: false
+ xy: 704, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14144
+ rotate: false
+ xy: 731, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14149
+ rotate: false
+ xy: 758, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14158
+ rotate: false
+ xy: 785, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14163
+ rotate: false
+ xy: 812, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14164
+ rotate: false
+ xy: 839, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14169
+ rotate: false
+ xy: 866, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14170
+ rotate: false
+ xy: 893, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14175
+ rotate: false
+ xy: 920, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14197
+ rotate: false
+ xy: 947, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14202
+ rotate: false
+ xy: 974, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14203
+ rotate: false
+ xy: 515, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14208
+ rotate: false
+ xy: 542, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14209
+ rotate: false
+ xy: 569, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14214
+ rotate: false
+ xy: 596, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14224
+ rotate: false
+ xy: 623, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14229
+ rotate: false
+ xy: 650, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14230
+ rotate: false
+ xy: 677, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14235
+ rotate: false
+ xy: 704, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14236
+ rotate: false
+ xy: 731, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14241
+ rotate: false
+ xy: 758, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14251
+ rotate: false
+ xy: 785, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14256
+ rotate: false
+ xy: 812, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14257
+ rotate: false
+ xy: 839, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14262
+ rotate: false
+ xy: 866, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14263
+ rotate: false
+ xy: 893, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14268
+ rotate: false
+ xy: 920, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14278
+ rotate: false
+ xy: 947, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14283
+ rotate: false
+ xy: 974, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14284
+ rotate: false
+ xy: 542, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14289
+ rotate: false
+ xy: 569, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14290
+ rotate: false
+ xy: 596, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14295
+ rotate: false
+ xy: 623, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14305
+ rotate: false
+ xy: 650, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14310
+ rotate: false
+ xy: 677, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14311
+ rotate: false
+ xy: 704, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14316
+ rotate: false
+ xy: 731, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14317
+ rotate: false
+ xy: 758, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14322
+ rotate: false
+ xy: 785, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14332
+ rotate: false
+ xy: 812, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14337
+ rotate: false
+ xy: 839, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14338
+ rotate: false
+ xy: 866, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14343
+ rotate: false
+ xy: 893, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14344
+ rotate: false
+ xy: 920, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14349
+ rotate: false
+ xy: 947, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14359
+ rotate: false
+ xy: 974, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14364
+ rotate: false
+ xy: 569, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14365
+ rotate: false
+ xy: 596, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14370
+ rotate: false
+ xy: 623, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14371
+ rotate: false
+ xy: 650, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14376
+ rotate: false
+ xy: 677, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14386
+ rotate: false
+ xy: 704, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14391
+ rotate: false
+ xy: 731, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14392
+ rotate: false
+ xy: 758, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14397
+ rotate: false
+ xy: 785, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14398
+ rotate: false
+ xy: 812, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14403
+ rotate: false
+ xy: 839, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14413
+ rotate: false
+ xy: 866, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14418
+ rotate: false
+ xy: 893, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14419
+ rotate: false
+ xy: 920, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14424
+ rotate: false
+ xy: 947, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14425
+ rotate: false
+ xy: 974, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14430
+ rotate: false
+ xy: 596, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14440
+ rotate: false
+ xy: 623, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14445
+ rotate: false
+ xy: 650, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14446
+ rotate: false
+ xy: 677, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14451
+ rotate: false
+ xy: 704, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14452
+ rotate: false
+ xy: 731, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14457
+ rotate: false
+ xy: 758, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14467
+ rotate: false
+ xy: 785, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14472
+ rotate: false
+ xy: 812, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14473
+ rotate: false
+ xy: 839, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14478
+ rotate: false
+ xy: 866, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14479
+ rotate: false
+ xy: 893, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14484
+ rotate: false
+ xy: 920, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14494
+ rotate: false
+ xy: 947, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14499
+ rotate: false
+ xy: 974, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14500
+ rotate: false
+ xy: 623, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14505
+ rotate: false
+ xy: 650, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14506
+ rotate: false
+ xy: 677, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14511
+ rotate: false
+ xy: 704, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14521
+ rotate: false
+ xy: 731, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14526
+ rotate: false
+ xy: 758, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14527
+ rotate: false
+ xy: 785, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14532
+ rotate: false
+ xy: 812, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14533
+ rotate: false
+ xy: 839, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14538
+ rotate: false
+ xy: 866, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14548
+ rotate: false
+ xy: 893, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14553
+ rotate: false
+ xy: 920, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14554
+ rotate: false
+ xy: 947, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14559
+ rotate: false
+ xy: 974, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14560
+ rotate: false
+ xy: 650, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14565
+ rotate: false
+ xy: 677, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14575
+ rotate: false
+ xy: 704, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14581
+ rotate: false
+ xy: 731, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14587
+ rotate: false
+ xy: 758, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14592
+ rotate: false
+ xy: 785, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14602
+ rotate: false
+ xy: 812, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14607
+ rotate: false
+ xy: 839, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14608
+ rotate: false
+ xy: 866, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14613
+ rotate: false
+ xy: 893, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14614
+ rotate: false
+ xy: 920, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14619
+ rotate: false
+ xy: 947, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14629
+ rotate: false
+ xy: 974, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14634
+ rotate: false
+ xy: 677, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14635
+ rotate: false
+ xy: 704, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14640
+ rotate: false
+ xy: 731, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14641
+ rotate: false
+ xy: 758, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14646
+ rotate: false
+ xy: 785, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14656
+ rotate: false
+ xy: 812, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14661
+ rotate: false
+ xy: 839, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14662
+ rotate: false
+ xy: 866, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14667
+ rotate: false
+ xy: 893, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14668
+ rotate: false
+ xy: 920, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14673
+ rotate: false
+ xy: 947, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14683
+ rotate: false
+ xy: 974, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14688
+ rotate: false
+ xy: 704, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14689
+ rotate: false
+ xy: 731, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14694
+ rotate: false
+ xy: 758, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14695
+ rotate: false
+ xy: 785, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14700
+ rotate: false
+ xy: 812, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14710
+ rotate: false
+ xy: 839, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14715
+ rotate: false
+ xy: 866, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14716
+ rotate: false
+ xy: 893, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14721
+ rotate: false
+ xy: 920, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14722
+ rotate: false
+ xy: 947, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14727
+ rotate: false
+ xy: 974, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14737
+ rotate: false
+ xy: 731, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14742
+ rotate: false
+ xy: 758, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14743
+ rotate: false
+ xy: 785, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14748
+ rotate: false
+ xy: 812, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14749
+ rotate: false
+ xy: 839, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14754
+ rotate: false
+ xy: 866, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14764
+ rotate: false
+ xy: 893, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14769
+ rotate: false
+ xy: 920, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14770
+ rotate: false
+ xy: 947, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14775
+ rotate: false
+ xy: 974, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14776
+ rotate: false
+ xy: 758, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14781
+ rotate: false
+ xy: 785, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14791
+ rotate: false
+ xy: 812, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14796
+ rotate: false
+ xy: 839, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14797
+ rotate: false
+ xy: 866, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14802
+ rotate: false
+ xy: 893, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14803
+ rotate: false
+ xy: 920, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14808
+ rotate: false
+ xy: 947, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14818
+ rotate: false
+ xy: 974, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14823
+ rotate: false
+ xy: 785, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14824
+ rotate: false
+ xy: 812, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14829
+ rotate: false
+ xy: 839, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14830
+ rotate: false
+ xy: 866, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14835
+ rotate: false
+ xy: 893, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14845
+ rotate: false
+ xy: 920, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14850
+ rotate: false
+ xy: 947, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14851
+ rotate: false
+ xy: 974, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14856
+ rotate: false
+ xy: 812, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14857
+ rotate: false
+ xy: 839, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14862
+ rotate: false
+ xy: 866, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14872
+ rotate: false
+ xy: 893, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14877
+ rotate: false
+ xy: 920, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14878
+ rotate: false
+ xy: 947, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14883
+ rotate: false
+ xy: 974, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14884
+ rotate: false
+ xy: 839, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14889
+ rotate: false
+ xy: 866, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14899
+ rotate: false
+ xy: 893, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14904
+ rotate: false
+ xy: 920, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14905
+ rotate: false
+ xy: 947, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14910
+ rotate: false
+ xy: 974, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14911
+ rotate: false
+ xy: 866, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14916
+ rotate: false
+ xy: 893, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14926
+ rotate: false
+ xy: 920, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14931
+ rotate: false
+ xy: 947, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14932
+ rotate: false
+ xy: 974, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14937
+ rotate: false
+ xy: 893, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14938
+ rotate: false
+ xy: 920, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14943
+ rotate: false
+ xy: 947, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14953
+ rotate: false
+ xy: 974, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14958
+ rotate: false
+ xy: 920, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14959
+ rotate: false
+ xy: 947, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14964
+ rotate: false
+ xy: 974, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14965
+ rotate: false
+ xy: 947, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14970
+ rotate: false
+ xy: 974, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14980
+ rotate: false
+ xy: 974, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22826
+ rotate: false
+ xy: 1001, 937
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+22829
+ rotate: false
+ xy: 1001, 885
+ size: 17, 50
+ orig: 17, 50
+ offset: 0, 0
+ index: -1
+9714
+ rotate: false
+ xy: 2, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9719
+ rotate: false
+ xy: 2, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9720
+ rotate: false
+ xy: 29, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9725
+ rotate: false
+ xy: 2, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9726
+ rotate: false
+ xy: 29, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9731
+ rotate: false
+ xy: 56, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9741
+ rotate: false
+ xy: 2, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9746
+ rotate: false
+ xy: 29, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9747
+ rotate: false
+ xy: 56, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9752
+ rotate: false
+ xy: 83, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9753
+ rotate: false
+ xy: 2, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9758
+ rotate: false
+ xy: 29, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9768
+ rotate: false
+ xy: 56, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9773
+ rotate: false
+ xy: 83, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9774
+ rotate: false
+ xy: 110, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9779
+ rotate: false
+ xy: 2, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9780
+ rotate: false
+ xy: 29, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9785
+ rotate: false
+ xy: 56, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9884
+ rotate: false
+ xy: 83, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9889
+ rotate: false
+ xy: 110, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9890
+ rotate: false
+ xy: 137, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9895
+ rotate: false
+ xy: 2, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9896
+ rotate: false
+ xy: 29, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9901
+ rotate: false
+ xy: 56, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9911
+ rotate: false
+ xy: 83, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9916
+ rotate: false
+ xy: 110, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9917
+ rotate: false
+ xy: 137, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9922
+ rotate: false
+ xy: 164, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9923
+ rotate: false
+ xy: 2, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9928
+ rotate: false
+ xy: 29, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9938
+ rotate: false
+ xy: 56, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9943
+ rotate: false
+ xy: 83, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9944
+ rotate: false
+ xy: 110, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9949
+ rotate: false
+ xy: 137, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9950
+ rotate: false
+ xy: 164, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9955
+ rotate: false
+ xy: 191, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9965
+ rotate: false
+ xy: 2, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9970
+ rotate: false
+ xy: 29, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9971
+ rotate: false
+ xy: 56, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9976
+ rotate: false
+ xy: 83, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9977
+ rotate: false
+ xy: 110, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+9982
+ rotate: false
+ xy: 137, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+
+images104.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+14985
+ rotate: false
+ xy: 2, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14986
+ rotate: false
+ xy: 2, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14991
+ rotate: false
+ xy: 29, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14992
+ rotate: false
+ xy: 2, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+14997
+ rotate: false
+ xy: 29, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15007
+ rotate: false
+ xy: 56, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15012
+ rotate: false
+ xy: 2, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15013
+ rotate: false
+ xy: 29, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15018
+ rotate: false
+ xy: 56, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15019
+ rotate: false
+ xy: 83, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15024
+ rotate: false
+ xy: 2, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15034
+ rotate: false
+ xy: 29, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15039
+ rotate: false
+ xy: 56, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15040
+ rotate: false
+ xy: 83, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15045
+ rotate: false
+ xy: 110, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15046
+ rotate: false
+ xy: 2, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15051
+ rotate: false
+ xy: 29, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15061
+ rotate: false
+ xy: 56, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15066
+ rotate: false
+ xy: 83, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15067
+ rotate: false
+ xy: 110, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15072
+ rotate: false
+ xy: 137, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15073
+ rotate: false
+ xy: 2, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15078
+ rotate: false
+ xy: 29, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15088
+ rotate: false
+ xy: 56, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15093
+ rotate: false
+ xy: 83, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15094
+ rotate: false
+ xy: 110, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15099
+ rotate: false
+ xy: 137, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15100
+ rotate: false
+ xy: 164, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15105
+ rotate: false
+ xy: 2, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15115
+ rotate: false
+ xy: 29, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15120
+ rotate: false
+ xy: 56, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15121
+ rotate: false
+ xy: 83, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15126
+ rotate: false
+ xy: 110, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15127
+ rotate: false
+ xy: 137, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15132
+ rotate: false
+ xy: 164, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15142
+ rotate: false
+ xy: 191, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15147
+ rotate: false
+ xy: 2, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15148
+ rotate: false
+ xy: 29, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15153
+ rotate: false
+ xy: 56, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15154
+ rotate: false
+ xy: 83, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15159
+ rotate: false
+ xy: 110, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15169
+ rotate: false
+ xy: 137, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15174
+ rotate: false
+ xy: 164, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15175
+ rotate: false
+ xy: 191, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15180
+ rotate: false
+ xy: 218, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15181
+ rotate: false
+ xy: 2, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15186
+ rotate: false
+ xy: 29, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15196
+ rotate: false
+ xy: 56, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15201
+ rotate: false
+ xy: 83, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15202
+ rotate: false
+ xy: 110, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15207
+ rotate: false
+ xy: 137, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15208
+ rotate: false
+ xy: 164, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15213
+ rotate: false
+ xy: 191, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15223
+ rotate: false
+ xy: 218, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15228
+ rotate: false
+ xy: 245, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15229
+ rotate: false
+ xy: 2, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15234
+ rotate: false
+ xy: 29, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15235
+ rotate: false
+ xy: 56, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15240
+ rotate: false
+ xy: 83, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15250
+ rotate: false
+ xy: 110, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15255
+ rotate: false
+ xy: 137, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15256
+ rotate: false
+ xy: 164, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15261
+ rotate: false
+ xy: 191, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15262
+ rotate: false
+ xy: 218, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15267
+ rotate: false
+ xy: 245, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15277
+ rotate: false
+ xy: 272, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15282
+ rotate: false
+ xy: 2, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15283
+ rotate: false
+ xy: 29, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15288
+ rotate: false
+ xy: 56, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15289
+ rotate: false
+ xy: 83, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15294
+ rotate: false
+ xy: 110, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15304
+ rotate: false
+ xy: 137, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15309
+ rotate: false
+ xy: 164, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15310
+ rotate: false
+ xy: 191, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15315
+ rotate: false
+ xy: 218, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15316
+ rotate: false
+ xy: 245, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15321
+ rotate: false
+ xy: 272, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15331
+ rotate: false
+ xy: 299, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15336
+ rotate: false
+ xy: 2, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15337
+ rotate: false
+ xy: 29, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15342
+ rotate: false
+ xy: 56, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15343
+ rotate: false
+ xy: 83, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15348
+ rotate: false
+ xy: 110, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15358
+ rotate: false
+ xy: 137, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15363
+ rotate: false
+ xy: 164, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15364
+ rotate: false
+ xy: 191, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15369
+ rotate: false
+ xy: 218, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15370
+ rotate: false
+ xy: 245, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15375
+ rotate: false
+ xy: 272, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15385
+ rotate: false
+ xy: 299, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15390
+ rotate: false
+ xy: 326, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15391
+ rotate: false
+ xy: 2, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15396
+ rotate: false
+ xy: 29, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15397
+ rotate: false
+ xy: 56, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15402
+ rotate: false
+ xy: 83, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15412
+ rotate: false
+ xy: 110, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15417
+ rotate: false
+ xy: 137, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15418
+ rotate: false
+ xy: 164, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15423
+ rotate: false
+ xy: 191, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15424
+ rotate: false
+ xy: 218, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15429
+ rotate: false
+ xy: 245, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15439
+ rotate: false
+ xy: 272, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15444
+ rotate: false
+ xy: 299, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15445
+ rotate: false
+ xy: 326, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15450
+ rotate: false
+ xy: 353, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15451
+ rotate: false
+ xy: 2, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15456
+ rotate: false
+ xy: 29, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15466
+ rotate: false
+ xy: 56, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15471
+ rotate: false
+ xy: 83, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15472
+ rotate: false
+ xy: 110, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15477
+ rotate: false
+ xy: 137, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15478
+ rotate: false
+ xy: 164, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15483
+ rotate: false
+ xy: 191, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15493
+ rotate: false
+ xy: 218, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15498
+ rotate: false
+ xy: 245, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15499
+ rotate: false
+ xy: 272, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15504
+ rotate: false
+ xy: 299, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15505
+ rotate: false
+ xy: 326, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15510
+ rotate: false
+ xy: 353, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15520
+ rotate: false
+ xy: 380, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15525
+ rotate: false
+ xy: 2, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15526
+ rotate: false
+ xy: 29, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15531
+ rotate: false
+ xy: 56, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15532
+ rotate: false
+ xy: 83, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15537
+ rotate: false
+ xy: 110, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15547
+ rotate: false
+ xy: 137, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15552
+ rotate: false
+ xy: 164, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15553
+ rotate: false
+ xy: 191, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15558
+ rotate: false
+ xy: 218, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15559
+ rotate: false
+ xy: 245, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15564
+ rotate: false
+ xy: 272, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15601
+ rotate: false
+ xy: 299, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15606
+ rotate: false
+ xy: 326, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15607
+ rotate: false
+ xy: 353, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15612
+ rotate: false
+ xy: 380, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15613
+ rotate: false
+ xy: 407, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15618
+ rotate: false
+ xy: 2, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15628
+ rotate: false
+ xy: 29, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15633
+ rotate: false
+ xy: 56, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15634
+ rotate: false
+ xy: 83, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15639
+ rotate: false
+ xy: 110, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15640
+ rotate: false
+ xy: 137, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15645
+ rotate: false
+ xy: 164, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15667
+ rotate: false
+ xy: 191, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15672
+ rotate: false
+ xy: 218, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15682
+ rotate: false
+ xy: 245, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15687
+ rotate: false
+ xy: 272, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15688
+ rotate: false
+ xy: 299, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15693
+ rotate: false
+ xy: 326, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15694
+ rotate: false
+ xy: 353, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15699
+ rotate: false
+ xy: 380, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15709
+ rotate: false
+ xy: 407, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15714
+ rotate: false
+ xy: 434, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15715
+ rotate: false
+ xy: 2, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15720
+ rotate: false
+ xy: 29, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15721
+ rotate: false
+ xy: 56, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15726
+ rotate: false
+ xy: 83, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15748
+ rotate: false
+ xy: 110, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15753
+ rotate: false
+ xy: 137, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15763
+ rotate: false
+ xy: 164, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15768
+ rotate: false
+ xy: 191, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15769
+ rotate: false
+ xy: 218, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15774
+ rotate: false
+ xy: 245, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15775
+ rotate: false
+ xy: 272, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15780
+ rotate: false
+ xy: 299, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15790
+ rotate: false
+ xy: 326, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15795
+ rotate: false
+ xy: 353, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15796
+ rotate: false
+ xy: 380, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15801
+ rotate: false
+ xy: 407, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15802
+ rotate: false
+ xy: 434, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15807
+ rotate: false
+ xy: 461, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15817
+ rotate: false
+ xy: 2, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15822
+ rotate: false
+ xy: 29, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15823
+ rotate: false
+ xy: 56, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15828
+ rotate: false
+ xy: 83, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15829
+ rotate: false
+ xy: 110, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15834
+ rotate: false
+ xy: 137, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15844
+ rotate: false
+ xy: 164, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15849
+ rotate: false
+ xy: 191, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15850
+ rotate: false
+ xy: 218, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15855
+ rotate: false
+ xy: 245, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15856
+ rotate: false
+ xy: 272, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15861
+ rotate: false
+ xy: 299, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15871
+ rotate: false
+ xy: 326, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15876
+ rotate: false
+ xy: 353, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15877
+ rotate: false
+ xy: 380, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15882
+ rotate: false
+ xy: 407, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15883
+ rotate: false
+ xy: 434, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15888
+ rotate: false
+ xy: 461, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15898
+ rotate: false
+ xy: 488, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15903
+ rotate: false
+ xy: 2, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15904
+ rotate: false
+ xy: 29, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15909
+ rotate: false
+ xy: 56, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15910
+ rotate: false
+ xy: 83, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15915
+ rotate: false
+ xy: 110, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15925
+ rotate: false
+ xy: 137, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15930
+ rotate: false
+ xy: 164, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15931
+ rotate: false
+ xy: 191, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15936
+ rotate: false
+ xy: 218, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15937
+ rotate: false
+ xy: 245, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15942
+ rotate: false
+ xy: 272, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15952
+ rotate: false
+ xy: 299, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15957
+ rotate: false
+ xy: 326, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15958
+ rotate: false
+ xy: 353, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15963
+ rotate: false
+ xy: 380, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15964
+ rotate: false
+ xy: 407, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15969
+ rotate: false
+ xy: 434, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15979
+ rotate: false
+ xy: 461, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15984
+ rotate: false
+ xy: 488, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15985
+ rotate: false
+ xy: 515, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15990
+ rotate: false
+ xy: 2, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15991
+ rotate: false
+ xy: 29, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+15996
+ rotate: false
+ xy: 56, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16006
+ rotate: false
+ xy: 83, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16011
+ rotate: false
+ xy: 110, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16012
+ rotate: false
+ xy: 137, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16017
+ rotate: false
+ xy: 164, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16018
+ rotate: false
+ xy: 191, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16023
+ rotate: false
+ xy: 218, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16033
+ rotate: false
+ xy: 245, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16038
+ rotate: false
+ xy: 272, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16039
+ rotate: false
+ xy: 299, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16044
+ rotate: false
+ xy: 326, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16045
+ rotate: false
+ xy: 353, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16050
+ rotate: false
+ xy: 380, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16060
+ rotate: false
+ xy: 407, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16065
+ rotate: false
+ xy: 434, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16066
+ rotate: false
+ xy: 461, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16071
+ rotate: false
+ xy: 488, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16072
+ rotate: false
+ xy: 515, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16077
+ rotate: false
+ xy: 542, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16087
+ rotate: false
+ xy: 29, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16092
+ rotate: false
+ xy: 56, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16093
+ rotate: false
+ xy: 83, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16098
+ rotate: false
+ xy: 110, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16099
+ rotate: false
+ xy: 137, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16104
+ rotate: false
+ xy: 164, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16114
+ rotate: false
+ xy: 191, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16119
+ rotate: false
+ xy: 218, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16120
+ rotate: false
+ xy: 245, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16125
+ rotate: false
+ xy: 272, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16126
+ rotate: false
+ xy: 299, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16131
+ rotate: false
+ xy: 326, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16141
+ rotate: false
+ xy: 353, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16146
+ rotate: false
+ xy: 380, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16147
+ rotate: false
+ xy: 407, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16152
+ rotate: false
+ xy: 434, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16153
+ rotate: false
+ xy: 461, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16158
+ rotate: false
+ xy: 488, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16168
+ rotate: false
+ xy: 515, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16173
+ rotate: false
+ xy: 542, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16174
+ rotate: false
+ xy: 569, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16179
+ rotate: false
+ xy: 56, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16180
+ rotate: false
+ xy: 83, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16185
+ rotate: false
+ xy: 110, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16195
+ rotate: false
+ xy: 137, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16200
+ rotate: false
+ xy: 164, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16201
+ rotate: false
+ xy: 191, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16206
+ rotate: false
+ xy: 218, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16207
+ rotate: false
+ xy: 245, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16212
+ rotate: false
+ xy: 272, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16222
+ rotate: false
+ xy: 299, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16227
+ rotate: false
+ xy: 326, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16228
+ rotate: false
+ xy: 353, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16233
+ rotate: false
+ xy: 380, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16234
+ rotate: false
+ xy: 407, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16239
+ rotate: false
+ xy: 434, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16249
+ rotate: false
+ xy: 461, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16254
+ rotate: false
+ xy: 488, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16255
+ rotate: false
+ xy: 515, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16260
+ rotate: false
+ xy: 542, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16261
+ rotate: false
+ xy: 569, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16266
+ rotate: false
+ xy: 596, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16276
+ rotate: false
+ xy: 83, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16281
+ rotate: false
+ xy: 110, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16282
+ rotate: false
+ xy: 137, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16287
+ rotate: false
+ xy: 164, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16288
+ rotate: false
+ xy: 191, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16293
+ rotate: false
+ xy: 218, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16303
+ rotate: false
+ xy: 245, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16308
+ rotate: false
+ xy: 272, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16309
+ rotate: false
+ xy: 299, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16314
+ rotate: false
+ xy: 326, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16315
+ rotate: false
+ xy: 353, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16320
+ rotate: false
+ xy: 380, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16330
+ rotate: false
+ xy: 407, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16335
+ rotate: false
+ xy: 434, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16336
+ rotate: false
+ xy: 461, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16341
+ rotate: false
+ xy: 488, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16342
+ rotate: false
+ xy: 515, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16347
+ rotate: false
+ xy: 542, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16357
+ rotate: false
+ xy: 569, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16362
+ rotate: false
+ xy: 596, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16363
+ rotate: false
+ xy: 623, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16368
+ rotate: false
+ xy: 110, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16369
+ rotate: false
+ xy: 137, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16374
+ rotate: false
+ xy: 164, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16384
+ rotate: false
+ xy: 191, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16389
+ rotate: false
+ xy: 218, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16390
+ rotate: false
+ xy: 245, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16395
+ rotate: false
+ xy: 272, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16396
+ rotate: false
+ xy: 299, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16401
+ rotate: false
+ xy: 326, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16411
+ rotate: false
+ xy: 353, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16416
+ rotate: false
+ xy: 380, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16417
+ rotate: false
+ xy: 407, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16422
+ rotate: false
+ xy: 434, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16423
+ rotate: false
+ xy: 461, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16428
+ rotate: false
+ xy: 488, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16438
+ rotate: false
+ xy: 515, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16443
+ rotate: false
+ xy: 542, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16444
+ rotate: false
+ xy: 569, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16449
+ rotate: false
+ xy: 596, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16450
+ rotate: false
+ xy: 623, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16455
+ rotate: false
+ xy: 650, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16464
+ rotate: false
+ xy: 137, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16469
+ rotate: false
+ xy: 164, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16470
+ rotate: false
+ xy: 191, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16475
+ rotate: false
+ xy: 218, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16476
+ rotate: false
+ xy: 245, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16481
+ rotate: false
+ xy: 272, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16491
+ rotate: false
+ xy: 299, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16496
+ rotate: false
+ xy: 326, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16497
+ rotate: false
+ xy: 353, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16502
+ rotate: false
+ xy: 380, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16503
+ rotate: false
+ xy: 407, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16508
+ rotate: false
+ xy: 434, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16518
+ rotate: false
+ xy: 461, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16523
+ rotate: false
+ xy: 488, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16524
+ rotate: false
+ xy: 515, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16529
+ rotate: false
+ xy: 542, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16530
+ rotate: false
+ xy: 569, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16535
+ rotate: false
+ xy: 596, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16545
+ rotate: false
+ xy: 623, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16550
+ rotate: false
+ xy: 650, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16551
+ rotate: false
+ xy: 677, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16556
+ rotate: false
+ xy: 164, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16557
+ rotate: false
+ xy: 191, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16562
+ rotate: false
+ xy: 218, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16572
+ rotate: false
+ xy: 245, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16577
+ rotate: false
+ xy: 272, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16578
+ rotate: false
+ xy: 299, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16583
+ rotate: false
+ xy: 326, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16584
+ rotate: false
+ xy: 353, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16589
+ rotate: false
+ xy: 380, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16599
+ rotate: false
+ xy: 407, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16604
+ rotate: false
+ xy: 434, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16605
+ rotate: false
+ xy: 461, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16610
+ rotate: false
+ xy: 488, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16611
+ rotate: false
+ xy: 515, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16616
+ rotate: false
+ xy: 542, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16626
+ rotate: false
+ xy: 569, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16631
+ rotate: false
+ xy: 596, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16632
+ rotate: false
+ xy: 623, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16637
+ rotate: false
+ xy: 650, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16638
+ rotate: false
+ xy: 677, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16643
+ rotate: false
+ xy: 704, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16653
+ rotate: false
+ xy: 191, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16658
+ rotate: false
+ xy: 218, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16659
+ rotate: false
+ xy: 245, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16664
+ rotate: false
+ xy: 272, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16665
+ rotate: false
+ xy: 299, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16670
+ rotate: false
+ xy: 326, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16680
+ rotate: false
+ xy: 353, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16685
+ rotate: false
+ xy: 380, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16686
+ rotate: false
+ xy: 407, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16691
+ rotate: false
+ xy: 434, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16692
+ rotate: false
+ xy: 461, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16697
+ rotate: false
+ xy: 488, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16708
+ rotate: false
+ xy: 515, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16713
+ rotate: false
+ xy: 542, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16714
+ rotate: false
+ xy: 569, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16719
+ rotate: false
+ xy: 596, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16720
+ rotate: false
+ xy: 623, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16725
+ rotate: false
+ xy: 650, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16735
+ rotate: false
+ xy: 677, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16740
+ rotate: false
+ xy: 704, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16741
+ rotate: false
+ xy: 731, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16746
+ rotate: false
+ xy: 218, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16747
+ rotate: false
+ xy: 245, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16752
+ rotate: false
+ xy: 272, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16762
+ rotate: false
+ xy: 299, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16767
+ rotate: false
+ xy: 326, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16768
+ rotate: false
+ xy: 353, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16773
+ rotate: false
+ xy: 380, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16774
+ rotate: false
+ xy: 407, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16779
+ rotate: false
+ xy: 434, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16789
+ rotate: false
+ xy: 461, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16794
+ rotate: false
+ xy: 488, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16795
+ rotate: false
+ xy: 515, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16800
+ rotate: false
+ xy: 542, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16801
+ rotate: false
+ xy: 569, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16806
+ rotate: false
+ xy: 596, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16816
+ rotate: false
+ xy: 623, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16821
+ rotate: false
+ xy: 650, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16822
+ rotate: false
+ xy: 677, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16827
+ rotate: false
+ xy: 704, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16828
+ rotate: false
+ xy: 731, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16833
+ rotate: false
+ xy: 758, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16843
+ rotate: false
+ xy: 245, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16848
+ rotate: false
+ xy: 272, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16849
+ rotate: false
+ xy: 299, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16854
+ rotate: false
+ xy: 326, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16855
+ rotate: false
+ xy: 353, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16860
+ rotate: false
+ xy: 380, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16870
+ rotate: false
+ xy: 407, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16875
+ rotate: false
+ xy: 434, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16876
+ rotate: false
+ xy: 461, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16881
+ rotate: false
+ xy: 488, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16882
+ rotate: false
+ xy: 515, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16887
+ rotate: false
+ xy: 542, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16897
+ rotate: false
+ xy: 569, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16902
+ rotate: false
+ xy: 596, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16903
+ rotate: false
+ xy: 623, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16908
+ rotate: false
+ xy: 650, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16909
+ rotate: false
+ xy: 677, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16914
+ rotate: false
+ xy: 704, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16924
+ rotate: false
+ xy: 731, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16929
+ rotate: false
+ xy: 758, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16930
+ rotate: false
+ xy: 785, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16935
+ rotate: false
+ xy: 272, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16936
+ rotate: false
+ xy: 299, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16941
+ rotate: false
+ xy: 326, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16951
+ rotate: false
+ xy: 353, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16956
+ rotate: false
+ xy: 380, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16957
+ rotate: false
+ xy: 407, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16962
+ rotate: false
+ xy: 434, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16963
+ rotate: false
+ xy: 461, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16968
+ rotate: false
+ xy: 488, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16978
+ rotate: false
+ xy: 515, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16983
+ rotate: false
+ xy: 542, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16984
+ rotate: false
+ xy: 569, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16989
+ rotate: false
+ xy: 596, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16990
+ rotate: false
+ xy: 623, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+16995
+ rotate: false
+ xy: 650, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17005
+ rotate: false
+ xy: 677, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17010
+ rotate: false
+ xy: 704, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17011
+ rotate: false
+ xy: 731, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17016
+ rotate: false
+ xy: 758, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17017
+ rotate: false
+ xy: 785, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17022
+ rotate: false
+ xy: 812, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17032
+ rotate: false
+ xy: 299, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17037
+ rotate: false
+ xy: 326, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17038
+ rotate: false
+ xy: 353, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17043
+ rotate: false
+ xy: 380, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17044
+ rotate: false
+ xy: 407, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17049
+ rotate: false
+ xy: 434, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17059
+ rotate: false
+ xy: 461, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17113
+ rotate: false
+ xy: 461, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17064
+ rotate: false
+ xy: 488, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17118
+ rotate: false
+ xy: 488, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17065
+ rotate: false
+ xy: 515, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17119
+ rotate: false
+ xy: 515, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17070
+ rotate: false
+ xy: 542, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17124
+ rotate: false
+ xy: 542, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17071
+ rotate: false
+ xy: 569, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17125
+ rotate: false
+ xy: 569, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17076
+ rotate: false
+ xy: 596, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17130
+ rotate: false
+ xy: 596, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17086
+ rotate: false
+ xy: 623, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17221
+ rotate: false
+ xy: 623, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17091
+ rotate: false
+ xy: 650, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17226
+ rotate: false
+ xy: 650, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17092
+ rotate: false
+ xy: 677, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17227
+ rotate: false
+ xy: 677, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17097
+ rotate: false
+ xy: 704, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17232
+ rotate: false
+ xy: 704, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17098
+ rotate: false
+ xy: 731, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17233
+ rotate: false
+ xy: 731, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17103
+ rotate: false
+ xy: 758, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17238
+ rotate: false
+ xy: 758, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17140
+ rotate: false
+ xy: 785, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17145
+ rotate: false
+ xy: 812, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17146
+ rotate: false
+ xy: 839, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17151
+ rotate: false
+ xy: 326, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17152
+ rotate: false
+ xy: 353, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17157
+ rotate: false
+ xy: 380, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17167
+ rotate: false
+ xy: 407, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17172
+ rotate: false
+ xy: 434, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17173
+ rotate: false
+ xy: 461, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17178
+ rotate: false
+ xy: 488, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17179
+ rotate: false
+ xy: 515, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17184
+ rotate: false
+ xy: 542, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17194
+ rotate: false
+ xy: 569, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17199
+ rotate: false
+ xy: 596, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17200
+ rotate: false
+ xy: 623, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17205
+ rotate: false
+ xy: 650, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17206
+ rotate: false
+ xy: 677, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17211
+ rotate: false
+ xy: 704, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17248
+ rotate: false
+ xy: 731, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17253
+ rotate: false
+ xy: 758, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17254
+ rotate: false
+ xy: 785, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17259
+ rotate: false
+ xy: 812, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17260
+ rotate: false
+ xy: 839, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17265
+ rotate: false
+ xy: 866, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17275
+ rotate: false
+ xy: 353, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17280
+ rotate: false
+ xy: 380, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17281
+ rotate: false
+ xy: 407, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17286
+ rotate: false
+ xy: 434, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17287
+ rotate: false
+ xy: 461, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17292
+ rotate: false
+ xy: 488, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17302
+ rotate: false
+ xy: 515, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17307
+ rotate: false
+ xy: 542, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17308
+ rotate: false
+ xy: 569, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17313
+ rotate: false
+ xy: 596, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17314
+ rotate: false
+ xy: 623, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17319
+ rotate: false
+ xy: 650, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17329
+ rotate: false
+ xy: 677, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17334
+ rotate: false
+ xy: 704, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17335
+ rotate: false
+ xy: 731, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17340
+ rotate: false
+ xy: 758, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17341
+ rotate: false
+ xy: 785, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17346
+ rotate: false
+ xy: 812, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17356
+ rotate: false
+ xy: 839, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17361
+ rotate: false
+ xy: 866, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17362
+ rotate: false
+ xy: 893, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17367
+ rotate: false
+ xy: 380, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17368
+ rotate: false
+ xy: 407, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17373
+ rotate: false
+ xy: 434, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17383
+ rotate: false
+ xy: 461, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17388
+ rotate: false
+ xy: 488, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17389
+ rotate: false
+ xy: 515, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17394
+ rotate: false
+ xy: 542, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17395
+ rotate: false
+ xy: 569, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17400
+ rotate: false
+ xy: 596, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17410
+ rotate: false
+ xy: 623, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17415
+ rotate: false
+ xy: 650, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17416
+ rotate: false
+ xy: 677, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17421
+ rotate: false
+ xy: 704, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17422
+ rotate: false
+ xy: 731, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17427
+ rotate: false
+ xy: 758, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17437
+ rotate: false
+ xy: 785, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17442
+ rotate: false
+ xy: 812, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17443
+ rotate: false
+ xy: 839, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17448
+ rotate: false
+ xy: 866, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17449
+ rotate: false
+ xy: 893, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17454
+ rotate: false
+ xy: 920, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17464
+ rotate: false
+ xy: 407, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17469
+ rotate: false
+ xy: 434, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17470
+ rotate: false
+ xy: 461, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17475
+ rotate: false
+ xy: 488, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17476
+ rotate: false
+ xy: 515, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17481
+ rotate: false
+ xy: 542, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17491
+ rotate: false
+ xy: 569, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17496
+ rotate: false
+ xy: 596, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17497
+ rotate: false
+ xy: 623, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17502
+ rotate: false
+ xy: 650, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17503
+ rotate: false
+ xy: 677, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17508
+ rotate: false
+ xy: 704, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17518
+ rotate: false
+ xy: 731, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17523
+ rotate: false
+ xy: 758, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17524
+ rotate: false
+ xy: 785, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17529
+ rotate: false
+ xy: 812, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17530
+ rotate: false
+ xy: 839, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17535
+ rotate: false
+ xy: 866, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17545
+ rotate: false
+ xy: 893, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17550
+ rotate: false
+ xy: 920, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17551
+ rotate: false
+ xy: 947, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17556
+ rotate: false
+ xy: 434, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17557
+ rotate: false
+ xy: 461, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17562
+ rotate: false
+ xy: 488, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17658
+ rotate: false
+ xy: 515, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17663
+ rotate: false
+ xy: 542, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17664
+ rotate: false
+ xy: 569, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17669
+ rotate: false
+ xy: 596, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17670
+ rotate: false
+ xy: 623, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17675
+ rotate: false
+ xy: 650, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17685
+ rotate: false
+ xy: 677, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17690
+ rotate: false
+ xy: 704, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17691
+ rotate: false
+ xy: 731, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17696
+ rotate: false
+ xy: 758, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17697
+ rotate: false
+ xy: 785, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17702
+ rotate: false
+ xy: 812, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17859
+ rotate: false
+ xy: 839, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17864
+ rotate: false
+ xy: 866, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17865
+ rotate: false
+ xy: 893, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17871
+ rotate: false
+ xy: 920, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17876
+ rotate: false
+ xy: 947, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17885
+ rotate: false
+ xy: 974, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17890
+ rotate: false
+ xy: 461, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17891
+ rotate: false
+ xy: 488, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+17902
+ rotate: false
+ xy: 515, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+18293
+ rotate: false
+ xy: 542, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+18298
+ rotate: false
+ xy: 569, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+18299
+ rotate: false
+ xy: 596, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+18304
+ rotate: false
+ xy: 623, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+18305
+ rotate: false
+ xy: 650, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+18310
+ rotate: false
+ xy: 677, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+18849
+ rotate: false
+ xy: 704, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+18854
+ rotate: false
+ xy: 731, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+18855
+ rotate: false
+ xy: 758, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+18860
+ rotate: false
+ xy: 785, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+18861
+ rotate: false
+ xy: 812, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+18866
+ rotate: false
+ xy: 839, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19417
+ rotate: false
+ xy: 866, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19422
+ rotate: false
+ xy: 893, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19423
+ rotate: false
+ xy: 920, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19428
+ rotate: false
+ xy: 947, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19429
+ rotate: false
+ xy: 974, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19434
+ rotate: false
+ xy: 488, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19447
+ rotate: false
+ xy: 515, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19452
+ rotate: false
+ xy: 542, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19453
+ rotate: false
+ xy: 569, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19459
+ rotate: false
+ xy: 596, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19464
+ rotate: false
+ xy: 623, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19688
+ rotate: false
+ xy: 650, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19693
+ rotate: false
+ xy: 677, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19694
+ rotate: false
+ xy: 704, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19699
+ rotate: false
+ xy: 731, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19700
+ rotate: false
+ xy: 758, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19705
+ rotate: false
+ xy: 785, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19724
+ rotate: false
+ xy: 812, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19729
+ rotate: false
+ xy: 839, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19730
+ rotate: false
+ xy: 866, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19735
+ rotate: false
+ xy: 893, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19736
+ rotate: false
+ xy: 920, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19741
+ rotate: false
+ xy: 947, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19750
+ rotate: false
+ xy: 974, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19755
+ rotate: false
+ xy: 515, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19756
+ rotate: false
+ xy: 542, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19762
+ rotate: false
+ xy: 569, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19767
+ rotate: false
+ xy: 596, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19776
+ rotate: false
+ xy: 623, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19781
+ rotate: false
+ xy: 650, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19782
+ rotate: false
+ xy: 677, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19787
+ rotate: false
+ xy: 704, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19788
+ rotate: false
+ xy: 731, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19793
+ rotate: false
+ xy: 758, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19802
+ rotate: false
+ xy: 785, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19807
+ rotate: false
+ xy: 812, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19808
+ rotate: false
+ xy: 839, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19813
+ rotate: false
+ xy: 866, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19814
+ rotate: false
+ xy: 893, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19819
+ rotate: false
+ xy: 920, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19828
+ rotate: false
+ xy: 947, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19833
+ rotate: false
+ xy: 974, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19834
+ rotate: false
+ xy: 542, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19839
+ rotate: false
+ xy: 569, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19840
+ rotate: false
+ xy: 596, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19845
+ rotate: false
+ xy: 623, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19854
+ rotate: false
+ xy: 650, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19859
+ rotate: false
+ xy: 677, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19860
+ rotate: false
+ xy: 704, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19865
+ rotate: false
+ xy: 731, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19866
+ rotate: false
+ xy: 758, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19871
+ rotate: false
+ xy: 785, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19880
+ rotate: false
+ xy: 812, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19885
+ rotate: false
+ xy: 839, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19886
+ rotate: false
+ xy: 866, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19892
+ rotate: false
+ xy: 893, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19897
+ rotate: false
+ xy: 920, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19906
+ rotate: false
+ xy: 947, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19911
+ rotate: false
+ xy: 974, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19912
+ rotate: false
+ xy: 569, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19917
+ rotate: false
+ xy: 596, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19918
+ rotate: false
+ xy: 623, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19923
+ rotate: false
+ xy: 650, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19932
+ rotate: false
+ xy: 677, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19937
+ rotate: false
+ xy: 704, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19938
+ rotate: false
+ xy: 731, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19943
+ rotate: false
+ xy: 758, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19944
+ rotate: false
+ xy: 785, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19949
+ rotate: false
+ xy: 812, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19958
+ rotate: false
+ xy: 839, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19963
+ rotate: false
+ xy: 866, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19964
+ rotate: false
+ xy: 893, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19969
+ rotate: false
+ xy: 920, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19970
+ rotate: false
+ xy: 947, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19975
+ rotate: false
+ xy: 974, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19984
+ rotate: false
+ xy: 596, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19989
+ rotate: false
+ xy: 623, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19990
+ rotate: false
+ xy: 650, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+19996
+ rotate: false
+ xy: 677, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20001
+ rotate: false
+ xy: 704, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20010
+ rotate: false
+ xy: 731, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20015
+ rotate: false
+ xy: 758, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20016
+ rotate: false
+ xy: 785, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20021
+ rotate: false
+ xy: 812, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20022
+ rotate: false
+ xy: 839, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20027
+ rotate: false
+ xy: 866, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20036
+ rotate: false
+ xy: 893, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20041
+ rotate: false
+ xy: 920, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20042
+ rotate: false
+ xy: 947, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20047
+ rotate: false
+ xy: 974, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20048
+ rotate: false
+ xy: 623, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20053
+ rotate: false
+ xy: 650, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20207
+ rotate: false
+ xy: 677, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20212
+ rotate: false
+ xy: 704, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20213
+ rotate: false
+ xy: 731, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20218
+ rotate: false
+ xy: 758, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20219
+ rotate: false
+ xy: 785, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20224
+ rotate: false
+ xy: 812, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20240
+ rotate: false
+ xy: 839, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20245
+ rotate: false
+ xy: 866, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20246
+ rotate: false
+ xy: 893, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20251
+ rotate: false
+ xy: 920, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20252
+ rotate: false
+ xy: 947, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20257
+ rotate: false
+ xy: 974, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20267
+ rotate: false
+ xy: 650, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20272
+ rotate: false
+ xy: 677, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20273
+ rotate: false
+ xy: 704, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20278
+ rotate: false
+ xy: 731, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20279
+ rotate: false
+ xy: 758, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20284
+ rotate: false
+ xy: 785, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20294
+ rotate: false
+ xy: 812, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20299
+ rotate: false
+ xy: 839, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20300
+ rotate: false
+ xy: 866, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20305
+ rotate: false
+ xy: 893, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20306
+ rotate: false
+ xy: 920, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20311
+ rotate: false
+ xy: 947, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20321
+ rotate: false
+ xy: 974, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20326
+ rotate: false
+ xy: 677, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20327
+ rotate: false
+ xy: 704, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20332
+ rotate: false
+ xy: 731, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20333
+ rotate: false
+ xy: 758, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20338
+ rotate: false
+ xy: 785, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20348
+ rotate: false
+ xy: 812, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20353
+ rotate: false
+ xy: 839, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20354
+ rotate: false
+ xy: 866, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20359
+ rotate: false
+ xy: 893, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20360
+ rotate: false
+ xy: 920, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20365
+ rotate: false
+ xy: 947, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20375
+ rotate: false
+ xy: 974, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20380
+ rotate: false
+ xy: 704, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20381
+ rotate: false
+ xy: 731, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20386
+ rotate: false
+ xy: 758, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20387
+ rotate: false
+ xy: 785, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20392
+ rotate: false
+ xy: 812, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20407
+ rotate: false
+ xy: 839, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20412
+ rotate: false
+ xy: 866, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20413
+ rotate: false
+ xy: 893, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20418
+ rotate: false
+ xy: 920, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20419
+ rotate: false
+ xy: 947, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20424
+ rotate: false
+ xy: 974, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20434
+ rotate: false
+ xy: 731, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20439
+ rotate: false
+ xy: 758, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20440
+ rotate: false
+ xy: 785, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20445
+ rotate: false
+ xy: 812, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20446
+ rotate: false
+ xy: 839, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20451
+ rotate: false
+ xy: 866, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20461
+ rotate: false
+ xy: 893, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20466
+ rotate: false
+ xy: 920, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20467
+ rotate: false
+ xy: 947, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20472
+ rotate: false
+ xy: 974, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20473
+ rotate: false
+ xy: 758, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20478
+ rotate: false
+ xy: 785, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20510
+ rotate: false
+ xy: 812, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20515
+ rotate: false
+ xy: 839, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20516
+ rotate: false
+ xy: 866, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22625
+ rotate: false
+ xy: 866, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20521
+ rotate: false
+ xy: 893, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22630
+ rotate: false
+ xy: 893, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20522
+ rotate: false
+ xy: 920, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22631
+ rotate: false
+ xy: 920, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20527
+ rotate: false
+ xy: 947, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20537
+ rotate: false
+ xy: 974, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20542
+ rotate: false
+ xy: 785, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20543
+ rotate: false
+ xy: 812, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20548
+ rotate: false
+ xy: 839, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20549
+ rotate: false
+ xy: 866, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20554
+ rotate: false
+ xy: 893, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20564
+ rotate: false
+ xy: 920, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20569
+ rotate: false
+ xy: 947, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20570
+ rotate: false
+ xy: 974, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20575
+ rotate: false
+ xy: 812, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20576
+ rotate: false
+ xy: 839, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20581
+ rotate: false
+ xy: 866, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20591
+ rotate: false
+ xy: 893, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20596
+ rotate: false
+ xy: 920, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20597
+ rotate: false
+ xy: 947, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20602
+ rotate: false
+ xy: 974, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20603
+ rotate: false
+ xy: 839, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20608
+ rotate: false
+ xy: 866, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20618
+ rotate: false
+ xy: 893, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20623
+ rotate: false
+ xy: 920, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20624
+ rotate: false
+ xy: 947, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20629
+ rotate: false
+ xy: 974, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20630
+ rotate: false
+ xy: 866, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20635
+ rotate: false
+ xy: 893, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20645
+ rotate: false
+ xy: 920, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20650
+ rotate: false
+ xy: 947, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20651
+ rotate: false
+ xy: 974, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20656
+ rotate: false
+ xy: 893, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20657
+ rotate: false
+ xy: 920, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20662
+ rotate: false
+ xy: 947, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20672
+ rotate: false
+ xy: 974, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20677
+ rotate: false
+ xy: 920, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20678
+ rotate: false
+ xy: 947, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20683
+ rotate: false
+ xy: 974, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20684
+ rotate: false
+ xy: 947, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20689
+ rotate: false
+ xy: 974, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20699
+ rotate: false
+ xy: 974, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+
+images105.png
+size: 1024,1024
+format: RGBA8888
+filter: Nearest,Nearest
+repeat: none
+20704
+ rotate: false
+ xy: 2, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20705
+ rotate: false
+ xy: 2, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20710
+ rotate: false
+ xy: 29, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20711
+ rotate: false
+ xy: 2, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20716
+ rotate: false
+ xy: 29, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20726
+ rotate: false
+ xy: 56, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20731
+ rotate: false
+ xy: 2, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20732
+ rotate: false
+ xy: 29, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20737
+ rotate: false
+ xy: 56, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20738
+ rotate: false
+ xy: 83, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20743
+ rotate: false
+ xy: 2, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20753
+ rotate: false
+ xy: 29, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20758
+ rotate: false
+ xy: 56, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20759
+ rotate: false
+ xy: 83, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20764
+ rotate: false
+ xy: 110, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20765
+ rotate: false
+ xy: 2, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20770
+ rotate: false
+ xy: 29, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20780
+ rotate: false
+ xy: 56, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20785
+ rotate: false
+ xy: 83, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20786
+ rotate: false
+ xy: 110, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20791
+ rotate: false
+ xy: 137, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20792
+ rotate: false
+ xy: 2, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20797
+ rotate: false
+ xy: 29, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20807
+ rotate: false
+ xy: 56, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20812
+ rotate: false
+ xy: 83, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20813
+ rotate: false
+ xy: 110, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20818
+ rotate: false
+ xy: 137, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20819
+ rotate: false
+ xy: 164, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20824
+ rotate: false
+ xy: 2, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20834
+ rotate: false
+ xy: 29, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20839
+ rotate: false
+ xy: 56, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20840
+ rotate: false
+ xy: 83, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20845
+ rotate: false
+ xy: 110, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20846
+ rotate: false
+ xy: 137, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20851
+ rotate: false
+ xy: 164, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20861
+ rotate: false
+ xy: 191, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20866
+ rotate: false
+ xy: 2, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20867
+ rotate: false
+ xy: 29, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20872
+ rotate: false
+ xy: 56, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20873
+ rotate: false
+ xy: 83, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20878
+ rotate: false
+ xy: 110, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20888
+ rotate: false
+ xy: 137, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20893
+ rotate: false
+ xy: 164, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20894
+ rotate: false
+ xy: 191, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20899
+ rotate: false
+ xy: 218, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20900
+ rotate: false
+ xy: 2, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20905
+ rotate: false
+ xy: 29, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20915
+ rotate: false
+ xy: 56, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20920
+ rotate: false
+ xy: 83, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20921
+ rotate: false
+ xy: 110, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20926
+ rotate: false
+ xy: 137, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20927
+ rotate: false
+ xy: 164, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20932
+ rotate: false
+ xy: 191, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20942
+ rotate: false
+ xy: 218, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20947
+ rotate: false
+ xy: 245, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20948
+ rotate: false
+ xy: 2, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20953
+ rotate: false
+ xy: 29, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20954
+ rotate: false
+ xy: 56, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20959
+ rotate: false
+ xy: 83, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20969
+ rotate: false
+ xy: 110, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20974
+ rotate: false
+ xy: 137, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20975
+ rotate: false
+ xy: 164, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20980
+ rotate: false
+ xy: 191, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20981
+ rotate: false
+ xy: 218, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20986
+ rotate: false
+ xy: 245, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+20996
+ rotate: false
+ xy: 272, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21001
+ rotate: false
+ xy: 2, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21002
+ rotate: false
+ xy: 29, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21007
+ rotate: false
+ xy: 56, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21008
+ rotate: false
+ xy: 83, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21013
+ rotate: false
+ xy: 110, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21023
+ rotate: false
+ xy: 137, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21028
+ rotate: false
+ xy: 164, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21029
+ rotate: false
+ xy: 191, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21034
+ rotate: false
+ xy: 218, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21035
+ rotate: false
+ xy: 245, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21040
+ rotate: false
+ xy: 272, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21050
+ rotate: false
+ xy: 299, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21055
+ rotate: false
+ xy: 2, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21056
+ rotate: false
+ xy: 29, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21061
+ rotate: false
+ xy: 56, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21062
+ rotate: false
+ xy: 83, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21067
+ rotate: false
+ xy: 110, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21077
+ rotate: false
+ xy: 137, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21082
+ rotate: false
+ xy: 164, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21083
+ rotate: false
+ xy: 191, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21088
+ rotate: false
+ xy: 218, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21089
+ rotate: false
+ xy: 245, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21094
+ rotate: false
+ xy: 272, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21104
+ rotate: false
+ xy: 299, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21109
+ rotate: false
+ xy: 326, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21110
+ rotate: false
+ xy: 2, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21115
+ rotate: false
+ xy: 29, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21116
+ rotate: false
+ xy: 56, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21121
+ rotate: false
+ xy: 83, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21131
+ rotate: false
+ xy: 110, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21136
+ rotate: false
+ xy: 137, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21137
+ rotate: false
+ xy: 164, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21142
+ rotate: false
+ xy: 191, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21143
+ rotate: false
+ xy: 218, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21148
+ rotate: false
+ xy: 245, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21158
+ rotate: false
+ xy: 272, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21163
+ rotate: false
+ xy: 299, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21164
+ rotate: false
+ xy: 326, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21169
+ rotate: false
+ xy: 353, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21170
+ rotate: false
+ xy: 2, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21175
+ rotate: false
+ xy: 29, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21185
+ rotate: false
+ xy: 56, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21190
+ rotate: false
+ xy: 83, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21191
+ rotate: false
+ xy: 110, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21196
+ rotate: false
+ xy: 137, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21197
+ rotate: false
+ xy: 164, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21202
+ rotate: false
+ xy: 191, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21212
+ rotate: false
+ xy: 218, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21217
+ rotate: false
+ xy: 245, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21218
+ rotate: false
+ xy: 272, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21223
+ rotate: false
+ xy: 299, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21224
+ rotate: false
+ xy: 326, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21229
+ rotate: false
+ xy: 353, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21239
+ rotate: false
+ xy: 380, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21244
+ rotate: false
+ xy: 2, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21245
+ rotate: false
+ xy: 29, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21250
+ rotate: false
+ xy: 56, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21251
+ rotate: false
+ xy: 83, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21256
+ rotate: false
+ xy: 110, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21266
+ rotate: false
+ xy: 137, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21271
+ rotate: false
+ xy: 164, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21272
+ rotate: false
+ xy: 191, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21277
+ rotate: false
+ xy: 218, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21278
+ rotate: false
+ xy: 245, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21283
+ rotate: false
+ xy: 272, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21293
+ rotate: false
+ xy: 299, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21298
+ rotate: false
+ xy: 326, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21299
+ rotate: false
+ xy: 353, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21304
+ rotate: false
+ xy: 380, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21305
+ rotate: false
+ xy: 407, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21310
+ rotate: false
+ xy: 2, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21320
+ rotate: false
+ xy: 29, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21325
+ rotate: false
+ xy: 56, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21326
+ rotate: false
+ xy: 83, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21331
+ rotate: false
+ xy: 110, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21332
+ rotate: false
+ xy: 137, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21337
+ rotate: false
+ xy: 164, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21347
+ rotate: false
+ xy: 191, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21352
+ rotate: false
+ xy: 218, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21353
+ rotate: false
+ xy: 245, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21358
+ rotate: false
+ xy: 272, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21359
+ rotate: false
+ xy: 299, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21364
+ rotate: false
+ xy: 326, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21374
+ rotate: false
+ xy: 353, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21379
+ rotate: false
+ xy: 380, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21380
+ rotate: false
+ xy: 407, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21385
+ rotate: false
+ xy: 434, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21386
+ rotate: false
+ xy: 2, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21391
+ rotate: false
+ xy: 29, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21401
+ rotate: false
+ xy: 56, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21406
+ rotate: false
+ xy: 83, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21407
+ rotate: false
+ xy: 110, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21412
+ rotate: false
+ xy: 137, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21413
+ rotate: false
+ xy: 164, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21418
+ rotate: false
+ xy: 191, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21428
+ rotate: false
+ xy: 218, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21433
+ rotate: false
+ xy: 245, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21434
+ rotate: false
+ xy: 272, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21439
+ rotate: false
+ xy: 299, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21440
+ rotate: false
+ xy: 326, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21445
+ rotate: false
+ xy: 353, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21455
+ rotate: false
+ xy: 380, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21460
+ rotate: false
+ xy: 407, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21461
+ rotate: false
+ xy: 434, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21466
+ rotate: false
+ xy: 461, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21467
+ rotate: false
+ xy: 2, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21472
+ rotate: false
+ xy: 29, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21482
+ rotate: false
+ xy: 56, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21487
+ rotate: false
+ xy: 83, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21488
+ rotate: false
+ xy: 110, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21493
+ rotate: false
+ xy: 137, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21494
+ rotate: false
+ xy: 164, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21499
+ rotate: false
+ xy: 191, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21509
+ rotate: false
+ xy: 218, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21514
+ rotate: false
+ xy: 245, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21515
+ rotate: false
+ xy: 272, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21520
+ rotate: false
+ xy: 299, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21521
+ rotate: false
+ xy: 326, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21526
+ rotate: false
+ xy: 353, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21536
+ rotate: false
+ xy: 380, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21541
+ rotate: false
+ xy: 407, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21542
+ rotate: false
+ xy: 434, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21547
+ rotate: false
+ xy: 461, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21548
+ rotate: false
+ xy: 488, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21553
+ rotate: false
+ xy: 2, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21563
+ rotate: false
+ xy: 29, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21568
+ rotate: false
+ xy: 56, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21569
+ rotate: false
+ xy: 83, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21574
+ rotate: false
+ xy: 110, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21575
+ rotate: false
+ xy: 137, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21580
+ rotate: false
+ xy: 164, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21590
+ rotate: false
+ xy: 191, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21595
+ rotate: false
+ xy: 218, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21596
+ rotate: false
+ xy: 245, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21601
+ rotate: false
+ xy: 272, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21602
+ rotate: false
+ xy: 299, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21607
+ rotate: false
+ xy: 326, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21617
+ rotate: false
+ xy: 353, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21622
+ rotate: false
+ xy: 380, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21623
+ rotate: false
+ xy: 407, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21628
+ rotate: false
+ xy: 434, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21629
+ rotate: false
+ xy: 461, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21634
+ rotate: false
+ xy: 488, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21644
+ rotate: false
+ xy: 515, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21649
+ rotate: false
+ xy: 2, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21650
+ rotate: false
+ xy: 29, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21655
+ rotate: false
+ xy: 56, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21656
+ rotate: false
+ xy: 83, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21661
+ rotate: false
+ xy: 110, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21671
+ rotate: false
+ xy: 137, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21676
+ rotate: false
+ xy: 164, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21677
+ rotate: false
+ xy: 191, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21682
+ rotate: false
+ xy: 218, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21683
+ rotate: false
+ xy: 245, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21688
+ rotate: false
+ xy: 272, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21698
+ rotate: false
+ xy: 299, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21703
+ rotate: false
+ xy: 326, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21704
+ rotate: false
+ xy: 353, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21709
+ rotate: false
+ xy: 380, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21710
+ rotate: false
+ xy: 407, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21715
+ rotate: false
+ xy: 434, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21923
+ rotate: false
+ xy: 461, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21928
+ rotate: false
+ xy: 488, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21929
+ rotate: false
+ xy: 515, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21934
+ rotate: false
+ xy: 542, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21935
+ rotate: false
+ xy: 29, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21940
+ rotate: false
+ xy: 56, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21981
+ rotate: false
+ xy: 83, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21986
+ rotate: false
+ xy: 110, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21987
+ rotate: false
+ xy: 137, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21992
+ rotate: false
+ xy: 164, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21993
+ rotate: false
+ xy: 191, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+21998
+ rotate: false
+ xy: 218, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22007
+ rotate: false
+ xy: 245, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22012
+ rotate: false
+ xy: 272, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22013
+ rotate: false
+ xy: 299, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22018
+ rotate: false
+ xy: 326, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22019
+ rotate: false
+ xy: 353, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22024
+ rotate: false
+ xy: 380, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22040
+ rotate: false
+ xy: 407, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22045
+ rotate: false
+ xy: 434, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22046
+ rotate: false
+ xy: 461, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22051
+ rotate: false
+ xy: 488, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22052
+ rotate: false
+ xy: 515, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22057
+ rotate: false
+ xy: 542, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22266
+ rotate: false
+ xy: 569, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22271
+ rotate: false
+ xy: 56, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22272
+ rotate: false
+ xy: 83, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22277
+ rotate: false
+ xy: 110, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22278
+ rotate: false
+ xy: 137, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22283
+ rotate: false
+ xy: 164, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22292
+ rotate: false
+ xy: 191, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22297
+ rotate: false
+ xy: 218, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22298
+ rotate: false
+ xy: 245, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22303
+ rotate: false
+ xy: 272, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22304
+ rotate: false
+ xy: 299, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22309
+ rotate: false
+ xy: 326, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22318
+ rotate: false
+ xy: 353, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22323
+ rotate: false
+ xy: 380, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22324
+ rotate: false
+ xy: 407, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22329
+ rotate: false
+ xy: 434, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22330
+ rotate: false
+ xy: 461, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22335
+ rotate: false
+ xy: 488, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22344
+ rotate: false
+ xy: 515, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22349
+ rotate: false
+ xy: 542, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22350
+ rotate: false
+ xy: 569, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22355
+ rotate: false
+ xy: 596, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22356
+ rotate: false
+ xy: 83, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22361
+ rotate: false
+ xy: 110, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22370
+ rotate: false
+ xy: 137, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22375
+ rotate: false
+ xy: 164, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22376
+ rotate: false
+ xy: 191, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22381
+ rotate: false
+ xy: 218, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22382
+ rotate: false
+ xy: 245, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22387
+ rotate: false
+ xy: 272, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22396
+ rotate: false
+ xy: 299, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22401
+ rotate: false
+ xy: 326, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22402
+ rotate: false
+ xy: 353, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22407
+ rotate: false
+ xy: 380, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22408
+ rotate: false
+ xy: 407, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22413
+ rotate: false
+ xy: 434, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22422
+ rotate: false
+ xy: 461, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22427
+ rotate: false
+ xy: 488, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22428
+ rotate: false
+ xy: 515, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22433
+ rotate: false
+ xy: 542, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22434
+ rotate: false
+ xy: 569, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22439
+ rotate: false
+ xy: 596, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22448
+ rotate: false
+ xy: 623, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22453
+ rotate: false
+ xy: 110, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22454
+ rotate: false
+ xy: 137, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22459
+ rotate: false
+ xy: 164, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22460
+ rotate: false
+ xy: 191, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22465
+ rotate: false
+ xy: 218, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22515
+ rotate: false
+ xy: 245, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22520
+ rotate: false
+ xy: 272, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22521
+ rotate: false
+ xy: 299, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22527
+ rotate: false
+ xy: 326, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22553
+ rotate: false
+ xy: 326, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22532
+ rotate: false
+ xy: 353, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22541
+ rotate: false
+ xy: 380, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22546
+ rotate: false
+ xy: 407, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22547
+ rotate: false
+ xy: 434, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22558
+ rotate: false
+ xy: 461, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22567
+ rotate: false
+ xy: 488, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22572
+ rotate: false
+ xy: 515, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22573
+ rotate: false
+ xy: 542, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22584
+ rotate: false
+ xy: 569, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22593
+ rotate: false
+ xy: 596, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22598
+ rotate: false
+ xy: 623, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22599
+ rotate: false
+ xy: 650, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22610
+ rotate: false
+ xy: 137, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22619
+ rotate: false
+ xy: 164, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22624
+ rotate: false
+ xy: 191, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22636
+ rotate: false
+ xy: 218, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22645
+ rotate: false
+ xy: 245, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22650
+ rotate: false
+ xy: 272, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22651
+ rotate: false
+ xy: 299, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22656
+ rotate: false
+ xy: 326, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22662
+ rotate: false
+ xy: 353, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22671
+ rotate: false
+ xy: 380, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22676
+ rotate: false
+ xy: 407, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22677
+ rotate: false
+ xy: 434, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22683
+ rotate: false
+ xy: 461, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22688
+ rotate: false
+ xy: 488, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22697
+ rotate: false
+ xy: 515, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22702
+ rotate: false
+ xy: 542, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22703
+ rotate: false
+ xy: 569, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22709
+ rotate: false
+ xy: 596, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22714
+ rotate: false
+ xy: 623, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22724
+ rotate: false
+ xy: 650, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22729
+ rotate: false
+ xy: 677, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22730
+ rotate: false
+ xy: 164, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22736
+ rotate: false
+ xy: 191, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22741
+ rotate: false
+ xy: 218, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22750
+ rotate: false
+ xy: 245, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22755
+ rotate: false
+ xy: 272, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22756
+ rotate: false
+ xy: 299, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22762
+ rotate: false
+ xy: 326, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22767
+ rotate: false
+ xy: 353, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22776
+ rotate: false
+ xy: 380, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22781
+ rotate: false
+ xy: 407, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22782
+ rotate: false
+ xy: 434, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22787
+ rotate: false
+ xy: 461, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22788
+ rotate: false
+ xy: 488, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22793
+ rotate: false
+ xy: 515, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22964
+ rotate: false
+ xy: 542, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22969
+ rotate: false
+ xy: 569, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22970
+ rotate: false
+ xy: 596, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22975
+ rotate: false
+ xy: 623, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22976
+ rotate: false
+ xy: 650, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22981
+ rotate: false
+ xy: 677, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22990
+ rotate: false
+ xy: 704, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22995
+ rotate: false
+ xy: 191, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+22996
+ rotate: false
+ xy: 218, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23001
+ rotate: false
+ xy: 245, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23002
+ rotate: false
+ xy: 272, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23007
+ rotate: false
+ xy: 299, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23016
+ rotate: false
+ xy: 326, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23021
+ rotate: false
+ xy: 353, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23022
+ rotate: false
+ xy: 380, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23027
+ rotate: false
+ xy: 407, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23028
+ rotate: false
+ xy: 434, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23033
+ rotate: false
+ xy: 461, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23042
+ rotate: false
+ xy: 488, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23047
+ rotate: false
+ xy: 515, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23048
+ rotate: false
+ xy: 542, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23053
+ rotate: false
+ xy: 569, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23054
+ rotate: false
+ xy: 596, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23059
+ rotate: false
+ xy: 623, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23070
+ rotate: false
+ xy: 650, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23075
+ rotate: false
+ xy: 677, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23076
+ rotate: false
+ xy: 704, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23081
+ rotate: false
+ xy: 731, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23082
+ rotate: false
+ xy: 218, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23087
+ rotate: false
+ xy: 245, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23097
+ rotate: false
+ xy: 272, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23102
+ rotate: false
+ xy: 299, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23103
+ rotate: false
+ xy: 326, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23108
+ rotate: false
+ xy: 353, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23109
+ rotate: false
+ xy: 380, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23114
+ rotate: false
+ xy: 407, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23124
+ rotate: false
+ xy: 434, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23129
+ rotate: false
+ xy: 461, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23130
+ rotate: false
+ xy: 488, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23135
+ rotate: false
+ xy: 515, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23136
+ rotate: false
+ xy: 542, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23141
+ rotate: false
+ xy: 569, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23151
+ rotate: false
+ xy: 596, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23156
+ rotate: false
+ xy: 623, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23157
+ rotate: false
+ xy: 650, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23162
+ rotate: false
+ xy: 677, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23163
+ rotate: false
+ xy: 704, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23168
+ rotate: false
+ xy: 731, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23178
+ rotate: false
+ xy: 758, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23183
+ rotate: false
+ xy: 245, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23184
+ rotate: false
+ xy: 272, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23189
+ rotate: false
+ xy: 299, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23190
+ rotate: false
+ xy: 326, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23195
+ rotate: false
+ xy: 353, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23209
+ rotate: false
+ xy: 380, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23214
+ rotate: false
+ xy: 407, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23215
+ rotate: false
+ xy: 434, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23220
+ rotate: false
+ xy: 461, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23221
+ rotate: false
+ xy: 488, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23226
+ rotate: false
+ xy: 515, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23235
+ rotate: false
+ xy: 542, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23240
+ rotate: false
+ xy: 569, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23241
+ rotate: false
+ xy: 596, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23246
+ rotate: false
+ xy: 623, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23247
+ rotate: false
+ xy: 650, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23252
+ rotate: false
+ xy: 677, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23261
+ rotate: false
+ xy: 704, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23266
+ rotate: false
+ xy: 731, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23267
+ rotate: false
+ xy: 758, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23272
+ rotate: false
+ xy: 785, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23273
+ rotate: false
+ xy: 272, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23278
+ rotate: false
+ xy: 299, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23287
+ rotate: false
+ xy: 326, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23292
+ rotate: false
+ xy: 353, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23293
+ rotate: false
+ xy: 380, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23298
+ rotate: false
+ xy: 407, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23299
+ rotate: false
+ xy: 434, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23304
+ rotate: false
+ xy: 461, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23313
+ rotate: false
+ xy: 488, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23318
+ rotate: false
+ xy: 515, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23319
+ rotate: false
+ xy: 542, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23325
+ rotate: false
+ xy: 569, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23330
+ rotate: false
+ xy: 596, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23339
+ rotate: false
+ xy: 623, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23344
+ rotate: false
+ xy: 650, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23345
+ rotate: false
+ xy: 677, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23350
+ rotate: false
+ xy: 704, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23351
+ rotate: false
+ xy: 731, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23356
+ rotate: false
+ xy: 758, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23365
+ rotate: false
+ xy: 785, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23370
+ rotate: false
+ xy: 812, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23371
+ rotate: false
+ xy: 299, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23377
+ rotate: false
+ xy: 326, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23382
+ rotate: false
+ xy: 353, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23391
+ rotate: false
+ xy: 380, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23396
+ rotate: false
+ xy: 407, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23397
+ rotate: false
+ xy: 434, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23402
+ rotate: false
+ xy: 461, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23403
+ rotate: false
+ xy: 488, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23408
+ rotate: false
+ xy: 515, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23417
+ rotate: false
+ xy: 542, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23422
+ rotate: false
+ xy: 569, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23423
+ rotate: false
+ xy: 596, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23428
+ rotate: false
+ xy: 623, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23429
+ rotate: false
+ xy: 650, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23434
+ rotate: false
+ xy: 677, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23443
+ rotate: false
+ xy: 704, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23448
+ rotate: false
+ xy: 731, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23449
+ rotate: false
+ xy: 758, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23454
+ rotate: false
+ xy: 785, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23455
+ rotate: false
+ xy: 812, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23460
+ rotate: false
+ xy: 839, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23469
+ rotate: false
+ xy: 326, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23474
+ rotate: false
+ xy: 353, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23475
+ rotate: false
+ xy: 380, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23481
+ rotate: false
+ xy: 407, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23486
+ rotate: false
+ xy: 434, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23495
+ rotate: false
+ xy: 461, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23500
+ rotate: false
+ xy: 488, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23501
+ rotate: false
+ xy: 515, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23506
+ rotate: false
+ xy: 542, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23507
+ rotate: false
+ xy: 569, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23512
+ rotate: false
+ xy: 596, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23521
+ rotate: false
+ xy: 623, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23526
+ rotate: false
+ xy: 650, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23527
+ rotate: false
+ xy: 677, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23533
+ rotate: false
+ xy: 704, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23538
+ rotate: false
+ xy: 731, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23547
+ rotate: false
+ xy: 758, 754
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23552
+ rotate: false
+ xy: 785, 801
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23553
+ rotate: false
+ xy: 812, 848
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23558
+ rotate: false
+ xy: 839, 895
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23559
+ rotate: false
+ xy: 866, 942
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23564
+ rotate: false
+ xy: 353, 2
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23573
+ rotate: false
+ xy: 380, 49
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23578
+ rotate: false
+ xy: 407, 96
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23579
+ rotate: false
+ xy: 434, 143
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23585
+ rotate: false
+ xy: 461, 190
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23590
+ rotate: false
+ xy: 488, 237
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23599
+ rotate: false
+ xy: 515, 284
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23604
+ rotate: false
+ xy: 542, 331
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23605
+ rotate: false
+ xy: 569, 378
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23616
+ rotate: false
+ xy: 596, 425
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23625
+ rotate: false
+ xy: 623, 472
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23630
+ rotate: false
+ xy: 650, 519
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23631
+ rotate: false
+ xy: 677, 566
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23636
+ rotate: false
+ xy: 704, 613
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23637
+ rotate: false
+ xy: 731, 660
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
+23642
+ rotate: false
+ xy: 758, 707
+ size: 25, 45
+ orig: 25, 45
+ offset: 0, 0
+ index: -1
diff --git a/output/graphics/images.png b/output/graphics/images.png
new file mode 100644
index 00000000..35452431
Binary files /dev/null and b/output/graphics/images.png differ
diff --git a/output/graphics/images10.png b/output/graphics/images10.png
new file mode 100644
index 00000000..2f9f3cde
Binary files /dev/null and b/output/graphics/images10.png differ
diff --git a/output/graphics/images100.png b/output/graphics/images100.png
new file mode 100644
index 00000000..b8b7bbc3
Binary files /dev/null and b/output/graphics/images100.png differ
diff --git a/output/graphics/images101.png b/output/graphics/images101.png
new file mode 100644
index 00000000..f4f89740
Binary files /dev/null and b/output/graphics/images101.png differ
diff --git a/output/graphics/images102.png b/output/graphics/images102.png
new file mode 100644
index 00000000..6fe266a0
Binary files /dev/null and b/output/graphics/images102.png differ
diff --git a/output/graphics/images103.png b/output/graphics/images103.png
new file mode 100644
index 00000000..0a73470b
Binary files /dev/null and b/output/graphics/images103.png differ
diff --git a/output/graphics/images104.png b/output/graphics/images104.png
new file mode 100644
index 00000000..ad3fcdc3
Binary files /dev/null and b/output/graphics/images104.png differ
diff --git a/output/graphics/images105.png b/output/graphics/images105.png
new file mode 100644
index 00000000..f6b330bb
Binary files /dev/null and b/output/graphics/images105.png differ
diff --git a/output/graphics/images11.png b/output/graphics/images11.png
new file mode 100644
index 00000000..e0c5a8e4
Binary files /dev/null and b/output/graphics/images11.png differ
diff --git a/output/graphics/images12.png b/output/graphics/images12.png
new file mode 100644
index 00000000..a7722e42
Binary files /dev/null and b/output/graphics/images12.png differ
diff --git a/output/graphics/images13.png b/output/graphics/images13.png
new file mode 100644
index 00000000..3c90f203
Binary files /dev/null and b/output/graphics/images13.png differ
diff --git a/output/graphics/images14.png b/output/graphics/images14.png
new file mode 100644
index 00000000..dd4d4199
Binary files /dev/null and b/output/graphics/images14.png differ
diff --git a/output/graphics/images15.png b/output/graphics/images15.png
new file mode 100644
index 00000000..50e75cd1
Binary files /dev/null and b/output/graphics/images15.png differ
diff --git a/output/graphics/images16.png b/output/graphics/images16.png
new file mode 100644
index 00000000..a1f56969
Binary files /dev/null and b/output/graphics/images16.png differ
diff --git a/output/graphics/images17.png b/output/graphics/images17.png
new file mode 100644
index 00000000..2ac3f858
Binary files /dev/null and b/output/graphics/images17.png differ
diff --git a/output/graphics/images18.png b/output/graphics/images18.png
new file mode 100644
index 00000000..93a23629
Binary files /dev/null and b/output/graphics/images18.png differ
diff --git a/output/graphics/images19.png b/output/graphics/images19.png
new file mode 100644
index 00000000..344450da
Binary files /dev/null and b/output/graphics/images19.png differ
diff --git a/output/graphics/images2.png b/output/graphics/images2.png
new file mode 100644
index 00000000..2114fb96
Binary files /dev/null and b/output/graphics/images2.png differ
diff --git a/output/graphics/images20.png b/output/graphics/images20.png
new file mode 100644
index 00000000..542dfc4e
Binary files /dev/null and b/output/graphics/images20.png differ
diff --git a/output/graphics/images21.png b/output/graphics/images21.png
new file mode 100644
index 00000000..11dc886e
Binary files /dev/null and b/output/graphics/images21.png differ
diff --git a/output/graphics/images22.png b/output/graphics/images22.png
new file mode 100644
index 00000000..20734973
Binary files /dev/null and b/output/graphics/images22.png differ
diff --git a/output/graphics/images23.png b/output/graphics/images23.png
new file mode 100644
index 00000000..820081aa
Binary files /dev/null and b/output/graphics/images23.png differ
diff --git a/output/graphics/images24.png b/output/graphics/images24.png
new file mode 100644
index 00000000..ee26e42b
Binary files /dev/null and b/output/graphics/images24.png differ
diff --git a/output/graphics/images25.png b/output/graphics/images25.png
new file mode 100644
index 00000000..75756417
Binary files /dev/null and b/output/graphics/images25.png differ
diff --git a/output/graphics/images26.png b/output/graphics/images26.png
new file mode 100644
index 00000000..6e8d73f8
Binary files /dev/null and b/output/graphics/images26.png differ
diff --git a/output/graphics/images27.png b/output/graphics/images27.png
new file mode 100644
index 00000000..73372162
Binary files /dev/null and b/output/graphics/images27.png differ
diff --git a/output/graphics/images28.png b/output/graphics/images28.png
new file mode 100644
index 00000000..aa45a771
Binary files /dev/null and b/output/graphics/images28.png differ
diff --git a/output/graphics/images29.png b/output/graphics/images29.png
new file mode 100644
index 00000000..6713ced8
Binary files /dev/null and b/output/graphics/images29.png differ
diff --git a/output/graphics/images3.png b/output/graphics/images3.png
new file mode 100644
index 00000000..bb06e828
Binary files /dev/null and b/output/graphics/images3.png differ
diff --git a/output/graphics/images30.png b/output/graphics/images30.png
new file mode 100644
index 00000000..f21c8f57
Binary files /dev/null and b/output/graphics/images30.png differ
diff --git a/output/graphics/images31.png b/output/graphics/images31.png
new file mode 100644
index 00000000..33d84a95
Binary files /dev/null and b/output/graphics/images31.png differ
diff --git a/output/graphics/images32.png b/output/graphics/images32.png
new file mode 100644
index 00000000..0abbc451
Binary files /dev/null and b/output/graphics/images32.png differ
diff --git a/output/graphics/images33.png b/output/graphics/images33.png
new file mode 100644
index 00000000..1bde39e6
Binary files /dev/null and b/output/graphics/images33.png differ
diff --git a/output/graphics/images34.png b/output/graphics/images34.png
new file mode 100644
index 00000000..a1213d41
Binary files /dev/null and b/output/graphics/images34.png differ
diff --git a/output/graphics/images35.png b/output/graphics/images35.png
new file mode 100644
index 00000000..0f9118d1
Binary files /dev/null and b/output/graphics/images35.png differ
diff --git a/output/graphics/images36.png b/output/graphics/images36.png
new file mode 100644
index 00000000..e67a8a35
Binary files /dev/null and b/output/graphics/images36.png differ
diff --git a/output/graphics/images37.png b/output/graphics/images37.png
new file mode 100644
index 00000000..c1861707
Binary files /dev/null and b/output/graphics/images37.png differ
diff --git a/output/graphics/images38.png b/output/graphics/images38.png
new file mode 100644
index 00000000..a92083e6
Binary files /dev/null and b/output/graphics/images38.png differ
diff --git a/output/graphics/images39.png b/output/graphics/images39.png
new file mode 100644
index 00000000..a5cfe038
Binary files /dev/null and b/output/graphics/images39.png differ
diff --git a/output/graphics/images4.png b/output/graphics/images4.png
new file mode 100644
index 00000000..b90e47ff
Binary files /dev/null and b/output/graphics/images4.png differ
diff --git a/output/graphics/images40.png b/output/graphics/images40.png
new file mode 100644
index 00000000..dd7cb3fd
Binary files /dev/null and b/output/graphics/images40.png differ
diff --git a/output/graphics/images41.png b/output/graphics/images41.png
new file mode 100644
index 00000000..361df20d
Binary files /dev/null and b/output/graphics/images41.png differ
diff --git a/output/graphics/images42.png b/output/graphics/images42.png
new file mode 100644
index 00000000..202ff559
Binary files /dev/null and b/output/graphics/images42.png differ
diff --git a/output/graphics/images43.png b/output/graphics/images43.png
new file mode 100644
index 00000000..93e9eb5b
Binary files /dev/null and b/output/graphics/images43.png differ
diff --git a/output/graphics/images44.png b/output/graphics/images44.png
new file mode 100644
index 00000000..dca20616
Binary files /dev/null and b/output/graphics/images44.png differ
diff --git a/output/graphics/images45.png b/output/graphics/images45.png
new file mode 100644
index 00000000..e456f274
Binary files /dev/null and b/output/graphics/images45.png differ
diff --git a/output/graphics/images46.png b/output/graphics/images46.png
new file mode 100644
index 00000000..62f7645d
Binary files /dev/null and b/output/graphics/images46.png differ
diff --git a/output/graphics/images47.png b/output/graphics/images47.png
new file mode 100644
index 00000000..7325c861
Binary files /dev/null and b/output/graphics/images47.png differ
diff --git a/output/graphics/images48.png b/output/graphics/images48.png
new file mode 100644
index 00000000..670e7de1
Binary files /dev/null and b/output/graphics/images48.png differ
diff --git a/output/graphics/images49.png b/output/graphics/images49.png
new file mode 100644
index 00000000..c60789e5
Binary files /dev/null and b/output/graphics/images49.png differ
diff --git a/output/graphics/images5.png b/output/graphics/images5.png
new file mode 100644
index 00000000..ab04cb97
Binary files /dev/null and b/output/graphics/images5.png differ
diff --git a/output/graphics/images50.png b/output/graphics/images50.png
new file mode 100644
index 00000000..f000c2af
Binary files /dev/null and b/output/graphics/images50.png differ
diff --git a/output/graphics/images51.png b/output/graphics/images51.png
new file mode 100644
index 00000000..fdd7c9c4
Binary files /dev/null and b/output/graphics/images51.png differ
diff --git a/output/graphics/images52.png b/output/graphics/images52.png
new file mode 100644
index 00000000..7575f883
Binary files /dev/null and b/output/graphics/images52.png differ
diff --git a/output/graphics/images53.png b/output/graphics/images53.png
new file mode 100644
index 00000000..1af0b296
Binary files /dev/null and b/output/graphics/images53.png differ
diff --git a/output/graphics/images54.png b/output/graphics/images54.png
new file mode 100644
index 00000000..85f447b2
Binary files /dev/null and b/output/graphics/images54.png differ
diff --git a/output/graphics/images55.png b/output/graphics/images55.png
new file mode 100644
index 00000000..288389c0
Binary files /dev/null and b/output/graphics/images55.png differ
diff --git a/output/graphics/images56.png b/output/graphics/images56.png
new file mode 100644
index 00000000..98871666
Binary files /dev/null and b/output/graphics/images56.png differ
diff --git a/output/graphics/images57.png b/output/graphics/images57.png
new file mode 100644
index 00000000..aaca9b4d
Binary files /dev/null and b/output/graphics/images57.png differ
diff --git a/output/graphics/images58.png b/output/graphics/images58.png
new file mode 100644
index 00000000..3cfb8d80
Binary files /dev/null and b/output/graphics/images58.png differ
diff --git a/output/graphics/images59.png b/output/graphics/images59.png
new file mode 100644
index 00000000..cc65c3bb
Binary files /dev/null and b/output/graphics/images59.png differ
diff --git a/output/graphics/images6.png b/output/graphics/images6.png
new file mode 100644
index 00000000..d0fd21c8
Binary files /dev/null and b/output/graphics/images6.png differ
diff --git a/output/graphics/images60.png b/output/graphics/images60.png
new file mode 100644
index 00000000..b16e6902
Binary files /dev/null and b/output/graphics/images60.png differ
diff --git a/output/graphics/images61.png b/output/graphics/images61.png
new file mode 100644
index 00000000..d1b325cf
Binary files /dev/null and b/output/graphics/images61.png differ
diff --git a/output/graphics/images62.png b/output/graphics/images62.png
new file mode 100644
index 00000000..46d59cfd
Binary files /dev/null and b/output/graphics/images62.png differ
diff --git a/output/graphics/images63.png b/output/graphics/images63.png
new file mode 100644
index 00000000..c2f591be
Binary files /dev/null and b/output/graphics/images63.png differ
diff --git a/output/graphics/images64.png b/output/graphics/images64.png
new file mode 100644
index 00000000..b1ce023a
Binary files /dev/null and b/output/graphics/images64.png differ
diff --git a/output/graphics/images65.png b/output/graphics/images65.png
new file mode 100644
index 00000000..0b22ac6d
Binary files /dev/null and b/output/graphics/images65.png differ
diff --git a/output/graphics/images66.png b/output/graphics/images66.png
new file mode 100644
index 00000000..978919af
Binary files /dev/null and b/output/graphics/images66.png differ
diff --git a/output/graphics/images67.png b/output/graphics/images67.png
new file mode 100644
index 00000000..92d78c25
Binary files /dev/null and b/output/graphics/images67.png differ
diff --git a/output/graphics/images68.png b/output/graphics/images68.png
new file mode 100644
index 00000000..cb2a537c
Binary files /dev/null and b/output/graphics/images68.png differ
diff --git a/output/graphics/images69.png b/output/graphics/images69.png
new file mode 100644
index 00000000..ff2e98fc
Binary files /dev/null and b/output/graphics/images69.png differ
diff --git a/output/graphics/images7.png b/output/graphics/images7.png
new file mode 100644
index 00000000..7c99b2d2
Binary files /dev/null and b/output/graphics/images7.png differ
diff --git a/output/graphics/images70.png b/output/graphics/images70.png
new file mode 100644
index 00000000..da5c73b7
Binary files /dev/null and b/output/graphics/images70.png differ
diff --git a/output/graphics/images71.png b/output/graphics/images71.png
new file mode 100644
index 00000000..b47cdddc
Binary files /dev/null and b/output/graphics/images71.png differ
diff --git a/output/graphics/images72.png b/output/graphics/images72.png
new file mode 100644
index 00000000..71058a15
Binary files /dev/null and b/output/graphics/images72.png differ
diff --git a/output/graphics/images73.png b/output/graphics/images73.png
new file mode 100644
index 00000000..fc59b3d4
Binary files /dev/null and b/output/graphics/images73.png differ
diff --git a/output/graphics/images74.png b/output/graphics/images74.png
new file mode 100644
index 00000000..43b0625b
Binary files /dev/null and b/output/graphics/images74.png differ
diff --git a/output/graphics/images75.png b/output/graphics/images75.png
new file mode 100644
index 00000000..29686835
Binary files /dev/null and b/output/graphics/images75.png differ
diff --git a/output/graphics/images76.png b/output/graphics/images76.png
new file mode 100644
index 00000000..c59989c9
Binary files /dev/null and b/output/graphics/images76.png differ
diff --git a/output/graphics/images77.png b/output/graphics/images77.png
new file mode 100644
index 00000000..f2ff4ef6
Binary files /dev/null and b/output/graphics/images77.png differ
diff --git a/output/graphics/images78.png b/output/graphics/images78.png
new file mode 100644
index 00000000..3cf27d80
Binary files /dev/null and b/output/graphics/images78.png differ
diff --git a/output/graphics/images79.png b/output/graphics/images79.png
new file mode 100644
index 00000000..372e7471
Binary files /dev/null and b/output/graphics/images79.png differ
diff --git a/output/graphics/images8.png b/output/graphics/images8.png
new file mode 100644
index 00000000..f2a8d23e
Binary files /dev/null and b/output/graphics/images8.png differ
diff --git a/output/graphics/images80.png b/output/graphics/images80.png
new file mode 100644
index 00000000..599e0e6e
Binary files /dev/null and b/output/graphics/images80.png differ
diff --git a/output/graphics/images81.png b/output/graphics/images81.png
new file mode 100644
index 00000000..f75a47d7
Binary files /dev/null and b/output/graphics/images81.png differ
diff --git a/output/graphics/images82.png b/output/graphics/images82.png
new file mode 100644
index 00000000..9a9a1ad1
Binary files /dev/null and b/output/graphics/images82.png differ
diff --git a/output/graphics/images83.png b/output/graphics/images83.png
new file mode 100644
index 00000000..06b2e566
Binary files /dev/null and b/output/graphics/images83.png differ
diff --git a/output/graphics/images84.png b/output/graphics/images84.png
new file mode 100644
index 00000000..4afb5ed8
Binary files /dev/null and b/output/graphics/images84.png differ
diff --git a/output/graphics/images85.png b/output/graphics/images85.png
new file mode 100644
index 00000000..f51c07ff
Binary files /dev/null and b/output/graphics/images85.png differ
diff --git a/output/graphics/images86.png b/output/graphics/images86.png
new file mode 100644
index 00000000..fb56a6c9
Binary files /dev/null and b/output/graphics/images86.png differ
diff --git a/output/graphics/images87.png b/output/graphics/images87.png
new file mode 100644
index 00000000..6a25f702
Binary files /dev/null and b/output/graphics/images87.png differ
diff --git a/output/graphics/images88.png b/output/graphics/images88.png
new file mode 100644
index 00000000..e6fabdc4
Binary files /dev/null and b/output/graphics/images88.png differ
diff --git a/output/graphics/images89.png b/output/graphics/images89.png
new file mode 100644
index 00000000..b70a29ad
Binary files /dev/null and b/output/graphics/images89.png differ
diff --git a/output/graphics/images9.png b/output/graphics/images9.png
new file mode 100644
index 00000000..29247ebb
Binary files /dev/null and b/output/graphics/images9.png differ
diff --git a/output/graphics/images90.png b/output/graphics/images90.png
new file mode 100644
index 00000000..3eb031bd
Binary files /dev/null and b/output/graphics/images90.png differ
diff --git a/output/graphics/images91.png b/output/graphics/images91.png
new file mode 100644
index 00000000..74576b3a
Binary files /dev/null and b/output/graphics/images91.png differ
diff --git a/output/graphics/images92.png b/output/graphics/images92.png
new file mode 100644
index 00000000..acca7724
Binary files /dev/null and b/output/graphics/images92.png differ
diff --git a/output/graphics/images93.png b/output/graphics/images93.png
new file mode 100644
index 00000000..9f68fa97
Binary files /dev/null and b/output/graphics/images93.png differ
diff --git a/output/graphics/images94.png b/output/graphics/images94.png
new file mode 100644
index 00000000..a365b7bb
Binary files /dev/null and b/output/graphics/images94.png differ
diff --git a/output/graphics/images95.png b/output/graphics/images95.png
new file mode 100644
index 00000000..dbc812c6
Binary files /dev/null and b/output/graphics/images95.png differ
diff --git a/output/graphics/images96.png b/output/graphics/images96.png
new file mode 100644
index 00000000..7ab8b07a
Binary files /dev/null and b/output/graphics/images96.png differ
diff --git a/output/graphics/images97.png b/output/graphics/images97.png
new file mode 100644
index 00000000..8e98e0bd
Binary files /dev/null and b/output/graphics/images97.png differ
diff --git a/output/graphics/images98.png b/output/graphics/images98.png
new file mode 100644
index 00000000..fca5a038
Binary files /dev/null and b/output/graphics/images98.png differ
diff --git a/output/graphics/images99.png b/output/graphics/images99.png
new file mode 100644
index 00000000..22511108
Binary files /dev/null and b/output/graphics/images99.png differ
diff --git a/resources/graphics/body/303.BMP b/resources/graphics/body/303.BMP
new file mode 100644
index 00000000..a94de057
Binary files /dev/null and b/resources/graphics/body/303.BMP differ
diff --git a/resources/graphics/body/320.BMP b/resources/graphics/body/320.BMP
new file mode 100644
index 00000000..3dcc8c09
Binary files /dev/null and b/resources/graphics/body/320.BMP differ
diff --git a/resources/graphics/body/321.BMP b/resources/graphics/body/321.BMP
new file mode 100644
index 00000000..f3b83eba
Binary files /dev/null and b/resources/graphics/body/321.BMP differ
diff --git a/resources/graphics/body/322.BMP b/resources/graphics/body/322.BMP
new file mode 100644
index 00000000..fca5a4ed
Binary files /dev/null and b/resources/graphics/body/322.BMP differ
diff --git a/resources/graphics/body/323.BMP b/resources/graphics/body/323.BMP
new file mode 100644
index 00000000..4391e23f
Binary files /dev/null and b/resources/graphics/body/323.BMP differ
diff --git a/resources/graphics/body/324.BMP b/resources/graphics/body/324.BMP
new file mode 100644
index 00000000..f7cb9514
Binary files /dev/null and b/resources/graphics/body/324.BMP differ
diff --git a/resources/graphics/body/326.bmp b/resources/graphics/body/326.bmp
new file mode 100644
index 00000000..a4d6c6ff
Binary files /dev/null and b/resources/graphics/body/326.bmp differ
diff --git a/resources/graphics/body/327.BMP b/resources/graphics/body/327.BMP
new file mode 100644
index 00000000..a4e535c6
Binary files /dev/null and b/resources/graphics/body/327.BMP differ
diff --git a/resources/graphics/body/330.BMP b/resources/graphics/body/330.BMP
new file mode 100644
index 00000000..403221af
Binary files /dev/null and b/resources/graphics/body/330.BMP differ
diff --git a/resources/graphics/body/332.BMP b/resources/graphics/body/332.BMP
new file mode 100644
index 00000000..f703ddcc
Binary files /dev/null and b/resources/graphics/body/332.BMP differ
diff --git a/resources/graphics/body/333.BMP b/resources/graphics/body/333.BMP
new file mode 100644
index 00000000..f2cca9e4
Binary files /dev/null and b/resources/graphics/body/333.BMP differ
diff --git a/resources/graphics/body/334.BMP b/resources/graphics/body/334.BMP
new file mode 100644
index 00000000..765da682
Binary files /dev/null and b/resources/graphics/body/334.BMP differ
diff --git a/resources/graphics/body/339.BMP b/resources/graphics/body/339.BMP
new file mode 100644
index 00000000..b91e6e1b
Binary files /dev/null and b/resources/graphics/body/339.BMP differ
diff --git a/resources/graphics/body/340.BMP b/resources/graphics/body/340.BMP
new file mode 100644
index 00000000..4b83a895
Binary files /dev/null and b/resources/graphics/body/340.BMP differ
diff --git a/resources/graphics/body/341.BMP b/resources/graphics/body/341.BMP
new file mode 100644
index 00000000..a270a36d
Binary files /dev/null and b/resources/graphics/body/341.BMP differ
diff --git a/resources/graphics/body/342.BMP b/resources/graphics/body/342.BMP
new file mode 100644
index 00000000..2ff70d15
Binary files /dev/null and b/resources/graphics/body/342.BMP differ
diff --git a/resources/graphics/body/343.bmp b/resources/graphics/body/343.bmp
new file mode 100644
index 00000000..a834e039
Binary files /dev/null and b/resources/graphics/body/343.bmp differ
diff --git a/resources/graphics/body/344.BMP b/resources/graphics/body/344.BMP
new file mode 100644
index 00000000..40e0880a
Binary files /dev/null and b/resources/graphics/body/344.BMP differ
diff --git a/resources/graphics/body/345.BMP b/resources/graphics/body/345.BMP
new file mode 100644
index 00000000..c226a984
Binary files /dev/null and b/resources/graphics/body/345.BMP differ
diff --git a/resources/graphics/body/347.BMP b/resources/graphics/body/347.BMP
new file mode 100644
index 00000000..25de0801
Binary files /dev/null and b/resources/graphics/body/347.BMP differ
diff --git a/resources/graphics/body/348.BMP b/resources/graphics/body/348.BMP
new file mode 100644
index 00000000..05b4e8c7
Binary files /dev/null and b/resources/graphics/body/348.BMP differ
diff --git a/resources/graphics/body/350.BMP b/resources/graphics/body/350.BMP
new file mode 100644
index 00000000..d1fc9595
Binary files /dev/null and b/resources/graphics/body/350.BMP differ
diff --git a/resources/graphics/body/351.bmp b/resources/graphics/body/351.bmp
new file mode 100644
index 00000000..fff5571d
Binary files /dev/null and b/resources/graphics/body/351.bmp differ
diff --git a/resources/graphics/body/352.BMP b/resources/graphics/body/352.BMP
new file mode 100644
index 00000000..e6cc4239
Binary files /dev/null and b/resources/graphics/body/352.BMP differ
diff --git a/resources/graphics/body/353.BMP b/resources/graphics/body/353.BMP
new file mode 100644
index 00000000..04ca0bf4
Binary files /dev/null and b/resources/graphics/body/353.BMP differ
diff --git a/resources/graphics/body/354.BMP b/resources/graphics/body/354.BMP
new file mode 100644
index 00000000..e98125b3
Binary files /dev/null and b/resources/graphics/body/354.BMP differ
diff --git a/resources/graphics/body/374.BMP b/resources/graphics/body/374.BMP
new file mode 100644
index 00000000..bd2ddfca
Binary files /dev/null and b/resources/graphics/body/374.BMP differ
diff --git a/resources/graphics/body/375.BMP b/resources/graphics/body/375.BMP
new file mode 100644
index 00000000..e58199a3
Binary files /dev/null and b/resources/graphics/body/375.BMP differ
diff --git a/resources/graphics/body/376.BMP b/resources/graphics/body/376.BMP
new file mode 100644
index 00000000..e76bac9c
Binary files /dev/null and b/resources/graphics/body/376.BMP differ
diff --git a/resources/graphics/body/377.BMP b/resources/graphics/body/377.BMP
new file mode 100644
index 00000000..4ec1636b
Binary files /dev/null and b/resources/graphics/body/377.BMP differ
diff --git a/resources/graphics/body/378.BMP b/resources/graphics/body/378.BMP
new file mode 100644
index 00000000..3b834dd0
Binary files /dev/null and b/resources/graphics/body/378.BMP differ
diff --git a/resources/graphics/body/381.BMP b/resources/graphics/body/381.BMP
new file mode 100644
index 00000000..aba6c897
Binary files /dev/null and b/resources/graphics/body/381.BMP differ
diff --git a/resources/graphics/body/382.BMP b/resources/graphics/body/382.BMP
new file mode 100644
index 00000000..d6422caa
Binary files /dev/null and b/resources/graphics/body/382.BMP differ
diff --git a/resources/graphics/body/383.BMP b/resources/graphics/body/383.BMP
new file mode 100644
index 00000000..e637b5d8
Binary files /dev/null and b/resources/graphics/body/383.BMP differ
diff --git a/resources/graphics/body/384.BMP b/resources/graphics/body/384.BMP
new file mode 100644
index 00000000..bc76226c
Binary files /dev/null and b/resources/graphics/body/384.BMP differ
diff --git a/resources/graphics/body/385.BMP b/resources/graphics/body/385.BMP
new file mode 100644
index 00000000..6da81b31
Binary files /dev/null and b/resources/graphics/body/385.BMP differ
diff --git a/resources/graphics/body/391.BMP b/resources/graphics/body/391.BMP
new file mode 100644
index 00000000..c21226f2
Binary files /dev/null and b/resources/graphics/body/391.BMP differ
diff --git a/resources/graphics/body/392.BMP b/resources/graphics/body/392.BMP
new file mode 100644
index 00000000..dcccd640
Binary files /dev/null and b/resources/graphics/body/392.BMP differ
diff --git a/resources/graphics/body/393.BMP b/resources/graphics/body/393.BMP
new file mode 100644
index 00000000..9f64b2de
Binary files /dev/null and b/resources/graphics/body/393.BMP differ
diff --git a/resources/graphics/body/394.BMP b/resources/graphics/body/394.BMP
new file mode 100644
index 00000000..c3144b89
Binary files /dev/null and b/resources/graphics/body/394.BMP differ
diff --git a/resources/graphics/body/8009.bmp b/resources/graphics/body/8009.bmp
new file mode 100644
index 00000000..b476f491
Binary files /dev/null and b/resources/graphics/body/8009.bmp differ
diff --git a/resources/graphics/body/8010.bmp b/resources/graphics/body/8010.bmp
new file mode 100644
index 00000000..50581786
Binary files /dev/null and b/resources/graphics/body/8010.bmp differ
diff --git a/resources/graphics/body/8011.bmp b/resources/graphics/body/8011.bmp
new file mode 100644
index 00000000..68f1230d
Binary files /dev/null and b/resources/graphics/body/8011.bmp differ
diff --git a/resources/graphics/body/8012.bmp b/resources/graphics/body/8012.bmp
new file mode 100644
index 00000000..875396e1
Binary files /dev/null and b/resources/graphics/body/8012.bmp differ
diff --git a/resources/graphics/body/8013.bmp b/resources/graphics/body/8013.bmp
new file mode 100644
index 00000000..76f814da
Binary files /dev/null and b/resources/graphics/body/8013.bmp differ
diff --git a/resources/graphics/body/8014.bmp b/resources/graphics/body/8014.bmp
new file mode 100644
index 00000000..84950551
Binary files /dev/null and b/resources/graphics/body/8014.bmp differ
diff --git a/resources/graphics/body/8015.bmp b/resources/graphics/body/8015.bmp
new file mode 100644
index 00000000..1cc87370
Binary files /dev/null and b/resources/graphics/body/8015.bmp differ
diff --git a/resources/graphics/body/8016.bmp b/resources/graphics/body/8016.bmp
new file mode 100644
index 00000000..8e449279
Binary files /dev/null and b/resources/graphics/body/8016.bmp differ
diff --git a/resources/graphics/body/8017.bmp b/resources/graphics/body/8017.bmp
new file mode 100644
index 00000000..86ffa5a5
Binary files /dev/null and b/resources/graphics/body/8017.bmp differ
diff --git a/resources/graphics/body/8018.bmp b/resources/graphics/body/8018.bmp
new file mode 100644
index 00000000..f91895b9
Binary files /dev/null and b/resources/graphics/body/8018.bmp differ
diff --git a/resources/graphics/body/8023.bmp b/resources/graphics/body/8023.bmp
new file mode 100644
index 00000000..e859bb86
Binary files /dev/null and b/resources/graphics/body/8023.bmp differ
diff --git a/resources/graphics/body/8024.bmp b/resources/graphics/body/8024.bmp
new file mode 100644
index 00000000..d77527be
Binary files /dev/null and b/resources/graphics/body/8024.bmp differ
diff --git a/resources/graphics/body/8025.bmp b/resources/graphics/body/8025.bmp
new file mode 100644
index 00000000..42465cea
Binary files /dev/null and b/resources/graphics/body/8025.bmp differ
diff --git a/resources/graphics/body/8026.bmp b/resources/graphics/body/8026.bmp
new file mode 100644
index 00000000..1bf80818
Binary files /dev/null and b/resources/graphics/body/8026.bmp differ
diff --git a/resources/graphics/body/8027.bmp b/resources/graphics/body/8027.bmp
new file mode 100644
index 00000000..5b2ef8be
Binary files /dev/null and b/resources/graphics/body/8027.bmp differ
diff --git a/resources/graphics/body/8028.bmp b/resources/graphics/body/8028.bmp
new file mode 100644
index 00000000..f564f392
Binary files /dev/null and b/resources/graphics/body/8028.bmp differ
diff --git a/resources/graphics/body/8029.bmp b/resources/graphics/body/8029.bmp
new file mode 100644
index 00000000..3b94bb5c
Binary files /dev/null and b/resources/graphics/body/8029.bmp differ
diff --git a/resources/graphics/body/8030.bmp b/resources/graphics/body/8030.bmp
new file mode 100644
index 00000000..2e971ca8
Binary files /dev/null and b/resources/graphics/body/8030.bmp differ
diff --git a/resources/graphics/body/8031.bmp b/resources/graphics/body/8031.bmp
new file mode 100644
index 00000000..535dce20
Binary files /dev/null and b/resources/graphics/body/8031.bmp differ
diff --git a/resources/graphics/body/8032.bmp b/resources/graphics/body/8032.bmp
new file mode 100644
index 00000000..00c11927
Binary files /dev/null and b/resources/graphics/body/8032.bmp differ
diff --git a/resources/graphics/body/8033.bmp b/resources/graphics/body/8033.bmp
new file mode 100644
index 00000000..ae08efb6
Binary files /dev/null and b/resources/graphics/body/8033.bmp differ
diff --git a/resources/graphics/body/8034.bmp b/resources/graphics/body/8034.bmp
new file mode 100644
index 00000000..0d3bf13a
Binary files /dev/null and b/resources/graphics/body/8034.bmp differ
diff --git a/resources/graphics/body/8035.bmp b/resources/graphics/body/8035.bmp
new file mode 100644
index 00000000..11a94286
Binary files /dev/null and b/resources/graphics/body/8035.bmp differ
diff --git a/resources/graphics/body/8036.bmp b/resources/graphics/body/8036.bmp
new file mode 100644
index 00000000..501423c4
Binary files /dev/null and b/resources/graphics/body/8036.bmp differ
diff --git a/resources/graphics/body/8037.bmp b/resources/graphics/body/8037.bmp
new file mode 100644
index 00000000..0ddf0e19
Binary files /dev/null and b/resources/graphics/body/8037.bmp differ
diff --git a/resources/graphics/body/8038.bmp b/resources/graphics/body/8038.bmp
new file mode 100644
index 00000000..0f8ca0bc
Binary files /dev/null and b/resources/graphics/body/8038.bmp differ
diff --git a/resources/graphics/body/8039.bmp b/resources/graphics/body/8039.bmp
new file mode 100644
index 00000000..4bbad0a4
Binary files /dev/null and b/resources/graphics/body/8039.bmp differ
diff --git a/resources/graphics/body/8040.bmp b/resources/graphics/body/8040.bmp
new file mode 100644
index 00000000..30b8912c
Binary files /dev/null and b/resources/graphics/body/8040.bmp differ
diff --git a/resources/graphics/body/8041.bmp b/resources/graphics/body/8041.bmp
new file mode 100644
index 00000000..f129c355
Binary files /dev/null and b/resources/graphics/body/8041.bmp differ
diff --git a/resources/graphics/body/8042.bmp b/resources/graphics/body/8042.bmp
new file mode 100644
index 00000000..e1fea89a
Binary files /dev/null and b/resources/graphics/body/8042.bmp differ
diff --git a/resources/graphics/body/8043.bmp b/resources/graphics/body/8043.bmp
new file mode 100644
index 00000000..ef5acc63
Binary files /dev/null and b/resources/graphics/body/8043.bmp differ
diff --git a/resources/graphics/body/8044.bmp b/resources/graphics/body/8044.bmp
new file mode 100644
index 00000000..f0b886c5
Binary files /dev/null and b/resources/graphics/body/8044.bmp differ
diff --git a/resources/graphics/body/8045.bmp b/resources/graphics/body/8045.bmp
new file mode 100644
index 00000000..3b4bfe97
Binary files /dev/null and b/resources/graphics/body/8045.bmp differ
diff --git a/resources/graphics/body/8046.bmp b/resources/graphics/body/8046.bmp
new file mode 100644
index 00000000..e0eb31fb
Binary files /dev/null and b/resources/graphics/body/8046.bmp differ
diff --git a/resources/graphics/body/8047.bmp b/resources/graphics/body/8047.bmp
new file mode 100644
index 00000000..28f728c8
Binary files /dev/null and b/resources/graphics/body/8047.bmp differ
diff --git a/resources/graphics/body/8048.bmp b/resources/graphics/body/8048.bmp
new file mode 100644
index 00000000..849b3453
Binary files /dev/null and b/resources/graphics/body/8048.bmp differ
diff --git a/resources/graphics/body/8049.bmp b/resources/graphics/body/8049.bmp
new file mode 100644
index 00000000..462e9c7d
Binary files /dev/null and b/resources/graphics/body/8049.bmp differ
diff --git a/resources/graphics/body/8050.bmp b/resources/graphics/body/8050.bmp
new file mode 100644
index 00000000..dd75868a
Binary files /dev/null and b/resources/graphics/body/8050.bmp differ
diff --git a/resources/graphics/body/8051.bmp b/resources/graphics/body/8051.bmp
new file mode 100644
index 00000000..05ce3528
Binary files /dev/null and b/resources/graphics/body/8051.bmp differ
diff --git a/resources/graphics/body/8052.bmp b/resources/graphics/body/8052.bmp
new file mode 100644
index 00000000..2133c31c
Binary files /dev/null and b/resources/graphics/body/8052.bmp differ
diff --git a/resources/graphics/body/8053.bmp b/resources/graphics/body/8053.bmp
new file mode 100644
index 00000000..37556c25
Binary files /dev/null and b/resources/graphics/body/8053.bmp differ
diff --git a/resources/graphics/body/8054.bmp b/resources/graphics/body/8054.bmp
new file mode 100644
index 00000000..78252031
Binary files /dev/null and b/resources/graphics/body/8054.bmp differ
diff --git a/resources/graphics/body/8055.bmp b/resources/graphics/body/8055.bmp
new file mode 100644
index 00000000..b8d43318
Binary files /dev/null and b/resources/graphics/body/8055.bmp differ
diff --git a/resources/graphics/body/8056.bmp b/resources/graphics/body/8056.bmp
new file mode 100644
index 00000000..890a3d05
Binary files /dev/null and b/resources/graphics/body/8056.bmp differ
diff --git a/resources/graphics/body/8057.bmp b/resources/graphics/body/8057.bmp
new file mode 100644
index 00000000..8a9458dd
Binary files /dev/null and b/resources/graphics/body/8057.bmp differ
diff --git a/resources/graphics/body/8058.bmp b/resources/graphics/body/8058.bmp
new file mode 100644
index 00000000..9a0d2ad7
Binary files /dev/null and b/resources/graphics/body/8058.bmp differ
diff --git a/resources/graphics/body/8059.bmp b/resources/graphics/body/8059.bmp
new file mode 100644
index 00000000..c6778536
Binary files /dev/null and b/resources/graphics/body/8059.bmp differ
diff --git a/resources/graphics/body/8060.bmp b/resources/graphics/body/8060.bmp
new file mode 100644
index 00000000..3fe087e8
Binary files /dev/null and b/resources/graphics/body/8060.bmp differ
diff --git a/resources/graphics/body/8061.bmp b/resources/graphics/body/8061.bmp
new file mode 100644
index 00000000..92e3d11b
Binary files /dev/null and b/resources/graphics/body/8061.bmp differ
diff --git a/resources/graphics/body/8062.bmp b/resources/graphics/body/8062.bmp
new file mode 100644
index 00000000..3cf413da
Binary files /dev/null and b/resources/graphics/body/8062.bmp differ
diff --git a/resources/graphics/body/8063.bmp b/resources/graphics/body/8063.bmp
new file mode 100644
index 00000000..070a8805
Binary files /dev/null and b/resources/graphics/body/8063.bmp differ
diff --git a/resources/graphics/body/8064.bmp b/resources/graphics/body/8064.bmp
new file mode 100644
index 00000000..e97cbaf8
Binary files /dev/null and b/resources/graphics/body/8064.bmp differ
diff --git a/resources/graphics/body/8201.bmp b/resources/graphics/body/8201.bmp
new file mode 100644
index 00000000..96f7b771
Binary files /dev/null and b/resources/graphics/body/8201.bmp differ
diff --git a/resources/graphics/class/ASESINO.JPG b/resources/graphics/class/ASESINO.JPG
new file mode 100644
index 00000000..df7f957a
Binary files /dev/null and b/resources/graphics/class/ASESINO.JPG differ
diff --git a/resources/graphics/class/BANDIDO.JPG b/resources/graphics/class/BANDIDO.JPG
new file mode 100644
index 00000000..f49e1e33
Binary files /dev/null and b/resources/graphics/class/BANDIDO.JPG differ
diff --git a/resources/graphics/class/BARDO.JPG b/resources/graphics/class/BARDO.JPG
new file mode 100644
index 00000000..b7eec6e6
Binary files /dev/null and b/resources/graphics/class/BARDO.JPG differ
diff --git a/resources/graphics/class/CAZADOR.JPG b/resources/graphics/class/CAZADOR.JPG
new file mode 100644
index 00000000..c27d4079
Binary files /dev/null and b/resources/graphics/class/CAZADOR.JPG differ
diff --git a/resources/graphics/class/CLERIGO.JPG b/resources/graphics/class/CLERIGO.JPG
new file mode 100644
index 00000000..b0ffa4c5
Binary files /dev/null and b/resources/graphics/class/CLERIGO.JPG differ
diff --git a/resources/graphics/class/COCINERO.JPG b/resources/graphics/class/COCINERO.JPG
new file mode 100644
index 00000000..7ce0f131
Binary files /dev/null and b/resources/graphics/class/COCINERO.JPG differ
diff --git a/resources/graphics/class/DRUIDA.JPG b/resources/graphics/class/DRUIDA.JPG
new file mode 100644
index 00000000..2288313c
Binary files /dev/null and b/resources/graphics/class/DRUIDA.JPG differ
diff --git a/resources/graphics/class/GUERRERO.JPG b/resources/graphics/class/GUERRERO.JPG
new file mode 100644
index 00000000..067f2b13
Binary files /dev/null and b/resources/graphics/class/GUERRERO.JPG differ
diff --git a/resources/graphics/class/HERRERO.JPG b/resources/graphics/class/HERRERO.JPG
new file mode 100644
index 00000000..5ef3719b
Binary files /dev/null and b/resources/graphics/class/HERRERO.JPG differ
diff --git a/resources/graphics/class/LADRON.JPG b/resources/graphics/class/LADRON.JPG
new file mode 100644
index 00000000..62bb41c1
Binary files /dev/null and b/resources/graphics/class/LADRON.JPG differ
diff --git a/resources/graphics/class/MAGO.JPG b/resources/graphics/class/MAGO.JPG
new file mode 100644
index 00000000..c7e66322
Binary files /dev/null and b/resources/graphics/class/MAGO.JPG differ
diff --git a/resources/graphics/class/MINERO.JPG b/resources/graphics/class/MINERO.JPG
new file mode 100644
index 00000000..2322edf3
Binary files /dev/null and b/resources/graphics/class/MINERO.JPG differ
diff --git a/resources/graphics/class/PALADIN.JPG b/resources/graphics/class/PALADIN.JPG
new file mode 100644
index 00000000..3c23d7e4
Binary files /dev/null and b/resources/graphics/class/PALADIN.JPG differ
diff --git a/resources/graphics/class/PESCADOR.JPG b/resources/graphics/class/PESCADOR.JPG
new file mode 100644
index 00000000..4064af54
Binary files /dev/null and b/resources/graphics/class/PESCADOR.JPG differ
diff --git a/resources/graphics/class/SASTRE.JPG b/resources/graphics/class/SASTRE.JPG
new file mode 100644
index 00000000..05dc0d7a
Binary files /dev/null and b/resources/graphics/class/SASTRE.JPG differ
diff --git a/resources/graphics/class/carpintero.jpg b/resources/graphics/class/carpintero.jpg
new file mode 100644
index 00000000..4d5d2db8
Binary files /dev/null and b/resources/graphics/class/carpintero.jpg differ
diff --git "a/resources/graphics/class/len\314\203ador.jpg" "b/resources/graphics/class/len\314\203ador.jpg"
new file mode 100644
index 00000000..befe1333
Binary files /dev/null and "b/resources/graphics/class/len\314\203ador.jpg" differ
diff --git "a/resources/graphics/class/le\303\261ador.jpg" "b/resources/graphics/class/le\303\261ador.jpg"
new file mode 100644
index 00000000..befe1333
Binary files /dev/null and "b/resources/graphics/class/le\303\261ador.jpg" differ
diff --git a/resources/graphics/fx/100.BMP b/resources/graphics/fx/100.BMP
new file mode 100644
index 00000000..aaf4ea7e
Binary files /dev/null and b/resources/graphics/fx/100.BMP differ
diff --git a/resources/graphics/fx/101.BMP b/resources/graphics/fx/101.BMP
new file mode 100644
index 00000000..60342f63
Binary files /dev/null and b/resources/graphics/fx/101.BMP differ
diff --git a/resources/graphics/fx/102.BMP b/resources/graphics/fx/102.BMP
new file mode 100644
index 00000000..343db5b1
Binary files /dev/null and b/resources/graphics/fx/102.BMP differ
diff --git a/resources/graphics/fx/103.BMP b/resources/graphics/fx/103.BMP
new file mode 100644
index 00000000..b7f48b45
Binary files /dev/null and b/resources/graphics/fx/103.BMP differ
diff --git a/resources/graphics/fx/104.BMP b/resources/graphics/fx/104.BMP
new file mode 100644
index 00000000..eb528b8a
Binary files /dev/null and b/resources/graphics/fx/104.BMP differ
diff --git a/resources/graphics/fx/105.BMP b/resources/graphics/fx/105.BMP
new file mode 100644
index 00000000..544b56a4
Binary files /dev/null and b/resources/graphics/fx/105.BMP differ
diff --git a/resources/graphics/fx/106.BMP b/resources/graphics/fx/106.BMP
new file mode 100644
index 00000000..6e09dcde
Binary files /dev/null and b/resources/graphics/fx/106.BMP differ
diff --git a/resources/graphics/fx/107.BMP b/resources/graphics/fx/107.BMP
new file mode 100644
index 00000000..2d4e3368
Binary files /dev/null and b/resources/graphics/fx/107.BMP differ
diff --git a/resources/graphics/fx/108.BMP b/resources/graphics/fx/108.BMP
new file mode 100644
index 00000000..04ac9ce7
Binary files /dev/null and b/resources/graphics/fx/108.BMP differ
diff --git a/resources/graphics/fx/109.BMP b/resources/graphics/fx/109.BMP
new file mode 100644
index 00000000..b9cf8ec6
Binary files /dev/null and b/resources/graphics/fx/109.BMP differ
diff --git a/resources/graphics/fx/110.BMP b/resources/graphics/fx/110.BMP
new file mode 100644
index 00000000..685f9e99
Binary files /dev/null and b/resources/graphics/fx/110.BMP differ
diff --git a/resources/graphics/fx/111.BMP b/resources/graphics/fx/111.BMP
new file mode 100644
index 00000000..b9ecd5a2
Binary files /dev/null and b/resources/graphics/fx/111.BMP differ
diff --git a/resources/graphics/fx/112.BMP b/resources/graphics/fx/112.BMP
new file mode 100644
index 00000000..dab349c6
Binary files /dev/null and b/resources/graphics/fx/112.BMP differ
diff --git a/resources/graphics/fx/113.BMP b/resources/graphics/fx/113.BMP
new file mode 100644
index 00000000..a070ba7b
Binary files /dev/null and b/resources/graphics/fx/113.BMP differ
diff --git a/resources/graphics/fx/114.BMP b/resources/graphics/fx/114.BMP
new file mode 100644
index 00000000..ab853eb9
Binary files /dev/null and b/resources/graphics/fx/114.BMP differ
diff --git a/resources/graphics/fx/115.BMP b/resources/graphics/fx/115.BMP
new file mode 100644
index 00000000..65adad1f
Binary files /dev/null and b/resources/graphics/fx/115.BMP differ
diff --git a/resources/graphics/fx/117.BMP b/resources/graphics/fx/117.BMP
new file mode 100644
index 00000000..51f77ca9
Binary files /dev/null and b/resources/graphics/fx/117.BMP differ
diff --git a/resources/graphics/fx/118.BMP b/resources/graphics/fx/118.BMP
new file mode 100644
index 00000000..05d0e192
Binary files /dev/null and b/resources/graphics/fx/118.BMP differ
diff --git a/resources/graphics/fx/119.BMP b/resources/graphics/fx/119.BMP
new file mode 100644
index 00000000..e78748d7
Binary files /dev/null and b/resources/graphics/fx/119.BMP differ
diff --git a/resources/graphics/fx/120.BMP b/resources/graphics/fx/120.BMP
new file mode 100644
index 00000000..1e160839
Binary files /dev/null and b/resources/graphics/fx/120.BMP differ
diff --git a/resources/graphics/fx/121.BMP b/resources/graphics/fx/121.BMP
new file mode 100644
index 00000000..803562bf
Binary files /dev/null and b/resources/graphics/fx/121.BMP differ
diff --git a/resources/graphics/fx/122.BMP b/resources/graphics/fx/122.BMP
new file mode 100644
index 00000000..b93951e6
Binary files /dev/null and b/resources/graphics/fx/122.BMP differ
diff --git a/resources/graphics/fx/123.BMP b/resources/graphics/fx/123.BMP
new file mode 100644
index 00000000..7d38aa11
Binary files /dev/null and b/resources/graphics/fx/123.BMP differ
diff --git a/resources/graphics/fx/124.BMP b/resources/graphics/fx/124.BMP
new file mode 100644
index 00000000..57ab4391
Binary files /dev/null and b/resources/graphics/fx/124.BMP differ
diff --git a/resources/graphics/fx/125.BMP b/resources/graphics/fx/125.BMP
new file mode 100644
index 00000000..10745c58
Binary files /dev/null and b/resources/graphics/fx/125.BMP differ
diff --git a/resources/graphics/fx/126.BMP b/resources/graphics/fx/126.BMP
new file mode 100644
index 00000000..44122cbb
Binary files /dev/null and b/resources/graphics/fx/126.BMP differ
diff --git a/resources/graphics/fx/127.BMP b/resources/graphics/fx/127.BMP
new file mode 100644
index 00000000..e2e8a970
Binary files /dev/null and b/resources/graphics/fx/127.BMP differ
diff --git a/resources/graphics/fx/128.BMP b/resources/graphics/fx/128.BMP
new file mode 100644
index 00000000..e15cbce3
Binary files /dev/null and b/resources/graphics/fx/128.BMP differ
diff --git a/resources/graphics/fx/129.BMP b/resources/graphics/fx/129.BMP
new file mode 100644
index 00000000..0da70acb
Binary files /dev/null and b/resources/graphics/fx/129.BMP differ
diff --git a/resources/graphics/fx/130.BMP b/resources/graphics/fx/130.BMP
new file mode 100644
index 00000000..4c761085
Binary files /dev/null and b/resources/graphics/fx/130.BMP differ
diff --git a/resources/graphics/fx/131.BMP b/resources/graphics/fx/131.BMP
new file mode 100644
index 00000000..4109ea78
Binary files /dev/null and b/resources/graphics/fx/131.BMP differ
diff --git a/resources/graphics/fx/132.BMP b/resources/graphics/fx/132.BMP
new file mode 100644
index 00000000..3b71e309
Binary files /dev/null and b/resources/graphics/fx/132.BMP differ
diff --git a/resources/graphics/fx/133.BMP b/resources/graphics/fx/133.BMP
new file mode 100644
index 00000000..0b0ce1d3
Binary files /dev/null and b/resources/graphics/fx/133.BMP differ
diff --git a/resources/graphics/fx/134.BMP b/resources/graphics/fx/134.BMP
new file mode 100644
index 00000000..e691e3db
Binary files /dev/null and b/resources/graphics/fx/134.BMP differ
diff --git a/resources/graphics/fx/135.BMP b/resources/graphics/fx/135.BMP
new file mode 100644
index 00000000..b258a410
Binary files /dev/null and b/resources/graphics/fx/135.BMP differ
diff --git a/resources/graphics/fx/136.BMP b/resources/graphics/fx/136.BMP
new file mode 100644
index 00000000..125fe69d
Binary files /dev/null and b/resources/graphics/fx/136.BMP differ
diff --git a/resources/graphics/fx/137.BMP b/resources/graphics/fx/137.BMP
new file mode 100644
index 00000000..93d2c96e
Binary files /dev/null and b/resources/graphics/fx/137.BMP differ
diff --git a/resources/graphics/fx/138.BMP b/resources/graphics/fx/138.BMP
new file mode 100644
index 00000000..c5520c50
Binary files /dev/null and b/resources/graphics/fx/138.BMP differ
diff --git a/resources/graphics/fx/139.bmp b/resources/graphics/fx/139.bmp
new file mode 100644
index 00000000..6df5cd29
Binary files /dev/null and b/resources/graphics/fx/139.bmp differ
diff --git a/resources/graphics/fx/140.bmp b/resources/graphics/fx/140.bmp
new file mode 100644
index 00000000..de48f58d
Binary files /dev/null and b/resources/graphics/fx/140.bmp differ
diff --git a/resources/graphics/fx/141.bmp b/resources/graphics/fx/141.bmp
new file mode 100644
index 00000000..c39317fc
Binary files /dev/null and b/resources/graphics/fx/141.bmp differ
diff --git a/resources/graphics/fx/142.bmp b/resources/graphics/fx/142.bmp
new file mode 100644
index 00000000..64f5a007
Binary files /dev/null and b/resources/graphics/fx/142.bmp differ
diff --git a/resources/graphics/fx/143.bmp b/resources/graphics/fx/143.bmp
new file mode 100644
index 00000000..311e7812
Binary files /dev/null and b/resources/graphics/fx/143.bmp differ
diff --git a/resources/graphics/fx/144.bmp b/resources/graphics/fx/144.bmp
new file mode 100644
index 00000000..185d70cf
Binary files /dev/null and b/resources/graphics/fx/144.bmp differ
diff --git a/resources/graphics/fx/145.bmp b/resources/graphics/fx/145.bmp
new file mode 100644
index 00000000..233a37ac
Binary files /dev/null and b/resources/graphics/fx/145.bmp differ
diff --git a/resources/graphics/fx/146.bmp b/resources/graphics/fx/146.bmp
new file mode 100644
index 00000000..6f452a88
Binary files /dev/null and b/resources/graphics/fx/146.bmp differ
diff --git a/resources/graphics/fx/147.bmp b/resources/graphics/fx/147.bmp
new file mode 100644
index 00000000..b6a4932c
Binary files /dev/null and b/resources/graphics/fx/147.bmp differ
diff --git a/resources/graphics/fx/148.bmp b/resources/graphics/fx/148.bmp
new file mode 100644
index 00000000..6144db0f
Binary files /dev/null and b/resources/graphics/fx/148.bmp differ
diff --git a/resources/graphics/fx/149.bmp b/resources/graphics/fx/149.bmp
new file mode 100644
index 00000000..a52f4afc
Binary files /dev/null and b/resources/graphics/fx/149.bmp differ
diff --git a/resources/graphics/fx/150.bmp b/resources/graphics/fx/150.bmp
new file mode 100644
index 00000000..c20252da
Binary files /dev/null and b/resources/graphics/fx/150.bmp differ
diff --git a/resources/graphics/fx/151.bmp b/resources/graphics/fx/151.bmp
new file mode 100644
index 00000000..f7cfb019
Binary files /dev/null and b/resources/graphics/fx/151.bmp differ
diff --git a/resources/graphics/fx/152.bmp b/resources/graphics/fx/152.bmp
new file mode 100644
index 00000000..e205ddb8
Binary files /dev/null and b/resources/graphics/fx/152.bmp differ
diff --git a/resources/graphics/fx/153.bmp b/resources/graphics/fx/153.bmp
new file mode 100644
index 00000000..85958b06
Binary files /dev/null and b/resources/graphics/fx/153.bmp differ
diff --git a/resources/graphics/fx/154.bmp b/resources/graphics/fx/154.bmp
new file mode 100644
index 00000000..72835a54
Binary files /dev/null and b/resources/graphics/fx/154.bmp differ
diff --git a/resources/graphics/fx/155.bmp b/resources/graphics/fx/155.bmp
new file mode 100644
index 00000000..94abcc5a
Binary files /dev/null and b/resources/graphics/fx/155.bmp differ
diff --git a/resources/graphics/fx/156.bmp b/resources/graphics/fx/156.bmp
new file mode 100644
index 00000000..0d62a90b
Binary files /dev/null and b/resources/graphics/fx/156.bmp differ
diff --git a/resources/graphics/fx/157.bmp b/resources/graphics/fx/157.bmp
new file mode 100644
index 00000000..880e1c2d
Binary files /dev/null and b/resources/graphics/fx/157.bmp differ
diff --git a/resources/graphics/fx/158.bmp b/resources/graphics/fx/158.bmp
new file mode 100644
index 00000000..30c60d3a
Binary files /dev/null and b/resources/graphics/fx/158.bmp differ
diff --git a/resources/graphics/fx/159.bmp b/resources/graphics/fx/159.bmp
new file mode 100644
index 00000000..ad8c765f
Binary files /dev/null and b/resources/graphics/fx/159.bmp differ
diff --git a/resources/graphics/fx/160.bmp b/resources/graphics/fx/160.bmp
new file mode 100644
index 00000000..f83af5ec
Binary files /dev/null and b/resources/graphics/fx/160.bmp differ
diff --git a/resources/graphics/fx/161.bmp b/resources/graphics/fx/161.bmp
new file mode 100644
index 00000000..b5ece37f
Binary files /dev/null and b/resources/graphics/fx/161.bmp differ
diff --git a/resources/graphics/fx/162.bmp b/resources/graphics/fx/162.bmp
new file mode 100644
index 00000000..964b7b79
Binary files /dev/null and b/resources/graphics/fx/162.bmp differ
diff --git a/resources/graphics/fx/163.bmp b/resources/graphics/fx/163.bmp
new file mode 100644
index 00000000..8c507b50
Binary files /dev/null and b/resources/graphics/fx/163.bmp differ
diff --git a/resources/graphics/fx/164.bmp b/resources/graphics/fx/164.bmp
new file mode 100644
index 00000000..4885fad1
Binary files /dev/null and b/resources/graphics/fx/164.bmp differ
diff --git a/resources/graphics/fx/165.bmp b/resources/graphics/fx/165.bmp
new file mode 100644
index 00000000..aeeba9c1
Binary files /dev/null and b/resources/graphics/fx/165.bmp differ
diff --git a/resources/graphics/fx/166.bmp b/resources/graphics/fx/166.bmp
new file mode 100644
index 00000000..f407c87f
Binary files /dev/null and b/resources/graphics/fx/166.bmp differ
diff --git a/resources/graphics/fx/167.bmp b/resources/graphics/fx/167.bmp
new file mode 100644
index 00000000..52f6969f
Binary files /dev/null and b/resources/graphics/fx/167.bmp differ
diff --git a/resources/graphics/fx/168.bmp b/resources/graphics/fx/168.bmp
new file mode 100644
index 00000000..7b980822
Binary files /dev/null and b/resources/graphics/fx/168.bmp differ
diff --git a/resources/graphics/fx/169.bmp b/resources/graphics/fx/169.bmp
new file mode 100644
index 00000000..83b16c9d
Binary files /dev/null and b/resources/graphics/fx/169.bmp differ
diff --git a/resources/graphics/fx/170.bmp b/resources/graphics/fx/170.bmp
new file mode 100644
index 00000000..34855ad5
Binary files /dev/null and b/resources/graphics/fx/170.bmp differ
diff --git a/resources/graphics/fx/171.bmp b/resources/graphics/fx/171.bmp
new file mode 100644
index 00000000..eb4cc534
Binary files /dev/null and b/resources/graphics/fx/171.bmp differ
diff --git a/resources/graphics/fx/172.bmp b/resources/graphics/fx/172.bmp
new file mode 100644
index 00000000..bacff8e5
Binary files /dev/null and b/resources/graphics/fx/172.bmp differ
diff --git a/resources/graphics/fx/173.bmp b/resources/graphics/fx/173.bmp
new file mode 100644
index 00000000..f2a9acf0
Binary files /dev/null and b/resources/graphics/fx/173.bmp differ
diff --git a/resources/graphics/fx/174.bmp b/resources/graphics/fx/174.bmp
new file mode 100644
index 00000000..8613b4a8
Binary files /dev/null and b/resources/graphics/fx/174.bmp differ
diff --git a/resources/graphics/fx/175.bmp b/resources/graphics/fx/175.bmp
new file mode 100644
index 00000000..bbd6d2a4
Binary files /dev/null and b/resources/graphics/fx/175.bmp differ
diff --git a/resources/graphics/fx/176.bmp b/resources/graphics/fx/176.bmp
new file mode 100644
index 00000000..9e624544
Binary files /dev/null and b/resources/graphics/fx/176.bmp differ
diff --git a/resources/graphics/fx/177.bmp b/resources/graphics/fx/177.bmp
new file mode 100644
index 00000000..916f4ba5
Binary files /dev/null and b/resources/graphics/fx/177.bmp differ
diff --git a/resources/graphics/fx/178.bmp b/resources/graphics/fx/178.bmp
new file mode 100644
index 00000000..9e624544
Binary files /dev/null and b/resources/graphics/fx/178.bmp differ
diff --git a/resources/graphics/fx/179.bmp b/resources/graphics/fx/179.bmp
new file mode 100644
index 00000000..cdbc50f3
Binary files /dev/null and b/resources/graphics/fx/179.bmp differ
diff --git a/resources/graphics/fx/180.bmp b/resources/graphics/fx/180.bmp
new file mode 100644
index 00000000..81f70857
Binary files /dev/null and b/resources/graphics/fx/180.bmp differ
diff --git a/resources/graphics/fx/181.bmp b/resources/graphics/fx/181.bmp
new file mode 100644
index 00000000..e766f64d
Binary files /dev/null and b/resources/graphics/fx/181.bmp differ
diff --git a/resources/graphics/fx/182.bmp b/resources/graphics/fx/182.bmp
new file mode 100644
index 00000000..0b36a887
Binary files /dev/null and b/resources/graphics/fx/182.bmp differ
diff --git a/resources/graphics/fx/183.bmp b/resources/graphics/fx/183.bmp
new file mode 100644
index 00000000..b7a699e5
Binary files /dev/null and b/resources/graphics/fx/183.bmp differ
diff --git a/resources/graphics/fx/184.bmp b/resources/graphics/fx/184.bmp
new file mode 100644
index 00000000..5065bf19
Binary files /dev/null and b/resources/graphics/fx/184.bmp differ
diff --git a/resources/graphics/fx/185.bmp b/resources/graphics/fx/185.bmp
new file mode 100644
index 00000000..8aa2e751
Binary files /dev/null and b/resources/graphics/fx/185.bmp differ
diff --git a/resources/graphics/fx/186.bmp b/resources/graphics/fx/186.bmp
new file mode 100644
index 00000000..bd33009c
Binary files /dev/null and b/resources/graphics/fx/186.bmp differ
diff --git a/resources/graphics/fx/187.bmp b/resources/graphics/fx/187.bmp
new file mode 100644
index 00000000..88a1b913
Binary files /dev/null and b/resources/graphics/fx/187.bmp differ
diff --git a/resources/graphics/fx/188.bmp b/resources/graphics/fx/188.bmp
new file mode 100644
index 00000000..e164b6e6
Binary files /dev/null and b/resources/graphics/fx/188.bmp differ
diff --git a/resources/graphics/fx/189.bmp b/resources/graphics/fx/189.bmp
new file mode 100644
index 00000000..3c9443ab
Binary files /dev/null and b/resources/graphics/fx/189.bmp differ
diff --git a/resources/graphics/fx/190.bmp b/resources/graphics/fx/190.bmp
new file mode 100644
index 00000000..197e0086
Binary files /dev/null and b/resources/graphics/fx/190.bmp differ
diff --git a/resources/graphics/fx/191.bmp b/resources/graphics/fx/191.bmp
new file mode 100644
index 00000000..bdca6b60
Binary files /dev/null and b/resources/graphics/fx/191.bmp differ
diff --git a/resources/graphics/fx/192.bmp b/resources/graphics/fx/192.bmp
new file mode 100644
index 00000000..8f089fb0
Binary files /dev/null and b/resources/graphics/fx/192.bmp differ
diff --git a/resources/graphics/fx/193.bmp b/resources/graphics/fx/193.bmp
new file mode 100644
index 00000000..b42720bc
Binary files /dev/null and b/resources/graphics/fx/193.bmp differ
diff --git a/resources/graphics/fx/194.bmp b/resources/graphics/fx/194.bmp
new file mode 100644
index 00000000..4d42cc25
Binary files /dev/null and b/resources/graphics/fx/194.bmp differ
diff --git a/resources/graphics/fx/195.bmp b/resources/graphics/fx/195.bmp
new file mode 100644
index 00000000..388e60eb
Binary files /dev/null and b/resources/graphics/fx/195.bmp differ
diff --git a/resources/graphics/fx/196.bmp b/resources/graphics/fx/196.bmp
new file mode 100644
index 00000000..37060710
Binary files /dev/null and b/resources/graphics/fx/196.bmp differ
diff --git a/resources/graphics/fx/197.bmp b/resources/graphics/fx/197.bmp
new file mode 100644
index 00000000..09f7fe54
Binary files /dev/null and b/resources/graphics/fx/197.bmp differ
diff --git a/resources/graphics/fx/198.bmp b/resources/graphics/fx/198.bmp
new file mode 100644
index 00000000..79cb56dc
Binary files /dev/null and b/resources/graphics/fx/198.bmp differ
diff --git a/resources/graphics/fx/199.bmp b/resources/graphics/fx/199.bmp
new file mode 100644
index 00000000..d2d47c92
Binary files /dev/null and b/resources/graphics/fx/199.bmp differ
diff --git a/resources/graphics/fx/215.BMP b/resources/graphics/fx/215.BMP
new file mode 100644
index 00000000..4dacdde8
Binary files /dev/null and b/resources/graphics/fx/215.BMP differ
diff --git a/resources/graphics/fx/349.BMP b/resources/graphics/fx/349.BMP
new file mode 100644
index 00000000..4d475c3a
Binary files /dev/null and b/resources/graphics/fx/349.BMP differ
diff --git a/resources/graphics/fx/395.bmp b/resources/graphics/fx/395.bmp
new file mode 100644
index 00000000..7ea39660
Binary files /dev/null and b/resources/graphics/fx/395.bmp differ
diff --git a/resources/graphics/fx/396.bmp b/resources/graphics/fx/396.bmp
new file mode 100644
index 00000000..d4c0cc6c
Binary files /dev/null and b/resources/graphics/fx/396.bmp differ
diff --git a/resources/graphics/fx/397.bmp b/resources/graphics/fx/397.bmp
new file mode 100644
index 00000000..c6683aa6
Binary files /dev/null and b/resources/graphics/fx/397.bmp differ
diff --git a/resources/graphics/fx/398.bmp b/resources/graphics/fx/398.bmp
new file mode 100644
index 00000000..830bb864
Binary files /dev/null and b/resources/graphics/fx/398.bmp differ
diff --git a/resources/graphics/fx/399.bmp b/resources/graphics/fx/399.bmp
new file mode 100644
index 00000000..30b9741b
Binary files /dev/null and b/resources/graphics/fx/399.bmp differ
diff --git a/resources/graphics/fx/400.bmp b/resources/graphics/fx/400.bmp
new file mode 100644
index 00000000..aaa2b091
Binary files /dev/null and b/resources/graphics/fx/400.bmp differ
diff --git a/resources/graphics/fx/401.bmp b/resources/graphics/fx/401.bmp
new file mode 100644
index 00000000..9c86a015
Binary files /dev/null and b/resources/graphics/fx/401.bmp differ
diff --git a/resources/graphics/fx/402.bmp b/resources/graphics/fx/402.bmp
new file mode 100644
index 00000000..6da478fb
Binary files /dev/null and b/resources/graphics/fx/402.bmp differ
diff --git a/resources/graphics/fx/403.bmp b/resources/graphics/fx/403.bmp
new file mode 100644
index 00000000..6149a98c
Binary files /dev/null and b/resources/graphics/fx/403.bmp differ
diff --git a/resources/graphics/fx/404.bmp b/resources/graphics/fx/404.bmp
new file mode 100644
index 00000000..31669278
Binary files /dev/null and b/resources/graphics/fx/404.bmp differ
diff --git a/resources/graphics/fx/665.BMP b/resources/graphics/fx/665.BMP
new file mode 100644
index 00000000..86bb5a93
Binary files /dev/null and b/resources/graphics/fx/665.BMP differ
diff --git a/resources/graphics/fx/752.BMP b/resources/graphics/fx/752.BMP
new file mode 100644
index 00000000..7ac39dae
Binary files /dev/null and b/resources/graphics/fx/752.BMP differ
diff --git a/resources/graphics/fx/753.BMP b/resources/graphics/fx/753.BMP
new file mode 100644
index 00000000..19442ba6
Binary files /dev/null and b/resources/graphics/fx/753.BMP differ
diff --git a/resources/graphics/fx/754.BMP b/resources/graphics/fx/754.BMP
new file mode 100644
index 00000000..c6b6340c
Binary files /dev/null and b/resources/graphics/fx/754.BMP differ
diff --git a/resources/graphics/fx/755.BMP b/resources/graphics/fx/755.BMP
new file mode 100644
index 00000000..e1f094c0
Binary files /dev/null and b/resources/graphics/fx/755.BMP differ
diff --git a/resources/graphics/head/200.BMP b/resources/graphics/head/200.BMP
new file mode 100644
index 00000000..f52e5d55
Binary files /dev/null and b/resources/graphics/head/200.BMP differ
diff --git a/resources/graphics/head/201.BMP b/resources/graphics/head/201.BMP
new file mode 100644
index 00000000..3e05f052
Binary files /dev/null and b/resources/graphics/head/201.BMP differ
diff --git a/resources/graphics/head/2010.bmp b/resources/graphics/head/2010.bmp
new file mode 100644
index 00000000..36595d30
Binary files /dev/null and b/resources/graphics/head/2010.bmp differ
diff --git a/resources/graphics/head/202.BMP b/resources/graphics/head/202.BMP
new file mode 100644
index 00000000..31ce46be
Binary files /dev/null and b/resources/graphics/head/202.BMP differ
diff --git a/resources/graphics/head/2020.bmp b/resources/graphics/head/2020.bmp
new file mode 100644
index 00000000..68cfb622
Binary files /dev/null and b/resources/graphics/head/2020.bmp differ
diff --git a/resources/graphics/head/203.BMP b/resources/graphics/head/203.BMP
new file mode 100644
index 00000000..374b2dea
Binary files /dev/null and b/resources/graphics/head/203.BMP differ
diff --git a/resources/graphics/head/204.BMP b/resources/graphics/head/204.BMP
new file mode 100644
index 00000000..760f5291
Binary files /dev/null and b/resources/graphics/head/204.BMP differ
diff --git a/resources/graphics/head/2040.bmp b/resources/graphics/head/2040.bmp
new file mode 100644
index 00000000..e6e14f86
Binary files /dev/null and b/resources/graphics/head/2040.bmp differ
diff --git a/resources/graphics/head/205.BMP b/resources/graphics/head/205.BMP
new file mode 100644
index 00000000..4b0a033b
Binary files /dev/null and b/resources/graphics/head/205.BMP differ
diff --git a/resources/graphics/head/2050.bmp b/resources/graphics/head/2050.bmp
new file mode 100644
index 00000000..70e757a1
Binary files /dev/null and b/resources/graphics/head/2050.bmp differ
diff --git a/resources/graphics/head/206.BMP b/resources/graphics/head/206.BMP
new file mode 100644
index 00000000..cfcc8a5b
Binary files /dev/null and b/resources/graphics/head/206.BMP differ
diff --git a/resources/graphics/head/207.BMP b/resources/graphics/head/207.BMP
new file mode 100644
index 00000000..2c4616a2
Binary files /dev/null and b/resources/graphics/head/207.BMP differ
diff --git a/resources/graphics/head/2070.bmp b/resources/graphics/head/2070.bmp
new file mode 100644
index 00000000..ee3b5db0
Binary files /dev/null and b/resources/graphics/head/2070.bmp differ
diff --git a/resources/graphics/head/208.BMP b/resources/graphics/head/208.BMP
new file mode 100644
index 00000000..e9d88f02
Binary files /dev/null and b/resources/graphics/head/208.BMP differ
diff --git a/resources/graphics/head/2080.bmp b/resources/graphics/head/2080.bmp
new file mode 100644
index 00000000..966ac0f2
Binary files /dev/null and b/resources/graphics/head/2080.bmp differ
diff --git a/resources/graphics/head/209.BMP b/resources/graphics/head/209.BMP
new file mode 100644
index 00000000..3d9f8f08
Binary files /dev/null and b/resources/graphics/head/209.BMP differ
diff --git a/resources/graphics/head/2090.bmp b/resources/graphics/head/2090.bmp
new file mode 100644
index 00000000..b1167715
Binary files /dev/null and b/resources/graphics/head/2090.bmp differ
diff --git a/resources/graphics/head/2091.bmp b/resources/graphics/head/2091.bmp
new file mode 100644
index 00000000..d6a4b108
Binary files /dev/null and b/resources/graphics/head/2091.bmp differ
diff --git a/resources/graphics/head/2092.bmp b/resources/graphics/head/2092.bmp
new file mode 100644
index 00000000..18cd843c
Binary files /dev/null and b/resources/graphics/head/2092.bmp differ
diff --git a/resources/graphics/head/2093.bmp b/resources/graphics/head/2093.bmp
new file mode 100644
index 00000000..67ae7305
Binary files /dev/null and b/resources/graphics/head/2093.bmp differ
diff --git a/resources/graphics/head/210.BMP b/resources/graphics/head/210.BMP
new file mode 100644
index 00000000..cb9665fe
Binary files /dev/null and b/resources/graphics/head/210.BMP differ
diff --git a/resources/graphics/head/211.BMP b/resources/graphics/head/211.BMP
new file mode 100644
index 00000000..e7ef599a
Binary files /dev/null and b/resources/graphics/head/211.BMP differ
diff --git a/resources/graphics/head/2110.bmp b/resources/graphics/head/2110.bmp
new file mode 100644
index 00000000..3212d581
Binary files /dev/null and b/resources/graphics/head/2110.bmp differ
diff --git a/resources/graphics/head/212.BMP b/resources/graphics/head/212.BMP
new file mode 100644
index 00000000..13fdcdcd
Binary files /dev/null and b/resources/graphics/head/212.BMP differ
diff --git a/resources/graphics/head/213.BMP b/resources/graphics/head/213.BMP
new file mode 100644
index 00000000..9511767e
Binary files /dev/null and b/resources/graphics/head/213.BMP differ
diff --git a/resources/graphics/head/2130.bmp b/resources/graphics/head/2130.bmp
new file mode 100644
index 00000000..ebfef02a
Binary files /dev/null and b/resources/graphics/head/2130.bmp differ
diff --git a/resources/graphics/head/214.BMP b/resources/graphics/head/214.BMP
new file mode 100644
index 00000000..3652fdcd
Binary files /dev/null and b/resources/graphics/head/214.BMP differ
diff --git a/resources/graphics/head/2140.bmp b/resources/graphics/head/2140.bmp
new file mode 100644
index 00000000..74a27845
Binary files /dev/null and b/resources/graphics/head/2140.bmp differ
diff --git a/resources/graphics/head/2154.bmp b/resources/graphics/head/2154.bmp
new file mode 100644
index 00000000..fde56208
Binary files /dev/null and b/resources/graphics/head/2154.bmp differ
diff --git a/resources/graphics/head/2155.bmp b/resources/graphics/head/2155.bmp
new file mode 100644
index 00000000..64c7fd21
Binary files /dev/null and b/resources/graphics/head/2155.bmp differ
diff --git a/resources/graphics/head/2156.bmp b/resources/graphics/head/2156.bmp
new file mode 100644
index 00000000..976bdaa8
Binary files /dev/null and b/resources/graphics/head/2156.bmp differ
diff --git a/resources/graphics/head/2157.bmp b/resources/graphics/head/2157.bmp
new file mode 100644
index 00000000..a0f478c2
Binary files /dev/null and b/resources/graphics/head/2157.bmp differ
diff --git a/resources/graphics/head/216.BMP b/resources/graphics/head/216.BMP
new file mode 100644
index 00000000..35827874
Binary files /dev/null and b/resources/graphics/head/216.BMP differ
diff --git a/resources/graphics/head/2160.bmp b/resources/graphics/head/2160.bmp
new file mode 100644
index 00000000..71c31422
Binary files /dev/null and b/resources/graphics/head/2160.bmp differ
diff --git a/resources/graphics/head/217.BMP b/resources/graphics/head/217.BMP
new file mode 100644
index 00000000..4dd605d7
Binary files /dev/null and b/resources/graphics/head/217.BMP differ
diff --git a/resources/graphics/head/218.BMP b/resources/graphics/head/218.BMP
new file mode 100644
index 00000000..f95a6e16
Binary files /dev/null and b/resources/graphics/head/218.BMP differ
diff --git a/resources/graphics/head/219.BMP b/resources/graphics/head/219.BMP
new file mode 100644
index 00000000..37858368
Binary files /dev/null and b/resources/graphics/head/219.BMP differ
diff --git a/resources/graphics/head/220.BMP b/resources/graphics/head/220.BMP
new file mode 100644
index 00000000..e53fb6f5
Binary files /dev/null and b/resources/graphics/head/220.BMP differ
diff --git a/resources/graphics/head/221.BMP b/resources/graphics/head/221.BMP
new file mode 100644
index 00000000..c77e9f49
Binary files /dev/null and b/resources/graphics/head/221.BMP differ
diff --git a/resources/graphics/head/222.BMP b/resources/graphics/head/222.BMP
new file mode 100644
index 00000000..5374009f
Binary files /dev/null and b/resources/graphics/head/222.BMP differ
diff --git a/resources/graphics/head/223.BMP b/resources/graphics/head/223.BMP
new file mode 100644
index 00000000..dac505c1
Binary files /dev/null and b/resources/graphics/head/223.BMP differ
diff --git a/resources/graphics/head/2230.bmp b/resources/graphics/head/2230.bmp
new file mode 100644
index 00000000..cdb89ed4
Binary files /dev/null and b/resources/graphics/head/2230.bmp differ
diff --git a/resources/graphics/head/224.BMP b/resources/graphics/head/224.BMP
new file mode 100644
index 00000000..45223169
Binary files /dev/null and b/resources/graphics/head/224.BMP differ
diff --git a/resources/graphics/head/225.BMP b/resources/graphics/head/225.BMP
new file mode 100644
index 00000000..5c7df9cf
Binary files /dev/null and b/resources/graphics/head/225.BMP differ
diff --git a/resources/graphics/head/2250.bmp b/resources/graphics/head/2250.bmp
new file mode 100644
index 00000000..e1b4b2ae
Binary files /dev/null and b/resources/graphics/head/2250.bmp differ
diff --git a/resources/graphics/head/226.BMP b/resources/graphics/head/226.BMP
new file mode 100644
index 00000000..f388b64e
Binary files /dev/null and b/resources/graphics/head/226.BMP differ
diff --git a/resources/graphics/head/227.BMP b/resources/graphics/head/227.BMP
new file mode 100644
index 00000000..90f23887
Binary files /dev/null and b/resources/graphics/head/227.BMP differ
diff --git a/resources/graphics/head/228.BMP b/resources/graphics/head/228.BMP
new file mode 100644
index 00000000..b91b7c50
Binary files /dev/null and b/resources/graphics/head/228.BMP differ
diff --git a/resources/graphics/head/2280.bmp b/resources/graphics/head/2280.bmp
new file mode 100644
index 00000000..710d5d90
Binary files /dev/null and b/resources/graphics/head/2280.bmp differ
diff --git a/resources/graphics/head/229.BMP b/resources/graphics/head/229.BMP
new file mode 100644
index 00000000..58973880
Binary files /dev/null and b/resources/graphics/head/229.BMP differ
diff --git a/resources/graphics/head/230.BMP b/resources/graphics/head/230.BMP
new file mode 100644
index 00000000..fb1bf6f6
Binary files /dev/null and b/resources/graphics/head/230.BMP differ
diff --git a/resources/graphics/head/2301.bmp b/resources/graphics/head/2301.bmp
new file mode 100644
index 00000000..ff530790
Binary files /dev/null and b/resources/graphics/head/2301.bmp differ
diff --git a/resources/graphics/head/231.BMP b/resources/graphics/head/231.BMP
new file mode 100644
index 00000000..5c7df9cf
Binary files /dev/null and b/resources/graphics/head/231.BMP differ
diff --git a/resources/graphics/head/232.BMP b/resources/graphics/head/232.BMP
new file mode 100644
index 00000000..3ce09d60
Binary files /dev/null and b/resources/graphics/head/232.BMP differ
diff --git a/resources/graphics/head/233.BMP b/resources/graphics/head/233.BMP
new file mode 100644
index 00000000..201fb09a
Binary files /dev/null and b/resources/graphics/head/233.BMP differ
diff --git a/resources/graphics/head/2330.bmp b/resources/graphics/head/2330.bmp
new file mode 100644
index 00000000..cd7b20b0
Binary files /dev/null and b/resources/graphics/head/2330.bmp differ
diff --git a/resources/graphics/head/3802.bmp b/resources/graphics/head/3802.bmp
new file mode 100644
index 00000000..7d178888
Binary files /dev/null and b/resources/graphics/head/3802.bmp differ
diff --git a/resources/graphics/head/3803.bmp b/resources/graphics/head/3803.bmp
new file mode 100644
index 00000000..60b61661
Binary files /dev/null and b/resources/graphics/head/3803.bmp differ
diff --git a/resources/graphics/head/8200.bmp b/resources/graphics/head/8200.bmp
new file mode 100644
index 00000000..fb4643b1
Binary files /dev/null and b/resources/graphics/head/8200.bmp differ
diff --git a/resources/graphics/helmet/1503.BMP b/resources/graphics/helmet/1503.BMP
new file mode 100644
index 00000000..b87a3bd8
Binary files /dev/null and b/resources/graphics/helmet/1503.BMP differ
diff --git a/resources/graphics/helmet/1504.BMP b/resources/graphics/helmet/1504.BMP
new file mode 100644
index 00000000..47797a53
Binary files /dev/null and b/resources/graphics/helmet/1504.BMP differ
diff --git a/resources/graphics/map/1.BMP b/resources/graphics/map/1.BMP
new file mode 100644
index 00000000..a581df93
Binary files /dev/null and b/resources/graphics/map/1.BMP differ
diff --git a/resources/graphics/map/1530.BMP b/resources/graphics/map/1530.BMP
new file mode 100644
index 00000000..1298a465
Binary files /dev/null and b/resources/graphics/map/1530.BMP differ
diff --git a/resources/graphics/map/1531.BMP b/resources/graphics/map/1531.BMP
new file mode 100644
index 00000000..65b69f36
Binary files /dev/null and b/resources/graphics/map/1531.BMP differ
diff --git a/resources/graphics/map/1532.BMP b/resources/graphics/map/1532.BMP
new file mode 100644
index 00000000..d44fe5b1
Binary files /dev/null and b/resources/graphics/map/1532.BMP differ
diff --git a/resources/graphics/map/1533.BMP b/resources/graphics/map/1533.BMP
new file mode 100644
index 00000000..19885d20
Binary files /dev/null and b/resources/graphics/map/1533.BMP differ
diff --git a/resources/graphics/map/1534.bmp b/resources/graphics/map/1534.bmp
new file mode 100644
index 00000000..6129a557
Binary files /dev/null and b/resources/graphics/map/1534.bmp differ
diff --git a/resources/graphics/map/2.BMP b/resources/graphics/map/2.BMP
new file mode 100644
index 00000000..aab4fc30
Binary files /dev/null and b/resources/graphics/map/2.BMP differ
diff --git a/resources/graphics/map/20.BMP b/resources/graphics/map/20.BMP
new file mode 100644
index 00000000..97e0a8f2
Binary files /dev/null and b/resources/graphics/map/20.BMP differ
diff --git a/resources/graphics/map/21.BMP b/resources/graphics/map/21.BMP
new file mode 100644
index 00000000..a8fddf8c
Binary files /dev/null and b/resources/graphics/map/21.BMP differ
diff --git a/resources/graphics/map/22.BMP b/resources/graphics/map/22.BMP
new file mode 100644
index 00000000..1cf1a42a
Binary files /dev/null and b/resources/graphics/map/22.BMP differ
diff --git a/resources/graphics/map/23.BMP b/resources/graphics/map/23.BMP
new file mode 100644
index 00000000..331a0b54
Binary files /dev/null and b/resources/graphics/map/23.BMP differ
diff --git a/resources/graphics/map/24.BMP b/resources/graphics/map/24.BMP
new file mode 100644
index 00000000..50667aac
Binary files /dev/null and b/resources/graphics/map/24.BMP differ
diff --git a/resources/graphics/map/405.bmp b/resources/graphics/map/405.bmp
new file mode 100644
index 00000000..30b3c36d
Binary files /dev/null and b/resources/graphics/map/405.bmp differ
diff --git a/resources/graphics/map/500.BMP b/resources/graphics/map/500.BMP
new file mode 100644
index 00000000..c44955cb
Binary files /dev/null and b/resources/graphics/map/500.BMP differ
diff --git a/resources/graphics/map/501.BMP b/resources/graphics/map/501.BMP
new file mode 100644
index 00000000..d5c5fba5
Binary files /dev/null and b/resources/graphics/map/501.BMP differ
diff --git a/resources/graphics/map/513.BMP b/resources/graphics/map/513.BMP
new file mode 100644
index 00000000..fdd6e7e8
Binary files /dev/null and b/resources/graphics/map/513.BMP differ
diff --git a/resources/graphics/map/523.BMP b/resources/graphics/map/523.BMP
new file mode 100644
index 00000000..53ae6ff9
Binary files /dev/null and b/resources/graphics/map/523.BMP differ
diff --git a/resources/graphics/map/524.BMP b/resources/graphics/map/524.BMP
new file mode 100644
index 00000000..3bd83be8
Binary files /dev/null and b/resources/graphics/map/524.BMP differ
diff --git a/resources/graphics/map/525.BMP b/resources/graphics/map/525.BMP
new file mode 100644
index 00000000..96491fac
Binary files /dev/null and b/resources/graphics/map/525.BMP differ
diff --git a/resources/graphics/map/526.BMP b/resources/graphics/map/526.BMP
new file mode 100644
index 00000000..343a7536
Binary files /dev/null and b/resources/graphics/map/526.BMP differ
diff --git a/resources/graphics/map/527.BMP b/resources/graphics/map/527.BMP
new file mode 100644
index 00000000..a36e0d28
Binary files /dev/null and b/resources/graphics/map/527.BMP differ
diff --git a/resources/graphics/map/528.BMP b/resources/graphics/map/528.BMP
new file mode 100644
index 00000000..04530bb1
Binary files /dev/null and b/resources/graphics/map/528.BMP differ
diff --git a/resources/graphics/map/538.BMP b/resources/graphics/map/538.BMP
new file mode 100644
index 00000000..ccc56093
Binary files /dev/null and b/resources/graphics/map/538.BMP differ
diff --git a/resources/graphics/map/539.BMP b/resources/graphics/map/539.BMP
new file mode 100644
index 00000000..1944100e
Binary files /dev/null and b/resources/graphics/map/539.BMP differ
diff --git a/resources/graphics/map/540.BMP b/resources/graphics/map/540.BMP
new file mode 100644
index 00000000..68cdb1ce
Binary files /dev/null and b/resources/graphics/map/540.BMP differ
diff --git a/resources/graphics/map/541.BMP b/resources/graphics/map/541.BMP
new file mode 100644
index 00000000..052b3542
Binary files /dev/null and b/resources/graphics/map/541.BMP differ
diff --git a/resources/graphics/map/542.BMP b/resources/graphics/map/542.BMP
new file mode 100644
index 00000000..9070228b
Binary files /dev/null and b/resources/graphics/map/542.BMP differ
diff --git a/resources/graphics/map/543.BMP b/resources/graphics/map/543.BMP
new file mode 100644
index 00000000..9d29aeb7
Binary files /dev/null and b/resources/graphics/map/543.BMP differ
diff --git a/resources/graphics/map/544.BMP b/resources/graphics/map/544.BMP
new file mode 100644
index 00000000..93f69606
Binary files /dev/null and b/resources/graphics/map/544.BMP differ
diff --git a/resources/graphics/map/545.BMP b/resources/graphics/map/545.BMP
new file mode 100644
index 00000000..20c11027
Binary files /dev/null and b/resources/graphics/map/545.BMP differ
diff --git a/resources/graphics/map/546.BMP b/resources/graphics/map/546.BMP
new file mode 100644
index 00000000..b387644a
Binary files /dev/null and b/resources/graphics/map/546.BMP differ
diff --git a/resources/graphics/map/547.BMP b/resources/graphics/map/547.BMP
new file mode 100644
index 00000000..7ac90bc3
Binary files /dev/null and b/resources/graphics/map/547.BMP differ
diff --git a/resources/graphics/map/548.BMP b/resources/graphics/map/548.BMP
new file mode 100644
index 00000000..93ee3a75
Binary files /dev/null and b/resources/graphics/map/548.BMP differ
diff --git a/resources/graphics/map/549.BMP b/resources/graphics/map/549.BMP
new file mode 100644
index 00000000..f05ecfe1
Binary files /dev/null and b/resources/graphics/map/549.BMP differ
diff --git a/resources/graphics/map/550.BMP b/resources/graphics/map/550.BMP
new file mode 100644
index 00000000..f2b056b9
Binary files /dev/null and b/resources/graphics/map/550.BMP differ
diff --git a/resources/graphics/map/5500.BMP b/resources/graphics/map/5500.BMP
new file mode 100644
index 00000000..96a85679
Binary files /dev/null and b/resources/graphics/map/5500.BMP differ
diff --git a/resources/graphics/map/5501.BMP b/resources/graphics/map/5501.BMP
new file mode 100644
index 00000000..f280cb94
Binary files /dev/null and b/resources/graphics/map/5501.BMP differ
diff --git a/resources/graphics/map/5502.BMP b/resources/graphics/map/5502.BMP
new file mode 100644
index 00000000..ae169794
Binary files /dev/null and b/resources/graphics/map/5502.BMP differ
diff --git a/resources/graphics/map/5503.BMP b/resources/graphics/map/5503.BMP
new file mode 100644
index 00000000..f5bbc024
Binary files /dev/null and b/resources/graphics/map/5503.BMP differ
diff --git a/resources/graphics/map/5504.BMP b/resources/graphics/map/5504.BMP
new file mode 100644
index 00000000..254da313
Binary files /dev/null and b/resources/graphics/map/5504.BMP differ
diff --git a/resources/graphics/map/5505.BMP b/resources/graphics/map/5505.BMP
new file mode 100644
index 00000000..15495cb4
Binary files /dev/null and b/resources/graphics/map/5505.BMP differ
diff --git a/resources/graphics/map/5507.BMP b/resources/graphics/map/5507.BMP
new file mode 100644
index 00000000..fcba67de
Binary files /dev/null and b/resources/graphics/map/5507.BMP differ
diff --git a/resources/graphics/map/5508.BMP b/resources/graphics/map/5508.BMP
new file mode 100644
index 00000000..e1417d7b
Binary files /dev/null and b/resources/graphics/map/5508.BMP differ
diff --git a/resources/graphics/map/5509.BMP b/resources/graphics/map/5509.BMP
new file mode 100644
index 00000000..7a3e6219
Binary files /dev/null and b/resources/graphics/map/5509.BMP differ
diff --git a/resources/graphics/map/551.BMP b/resources/graphics/map/551.BMP
new file mode 100644
index 00000000..dbe54f4b
Binary files /dev/null and b/resources/graphics/map/551.BMP differ
diff --git a/resources/graphics/map/5510.BMP b/resources/graphics/map/5510.BMP
new file mode 100644
index 00000000..823c9444
Binary files /dev/null and b/resources/graphics/map/5510.BMP differ
diff --git a/resources/graphics/map/5511.BMP b/resources/graphics/map/5511.BMP
new file mode 100644
index 00000000..8c60dbe7
Binary files /dev/null and b/resources/graphics/map/5511.BMP differ
diff --git a/resources/graphics/map/5516.BMP b/resources/graphics/map/5516.BMP
new file mode 100644
index 00000000..e2b9052a
Binary files /dev/null and b/resources/graphics/map/5516.BMP differ
diff --git a/resources/graphics/map/5517.BMP b/resources/graphics/map/5517.BMP
new file mode 100644
index 00000000..cb64d4f6
Binary files /dev/null and b/resources/graphics/map/5517.BMP differ
diff --git a/resources/graphics/map/5518.BMP b/resources/graphics/map/5518.BMP
new file mode 100644
index 00000000..be50bd7a
Binary files /dev/null and b/resources/graphics/map/5518.BMP differ
diff --git a/resources/graphics/map/5519.BMP b/resources/graphics/map/5519.BMP
new file mode 100644
index 00000000..204ce338
Binary files /dev/null and b/resources/graphics/map/5519.BMP differ
diff --git a/resources/graphics/map/552.BMP b/resources/graphics/map/552.BMP
new file mode 100644
index 00000000..b83dc3dd
Binary files /dev/null and b/resources/graphics/map/552.BMP differ
diff --git a/resources/graphics/map/554.BMP b/resources/graphics/map/554.BMP
new file mode 100644
index 00000000..ea2e62fc
Binary files /dev/null and b/resources/graphics/map/554.BMP differ
diff --git a/resources/graphics/map/555.BMP b/resources/graphics/map/555.BMP
new file mode 100644
index 00000000..aa8111b3
Binary files /dev/null and b/resources/graphics/map/555.BMP differ
diff --git a/resources/graphics/map/5556.BMP b/resources/graphics/map/5556.BMP
new file mode 100644
index 00000000..ccb90690
Binary files /dev/null and b/resources/graphics/map/5556.BMP differ
diff --git a/resources/graphics/map/557.BMP b/resources/graphics/map/557.BMP
new file mode 100644
index 00000000..f54400c8
Binary files /dev/null and b/resources/graphics/map/557.BMP differ
diff --git a/resources/graphics/map/558.BMP b/resources/graphics/map/558.BMP
new file mode 100644
index 00000000..032180e5
Binary files /dev/null and b/resources/graphics/map/558.BMP differ
diff --git a/resources/graphics/map/559.BMP b/resources/graphics/map/559.BMP
new file mode 100644
index 00000000..83776cf9
Binary files /dev/null and b/resources/graphics/map/559.BMP differ
diff --git a/resources/graphics/map/561.BMP b/resources/graphics/map/561.BMP
new file mode 100644
index 00000000..73d4fcfb
Binary files /dev/null and b/resources/graphics/map/561.BMP differ
diff --git a/resources/graphics/map/562.BMP b/resources/graphics/map/562.BMP
new file mode 100644
index 00000000..c8c973c0
Binary files /dev/null and b/resources/graphics/map/562.BMP differ
diff --git a/resources/graphics/map/573.BMP b/resources/graphics/map/573.BMP
new file mode 100644
index 00000000..b4079812
Binary files /dev/null and b/resources/graphics/map/573.BMP differ
diff --git a/resources/graphics/map/574.BMP b/resources/graphics/map/574.BMP
new file mode 100644
index 00000000..c71166eb
Binary files /dev/null and b/resources/graphics/map/574.BMP differ
diff --git a/resources/graphics/map/575.BMP b/resources/graphics/map/575.BMP
new file mode 100644
index 00000000..52872bdf
Binary files /dev/null and b/resources/graphics/map/575.BMP differ
diff --git a/resources/graphics/map/577.BMP b/resources/graphics/map/577.BMP
new file mode 100644
index 00000000..b415be91
Binary files /dev/null and b/resources/graphics/map/577.BMP differ
diff --git a/resources/graphics/map/6000.BMP b/resources/graphics/map/6000.BMP
new file mode 100644
index 00000000..4963b1cf
Binary files /dev/null and b/resources/graphics/map/6000.BMP differ
diff --git a/resources/graphics/map/6001.BMP b/resources/graphics/map/6001.BMP
new file mode 100644
index 00000000..64f54d1a
Binary files /dev/null and b/resources/graphics/map/6001.BMP differ
diff --git a/resources/graphics/map/6002.BMP b/resources/graphics/map/6002.BMP
new file mode 100644
index 00000000..93d2f4da
Binary files /dev/null and b/resources/graphics/map/6002.BMP differ
diff --git a/resources/graphics/map/6003.BMP b/resources/graphics/map/6003.BMP
new file mode 100644
index 00000000..b6e782cf
Binary files /dev/null and b/resources/graphics/map/6003.BMP differ
diff --git a/resources/graphics/map/6004.BMP b/resources/graphics/map/6004.BMP
new file mode 100644
index 00000000..4718f768
Binary files /dev/null and b/resources/graphics/map/6004.BMP differ
diff --git a/resources/graphics/map/6005.BMP b/resources/graphics/map/6005.BMP
new file mode 100644
index 00000000..65aecea5
Binary files /dev/null and b/resources/graphics/map/6005.BMP differ
diff --git a/resources/graphics/map/6006.BMP b/resources/graphics/map/6006.BMP
new file mode 100644
index 00000000..89bb50ec
Binary files /dev/null and b/resources/graphics/map/6006.BMP differ
diff --git a/resources/graphics/map/6007.BMP b/resources/graphics/map/6007.BMP
new file mode 100644
index 00000000..42d9050d
Binary files /dev/null and b/resources/graphics/map/6007.BMP differ
diff --git a/resources/graphics/map/6008.BMP b/resources/graphics/map/6008.BMP
new file mode 100644
index 00000000..d6808457
Binary files /dev/null and b/resources/graphics/map/6008.BMP differ
diff --git a/resources/graphics/map/6009.BMP b/resources/graphics/map/6009.BMP
new file mode 100644
index 00000000..2c6cbcb6
Binary files /dev/null and b/resources/graphics/map/6009.BMP differ
diff --git a/resources/graphics/map/6010.BMP b/resources/graphics/map/6010.BMP
new file mode 100644
index 00000000..55eb3ca5
Binary files /dev/null and b/resources/graphics/map/6010.BMP differ
diff --git a/resources/graphics/map/6013.BMP b/resources/graphics/map/6013.BMP
new file mode 100644
index 00000000..76e0e06a
Binary files /dev/null and b/resources/graphics/map/6013.BMP differ
diff --git a/resources/graphics/map/6014.BMP b/resources/graphics/map/6014.BMP
new file mode 100644
index 00000000..868218eb
Binary files /dev/null and b/resources/graphics/map/6014.BMP differ
diff --git a/resources/graphics/map/6015.BMP b/resources/graphics/map/6015.BMP
new file mode 100644
index 00000000..74b18cf9
Binary files /dev/null and b/resources/graphics/map/6015.BMP differ
diff --git a/resources/graphics/map/6016.BMP b/resources/graphics/map/6016.BMP
new file mode 100644
index 00000000..700b06f8
Binary files /dev/null and b/resources/graphics/map/6016.BMP differ
diff --git a/resources/graphics/map/6017.BMP b/resources/graphics/map/6017.BMP
new file mode 100644
index 00000000..7a2e290b
Binary files /dev/null and b/resources/graphics/map/6017.BMP differ
diff --git a/resources/graphics/map/6018.BMP b/resources/graphics/map/6018.BMP
new file mode 100644
index 00000000..5516f0b7
Binary files /dev/null and b/resources/graphics/map/6018.BMP differ
diff --git a/resources/graphics/map/6019.BMP b/resources/graphics/map/6019.BMP
new file mode 100644
index 00000000..a76815e4
Binary files /dev/null and b/resources/graphics/map/6019.BMP differ
diff --git a/resources/graphics/map/6020.BMP b/resources/graphics/map/6020.BMP
new file mode 100644
index 00000000..cf801ac3
Binary files /dev/null and b/resources/graphics/map/6020.BMP differ
diff --git a/resources/graphics/map/6021.BMP b/resources/graphics/map/6021.BMP
new file mode 100644
index 00000000..55eb3ca5
Binary files /dev/null and b/resources/graphics/map/6021.BMP differ
diff --git a/resources/graphics/map/618.BMP b/resources/graphics/map/618.BMP
new file mode 100644
index 00000000..4af6eb18
Binary files /dev/null and b/resources/graphics/map/618.BMP differ
diff --git a/resources/graphics/map/619.BMP b/resources/graphics/map/619.BMP
new file mode 100644
index 00000000..22ab3bf3
Binary files /dev/null and b/resources/graphics/map/619.BMP differ
diff --git a/resources/graphics/map/620.BMP b/resources/graphics/map/620.BMP
new file mode 100644
index 00000000..616cb68e
Binary files /dev/null and b/resources/graphics/map/620.BMP differ
diff --git a/resources/graphics/map/621.BMP b/resources/graphics/map/621.BMP
new file mode 100644
index 00000000..2f9b8b9d
Binary files /dev/null and b/resources/graphics/map/621.BMP differ
diff --git a/resources/graphics/map/622.BMP b/resources/graphics/map/622.BMP
new file mode 100644
index 00000000..a3cb709d
Binary files /dev/null and b/resources/graphics/map/622.BMP differ
diff --git a/resources/graphics/map/623.BMP b/resources/graphics/map/623.BMP
new file mode 100644
index 00000000..3fff5aef
Binary files /dev/null and b/resources/graphics/map/623.BMP differ
diff --git a/resources/graphics/map/624.BMP b/resources/graphics/map/624.BMP
new file mode 100644
index 00000000..9c76b4fc
Binary files /dev/null and b/resources/graphics/map/624.BMP differ
diff --git a/resources/graphics/map/625.BMP b/resources/graphics/map/625.BMP
new file mode 100644
index 00000000..999fe697
Binary files /dev/null and b/resources/graphics/map/625.BMP differ
diff --git a/resources/graphics/map/626.BMP b/resources/graphics/map/626.BMP
new file mode 100644
index 00000000..0db32c42
Binary files /dev/null and b/resources/graphics/map/626.BMP differ
diff --git a/resources/graphics/map/627.BMP b/resources/graphics/map/627.BMP
new file mode 100644
index 00000000..437d6b53
Binary files /dev/null and b/resources/graphics/map/627.BMP differ
diff --git a/resources/graphics/map/628.BMP b/resources/graphics/map/628.BMP
new file mode 100644
index 00000000..8927b41f
Binary files /dev/null and b/resources/graphics/map/628.BMP differ
diff --git a/resources/graphics/map/629.BMP b/resources/graphics/map/629.BMP
new file mode 100644
index 00000000..183eb6fd
Binary files /dev/null and b/resources/graphics/map/629.BMP differ
diff --git a/resources/graphics/map/630.BMP b/resources/graphics/map/630.BMP
new file mode 100644
index 00000000..22970428
Binary files /dev/null and b/resources/graphics/map/630.BMP differ
diff --git a/resources/graphics/map/631.BMP b/resources/graphics/map/631.BMP
new file mode 100644
index 00000000..8c8e9dcd
Binary files /dev/null and b/resources/graphics/map/631.BMP differ
diff --git a/resources/graphics/map/632.BMP b/resources/graphics/map/632.BMP
new file mode 100644
index 00000000..763a1dc0
Binary files /dev/null and b/resources/graphics/map/632.BMP differ
diff --git a/resources/graphics/map/633.BMP b/resources/graphics/map/633.BMP
new file mode 100644
index 00000000..5de8d5a2
Binary files /dev/null and b/resources/graphics/map/633.BMP differ
diff --git a/resources/graphics/map/634.BMP b/resources/graphics/map/634.BMP
new file mode 100644
index 00000000..569cabc1
Binary files /dev/null and b/resources/graphics/map/634.BMP differ
diff --git a/resources/graphics/map/635.BMP b/resources/graphics/map/635.BMP
new file mode 100644
index 00000000..fd3a6cdb
Binary files /dev/null and b/resources/graphics/map/635.BMP differ
diff --git a/resources/graphics/map/636.BMP b/resources/graphics/map/636.BMP
new file mode 100644
index 00000000..5f758bde
Binary files /dev/null and b/resources/graphics/map/636.BMP differ
diff --git a/resources/graphics/map/637.BMP b/resources/graphics/map/637.BMP
new file mode 100644
index 00000000..7efe53dc
Binary files /dev/null and b/resources/graphics/map/637.BMP differ
diff --git a/resources/graphics/map/638.BMP b/resources/graphics/map/638.BMP
new file mode 100644
index 00000000..600589a3
Binary files /dev/null and b/resources/graphics/map/638.BMP differ
diff --git a/resources/graphics/map/641.BMP b/resources/graphics/map/641.BMP
new file mode 100644
index 00000000..47b14281
Binary files /dev/null and b/resources/graphics/map/641.BMP differ
diff --git a/resources/graphics/map/642.BMP b/resources/graphics/map/642.BMP
new file mode 100644
index 00000000..759d6e51
Binary files /dev/null and b/resources/graphics/map/642.BMP differ
diff --git a/resources/graphics/map/644.BMP b/resources/graphics/map/644.BMP
new file mode 100644
index 00000000..70927e3e
Binary files /dev/null and b/resources/graphics/map/644.BMP differ
diff --git a/resources/graphics/map/645.BMP b/resources/graphics/map/645.BMP
new file mode 100644
index 00000000..a6f4783e
Binary files /dev/null and b/resources/graphics/map/645.BMP differ
diff --git a/resources/graphics/map/646.BMP b/resources/graphics/map/646.BMP
new file mode 100644
index 00000000..4cadb7a3
Binary files /dev/null and b/resources/graphics/map/646.BMP differ
diff --git a/resources/graphics/map/647.BMP b/resources/graphics/map/647.BMP
new file mode 100644
index 00000000..bebcbdbe
Binary files /dev/null and b/resources/graphics/map/647.BMP differ
diff --git a/resources/graphics/map/648.BMP b/resources/graphics/map/648.BMP
new file mode 100644
index 00000000..27e77493
Binary files /dev/null and b/resources/graphics/map/648.BMP differ
diff --git a/resources/graphics/map/649.BMP b/resources/graphics/map/649.BMP
new file mode 100644
index 00000000..639dedce
Binary files /dev/null and b/resources/graphics/map/649.BMP differ
diff --git a/resources/graphics/map/650.BMP b/resources/graphics/map/650.BMP
new file mode 100644
index 00000000..11202cad
Binary files /dev/null and b/resources/graphics/map/650.BMP differ
diff --git a/resources/graphics/map/651.BMP b/resources/graphics/map/651.BMP
new file mode 100644
index 00000000..bc4361d9
Binary files /dev/null and b/resources/graphics/map/651.BMP differ
diff --git a/resources/graphics/map/652.BMP b/resources/graphics/map/652.BMP
new file mode 100644
index 00000000..4f80c42b
Binary files /dev/null and b/resources/graphics/map/652.BMP differ
diff --git a/resources/graphics/map/653.BMP b/resources/graphics/map/653.BMP
new file mode 100644
index 00000000..779db452
Binary files /dev/null and b/resources/graphics/map/653.BMP differ
diff --git a/resources/graphics/map/654.BMP b/resources/graphics/map/654.BMP
new file mode 100644
index 00000000..e87a4ef4
Binary files /dev/null and b/resources/graphics/map/654.BMP differ
diff --git a/resources/graphics/map/655.BMP b/resources/graphics/map/655.BMP
new file mode 100644
index 00000000..534f2adb
Binary files /dev/null and b/resources/graphics/map/655.BMP differ
diff --git a/resources/graphics/map/656.BMP b/resources/graphics/map/656.BMP
new file mode 100644
index 00000000..06fb7e9e
Binary files /dev/null and b/resources/graphics/map/656.BMP differ
diff --git a/resources/graphics/map/657.BMP b/resources/graphics/map/657.BMP
new file mode 100644
index 00000000..265f6ade
Binary files /dev/null and b/resources/graphics/map/657.BMP differ
diff --git a/resources/graphics/map/664.BMP b/resources/graphics/map/664.BMP
new file mode 100644
index 00000000..4ee4f8d1
Binary files /dev/null and b/resources/graphics/map/664.BMP differ
diff --git a/resources/graphics/map/666.BMP b/resources/graphics/map/666.BMP
new file mode 100644
index 00000000..21cde9a9
Binary files /dev/null and b/resources/graphics/map/666.BMP differ
diff --git a/resources/graphics/map/667.BMP b/resources/graphics/map/667.BMP
new file mode 100644
index 00000000..bd3c2189
Binary files /dev/null and b/resources/graphics/map/667.BMP differ
diff --git a/resources/graphics/map/668.BMP b/resources/graphics/map/668.BMP
new file mode 100644
index 00000000..fd3b5127
Binary files /dev/null and b/resources/graphics/map/668.BMP differ
diff --git a/resources/graphics/map/669.BMP b/resources/graphics/map/669.BMP
new file mode 100644
index 00000000..c1342c1d
Binary files /dev/null and b/resources/graphics/map/669.BMP differ
diff --git a/resources/graphics/map/671.BMP b/resources/graphics/map/671.BMP
new file mode 100644
index 00000000..212786e7
Binary files /dev/null and b/resources/graphics/map/671.BMP differ
diff --git a/resources/graphics/map/672.BMP b/resources/graphics/map/672.BMP
new file mode 100644
index 00000000..1a864891
Binary files /dev/null and b/resources/graphics/map/672.BMP differ
diff --git a/resources/graphics/map/673.BMP b/resources/graphics/map/673.BMP
new file mode 100644
index 00000000..4cfc04d2
Binary files /dev/null and b/resources/graphics/map/673.BMP differ
diff --git a/resources/graphics/map/674.BMP b/resources/graphics/map/674.BMP
new file mode 100644
index 00000000..979f8a74
Binary files /dev/null and b/resources/graphics/map/674.BMP differ
diff --git a/resources/graphics/map/675.BMP b/resources/graphics/map/675.BMP
new file mode 100644
index 00000000..a9cc8eab
Binary files /dev/null and b/resources/graphics/map/675.BMP differ
diff --git a/resources/graphics/map/692.BMP b/resources/graphics/map/692.BMP
new file mode 100644
index 00000000..22446fe1
Binary files /dev/null and b/resources/graphics/map/692.BMP differ
diff --git a/resources/graphics/map/7000.BMP b/resources/graphics/map/7000.BMP
new file mode 100644
index 00000000..10bd315c
Binary files /dev/null and b/resources/graphics/map/7000.BMP differ
diff --git a/resources/graphics/map/7001.BMP b/resources/graphics/map/7001.BMP
new file mode 100644
index 00000000..185a9cef
Binary files /dev/null and b/resources/graphics/map/7001.BMP differ
diff --git a/resources/graphics/map/7002.BMP b/resources/graphics/map/7002.BMP
new file mode 100644
index 00000000..efa846eb
Binary files /dev/null and b/resources/graphics/map/7002.BMP differ
diff --git a/resources/graphics/map/7003.BMP b/resources/graphics/map/7003.BMP
new file mode 100644
index 00000000..5a59a795
Binary files /dev/null and b/resources/graphics/map/7003.BMP differ
diff --git a/resources/graphics/map/7004.BMP b/resources/graphics/map/7004.BMP
new file mode 100644
index 00000000..a46fe04d
Binary files /dev/null and b/resources/graphics/map/7004.BMP differ
diff --git a/resources/graphics/map/7005.BMP b/resources/graphics/map/7005.BMP
new file mode 100644
index 00000000..a8774dc0
Binary files /dev/null and b/resources/graphics/map/7005.BMP differ
diff --git a/resources/graphics/map/7006.BMP b/resources/graphics/map/7006.BMP
new file mode 100644
index 00000000..36c03be9
Binary files /dev/null and b/resources/graphics/map/7006.BMP differ
diff --git a/resources/graphics/map/7007.BMP b/resources/graphics/map/7007.BMP
new file mode 100644
index 00000000..7669c5a4
Binary files /dev/null and b/resources/graphics/map/7007.BMP differ
diff --git a/resources/graphics/map/7008.BMP b/resources/graphics/map/7008.BMP
new file mode 100644
index 00000000..b093f3fa
Binary files /dev/null and b/resources/graphics/map/7008.BMP differ
diff --git a/resources/graphics/map/7100.BMP b/resources/graphics/map/7100.BMP
new file mode 100644
index 00000000..528037f9
Binary files /dev/null and b/resources/graphics/map/7100.BMP differ
diff --git a/resources/graphics/map/7102.BMP b/resources/graphics/map/7102.BMP
new file mode 100644
index 00000000..9bfbf51a
Binary files /dev/null and b/resources/graphics/map/7102.BMP differ
diff --git a/resources/graphics/map/721.BMP b/resources/graphics/map/721.BMP
new file mode 100644
index 00000000..754092eb
Binary files /dev/null and b/resources/graphics/map/721.BMP differ
diff --git a/resources/graphics/map/722.BMP b/resources/graphics/map/722.BMP
new file mode 100644
index 00000000..cf11ce3b
Binary files /dev/null and b/resources/graphics/map/722.BMP differ
diff --git a/resources/graphics/map/723.BMP b/resources/graphics/map/723.BMP
new file mode 100644
index 00000000..33b84488
Binary files /dev/null and b/resources/graphics/map/723.BMP differ
diff --git a/resources/graphics/map/724.BMP b/resources/graphics/map/724.BMP
new file mode 100644
index 00000000..673ec5b3
Binary files /dev/null and b/resources/graphics/map/724.BMP differ
diff --git a/resources/graphics/map/730.BMP b/resources/graphics/map/730.BMP
new file mode 100644
index 00000000..c9786d80
Binary files /dev/null and b/resources/graphics/map/730.BMP differ
diff --git a/resources/graphics/map/731.BMP b/resources/graphics/map/731.BMP
new file mode 100644
index 00000000..eed5220c
Binary files /dev/null and b/resources/graphics/map/731.BMP differ
diff --git a/resources/graphics/map/732.BMP b/resources/graphics/map/732.BMP
new file mode 100644
index 00000000..a9a7d5a6
Binary files /dev/null and b/resources/graphics/map/732.BMP differ
diff --git a/resources/graphics/map/733.BMP b/resources/graphics/map/733.BMP
new file mode 100644
index 00000000..bc687970
Binary files /dev/null and b/resources/graphics/map/733.BMP differ
diff --git a/resources/graphics/map/734.BMP b/resources/graphics/map/734.BMP
new file mode 100644
index 00000000..e83e52b7
Binary files /dev/null and b/resources/graphics/map/734.BMP differ
diff --git a/resources/graphics/map/735.BMP b/resources/graphics/map/735.BMP
new file mode 100644
index 00000000..401ba72b
Binary files /dev/null and b/resources/graphics/map/735.BMP differ
diff --git a/resources/graphics/map/736.BMP b/resources/graphics/map/736.BMP
new file mode 100644
index 00000000..82c68842
Binary files /dev/null and b/resources/graphics/map/736.BMP differ
diff --git a/resources/graphics/map/737.BMP b/resources/graphics/map/737.BMP
new file mode 100644
index 00000000..c0333661
Binary files /dev/null and b/resources/graphics/map/737.BMP differ
diff --git a/resources/graphics/map/738.BMP b/resources/graphics/map/738.BMP
new file mode 100644
index 00000000..6392a94f
Binary files /dev/null and b/resources/graphics/map/738.BMP differ
diff --git a/resources/graphics/map/739.BMP b/resources/graphics/map/739.BMP
new file mode 100644
index 00000000..f112b9b6
Binary files /dev/null and b/resources/graphics/map/739.BMP differ
diff --git a/resources/graphics/map/740.BMP b/resources/graphics/map/740.BMP
new file mode 100644
index 00000000..d25ee9e6
Binary files /dev/null and b/resources/graphics/map/740.BMP differ
diff --git a/resources/graphics/map/741.BMP b/resources/graphics/map/741.BMP
new file mode 100644
index 00000000..50d03139
Binary files /dev/null and b/resources/graphics/map/741.BMP differ
diff --git a/resources/graphics/map/742.BMP b/resources/graphics/map/742.BMP
new file mode 100644
index 00000000..d057e9da
Binary files /dev/null and b/resources/graphics/map/742.BMP differ
diff --git a/resources/graphics/map/7500.BMP b/resources/graphics/map/7500.BMP
new file mode 100644
index 00000000..c3c955a1
Binary files /dev/null and b/resources/graphics/map/7500.BMP differ
diff --git a/resources/graphics/map/7501.BMP b/resources/graphics/map/7501.BMP
new file mode 100644
index 00000000..7459a1cf
Binary files /dev/null and b/resources/graphics/map/7501.BMP differ
diff --git a/resources/graphics/map/7502.BMP b/resources/graphics/map/7502.BMP
new file mode 100644
index 00000000..48e3521c
Binary files /dev/null and b/resources/graphics/map/7502.BMP differ
diff --git a/resources/graphics/map/7503.BMP b/resources/graphics/map/7503.BMP
new file mode 100644
index 00000000..4a62063a
Binary files /dev/null and b/resources/graphics/map/7503.BMP differ
diff --git a/resources/graphics/map/7504.BMP b/resources/graphics/map/7504.BMP
new file mode 100644
index 00000000..43d20c6c
Binary files /dev/null and b/resources/graphics/map/7504.BMP differ
diff --git a/resources/graphics/map/7505.BMP b/resources/graphics/map/7505.BMP
new file mode 100644
index 00000000..95eb2c67
Binary files /dev/null and b/resources/graphics/map/7505.BMP differ
diff --git a/resources/graphics/map/7506.BMP b/resources/graphics/map/7506.BMP
new file mode 100644
index 00000000..ab0148cf
Binary files /dev/null and b/resources/graphics/map/7506.BMP differ
diff --git a/resources/graphics/map/7507.BMP b/resources/graphics/map/7507.BMP
new file mode 100644
index 00000000..2f04c6ce
Binary files /dev/null and b/resources/graphics/map/7507.BMP differ
diff --git a/resources/graphics/map/7508.BMP b/resources/graphics/map/7508.BMP
new file mode 100644
index 00000000..056a5b4d
Binary files /dev/null and b/resources/graphics/map/7508.BMP differ
diff --git a/resources/graphics/map/7509.BMP b/resources/graphics/map/7509.BMP
new file mode 100644
index 00000000..b62fff9e
Binary files /dev/null and b/resources/graphics/map/7509.BMP differ
diff --git a/resources/graphics/map/7510.BMP b/resources/graphics/map/7510.BMP
new file mode 100644
index 00000000..13fcdc06
Binary files /dev/null and b/resources/graphics/map/7510.BMP differ
diff --git a/resources/graphics/map/7511.BMP b/resources/graphics/map/7511.BMP
new file mode 100644
index 00000000..359bdfc3
Binary files /dev/null and b/resources/graphics/map/7511.BMP differ
diff --git a/resources/graphics/map/7512.BMP b/resources/graphics/map/7512.BMP
new file mode 100644
index 00000000..84191270
Binary files /dev/null and b/resources/graphics/map/7512.BMP differ
diff --git a/resources/graphics/map/7513.BMP b/resources/graphics/map/7513.BMP
new file mode 100644
index 00000000..062a0bb5
Binary files /dev/null and b/resources/graphics/map/7513.BMP differ
diff --git a/resources/graphics/map/7514.BMP b/resources/graphics/map/7514.BMP
new file mode 100644
index 00000000..a750cade
Binary files /dev/null and b/resources/graphics/map/7514.BMP differ
diff --git a/resources/graphics/map/7515.BMP b/resources/graphics/map/7515.BMP
new file mode 100644
index 00000000..be68cbdb
Binary files /dev/null and b/resources/graphics/map/7515.BMP differ
diff --git a/resources/graphics/map/7516.BMP b/resources/graphics/map/7516.BMP
new file mode 100644
index 00000000..86bdf490
Binary files /dev/null and b/resources/graphics/map/7516.BMP differ
diff --git a/resources/graphics/map/7517.BMP b/resources/graphics/map/7517.BMP
new file mode 100644
index 00000000..60d963b1
Binary files /dev/null and b/resources/graphics/map/7517.BMP differ
diff --git a/resources/graphics/map/7518.BMP b/resources/graphics/map/7518.BMP
new file mode 100644
index 00000000..c7abacdd
Binary files /dev/null and b/resources/graphics/map/7518.BMP differ
diff --git a/resources/graphics/map/7519.BMP b/resources/graphics/map/7519.BMP
new file mode 100644
index 00000000..41a47fcf
Binary files /dev/null and b/resources/graphics/map/7519.BMP differ
diff --git a/resources/graphics/map/7520.BMP b/resources/graphics/map/7520.BMP
new file mode 100644
index 00000000..dfd7378a
Binary files /dev/null and b/resources/graphics/map/7520.BMP differ
diff --git a/resources/graphics/map/7521.BMP b/resources/graphics/map/7521.BMP
new file mode 100644
index 00000000..bac722e3
Binary files /dev/null and b/resources/graphics/map/7521.BMP differ
diff --git a/resources/graphics/map/7522.BMP b/resources/graphics/map/7522.BMP
new file mode 100644
index 00000000..240dde8f
Binary files /dev/null and b/resources/graphics/map/7522.BMP differ
diff --git a/resources/graphics/map/7523.BMP b/resources/graphics/map/7523.BMP
new file mode 100644
index 00000000..370f87d7
Binary files /dev/null and b/resources/graphics/map/7523.BMP differ
diff --git a/resources/graphics/map/7524.BMP b/resources/graphics/map/7524.BMP
new file mode 100644
index 00000000..916d7980
Binary files /dev/null and b/resources/graphics/map/7524.BMP differ
diff --git a/resources/graphics/map/7525.BMP b/resources/graphics/map/7525.BMP
new file mode 100644
index 00000000..a3f55cd8
Binary files /dev/null and b/resources/graphics/map/7525.BMP differ
diff --git a/resources/graphics/map/7526.BMP b/resources/graphics/map/7526.BMP
new file mode 100644
index 00000000..9e5294bc
Binary files /dev/null and b/resources/graphics/map/7526.BMP differ
diff --git a/resources/graphics/map/7527.BMP b/resources/graphics/map/7527.BMP
new file mode 100644
index 00000000..ddacd022
Binary files /dev/null and b/resources/graphics/map/7527.BMP differ
diff --git a/resources/graphics/map/7528.BMP b/resources/graphics/map/7528.BMP
new file mode 100644
index 00000000..12fa280a
Binary files /dev/null and b/resources/graphics/map/7528.BMP differ
diff --git a/resources/graphics/map/7529.BMP b/resources/graphics/map/7529.BMP
new file mode 100644
index 00000000..3bf3436b
Binary files /dev/null and b/resources/graphics/map/7529.BMP differ
diff --git a/resources/graphics/map/8006.BMP b/resources/graphics/map/8006.BMP
new file mode 100644
index 00000000..292de637
Binary files /dev/null and b/resources/graphics/map/8006.BMP differ
diff --git a/resources/graphics/map/8007.BMP b/resources/graphics/map/8007.BMP
new file mode 100644
index 00000000..1830fe0c
Binary files /dev/null and b/resources/graphics/map/8007.BMP differ
diff --git a/resources/graphics/map/8008.bmp b/resources/graphics/map/8008.bmp
new file mode 100644
index 00000000..eab6f57c
Binary files /dev/null and b/resources/graphics/map/8008.bmp differ
diff --git a/resources/graphics/map/824.bmp b/resources/graphics/map/824.bmp
new file mode 100644
index 00000000..4c9170db
Binary files /dev/null and b/resources/graphics/map/824.bmp differ
diff --git a/resources/graphics/map/825.bmp b/resources/graphics/map/825.bmp
new file mode 100644
index 00000000..33fdbd55
Binary files /dev/null and b/resources/graphics/map/825.bmp differ
diff --git a/resources/graphics/map/826.bmp b/resources/graphics/map/826.bmp
new file mode 100644
index 00000000..4c1dea21
Binary files /dev/null and b/resources/graphics/map/826.bmp differ
diff --git a/resources/graphics/map/827.bmp b/resources/graphics/map/827.bmp
new file mode 100644
index 00000000..66bdc262
Binary files /dev/null and b/resources/graphics/map/827.bmp differ
diff --git a/resources/graphics/map/828.bmp b/resources/graphics/map/828.bmp
new file mode 100644
index 00000000..2ea8b162
Binary files /dev/null and b/resources/graphics/map/828.bmp differ
diff --git a/resources/graphics/map/829.bmp b/resources/graphics/map/829.bmp
new file mode 100644
index 00000000..18f8003a
Binary files /dev/null and b/resources/graphics/map/829.bmp differ
diff --git a/resources/graphics/map/830.bmp b/resources/graphics/map/830.bmp
new file mode 100644
index 00000000..53950ff2
Binary files /dev/null and b/resources/graphics/map/830.bmp differ
diff --git a/resources/graphics/map/831.bmp b/resources/graphics/map/831.bmp
new file mode 100644
index 00000000..7b8ee2d2
Binary files /dev/null and b/resources/graphics/map/831.bmp differ
diff --git a/resources/graphics/map/832.bmp b/resources/graphics/map/832.bmp
new file mode 100644
index 00000000..1013da00
Binary files /dev/null and b/resources/graphics/map/832.bmp differ
diff --git a/resources/graphics/map/833.bmp b/resources/graphics/map/833.bmp
new file mode 100644
index 00000000..17cf4af6
Binary files /dev/null and b/resources/graphics/map/833.bmp differ
diff --git a/resources/graphics/map/834.bmp b/resources/graphics/map/834.bmp
new file mode 100644
index 00000000..1f9268ef
Binary files /dev/null and b/resources/graphics/map/834.bmp differ
diff --git a/resources/graphics/map/835.bmp b/resources/graphics/map/835.bmp
new file mode 100644
index 00000000..beab0950
Binary files /dev/null and b/resources/graphics/map/835.bmp differ
diff --git a/resources/graphics/map/836.bmp b/resources/graphics/map/836.bmp
new file mode 100644
index 00000000..a4bde9ed
Binary files /dev/null and b/resources/graphics/map/836.bmp differ
diff --git a/resources/graphics/map/837.bmp b/resources/graphics/map/837.bmp
new file mode 100644
index 00000000..96ef4ffc
Binary files /dev/null and b/resources/graphics/map/837.bmp differ
diff --git a/resources/graphics/map/838.bmp b/resources/graphics/map/838.bmp
new file mode 100644
index 00000000..4d9aee63
Binary files /dev/null and b/resources/graphics/map/838.bmp differ
diff --git a/resources/graphics/map/839.bmp b/resources/graphics/map/839.bmp
new file mode 100644
index 00000000..7663e47c
Binary files /dev/null and b/resources/graphics/map/839.bmp differ
diff --git a/resources/graphics/map/9500.bmp b/resources/graphics/map/9500.bmp
new file mode 100644
index 00000000..bf8587ff
Binary files /dev/null and b/resources/graphics/map/9500.bmp differ
diff --git a/resources/graphics/map/9501.bmp b/resources/graphics/map/9501.bmp
new file mode 100644
index 00000000..158ba30b
Binary files /dev/null and b/resources/graphics/map/9501.bmp differ
diff --git a/resources/graphics/map/9502.bmp b/resources/graphics/map/9502.bmp
new file mode 100644
index 00000000..e241e4fc
Binary files /dev/null and b/resources/graphics/map/9502.bmp differ
diff --git a/resources/graphics/map/9503.bmp b/resources/graphics/map/9503.bmp
new file mode 100644
index 00000000..afaca73d
Binary files /dev/null and b/resources/graphics/map/9503.bmp differ
diff --git a/resources/graphics/map/9504.bmp b/resources/graphics/map/9504.bmp
new file mode 100644
index 00000000..c5985d96
Binary files /dev/null and b/resources/graphics/map/9504.bmp differ
diff --git a/resources/graphics/map/9505.bmp b/resources/graphics/map/9505.bmp
new file mode 100644
index 00000000..31972748
Binary files /dev/null and b/resources/graphics/map/9505.bmp differ
diff --git a/resources/graphics/map/9506.bmp b/resources/graphics/map/9506.bmp
new file mode 100644
index 00000000..8d646668
Binary files /dev/null and b/resources/graphics/map/9506.bmp differ
diff --git a/resources/graphics/map/9507.bmp b/resources/graphics/map/9507.bmp
new file mode 100644
index 00000000..ec77ab16
Binary files /dev/null and b/resources/graphics/map/9507.bmp differ
diff --git a/resources/graphics/map/9508.bmp b/resources/graphics/map/9508.bmp
new file mode 100644
index 00000000..2953a083
Binary files /dev/null and b/resources/graphics/map/9508.bmp differ
diff --git a/resources/graphics/map/9510.bmp b/resources/graphics/map/9510.bmp
new file mode 100644
index 00000000..9a4c0b16
Binary files /dev/null and b/resources/graphics/map/9510.bmp differ
diff --git a/resources/graphics/map/9511.bmp b/resources/graphics/map/9511.bmp
new file mode 100644
index 00000000..fa1a5e98
Binary files /dev/null and b/resources/graphics/map/9511.bmp differ
diff --git a/resources/graphics/map/9512.bmp b/resources/graphics/map/9512.bmp
new file mode 100644
index 00000000..187a3c84
Binary files /dev/null and b/resources/graphics/map/9512.bmp differ
diff --git a/resources/graphics/map/9513.bmp b/resources/graphics/map/9513.bmp
new file mode 100644
index 00000000..06f7a2a2
Binary files /dev/null and b/resources/graphics/map/9513.bmp differ
diff --git a/resources/graphics/map/9514.bmp b/resources/graphics/map/9514.bmp
new file mode 100644
index 00000000..e1bbadb4
Binary files /dev/null and b/resources/graphics/map/9514.bmp differ
diff --git a/resources/graphics/map/9515.bmp b/resources/graphics/map/9515.bmp
new file mode 100644
index 00000000..921fb02c
Binary files /dev/null and b/resources/graphics/map/9515.bmp differ
diff --git a/resources/graphics/map/9516.bmp b/resources/graphics/map/9516.bmp
new file mode 100644
index 00000000..f208003f
Binary files /dev/null and b/resources/graphics/map/9516.bmp differ
diff --git a/resources/graphics/map/9517.bmp b/resources/graphics/map/9517.bmp
new file mode 100644
index 00000000..d85b0e07
Binary files /dev/null and b/resources/graphics/map/9517.bmp differ
diff --git a/resources/graphics/map/9518.bmp b/resources/graphics/map/9518.bmp
new file mode 100644
index 00000000..3f22d352
Binary files /dev/null and b/resources/graphics/map/9518.bmp differ
diff --git a/resources/graphics/map/9519.bmp b/resources/graphics/map/9519.bmp
new file mode 100644
index 00000000..04fc2993
Binary files /dev/null and b/resources/graphics/map/9519.bmp differ
diff --git a/resources/graphics/map/9520.bmp b/resources/graphics/map/9520.bmp
new file mode 100644
index 00000000..ace554a8
Binary files /dev/null and b/resources/graphics/map/9520.bmp differ
diff --git a/resources/graphics/map/9521.bmp b/resources/graphics/map/9521.bmp
new file mode 100644
index 00000000..356b4a30
Binary files /dev/null and b/resources/graphics/map/9521.bmp differ
diff --git a/resources/graphics/map/9522.bmp b/resources/graphics/map/9522.bmp
new file mode 100644
index 00000000..8a799a47
Binary files /dev/null and b/resources/graphics/map/9522.bmp differ
diff --git a/resources/graphics/map/9523.bmp b/resources/graphics/map/9523.bmp
new file mode 100644
index 00000000..21d61ccd
Binary files /dev/null and b/resources/graphics/map/9523.bmp differ
diff --git a/resources/graphics/map/9530.bmp b/resources/graphics/map/9530.bmp
new file mode 100644
index 00000000..6922ef6d
Binary files /dev/null and b/resources/graphics/map/9530.bmp differ
diff --git a/resources/graphics/map/9531.bmp b/resources/graphics/map/9531.bmp
new file mode 100644
index 00000000..8298e773
Binary files /dev/null and b/resources/graphics/map/9531.bmp differ
diff --git a/resources/graphics/map/9532.bmp b/resources/graphics/map/9532.bmp
new file mode 100644
index 00000000..195e256d
Binary files /dev/null and b/resources/graphics/map/9532.bmp differ
diff --git a/resources/graphics/map/9533.bmp b/resources/graphics/map/9533.bmp
new file mode 100644
index 00000000..c32fa1f4
Binary files /dev/null and b/resources/graphics/map/9533.bmp differ
diff --git a/resources/graphics/map/9534.bmp b/resources/graphics/map/9534.bmp
new file mode 100644
index 00000000..799f18c3
Binary files /dev/null and b/resources/graphics/map/9534.bmp differ
diff --git a/resources/graphics/map/9535.bmp b/resources/graphics/map/9535.bmp
new file mode 100644
index 00000000..6c2ed26c
Binary files /dev/null and b/resources/graphics/map/9535.bmp differ
diff --git a/resources/graphics/map/9536.bmp b/resources/graphics/map/9536.bmp
new file mode 100644
index 00000000..6990a39d
Binary files /dev/null and b/resources/graphics/map/9536.bmp differ
diff --git a/resources/graphics/map/9537.bmp b/resources/graphics/map/9537.bmp
new file mode 100644
index 00000000..7a8ce17f
Binary files /dev/null and b/resources/graphics/map/9537.bmp differ
diff --git a/resources/graphics/map/9538.bmp b/resources/graphics/map/9538.bmp
new file mode 100644
index 00000000..6fb2b066
Binary files /dev/null and b/resources/graphics/map/9538.bmp differ
diff --git a/resources/graphics/map/9539.bmp b/resources/graphics/map/9539.bmp
new file mode 100644
index 00000000..fdba2ec6
Binary files /dev/null and b/resources/graphics/map/9539.bmp differ
diff --git a/resources/graphics/map/9540.bmp b/resources/graphics/map/9540.bmp
new file mode 100644
index 00000000..00430a12
Binary files /dev/null and b/resources/graphics/map/9540.bmp differ
diff --git a/resources/graphics/map/9541.bmp b/resources/graphics/map/9541.bmp
new file mode 100644
index 00000000..03d1b107
Binary files /dev/null and b/resources/graphics/map/9541.bmp differ
diff --git a/resources/graphics/map/9542.bmp b/resources/graphics/map/9542.bmp
new file mode 100644
index 00000000..b4728cf0
Binary files /dev/null and b/resources/graphics/map/9542.bmp differ
diff --git a/resources/graphics/map/9543.bmp b/resources/graphics/map/9543.bmp
new file mode 100644
index 00000000..b2ad4cc0
Binary files /dev/null and b/resources/graphics/map/9543.bmp differ
diff --git a/resources/graphics/map/9544.bmp b/resources/graphics/map/9544.bmp
new file mode 100644
index 00000000..1b571b49
Binary files /dev/null and b/resources/graphics/map/9544.bmp differ
diff --git a/resources/graphics/map/9545.bmp b/resources/graphics/map/9545.bmp
new file mode 100644
index 00000000..135dac7a
Binary files /dev/null and b/resources/graphics/map/9545.bmp differ
diff --git a/resources/graphics/map/9546.bmp b/resources/graphics/map/9546.bmp
new file mode 100644
index 00000000..528e6e91
Binary files /dev/null and b/resources/graphics/map/9546.bmp differ
diff --git a/resources/graphics/map/9547.bmp b/resources/graphics/map/9547.bmp
new file mode 100644
index 00000000..692629d2
Binary files /dev/null and b/resources/graphics/map/9547.bmp differ
diff --git a/resources/graphics/map/9548.bmp b/resources/graphics/map/9548.bmp
new file mode 100644
index 00000000..e7c78743
Binary files /dev/null and b/resources/graphics/map/9548.bmp differ
diff --git a/resources/graphics/map/9549.bmp b/resources/graphics/map/9549.bmp
new file mode 100644
index 00000000..e6a20ecc
Binary files /dev/null and b/resources/graphics/map/9549.bmp differ
diff --git a/resources/graphics/map/9550.bmp b/resources/graphics/map/9550.bmp
new file mode 100644
index 00000000..4b8491a7
Binary files /dev/null and b/resources/graphics/map/9550.bmp differ
diff --git a/resources/graphics/map/9551.bmp b/resources/graphics/map/9551.bmp
new file mode 100644
index 00000000..c24821b3
Binary files /dev/null and b/resources/graphics/map/9551.bmp differ
diff --git a/resources/graphics/map/9552.bmp b/resources/graphics/map/9552.bmp
new file mode 100644
index 00000000..2cbbfb33
Binary files /dev/null and b/resources/graphics/map/9552.bmp differ
diff --git a/resources/graphics/map/9553.bmp b/resources/graphics/map/9553.bmp
new file mode 100644
index 00000000..e7c78743
Binary files /dev/null and b/resources/graphics/map/9553.bmp differ
diff --git a/resources/graphics/map/9554.bmp b/resources/graphics/map/9554.bmp
new file mode 100644
index 00000000..59081986
Binary files /dev/null and b/resources/graphics/map/9554.bmp differ
diff --git a/resources/graphics/map/9555.bmp b/resources/graphics/map/9555.bmp
new file mode 100644
index 00000000..53e556f2
Binary files /dev/null and b/resources/graphics/map/9555.bmp differ
diff --git a/resources/graphics/npc/304.BMP b/resources/graphics/npc/304.BMP
new file mode 100644
index 00000000..73faa3fa
Binary files /dev/null and b/resources/graphics/npc/304.BMP differ
diff --git a/resources/graphics/npc/305.BMP b/resources/graphics/npc/305.BMP
new file mode 100644
index 00000000..bfc123d6
Binary files /dev/null and b/resources/graphics/npc/305.BMP differ
diff --git a/resources/graphics/npc/306.BMP b/resources/graphics/npc/306.BMP
new file mode 100644
index 00000000..7e883cad
Binary files /dev/null and b/resources/graphics/npc/306.BMP differ
diff --git a/resources/graphics/npc/307.BMP b/resources/graphics/npc/307.BMP
new file mode 100644
index 00000000..bd0874c1
Binary files /dev/null and b/resources/graphics/npc/307.BMP differ
diff --git a/resources/graphics/npc/308.BMP b/resources/graphics/npc/308.BMP
new file mode 100644
index 00000000..583c291b
Binary files /dev/null and b/resources/graphics/npc/308.BMP differ
diff --git a/resources/graphics/npc/309.BMP b/resources/graphics/npc/309.BMP
new file mode 100644
index 00000000..8ad15c03
Binary files /dev/null and b/resources/graphics/npc/309.BMP differ
diff --git a/resources/graphics/npc/310.BMP b/resources/graphics/npc/310.BMP
new file mode 100644
index 00000000..be1eb999
Binary files /dev/null and b/resources/graphics/npc/310.BMP differ
diff --git a/resources/graphics/npc/311.BMP b/resources/graphics/npc/311.BMP
new file mode 100644
index 00000000..2f81b847
Binary files /dev/null and b/resources/graphics/npc/311.BMP differ
diff --git a/resources/graphics/npc/312.BMP b/resources/graphics/npc/312.BMP
new file mode 100644
index 00000000..51ed0328
Binary files /dev/null and b/resources/graphics/npc/312.BMP differ
diff --git a/resources/graphics/npc/313.BMP b/resources/graphics/npc/313.BMP
new file mode 100644
index 00000000..23a4bac3
Binary files /dev/null and b/resources/graphics/npc/313.BMP differ
diff --git a/resources/graphics/npc/314.BMP b/resources/graphics/npc/314.BMP
new file mode 100644
index 00000000..9c32b0df
Binary files /dev/null and b/resources/graphics/npc/314.BMP differ
diff --git a/resources/graphics/npc/315.BMP b/resources/graphics/npc/315.BMP
new file mode 100644
index 00000000..574165c5
Binary files /dev/null and b/resources/graphics/npc/315.BMP differ
diff --git a/resources/graphics/npc/328.BMP b/resources/graphics/npc/328.BMP
new file mode 100644
index 00000000..181080a5
Binary files /dev/null and b/resources/graphics/npc/328.BMP differ
diff --git a/resources/graphics/npc/329.BMP b/resources/graphics/npc/329.BMP
new file mode 100644
index 00000000..9c80b007
Binary files /dev/null and b/resources/graphics/npc/329.BMP differ
diff --git a/resources/graphics/npc/331.BMP b/resources/graphics/npc/331.BMP
new file mode 100644
index 00000000..aba81718
Binary files /dev/null and b/resources/graphics/npc/331.BMP differ
diff --git a/resources/graphics/npc/335.BMP b/resources/graphics/npc/335.BMP
new file mode 100644
index 00000000..04b9dad7
Binary files /dev/null and b/resources/graphics/npc/335.BMP differ
diff --git a/resources/graphics/npc/336.BMP b/resources/graphics/npc/336.BMP
new file mode 100644
index 00000000..a41298d0
Binary files /dev/null and b/resources/graphics/npc/336.BMP differ
diff --git a/resources/graphics/npc/338.BMP b/resources/graphics/npc/338.BMP
new file mode 100644
index 00000000..3555f222
Binary files /dev/null and b/resources/graphics/npc/338.BMP differ
diff --git a/resources/graphics/npc/346.BMP b/resources/graphics/npc/346.BMP
new file mode 100644
index 00000000..57cda1c1
Binary files /dev/null and b/resources/graphics/npc/346.BMP differ
diff --git a/resources/graphics/npc/355.BMP b/resources/graphics/npc/355.BMP
new file mode 100644
index 00000000..cc25ba7c
Binary files /dev/null and b/resources/graphics/npc/355.BMP differ
diff --git a/resources/graphics/npc/356.BMP b/resources/graphics/npc/356.BMP
new file mode 100644
index 00000000..3f8560b9
Binary files /dev/null and b/resources/graphics/npc/356.BMP differ
diff --git a/resources/graphics/npc/357.BMP b/resources/graphics/npc/357.BMP
new file mode 100644
index 00000000..23e82418
Binary files /dev/null and b/resources/graphics/npc/357.BMP differ
diff --git a/resources/graphics/npc/358.BMP b/resources/graphics/npc/358.BMP
new file mode 100644
index 00000000..142904ad
Binary files /dev/null and b/resources/graphics/npc/358.BMP differ
diff --git a/resources/graphics/npc/359.BMP b/resources/graphics/npc/359.BMP
new file mode 100644
index 00000000..7386fa89
Binary files /dev/null and b/resources/graphics/npc/359.BMP differ
diff --git a/resources/graphics/npc/360.BMP b/resources/graphics/npc/360.BMP
new file mode 100644
index 00000000..e2a9957c
Binary files /dev/null and b/resources/graphics/npc/360.BMP differ
diff --git a/resources/graphics/npc/361.BMP b/resources/graphics/npc/361.BMP
new file mode 100644
index 00000000..ec162832
Binary files /dev/null and b/resources/graphics/npc/361.BMP differ
diff --git a/resources/graphics/npc/362.BMP b/resources/graphics/npc/362.BMP
new file mode 100644
index 00000000..08d69bda
Binary files /dev/null and b/resources/graphics/npc/362.BMP differ
diff --git a/resources/graphics/npc/363.BMP b/resources/graphics/npc/363.BMP
new file mode 100644
index 00000000..4491c534
Binary files /dev/null and b/resources/graphics/npc/363.BMP differ
diff --git a/resources/graphics/npc/365.BMP b/resources/graphics/npc/365.BMP
new file mode 100644
index 00000000..32e1cf96
Binary files /dev/null and b/resources/graphics/npc/365.BMP differ
diff --git a/resources/graphics/npc/366.BMP b/resources/graphics/npc/366.BMP
new file mode 100644
index 00000000..b579f409
Binary files /dev/null and b/resources/graphics/npc/366.BMP differ
diff --git a/resources/graphics/npc/367.BMP b/resources/graphics/npc/367.BMP
new file mode 100644
index 00000000..a62a265c
Binary files /dev/null and b/resources/graphics/npc/367.BMP differ
diff --git a/resources/graphics/npc/368.BMP b/resources/graphics/npc/368.BMP
new file mode 100644
index 00000000..438fdb3e
Binary files /dev/null and b/resources/graphics/npc/368.BMP differ
diff --git a/resources/graphics/npc/369.BMP b/resources/graphics/npc/369.BMP
new file mode 100644
index 00000000..459f0341
Binary files /dev/null and b/resources/graphics/npc/369.BMP differ
diff --git a/resources/graphics/npc/370.BMP b/resources/graphics/npc/370.BMP
new file mode 100644
index 00000000..e39a1d29
Binary files /dev/null and b/resources/graphics/npc/370.BMP differ
diff --git a/resources/graphics/npc/371.BMP b/resources/graphics/npc/371.BMP
new file mode 100644
index 00000000..8b924364
Binary files /dev/null and b/resources/graphics/npc/371.BMP differ
diff --git a/resources/graphics/npc/372.BMP b/resources/graphics/npc/372.BMP
new file mode 100644
index 00000000..cfa9e352
Binary files /dev/null and b/resources/graphics/npc/372.BMP differ
diff --git a/resources/graphics/npc/379.BMP b/resources/graphics/npc/379.BMP
new file mode 100644
index 00000000..9ce36ca5
Binary files /dev/null and b/resources/graphics/npc/379.BMP differ
diff --git a/resources/graphics/npc/380.BMP b/resources/graphics/npc/380.BMP
new file mode 100644
index 00000000..553dd643
Binary files /dev/null and b/resources/graphics/npc/380.BMP differ
diff --git a/resources/graphics/npc/386.BMP b/resources/graphics/npc/386.BMP
new file mode 100644
index 00000000..9ce580e1
Binary files /dev/null and b/resources/graphics/npc/386.BMP differ
diff --git a/resources/graphics/npc/387.BMP b/resources/graphics/npc/387.BMP
new file mode 100644
index 00000000..b499c720
Binary files /dev/null and b/resources/graphics/npc/387.BMP differ
diff --git a/resources/graphics/npc/388.BMP b/resources/graphics/npc/388.BMP
new file mode 100644
index 00000000..52720fd7
Binary files /dev/null and b/resources/graphics/npc/388.BMP differ
diff --git a/resources/graphics/npc/389.BMP b/resources/graphics/npc/389.BMP
new file mode 100644
index 00000000..ea3abdb7
Binary files /dev/null and b/resources/graphics/npc/389.BMP differ
diff --git a/resources/graphics/npc/390.BMP b/resources/graphics/npc/390.BMP
new file mode 100644
index 00000000..808ac3cd
Binary files /dev/null and b/resources/graphics/npc/390.BMP differ
diff --git a/resources/graphics/npc/701.BMP b/resources/graphics/npc/701.BMP
new file mode 100644
index 00000000..ccfef987
Binary files /dev/null and b/resources/graphics/npc/701.BMP differ
diff --git a/resources/graphics/npc/702.BMP b/resources/graphics/npc/702.BMP
new file mode 100644
index 00000000..21e79a34
Binary files /dev/null and b/resources/graphics/npc/702.BMP differ
diff --git a/resources/graphics/npc/703.BMP b/resources/graphics/npc/703.BMP
new file mode 100644
index 00000000..c7ca8427
Binary files /dev/null and b/resources/graphics/npc/703.BMP differ
diff --git a/resources/graphics/npc/751.bmp b/resources/graphics/npc/751.bmp
new file mode 100644
index 00000000..db56754a
Binary files /dev/null and b/resources/graphics/npc/751.bmp differ
diff --git a/resources/graphics/npc/8019.bmp b/resources/graphics/npc/8019.bmp
new file mode 100644
index 00000000..2019f8c2
Binary files /dev/null and b/resources/graphics/npc/8019.bmp differ
diff --git a/resources/graphics/npc/8020.bmp b/resources/graphics/npc/8020.bmp
new file mode 100644
index 00000000..782d9863
Binary files /dev/null and b/resources/graphics/npc/8020.bmp differ
diff --git a/resources/graphics/npc/8021.bmp b/resources/graphics/npc/8021.bmp
new file mode 100644
index 00000000..d053cefd
Binary files /dev/null and b/resources/graphics/npc/8021.bmp differ
diff --git a/resources/graphics/npc/8022.bmp b/resources/graphics/npc/8022.bmp
new file mode 100644
index 00000000..98ee9c9a
Binary files /dev/null and b/resources/graphics/npc/8022.bmp differ
diff --git a/resources/graphics/npc/8065.bmp b/resources/graphics/npc/8065.bmp
new file mode 100644
index 00000000..97368e4f
Binary files /dev/null and b/resources/graphics/npc/8065.bmp differ
diff --git a/resources/graphics/npc/8202.bmp b/resources/graphics/npc/8202.bmp
new file mode 100644
index 00000000..ef268f18
Binary files /dev/null and b/resources/graphics/npc/8202.bmp differ
diff --git a/resources/graphics/npc/8203.bmp b/resources/graphics/npc/8203.bmp
new file mode 100644
index 00000000..7826e7e3
Binary files /dev/null and b/resources/graphics/npc/8203.bmp differ
diff --git a/resources/graphics/npc/8204.bmp b/resources/graphics/npc/8204.bmp
new file mode 100644
index 00000000..581e8229
Binary files /dev/null and b/resources/graphics/npc/8204.bmp differ
diff --git a/resources/graphics/npc/8205.bmp b/resources/graphics/npc/8205.bmp
new file mode 100644
index 00000000..128d5444
Binary files /dev/null and b/resources/graphics/npc/8205.bmp differ
diff --git a/resources/graphics/npc/8206.bmp b/resources/graphics/npc/8206.bmp
new file mode 100644
index 00000000..484e9340
Binary files /dev/null and b/resources/graphics/npc/8206.bmp differ
diff --git a/resources/graphics/npc/8207.bmp b/resources/graphics/npc/8207.bmp
new file mode 100644
index 00000000..5c902e64
Binary files /dev/null and b/resources/graphics/npc/8207.bmp differ
diff --git a/resources/graphics/npc/8208.bmp b/resources/graphics/npc/8208.bmp
new file mode 100644
index 00000000..b91775d7
Binary files /dev/null and b/resources/graphics/npc/8208.bmp differ
diff --git a/resources/graphics/npc/8209.bmp b/resources/graphics/npc/8209.bmp
new file mode 100644
index 00000000..d395184b
Binary files /dev/null and b/resources/graphics/npc/8209.bmp differ
diff --git a/resources/graphics/npc/8210.bmp b/resources/graphics/npc/8210.bmp
new file mode 100644
index 00000000..b283c9d8
Binary files /dev/null and b/resources/graphics/npc/8210.bmp differ
diff --git a/resources/graphics/npc/823.bmp b/resources/graphics/npc/823.bmp
new file mode 100644
index 00000000..2dcbaedb
Binary files /dev/null and b/resources/graphics/npc/823.bmp differ
diff --git a/resources/graphics/object/3.BMP b/resources/graphics/object/3.BMP
new file mode 100644
index 00000000..c47a7353
Binary files /dev/null and b/resources/graphics/object/3.BMP differ
diff --git a/resources/graphics/object/316.BMP b/resources/graphics/object/316.BMP
new file mode 100644
index 00000000..8abc3823
Binary files /dev/null and b/resources/graphics/object/316.BMP differ
diff --git a/resources/graphics/object/317.BMP b/resources/graphics/object/317.BMP
new file mode 100644
index 00000000..f5936629
Binary files /dev/null and b/resources/graphics/object/317.BMP differ
diff --git a/resources/graphics/object/318.BMP b/resources/graphics/object/318.BMP
new file mode 100644
index 00000000..9f3725d4
Binary files /dev/null and b/resources/graphics/object/318.BMP differ
diff --git a/resources/graphics/object/319.BMP b/resources/graphics/object/319.BMP
new file mode 100644
index 00000000..01f4871c
Binary files /dev/null and b/resources/graphics/object/319.BMP differ
diff --git a/resources/graphics/object/502.BMP b/resources/graphics/object/502.BMP
new file mode 100644
index 00000000..514b484b
Binary files /dev/null and b/resources/graphics/object/502.BMP differ
diff --git a/resources/graphics/object/503.BMP b/resources/graphics/object/503.BMP
new file mode 100644
index 00000000..305fc03d
Binary files /dev/null and b/resources/graphics/object/503.BMP differ
diff --git a/resources/graphics/object/504.BMP b/resources/graphics/object/504.BMP
new file mode 100644
index 00000000..8e5d49ec
Binary files /dev/null and b/resources/graphics/object/504.BMP differ
diff --git a/resources/graphics/object/505.BMP b/resources/graphics/object/505.BMP
new file mode 100644
index 00000000..94223611
Binary files /dev/null and b/resources/graphics/object/505.BMP differ
diff --git a/resources/graphics/object/506.BMP b/resources/graphics/object/506.BMP
new file mode 100644
index 00000000..1f2e30ec
Binary files /dev/null and b/resources/graphics/object/506.BMP differ
diff --git a/resources/graphics/object/507.BMP b/resources/graphics/object/507.BMP
new file mode 100644
index 00000000..82904b24
Binary files /dev/null and b/resources/graphics/object/507.BMP differ
diff --git a/resources/graphics/object/508.BMP b/resources/graphics/object/508.BMP
new file mode 100644
index 00000000..61ffcfd6
Binary files /dev/null and b/resources/graphics/object/508.BMP differ
diff --git a/resources/graphics/object/509.BMP b/resources/graphics/object/509.BMP
new file mode 100644
index 00000000..57e6e82a
Binary files /dev/null and b/resources/graphics/object/509.BMP differ
diff --git a/resources/graphics/object/510.BMP b/resources/graphics/object/510.BMP
new file mode 100644
index 00000000..457266ad
Binary files /dev/null and b/resources/graphics/object/510.BMP differ
diff --git a/resources/graphics/object/511.BMP b/resources/graphics/object/511.BMP
new file mode 100644
index 00000000..85c3e697
Binary files /dev/null and b/resources/graphics/object/511.BMP differ
diff --git a/resources/graphics/object/512.BMP b/resources/graphics/object/512.BMP
new file mode 100644
index 00000000..c47a7353
Binary files /dev/null and b/resources/graphics/object/512.BMP differ
diff --git a/resources/graphics/object/514.BMP b/resources/graphics/object/514.BMP
new file mode 100644
index 00000000..376b8e34
Binary files /dev/null and b/resources/graphics/object/514.BMP differ
diff --git a/resources/graphics/object/515.BMP b/resources/graphics/object/515.BMP
new file mode 100644
index 00000000..cd70e970
Binary files /dev/null and b/resources/graphics/object/515.BMP differ
diff --git a/resources/graphics/object/516.BMP b/resources/graphics/object/516.BMP
new file mode 100644
index 00000000..5eb583d5
Binary files /dev/null and b/resources/graphics/object/516.BMP differ
diff --git a/resources/graphics/object/517.BMP b/resources/graphics/object/517.BMP
new file mode 100644
index 00000000..d0bb69b4
Binary files /dev/null and b/resources/graphics/object/517.BMP differ
diff --git a/resources/graphics/object/518.BMP b/resources/graphics/object/518.BMP
new file mode 100644
index 00000000..cced94a3
Binary files /dev/null and b/resources/graphics/object/518.BMP differ
diff --git a/resources/graphics/object/519.BMP b/resources/graphics/object/519.BMP
new file mode 100644
index 00000000..2da8278e
Binary files /dev/null and b/resources/graphics/object/519.BMP differ
diff --git a/resources/graphics/object/520.BMP b/resources/graphics/object/520.BMP
new file mode 100644
index 00000000..0676d0b0
Binary files /dev/null and b/resources/graphics/object/520.BMP differ
diff --git a/resources/graphics/object/521.BMP b/resources/graphics/object/521.BMP
new file mode 100644
index 00000000..4437993a
Binary files /dev/null and b/resources/graphics/object/521.BMP differ
diff --git a/resources/graphics/object/522.BMP b/resources/graphics/object/522.BMP
new file mode 100644
index 00000000..71a55e3d
Binary files /dev/null and b/resources/graphics/object/522.BMP differ
diff --git a/resources/graphics/object/529.BMP b/resources/graphics/object/529.BMP
new file mode 100644
index 00000000..ef548aab
Binary files /dev/null and b/resources/graphics/object/529.BMP differ
diff --git a/resources/graphics/object/530.BMP b/resources/graphics/object/530.BMP
new file mode 100644
index 00000000..45b54d36
Binary files /dev/null and b/resources/graphics/object/530.BMP differ
diff --git a/resources/graphics/object/531.BMP b/resources/graphics/object/531.BMP
new file mode 100644
index 00000000..10e1317f
Binary files /dev/null and b/resources/graphics/object/531.BMP differ
diff --git a/resources/graphics/object/532.BMP b/resources/graphics/object/532.BMP
new file mode 100644
index 00000000..3b0c0e8c
Binary files /dev/null and b/resources/graphics/object/532.BMP differ
diff --git a/resources/graphics/object/533.BMP b/resources/graphics/object/533.BMP
new file mode 100644
index 00000000..e6cc70b4
Binary files /dev/null and b/resources/graphics/object/533.BMP differ
diff --git a/resources/graphics/object/534.BMP b/resources/graphics/object/534.BMP
new file mode 100644
index 00000000..ee11b6c3
Binary files /dev/null and b/resources/graphics/object/534.BMP differ
diff --git a/resources/graphics/object/535.BMP b/resources/graphics/object/535.BMP
new file mode 100644
index 00000000..8d755516
Binary files /dev/null and b/resources/graphics/object/535.BMP differ
diff --git a/resources/graphics/object/536.BMP b/resources/graphics/object/536.BMP
new file mode 100644
index 00000000..24df2343
Binary files /dev/null and b/resources/graphics/object/536.BMP differ
diff --git a/resources/graphics/object/537.BMP b/resources/graphics/object/537.BMP
new file mode 100644
index 00000000..b7d7dba9
Binary files /dev/null and b/resources/graphics/object/537.BMP differ
diff --git a/resources/graphics/object/556.BMP b/resources/graphics/object/556.BMP
new file mode 100644
index 00000000..bb6c61fa
Binary files /dev/null and b/resources/graphics/object/556.BMP differ
diff --git a/resources/graphics/object/560.BMP b/resources/graphics/object/560.BMP
new file mode 100644
index 00000000..a5b44b95
Binary files /dev/null and b/resources/graphics/object/560.BMP differ
diff --git a/resources/graphics/object/563.BMP b/resources/graphics/object/563.BMP
new file mode 100644
index 00000000..7c504bd4
Binary files /dev/null and b/resources/graphics/object/563.BMP differ
diff --git a/resources/graphics/object/564.BMP b/resources/graphics/object/564.BMP
new file mode 100644
index 00000000..b6a121c7
Binary files /dev/null and b/resources/graphics/object/564.BMP differ
diff --git a/resources/graphics/object/565.BMP b/resources/graphics/object/565.BMP
new file mode 100644
index 00000000..68e9c0b3
Binary files /dev/null and b/resources/graphics/object/565.BMP differ
diff --git a/resources/graphics/object/566.BMP b/resources/graphics/object/566.BMP
new file mode 100644
index 00000000..f063bda3
Binary files /dev/null and b/resources/graphics/object/566.BMP differ
diff --git a/resources/graphics/object/567.BMP b/resources/graphics/object/567.BMP
new file mode 100644
index 00000000..61d5b696
Binary files /dev/null and b/resources/graphics/object/567.BMP differ
diff --git a/resources/graphics/object/568.BMP b/resources/graphics/object/568.BMP
new file mode 100644
index 00000000..eebd55a8
Binary files /dev/null and b/resources/graphics/object/568.BMP differ
diff --git a/resources/graphics/object/569.BMP b/resources/graphics/object/569.BMP
new file mode 100644
index 00000000..7e69fcc7
Binary files /dev/null and b/resources/graphics/object/569.BMP differ
diff --git a/resources/graphics/object/570.BMP b/resources/graphics/object/570.BMP
new file mode 100644
index 00000000..91d3d5d2
Binary files /dev/null and b/resources/graphics/object/570.BMP differ
diff --git a/resources/graphics/object/571.BMP b/resources/graphics/object/571.BMP
new file mode 100644
index 00000000..005e08f8
Binary files /dev/null and b/resources/graphics/object/571.BMP differ
diff --git a/resources/graphics/object/572.BMP b/resources/graphics/object/572.BMP
new file mode 100644
index 00000000..f28aa2e6
Binary files /dev/null and b/resources/graphics/object/572.BMP differ
diff --git a/resources/graphics/object/576.BMP b/resources/graphics/object/576.BMP
new file mode 100644
index 00000000..30db582e
Binary files /dev/null and b/resources/graphics/object/576.BMP differ
diff --git a/resources/graphics/object/578.BMP b/resources/graphics/object/578.BMP
new file mode 100644
index 00000000..e1ef73ba
Binary files /dev/null and b/resources/graphics/object/578.BMP differ
diff --git a/resources/graphics/object/579.BMP b/resources/graphics/object/579.BMP
new file mode 100644
index 00000000..bd290325
Binary files /dev/null and b/resources/graphics/object/579.BMP differ
diff --git a/resources/graphics/object/580.BMP b/resources/graphics/object/580.BMP
new file mode 100644
index 00000000..eda52896
Binary files /dev/null and b/resources/graphics/object/580.BMP differ
diff --git a/resources/graphics/object/581.BMP b/resources/graphics/object/581.BMP
new file mode 100644
index 00000000..c0124d1f
Binary files /dev/null and b/resources/graphics/object/581.BMP differ
diff --git a/resources/graphics/object/582.BMP b/resources/graphics/object/582.BMP
new file mode 100644
index 00000000..0ea4d4b0
Binary files /dev/null and b/resources/graphics/object/582.BMP differ
diff --git a/resources/graphics/object/583.BMP b/resources/graphics/object/583.BMP
new file mode 100644
index 00000000..6765ecfa
Binary files /dev/null and b/resources/graphics/object/583.BMP differ
diff --git a/resources/graphics/object/584.BMP b/resources/graphics/object/584.BMP
new file mode 100644
index 00000000..a6983bb1
Binary files /dev/null and b/resources/graphics/object/584.BMP differ
diff --git a/resources/graphics/object/585.BMP b/resources/graphics/object/585.BMP
new file mode 100644
index 00000000..01d330c8
Binary files /dev/null and b/resources/graphics/object/585.BMP differ
diff --git a/resources/graphics/object/586.BMP b/resources/graphics/object/586.BMP
new file mode 100644
index 00000000..6949ed51
Binary files /dev/null and b/resources/graphics/object/586.BMP differ
diff --git a/resources/graphics/object/587.BMP b/resources/graphics/object/587.BMP
new file mode 100644
index 00000000..620f832f
Binary files /dev/null and b/resources/graphics/object/587.BMP differ
diff --git a/resources/graphics/object/588.BMP b/resources/graphics/object/588.BMP
new file mode 100644
index 00000000..ef381107
Binary files /dev/null and b/resources/graphics/object/588.BMP differ
diff --git a/resources/graphics/object/589.BMP b/resources/graphics/object/589.BMP
new file mode 100644
index 00000000..99988e61
Binary files /dev/null and b/resources/graphics/object/589.BMP differ
diff --git a/resources/graphics/object/590.BMP b/resources/graphics/object/590.BMP
new file mode 100644
index 00000000..7ddcb849
Binary files /dev/null and b/resources/graphics/object/590.BMP differ
diff --git a/resources/graphics/object/591.BMP b/resources/graphics/object/591.BMP
new file mode 100644
index 00000000..4559f584
Binary files /dev/null and b/resources/graphics/object/591.BMP differ
diff --git a/resources/graphics/object/592.BMP b/resources/graphics/object/592.BMP
new file mode 100644
index 00000000..c5464598
Binary files /dev/null and b/resources/graphics/object/592.BMP differ
diff --git a/resources/graphics/object/593.BMP b/resources/graphics/object/593.BMP
new file mode 100644
index 00000000..b555cb0f
Binary files /dev/null and b/resources/graphics/object/593.BMP differ
diff --git a/resources/graphics/object/594.BMP b/resources/graphics/object/594.BMP
new file mode 100644
index 00000000..45e788fd
Binary files /dev/null and b/resources/graphics/object/594.BMP differ
diff --git a/resources/graphics/object/595.BMP b/resources/graphics/object/595.BMP
new file mode 100644
index 00000000..dab2d9b4
Binary files /dev/null and b/resources/graphics/object/595.BMP differ
diff --git a/resources/graphics/object/596.BMP b/resources/graphics/object/596.BMP
new file mode 100644
index 00000000..34054e69
Binary files /dev/null and b/resources/graphics/object/596.BMP differ
diff --git a/resources/graphics/object/597.BMP b/resources/graphics/object/597.BMP
new file mode 100644
index 00000000..716e0c55
Binary files /dev/null and b/resources/graphics/object/597.BMP differ
diff --git a/resources/graphics/object/599.BMP b/resources/graphics/object/599.BMP
new file mode 100644
index 00000000..998f38bc
Binary files /dev/null and b/resources/graphics/object/599.BMP differ
diff --git a/resources/graphics/object/600.BMP b/resources/graphics/object/600.BMP
new file mode 100644
index 00000000..affd850d
Binary files /dev/null and b/resources/graphics/object/600.BMP differ
diff --git a/resources/graphics/object/601.BMP b/resources/graphics/object/601.BMP
new file mode 100644
index 00000000..863c9b42
Binary files /dev/null and b/resources/graphics/object/601.BMP differ
diff --git a/resources/graphics/object/602.BMP b/resources/graphics/object/602.BMP
new file mode 100644
index 00000000..f4a127e2
Binary files /dev/null and b/resources/graphics/object/602.BMP differ
diff --git a/resources/graphics/object/603.BMP b/resources/graphics/object/603.BMP
new file mode 100644
index 00000000..b2b1fe40
Binary files /dev/null and b/resources/graphics/object/603.BMP differ
diff --git a/resources/graphics/object/604.BMP b/resources/graphics/object/604.BMP
new file mode 100644
index 00000000..b651de8d
Binary files /dev/null and b/resources/graphics/object/604.BMP differ
diff --git a/resources/graphics/object/605.BMP b/resources/graphics/object/605.BMP
new file mode 100644
index 00000000..4bc29079
Binary files /dev/null and b/resources/graphics/object/605.BMP differ
diff --git a/resources/graphics/object/606.BMP b/resources/graphics/object/606.BMP
new file mode 100644
index 00000000..ada0a97e
Binary files /dev/null and b/resources/graphics/object/606.BMP differ
diff --git a/resources/graphics/object/608.BMP b/resources/graphics/object/608.BMP
new file mode 100644
index 00000000..8c99674f
Binary files /dev/null and b/resources/graphics/object/608.BMP differ
diff --git a/resources/graphics/object/609.BMP b/resources/graphics/object/609.BMP
new file mode 100644
index 00000000..4bd43207
Binary files /dev/null and b/resources/graphics/object/609.BMP differ
diff --git a/resources/graphics/object/610.BMP b/resources/graphics/object/610.BMP
new file mode 100644
index 00000000..3212c23f
Binary files /dev/null and b/resources/graphics/object/610.BMP differ
diff --git a/resources/graphics/object/611.BMP b/resources/graphics/object/611.BMP
new file mode 100644
index 00000000..1f0f3582
Binary files /dev/null and b/resources/graphics/object/611.BMP differ
diff --git a/resources/graphics/object/612.BMP b/resources/graphics/object/612.BMP
new file mode 100644
index 00000000..11c4e562
Binary files /dev/null and b/resources/graphics/object/612.BMP differ
diff --git a/resources/graphics/object/613.BMP b/resources/graphics/object/613.BMP
new file mode 100644
index 00000000..3249bf4a
Binary files /dev/null and b/resources/graphics/object/613.BMP differ
diff --git a/resources/graphics/object/614.BMP b/resources/graphics/object/614.BMP
new file mode 100644
index 00000000..d3e9658c
Binary files /dev/null and b/resources/graphics/object/614.BMP differ
diff --git a/resources/graphics/object/615.BMP b/resources/graphics/object/615.BMP
new file mode 100644
index 00000000..3e7910fb
Binary files /dev/null and b/resources/graphics/object/615.BMP differ
diff --git a/resources/graphics/object/616.BMP b/resources/graphics/object/616.BMP
new file mode 100644
index 00000000..59a63661
Binary files /dev/null and b/resources/graphics/object/616.BMP differ
diff --git a/resources/graphics/object/617.BMP b/resources/graphics/object/617.BMP
new file mode 100644
index 00000000..12f47fc3
Binary files /dev/null and b/resources/graphics/object/617.BMP differ
diff --git a/resources/graphics/object/639.BMP b/resources/graphics/object/639.BMP
new file mode 100644
index 00000000..331fce2c
Binary files /dev/null and b/resources/graphics/object/639.BMP differ
diff --git a/resources/graphics/object/640.BMP b/resources/graphics/object/640.BMP
new file mode 100644
index 00000000..3fbe7115
Binary files /dev/null and b/resources/graphics/object/640.BMP differ
diff --git a/resources/graphics/object/658.BMP b/resources/graphics/object/658.BMP
new file mode 100644
index 00000000..11ab7e5f
Binary files /dev/null and b/resources/graphics/object/658.BMP differ
diff --git a/resources/graphics/object/659.BMP b/resources/graphics/object/659.BMP
new file mode 100644
index 00000000..021e79ec
Binary files /dev/null and b/resources/graphics/object/659.BMP differ
diff --git a/resources/graphics/object/660.BMP b/resources/graphics/object/660.BMP
new file mode 100644
index 00000000..e4e57ae2
Binary files /dev/null and b/resources/graphics/object/660.BMP differ
diff --git a/resources/graphics/object/661.BMP b/resources/graphics/object/661.BMP
new file mode 100644
index 00000000..6f86fad4
Binary files /dev/null and b/resources/graphics/object/661.BMP differ
diff --git a/resources/graphics/object/662.BMP b/resources/graphics/object/662.BMP
new file mode 100644
index 00000000..4a6da584
Binary files /dev/null and b/resources/graphics/object/662.BMP differ
diff --git a/resources/graphics/object/663.BMP b/resources/graphics/object/663.BMP
new file mode 100644
index 00000000..3b9a7ec6
Binary files /dev/null and b/resources/graphics/object/663.BMP differ
diff --git a/resources/graphics/object/670.BMP b/resources/graphics/object/670.BMP
new file mode 100644
index 00000000..56dd7e49
Binary files /dev/null and b/resources/graphics/object/670.BMP differ
diff --git a/resources/graphics/object/676.BMP b/resources/graphics/object/676.BMP
new file mode 100644
index 00000000..c0f88c49
Binary files /dev/null and b/resources/graphics/object/676.BMP differ
diff --git a/resources/graphics/object/677.BMP b/resources/graphics/object/677.BMP
new file mode 100644
index 00000000..a9b3e956
Binary files /dev/null and b/resources/graphics/object/677.BMP differ
diff --git a/resources/graphics/object/678.BMP b/resources/graphics/object/678.BMP
new file mode 100644
index 00000000..d77f5881
Binary files /dev/null and b/resources/graphics/object/678.BMP differ
diff --git a/resources/graphics/object/679.BMP b/resources/graphics/object/679.BMP
new file mode 100644
index 00000000..63573a0d
Binary files /dev/null and b/resources/graphics/object/679.BMP differ
diff --git a/resources/graphics/object/680.BMP b/resources/graphics/object/680.BMP
new file mode 100644
index 00000000..bd8e254d
Binary files /dev/null and b/resources/graphics/object/680.BMP differ
diff --git a/resources/graphics/object/681.BMP b/resources/graphics/object/681.BMP
new file mode 100644
index 00000000..1bffc844
Binary files /dev/null and b/resources/graphics/object/681.BMP differ
diff --git a/resources/graphics/object/682.BMP b/resources/graphics/object/682.BMP
new file mode 100644
index 00000000..e2a0f3a9
Binary files /dev/null and b/resources/graphics/object/682.BMP differ
diff --git a/resources/graphics/object/683.BMP b/resources/graphics/object/683.BMP
new file mode 100644
index 00000000..e68c6997
Binary files /dev/null and b/resources/graphics/object/683.BMP differ
diff --git a/resources/graphics/object/684.BMP b/resources/graphics/object/684.BMP
new file mode 100644
index 00000000..36f75044
Binary files /dev/null and b/resources/graphics/object/684.BMP differ
diff --git a/resources/graphics/object/685.BMP b/resources/graphics/object/685.BMP
new file mode 100644
index 00000000..c1aee31e
Binary files /dev/null and b/resources/graphics/object/685.BMP differ
diff --git a/resources/graphics/object/686.BMP b/resources/graphics/object/686.BMP
new file mode 100644
index 00000000..2df0e9a8
Binary files /dev/null and b/resources/graphics/object/686.BMP differ
diff --git a/resources/graphics/object/687.BMP b/resources/graphics/object/687.BMP
new file mode 100644
index 00000000..f1d3e4e0
Binary files /dev/null and b/resources/graphics/object/687.BMP differ
diff --git a/resources/graphics/object/688.BMP b/resources/graphics/object/688.BMP
new file mode 100644
index 00000000..bb27dd10
Binary files /dev/null and b/resources/graphics/object/688.BMP differ
diff --git a/resources/graphics/object/689.BMP b/resources/graphics/object/689.BMP
new file mode 100644
index 00000000..f7960aa5
Binary files /dev/null and b/resources/graphics/object/689.BMP differ
diff --git a/resources/graphics/object/690.BMP b/resources/graphics/object/690.BMP
new file mode 100644
index 00000000..02c19cd4
Binary files /dev/null and b/resources/graphics/object/690.BMP differ
diff --git a/resources/graphics/object/691.BMP b/resources/graphics/object/691.BMP
new file mode 100644
index 00000000..d554465e
Binary files /dev/null and b/resources/graphics/object/691.BMP differ
diff --git a/resources/graphics/object/693.BMP b/resources/graphics/object/693.BMP
new file mode 100644
index 00000000..aa2e254f
Binary files /dev/null and b/resources/graphics/object/693.BMP differ
diff --git a/resources/graphics/object/694.BMP b/resources/graphics/object/694.BMP
new file mode 100644
index 00000000..2b36a19a
Binary files /dev/null and b/resources/graphics/object/694.BMP differ
diff --git a/resources/graphics/object/695.BMP b/resources/graphics/object/695.BMP
new file mode 100644
index 00000000..20792c19
Binary files /dev/null and b/resources/graphics/object/695.BMP differ
diff --git a/resources/graphics/object/696.BMP b/resources/graphics/object/696.BMP
new file mode 100644
index 00000000..8dd40271
Binary files /dev/null and b/resources/graphics/object/696.BMP differ
diff --git a/resources/graphics/object/697.BMP b/resources/graphics/object/697.BMP
new file mode 100644
index 00000000..05c5552e
Binary files /dev/null and b/resources/graphics/object/697.BMP differ
diff --git a/resources/graphics/object/698.BMP b/resources/graphics/object/698.BMP
new file mode 100644
index 00000000..4049c33c
Binary files /dev/null and b/resources/graphics/object/698.BMP differ
diff --git a/resources/graphics/object/699.BMP b/resources/graphics/object/699.BMP
new file mode 100644
index 00000000..2161ee4b
Binary files /dev/null and b/resources/graphics/object/699.BMP differ
diff --git a/resources/graphics/object/700.BMP b/resources/graphics/object/700.BMP
new file mode 100644
index 00000000..48fafe4a
Binary files /dev/null and b/resources/graphics/object/700.BMP differ
diff --git a/resources/graphics/object/704.BMP b/resources/graphics/object/704.BMP
new file mode 100644
index 00000000..c7cec9f0
Binary files /dev/null and b/resources/graphics/object/704.BMP differ
diff --git a/resources/graphics/object/705.BMP b/resources/graphics/object/705.BMP
new file mode 100644
index 00000000..a11afbca
Binary files /dev/null and b/resources/graphics/object/705.BMP differ
diff --git a/resources/graphics/object/706.BMP b/resources/graphics/object/706.BMP
new file mode 100644
index 00000000..0b71b1c6
Binary files /dev/null and b/resources/graphics/object/706.BMP differ
diff --git a/resources/graphics/object/708.BMP b/resources/graphics/object/708.BMP
new file mode 100644
index 00000000..3cad4ca2
Binary files /dev/null and b/resources/graphics/object/708.BMP differ
diff --git a/resources/graphics/object/709.BMP b/resources/graphics/object/709.BMP
new file mode 100644
index 00000000..d9e208c8
Binary files /dev/null and b/resources/graphics/object/709.BMP differ
diff --git a/resources/graphics/object/710.BMP b/resources/graphics/object/710.BMP
new file mode 100644
index 00000000..4c6e1dc5
Binary files /dev/null and b/resources/graphics/object/710.BMP differ
diff --git a/resources/graphics/object/711.BMP b/resources/graphics/object/711.BMP
new file mode 100644
index 00000000..9ae351c3
Binary files /dev/null and b/resources/graphics/object/711.BMP differ
diff --git a/resources/graphics/object/712.BMP b/resources/graphics/object/712.BMP
new file mode 100644
index 00000000..b4bbe1f6
Binary files /dev/null and b/resources/graphics/object/712.BMP differ
diff --git a/resources/graphics/object/713.BMP b/resources/graphics/object/713.BMP
new file mode 100644
index 00000000..f96a0b02
Binary files /dev/null and b/resources/graphics/object/713.BMP differ
diff --git a/resources/graphics/object/714.BMP b/resources/graphics/object/714.BMP
new file mode 100644
index 00000000..d55bbb0c
Binary files /dev/null and b/resources/graphics/object/714.BMP differ
diff --git a/resources/graphics/object/715.BMP b/resources/graphics/object/715.BMP
new file mode 100644
index 00000000..066c5cde
Binary files /dev/null and b/resources/graphics/object/715.BMP differ
diff --git a/resources/graphics/object/716.BMP b/resources/graphics/object/716.BMP
new file mode 100644
index 00000000..95d0c807
Binary files /dev/null and b/resources/graphics/object/716.BMP differ
diff --git a/resources/graphics/object/717.BMP b/resources/graphics/object/717.BMP
new file mode 100644
index 00000000..d814aa8a
Binary files /dev/null and b/resources/graphics/object/717.BMP differ
diff --git a/resources/graphics/object/725.BMP b/resources/graphics/object/725.BMP
new file mode 100644
index 00000000..107a7a00
Binary files /dev/null and b/resources/graphics/object/725.BMP differ
diff --git a/resources/graphics/object/726.BMP b/resources/graphics/object/726.BMP
new file mode 100644
index 00000000..fb933421
Binary files /dev/null and b/resources/graphics/object/726.BMP differ
diff --git a/resources/graphics/object/727.BMP b/resources/graphics/object/727.BMP
new file mode 100644
index 00000000..3654eca8
Binary files /dev/null and b/resources/graphics/object/727.BMP differ
diff --git a/resources/graphics/object/728.BMP b/resources/graphics/object/728.BMP
new file mode 100644
index 00000000..9f34b0f8
Binary files /dev/null and b/resources/graphics/object/728.BMP differ
diff --git a/resources/graphics/object/729.BMP b/resources/graphics/object/729.BMP
new file mode 100644
index 00000000..0a113e23
Binary files /dev/null and b/resources/graphics/object/729.BMP differ
diff --git a/resources/graphics/object/743.BMP b/resources/graphics/object/743.BMP
new file mode 100644
index 00000000..e4f9f98f
Binary files /dev/null and b/resources/graphics/object/743.BMP differ
diff --git a/resources/graphics/object/744.BMP b/resources/graphics/object/744.BMP
new file mode 100644
index 00000000..11b4345a
Binary files /dev/null and b/resources/graphics/object/744.BMP differ
diff --git a/resources/graphics/object/745.BMP b/resources/graphics/object/745.BMP
new file mode 100644
index 00000000..25a2f0b9
Binary files /dev/null and b/resources/graphics/object/745.BMP differ
diff --git a/resources/graphics/object/747.bmp b/resources/graphics/object/747.bmp
new file mode 100644
index 00000000..385fde8c
Binary files /dev/null and b/resources/graphics/object/747.bmp differ
diff --git a/resources/graphics/object/748.bmp b/resources/graphics/object/748.bmp
new file mode 100644
index 00000000..b7ae4509
Binary files /dev/null and b/resources/graphics/object/748.bmp differ
diff --git a/resources/graphics/object/749.bmp b/resources/graphics/object/749.bmp
new file mode 100644
index 00000000..597e072f
Binary files /dev/null and b/resources/graphics/object/749.bmp differ
diff --git a/resources/graphics/object/750.bmp b/resources/graphics/object/750.bmp
new file mode 100644
index 00000000..d30eff64
Binary files /dev/null and b/resources/graphics/object/750.bmp differ
diff --git a/resources/graphics/object/756.bmp b/resources/graphics/object/756.bmp
new file mode 100644
index 00000000..db7fda91
Binary files /dev/null and b/resources/graphics/object/756.bmp differ
diff --git a/resources/graphics/object/757.bmp b/resources/graphics/object/757.bmp
new file mode 100644
index 00000000..1fecc095
Binary files /dev/null and b/resources/graphics/object/757.bmp differ
diff --git a/resources/graphics/object/758.bmp b/resources/graphics/object/758.bmp
new file mode 100644
index 00000000..93e38426
Binary files /dev/null and b/resources/graphics/object/758.bmp differ
diff --git a/resources/graphics/object/759.bmp b/resources/graphics/object/759.bmp
new file mode 100644
index 00000000..04d8defe
Binary files /dev/null and b/resources/graphics/object/759.bmp differ
diff --git a/resources/graphics/object/760.bmp b/resources/graphics/object/760.bmp
new file mode 100644
index 00000000..22cccb32
Binary files /dev/null and b/resources/graphics/object/760.bmp differ
diff --git a/resources/graphics/object/761.bmp b/resources/graphics/object/761.bmp
new file mode 100644
index 00000000..844718b9
Binary files /dev/null and b/resources/graphics/object/761.bmp differ
diff --git a/resources/graphics/object/762.bmp b/resources/graphics/object/762.bmp
new file mode 100644
index 00000000..2d1ff907
Binary files /dev/null and b/resources/graphics/object/762.bmp differ
diff --git a/resources/graphics/object/763.bmp b/resources/graphics/object/763.bmp
new file mode 100644
index 00000000..5510f9e5
Binary files /dev/null and b/resources/graphics/object/763.bmp differ
diff --git a/resources/graphics/object/764.bmp b/resources/graphics/object/764.bmp
new file mode 100644
index 00000000..38b19f99
Binary files /dev/null and b/resources/graphics/object/764.bmp differ
diff --git a/resources/graphics/object/765.bmp b/resources/graphics/object/765.bmp
new file mode 100644
index 00000000..bdc68127
Binary files /dev/null and b/resources/graphics/object/765.bmp differ
diff --git a/resources/graphics/object/766.bmp b/resources/graphics/object/766.bmp
new file mode 100644
index 00000000..59785140
Binary files /dev/null and b/resources/graphics/object/766.bmp differ
diff --git a/resources/graphics/object/767.bmp b/resources/graphics/object/767.bmp
new file mode 100644
index 00000000..d3112915
Binary files /dev/null and b/resources/graphics/object/767.bmp differ
diff --git a/resources/graphics/object/768.bmp b/resources/graphics/object/768.bmp
new file mode 100644
index 00000000..b287d035
Binary files /dev/null and b/resources/graphics/object/768.bmp differ
diff --git a/resources/graphics/object/769.bmp b/resources/graphics/object/769.bmp
new file mode 100644
index 00000000..ea3e5701
Binary files /dev/null and b/resources/graphics/object/769.bmp differ
diff --git a/resources/graphics/object/770.bmp b/resources/graphics/object/770.bmp
new file mode 100644
index 00000000..7aa306a0
Binary files /dev/null and b/resources/graphics/object/770.bmp differ
diff --git a/resources/graphics/object/771.bmp b/resources/graphics/object/771.bmp
new file mode 100644
index 00000000..93b8e0ff
Binary files /dev/null and b/resources/graphics/object/771.bmp differ
diff --git a/resources/graphics/object/772.bmp b/resources/graphics/object/772.bmp
new file mode 100644
index 00000000..e5968700
Binary files /dev/null and b/resources/graphics/object/772.bmp differ
diff --git a/resources/graphics/object/773.bmp b/resources/graphics/object/773.bmp
new file mode 100644
index 00000000..dfcf1c4e
Binary files /dev/null and b/resources/graphics/object/773.bmp differ
diff --git a/resources/graphics/object/774.bmp b/resources/graphics/object/774.bmp
new file mode 100644
index 00000000..40b4acc5
Binary files /dev/null and b/resources/graphics/object/774.bmp differ
diff --git a/resources/graphics/object/775.bmp b/resources/graphics/object/775.bmp
new file mode 100644
index 00000000..75f8f2fc
Binary files /dev/null and b/resources/graphics/object/775.bmp differ
diff --git a/resources/graphics/object/776.bmp b/resources/graphics/object/776.bmp
new file mode 100644
index 00000000..39a7ef5b
Binary files /dev/null and b/resources/graphics/object/776.bmp differ
diff --git a/resources/graphics/object/777.bmp b/resources/graphics/object/777.bmp
new file mode 100644
index 00000000..63a90097
Binary files /dev/null and b/resources/graphics/object/777.bmp differ
diff --git a/resources/graphics/object/778.bmp b/resources/graphics/object/778.bmp
new file mode 100644
index 00000000..e12ca987
Binary files /dev/null and b/resources/graphics/object/778.bmp differ
diff --git a/resources/graphics/object/779.bmp b/resources/graphics/object/779.bmp
new file mode 100644
index 00000000..215bdb02
Binary files /dev/null and b/resources/graphics/object/779.bmp differ
diff --git a/resources/graphics/object/780.bmp b/resources/graphics/object/780.bmp
new file mode 100644
index 00000000..516530ad
Binary files /dev/null and b/resources/graphics/object/780.bmp differ
diff --git a/resources/graphics/object/781.bmp b/resources/graphics/object/781.bmp
new file mode 100644
index 00000000..cf9c1c1c
Binary files /dev/null and b/resources/graphics/object/781.bmp differ
diff --git a/resources/graphics/object/782.bmp b/resources/graphics/object/782.bmp
new file mode 100644
index 00000000..18ee12f8
Binary files /dev/null and b/resources/graphics/object/782.bmp differ
diff --git a/resources/graphics/object/783.bmp b/resources/graphics/object/783.bmp
new file mode 100644
index 00000000..cbc82a09
Binary files /dev/null and b/resources/graphics/object/783.bmp differ
diff --git a/resources/graphics/object/784.bmp b/resources/graphics/object/784.bmp
new file mode 100644
index 00000000..71abfb2a
Binary files /dev/null and b/resources/graphics/object/784.bmp differ
diff --git a/resources/graphics/object/785.bmp b/resources/graphics/object/785.bmp
new file mode 100644
index 00000000..3a080387
Binary files /dev/null and b/resources/graphics/object/785.bmp differ
diff --git a/resources/graphics/object/786.bmp b/resources/graphics/object/786.bmp
new file mode 100644
index 00000000..4e966abb
Binary files /dev/null and b/resources/graphics/object/786.bmp differ
diff --git a/resources/graphics/object/787.bmp b/resources/graphics/object/787.bmp
new file mode 100644
index 00000000..a105b550
Binary files /dev/null and b/resources/graphics/object/787.bmp differ
diff --git a/resources/graphics/object/788.bmp b/resources/graphics/object/788.bmp
new file mode 100644
index 00000000..a105b550
Binary files /dev/null and b/resources/graphics/object/788.bmp differ
diff --git a/resources/graphics/object/789.bmp b/resources/graphics/object/789.bmp
new file mode 100644
index 00000000..78c2f4dd
Binary files /dev/null and b/resources/graphics/object/789.bmp differ
diff --git a/resources/graphics/object/790.bmp b/resources/graphics/object/790.bmp
new file mode 100644
index 00000000..ea999ef7
Binary files /dev/null and b/resources/graphics/object/790.bmp differ
diff --git a/resources/graphics/object/791.bmp b/resources/graphics/object/791.bmp
new file mode 100644
index 00000000..ea999ef7
Binary files /dev/null and b/resources/graphics/object/791.bmp differ
diff --git a/resources/graphics/object/792.bmp b/resources/graphics/object/792.bmp
new file mode 100644
index 00000000..be8bff5b
Binary files /dev/null and b/resources/graphics/object/792.bmp differ
diff --git a/resources/graphics/object/793.bmp b/resources/graphics/object/793.bmp
new file mode 100644
index 00000000..f88ff2cf
Binary files /dev/null and b/resources/graphics/object/793.bmp differ
diff --git a/resources/graphics/object/794.bmp b/resources/graphics/object/794.bmp
new file mode 100644
index 00000000..1dca69c3
Binary files /dev/null and b/resources/graphics/object/794.bmp differ
diff --git a/resources/graphics/object/795.bmp b/resources/graphics/object/795.bmp
new file mode 100644
index 00000000..22ba224d
Binary files /dev/null and b/resources/graphics/object/795.bmp differ
diff --git a/resources/graphics/object/796.bmp b/resources/graphics/object/796.bmp
new file mode 100644
index 00000000..4b61e9af
Binary files /dev/null and b/resources/graphics/object/796.bmp differ
diff --git a/resources/graphics/object/797.bmp b/resources/graphics/object/797.bmp
new file mode 100644
index 00000000..f3bf6e71
Binary files /dev/null and b/resources/graphics/object/797.bmp differ
diff --git a/resources/graphics/object/798.bmp b/resources/graphics/object/798.bmp
new file mode 100644
index 00000000..51fa0589
Binary files /dev/null and b/resources/graphics/object/798.bmp differ
diff --git a/resources/graphics/object/799.bmp b/resources/graphics/object/799.bmp
new file mode 100644
index 00000000..1b3e01c8
Binary files /dev/null and b/resources/graphics/object/799.bmp differ
diff --git a/resources/graphics/object/800.bmp b/resources/graphics/object/800.bmp
new file mode 100644
index 00000000..55aff999
Binary files /dev/null and b/resources/graphics/object/800.bmp differ
diff --git a/resources/graphics/object/801.bmp b/resources/graphics/object/801.bmp
new file mode 100644
index 00000000..92b17e85
Binary files /dev/null and b/resources/graphics/object/801.bmp differ
diff --git a/resources/graphics/object/802.bmp b/resources/graphics/object/802.bmp
new file mode 100644
index 00000000..50d64a94
Binary files /dev/null and b/resources/graphics/object/802.bmp differ
diff --git a/resources/graphics/object/803.bmp b/resources/graphics/object/803.bmp
new file mode 100644
index 00000000..cf078ae9
Binary files /dev/null and b/resources/graphics/object/803.bmp differ
diff --git a/resources/graphics/object/804.bmp b/resources/graphics/object/804.bmp
new file mode 100644
index 00000000..05ee91ed
Binary files /dev/null and b/resources/graphics/object/804.bmp differ
diff --git a/resources/graphics/object/805.bmp b/resources/graphics/object/805.bmp
new file mode 100644
index 00000000..b71dd77e
Binary files /dev/null and b/resources/graphics/object/805.bmp differ
diff --git a/resources/graphics/object/806.bmp b/resources/graphics/object/806.bmp
new file mode 100644
index 00000000..d9e60f66
Binary files /dev/null and b/resources/graphics/object/806.bmp differ
diff --git a/resources/graphics/object/807.bmp b/resources/graphics/object/807.bmp
new file mode 100644
index 00000000..1731074d
Binary files /dev/null and b/resources/graphics/object/807.bmp differ
diff --git a/resources/graphics/object/808.bmp b/resources/graphics/object/808.bmp
new file mode 100644
index 00000000..4b61e9af
Binary files /dev/null and b/resources/graphics/object/808.bmp differ
diff --git a/resources/graphics/object/809.bmp b/resources/graphics/object/809.bmp
new file mode 100644
index 00000000..f3bf6e71
Binary files /dev/null and b/resources/graphics/object/809.bmp differ
diff --git a/resources/graphics/object/810.bmp b/resources/graphics/object/810.bmp
new file mode 100644
index 00000000..51fa0589
Binary files /dev/null and b/resources/graphics/object/810.bmp differ
diff --git a/resources/graphics/object/811.bmp b/resources/graphics/object/811.bmp
new file mode 100644
index 00000000..1b3e01c8
Binary files /dev/null and b/resources/graphics/object/811.bmp differ
diff --git a/resources/graphics/object/812.bmp b/resources/graphics/object/812.bmp
new file mode 100644
index 00000000..d21f434b
Binary files /dev/null and b/resources/graphics/object/812.bmp differ
diff --git a/resources/graphics/object/813.bmp b/resources/graphics/object/813.bmp
new file mode 100644
index 00000000..db7fda91
Binary files /dev/null and b/resources/graphics/object/813.bmp differ
diff --git a/resources/graphics/object/814.bmp b/resources/graphics/object/814.bmp
new file mode 100644
index 00000000..55aff999
Binary files /dev/null and b/resources/graphics/object/814.bmp differ
diff --git a/resources/graphics/object/815.bmp b/resources/graphics/object/815.bmp
new file mode 100644
index 00000000..9068e00b
Binary files /dev/null and b/resources/graphics/object/815.bmp differ
diff --git a/resources/graphics/object/816.bmp b/resources/graphics/object/816.bmp
new file mode 100644
index 00000000..5a95bd52
Binary files /dev/null and b/resources/graphics/object/816.bmp differ
diff --git a/resources/graphics/object/817.bmp b/resources/graphics/object/817.bmp
new file mode 100644
index 00000000..0d97f803
Binary files /dev/null and b/resources/graphics/object/817.bmp differ
diff --git a/resources/graphics/object/819.bmp b/resources/graphics/object/819.bmp
new file mode 100644
index 00000000..5bf044fa
Binary files /dev/null and b/resources/graphics/object/819.bmp differ
diff --git a/resources/graphics/object/820.bmp b/resources/graphics/object/820.bmp
new file mode 100644
index 00000000..385d4d61
Binary files /dev/null and b/resources/graphics/object/820.bmp differ
diff --git a/resources/graphics/object/821.bmp b/resources/graphics/object/821.bmp
new file mode 100644
index 00000000..49cfc7e8
Binary files /dev/null and b/resources/graphics/object/821.bmp differ
diff --git a/resources/graphics/object/822.bmp b/resources/graphics/object/822.bmp
new file mode 100644
index 00000000..be427683
Binary files /dev/null and b/resources/graphics/object/822.bmp differ
diff --git a/resources/graphics/shield/10000.BMP b/resources/graphics/shield/10000.BMP
new file mode 100644
index 00000000..fbcbb162
Binary files /dev/null and b/resources/graphics/shield/10000.BMP differ
diff --git a/resources/graphics/shield/10001.BMP b/resources/graphics/shield/10001.BMP
new file mode 100644
index 00000000..7d5fe43d
Binary files /dev/null and b/resources/graphics/shield/10001.BMP differ
diff --git a/resources/graphics/shield/1502.BMP b/resources/graphics/shield/1502.BMP
new file mode 100644
index 00000000..2ce643ce
Binary files /dev/null and b/resources/graphics/shield/1502.BMP differ
diff --git a/resources/graphics/weapon/1500.BMP b/resources/graphics/weapon/1500.BMP
new file mode 100644
index 00000000..28f02624
Binary files /dev/null and b/resources/graphics/weapon/1500.BMP differ
diff --git a/resources/graphics/weapon/1501.BMP b/resources/graphics/weapon/1501.BMP
new file mode 100644
index 00000000..264ea467
Binary files /dev/null and b/resources/graphics/weapon/1501.BMP differ
diff --git a/resources/graphics/weapon/718.BMP b/resources/graphics/weapon/718.BMP
new file mode 100644
index 00000000..7dfba741
Binary files /dev/null and b/resources/graphics/weapon/718.BMP differ
diff --git a/resources/graphics/weapon/719.BMP b/resources/graphics/weapon/719.BMP
new file mode 100644
index 00000000..bbf13bda
Binary files /dev/null and b/resources/graphics/weapon/719.BMP differ
diff --git a/resources/graphics/weapon/720.BMP b/resources/graphics/weapon/720.BMP
new file mode 100644
index 00000000..7ac50d25
Binary files /dev/null and b/resources/graphics/weapon/720.BMP differ
diff --git a/resources/graphics/weapon/746.bmp b/resources/graphics/weapon/746.bmp
new file mode 100644
index 00000000..b34f3084
Binary files /dev/null and b/resources/graphics/weapon/746.bmp differ
diff --git a/server/Server.json b/server/Server.json
index 51af785f..4f29819b 100644
--- a/server/Server.json
+++ b/server/Server.json
@@ -3,8 +3,8 @@
"network": {
"useLocalHost":true,
"ports": {
- "tcpPort":7666,
- "udpPort":7667
+ "tcpPort":8667,
+ "udpPort":8668
},
"api": {
"apiURL":"https://localhost",
diff --git a/server/build.gradle b/server/build.gradle
index 018912e1..04f717fc 100644
--- a/server/build.gradle
+++ b/server/build.gradle
@@ -92,7 +92,7 @@ task bundle(type: Exec, dependsOn: [dist, jlink]) {
'--type', 'app-image',
'--name', project.appName,
'--vendor', "Argentum Online Libre",
- '--app-version', "${project.version}",
+ '--app-version', "1.15.0",
'--dest', releasePath,
'--runtime-image', prebuiltJRE,
'--input', "${buildDir}/libs",
diff --git a/server/src/server/configs/CharConfiguration.java b/server/src/server/configs/CharConfiguration.java
index 8cf43605..7baeecf2 100644
--- a/server/src/server/configs/CharConfiguration.java
+++ b/server/src/server/configs/CharConfiguration.java
@@ -9,7 +9,7 @@
public class CharConfiguration extends BaseConfiguration {
// Default values
- public static final String PATH = "server/Chars.json";
+ public static final String PATH = "Chars.json";
private static final ArrayList> DEF_MODIFIERS = new ArrayList<>();
static {
diff --git a/server/src/server/configs/ServerConfiguration.java b/server/src/server/configs/ServerConfiguration.java
index 9946fecf..83bf1c1a 100644
--- a/server/src/server/configs/ServerConfiguration.java
+++ b/server/src/server/configs/ServerConfiguration.java
@@ -3,10 +3,10 @@
public class ServerConfiguration extends BaseConfiguration {
// Default values
- public static final String PATH = "server/Server.json";
+ public static final String PATH = "Server.json";
- private static final int TCP_PORT = 9000;
- private static final int UDP_PORT = 9001;
+ private static final int TCP_PORT = 8667;
+ private static final int UDP_PORT = 8668;
private static final String API_URL = "https://localhost";
private static final int API_PORT = 1337;
private static final int ROOM_LIMIT = 1;
diff --git a/server/src/server/core/Finisterra.java b/server/src/server/core/Finisterra.java
index 63202704..e737f072 100644
--- a/server/src/server/core/Finisterra.java
+++ b/server/src/server/core/Finisterra.java
@@ -3,7 +3,6 @@
import com.artemis.FluidEntityPlugin;
import com.artemis.World;
import com.artemis.WorldConfigurationBuilder;
-import com.artemis.managers.TagManager;
import com.badlogic.gdx.ApplicationAdapter;
import com.badlogic.gdx.Gdx;
import com.esotericsoftware.minlog.Log;
@@ -121,7 +120,6 @@ private void createWorld() {
.with(new CommandSystem())
.with(new EntityUpdateSystem())
.with(new MessageSystem())
- .with(new TagManager())
.with(new MovementSystem())
.with(new PlayerActionSystem())
.with(new ItemActionSystem())
diff --git a/server/src/server/systems/account/AccountSystem.java b/server/src/server/systems/account/AccountSystem.java
index 0cb24ada..3166b487 100644
--- a/server/src/server/systems/account/AccountSystem.java
+++ b/server/src/server/systems/account/AccountSystem.java
@@ -46,7 +46,7 @@ public void createAccount(int connectionID, String username, String email, Strin
}
}
- serverSystem.sendTo(connectionID, new AccountCreationResponse(successful));
+ serverSystem.sendByConnectionId(connectionID, new AccountCreationResponse(successful));
serverSystem.closeConnection(connectionID);
}
@@ -55,11 +55,11 @@ public void loginAccount(int connectionID, String email, String password) {
Account requestedAccount = Account.load(email);
if (requestedAccount == null) {
- serverSystem.sendTo(connectionID, new AccountLoginResponse(Messages.NON_EXISTENT_ACCOUNT));
+ serverSystem.sendByConnectionId(connectionID, new AccountLoginResponse(Messages.NON_EXISTENT_ACCOUNT));
serverSystem.closeConnection(connectionID);
return;
} else if (!AccountSystemUtilities.checkPassword(password, requestedAccount.getPassword())) {
- serverSystem.sendTo(connectionID, new AccountLoginResponse(Messages.ACCOUNT_LOGIN_FAILED));
+ serverSystem.sendByConnectionId(connectionID, new AccountLoginResponse(Messages.ACCOUNT_LOGIN_FAILED));
serverSystem.closeConnection(connectionID);
return;
}
@@ -116,7 +116,7 @@ public void loginAccount(int connectionID, String email, String password) {
}
}
- serverSystem.sendTo(connectionID, new AccountLoginResponse(email, characters, charactersData));
+ serverSystem.sendByConnectionId(connectionID, new AccountLoginResponse(email, characters, charactersData));
}
public Account getAccount(String email) {
diff --git a/server/src/server/systems/account/UserSystem.java b/server/src/server/systems/account/UserSystem.java
index b587504c..00f72847 100644
--- a/server/src/server/systems/account/UserSystem.java
+++ b/server/src/server/systems/account/UserSystem.java
@@ -1,14 +1,15 @@
package server.systems.account;
import com.artemis.Component;
-import com.artemis.E;
-import com.artemis.annotations.Wire;
+import com.artemis.ComponentMapper;
import com.badlogic.gdx.Gdx;
import com.esotericsoftware.jsonbeans.Json;
import com.esotericsoftware.jsonbeans.JsonReader;
import com.esotericsoftware.jsonbeans.JsonValue;
import com.esotericsoftware.jsonbeans.OutputType;
import com.esotericsoftware.minlog.Log;
+import component.entity.character.Character;
+import component.entity.character.info.Name;
import net.mostlyoriginal.api.system.core.PassiveSystem;
import org.jetbrains.annotations.NotNull;
import server.database.Account;
@@ -32,7 +33,6 @@
import java.util.Set;
import java.util.concurrent.*;
-@Wire
public class UserSystem extends PassiveSystem {
private final ExecutorService executor = Executors.newFixedThreadPool(10);
@@ -42,6 +42,10 @@ public class UserSystem extends PassiveSystem {
private EntityFactorySystem entityFactorySystem;
private AccountSystem accountSystem;
private ComponentSystem componentSystem;
+
+ ComponentMapper mCharacter;
+ ComponentMapper mName;
+
private Json json;
Set onlineUsers = new HashSet<>();
@@ -67,24 +71,24 @@ public void login(int connectionId, String userName) {
try {
Integer entityId = loadUser( userName ).get( 250, TimeUnit.MILLISECONDS );
if(entityId != -1) {
- serverSystem.sendTo( connectionId, UserLoginResponse.ok() );
+ serverSystem.sendByConnectionId( connectionId, UserLoginResponse.ok() );
worldEntitiesSystem.login( connectionId, entityId );
onlineUsers.add(userName);
} else {
- serverSystem.sendTo( connectionId,
+ serverSystem.sendByConnectionId( connectionId,
UserLoginResponse.failed( "No se pudo leer el personaje " + userName + ". Por favor contactate con soporte." ) );
}
} catch (InterruptedException | ExecutionException | TimeoutException e) {
Log.info( "Failed to retrieve user from JSON file" );
e.printStackTrace();
- serverSystem.sendTo( connectionId,
+ serverSystem.sendByConnectionId( connectionId,
UserLoginResponse.failed( "Hubo un problema al leer el personaje " + userName ) );
}
} else {
// don't exist (should never happen)
// TODO remove from Account ?
- serverSystem.sendTo( connectionId,
+ serverSystem.sendByConnectionId( connectionId,
UserLoginResponse.failed( "Este personaje " + userName + " no existe!" ) );
}
} else {
@@ -94,31 +98,31 @@ public void login(int connectionId, String userName) {
//todo ver si el pj no esta en pelea para evitar desconeccion en ese caso
public void userLogout(int connectionId){
- serverSystem.sendTo( connectionId,new UserLogoutResponse());
+ serverSystem.sendByConnectionId( connectionId,new UserLogoutResponse());
}
public void create(int connectionId, String name, int heroId, String userAcc, int index) {
UserSystemUtilities userSystemUtilities = new UserSystemUtilities();
if (userSystemUtilities.userNameIsNumeric(name)) {
- serverSystem.sendTo(connectionId,
+ serverSystem.sendByConnectionId(connectionId,
UserCreateResponse.failed(Messages.USERNAME_NOT_NUEMRIC));
} else if (!userSystemUtilities.userNameIsNormalChar(name)) {
- serverSystem.sendTo(connectionId,
+ serverSystem.sendByConnectionId(connectionId,
UserCreateResponse.failed(Messages.USERNAME_INVALID_CHAR));
} else if (userSystemUtilities.userNameIsStartNumeric(name)) {
- serverSystem.sendTo(connectionId,
+ serverSystem.sendByConnectionId(connectionId,
UserCreateResponse.failed(Messages.USERNAME_NOT_INIT_NUMBER));
} else if (userSystemUtilities.userNameIsOfensive(name)) {
- serverSystem.sendTo(connectionId,
+ serverSystem.sendByConnectionId(connectionId,
UserCreateResponse.failed(Messages.USERNAME_FORBIDDEN));
} else if (userExists(name)) {
// send user exists
- serverSystem.sendTo(connectionId,
+ serverSystem.sendByConnectionId(connectionId,
UserCreateResponse.failed(Messages.USERNAME_ALREADY_EXIST));
} else {
// create and add to account
@@ -139,7 +143,7 @@ public void create(int connectionId, String name, int heroId, String userAcc, in
}
account.addCharacter(name, index);
// send ok and login
- serverSystem.sendTo(connectionId, UserCreateResponse.ok());
+ serverSystem.sendByConnectionId(connectionId, UserCreateResponse.ok());
worldEntitiesSystem.login(connectionId, entityId);
}
}
@@ -157,12 +161,11 @@ private boolean userExists(String userName) {
* Lo usamos, por ejemplo, cuando un usuario se desconecta para asegurarnos de no borrar la entidad mientras estamos guardando los datos.
*/
public void save(int entityId, Runnable code) {
- E user = E.E(entityId);
- if (user.hasCharacter() && user.hasName()) {
- String name = user.getName().text;
+ if (mCharacter.has(entityId) && mName.has(entityId)) {
+ String name = mName.get(entityId).text;
executor.submit(() -> {
// Obtenemos la informacion de los componentes de la entidad.
- Collection components = componentSystem.getComponents(user.id(), ComponentSystem.Visibility.SERVER);
+ Collection components = componentSystem.getComponents(entityId, ComponentSystem.Visibility.SERVER);
// Me fijo que no este vacÃa.
if (!components.isEmpty()) {
// La serializamos y la guardamos en el CharFile.
diff --git a/server/src/server/systems/network/CommandSystem.java b/server/src/server/systems/network/CommandSystem.java
index 8150a01b..ee4fec2d 100644
--- a/server/src/server/systems/network/CommandSystem.java
+++ b/server/src/server/systems/network/CommandSystem.java
@@ -1,16 +1,19 @@
package server.systems.network;
-import com.artemis.E;
-import com.artemis.annotations.Wire;
+import com.artemis.ComponentMapper;
import com.badlogic.gdx.utils.Array;
+import com.badlogic.gdx.utils.StringBuilder;
import com.esotericsoftware.minlog.Log;
import component.console.ConsoleMessage;
+import component.entity.character.status.Health;
+import component.entity.npc.OriginPos;
import component.position.WorldPos;
import net.mostlyoriginal.api.system.core.PassiveSystem;
import org.jetbrains.annotations.Contract;
import org.jetbrains.annotations.NotNull;
import server.systems.world.MapSystem;
import server.systems.world.WorldEntitiesSystem;
+import server.systems.world.entity.user.PlayerActionSystem;
import server.utils.CityMapsNumbers;
import shared.network.interaction.TalkRequest;
import shared.util.EntityUpdateBuilder;
@@ -20,7 +23,7 @@
import java.util.Map;
import java.util.function.Consumer;
-@Wire
+// @todo Esta clase podrÃa ser estática, puede definirse en tiempo de compilación
public class CommandSystem extends PassiveSystem {
private final Map> commands = new HashMap<>();
@@ -29,6 +32,11 @@ public class CommandSystem extends PassiveSystem {
private MapSystem mapSystem;
private WorldEntitiesSystem worldEntitiesSystem;
private MessageSystem messageSystem;
+ private PlayerActionSystem playerActionSystem;
+
+ ComponentMapper mWorldPos;
+ ComponentMapper mOriginPos;
+ ComponentMapper mHealth;
/**
* Aca se prepara una lista de comandos disponibles para usar desde el cliente.
@@ -36,17 +44,17 @@ public class CommandSystem extends PassiveSystem {
* @see ServerRequestProcessor#processRequest(TalkRequest, int)
*/
public CommandSystem() {
- commands.put("online", (commandStructure) -> {
+ commands.put("online", (command) -> {
String connections = String.valueOf(networkManager.getAmountConnections());
- messageSystem.add(commandStructure.senderID, ConsoleMessage.info(Messages.PLAYERS_ONLINE.name(), connections));
+ messageSystem.add(command.userId, ConsoleMessage.info(Messages.PLAYERS_ONLINE.name(), connections));
});
- commands.put("salir", (commandStructure) -> {
- int connectionId = networkManager.getConnectionByPlayer(commandStructure.senderID);
+ commands.put("salir", (command) -> {
+ int connectionId = networkManager.getConnectionByPlayer(command.userId);
networkManager.disconnected(connectionId);
});
- commands.put("die", (commandStructure) -> worldEntitiesSystem.entityDie(commandStructure.senderID));
- commands.put("sethome", (commandStructure) -> {
- int senderId = commandStructure.senderID;
+ commands.put("die", (command) -> worldEntitiesSystem.entityDie(command.userId));
+ commands.put("sethome", (command) -> {
+ int userId = command.userId;
final int capacity = 17;
Array cityMaps = new Array<>(capacity);
@@ -68,62 +76,75 @@ public CommandSystem() {
cityMaps.add(CityMapsNumbers.PUERTO_ARKHEIN);
cityMaps.add(CityMapsNumbers.ULLATHORPE);
- E player = E.E(senderId);
- int playerMap = player.worldPosMap(), playerX = player.worldPosX(), playerY = player.worldPosY();
+ WorldPos worldPos = mWorldPos.get(userId);
boolean homeSet = false;
int i = 0;
while ((i < capacity) && !homeSet) {
- if (playerMap == cityMaps.get(i)) {
- player.originPosMap(playerMap).originPosX(playerX).originPosY(playerY);
- messageSystem.add(senderId, ConsoleMessage.info("HOME_SET"));
+ if (worldPos.map == cityMaps.get(i)) {
+ OriginPos originPos = mOriginPos.create(userId);
+ originPos.map = worldPos.map;
+ originPos.x = worldPos.x;
+ originPos.y = worldPos.y;
+ messageSystem.add(userId, ConsoleMessage.info("HOME_SET"));
homeSet = true;
}
i++;
}
if (!homeSet) {
- messageSystem.add(senderId, ConsoleMessage.info("ONLY_MAPS", "" + cityMaps));
+ messageSystem.add(userId, ConsoleMessage.info("ONLY_MAPS", "" + cityMaps));
}
});
- commands.put("seehome", (commandStructure) -> {
- E player = E.E(commandStructure.senderID);
- messageSystem.add(commandStructure.senderID, ConsoleMessage.info("HOME_POS",
- String.valueOf(player.originPosMap()), String.valueOf(player.originPosX()), String.valueOf(player.originPosY())));
+ commands.put("seehome", (command) -> {
+ OriginPos originPos = mOriginPos.create(command.userId);
+ messageSystem.add(command.userId, ConsoleMessage.info("HOME_POS",
+ String.valueOf(originPos.map), String.valueOf(originPos.x), String.valueOf(originPos.y)));
});
- commands.put("resurrect", (commandStructure) -> {
- int senderId = commandStructure.senderID;
- E player = E.E(senderId);
- if (player.healthMin() == 0) {
- worldEntitiesSystem.resurrectRequest(senderId);
- messageSystem.add(senderId, ConsoleMessage.info("TIME_TO_RESURRECT"));
+ commands.put("resurrect", (command) -> {
+ int userId = command.userId;
+ Health health = mHealth.get(userId);
+ if (health.min == 0) {
+ worldEntitiesSystem.resurrectRequest(userId);
+ messageSystem.add(userId, ConsoleMessage.info("TIME_TO_RESURRECT"));
} else {
- messageSystem.add(senderId, ConsoleMessage.info("YOU_ARE_ALIVE"));
+ messageSystem.add(userId, ConsoleMessage.info("YOU_ARE_ALIVE"));
}
});
+
commands.put("tp", (command) -> {
- int senderID = command.senderID;
- E player = E.E(senderID);
- int map = Integer.parseInt(command.params[1]);
- int x = Integer.parseInt(command.params[2]);
- int y = Integer.parseInt(command.params[3]);
- if (mapSystem.getHelper().isValid(new WorldPos(x, y, map))) {
- player.worldPosMap(map).worldPosX(x).worldPosY(y);
- EntityUpdateBuilder resetUpdate = EntityUpdateBuilder.of(senderID);
- resetUpdate.withComponents(player.getWorldPos());
- worldEntitiesSystem.notifyUpdate(senderID, resetUpdate.build());
+ int playerId = command.userId;
+ if (command.params.length == 3) {
+ int targetMap = Integer.parseInt( command.params[0] );
+ int targetX = Integer.parseInt( command.params[1] );
+ int targetY = Integer.parseInt( command.params[2] );
+
+ playerActionSystem.teleport(playerId, targetMap, targetX, targetY);
+
+ } else {
+ messageSystem.add(playerId, ConsoleMessage.warning( "MULTIUSE","" , "", CommandsHelp.TP.description, "" ));
}
});
+
+ commands.put("help", (command) -> {
+ int userId= command.userId;
+ StringBuilder stringBuilder = new StringBuilder();
+ for (CommandsHelp ch : CommandsHelp.values()) {
+ stringBuilder.append(ch.description +"\n" );
+ }
+ messageSystem.add(userId, ConsoleMessage.warning( "MULTIUSE","" , "\n", stringBuilder.toString(), "" ));
+ });
+
}
/**
* Ejecuta el comando desde la lista {@link #commands}
*
- * @param command String completo del comando.
- * @param senderID Identificador del jugador.
+ * @param commandString String completo del comando.
+ * @param userId Identificador del jugador.
*/
- public void handleCommand(@NotNull String command, int senderID) {
- CommandSystem.Command commandStructure = new CommandSystem.Command(senderID, command);
+ public void handleCommand(@NotNull String commandString, int userId) {
+ Command command = new Command(commandString, userId);
try {
- commands.get(commandStructure.name).accept(commandStructure);
+ commands.get(command.name).accept(command);
} catch (Exception ex) {
Log.error("Command Parser", "Error al ejecutar comando: " + command, ex);
}
@@ -141,32 +162,58 @@ public boolean commandExists(@NotNull String command) {
}
/**
- * Guardo el senderID y parseo de el comando separando el nombre del mismo y sus argumentos.
- * En otras palabras, lo preparo para usarlo en {@link #handleCommand(String, int)}
+ * Se fija si el string pasado como parametro tiene
+ * el prefijo caracteristico que poseen los comandos.
+ *
+ * @param message Mensaje a analizar.
+ * @return boolean Si es un comando o no.
+ */
+ public static boolean isCommand(@NotNull String message) {
+ return message.startsWith("/");
+ }
+
+ /**
+ * Guardo el userId y parseo de el comando separando el nombre del mismo y sus argumentos.
+ * Lo preparo para usarlo en {@link #handleCommand(String, int)}
*/
public static class Command {
+ // entityId del usuario
+ public int userId;
+ // nombre del comando
public String name;
- public int senderID;
+ // parámetros separados por ' ' o bien el string entero
public String[] params;
+ public String raw;
@Contract(pure = true)
- public Command(int senderID, @NotNull String fullCommandString) {
- this.senderID = senderID;
+ public Command(@NotNull String message, int userId) {
+ this.userId = userId;
+
+ int endIndex = message.length();
+ int sep = message.indexOf(" ");
+ if (sep == -1) sep = endIndex;
- String[] commandToParse = fullCommandString.split(" ");
- this.name = commandToParse[0].substring(1);
- this.params = commandToParse;
+ name = message.substring(1, sep).strip();
+ raw = message.substring(sep, endIndex).strip();
+ params = raw.split(" ");
}
+ }
+
+
+ enum CommandsHelp {
+ ONLINE ("/online: Muestra la cantidad de jugadores en linea" ),
+ SALIR("/salir: Sale del juego" ),
+ DIE ("/die: Te mueres"),
+ SETHOME("/sethome: Se usa en una ciudad para fijar el puento de resurrecion"),
+ SEEHOME("/seehome Muentra el actual punto de resurrcion"),
+ RESURRECT("/resurrect: Te resusita tras 20s"),
+ TP("/tp: se utiliza para moverte a otro punto, forma de uso /tp map x y ej /tp 1 50 50"),
+ HELP("/help: Muestra los comando utilizables y su descripcion");
+
+ private final String description;
- /**
- * Se fija si el string pasado como parametro tiene:
- * - El prefijo caracteristico que poseen los comandos.
- *
- * @param message Mensaje a analizar.
- * @return boolean Si es un comando o no.
- */
- public static boolean isCommand(@NotNull String message) {
- return message.startsWith("/");
+ CommandsHelp(String description){
+ this.description = description;
}
}
}
diff --git a/server/src/server/systems/network/EntityUpdateSystem.java b/server/src/server/systems/network/EntityUpdateSystem.java
index 7dbe42e0..287194cd 100644
--- a/server/src/server/systems/network/EntityUpdateSystem.java
+++ b/server/src/server/systems/network/EntityUpdateSystem.java
@@ -2,8 +2,9 @@
import com.artemis.BaseSystem;
import com.artemis.Component;
-import com.artemis.annotations.Wire;
+import com.artemis.ComponentMapper;
import com.esotericsoftware.minlog.Log;
+import component.entity.Ref;
import server.systems.world.WorldEntitiesSystem;
import server.systems.world.entity.factory.ComponentSystem;
import server.utils.UpdateTo;
@@ -19,10 +20,8 @@
import java.util.concurrent.ConcurrentLinkedDeque;
import java.util.stream.Collectors;
-import static com.artemis.E.E;
import static shared.network.notifications.EntityUpdate.NO_ENTITY;
-@Wire
public class EntityUpdateSystem extends BaseSystem {
private final Map> entityUpdates;
@@ -30,6 +29,8 @@ public class EntityUpdateSystem extends BaseSystem {
private WorldEntitiesSystem worldEntitiesSystem;
private ComponentSystem componentSystem;
+ ComponentMapper[ mRef;
+
public EntityUpdateSystem() {
entityUpdates = new ConcurrentHashMap<>();
publicUpdates = new ConcurrentHashMap<>();
@@ -107,7 +108,7 @@ private void addUpdate(int entity, EntityUpdate update, Map] components = componentSystem.getComponents(entityToAttach, ComponentSystem.Visibility.CLIENT_PUBLIC);
EntityUpdate update = EntityUpdateBuilder.of(entityToAttach).withComponents(components).build();
add(entity, update, UpdateTo.ALL);
diff --git a/server/src/server/systems/network/ServerNotificationProcessor.java b/server/src/server/systems/network/ServerNotificationProcessor.java
index 778ab0d6..cd28804f 100644
--- a/server/src/server/systems/network/ServerNotificationProcessor.java
+++ b/server/src/server/systems/network/ServerNotificationProcessor.java
@@ -1,7 +1,6 @@
package server.systems.network;
-import com.artemis.E;
-import com.artemis.annotations.Wire;
+import com.artemis.ComponentMapper;
import component.entity.character.info.Bag;
import server.systems.config.ObjectSystem;
import server.systems.world.WorldEntitiesSystem;
@@ -11,9 +10,6 @@
import shared.network.inventory.InventoryUpdate;
import shared.network.notifications.EntityUpdate;
-import static com.artemis.E.E;
-
-@Wire
public class ServerNotificationProcessor extends DefaultNotificationProcessor {
private WorldEntitiesSystem worldEntitiesSystem;
@@ -22,6 +18,8 @@ public class ServerNotificationProcessor extends DefaultNotificationProcessor {
private ServerSystem networkManager;
private EntityUpdateSystem entityUpdateSystem;
+ ComponentMapper mBag;
+
@Override
public void processNotification(EntityUpdate entityUpdate) {
entityUpdateSystem.add(entityUpdate, UpdateTo.NEAR);
@@ -29,8 +27,8 @@ public void processNotification(EntityUpdate entityUpdate) {
@Override
public void processNotification(InventoryUpdate inventoryUpdate) {
- E player = E(inventoryUpdate.getId());
- Bag bag = player.getBag();
+ int entityId = inventoryUpdate.getId();
+ Bag bag = mBag.create(entityId);
inventoryUpdate.getUpdates().forEach(bag::set);
}
diff --git a/server/src/server/systems/network/ServerReferenceSystem.java b/server/src/server/systems/network/ServerReferenceSystem.java
index 0c86826e..bc46275c 100644
--- a/server/src/server/systems/network/ServerReferenceSystem.java
+++ b/server/src/server/systems/network/ServerReferenceSystem.java
@@ -1,7 +1,7 @@
package server.systems.network;
+import com.artemis.ComponentMapper;
import com.artemis.annotations.All;
-import com.artemis.annotations.Wire;
import com.google.common.collect.Sets;
import component.entity.Ref;
import shared.systems.ReferenceSystem;
@@ -11,15 +11,14 @@
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
-import static com.artemis.E.E;
-
-@Wire
@All({Ref.class})
public class ServerReferenceSystem extends ReferenceSystem {
private Map> references;
private Map referenceTo;
+ ComponentMapper[ mRef;
+
public ServerReferenceSystem() {
references = new ConcurrentHashMap<>();
referenceTo = new ConcurrentHashMap<>();
@@ -28,7 +27,7 @@ public ServerReferenceSystem() {
@Override
protected void inserted(int entityId) {
// keep relation between entities
- int refId = E(entityId).refId();
+ int refId = mRef.get(entityId).getId();
referenceTo.put(entityId, refId);
references.computeIfAbsent(refId, (id) -> Sets.newHashSet()).add(entityId);
}
diff --git a/server/src/server/systems/network/ServerRequestProcessor.java b/server/src/server/systems/network/ServerRequestProcessor.java
index 1834d9ea..5a9d4672 100644
--- a/server/src/server/systems/network/ServerRequestProcessor.java
+++ b/server/src/server/systems/network/ServerRequestProcessor.java
@@ -1,16 +1,20 @@
package server.systems.network;
+import com.artemis.ComponentMapper;
import com.artemis.annotations.Wire;
import com.badlogic.gdx.utils.TimeUtils;
+import component.position.WorldPos;
import org.jetbrains.annotations.NotNull;
import server.systems.account.AccountSystem;
import server.systems.account.UserSystem;
import server.systems.world.WorldEntitiesSystem;
+import server.systems.world.entity.factory.EffectEntitySystem;
import server.systems.world.entity.item.ItemActionSystem;
import server.systems.world.entity.movement.MovementSystem;
import server.systems.world.entity.npc.NPCActionSystem;
import server.systems.world.entity.user.MeditateSystem;
import server.systems.world.entity.user.PlayerActionSystem;
+import shared.interfaces.FXs;
import shared.network.account.AccountCreationRequest;
import shared.network.account.AccountLoginRequest;
import shared.network.combat.AttackRequest;
@@ -24,6 +28,9 @@
import shared.network.user.UserCreateRequest;
import shared.network.user.UserLoginRequest;
import shared.network.user.UserLogoutRequest;
+import shared.util.EntityUpdateBuilder;
+
+import java.io.Console;
/**
* Every packet received from users will be processed here
@@ -42,6 +49,8 @@ public class ServerRequestProcessor extends DefaultRequestProcessor {
private ItemActionSystem itemActionSystem;
private NPCActionSystem npcActionSystem;
+ ComponentMapper] mWorldPos;
+
@Override
public void processRequest(@NotNull AccountCreationRequest accountCreationRequest, int connectionId) {
// Recibimos los datos de la cuenta del cliente.
@@ -85,7 +94,7 @@ public void processRequest(@NotNull UserCreateRequest request, int connectionId)
@Override
public void processRequest(MovementRequest request, int connectionID) {
if (serverSystem.connectionHasPlayer(connectionID)) {
- movementSystem.move(connectionID, request.movement, request.requestNumber);
+ movementSystem.move(serverSystem.getPlayerByConnection(connectionID), request.movement, request.requestNumber);
}
}
@@ -97,7 +106,9 @@ public void processRequest(MovementRequest request, int connectionID) {
*/
@Override
public void processRequest(@NotNull AttackRequest attackRequest, int connectionId) {
- playerActionSystem.attack(connectionId, attackRequest.getTimestamp(), attackRequest.getWorldPos(), attackRequest.type());
+ if (serverSystem.connectionHasPlayer(connectionId)) {
+ playerActionSystem.attack(serverSystem.getPlayerByConnection(connectionId), attackRequest.getTimestamp(), attackRequest.getWorldPos(), attackRequest.type());
+ }
}
/**
@@ -108,7 +119,10 @@ public void processRequest(@NotNull AttackRequest attackRequest, int connectionI
*/
@Override
public void processRequest(@NotNull ItemActionRequest itemAction, int connectionId) {
- itemActionSystem.useItem(connectionId, itemAction.getAction(), itemAction.getSlot());
+ if (serverSystem.connectionHasPlayer(connectionId)) {
+ itemActionSystem.useItem(serverSystem.getPlayerByConnection(connectionId), itemAction.getAction(), itemAction.getSlot());
+ }
+
}
/**
@@ -119,8 +133,11 @@ public void processRequest(@NotNull ItemActionRequest itemAction, int connection
*/
@Override
public void processRequest(MeditateRequest meditateRequest, int connectionId) {
- int playerId = serverSystem.getPlayerByConnection(connectionId);
- meditateSystem.toggle(playerId);
+ if (serverSystem.connectionHasPlayer(connectionId)) {
+ int playerId = serverSystem.getPlayerByConnection(connectionId);
+ meditateSystem.toggle(playerId);
+ }
+
}
/**
@@ -128,12 +145,15 @@ public void processRequest(MeditateRequest meditateRequest, int connectionId) {
* If not, notify near users that user talked
*
* @param talkRequest talk request with message
- * @param connectionID user connection id
+ * @param connectionId user connection id
*/
@Override
- public void processRequest(@NotNull TalkRequest talkRequest, int connectionID) {
- int playerID = serverSystem.getPlayerByConnection(connectionID);
- if (talkRequest.isValid()) playerActionSystem.talk(playerID, talkRequest.getMessage());
+ public void processRequest(@NotNull TalkRequest talkRequest, int connectionId) {
+ if (serverSystem.connectionHasPlayer(connectionId)) {
+ int playerID = serverSystem.getPlayerByConnection(connectionId);
+ if (talkRequest.isValid()) playerActionSystem.talk(playerID, talkRequest.getMessage());
+ }
+
}
/**
@@ -144,12 +164,19 @@ public void processRequest(@NotNull TalkRequest talkRequest, int connectionID) {
*/
@Override
public void processRequest(TakeItemRequest takeItemRequest, int connectionId) {
- itemActionSystem.grabItem(connectionId);
+ if (serverSystem.connectionHasPlayer(connectionId)) {
+ int playerID = serverSystem.getPlayerByConnection(connectionId);
+ itemActionSystem.grabItem(playerID);
+ }
+
}
@Override
public void processRequest(SpellCastRequest spellCastRequest, int connectionId) {
- playerActionSystem.spell(connectionId, spellCastRequest.getSpell(), spellCastRequest.getWorldPos(), spellCastRequest.getTimestamp());
+ if (serverSystem.connectionHasPlayer(connectionId)) {
+ int playerID = serverSystem.getPlayerByConnection(connectionId);
+ playerActionSystem.spell(playerID, spellCastRequest.getSpell(), spellCastRequest.getWorldPos(), spellCastRequest.getTimestamp());
+ }
}
@Override
@@ -159,16 +186,30 @@ public void processRequest(@NotNull TimeSyncRequest request, int connectionId) {
response.receiveTime = receiveTime;
response.requestId = request.requestId;
response.sendTime = TimeUtils.millis();
- serverSystem.sendTo(connectionId, response);
+ serverSystem.sendByConnectionId(connectionId, response);
}
@Override
public void processRequest(NpcInteractionRequest npcInteractionRequest, int connectionId) {
- npcActionSystem.interact(connectionId, npcInteractionRequest.getTargetEntity());
+ if (serverSystem.connectionHasPlayer(connectionId)) {
+ int playerID = serverSystem.getPlayerByConnection(connectionId);
+ npcActionSystem.interact(playerID, npcInteractionRequest.getTargetEntity());
+ }
}
@Override
public void processRequest(@NotNull DropItem dropItem, int connectionId) {
- playerActionSystem.drop(connectionId, dropItem.getCount(), dropItem.getPosition(), dropItem.getSlot());
+ if (serverSystem.connectionHasPlayer(connectionId)) {
+ int playerId = serverSystem.getPlayerByConnection(connectionId);
+ playerActionSystem.drop(playerId, dropItem.getCount(), dropItem.getPosition(), dropItem.getSlot());
+ }
+ }
+
+ @Override
+ public void processRequest(TeleportRequest teleportRequest, int connectionId) {
+ if (serverSystem.connectionHasPlayer(connectionId)) {
+ int playerId = serverSystem.getPlayerByConnection(connectionId);
+ playerActionSystem.teleport(playerId, teleportRequest.getMap(), teleportRequest.getX(), teleportRequest.getY());
+ }
}
}
diff --git a/server/src/server/systems/network/ServerSystem.java b/server/src/server/systems/network/ServerSystem.java
index 1513ca3d..3637b924 100644
--- a/server/src/server/systems/network/ServerSystem.java
+++ b/server/src/server/systems/network/ServerSystem.java
@@ -1,7 +1,6 @@
package server.systems.network;
-import com.artemis.E;
-import com.artemis.annotations.Wire;
+import com.artemis.ComponentMapper;
import com.badlogic.gdx.Gdx;
import com.esotericsoftware.kryonet.FrameworkMessage;
import com.esotericsoftware.minlog.Log;
@@ -24,7 +23,6 @@
import java.util.Deque;
import java.util.concurrent.ConcurrentLinkedDeque;
-@Wire
public class ServerSystem extends MarshalSystem {
// Injected Systems
private MapSystem mapSystem;
@@ -34,6 +32,8 @@ public class ServerSystem extends MarshalSystem {
private ConfigurationSystem configurationSystem;
private UserSystem userSystem;
+ ComponentMapper mName;
+
private final Deque netQueue = new ConcurrentLinkedDeque<>();
private final BiMap connectionTable = Maps.synchronizedBiMap(HashBiMap.create());
@@ -57,11 +57,11 @@ public void received(int connectionID, Object object) {
}
private void processJob(NetworkJob job) {
- int connectionID = job.connectionID;
+ int connectionId = job.connectionID;
Object object = job.receivedObject;
try {
if (object instanceof IRequest) {
- ((IRequest) object).accept(requestProcessor, connectionID);
+ ((IRequest) object).accept(requestProcessor, connectionId);
} else if (object instanceof INotification) {
((INotification) object).accept(notificationProcessor);
} else if (object instanceof FrameworkMessage) {
@@ -89,9 +89,9 @@ public void disconnected(int connectionID) {
super.disconnected(connectionID);
if (connectionHasPlayer(connectionID)) {
Gdx.app.postRunnable(() -> {
- int playerID = getPlayerByConnection(connectionID);
- Name username = E.E(playerID).getName();
- worldEntitiesSystem.unregisterEntity(playerID);
+ int entityId = getPlayerByConnection(connectionID);
+ worldEntitiesSystem.unregisterEntity(entityId);
+ Name username = mName.get(entityId);
userSystem.logout(username.text);
});
}
@@ -108,11 +108,16 @@ public void closeConnection(int connectionID) {
* @param connectionID
* @param packet Object to send
*/
- public void sendTo(int connectionID, Object packet) {
+ public void sendByConnectionId(int connectionID, Object packet) {
ServerStrategy marshal = (ServerStrategy) getMarshal();
marshal.sendTo(connectionID, packet);
}
+ public void sendByPlayerId(int playerId, Object packet) {
+ ServerStrategy marshal = (ServerStrategy) getMarshal();
+ marshal.sendTo(getConnectionByPlayer(playerId), packet);
+ }
+
public void registerUserConnection(int connectionID, int playerID) {
connectionTable.put(connectionID, playerID);
}
diff --git a/server/src/server/systems/world/IntervalFluidIteratingSystem.java b/server/src/server/systems/world/IntervalFluidIteratingSystem.java
deleted file mode 100644
index 4d2edc6e..00000000
--- a/server/src/server/systems/world/IntervalFluidIteratingSystem.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package server.systems.world;
-
-import com.artemis.Aspect;
-import com.artemis.E;
-import com.artemis.FluidIteratingSystem;
-
-public class IntervalFluidIteratingSystem extends FluidIteratingSystem {
-
- private final float interval;
- protected float acc;
-
- public IntervalFluidIteratingSystem(Aspect.Builder aspect, float interval) {
- super(aspect);
- this.interval = interval;
- }
-
- @Override
- protected boolean checkProcessing() {
- float delta = getWorld().getDelta();
- acc += delta;
- if (acc >= interval) {
- acc -= interval;
- return true;
- }
- return false;
- }
-
- @Override
- protected void process(E e) {
-
- }
-}
diff --git a/server/src/server/systems/world/MapSystem.java b/server/src/server/systems/world/MapSystem.java
index bc6ff5e2..955a8dd7 100644
--- a/server/src/server/systems/world/MapSystem.java
+++ b/server/src/server/systems/world/MapSystem.java
@@ -1,8 +1,8 @@
package server.systems.world;
-import com.artemis.E;
-import com.artemis.annotations.Wire;
+import com.artemis.ComponentMapper;
import com.badlogic.gdx.utils.TimeUtils;
+import component.entity.world.Footprint;
import component.position.WorldPos;
import net.mostlyoriginal.api.system.core.PassiveSystem;
import server.systems.network.EntityUpdateSystem;
@@ -19,13 +19,11 @@
import java.util.concurrent.ConcurrentHashMap;
import java.util.stream.Collectors;
-import static com.artemis.E.E;
import static shared.util.MapHelper.CacheStrategy.NEVER_EXPIRE;
/**
* Logic regarding maps, contains information about entities in each map, and how are they related.
*/
-@Wire
public class MapSystem extends PassiveSystem {
private WorldEntitiesSystem worldEntitiesSystem;
@@ -34,6 +32,9 @@ public class MapSystem extends PassiveSystem {
private ComponentSystem componentSystem;
private ServerSystem serverSystem;
+ ComponentMapper mWorldPos;
+ ComponentMapper mFootprint;
+
private MapHelper helper;
private Map> nearEntities = new ConcurrentHashMap<>();
private Map> entitiesByMap = new ConcurrentHashMap<>();
@@ -97,10 +98,8 @@ public Set getNearEntities(int entityId) {
public Set getEntities(WorldPos pos) {
return entitiesByMap.get(pos.map)
.stream()
- .map(E::E)
- .filter(E::hasWorldPos)
- .filter(e -> e.getWorldPos().equals(pos))
- .map(E::id)
+ .filter(mWorldPos::has)
+ .filter(e -> mWorldPos.get(e).equals(pos))
.collect(Collectors.toSet());
}
@@ -117,21 +116,20 @@ public Set getEntitiesInMap(int map) {
* Move entity to current position, leaving old relations if goes out of range
*
* @param player player id
- * @param previusPos previus position in case its moving, empty if is a new position
+ * @param previousPos previous position in case its moving, empty if is a new position
*/
- public void movePlayer(int player, Optional previusPos) {
- WorldPos actualPos = E(player).getWorldPos();
- previusPos.ifPresent(it -> {
+ public void movePlayer(int player, Optional previousPos) {
+ WorldPos actualPos = mWorldPos.get(player);
+ previousPos.ifPresent(it -> {
if (it.equals(actualPos)) {
return;
}
//create footprint
final int footprintId = world.create();
- E(footprintId).footprintEntityId(player);
- E(footprintId).worldPosMap(it.map);
- E(footprintId).worldPosX(it.x);
- E(footprintId).worldPosY(it.y);
- E(footprintId).footprintTimestamp(TimeUtils.millis());
+ Footprint footprint = mFootprint.create(footprintId);
+ footprint.setEntityId(player);
+ mWorldPos.create(footprintId).setWorldPos(it);
+ footprint.setTimestamp(TimeUtils.millis());
entitiesFootprints.computeIfAbsent(player, (playerId) -> new HashSet<>()).add(footprintId);
if (it.map != actualPos.map) {
@@ -151,11 +149,10 @@ public void movePlayer(int player, Optional previusPos) {
* @param entity id
*/
void removeEntity(int entity) {
- final E e = E(entity);
- if (e == null || !e.hasWorldPos()) {
+ if (mWorldPos.has(entity)) {
return;
}
- final WorldPos worldPos = e.getWorldPos();
+ final WorldPos worldPos = mWorldPos.get(entity);
int map = worldPos.map;
// remove from near entities
nearEntities.computeIfPresent(entity, (player, removeFrom) -> {
@@ -171,7 +168,7 @@ void removeEntity(int entity) {
* @param player id
*/
void updateEntity(int player) {
- WorldPos pos = E(player).getWorldPos();
+ WorldPos pos = mWorldPos.get(player);
int map = pos.map;
Set entities = entitiesByMap.computeIfAbsent(map, (it) -> new HashSet<>());
Set candidates = new HashSet<>(entities);
@@ -229,8 +226,8 @@ private void addNearCorners(WorldPos pos, Set result, int mapNumber) {
* @param entity2 id
*/
private void addNearEntities(int entity1, int entity2) {
- WorldPos worldPos1 = E(entity2).getWorldPos();
- WorldPos worldPos2 = E(entity1).getWorldPos();
+ WorldPos worldPos1 = mWorldPos.get(entity1);
+ WorldPos worldPos2 = mWorldPos.get(entity2);
if (helper.isNear(worldPos1, worldPos2)) {
linkEntities(entity1, entity2);
linkEntities(entity2, entity1);
@@ -244,7 +241,7 @@ private void addNearEntities(int entity1, int entity2) {
* @param player2 id
*/
private void removeNearEntity(int player1, int player2) {
- if (!helper.isNear(E(player2).getWorldPos(), E(player1).getWorldPos())) {
+ if (!helper.isNear(mWorldPos.get(player1), mWorldPos.get(player2))) {
unlinkEntities(player1, player2);
unlinkEntities(player2, player1);
}
diff --git a/server/src/server/systems/world/WorldEntitiesSystem.java b/server/src/server/systems/world/WorldEntitiesSystem.java
index f7a14316..e6a17ea5 100644
--- a/server/src/server/systems/world/WorldEntitiesSystem.java
+++ b/server/src/server/systems/world/WorldEntitiesSystem.java
@@ -37,7 +37,7 @@
public class WorldEntitiesSystem extends PassiveSystem {
private MapSystem mapSystem;
- private ServerSystem networkManager;
+ private ServerSystem serverSystem;
private SpellSystem spellSystem;
private ObjectSystem objectSystem;
private EntityFactorySystem entityFactorySystem;
@@ -50,22 +50,22 @@ public void registerEntity(int id) {
}
public void registerEntity(int connectionID, int playerID) {
- networkManager.registerUserConnection(connectionID, playerID);
+ serverSystem.registerUserConnection(connectionID, playerID);
registerEntity(playerID);
}
public void unregisterEntity(int entityId) {
userSystem.save(entityId, () -> {
- networkManager.unregisterUserConnection(entityId);
+ serverSystem.unregisterUserConnection(entityId);
mapSystem.removeEntity(entityId);
getWorld().delete(entityId);
});
}
public void sendEntityUpdate(int user, Object update) {
- if (networkManager.playerHasConnection(user)) {
+ if (serverSystem.playerHasConnection(user)) {
Log.debug("Sending update: " + update.toString() + " to " + user);
- networkManager.sendTo(networkManager.getConnectionByPlayer(user), update);
+ serverSystem.sendByConnectionId(serverSystem.getConnectionByPlayer(user), update);
}
}
@@ -168,8 +168,8 @@ public void resurrect(int entityId, boolean resurrected) {
//reset body and head
//todo obtener body y head de la base de datos del jugador las cabezas actualmente son randoms
- entityFactorySystem.setNakedBody(entity, Race.of(entity));
- entityFactorySystem.setHead(entity, Race.of(entity));
+ entityFactorySystem.setNakedBody(entityId, Race.of(entity));
+ entityFactorySystem.setHead(entityId, Race.of(entity));
notifyUpdate(entityId, EntityUpdateBuilder.of(entityId).withComponents(entity.getBody(), entity.getHead()).build());
if (!resurrected) {
diff --git a/server/src/server/systems/world/WorldSaveSystem.java b/server/src/server/systems/world/WorldSaveSystem.java
index 5d29a4cf..809d87cc 100644
--- a/server/src/server/systems/world/WorldSaveSystem.java
+++ b/server/src/server/systems/world/WorldSaveSystem.java
@@ -1,25 +1,25 @@
package server.systems.world;
-import com.artemis.Aspect;
-import com.artemis.E;
-import com.artemis.annotations.Wire;
+import com.artemis.annotations.All;
+import com.artemis.systems.IntervalIteratingSystem;
import component.entity.character.Character;
import component.entity.character.info.Name;
-import org.jetbrains.annotations.NotNull;
import server.systems.account.UserSystem;
-@Wire
-public class WorldSaveSystem extends IntervalFluidIteratingSystem {
+@All({Character.class, Name.class}) // Nos suscribimos a solamente a PJs
+public class WorldSaveSystem extends IntervalIteratingSystem {
private UserSystem userSystem;
public WorldSaveSystem(float interval) {
- super(Aspect.all(Character.class, Name.class), interval);
+ // Acá hay un tema de API de Artemis... Que deberÃa proveer un constructor que tome solo el intervalo
+ // @todo: Abrir un issue upstream
+ super(null, interval);
}
@Override
- protected void process(@NotNull E e) {
- userSystem.save(e.id(), () -> {
- });
+ protected void process(int entityId) {
+ // @todo: ¿Por qué el guardado está en otro sistema, si este es el sistema de guardado?
+ userSystem.save(entityId, () -> {}); // @todo: Que el runnable sea opcional o algo asÃ
}
}
diff --git a/server/src/server/systems/world/entity/ai/NPCAttackSystem.java b/server/src/server/systems/world/entity/ai/NPCAttackSystem.java
index df41bef8..02481b25 100644
--- a/server/src/server/systems/world/entity/ai/NPCAttackSystem.java
+++ b/server/src/server/systems/world/entity/ai/NPCAttackSystem.java
@@ -1,14 +1,15 @@
package server.systems.world.entity.ai;
import com.artemis.Aspect;
-import com.artemis.E;
-import com.artemis.annotations.Wire;
+import com.artemis.ComponentMapper;
+import com.artemis.systems.IntervalIteratingSystem;
import component.entity.character.states.Heading;
+import component.entity.character.states.Immobile;
+import component.entity.character.status.Health;
import component.entity.character.status.Hit;
import component.entity.npc.NPC;
import component.position.WorldPos;
import server.systems.network.EntityUpdateSystem;
-import server.systems.world.IntervalFluidIteratingSystem;
import server.systems.world.MapSystem;
import server.systems.world.entity.combat.PhysicalCombatSystem;
import server.utils.UpdateTo;
@@ -18,48 +19,51 @@
import java.util.Optional;
-import static com.artemis.E.E;
import static server.utils.WorldUtils.WorldUtils;
-@Wire
-public class NPCAttackSystem extends IntervalFluidIteratingSystem {
+public class NPCAttackSystem extends IntervalIteratingSystem {
private MapSystem mapSystem;
private PhysicalCombatSystem combatSystem;
private EntityUpdateSystem entityUpdateSystem;
+ ComponentMapper mNPC;
+ ComponentMapper mWorldPos;
+ ComponentMapper mHealth;
+ ComponentMapper mHeading;
+ ComponentMapper mImmobile;
+
// should interval be per npc?
public NPCAttackSystem(float interval) {
super(Aspect.all(NPC.class, Hit.class, WorldPos.class, Heading.class), interval);
}
@Override
- protected void process(E e) {
+ protected void process(int npcId) {
mapSystem
- .getNearEntities(e.id())
+ .getNearEntities(npcId)
.stream()
- .filter(e2 -> E(e2) != null)
- .filter(e2 -> !E(e2).hasNPC())
- .filter(e2 -> E(e2).hasWorldPos())
- .filter(e2 -> E(e2).healthMin() != 0)
- .filter(e2 -> inRange(e.id(), e2))
+ // @todo este chequeo no funciona, getNearEntities deberÃa garantizar que las entidades sean válidas (i.e. esten vivas)
+ //.filter(playerId -> world.getEntity(e) != null)
+ .filter(playerId -> !mNPC.has(playerId))
+ .filter(playerId -> mWorldPos.has(playerId))
+ .filter(playerId -> mHealth.get(playerId).getMin() > 0)
+ .filter(playerId -> inRange(npcId, playerId))
.findFirst()
- .ifPresent(target -> combatSystem.entityAttack(e.id(), Optional.of(target)));
+ .ifPresent(targetId -> combatSystem.entityAttack(npcId, Optional.of(targetId)));
}
- private boolean inRange(int e, int e2) {
- E npc = E(e);
- E target = E(e2);
+ private boolean inRange(int npcId, int targetId) {
WorldUtils worldUtils = WorldUtils(world);
- WorldPos targetPos = target.getWorldPos();
- WorldPos npcPos = npc.getWorldPos();
- WorldPos facingPos = worldUtils.getFacingPos(npcPos, npc.getHeading());
+ WorldPos npcPos = mWorldPos.get(npcId);
+ WorldPos targetPos = mWorldPos.get(targetId);
+ WorldPos facingPos = worldUtils.getFacingPos(npcPos, mHeading.get(npcId));
if (worldUtils.distance(npcPos, targetPos) == 1) {
- if (!npc.isImmobile() && !facingPos.equals(targetPos)) {
+ if (!mImmobile.has(npcId) && !facingPos.equals(targetPos)) {
// move heading
- npc.headingCurrent(worldUtils.getHeading(npcPos, targetPos));
- EntityUpdate update = EntityUpdateBuilder.of(e).withComponents(npc.getHeading()).build();
+ mHeading.get(npcId).setCurrent(worldUtils.getHeading(npcPos, targetPos));
+ EntityUpdate update = EntityUpdateBuilder.of(npcId).withComponents(mHeading.get(npcId)).build();
entityUpdateSystem.add(update, UpdateTo.ALL);
facingPos = targetPos;
}
diff --git a/server/src/server/systems/world/entity/ai/PathFindingSystem.java b/server/src/server/systems/world/entity/ai/PathFindingSystem.java
index 046a8d62..ec783f64 100644
--- a/server/src/server/systems/world/entity/ai/PathFindingSystem.java
+++ b/server/src/server/systems/world/entity/ai/PathFindingSystem.java
@@ -1,20 +1,22 @@
package server.systems.world.entity.ai;
import com.artemis.Aspect;
-import com.artemis.E;
-import com.artemis.EBag;
-import com.artemis.annotations.Wire;
+import com.artemis.ComponentMapper;
+import com.artemis.systems.IntervalIteratingSystem;
+import com.artemis.utils.IntBag;
import com.esotericsoftware.minlog.Log;
import component.entity.character.Character;
+import component.entity.character.states.Heading;
import component.entity.character.states.Immobile;
+import component.entity.character.status.Health;
import component.entity.npc.AIMovement;
import component.entity.npc.NPC;
+import component.entity.npc.OriginPos;
import component.entity.world.Footprint;
import component.movement.Destination;
import component.physics.AOPhysics;
import component.position.WorldPos;
import server.systems.network.EntityUpdateSystem;
-import server.systems.world.IntervalFluidIteratingSystem;
import server.systems.world.MapSystem;
import server.systems.world.WorldEntitiesSystem;
import server.utils.UpdateTo;
@@ -25,14 +27,14 @@
import shared.network.notifications.EntityUpdate;
import shared.util.EntityUpdateBuilder;
import shared.util.MapHelper;
+import shared.util.Pair;
import java.util.*;
import static component.physics.AOPhysics.Movement.*;
import static server.utils.WorldUtils.WorldUtils;
-@Wire
-public class PathFindingSystem extends IntervalFluidIteratingSystem {
+public class PathFindingSystem extends IntervalIteratingSystem {
private static final int MAX_DISTANCE_TARGET = 10;
private MapSystem mapSystem;
@@ -41,13 +43,21 @@ public class PathFindingSystem extends IntervalFluidIteratingSystem {
private HashMap maps = new HashMap<>();
+ ComponentMapper mNPC;
+ ComponentMapper mCharacter;
+ ComponentMapper mOriginPos;
+ ComponentMapper mWorldPos;
+ ComponentMapper mHealth;
+ ComponentMapper mHeading;
+ ComponentMapper mImmobile;
+
public PathFindingSystem(float interval) {
super(Aspect.all(NPC.class, WorldPos.class, AIMovement.class).exclude(Character.class, Footprint.class, Immobile.class), interval);
}
private AStarMap updateMap(Integer map) {
Set entitiesInMap = mapSystem.getEntitiesInMap(map);
- if (entitiesInMap.stream().noneMatch(e -> E.E(e).isCharacter())) {
+ if (entitiesInMap.stream().noneMatch(e -> mCharacter.has(e))) {
return maps.get(map);
}
// TODO can we update on each move instead of create all again?
@@ -62,23 +72,23 @@ protected void begin() {
}
@Override
- protected void process(E e) {
- WorldPos origin = e.getWorldPos();
+ protected void process(int entityId) {
+ WorldPos origin = mWorldPos.get(entityId);
if (!maps.containsKey(origin.map)) {
return;
}
AStarMap aStarMap = maps.get(origin.map);
- Optional target1 = findTarget(origin);
- WorldPos targetPos = target1.map(E::getWorldPos).orElse(e.getOriginPos().toWorldPos());
- if (targetPos.equals(e.getWorldPos())) {
+ Optional target1 = findTarget(origin);
+ WorldPos targetPos = target1.map(mWorldPos::get).orElse(mOriginPos.get(entityId).toWorldPos());
+ if (targetPos.equals(mWorldPos.get(entityId))) {
return;
- } else if (!target1.isPresent() && WorldUtils.WorldUtils(world).distance(origin, e.getOriginPos().toWorldPos()) < 10) {
+ } else if (target1.isEmpty() && WorldUtils.WorldUtils(world).distance(origin, mOriginPos.get(entityId).toWorldPos()) < 10) {
return;
}
- makeYourMove(e, origin, targetPos, aStarMap);
+ makeYourMove(entityId, origin, targetPos, aStarMap);
}
- private void makeYourMove(E e, WorldPos origin, WorldPos targetPos, AStarMap map) {
+ private void makeYourMove(int entityId, WorldPos origin, WorldPos targetPos, AStarMap map) {
boolean originWasWall = map.getNodeAt(origin.x, origin.y).isWall;
boolean targetWasWall = map.getNodeAt(targetPos.x, targetPos.y).isWall;
map.getNodeAt(origin.x, origin.y).isWall = false;
@@ -86,17 +96,16 @@ private void makeYourMove(E e, WorldPos origin, WorldPos targetPos, AStarMap map
AStartPathFinding aStartPathFinding = new AStartPathFinding(map);
Node from = aStartPathFinding.map.getNodeAt(origin.x, origin.y);
Node nextNode = aStartPathFinding.findNextNode(origin, targetPos);
- move(e, from, nextNode);
+ move(entityId, from, nextNode);
map.getNodeAt(origin.x, origin.y).isWall = originWasWall;
map.getNodeAt(targetPos.x, targetPos.y).isWall = targetWasWall;
}
- private void move(E e, Node from, Node nextNode) {
+ private void move(int entityId, Node from, Node nextNode) {
if (nextNode == null) {
Log.info("Cant find next node");
return;
}
- int entityId = e.id();
if (nextNode.x - from.x > 0) {
// move right
moveEntity(entityId, RIGHT);
@@ -113,18 +122,16 @@ private void move(E e, Node from, Node nextNode) {
}
private void moveEntity(int entityId, AOPhysics.Movement mov) {
- E player = E.E(entityId);
-
WorldUtils worldUtils = WorldUtils(world);
int headingMov = worldUtils.getHeading(mov);
- boolean headingChanged = headingMov != player.headingCurrent();
+ boolean headingChanged = headingMov != mHeading.get(entityId).getCurrent();
if (headingChanged) {
- player.headingCurrent(headingMov);
- EntityUpdate update = EntityUpdateBuilder.of(entityId).withComponents(player.getHeading()).build();
+ mHeading.get(entityId).setCurrent(headingMov);
+ EntityUpdate update = EntityUpdateBuilder.of(entityId).withComponents(mHeading.get(entityId)).build();
entityUpdateSystem.add(update, UpdateTo.ALL);
}
- WorldPos worldPos = player.getWorldPos();
+ WorldPos worldPos = mWorldPos.get(entityId);
WorldPos oldPos = new WorldPos(worldPos);
WorldPos nextPos = worldUtils.getNextPos(worldPos, mov);
@@ -132,13 +139,11 @@ private void moveEntity(int entityId, AOPhysics.Movement mov) {
boolean blocked = mapSystem.getHelper().isBlocked(map, nextPos);
boolean occupied = mapSystem.getHelper().hasEntity(mapSystem.getNearEntities(entityId), nextPos);
Tile tile = MapHelper.getTile(map, nextPos);
- if (player.hasImmobile() || blocked || occupied || (tile != null && tile.getTileExit() != null)) {
+ if (mImmobile.has(entityId) || blocked || occupied || (tile != null && tile.getTileExit() != null)) {
nextPos = oldPos;
}
- player.worldPosMap(nextPos.map);
- player.worldPosX(nextPos.x);
- player.worldPosY(nextPos.y);
+ mWorldPos.get(entityId).setWorldPos(nextPos);
mapSystem.movePlayer(entityId, Optional.of(oldPos));
@@ -148,18 +153,24 @@ private void moveEntity(int entityId, AOPhysics.Movement mov) {
}
}
- private Optional findTarget(WorldPos worldPos) {
- Set all = new HashSet<>();
- EBag es = E.withAspect(Aspect.all(Character.class));
- es.forEach(all::add);
- return all.stream()
- .filter(E::hasWorldPos)
- .filter(e -> e.healthMin() != 0)
- .filter(e -> {
- int distance = WorldUtils(world).distance(e.getWorldPos(), worldPos);
- return distance < MAX_DISTANCE_TARGET && distance >= 0;
- })
- .min(Comparator.comparingInt(e -> WorldUtils(world).distance(e.getWorldPos(), worldPos)));
+ private Optional findTarget(WorldPos worldPos) {
+ // @todo AspectSubscriptionManager podrÃa retornar un BitSet
+ // O habrÃa que encapsular esto de alguna manera para que pueda ser reutilizado
+ IntBag entityBag = world.getAspectSubscriptionManager().get(Aspect.all(Character.class)).getEntities();
+
+ // Pasamos a BitSet para poder usar stream API
+ BitSet entitySet = new BitSet();
+ for (int i = 0; i < entityBag.size(); i++) {
+ entitySet.set(entityBag.get(i));
+ }
+
+ return entitySet.stream()
+ .filter(mWorldPos::has)
+ .filter(entityId -> mHealth.get(entityId).getMin() != 0)
+ .mapToObj(entityId -> new Pair<>(entityId, WorldUtils(world).distance(mWorldPos.get(entityId), worldPos)))
+ .filter(pair -> pair.getValue() < MAX_DISTANCE_TARGET && pair.getValue() >= 0)
+ .min(Comparator.comparingInt(Pair::getValue))
+ .map(Pair::getKey);
}
private AStarMap createStarMap(int map) {
diff --git a/server/src/server/systems/world/entity/ai/RandomMovementSystem.java b/server/src/server/systems/world/entity/ai/RandomMovementSystem.java
index 7bb2afb7..ad65a556 100644
--- a/server/src/server/systems/world/entity/ai/RandomMovementSystem.java
+++ b/server/src/server/systems/world/entity/ai/RandomMovementSystem.java
@@ -1,9 +1,10 @@
package server.systems.world.entity.ai;
import com.artemis.Aspect;
-import com.artemis.E;
-import com.artemis.annotations.Wire;
+import com.artemis.ComponentMapper;
import com.artemis.systems.IteratingSystem;
+import component.entity.character.states.Heading;
+import component.entity.character.states.Immobile;
import component.movement.Destination;
import component.movement.RandomMovement;
import component.physics.AOPhysics;
@@ -20,10 +21,8 @@
import java.util.*;
-import static com.artemis.E.E;
import static server.utils.WorldUtils.WorldUtils;
-@Wire
public class RandomMovementSystem extends IteratingSystem {
private static final List VALUES =
@@ -34,6 +33,10 @@ public class RandomMovementSystem extends IteratingSystem {
private WorldEntitiesSystem worldEntitiesSystem;
private EntityUpdateSystem entityUpdateSystem;
+ ComponentMapper mHeading;
+ ComponentMapper mImmobile;
+ ComponentMapper mWorldPos;
+
public RandomMovementSystem() {
super(Aspect.all(RandomMovement.class));
}
@@ -53,31 +56,27 @@ protected void process(int entityId) {
}
private void moveEntity(int entityId, AOPhysics.Movement mov) {
- E player = E(entityId);
-
WorldUtils worldUtils = WorldUtils(world);
- player.headingCurrent(worldUtils.getHeading(mov));
+ mHeading.get(entityId).setCurrent(worldUtils.getHeading(mov));
- WorldPos worldPos = player.getWorldPos();
+ WorldPos worldPos = mWorldPos.get(entityId);
WorldPos oldPos = new WorldPos(worldPos);
WorldPos nextPos = worldUtils.getNextPos(worldPos, mov);
Map map = mapSystem.getMap(nextPos.map);
boolean blocked = mapSystem.getHelper().isBlocked(map, nextPos);
boolean occupied = mapSystem.getHelper().hasEntity(mapSystem.getNearEntities(entityId), nextPos);
- if (player.hasImmobile() || blocked || occupied) {
+ if (mImmobile.has(entityId) || blocked || occupied) {
nextPos = oldPos;
}
- player.worldPosMap(nextPos.map);
- player.worldPosX(nextPos.x);
- player.worldPosY(nextPos.y);
+ worldPos.setWorldPos(nextPos);
mapSystem.movePlayer(entityId, Optional.of(oldPos));
// notify near users
- EntityUpdate update = EntityUpdateBuilder.of(entityId).withComponents(player.getHeading()).build();
+ EntityUpdate update = EntityUpdateBuilder.of(entityId).withComponents(mHeading.get(entityId)).build();
entityUpdateSystem.add(update, UpdateTo.ALL);
if (nextPos != oldPos) {
worldEntitiesSystem.notifyUpdate(entityId, new MovementNotification(entityId, new Destination(nextPos, mov.ordinal())));
diff --git a/server/src/server/systems/world/entity/ai/RespawnSystem.java b/server/src/server/systems/world/entity/ai/RespawnSystem.java
index f862c928..24119bf1 100644
--- a/server/src/server/systems/world/entity/ai/RespawnSystem.java
+++ b/server/src/server/systems/world/entity/ai/RespawnSystem.java
@@ -1,28 +1,28 @@
package server.systems.world.entity.ai;
import com.artemis.Aspect;
-import com.artemis.E;
-import com.artemis.FluidIteratingSystem;
-import com.artemis.annotations.Wire;
+import com.artemis.ComponentMapper;
+import com.artemis.systems.IteratingSystem;
import component.entity.npc.Respawn;
import server.systems.world.entity.factory.EntityFactorySystem;
-@Wire
-public class RespawnSystem extends FluidIteratingSystem {
+public class RespawnSystem extends IteratingSystem {
private EntityFactorySystem entityFactorySystem;
+ ComponentMapper mRespawn;
+
public RespawnSystem() {
super(Aspect.all(Respawn.class));
}
@Override
- protected void process(E e) {
- Respawn respawn = e.getRespawn();
+ protected void process(int entityId) {
+ Respawn respawn = mRespawn.get(entityId);
respawn.setTime(respawn.getTime() - world.getDelta());
if (respawn.getTime() <= 0) {
entityFactorySystem.createNPC(respawn.getNpcId(), respawn.getPos().toWorldPos());
- e.deleteFromWorld();
+ world.delete(entityId);
}
}
}
diff --git a/server/src/server/systems/world/entity/combat/AbstractCombatSystem.java b/server/src/server/systems/world/entity/combat/AbstractCombatSystem.java
index 39048b84..79e0f605 100644
--- a/server/src/server/systems/world/entity/combat/AbstractCombatSystem.java
+++ b/server/src/server/systems/world/entity/combat/AbstractCombatSystem.java
@@ -30,7 +30,8 @@ public abstract class AbstractCombatSystem extends BaseSystem implements CombatS
public int shieldEvasionPower(int userId) {
E userEntity = E(userId);
float shieldModifier = modifierSystem.of(SHIELD, CharClass.of(userEntity));
- return (int) (100 * shieldModifier / 2);
+ int shieldSkills = userEntity.skillsDefensa();
+ return (int) (shieldSkills * shieldModifier / 2);
}
@Override
@@ -38,20 +39,27 @@ public int evasionPower(int userId) {
E userEntity = E(userId);
int power = 0;
if (userEntity.hasCharHero()) {
- float temp = 100 + 100 / 33 * userEntity.getAgility().getBaseValue() * modifierSystem.of(EVASION, CharClass.of(userEntity));
- power = (int) (temp + 2.5f * Math.max(userEntity.getLevel().level - 12, 0));
+ int tacticSkills = userEntity.skillsTacticas();
+ float temp = tacticSkills + tacticSkills / 33f * userEntity.getAgility().getCurrentValue() * modifierSystem.of(EVASION, CharClass.of(userEntity));
+ power = (int) (temp + getLvlPower(userEntity.levelLevel()));
} else if (userEntity.hasEvasionPower()) {
power = userEntity.getEvasionPower().value;
}
return power;
}
+ private float getLvlPower(int level) {
+ return 2.5f * Math.max(level - 12, 0);
+ }
+
@Override
public int weaponAttackPower(int userId) {
E userEntity = E(userId);
int power = 0;
if (userEntity.hasCharHero()) {
- power = (int) (100 + 3 * userEntity.getAgility().getBaseValue() * modifierSystem.of(WEAPON, CharClass.of(userEntity)));
+ int weaponSkills = userEntity.skillsArmas();
+ float weaponModifier = modifierSystem.of(WEAPON, CharClass.of(userEntity));
+ power = getUserAttackPower(weaponModifier, weaponSkills, userEntity.getAgility().getCurrentValue(), userEntity.levelLevel());
} else if (userEntity.hasAttackPower()) {
power = userEntity.getAttackPower().value;
}
@@ -63,16 +71,37 @@ public int projectileAttackPower(int userId) {
E userEntity = E(userId);
int power = 0;
if (userEntity.hasCharHero()) {
- power = (int) (100 + 3 * userEntity.getAgility().getBaseValue() * modifierSystem.of(PROJECTILE, CharClass.of(userEntity)));
+ int projectileSkills = userEntity.skillsProyectiles();
+ float modifier = modifierSystem.of(PROJECTILE, CharClass.of(userEntity));
+ power = getUserAttackPower(modifier, projectileSkills, userEntity.getAgility().getCurrentValue(), userEntity.levelLevel());
} else if (userEntity.hasAttackPower()) {
power = userEntity.getAttackPower().value;
}
return power;
}
+ private int getUserAttackPower(float modifier, int skill, int agility, int level) {
+ int power;
+ int i;
+ if (skill < 31) {
+ return (int) (skill * modifier);
+ } else if (skill < 61) {
+ i = 1;
+ } else if (skill < 91) {
+ i = 2;
+ } else {
+ i = 3;
+ }
+ power = (int) (skill + i * agility * modifier);
+ power += getLvlPower(level);
+ return power;
+ }
+
@Override
public int wrestlingAttackPower(int userId) {
- return 0;
+ E userEntity = E(userId);
+ float modifier = modifierSystem.of(WRESTLING, CharClass.of(userEntity));
+ return getUserAttackPower(modifier, userEntity.skillsWrestling(), userEntity.agilityCurrentValue(), userEntity.levelLevel());
}
@Override
diff --git a/server/src/server/systems/world/entity/combat/PhysicalCombatSystem.java b/server/src/server/systems/world/entity/combat/PhysicalCombatSystem.java
index a1d59369..cdf9f494 100644
--- a/server/src/server/systems/world/entity/combat/PhysicalCombatSystem.java
+++ b/server/src/server/systems/world/entity/combat/PhysicalCombatSystem.java
@@ -53,7 +53,7 @@ public class PhysicalCombatSystem extends AbstractCombatSystem {
@Override
protected void failed(int entityId, Optional targetId) {
- notify(targetId.isPresent() ? targetId.get() : entityId, CombatMessage.physic(MISS));
+ notify(targetId.orElse(entityId), CombatMessage.physic(MISS));
}
@Override
@@ -92,18 +92,26 @@ public boolean canAttack(int entityId, Optional target) {
// TODO descomentar: return false;
}
- // TODO attack power can be bow
-
- int evasionPower = evasionPower(targetId) + (E(targetId).hasShield() ? shieldEvasionPower(targetId) : 0);
+ boolean hasShield = E(targetId).hasShield();
+ int evasionPower = evasionPower(targetId) + (hasShield ? shieldEvasionPower(targetId) : 0);
double prob = Math.max(10, Math.min(90, 50 + (weaponAttackPower(entityId) - evasionPower) * 0.4));
+
if (ThreadLocalRandom.current().nextInt(101) <= prob) {
return true;
} else {
- int skills = 200;
- prob = Math.max(10, Math.min(90, 100 * 100 / skills));
-
+ boolean shieldRejection = false;
+ if (hasShield && E(targetId).hasSkills()) {
+ int tacticsSkills = E(targetId).skillsTacticas();
+ int defenseSkills = E(targetId).skillsDefensa();
+ if (tacticsSkills + defenseSkills > 0) {
+ prob = Math.max(10, Math.min(90, 100 * defenseSkills / (tacticsSkills + defenseSkills)));
+ } else {
+ prob = 10;
+ }
+ shieldRejection = ThreadLocalRandom.current().nextInt(101) <= prob;
+ }
// shield evasion
- if (E(targetId).hasShield() && ThreadLocalRandom.current().nextInt(101) <= prob) {
+ if (hasShield && shieldRejection) {
notifyCombat(targetId, Messages.SHIELD_DEFENSE);
notifyCombat(entityId, Messages.DEFENDED_WITH_SHIELD, getName(targetId));
// TODO shield animation
@@ -136,7 +144,7 @@ public int damageCalculation(int userId, int entityId) {
AttackPlace place = AttackPlace.getRandom();
int defense = (place == AttackPlace.HEAD ? getHeadDefense(entityId) : getBodyDefense(entityId));
Log.info("Defense: " + defense);
- return Math.max(0, baseDamage - defense);
+ return Math.max(1, baseDamage - defense);
}
private int getBodyDefense(int entityId) {
diff --git a/server/src/server/systems/world/entity/factory/ClearSystem.java b/server/src/server/systems/world/entity/factory/ClearSystem.java
index 9528a07b..31437764 100644
--- a/server/src/server/systems/world/entity/factory/ClearSystem.java
+++ b/server/src/server/systems/world/entity/factory/ClearSystem.java
@@ -1,29 +1,24 @@
package server.systems.world.entity.factory;
-import com.artemis.Aspect;
-import com.artemis.E;
-import com.artemis.annotations.Wire;
+import com.artemis.ComponentMapper;
+import com.artemis.annotations.All;
import com.artemis.systems.IteratingSystem;
import com.esotericsoftware.minlog.Log;
import component.entity.Clear;
import server.systems.world.WorldEntitiesSystem;
-import static com.artemis.E.E;
-
-@Wire
+@All(Clear.class)
public class ClearSystem extends IteratingSystem {
private WorldEntitiesSystem worldEntitiesSystem;
- public ClearSystem() {
- super(Aspect.all(Clear.class));
- }
+ ComponentMapper mClear;
@Override
protected void process(int entityId) {
- E e = E(entityId);
- e.getClear().setTime(e.getClear().getTime() - world.getDelta());
- if (e.clearTime() <= 0) {
+ Clear clear = mClear.get(entityId);
+ clear.setTime(clear.getTime() - world.getDelta());
+ if (clear.getTime() <= 0.0f) {
Log.debug("Unregistering entity: " + entityId);
worldEntitiesSystem.unregisterEntity(entityId);
}
diff --git a/server/src/server/systems/world/entity/factory/ComponentSystem.java b/server/src/server/systems/world/entity/factory/ComponentSystem.java
index 920f103e..12f37b75 100644
--- a/server/src/server/systems/world/entity/factory/ComponentSystem.java
+++ b/server/src/server/systems/world/entity/factory/ComponentSystem.java
@@ -2,14 +2,17 @@
import com.artemis.Component;
import com.artemis.Entity;
-import com.artemis.annotations.Wire;
import com.artemis.utils.Bag;
import com.google.common.collect.Sets;
import component.entity.Clear;
import component.entity.character.attributes.*;
import component.entity.character.info.CharHero;
import component.entity.character.info.Gold;
+import component.entity.character.info.Skills;
import component.entity.character.info.SpellBook;
+import component.entity.character.render.CharAnimation;
+import component.entity.character.render.CharRenderInfo;
+import component.entity.character.render.Display;
import component.entity.character.states.*;
import component.entity.character.status.*;
import component.entity.combat.AttackPower;
@@ -23,7 +26,6 @@
import java.util.*;
-@Wire
public class ComponentSystem extends PassiveSystem {
private Map>> componentsByVisibility;
@@ -32,6 +34,10 @@ public ComponentSystem() {
componentsByVisibility = new HashMap<>();
Reflections reflections = new Reflections("component");
Set> allClasses = reflections.getSubTypesOf(Component.class);
+ // client local components
+ allClasses.remove(CharRenderInfo.class);
+ allClasses.remove(Display.class);
+ allClasses.remove(CharAnimation.class);
componentsByVisibility.put(Visibility.SERVER, Sets.newHashSet(allClasses));
// remove server only components
@@ -71,6 +77,7 @@ public ComponentSystem() {
allClasses.remove(AttackPower.class);
allClasses.remove(EvasionPower.class);
allClasses.remove(AttackPower.class);
+ allClasses.remove(Skills.class);
componentsByVisibility.put(Visibility.CLIENT_PUBLIC, Sets.newHashSet(allClasses));
}
diff --git a/server/src/server/systems/world/entity/factory/EffectEntitySystem.java b/server/src/server/systems/world/entity/factory/EffectEntitySystem.java
index 9a8ff82f..3a9e64a8 100644
--- a/server/src/server/systems/world/entity/factory/EffectEntitySystem.java
+++ b/server/src/server/systems/world/entity/factory/EffectEntitySystem.java
@@ -1,6 +1,7 @@
package server.systems.world.entity.factory;
-import com.artemis.annotations.Wire;
+import com.artemis.ComponentMapper;
+import component.entity.Clear;
import component.graphic.Effect;
import component.graphic.EffectBuilder;
import component.position.WorldPos;
@@ -12,10 +13,8 @@
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
-import static com.artemis.E.E;
import static shared.network.notifications.EntityUpdate.NO_ENTITY;
-@Wire
public class EffectEntitySystem extends PassiveSystem {
private EntityUpdateSystem entityUpdateSystem;
@@ -23,11 +22,15 @@ public class EffectEntitySystem extends PassiveSystem {
private Map> entityEffects;
private Map> entityFXs;
+ ComponentMapper mClear;
+ ComponentMapper mEffect;
+ ComponentMapper mWorldPos;
+
public EffectEntitySystem() {
entityEffects = new ConcurrentHashMap<>();
}
- public void addFX(int entity, int fxNumber, int loops) {
+ public void addFX(int entityId, int fxNumber, int loops) {
Effect effect = EffectBuilder
.create()
.withFX(fxNumber)
@@ -38,45 +41,42 @@ public void addFX(int entity, int fxNumber, int loops) {
// create entity and save
effectEntityId = world.create();
entityFXs
- .computeIfAbsent(entity, integer -> new ConcurrentHashMap<>())
+ .computeIfAbsent(entityId, integer -> new ConcurrentHashMap<>())
.put(fxNumber, effectEntityId);
}
EntityUpdateBuilder of = EntityUpdateBuilder.of(effectEntityId);
of.withComponents(effect);
- if (E(entity).hasWorldPos()) {
- of.withComponents(E(entity).getWorldPos());
+ if (mWorldPos.has(entityId)) {
+ of.withComponents(mWorldPos.get(entityId));
}
- entityUpdateSystem.add(entity, of.build(), UpdateTo.ALL);
+ entityUpdateSystem.add(entityId, of.build(), UpdateTo.ALL);
}
public void addEffect(int entity, int particleNumber, int loops) {
int effectEntityId = world.create();
- E(effectEntityId)
- .effectLoops(loops)
- .effectEffectId(particleNumber)
- .effectType(Effect.Type.PARTICLE);
+ Effect effect = mEffect.create(effectEntityId);
+ effect.setLoops(loops);
+ effect.setEffectId(particleNumber);
+ effect.setType(Effect.Type.PARTICLE);
doAdd(entity, particleNumber, loops, effectEntityId, entityEffects);
}
- private void doAdd(int entity, int fxNumber, int loops, int effectEntityId, Map> entityFXs) {
- if (E(entity).hasWorldPos()) {
+ private void doAdd(int entityId, int fxNumber, int loops, int effectEntityId, Map> entityFXs) {
+ if (mWorldPos.has(entityId)) {
// copy worldPos to effect
- WorldPos worldPos = E(entity).getWorldPos();
- E(effectEntityId)
- .worldPosMap(worldPos.map)
- .worldPosX(worldPos.x)
- .worldPosY(worldPos.y);
+ WorldPos worldPos = mWorldPos.get(entityId);
+ mWorldPos.create(effectEntityId).setWorldPos(worldPos);
}
if (Effect.LOOP_INFINITE == loops) {
entityFXs
- .computeIfAbsent(entity, integer -> new ConcurrentHashMap<>())
- .put(fxNumber, effectEntityId);
+ .computeIfAbsent(entityId, integer -> new ConcurrentHashMap<>())
+ .put(fxNumber, effectEntityId);
} else {
- E(effectEntityId).clear();
+ mClear.create(effectEntityId);
}
- entityUpdateSystem.attach(entity, effectEntityId);
+ entityUpdateSystem.attach(entityId, effectEntityId);
}
public void removeEffect(int entity, int particleNumber) {
diff --git a/server/src/server/systems/world/entity/factory/EntityFactorySystem.java b/server/src/server/systems/world/entity/factory/EntityFactorySystem.java
index 61921e3e..172757ce 100644
--- a/server/src/server/systems/world/entity/factory/EntityFactorySystem.java
+++ b/server/src/server/systems/world/entity/factory/EntityFactorySystem.java
@@ -1,13 +1,20 @@
package server.systems.world.entity.factory;
-import com.artemis.Component;
-import com.artemis.E;
-import com.artemis.Entity;
-import com.artemis.EntityEdit;
-import com.artemis.annotations.Wire;
-import com.esotericsoftware.minlog.Log;
+import com.artemis.*;
+import component.entity.character.Character;
+import component.entity.character.attributes.*;
+import component.entity.character.equipment.Armor;
+import component.entity.character.equipment.Helmet;
+import component.entity.character.equipment.Shield;
+import component.entity.character.equipment.Weapon;
+import component.entity.character.info.*;
+import component.entity.character.parts.Body;
+import component.entity.character.parts.Head;
import component.entity.character.states.Heading;
+import component.entity.character.status.*;
+import component.entity.world.Object;
import component.position.WorldPos;
+import component.position.WorldPosOffsets;
import net.mostlyoriginal.api.system.core.PassiveSystem;
import server.database.model.attributes.Attributes;
import server.systems.config.NPCSystem;
@@ -28,11 +35,12 @@
import java.util.*;
import java.util.concurrent.ThreadLocalRandom;
-import static com.artemis.E.E;
import static server.systems.world.entity.training.CharacterTrainingSystem.DEFAULT_STAMINA;
import static server.systems.world.entity.training.CharacterTrainingSystem.INITIAL_LEVEL;
-@Wire
+// @todo: El sistema es muy grande y quizá podrÃa modularizarse
+// @todo: Evaluar si conviene usar EntityTransmuter para crear nuevas entidades con tantos componentes.
+// @todo: La clase se llama EntityFactory pero parece crear solo PJs.
public class EntityFactorySystem extends PassiveSystem {
private static final int INITIAL_EXP_TO_NEXT_LEVEL = 300;
@@ -45,6 +53,38 @@ public class EntityFactorySystem extends PassiveSystem {
private PathFindingSystem pathFindingSystem;
private NPCSystem npcSystem;
+ // Atributos
+ ComponentMapper mAgility;
+ ComponentMapper mCharisma;
+ ComponentMapper mConstitution;
+ ComponentMapper mIntelligence;
+ ComponentMapper mStrength;
+
+ // Equipment
+ ComponentMapper mArmor;
+ ComponentMapper mHelmet;
+ ComponentMapper mShield;
+ ComponentMapper mWeapon;
+
+ ComponentMapper mBag;
+ ComponentMapper mBody;
+ ComponentMapper mCharacter;
+ ComponentMapper mCharHero;
+ ComponentMapper mGold;
+ ComponentMapper mHead;
+ ComponentMapper mHeading;
+ ComponentMapper mHealth;
+ ComponentMapper mHit;
+ ComponentMapper mLevel;
+ ComponentMapper mMana;
+ ComponentMapper mName;
+ ComponentMapper mSkills;
+ ComponentMapper mSpellBook;
+ ComponentMapper mStamina;
+ ComponentMapper mObject;
+ ComponentMapper mWorldPos;
+ ComponentMapper mWorldPosOffsets;
+
// Create entity with current components
public int create(Collection extends Component> components) {
Entity entity = world.createEntity();
@@ -54,13 +94,12 @@ public int create(Collection extends Component> components) {
}
public void createObject(int objIndex, int objCount, WorldPos pos) {
- int objId = world.create();
- E object = E(objId);
- object
- .objectIndex(objIndex)
- .objectCount(objCount);
- setWorldPosition(object, pos, true);
- worldEntitiesSystem.registerEntity(objId);
+ int objectId = world.create();
+ Object object = mObject.create(objectId);
+ object.setIndex(objIndex);
+ object.setCount(objCount);
+ setWorldPosition(objectId, pos, true);
+ worldEntitiesSystem.registerEntity(objectId);
}
public void createNPC(int npcIndex, WorldPos pos) {
@@ -69,103 +108,102 @@ public void createNPC(int npcIndex, WorldPos pos) {
worldEntitiesSystem.registerEntity(npcId);
}
- public int create(String name, int heroId) {
+ public int create(String username, int heroId) {
Hero hero = Hero.values()[heroId];
Race race = Race.values()[hero.getRaceId()];
- int player = getWorld().create();
+ int playerId = getWorld().create();
- E entity = E(player);
- entity
- .character()
- .tag(name)
- .nameText(name)
- .headingCurrent(Heading.HEADING_SOUTH)
- .charHeroHeroId(heroId);
+ Character character = mCharacter.create(playerId);
+ Name name = mName.create(playerId);
+ name.setText(username);
- setEntityPosition(entity);
- setAttributesAndStats(entity, race);
- setHead(entity, race);
- setNakedBody(entity, race);
- // set inventory
- setInventory(player, hero);
- // set spells
- setSpells(player, hero);
+ Heading heading = mHeading.create(playerId);
+ heading.setCurrent(Heading.HEADING_SOUTH);
+ CharHero charHero = mCharHero.create(playerId);
+ charHero.setHeroId(heroId);
- return player;
- }
-
- public int createPlayer(String name, Hero hero) {
- int player = getWorld().create();
-
- E entity = E(player);
- entity.character();
-// switch (team) {
-// case NO_TEAM:
-// entity.gM();
-// break;
-// case CAOS_ARMY:
-// entity.criminal();
-// break;
-// }
- entity.charHeroHeroId(hero.ordinal());
-
- // set class
- setClassAndAttributes(hero, entity);
+ setEntityPosition(playerId);
+ setAttributesAndStats(playerId, race);
+ setHead(playerId, race);
+ setNakedBody(playerId, race);
// set inventory
- setInventory(player, hero);
+ setInventory(playerId, hero);
// set spells
- setSpells(player, hero);
+ setSpells(playerId, hero);
+ setSkills(playerId, 100);
- return player;
+ return playerId;
}
-
- private void setClassAndAttributes(Hero hero, E entity) {
- // set body and head
- Race race = Race.of(entity);
- setNakedBody(entity, race);
- setHead(entity, race);
- entity.charHeroHeroId(hero.ordinal());
- setAttributesAndStats(entity, race);
+ private void setSkills(int entityId, int initial) {
+ mSkills.create(entityId).initial(initial);
}
- private void setAttributesAndStats(E entity, Race race) {
+ private void setAttributesAndStats(int entityId, Race race) {
+ // Valores base de los atributos
+ int agilityValue = ATTR_BASE_VALUE + Attributes.AGILITY.of(race);
+ int charismaValue = ATTR_BASE_VALUE + Attributes.CHARISMA.of(race);
+ int constitutionValue = ATTR_BASE_VALUE + Attributes.CONSTITUTION.of(race);
+ int intelligenceValue = ATTR_BASE_VALUE + Attributes.INTELLIGENCE.of(race);
+ int strengthValue = ATTR_BASE_VALUE + Attributes.STRENGTH.of(race);
+
// set attributes
- entity.agilityBaseValue(ATTR_BASE_VALUE + Attributes.AGILITY.of(race));
- entity.agilityCurrentValue(ATTR_BASE_VALUE + Attributes.AGILITY.of(race));
- entity.charismaBaseValue(ATTR_BASE_VALUE + Attributes.CHARISMA.of(race));
- entity.constitutionBaseValue(ATTR_BASE_VALUE + Attributes.CONSTITUTION.of(race));
- entity.intelligenceBaseValue(ATTR_BASE_VALUE + Attributes.INTELLIGENCE.of(race));
- entity.strengthBaseValue(ATTR_BASE_VALUE + Attributes.STRENGTH.of(race));
- entity.strengthCurrentValue(ATTR_BASE_VALUE + Attributes.STRENGTH.of(race));
+ Agility agility = mAgility.create(entityId);
+ agility.setBaseValue(agilityValue);
+ agility.setCurrentValue(agilityValue);
+
+ Charisma charisma = mCharisma.create(entityId);
+ charisma.setBaseValue(charismaValue);
+ charisma.setCurrentValue(charismaValue);
+
+ Constitution constitution = mConstitution.create(entityId);
+ constitution.setBaseValue(constitutionValue);
+ constitution.setCurrentValue(constitutionValue);
+
+ Intelligence intelligence = mIntelligence.create(entityId);
+ intelligence.setBaseValue(intelligenceValue);
+ intelligence.setCurrentValue(intelligenceValue);
+
+ Strength strength = mStrength.create(entityId);
+ strength.setBaseValue(strengthValue);
+ strength.setCurrentValue(strengthValue);
// set stats
- setLevel(entity);
- setStamina(entity);
- setHP(entity);
- setMana(entity);
- setHit(entity);
- entity.goldCount(0);
+ setLevel(entityId);
+ setStamina(entityId);
+ setHP(entityId);
+ setMana(entityId);
+ setHit(entityId);
+
+ Gold gold = mGold.create(entityId);
+ gold.setCount(1000);
}
- private void setLevel(E entity) {
- entity.levelLevel(INITIAL_LEVEL).levelExp(0).levelExpToNextLevel(INITIAL_EXP_TO_NEXT_LEVEL);
+ private void setLevel(int entityId) {
+ Level level = mLevel.create(entityId);
+ level.setLevel(INITIAL_LEVEL);
+ level.setExp(0);
+ level.setExpToNextLevel(INITIAL_EXP_TO_NEXT_LEVEL);
}
- private void setStamina(E entity) {
+ private void setStamina(int entityId) {
// set stamina
- int stamina = 20 * entity.agilityCurrentValue() / 6;
- entity.staminaMax(stamina).staminaMin(stamina);
+ int maxStamina = 20 * mAgility.get(entityId).getCurrentValue() / 6;
+ Stamina stamina = mStamina.create(entityId);
+ stamina.setMax(maxStamina);
+ stamina.setMin(maxStamina);
}
- private void setHit(E entity) {
- entity.hitMax(2).hitMin(1);
+ private void setHit(int entityId) {
+ Hit hit = mHit.create(entityId);
+ hit.setMin(1);
+ hit.setMax(2);
}
- //TODO cambiado a public para poder resetear las heads antes era private, volver a modificar cuando se guarden en DB las cabezas de los pj
- public void setHead(E entity, Race race) {
+ //TODO cambiado a public para poder resetear las heads antes era private, volver a modificar cuando se guarden en DB las cabezas de los pj
+ public void setHead(int entityId, Race race) {
ThreadLocalRandom random = ThreadLocalRandom.current();
//TODO onlyWoman desde init.json
int headIndex = 0;
@@ -186,10 +224,10 @@ public void setHead(E entity, Race race) {
case DWARF:
headIndex = random.nextInt(301, 319 + 1);
}
- entity.headIndex(headIndex);
+ mHead.create(entityId).setIndex(headIndex);
}
- public void setNakedBody(E entity, Race race) {
+ public void setNakedBody(int entityId, Race race) {
int bodyIndex = 1;
switch (race) {
case GNOME:
@@ -207,82 +245,82 @@ public void setNakedBody(E entity, Race race) {
case HUMAN:
bodyIndex = 21;
}
- entity.bodyIndex(bodyIndex);
+ mBody.create(entityId).setIndex(bodyIndex);
}
- private void setMana(E entity) {
- CharClass charClass = CharClass.of(entity);
- int mana = 300; //Bonus 300 mana para tirar inmovilizar
+ private void setMana(int entityId) {
+ // @todo Revisar esto y los enums CharClass, Hero y Race
+ // CharClass charClass = CharClass.of(entityId);
+ int heroId = mCharHero.get(entityId).getHeroId();
+ Hero hero = Hero.values()[heroId];
+ CharClass charClass = CharClass.values()[hero.getClassId()];
+
+ int manaValue = 300; //Bonus 300 mana para tirar inmovilizar
switch (charClass) {
case MAGICIAN:
- mana = entity.intelligenceBaseValue() * 3 + mana;
+ manaValue += mIntelligence.get(entityId).getBaseValue() * 3;
break;
case CLERIC:
case DRUID:
case BARDIC:
- mana = entity.intelligenceBaseValue() * 2 + mana;
+ manaValue += mIntelligence.get(entityId).getBaseValue() * 2;
break;
case ASSASSIN:
case PALADIN:
- mana = entity.intelligenceBaseValue() + mana;
+ manaValue += mIntelligence.get(entityId).getBaseValue();
break;
}
- entity.manaMax(mana);
- entity.manaMin(mana);
+ Mana mana = mMana.create(entityId);
+ mana.setMin(manaValue);
+ mana.setMax(manaValue);
}
- private void setHP(E entity) {
- int random = ThreadLocalRandom.current().nextInt(1, entity.constitutionBaseValue() / 3);
- entity.healthMax(DEFAULT_STAMINA + random);
- entity.healthMin(DEFAULT_STAMINA + random);
+ private void setHP(int entityId) {
+ int random = ThreadLocalRandom.current().nextInt(1, mConstitution.get(entityId).getBaseValue() / 3);
+ Health health = mHealth.create(entityId);
+ health.setMin(DEFAULT_STAMINA + random);
+ health.setMax(DEFAULT_STAMINA + random);
}
- private void setInventory(int player, Hero hero) {
- E(player).bag();
- addPotion(player, PotionKind.HP);
- E(player).getBag().add(480, true);// flechas)
+ private void setInventory(int entityId, Hero hero) {
+ Bag bag = mBag.create(entityId);
+ addPotion(entityId, PotionKind.HP);
+ bag.add(480, true); // flechas
- if (E(player).manaMax() > 0) {
- addPotion(player, PotionKind.MANA);
+ if (mMana.get(entityId).max > 0) {
+ addPotion(entityId, PotionKind.MANA);
} else {
- addPotion(player, PotionKind.STRENGTH);
+ addPotion(entityId, PotionKind.STRENGTH);
}
getHelmet(hero).ifPresent(helmet -> {
- E(player).helmetIndex(helmet.getId());
- E(player).getBag().add(helmet.getId(), true);
+ mHelmet.create(entityId).setIndex(helmet.getId());
+ bag.add(helmet.getId(), true);
});
getArmor(hero).ifPresent(armor -> {
- E(player).armorIndex(armor.getId());
- E(player).bodyIndex(((ArmorObj) armor).getBodyNumber());
- E(player).getBag().add(armor.getId(), true);
+ mArmor.create(entityId).setIndex(armor.getId());
+ mBody.get(entityId).setIndex(((ArmorObj) armor).getBodyNumber());
+ bag.add(armor.getId(), true);
});
final Set weapons = getWeapon(hero);
if (!weapons.isEmpty()) {
final Obj next = weapons.iterator().next();
- E(player).getBag().add(next.getId(), true);
- E(player).weaponIndex(next.getId());
+ bag.add(next.getId(), true);
+ mWeapon.create(entityId).setIndex(next.getId());
weapons.forEach(weapon -> {
if (weapon != next) {
- E(player).getBag().add(weapon.getId(), false);
+ bag.add(weapon.getId(), false);
}
});
}
getShield(hero).ifPresent(shield -> {
- E(player).shieldIndex(shield.getId());
- E(player).getBag().add(shield.getId(), true);
+ mShield.create(entityId).setIndex(shield.getId());
+ bag.add(shield.getId(), true);
});
}
- private void setHeadAndBody(String name, E entity) {
- entity
- .headingCurrent(Heading.HEADING_SOUTH)
- .nameText(name);
- }
-
-
- private void addPotion(int player, PotionKind kind) {
+ private void addPotion(int entityId, PotionKind kind) {
Set objs = objectSystem.getTypeObjects(Type.POTION);
objs.stream() //
.map(PotionObj.class::cast) //
@@ -291,7 +329,7 @@ private void addPotion(int player, PotionKind kind) {
return potionKind != null && potionKind.equals(kind);
}) //
.findFirst() //
- .ifPresent(obj -> E(player).getBag().add(obj.getId(), false));
+ .ifPresent(obj -> mBag.get(entityId).add(obj.getId(), false));
}
private Optional getArmor(Hero hero) {
@@ -439,50 +477,13 @@ private Set getWeapon(Hero hero) {
return result;
}
-
- @Deprecated
- private Optional addItem(int player, Type type) {
- Set objs = objectSystem.getTypeObjects(type);
- Optional result = objs.stream()
- .filter(obj -> {
- if (obj instanceof ObjWithClasses) {
- int heroId = E(player).getCharHero().heroId;
- CharClass clazz = CharClass.of(E(player));
- Set forbiddenClasses = ((ObjWithClasses) obj).getForbiddenClasses();
- boolean supported = forbiddenClasses.size() == 0 || !forbiddenClasses.contains(clazz);
- if (supported && obj instanceof ArmorObj) {
- Race race = Race.of(E(player));
- if (race.equals(Race.GNOME) || race.equals(Race.DWARF)) {
- supported = ((ArmorObj) obj).isDwarf();
- } else if (((ArmorObj) obj).isWomen()) {
- supported = false; // TODO
- }
- }
- return supported;
- } else if (obj.getType().equals(Type.POTION)) {
- PotionObj potion = (PotionObj) obj;
- return potion.getKind().equals(PotionKind.HP) || potion.getKind().equals(PotionKind.MANA);
- }
- return false;
- })
- .max(this::getComparator);
- result.ifPresent(obj -> {
- CharClass clazz = CharClass.of(E(player));
- Set forbiddenClasses = ((ObjWithClasses) obj).getForbiddenClasses();
- Log.info("Item found for class: " + clazz.name() + " and forbidden classes are: " + Arrays
- .toString(forbiddenClasses.toArray()));
- E(player).getBag().add(obj.getId(), true);
- });
- return result;
- }
-
- private void setSpells(int player, Hero hero) {
+ private void setSpells(int entityId, Hero hero) {
Set spells = getSpells(hero);
final Integer[] spellIds = spells
.stream()
.map(spell -> spellSystem.getId(spell))
.toArray(Integer[]::new);
- E(player).spellBookSpells(spellIds);
+ mSpellBook.create(entityId).setSpells(spellIds);
}
private Set getSpells(Hero hero) {
@@ -513,55 +514,37 @@ private Set getSpells(Hero hero) {
return result;
}
- private int getComparator(Obj obj1, Obj obj2) {
- if (obj1 instanceof ArmorObj) {
- ArmorObj armor1 = (ArmorObj) obj1;
- ArmorObj armor2 = (ArmorObj) obj2;
- return armor1.getMaxDef() - armor2.getMaxDef();
- } else if (obj1 instanceof WeaponObj) {
- WeaponObj weapon1 = (WeaponObj) obj1;
- WeaponObj weapon2 = (WeaponObj) obj2;
- return weapon1.getMaxHit() - weapon2.getMaxHit();
- } else if (obj1 instanceof ShieldObj) {
- ShieldObj shield1 = (ShieldObj) obj1;
- ShieldObj shield2 = (ShieldObj) obj2;
- return shield1.getMaxDef() - shield2.getMaxDef();
- } else if (obj1 instanceof HelmetObj) {
- HelmetObj helmet1 = (HelmetObj) obj1;
- HelmetObj helmet2 = (HelmetObj) obj2;
- return helmet1.getMaxDef() - helmet2.getMaxDef();
- }
- return obj1.getName().compareTo(obj2.getName());
- }
-
- private void setEntityPosition(E entity) {
+ private void setEntityPosition(int entityId) {
WorldPos spot = new WorldPos(50, 50, 1);
- setWorldPosition(entity, spot);
+ setWorldPosition(entityId, spot);
}
- private void setWorldPosition(E entity, WorldPos spot) {
- setWorldPosition(entity, spot, false);
+ private void setWorldPosition(int entityId, WorldPos spot) {
+ setWorldPosition(entityId, spot, false);
}
- private void setWorldPosition(E entity, WorldPos spot, boolean item) {
+ // @todo: Refactor la lógica de spawn (que pueda fallar)
+ private void setWorldPosition(int entityId, WorldPos spot, boolean item) {
shared.model.map.Map map = mapSystem.getHelper().getMap(spot.getMap());
for (int i = 0; i < 12; i++) {
Optional candidate = rhombLegalPos(spot, i, map, item);
if (candidate.isPresent()) {
- setPosition(entity, candidate.get());
+ setPosition(entityId, candidate.get());
break;
}
}
}
- private void setPosition(E entity, WorldPos worldPos) {
- entity
- .worldPosMap(worldPos.map)
- .worldPosX(worldPos.x)
- .worldPosY(worldPos.y)
- .worldPosOffsetsX(0)
- .worldPosOffsetsY(0);
+ private void setPosition(int entityId, WorldPos targetPos) {
+ WorldPos worldPos = mWorldPos.create(entityId);
+ worldPos.map = targetPos.map;
+ worldPos.x = targetPos.x;
+ worldPos.y = targetPos.y;
+
+ WorldPosOffsets worldPosOffsets = mWorldPosOffsets.create(entityId);
+ worldPosOffsets.x = 0;
+ worldPosOffsets.y = 0;
}
private Optional rhombLegalPos(WorldPos spot, int i, shared.model.map.Map map, boolean item) {
diff --git a/server/src/server/systems/world/entity/factory/SoundEntitySystem.java b/server/src/server/systems/world/entity/factory/SoundEntitySystem.java
index 2ec07467..8eca9353 100644
--- a/server/src/server/systems/world/entity/factory/SoundEntitySystem.java
+++ b/server/src/server/systems/world/entity/factory/SoundEntitySystem.java
@@ -1,6 +1,6 @@
package server.systems.world.entity.factory;
-import com.artemis.annotations.Wire;
+import com.artemis.ComponentMapper;
import component.entity.Ref;
import component.position.WorldPos;
import component.sound.AOSound;
@@ -13,55 +13,51 @@
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
-import static com.artemis.E.E;
-
-@Wire
public class SoundEntitySystem extends PassiveSystem {
private EntityUpdateSystem entityUpdateSystem;
private Map> entitySounds;
+ ComponentMapper mWorldPos;
+ ComponentMapper